multi_compress 0.3.2 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -3
  3. data/GET_STARTED.md +3 -3
  4. data/README.md +75 -66
  5. data/THIRD_PARTY_NOTICES.md +24 -0
  6. data/ext/multi_compress/brotli_dec_static_init.c +3 -0
  7. data/ext/multi_compress/brotli_enc_static_init.c +3 -0
  8. data/ext/multi_compress/extconf.rb +79 -3
  9. data/ext/multi_compress/multi_compress.c +199 -120
  10. data/ext/multi_compress/vendor/.vendored +2 -2
  11. data/ext/multi_compress/vendor/brotli/LICENSE +19 -0
  12. data/ext/multi_compress/vendor/brotli/c/common/constants.c +7 -7
  13. data/ext/multi_compress/vendor/brotli/c/common/constants.h +2 -5
  14. data/ext/multi_compress/vendor/brotli/c/common/context.c +2 -2
  15. data/ext/multi_compress/vendor/brotli/c/common/context.h +1 -2
  16. data/ext/multi_compress/vendor/brotli/c/common/dictionary.c +4 -5856
  17. data/ext/multi_compress/vendor/brotli/c/common/dictionary.h +1 -2
  18. data/ext/multi_compress/vendor/brotli/c/common/dictionary_inc.h +5847 -0
  19. data/ext/multi_compress/vendor/brotli/c/common/platform.c +0 -4
  20. data/ext/multi_compress/vendor/brotli/c/common/platform.h +182 -43
  21. data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary.c +3 -7
  22. data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary_internal.h +1 -1
  23. data/ext/multi_compress/vendor/brotli/c/common/static_init.h +56 -0
  24. data/ext/multi_compress/vendor/brotli/c/common/transform.c +6 -4
  25. data/ext/multi_compress/vendor/brotli/c/common/transform.h +1 -2
  26. data/ext/multi_compress/vendor/brotli/c/common/version.h +3 -3
  27. data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.c +2 -3
  28. data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.h +0 -4
  29. data/ext/multi_compress/vendor/brotli/c/dec/decode.c +128 -39
  30. data/ext/multi_compress/vendor/brotli/c/dec/huffman.c +2 -5
  31. data/ext/multi_compress/vendor/brotli/c/dec/huffman.h +0 -2
  32. data/ext/multi_compress/vendor/brotli/c/dec/prefix.c +67 -0
  33. data/ext/multi_compress/vendor/brotli/c/dec/prefix.h +18 -708
  34. data/ext/multi_compress/vendor/brotli/c/dec/prefix_inc.h +707 -0
  35. data/ext/multi_compress/vendor/brotli/c/dec/state.c +18 -15
  36. data/ext/multi_compress/vendor/brotli/c/dec/state.h +2 -6
  37. data/ext/multi_compress/vendor/brotli/c/dec/static_init.c +53 -0
  38. data/ext/multi_compress/vendor/brotli/c/dec/static_init.h +30 -0
  39. data/ext/multi_compress/vendor/brotli/c/enc/backward_references.c +32 -8
  40. data/ext/multi_compress/vendor/brotli/c/enc/backward_references.h +1 -5
  41. data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.c +15 -15
  42. data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.h +1 -5
  43. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.c +28 -4
  44. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.h +8 -40
  45. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost_inc.h +1 -1
  46. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.c +9 -12
  47. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.h +0 -3
  48. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter_inc.h +14 -8
  49. data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.c +10 -9
  50. data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.h +0 -6
  51. data/ext/multi_compress/vendor/brotli/c/enc/cluster.c +0 -2
  52. data/ext/multi_compress/vendor/brotli/c/enc/cluster.h +0 -2
  53. data/ext/multi_compress/vendor/brotli/c/enc/command.c +1 -1
  54. data/ext/multi_compress/vendor/brotli/c/enc/command.h +8 -10
  55. data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.c +3 -5
  56. data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.h +1 -4
  57. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.c +3 -13
  58. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.h +0 -2
  59. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.c +5 -15
  60. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.h +0 -2
  61. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.c +127 -1830
  62. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.h +23 -3
  63. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash_inc.h +1829 -0
  64. data/ext/multi_compress/vendor/brotli/c/enc/encode.c +77 -52
  65. data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.c +9 -7
  66. data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.h +2 -4
  67. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.c +3 -6
  68. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.h +2 -4
  69. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode_static.h +18 -12
  70. data/ext/multi_compress/vendor/brotli/c/enc/fast_log.c +1 -1
  71. data/ext/multi_compress/vendor/brotli/c/enc/fast_log.h +2 -3
  72. data/ext/multi_compress/vendor/brotli/c/enc/find_match_length.h +0 -2
  73. data/ext/multi_compress/vendor/brotli/c/enc/hash.h +38 -31
  74. data/ext/multi_compress/vendor/brotli/c/enc/hash_base.h +38 -0
  75. data/ext/multi_compress/vendor/brotli/c/enc/hash_forgetful_chain_inc.h +11 -1
  76. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match64_inc.h +24 -7
  77. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match64_simd_inc.h +304 -0
  78. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_inc.h +30 -11
  79. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_quickly_inc.h +4 -0
  80. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_simd_inc.h +278 -0
  81. data/ext/multi_compress/vendor/brotli/c/enc/histogram.c +1 -0
  82. data/ext/multi_compress/vendor/brotli/c/enc/histogram.h +0 -4
  83. data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.c +4 -6
  84. data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.h +0 -2
  85. data/ext/multi_compress/vendor/brotli/c/enc/matching_tag_mask.h +69 -0
  86. data/ext/multi_compress/vendor/brotli/c/enc/memory.c +0 -5
  87. data/ext/multi_compress/vendor/brotli/c/enc/memory.h +0 -4
  88. data/ext/multi_compress/vendor/brotli/c/enc/metablock.c +7 -9
  89. data/ext/multi_compress/vendor/brotli/c/enc/metablock.h +3 -3
  90. data/ext/multi_compress/vendor/brotli/c/enc/metablock_inc.h +4 -4
  91. data/ext/multi_compress/vendor/brotli/c/enc/params.h +0 -1
  92. data/ext/multi_compress/vendor/brotli/c/enc/prefix.h +0 -2
  93. data/ext/multi_compress/vendor/brotli/c/enc/quality.h +17 -10
  94. data/ext/multi_compress/vendor/brotli/c/enc/ringbuffer.h +1 -4
  95. data/ext/multi_compress/vendor/brotli/c/enc/state.h +2 -2
  96. data/ext/multi_compress/vendor/brotli/c/enc/static_dict.c +5 -11
  97. data/ext/multi_compress/vendor/brotli/c/enc/static_dict.h +1 -3
  98. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut.c +224 -0
  99. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut.h +20 -5837
  100. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut_inc.h +5830 -0
  101. data/ext/multi_compress/vendor/brotli/c/enc/static_init.c +59 -0
  102. data/ext/multi_compress/vendor/brotli/c/enc/static_init.h +30 -0
  103. data/ext/multi_compress/vendor/brotli/c/enc/static_init_lazy.cc +26 -0
  104. data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.c +1 -1
  105. data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.h +0 -2
  106. data/ext/multi_compress/vendor/brotli/c/enc/write_bits.h +0 -2
  107. data/ext/multi_compress/vendor/brotli/c/include/brotli/decode.h +1 -1
  108. data/ext/multi_compress/vendor/brotli/c/include/brotli/encode.h +5 -1
  109. data/ext/multi_compress/vendor/brotli/c/include/brotli/port.h +4 -7
  110. data/ext/multi_compress/vendor/brotli/c/include/brotli/types.h +2 -2
  111. data/ext/multi_compress/vendor/lz4/LICENSE +12 -0
  112. data/ext/multi_compress/vendor/zstd/COPYING +339 -0
  113. data/ext/multi_compress/vendor/zstd/LICENSE +30 -0
  114. data/ext/multi_compress/vendor/zstd/lib/Makefile +67 -35
  115. data/ext/multi_compress/vendor/zstd/lib/README.md +33 -2
  116. data/ext/multi_compress/vendor/zstd/lib/common/allocations.h +55 -0
  117. data/ext/multi_compress/vendor/zstd/lib/common/bits.h +205 -0
  118. data/ext/multi_compress/vendor/zstd/lib/common/bitstream.h +84 -108
  119. data/ext/multi_compress/vendor/zstd/lib/common/compiler.h +170 -41
  120. data/ext/multi_compress/vendor/zstd/lib/common/cpu.h +37 -1
  121. data/ext/multi_compress/vendor/zstd/lib/common/debug.c +7 -1
  122. data/ext/multi_compress/vendor/zstd/lib/common/debug.h +21 -21
  123. data/ext/multi_compress/vendor/zstd/lib/common/entropy_common.c +12 -40
  124. data/ext/multi_compress/vendor/zstd/lib/common/error_private.c +10 -2
  125. data/ext/multi_compress/vendor/zstd/lib/common/error_private.h +46 -47
  126. data/ext/multi_compress/vendor/zstd/lib/common/fse.h +8 -100
  127. data/ext/multi_compress/vendor/zstd/lib/common/fse_decompress.c +28 -116
  128. data/ext/multi_compress/vendor/zstd/lib/common/huf.h +79 -166
  129. data/ext/multi_compress/vendor/zstd/lib/common/mem.h +46 -66
  130. data/ext/multi_compress/vendor/zstd/lib/common/pool.c +27 -11
  131. data/ext/multi_compress/vendor/zstd/lib/common/pool.h +8 -11
  132. data/ext/multi_compress/vendor/zstd/lib/common/portability_macros.h +45 -11
  133. data/ext/multi_compress/vendor/zstd/lib/common/threading.c +74 -14
  134. data/ext/multi_compress/vendor/zstd/lib/common/threading.h +5 -18
  135. data/ext/multi_compress/vendor/zstd/lib/common/xxhash.c +5 -11
  136. data/ext/multi_compress/vendor/zstd/lib/common/xxhash.h +2411 -1003
  137. data/ext/multi_compress/vendor/zstd/lib/common/zstd_common.c +1 -36
  138. data/ext/multi_compress/vendor/zstd/lib/common/zstd_deps.h +13 -1
  139. data/ext/multi_compress/vendor/zstd/lib/common/zstd_internal.h +13 -182
  140. data/ext/multi_compress/vendor/zstd/lib/common/zstd_trace.h +6 -13
  141. data/ext/multi_compress/vendor/zstd/lib/compress/clevels.h +1 -1
  142. data/ext/multi_compress/vendor/zstd/lib/compress/fse_compress.c +15 -131
  143. data/ext/multi_compress/vendor/zstd/lib/compress/hist.c +11 -1
  144. data/ext/multi_compress/vendor/zstd/lib/compress/hist.h +8 -1
  145. data/ext/multi_compress/vendor/zstd/lib/compress/huf_compress.c +283 -189
  146. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress.c +2419 -903
  147. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_internal.h +423 -245
  148. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.c +116 -40
  149. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.h +16 -8
  150. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.c +10 -10
  151. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.h +8 -7
  152. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.c +254 -139
  153. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.h +1 -1
  154. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_cwksp.h +184 -95
  155. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.c +163 -81
  156. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.h +18 -14
  157. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.c +507 -197
  158. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.h +7 -14
  159. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.c +579 -484
  160. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.h +133 -65
  161. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.c +61 -40
  162. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.h +7 -15
  163. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm_geartab.h +1 -1
  164. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.c +352 -218
  165. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.h +37 -21
  166. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_preSplit.c +238 -0
  167. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_preSplit.h +33 -0
  168. data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.c +239 -175
  169. data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.h +5 -16
  170. data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress.c +543 -488
  171. data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress_amd64.S +78 -61
  172. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.c +4 -4
  173. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.h +1 -1
  174. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress.c +295 -115
  175. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.c +430 -293
  176. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.h +7 -2
  177. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_internal.h +11 -7
  178. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff.h +1 -1
  179. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_common.c +1 -1
  180. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_compress.c +1 -1
  181. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_decompress.c +3 -1
  182. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.c +95 -46
  183. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.h +3 -9
  184. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/divsufsort.h +0 -10
  185. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/fastcover.c +4 -4
  186. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/zdict.c +25 -97
  187. data/ext/multi_compress/vendor/zstd/lib/dll/example/Makefile +1 -1
  188. data/ext/multi_compress/vendor/zstd/lib/dll/example/README.md +1 -1
  189. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_legacy.h +38 -1
  190. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.c +19 -50
  191. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.h +1 -1
  192. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.c +27 -80
  193. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.h +1 -1
  194. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.c +28 -83
  195. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.h +1 -1
  196. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.c +25 -74
  197. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.h +1 -1
  198. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.c +31 -76
  199. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.h +1 -1
  200. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.c +44 -88
  201. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.h +1 -1
  202. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.c +33 -84
  203. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.h +1 -1
  204. data/ext/multi_compress/vendor/zstd/lib/libzstd.mk +65 -33
  205. data/ext/multi_compress/vendor/zstd/lib/libzstd.pc.in +5 -5
  206. data/ext/multi_compress/vendor/zstd/lib/module.modulemap +13 -3
  207. data/ext/multi_compress/vendor/zstd/lib/zdict.h +65 -36
  208. data/ext/multi_compress/vendor/zstd/lib/zstd.h +890 -267
  209. data/ext/multi_compress/vendor/zstd/lib/zstd_errors.h +28 -16
  210. data/lib/multi_compress/version.rb +1 -1
  211. data/lib/multi_compress.rb +80 -41
  212. metadata +29 -2
@@ -0,0 +1,707 @@
1
+ const BROTLI_MODEL("small")
2
+ CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS] = {
3
+ { 0x00, 0x00, 0, 0x00, 0x0000, 0x0002 },
4
+ { 0x00, 0x00, 0, 0x01, 0x0000, 0x0003 },
5
+ { 0x00, 0x00, 0, 0x02, 0x0000, 0x0004 },
6
+ { 0x00, 0x00, 0, 0x03, 0x0000, 0x0005 },
7
+ { 0x00, 0x00, 0, 0x03, 0x0000, 0x0006 },
8
+ { 0x00, 0x00, 0, 0x03, 0x0000, 0x0007 },
9
+ { 0x00, 0x00, 0, 0x03, 0x0000, 0x0008 },
10
+ { 0x00, 0x00, 0, 0x03, 0x0000, 0x0009 },
11
+ { 0x00, 0x00, 0, 0x00, 0x0001, 0x0002 },
12
+ { 0x00, 0x00, 0, 0x01, 0x0001, 0x0003 },
13
+ { 0x00, 0x00, 0, 0x02, 0x0001, 0x0004 },
14
+ { 0x00, 0x00, 0, 0x03, 0x0001, 0x0005 },
15
+ { 0x00, 0x00, 0, 0x03, 0x0001, 0x0006 },
16
+ { 0x00, 0x00, 0, 0x03, 0x0001, 0x0007 },
17
+ { 0x00, 0x00, 0, 0x03, 0x0001, 0x0008 },
18
+ { 0x00, 0x00, 0, 0x03, 0x0001, 0x0009 },
19
+ { 0x00, 0x00, 0, 0x00, 0x0002, 0x0002 },
20
+ { 0x00, 0x00, 0, 0x01, 0x0002, 0x0003 },
21
+ { 0x00, 0x00, 0, 0x02, 0x0002, 0x0004 },
22
+ { 0x00, 0x00, 0, 0x03, 0x0002, 0x0005 },
23
+ { 0x00, 0x00, 0, 0x03, 0x0002, 0x0006 },
24
+ { 0x00, 0x00, 0, 0x03, 0x0002, 0x0007 },
25
+ { 0x00, 0x00, 0, 0x03, 0x0002, 0x0008 },
26
+ { 0x00, 0x00, 0, 0x03, 0x0002, 0x0009 },
27
+ { 0x00, 0x00, 0, 0x00, 0x0003, 0x0002 },
28
+ { 0x00, 0x00, 0, 0x01, 0x0003, 0x0003 },
29
+ { 0x00, 0x00, 0, 0x02, 0x0003, 0x0004 },
30
+ { 0x00, 0x00, 0, 0x03, 0x0003, 0x0005 },
31
+ { 0x00, 0x00, 0, 0x03, 0x0003, 0x0006 },
32
+ { 0x00, 0x00, 0, 0x03, 0x0003, 0x0007 },
33
+ { 0x00, 0x00, 0, 0x03, 0x0003, 0x0008 },
34
+ { 0x00, 0x00, 0, 0x03, 0x0003, 0x0009 },
35
+ { 0x00, 0x00, 0, 0x00, 0x0004, 0x0002 },
36
+ { 0x00, 0x00, 0, 0x01, 0x0004, 0x0003 },
37
+ { 0x00, 0x00, 0, 0x02, 0x0004, 0x0004 },
38
+ { 0x00, 0x00, 0, 0x03, 0x0004, 0x0005 },
39
+ { 0x00, 0x00, 0, 0x03, 0x0004, 0x0006 },
40
+ { 0x00, 0x00, 0, 0x03, 0x0004, 0x0007 },
41
+ { 0x00, 0x00, 0, 0x03, 0x0004, 0x0008 },
42
+ { 0x00, 0x00, 0, 0x03, 0x0004, 0x0009 },
43
+ { 0x00, 0x00, 0, 0x00, 0x0005, 0x0002 },
44
+ { 0x00, 0x00, 0, 0x01, 0x0005, 0x0003 },
45
+ { 0x00, 0x00, 0, 0x02, 0x0005, 0x0004 },
46
+ { 0x00, 0x00, 0, 0x03, 0x0005, 0x0005 },
47
+ { 0x00, 0x00, 0, 0x03, 0x0005, 0x0006 },
48
+ { 0x00, 0x00, 0, 0x03, 0x0005, 0x0007 },
49
+ { 0x00, 0x00, 0, 0x03, 0x0005, 0x0008 },
50
+ { 0x00, 0x00, 0, 0x03, 0x0005, 0x0009 },
51
+ { 0x01, 0x00, 0, 0x00, 0x0006, 0x0002 },
52
+ { 0x01, 0x00, 0, 0x01, 0x0006, 0x0003 },
53
+ { 0x01, 0x00, 0, 0x02, 0x0006, 0x0004 },
54
+ { 0x01, 0x00, 0, 0x03, 0x0006, 0x0005 },
55
+ { 0x01, 0x00, 0, 0x03, 0x0006, 0x0006 },
56
+ { 0x01, 0x00, 0, 0x03, 0x0006, 0x0007 },
57
+ { 0x01, 0x00, 0, 0x03, 0x0006, 0x0008 },
58
+ { 0x01, 0x00, 0, 0x03, 0x0006, 0x0009 },
59
+ { 0x01, 0x00, 0, 0x00, 0x0008, 0x0002 },
60
+ { 0x01, 0x00, 0, 0x01, 0x0008, 0x0003 },
61
+ { 0x01, 0x00, 0, 0x02, 0x0008, 0x0004 },
62
+ { 0x01, 0x00, 0, 0x03, 0x0008, 0x0005 },
63
+ { 0x01, 0x00, 0, 0x03, 0x0008, 0x0006 },
64
+ { 0x01, 0x00, 0, 0x03, 0x0008, 0x0007 },
65
+ { 0x01, 0x00, 0, 0x03, 0x0008, 0x0008 },
66
+ { 0x01, 0x00, 0, 0x03, 0x0008, 0x0009 },
67
+ { 0x00, 0x01, 0, 0x03, 0x0000, 0x000a },
68
+ { 0x00, 0x01, 0, 0x03, 0x0000, 0x000c },
69
+ { 0x00, 0x02, 0, 0x03, 0x0000, 0x000e },
70
+ { 0x00, 0x02, 0, 0x03, 0x0000, 0x0012 },
71
+ { 0x00, 0x03, 0, 0x03, 0x0000, 0x0016 },
72
+ { 0x00, 0x03, 0, 0x03, 0x0000, 0x001e },
73
+ { 0x00, 0x04, 0, 0x03, 0x0000, 0x0026 },
74
+ { 0x00, 0x04, 0, 0x03, 0x0000, 0x0036 },
75
+ { 0x00, 0x01, 0, 0x03, 0x0001, 0x000a },
76
+ { 0x00, 0x01, 0, 0x03, 0x0001, 0x000c },
77
+ { 0x00, 0x02, 0, 0x03, 0x0001, 0x000e },
78
+ { 0x00, 0x02, 0, 0x03, 0x0001, 0x0012 },
79
+ { 0x00, 0x03, 0, 0x03, 0x0001, 0x0016 },
80
+ { 0x00, 0x03, 0, 0x03, 0x0001, 0x001e },
81
+ { 0x00, 0x04, 0, 0x03, 0x0001, 0x0026 },
82
+ { 0x00, 0x04, 0, 0x03, 0x0001, 0x0036 },
83
+ { 0x00, 0x01, 0, 0x03, 0x0002, 0x000a },
84
+ { 0x00, 0x01, 0, 0x03, 0x0002, 0x000c },
85
+ { 0x00, 0x02, 0, 0x03, 0x0002, 0x000e },
86
+ { 0x00, 0x02, 0, 0x03, 0x0002, 0x0012 },
87
+ { 0x00, 0x03, 0, 0x03, 0x0002, 0x0016 },
88
+ { 0x00, 0x03, 0, 0x03, 0x0002, 0x001e },
89
+ { 0x00, 0x04, 0, 0x03, 0x0002, 0x0026 },
90
+ { 0x00, 0x04, 0, 0x03, 0x0002, 0x0036 },
91
+ { 0x00, 0x01, 0, 0x03, 0x0003, 0x000a },
92
+ { 0x00, 0x01, 0, 0x03, 0x0003, 0x000c },
93
+ { 0x00, 0x02, 0, 0x03, 0x0003, 0x000e },
94
+ { 0x00, 0x02, 0, 0x03, 0x0003, 0x0012 },
95
+ { 0x00, 0x03, 0, 0x03, 0x0003, 0x0016 },
96
+ { 0x00, 0x03, 0, 0x03, 0x0003, 0x001e },
97
+ { 0x00, 0x04, 0, 0x03, 0x0003, 0x0026 },
98
+ { 0x00, 0x04, 0, 0x03, 0x0003, 0x0036 },
99
+ { 0x00, 0x01, 0, 0x03, 0x0004, 0x000a },
100
+ { 0x00, 0x01, 0, 0x03, 0x0004, 0x000c },
101
+ { 0x00, 0x02, 0, 0x03, 0x0004, 0x000e },
102
+ { 0x00, 0x02, 0, 0x03, 0x0004, 0x0012 },
103
+ { 0x00, 0x03, 0, 0x03, 0x0004, 0x0016 },
104
+ { 0x00, 0x03, 0, 0x03, 0x0004, 0x001e },
105
+ { 0x00, 0x04, 0, 0x03, 0x0004, 0x0026 },
106
+ { 0x00, 0x04, 0, 0x03, 0x0004, 0x0036 },
107
+ { 0x00, 0x01, 0, 0x03, 0x0005, 0x000a },
108
+ { 0x00, 0x01, 0, 0x03, 0x0005, 0x000c },
109
+ { 0x00, 0x02, 0, 0x03, 0x0005, 0x000e },
110
+ { 0x00, 0x02, 0, 0x03, 0x0005, 0x0012 },
111
+ { 0x00, 0x03, 0, 0x03, 0x0005, 0x0016 },
112
+ { 0x00, 0x03, 0, 0x03, 0x0005, 0x001e },
113
+ { 0x00, 0x04, 0, 0x03, 0x0005, 0x0026 },
114
+ { 0x00, 0x04, 0, 0x03, 0x0005, 0x0036 },
115
+ { 0x01, 0x01, 0, 0x03, 0x0006, 0x000a },
116
+ { 0x01, 0x01, 0, 0x03, 0x0006, 0x000c },
117
+ { 0x01, 0x02, 0, 0x03, 0x0006, 0x000e },
118
+ { 0x01, 0x02, 0, 0x03, 0x0006, 0x0012 },
119
+ { 0x01, 0x03, 0, 0x03, 0x0006, 0x0016 },
120
+ { 0x01, 0x03, 0, 0x03, 0x0006, 0x001e },
121
+ { 0x01, 0x04, 0, 0x03, 0x0006, 0x0026 },
122
+ { 0x01, 0x04, 0, 0x03, 0x0006, 0x0036 },
123
+ { 0x01, 0x01, 0, 0x03, 0x0008, 0x000a },
124
+ { 0x01, 0x01, 0, 0x03, 0x0008, 0x000c },
125
+ { 0x01, 0x02, 0, 0x03, 0x0008, 0x000e },
126
+ { 0x01, 0x02, 0, 0x03, 0x0008, 0x0012 },
127
+ { 0x01, 0x03, 0, 0x03, 0x0008, 0x0016 },
128
+ { 0x01, 0x03, 0, 0x03, 0x0008, 0x001e },
129
+ { 0x01, 0x04, 0, 0x03, 0x0008, 0x0026 },
130
+ { 0x01, 0x04, 0, 0x03, 0x0008, 0x0036 },
131
+ { 0x00, 0x00, -1, 0x00, 0x0000, 0x0002 },
132
+ { 0x00, 0x00, -1, 0x01, 0x0000, 0x0003 },
133
+ { 0x00, 0x00, -1, 0x02, 0x0000, 0x0004 },
134
+ { 0x00, 0x00, -1, 0x03, 0x0000, 0x0005 },
135
+ { 0x00, 0x00, -1, 0x03, 0x0000, 0x0006 },
136
+ { 0x00, 0x00, -1, 0x03, 0x0000, 0x0007 },
137
+ { 0x00, 0x00, -1, 0x03, 0x0000, 0x0008 },
138
+ { 0x00, 0x00, -1, 0x03, 0x0000, 0x0009 },
139
+ { 0x00, 0x00, -1, 0x00, 0x0001, 0x0002 },
140
+ { 0x00, 0x00, -1, 0x01, 0x0001, 0x0003 },
141
+ { 0x00, 0x00, -1, 0x02, 0x0001, 0x0004 },
142
+ { 0x00, 0x00, -1, 0x03, 0x0001, 0x0005 },
143
+ { 0x00, 0x00, -1, 0x03, 0x0001, 0x0006 },
144
+ { 0x00, 0x00, -1, 0x03, 0x0001, 0x0007 },
145
+ { 0x00, 0x00, -1, 0x03, 0x0001, 0x0008 },
146
+ { 0x00, 0x00, -1, 0x03, 0x0001, 0x0009 },
147
+ { 0x00, 0x00, -1, 0x00, 0x0002, 0x0002 },
148
+ { 0x00, 0x00, -1, 0x01, 0x0002, 0x0003 },
149
+ { 0x00, 0x00, -1, 0x02, 0x0002, 0x0004 },
150
+ { 0x00, 0x00, -1, 0x03, 0x0002, 0x0005 },
151
+ { 0x00, 0x00, -1, 0x03, 0x0002, 0x0006 },
152
+ { 0x00, 0x00, -1, 0x03, 0x0002, 0x0007 },
153
+ { 0x00, 0x00, -1, 0x03, 0x0002, 0x0008 },
154
+ { 0x00, 0x00, -1, 0x03, 0x0002, 0x0009 },
155
+ { 0x00, 0x00, -1, 0x00, 0x0003, 0x0002 },
156
+ { 0x00, 0x00, -1, 0x01, 0x0003, 0x0003 },
157
+ { 0x00, 0x00, -1, 0x02, 0x0003, 0x0004 },
158
+ { 0x00, 0x00, -1, 0x03, 0x0003, 0x0005 },
159
+ { 0x00, 0x00, -1, 0x03, 0x0003, 0x0006 },
160
+ { 0x00, 0x00, -1, 0x03, 0x0003, 0x0007 },
161
+ { 0x00, 0x00, -1, 0x03, 0x0003, 0x0008 },
162
+ { 0x00, 0x00, -1, 0x03, 0x0003, 0x0009 },
163
+ { 0x00, 0x00, -1, 0x00, 0x0004, 0x0002 },
164
+ { 0x00, 0x00, -1, 0x01, 0x0004, 0x0003 },
165
+ { 0x00, 0x00, -1, 0x02, 0x0004, 0x0004 },
166
+ { 0x00, 0x00, -1, 0x03, 0x0004, 0x0005 },
167
+ { 0x00, 0x00, -1, 0x03, 0x0004, 0x0006 },
168
+ { 0x00, 0x00, -1, 0x03, 0x0004, 0x0007 },
169
+ { 0x00, 0x00, -1, 0x03, 0x0004, 0x0008 },
170
+ { 0x00, 0x00, -1, 0x03, 0x0004, 0x0009 },
171
+ { 0x00, 0x00, -1, 0x00, 0x0005, 0x0002 },
172
+ { 0x00, 0x00, -1, 0x01, 0x0005, 0x0003 },
173
+ { 0x00, 0x00, -1, 0x02, 0x0005, 0x0004 },
174
+ { 0x00, 0x00, -1, 0x03, 0x0005, 0x0005 },
175
+ { 0x00, 0x00, -1, 0x03, 0x0005, 0x0006 },
176
+ { 0x00, 0x00, -1, 0x03, 0x0005, 0x0007 },
177
+ { 0x00, 0x00, -1, 0x03, 0x0005, 0x0008 },
178
+ { 0x00, 0x00, -1, 0x03, 0x0005, 0x0009 },
179
+ { 0x01, 0x00, -1, 0x00, 0x0006, 0x0002 },
180
+ { 0x01, 0x00, -1, 0x01, 0x0006, 0x0003 },
181
+ { 0x01, 0x00, -1, 0x02, 0x0006, 0x0004 },
182
+ { 0x01, 0x00, -1, 0x03, 0x0006, 0x0005 },
183
+ { 0x01, 0x00, -1, 0x03, 0x0006, 0x0006 },
184
+ { 0x01, 0x00, -1, 0x03, 0x0006, 0x0007 },
185
+ { 0x01, 0x00, -1, 0x03, 0x0006, 0x0008 },
186
+ { 0x01, 0x00, -1, 0x03, 0x0006, 0x0009 },
187
+ { 0x01, 0x00, -1, 0x00, 0x0008, 0x0002 },
188
+ { 0x01, 0x00, -1, 0x01, 0x0008, 0x0003 },
189
+ { 0x01, 0x00, -1, 0x02, 0x0008, 0x0004 },
190
+ { 0x01, 0x00, -1, 0x03, 0x0008, 0x0005 },
191
+ { 0x01, 0x00, -1, 0x03, 0x0008, 0x0006 },
192
+ { 0x01, 0x00, -1, 0x03, 0x0008, 0x0007 },
193
+ { 0x01, 0x00, -1, 0x03, 0x0008, 0x0008 },
194
+ { 0x01, 0x00, -1, 0x03, 0x0008, 0x0009 },
195
+ { 0x00, 0x01, -1, 0x03, 0x0000, 0x000a },
196
+ { 0x00, 0x01, -1, 0x03, 0x0000, 0x000c },
197
+ { 0x00, 0x02, -1, 0x03, 0x0000, 0x000e },
198
+ { 0x00, 0x02, -1, 0x03, 0x0000, 0x0012 },
199
+ { 0x00, 0x03, -1, 0x03, 0x0000, 0x0016 },
200
+ { 0x00, 0x03, -1, 0x03, 0x0000, 0x001e },
201
+ { 0x00, 0x04, -1, 0x03, 0x0000, 0x0026 },
202
+ { 0x00, 0x04, -1, 0x03, 0x0000, 0x0036 },
203
+ { 0x00, 0x01, -1, 0x03, 0x0001, 0x000a },
204
+ { 0x00, 0x01, -1, 0x03, 0x0001, 0x000c },
205
+ { 0x00, 0x02, -1, 0x03, 0x0001, 0x000e },
206
+ { 0x00, 0x02, -1, 0x03, 0x0001, 0x0012 },
207
+ { 0x00, 0x03, -1, 0x03, 0x0001, 0x0016 },
208
+ { 0x00, 0x03, -1, 0x03, 0x0001, 0x001e },
209
+ { 0x00, 0x04, -1, 0x03, 0x0001, 0x0026 },
210
+ { 0x00, 0x04, -1, 0x03, 0x0001, 0x0036 },
211
+ { 0x00, 0x01, -1, 0x03, 0x0002, 0x000a },
212
+ { 0x00, 0x01, -1, 0x03, 0x0002, 0x000c },
213
+ { 0x00, 0x02, -1, 0x03, 0x0002, 0x000e },
214
+ { 0x00, 0x02, -1, 0x03, 0x0002, 0x0012 },
215
+ { 0x00, 0x03, -1, 0x03, 0x0002, 0x0016 },
216
+ { 0x00, 0x03, -1, 0x03, 0x0002, 0x001e },
217
+ { 0x00, 0x04, -1, 0x03, 0x0002, 0x0026 },
218
+ { 0x00, 0x04, -1, 0x03, 0x0002, 0x0036 },
219
+ { 0x00, 0x01, -1, 0x03, 0x0003, 0x000a },
220
+ { 0x00, 0x01, -1, 0x03, 0x0003, 0x000c },
221
+ { 0x00, 0x02, -1, 0x03, 0x0003, 0x000e },
222
+ { 0x00, 0x02, -1, 0x03, 0x0003, 0x0012 },
223
+ { 0x00, 0x03, -1, 0x03, 0x0003, 0x0016 },
224
+ { 0x00, 0x03, -1, 0x03, 0x0003, 0x001e },
225
+ { 0x00, 0x04, -1, 0x03, 0x0003, 0x0026 },
226
+ { 0x00, 0x04, -1, 0x03, 0x0003, 0x0036 },
227
+ { 0x00, 0x01, -1, 0x03, 0x0004, 0x000a },
228
+ { 0x00, 0x01, -1, 0x03, 0x0004, 0x000c },
229
+ { 0x00, 0x02, -1, 0x03, 0x0004, 0x000e },
230
+ { 0x00, 0x02, -1, 0x03, 0x0004, 0x0012 },
231
+ { 0x00, 0x03, -1, 0x03, 0x0004, 0x0016 },
232
+ { 0x00, 0x03, -1, 0x03, 0x0004, 0x001e },
233
+ { 0x00, 0x04, -1, 0x03, 0x0004, 0x0026 },
234
+ { 0x00, 0x04, -1, 0x03, 0x0004, 0x0036 },
235
+ { 0x00, 0x01, -1, 0x03, 0x0005, 0x000a },
236
+ { 0x00, 0x01, -1, 0x03, 0x0005, 0x000c },
237
+ { 0x00, 0x02, -1, 0x03, 0x0005, 0x000e },
238
+ { 0x00, 0x02, -1, 0x03, 0x0005, 0x0012 },
239
+ { 0x00, 0x03, -1, 0x03, 0x0005, 0x0016 },
240
+ { 0x00, 0x03, -1, 0x03, 0x0005, 0x001e },
241
+ { 0x00, 0x04, -1, 0x03, 0x0005, 0x0026 },
242
+ { 0x00, 0x04, -1, 0x03, 0x0005, 0x0036 },
243
+ { 0x01, 0x01, -1, 0x03, 0x0006, 0x000a },
244
+ { 0x01, 0x01, -1, 0x03, 0x0006, 0x000c },
245
+ { 0x01, 0x02, -1, 0x03, 0x0006, 0x000e },
246
+ { 0x01, 0x02, -1, 0x03, 0x0006, 0x0012 },
247
+ { 0x01, 0x03, -1, 0x03, 0x0006, 0x0016 },
248
+ { 0x01, 0x03, -1, 0x03, 0x0006, 0x001e },
249
+ { 0x01, 0x04, -1, 0x03, 0x0006, 0x0026 },
250
+ { 0x01, 0x04, -1, 0x03, 0x0006, 0x0036 },
251
+ { 0x01, 0x01, -1, 0x03, 0x0008, 0x000a },
252
+ { 0x01, 0x01, -1, 0x03, 0x0008, 0x000c },
253
+ { 0x01, 0x02, -1, 0x03, 0x0008, 0x000e },
254
+ { 0x01, 0x02, -1, 0x03, 0x0008, 0x0012 },
255
+ { 0x01, 0x03, -1, 0x03, 0x0008, 0x0016 },
256
+ { 0x01, 0x03, -1, 0x03, 0x0008, 0x001e },
257
+ { 0x01, 0x04, -1, 0x03, 0x0008, 0x0026 },
258
+ { 0x01, 0x04, -1, 0x03, 0x0008, 0x0036 },
259
+ { 0x02, 0x00, -1, 0x00, 0x000a, 0x0002 },
260
+ { 0x02, 0x00, -1, 0x01, 0x000a, 0x0003 },
261
+ { 0x02, 0x00, -1, 0x02, 0x000a, 0x0004 },
262
+ { 0x02, 0x00, -1, 0x03, 0x000a, 0x0005 },
263
+ { 0x02, 0x00, -1, 0x03, 0x000a, 0x0006 },
264
+ { 0x02, 0x00, -1, 0x03, 0x000a, 0x0007 },
265
+ { 0x02, 0x00, -1, 0x03, 0x000a, 0x0008 },
266
+ { 0x02, 0x00, -1, 0x03, 0x000a, 0x0009 },
267
+ { 0x02, 0x00, -1, 0x00, 0x000e, 0x0002 },
268
+ { 0x02, 0x00, -1, 0x01, 0x000e, 0x0003 },
269
+ { 0x02, 0x00, -1, 0x02, 0x000e, 0x0004 },
270
+ { 0x02, 0x00, -1, 0x03, 0x000e, 0x0005 },
271
+ { 0x02, 0x00, -1, 0x03, 0x000e, 0x0006 },
272
+ { 0x02, 0x00, -1, 0x03, 0x000e, 0x0007 },
273
+ { 0x02, 0x00, -1, 0x03, 0x000e, 0x0008 },
274
+ { 0x02, 0x00, -1, 0x03, 0x000e, 0x0009 },
275
+ { 0x03, 0x00, -1, 0x00, 0x0012, 0x0002 },
276
+ { 0x03, 0x00, -1, 0x01, 0x0012, 0x0003 },
277
+ { 0x03, 0x00, -1, 0x02, 0x0012, 0x0004 },
278
+ { 0x03, 0x00, -1, 0x03, 0x0012, 0x0005 },
279
+ { 0x03, 0x00, -1, 0x03, 0x0012, 0x0006 },
280
+ { 0x03, 0x00, -1, 0x03, 0x0012, 0x0007 },
281
+ { 0x03, 0x00, -1, 0x03, 0x0012, 0x0008 },
282
+ { 0x03, 0x00, -1, 0x03, 0x0012, 0x0009 },
283
+ { 0x03, 0x00, -1, 0x00, 0x001a, 0x0002 },
284
+ { 0x03, 0x00, -1, 0x01, 0x001a, 0x0003 },
285
+ { 0x03, 0x00, -1, 0x02, 0x001a, 0x0004 },
286
+ { 0x03, 0x00, -1, 0x03, 0x001a, 0x0005 },
287
+ { 0x03, 0x00, -1, 0x03, 0x001a, 0x0006 },
288
+ { 0x03, 0x00, -1, 0x03, 0x001a, 0x0007 },
289
+ { 0x03, 0x00, -1, 0x03, 0x001a, 0x0008 },
290
+ { 0x03, 0x00, -1, 0x03, 0x001a, 0x0009 },
291
+ { 0x04, 0x00, -1, 0x00, 0x0022, 0x0002 },
292
+ { 0x04, 0x00, -1, 0x01, 0x0022, 0x0003 },
293
+ { 0x04, 0x00, -1, 0x02, 0x0022, 0x0004 },
294
+ { 0x04, 0x00, -1, 0x03, 0x0022, 0x0005 },
295
+ { 0x04, 0x00, -1, 0x03, 0x0022, 0x0006 },
296
+ { 0x04, 0x00, -1, 0x03, 0x0022, 0x0007 },
297
+ { 0x04, 0x00, -1, 0x03, 0x0022, 0x0008 },
298
+ { 0x04, 0x00, -1, 0x03, 0x0022, 0x0009 },
299
+ { 0x04, 0x00, -1, 0x00, 0x0032, 0x0002 },
300
+ { 0x04, 0x00, -1, 0x01, 0x0032, 0x0003 },
301
+ { 0x04, 0x00, -1, 0x02, 0x0032, 0x0004 },
302
+ { 0x04, 0x00, -1, 0x03, 0x0032, 0x0005 },
303
+ { 0x04, 0x00, -1, 0x03, 0x0032, 0x0006 },
304
+ { 0x04, 0x00, -1, 0x03, 0x0032, 0x0007 },
305
+ { 0x04, 0x00, -1, 0x03, 0x0032, 0x0008 },
306
+ { 0x04, 0x00, -1, 0x03, 0x0032, 0x0009 },
307
+ { 0x05, 0x00, -1, 0x00, 0x0042, 0x0002 },
308
+ { 0x05, 0x00, -1, 0x01, 0x0042, 0x0003 },
309
+ { 0x05, 0x00, -1, 0x02, 0x0042, 0x0004 },
310
+ { 0x05, 0x00, -1, 0x03, 0x0042, 0x0005 },
311
+ { 0x05, 0x00, -1, 0x03, 0x0042, 0x0006 },
312
+ { 0x05, 0x00, -1, 0x03, 0x0042, 0x0007 },
313
+ { 0x05, 0x00, -1, 0x03, 0x0042, 0x0008 },
314
+ { 0x05, 0x00, -1, 0x03, 0x0042, 0x0009 },
315
+ { 0x05, 0x00, -1, 0x00, 0x0062, 0x0002 },
316
+ { 0x05, 0x00, -1, 0x01, 0x0062, 0x0003 },
317
+ { 0x05, 0x00, -1, 0x02, 0x0062, 0x0004 },
318
+ { 0x05, 0x00, -1, 0x03, 0x0062, 0x0005 },
319
+ { 0x05, 0x00, -1, 0x03, 0x0062, 0x0006 },
320
+ { 0x05, 0x00, -1, 0x03, 0x0062, 0x0007 },
321
+ { 0x05, 0x00, -1, 0x03, 0x0062, 0x0008 },
322
+ { 0x05, 0x00, -1, 0x03, 0x0062, 0x0009 },
323
+ { 0x02, 0x01, -1, 0x03, 0x000a, 0x000a },
324
+ { 0x02, 0x01, -1, 0x03, 0x000a, 0x000c },
325
+ { 0x02, 0x02, -1, 0x03, 0x000a, 0x000e },
326
+ { 0x02, 0x02, -1, 0x03, 0x000a, 0x0012 },
327
+ { 0x02, 0x03, -1, 0x03, 0x000a, 0x0016 },
328
+ { 0x02, 0x03, -1, 0x03, 0x000a, 0x001e },
329
+ { 0x02, 0x04, -1, 0x03, 0x000a, 0x0026 },
330
+ { 0x02, 0x04, -1, 0x03, 0x000a, 0x0036 },
331
+ { 0x02, 0x01, -1, 0x03, 0x000e, 0x000a },
332
+ { 0x02, 0x01, -1, 0x03, 0x000e, 0x000c },
333
+ { 0x02, 0x02, -1, 0x03, 0x000e, 0x000e },
334
+ { 0x02, 0x02, -1, 0x03, 0x000e, 0x0012 },
335
+ { 0x02, 0x03, -1, 0x03, 0x000e, 0x0016 },
336
+ { 0x02, 0x03, -1, 0x03, 0x000e, 0x001e },
337
+ { 0x02, 0x04, -1, 0x03, 0x000e, 0x0026 },
338
+ { 0x02, 0x04, -1, 0x03, 0x000e, 0x0036 },
339
+ { 0x03, 0x01, -1, 0x03, 0x0012, 0x000a },
340
+ { 0x03, 0x01, -1, 0x03, 0x0012, 0x000c },
341
+ { 0x03, 0x02, -1, 0x03, 0x0012, 0x000e },
342
+ { 0x03, 0x02, -1, 0x03, 0x0012, 0x0012 },
343
+ { 0x03, 0x03, -1, 0x03, 0x0012, 0x0016 },
344
+ { 0x03, 0x03, -1, 0x03, 0x0012, 0x001e },
345
+ { 0x03, 0x04, -1, 0x03, 0x0012, 0x0026 },
346
+ { 0x03, 0x04, -1, 0x03, 0x0012, 0x0036 },
347
+ { 0x03, 0x01, -1, 0x03, 0x001a, 0x000a },
348
+ { 0x03, 0x01, -1, 0x03, 0x001a, 0x000c },
349
+ { 0x03, 0x02, -1, 0x03, 0x001a, 0x000e },
350
+ { 0x03, 0x02, -1, 0x03, 0x001a, 0x0012 },
351
+ { 0x03, 0x03, -1, 0x03, 0x001a, 0x0016 },
352
+ { 0x03, 0x03, -1, 0x03, 0x001a, 0x001e },
353
+ { 0x03, 0x04, -1, 0x03, 0x001a, 0x0026 },
354
+ { 0x03, 0x04, -1, 0x03, 0x001a, 0x0036 },
355
+ { 0x04, 0x01, -1, 0x03, 0x0022, 0x000a },
356
+ { 0x04, 0x01, -1, 0x03, 0x0022, 0x000c },
357
+ { 0x04, 0x02, -1, 0x03, 0x0022, 0x000e },
358
+ { 0x04, 0x02, -1, 0x03, 0x0022, 0x0012 },
359
+ { 0x04, 0x03, -1, 0x03, 0x0022, 0x0016 },
360
+ { 0x04, 0x03, -1, 0x03, 0x0022, 0x001e },
361
+ { 0x04, 0x04, -1, 0x03, 0x0022, 0x0026 },
362
+ { 0x04, 0x04, -1, 0x03, 0x0022, 0x0036 },
363
+ { 0x04, 0x01, -1, 0x03, 0x0032, 0x000a },
364
+ { 0x04, 0x01, -1, 0x03, 0x0032, 0x000c },
365
+ { 0x04, 0x02, -1, 0x03, 0x0032, 0x000e },
366
+ { 0x04, 0x02, -1, 0x03, 0x0032, 0x0012 },
367
+ { 0x04, 0x03, -1, 0x03, 0x0032, 0x0016 },
368
+ { 0x04, 0x03, -1, 0x03, 0x0032, 0x001e },
369
+ { 0x04, 0x04, -1, 0x03, 0x0032, 0x0026 },
370
+ { 0x04, 0x04, -1, 0x03, 0x0032, 0x0036 },
371
+ { 0x05, 0x01, -1, 0x03, 0x0042, 0x000a },
372
+ { 0x05, 0x01, -1, 0x03, 0x0042, 0x000c },
373
+ { 0x05, 0x02, -1, 0x03, 0x0042, 0x000e },
374
+ { 0x05, 0x02, -1, 0x03, 0x0042, 0x0012 },
375
+ { 0x05, 0x03, -1, 0x03, 0x0042, 0x0016 },
376
+ { 0x05, 0x03, -1, 0x03, 0x0042, 0x001e },
377
+ { 0x05, 0x04, -1, 0x03, 0x0042, 0x0026 },
378
+ { 0x05, 0x04, -1, 0x03, 0x0042, 0x0036 },
379
+ { 0x05, 0x01, -1, 0x03, 0x0062, 0x000a },
380
+ { 0x05, 0x01, -1, 0x03, 0x0062, 0x000c },
381
+ { 0x05, 0x02, -1, 0x03, 0x0062, 0x000e },
382
+ { 0x05, 0x02, -1, 0x03, 0x0062, 0x0012 },
383
+ { 0x05, 0x03, -1, 0x03, 0x0062, 0x0016 },
384
+ { 0x05, 0x03, -1, 0x03, 0x0062, 0x001e },
385
+ { 0x05, 0x04, -1, 0x03, 0x0062, 0x0026 },
386
+ { 0x05, 0x04, -1, 0x03, 0x0062, 0x0036 },
387
+ { 0x00, 0x05, -1, 0x03, 0x0000, 0x0046 },
388
+ { 0x00, 0x05, -1, 0x03, 0x0000, 0x0066 },
389
+ { 0x00, 0x06, -1, 0x03, 0x0000, 0x0086 },
390
+ { 0x00, 0x07, -1, 0x03, 0x0000, 0x00c6 },
391
+ { 0x00, 0x08, -1, 0x03, 0x0000, 0x0146 },
392
+ { 0x00, 0x09, -1, 0x03, 0x0000, 0x0246 },
393
+ { 0x00, 0x0a, -1, 0x03, 0x0000, 0x0446 },
394
+ { 0x00, 0x18, -1, 0x03, 0x0000, 0x0846 },
395
+ { 0x00, 0x05, -1, 0x03, 0x0001, 0x0046 },
396
+ { 0x00, 0x05, -1, 0x03, 0x0001, 0x0066 },
397
+ { 0x00, 0x06, -1, 0x03, 0x0001, 0x0086 },
398
+ { 0x00, 0x07, -1, 0x03, 0x0001, 0x00c6 },
399
+ { 0x00, 0x08, -1, 0x03, 0x0001, 0x0146 },
400
+ { 0x00, 0x09, -1, 0x03, 0x0001, 0x0246 },
401
+ { 0x00, 0x0a, -1, 0x03, 0x0001, 0x0446 },
402
+ { 0x00, 0x18, -1, 0x03, 0x0001, 0x0846 },
403
+ { 0x00, 0x05, -1, 0x03, 0x0002, 0x0046 },
404
+ { 0x00, 0x05, -1, 0x03, 0x0002, 0x0066 },
405
+ { 0x00, 0x06, -1, 0x03, 0x0002, 0x0086 },
406
+ { 0x00, 0x07, -1, 0x03, 0x0002, 0x00c6 },
407
+ { 0x00, 0x08, -1, 0x03, 0x0002, 0x0146 },
408
+ { 0x00, 0x09, -1, 0x03, 0x0002, 0x0246 },
409
+ { 0x00, 0x0a, -1, 0x03, 0x0002, 0x0446 },
410
+ { 0x00, 0x18, -1, 0x03, 0x0002, 0x0846 },
411
+ { 0x00, 0x05, -1, 0x03, 0x0003, 0x0046 },
412
+ { 0x00, 0x05, -1, 0x03, 0x0003, 0x0066 },
413
+ { 0x00, 0x06, -1, 0x03, 0x0003, 0x0086 },
414
+ { 0x00, 0x07, -1, 0x03, 0x0003, 0x00c6 },
415
+ { 0x00, 0x08, -1, 0x03, 0x0003, 0x0146 },
416
+ { 0x00, 0x09, -1, 0x03, 0x0003, 0x0246 },
417
+ { 0x00, 0x0a, -1, 0x03, 0x0003, 0x0446 },
418
+ { 0x00, 0x18, -1, 0x03, 0x0003, 0x0846 },
419
+ { 0x00, 0x05, -1, 0x03, 0x0004, 0x0046 },
420
+ { 0x00, 0x05, -1, 0x03, 0x0004, 0x0066 },
421
+ { 0x00, 0x06, -1, 0x03, 0x0004, 0x0086 },
422
+ { 0x00, 0x07, -1, 0x03, 0x0004, 0x00c6 },
423
+ { 0x00, 0x08, -1, 0x03, 0x0004, 0x0146 },
424
+ { 0x00, 0x09, -1, 0x03, 0x0004, 0x0246 },
425
+ { 0x00, 0x0a, -1, 0x03, 0x0004, 0x0446 },
426
+ { 0x00, 0x18, -1, 0x03, 0x0004, 0x0846 },
427
+ { 0x00, 0x05, -1, 0x03, 0x0005, 0x0046 },
428
+ { 0x00, 0x05, -1, 0x03, 0x0005, 0x0066 },
429
+ { 0x00, 0x06, -1, 0x03, 0x0005, 0x0086 },
430
+ { 0x00, 0x07, -1, 0x03, 0x0005, 0x00c6 },
431
+ { 0x00, 0x08, -1, 0x03, 0x0005, 0x0146 },
432
+ { 0x00, 0x09, -1, 0x03, 0x0005, 0x0246 },
433
+ { 0x00, 0x0a, -1, 0x03, 0x0005, 0x0446 },
434
+ { 0x00, 0x18, -1, 0x03, 0x0005, 0x0846 },
435
+ { 0x01, 0x05, -1, 0x03, 0x0006, 0x0046 },
436
+ { 0x01, 0x05, -1, 0x03, 0x0006, 0x0066 },
437
+ { 0x01, 0x06, -1, 0x03, 0x0006, 0x0086 },
438
+ { 0x01, 0x07, -1, 0x03, 0x0006, 0x00c6 },
439
+ { 0x01, 0x08, -1, 0x03, 0x0006, 0x0146 },
440
+ { 0x01, 0x09, -1, 0x03, 0x0006, 0x0246 },
441
+ { 0x01, 0x0a, -1, 0x03, 0x0006, 0x0446 },
442
+ { 0x01, 0x18, -1, 0x03, 0x0006, 0x0846 },
443
+ { 0x01, 0x05, -1, 0x03, 0x0008, 0x0046 },
444
+ { 0x01, 0x05, -1, 0x03, 0x0008, 0x0066 },
445
+ { 0x01, 0x06, -1, 0x03, 0x0008, 0x0086 },
446
+ { 0x01, 0x07, -1, 0x03, 0x0008, 0x00c6 },
447
+ { 0x01, 0x08, -1, 0x03, 0x0008, 0x0146 },
448
+ { 0x01, 0x09, -1, 0x03, 0x0008, 0x0246 },
449
+ { 0x01, 0x0a, -1, 0x03, 0x0008, 0x0446 },
450
+ { 0x01, 0x18, -1, 0x03, 0x0008, 0x0846 },
451
+ { 0x06, 0x00, -1, 0x00, 0x0082, 0x0002 },
452
+ { 0x06, 0x00, -1, 0x01, 0x0082, 0x0003 },
453
+ { 0x06, 0x00, -1, 0x02, 0x0082, 0x0004 },
454
+ { 0x06, 0x00, -1, 0x03, 0x0082, 0x0005 },
455
+ { 0x06, 0x00, -1, 0x03, 0x0082, 0x0006 },
456
+ { 0x06, 0x00, -1, 0x03, 0x0082, 0x0007 },
457
+ { 0x06, 0x00, -1, 0x03, 0x0082, 0x0008 },
458
+ { 0x06, 0x00, -1, 0x03, 0x0082, 0x0009 },
459
+ { 0x07, 0x00, -1, 0x00, 0x00c2, 0x0002 },
460
+ { 0x07, 0x00, -1, 0x01, 0x00c2, 0x0003 },
461
+ { 0x07, 0x00, -1, 0x02, 0x00c2, 0x0004 },
462
+ { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0005 },
463
+ { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0006 },
464
+ { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0007 },
465
+ { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0008 },
466
+ { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0009 },
467
+ { 0x08, 0x00, -1, 0x00, 0x0142, 0x0002 },
468
+ { 0x08, 0x00, -1, 0x01, 0x0142, 0x0003 },
469
+ { 0x08, 0x00, -1, 0x02, 0x0142, 0x0004 },
470
+ { 0x08, 0x00, -1, 0x03, 0x0142, 0x0005 },
471
+ { 0x08, 0x00, -1, 0x03, 0x0142, 0x0006 },
472
+ { 0x08, 0x00, -1, 0x03, 0x0142, 0x0007 },
473
+ { 0x08, 0x00, -1, 0x03, 0x0142, 0x0008 },
474
+ { 0x08, 0x00, -1, 0x03, 0x0142, 0x0009 },
475
+ { 0x09, 0x00, -1, 0x00, 0x0242, 0x0002 },
476
+ { 0x09, 0x00, -1, 0x01, 0x0242, 0x0003 },
477
+ { 0x09, 0x00, -1, 0x02, 0x0242, 0x0004 },
478
+ { 0x09, 0x00, -1, 0x03, 0x0242, 0x0005 },
479
+ { 0x09, 0x00, -1, 0x03, 0x0242, 0x0006 },
480
+ { 0x09, 0x00, -1, 0x03, 0x0242, 0x0007 },
481
+ { 0x09, 0x00, -1, 0x03, 0x0242, 0x0008 },
482
+ { 0x09, 0x00, -1, 0x03, 0x0242, 0x0009 },
483
+ { 0x0a, 0x00, -1, 0x00, 0x0442, 0x0002 },
484
+ { 0x0a, 0x00, -1, 0x01, 0x0442, 0x0003 },
485
+ { 0x0a, 0x00, -1, 0x02, 0x0442, 0x0004 },
486
+ { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0005 },
487
+ { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0006 },
488
+ { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0007 },
489
+ { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0008 },
490
+ { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0009 },
491
+ { 0x0c, 0x00, -1, 0x00, 0x0842, 0x0002 },
492
+ { 0x0c, 0x00, -1, 0x01, 0x0842, 0x0003 },
493
+ { 0x0c, 0x00, -1, 0x02, 0x0842, 0x0004 },
494
+ { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0005 },
495
+ { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0006 },
496
+ { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0007 },
497
+ { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0008 },
498
+ { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0009 },
499
+ { 0x0e, 0x00, -1, 0x00, 0x1842, 0x0002 },
500
+ { 0x0e, 0x00, -1, 0x01, 0x1842, 0x0003 },
501
+ { 0x0e, 0x00, -1, 0x02, 0x1842, 0x0004 },
502
+ { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0005 },
503
+ { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0006 },
504
+ { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0007 },
505
+ { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0008 },
506
+ { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0009 },
507
+ { 0x18, 0x00, -1, 0x00, 0x5842, 0x0002 },
508
+ { 0x18, 0x00, -1, 0x01, 0x5842, 0x0003 },
509
+ { 0x18, 0x00, -1, 0x02, 0x5842, 0x0004 },
510
+ { 0x18, 0x00, -1, 0x03, 0x5842, 0x0005 },
511
+ { 0x18, 0x00, -1, 0x03, 0x5842, 0x0006 },
512
+ { 0x18, 0x00, -1, 0x03, 0x5842, 0x0007 },
513
+ { 0x18, 0x00, -1, 0x03, 0x5842, 0x0008 },
514
+ { 0x18, 0x00, -1, 0x03, 0x5842, 0x0009 },
515
+ { 0x02, 0x05, -1, 0x03, 0x000a, 0x0046 },
516
+ { 0x02, 0x05, -1, 0x03, 0x000a, 0x0066 },
517
+ { 0x02, 0x06, -1, 0x03, 0x000a, 0x0086 },
518
+ { 0x02, 0x07, -1, 0x03, 0x000a, 0x00c6 },
519
+ { 0x02, 0x08, -1, 0x03, 0x000a, 0x0146 },
520
+ { 0x02, 0x09, -1, 0x03, 0x000a, 0x0246 },
521
+ { 0x02, 0x0a, -1, 0x03, 0x000a, 0x0446 },
522
+ { 0x02, 0x18, -1, 0x03, 0x000a, 0x0846 },
523
+ { 0x02, 0x05, -1, 0x03, 0x000e, 0x0046 },
524
+ { 0x02, 0x05, -1, 0x03, 0x000e, 0x0066 },
525
+ { 0x02, 0x06, -1, 0x03, 0x000e, 0x0086 },
526
+ { 0x02, 0x07, -1, 0x03, 0x000e, 0x00c6 },
527
+ { 0x02, 0x08, -1, 0x03, 0x000e, 0x0146 },
528
+ { 0x02, 0x09, -1, 0x03, 0x000e, 0x0246 },
529
+ { 0x02, 0x0a, -1, 0x03, 0x000e, 0x0446 },
530
+ { 0x02, 0x18, -1, 0x03, 0x000e, 0x0846 },
531
+ { 0x03, 0x05, -1, 0x03, 0x0012, 0x0046 },
532
+ { 0x03, 0x05, -1, 0x03, 0x0012, 0x0066 },
533
+ { 0x03, 0x06, -1, 0x03, 0x0012, 0x0086 },
534
+ { 0x03, 0x07, -1, 0x03, 0x0012, 0x00c6 },
535
+ { 0x03, 0x08, -1, 0x03, 0x0012, 0x0146 },
536
+ { 0x03, 0x09, -1, 0x03, 0x0012, 0x0246 },
537
+ { 0x03, 0x0a, -1, 0x03, 0x0012, 0x0446 },
538
+ { 0x03, 0x18, -1, 0x03, 0x0012, 0x0846 },
539
+ { 0x03, 0x05, -1, 0x03, 0x001a, 0x0046 },
540
+ { 0x03, 0x05, -1, 0x03, 0x001a, 0x0066 },
541
+ { 0x03, 0x06, -1, 0x03, 0x001a, 0x0086 },
542
+ { 0x03, 0x07, -1, 0x03, 0x001a, 0x00c6 },
543
+ { 0x03, 0x08, -1, 0x03, 0x001a, 0x0146 },
544
+ { 0x03, 0x09, -1, 0x03, 0x001a, 0x0246 },
545
+ { 0x03, 0x0a, -1, 0x03, 0x001a, 0x0446 },
546
+ { 0x03, 0x18, -1, 0x03, 0x001a, 0x0846 },
547
+ { 0x04, 0x05, -1, 0x03, 0x0022, 0x0046 },
548
+ { 0x04, 0x05, -1, 0x03, 0x0022, 0x0066 },
549
+ { 0x04, 0x06, -1, 0x03, 0x0022, 0x0086 },
550
+ { 0x04, 0x07, -1, 0x03, 0x0022, 0x00c6 },
551
+ { 0x04, 0x08, -1, 0x03, 0x0022, 0x0146 },
552
+ { 0x04, 0x09, -1, 0x03, 0x0022, 0x0246 },
553
+ { 0x04, 0x0a, -1, 0x03, 0x0022, 0x0446 },
554
+ { 0x04, 0x18, -1, 0x03, 0x0022, 0x0846 },
555
+ { 0x04, 0x05, -1, 0x03, 0x0032, 0x0046 },
556
+ { 0x04, 0x05, -1, 0x03, 0x0032, 0x0066 },
557
+ { 0x04, 0x06, -1, 0x03, 0x0032, 0x0086 },
558
+ { 0x04, 0x07, -1, 0x03, 0x0032, 0x00c6 },
559
+ { 0x04, 0x08, -1, 0x03, 0x0032, 0x0146 },
560
+ { 0x04, 0x09, -1, 0x03, 0x0032, 0x0246 },
561
+ { 0x04, 0x0a, -1, 0x03, 0x0032, 0x0446 },
562
+ { 0x04, 0x18, -1, 0x03, 0x0032, 0x0846 },
563
+ { 0x05, 0x05, -1, 0x03, 0x0042, 0x0046 },
564
+ { 0x05, 0x05, -1, 0x03, 0x0042, 0x0066 },
565
+ { 0x05, 0x06, -1, 0x03, 0x0042, 0x0086 },
566
+ { 0x05, 0x07, -1, 0x03, 0x0042, 0x00c6 },
567
+ { 0x05, 0x08, -1, 0x03, 0x0042, 0x0146 },
568
+ { 0x05, 0x09, -1, 0x03, 0x0042, 0x0246 },
569
+ { 0x05, 0x0a, -1, 0x03, 0x0042, 0x0446 },
570
+ { 0x05, 0x18, -1, 0x03, 0x0042, 0x0846 },
571
+ { 0x05, 0x05, -1, 0x03, 0x0062, 0x0046 },
572
+ { 0x05, 0x05, -1, 0x03, 0x0062, 0x0066 },
573
+ { 0x05, 0x06, -1, 0x03, 0x0062, 0x0086 },
574
+ { 0x05, 0x07, -1, 0x03, 0x0062, 0x00c6 },
575
+ { 0x05, 0x08, -1, 0x03, 0x0062, 0x0146 },
576
+ { 0x05, 0x09, -1, 0x03, 0x0062, 0x0246 },
577
+ { 0x05, 0x0a, -1, 0x03, 0x0062, 0x0446 },
578
+ { 0x05, 0x18, -1, 0x03, 0x0062, 0x0846 },
579
+ { 0x06, 0x01, -1, 0x03, 0x0082, 0x000a },
580
+ { 0x06, 0x01, -1, 0x03, 0x0082, 0x000c },
581
+ { 0x06, 0x02, -1, 0x03, 0x0082, 0x000e },
582
+ { 0x06, 0x02, -1, 0x03, 0x0082, 0x0012 },
583
+ { 0x06, 0x03, -1, 0x03, 0x0082, 0x0016 },
584
+ { 0x06, 0x03, -1, 0x03, 0x0082, 0x001e },
585
+ { 0x06, 0x04, -1, 0x03, 0x0082, 0x0026 },
586
+ { 0x06, 0x04, -1, 0x03, 0x0082, 0x0036 },
587
+ { 0x07, 0x01, -1, 0x03, 0x00c2, 0x000a },
588
+ { 0x07, 0x01, -1, 0x03, 0x00c2, 0x000c },
589
+ { 0x07, 0x02, -1, 0x03, 0x00c2, 0x000e },
590
+ { 0x07, 0x02, -1, 0x03, 0x00c2, 0x0012 },
591
+ { 0x07, 0x03, -1, 0x03, 0x00c2, 0x0016 },
592
+ { 0x07, 0x03, -1, 0x03, 0x00c2, 0x001e },
593
+ { 0x07, 0x04, -1, 0x03, 0x00c2, 0x0026 },
594
+ { 0x07, 0x04, -1, 0x03, 0x00c2, 0x0036 },
595
+ { 0x08, 0x01, -1, 0x03, 0x0142, 0x000a },
596
+ { 0x08, 0x01, -1, 0x03, 0x0142, 0x000c },
597
+ { 0x08, 0x02, -1, 0x03, 0x0142, 0x000e },
598
+ { 0x08, 0x02, -1, 0x03, 0x0142, 0x0012 },
599
+ { 0x08, 0x03, -1, 0x03, 0x0142, 0x0016 },
600
+ { 0x08, 0x03, -1, 0x03, 0x0142, 0x001e },
601
+ { 0x08, 0x04, -1, 0x03, 0x0142, 0x0026 },
602
+ { 0x08, 0x04, -1, 0x03, 0x0142, 0x0036 },
603
+ { 0x09, 0x01, -1, 0x03, 0x0242, 0x000a },
604
+ { 0x09, 0x01, -1, 0x03, 0x0242, 0x000c },
605
+ { 0x09, 0x02, -1, 0x03, 0x0242, 0x000e },
606
+ { 0x09, 0x02, -1, 0x03, 0x0242, 0x0012 },
607
+ { 0x09, 0x03, -1, 0x03, 0x0242, 0x0016 },
608
+ { 0x09, 0x03, -1, 0x03, 0x0242, 0x001e },
609
+ { 0x09, 0x04, -1, 0x03, 0x0242, 0x0026 },
610
+ { 0x09, 0x04, -1, 0x03, 0x0242, 0x0036 },
611
+ { 0x0a, 0x01, -1, 0x03, 0x0442, 0x000a },
612
+ { 0x0a, 0x01, -1, 0x03, 0x0442, 0x000c },
613
+ { 0x0a, 0x02, -1, 0x03, 0x0442, 0x000e },
614
+ { 0x0a, 0x02, -1, 0x03, 0x0442, 0x0012 },
615
+ { 0x0a, 0x03, -1, 0x03, 0x0442, 0x0016 },
616
+ { 0x0a, 0x03, -1, 0x03, 0x0442, 0x001e },
617
+ { 0x0a, 0x04, -1, 0x03, 0x0442, 0x0026 },
618
+ { 0x0a, 0x04, -1, 0x03, 0x0442, 0x0036 },
619
+ { 0x0c, 0x01, -1, 0x03, 0x0842, 0x000a },
620
+ { 0x0c, 0x01, -1, 0x03, 0x0842, 0x000c },
621
+ { 0x0c, 0x02, -1, 0x03, 0x0842, 0x000e },
622
+ { 0x0c, 0x02, -1, 0x03, 0x0842, 0x0012 },
623
+ { 0x0c, 0x03, -1, 0x03, 0x0842, 0x0016 },
624
+ { 0x0c, 0x03, -1, 0x03, 0x0842, 0x001e },
625
+ { 0x0c, 0x04, -1, 0x03, 0x0842, 0x0026 },
626
+ { 0x0c, 0x04, -1, 0x03, 0x0842, 0x0036 },
627
+ { 0x0e, 0x01, -1, 0x03, 0x1842, 0x000a },
628
+ { 0x0e, 0x01, -1, 0x03, 0x1842, 0x000c },
629
+ { 0x0e, 0x02, -1, 0x03, 0x1842, 0x000e },
630
+ { 0x0e, 0x02, -1, 0x03, 0x1842, 0x0012 },
631
+ { 0x0e, 0x03, -1, 0x03, 0x1842, 0x0016 },
632
+ { 0x0e, 0x03, -1, 0x03, 0x1842, 0x001e },
633
+ { 0x0e, 0x04, -1, 0x03, 0x1842, 0x0026 },
634
+ { 0x0e, 0x04, -1, 0x03, 0x1842, 0x0036 },
635
+ { 0x18, 0x01, -1, 0x03, 0x5842, 0x000a },
636
+ { 0x18, 0x01, -1, 0x03, 0x5842, 0x000c },
637
+ { 0x18, 0x02, -1, 0x03, 0x5842, 0x000e },
638
+ { 0x18, 0x02, -1, 0x03, 0x5842, 0x0012 },
639
+ { 0x18, 0x03, -1, 0x03, 0x5842, 0x0016 },
640
+ { 0x18, 0x03, -1, 0x03, 0x5842, 0x001e },
641
+ { 0x18, 0x04, -1, 0x03, 0x5842, 0x0026 },
642
+ { 0x18, 0x04, -1, 0x03, 0x5842, 0x0036 },
643
+ { 0x06, 0x05, -1, 0x03, 0x0082, 0x0046 },
644
+ { 0x06, 0x05, -1, 0x03, 0x0082, 0x0066 },
645
+ { 0x06, 0x06, -1, 0x03, 0x0082, 0x0086 },
646
+ { 0x06, 0x07, -1, 0x03, 0x0082, 0x00c6 },
647
+ { 0x06, 0x08, -1, 0x03, 0x0082, 0x0146 },
648
+ { 0x06, 0x09, -1, 0x03, 0x0082, 0x0246 },
649
+ { 0x06, 0x0a, -1, 0x03, 0x0082, 0x0446 },
650
+ { 0x06, 0x18, -1, 0x03, 0x0082, 0x0846 },
651
+ { 0x07, 0x05, -1, 0x03, 0x00c2, 0x0046 },
652
+ { 0x07, 0x05, -1, 0x03, 0x00c2, 0x0066 },
653
+ { 0x07, 0x06, -1, 0x03, 0x00c2, 0x0086 },
654
+ { 0x07, 0x07, -1, 0x03, 0x00c2, 0x00c6 },
655
+ { 0x07, 0x08, -1, 0x03, 0x00c2, 0x0146 },
656
+ { 0x07, 0x09, -1, 0x03, 0x00c2, 0x0246 },
657
+ { 0x07, 0x0a, -1, 0x03, 0x00c2, 0x0446 },
658
+ { 0x07, 0x18, -1, 0x03, 0x00c2, 0x0846 },
659
+ { 0x08, 0x05, -1, 0x03, 0x0142, 0x0046 },
660
+ { 0x08, 0x05, -1, 0x03, 0x0142, 0x0066 },
661
+ { 0x08, 0x06, -1, 0x03, 0x0142, 0x0086 },
662
+ { 0x08, 0x07, -1, 0x03, 0x0142, 0x00c6 },
663
+ { 0x08, 0x08, -1, 0x03, 0x0142, 0x0146 },
664
+ { 0x08, 0x09, -1, 0x03, 0x0142, 0x0246 },
665
+ { 0x08, 0x0a, -1, 0x03, 0x0142, 0x0446 },
666
+ { 0x08, 0x18, -1, 0x03, 0x0142, 0x0846 },
667
+ { 0x09, 0x05, -1, 0x03, 0x0242, 0x0046 },
668
+ { 0x09, 0x05, -1, 0x03, 0x0242, 0x0066 },
669
+ { 0x09, 0x06, -1, 0x03, 0x0242, 0x0086 },
670
+ { 0x09, 0x07, -1, 0x03, 0x0242, 0x00c6 },
671
+ { 0x09, 0x08, -1, 0x03, 0x0242, 0x0146 },
672
+ { 0x09, 0x09, -1, 0x03, 0x0242, 0x0246 },
673
+ { 0x09, 0x0a, -1, 0x03, 0x0242, 0x0446 },
674
+ { 0x09, 0x18, -1, 0x03, 0x0242, 0x0846 },
675
+ { 0x0a, 0x05, -1, 0x03, 0x0442, 0x0046 },
676
+ { 0x0a, 0x05, -1, 0x03, 0x0442, 0x0066 },
677
+ { 0x0a, 0x06, -1, 0x03, 0x0442, 0x0086 },
678
+ { 0x0a, 0x07, -1, 0x03, 0x0442, 0x00c6 },
679
+ { 0x0a, 0x08, -1, 0x03, 0x0442, 0x0146 },
680
+ { 0x0a, 0x09, -1, 0x03, 0x0442, 0x0246 },
681
+ { 0x0a, 0x0a, -1, 0x03, 0x0442, 0x0446 },
682
+ { 0x0a, 0x18, -1, 0x03, 0x0442, 0x0846 },
683
+ { 0x0c, 0x05, -1, 0x03, 0x0842, 0x0046 },
684
+ { 0x0c, 0x05, -1, 0x03, 0x0842, 0x0066 },
685
+ { 0x0c, 0x06, -1, 0x03, 0x0842, 0x0086 },
686
+ { 0x0c, 0x07, -1, 0x03, 0x0842, 0x00c6 },
687
+ { 0x0c, 0x08, -1, 0x03, 0x0842, 0x0146 },
688
+ { 0x0c, 0x09, -1, 0x03, 0x0842, 0x0246 },
689
+ { 0x0c, 0x0a, -1, 0x03, 0x0842, 0x0446 },
690
+ { 0x0c, 0x18, -1, 0x03, 0x0842, 0x0846 },
691
+ { 0x0e, 0x05, -1, 0x03, 0x1842, 0x0046 },
692
+ { 0x0e, 0x05, -1, 0x03, 0x1842, 0x0066 },
693
+ { 0x0e, 0x06, -1, 0x03, 0x1842, 0x0086 },
694
+ { 0x0e, 0x07, -1, 0x03, 0x1842, 0x00c6 },
695
+ { 0x0e, 0x08, -1, 0x03, 0x1842, 0x0146 },
696
+ { 0x0e, 0x09, -1, 0x03, 0x1842, 0x0246 },
697
+ { 0x0e, 0x0a, -1, 0x03, 0x1842, 0x0446 },
698
+ { 0x0e, 0x18, -1, 0x03, 0x1842, 0x0846 },
699
+ { 0x18, 0x05, -1, 0x03, 0x5842, 0x0046 },
700
+ { 0x18, 0x05, -1, 0x03, 0x5842, 0x0066 },
701
+ { 0x18, 0x06, -1, 0x03, 0x5842, 0x0086 },
702
+ { 0x18, 0x07, -1, 0x03, 0x5842, 0x00c6 },
703
+ { 0x18, 0x08, -1, 0x03, 0x5842, 0x0146 },
704
+ { 0x18, 0x09, -1, 0x03, 0x5842, 0x0246 },
705
+ { 0x18, 0x0a, -1, 0x03, 0x5842, 0x0446 },
706
+ { 0x18, 0x18, -1, 0x03, 0x5842, 0x0846 },
707
+ };