home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PCGPEV10.ZIP / MIDI.TXT < prev    next >
Text File  |  1994-05-10  |  139KB  |  5,940 lines

  1.  
  2.                            Standard MIDI File Format
  3.                                 Dustin Caldwell
  4.  
  5.       The standard MIDI file format is a very strange beast. When viewed as a
  6. whole, it can be quite overwhelming. Of course, no matter how you look at it,
  7. describing a piece of music in enough detail to be able to reproduce it
  8. accurately is no small task. So, while complicated, the structure of the midi
  9. file format is fairly intuitive when understood. 
  10.       I must insert a disclaimer here that I am by no means an expert with
  11. midi nor midi files. I recently obtained a Gravis UltraSound board for my PC,
  12. and upon hearing a few midi files (.MID) thought, "Gee, I'd like to be able to
  13. make my own .MID files." Well, many aggravating hours later, I discovered that
  14. this was no trivial task. But, I couldn't let a stupid file format stop me.
  15. (besides, I once told my wife that computers aren't really that hard to use,
  16. and I'd hate to be a hypocrite) So if any errors are found in this
  17. information, please let me know and I will fix it. Also, this document's scope
  18. does not extend to EVERY type of midi command and EVERY possible file
  19. configuration. It is a basic guide that should enable the reader (with a
  20. moderate investment in time) to generate a quality midi file.
  21.  
  22. 1. Overview
  23.  
  24.       A midi (.MID) file contains basically 2 things, Header chunks and Track
  25. chunks. Section 2 explains the header chunks, and Section 3 explains the track
  26. chunks. A midi file contains ONE header chunk describing the file format,
  27. etc., and any number of track chunks. A track may be thought of in the same
  28. way as a track on a multi-track tape deck. You may assign one track to each
  29. voice, each staff, each instrument or whatever you want. 
  30.  
  31. 2. Header Chunk
  32.  
  33.       The header chunk appears at the beginning of the file, and describes the
  34. file in three ways. The header chunk always looks like:
  35.  
  36. 4D 54 68 64 00 00 00 06 ff ff nn nn dd dd
  37.  
  38. The ascii equivalent of the first 4 bytes is MThd. After MThd comes the 4-byte
  39. size of the header. This will always be 00 00 00 06, because the actual header
  40. information will always be 6 bytes. 
  41.  
  42. ff ff is the file format. There are 3 formats:
  43.  
  44. 0 - single-track 
  45. 1 - multiple tracks, synchronous
  46. 2 - multiple tracks, asynchronous
  47.  
  48. Single track is fairly self-explanatory - one track only. Synchronous multiple
  49. tracks means that the tracks will all be vertically synchronous, or in other
  50. words, they all start at the same time, and so can represent different parts
  51. in one song. Asynchronous multiple tracks do not necessarily start at the same
  52. time, and can be completely asynchronous. 
  53.  
  54. nn nn is the number of tracks in the midi file.
  55.  
  56. dd dd is the number of delta-time ticks per quarter note. (More about this
  57. later)
  58.  
  59.  
  60. 3. Track Chunks
  61.  
  62. The remainder of the file after the header chunk consists of track chunks.
  63. Each track has one header and may contain as many midi commands as you like.
  64. The header for a track is very similar to the one for the file:
  65.  
  66. 4D 54 72 6B xx xx xx xx
  67.  
  68. As with the header, the first 4 bytes has an ascii equivalent. This one is
  69. MTrk. The 4 bytes after MTrk give the length of the track (not including the
  70. track header) in bytes. 
  71.       Following the header are midi events. These events are identical to the
  72. actual data sent and received by MIDI ports on a synth with one addition. A
  73. midi event is preceded by a delta-time. A delta time is the number of ticks
  74. after which the midi event is to be executed. The number of ticks per quarter
  75. note was defined previously in the file header chunk. This delta-time is a
  76. variable-length encoded value. This format, while confusing, allows large
  77. numbers to use as many bytes as they need, without requiring small numbers to
  78. waste bytes by filling with zeros. The number is converted into 7-bit bytes,
  79. and the most-significant bit of each byte is 1 except for the last byte of the
  80. number, which has a msb of 0. This allows the number to be read one byte at a
  81. time, and when you see a msb of 0, you know that it was the last (least
  82. significant) byte of the number. According to the MIDI spec, the entire delta-
  83. time should be at most 4 bytes long. 
  84.       Following the delta-time is a midi event. Each midi event (except a
  85. running midi event) has a command byte which will always have a msb of 1 (the
  86. value will be >= 128). A list of most of these commands is in appendix A. Each
  87. command has different parameters and lengths, but the data that follows the
  88. command will have a msb of 0 (less than 128). The exception to this is a meta-
  89. event, which may contain data with a msb of 1. However, meta-events require a
  90. length parameter which alleviates confusion. 
  91.       One subtlety which can cause confusion is running mode. This is where
  92. the actual midi command is omitted, and the last midi command issued is
  93. assumed. This means that the midi event will consist of a delta-time and the
  94. parameters that would go to the command if it were included. 
  95.  
  96. 4. Conclusion
  97.  
  98.       If this explanation has only served to confuse the issue more, the
  99. appendices contain examples which may help clarify the issue. Also, 2
  100. utilities and a graphic file should have been included with this document: 
  101.  
  102. DEC.EXE - This utility converts a binary file (like .MID) to a tab-delimited
  103. text file containing the decimal equivalents of each byte.
  104.  
  105. REC.EXE - This utility converts a tab-delimited text file of decimal values
  106. into a binary file in which each byte corresponds to one of the decimal
  107. values.
  108.  
  109. MIDINOTE.PS - This is the postscript form of a page showing note numbers with
  110. a keyboard and with the standard grand staff.
  111.                                                                           Appendix A
  112.  
  113. 1. MIDI Event Commands
  114.  
  115. Each command byte has 2 parts. The left nybble (4 bits) contains the actual
  116. command, and the right nybble contains the midi channel number on which the
  117. command will be executed. There are 16 midi channels, and 8 midi commands (the
  118. command nybble must have a msb of 1).
  119. In the following table, x indicates the midi channel number. Note that all
  120. data bytes will be <128 (msb set to 0).
  121.  
  122. Hex      Binary       Data          Description
  123. 8x       1000xxxx     nn vv         Note off (key is released)
  124.                                     nn=note number
  125.                                     vv=velocity
  126.  
  127. 9x       1001xxxx     nn vv         Note on (key is pressed)
  128.                                     nn=note number
  129.                                     vv=velocity
  130.  
  131. Ax       1010xxxx     nn vv         Key after-touch
  132.                                     nn=note number
  133.                                     vv=velocity
  134.  
  135. Bx       1011xxxx     cc vv         Control Change
  136.                                     cc=controller number
  137.                                     vv=new value
  138.  
  139. Cx       1100xxxx     pp            Program (patch) change
  140.                                     pp=new program number
  141.  
  142. Dx       1101xxxx     cc            Channel after-touch
  143.                                     cc=channel number
  144.  
  145. Ex       1110xxxx     bb tt         Pitch wheel change (2000H is normal or no
  146.                                     change)
  147.                                     bb=bottom (least sig) 7 bits of value
  148.                                     tt=top (most sig) 7 bits of value
  149. The following table lists meta-events which have no midi channel number. They
  150. are of the format:
  151.  
  152. FF xx nn dd
  153.  
  154. All meta-events start with FF followed by the command (xx), the length, or
  155. number of bytes that will contain data (nn), and the actual data (dd).
  156.  
  157. Hex      Binary       Data          Description
  158. 00       00000000     nn ssss       Sets the track's sequence number.
  159.                                     nn=02 (length of 2-byte sequence number)
  160.                                     ssss=sequence number
  161.  
  162. 01       00000001     nn tt ..      Text event- any text you want.
  163.                                     nn=length in bytes of text
  164.                                     tt=text characters
  165.  
  166. 02       00000010     nn tt ..      Same as text event, but used for
  167.                                     copyright info.
  168.                                     nn tt=same as text event
  169.  
  170. 03       00000011     nn tt ..      Sequence or Track name
  171.                                     nn tt=same as text event
  172.  
  173. 04       00000100     nn tt ..      Track instrument name
  174.                                     nn tt=same as text event
  175.  
  176. 05       00000101     nn tt ..      Lyric
  177.                                     nn tt=same as text event
  178.  
  179. 06       00000110     nn tt ..      Marker
  180.                                     nn tt=same as text event
  181.  
  182. 07       00000111     nn tt ..      Cue point
  183.                                     nn tt=same as text event
  184.  
  185. 2F       00101111     00            This event must come at the end of each
  186.                                     track
  187.  
  188. 51       01010001     03 tttttt     Set tempo
  189.                                     tttttt=microseconds/quarter note
  190.  
  191. 58       01011000     04 nn dd ccbb Time Signature
  192.                                     nn=numerator of time sig.
  193.                                     dd=denominator of time sig. 2=quarter
  194.                                     3=eighth, etc.
  195.                                     cc=number of ticks in metronome click
  196.                                     bb=number of 32nd notes to the quarter
  197.                                     note
  198.  
  199. 59       01011001     02 sf mi      Key signature
  200.                                     sf=sharps/flats (-7=7 flats, 0=key of C,
  201.                                     7=7 sharps)
  202.                                     mi=major/minor (0=major, 1=minor)
  203.  
  204. 7F       01111111     xx dd ..      Sequencer specific information
  205.                                     xx=number of bytes to be sent
  206.                                     dd=data
  207. The following table lists system messages which control the entire system.
  208. These have no midi channel number. (these will generally only apply to
  209. controlling a midi keyboard, etc.)
  210.  
  211. Hex      Binary       Data          Description
  212. F8       11111000                   Timing clock used when synchronization is
  213.                                     required.
  214.  
  215. FA       11111010                   Start current sequence
  216.  
  217. FB       11111011                   Continue a stopped sequence where left
  218.                                     off
  219.  
  220. FC       11111100                   Stop a sequence
  221.  
  222.  
  223. The following table lists the numbers corresponding to notes for use in note 
  224. on and note off commands.
  225.  
  226.  
  227. Octave||                     Note Numbers
  228.    #  ||
  229.       || C   | C#  | D   | D#  | E   | F   | F#  | G   | G#  | A   | A#  | B
  230. -----------------------------------------------------------------------------
  231.    0  ||   0 |   1 |   2 |   3 |   4 |   5 |   6 |   7 |   8 |   9 |  10 | 11
  232.    1  ||  12 |  13 |  14 |  15 |  16 |  17 |  18 |  19 |  20 |  21 |  22 | 23
  233.    2  ||  24 |  25 |  26 |  27 |  28 |  29 |  30 |  31 |  32 |  33 |  34 | 35
  234.    3  ||  36 |  37 |  38 |  39 |  40 |  41 |  42 |  43 |  44 |  45 |  46 | 47
  235.    4  ||  48 |  49 |  50 |  51 |  52 |  53 |  54 |  55 |  56 |  57 |  58 | 59
  236.    5  ||  60 |  61 |  62 |  63 |  64 |  65 |  66 |  67 |  68 |  69 |  70 | 71
  237.    6  ||  72 |  73 |  74 |  75 |  76 |  77 |  78 |  79 |  80 |  81 |  82 | 83
  238.    7  ||  84 |  85 |  86 |  87 |  88 |  89 |  90 |  91 |  92 |  93 |  94 | 95
  239.    8  ||  96 |  97 |  98 |  99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107
  240.    9  || 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119
  241.   10  || 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 |
  242.  
  243.  
  244.                                 BIBLIOGRAPHY
  245.  
  246.   "MIDI Systems and Control" Francis Rumsey  1990 Focal Press
  247.  
  248.   "MIDI and Sound Book for the Atari ST" Bernd Enders and Wolfgang Klemme
  249.           1989 M&T Publishing, Inc.
  250.  
  251.   MIDI file specs and general MIDI specs were also obtained by sending e-mail
  252.          to LISTSERV@AUVM.AMERICAN.EDU with the phrase GET MIDISPEC PACKAGE
  253.          in the message.
  254.  
  255.  
  256. ------------------------------- DEC.CPP ------------------------------------
  257.  
  258. /*  file  dec.cpp
  259.  
  260. by  Dustin Caldwell    (dustin@gse.utah.edu)
  261.  
  262. */
  263.  
  264.  
  265. #include <dos.h>
  266. #include <stdio.h>
  267. #include <stdlib.h>
  268.  
  269. void helpdoc();
  270.  
  271. main()
  272. {
  273.         FILE *fp;
  274.  
  275.         unsigned char ch, c;
  276.  
  277.         if((fp=fopen(_argv[1], "rb"))==NULL)            /* open file to read */
  278.         {
  279.                 printf("cannot open file %s\n",_argv[1]);
  280.                 helpdoc();
  281.                 exit(-1);
  282.         }
  283.  
  284.         c=0;
  285.         ch=fgetc(fp);
  286.  
  287.         while(!feof(fp))                        /* loop for whole file */
  288.         {
  289.                 printf("%u\t", ch);             /* print every byte's decimal equiv. */
  290.                 c++;
  291.                 if(c>8)                                 /* print 8 numbers to a line */
  292.                 {
  293.                         c=0;
  294.                         printf("\n");
  295.                 }
  296.  
  297.                 ch=fgetc(fp);
  298.         }
  299.  
  300.         fclose(fp);                     /* close up */
  301. }
  302.  
  303. void helpdoc()                  /* print help message */
  304. {
  305.         printf("\n   Binary File Decoder\n\n");
  306.  
  307.         printf("\n Syntax:  dec binary_file_name\n\n");
  308.  
  309.         printf("by Dustin Caldwell  (dustin@gse.utah.edu)\n\n");
  310.         printf("This is a filter program that reads a binary file\n");
  311.         printf("and prints the decimal equivalent of each byte\n");
  312.         printf("tab-separated. This is mostly useful when piped \n");
  313.         printf("into another file to be edited manually.  eg:\n\n");
  314.         printf("c:\>dec sonata3.mid > son3.txt\n\n");
  315.         printf("This will create a file called son3.txt which can\n");
  316.         printf("be edited with any ascii editor. \n\n");
  317.         printf("(rec.exe may also be useful, as it reencodes the \n");
  318.         printf("ascii text file).\n\n");
  319.         printf("Have Fun!!\n");
  320. }
  321.  
  322. ---------------------------- REC.CPP ----------------------------------
  323.  
  324. /*  File  rec.cpp
  325.         by Dustin Caldwell   (dustin@gse.utah.edu)
  326. */
  327.  
  328. #include <dos.h>
  329. #include <stdio.h>
  330. #include <ctype.h>
  331. #include <stdlib.h>
  332.  
  333. void helpdoc();
  334.  
  335. main()
  336. {
  337.         FILE *rfp, *wfp;
  338.  
  339.         unsigned char ch, c;
  340.         char s[20];
  341.  
  342.         if((rfp=fopen(_argv[1], "r"))==NULL)                    /* open the read file */
  343.         {
  344.                 printf("cannot open file %s \n",_argv[1]);
  345.                 helpdoc();
  346.                 exit(-1);
  347.         }
  348.  
  349.         if((wfp=fopen(_argv[2], "wb"))==NULL)                   /* open the write file */
  350.         {
  351.                 printf("cannot open file %s \n",_argv[1]);
  352.                 helpdoc();
  353.                 exit(-1);
  354.         }
  355.  
  356.         c=0;
  357.  
  358.         ch=fgetc(rfp);
  359.  
  360.         while(!feof(rfp))                       /* loop for whole file */
  361.         {
  362.  
  363.                 if(isalnum(ch))                 /* only 'see' valid ascii chars */
  364.                 {
  365.                         c=0;
  366.                         while(isdigit(ch))      /* only use decimal digits (0-9) */
  367.                         {
  368.                                 s[c]=ch;        /* build a string containing the number */
  369.                                 c++;
  370.                                 ch=fgetc(rfp);
  371.                         }
  372.                         s[c]=NULL;                      /* must have NULL terminator */
  373.  
  374.                         fputc(atoi(s), wfp);/* write the binary equivalent to file */
  375.  
  376.                 }
  377.  
  378.                 ch=fgetc(rfp);                  /* loop until next number starts */
  379.  
  380.  
  381.         }
  382.  
  383.         fclose(rfp);                    /* close up */
  384.         fclose(wfp);
  385. }
  386.  
  387.  
  388. void helpdoc()          /* print help message */
  389. {
  390.         printf("\n   Text File Encoder\n\n");
  391.  
  392.         printf("\n Syntax:  rec text_file_name binary_file_name\n\n");
  393.  
  394.         printf("by Dustin Caldwell  (dustin@gse.utah.edu)\n\n");
  395.         printf("This is a program that reads an ascii tab-\n");
  396.         printf("delimited file and builds a binary file where\n");
  397.         printf("each byte of the binary file is one of the decimal\n");
  398.         printf("digits in the text file.\n");
  399.         printf(" eg:\n\n");
  400.         printf("c:\>rec son3.txt son3.mid\n\n");
  401.         printf("(This will create a file called son3.mid which is\n");
  402.         printf("a valid binary file)\n\n");
  403.         printf("(dec.exe may also be useful, as it decodes binary files)\n\n");
  404.         printf("Have Fun!!\n");
  405. }
  406.  
  407. ----------------------------- MIDIFILE.PS ---------------------------------
  408. %-12345X@PJL ENTER LANGUAGE = POSTSCRIPT
  409. %!PS-Adobe
  410. /wpdict 120 dict def
  411. wpdict  begin
  412. /bdef   {bind def} bind def
  413.  
  414. /bflg   false def
  415. /Bfont  0 def
  416. /bon    false def
  417.  
  418. /psz    0 def
  419. /_S     /show load def
  420. /_t     {0 rmoveto} bdef
  421.  
  422. /_pixelsnap
  423.         {transform .25 sub round .25 add
  424.          exch .25 sub round .25 add exch itransform
  425.         } bdef
  426. /_pixeldsnap
  427.         { dtransform round exch round exch idtransform } bdef
  428.  
  429. /_lt    {_pixelsnap lineto} bdef
  430. /_rlt   {_pixeldsnap rlineto} bdef
  431. /_mt    {_pixelsnap moveto} bdef
  432. /_rmt   {_pixeldsnap rmoveto} bdef
  433.  
  434. /bshow  {gsave psz 30 div 0 _rmt dup show grestore show} bdef
  435.  
  436. /DUx    0 def
  437. /DUy    0 def
  438. /hscl   0 def
  439.  
  440. /M      {_mt
  441.          2 mul -2 2
  442.          { -2 roll 0 _rmt _S } for
  443.         } bdef
  444.  
  445. /makeoutl
  446.         { dup /OutlineFlag known not
  447.           { dup dup length 2 add dict begin
  448.             {1 index /FID ne { def }{ pop pop } ifelse } forall
  449.             /UniqueID known {/UniqueID UniqueID 10000 add def} if
  450.             /PaintType PaintType 0 eq { 2 }{ PaintType } ifelse def
  451.             /StrokeWidth 15 def
  452.             /OutlineFlag true def
  453.             /OutlineFont currentdict end definefont
  454.           } if
  455.         } bdef
  456.  
  457. /nbuff  50 string def
  458. /orntsv 0 def
  459. /plen   0 def
  460. /pwid   0 def
  461. /picstr 1 string def
  462.  
  463. /WPencoding StandardEncoding 256 array copy def 0
  464.  [ 127/Aacute/Acircumflex/Adieresis/Agrave/Aring/Atilde/Ccedilla
  465.   /Delta/Eacute/Ecircumflex/Edieresis/Egrave/Eth/Gamma/Iacute
  466.   /Icircumflex/Idieresis/Igrave/Lambda/Ntilde/Oacute
  467.   /Ocircumflex/Odieresis/Ograve/Omega/Otilde/Phi/Pi/Psi
  468.   /Scaron/Sigma/TeXtext32/Theta/Thorn
  469.   209/Uacute/Ucircumflex/Udieresis/Ugrave/Upsilon/Xi/Yacute
  470.   /Ydieresis/Zcaron/aacute/acircumflex/adieresis/agrave
  471.   /aring/atilde/brokenbar
  472.   228/ccedilla/copyright/degree/divide
  473.   236/dotlessj/eacute/ecircumflex/edieresis/egrave
  474.   242/eth/ff/ffi
  475.   246/ffl/iacute
  476.   252/icircumflex/idieresis/igrave/logicalnot
  477.   1/minus/mu/multiply/ntilde/oacute/ocircumflex/odieresis
  478.   /ograve/onehalf/onequarter/onesuperior/otilde/plusminus
  479.   /registered/scaron/thorn/threequarters/threesuperior
  480.   /trademark/twosuperior/uacute/ucircumflex/udieresis
  481.   /ugrave/yacute/ydieresis/zcaron
  482. ]
  483. { dup type /nametype eq
  484.   { WPencoding 2 index 2 index put pop 1 add }
  485.   { exch pop } ifelse
  486. } forall pop
  487.  
  488. /reencode
  489. { dup FontDirectory exch known
  490.    { findfont }
  491.    {  dup nbuff cvs dup length 1 sub get 82 eq
  492.    {dup nbuff cvs dup length 1 sub 0 exch getinterval
  493.    findfont begin
  494.    currentdict dup length dict begin
  495. { 1 index /FID ne {def} {pop pop} ifelse } forall
  496. /FontName exch def
  497.  
  498. /Encoding WPencoding def
  499. currentdict dup end end
  500. /FontName get exch definefont
  501.      }
  502.      { findfont } ifelse
  503.   } ifelse
  504. } bdef
  505.  
  506. /WPDLencoding StandardEncoding 256 array copy def 0
  507. [ 127     /SA420000/SD630000/SF010000/SF020000/SF030000
  508. /SF040000/SF050000/SF060000/SF070000/SF080000/SF090000
  509. /SF100000/SF110000/SF140000/SF150000/SF160000/SF190000
  510. /SF200000/SF210000/SF220000/SF230000/SF240000/SF250000/SF260000
  511. /SF270000/SF280000/SF360000/SF370000/SF380000/SF390000/SF400000
  512. /SF410000/SF420000/SF430000
  513. 209 /SF440000/SF450000/SF460000/SF470000/SF480000
  514. /SF490000/SF500000/SF510000/SF520000/SF530000/SF540000
  515. /SF570000/SF580000/SF590000/SF600000/SF610000
  516. 228 /SM570001/SM590000/SM600000/SM630000
  517. 236 /SM680000/SM690000/SM700000/SM750000/SM750002
  518. 242 /SM770000/SM790000/SP320000
  519. 246 /SS000000/SS010000
  520. 252 /SS260000/SS270000/SV040000/apostrophereverse
  521. 1/arrowboth/arrowdown/arrowleft/arrowright/arrowup/club
  522. /deutschmark/diamond/diamondopen/exclamdbl/female
  523. /fiveeighths/franc/heart/male/musicalnote/musicalnotedbl
  524. /napostrophe/nsuperior/oneeighths/seveneighths/spade
  525. /threeeights/underscoredbl/SM760000
  526. ]
  527. { dup type /nametype eq
  528.   { WPDLencoding 2 index 2 index put pop 1 add }
  529.   { exch pop } ifelse
  530. } forall pop
  531.  
  532. /reencodeL
  533.     { dup FontDirectory exch known
  534.       { findfont }
  535.       {  dup nbuff cvs dup length 1 sub get 76 eq
  536.          {    dup nbuff cvs dup length 1 sub 0 exch getinterval
  537.          findfont begin
  538.          currentdict dup length dict begin
  539.          { 1 index /FID ne {def} {pop pop} ifelse } forall
  540.          /FontName exch def
  541.          /Encoding WPDLencoding def
  542.          currentdict dup end end
  543.          /FontName get exch definefont
  544.          }
  545.          { findfont } ifelse
  546.       } ifelse
  547.     } bdef
  548.  
  549. /ron    false def
  550. /sflg   false def
  551. /slan   0 def
  552. /sp     32 def
  553.  
  554. /sshow
  555.         { save exch
  556.            gsave
  557.             psz 20 div dup neg _rmt dup show
  558.            grestore
  559.            dup
  560.            save exch
  561.             Bfont setfont
  562.             1 setgray show
  563.            restore
  564.            currentfont makeoutl setfont show
  565.            currentpoint 3 -1 roll
  566.           restore _mt
  567.         } bdef
  568.  
  569. /Sx     0 def
  570. /Sy     0 def
  571. /Ux     0 def
  572. /Uy     0 def
  573. /W      /widthshow load def
  574.  
  575. /_B     {/bflg true def
  576.          sflg not {/_S /bshow load def /bon true def} if
  577.         } bdef
  578. /_b     {/bflg false def
  579.          bon {/_S /show load def /bon false def} if
  580.         } bdef
  581. /_bd    {save} bdef
  582. /_bp    {save 2 setmiterlimit .06 .06 scale 0 0 _mt} bdef
  583. /_ccprocs
  584.         {/proc2 exch cvlit def
  585.          /proc1 exch cvlit def
  586.          /newproc proc1 length proc2 length add
  587.          array def
  588.          newproc 0 proc1 putinterval
  589.          newproc proc1 length proc2 putinterval
  590.          newproc cvx
  591.         } def
  592. /_clr   {3 {255 div 3 1 roll} repeat
  593.          ron {6 3 roll pop pop pop} {setrgbcolor} ifelse
  594.         } bdef
  595. /_cp    /closepath load def
  596. /_cw    {stroke initclip _mt 0 2 index
  597.          _rlt 0 _rlt 0 exch neg
  598.          _rlt clip newpath
  599.         } bdef
  600. /_d     /setdash load def
  601. /_DU    {currentpoint /DUy exch def /DUx exch def} bdef
  602. /_du    {gsave
  603.           save
  604.           8 setlinewidth
  605.       currentpoint -30 add _mt
  606.       DUx DUy -30 add _lt stroke
  607.           restore
  608.           8 setlinewidth
  609.           currentpoint -50 add _mt
  610.           DUx DUy -50 add _lt stroke
  611.          grestore
  612.         } bdef
  613. /_ed    {restore} bdef
  614. /_ep    {restore showpage 0 0 _mt} bdef
  615. /_f     /eofill load def
  616. /_ff    { exch reencode exch
  617.           3 div dup /psz exch def
  618.           scalefont dup /Bfont exch def setfont
  619.         } bdef
  620. /_ffs   { /slan exch 10 div def /hscl exch 1000 div def
  621.           /psz exch 3 div def
  622.           [ psz hscl mul 0 slan dup sin exch cos div psz mul psz 0 0 ]
  623.           exch reencode exch makefont dup /Bfont exch def setfont
  624.         } bdef
  625. /_g     /setgray load def
  626. /_gs    {neg 100 add 100 div setgray} bdef
  627. /_i     {gsave
  628.           dup /picstr exch 7 add 8 idiv string def
  629.           3 1 roll translate dup 1 scale
  630.           dup 1 1 [5 -1 roll 0 0 1 0 0]
  631.           {currentfile picstr readhexstring pop} image
  632.          grestore
  633.         } bdef
  634. /_is    {save 4 1 roll
  635.           dup /picstr exch 7 add 8 idiv string def
  636.           3 1 roll translate dup 1 scale
  637.           dup 1 1 [5 -1 roll 0 0 1 0 0]
  638.           {currentfile picstr readhexstring pop} image
  639.          restore
  640.         } bdef
  641. /_ie    {1 eq { {1 exch sub} currenttransfer _ccprocs settransfer} if
  642.          /_isx exch def /_isy exch def
  643.          _isx mul exch _isy mul translate
  644.          add 2 div /_txc exch def
  645.          add 2 div /_tyc exch def
  646.          _txc _isx mul _tyc _isy mul translate
  647.          360 exch sub rotate
  648.          1 eq { _isx neg _isy scale }
  649.          { _isx _isy scale }
  650.          ifelse _txc neg _tyc neg translate
  651.         } bdef
  652. /_irms  {save
  653.           12 1 roll
  654.           1 eq {{1 exch sub} currenttransfer _ccprocs settransfer} if
  655.           /picstr exch string def translate
  656.           2 index 6 index sub 2 div 2 index 6 index sub 2 div neg
  657.           translate
  658.           5 index 5 index 2 div neg exch 2 div exch
  659.           2 copy neg exch neg exch 5 2 roll translate
  660.           360 exch sub rotate
  661.           3 index 3 index 7 index div exch 8 index div exch scale
  662.           translate pop pop 2 index 2 index scale
  663.           3 index 0 eq
  664.           { [ 3 index 0 0 5 index neg 0 0 ] }
  665.           { 3 index 1 eq
  666.       { [ 3 index 0 0 5 index 0 7 index ] }
  667.       { 3 index 128 eq
  668.           { [ 3 index neg 0 0 5 index neg 7 index 0 ] }
  669.           { [ 3 index neg 0 0 5 index 7 index 7 index ] } ifelse
  670.             } ifelse
  671.           } ifelse
  672.           {currentfile picstr readhexstring pop} image
  673.           pop
  674.          restore
  675.         } bdef
  676.  
  677. /_l     {_lt} bdef
  678. /_lr    {_rlt} bdef
  679. /_m     {_mt} bdef
  680. /_O     {currentfont makeoutl setfont} bdef
  681. /_o     {Bfont setfont} bdef
  682. /_ornt  {/pwid exch def /plen exch def
  683.          orntsv 1 eq {0 pwid translate -90 rotate} if
  684.          orntsv 2 eq {pwid plen translate 180 rotate} if
  685.          orntsv 3 eq {plen 0 translate 90 rotate} if
  686.          dup 1 eq {pwid 0 translate 90 rotate} if
  687.          dup 2 eq {pwid plen translate 180 rotate} if
  688.          dup 3 eq {0 plen translate -90 rotate} if
  689.          /orntsv exch def
  690.         } bdef
  691. /_lod1  {currentpoint orntsv plen pwid 6 -1 roll restore save} bdef
  692. /_lod2  {_bp 7 2 roll _ornt _mt} bdef
  693. /_unlod {currentpoint orntsv plen pwid 7 -2 roll restore restore
  694.          _bp 6 1 roll _ornt _mt
  695.         } bdef
  696. /_p     {2 copy _mt 1 0 _rlt _mt} bdef
  697. /_pl    {{_lt} repeat} bdef
  698. /_R      { /ron true def /_S /_rshow load def /_t /_red load def} bdef
  699. /_rshow  { save exch
  700.            currentpoint
  701.            /RSy exch def /RSx exch def
  702.            ron {
  703.                  sflg
  704.                  {      currentpoint
  705.                         /Ry exch def /Rx exch def
  706.                         dup stringwidth pop Rx Ry psz 4 div add _mt
  707.                         Rx psz 15 add setlinewidth .95 setgray 0 setlinecap
  708.                         add Ry psz 4 div add _lt stroke Rx Ry _mt 0 0 0 setrgbcolor
  709.                         dup show Rx Ry _mt
  710.                         sshow
  711.                  }
  712.                  { _redshow
  713.                  }ifelse
  714.            }
  715.            {     sflg {sshow} if
  716.            }ifelse
  717.            currentpoint 3 -1 roll
  718.            restore _mt
  719.          } bdef
  720. /_red   { gsave dup
  721.          currentpoint /Ry exch def /Rx exch def
  722.          Rx Ry psz 4 div add _mt
  723.          Rx psz 15 add setlinewidth .95 setgray 0 setlinecap
  724.          add Ry psz 4 div add _lt stroke
  725.          Rx Ry _mt
  726.          grestore
  727.          0 rmoveto
  728.     }bdef
  729. /_redshow {currentpoint
  730.          /Ry exch def /Rx exch def
  731.          dup stringwidth pop Rx Ry psz 4 div add _mt
  732.          Rx psz 15 add setlinewidth .95 setgray 0 setlinecap
  733.          add Ry psz 4 div add _lt stroke Rx Ry _mt 0 0 0 setrgbcolor
  734.          show currentpoint _mt
  735.     }bdef
  736. /_rmxy  {_rmt} bdef
  737. /_s     /stroke load def
  738. /_SH    bon {/bon false def} if
  739.         {/sflg true def /_S /_rshow load def
  740.         } bdef
  741. /_sh    { ron   {/sflg false def bflg {_B} if}
  742.                 {/_S /show load def /sflg false def bflg {_B} if}ifelse
  743.         }bdef
  744. /_sp    { gsave stroke grestore } bdef
  745. /_ST    {currentpoint /Sy exch def /Sx exch def} bdef
  746. /_st    {gsave
  747.           currentpoint pop
  748.           Sx dup Sy _mt sub
  749.           (\320) stringwidth pop div
  750.           dup floor cvi dup
  751.       dup 0 gt {{(\320) show} repeat}{pop} ifelse sub
  752.           dup 0 gt {1 scale (\320) show}{pop} ifelse
  753.          grestore
  754.         } bdef
  755. /_U     {currentpoint /Uy exch def /Ux exch def} bdef
  756. /_u     {gsave
  757.           currentpoint
  758.           -30 add _mt
  759.           Ux Uy -30 add _lt
  760.           12 setlinewidth
  761.           stroke
  762.          grestore
  763.         } bdef
  764. /_w     /setlinewidth load def
  765. end
  766. /#copies 1 def /wpdict2 100 dict def
  767. wpdict begin wpdict2 begin
  768.  
  769. _bd
  770. /_rhs{readhexstring}bdef/_tr{translate}bdef
  771. /_ix{index}bdef/_mx{matrix}bdef
  772. /ife{ifelse}bdef/_x{exch}bdef
  773. /_is{save 4 1 roll
  774. dup/picstr _x 7 add 8 idiv string def
  775. 3 1 roll _tr dup 1 scale
  776. dup 1 1[5 -1 roll 0 0 1 0 0]
  777. {currentfile picstr _rhs pop}image restore}bdef
  778. /_epsi{1 eq{{1 _x sub}currenttransfer _ccprocs settransfer}if
  779. /yp _x def/xp _x def/dhgt _x def/dwid _x def
  780. 4 copy sub/swid _x def
  781. sub/shgt _x def
  782. add 2 div/icx _x def add 2 div/icy _x def
  783. xp dwid 2 div add icx sub yp dhgt 2 div sub
  784. icy sub _tr icx icy _tr
  785. 360 _x sub rotate
  786. dwid swid div/xsc _x def _x
  787. dhgt shgt div/ysc _x def _x
  788. dup 1 eq{xsc neg/xsc _x def pop}
  789. {dup 2 eq{ysc neg /ysc _x def pop}
  790. {3 eq{ysc neg/ysc _x def xsc neg/xsc _x def}
  791. {}ife}ife}ife
  792. xsc ysc scale
  793. 100 div _x 100 div _x scale
  794. icx neg icy neg _tr}bdef
  795. /_c{3{255 div 3 1 roll}repeat setrgbcolor}bdef
  796. /eq3{3 copy 2 _ix eq{eq{true}{false}ife}{pop
  797. pop false}ife}bdef
  798. /g{255 div setgray}bdef
  799. /_clr{ron{6 3 roll pop pop pop}{eq3{pop
  800. pop g}{_c}ife}ife}bdef
  801. /_r{/ron false def eq3{1 sub neg g pop
  802. pop}{setrgbcolor}ife}bdef
  803. /_ircms{save 15 1 roll
  804. 1 eq{{1 exch sub}currenttransfer _ccprocs settransfer}if
  805. /pstr _x string def _tr
  806. /Cli _x def/USy _x def/USx _x def/Rot _x def/HTd _x def
  807. /WDd _x def/Bdep _x def/HTs _x def/WDs _x def/MIR _x def
  808. USx 100 div USy 100 div scale
  809. WDd WDs sub 2 div HTd HTs sub 2 div neg _tr
  810. WDs HTs 2 div neg _x 2 div _x _tr
  811. Rot 360 _x sub rotate WDd HTd HTs div _x WDs div _x scale
  812. WDs 2 div neg HTs 2 div _tr
  813. WDs HTs scale WDs HTs Bdep MIR 0
  814. eq{[WDs 0 0 HTs neg 0 0]}{MIR 1 eq{[WDs 0 0 HTs 0 HTs]}
  815. {MIR 128 eq{[WDs neg 0 0 HTs neg WDs 0]}
  816. {[WDs neg 0 0 HTs WDs HTs]}ife}ife}ife
  817. {currentfile pstr _rhs pop}Cli
  818. 0 eq{image}{false 3 colorimage}ife
  819. restore}bdef
  820. /_bp{save 2 setlinecap 2 setmiterlimit
  821. .06 .06 scale 0 0 moveto}bdef
  822. /tctm _mx def/trot _mx def/tscale _mx def/rmtx _mx def
  823. /fr{72 0 rmtx defaultmatrix dtransform
  824. /yres _x def/xres _x def
  825. xres dup mul yres dup mul add sqrt}bdef
  826. /sus{/spotf _x def/sang _x def/csz _x def
  827. /m tctm currentmatrix def/rm sang trot rotate def
  828. /sm csz dup tscale scale def
  829. sm rm m m concatmatrix m concatmatrix pop
  830. 1 0 m dtransform /y1 _x def/x1 _x def
  831. /veclength x1 dup mul y1 dup mul add sqrt def
  832. /frcy fr veclength div def /nsang y1 x1 atan def
  833. frcy nsang/spotf load setscreen}bdef
  834. /bitis{/ybit _x def /xbit _x def
  835. /bval bstring ybit bwidth mul xbit 8 idiv add get def
  836. /mask 1 7 xbit 8 mod sub bitshift def
  837. bval mask and 0 ne}bdef
  838. /bps{/y _x def /x _x def
  839. /xndx x 1 add 2 div bpside mul cvi def
  840. /yndx y 1 add 2 div bpside mul cvi def
  841. xndx yndx bitis
  842. {/onb onb 1 add def 1}{/ofb ofb 1 add def 0}ife}bdef
  843. /stpatt{/csz _x def /angle _x def /bwidth _x def
  844. /bpside _x def /bstring _x def
  845. /onb 0 def /ofb 0 def
  846. csz angle /bps load
  847. sus{}settransfer
  848. ofb ofb onb add div _g}bdef
  849. /_fp{8 1 0 cpi stpatt}bdef
  850. /_pf{gsave eofill grestore}bdef
  851. /_np{newpath}bdef/_lc{setlinecap}bdef
  852. /_sr{/cpi _x def}bdef
  853. /nbuff 50 string def
  854. letter _bp 0 13200 10200 _ornt /NewCenturySchlbk-RomanR 500 _ff
  855. 0 13200 10200 _ornt 
  856. /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}
  857.          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse
  858.      }bdef
  859. 8907 11870 _m
  860. (1)_S 3462 11439 _m
  861. /NewCenturySchlbk-RomanR 750 _ff
  862. (Standard)_S 83 _t
  863. (MIDI)_S 83 _t
  864. (File)_S 83 _t
  865. (Format)_S /NewCenturySchlbk-RomanR 500 _ff
  866. 4469 11220 _m
  867. (Dustin)_S 56 _t
  868. (Caldwell)_S 1800 10820 _m
  869. (The)_S 56 _t
  870. (standard)_S 56 _t
  871. (MIDI)_S 56 _t
  872. (file)_S 56 _t
  873. (format)_S 56 _t
  874. (is)_S 56 _t
  875. (a)_S 56 _t
  876. (very)_S 56 _t
  877. (strange)_S 56 _t
  878. (beast.)_S 56 _t
  879. (When)_S 56 _t
  880. (viewed)_S 56 _t
  881. (as)_S 56 _t
  882. (a)_S 56 _t
  883. (whole,)_S 56 _t
  884. (it)_S 56 _t
  885. (can)_S 56 _t
  886. (be)_S 1200 10620 _m
  887. (quite)_S 56 _t
  888. (overwhelming.)_S 56 _t
  889. (Of)_S 56 _t
  890. (course,)_S 56 _t
  891. (no)_S 56 _t
  892. (matter)_S 56 _t
  893. (how)_S 56 _t
  894. (you)_S 56 _t
  895. (look)_S 56 _t
  896. (at)_S 56 _t
  897. (it,)_S 56 _t
  898. (describing)_S 56 _t
  899. (a)_S 56 _t
  900. (piece)_S 56 _t
  901. (of)_S 56 _t
  902. (music)_S 56 _t
  903. (in)_S 56 _t
  904. (enough)_S 1200 10420 _m
  905. (detail)_S 56 _t
  906. (to)_S 56 _t
  907. (be)_S 56 _t
  908. (able)_S 56 _t
  909. (to)_S 56 _t
  910. (reproduce)_S 56 _t
  911. (it)_S 56 _t
  912. (accurately)_S 56 _t
  913. (is)_S 56 _t
  914. (no)_S 56 _t
  915. (small)_S 56 _t
  916. (task.)_S 56 _t
  917. (So,)_S 56 _t
  918. (while)_S 56 _t
  919. (complicated,)_S 56 _t
  920. (the)_S 56 _t
  921. (structure)_S 56 _t
  922. (of)_S 1200 10220 _m
  923. (the)_S 56 _t
  924. (midi)_S 56 _t
  925. (file)_S 56 _t
  926. (format)_S 56 _t
  927. (is)_S 56 _t
  928. (fairly)_S 56 _t
  929. (intuitive)_S 56 _t
  930. (when)_S 56 _t
  931. (understood.)_S 56 _t
  932. 1800 10020 _m
  933. (I)_S 56 _t
  934. (must)_S 56 _t
  935. (insert)_S 56 _t
  936. (a)_S 56 _t
  937. (disclaimer)_S 56 _t
  938. (here)_S 56 _t
  939. (that)_S 56 _t
  940. (I)_S 56 _t
  941. (am)_S 56 _t
  942. (by)_S 56 _t
  943. (no)_S 56 _t
  944. (means)_S 56 _t
  945. (an)_S 56 _t
  946. (expert)_S 56 _t
  947. (with)_S 56 _t
  948. (midi)_S 56 _t
  949. (nor)_S 56 _t
  950. (midi)_S 56 _t
  951. (files.)_S 56 _t
  952. (I)_S 1200 9820 _m
  953. (recently)_S 56 _t
  954. (obtained)_S 56 _t
  955. (a)_S 56 _t
  956. (Gravis)_S 56 _t
  957. (UltraSound)_S 56 _t
  958. (board)_S 56 _t
  959. (for)_S 56 _t
  960. (my)_S 56 _t
  961. (PC,)_S 56 _t
  962. (and)_S 56 _t
  963. (upon)_S 56 _t
  964. (hearing)_S 56 _t
  965. (a)_S 56 _t
  966. (few)_S 56 _t
  967. (midi)_S 56 _t
  968. (files)_S 56 _t
  969. (\(.MID\))_S 1200 9620 _m
  970. (thought,)_S 56 _t
  971. ("Gee,)_S 56 _t
  972. (I'd)_S 56 _t
  973. (like)_S 56 _t
  974. (to)_S 56 _t
  975. (be)_S 56 _t
  976. (able)_S 56 _t
  977. (to)_S 56 _t
  978. (make)_S 56 _t
  979. (my)_S 56 _t
  980. (own)_S 56 _t
  981. (.MID)_S 56 _t
  982. (files.")_S 56 _t
  983. (Well,)_S 56 _t
  984. (many)_S 56 _t
  985. (aggravating)_S 56 _t
  986. (hours)_S 56 _t
  987. (later,)_S 1200 9420 _m
  988. (I)_S 56 _t
  989. (discovered)_S 56 _t
  990. (that)_S 56 _t
  991. (this)_S 56 _t
  992. (was)_S 56 _t
  993. (no)_S 56 _t
  994. (trivial)_S 56 _t
  995. (task.)_S 56 _t
  996. (But,)_S 56 _t
  997. (I)_S 56 _t
  998. (couldn't)_S 56 _t
  999. (let)_S 56 _t
  1000. (a)_S 56 _t
  1001. (stupid)_S 56 _t
  1002. (file)_S 56 _t
  1003. (format)_S 56 _t
  1004. (stop)_S 56 _t
  1005. (me.)_S 56 _t
  1006. (\(besides,)_S 56 _t
  1007. (I)_S 1200 9220 _m
  1008. (once)_S 56 _t
  1009. (told)_S 56 _t
  1010. (my)_S 56 _t
  1011. (wife)_S 56 _t
  1012. (that)_S 56 _t
  1013. (computers)_S 56 _t
  1014. (aren't)_S 56 _t
  1015. (really)_S 56 _t
  1016. (that)_S 56 _t
  1017. (hard)_S 56 _t
  1018. (to)_S 56 _t
  1019. (use,)_S 56 _t
  1020. (and)_S 56 _t
  1021. (I'd)_S 56 _t
  1022. (hate)_S 56 _t
  1023. (to)_S 56 _t
  1024. (be)_S 56 _t
  1025. (a)_S 56 _t
  1026. (hypocrite\))_S 56 _t
  1027. (So)_S 1200 9020 _m
  1028. (if)_S 56 _t
  1029. (any)_S 56 _t
  1030. (errors)_S 56 _t
  1031. (are)_S 56 _t
  1032. (found)_S 56 _t
  1033. (in)_S 56 _t
  1034. (this)_S 56 _t
  1035. (information,)_S 56 _t
  1036. (please)_S 56 _t
  1037. (let)_S 56 _t
  1038. (me)_S 56 _t
  1039. (know)_S 56 _t
  1040. (and)_S 56 _t
  1041. (I)_S 56 _t
  1042. (will)_S 56 _t
  1043. (fix)_S 56 _t
  1044. (it.)_S 56 _t
  1045. (Also,)_S 56 _t
  1046. (this)_S 1200 8820 _m
  1047. (document's)_S 56 _t
  1048. (scope)_S 56 _t
  1049. (does)_S 56 _t
  1050. (not)_S 56 _t
  1051. (extend)_S 56 _t
  1052. (to)_S 56 _t
  1053. (EVERY)_S 56 _t
  1054. (type)_S 56 _t
  1055. (of)_S 56 _t
  1056. (midi)_S 56 _t
  1057. (command)_S 56 _t
  1058. (and)_S 56 _t
  1059. (EVERY)_S 56 _t
  1060. (possible)_S 56 _t
  1061. (file)_S 1200 8620 _m
  1062. (configuration.)_S 56 _t
  1063. (It)_S 56 _t
  1064. (is)_S 56 _t
  1065. (a)_S 56 _t
  1066. (basic)_S 56 _t
  1067. (guide)_S 56 _t
  1068. (that)_S 56 _t
  1069. (should)_S 56 _t
  1070. (enable)_S 56 _t
  1071. (the)_S 56 _t
  1072. (reader)_S 56 _t
  1073. (\(with)_S 56 _t
  1074. (a)_S 56 _t
  1075. (moderate)_S 56 _t
  1076. (investment)_S 56 _t
  1077. (in)_S 1200 8420 _m
  1078. (time\))_S 56 _t
  1079. (to)_S 56 _t
  1080. (generate)_S 56 _t
  1081. (a)_S 56 _t
  1082. (quality)_S 56 _t
  1083. (midi)_S 56 _t
  1084. (file.)_S 1200 8020 _m
  1085. (1.)_S 56 _t
  1086. (Overview)_S 1800 7620 _m
  1087. (A)_S 56 _t
  1088. (midi)_S 56 _t
  1089. (\(.MID\))_S 56 _t
  1090. (file)_S 56 _t
  1091. (contains)_S 56 _t
  1092. (basically)_S 56 _t
  1093. (2)_S 56 _t
  1094. (things,)_S 56 _t
  1095. (Header)_S 56 _t
  1096. (chunks)_S 56 _t
  1097. (and)_S 56 _t
  1098. (Track)_S 56 _t
  1099. (chunks.)_S 56 _t
  1100. (Section)_S 56 _t
  1101. (2)_S 1200 7420 _m
  1102. (explains)_S 56 _t
  1103. (the)_S 56 _t
  1104. (header)_S 56 _t
  1105. (chunks,)_S 56 _t
  1106. (and)_S 56 _t
  1107. (Section)_S 56 _t
  1108. (3)_S 56 _t
  1109. (explains)_S 56 _t
  1110. (the)_S 56 _t
  1111. (track)_S 56 _t
  1112. (chunks.)_S 56 _t
  1113. (A)_S 56 _t
  1114. (midi)_S 56 _t
  1115. (file)_S 56 _t
  1116. (contains)_S 56 _t
  1117. (ONE)_S 1200 7220 _m
  1118. (header)_S 56 _t
  1119. (chunk)_S 56 _t
  1120. (describing)_S 56 _t
  1121. (the)_S 56 _t
  1122. (file)_S 56 _t
  1123. (format,)_S 56 _t
  1124. (etc.,)_S 56 _t
  1125. (and)_S 56 _t
  1126. (any)_S 56 _t
  1127. (number)_S 56 _t
  1128. (of)_S 56 _t
  1129. (track)_S 56 _t
  1130. (chunks.)_S 56 _t
  1131. (A)_S 56 _t
  1132. (track)_S 56 _t
  1133. (may)_S 56 _t
  1134. (be)_S 1200 7020 _m
  1135. (thought)_S 56 _t
  1136. (of)_S 56 _t
  1137. (in)_S 56 _t
  1138. (the)_S 56 _t
  1139. (same)_S 56 _t
  1140. (way)_S 56 _t
  1141. (as)_S 56 _t
  1142. (a)_S 56 _t
  1143. (track)_S 56 _t
  1144. (on)_S 56 _t
  1145. (a)_S 56 _t
  1146. (multi-track)_S 56 _t
  1147. (tape)_S 56 _t
  1148. (deck.)_S 56 _t
  1149. (You)_S 56 _t
  1150. (may)_S 56 _t
  1151. (assign)_S 56 _t
  1152. (one)_S 56 _t
  1153. (track)_S 56 _t
  1154. (to)_S 1200 6820 _m
  1155. (each)_S 56 _t
  1156. (voice,)_S 56 _t
  1157. (each)_S 56 _t
  1158. (staff,)_S 56 _t
  1159. (each)_S 56 _t
  1160. (instrument)_S 56 _t
  1161. (or)_S 56 _t
  1162. (whatever)_S 56 _t
  1163. (you)_S 56 _t
  1164. (want.)_S 56 _t
  1165. 1200 6420 _m
  1166. (2.)_S 56 _t
  1167. (Header)_S 56 _t
  1168. (Chunk)_S 1800 6020 _m
  1169. (The)_S 56 _t
  1170. (header)_S 56 _t
  1171. (chunk)_S 56 _t
  1172. (appears)_S 56 _t
  1173. (at)_S 56 _t
  1174. (the)_S 56 _t
  1175. (beginning)_S 56 _t
  1176. (of)_S 56 _t
  1177. (the)_S 56 _t
  1178. (file,)_S 56 _t
  1179. (and)_S 56 _t
  1180. (describes)_S 56 _t
  1181. (the)_S 56 _t
  1182. (file)_S 56 _t
  1183. (in)_S 56 _t
  1184. (three)_S 56 _t
  1185. (ways.)_S 1200 5820 _m
  1186. (The)_S 56 _t
  1187. (header)_S 56 _t
  1188. (chunk)_S 56 _t
  1189. (always)_S 56 _t
  1190. (looks)_S 56 _t
  1191. (like:)_S 1200 5420 _m
  1192. (4D)_S 56 _t
  1193. (54)_S 56 _t
  1194. (68)_S 56 _t
  1195. (64)_S 56 _t
  1196. (00)_S 56 _t
  1197. (00)_S 56 _t
  1198. (00)_S 56 _t
  1199. (06)_S 56 _t
  1200. (ff)_S 56 _t
  1201. (ff)_S 56 _t
  1202. (nn)_S 56 _t
  1203. (nn)_S 56 _t
  1204. (dd)_S 56 _t
  1205. (dd)_S 1200 5020 _m
  1206. (The)_S 56 _t
  1207. (ascii)_S 56 _t
  1208. (equivalent)_S 56 _t
  1209. (of)_S 56 _t
  1210. (the)_S 56 _t
  1211. (first)_S 56 _t
  1212. (4)_S 56 _t
  1213. (bytes)_S 56 _t
  1214. (is)_S 56 _t
  1215. (MThd.)_S 56 _t
  1216. (After)_S 56 _t
  1217. (MThd)_S 56 _t
  1218. (comes)_S 56 _t
  1219. (the)_S 56 _t
  1220. (4-byte)_S 56 _t
  1221. (size)_S 56 _t
  1222. (of)_S 56 _t
  1223. (the)_S 56 _t
  1224. (header.)_S 1200 4820 _m
  1225. (This)_S 56 _t
  1226. (will)_S 56 _t
  1227. (always)_S 56 _t
  1228. (be)_S 56 _t
  1229. (00)_S 56 _t
  1230. (00)_S 56 _t
  1231. (00)_S 56 _t
  1232. (06,)_S 56 _t
  1233. (because)_S 56 _t
  1234. (the)_S 56 _t
  1235. (actual)_S 56 _t
  1236. (header)_S 56 _t
  1237. (information)_S 56 _t
  1238. (will)_S 56 _t
  1239. (always)_S 56 _t
  1240. (be)_S 56 _t
  1241. (6)_S 56 _t
  1242. (bytes.)_S 56 _t
  1243. 1200 4420 _m
  1244. (ff)_S 56 _t
  1245. (ff)_S 56 _t
  1246. (is)_S 56 _t
  1247. (the)_S 56 _t
  1248. (file)_S 56 _t
  1249. (format.)_S 56 _t
  1250. (There)_S 56 _t
  1251. (are)_S 56 _t
  1252. (3)_S 56 _t
  1253. (formats:)_S 1200 4020 _m
  1254. (0)_S 56 _t
  1255. (-)_S 56 _t
  1256. (single-track)_S 56 _t
  1257. 1200 3820 _m
  1258. (1)_S 56 _t
  1259. (-)_S 56 _t
  1260. (multiple)_S 56 _t
  1261. (tracks,)_S 56 _t
  1262. (synchronous)_S 1200 3620 _m
  1263. (2)_S 56 _t
  1264. (-)_S 56 _t
  1265. (multiple)_S 56 _t
  1266. (tracks,)_S 56 _t
  1267. (asynchronous)_S 1200 3220 _m
  1268. (Single)_S 56 _t
  1269. (track)_S 56 _t
  1270. (is)_S 56 _t
  1271. (fairly)_S 56 _t
  1272. (self-explanatory)_S 56 _t
  1273. (-)_S 56 _t
  1274. (one)_S 56 _t
  1275. (track)_S 56 _t
  1276. (only.)_S 56 _t
  1277. (Synchronous)_S 56 _t
  1278. (multiple)_S 56 _t
  1279. (tracks)_S 56 _t
  1280. (means)_S 56 _t
  1281. (that)_S 56 _t
  1282. (the)_S 1200 3020 _m
  1283. (tracks)_S 56 _t
  1284. (will)_S 56 _t
  1285. (all)_S 56 _t
  1286. (be)_S 56 _t
  1287. (vertically)_S 56 _t
  1288. (synchronous,)_S 56 _t
  1289. (or)_S 56 _t
  1290. (in)_S 56 _t
  1291. (other)_S 56 _t
  1292. (words,)_S 56 _t
  1293. (they)_S 56 _t
  1294. (all)_S 56 _t
  1295. (start)_S 56 _t
  1296. (at)_S 56 _t
  1297. (the)_S 56 _t
  1298. (same)_S 56 _t
  1299. (time,)_S 56 _t
  1300. (and)_S 56 _t
  1301. (so)_S 1200 2820 _m
  1302. (can)_S 56 _t
  1303. (represent)_S 56 _t
  1304. (different)_S 56 _t
  1305. (parts)_S 56 _t
  1306. (in)_S 56 _t
  1307. (one)_S 56 _t
  1308. (song.)_S 56 _t
  1309. (Asynchronous)_S 56 _t
  1310. (multiple)_S 56 _t
  1311. (tracks)_S 56 _t
  1312. (do)_S 56 _t
  1313. (not)_S 56 _t
  1314. (necessarily)_S 56 _t
  1315. (start)_S 56 _t
  1316. (at)_S 1200 2620 _m
  1317. (the)_S 56 _t
  1318. (same)_S 56 _t
  1319. (time,)_S 56 _t
  1320. (and)_S 56 _t
  1321. (can)_S 56 _t
  1322. (be)_S 56 _t
  1323. (completely)_S 56 _t
  1324. (asynchronous.)_S 56 _t
  1325. 1200 2220 _m
  1326. (nn)_S 56 _t
  1327. (nn)_S 56 _t
  1328. (is)_S 56 _t
  1329. (the)_S 56 _t
  1330. (number)_S 56 _t
  1331. (of)_S 56 _t
  1332. (tracks)_S 56 _t
  1333. (in)_S 56 _t
  1334. (the)_S 56 _t
  1335. (midi)_S 56 _t
  1336. (file.)_S 1200 1820 _m
  1337. (dd)_S 56 _t
  1338. (dd)_S 56 _t
  1339. (is)_S 56 _t
  1340. (the)_S 56 _t
  1341. (number)_S 56 _t
  1342. (of)_S 56 _t
  1343. (delta-time)_S 56 _t
  1344. (ticks)_S 56 _t
  1345. (per)_S 56 _t
  1346. (quarter)_S 56 _t
  1347. (note.)_S 56 _t
  1348. (\(More)_S 56 _t
  1349. (about)_S 56 _t
  1350. (this)_S 56 _t
  1351. (later\))_S _ep
  1352. _bp /NewCenturySchlbk-RomanR 500 _ff
  1353. 0 13200 10200 _ornt 
  1354. /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}
  1355.          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse
  1356.      }bdef
  1357. 8907 11870 _m
  1358. (2)_S 1200 11503 _m
  1359. (3.)_S 56 _t
  1360. (Track)_S 56 _t
  1361. (Chunks)_S 1200 11103 _m
  1362. (The)_S 56 _t
  1363. (remainder)_S 56 _t
  1364. (of)_S 56 _t
  1365. (the)_S 56 _t
  1366. (file)_S 56 _t
  1367. (after)_S 56 _t
  1368. (the)_S 56 _t
  1369. (header)_S 56 _t
  1370. (chunk)_S 56 _t
  1371. (consists)_S 56 _t
  1372. (of)_S 56 _t
  1373. (track)_S 56 _t
  1374. (chunks.)_S 56 _t
  1375. (Each)_S 56 _t
  1376. (track)_S 56 _t
  1377. (has)_S 56 _t
  1378. (one)_S 1200 10903 _m
  1379. (header)_S 56 _t
  1380. (and)_S 56 _t
  1381. (may)_S 56 _t
  1382. (contain)_S 56 _t
  1383. (as)_S 56 _t
  1384. (many)_S 56 _t
  1385. (midi)_S 56 _t
  1386. (commands)_S 56 _t
  1387. (as)_S 56 _t
  1388. (you)_S 56 _t
  1389. (like.)_S 56 _t
  1390. (The)_S 56 _t
  1391. (header)_S 56 _t
  1392. (for)_S 56 _t
  1393. (a)_S 56 _t
  1394. (track)_S 56 _t
  1395. (is)_S 56 _t
  1396. (very)_S 1200 10703 _m
  1397. (similar)_S 56 _t
  1398. (to)_S 56 _t
  1399. (the)_S 56 _t
  1400. (one)_S 56 _t
  1401. (for)_S 56 _t
  1402. (the)_S 56 _t
  1403. (file:)_S 1200 10303 _m
  1404. (4D)_S 56 _t
  1405. (54)_S 56 _t
  1406. (72)_S 56 _t
  1407. (6B)_S 56 _t
  1408. (xx)_S 56 _t
  1409. (xx)_S 56 _t
  1410. (xx)_S 56 _t
  1411. (xx)_S 1200 9903 _m
  1412. (As)_S 56 _t
  1413. (with)_S 56 _t
  1414. (the)_S 56 _t
  1415. (header,)_S 56 _t
  1416. (the)_S 56 _t
  1417. (first)_S 56 _t
  1418. (4)_S 56 _t
  1419. (bytes)_S 56 _t
  1420. (has)_S 56 _t
  1421. (an)_S 56 _t
  1422. (ascii)_S 56 _t
  1423. (equivalent.)_S 56 _t
  1424. (This)_S 56 _t
  1425. (one)_S 56 _t
  1426. (is)_S 56 _t
  1427. (MTrk.)_S 56 _t
  1428. (The)_S 56 _t
  1429. (4)_S 56 _t
  1430. (bytes)_S 56 _t
  1431. (after)_S 1200 9703 _m
  1432. (MTrk)_S 56 _t
  1433. (give)_S 56 _t
  1434. (the)_S 56 _t
  1435. (length)_S 56 _t
  1436. (of)_S 56 _t
  1437. (the)_S 56 _t
  1438. (track)_S 56 _t
  1439. (\(not)_S 56 _t
  1440. (including)_S 56 _t
  1441. (the)_S 56 _t
  1442. (track)_S 56 _t
  1443. (header\))_S 56 _t
  1444. (in)_S 56 _t
  1445. (bytes.)_S 56 _t
  1446. 1800 9503 _m
  1447. (Following)_S 56 _t
  1448. (the)_S 56 _t
  1449. (header)_S 56 _t
  1450. (are)_S 56 _t
  1451. (midi)_S 56 _t
  1452. (events.)_S 56 _t
  1453. (These)_S 56 _t
  1454. (events)_S 56 _t
  1455. (are)_S 56 _t
  1456. (identical)_S 56 _t
  1457. (to)_S 56 _t
  1458. (the)_S 56 _t
  1459. (actual)_S 56 _t
  1460. (data)_S 56 _t
  1461. (sent)_S 1200 9303 _m
  1462. (and)_S 56 _t
  1463. (received)_S 56 _t
  1464. (by)_S 56 _t
  1465. (MIDI)_S 56 _t
  1466. (ports)_S 56 _t
  1467. (on)_S 56 _t
  1468. (a)_S 56 _t
  1469. (synth)_S 56 _t
  1470. (with)_S 56 _t
  1471. (one)_S 56 _t
  1472. (addition.)_S 56 _t
  1473. (A)_S 56 _t
  1474. (midi)_S 56 _t
  1475. (event)_S 56 _t
  1476. (is)_S 56 _t
  1477. (preceded)_S 56 _t
  1478. (by)_S 56 _t
  1479. (a)_S 56 _t
  1480. (delta-time.)_S 1200 9103 _m
  1481. (A)_S 56 _t
  1482. (delta)_S 56 _t
  1483. (time)_S 56 _t
  1484. (is)_S 56 _t
  1485. (the)_S 56 _t
  1486. (number)_S 56 _t
  1487. (of)_S 56 _t
  1488. (ticks)_S 56 _t
  1489. (after)_S 56 _t
  1490. (which)_S 56 _t
  1491. (the)_S 56 _t
  1492. (midi)_S 56 _t
  1493. (event)_S 56 _t
  1494. (is)_S 56 _t
  1495. (to)_S 56 _t
  1496. (be)_S 56 _t
  1497. (executed.)_S 56 _t
  1498. (The)_S 56 _t
  1499. (number)_S 56 _t
  1500. (of)_S 1200 8903 _m
  1501. (ticks)_S 56 _t
  1502. (per)_S 56 _t
  1503. (quarter)_S 56 _t
  1504. (note)_S 56 _t
  1505. (was)_S 56 _t
  1506. (defined)_S 56 _t
  1507. (previously)_S 56 _t
  1508. (in)_S 56 _t
  1509. (the)_S 56 _t
  1510. (file)_S 56 _t
  1511. (header)_S 56 _t
  1512. (chunk.)_S 56 _t
  1513. (This)_S 56 _t
  1514. (delta-time)_S 56 _t
  1515. (is)_S 56 _t
  1516. (a)_S 1200 8703 _m
  1517. (variable-length)_S 56 _t
  1518. (encoded)_S 56 _t
  1519. (value.)_S 56 _t
  1520. (This)_S 56 _t
  1521. (format,)_S 56 _t
  1522. (while)_S 56 _t
  1523. (confusing,)_S 56 _t
  1524. (allows)_S 56 _t
  1525. (large)_S 56 _t
  1526. (numbers)_S 56 _t
  1527. (to)_S 56 _t
  1528. (use)_S 56 _t
  1529. (as)_S 56 _t
  1530. (many)_S 1200 8503 _m
  1531. (bytes)_S 56 _t
  1532. (as)_S 56 _t
  1533. (they)_S 56 _t
  1534. (need,)_S 56 _t
  1535. (without)_S 56 _t
  1536. (requiring)_S 56 _t
  1537. (small)_S 56 _t
  1538. (numbers)_S 56 _t
  1539. (to)_S 56 _t
  1540. (waste)_S 56 _t
  1541. (bytes)_S 56 _t
  1542. (by)_S 56 _t
  1543. (filling)_S 56 _t
  1544. (with)_S 56 _t
  1545. (zeros.)_S 56 _t
  1546. (The)_S 1200 8303 _m
  1547. (number)_S 56 _t
  1548. (is)_S 56 _t
  1549. (converted)_S 56 _t
  1550. (into)_S 56 _t
  1551. (7-bit)_S 56 _t
  1552. (bytes,)_S 56 _t
  1553. (and)_S 56 _t
  1554. (the)_S 56 _t
  1555. (most-significant)_S 56 _t
  1556. (bit)_S 56 _t
  1557. (of)_S 56 _t
  1558. (each)_S 56 _t
  1559. (byte)_S 56 _t
  1560. (is)_S 56 _t
  1561. (1)_S 56 _t
  1562. (except)_S 56 _t
  1563. (for)_S 56 _t
  1564. (the)_S 1200 8103 _m
  1565. (last)_S 56 _t
  1566. (byte)_S 56 _t
  1567. (of)_S 56 _t
  1568. (the)_S 56 _t
  1569. (number,)_S 56 _t
  1570. (which)_S 56 _t
  1571. (has)_S 56 _t
  1572. (a)_S 56 _t
  1573. (msb)_S 56 _t
  1574. (of)_S 56 _t
  1575. (0.)_S 56 _t
  1576. (This)_S 56 _t
  1577. (allows)_S 56 _t
  1578. (the)_S 56 _t
  1579. (number)_S 56 _t
  1580. (to)_S 56 _t
  1581. (be)_S 56 _t
  1582. (read)_S 56 _t
  1583. (one)_S 56 _t
  1584. (byte)_S 56 _t
  1585. (at)_S 56 _t
  1586. (a)_S 1200 7903 _m
  1587. (time,)_S 56 _t
  1588. (and)_S 56 _t
  1589. (when)_S 56 _t
  1590. (you)_S 56 _t
  1591. (see)_S 56 _t
  1592. (a)_S 56 _t
  1593. (msb)_S 56 _t
  1594. (of)_S 56 _t
  1595. (0,)_S 56 _t
  1596. (you)_S 56 _t
  1597. (know)_S 56 _t
  1598. (that)_S 56 _t
  1599. (it)_S 56 _t
  1600. (was)_S 56 _t
  1601. (the)_S 56 _t
  1602. (last)_S 56 _t
  1603. (\(least)_S 56 _t
  1604. (significant\))_S 56 _t
  1605. (byte)_S 56 _t
  1606. (of)_S 56 _t
  1607. (the)_S 1200 7703 _m
  1608. (number.)_S 56 _t
  1609. (According)_S 56 _t
  1610. (to)_S 56 _t
  1611. (the)_S 56 _t
  1612. (MIDI)_S 56 _t
  1613. (spec,)_S 56 _t
  1614. (the)_S 56 _t
  1615. (entire)_S 56 _t
  1616. (delta-time)_S 56 _t
  1617. (should)_S 56 _t
  1618. (be)_S 56 _t
  1619. (at)_S 56 _t
  1620. (most)_S 56 _t
  1621. (4)_S 56 _t
  1622. (bytes)_S 56 _t
  1623. (long.)_S 56 _t
  1624. 1800 7503 _m
  1625. (Following)_S 56 _t
  1626. (the)_S 56 _t
  1627. (delta-time)_S 56 _t
  1628. (is)_S 56 _t
  1629. (a)_S 56 _t
  1630. (midi)_S 56 _t
  1631. (event.)_S 56 _t
  1632. (Each)_S 56 _t
  1633. (midi)_S 56 _t
  1634. (event)_S 56 _t
  1635. (\(except)_S 56 _t
  1636. (a)_S 56 _t
  1637. (running)_S 56 _t
  1638. (midi)_S 56 _t
  1639. (event\))_S 1200 7303 _m
  1640. (has)_S 56 _t
  1641. (a)_S 56 _t
  1642. (command)_S 56 _t
  1643. (byte)_S 56 _t
  1644. (which)_S 56 _t
  1645. (will)_S 56 _t
  1646. (always)_S 56 _t
  1647. (have)_S 56 _t
  1648. (a)_S 56 _t
  1649. (msb)_S 56 _t
  1650. (of)_S 56 _t
  1651. (1)_S 56 _t
  1652. (\(the)_S 56 _t
  1653. (value)_S 56 _t
  1654. (will)_S 56 _t
  1655. (be)_S 56 _t
  1656. (>=)_S 56 _t
  1657. (128\).)_S 56 _t
  1658. (A)_S 56 _t
  1659. (list)_S 56 _t
  1660. (of)_S 56 _t
  1661. (most)_S 56 _t
  1662. (of)_S 1200 7103 _m
  1663. (these)_S 56 _t
  1664. (commands)_S 56 _t
  1665. (is)_S 56 _t
  1666. (in)_S 56 _t
  1667. (appendix)_S 56 _t
  1668. (A.)_S 56 _t
  1669. (Each)_S 56 _t
  1670. (command)_S 56 _t
  1671. (has)_S 56 _t
  1672. (different)_S 56 _t
  1673. (parameters)_S 56 _t
  1674. (and)_S 56 _t
  1675. (lengths,)_S 56 _t
  1676. (but)_S 56 _t
  1677. (the)_S 1200 6903 _m
  1678. (data)_S 56 _t
  1679. (that)_S 56 _t
  1680. (follows)_S 56 _t
  1681. (the)_S 56 _t
  1682. (command)_S 56 _t
  1683. (will)_S 56 _t
  1684. (have)_S 56 _t
  1685. (a)_S 56 _t
  1686. (msb)_S 56 _t
  1687. (of)_S 56 _t
  1688. (0)_S 56 _t
  1689. (\(less)_S 56 _t
  1690. (than)_S 56 _t
  1691. (128\).)_S 56 _t
  1692. (The)_S 56 _t
  1693. (exception)_S 56 _t
  1694. (to)_S 56 _t
  1695. (this)_S 56 _t
  1696. (is)_S 56 _t
  1697. (a)_S 1200 6703 _m
  1698. (meta-event,)_S 56 _t
  1699. (which)_S 56 _t
  1700. (may)_S 56 _t
  1701. (contain)_S 56 _t
  1702. (data)_S 56 _t
  1703. (with)_S 56 _t
  1704. (a)_S 56 _t
  1705. (msb)_S 56 _t
  1706. (of)_S 56 _t
  1707. (1.)_S 56 _t
  1708. (However,)_S 56 _t
  1709. (meta-events)_S 56 _t
  1710. (require)_S 56 _t
  1711. (a)_S 56 _t
  1712. (length)_S 1200 6503 _m
  1713. (parameter)_S 56 _t
  1714. (which)_S 56 _t
  1715. (alleviates)_S 56 _t
  1716. (confusion.)_S 56 _t
  1717. 1800 6303 _m
  1718. (One)_S 56 _t
  1719. (subtlety)_S 56 _t
  1720. (which)_S 56 _t
  1721. (can)_S 56 _t
  1722. (cause)_S 56 _t
  1723. (confusion)_S 56 _t
  1724. (is)_S 56 _t
  1725. (running)_S 56 _t
  1726. (mode.)_S 56 _t
  1727. (This)_S 56 _t
  1728. (is)_S 56 _t
  1729. (where)_S 56 _t
  1730. (the)_S 56 _t
  1731. (actual)_S 56 _t
  1732. (midi)_S 1200 6103 _m
  1733. (command)_S 56 _t
  1734. (is)_S 56 _t
  1735. (omitted,)_S 56 _t
  1736. (and)_S 56 _t
  1737. (the)_S 56 _t
  1738. (last)_S 56 _t
  1739. (midi)_S 56 _t
  1740. (command)_S 56 _t
  1741. (issued)_S 56 _t
  1742. (is)_S 56 _t
  1743. (assumed.)_S 56 _t
  1744. (This)_S 56 _t
  1745. (means)_S 56 _t
  1746. (that)_S 56 _t
  1747. (the)_S 56 _t
  1748. (midi)_S 1200 5903 _m
  1749. (event)_S 56 _t
  1750. (will)_S 56 _t
  1751. (consist)_S 56 _t
  1752. (of)_S 56 _t
  1753. (a)_S 56 _t
  1754. (delta-time)_S 56 _t
  1755. (and)_S 56 _t
  1756. (the)_S 56 _t
  1757. (parameters)_S 56 _t
  1758. (that)_S 56 _t
  1759. (would)_S 56 _t
  1760. (go)_S 56 _t
  1761. (to)_S 56 _t
  1762. (the)_S 56 _t
  1763. (command)_S 56 _t
  1764. (if)_S 56 _t
  1765. (it)_S 56 _t
  1766. (were)_S 1200 5703 _m
  1767. (included.)_S 56 _t
  1768. 1200 5303 _m
  1769. (4.)_S 56 _t
  1770. (Conclusion)_S 1800 4903 _m
  1771. (If)_S 56 _t
  1772. (this)_S 56 _t
  1773. (explanation)_S 56 _t
  1774. (has)_S 56 _t
  1775. (only)_S 56 _t
  1776. (served)_S 56 _t
  1777. (to)_S 56 _t
  1778. (confuse)_S 56 _t
  1779. (the)_S 56 _t
  1780. (issue)_S 56 _t
  1781. (more,)_S 56 _t
  1782. (the)_S 56 _t
  1783. (appendices)_S 56 _t
  1784. (contain)_S 1200 4703 _m
  1785. (examples)_S 56 _t
  1786. (which)_S 56 _t
  1787. (may)_S 56 _t
  1788. (help)_S 56 _t
  1789. (clarify)_S 56 _t
  1790. (the)_S 56 _t
  1791. (issue.)_S 56 _t
  1792. (Also,)_S 56 _t
  1793. (2)_S 56 _t
  1794. (utilities)_S 56 _t
  1795. (and)_S 56 _t
  1796. (a)_S 56 _t
  1797. (graphic)_S 56 _t
  1798. (file)_S 56 _t
  1799. (should)_S 56 _t
  1800. (have)_S 56 _t
  1801. (been)_S 1200 4503 _m
  1802. (included)_S 56 _t
  1803. (with)_S 56 _t
  1804. (this)_S 56 _t
  1805. (document:)_S 56 _t
  1806. 1200 4103 _m
  1807. (DEC.EXE)_S 56 _t
  1808. (-)_S 56 _t
  1809. (This)_S 56 _t
  1810. (utility)_S 56 _t
  1811. (converts)_S 56 _t
  1812. (a)_S 56 _t
  1813. (binary)_S 56 _t
  1814. (file)_S 56 _t
  1815. (\(like)_S 56 _t
  1816. (.MID\))_S 56 _t
  1817. (to)_S 56 _t
  1818. (a)_S 56 _t
  1819. (tab-delimited)_S 56 _t
  1820. (text)_S 56 _t
  1821. (file)_S 56 _t
  1822. (containing)_S 56 _t
  1823. (the)_S 1200 3903 _m
  1824. (decimal)_S 56 _t
  1825. (equivalents)_S 56 _t
  1826. (of)_S 56 _t
  1827. (each)_S 56 _t
  1828. (byte.)_S 1200 3503 _m
  1829. (REC.EXE)_S 56 _t
  1830. (-)_S 56 _t
  1831. (This)_S 56 _t
  1832. (utility)_S 56 _t
  1833. (converts)_S 56 _t
  1834. (a)_S 56 _t
  1835. (tab-delimited)_S 56 _t
  1836. (text)_S 56 _t
  1837. (file)_S 56 _t
  1838. (of)_S 56 _t
  1839. (decimal)_S 56 _t
  1840. (values)_S 56 _t
  1841. (into)_S 56 _t
  1842. (a)_S 56 _t
  1843. (binary)_S 56 _t
  1844. (file)_S 56 _t
  1845. (in)_S 1200 3303 _m
  1846. (which)_S 56 _t
  1847. (each)_S 56 _t
  1848. (byte)_S 56 _t
  1849. (corresponds)_S 56 _t
  1850. (to)_S 56 _t
  1851. (one)_S 56 _t
  1852. (of)_S 56 _t
  1853. (the)_S 56 _t
  1854. (decimal)_S 56 _t
  1855. (values.)_S 1200 2903 _m
  1856. (MIDINOTE.PS)_S 56 _t
  1857. (-)_S 56 _t
  1858. (This)_S 56 _t
  1859. (is)_S 56 _t
  1860. (the)_S 56 _t
  1861. (postscript)_S 56 _t
  1862. (form)_S 56 _t
  1863. (of)_S 56 _t
  1864. (a)_S 56 _t
  1865. (page)_S 56 _t
  1866. (showing)_S 56 _t
  1867. (note)_S 56 _t
  1868. (numbers)_S 56 _t
  1869. (with)_S 56 _t
  1870. (a)_S 56 _t
  1871. (keyboard)_S 56 _t
  1872. (and)_S 1200 2703 _m
  1873. (with)_S 56 _t
  1874. (the)_S 56 _t
  1875. (standard)_S 56 _t
  1876. (grand)_S 56 _t
  1877. (staff.)_S _ep
  1878. _bp /NewCenturySchlbk-RomanR 500 _ff
  1879. 0 13200 10200 _ornt 
  1880. /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}
  1881.          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse
  1882.      }bdef
  1883. 8907 11870 _m
  1884. (3)_S 4645 11503 _m
  1885. (Appendix)_S 56 _t
  1886. (A)_S 1200 11103 _m
  1887. (1.)_S 56 _t
  1888. (MIDI)_S 56 _t
  1889. (Event)_S 56 _t
  1890. (Commands)_S 1200 10703 _m
  1891. (Each)_S 56 _t
  1892. (command)_S 56 _t
  1893. (byte)_S 56 _t
  1894. (has)_S 56 _t
  1895. (2)_S 56 _t
  1896. (parts.)_S 56 _t
  1897. (The)_S 56 _t
  1898. (left)_S 56 _t
  1899. (nybble)_S 56 _t
  1900. (\(4)_S 56 _t
  1901. (bits\))_S 56 _t
  1902. (contains)_S 56 _t
  1903. (the)_S 56 _t
  1904. (actual)_S 56 _t
  1905. (command,)_S 56 _t
  1906. (and)_S 56 _t
  1907. (the)_S 1200 10503 _m
  1908. (right)_S 56 _t
  1909. (nybble)_S 56 _t
  1910. (contains)_S 56 _t
  1911. (the)_S 56 _t
  1912. (midi)_S 56 _t
  1913. (channel)_S 56 _t
  1914. (number)_S 56 _t
  1915. (on)_S 56 _t
  1916. (which)_S 56 _t
  1917. (the)_S 56 _t
  1918. (command)_S 56 _t
  1919. (will)_S 56 _t
  1920. (be)_S 56 _t
  1921. (executed.)_S 56 _t
  1922. (There)_S 56 _t
  1923. (are)_S 1200 10303 _m
  1924. (16)_S 56 _t
  1925. (midi)_S 56 _t
  1926. (channels,)_S 56 _t
  1927. (and)_S 56 _t
  1928. (8)_S 56 _t
  1929. (midi)_S 56 _t
  1930. (commands)_S 56 _t
  1931. (\(the)_S 56 _t
  1932. (command)_S 56 _t
  1933. (nybble)_S 56 _t
  1934. (must)_S 56 _t
  1935. (have)_S 56 _t
  1936. (a)_S 56 _t
  1937. (msb)_S 56 _t
  1938. (of)_S 56 _t
  1939. (1\).)_S 1200 10103 _m
  1940. (In)_S 56 _t
  1941. (the)_S 56 _t
  1942. (following)_S 56 _t
  1943. (table,)_S 56 _t
  1944. (x)_S 56 _t
  1945. (indicates)_S 56 _t
  1946. (the)_S 56 _t
  1947. (midi)_S 56 _t
  1948. (channel)_S 56 _t
  1949. (number.)_S 56 _t
  1950. (Note)_S 56 _t
  1951. (that)_S 56 _t
  1952. (all)_S 56 _t
  1953. (data)_S 56 _t
  1954. (bytes)_S 56 _t
  1955. (will)_S 56 _t
  1956. (be)_S 56 _t
  1957. (<128)_S 1200 9903 _m
  1958. (\(msb)_S 56 _t
  1959. (set)_S 56 _t
  1960. (to)_S 56 _t
  1961. (0\).)_S 1200 9503 _m
  1962. _U (Hex)_S 2109 9503 _m
  1963. (Binary)_S 3422 9503 _m
  1964. (Data)_S 4836 9503 _m
  1965. (Description)_S _u 1200 9303 _m
  1966. (8x)_S 2109 9303 _m
  1967. (1000xxxx)_S 3422 9303 _m
  1968. (nn)_S 56 _t
  1969. (vv)_S 4836 9303 _m
  1970. (Note)_S 56 _t
  1971. (off)_S 56 _t
  1972. (\(key)_S 56 _t
  1973. (is)_S 56 _t
  1974. (released\))_S 4836 9103 _m
  1975. (nn=note)_S 56 _t
  1976. (number)_S 4836 8903 _m
  1977. (vv=velocity)_S 1200 8503 _m
  1978. (9x)_S 2109 8503 _m
  1979. (1001xxxx)_S 3422 8503 _m
  1980. (nn)_S 56 _t
  1981. (vv)_S 4836 8503 _m
  1982. (Note)_S 56 _t
  1983. (on)_S 56 _t
  1984. (\(key)_S 56 _t
  1985. (is)_S 56 _t
  1986. (pressed\))_S 4836 8303 _m
  1987. (nn=note)_S 56 _t
  1988. (number)_S 4836 8103 _m
  1989. (vv=velocity)_S 1200 7703 _m
  1990. (Ax)_S 2109 7703 _m
  1991. (1010xxxx)_S 3422 7703 _m
  1992. (nn)_S 56 _t
  1993. (vv)_S 4836 7703 _m
  1994. (Key)_S 56 _t
  1995. (after-touch)_S 4836 7503 _m
  1996. (nn=note)_S 56 _t
  1997. (number)_S 4836 7303 _m
  1998. (vv=velocity)_S 1200 6903 _m
  1999. (Bx)_S 2109 6903 _m
  2000. (1011xxxx)_S 3422 6903 _m
  2001. (cc)_S 56 _t
  2002. (vv)_S 4836 6903 _m
  2003. (Control)_S 56 _t
  2004. (Change)_S 4836 6703 _m
  2005. (cc=controller)_S 56 _t
  2006. (number)_S 4836 6503 _m
  2007. (vv=new)_S 56 _t
  2008. (value)_S 1200 6103 _m
  2009. (Cx)_S 2109 6103 _m
  2010. (1100xxxx)_S 3422 6103 _m
  2011. (pp)_S 4836 6103 _m
  2012. (Program)_S 56 _t
  2013. (\(patch\))_S 56 _t
  2014. (change)_S 4836 5903 _m
  2015. (pp=new)_S 56 _t
  2016. (program)_S 56 _t
  2017. (number)_S 1200 5503 _m
  2018. (Dx)_S 2109 5503 _m
  2019. (1101xxxx)_S 3422 5503 _m
  2020. (cc)_S 4836 5503 _m
  2021. (Channel)_S 56 _t
  2022. (after-touch)_S 4836 5303 _m
  2023. (cc=channel)_S 56 _t
  2024. (number)_S 1200 4903 _m
  2025. (Ex)_S 2109 4903 _m
  2026. (1110xxxx)_S 3422 4903 _m
  2027. (bb)_S 56 _t
  2028. (tt)_S 4836 4903 _m
  2029. (Pitch)_S 56 _t
  2030. (wheel)_S 56 _t
  2031. (change)_S 56 _t
  2032. (\(2000H)_S 56 _t
  2033. (is)_S 56 _t
  2034. (normal)_S 56 _t
  2035. (or)_S 56 _t
  2036. (no)_S 56 _t
  2037. (change\))_S 4836 4703 _m
  2038. (bb=bottom)_S 56 _t
  2039. (\(least)_S 56 _t
  2040. (sig\))_S 56 _t
  2041. (7)_S 56 _t
  2042. (bits)_S 56 _t
  2043. (of)_S 56 _t
  2044. (value)_S 4836 4503 _m
  2045. (tt=top)_S 56 _t
  2046. (\(most)_S 56 _t
  2047. (sig\))_S 56 _t
  2048. (7)_S 56 _t
  2049. (bits)_S 56 _t
  2050. (of)_S 56 _t
  2051. (value)_S _ep
  2052. _bp /NewCenturySchlbk-RomanR 500 _ff
  2053. 0 13200 10200 _ornt 
  2054. /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}
  2055.          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse
  2056.      }bdef
  2057. 8907 11870 _m
  2058. (4)_S 1200 11503 _m
  2059. (The)_S 56 _t
  2060. (following)_S 56 _t
  2061. (table)_S 56 _t
  2062. (lists)_S 56 _t
  2063. (meta-events)_S 56 _t
  2064. (which)_S 56 _t
  2065. (have)_S 56 _t
  2066. (no)_S 56 _t
  2067. (midi)_S 56 _t
  2068. (channel)_S 56 _t
  2069. (number.)_S 56 _t
  2070. (They)_S 56 _t
  2071. (are)_S 56 _t
  2072. (of)_S 56 _t
  2073. (the)_S 56 _t
  2074. (format:)_S 1200 11103 _m
  2075. (FF)_S 56 _t
  2076. (xx)_S 56 _t
  2077. (nn)_S 56 _t
  2078. (dd)_S 1200 10703 _m
  2079. (All)_S 56 _t
  2080. (meta-events)_S 56 _t
  2081. (start)_S 56 _t
  2082. (with)_S 56 _t
  2083. (FF)_S 56 _t
  2084. (followed)_S 56 _t
  2085. (by)_S 56 _t
  2086. (the)_S 56 _t
  2087. (command)_S 56 _t
  2088. (\(xx\),)_S 56 _t
  2089. (the)_S 56 _t
  2090. (length,)_S 56 _t
  2091. (or)_S 56 _t
  2092. (number)_S 56 _t
  2093. (of)_S 56 _t
  2094. (bytes)_S 56 _t
  2095. (that)_S 1200 10503 _m
  2096. (will)_S 56 _t
  2097. (contain)_S 56 _t
  2098. (data)_S 56 _t
  2099. (\(nn\),)_S 56 _t
  2100. (and)_S 56 _t
  2101. (the)_S 56 _t
  2102. (actual)_S 56 _t
  2103. (data)_S 56 _t
  2104. (\(dd\).)_S 1200 10103 _m
  2105. _U (Hex)_S 2109 10103 _m
  2106. (Binary)_S 3422 10103 _m
  2107. (Data)_S 4836 10103 _m
  2108. (Description)_S _u 1200 9903 _m
  2109. (00)_S 2109 9903 _m
  2110. (00000000)_S 3422 9903 _m
  2111. (nn)_S 56 _t
  2112. (ssss)_S 4836 9903 _m
  2113. (Sets)_S 56 _t
  2114. (the)_S 56 _t
  2115. (track's)_S 56 _t
  2116. (sequence)_S 56 _t
  2117. (number.)_S 4836 9703 _m
  2118. (nn=02)_S 56 _t
  2119. (\(length)_S 56 _t
  2120. (of)_S 56 _t
  2121. (2-byte)_S 56 _t
  2122. (sequence)_S 56 _t
  2123. (number\))_S 4836 9503 _m
  2124. (ssss=sequence)_S 56 _t
  2125. (number)_S 1200 9103 _m
  2126. (01)_S 2109 9103 _m
  2127. (00000001)_S 3422 9103 _m
  2128. (nn)_S 56 _t
  2129. (tt)_S 56 _t
  2130. (..)_S 4836 9103 _m
  2131. (Text)_S 56 _t
  2132. (event-)_S 56 _t
  2133. (any)_S 56 _t
  2134. (text)_S 56 _t
  2135. (you)_S 56 _t
  2136. (want.)_S 4836 8903 _m
  2137. (nn=length)_S 56 _t
  2138. (in)_S 56 _t
  2139. (bytes)_S 56 _t
  2140. (of)_S 56 _t
  2141. (text)_S 4836 8703 _m
  2142. (tt=text)_S 56 _t
  2143. (characters)_S 1200 8303 _m
  2144. (02)_S 2109 8303 _m
  2145. (00000010)_S 3422 8303 _m
  2146. (nn)_S 56 _t
  2147. (tt)_S 56 _t
  2148. (..)_S 4836 8303 _m
  2149. (Same)_S 56 _t
  2150. (as)_S 56 _t
  2151. (text)_S 56 _t
  2152. (event,)_S 56 _t
  2153. (but)_S 56 _t
  2154. (used)_S 56 _t
  2155. (for)_S 56 _t
  2156. (copyright)_S 56 _t
  2157. (info.)_S 4836 8103 _m
  2158. (nn)_S 56 _t
  2159. (tt=same)_S 56 _t
  2160. (as)_S 56 _t
  2161. (text)_S 56 _t
  2162. (event)_S 1200 7703 _m
  2163. (03)_S 2109 7703 _m
  2164. (00000011)_S 3422 7703 _m
  2165. (nn)_S 56 _t
  2166. (tt)_S 56 _t
  2167. (..)_S 4836 7703 _m
  2168. (Sequence)_S 56 _t
  2169. (or)_S 56 _t
  2170. (Track)_S 56 _t
  2171. (name)_S 4836 7503 _m
  2172. (nn)_S 56 _t
  2173. (tt=same)_S 56 _t
  2174. (as)_S 56 _t
  2175. (text)_S 56 _t
  2176. (event)_S 1200 7103 _m
  2177. (04)_S 2109 7103 _m
  2178. (00000100)_S 3422 7103 _m
  2179. (nn)_S 56 _t
  2180. (tt)_S 56 _t
  2181. (..)_S 4836 7103 _m
  2182. (Track)_S 56 _t
  2183. (instrument)_S 56 _t
  2184. (name)_S 4836 6903 _m
  2185. (nn)_S 56 _t
  2186. (tt=same)_S 56 _t
  2187. (as)_S 56 _t
  2188. (text)_S 56 _t
  2189. (event)_S 1200 6503 _m
  2190. (05)_S 2109 6503 _m
  2191. (00000101)_S 3422 6503 _m
  2192. (nn)_S 56 _t
  2193. (tt)_S 56 _t
  2194. (..)_S 4836 6503 _m
  2195. (Lyric)_S 4836 6303 _m
  2196. (nn)_S 56 _t
  2197. (tt=same)_S 56 _t
  2198. (as)_S 56 _t
  2199. (text)_S 56 _t
  2200. (event)_S 1200 5903 _m
  2201. (06)_S 2109 5903 _m
  2202. (00000110)_S 3422 5903 _m
  2203. (nn)_S 56 _t
  2204. (tt)_S 56 _t
  2205. (..)_S 4836 5903 _m
  2206. (Marker)_S 4836 5703 _m
  2207. (nn)_S 56 _t
  2208. (tt=same)_S 56 _t
  2209. (as)_S 56 _t
  2210. (text)_S 56 _t
  2211. (event)_S 1200 5303 _m
  2212. (07)_S 2109 5303 _m
  2213. (00000111)_S 3422 5303 _m
  2214. (nn)_S 56 _t
  2215. (tt)_S 56 _t
  2216. (..)_S 4836 5303 _m
  2217. (Cue)_S 56 _t
  2218. (point)_S 4836 5103 _m
  2219. (nn)_S 56 _t
  2220. (tt=same)_S 56 _t
  2221. (as)_S 56 _t
  2222. (text)_S 56 _t
  2223. (event)_S 1200 4703 _m
  2224. (2F)_S 56 _t
  2225. 2109 4703 _m
  2226. (00101111)_S 3422 4703 _m
  2227. (00)_S 4836 4703 _m
  2228. (This)_S 56 _t
  2229. (event)_S 56 _t
  2230. (must)_S 56 _t
  2231. (come)_S 56 _t
  2232. (at)_S 56 _t
  2233. (the)_S 56 _t
  2234. (end)_S 56 _t
  2235. (of)_S 56 _t
  2236. (each)_S 56 _t
  2237. (track)_S 1200 4303 _m
  2238. (51)_S 2109 4303 _m
  2239. (01010001)_S 3422 4303 _m
  2240. (03)_S 56 _t
  2241. (tttttt)_S 4836 4303 _m
  2242. (Set)_S 56 _t
  2243. (tempo)_S 4836 4103 _m
  2244. (tttttt=microseconds/quarter)_S 56 _t
  2245. (note)_S 1200 3703 _m
  2246. (58)_S 2109 3703 _m
  2247. (01011000)_S 3422 3703 _m
  2248. (04)_S 56 _t
  2249. (nn)_S 56 _t
  2250. (dd)_S 56 _t
  2251. (cc)_S 56 _t
  2252. (bb)_S 4836 3703 _m
  2253. (Time)_S 56 _t
  2254. (Signature)_S 4836 3503 _m
  2255. (nn=numerator)_S 56 _t
  2256. (of)_S 56 _t
  2257. (time)_S 56 _t
  2258. (sig.)_S 4836 3303 _m
  2259. (dd=denominator)_S 56 _t
  2260. (of)_S 56 _t
  2261. (time)_S 56 _t
  2262. (sig.)_S 56 _t
  2263. (2=quarter)_S 56 _t
  2264. (3=eighth,)_S 56 _t
  2265. (etc.)_S 4836 3103 _m
  2266. (cc=number)_S 56 _t
  2267. (of)_S 56 _t
  2268. (ticks)_S 56 _t
  2269. (in)_S 56 _t
  2270. (metronome)_S 56 _t
  2271. (click)_S 4836 2903 _m
  2272. (bb=number)_S 56 _t
  2273. (of)_S 56 _t
  2274. (32nd)_S 56 _t
  2275. (notes)_S 56 _t
  2276. (to)_S 56 _t
  2277. (the)_S 56 _t
  2278. (quarter)_S 56 _t
  2279. (note)_S 1200 2503 _m
  2280. (59)_S 2109 2503 _m
  2281. (01011001)_S 3422 2503 _m
  2282. (02)_S 56 _t
  2283. (sf)_S 56 _t
  2284. (mi)_S 4836 2503 _m
  2285. (Key)_S 56 _t
  2286. (signature)_S 4836 2303 _m
  2287. (sf=sharps/flats)_S 56 _t
  2288. (\(-7=7)_S 56 _t
  2289. (flats,)_S 56 _t
  2290. (0=key)_S 56 _t
  2291. (of)_S 56 _t
  2292. (C,)_S 56 _t
  2293. (7=7)_S 56 _t
  2294. (sharps\))_S 4836 2103 _m
  2295. (mi=major/minor)_S 56 _t
  2296. (\(0=major,)_S 56 _t
  2297. (1=minor\))_S 1200 1703 _m
  2298. (7F)_S 2109 1703 _m
  2299. (01111111)_S 3422 1703 _m
  2300. (xx)_S 56 _t
  2301. (dd)_S 56 _t
  2302. (..)_S 4836 1703 _m
  2303. (Sequencer)_S 56 _t
  2304. (specific)_S 56 _t
  2305. (information)_S 4836 1503 _m
  2306. (xx=number)_S 56 _t
  2307. (of)_S 56 _t
  2308. (bytes)_S 56 _t
  2309. (to)_S 56 _t
  2310. (be)_S 56 _t
  2311. (sent)_S 4836 1303 _m
  2312. (dd=data)_S _ep
  2313. _bp /NewCenturySchlbk-RomanR 500 _ff
  2314. 0 13200 10200 _ornt 
  2315. /_r      { sflg {/_t {0 rmoveto}bdef /ron false def}
  2316.          { /_S /show load def /_t {0 rmoveto}bdef /ron false def}ifelse
  2317.      }bdef
  2318. 8907 11870 _m
  2319. (5)_S 1200 11303 _m
  2320. (The)_S 56 _t
  2321. (following)_S 56 _t
  2322. (table)_S 56 _t
  2323. (lists)_S 56 _t
  2324. (system)_S 56 _t
  2325. (messages)_S 56 _t
  2326. (which)_S 56 _t
  2327. (control)_S 56 _t
  2328. (the)_S 56 _t
  2329. (entire)_S 56 _t
  2330. (system.)_S 56 _t
  2331. (These)_S 56 _t
  2332. (have)_S 56 _t
  2333. (no)_S 56 _t
  2334. (midi)_S 1200 11103 _m
  2335. (channel)_S 56 _t
  2336. (number.)_S 56 _t
  2337. (\(these)_S 56 _t
  2338. (will)_S 56 _t
  2339. (generally)_S 56 _t
  2340. (only)_S 56 _t
  2341. (apply)_S 56 _t
  2342. (to)_S 56 _t
  2343. (controlling)_S 56 _t
  2344. (a)_S 56 _t
  2345. (midi)_S 56 _t
  2346. (keyboard,)_S 56 _t
  2347. (etc.\))_S 1200 10703 _m
  2348. _U (Hex)_S 2109 10703 _m
  2349. (Binary)_S 3422 10703 _m
  2350. (Data)_S 4836 10703 _m
  2351. (Description)_S _u 1200 10503 _m
  2352. (F8)_S 2109 10503 _m
  2353. (11111000)_S 4836 10503 _m
  2354. (Timing)_S 56 _t
  2355. (clock)_S 56 _t
  2356. (used)_S 56 _t
  2357. (when)_S 56 _t
  2358. (synchronization)_S 56 _t
  2359. (is)_S 56 _t
  2360. (required.)_S 1200 10103 _m
  2361. (FA)_S 2109 10103 _m
  2362. (11111010)_S 4836 10103 _m
  2363. (Start)_S 56 _t
  2364. (current)_S 56 _t
  2365. (sequence)_S 1200 9703 _m
  2366. (FB)_S 2109 9703 _m
  2367. (11111011)_S 4836 9703 _m
  2368. (Continue)_S 56 _t
  2369. (a)_S 56 _t
  2370. (stopped)_S 56 _t
  2371. (sequence)_S 56 _t
  2372. (where)_S 56 _t
  2373. (left)_S 56 _t
  2374. (off)_S 1200 9303 _m
  2375. (FC)_S 2109 9303 _m
  2376. (11111100)_S 4836 9303 _m
  2377. (Stop)_S 56 _t
  2378. (a)_S 56 _t
  2379. (sequence)_S 1200 8703 _m
  2380. (The)_S 56 _t
  2381. (following)_S 56 _t
  2382. (table)_S 56 _t
  2383. (lists)_S 56 _t
  2384. (the)_S 56 _t
  2385. (numbers)_S 56 _t
  2386. (corresponding)_S 56 _t
  2387. (to)_S 56 _t
  2388. (notes)_S 56 _t
  2389. (for)_S 56 _t
  2390. (use)_S 56 _t
  2391. (in)_S 56 _t
  2392. (note)_S 56 _t
  2393. 1200 8503 _m
  2394. (on)_S 56 _t
  2395. (and)_S 56 _t
  2396. (note)_S 56 _t
  2397. (off)_S 56 _t
  2398. (commands.)_S /CourierR 500 _ff
  2399. 1200 7952 _m
  2400. (Octave||)_S 2100 _t
  2401. (Note)_S 100 _t
  2402. (Numbers)_S 1200 7785 _m
  2403. 100 _t
  2404. 100 _t
  2405. 100 _t
  2406. (#)_S 200 _t
  2407. (||)_S 1200 7618 _m
  2408. 100 _t
  2409. 100 _t
  2410. 100 _t
  2411. 100 _t
  2412. 100 _t
  2413. 100 _t
  2414. (||)_S 100 _t
  2415. (C)_S 300 _t
  2416. (|)_S 100 _t
  2417. (C#)_S 200 _t
  2418. (|)_S 100 _t
  2419. (D)_S 300 _t
  2420. (|)_S 100 _t
  2421. (D#)_S 200 _t
  2422. (|)_S 100 _t
  2423. (E)_S 300 _t
  2424. (|)_S 100 _t
  2425. (F)_S 300 _t
  2426. (|)_S 100 _t
  2427. (F#)_S 200 _t
  2428. (|)_S 100 _t
  2429. (G)_S 300 _t
  2430. (|)_S 100 _t
  2431. (G#)_S 200 _t
  2432. (|)_S 100 _t
  2433. (A)_S 300 _t
  2434. (|)_S 100 _t
  2435. (A#)_S 200 _t
  2436. (|)_S 100 _t
  2437. (B)_S 1200 7451 _m
  2438. (-----------------------------------------------------------------------------)_S 1200 7284 _m
  2439. 100 _t
  2440. 100 _t
  2441. 100 _t
  2442. (0)_S 200 _t
  2443. (||)_S 300 _t
  2444. (0)_S 100 _t
  2445. (|)_S 300 _t
  2446. (1)_S 100 _t
  2447. (|)_S 300 _t
  2448. (2)_S 100 _t
  2449. (|)_S 300 _t
  2450. (3)_S 100 _t
  2451. (|)_S 300 _t
  2452. (4)_S 100 _t
  2453. (|)_S 300 _t
  2454. (5)_S 100 _t
  2455. (|)_S 300 _t
  2456. (6)_S 100 _t
  2457. (|)_S 300 _t
  2458. (7)_S 100 _t
  2459. (|)_S 300 _t
  2460. (8)_S 100 _t
  2461. (|)_S 300 _t
  2462. (9)_S 100 _t
  2463. (|)_S 200 _t
  2464. (10)_S 100 _t
  2465. (|)_S 100 _t
  2466. (11)_S 1200 7117 _m
  2467. 100 _t
  2468. 100 _t
  2469. 100 _t
  2470. (1)_S 200 _t
  2471. (||)_S 200 _t
  2472. (12)_S 100 _t
  2473. (|)_S 200 _t
  2474. (13)_S 100 _t
  2475. (|)_S 200 _t
  2476. (14)_S 100 _t
  2477. (|)_S 200 _t
  2478. (15)_S 100 _t
  2479. (|)_S 200 _t
  2480. (16)_S 100 _t
  2481. (|)_S 200 _t
  2482. (17)_S 100 _t
  2483. (|)_S 200 _t
  2484. (18)_S 100 _t
  2485. (|)_S 200 _t
  2486. (19)_S 100 _t
  2487. (|)_S 200 _t
  2488. (20)_S 100 _t
  2489. (|)_S 200 _t
  2490. (21)_S 100 _t
  2491. (|)_S 200 _t
  2492. (22)_S 100 _t
  2493. (|)_S 100 _t
  2494. (23)_S 1200 6950 _m
  2495. 100 _t
  2496. 100 _t
  2497. 100 _t
  2498. (2)_S 200 _t
  2499. (||)_S 200 _t
  2500. (24)_S 100 _t
  2501. (|)_S 200 _t
  2502. (25)_S 100 _t
  2503. (|)_S 200 _t
  2504. (26)_S 100 _t
  2505. (|)_S 200 _t
  2506. (27)_S 100 _t
  2507. (|)_S 200 _t
  2508. (28)_S 100 _t
  2509. (|)_S 200 _t
  2510. (29)_S 100 _t
  2511. (|)_S 200 _t
  2512. (30)_S 100 _t
  2513. (|)_S 200 _t
  2514. (31)_S 100 _t
  2515. (|)_S 200 _t
  2516. (32)_S 100 _t
  2517. (|)_S 200 _t
  2518. (33)_S 100 _t
  2519. (|)_S 200 _t
  2520. (34)_S 100 _t
  2521. (|)_S 100 _t
  2522. (35)_S 1200 6783 _m
  2523. 100 _t
  2524. 100 _t
  2525. 100 _t
  2526. (3)_S 200 _t
  2527. (||)_S 200 _t
  2528. (36)_S 100 _t
  2529. (|)_S 200 _t
  2530. (37)_S 100 _t
  2531. (|)_S 200 _t
  2532. (38)_S 100 _t
  2533. (|)_S 200 _t
  2534. (39)_S 100 _t
  2535. (|)_S 200 _t
  2536. (40)_S 100 _t
  2537. (|)_S 200 _t
  2538. (41)_S 100 _t
  2539. (|)_S 200 _t
  2540. (42)_S 100 _t
  2541. (|)_S 200 _t
  2542. (43)_S 100 _t
  2543. (|)_S 200 _t
  2544. (44)_S 100 _t
  2545. (|)_S 200 _t
  2546. (45)_S 100 _t
  2547. (|)_S 200 _t
  2548. (46)_S 100 _t
  2549. (|)_S 100 _t
  2550. (47)_S 1200 6616 _m
  2551. 100 _t
  2552. 100 _t
  2553. 100 _t
  2554. (4)_S 200 _t
  2555. (||)_S 200 _t
  2556. (48)_S 100 _t
  2557. (|)_S 200 _t
  2558. (49)_S 100 _t
  2559. (|)_S 200 _t
  2560. (50)_S 100 _t
  2561. (|)_S 200 _t
  2562. (51)_S 100 _t
  2563. (|)_S 200 _t
  2564. (52)_S 100 _t
  2565. (|)_S 200 _t
  2566. (53)_S 100 _t
  2567. (|)_S 200 _t
  2568. (54)_S 100 _t
  2569. (|)_S 200 _t
  2570. (55)_S 100 _t
  2571. (|)_S 200 _t
  2572. (56)_S 100 _t
  2573. (|)_S 200 _t
  2574. (57)_S 100 _t
  2575. (|)_S 200 _t
  2576. (58)_S 100 _t
  2577. (|)_S 100 _t
  2578. (59)_S 1200 6449 _m
  2579. 100 _t
  2580. 100 _t
  2581. 100 _t
  2582. (5)_S 200 _t
  2583. (||)_S 200 _t
  2584. (60)_S 100 _t
  2585. (|)_S 200 _t
  2586. (61)_S 100 _t
  2587. (|)_S 200 _t
  2588. (62)_S 100 _t
  2589. (|)_S 200 _t
  2590. (63)_S 100 _t
  2591. (|)_S 200 _t
  2592. (64)_S 100 _t
  2593. (|)_S 200 _t
  2594. (65)_S 100 _t
  2595. (|)_S 200 _t
  2596. (66)_S 100 _t
  2597. (|)_S 200 _t
  2598. (67)_S 100 _t
  2599. (|)_S 200 _t
  2600. (68)_S 100 _t
  2601. (|)_S 200 _t
  2602. (69)_S 100 _t
  2603. (|)_S 200 _t
  2604. (70)_S 100 _t
  2605. (|)_S 100 _t
  2606. (71)_S 1200 6282 _m
  2607. 100 _t
  2608. 100 _t
  2609. 100 _t
  2610. (6)_S 200 _t
  2611. (||)_S 200 _t
  2612. (72)_S 100 _t
  2613. (|)_S 200 _t
  2614. (73)_S 100 _t
  2615. (|)_S 200 _t
  2616. (74)_S 100 _t
  2617. (|)_S 200 _t
  2618. (75)_S 100 _t
  2619. (|)_S 200 _t
  2620. (76)_S 100 _t
  2621. (|)_S 200 _t
  2622. (77)_S 100 _t
  2623. (|)_S 200 _t
  2624. (78)_S 100 _t
  2625. (|)_S 200 _t
  2626. (79)_S 100 _t
  2627. (|)_S 200 _t
  2628. (80)_S 100 _t
  2629. (|)_S 200 _t
  2630. (81)_S 100 _t
  2631. (|)_S 200 _t
  2632. (82)_S 100 _t
  2633. (|)_S 100 _t
  2634. (83)_S 1200 6115 _m
  2635. 100 _t
  2636. 100 _t
  2637. 100 _t
  2638. (7)_S 200 _t
  2639. (||)_S 200 _t
  2640. (84)_S 100 _t
  2641. (|)_S 200 _t
  2642. (85)_S 100 _t
  2643. (|)_S 200 _t
  2644. (86)_S 100 _t
  2645. (|)_S 200 _t
  2646. (87)_S 100 _t
  2647. (|)_S 200 _t
  2648. (88)_S 100 _t
  2649. (|)_S 200 _t
  2650. (89)_S 100 _t
  2651. (|)_S 200 _t
  2652. (90)_S 100 _t
  2653. (|)_S 200 _t
  2654. (91)_S 100 _t
  2655. (|)_S 200 _t
  2656. (92)_S 100 _t
  2657. (|)_S 200 _t
  2658. (93)_S 100 _t
  2659. (|)_S 200 _t
  2660. (94)_S 100 _t
  2661. (|)_S 100 _t
  2662. (95)_S 1200 5948 _m
  2663. 100 _t
  2664. 100 _t
  2665. 100 _t
  2666. (8)_S 200 _t
  2667. (||)_S 200 _t
  2668. (96)_S 100 _t
  2669. (|)_S 200 _t
  2670. (97)_S 100 _t
  2671. (|)_S 200 _t
  2672. (98)_S 100 _t
  2673. (|)_S 200 _t
  2674. (99)_S 100 _t
  2675. (|)_S 100 _t
  2676. (100)_S 100 _t
  2677. (|)_S 100 _t
  2678. (101)_S 100 _t
  2679. (|)_S 100 _t
  2680. (102)_S 100 _t
  2681. (|)_S 100 _t
  2682. (103)_S 100 _t
  2683. (|)_S 100 _t
  2684. (104)_S 100 _t
  2685. (|)_S 100 _t
  2686. (105)_S 100 _t
  2687. (|)_S 100 _t
  2688. (106)_S 100 _t
  2689. (|)_S 100 _t
  2690. (107)_S 1200 5781 _m
  2691. 100 _t
  2692. 100 _t
  2693. 100 _t
  2694. (9)_S 200 _t
  2695. (||)_S 100 _t
  2696. (108)_S 100 _t
  2697. (|)_S 100 _t
  2698. (109)_S 100 _t
  2699. (|)_S 100 _t
  2700. (110)_S 100 _t
  2701. (|)_S 100 _t
  2702. (111)_S 100 _t
  2703. (|)_S 100 _t
  2704. (112)_S 100 _t
  2705. (|)_S 100 _t
  2706. (113)_S 100 _t
  2707. (|)_S 100 _t
  2708. (114)_S 100 _t
  2709. (|)_S 100 _t
  2710. (115)_S 100 _t
  2711. (|)_S 100 _t
  2712. (116)_S 100 _t
  2713. (|)_S 100 _t
  2714. (117)_S 100 _t
  2715. (|)_S 100 _t
  2716. (118)_S 100 _t
  2717. (|)_S 100 _t
  2718. (119)_S 1200 5614 _m
  2719. 100 _t
  2720. 100 _t
  2721. (10)_S 200 _t
  2722. (||)_S 100 _t
  2723. (120)_S 100 _t
  2724. (|)_S 100 _t
  2725. (121)_S 100 _t
  2726. (|)_S 100 _t
  2727. (122)_S 100 _t
  2728. (|)_S 100 _t
  2729. (123)_S 100 _t
  2730. (|)_S 100 _t
  2731. (124)_S 100 _t
  2732. (|)_S 100 _t
  2733. (125)_S 100 _t
  2734. (|)_S 100 _t
  2735. (126)_S 100 _t
  2736. (|)_S 100 _t
  2737. (127)_S 100 _t
  2738. (|)_S 1200 5113 _m
  2739. 100 _t
  2740. 100 _t
  2741. 100 _t
  2742. 100 _t
  2743. 100 _t
  2744. 100 _t
  2745. 100 _t
  2746. 100 _t
  2747. 100 _t
  2748. 100 _t
  2749. 100 _t
  2750. 100 _t
  2751. 100 _t
  2752. 100 _t
  2753. 100 _t
  2754. 100 _t
  2755. 100 _t
  2756. 100 _t
  2757. 100 _t
  2758. 100 _t
  2759. 100 _t
  2760. 100 _t
  2761. 100 _t
  2762. 100 _t
  2763. 100 _t
  2764. 100 _t
  2765. 100 _t
  2766. 100 _t
  2767. 100 _t
  2768. 100 _t
  2769. 100 _t
  2770. 100 _t
  2771. (BIBLIOGRAPHY)_S 1200 4779 _m
  2772. 100 _t
  2773. 100 _t
  2774. ("MIDI)_S 100 _t
  2775. (Systems)_S 100 _t
  2776. (and)_S 100 _t
  2777. (Control")_S 100 _t
  2778. (Francis)_S 100 _t
  2779. (Rumsey)_S 200 _t
  2780. (1990)_S 100 _t
  2781. (Focal)_S 100 _t
  2782. (Press)_S 1200 4445 _m
  2783. 100 _t
  2784. 100 _t
  2785. ("MIDI)_S 100 _t
  2786. (and)_S 100 _t
  2787. (Sound)_S 100 _t
  2788. (Book)_S 100 _t
  2789. (for)_S 100 _t
  2790. (the)_S 100 _t
  2791. (Atari)_S 100 _t
  2792. (ST")_S 100 _t
  2793. (Bernd)_S 100 _t
  2794. (Enders)_S 100 _t
  2795. (and)_S 100 _t
  2796. (Wolfgang)_S 100 _t
  2797. (Klemme)_S 2109 4278 _m
  2798. 100 _t
  2799. (1989)_S 100 _t
  2800. (M&T)_S 100 _t
  2801. (Publishing,)_S 100 _t
  2802. (Inc.)_S 1200 3944 _m
  2803. 100 _t
  2804. 100 _t
  2805. (MIDI)_S 100 _t
  2806. (file)_S 100 _t
  2807. (specs)_S 100 _t
  2808. (and)_S 100 _t
  2809. (general)_S 100 _t
  2810. (MIDI)_S 100 _t
  2811. (specs)_S 100 _t
  2812. (were)_S 100 _t
  2813. (also)_S 100 _t
  2814. (obtained)_S 100 _t
  2815. (by)_S 100 _t
  2816. (sending)_S 100 _t
  2817. (e-mail)_S 1200 3777 _m
  2818. (to)_S 2109 3777 _m
  2819. 100 _t
  2820. (LISTSERV@AUVM.AMERICAN.EDU)_S 100 _t
  2821. (with)_S 100 _t
  2822. (the)_S 100 _t
  2823. (phrase)_S 100 _t
  2824. (GET)_S 100 _t
  2825. (MIDISPEC)_S 100 _t
  2826. (PACKAGE)_S 100 _t
  2827. (in)_S 1200 3610 _m
  2828. (the)_S 100 _t
  2829. (message.)_S 1200 3276 _m
  2830. 100 _t
  2831. 100 _t
  2832. _ep
  2833. _ed end end
  2834. %-12345X
  2835.  
  2836. ---------------------------- MIDINOTE.PS ----------------------------------
  2837.  
  2838. %!PS-Adobe-3.0 EPSF-2.0
  2839. %%Creator: Windows PSCRIPT
  2840. %%Title: KEYS.CDR from CorelDRAW!
  2841. %%BoundingBox: 19 17 594 776
  2842. %%DocumentNeededResources: (atend)
  2843. %%DocumentSuppliedResources: (atend)
  2844. %%Pages: 0
  2845. %%BeginResource: procset Win35Dict 3 1
  2846. /Win35Dict 60 dict def Win35Dict begin/bd{bind def}bind def/in{72
  2847. mul}bd/ed{exch def}bd/ld{load def}bd/tr/translate ld/gs/gsave ld/gr
  2848. /grestore ld/fPP false def/SS{fPP{/SV save def}{gs}ifelse}bd/RS{fPP{SV
  2849. restore}{gr}ifelse}bd/EJ{gsave showpage grestore}bd/#C{userdict begin
  2850. /#copies ed end}bd/FEbuf 2 string def/FEglyph(G  )def/FE{1 exch{dup
  2851. 16 FEbuf cvrs FEglyph exch 1 exch putinterval 1 index exch FEglyph
  2852. cvn put}for}bd/SM{/iRes ed/cyP ed/cxPg ed/cyM ed/cxM ed 0 ne{0 cyP
  2853. 72 mul 100 div tr -90 rotate}if pop}bd/CB{moveto/dy ed/dx ed dx 0 rlineto
  2854. 0 dy rlineto dx neg 0 rlineto closepath clip newpath}bd end
  2855. %%EndResource
  2856. /SVDoc save def
  2857. %%EndProlog
  2858. %%BeginSetup
  2859. Win35Dict begin
  2860. %%EndSetup
  2861. SS
  2862. 0 0 26 22 799 1100 300 SM
  2863. 2397 3162 0 0 CB
  2864. %%BeginSetup
  2865. /AutoFlatness false def
  2866. % Options: Emulsion Up
  2867. % Options: Print Positive Output
  2868. /SepsColor false def
  2869. /ATraps false def
  2870. %%EndSetup
  2871. %%BeginProlog
  2872. %%BeginResource: procset wCorel4Dict
  2873. %Copyright (c)1992, 1993 Corel Corporation.  All rights reserved. v4.00.00
  2874. /wCorel4Dict 300 dict def wCorel4Dict begin
  2875. /bd{bind def}bind def/ld{load def}bd/xd{exch def}bd
  2876. /_ null def/rp{{pop}repeat}bd/@cp/closepath ld
  2877. /@gs/gsave ld/@gr/grestore ld/@np/newpath ld
  2878. /Tl/translate ld/$sv 0 def/@sv{/$sv save def}bd
  2879. /@rs{$sv restore}bd/spg/showpage ld/showpage{}bd
  2880. currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd
  2881. /$dsf xd/$sdf false def/$SDF false def/$Scra 0 def
  2882. /SetScr/setscreen ld/setscreen{3 rp}bd/@ss{2 index 0 eq{$dsf 3 1 roll
  2883. 4 -1 roll pop}if exch $Scra add exch load SetScr}bd
  2884. /$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def
  2885. /$n _ def/$o 0 def/$fil 0 def/$C 0 def/$M 0 def
  2886. /$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 def
  2887. /$PF false def/s1c 0 def/s1m 0 def/s1y 0 def
  2888. /s1k 0 def/s1t 0 def/s1n _ def/$bkg false def
  2889. /SK 0 def/SM 0 def/SY 0 def/SC 0 def/SepMode 0 def
  2890. /CurrentInkName (Composite) def/$ink -1 def
  2891. /$op false def matrix currentmatrix/$ctm xd
  2892. /$ptm matrix def/$ttm matrix def/$stm matrix def
  2893. /$fst 128 def/$pad 0 def/$rox 0 def/$roy 0 def
  2894. /CorelDrawReencodeVect [ 16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring 16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi
  2895. 16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
  2896. 16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
  2897. 16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
  2898. 16#98/tilde/trademark/scaron/guilsinglright/oe
  2899. 16#9F/Ydieresis 16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
  2900. 16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
  2901. 16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
  2902. 16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
  2903. 16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
  2904. 16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
  2905. 16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
  2906. 16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
  2907. 16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
  2908. 16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
  2909. 16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
  2910. 16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
  2911. ] def AutoFlatness{/@ifl{dup currentflat exch sub 10 gt{
  2912. ([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)
  2913. print flush newpath exit}{currentflat 2 add setflat}ifelse}bd
  2914. /@fill/fill ld/fill{currentflat{{@fill}stopped{@ifl}{exit}ifelse
  2915. }bind loop setflat}bd/@eofill/eofill ld/eofill{currentflat{
  2916. {@eofill}stopped{@ifl}{exit}ifelse}bind loop
  2917. setflat}bd/@clip/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}
  2918. ifelse}bind loop setflat}bd/@eoclip/eoclip ld
  2919. /eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}bind loop
  2920. setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped{@ifl}
  2921. {exit}ifelse}bind loop setflat}bd}if/d/setdash ld
  2922. /j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit ld
  2923. /w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd
  2924. /W/eoclip ld/c/curveto ld/C/c ld/l/lineto ld
  2925. /L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld
  2926. /N/newpath ld/P{11 rp}bd/u{}bd/U{}bd/A{pop}bd
  2927. /q/@gs ld/Q/@gr ld/`{}bd/~{}bd/@{}bd/&{}bd
  2928. /@j{@sv @np}bd/@J{@rs}bd/g{1 exch sub/$k xd
  2929. /$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd
  2930. /G{1 sub neg/$K xd _ 1 0 0 0/$C xd/$M xd/$Y xd/$T xd
  2931. /$N xd}bd/k{1 index type/stringtype eq{/$t xd
  2932. /$n xd}{/$t 0 def/$n _ def}ifelse/$k xd/$y xd
  2933. /$m xd/$c xd/$fil 0 def}bd/K{1 index type
  2934. /stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}ifelse
  2935. /$K xd/$Y xd/$M xd/$C xd}bd/sf{1 index type
  2936. /stringtype eq{/s1t xd/s1n xd}{/s1t 0 def
  2937. /s1n _ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd
  2938. /i{dup 0 ne{setflat}{pop}ifelse}bd/v{4 -2 roll
  2939. 2 copy 6 -2 roll c}bd/V/v ld/y{2 copy c}bd
  2940. /Y/y ld/@w{matrix rotate/$ptm xd matrix scale
  2941. $ptm dup concatmatrix/$ptm xd 1 eq{$ptm exch dup concatmatrix
  2942. /$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd
  2943. /$sca xd/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd
  2944. /$SCA xd/$SCF xd}if}bd/@D{2 index 0 eq{$dsf 3 1 roll
  2945. 4 -1 roll pop}if 3 copy exch $Scra add exch load
  2946. SetScr/$dsp xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF
  2947. SepMode 0 eq{$SCA}{$dsa}ifelse $SCP @ss}if}bd
  2948. /p{/$pm xd 7{pop}repeat/$pyf xd/$pxf xd/$pn xd
  2949. /$fil 1 def}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd
  2950. /@MX{2 copy ge{pop}{exch pop}ifelse}bd/InRange{3 -1 roll
  2951. @MN @MX}bd/wDstChck{2 1 roll dup 3 -1 roll
  2952. eq{1 add}if}bd/@dot{dup mul exch dup mul add
  2953. 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd
  2954. /SetRgb/setrgbcolor ld/SetHsb/sethsbcolor ld
  2955. /GetRgb/currentrgbcolor ld/GetHsb/currenthsbcolor ld
  2956. /SetGry/setgray ld/GetGry/currentgray ld/cmyk2rgb{3{dup 5 -1 roll
  2957. add 1 exch sub dup 0 lt{pop 0}if exch}repeat
  2958. pop}bd/rgb2cmyk{3{1 exch sub 3 1 roll}repeat
  2959. 3 copy @MN @MN 3{dup 5 -1 roll sub neg exch}repeat}bd
  2960. /rgb2hsb{SetRgb GetHsb}bd/hsb2rgb{3 -1 roll
  2961. dup floor sub 3 1 roll SetHsb GetRgb}bd/rgb2g{2 index .299 mul
  2962. 2 index .587 mul add 1 index .114 mul add 4 1 roll
  2963. 3 rp}bd/WaldoColor where{pop}{/setcmykcolor where{pop
  2964. /SetCmyk/setcmykcolor ld}{/SetCmyk{cmyk2rgb
  2965. SetRgb}bd}ifelse/currentcmykcolor where{pop
  2966. /GetCmyk/currentcmykcolor ld}{/GetCmyk{GetRgb
  2967. rgb2cmyk}bd}ifelse/setoverprint where{pop}{/setoverprint{/$op xd}bd
  2968. }ifelse/currentoverprint where{pop}{/currentoverprint{$op}bd}ifelse
  2969. /colorimage where{pop/ColorImage/colorimage ld}{/ColorImage{
  2970. /ncolors exch def pop/dataaq exch def{dataaq
  2971. ncolors dup 3 eq{/$dat exch def 0 1 $dat length
  2972. 3 div 1 sub{dup 3 mul $dat 1 index get 255 div
  2973. $dat 2 index 1 add get 255 div $dat 3 index 2 add get
  2974. 255 div rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for
  2975. $dat 0 $dat length 3 idiv getinterval pop}{4 eq{/$dat exch def
  2976. 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 index get
  2977. 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get
  2978. 255 div $dat 4 index 3 add get 255 div cmyk2rgb rgb2g 255 mul
  2979. cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length
  2980. ncolors idiv getinterval}if}ifelse}image}bd}ifelse
  2981. /@tc{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll
  2982. mul exch}repeat pop}ifelse}bd/@scc{1 eq setoverprint
  2983. dup _ eq{pop SepMode 0 eq{SetCmyk 0}{0 4 $ink sub index
  2984. exch pop 5 1 roll 4 rp SepsColor true eq{$ink 3 gt{1 sub neg dup SetGry
  2985. exch}{dup 0 0 0 4 $ink roll SetCmyk}ifelse}{1 sub neg dup SetGry}ifelse
  2986. }ifelse exch pop}{SepMode 0 eq{pop @tc SetCmyk 0}{CurrentInkName eq{
  2987. 4 index}{0}ifelse 6 1 roll 5 rp 1 sub neg dup SetGry}ifelse}ifelse
  2988. SepMode 0 eq{pop true}{1 eq currentoverprint and not}ifelse}bd
  2989. /setcmykcolor{1 5 1 roll _ currentoverprint @scc
  2990. pop}bd/currentcmykcolor{0 0 0 0}bd/setrgbcolor{rgb2cmyk
  2991. setcmykcolor}bd/currentrgbcolor{currentcmykcolor
  2992. cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor}bd
  2993. /currenthsbcolor{currentrgbcolor rgb2hsb}bd
  2994. /setgray{dup dup setrgbcolor}bd/currentgray{currentrgbcolor
  2995. rgb2g}bd}ifelse/WaldoColor true def/@sft{$tllx $pxf add dup $tllx gt
  2996. {$pwid sub}if/$tx xd $tury $pyf sub dup $tury lt{$phei add}if
  2997. /$ty xd}bd/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd
  2998. /@ep{{cvx exec}forall}bd/@tp{@sv/$in true def
  2999. 2 copy dup $lly le{/$in false def}if $phei sub $ury ge{/$in false def}if
  3000. dup $urx ge{/$in false def}if $pwid add $llx le{/$in false def}if
  3001. $in{@np 2 copy m $pwid 0 rl 0 $phei neg rl $pwid neg 0 rl
  3002. 0 $phei rl clip @np $pn cvlit load aload pop
  3003. 7 -1 roll 5 index sub 7 -1 roll 3 index sub Tl
  3004. matrix currentmatrix/$ctm xd @ep 4 rp}{2 rp}ifelse
  3005. @rs}bd/@th{@sft 0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt
  3006. {$pwid sub}{exit}ifelse}loop exch $phei mul
  3007. $ty exch sub 0 1 $tlx 1 sub{$pwid mul 3 copy
  3008. 3 -1 roll add exch @tp pop}for 2 rp}for}bd/@tv{@sft
  3009. 0 1 $tlx 1 sub{dup $pwid mul $tx add exch $psy mul $ty exch sub{
  3010. dup $ury lt{$phei add}{exit}ifelse}loop 0 1 $tly 1 sub{$phei mul
  3011. 3 copy sub @tp pop}for 2 rp}for}bd/@pf{@gs $ctm setmatrix
  3012. $pm concat @stb eoclip Bburx Bbury $pm itransform
  3013. /$tury xd/$turx xd Bbllx Bblly $pm itransform
  3014. /$tlly xd/$tllx xd/$wid $turx $tllx sub def
  3015. /$hei $tury $tlly sub def @gs $vectpat{1 0 0 0 0 _ $o @scc{eofill}if}{
  3016. $t $c $m $y $k $n $o @scc{SepMode 0 eq $pfrg or{$tllx $tlly Tl
  3017. $wid $hei scale <00> 8 1 false [ 8 0 0 1 0 0 ]{}imagemask}{
  3018. /$bkg true def}ifelse}if}ifelse @gr $wid 0 gt $hei 0 gt and{
  3019. $pn cvlit load aload pop/$pd xd 3 -1 roll sub/$phei xd
  3020. exch sub/$pwid xd $wid $pwid div ceiling 1 add/$tlx xd
  3021. $hei $phei div ceiling 1 add/$tly xd $psx 0 eq{@tv}{@th}ifelse}if
  3022. @gr @np/$bkg false def}bd/@dlt{$fse $fss sub/nff xd
  3023. $frb dup 1 eq exch 2 eq or{$frt dup $frc $frm $fry $frk
  3024. @tc 4 copy cmyk2rgb rgb2hsb 3 copy/myb xd/mys xd
  3025. /myh xd $tot $toc $tom $toy $tok @tc cmyk2rgb
  3026. rgb2hsb 3 1 roll 4 1 roll 5 1 roll sub neg nff div/kdb xd
  3027. sub neg nff div/kds xd sub neg dup 0 eq{pop
  3028. $frb 2 eq{.99}{-.99}ifelse}if dup $frb 2 eq
  3029. exch 0 lt and{1 add}if dup $frb 1 eq exch 0 gt and{1 sub}if
  3030. nff div/kdh xd}{$frt dup $frc $frm $fry $frk
  3031. @tc 5 copy $tot dup $toc $tom $toy $tok @tc 5 1 roll
  3032. 6 1 roll 7 1 roll 8 1 roll 9 1 roll sub neg nff div/$dk xd
  3033. sub neg nff div/$dy xd sub neg nff div/$dm xd
  3034. sub neg nff div/$dc xd sub neg nff div/$dt xd}ifelse}bd
  3035. /ffcol{5 copy $fsit 0 eq{setcmykcolor pop}{SepMode 0 ne{
  3036. 4 index 1 sub neg SetGry 5 rp}{setcmykcolor pop}ifelse}ifelse}bd
  3037. /@ftl{1 index 4 index sub dup $pad mul dup/$pdw xd
  3038. 2 mul sub $fst div/$wid xd 2 index sub/$hei xd
  3039. pop Tl @dlt $fss 0 eq{ffcol 0 0 m 0 $hei l $pdw $hei l
  3040. $pdw 0 l @cp fill $pdw 0 Tl}if $fss $wid mul 0 Tl
  3041. nff{ffcol 0 0 m 0 $hei l $wid $hei l $wid 0 l
  3042. @cp fill $wid 0 Tl $frb dup 1 eq exch 2 eq or{4 rp
  3043. myh mys myb kdb add 3 1 roll kds add 3 1 roll
  3044. kdh add 3 1 roll 3 copy/myb xd/mys xd/myh xd
  3045. hsb2rgb rgb2cmyk}{$dk add 5 1 roll $dy add 5 1 roll
  3046. $dm add 5 1 roll $dc add 5 1 roll $dt add 5 1 roll}ifelse}repeat
  3047. 5 rp $tot dup $toc $tom $toy $tok @tc ffcol 0 0 m
  3048. 0 $hei l $pdw $hei l $pdw 0 l @cp fill 5 rp}bd
  3049. /@ftr{1 index 4 index sub dup $rox mul/$row xd
  3050. 2 div 1 index 4 index sub dup $roy mul/$roh xd
  3051. 2 div 2 copy dup mul exch dup mul add sqrt $row dup mul
  3052. $roh dup mul add sqrt add dup/$hei xd $fst div/$wid xd
  3053. 4 index add $roh add exch 5 index add $row add
  3054. exch Tl 4 rp @dlt $fss 0 eq{ffcol fill 1.0 $pad 2 mul sub
  3055. dup scale}if $hei $fss $wid mul sub/$hei xd
  3056. nff{ffcol $wid 0 m 0 0 $hei 0 360 arc fill/$hei $hei $wid sub def
  3057. $frb dup 1 eq exch 2 eq or{4 rp myh mys myb
  3058. kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll
  3059. 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll
  3060. $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll
  3061. $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ftc{1 index 4 index sub
  3062. dup $rox mul/$row xd 2 div 1 index 4 index sub
  3063. dup $roy mul/$roh xd 2 div 2 copy dup mul exch dup mul add sqrt
  3064. $row dup mul $roh dup mul add sqrt add dup/$hei xd
  3065. $fst div/$wid xd 4 index add $roh add exch 5 index add $row add
  3066. exch Tl 4 rp @dlt $fss 0 eq{ffcol fill}{n}ifelse
  3067. /$dang 180 $fst 1 sub div def/$sang $dang -2 div 180 add def
  3068. /$eang $dang 2 div 180 add def/$sang $sang $dang $fss mul add def
  3069. /$eang $eang $dang $fss mul add def/$sang $eang $dang sub def
  3070. nff{ffcol $wid 0 m 0 0 $hei $sang $fan add $eang $fan add arc fill
  3071. $wid 0 m 0 0 $hei $eang neg $fan add $sang neg $fan add arc fill
  3072. /$sang $eang def/$eang $eang $dang add def
  3073. $frb dup 1 eq exch 2 eq or{4 rp myh mys myb
  3074. kdb add 3 1 roll kds add 3 1 roll kdh add 3 1 roll
  3075. 3 copy/myb xd/mys xd/myh xd hsb2rgb rgb2cmyk}{$dk add 5 1 roll
  3076. $dy add 5 1 roll $dm add 5 1 roll $dc add 5 1 roll
  3077. $dt add 5 1 roll}ifelse}repeat 5 rp}bd/@ff{/$fss 0 def
  3078. 1 1 $fsc 1 sub{dup 1 sub $fsit 0 eq{$fsa exch 5 mul
  3079. 5 getinterval aload 2 rp/$frk xd/$fry xd/$frm xd/$frc xd
  3080. /$frn _ def/$frt 1 def $fsa exch 5 mul 5 getinterval aload pop
  3081. $fss add/$fse xd/$tok xd/$toy xd/$tom xd/$toc xd
  3082. /$ton _ def/$tot 1 def}{$fsa exch 7 mul 7 getinterval aload 2 rp
  3083. /$frt xd/$frn xd/$frk xd/$fry xd/$frm xd/$frc xd
  3084. $fsa exch 7 mul 7 getinterval aload pop $fss add/$fse xd
  3085. /$tot xd/$ton xd/$tok xd/$toy xd/$tom xd/$toc xd}ifelse
  3086. $fsit 0 eq SepMode 0 eq or dup not CurrentInkName $frn eq
  3087. and or{@sv eoclip currentflat dup 5 mul setflat
  3088. Bbllx Bblly Bburx Bbury $fty 2 eq{@ftc}{$fty 1 eq{1 index 3 index m
  3089. 2 copy l 3 index 1 index l 3 index 3 index l
  3090. @cp @ftr}{1 index 3 index m 2 copy l 3 index 1 index l
  3091. 3 index 3 index l @cp 4 rp $fan rotate pathbbox
  3092. @ftl}ifelse}ifelse setflat @rs/$fss $fse def}if}for
  3093. @np}bd/@Pf{@sv SepMode 0 eq $ink 3 eq or{0 J 0 j [] 0 d
  3094. $t $c $m $y $k $n $o @scc pop $ctm setmatrix
  3095. 72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch
  3096. itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd
  3097. Bbllx exch Bblly exch itransform floor cvi/Bblly xd
  3098. floor cvi/Bbllx xd $Prm aload pop $Psn load exec}{1 SetGry eofill}ifelse
  3099. @rs @np}bd/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if
  3100. $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n $o
  3101. @scc{eofill}{@np}ifelse}ifelse}ifelse}ifelse
  3102. $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd/f{@cp F}bd
  3103. /S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA $SCP @ss}if
  3104. $T $C $M $Y $K $N $O @scc{matrix currentmatrix
  3105. $ptm concat stroke setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if
  3106. setmatrix}bd/s{@cp S}bd/B{@gs F @gr S}bd/b{@cp B}bd
  3107. /E{5 array astore exch cvlit exch def}bd/@cc{
  3108. currentfile $dat readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def
  3109. }bd/@E{/Bbury xd/Bburx xd/Bblly xd/Bbllx xd}bd
  3110. /@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true def}{@gs
  3111. $t $c $m $y $k $n $o @scc/$pfrg xd @gr}ifelse
  3112. /$pm xd/$psy xd/$psx xd/$pyf xd/$pxf xd/$pn xd}bd
  3113. /@P{/$fil 3 def/$Psn xd array astore/$Prm xd}bd
  3114. /@k{/$fil 2 def/$roy xd/$rox xd/$pad xd/$fty xd/$fan xd
  3115. $fty 1 eq{/$fan 0 def}if/$frb xd/$fst xd/$fsc xd
  3116. /$fsa xd/$fsit 0 def}bd/@x{/$fil 2 def/$roy xd/$rox xd/$pad xd
  3117. /$fty xd/$fan xd $fty 1 eq{/$fan 0 def}if/$frb xd
  3118. /$fst xd/$fsc xd/$fsa xd/$fsit 1 def}bd/@ii{concat
  3119. 3 index 3 index m 3 index 1 index l 2 copy l
  3120. 1 index 3 index l 3 index 3 index l clip 4 rp}bd
  3121. /tcc{@cc}def/@i{@sm @gs @ii 6 index 1 ne{/$frg true def
  3122. 2 rp}{1 eq{s1t s1c s1m s1y s1k s1n $o @scc
  3123. /$frg xd}{/$frg false def}ifelse 1 eq{@gs $ctm setmatrix
  3124. F @gr}if}ifelse @np/$ury xd/$urx xd/$lly xd/$llx xd
  3125. /$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string def
  3126. $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl
  3127. $urx $llx sub $ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc pop}if
  3128. $wid $hei abs $bts 1 eq{$bkg}{$bts}ifelse [ $wid 0 0
  3129. $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load
  3130. $bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{
  3131. $hei abs{tcc pop}repeat}ifelse @gr $ctm setmatrix}bind def
  3132. /@M{@sv}bd/@N{/@cc{}def 1 eq{12 -1 roll neg 12 1 roll
  3133. @I}{13 -1 roll neg 13 1 roll @i}ifelse @rs}bd
  3134. /@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd
  3135. /$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def
  3136. $ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale
  3137. $wid $hei abs $bts [ $wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]
  3138. /@cc load false $ncl ColorImage $SDF{$dsf $dsa $dsp @ss}if
  3139. @gr $ctm setmatrix}bd/z{exch findfont exch scalefont setfont}bd
  3140. /ZB{9 dict dup begin 4 1 roll/FontType 3 def
  3141. /FontMatrix xd/FontBBox xd/Encoding 256 array def
  3142. 0 1 255{Encoding exch/.notdef put}for/CharStrings 256 dict def
  3143. CharStrings/.notdef{}put/Metrics 256 dict def
  3144. Metrics/.notdef 3 -1 roll put/BuildChar{exch
  3145. dup/$char exch/Encoding get 3 index get def
  3146. dup/Metrics get $char get aload pop setcachedevice
  3147. begin Encoding exch get CharStrings exch get
  3148. end exec}def end definefont pop}bd/ZBAddChar{findfont begin
  3149. dup 4 1 roll dup 6 1 roll Encoding 3 1 roll put
  3150. CharStrings 3 1 roll put Metrics 3 1 roll put
  3151. end}bd/Z{findfont dup maxlength 2 add dict exch
  3152. dup{1 index/FID ne{3 index 3 1 roll put}{2 rp}ifelse}forall
  3153. pop dup dup/Encoding get 256 array copy dup/$fe xd
  3154. /Encoding exch put dup/Fontname 3 index put
  3155. 3 -1 roll dup length 0 ne{0 exch{dup type 0 type eq{exch pop}{
  3156. $fe exch 2 index exch put 1 add}ifelse}forall
  3157. pop}if dup 256 dict dup/$met xd/Metrics exch put
  3158. dup/FontMatrix get 0 get 1000 mul 1 exch div
  3159. 3 index length 256 eq{0 1 255{dup $fe exch get
  3160. dup/.notdef eq{2 rp}{5 index 3 -1 roll get
  3161. 2 index mul $met 3 1 roll put}ifelse}for}if
  3162. pop definefont pop pop}bd/@ftx{{currentpoint 3 -1 roll
  3163. (0) dup 3 -1 roll 0 exch put dup @gs true charpath
  3164. $ctm setmatrix @@txt @gr @np stringwidth pop 3 -1 roll add exch moveto
  3165. }forall}bd/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp @ss}if
  3166. $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq
  3167. {/@@txt/@Pf ld @ftx}{$t $c $m $y $k $n $o @scc{show}{pop}ifelse}ifelse
  3168. }ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd
  3169. /@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if
  3170. $T $C $M $Y $K $N $O @scc{{currentpoint 3 -1 roll
  3171. (0) dup 3 -1 roll 0 exch put dup @gs true charpath
  3172. $ctm setmatrix $ptm concat stroke @gr @np stringwidth pop 3 -1 roll add exch moveto
  3173. }forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if
  3174. setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup
  3175. @gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd
  3176. /@tm{@sm concat}bd/e{/t{@te}def}bd/r{/t{@tr}def}bd
  3177. /o{/t{pop}def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def}bd
  3178. /t{@te}def/T{@np $ctm setmatrix/$ttm matrix def}bd
  3179. /ddt{t}def/@t{/$stm $stm currentmatrix def
  3180. 3 1 roll moveto $ttm concat ddt $stm setmatrix}bd
  3181. /@n{/$ttm exch matrix rotate def}bd/@s{}bd
  3182. /@l{}bd/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{
  3183. CurrentInkName (Composite) eq{/$ink -1 def}{CurrentInkName (Cyan) eq
  3184. {/$ink 0 def}{CurrentInkName (Magenta) eq{/$ink 1 def}{
  3185. CurrentInkName (Yellow) eq{/$ink 2 def}{CurrentInkName (Black) eq
  3186. {/$ink 3 def}{/$ink 4 def}ifelse}ifelse}ifelse}ifelse}ifelse}bd
  3187. /@whi{@gs -72000 dup moveto -72000 72000 lineto
  3188. 72000 dup lineto 72000 -72000 lineto closepath 1 SetGry fill
  3189. @gr}bd/@neg{ [{1 exch sub}/exec cvx currenttransfer/exec cvx] cvx settransfer
  3190. @whi}bd/currentscale{1 0 dtransform matrix defaultmatrix idtransform
  3191. dup mul exch dup mul add sqrt 0 1 dtransform
  3192. matrix defaultmatrix idtransform dup mul exch dup mul add sqrt}bd
  3193. /@unscale{currentscale 1 exch div exch 1 exch div exch scale}bd
  3194. /@square{dup 0 rlineto dup 0 exch rlineto neg 0 rlineto
  3195. closepath}bd/corelsym{gsave newpath Tl -90 rotate
  3196. 7{45 rotate -.75 2 moveto 1.5 @square fill}repeat
  3197. grestore}bd/@reg{gsave newpath Tl -6 -6 moveto 12 @square
  3198. gsave 1 GetGry sub SetGry fill grestore 4{90 rotate
  3199. 0 4 m 0 4 rl}repeat stroke 0 0 corelsym grestore}bd
  3200. /$corelmeter [1 .95 .75 .50 .25 .05 0] def
  3201. /@colormeter{@gs newpath 0 SetGry 0.3 setlinewidth
  3202. /Courier findfont 5 scalefont setfont/y exch def
  3203. /x exch def 0 1 6{x 20 sub y m 20 @square @gs $corelmeter exch get dup SetGry fill @gr
  3204. stroke x 2 add y 8 add moveto 100 mul 100 exch sub cvi 20 string cvs show
  3205. /y y 20 add def}for @gr}bd/@crop{gsave .3 setlinewidth
  3206. 0 SetGry Tl rotate 0 0 m 0 -24 rl -4 -24 m 8 @square
  3207. -4 -20 m 8 0 rl stroke grestore}bd/@colorbox{gsave
  3208. newpath Tl 100 exch sub 100 div SetGry -8 -8 moveto 16 @square fill
  3209. 0 SetGry 10 -2 moveto show grestore}bd/deflevel 0 def
  3210. /@sax{/deflevel deflevel 1 add def}bd/@eax{
  3211. /deflevel deflevel dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}
  3212. ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}bd
  3213. /@daq{dup type/arraytype eq{{}forall}if}bd
  3214. /@BMP{/@cc xd 12 index 1 eq{12 -1 roll pop
  3215. @i}{7 -2 roll 2 rp @I}ifelse}bd end
  3216. %%EndResource
  3217.  
  3218. %%EndProlog
  3219. /#copies 1 def
  3220. wCorel4Dict begin
  3221. 0.00 0.00 Tl
  3222. 1.0000 1.0000 scale
  3223. %%BeginSetup
  3224. 11.4737 setmiterlimit
  3225. 0 45 /@dot @D
  3226. 1.00 setflat
  3227. /$fst 128 def
  3228. %%EndSetup
  3229. [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 
  3230. 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 
  3231. 278 355 556 556 889 667 191 333 333 389 584 278 333 278 278 556 
  3232. 556 556 556 556 556 556 556 556 556 278 278 584 584 584 556 1015 
  3233. 667 667 722 722 667 611 778 722 278 500 667 556 833 722 778 667 
  3234. 778 722 667 611 722 667 944 667 667 611 278 278 278 469 556 333 
  3235. 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 
  3236. 556 333 500 278 556 500 722 500 500 500 334 260 334 584 750 750 
  3237. 750 222 556 333 1000 556 556 333 1000 667 333 1000 750 750 750 750 
  3238. 222 222 333 333 350 556 1000 333 1000 500 333 944 750 750 667 278 
  3239. 333 556 556 556 556 260 556 333 737 370 556 584 333 737 552 400 
  3240. 549 333 333 333 576 537 278 333 333 365 556 834 834 834 611 667 
  3241. 667 667 667 667 667 1000 722 667 667 667 667 278 278 278 278 722 
  3242. 722 778 778 778 778 778 584 778 722 722 722 722 667 667 611 556 
  3243. 556 556 556 556 556 889 500 556 556 556 556 278 278 278 278 556 
  3244. 556 556 556 556 556 556 549 611 556 556 556 556 500 556 500 ]
  3245. CorelDrawReencodeVect /_R1-Helvetica /Helvetica Z
  3246.  
  3247. %StartPage
  3248. @sv
  3249. /$ctm matrix currentmatrix def
  3250. @sv
  3251. %StartColorLayer (COMPOSITE)
  3252. %StartTile
  3253. /$ctm matrix currentmatrix def
  3254. @sv @sv
  3255. @rs 0 0 Tl 1.000000 1.000000 scale 
  3256. 0.000000 0.000000 Tl /$ctm matrix currentmatrix def @sv
  3257. @rax %%Note: Object
  3258. 132.34 700.99 187.20 709.20 @E
  3259. 0 J 0 j [] 0 d 0 R 0 @G
  3260. 1.00 1.00 1.00 0.21 K
  3261. 0 0.22 0.22 0.00 @w
  3262. 132.34 700.99 m
  3263. 132.34 709.20 L
  3264. 187.20 709.20 L
  3265. 187.20 700.99 L
  3266. 132.34 700.99 L
  3267. @c
  3268. S
  3269.  
  3270. @rax %%Note: Object
  3271. 132.41 270.43 168.05 275.90 @E
  3272.  0 O 0 @g
  3273. 1.00 1.00 1.00 0.21 k
  3274. 0 J 0 j [] 0 d 0 R 0 @G
  3275. 1.00 1.00 1.00 0.21 K
  3276. 0 0.22 0.22 0.00 @w
  3277. 132.41 270.43 m
  3278. 132.41 275.90 L
  3279. 168.05 275.90 L
  3280. 168.05 270.43 L
  3281. 132.41 270.43 L
  3282. @c
  3283. B
  3284.  
  3285. @rax %%Note: Object
  3286. 132.41 311.54 168.05 317.02 @E
  3287.  0 O 0 @g
  3288. 1.00 1.00 1.00 0.21 k
  3289. 0 J 0 j [] 0 d 0 R 0 @G
  3290. 1.00 1.00 1.00 0.21 K
  3291. 0 0.22 0.22 0.00 @w
  3292. 132.41 311.54 m
  3293. 132.41 317.02 L
  3294. 168.05 317.02 L
  3295. 168.05 311.54 L
  3296. 132.41 311.54 L
  3297. @c
  3298. B
  3299.  
  3300. @rax %%Note: Object
  3301. 132.41 303.34 168.05 308.81 @E
  3302.  0 O 0 @g
  3303. 1.00 1.00 1.00 0.21 k
  3304. 0 J 0 j [] 0 d 0 R 0 @G
  3305. 1.00 1.00 1.00 0.21 K
  3306. 0 0.22 0.22 0.00 @w
  3307. 132.41 303.34 m
  3308. 132.41 308.81 L
  3309. 168.05 308.81 L
  3310. 168.05 303.34 L
  3311. 132.41 303.34 L
  3312. @c
  3313. B
  3314.  
  3315. @rax %%Note: Object
  3316. 132.41 295.06 168.05 300.60 @E
  3317.  0 O 0 @g
  3318. 1.00 1.00 1.00 0.21 k
  3319. 0 J 0 j [] 0 d 0 R 0 @G
  3320. 1.00 1.00 1.00 0.21 K
  3321. 0 0.22 0.22 0.00 @w
  3322. 132.41 295.06 m
  3323. 132.41 300.60 L
  3324. 168.05 300.60 L
  3325. 168.05 295.06 L
  3326. 132.41 295.06 L
  3327. @c
  3328. B
  3329.  
  3330. @rax %%Note: Object
  3331. 132.41 264.89 187.27 273.17 @E
  3332. 0 J 0 j [] 0 d 0 R 0 @G
  3333. 1.00 1.00 1.00 0.21 K
  3334. 0 0.22 0.22 0.00 @w
  3335. 132.41 264.89 m
  3336. 132.41 273.17 L
  3337. 187.27 273.17 L
  3338. 187.27 264.89 L
  3339. 132.41 264.89 L
  3340. @c
  3341. S
  3342.  
  3343. @rax %%Note: Object
  3344. 132.41 314.28 187.27 322.49 @E
  3345. 0 J 0 j [] 0 d 0 R 0 @G
  3346. 1.00 1.00 1.00 0.21 K
  3347. 0 0.22 0.22 0.00 @w
  3348. 132.41 314.28 m
  3349. 132.41 322.49 L
  3350. 187.27 322.49 L
  3351. 187.27 314.28 L
  3352. 132.41 314.28 L
  3353. @c
  3354. S
  3355.  
  3356. @rax %%Note: Object
  3357. 132.41 306.07 187.27 314.28 @E
  3358. 0 J 0 j [] 0 d 0 R 0 @G
  3359. 1.00 1.00 1.00 0.21 K
  3360. 0 0.22 0.22 0.00 @w
  3361. 132.41 306.07 m
  3362. 132.41 314.28 L
  3363. 187.27 314.28 L
  3364. 187.27 306.07 L
  3365. 132.41 306.07 L
  3366. @c
  3367. S
  3368.  
  3369. @rax %%Note: Object
  3370. 132.41 297.86 187.27 306.07 @E
  3371. 0 J 0 j [] 0 d 0 R 0 @G
  3372. 1.00 1.00 1.00 0.21 K
  3373. 0 0.22 0.22 0.00 @w
  3374. 132.41 297.86 m
  3375. 132.41 306.07 L
  3376. 187.27 306.07 L
  3377. 187.27 297.86 L
  3378. 132.41 297.86 L
  3379. @c
  3380. S
  3381.  
  3382. @rax %%Note: Object
  3383. 132.41 273.17 187.27 281.38 @E
  3384. 0 J 0 j [] 0 d 0 R 0 @G
  3385. 1.00 1.00 1.00 0.21 K
  3386. 0 0.22 0.22 0.00 @w
  3387. 132.41 273.17 m
  3388. 132.41 281.38 L
  3389. 187.27 281.38 L
  3390. 187.27 273.17 L
  3391. 132.41 273.17 L
  3392. @c
  3393. S
  3394.  
  3395. @rax %%Note: Object
  3396. 132.41 289.58 187.27 297.86 @E
  3397. 0 J 0 j [] 0 d 0 R 0 @G
  3398. 1.00 1.00 1.00 0.21 K
  3399. 0 0.22 0.22 0.00 @w
  3400. 132.41 289.58 m
  3401. 132.41 297.86 L
  3402. 187.27 297.86 L
  3403. 187.27 289.58 L
  3404. 132.41 289.58 L
  3405. @c
  3406. S
  3407.  
  3408. @rax %%Note: Object
  3409. 132.41 281.38 187.27 289.58 @E
  3410. 0 J 0 j [] 0 d 0 R 0 @G
  3411. 1.00 1.00 1.00 0.21 K
  3412. 0 0.22 0.22 0.00 @w
  3413. 132.41 281.38 m
  3414. 132.41 289.58 L
  3415. 187.27 289.58 L
  3416. 187.27 281.38 L
  3417. 132.41 281.38 L
  3418. @c
  3419. S
  3420.  
  3421. @rax %%Note: Object
  3422. 132.41 278.64 168.05 284.11 @E
  3423.  0 O 0 @g
  3424. 1.00 1.00 1.00 0.21 k
  3425. 0 J 0 j [] 0 d 0 R 0 @G
  3426. 1.00 1.00 1.00 0.21 K
  3427. 0 0.22 0.22 0.00 @w
  3428. 132.41 278.64 m
  3429. 132.41 284.11 L
  3430. 168.05 284.11 L
  3431. 168.05 278.64 L
  3432. 132.41 278.64 L
  3433. @c
  3434. B
  3435.  
  3436. @rax %%Note: Object
  3437. 132.41 97.70 168.05 103.18 @E
  3438.  0 O 0 @g
  3439. 1.00 1.00 1.00 0.21 k
  3440. 0 J 0 j [] 0 d 0 R 0 @G
  3441. 1.00 1.00 1.00 0.21 K
  3442. 0 0.22 0.22 0.00 @w
  3443. 132.41 97.70 m
  3444. 132.41 103.18 L
  3445. 168.05 103.18 L
  3446. 168.05 97.70 L
  3447. 132.41 97.70 L
  3448. @c
  3449. B
  3450.  
  3451. @rax %%Note: Object
  3452. 132.41 138.82 168.05 144.29 @E
  3453.  0 O 0 @g
  3454. 1.00 1.00 1.00 0.21 k
  3455. 0 J 0 j [] 0 d 0 R 0 @G
  3456. 1.00 1.00 1.00 0.21 K
  3457. 0 0.22 0.22 0.00 @w
  3458. 132.41 138.82 m
  3459. 132.41 144.29 L
  3460. 168.05 144.29 L
  3461. 168.05 138.82 L
  3462. 132.41 138.82 L
  3463. @c
  3464. B
  3465.  
  3466. @rax %%Note: Object
  3467. 132.41 130.61 168.05 136.08 @E
  3468.  0 O 0 @g
  3469. 1.00 1.00 1.00 0.21 k
  3470. 0 J 0 j [] 0 d 0 R 0 @G
  3471. 1.00 1.00 1.00 0.21 K
  3472. 0 0.22 0.22 0.00 @w
  3473. 132.41 130.61 m
  3474. 132.41 136.08 L
  3475. 168.05 136.08 L
  3476. 168.05 130.61 L
  3477. 132.41 130.61 L
  3478. @c
  3479. B
  3480.  
  3481. @rax %%Note: Object
  3482. 132.41 122.33 168.05 127.87 @E
  3483.  0 O 0 @g
  3484. 1.00 1.00 1.00 0.21 k
  3485. 0 J 0 j [] 0 d 0 R 0 @G
  3486. 1.00 1.00 1.00 0.21 K
  3487. 0 0.22 0.22 0.00 @w
  3488. 132.41 122.33 m
  3489. 132.41 127.87 L
  3490. 168.05 127.87 L
  3491. 168.05 122.33 L
  3492. 132.41 122.33 L
  3493. @c
  3494. B
  3495.  
  3496. @rax %%Note: Object
  3497. 132.41 92.16 187.27 100.44 @E
  3498. 0 J 0 j [] 0 d 0 R 0 @G
  3499. 1.00 1.00 1.00 0.21 K
  3500. 0 0.22 0.22 0.00 @w
  3501. 132.41 92.16 m
  3502. 132.41 100.44 L
  3503. 187.27 100.44 L
  3504. 187.27 92.16 L
  3505. 132.41 92.16 L
  3506. @c
  3507. S
  3508.  
  3509. @rax %%Note: Object
  3510. 132.41 141.55 187.27 149.76 @E
  3511. 0 J 0 j [] 0 d 0 R 0 @G
  3512. 1.00 1.00 1.00 0.21 K
  3513. 0 0.22 0.22 0.00 @w
  3514. 132.41 141.55 m
  3515. 132.41 149.76 L
  3516. 187.27 149.76 L
  3517. 187.27 141.55 L
  3518. 132.41 141.55 L
  3519. @c
  3520. S
  3521.  
  3522. @rax %%Note: Object
  3523. 132.41 133.34 187.27 141.55 @E
  3524. 0 J 0 j [] 0 d 0 R 0 @G
  3525. 1.00 1.00 1.00 0.21 K
  3526. 0 0.22 0.22 0.00 @w
  3527. 132.41 133.34 m
  3528. 132.41 141.55 L
  3529. 187.27 141.55 L
  3530. 187.27 133.34 L
  3531. 132.41 133.34 L
  3532. @c
  3533. S
  3534.  
  3535. @rax %%Note: Object
  3536. 132.41 125.14 187.27 133.34 @E
  3537. 0 J 0 j [] 0 d 0 R 0 @G
  3538. 1.00 1.00 1.00 0.21 K
  3539. 0 0.22 0.22 0.00 @w
  3540. 132.41 125.14 m
  3541. 132.41 133.34 L
  3542. 187.27 133.34 L
  3543. 187.27 125.14 L
  3544. 132.41 125.14 L
  3545. @c
  3546. S
  3547.  
  3548. @rax %%Note: Object
  3549. 132.41 100.44 187.27 108.65 @E
  3550. 0 J 0 j [] 0 d 0 R 0 @G
  3551. 1.00 1.00 1.00 0.21 K
  3552. 0 0.22 0.22 0.00 @w
  3553. 132.41 100.44 m
  3554. 132.41 108.65 L
  3555. 187.27 108.65 L
  3556. 187.27 100.44 L
  3557. 132.41 100.44 L
  3558. @c
  3559. S
  3560.  
  3561. @rax %%Note: Object
  3562. 132.41 116.86 187.27 125.14 @E
  3563. 0 J 0 j [] 0 d 0 R 0 @G
  3564. 1.00 1.00 1.00 0.21 K
  3565. 0 0.22 0.22 0.00 @w
  3566. 132.41 116.86 m
  3567. 132.41 125.14 L
  3568. 187.27 125.14 L
  3569. 187.27 116.86 L
  3570. 132.41 116.86 L
  3571. @c
  3572. S
  3573.  
  3574. @rax %%Note: Object
  3575. 132.41 108.65 187.27 116.86 @E
  3576. 0 J 0 j [] 0 d 0 R 0 @G
  3577. 1.00 1.00 1.00 0.21 K
  3578. 0 0.22 0.22 0.00 @w
  3579. 132.41 108.65 m
  3580. 132.41 116.86 L
  3581. 187.27 116.86 L
  3582. 187.27 108.65 L
  3583. 132.41 108.65 L
  3584. @c
  3585. S
  3586.  
  3587. @rax %%Note: Object
  3588. 132.41 105.91 168.05 111.38 @E
  3589.  0 O 0 @g
  3590. 1.00 1.00 1.00 0.21 k
  3591. 0 J 0 j [] 0 d 0 R 0 @G
  3592. 1.00 1.00 1.00 0.21 K
  3593. 0 0.22 0.22 0.00 @w
  3594. 132.41 105.91 m
  3595. 132.41 111.38 L
  3596. 168.05 111.38 L
  3597. 168.05 105.91 L
  3598. 132.41 105.91 L
  3599. @c
  3600. B
  3601.  
  3602. @rax %%Note: Object
  3603. 132.41 155.23 168.05 160.70 @E
  3604.  0 O 0 @g
  3605. 1.00 1.00 1.00 0.21 k
  3606. 0 J 0 j [] 0 d 0 R 0 @G
  3607. 1.00 1.00 1.00 0.21 K
  3608. 0 0.22 0.22 0.00 @w
  3609. 132.41 155.23 m
  3610. 132.41 160.70 L
  3611. 168.05 160.70 L
  3612. 168.05 155.23 L
  3613. 132.41 155.23 L
  3614. @c
  3615. B
  3616.  
  3617. @rax %%Note: Object
  3618. 132.41 196.34 168.05 201.82 @E
  3619.  0 O 0 @g
  3620. 1.00 1.00 1.00 0.21 k
  3621. 0 J 0 j [] 0 d 0 R 0 @G
  3622. 1.00 1.00 1.00 0.21 K
  3623. 0 0.22 0.22 0.00 @w
  3624. 132.41 196.34 m
  3625. 132.41 201.82 L
  3626. 168.05 201.82 L
  3627. 168.05 196.34 L
  3628. 132.41 196.34 L
  3629. @c
  3630. B
  3631.  
  3632. @rax %%Note: Object
  3633. 132.41 188.14 168.05 193.61 @E
  3634.  0 O 0 @g
  3635. 1.00 1.00 1.00 0.21 k
  3636. 0 J 0 j [] 0 d 0 R 0 @G
  3637. 1.00 1.00 1.00 0.21 K
  3638. 0 0.22 0.22 0.00 @w
  3639. 132.41 188.14 m
  3640. 132.41 193.61 L
  3641. 168.05 193.61 L
  3642. 168.05 188.14 L
  3643. 132.41 188.14 L
  3644. @c
  3645. B
  3646.  
  3647. @rax %%Note: Object
  3648. 132.41 179.86 168.05 185.40 @E
  3649.  0 O 0 @g
  3650. 1.00 1.00 1.00 0.21 k
  3651. 0 J 0 j [] 0 d 0 R 0 @G
  3652. 1.00 1.00 1.00 0.21 K
  3653. 0 0.22 0.22 0.00 @w
  3654. 132.41 179.86 m
  3655. 132.41 185.40 L
  3656. 168.05 185.40 L
  3657. 168.05 179.86 L
  3658. 132.41 179.86 L
  3659. @c
  3660. B
  3661.  
  3662. @rax %%Note: Object
  3663. 132.41 149.69 187.27 157.97 @E
  3664. 0 J 0 j [] 0 d 0 R 0 @G
  3665. 1.00 1.00 1.00 0.21 K
  3666. 0 0.22 0.22 0.00 @w
  3667. 132.41 149.69 m
  3668. 132.41 157.97 L
  3669. 187.27 157.97 L
  3670. 187.27 149.69 L
  3671. 132.41 149.69 L
  3672. @c
  3673. S
  3674.  
  3675. @rax %%Note: Object
  3676. 132.41 199.08 187.27 207.29 @E
  3677. 0 J 0 j [] 0 d 0 R 0 @G
  3678. 1.00 1.00 1.00 0.21 K
  3679. 0 0.22 0.22 0.00 @w
  3680. 132.41 199.08 m
  3681. 132.41 207.29 L
  3682. 187.27 207.29 L
  3683. 187.27 199.08 L
  3684. 132.41 199.08 L
  3685. @c
  3686. S
  3687.  
  3688. @rax %%Note: Object
  3689. 132.41 190.87 187.27 199.08 @E
  3690. 0 J 0 j [] 0 d 0 R 0 @G
  3691. 1.00 1.00 1.00 0.21 K
  3692. 0 0.22 0.22 0.00 @w
  3693. 132.41 190.87 m
  3694. 132.41 199.08 L
  3695. 187.27 199.08 L
  3696. 187.27 190.87 L
  3697. 132.41 190.87 L
  3698. @c
  3699. S
  3700.  
  3701. @rax %%Note: Object
  3702. 132.41 182.66 187.27 190.87 @E
  3703. 0 J 0 j [] 0 d 0 R 0 @G
  3704. 1.00 1.00 1.00 0.21 K
  3705. 0 0.22 0.22 0.00 @w
  3706. 132.41 182.66 m
  3707. 132.41 190.87 L
  3708. 187.27 190.87 L
  3709. 187.27 182.66 L
  3710. 132.41 182.66 L
  3711. @c
  3712. S
  3713.  
  3714. @rax %%Note: Object
  3715. 132.41 157.97 187.27 166.18 @E
  3716. 0 J 0 j [] 0 d 0 R 0 @G
  3717. 1.00 1.00 1.00 0.21 K
  3718. 0 0.22 0.22 0.00 @w
  3719. 132.41 157.97 m
  3720. 132.41 166.18 L
  3721. 187.27 166.18 L
  3722. 187.27 157.97 L
  3723. 132.41 157.97 L
  3724. @c
  3725. S
  3726.  
  3727. @rax %%Note: Object
  3728. 132.41 174.38 187.27 182.66 @E
  3729. 0 J 0 j [] 0 d 0 R 0 @G
  3730. 1.00 1.00 1.00 0.21 K
  3731. 0 0.22 0.22 0.00 @w
  3732. 132.41 174.38 m
  3733. 132.41 182.66 L
  3734. 187.27 182.66 L
  3735. 187.27 174.38 L
  3736. 132.41 174.38 L
  3737. @c
  3738. S
  3739.  
  3740. @rax %%Note: Object
  3741. 132.41 166.18 187.27 174.38 @E
  3742. 0 J 0 j [] 0 d 0 R 0 @G
  3743. 1.00 1.00 1.00 0.21 K
  3744. 0 0.22 0.22 0.00 @w
  3745. 132.41 166.18 m
  3746. 132.41 174.38 L
  3747. 187.27 174.38 L
  3748. 187.27 166.18 L
  3749. 132.41 166.18 L
  3750. @c
  3751. S
  3752.  
  3753. @rax %%Note: Object
  3754. 132.41 163.44 168.05 168.91 @E
  3755.  0 O 0 @g
  3756. 1.00 1.00 1.00 0.21 k
  3757. 0 J 0 j [] 0 d 0 R 0 @G
  3758. 1.00 1.00 1.00 0.21 K
  3759. 0 0.22 0.22 0.00 @w
  3760. 132.41 163.44 m
  3761. 132.41 168.91 L
  3762. 168.05 168.91 L
  3763. 168.05 163.44 L
  3764. 132.41 163.44 L
  3765. @c
  3766. B
  3767.  
  3768. @rax %%Note: Object
  3769. 132.34 673.56 167.98 679.03 @E
  3770.  0 O 0 @g
  3771. 1.00 1.00 1.00 0.21 k
  3772. 0 J 0 j [] 0 d 0 R 0 @G
  3773. 1.00 1.00 1.00 0.21 K
  3774. 0 0.22 0.22 0.00 @w
  3775. 132.34 673.56 m
  3776. 132.34 679.03 L
  3777. 167.98 679.03 L
  3778. 167.98 673.56 L
  3779. 132.34 673.56 L
  3780. @c
  3781. B
  3782.  
  3783. @rax %%Note: Object
  3784. 132.34 698.26 167.98 703.73 @E
  3785.  0 O 0 @g
  3786. 1.00 1.00 1.00 0.21 k
  3787. 0 J 0 j [] 0 d 0 R 0 @G
  3788. 1.00 1.00 1.00 0.21 K
  3789. 0 0.22 0.22 0.00 @w
  3790. 132.34 698.26 m
  3791. 132.34 703.73 L
  3792. 167.98 703.73 L
  3793. 167.98 698.26 L
  3794. 132.34 698.26 L
  3795. @c
  3796. B
  3797.  
  3798. @rax %%Note: Object
  3799. 132.34 668.09 187.20 676.30 @E
  3800. 0 J 0 j [] 0 d 0 R 0 @G
  3801. 1.00 1.00 1.00 0.21 K
  3802. 0 0.22 0.22 0.00 @w
  3803. 132.34 668.09 m
  3804. 132.34 676.30 L
  3805. 187.20 676.30 L
  3806. 187.20 668.09 L
  3807. 132.34 668.09 L
  3808. @c
  3809. S
  3810.  
  3811. @rax %%Note: Object
  3812. 132.34 676.30 187.20 684.50 @E
  3813. 0 J 0 j [] 0 d 0 R 0 @G
  3814. 1.00 1.00 1.00 0.21 K
  3815. 0 0.22 0.22 0.00 @w
  3816. 132.34 676.30 m
  3817. 132.34 684.50 L
  3818. 187.20 684.50 L
  3819. 187.20 676.30 L
  3820. 132.34 676.30 L
  3821. @c
  3822. S
  3823.  
  3824. @rax %%Note: Object
  3825. 132.34 692.78 187.20 700.99 @E
  3826. 0 J 0 j [] 0 d 0 R 0 @G
  3827. 1.00 1.00 1.00 0.21 K
  3828. 0 0.22 0.22 0.00 @w
  3829. 132.34 692.78 m
  3830. 132.34 700.99 L
  3831. 187.20 700.99 L
  3832. 187.20 692.78 L
  3833. 132.34 692.78 L
  3834. @c
  3835. S
  3836.  
  3837. @rax %%Note: Object
  3838. 132.34 684.58 187.20 692.78 @E
  3839. 0 J 0 j [] 0 d 0 R 0 @G
  3840. 1.00 1.00 1.00 0.21 K
  3841. 0 0.22 0.22 0.00 @w
  3842. 132.34 684.58 m
  3843. 132.34 692.78 L
  3844. 187.20 692.78 L
  3845. 187.20 684.58 L
  3846. 132.34 684.58 L
  3847. @c
  3848. S
  3849.  
  3850. @rax %%Note: Object
  3851. 132.34 681.77 167.98 687.24 @E
  3852.  0 O 0 @g
  3853. 1.00 1.00 1.00 0.21 k
  3854. 0 J 0 j [] 0 d 0 R 0 @G
  3855. 1.00 1.00 1.00 0.21 K
  3856. 0 0.22 0.22 0.00 @w
  3857. 132.34 681.77 m
  3858. 132.34 687.24 L
  3859. 167.98 687.24 L
  3860. 167.98 681.77 L
  3861. 132.34 681.77 L
  3862. @c
  3863. B
  3864.  
  3865. @rax %%Note: Object
  3866. 132.41 500.90 168.05 506.38 @E
  3867.  0 O 0 @g
  3868. 1.00 1.00 1.00 0.21 k
  3869. 0 J 0 j [] 0 d 0 R 0 @G
  3870. 1.00 1.00 1.00 0.21 K
  3871. 0 0.22 0.22 0.00 @w
  3872. 132.41 500.90 m
  3873. 132.41 506.38 L
  3874. 168.05 506.38 L
  3875. 168.05 500.90 L
  3876. 132.41 500.90 L
  3877. @c
  3878. B
  3879.  
  3880. @rax %%Note: Object
  3881. 132.41 542.02 168.05 547.49 @E
  3882.  0 O 0 @g
  3883. 1.00 1.00 1.00 0.21 k
  3884. 0 J 0 j [] 0 d 0 R 0 @G
  3885. 1.00 1.00 1.00 0.21 K
  3886. 0 0.22 0.22 0.00 @w
  3887. 132.41 542.02 m
  3888. 132.41 547.49 L
  3889. 168.05 547.49 L
  3890. 168.05 542.02 L
  3891. 132.41 542.02 L
  3892. @c
  3893. B
  3894.  
  3895. @rax %%Note: Object
  3896. 132.41 533.81 168.05 539.28 @E
  3897.  0 O 0 @g
  3898. 1.00 1.00 1.00 0.21 k
  3899. 0 J 0 j [] 0 d 0 R 0 @G
  3900. 1.00 1.00 1.00 0.21 K
  3901. 0 0.22 0.22 0.00 @w
  3902. 132.41 533.81 m
  3903. 132.41 539.28 L
  3904. 168.05 539.28 L
  3905. 168.05 533.81 L
  3906. 132.41 533.81 L
  3907. @c
  3908. B
  3909.  
  3910. @rax %%Note: Object
  3911. 132.41 525.53 168.05 531.07 @E
  3912.  0 O 0 @g
  3913. 1.00 1.00 1.00 0.21 k
  3914. 0 J 0 j [] 0 d 0 R 0 @G
  3915. 1.00 1.00 1.00 0.21 K
  3916. 0 0.22 0.22 0.00 @w
  3917. 132.41 525.53 m
  3918. 132.41 531.07 L
  3919. 168.05 531.07 L
  3920. 168.05 525.53 L
  3921. 132.41 525.53 L
  3922. @c
  3923. B
  3924.  
  3925. @rax %%Note: Object
  3926. 132.41 495.36 187.27 503.64 @E
  3927. 0 J 0 j [] 0 d 0 R 0 @G
  3928. 1.00 1.00 1.00 0.21 K
  3929. 0 0.22 0.22 0.00 @w
  3930. 132.41 495.36 m
  3931. 132.41 503.64 L
  3932. 187.27 503.64 L
  3933. 187.27 495.36 L
  3934. 132.41 495.36 L
  3935. @c
  3936. S
  3937.  
  3938. @rax %%Note: Object
  3939. 132.41 544.75 187.27 552.96 @E
  3940. 0 J 0 j [] 0 d 0 R 0 @G
  3941. 1.00 1.00 1.00 0.21 K
  3942. 0 0.22 0.22 0.00 @w
  3943. 132.41 544.75 m
  3944. 132.41 552.96 L
  3945. 187.27 552.96 L
  3946. 187.27 544.75 L
  3947. 132.41 544.75 L
  3948. @c
  3949. S
  3950.  
  3951. @rax %%Note: Object
  3952. 132.41 536.54 187.27 544.75 @E
  3953. 0 J 0 j [] 0 d 0 R 0 @G
  3954. 1.00 1.00 1.00 0.21 K
  3955. 0 0.22 0.22 0.00 @w
  3956. 132.41 536.54 m
  3957. 132.41 544.75 L
  3958. 187.27 544.75 L
  3959. 187.27 536.54 L
  3960. 132.41 536.54 L
  3961. @c
  3962. S
  3963.  
  3964. @rax %%Note: Object
  3965. 132.41 528.34 187.27 536.54 @E
  3966. 0 J 0 j [] 0 d 0 R 0 @G
  3967. 1.00 1.00 1.00 0.21 K
  3968. 0 0.22 0.22 0.00 @w
  3969. 132.41 528.34 m
  3970. 132.41 536.54 L
  3971. 187.27 536.54 L
  3972. 187.27 528.34 L
  3973. 132.41 528.34 L
  3974. @c
  3975. S
  3976.  
  3977. @rax %%Note: Object
  3978. 132.41 503.64 187.27 511.85 @E
  3979. 0 J 0 j [] 0 d 0 R 0 @G
  3980. 1.00 1.00 1.00 0.21 K
  3981. 0 0.22 0.22 0.00 @w
  3982. 132.41 503.64 m
  3983. 132.41 511.85 L
  3984. 187.27 511.85 L
  3985. 187.27 503.64 L
  3986. 132.41 503.64 L
  3987. @c
  3988. S
  3989.  
  3990. @rax %%Note: Object
  3991. 132.41 520.06 187.27 528.34 @E
  3992. 0 J 0 j [] 0 d 0 R 0 @G
  3993. 1.00 1.00 1.00 0.21 K
  3994. 0 0.22 0.22 0.00 @w
  3995. 132.41 520.06 m
  3996. 132.41 528.34 L
  3997. 187.27 528.34 L
  3998. 187.27 520.06 L
  3999. 132.41 520.06 L
  4000. @c
  4001. S
  4002.  
  4003. @rax %%Note: Object
  4004. 132.41 511.85 187.27 520.06 @E
  4005. 0 J 0 j [] 0 d 0 R 0 @G
  4006. 1.00 1.00 1.00 0.21 K
  4007. 0 0.22 0.22 0.00 @w
  4008. 132.41 511.85 m
  4009. 132.41 520.06 L
  4010. 187.27 520.06 L
  4011. 187.27 511.85 L
  4012. 132.41 511.85 L
  4013. @c
  4014. S
  4015.  
  4016. @rax %%Note: Object
  4017. 132.41 509.11 168.05 514.58 @E
  4018.  0 O 0 @g
  4019. 1.00 1.00 1.00 0.21 k
  4020. 0 J 0 j [] 0 d 0 R 0 @G
  4021. 1.00 1.00 1.00 0.21 K
  4022. 0 0.22 0.22 0.00 @w
  4023. 132.41 509.11 m
  4024. 132.41 514.58 L
  4025. 168.05 514.58 L
  4026. 168.05 509.11 L
  4027. 132.41 509.11 L
  4028. @c
  4029. B
  4030.  
  4031. @rax %%Note: Object
  4032. 132.41 558.50 168.05 563.98 @E
  4033.  0 O 0 @g
  4034. 1.00 1.00 1.00 0.21 k
  4035. 0 J 0 j [] 0 d 0 R 0 @G
  4036. 1.00 1.00 1.00 0.21 K
  4037. 0 0.22 0.22 0.00 @w
  4038. 132.41 558.50 m
  4039. 132.41 563.98 L
  4040. 168.05 563.98 L
  4041. 168.05 558.50 L
  4042. 132.41 558.50 L
  4043. @c
  4044. B
  4045.  
  4046. @rax %%Note: Object
  4047. 132.41 599.62 168.05 605.09 @E
  4048.  0 O 0 @g
  4049. 1.00 1.00 1.00 0.21 k
  4050. 0 J 0 j [] 0 d 0 R 0 @G
  4051. 1.00 1.00 1.00 0.21 K
  4052. 0 0.22 0.22 0.00 @w
  4053. 132.41 599.62 m
  4054. 132.41 605.09 L
  4055. 168.05 605.09 L
  4056. 168.05 599.62 L
  4057. 132.41 599.62 L
  4058. @c
  4059. B
  4060.  
  4061. @rax %%Note: Object
  4062. 132.41 591.41 168.05 596.88 @E
  4063.  0 O 0 @g
  4064. 1.00 1.00 1.00 0.21 k
  4065. 0 J 0 j [] 0 d 0 R 0 @G
  4066. 1.00 1.00 1.00 0.21 K
  4067. 0 0.22 0.22 0.00 @w
  4068. 132.41 591.41 m
  4069. 132.41 596.88 L
  4070. 168.05 596.88 L
  4071. 168.05 591.41 L
  4072. 132.41 591.41 L
  4073. @c
  4074. B
  4075.  
  4076. @rax %%Note: Object
  4077. 132.41 583.13 168.05 588.67 @E
  4078.  0 O 0 @g
  4079. 1.00 1.00 1.00 0.21 k
  4080. 0 J 0 j [] 0 d 0 R 0 @G
  4081. 1.00 1.00 1.00 0.21 K
  4082. 0 0.22 0.22 0.00 @w
  4083. 132.41 583.13 m
  4084. 132.41 588.67 L
  4085. 168.05 588.67 L
  4086. 168.05 583.13 L
  4087. 132.41 583.13 L
  4088. @c
  4089. B
  4090.  
  4091. @rax %%Note: Object
  4092. 132.41 552.96 187.27 561.24 @E
  4093. 0 J 0 j [] 0 d 0 R 0 @G
  4094. 1.00 1.00 1.00 0.21 K
  4095. 0 0.22 0.22 0.00 @w
  4096. 132.41 552.96 m
  4097. 132.41 561.24 L
  4098. 187.27 561.24 L
  4099. 187.27 552.96 L
  4100. 132.41 552.96 L
  4101. @c
  4102. S
  4103.  
  4104. @rax %%Note: Object
  4105. 132.41 602.35 187.27 610.56 @E
  4106. 0 J 0 j [] 0 d 0 R 0 @G
  4107. 1.00 1.00 1.00 0.21 K
  4108. 0 0.22 0.22 0.00 @w
  4109. 132.41 602.35 m
  4110. 132.41 610.56 L
  4111. 187.27 610.56 L
  4112. 187.27 602.35 L
  4113. 132.41 602.35 L
  4114. @c
  4115. S
  4116.  
  4117. @rax %%Note: Object
  4118. 132.41 594.14 187.27 602.35 @E
  4119. 0 J 0 j [] 0 d 0 R 0 @G
  4120. 1.00 1.00 1.00 0.21 K
  4121. 0 0.22 0.22 0.00 @w
  4122. 132.41 594.14 m
  4123. 132.41 602.35 L
  4124. 187.27 602.35 L
  4125. 187.27 594.14 L
  4126. 132.41 594.14 L
  4127. @c
  4128. S
  4129.  
  4130. @rax %%Note: Object
  4131. 132.41 585.94 187.27 594.14 @E
  4132. 0 J 0 j [] 0 d 0 R 0 @G
  4133. 1.00 1.00 1.00 0.21 K
  4134. 0 0.22 0.22 0.00 @w
  4135. 132.41 585.94 m
  4136. 132.41 594.14 L
  4137. 187.27 594.14 L
  4138. 187.27 585.94 L
  4139. 132.41 585.94 L
  4140. @c
  4141. S
  4142.  
  4143. @rax %%Note: Object
  4144. 132.41 561.24 187.27 569.45 @E
  4145. 0 J 0 j [] 0 d 0 R 0 @G
  4146. 1.00 1.00 1.00 0.21 K
  4147. 0 0.22 0.22 0.00 @w
  4148. 132.41 561.24 m
  4149. 132.41 569.45 L
  4150. 187.27 569.45 L
  4151. 187.27 561.24 L
  4152. 132.41 561.24 L
  4153. @c
  4154. S
  4155.  
  4156. @rax %%Note: Object
  4157. 132.41 577.66 187.27 585.94 @E
  4158. 0 J 0 j [] 0 d 0 R 0 @G
  4159. 1.00 1.00 1.00 0.21 K
  4160. 0 0.22 0.22 0.00 @w
  4161. 132.41 577.66 m
  4162. 132.41 585.94 L
  4163. 187.27 585.94 L
  4164. 187.27 577.66 L
  4165. 132.41 577.66 L
  4166. @c
  4167. S
  4168.  
  4169. @rax %%Note: Object
  4170. 132.41 569.45 187.27 577.66 @E
  4171. 0 J 0 j [] 0 d 0 R 0 @G
  4172. 1.00 1.00 1.00 0.21 K
  4173. 0 0.22 0.22 0.00 @w
  4174. 132.41 569.45 m
  4175. 132.41 577.66 L
  4176. 187.27 577.66 L
  4177. 187.27 569.45 L
  4178. 132.41 569.45 L
  4179. @c
  4180. S
  4181.  
  4182. @rax %%Note: Object
  4183. 132.41 566.71 168.05 572.18 @E
  4184.  0 O 0 @g
  4185. 1.00 1.00 1.00 0.21 k
  4186. 0 J 0 j [] 0 d 0 R 0 @G
  4187. 1.00 1.00 1.00 0.21 K
  4188. 0 0.22 0.22 0.00 @w
  4189. 132.41 566.71 m
  4190. 132.41 572.18 L
  4191. 168.05 572.18 L
  4192. 168.05 566.71 L
  4193. 132.41 566.71 L
  4194. @c
  4195. B
  4196.  
  4197. @rax %%Note: Object
  4198. 132.41 616.03 168.05 621.50 @E
  4199.  0 O 0 @g
  4200. 1.00 1.00 1.00 0.21 k
  4201. 0 J 0 j [] 0 d 0 R 0 @G
  4202. 1.00 1.00 1.00 0.21 K
  4203. 0 0.22 0.22 0.00 @w
  4204. 132.41 616.03 m
  4205. 132.41 621.50 L
  4206. 168.05 621.50 L
  4207. 168.05 616.03 L
  4208. 132.41 616.03 L
  4209. @c
  4210. B
  4211.  
  4212. @rax %%Note: Object
  4213. 132.41 657.14 168.05 662.62 @E
  4214.  0 O 0 @g
  4215. 1.00 1.00 1.00 0.21 k
  4216. 0 J 0 j [] 0 d 0 R 0 @G
  4217. 1.00 1.00 1.00 0.21 K
  4218. 0 0.22 0.22 0.00 @w
  4219. 132.41 657.14 m
  4220. 132.41 662.62 L
  4221. 168.05 662.62 L
  4222. 168.05 657.14 L
  4223. 132.41 657.14 L
  4224. @c
  4225. B
  4226.  
  4227. @rax %%Note: Object
  4228. 132.41 648.94 168.05 654.41 @E
  4229.  0 O 0 @g
  4230. 1.00 1.00 1.00 0.21 k
  4231. 0 J 0 j [] 0 d 0 R 0 @G
  4232. 1.00 1.00 1.00 0.21 K
  4233. 0 0.22 0.22 0.00 @w
  4234. 132.41 648.94 m
  4235. 132.41 654.41 L
  4236. 168.05 654.41 L
  4237. 168.05 648.94 L
  4238. 132.41 648.94 L
  4239. @c
  4240. B
  4241.  
  4242. @rax %%Note: Object
  4243. 132.41 640.66 168.05 646.20 @E
  4244.  0 O 0 @g
  4245. 1.00 1.00 1.00 0.21 k
  4246. 0 J 0 j [] 0 d 0 R 0 @G
  4247. 1.00 1.00 1.00 0.21 K
  4248. 0 0.22 0.22 0.00 @w
  4249. 132.41 640.66 m
  4250. 132.41 646.20 L
  4251. 168.05 646.20 L
  4252. 168.05 640.66 L
  4253. 132.41 640.66 L
  4254. @c
  4255. B
  4256.  
  4257. @rax %%Note: Object
  4258. 132.41 610.49 187.27 618.77 @E
  4259. 0 J 0 j [] 0 d 0 R 0 @G
  4260. 1.00 1.00 1.00 0.21 K
  4261. 0 0.22 0.22 0.00 @w
  4262. 132.41 610.49 m
  4263. 132.41 618.77 L
  4264. 187.27 618.77 L
  4265. 187.27 610.49 L
  4266. 132.41 610.49 L
  4267. @c
  4268. S
  4269.  
  4270. @rax %%Note: Object
  4271. 132.41 659.88 187.27 668.09 @E
  4272. 0 J 0 j [] 0 d 0 R 0 @G
  4273. 1.00 1.00 1.00 0.21 K
  4274. 0 0.22 0.22 0.00 @w
  4275. 132.41 659.88 m
  4276. 132.41 668.09 L
  4277. 187.27 668.09 L
  4278. 187.27 659.88 L
  4279. 132.41 659.88 L
  4280. @c
  4281. S
  4282.  
  4283. @rax %%Note: Object
  4284. 132.41 651.67 187.27 659.88 @E
  4285. 0 J 0 j [] 0 d 0 R 0 @G
  4286. 1.00 1.00 1.00 0.21 K
  4287. 0 0.22 0.22 0.00 @w
  4288. 132.41 651.67 m
  4289. 132.41 659.88 L
  4290. 187.27 659.88 L
  4291. 187.27 651.67 L
  4292. 132.41 651.67 L
  4293. @c
  4294. S
  4295.  
  4296. @rax %%Note: Object
  4297. 132.41 643.46 187.27 651.67 @E
  4298. 0 J 0 j [] 0 d 0 R 0 @G
  4299. 1.00 1.00 1.00 0.21 K
  4300. 0 0.22 0.22 0.00 @w
  4301. 132.41 643.46 m
  4302. 132.41 651.67 L
  4303. 187.27 651.67 L
  4304. 187.27 643.46 L
  4305. 132.41 643.46 L
  4306. @c
  4307. S
  4308.  
  4309. @rax %%Note: Object
  4310. 132.41 618.77 187.27 626.98 @E
  4311. 0 J 0 j [] 0 d 0 R 0 @G
  4312. 1.00 1.00 1.00 0.21 K
  4313. 0 0.22 0.22 0.00 @w
  4314. 132.41 618.77 m
  4315. 132.41 626.98 L
  4316. 187.27 626.98 L
  4317. 187.27 618.77 L
  4318. 132.41 618.77 L
  4319. @c
  4320. S
  4321.  
  4322. @rax %%Note: Object
  4323. 132.41 635.18 187.27 643.46 @E
  4324. 0 J 0 j [] 0 d 0 R 0 @G
  4325. 1.00 1.00 1.00 0.21 K
  4326. 0 0.22 0.22 0.00 @w
  4327. 132.41 635.18 m
  4328. 132.41 643.46 L
  4329. 187.27 643.46 L
  4330. 187.27 635.18 L
  4331. 132.41 635.18 L
  4332. @c
  4333. S
  4334.  
  4335. @rax %%Note: Object
  4336. 132.41 626.98 187.27 635.18 @E
  4337. 0 J 0 j [] 0 d 0 R 0 @G
  4338. 1.00 1.00 1.00 0.21 K
  4339. 0 0.22 0.22 0.00 @w
  4340. 132.41 626.98 m
  4341. 132.41 635.18 L
  4342. 187.27 635.18 L
  4343. 187.27 626.98 L
  4344. 132.41 626.98 L
  4345. @c
  4346. S
  4347.  
  4348. @rax %%Note: Object
  4349. 132.41 624.24 168.05 629.71 @E
  4350.  0 O 0 @g
  4351. 1.00 1.00 1.00 0.21 k
  4352. 0 J 0 j [] 0 d 0 R 0 @G
  4353. 1.00 1.00 1.00 0.21 K
  4354. 0 0.22 0.22 0.00 @w
  4355. 132.41 624.24 m
  4356. 132.41 629.71 L
  4357. 168.05 629.71 L
  4358. 168.05 624.24 L
  4359. 132.41 624.24 L
  4360. @c
  4361. B
  4362.  
  4363. @rax %%Note: Object
  4364. 132.41 385.63 168.05 391.10 @E
  4365.  0 O 0 @g
  4366. 1.00 1.00 1.00 0.21 k
  4367. 0 J 0 j [] 0 d 0 R 0 @G
  4368. 1.00 1.00 1.00 0.21 K
  4369. 0 0.22 0.22 0.00 @w
  4370. 132.41 385.63 m
  4371. 132.41 391.10 L
  4372. 168.05 391.10 L
  4373. 168.05 385.63 L
  4374. 132.41 385.63 L
  4375. @c
  4376. B
  4377.  
  4378. @rax %%Note: Object
  4379. 132.41 426.74 168.05 432.22 @E
  4380.  0 O 0 @g
  4381. 1.00 1.00 1.00 0.21 k
  4382. 0 J 0 j [] 0 d 0 R 0 @G
  4383. 1.00 1.00 1.00 0.21 K
  4384. 0 0.22 0.22 0.00 @w
  4385. 132.41 426.74 m
  4386. 132.41 432.22 L
  4387. 168.05 432.22 L
  4388. 168.05 426.74 L
  4389. 132.41 426.74 L
  4390. @c
  4391. B
  4392.  
  4393. @rax %%Note: Object
  4394. 132.41 418.54 168.05 424.01 @E
  4395.  0 O 0 @g
  4396. 1.00 1.00 1.00 0.21 k
  4397. 0 J 0 j [] 0 d 0 R 0 @G
  4398. 1.00 1.00 1.00 0.21 K
  4399. 0 0.22 0.22 0.00 @w
  4400. 132.41 418.54 m
  4401. 132.41 424.01 L
  4402. 168.05 424.01 L
  4403. 168.05 418.54 L
  4404. 132.41 418.54 L
  4405. @c
  4406. B
  4407.  
  4408. @rax %%Note: Object
  4409. 132.41 410.26 168.05 415.80 @E
  4410.  0 O 0 @g
  4411. 1.00 1.00 1.00 0.21 k
  4412. 0 J 0 j [] 0 d 0 R 0 @G
  4413. 1.00 1.00 1.00 0.21 K
  4414. 0 0.22 0.22 0.00 @w
  4415. 132.41 410.26 m
  4416. 132.41 415.80 L
  4417. 168.05 415.80 L
  4418. 168.05 410.26 L
  4419. 132.41 410.26 L
  4420. @c
  4421. B
  4422.  
  4423. @rax %%Note: Object
  4424. 132.41 380.09 187.27 388.37 @E
  4425. 0 J 0 j [] 0 d 0 R 0 @G
  4426. 1.00 1.00 1.00 0.21 K
  4427. 0 0.22 0.22 0.00 @w
  4428. 132.41 380.09 m
  4429. 132.41 388.37 L
  4430. 187.27 388.37 L
  4431. 187.27 380.09 L
  4432. 132.41 380.09 L
  4433. @c
  4434. S
  4435.  
  4436. @rax %%Note: Object
  4437. 132.41 429.48 187.27 437.69 @E
  4438. 0 J 0 j [] 0 d 0 R 0 @G
  4439. 1.00 1.00 1.00 0.21 K
  4440. 0 0.22 0.22 0.00 @w
  4441. 132.41 429.48 m
  4442. 132.41 437.69 L
  4443. 187.27 437.69 L
  4444. 187.27 429.48 L
  4445. 132.41 429.48 L
  4446. @c
  4447. S
  4448.  
  4449. @rax %%Note: Object
  4450. 132.41 421.27 187.27 429.48 @E
  4451. 0 J 0 j [] 0 d 0 R 0 @G
  4452. 1.00 1.00 1.00 0.21 K
  4453. 0 0.22 0.22 0.00 @w
  4454. 132.41 421.27 m
  4455. 132.41 429.48 L
  4456. 187.27 429.48 L
  4457. 187.27 421.27 L
  4458. 132.41 421.27 L
  4459. @c
  4460. S
  4461.  
  4462. @rax %%Note: Object
  4463. 132.41 413.06 187.27 421.27 @E
  4464. 0 J 0 j [] 0 d 0 R 0 @G
  4465. 1.00 1.00 1.00 0.21 K
  4466. 0 0.22 0.22 0.00 @w
  4467. 132.41 413.06 m
  4468. 132.41 421.27 L
  4469. 187.27 421.27 L
  4470. 187.27 413.06 L
  4471. 132.41 413.06 L
  4472. @c
  4473. S
  4474.  
  4475. @rax %%Note: Object
  4476. 132.41 388.37 187.27 396.58 @E
  4477. 0 J 0 j [] 0 d 0 R 0 @G
  4478. 1.00 1.00 1.00 0.21 K
  4479. 0 0.22 0.22 0.00 @w
  4480. 132.41 388.37 m
  4481. 132.41 396.58 L
  4482. 187.27 396.58 L
  4483. 187.27 388.37 L
  4484. 132.41 388.37 L
  4485. @c
  4486. S
  4487.  
  4488. @rax %%Note: Object
  4489. 132.41 404.78 187.27 413.06 @E
  4490. 0 J 0 j [] 0 d 0 R 0 @G
  4491. 1.00 1.00 1.00 0.21 K
  4492. 0 0.22 0.22 0.00 @w
  4493. 132.41 404.78 m
  4494. 132.41 413.06 L
  4495. 187.27 413.06 L
  4496. 187.27 404.78 L
  4497. 132.41 404.78 L
  4498. @c
  4499. S
  4500.  
  4501. @rax %%Note: Object
  4502. 132.41 396.58 187.27 404.78 @E
  4503. 0 J 0 j [] 0 d 0 R 0 @G
  4504. 1.00 1.00 1.00 0.21 K
  4505. 0 0.22 0.22 0.00 @w
  4506. 132.41 396.58 m
  4507. 132.41 404.78 L
  4508. 187.27 404.78 L
  4509. 187.27 396.58 L
  4510. 132.41 396.58 L
  4511. @c
  4512. S
  4513.  
  4514. @rax %%Note: Object
  4515. 132.41 393.84 168.05 399.31 @E
  4516.  0 O 0 @g
  4517. 1.00 1.00 1.00 0.21 k
  4518. 0 J 0 j [] 0 d 0 R 0 @G
  4519. 1.00 1.00 1.00 0.21 K
  4520. 0 0.22 0.22 0.00 @w
  4521. 132.41 393.84 m
  4522. 132.41 399.31 L
  4523. 168.05 399.31 L
  4524. 168.05 393.84 L
  4525. 132.41 393.84 L
  4526. @c
  4527. B
  4528.  
  4529. @rax %%Note: Object
  4530. 132.41 212.90 168.05 218.38 @E
  4531.  0 O 0 @g
  4532. 1.00 1.00 1.00 0.21 k
  4533. 0 J 0 j [] 0 d 0 R 0 @G
  4534. 1.00 1.00 1.00 0.21 K
  4535. 0 0.22 0.22 0.00 @w
  4536. 132.41 212.90 m
  4537. 132.41 218.38 L
  4538. 168.05 218.38 L
  4539. 168.05 212.90 L
  4540. 132.41 212.90 L
  4541. @c
  4542. B
  4543.  
  4544. @rax %%Note: Object
  4545. 132.41 254.02 168.05 259.49 @E
  4546.  0 O 0 @g
  4547. 1.00 1.00 1.00 0.21 k
  4548. 0 J 0 j [] 0 d 0 R 0 @G
  4549. 1.00 1.00 1.00 0.21 K
  4550. 0 0.22 0.22 0.00 @w
  4551. 132.41 254.02 m
  4552. 132.41 259.49 L
  4553. 168.05 259.49 L
  4554. 168.05 254.02 L
  4555. 132.41 254.02 L
  4556. @c
  4557. B
  4558.  
  4559. @rax %%Note: Object
  4560. 132.41 245.81 168.05 251.28 @E
  4561.  0 O 0 @g
  4562. 1.00 1.00 1.00 0.21 k
  4563. 0 J 0 j [] 0 d 0 R 0 @G
  4564. 1.00 1.00 1.00 0.21 K
  4565. 0 0.22 0.22 0.00 @w
  4566. 132.41 245.81 m
  4567. 132.41 251.28 L
  4568. 168.05 251.28 L
  4569. 168.05 245.81 L
  4570. 132.41 245.81 L
  4571. @c
  4572. B
  4573.  
  4574. @rax %%Note: Object
  4575. 132.41 237.53 168.05 243.07 @E
  4576.  0 O 0 @g
  4577. 1.00 1.00 1.00 0.21 k
  4578. 0 J 0 j [] 0 d 0 R 0 @G
  4579. 1.00 1.00 1.00 0.21 K
  4580. 0 0.22 0.22 0.00 @w
  4581. 132.41 237.53 m
  4582. 132.41 243.07 L
  4583. 168.05 243.07 L
  4584. 168.05 237.53 L
  4585. 132.41 237.53 L
  4586. @c
  4587. B
  4588.  
  4589. @rax %%Note: Object
  4590. 132.41 207.36 187.27 215.64 @E
  4591. 0 J 0 j [] 0 d 0 R 0 @G
  4592. 1.00 1.00 1.00 0.21 K
  4593. 0 0.22 0.22 0.00 @w
  4594. 132.41 207.36 m
  4595. 132.41 215.64 L
  4596. 187.27 215.64 L
  4597. 187.27 207.36 L
  4598. 132.41 207.36 L
  4599. @c
  4600. S
  4601.  
  4602. @rax %%Note: Object
  4603. 132.41 256.75 187.27 264.96 @E
  4604. 0 J 0 j [] 0 d 0 R 0 @G
  4605. 1.00 1.00 1.00 0.21 K
  4606. 0 0.22 0.22 0.00 @w
  4607. 132.41 256.75 m
  4608. 132.41 264.96 L
  4609. 187.27 264.96 L
  4610. 187.27 256.75 L
  4611. 132.41 256.75 L
  4612. @c
  4613. S
  4614.  
  4615. @rax %%Note: Object
  4616. 132.41 248.54 187.27 256.75 @E
  4617. 0 J 0 j [] 0 d 0 R 0 @G
  4618. 1.00 1.00 1.00 0.21 K
  4619. 0 0.22 0.22 0.00 @w
  4620. 132.41 248.54 m
  4621. 132.41 256.75 L
  4622. 187.27 256.75 L
  4623. 187.27 248.54 L
  4624. 132.41 248.54 L
  4625. @c
  4626. S
  4627.  
  4628. @rax %%Note: Object
  4629. 132.41 240.34 187.27 248.54 @E
  4630. 0 J 0 j [] 0 d 0 R 0 @G
  4631. 1.00 1.00 1.00 0.21 K
  4632. 0 0.22 0.22 0.00 @w
  4633. 132.41 240.34 m
  4634. 132.41 248.54 L
  4635. 187.27 248.54 L
  4636. 187.27 240.34 L
  4637. 132.41 240.34 L
  4638. @c
  4639. S
  4640.  
  4641. @rax %%Note: Object
  4642. 132.41 215.64 187.27 223.85 @E
  4643. 0 J 0 j [] 0 d 0 R 0 @G
  4644. 1.00 1.00 1.00 0.21 K
  4645. 0 0.22 0.22 0.00 @w
  4646. 132.41 215.64 m
  4647. 132.41 223.85 L
  4648. 187.27 223.85 L
  4649. 187.27 215.64 L
  4650. 132.41 215.64 L
  4651. @c
  4652. S
  4653.  
  4654. @rax %%Note: Object
  4655. 132.41 232.06 187.27 240.34 @E
  4656. 0 J 0 j [] 0 d 0 R 0 @G
  4657. 1.00 1.00 1.00 0.21 K
  4658. 0 0.22 0.22 0.00 @w
  4659. 132.41 232.06 m
  4660. 132.41 240.34 L
  4661. 187.27 240.34 L
  4662. 187.27 232.06 L
  4663. 132.41 232.06 L
  4664. @c
  4665. S
  4666.  
  4667. @rax %%Note: Object
  4668. 132.41 223.85 187.27 232.06 @E
  4669. 0 J 0 j [] 0 d 0 R 0 @G
  4670. 1.00 1.00 1.00 0.21 K
  4671. 0 0.22 0.22 0.00 @w
  4672. 132.41 223.85 m
  4673. 132.41 232.06 L
  4674. 187.27 232.06 L
  4675. 187.27 223.85 L
  4676. 132.41 223.85 L
  4677. @c
  4678. S
  4679.  
  4680. @rax %%Note: Object
  4681. 132.41 221.11 168.05 226.58 @E
  4682.  0 O 0 @g
  4683. 1.00 1.00 1.00 0.21 k
  4684. 0 J 0 j [] 0 d 0 R 0 @G
  4685. 1.00 1.00 1.00 0.21 K
  4686. 0 0.22 0.22 0.00 @w
  4687. 132.41 221.11 m
  4688. 132.41 226.58 L
  4689. 168.05 226.58 L
  4690. 168.05 221.11 L
  4691. 132.41 221.11 L
  4692. @c
  4693. B
  4694.  
  4695. @rax %%Note: Object
  4696. 132.41 328.03 168.05 333.50 @E
  4697.  0 O 0 @g
  4698. 1.00 1.00 1.00 0.21 k
  4699. 0 J 0 j [] 0 d 0 R 0 @G
  4700. 1.00 1.00 1.00 0.21 K
  4701. 0 0.22 0.22 0.00 @w
  4702. 132.41 328.03 m
  4703. 132.41 333.50 L
  4704. 168.05 333.50 L
  4705. 168.05 328.03 L
  4706. 132.41 328.03 L
  4707. @c
  4708. B
  4709.  
  4710. @rax %%Note: Object
  4711. 132.41 369.14 168.05 374.62 @E
  4712.  0 O 0 @g
  4713. 1.00 1.00 1.00 0.21 k
  4714. 0 J 0 j [] 0 d 0 R 0 @G
  4715. 1.00 1.00 1.00 0.21 K
  4716. 0 0.22 0.22 0.00 @w
  4717. 132.41 369.14 m
  4718. 132.41 374.62 L
  4719. 168.05 374.62 L
  4720. 168.05 369.14 L
  4721. 132.41 369.14 L
  4722. @c
  4723. B
  4724.  
  4725. @rax %%Note: Object
  4726. 132.41 360.94 168.05 366.41 @E
  4727.  0 O 0 @g
  4728. 1.00 1.00 1.00 0.21 k
  4729. 0 J 0 j [] 0 d 0 R 0 @G
  4730. 1.00 1.00 1.00 0.21 K
  4731. 0 0.22 0.22 0.00 @w
  4732. 132.41 360.94 m
  4733. 132.41 366.41 L
  4734. 168.05 366.41 L
  4735. 168.05 360.94 L
  4736. 132.41 360.94 L
  4737. @c
  4738. B
  4739.  
  4740. @rax %%Note: Object
  4741. 132.41 352.66 168.05 358.20 @E
  4742.  0 O 0 @g
  4743. 1.00 1.00 1.00 0.21 k
  4744. 0 J 0 j [] 0 d 0 R 0 @G
  4745. 1.00 1.00 1.00 0.21 K
  4746. 0 0.22 0.22 0.00 @w
  4747. 132.41 352.66 m
  4748. 132.41 358.20 L
  4749. 168.05 358.20 L
  4750. 168.05 352.66 L
  4751. 132.41 352.66 L
  4752. @c
  4753. B
  4754.  
  4755. @rax %%Note: Object
  4756. 132.41 322.49 187.27 330.77 @E
  4757. 0 J 0 j [] 0 d 0 R 0 @G
  4758. 1.00 1.00 1.00 0.21 K
  4759. 0 0.22 0.22 0.00 @w
  4760. 132.41 322.49 m
  4761. 132.41 330.77 L
  4762. 187.27 330.77 L
  4763. 187.27 322.49 L
  4764. 132.41 322.49 L
  4765. @c
  4766. S
  4767.  
  4768. @rax %%Note: Object
  4769. 132.41 371.88 187.27 380.09 @E
  4770. 0 J 0 j [] 0 d 0 R 0 @G
  4771. 1.00 1.00 1.00 0.21 K
  4772. 0 0.22 0.22 0.00 @w
  4773. 132.41 371.88 m
  4774. 132.41 380.09 L
  4775. 187.27 380.09 L
  4776. 187.27 371.88 L
  4777. 132.41 371.88 L
  4778. @c
  4779. S
  4780.  
  4781. @rax %%Note: Object
  4782. 132.41 363.67 187.27 371.88 @E
  4783. 0 J 0 j [] 0 d 0 R 0 @G
  4784. 1.00 1.00 1.00 0.21 K
  4785. 0 0.22 0.22 0.00 @w
  4786. 132.41 363.67 m
  4787. 132.41 371.88 L
  4788. 187.27 371.88 L
  4789. 187.27 363.67 L
  4790. 132.41 363.67 L
  4791. @c
  4792. S
  4793.  
  4794. @rax %%Note: Object
  4795. 132.41 355.46 187.27 363.67 @E
  4796. 0 J 0 j [] 0 d 0 R 0 @G
  4797. 1.00 1.00 1.00 0.21 K
  4798. 0 0.22 0.22 0.00 @w
  4799. 132.41 355.46 m
  4800. 132.41 363.67 L
  4801. 187.27 363.67 L
  4802. 187.27 355.46 L
  4803. 132.41 355.46 L
  4804. @c
  4805. S
  4806.  
  4807. @rax %%Note: Object
  4808. 132.41 330.77 187.27 338.98 @E
  4809. 0 J 0 j [] 0 d 0 R 0 @G
  4810. 1.00 1.00 1.00 0.21 K
  4811. 0 0.22 0.22 0.00 @w
  4812. 132.41 330.77 m
  4813. 132.41 338.98 L
  4814. 187.27 338.98 L
  4815. 187.27 330.77 L
  4816. 132.41 330.77 L
  4817. @c
  4818. S
  4819.  
  4820. @rax %%Note: Object
  4821. 132.41 347.18 187.27 355.46 @E
  4822. 0 J 0 j [] 0 d 0 R 0 @G
  4823. 1.00 1.00 1.00 0.21 K
  4824. 0 0.22 0.22 0.00 @w
  4825. 132.41 347.18 m
  4826. 132.41 355.46 L
  4827. 187.27 355.46 L
  4828. 187.27 347.18 L
  4829. 132.41 347.18 L
  4830. @c
  4831. S
  4832.  
  4833. @rax %%Note: Object
  4834. 132.41 338.98 187.27 347.18 @E
  4835. 0 J 0 j [] 0 d 0 R 0 @G
  4836. 1.00 1.00 1.00 0.21 K
  4837. 0 0.22 0.22 0.00 @w
  4838. 132.41 338.98 m
  4839. 132.41 347.18 L
  4840. 187.27 347.18 L
  4841. 187.27 338.98 L
  4842. 132.41 338.98 L
  4843. @c
  4844. S
  4845.  
  4846. @rax %%Note: Object
  4847. 132.41 336.24 168.05 341.71 @E
  4848.  0 O 0 @g
  4849. 1.00 1.00 1.00 0.21 k
  4850. 0 J 0 j [] 0 d 0 R 0 @G
  4851. 1.00 1.00 1.00 0.21 K
  4852. 0 0.22 0.22 0.00 @w
  4853. 132.41 336.24 m
  4854. 132.41 341.71 L
  4855. 168.05 341.71 L
  4856. 168.05 336.24 L
  4857. 132.41 336.24 L
  4858. @c
  4859. B
  4860.  
  4861. @rax %%Note: Object
  4862. 132.34 443.23 167.98 448.70 @E
  4863.  0 O 0 @g
  4864. 1.00 1.00 1.00 0.21 k
  4865. 0 J 0 j [] 0 d 0 R 0 @G
  4866. 1.00 1.00 1.00 0.21 K
  4867. 0 0.22 0.22 0.00 @w
  4868. 132.34 443.23 m
  4869. 132.34 448.70 L
  4870. 167.98 448.70 L
  4871. 167.98 443.23 L
  4872. 132.34 443.23 L
  4873. @c
  4874. B
  4875.  
  4876. @rax %%Note: Object
  4877. 132.34 484.34 167.98 489.82 @E
  4878.  0 O 0 @g
  4879. 1.00 1.00 1.00 0.21 k
  4880. 0 J 0 j [] 0 d 0 R 0 @G
  4881. 1.00 1.00 1.00 0.21 K
  4882. 0 0.22 0.22 0.00 @w
  4883. 132.34 484.34 m
  4884. 132.34 489.82 L
  4885. 167.98 489.82 L
  4886. 167.98 484.34 L
  4887. 132.34 484.34 L
  4888. @c
  4889. B
  4890.  
  4891. @rax %%Note: Object
  4892. 132.34 476.14 167.98 481.61 @E
  4893.  0 O 0 @g
  4894. 1.00 1.00 1.00 0.21 k
  4895. 0 J 0 j [] 0 d 0 R 0 @G
  4896. 1.00 1.00 1.00 0.21 K
  4897. 0 0.22 0.22 0.00 @w
  4898. 132.34 476.14 m
  4899. 132.34 481.61 L
  4900. 167.98 481.61 L
  4901. 167.98 476.14 L
  4902. 132.34 476.14 L
  4903. @c
  4904. B
  4905.  
  4906. @rax %%Note: Object
  4907. 132.34 467.86 167.98 473.40 @E
  4908.  0 O 0 @g
  4909. 1.00 1.00 1.00 0.21 k
  4910. 0 J 0 j [] 0 d 0 R 0 @G
  4911. 1.00 1.00 1.00 0.21 K
  4912. 0 0.22 0.22 0.00 @w
  4913. 132.34 467.86 m
  4914. 132.34 473.40 L
  4915. 167.98 473.40 L
  4916. 167.98 467.86 L
  4917. 132.34 467.86 L
  4918. @c
  4919. B
  4920.  
  4921. @rax %%Note: Object
  4922. 132.34 437.69 187.20 445.97 @E
  4923. 0 J 0 j [] 0 d 0 R 0 @G
  4924. 1.00 1.00 1.00 0.21 K
  4925. 0 0.22 0.22 0.00 @w
  4926. 132.34 437.69 m
  4927. 132.34 445.97 L
  4928. 187.20 445.97 L
  4929. 187.20 437.69 L
  4930. 132.34 437.69 L
  4931. @c
  4932. S
  4933.  
  4934. @rax %%Note: Object
  4935. 132.34 487.08 187.20 495.29 @E
  4936. 0 J 0 j [] 0 d 0 R 0 @G
  4937. 1.00 1.00 1.00 0.21 K
  4938. 0 0.22 0.22 0.00 @w
  4939. 132.34 487.08 m
  4940. 132.34 495.29 L
  4941. 187.20 495.29 L
  4942. 187.20 487.08 L
  4943. 132.34 487.08 L
  4944. @c
  4945. S
  4946.  
  4947. @rax %%Note: Object
  4948. 132.34 478.87 187.20 487.08 @E
  4949. 0 J 0 j [] 0 d 0 R 0 @G
  4950. 1.00 1.00 1.00 0.21 K
  4951. 0 0.22 0.22 0.00 @w
  4952. 132.34 478.87 m
  4953. 132.34 487.08 L
  4954. 187.20 487.08 L
  4955. 187.20 478.87 L
  4956. 132.34 478.87 L
  4957. @c
  4958. S
  4959.  
  4960. @rax %%Note: Object
  4961. 132.34 470.66 187.20 478.87 @E
  4962. 0 J 0 j [] 0 d 0 R 0 @G
  4963. 1.00 1.00 1.00 0.21 K
  4964. 0 0.22 0.22 0.00 @w
  4965. 132.34 470.66 m
  4966. 132.34 478.87 L
  4967. 187.20 478.87 L
  4968. 187.20 470.66 L
  4969. 132.34 470.66 L
  4970. @c
  4971. S
  4972.  
  4973. @rax %%Note: Object
  4974. 132.34 445.97 187.20 454.18 @E
  4975. 0 J 0 j [] 0 d 0 R 0 @G
  4976. 1.00 1.00 1.00 0.21 K
  4977. 0 0.22 0.22 0.00 @w
  4978. 132.34 445.97 m
  4979. 132.34 454.18 L
  4980. 187.20 454.18 L
  4981. 187.20 445.97 L
  4982. 132.34 445.97 L
  4983. @c
  4984. S
  4985.  
  4986. @rax %%Note: Object
  4987. 132.34 462.38 187.20 470.66 @E
  4988. 0 J 0 j [] 0 d 0 R 0 @G
  4989. 1.00 1.00 1.00 0.21 K
  4990. 0 0.22 0.22 0.00 @w
  4991. 132.34 462.38 m
  4992. 132.34 470.66 L
  4993. 187.20 470.66 L
  4994. 187.20 462.38 L
  4995. 132.34 462.38 L
  4996. @c
  4997. S
  4998.  
  4999. @rax %%Note: Object
  5000. 132.34 454.18 187.20 462.38 @E
  5001. 0 J 0 j [] 0 d 0 R 0 @G
  5002. 1.00 1.00 1.00 0.21 K
  5003. 0 0.22 0.22 0.00 @w
  5004. 132.34 454.18 m
  5005. 132.34 462.38 L
  5006. 187.20 462.38 L
  5007. 187.20 454.18 L
  5008. 132.34 454.18 L
  5009. @c
  5010. S
  5011.  
  5012. @rax %%Note: Object
  5013. 132.34 451.44 167.98 456.91 @E
  5014.  0 O 0 @g
  5015. 1.00 1.00 1.00 0.21 k
  5016. 0 J 0 j [] 0 d 0 R 0 @G
  5017. 1.00 1.00 1.00 0.21 K
  5018. 0 0.22 0.22 0.00 @w
  5019. 132.34 451.44 m
  5020. 132.34 456.91 L
  5021. 167.98 456.91 L
  5022. 167.98 451.44 L
  5023. 132.34 451.44 L
  5024. @c
  5025. B
  5026.  
  5027. @rax 174.17 95.54 177.19 99.94 @E
  5028. [0.07199 0.00000 0.00000 0.07199 174.16800 95.61600] @tm
  5029.  0 O 0 @g
  5030. 1.00 1.00 1.00 0.21 k
  5031. e
  5032. /_R1-Helvetica 83.00 z
  5033. 0 0 (0) @t
  5034. T
  5035. @rax 174.17 153.22 180.50 157.54 @E
  5036. [0.07199 0.00000 0.00000 0.07199 174.16800 153.21599] @tm
  5037.  0 O 0 @g
  5038. 1.00 1.00 1.00 0.21 k
  5039. e
  5040. /_R1-Helvetica 83.00 z
  5041. 0 0 (12) @t
  5042. T
  5043. @rax 174.17 210.82 180.50 215.14 @E
  5044. [0.07199 0.00000 0.00000 0.07199 174.16800 210.81599] @tm
  5045.  0 O 0 @g
  5046. 1.00 1.00 1.00 0.21 k
  5047. e
  5048. /_R1-Helvetica 83.00 z
  5049. 0 0 (24) @t
  5050. T
  5051. @rax 174.17 268.34 180.50 272.74 @E
  5052. [0.07199 0.00000 0.00000 0.07199 174.16800 268.41599] @tm
  5053.  0 O 0 @g
  5054. 1.00 1.00 1.00 0.21 k
  5055. e
  5056. /_R1-Helvetica 83.00 z
  5057. 0 0 (36) @t
  5058. T
  5059. @rax 174.17 325.94 180.50 330.34 @E
  5060. [0.07199 0.00000 0.00000 0.07199 174.16800 326.01599] @tm
  5061.  0 O 0 @g
  5062. 1.00 1.00 1.00 0.21 k
  5063. e
  5064. /_R1-Helvetica 83.00 z
  5065. 0 0 (48) @t
  5066. T
  5067. @rax 174.17 383.54 180.50 387.94 @E
  5068. [0.07199 0.00000 0.00000 0.07199 174.16800 383.61600] @tm
  5069.  0 O 0 @g
  5070. 1.00 1.00 1.00 0.21 k
  5071. e
  5072. /_R1-Helvetica 83.00 z
  5073. 0 0 (60) @t
  5074. T
  5075. @rax 174.17 441.22 180.50 445.54 @E
  5076. [0.07199 0.00000 0.00000 0.07199 174.16800 441.21597] @tm
  5077.  0 O 0 @g
  5078. 1.00 1.00 1.00 0.21 k
  5079. e
  5080. /_R1-Helvetica 83.00 z
  5081. 0 0 (72) @t
  5082. T
  5083. @rax 174.17 498.74 180.50 503.14 @E
  5084. [0.07199 0.00000 0.00000 0.07199 174.16800 498.81598] @tm
  5085.  0 O 0 @g
  5086. 1.00 1.00 1.00 0.21 k
  5087. e
  5088. /_R1-Helvetica 83.00 z
  5089. 0 0 (84) @t
  5090. T
  5091. @rax 174.17 556.34 180.50 560.74 @E
  5092. [0.07199 0.00000 0.00000 0.07199 174.16800 556.41595] @tm
  5093.  0 O 0 @g
  5094. 1.00 1.00 1.00 0.21 k
  5095. e
  5096. /_R1-Helvetica 83.00 z
  5097. 0 0 (96) @t
  5098. T
  5099. @rax 174.17 613.94 183.82 618.34 @E
  5100. [0.07199 0.00000 0.00000 0.07199 174.16800 614.01599] @tm
  5101.  0 O 0 @g
  5102. 1.00 1.00 1.00 0.21 k
  5103. e
  5104. /_R1-Helvetica 83.00 z
  5105. 0 0 (108) @t
  5106. T
  5107. @rax 174.17 671.54 183.82 675.94 @E
  5108. [0.07199 0.00000 0.00000 0.07199 174.16800 671.61597] @tm
  5109.  0 O 0 @g
  5110. 1.00 1.00 1.00 0.21 k
  5111. e
  5112. /_R1-Helvetica 83.00 z
  5113. 0 0 (120) @t
  5114. T
  5115. @rax 174.17 695.52 183.82 699.91 @E
  5116. [0.07199 0.00000 0.00000 0.07199 174.16800 695.59198] @tm
  5117.  0 O 0 @g
  5118. 1.00 1.00 1.00 0.21 k
  5119. e
  5120. /_R1-Helvetica 83.00 z
  5121. 0 0 (125) @t
  5122. T
  5123. @rax 174.17 637.92 183.38 642.31 @E
  5124. [0.07199 0.00000 0.00000 0.07199 174.16800 637.99194] @tm
  5125.  0 O 0 @g
  5126. 1.00 1.00 1.00 0.21 k
  5127. e
  5128. /_R1-Helvetica 83.00 z
  5129. 0 0 (113) @t
  5130. T
  5131. @rax 174.17 580.32 182.95 584.71 @E
  5132. [0.07199 0.00000 0.00000 0.07199 174.16800 580.39197] @tm
  5133.  0 O 0 @g
  5134. 1.00 1.00 1.00 0.21 k
  5135. e
  5136. /_R1-Helvetica 83.00 z
  5137. 0 0 (101) @t
  5138. T
  5139. @rax 174.17 522.72 180.50 527.11 @E
  5140. [0.07199 0.00000 0.00000 0.07199 174.16800 522.79199] @tm
  5141.  0 O 0 @g
  5142. 1.00 1.00 1.00 0.21 k
  5143. e
  5144. /_R1-Helvetica 83.00 z
  5145. 0 0 (89) @t
  5146. T
  5147. @rax 174.17 465.19 180.50 469.44 @E
  5148. [0.07199 0.00000 0.00000 0.07199 174.16800 465.19199] @tm
  5149.  0 O 0 @g
  5150. 1.00 1.00 1.00 0.21 k
  5151. e
  5152. /_R1-Helvetica 83.00 z
  5153. 0 0 (77) @t
  5154. T
  5155. @rax 174.17 407.52 180.50 411.91 @E
  5156. [0.07199 0.00000 0.00000 0.07199 174.16800 407.59198] @tm
  5157.  0 O 0 @g
  5158. 1.00 1.00 1.00 0.21 k
  5159. e
  5160. /_R1-Helvetica 83.00 z
  5161. 0 0 (65) @t
  5162. T
  5163. @rax 174.17 349.92 180.50 354.31 @E
  5164. [0.07199 0.00000 0.00000 0.07199 174.16800 349.99197] @tm
  5165.  0 O 0 @g
  5166. 1.00 1.00 1.00 0.21 k
  5167. e
  5168. /_R1-Helvetica 83.00 z
  5169. 0 0 (53) @t
  5170. T
  5171. @rax 174.17 292.39 179.64 296.71 @E
  5172. [0.07199 0.00000 0.00000 0.07199 174.16800 292.39200] @tm
  5173.  0 O 0 @g
  5174. 1.00 1.00 1.00 0.21 k
  5175. e
  5176. /_R1-Helvetica 83.00 z
  5177. 0 0 (41) @t
  5178. T
  5179. @rax 174.17 234.72 180.50 239.11 @E
  5180. [0.07199 0.00000 0.00000 0.07199 174.16800 234.79199] @tm
  5181.  0 O 0 @g
  5182. 1.00 1.00 1.00 0.21 k
  5183. e
  5184. /_R1-Helvetica 83.00 z
  5185. 0 0 (29) @t
  5186. T
  5187. @rax 174.17 177.19 180.50 181.51 @E
  5188. [0.07199 0.00000 0.00000 0.07199 174.16800 177.19199] @tm
  5189.  0 O 0 @g
  5190. 1.00 1.00 1.00 0.21 k
  5191. e
  5192. /_R1-Helvetica 83.00 z
  5193. 0 0 (17) @t
  5194. T
  5195. @rax 174.17 119.52 177.19 123.84 @E
  5196. [0.07199 0.00000 0.00000 0.07199 174.16800 119.59200] @tm
  5197.  0 O 0 @g
  5198. 1.00 1.00 1.00 0.21 k
  5199. e
  5200. /_R1-Helvetica 83.00 z
  5201. 0 0 (5) @t
  5202. T
  5203. @rax 194.40 745.06 392.04 755.21 @E
  5204. [0.07199 0.00000 0.00000 0.07199 194.39999 745.19995] @tm
  5205.  0 O 0 @g
  5206. 1.00 1.00 1.00 0.21 k
  5207. e
  5208. /_R1-Helvetica 194.00 z
  5209. 0 0 (MIDI File Format Note Numbers) @t
  5210. T
  5211. @rax %%Note: Object
  5212. 288.00 691.27 301.03 705.67 @E
  5213.  0 O 0 @g
  5214. 1.00 1.00 1.00 0.21 k
  5215. 0 J 0 j [] 0 d 0 R 0 @G
  5216. 1.00 1.00 1.00 0.21 K
  5217. 0 0.22 0.22 0.00 @w
  5218. 295.78 691.27 m
  5219. 291.67 691.27 288.29 696.38 288.14 700.56 C
  5220. 288.00 704.30 289.66 705.67 293.40 705.67 C
  5221. 297.43 705.60 301.03 700.34 301.03 696.31 C
  5222. 301.03 692.78 299.74 691.27 295.78 691.27 C
  5223. @c
  5224. 293.33 696.10 m
  5225. 294.34 694.58 296.57 692.64 298.01 692.71 C
  5226. 300.82 693.00 297.36 698.69 296.35 699.98 c
  5227. 294.55 702.36 292.54 704.30 290.95 704.09 C
  5228. 288.14 703.37 292.32 697.46 293.33 696.10 c
  5229. @c
  5230. B
  5231.  
  5232. @rax %%Note: Object
  5233. 302.40 655.27 315.43 669.67 @E
  5234.  0 O 0 @g
  5235. 1.00 1.00 1.00 0.21 k
  5236. 0 J 0 j [] 0 d 0 R 0 @G
  5237. 1.00 1.00 1.00 0.21 K
  5238. 0 0.22 0.22 0.00 @w
  5239. 310.18 655.27 m
  5240. 306.07 655.27 302.69 660.38 302.54 664.56 C
  5241. 302.40 668.30 304.06 669.67 307.80 669.67 C
  5242. 311.83 669.60 315.43 664.34 315.43 660.31 C
  5243. 315.43 656.78 314.14 655.27 310.18 655.27 C
  5244. @c
  5245. 307.73 660.10 m
  5246. 308.74 658.58 310.97 656.64 312.41 656.71 C
  5247. 315.22 657.00 311.76 662.69 310.75 663.98 c
  5248. 308.95 666.36 306.94 668.30 305.35 668.09 C
  5249. 302.54 667.37 306.72 661.46 307.73 660.10 c
  5250. @c
  5251. B
  5252.  
  5253. @rax %%Note: Object
  5254. 318.24 619.27 331.27 633.67 @E
  5255.  0 O 0 @g
  5256. 1.00 1.00 1.00 0.21 k
  5257. 0 J 0 j [] 0 d 0 R 0 @G
  5258. 1.00 1.00 1.00 0.21 K
  5259. 0 0.22 0.22 0.00 @w
  5260. 326.02 619.27 m
  5261. 321.91 619.27 318.53 624.38 318.38 628.56 C
  5262. 318.24 632.30 319.90 633.67 323.64 633.67 C
  5263. 327.67 633.60 331.27 628.34 331.27 624.31 C
  5264. 331.27 620.78 329.98 619.27 326.02 619.27 C
  5265. @c
  5266. 323.57 624.10 m
  5267. 324.58 622.58 326.81 620.64 328.25 620.71 C
  5268. 331.06 621.00 327.60 626.69 326.59 627.98 c
  5269. 324.79 630.36 322.78 632.30 321.19 632.09 C
  5270. 318.38 631.37 322.56 625.46 323.57 624.10 c
  5271. @c
  5272. B
  5273.  
  5274. @rax %%Note: Object
  5275. 331.20 590.47 344.23 604.87 @E
  5276.  0 O 0 @g
  5277. 1.00 1.00 1.00 0.21 k
  5278. 0 J 0 j [] 0 d 0 R 0 @G
  5279. 1.00 1.00 1.00 0.21 K
  5280. 0 0.22 0.22 0.00 @w
  5281. 338.98 590.47 m
  5282. 334.87 590.47 331.49 595.58 331.34 599.76 C
  5283. 331.20 603.50 332.86 604.87 336.60 604.87 C
  5284. 340.63 604.80 344.23 599.54 344.23 595.51 C
  5285. 344.23 591.98 342.94 590.47 338.98 590.47 C
  5286. @c
  5287. 336.53 595.30 m
  5288. 337.54 593.78 339.77 591.84 341.21 591.91 C
  5289. 344.02 592.20 340.56 597.89 339.55 599.18 c
  5290. 337.75 601.56 335.74 603.50 334.15 603.29 C
  5291. 331.34 602.57 335.52 596.66 336.53 595.30 c
  5292. @c
  5293. B
  5294.  
  5295. @rax %%Note: Object
  5296. 347.04 554.47 360.07 568.87 @E
  5297.  0 O 0 @g
  5298. 1.00 1.00 1.00 0.21 k
  5299. 0 J 0 j [] 0 d 0 R 0 @G
  5300. 1.00 1.00 1.00 0.21 K
  5301. 0 0.22 0.22 0.00 @w
  5302. 354.82 554.47 m
  5303. 350.71 554.47 347.33 559.58 347.18 563.76 C
  5304. 347.04 567.50 348.70 568.87 352.44 568.87 C
  5305. 356.47 568.80 360.07 563.54 360.07 559.51 C
  5306. 360.07 555.98 358.78 554.47 354.82 554.47 C
  5307. @c
  5308. 352.37 559.30 m
  5309. 353.38 557.78 355.61 555.84 357.05 555.91 C
  5310. 359.86 556.20 356.40 561.89 355.39 563.18 c
  5311. 353.59 565.56 351.58 567.50 349.99 567.29 C
  5312. 347.18 566.57 351.36 560.66 352.37 559.30 c
  5313. @c
  5314. B
  5315.  
  5316. @rax %%Note: Object
  5317. 361.44 518.47 374.47 532.87 @E
  5318.  0 O 0 @g
  5319. 1.00 1.00 1.00 0.21 k
  5320. 0 J 0 j [] 0 d 0 R 0 @G
  5321. 1.00 1.00 1.00 0.21 K
  5322. 0 0.22 0.22 0.00 @w
  5323. 369.22 518.47 m
  5324. 365.11 518.47 361.73 523.58 361.58 527.76 C
  5325. 361.44 531.50 363.10 532.87 366.84 532.87 C
  5326. 370.87 532.80 374.47 527.54 374.47 523.51 C
  5327. 374.47 519.98 373.18 518.47 369.22 518.47 C
  5328. @c
  5329. 366.77 523.30 m
  5330. 367.78 521.78 370.01 519.84 371.45 519.91 C
  5331. 374.26 520.20 370.80 525.89 369.79 527.18 c
  5332. 367.99 529.56 365.98 531.50 364.39 531.29 C
  5333. 361.58 530.57 365.76 524.66 366.77 523.30 c
  5334. @c
  5335. B
  5336.  
  5337. @rax %%Note: Object
  5338. 375.84 482.47 388.87 496.87 @E
  5339.  0 O 0 @g
  5340. 1.00 1.00 1.00 0.21 k
  5341. 0 J 0 j [] 0 d 0 R 0 @G
  5342. 1.00 1.00 1.00 0.21 K
  5343. 0 0.22 0.22 0.00 @w
  5344. 383.62 482.47 m
  5345. 379.51 482.47 376.13 487.58 375.98 491.76 C
  5346. 375.84 495.50 377.50 496.87 381.24 496.87 C
  5347. 385.27 496.80 388.87 491.54 388.87 487.51 C
  5348. 388.87 483.98 387.58 482.47 383.62 482.47 C
  5349. @c
  5350. 381.17 487.30 m
  5351. 382.18 485.78 384.41 483.84 385.85 483.91 C
  5352. 388.66 484.20 385.20 489.89 384.19 491.18 c
  5353. 382.39 493.56 380.38 495.50 378.79 495.29 C
  5354. 375.98 494.57 380.16 488.66 381.17 487.30 c
  5355. @c
  5356. B
  5357.  
  5358. @rax %%Note: Object
  5359. 388.80 446.47 401.83 460.87 @E
  5360.  0 O 0 @g
  5361. 1.00 1.00 1.00 0.21 k
  5362. 0 J 0 j [] 0 d 0 R 0 @G
  5363. 1.00 1.00 1.00 0.21 K
  5364. 0 0.22 0.22 0.00 @w
  5365. 396.58 446.47 m
  5366. 392.47 446.47 389.09 451.58 388.94 455.76 C
  5367. 388.80 459.50 390.46 460.87 394.20 460.87 C
  5368. 398.23 460.80 401.83 455.54 401.83 451.51 C
  5369. 401.83 447.98 400.54 446.47 396.58 446.47 C
  5370. @c
  5371. 394.13 451.30 m
  5372. 395.14 449.78 397.37 447.84 398.81 447.91 C
  5373. 401.62 448.20 398.16 453.89 397.15 455.18 c
  5374. 395.35 457.56 393.34 459.50 391.75 459.29 C
  5375. 388.94 458.57 393.12 452.66 394.13 451.30 c
  5376. @c
  5377. B
  5378.  
  5379. @rax %%Note: Object
  5380. 419.04 410.47 432.07 424.87 @E
  5381.  0 O 0 @g
  5382. 1.00 1.00 1.00 0.21 k
  5383. 0 J 0 j [] 0 d 0 R 0 @G
  5384. 1.00 1.00 1.00 0.21 K
  5385. 0 0.22 0.22 0.00 @w
  5386. 426.82 410.47 m
  5387. 422.71 410.47 419.33 415.58 419.18 419.76 C
  5388. 419.04 423.50 420.70 424.87 424.44 424.87 C
  5389. 428.47 424.80 432.07 419.54 432.07 415.51 C
  5390. 432.07 411.98 430.78 410.47 426.82 410.47 C
  5391. @c
  5392. 424.37 415.30 m
  5393. 425.38 413.78 427.61 411.84 429.05 411.91 C
  5394. 431.86 412.20 428.40 417.89 427.39 419.18 c
  5395. 425.59 421.56 423.58 423.50 421.99 423.29 C
  5396. 419.18 422.57 423.36 416.66 424.37 415.30 c
  5397. @c
  5398. B
  5399.  
  5400. @rax %%Note: Object
  5401. 433.44 374.47 446.47 388.87 @E
  5402.  0 O 0 @g
  5403. 1.00 1.00 1.00 0.21 k
  5404. 0 J 0 j [] 0 d 0 R 0 @G
  5405. 1.00 1.00 1.00 0.21 K
  5406. 0 0.22 0.22 0.00 @w
  5407. 441.22 374.47 m
  5408. 437.11 374.47 433.73 379.58 433.58 383.76 C
  5409. 433.44 387.50 435.10 388.87 438.84 388.87 C
  5410. 442.87 388.80 446.47 383.54 446.47 379.51 C
  5411. 446.47 375.98 445.18 374.47 441.22 374.47 C
  5412. @c
  5413. 438.77 379.30 m
  5414. 439.78 377.78 442.01 375.84 443.45 375.91 C
  5415. 446.26 376.20 442.80 381.89 441.79 383.18 c
  5416. 439.99 385.56 437.98 387.50 436.39 387.29 C
  5417. 433.58 386.57 437.76 380.66 438.77 379.30 c
  5418. @c
  5419. B
  5420.  
  5421. @rax %%Note: Object
  5422. 447.84 338.47 460.87 352.87 @E
  5423.  0 O 0 @g
  5424. 1.00 1.00 1.00 0.21 k
  5425. 0 J 0 j [] 0 d 0 R 0 @G
  5426. 1.00 1.00 1.00 0.21 K
  5427. 0 0.22 0.22 0.00 @w
  5428. 455.62 338.47 m
  5429. 451.51 338.47 448.13 343.58 447.98 347.76 C
  5430. 447.84 351.50 449.50 352.87 453.24 352.87 C
  5431. 457.27 352.80 460.87 347.54 460.87 343.51 C
  5432. 460.87 339.98 459.58 338.47 455.62 338.47 C
  5433. @c
  5434. 453.17 343.30 m
  5435. 454.18 341.78 456.41 339.84 457.85 339.91 C
  5436. 460.66 340.20 457.20 345.89 456.19 347.18 c
  5437. 454.39 349.56 452.38 351.50 450.79 351.29 C
  5438. 447.98 350.57 452.16 344.66 453.17 343.30 c
  5439. @c
  5440. B
  5441.  
  5442. @rax %%Note: Object
  5443. 462.24 302.47 475.27 316.87 @E
  5444.  0 O 0 @g
  5445. 1.00 1.00 1.00 0.21 k
  5446. 0 J 0 j [] 0 d 0 R 0 @G
  5447. 1.00 1.00 1.00 0.21 K
  5448. 0 0.22 0.22 0.00 @w
  5449. 470.02 302.47 m
  5450. 465.91 302.47 462.53 307.58 462.38 311.76 C
  5451. 462.24 315.50 463.90 316.87 467.64 316.87 C
  5452. 471.67 316.80 475.27 311.54 475.27 307.51 C
  5453. 475.27 303.98 473.98 302.47 470.02 302.47 C
  5454. @c
  5455. 467.57 307.30 m
  5456. 468.58 305.78 470.81 303.84 472.25 303.91 C
  5457. 475.06 304.20 471.60 309.89 470.59 311.18 c
  5458. 468.79 313.56 466.78 315.50 465.19 315.29 C
  5459. 462.38 314.57 466.56 308.66 467.57 307.30 c
  5460. @c
  5461. B
  5462.  
  5463. @rax %%Note: Object
  5464. 476.64 266.47 489.67 280.87 @E
  5465.  0 O 0 @g
  5466. 1.00 1.00 1.00 0.21 k
  5467. 0 J 0 j [] 0 d 0 R 0 @G
  5468. 1.00 1.00 1.00 0.21 K
  5469. 0 0.22 0.22 0.00 @w
  5470. 484.42 266.47 m
  5471. 480.31 266.47 476.93 271.58 476.78 275.76 C
  5472. 476.64 279.50 478.30 280.87 482.04 280.87 C
  5473. 486.07 280.80 489.67 275.54 489.67 271.51 C
  5474. 489.67 267.98 488.38 266.47 484.42 266.47 C
  5475. @c
  5476. 481.97 271.30 m
  5477. 482.98 269.78 485.21 267.84 486.65 267.91 C
  5478. 489.46 268.20 486.00 273.89 484.99 275.18 c
  5479. 483.19 277.56 481.18 279.50 479.59 279.29 C
  5480. 476.78 278.57 480.96 272.66 481.97 271.30 c
  5481. @c
  5482. B
  5483.  
  5484. @rax %%Note: Object
  5485. 489.60 230.47 502.63 244.87 @E
  5486.  0 O 0 @g
  5487. 1.00 1.00 1.00 0.21 k
  5488. 0 J 0 j [] 0 d 0 R 0 @G
  5489. 1.00 1.00 1.00 0.21 K
  5490. 0 0.22 0.22 0.00 @w
  5491. 497.38 230.47 m
  5492. 493.27 230.47 489.89 235.58 489.74 239.76 C
  5493. 489.60 243.50 491.26 244.87 495.00 244.87 C
  5494. 499.03 244.80 502.63 239.54 502.63 235.51 C
  5495. 502.63 231.98 501.34 230.47 497.38 230.47 C
  5496. @c
  5497. 494.93 235.30 m
  5498. 495.94 233.78 498.17 231.84 499.61 231.91 C
  5499. 502.42 232.20 498.96 237.89 497.95 239.18 c
  5500. 496.15 241.56 494.14 243.50 492.55 243.29 C
  5501. 489.74 242.57 493.92 236.66 494.93 235.30 c
  5502. @c
  5503. B
  5504.  
  5505. @rax %%Note: Object
  5506. 512.64 151.20 525.67 165.60 @E
  5507.  0 O 0 @g
  5508. 1.00 1.00 1.00 0.21 k
  5509. 0 J 0 j [] 0 d 0 R 0 @G
  5510. 1.00 1.00 1.00 0.21 K
  5511. 0 0.22 0.22 0.00 @w
  5512. 520.42 151.20 m
  5513. 516.31 151.20 512.93 156.31 512.78 160.49 C
  5514. 512.64 164.23 514.30 165.60 518.04 165.60 C
  5515. 522.07 165.53 525.67 160.27 525.67 156.24 C
  5516. 525.67 152.71 524.38 151.20 520.42 151.20 C
  5517. @c
  5518. 517.97 156.02 m
  5519. 518.98 154.51 521.21 152.57 522.65 152.64 C
  5520. 525.46 152.93 522.00 158.62 520.99 159.91 c
  5521. 519.19 162.29 517.18 164.23 515.59 164.02 C
  5522. 512.78 163.30 516.96 157.39 517.97 156.02 c
  5523. @c
  5524. B
  5525.  
  5526. @rax %%Note: Object
  5527. 330.91 72.00 331.20 720.00 @E
  5528. 0 J 0 j [] 0 d 0 R 0 @G
  5529. 1.00 1.00 1.00 0.21 K
  5530. 0 0.22 0.22 0.00 @w
  5531. 331.06 72.00 m
  5532. 331.06 720.00 L
  5533. S
  5534.  
  5535. @rax %%Note: Object
  5536. 345.31 72.00 345.60 720.00 @E
  5537. 0 J 0 j [] 0 d 0 R 0 @G
  5538. 1.00 1.00 1.00 0.21 K
  5539. 0 0.22 0.22 0.00 @w
  5540. 345.46 72.00 m
  5541. 345.46 720.00 L
  5542. S
  5543.  
  5544. @rax %%Note: Object
  5545. 359.71 72.00 360.00 720.00 @E
  5546. 0 J 0 j [] 0 d 0 R 0 @G
  5547. 1.00 1.00 1.00 0.21 K
  5548. 0 0.22 0.22 0.00 @w
  5549. 359.86 720.00 m
  5550. 359.86 72.00 L
  5551. S
  5552.  
  5553. @rax %%Note: Object
  5554. 374.11 72.00 374.40 720.00 @E
  5555. 0 J 0 j [] 0 d 0 R 0 @G
  5556. 1.00 1.00 1.00 0.21 K
  5557. 0 0.22 0.22 0.00 @w
  5558. 374.26 72.00 m
  5559. 374.26 720.00 L
  5560. S
  5561.  
  5562. @rax %%Note: Object
  5563. 388.51 72.00 388.80 720.00 @E
  5564. 0 J 0 j [] 0 d 0 R 0 @G
  5565. 1.00 1.00 1.00 0.21 K
  5566. 0 0.22 0.22 0.00 @w
  5567. 388.66 720.00 m
  5568. 388.66 72.00 L
  5569. S
  5570.  
  5571. @rax %%Note: Object
  5572. 431.71 72.00 432.00 720.00 @E
  5573. 0 J 0 j [] 0 d 0 R 0 @G
  5574. 1.00 1.00 1.00 0.21 K
  5575. 0 0.22 0.22 0.00 @w
  5576. 431.86 72.00 m
  5577. 431.86 720.00 L
  5578. S
  5579.  
  5580. @rax %%Note: Object
  5581. 446.11 72.00 446.40 720.00 @E
  5582. 0 J 0 j [] 0 d 0 R 0 @G
  5583. 1.00 1.00 1.00 0.21 K
  5584. 0 0.22 0.22 0.00 @w
  5585. 446.26 720.00 m
  5586. 446.26 72.00 L
  5587. S
  5588.  
  5589. @rax %%Note: Object
  5590. 460.51 72.00 460.80 720.00 @E
  5591. 0 J 0 j [] 0 d 0 R 0 @G
  5592. 1.00 1.00 1.00 0.21 K
  5593. 0 0.22 0.22 0.00 @w
  5594. 460.66 72.00 m
  5595. 460.66 720.00 L
  5596. S
  5597.  
  5598. @rax %%Note: Object
  5599. 474.91 72.00 475.20 720.00 @E
  5600. 0 J 0 j [] 0 d 0 R 0 @G
  5601. 1.00 1.00 1.00 0.21 K
  5602. 0 0.22 0.22 0.00 @w
  5603. 475.06 720.00 m
  5604. 475.06 72.00 L
  5605. S
  5606.  
  5607. @rax %%Note: Object
  5608. 489.31 72.00 489.60 720.00 @E
  5609. 0 J 0 j [] 0 d 0 R 0 @G
  5610. 1.00 1.00 1.00 0.21 K
  5611. 0 0.22 0.22 0.00 @w
  5612. 489.46 72.00 m
  5613. 489.46 720.00 L
  5614. S
  5615.  
  5616. @rax %%Note: Object
  5617. 504.00 194.47 517.03 208.87 @E
  5618.  0 O 0 @g
  5619. 1.00 1.00 1.00 0.21 k
  5620. 0 J 0 j [] 0 d 0 R 0 @G
  5621. 1.00 1.00 1.00 0.21 K
  5622. 0 0.22 0.22 0.00 @w
  5623. 511.78 194.47 m
  5624. 507.67 194.47 504.29 199.58 504.14 203.76 C
  5625. 504.00 207.50 505.66 208.87 509.40 208.87 C
  5626. 513.43 208.80 517.03 203.54 517.03 199.51 C
  5627. 517.03 195.98 515.74 194.47 511.78 194.47 C
  5628. @c
  5629. 509.33 199.30 m
  5630. 510.34 197.78 512.57 195.84 514.01 195.91 C
  5631. 516.82 196.20 513.36 201.89 512.35 203.18 c
  5632. 510.55 205.56 508.54 207.50 506.95 207.29 C
  5633. 504.14 206.57 508.32 200.66 509.33 199.30 c
  5634. @c
  5635. B
  5636.  
  5637. @rax %%Note: Object
  5638. 518.26 144.00 518.54 172.80 @E
  5639. 0 J 0 j [] 0 d 0 R 0 @G
  5640. 1.00 1.00 1.00 0.21 K
  5641. 0 0.22 0.22 0.00 @w
  5642. 518.40 144.00 m
  5643. 518.40 172.80 L
  5644. S
  5645.  
  5646. @rax %%Note: Object
  5647. 503.86 144.00 504.14 172.80 @E
  5648. 0 J 0 j [] 0 d 0 R 0 @G
  5649. 1.00 1.00 1.00 0.21 K
  5650. 0 0.22 0.22 0.00 @w
  5651. 504.00 144.00 m
  5652. 504.00 172.80 L
  5653. S
  5654.  
  5655. @rax %%Note: Object
  5656. 302.26 684.00 302.54 712.80 @E
  5657. 0 J 0 j [] 0 d 0 R 0 @G
  5658. 1.00 1.00 1.00 0.21 K
  5659. 0 0.22 0.22 0.00 @w
  5660. 302.40 684.00 m
  5661. 302.40 712.80 L
  5662. S
  5663.  
  5664. @rax %%Note: Object
  5665. 316.66 648.00 316.94 676.80 @E
  5666. 0 J 0 j [] 0 d 0 R 0 @G
  5667. 1.00 1.00 1.00 0.21 K
  5668. 0 0.22 0.22 0.00 @w
  5669. 316.80 648.00 m
  5670. 316.80 676.80 L
  5671. S
  5672.  
  5673. @rax %%Note: Object
  5674. 316.66 684.00 316.94 712.80 @E
  5675. 0 J 0 j [] 0 d 0 R 0 @G
  5676. 1.00 1.00 1.00 0.21 K
  5677. 0 0.22 0.22 0.00 @w
  5678. 316.80 684.00 m
  5679. 316.80 712.80 L
  5680. S
  5681.  
  5682. @rax %%Note: Object
  5683. 331.20 71.93 395.06 101.38 @E
  5684.  0 O 0 @g
  5685. 1.00 1.00 1.00 0.21 k
  5686. 0 J 0 j [] 0 d 0 R 0 @G
  5687. 1.00 1.00 1.00 0.21 K
  5688. 0 0.22 0.22 0.00 @w
  5689. 366.12 87.55 m
  5690. 366.62 85.82 368.57 83.88 370.80 83.88 c
  5691. 371.95 83.88 374.11 84.53 374.98 86.54 c
  5692. 375.26 87.34 376.13 87.05 375.19 85.39 c
  5693. 373.54 82.01 369.22 80.42 365.26 83.09 c
  5694. 364.10 83.66 362.66 85.32 362.09 86.76 C
  5695. 356.62 85.68 L
  5696. 358.06 84.02 359.42 82.58 361.51 80.86 c
  5697. 365.47 77.47 371.66 75.89 375.98 80.14 c
  5698. 378.86 83.09 379.08 87.12 378.22 90.00 C
  5699. 366.12 87.55 L
  5700. @c
  5701. 365.98 88.70 m
  5702. 377.86 91.08 L
  5703. 376.78 93.82 374.11 94.90 371.59 94.68 c
  5704. 368.42 94.32 365.98 92.09 365.98 88.70 C
  5705. @c
  5706. 349.92 85.54 m
  5707. 348.55 87.77 342.36 91.80 338.69 90.94 c
  5708. 336.46 90.65 336.46 88.20 338.69 86.83 c
  5709. 341.57 85.10 346.54 84.10 349.92 85.54 C
  5710. @c
  5711. 350.86 84.53 m
  5712. 342.58 82.22 334.80 83.88 332.28 87.19 c
  5713. 331.20 88.63 331.34 88.92 332.42 89.78 c
  5714. 339.34 94.68 349.99 92.95 355.68 86.69 C
  5715. 361.80 87.91 L
  5716. 360.07 97.34 375.19 101.38 378.94 91.37 C
  5717. 384.48 92.23 389.66 94.97 392.83 90.65 c
  5718. 395.06 87.55 394.42 83.52 392.40 81.43 c
  5719. 391.03 79.99 388.51 79.13 386.06 80.86 c
  5720. 382.75 83.45 385.49 87.70 389.16 86.98 c
  5721. 391.25 86.54 391.75 84.53 391.61 83.45 C
  5722. 394.42 85.39 392.62 90.43 389.81 91.30 c
  5723. 386.64 92.45 383.26 91.01 379.44 90.14 C
  5724. 381.89 79.92 370.73 71.93 361.08 76.32 c
  5725. 357.55 77.98 354.02 81.29 350.86 84.53 C
  5726. @c
  5727. B
  5728.  
  5729. @rax %%Note: Object
  5730. 439.13 72.00 482.40 100.80 @E
  5731.  0 O 0 @g
  5732. 1.00 1.00 1.00 0.21 k
  5733. 0 J 0 j [] 0 d 0 R 0 @G
  5734. 1.00 1.00 1.00 0.21 K
  5735. 0 0.22 0.22 0.00 @w
  5736. 481.25 72.00 m
  5737. 478.51 75.24 476.28 77.98 473.62 80.42 c
  5738. 471.02 82.58 468.29 84.53 465.12 85.82 c
  5739. 461.81 87.34 457.13 88.70 452.81 88.78 c
  5740. 449.64 88.78 446.98 88.49 444.96 87.41 c
  5741. 443.09 86.33 441.58 84.67 441.58 82.44 c
  5742. 441.58 79.99 442.66 76.75 446.33 75.60 c
  5743. 447.62 75.24 448.13 76.10 448.13 76.61 c
  5744. 448.27 77.04 447.70 77.83 447.70 78.70 c
  5745. 447.70 79.70 448.27 80.57 448.92 81.29 c
  5746. 449.71 81.86 450.94 82.30 451.94 82.30 c
  5747. 454.54 82.30 456.77 80.42 456.77 77.98 c
  5748. 456.77 76.61 456.19 75.53 455.26 74.66 c
  5749. 454.32 73.73 452.74 73.01 450.79 73.01 c
  5750. 447.84 73.01 444.74 74.45 442.87 76.39 c
  5751. 441.86 77.40 441.29 78.70 440.71 79.85 c
  5752. 439.13 84.24 440.06 87.84 443.38 90.86 c
  5753. 445.61 93.02 448.78 94.54 453.46 94.54 c
  5754. 457.92 94.54 463.32 92.81 468.50 89.21 c
  5755. 470.74 87.62 472.82 85.46 474.84 82.87 c
  5756. 477.50 79.78 479.88 76.10 482.40 72.14 C
  5757. 481.25 72.00 L
  5758. @c
  5759. 446.90 96.26 m
  5760. 446.04 96.26 445.25 96.48 444.74 96.98 c
  5761. 444.31 97.34 444.02 97.85 444.02 98.57 c
  5762. 444.02 99.14 444.31 99.72 444.89 100.01 c
  5763. 445.25 100.44 446.04 100.80 446.98 100.80 c
  5764. 447.91 100.80 448.56 100.44 449.14 99.94 c
  5765. 449.64 99.65 449.86 99.07 449.86 98.42 c
  5766. 449.86 97.92 449.50 97.34 449.14 96.98 c
  5767. 448.56 96.55 447.84 96.26 446.90 96.26 c
  5768. @c
  5769. 458.57 96.26 m
  5770. 457.56 96.26 456.98 96.55 456.41 96.98 c
  5771. 455.90 97.34 455.69 97.85 455.69 98.57 c
  5772. 455.69 99.14 455.98 99.79 456.55 100.15 c
  5773. 457.06 100.44 457.70 100.80 458.57 100.80 c
  5774. 459.50 100.80 460.37 100.44 460.80 99.94 c
  5775. 461.30 99.65 461.52 99.07 461.52 98.57 c
  5776. 461.52 97.92 461.30 97.34 460.80 96.98 c
  5777. 460.22 96.55 459.50 96.26 458.57 96.26 c
  5778. @c
  5779. B
  5780.  
  5781. @rax 513.36 129.60 522.07 142.42 @E
  5782. [0.00001 0.07199 -0.07199 0.00001 522.00000 129.59999] @tm
  5783.  0 O 0 @g
  5784. 1.00 1.00 1.00 0.21 k
  5785. e
  5786. /_R1-Helvetica 167.00 z
  5787. 0 0 (36) @t
  5788. T
  5789. @rax 506.16 180.00 514.87 192.82 @E
  5790. [0.00001 0.07199 -0.07199 0.00001 514.79999 179.99998] @tm
  5791.  0 O 0 @g
  5792. 1.00 1.00 1.00 0.21 k
  5793. e
  5794. /_R1-Helvetica 167.00 z
  5795. 0 0 (38) @t
  5796. T
  5797. @rax 491.76 216.00 500.40 227.09 @E
  5798. [0.00001 0.07199 -0.07199 0.00001 500.39996 215.99998] @tm
  5799.  0 O 0 @g
  5800. 1.00 1.00 1.00 0.21 k
  5801. e
  5802. /_R1-Helvetica 167.00 z
  5803. 0 0 (41) @t
  5804. T
  5805. @rax 477.43 252.00 486.07 264.82 @E
  5806. [0.00001 0.07199 -0.07199 0.00001 485.99997 251.99998] @tm
  5807.  0 O 0 @g
  5808. 1.00 1.00 1.00 0.21 k
  5809. e
  5810. /_R1-Helvetica 167.00 z
  5811. 0 0 (45) @t
  5812. T
  5813. @rax 462.96 288.00 471.67 300.82 @E
  5814. [0.00001 0.07199 -0.07199 0.00001 471.59998 288.00000] @tm
  5815.  0 O 0 @g
  5816. 1.00 1.00 1.00 0.21 k
  5817. e
  5818. /_R1-Helvetica 167.00 z
  5819. 0 0 (48) @t
  5820. T
  5821. @rax 448.56 324.00 457.27 336.74 @E
  5822. [0.00001 0.07199 -0.07199 0.00001 457.19998 324.00000] @tm
  5823.  0 O 0 @g
  5824. 1.00 1.00 1.00 0.21 k
  5825. e
  5826. /_R1-Helvetica 167.00 z
  5827. 0 0 (52) @t
  5828. T
  5829. @rax 434.23 360.00 442.87 372.82 @E
  5830. [0.00001 0.07199 -0.07199 0.00001 442.79999 359.99997] @tm
  5831.  0 O 0 @g
  5832. 1.00 1.00 1.00 0.21 k
  5833. e
  5834. /_R1-Helvetica 167.00 z
  5835. 0 0 (55) @t
  5836. T
  5837. @rax 419.76 396.00 428.47 408.82 @E
  5838. [0.00001 0.07199 -0.07199 0.00001 428.39999 395.99997] @tm
  5839.  0 O 0 @g
  5840. 1.00 1.00 1.00 0.21 k
  5841. e
  5842. /_R1-Helvetica 167.00 z
  5843. 0 0 (59) @t
  5844. T
  5845. @rax 390.96 432.00 399.67 444.74 @E
  5846. [0.00001 0.07199 -0.07199 0.00001 399.59998 431.99997] @tm
  5847.  0 O 0 @g
  5848. 1.00 1.00 1.00 0.21 k
  5849. e
  5850. /_R1-Helvetica 167.00 z
  5851. 0 0 (62) @t
  5852. T
  5853. @rax 376.56 468.00 385.27 480.82 @E
  5854. [0.00001 0.07199 -0.07199 0.00001 385.19998 467.99997] @tm
  5855.  0 O 0 @g
  5856. 1.00 1.00 1.00 0.21 k
  5857. e
  5858. /_R1-Helvetica 167.00 z
  5859. 0 0 (65) @t
  5860. T
  5861. @rax 362.16 504.00 370.87 516.82 @E
  5862. [0.00001 0.07199 -0.07199 0.00001 370.79999 503.99997] @tm
  5863.  0 O 0 @g
  5864. 1.00 1.00 1.00 0.21 k
  5865. e
  5866. /_R1-Helvetica 167.00 z
  5867. 0 0 (69) @t
  5868. T
  5869. @rax 347.76 540.00 356.40 552.74 @E
  5870. [0.00001 0.07199 -0.07199 0.00001 356.39999 540.00000] @tm
  5871.  0 O 0 @g
  5872. 1.00 1.00 1.00 0.21 k
  5873. e
  5874. /_R1-Helvetica 167.00 z
  5875. 0 0 (72) @t
  5876. T
  5877. @rax 333.36 576.00 342.07 588.82 @E
  5878. [0.00001 0.07199 -0.07199 0.00001 342.00000 576.00000] @tm
  5879.  0 O 0 @g
  5880. 1.00 1.00 1.00 0.21 k
  5881. e
  5882. /_R1-Helvetica 167.00 z
  5883. 0 0 (76) @t
  5884. T
  5885. @rax 318.96 604.80 327.67 617.62 @E
  5886. [0.00001 0.07199 -0.07199 0.00001 327.59998 604.79999] @tm
  5887.  0 O 0 @g
  5888. 1.00 1.00 1.00 0.21 k
  5889. e
  5890. /_R1-Helvetica 167.00 z
  5891. 0 0 (79) @t
  5892. T
  5893. @rax 304.56 640.80 313.27 653.62 @E
  5894. [0.00001 0.07199 -0.07199 0.00001 313.19998 640.79999] @tm
  5895.  0 O 0 @g
  5896. 1.00 1.00 1.00 0.21 k
  5897. e
  5898. /_R1-Helvetica 167.00 z
  5899. 0 0 (83) @t
  5900. T
  5901. @rax 290.16 676.80 298.87 689.62 @E
  5902. [0.00001 0.07199 -0.07199 0.00001 298.79999 676.79999] @tm
  5903.  0 O 0 @g
  5904. 1.00 1.00 1.00 0.21 k
  5905. e
  5906. /_R1-Helvetica 167.00 z
  5907. 0 0 (86) @t
  5908. T
  5909. @rax 187.20 381.53 226.15 388.87 @E
  5910. [0.07199 0.00000 0.00000 0.07199 187.20000 381.59998] @tm
  5911.  0 O 0 @g
  5912. 1.00 1.00 1.00 0.21 k
  5913. e
  5914. /_R1-Helvetica 139.00 z
  5915. 0 0 (Middle C) @t
  5916. T
  5917. @rs @rs
  5918. /$ctm matrix currentmatrix def
  5919. %EndTile
  5920. %EndColorLayer
  5921. @rs
  5922. @rs
  5923. %EndPage
  5924. %%Trailer
  5925. end
  5926. %%DocumentProcessColors: Cyan Magenta Yellow Black 
  5927. %%DocumentFonts: Helvetica 
  5928. %%DocumentSuppliedResources: procset wCorel4Dict
  5929. EJ RS
  5930. %%PageTrailer
  5931. 2397 3162 0 0 CB
  5932. %%Trailer
  5933. SVDoc restore
  5934. end
  5935. %%DocumentSuppliedResources: procset Win35Dict 3 1
  5936.  
  5937. %%DocumentNeededResources: 
  5938. %%EOF
  5939.  
  5940.