home *** CD-ROM | disk | FTP | other *** search
/ boe.pres.k12.wv.us / boe.pres.k12.wv.us.zip / boe.pres.k12.wv.us / Utilities / Finishlynx / FinishLynx-8.00.exe / Nevco_860.lss < prev    next >
Text File  |  2010-04-20  |  17KB  |  719 lines

  1. ; Defaults: 57600,8,N,1
  2. ;
  3. ; Lynx Scoreboard Script Version 2.0
  4. ;
  5. ; Copyright (c) 1995-2004 Lynx System Developers, Inc.
  6. ;
  7. ; Written by Kirk Sigel
  8. ;
  9. ; Notes:
  10. ;  + Empty lines and lines that start with a semicolon are ignored.
  11. ;
  12. ;  + Lines that start with two semicolons indicate a section header.
  13. ;    Sections may be omitted, appear in any order, and occur more than once.
  14. ;    The current section headers and their valid group codes are:
  15. ;      ;;Initialization
  16. ;        \10 \13 \17
  17. ;      ;;TimeRunning
  18. ;      ;;TimeStopped
  19. ;      ;;TimeGun
  20. ;      ;;TimeBreak
  21. ;      ;;TimeUpdate
  22. ;      ;;TimeOfDay
  23. ;        \11 \13 \17
  24. ;      ;;Wind
  25. ;        \12 \13 \17
  26. ;      ;;StartListHeader
  27. ;      ;;StartListTrailer
  28. ;      ;;StartedHeader
  29. ;      ;;StartedTrailer
  30. ;      ;;ResultsHeader
  31. ;      ;;ResultsTrailer
  32. ;        \13 \17
  33. ;      ;;StartList
  34. ;      ;;Started
  35. ;      ;;Results (or ;;Result)
  36. ;        \13 \14 \17
  37. ;      ;;MessageHeader
  38. ;      ;;MessageTrailer
  39. ;        \13 \15 \17
  40. ;      ;;Message
  41. ;        \13 \15 \16 \17
  42. ;    The StartList*, Started*, and Results* sections may have an optional
  43. ;    page number contained in square brackets immediately following the
  44. ;    section name. If more than one page is defined for a section then each
  45. ;    page will be shown, in order, when paging is enabled. Note that page
  46. ;    numbers do not need to be contiguous; they are simply used to establish
  47. ;    the order of pages. If a page number is omitted then a 0 (zero) is
  48. ;    assumed.
  49. ;    Some sections can be omitted and they will "fall back" to other
  50. ;    sections. TimeOfDay falls back to TimeRunning. The StartList* sections
  51. ;    fall back to the Results* sections. The Started* sections fall back
  52. ;    to the StartList* sections (after the StartList* sections have fallen
  53. ;    back to the Results* sections if necessary).
  54. ;
  55. ;  + Format lines must begin with a one byte group code and a one byte
  56. ;    variable code. The special variable code \00 indicates that no variable
  57. ;    is being requested. If a variable is requested it will be inserted where
  58. ;    a '%s' printf style format specifier appears. There can only be one '%s'
  59. ;    specifier in lines requesting a variable and no other printf format
  60. ;    specifiers may appear. Remember, lines requesting a variable are used as
  61. ;    a printf format string and therefore must behave as such. Lines not 
  62. ;    requesting a variable (variable code \00) can do whatever they want as
  63. ;    these lines are not fed to a printf statement.
  64. ;    The current group codes and their variable codes are:
  65. ;      \10  Initialize
  66. ;         \00  No variable
  67. ;      \11  Time
  68. ;         \00  No variable
  69. ;         \01  Formatted time
  70. ;         \02  Binary time in milliseconds (4 byte little endian integer)
  71. ;      \12  Wind
  72. ;         \00  No variable
  73. ;         \01  Formatted wind
  74. ;         \02  Binary wind in hundredths of units (4 byte little endian integer)
  75. ;      \13  Results Header/Trailer
  76. ;         \00  No variable
  77. ;         \01  OFFICIAL/UNOFFICIAL string
  78. ;         \02  Event name
  79. ;         \03  Wind
  80. ;         \04  Event number
  81. ;         \05  Round number
  82. ;         \06  Heat number
  83. ;         \07  AUTO/MANUAL start type
  84. ;         \08  Number of participants
  85. ;      \14  Result
  86. ;         \00  No variable
  87. ;         \01  Place
  88. ;         \02  Lane
  89. ;         \03  Id
  90. ;         \04  Name
  91. ;         \05  Affiliation
  92. ;         \06  Time
  93. ;         \07  Delta Time
  94. ;         \08  Cumulative Split Time
  95. ;         \09  Last Split Time
  96. ;         \0a  Laps To Go
  97. ;         \0b  License
  98. ;         \0c  ReacTime
  99. ;         \0d  Speed
  100. ;         \0e  Pace
  101. ;         \0f  Best Split Time
  102. ;      \15  Message Header/Trailer
  103. ;         \00  No variable
  104. ;      \16  Message
  105. ;         \00  No variable
  106. ;         \01  Text
  107. ;      \17  Break Time
  108. ;         \00  No variable
  109. ;         \nn  Formatted break time nn
  110. ;
  111. ;  + Arbitrary 8 bit values are entered as \hh where h is a lowercase hex
  112. ;    digit. Note that h must be lowercase.
  113. ;
  114. ;  + Format lines can have the following commands embedded in them.
  115. ;    Note that only 10 registers (indexed 0-9) are currently implemented.
  116. ;     \U\hh   Set the 'U' value to hh. It is reset after the next command.
  117. ;     \Ui\hh  Set the 'U' value to register[hh].
  118. ;     \X\hh   Set the 'X' value to hh. It is reset after the next command.
  119. ;     \Xi\hh  Set the 'X' value to register[hh].
  120. ;     \=\hh   register[hh] = {register[U]|X|1}                 (assign)
  121. ;     \*\hh   register[hh] = register[hh] * {register[U]|X|1}  (multiply)
  122. ;     \/\hh   register[hh] = register[hh] / {register[U]|X|1}  (divide)
  123. ;     \#\hh   register[hh] = register[hh] # {register[U]|X|1}  (modulus)
  124. ;     \+\hh   register[hh] = register[hh] + {register[U]|X|1}  (add)
  125. ;     \-\hh   register[hh] = register[hh] - {register[U]|X|1}  (subtract)
  126. ;     \<\hh   register[hh] = register[hh] << {register[U]|X|1} (shift left)
  127. ;     \>\hh   register[hh] = register[hh] >> {register[U]|X|1} (shift right)
  128. ;     \&\hh   register[hh] = register[hh] & {register[U]|X|1}  (bit and)
  129. ;     \|\hh   register[hh] = register[hh] | {register[U]|X|1}  (bit or)
  130. ;     \^\hh   register[hh] = register[hh] ^ {register[U]|X|1}  (bit xor)
  131. ;     \~\hh   register[hh] = ~register[hh]                     (bit invert)
  132. ;     \F\hh   register[hh] = The result of running Function {U|0} on the 
  133. ;             next {X|<eol>} characters.
  134. ;              \U\00  IDS checksum.
  135. ;              \U\01  XOR checksum. register[hh] is used as the seed value.
  136. ;              \U\02  ADD checksum. register[hh] is used as the seed value.
  137. ;              \U\03  CRC-16. register[hh] is used as the seed value
  138. ;                       and register[hh+1] is the polynomial.
  139. ;              \U\04  CRC-32. register[hh] is used as the seed value
  140. ;                       and register[hh+1] is the polynomial.
  141. ;     \O\hh   Output register[hh] as an {X|1} byte value using method {U|0}.
  142. ;              \U\00  Binary little-endian (Intel byte order).
  143. ;              \U\01  Binary big-endian (Motorola byte order).
  144. ;              \U\02  ASCII text right justified space padded.
  145. ;              \U\03  ASCII text right justified zero padded.
  146. ;              \U\04  ASCII text left justified space padded.
  147. ;              \U\05  ASCII text left justified zero padded.
  148. ;     \S\hh   Scan the next {X|1} bytes into register[hh] using method {U|0}.
  149. ;              \U\00  ASCII text base 10.
  150. ;              \U\01  Binary little-endian (Intel byte order).
  151. ;              \U\02  Binary big-endian (Motorola byte order).
  152. ;     \P\hh   Run Procedure hh on the next {X|<eol>} characters.
  153. ;              \P\00  Reverse characters.
  154. ;              \P\01  Convert characters to Colorado Time format. Register[1]
  155. ;                       is the current character position on entry and the
  156. ;                       next character position on exit.
  157. ;              \P\02  Convert characters to Daktronics AllSport format.
  158. ;     \B\hh   Delete {register[U]|hh} (to beginning of line if zero) characters 
  159. ;             before the cursor or until the string contains X characters.
  160. ;     \D\hh   Delete {register[U]|hh} (to end of line if zero) characters 
  161. ;             at the cursor or until the string contains X characters.
  162. ;     \I\hh   Insert {register[U]|hh} spaces at the cursor or until the string
  163. ;             contains X characters.
  164. ;     \Ic\hh  Insert {register[U]|hh} {X's|spaces} at the cursor.
  165. ;     \L\hh   Move the cursor {register[U]|hh} positions to the left (to the 
  166. ;             beginning of the line if zero).
  167. ;     \R\hh   Move the cursor {register[U]|hh} positions to the right (to the
  168. ;             end of the line if zero).
  169. ;    Note that numbers 0 thru 9 can be entered directly for single character
  170. ;    embedded commands. For example, '\U\04' is the same as '\U4' and 
  171. ;    '\=\01' is the same as '\=1'.
  172. ;
  173. ;  + Be very careful about whitespace in each format line. Characters other
  174. ;    than '%s' specifiers and embedded commands and values will be sent
  175. ;    exactly as they appear on the line. This means, for instance, that using
  176. ;    tabs to make a line 'look right' in your favorite editor will cause
  177. ;    tabs to be sent to the scoreboard instead of the equivalent number of
  178. ;    spaces (probably not what you wanted).
  179. ;
  180. ; The format lines follow.
  181.  
  182. ;******************************************************************************
  183. ;;Initialization
  184. ;******************************************************************************
  185. ; This is sent once to initialize the scoreboard.
  186.  
  187. ; Headder
  188. \10\00\3a\3a\3a\03
  189.  
  190. ; Data 0
  191. \00\b0\ff
  192.  
  193. ; Data 1
  194. \00\f1\ff
  195.  
  196. ; Data 2
  197. \00\e2\0f
  198.  
  199. ; Data 3
  200. \00\f3\0f
  201.  
  202. ; Data 4
  203. \00\f4\0f
  204.  
  205. ; Data 5
  206. \00\f5\0f
  207.  
  208. ; Data 6
  209. \00\f6\0f
  210.  
  211. ; Data 7
  212. \00\f7\0f
  213.  
  214. ; Data 8
  215. \00\f8\0f
  216.  
  217. ; Data 9
  218. \00\f9\0f
  219.  
  220. ; Data 10
  221. \00\fa\ff
  222.  
  223. ; Data 11
  224. \00\7b\ff
  225.  
  226. ; Data 12
  227. \00\fc\ff
  228.  
  229. ; Data 13
  230. \00\fd\ff
  231.  
  232. ; Data 14
  233. \00\fe\ff
  234.  
  235. ; Data 15
  236. \00\7f\bb
  237.  
  238. ; Checksum
  239. \00\ac
  240.  
  241. ;******************************************************************************
  242. ;;TimeRunning
  243. ;******************************************************************************
  244. ; This is sent approximately 10 times per second.
  245. ; Setting register[0] to 1 in a format line will cause that line and
  246. ; subsequent lines to only be sent once per second (when the second's 
  247. ; digit changes) instead of approximately 10 times per second. Setting
  248. ; register[0] to 0 will resume normal operation for remaining lines.
  249.  
  250. ; Headder
  251. \10\00\3a\3a\3a\03
  252. \00\X0\=1
  253.  
  254. ; Data 0
  255. \00\X\b0\=8
  256. \00\X0\=9
  257. \13\04%2.2s\L2\S9\X\f0\|9\L0\D0
  258. \00\U0\O8\U0\O9
  259. \00\U8\-1\U9\-1
  260.  
  261. ; Data 1
  262. \00\X\f1\=8
  263. \00\X0\=9
  264. \13\04%2.2s\L1\S9\X\f0\|9\L0\D0
  265. \00\U0\O8\U0\O9
  266. \00\U8\-1\U9\-1
  267.  
  268. ; Data 2
  269. \00\X\e2\=8
  270. \00\X\ff\=9
  271. \00\U0\O8\U0\O9
  272. \00\U8\-1\U9\-1
  273.  
  274. ; Data 3
  275. \00\X\f3\=8
  276. \00\X0\=9
  277. \13\05%1.1s\L1\S9\X\f0\|9\L0\D0
  278. \00\U0\O8\U0\O9
  279. \00\U8\-1\U9\-1
  280.  
  281. ; Data 4
  282. \00\X\f4\=8
  283. \00\X0\=9
  284. \11\01%12.12s\L3\S9\X\10\*9\X\0f\|9\L0\D0
  285. \00\U0\O8\U0\O9
  286. \00\U8\-1\U9\-1
  287.  
  288. ; Data 5
  289. \00\X\f5\=8
  290. \00\X0\=9
  291. \11\01%12.12s\L5\S9\X\10\*9\X\0f\|9\L0\D0
  292. \00\U0\O8\U0\O9
  293. \00\U8\-1\U9\-1
  294.  
  295. ; Data 6
  296. \00\X\f6\=8
  297. \00\X0\=9
  298. \11\01%12.12s\L6\S9\X\10\*9\X\0f\|9\L0\D0
  299. \00\U0\O8\U0\O9
  300. \00\U8\-1\U9\-1
  301.  
  302. ; Data 7
  303. \00\X\f7\=8
  304. \00\X0\=9
  305. \11\01%12.12s\L8\S9\X\10\*9\X\0f\|9\L0\D0
  306. \00\U0\O8\U0\O9
  307. \00\U8\-1\U9\-1
  308.  
  309. ; Data 8
  310. \00\X\f8\=8
  311. \00\X0\=9
  312. \11\01%12.12s\L9\S9\X\10\*9\X\0f\|9\L0\D0
  313. \00\U0\O8\U0\O9
  314. \00\U8\-1\U9\-1
  315.  
  316. ; Data 9
  317. \00\X\f9\=8
  318. \00\X\0f\=9
  319. \00\U0\O8\U0\O9
  320. \00\U8\-1\U9\-1
  321.  
  322. ; Data 10
  323. \00\X\fa\=8
  324. \00\X\ff\=9
  325. \00\U0\O8\U0\O9
  326. \00\U8\-1\U9\-1
  327.  
  328. ; Data 11
  329. \00\X\7b\=8
  330. \00\X\ff\=9
  331. \00\U0\O8\U0\O9
  332. \00\U8\-1\U9\-1
  333.  
  334. ; Data 12
  335. \00\X\fc\=8
  336. \00\X\ff\=9
  337. \00\U0\O8\U0\O9
  338. \00\U8\-1\U9\-1
  339.  
  340. ; Data 13
  341. \00\X\fd\=8
  342. \00\X0\=9
  343. \13\06%1.1s\L1\S9\X\10\*9\X\0f\|9\L0\D0
  344. \00\U0\O8\U0\O9
  345. \00\U8\-1\U9\-1
  346.  
  347. ; Data 14
  348. \00\X\fe\=8
  349. \00\X\ff\=9
  350. \00\U0\O8\U0\O9
  351. \00\U8\-1\U9\-1
  352.  
  353. ; Data 15
  354. \00\X\7f\=8
  355. \00\X\bb\=9
  356. \00\U0\O8\U0\O9
  357. \00\U8\-1\U9\-1
  358.  
  359. ; Checksum
  360. \00\U0\O1
  361.  
  362. ;******************************************************************************
  363. ;;TimeStopped
  364. ;******************************************************************************
  365. ; This is sent when the time is stopped by a beam break.
  366.  
  367. ; Headder
  368. \10\00\3a\3a\3a\03
  369. \00\X0\=1
  370.  
  371. ; Data 0
  372. \00\X\b0\=8
  373. \00\X0\=9
  374. \13\04%2.2s\L2\S9\X\f0\|9\L0\D0
  375. \00\U0\O8\U0\O9
  376. \00\U8\-1\U9\-1
  377.  
  378. ; Data 1
  379. \00\X\f1\=8
  380. \00\X0\=9
  381. \13\04%2.2s\L1\S9\X\f0\|9\L0\D0
  382. \00\U0\O8\U0\O9
  383. \00\U8\-1\U9\-1
  384.  
  385. ; Data 2
  386. \00\X\e2\=8
  387. \00\X\ff\=9
  388. \00\U0\O8\U0\O9
  389. \00\U8\-1\U9\-1
  390.  
  391. ; Data 3
  392. \00\X\f3\=8
  393. \00\X0\=9
  394. \13\05%1.1s\L1\S9\X\f0\|9\L0\D0
  395. \00\U0\O8\U0\O9
  396. \00\U8\-1\U9\-1
  397.  
  398. ; Data 4
  399. \00\X\f4\=8
  400. \00\X0\=9
  401. \11\01%12.12s\L3\S9\X\10\*9\X\0f\|9\L0\D0
  402. \00\U0\O8\U0\O9
  403. \00\U8\-1\U9\-1
  404.  
  405. ; Data 5
  406. \00\X\f5\=8
  407. \00\X0\=9
  408. \11\01%12.12s\L5\S9\X\10\*9\X\0f\|9\L0\D0
  409. \00\U0\O8\U0\O9
  410. \00\U8\-1\U9\-1
  411.  
  412. ; Data 6
  413. \00\X\f6\=8
  414. \00\X0\=9
  415. \11\01%12.12s\L6\S9\X\10\*9\X\0f\|9\L0\D0
  416. \00\U0\O8\U0\O9
  417. \00\U8\-1\U9\-1
  418.  
  419. ; Data 7
  420. \00\X\f7\=8
  421. \00\X0\=9
  422. \11\01%12.12s\L8\S9\X\10\*9\X\0f\|9\L0\D0
  423. \00\U0\O8\U0\O9
  424. \00\U8\-1\U9\-1
  425.  
  426. ; Data 8
  427. \00\X\f8\=8
  428. \00\X0\=9
  429. \11\01%12.12s\L9\S9\X\10\*9\X\0f\|9\L0\D0
  430. \00\U0\O8\U0\O9
  431. \00\U8\-1\U9\-1
  432.  
  433. ; Data 9
  434. \00\X\f9\=8
  435. \00\X\0f\=9
  436. \00\U0\O8\U0\O9
  437. \00\U8\-1\U9\-1
  438.  
  439. ; Data 10
  440. \00\X\fa\=8
  441. \00\X\ff\=9
  442. \00\U0\O8\U0\O9
  443. \00\U8\-1\U9\-1
  444.  
  445. ; Data 11
  446. \00\X\7b\=8
  447. \00\X\ff\=9
  448. \00\U0\O8\U0\O9
  449. \00\U8\-1\U9\-1
  450.  
  451. ; Data 12
  452. \00\X\fc\=8
  453. \00\X\ff\=9
  454. \00\U0\O8\U0\O9
  455. \00\U8\-1\U9\-1
  456.  
  457. ; Data 13
  458. \00\X\fd\=8
  459. \00\X0\=9
  460. \13\06%1.1s\L1\S9\X\10\*9\X\0f\|9\L0\D0
  461. \00\U0\O8\U0\O9
  462. \00\U8\-1\U9\-1
  463.  
  464. ; Data 14
  465. \00\X\fe\=8
  466. \00\X\ff\=9
  467. \00\U0\O8\U0\O9
  468. \00\U8\-1\U9\-1
  469.  
  470. ; Data 15
  471. \00\X\7f\=8
  472. \00\X\bb\=9
  473. \00\U0\O8\U0\O9
  474. \00\U8\-1\U9\-1
  475.  
  476. ; Checksum
  477. \00\U0\O1
  478.  
  479. ;******************************************************************************
  480. ;;TimeOfDay
  481. ;******************************************************************************
  482. ; This is sent when the 'Send time of day' option is checked in the
  483. ; Scoreboard pull down menu.
  484.  
  485. ; Headder
  486. \10\00\3a\3a\3a\03
  487. \00\X0\=1
  488.  
  489. ; Data 0
  490. \00\X\b0\=8
  491. \00\X\ff\=9
  492. \00\U0\O8\U0\O9
  493. \00\U8\-1\U9\-1
  494.  
  495. ; Data 1
  496. \00\X\f1\=8
  497. \00\X\ff\=9
  498. \00\U0\O8\U0\O9
  499. \00\U8\-1\U9\-1
  500.  
  501. ; Data 2
  502. \00\X\e2\=8
  503. \00\X\ff\=9
  504. \00\U0\O8\U0\O9
  505. \00\U8\-1\U9\-1
  506.  
  507. ; Data 3
  508. \00\X\f3\=8
  509. \00\X\ff\=9
  510. \00\U0\O8\U0\O9
  511. \00\U8\-1\U9\-1
  512.  
  513. ; Data 4
  514. \00\X\f4\=8
  515. \00\X\ff\=9
  516. \00\U0\O8\U0\O9
  517. \00\U8\-1\U9\-1
  518.  
  519. ; Data 5
  520. \00\X\f5\=8
  521. \00\X0\=9
  522. \11\01%12.12s\L8\S9\X\10\*9\X\0f\|9\L0\D0
  523. \00\U0\O8\U0\O9
  524. \00\U8\-1\U9\-1
  525.  
  526. ; Data 6
  527. \00\X\f6\=8
  528. \00\X0\=9
  529. \11\01%12.12s\L9\S9\X\10\*9\X\0f\|9\L0\D0
  530. \00\U0\O8\U0\O9
  531. \00\U8\-1\U9\-1
  532.  
  533. ; Data 7
  534. \00\X\f7\=8
  535. \00\X0\=9
  536. \11\01%12.12s\L\0b\S9\X\10\*9\X\0f\|9\L0\D0
  537. \00\U0\O8\U0\O9
  538. \00\U8\-1\U9\-1
  539.  
  540. ; Data 8
  541. \00\X\f8\=8
  542. \00\X0\=9
  543. \11\01%12.12s\L\0c\S9\X\10\*9\X\0f\|9\L0\D0
  544. \00\U0\O8\U0\O9
  545. \00\U8\-1\U9\-1
  546.  
  547. ; Data 9
  548. \00\X\f9\=8
  549. \00\X\0f\=9
  550. \00\U0\O8\U0\O9
  551. \00\U8\-1\U9\-1
  552.  
  553. ; Data 10
  554. \00\X\fa\=8
  555. \00\X\ff\=9
  556. \00\U0\O8\U0\O9
  557. \00\U8\-1\U9\-1
  558.  
  559. ; Data 11
  560. \00\X\7b\=8
  561. \00\X\ff\=9
  562. \00\U0\O8\U0\O9
  563. \00\U8\-1\U9\-1
  564.  
  565. ; Data 12
  566. \00\X\fc\=8
  567. \00\X\ff\=9
  568. \00\U0\O8\U0\O9
  569. \00\U8\-1\U9\-1
  570.  
  571. ; Data 13
  572. \00\X\fd\=8
  573. \00\X\ff\=9
  574. \00\U0\O8\U0\O9
  575. \00\U8\-1\U9\-1
  576.  
  577. ; Data 14
  578. \00\X\fe\=8
  579. \00\X\ff\=9
  580. \00\U0\O8\U0\O9
  581. \00\U8\-1\U9\-1
  582.  
  583. ; Data 15
  584. \00\X\7f\=8
  585. \00\X\bb\=9
  586. \00\U0\O8\U0\O9
  587. \00\U8\-1\U9\-1
  588.  
  589. ; Checksum
  590. \00\U0\O1
  591.  
  592. ;******************************************************************************
  593. ;;Results
  594. ;******************************************************************************
  595. ; This is sent once for each result line displayed on the scoreboard.
  596. ; Register[0] is initialized with the index of the current result line and
  597. ; will range from 0 through PageSize - 1.
  598.  
  599. ; Headder
  600. \10\00\3a\3a\3a\03
  601. \00\X0\=1
  602.  
  603. ; Data 0
  604. \00\X\b0\=8
  605. \00\X0\=2\X0\=9
  606. \13\04%2.2s\L2\S2\L0\D0
  607. \14\02%2.2s\L2\S9\X\10\*9\U2\|9\L0\D0
  608. \00\U0\O8\U0\O9
  609. \00\U8\-1\U9\-1
  610.  
  611. ; Data 1
  612. \00\X\f1\=8
  613. \00\X0\=2\X0\=9
  614. \13\04%2.2s\L1\S2\L0\D0
  615. \14\02%2.2s\L1\S9\X\10\*9\U2\|9\L0\D0
  616. \00\U0\O8\U0\O9
  617. \00\U8\-1\U9\-1
  618.  
  619. ; Data 2
  620. \00\X\e2\=8
  621. \00\X0\=9
  622. \14\06%12.12s\L1\S9\X\10\*9\X\0f\|9\L0\D0
  623. \00\U0\O8\U0\O9
  624. \00\U8\-1\U9\-1
  625.  
  626. ; Data 3
  627. \00\X\f3\=8
  628. \00\X0\=9
  629. \13\05%1.1s\L1\S2\L0\D0
  630. \14\06%12.12s\L2\S9\X\10\*9\U2\|9\L0\D0
  631. \00\U0\O8\U0\O9
  632. \00\U8\-1\U9\-1
  633.  
  634. ; Data 4
  635. \00\X\f4\=8
  636. \00\X0\=9
  637. \14\06%12.12s\L3\S9\X\10\*9\X\0f\|9\L0\D0
  638. \00\U0\O8\U0\O9
  639. \00\U8\-1\U9\-1
  640.  
  641. ; Data 5
  642. \00\X\f5\=8
  643. \00\X0\=9
  644. \14\06%12.12s\L5\S9\X\10\*9\X\0f\|9\L0\D0
  645. \00\U0\O8\U0\O9
  646. \00\U8\-1\U9\-1
  647.  
  648. ; Data 6
  649. \00\X\f6\=8
  650. \00\X0\=9
  651. \14\06%12.12s\L6\S9\X\10\*9\X\0f\|9\L0\D0
  652. \00\U0\O8\U0\O9
  653. \00\U8\-1\U9\-1
  654.  
  655. ; Data 7
  656. \00\X\f7\=8
  657. \00\X0\=2\X0\=9
  658. \14\01%2.2s\L2\S2\L0\D0
  659. \14\06%12.12s\L8\S9\X\10\*9\U2\|9\L0\D0
  660. \00\U0\O8\U0\O9
  661. \00\U8\-1\U9\-1
  662.  
  663. ; Data 8
  664. \00\X\f8\=8
  665. \00\X0\=2\X0\=9
  666. \14\01%2.2s\L1\S2\L0\D0
  667. \14\06%12.12s\L9\S9\X\10\*9\U2\|9\L0\D0
  668. \00\U0\O8\U0\O9
  669. \00\U8\-1\U9\-1
  670.  
  671. ; Data 9
  672. \00\X\f9\=8
  673. \00\X0\=9
  674. \14\03%2.2s\L2\S9\L0\D0
  675. \00\U0\O8\U0\O9
  676. \00\U8\-1\U9\-1
  677.  
  678. ; Data 10
  679. \00\X\fa\=8
  680. \00\X0\=9
  681. \14\03%2.2s\L1\S9\X\f0\|9\L0\D0
  682. \00\U0\O8\U0\O9
  683. \00\U8\-1\U9\-1
  684.  
  685. ; Data 11
  686. \00\X\7b\=8
  687. \00\X\ff\=9
  688. \00\U0\O8\U0\O9
  689. \00\U8\-1\U9\-1
  690.  
  691. ; Data 12
  692. \00\X\fc\=8
  693. \00\X\ff\=9
  694. \00\U0\O8\U0\O9
  695. \00\U8\-1\U9\-1
  696.  
  697. ; Data 13
  698. \00\X\fd\=8
  699. \00\X0\=9
  700. \13\06%1.1s\L1\S9\X\10\*9\X\0f\|9\L0\D0
  701. \00\U0\O8\U0\O9
  702. \00\U8\-1\U9\-1
  703.  
  704. ; Data 14
  705. \00\X\fe\=8
  706. \00\X\ff\=9
  707. \00\U0\O8\U0\O9
  708. \00\U8\-1\U9\-1
  709.  
  710. ; Data 15
  711. \00\X\7f\=8
  712. \00\X\bb\=9
  713. \00\U0\O8\U0\O9
  714. \00\U8\-1\U9\-1
  715.  
  716. ; Checksum
  717. \00\U0\O1
  718.  
  719.