decode_synth_test.js 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. /* Copyright 2017 Google Inc. All Rights Reserved.
  2. Distributed under MIT license.
  3. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  4. */
  5. import {BrotliDecode} from "./decode.js";
  6. /**
  7. * NB: Use intermediate chunks to avoid "Maximum call stack size exceeded".
  8. *
  9. * @param {!Int8Array} bytes
  10. * @return {string}
  11. */
  12. function bytesToString(bytes) {
  13. const kChunkSize = 4096;
  14. if (bytes.length <= kChunkSize) {
  15. return String.fromCharCode.apply(null, new Uint8Array(bytes));
  16. }
  17. const chunks = [];
  18. for (let start = 0; start < bytes.length; start += kChunkSize) {
  19. const end = Math.min(start + 4096, bytes.length);
  20. chunks.push(bytesToString(bytes.slice(start, end)));
  21. }
  22. return chunks.join('');
  23. }
  24. /**
  25. * NB: String.prototype.repeat causes "Maximum call stack size exceeded".
  26. *
  27. * @param {number} count
  28. * @param {string} char
  29. * @return {string}
  30. */
  31. function times(count, char) {
  32. return char.repeat(count);
  33. }
  34. /**
  35. * @param {!Array<number>} compressed
  36. * @param {boolean} expectSuccess
  37. * @param {string} expectedOutput
  38. */
  39. function checkSynth(compressed, expectSuccess, expectedOutput) {
  40. let success = true;
  41. let actual;
  42. try {
  43. actual = BrotliDecode(Int8Array.from(compressed));
  44. } catch (ex) {
  45. success = false;
  46. }
  47. expect(expectSuccess).toEqual(success);
  48. if (expectSuccess) {
  49. expect(expectedOutput).toEqual(bytesToString(actual));
  50. }
  51. }
  52. const allTests = {
  53. /* GENERATED CODE START */
  54. testAllTransforms10() {
  55. const compressed = [
  56. 0x1b, 0xfc, 0x05, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  57. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x13, 0x7c,
  58. 0x84, 0x26, 0xf8, 0x04, 0x10, 0x4c, 0xf0, 0x89, 0x38, 0x30, 0xc1, 0x27,
  59. 0x4e, 0xc1, 0x04, 0x9f, 0x64, 0x06, 0x26, 0xf8, 0x24, 0x3f, 0x34, 0xc1,
  60. 0x27, 0x7d, 0x82, 0x09, 0x3e, 0xe9, 0x16, 0x4d, 0xf0, 0xc9, 0xd2, 0xc0,
  61. 0x04, 0x9f, 0x0c, 0x8f, 0x4c, 0xf0, 0xc9, 0x06, 0xd1, 0x04, 0x9f, 0x6c,
  62. 0x92, 0x4d, 0xf0, 0xc9, 0x39, 0xc1, 0x04, 0x9f, 0xdc, 0x94, 0x4c, 0xf0,
  63. 0xc9, 0x69, 0xd1, 0x04, 0x9f, 0x3c, 0x98, 0x4d, 0xf0, 0x29, 0x9c, 0x81,
  64. 0x09, 0x3e, 0x45, 0x37, 0x31, 0xc1, 0xa7, 0x60, 0x47, 0x26, 0xf8, 0x14,
  65. 0xfa, 0xcc, 0x04, 0x9f, 0xc2, 0x20, 0x9a, 0xe0, 0x53, 0x48, 0x54, 0x13,
  66. 0x7c, 0x8a, 0x8f, 0x6c, 0x82, 0x4f, 0xb1, 0xd2, 0x4d, 0xf0, 0x29, 0x67,
  67. 0x82, 0x09, 0x3e, 0xe5, 0x4f, 0x31, 0xc1, 0xa7, 0x7c, 0x4a, 0x26, 0xf8,
  68. 0x94, 0x57, 0xcd, 0x04, 0x9f, 0x12, 0x2c, 0x9a, 0xe0, 0x53, 0xba, 0x55,
  69. 0x13, 0x7c, 0xca, 0xbf, 0x6c, 0x82, 0x4f, 0xb9, 0xd8, 0x4d, 0xf0, 0xa9,
  70. 0x30, 0x03, 0x13, 0x7c, 0x2a, 0xd2, 0xc2, 0x04, 0x9f, 0x4a, 0x36, 0x31,
  71. 0xc1, 0xa7, 0xca, 0x6d, 0x4c, 0xf0, 0xa9, 0x94, 0x23, 0x13, 0x7c, 0x2a,
  72. 0xeb, 0xca, 0x04, 0x9f, 0xea, 0x3c, 0x33, 0xc1, 0xa7, 0xb2, 0xef, 0x4c,
  73. 0xf0, 0xa9, 0xf8, 0x43, 0x13, 0x7c, 0xaa, 0x00, 0xd3, 0x04, 0x9f, 0x2a,
  74. 0x42, 0x35, 0xc1, 0xa7, 0xc2, 0x70, 0x4d, 0xf0, 0xa9, 0x52, 0x64, 0x13,
  75. 0x7c, 0x2a, 0x1a, 0xdb, 0x04, 0x9f, 0x6a, 0x48, 0x37, 0xc1, 0xa7, 0x92,
  76. 0xf2, 0x4d, 0xf0, 0xa9, 0xc3, 0x04, 0x13, 0x7c, 0xea, 0x32, 0xc3, 0x04,
  77. 0x9f, 0x7a, 0x4e, 0x31, 0xc1, 0xa7, 0x06, 0x74, 0x4c, 0xf0, 0xa9, 0x19,
  78. 0x25, 0x13, 0x7c, 0x6a, 0x4d, 0xcb, 0x04, 0x9f, 0x1a, 0x55, 0x33, 0xc1,
  79. 0xa7, 0x56, 0xf5, 0x4c, 0xf0, 0xa9, 0x5d, 0x45, 0x13, 0x7c, 0xea, 0x59,
  80. 0xd3, 0x04, 0x9f, 0xfa, 0x57, 0x35, 0xc1, 0xa7, 0x66, 0x76, 0x4d, 0xf0,
  81. 0xa9, 0x9f, 0x65, 0x13, 0x7c, 0x6a, 0x6f, 0xdb, 0x04, 0x9f, 0x9a, 0x5d,
  82. 0x37, 0xc1, 0xa7, 0x06, 0xf8, 0x4d, 0xf0, 0x69, 0x0c, 0x06, 0x26, 0xf8,
  83. 0x34, 0x08, 0x07, 0x13, 0x7c, 0x1a, 0x8b, 0x85, 0x09, 0x3e, 0x8d, 0xc8,
  84. 0xc3, 0x04, 0x9f, 0xe6, 0x65, 0x62, 0x82, 0x4f, 0xb3, 0x73, 0x31, 0xc1,
  85. 0xa7, 0x41, 0xda, 0x98, 0xe0, 0xd3, 0x54, 0x7d, 0x4c, 0xf0, 0x69, 0xc4,
  86. 0x46, 0x26, 0xf8, 0x34, 0x72, 0x27, 0x13, 0x7c, 0x1a, 0xc5, 0x95, 0x09,
  87. 0x3e, 0x8d, 0xe5, 0xcb, 0x04, 0x9f, 0x06, 0x75, 0x66, 0x82, 0x4f, 0x43,
  88. 0x7b, 0x33, 0xc1, 0xa7, 0x09, 0xde, 0x99, 0xe0, 0xd3, 0x34, 0xff, 0x4c,
  89. 0xf0, 0x69, 0xb2, 0x87, 0x26, 0xf8, 0x34, 0xe9, 0x47, 0x13, 0x7c, 0x9a,
  90. 0xfb, 0xa5, 0x09, 0x3e, 0x4d, 0x01, 0xd4, 0x04, 0x9f, 0x46, 0x82, 0x6a,
  91. 0x82, 0x4f, 0x03, 0x82, 0x35, 0xc1, 0xa7, 0x61, 0xe1, 0x9a, 0xe0, 0xd3,
  92. 0xe4, 0x80, 0x4d, 0xf0, 0x69, 0x8a, 0xc8, 0x26, 0xf8, 0x34, 0x52, 0x68,
  93. 0x13, 0x7c, 0x9a, 0x2f, 0xb6, 0x09, 0x3e, 0x8d, 0x1b, 0xdc, 0x04, 0x9f,
  94. 0x86, 0x8f, 0x6e, 0x82, 0x4f, 0xb3, 0x88, 0x37, 0xc1, 0xa7, 0xd9, 0xe4,
  95. 0x9b, 0xe0, 0xd3, 0x9e, 0x02, 0x4c, 0xf0, 0x69, 0x6d, 0x09, 0x26, 0xf8,
  96. 0xb4, 0xc3, 0x08, 0x13, 0x7c, 0x5a, 0x68, 0x86, 0x09, 0x3e, 0xad, 0x37,
  97. 0xc4, 0x04, 0x9f, 0x56, 0x9d, 0x62, 0x82, 0x4f, 0x9b, 0x8f, 0x31, 0xc1,
  98. 0xa7, 0x2d, 0xe8, 0x98, 0xe0, 0xd3, 0x4a, 0x84, 0x4c, 0xf0, 0x69, 0x3f,
  99. 0x4a, 0x26, 0xf8, 0xb4, 0x2c, 0x29, 0x13, 0x7c, 0xda, 0x9c, 0x96, 0x09,
  100. 0x3e, 0x2d, 0x52, 0xcc, 0x04, 0x9f, 0xb6, 0xaa, 0x66, 0x82, 0x4f, 0x2b,
  101. 0x96, 0x33, 0xc1, 0xa7, 0x7d, 0xeb, 0x99, 0xe0, 0xd3, 0xf6, 0x05, 0x4d,
  102. 0xf0, 0x69, 0x17, 0x8b, 0x26, 0xf8, 0xb4, 0x97, 0x49, 0x13, 0x7c, 0xda,
  103. 0xd1, 0xa6, 0x09, 0x3e, 0x2d, 0x6c, 0xd4, 0x04, 0x9f, 0xb6, 0xb7, 0x6a,
  104. 0x82, 0x4f, 0xab, 0x9c, 0x35, 0xc1, 0xa7, 0xc5, 0xee, 0x9a, 0xe0, 0xd3,
  105. 0x9a, 0x87, 0x4d, 0xf0, 0x69, 0xe9, 0xcb
  106. ];
  107. checkSynth(
  108. /*
  109. * // The stream consists of word "time" with all possible transforms.
  110. * main_header
  111. * metablock_header_easy: 1533, 1
  112. * command_easy: 10, "|", 2 // = 0 << 10 + 1 + 1
  113. * command_easy: 10, "|", 1037 // = 1 << 10 + 1 + 12
  114. * command_easy: 10, "|", 2073 // = 2 << 10 + 1 + 24
  115. * command_easy: 10, "|", 3110 // = 3 << 10 + 1 + 37
  116. * command_easy: 10, "|", 4144 // = 4 << 10 + 1 + 47
  117. * command_easy: 10, "|", 5180 // = 5 << 10 + 1 + 59
  118. * command_easy: 10, "|", 6220 // = 6 << 10 + 1 + 75
  119. * command_easy: 10, "|", 7256 // = 7 << 10 + 1 + 87
  120. * command_easy: 10, "|", 8294 // = 8 << 10 + 1 + 101
  121. * command_easy: 10, "|", 9333 // = 9 << 10 + 1 + 116
  122. * command_easy: 10, "|", 10368 // = 10 << 10 + 1 + 127
  123. * command_easy: 10, "|", 11408 // = 11 << 10 + 1 + 143
  124. * command_easy: 10, "|", 12441 // = 12 << 10 + 1 + 152
  125. * command_easy: 10, "|", 13475 // = 13 << 10 + 1 + 162
  126. * command_easy: 10, "|", 14513 // = 14 << 10 + 1 + 176
  127. * command_easy: 10, "|", 15550 // = 15 << 10 + 1 + 189
  128. * command_easy: 10, "|", 16587 // = 16 << 10 + 1 + 202
  129. * command_easy: 10, "|", 17626 // = 17 << 10 + 1 + 217
  130. * command_easy: 10, "|", 18665 // = 18 << 10 + 1 + 232
  131. * command_easy: 10, "|", 19703 // = 19 << 10 + 1 + 246
  132. * command_easy: 10, "|", 20739 // = 20 << 10 + 1 + 258
  133. * command_easy: 10, "|", 21775 // = 21 << 10 + 1 + 270
  134. * command_easy: 10, "|", 22812 // = 22 << 10 + 1 + 283
  135. * command_easy: 10, "|", 23848 // = 23 << 10 + 1 + 295
  136. * command_easy: 10, "|", 24880 // = 24 << 10 + 1 + 303
  137. * command_easy: 10, "|", 25916 // = 25 << 10 + 1 + 315
  138. * command_easy: 10, "|", 26956 // = 26 << 10 + 1 + 331
  139. * command_easy: 10, "|", 27988 // = 27 << 10 + 1 + 339
  140. * command_easy: 10, "|", 29021 // = 28 << 10 + 1 + 348
  141. * command_easy: 10, "|", 30059 // = 29 << 10 + 1 + 362
  142. * command_easy: 10, "|", 31100 // = 30 << 10 + 1 + 379
  143. * command_easy: 10, "|", 32136 // = 31 << 10 + 1 + 391
  144. * command_easy: 10, "|", 33173 // = 32 << 10 + 1 + 404
  145. * command_easy: 10, "|", 34209 // = 33 << 10 + 1 + 416
  146. * command_easy: 10, "|", 35247 // = 34 << 10 + 1 + 430
  147. * command_easy: 10, "|", 36278 // = 35 << 10 + 1 + 437
  148. * command_easy: 10, "|", 37319 // = 36 << 10 + 1 + 454
  149. * command_easy: 10, "|", 38355 // = 37 << 10 + 1 + 466
  150. * command_easy: 10, "|", 39396 // = 38 << 10 + 1 + 483
  151. * command_easy: 10, "|", 40435 // = 39 << 10 + 1 + 498
  152. * command_easy: 10, "|", 41465 // = 40 << 10 + 1 + 504
  153. * command_easy: 10, "|", 42494 // = 41 << 10 + 1 + 509
  154. * command_easy: 10, "|", 43534 // = 42 << 10 + 1 + 525
  155. * command_easy: 10, "|", 44565 // = 43 << 10 + 1 + 532
  156. * command_easy: 10, "|", 45606 // = 44 << 10 + 1 + 549
  157. * command_easy: 10, "|", 46641 // = 45 << 10 + 1 + 560
  158. * command_easy: 10, "|", 47680 // = 46 << 10 + 1 + 575
  159. * command_easy: 10, "|", 48719 // = 47 << 10 + 1 + 590
  160. * command_easy: 10, "|", 49758 // = 48 << 10 + 1 + 605
  161. * command_easy: 10, "|", 50786 // = 49 << 10 + 1 + 609
  162. * command_easy: 10, "|", 51824 // = 50 << 10 + 1 + 623
  163. * command_easy: 10, "|", 52861 // = 51 << 10 + 1 + 636
  164. * command_easy: 10, "|", 53897 // = 52 << 10 + 1 + 648
  165. * command_easy: 10, "|", 54935 // = 53 << 10 + 1 + 662
  166. * command_easy: 10, "|", 55973 // = 54 << 10 + 1 + 676
  167. * command_easy: 10, "|", 56999 // = 55 << 10 + 1 + 678
  168. * command_easy: 10, "|", 58027 // = 56 << 10 + 1 + 682
  169. * command_easy: 10, "|", 59056 // = 57 << 10 + 1 + 687
  170. * command_easy: 10, "|", 60092 // = 58 << 10 + 1 + 699
  171. * command_easy: 10, "|", 61129 // = 59 << 10 + 1 + 712
  172. * command_easy: 10, "|", 62156 // = 60 << 10 + 1 + 715
  173. * command_easy: 10, "|", 63195 // = 61 << 10 + 1 + 730
  174. * command_easy: 10, "|", 64233 // = 62 << 10 + 1 + 744
  175. * command_easy: 10, "|", 65277 // = 63 << 10 + 1 + 764
  176. * command_easy: 10, "|", 66307 // = 64 << 10 + 1 + 770
  177. * command_easy: 10, "|", 67333 // = 65 << 10 + 1 + 772
  178. * command_easy: 10, "|", 68371 // = 66 << 10 + 1 + 786
  179. * command_easy: 10, "|", 69407 // = 67 << 10 + 1 + 798
  180. * command_easy: 10, "|", 70444 // = 68 << 10 + 1 + 811
  181. * command_easy: 10, "|", 71480 // = 69 << 10 + 1 + 823
  182. * command_easy: 10, "|", 72517 // = 70 << 10 + 1 + 836
  183. * command_easy: 10, "|", 73554 // = 71 << 10 + 1 + 849
  184. * command_easy: 10, "|", 74591 // = 72 << 10 + 1 + 862
  185. * command_easy: 10, "|", 75631 // = 73 << 10 + 1 + 878
  186. * command_easy: 10, "|", 76679 // = 74 << 10 + 1 + 902
  187. * command_easy: 10, "|", 77715 // = 75 << 10 + 1 + 914
  188. * command_easy: 10, "|", 78757 // = 76 << 10 + 1 + 932
  189. * command_easy: 10, "|", 79793 // = 77 << 10 + 1 + 944
  190. * command_easy: 10, "|", 80830 // = 78 << 10 + 1 + 957
  191. * command_easy: 10, "|", 81866 // = 79 << 10 + 1 + 969
  192. * command_easy: 10, "|", 82902 // = 80 << 10 + 1 + 981
  193. * command_easy: 10, "|", 83942 // = 81 << 10 + 1 + 997
  194. * command_easy: 10, "|", 84980 // = 82 << 10 + 1 + 1011
  195. * command_easy: 10, "|", 86018 // = 83 << 10 + 1 + 1025
  196. * command_easy: 10, "|", 87055 // = 84 << 10 + 1 + 1038
  197. * command_easy: 10, "|", 88093 // = 85 << 10 + 1 + 1052
  198. * command_easy: 10, "|", 89129 // = 86 << 10 + 1 + 1064
  199. * command_easy: 10, "|", 90166 // = 87 << 10 + 1 + 1077
  200. * command_easy: 10, "|", 91202 // = 88 << 10 + 1 + 1089
  201. * command_easy: 10, "|", 92239 // = 89 << 10 + 1 + 1102
  202. * command_easy: 10, "|", 93276 // = 90 << 10 + 1 + 1115
  203. * command_easy: 10, "|", 94315 // = 91 << 10 + 1 + 1130
  204. * command_easy: 10, "|", 95353 // = 92 << 10 + 1 + 1144
  205. * command_easy: 10, "|", 96392 // = 93 << 10 + 1 + 1159
  206. * command_easy: 10, "|", 97432 // = 94 << 10 + 1 + 1175
  207. * command_easy: 10, "|", 98468 // = 95 << 10 + 1 + 1187
  208. * command_easy: 10, "|", 99507 // = 96 << 10 + 1 + 1202
  209. * command_easy: 10, "|", 100544 // = 97 << 10 + 1 + 1215
  210. * command_easy: 10, "|", 101581 // = 98 << 10 + 1 + 1228
  211. * command_easy: 10, "|", 102619 // = 99 << 10 + 1 + 1242
  212. * command_easy: 10, "|", 103655 // = 100 << 10 + 1 + 1254
  213. * command_easy: 10, "|", 104694 // = 101 << 10 + 1 + 1269
  214. * command_easy: 10, "|", 105730 // = 102 << 10 + 1 + 1281
  215. * command_easy: 10, "|", 106767 // = 103 << 10 + 1 + 1294
  216. * command_easy: 10, "|", 107804 // = 104 << 10 + 1 + 1307
  217. * command_easy: 10, "|", 108841 // = 105 << 10 + 1 + 1320
  218. * command_easy: 10, "|", 109878 // = 106 << 10 + 1 + 1333
  219. * command_easy: 10, "|", 110917 // = 107 << 10 + 1 + 1348
  220. * command_easy: 10, "|", 111954 // = 108 << 10 + 1 + 1361
  221. * command_easy: 10, "|", 112991 // = 109 << 10 + 1 + 1374
  222. * command_easy: 10, "|", 114028 // = 110 << 10 + 1 + 1387
  223. * command_easy: 10, "|", 115066 // = 111 << 10 + 1 + 1401
  224. * command_easy: 10, "|", 116104 // = 112 << 10 + 1 + 1415
  225. * command_easy: 10, "|", 117140 // = 113 << 10 + 1 + 1427
  226. * command_easy: 10, "|", 118176 // = 114 << 10 + 1 + 1439
  227. * command_easy: 10, "|", 119213 // = 115 << 10 + 1 + 1452
  228. * command_easy: 10, "|", 120250 // = 116 << 10 + 1 + 1465
  229. * command_easy: 10, "|", 121287 // = 117 << 10 + 1 + 1478
  230. * command_easy: 10, "|", 122325 // = 118 << 10 + 1 + 1492
  231. * command_easy: 10, "|", 123363 // = 119 << 10 + 1 + 1506
  232. * command_easy: 10, "|", 124401 // = 120 << 10 + 1 + 1520
  233. */
  234. compressed,
  235. true,
  236. '|categories|categories | categories |ategories|Categories |categories the '
  237. + '| categories|s categories |categories of |Categories|categories and |teg'
  238. + 'ories|categorie|, categories |categories, | Categories |categories in |c'
  239. + 'ategories to |e categories |categories"|categories.|categories">|categor'
  240. + 'ies\n|categor|categories]|categories for |egories|categori|categories a '
  241. + '|categories that | Categories|categories. |.categories| categories, |gor'
  242. + 'ies|categories with |categories\'|categories from |categories by |ories|'
  243. + 'ries| the categories|catego|categories. The |CATEGORIES|categories on |c'
  244. + 'ategories as |categories is |cat|categorieing |categories\n\t|categories'
  245. + ':| categories. |categoriesed |s|ies|cate|categories(|Categories, |ca|cat'
  246. + 'egories at |categoriesly | the categories of |categ|c| Categories, |Cate'
  247. + 'gories"|.categories(|CATEGORIES |Categories">|categories="| categories.|'
  248. + '.com/categories| the categories of the |Categories\'|categories. This |c'
  249. + 'ategories,|.categories |Categories(|Categories.|categories not | categor'
  250. + 'ies="|categorieser | CATEGORIES |categoriesal | CATEGORIES|categories='
  251. + '\'|CATEGORIES"|Categories. | categories(|categoriesful | Categories. |ca'
  252. + 'tegoriesive |categoriesless |CATEGORIES\'|categoriesest | Categories.|CA'
  253. + 'TEGORIES">| categories=\'|Categories,|categoriesize |CATEGORIES.|'
  254. + '\xc2\xa0categories| categories,|Categories="|CATEGORIES="|categoriesous '
  255. + '|CATEGORIES, |Categories=\'| Categories,| CATEGORIES="| CATEGORIES, |CAT'
  256. + 'EGORIES,|CATEGORIES(|CATEGORIES. | CATEGORIES.|CATEGORIES=\'| CATEGORIES'
  257. + '. | Categories="| CATEGORIES=\'| Categories=\''
  258. );
  259. },
  260. testAllTransforms4() {
  261. const compressed = [
  262. 0x1b, 0x40, 0x03, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  263. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x51, 0x3e,
  264. 0x42, 0x51, 0x3e, 0x81, 0x02, 0x51, 0x3e, 0x11, 0x04, 0xa2, 0x7c, 0xe2,
  265. 0x0b, 0x44, 0xf9, 0x24, 0x1b, 0x10, 0xe5, 0x93, 0x84, 0x50, 0x94, 0x4f,
  266. 0xba, 0x02, 0x51, 0x3e, 0x69, 0x0c, 0x45, 0xf9, 0x64, 0x39, 0x20, 0xca,
  267. 0x27, 0x13, 0x22, 0x51, 0x3e, 0xd9, 0x11, 0x8a, 0xf2, 0xc9, 0xa2, 0x58,
  268. 0x94, 0x4f, 0x4e, 0x05, 0xa2, 0x7c, 0x72, 0x2c, 0x12, 0xe5, 0x93, 0x83,
  269. 0xa1, 0x28, 0x9f, 0xfc, 0x8c, 0x45, 0xf9, 0x14, 0x6e, 0x40, 0x94, 0x4f,
  270. 0x71, 0x47, 0x44, 0xf9, 0x14, 0x80, 0x48, 0x94, 0x4f, 0x81, 0xc8, 0x44,
  271. 0xf9, 0x14, 0x8e, 0x50, 0x94, 0x4f, 0x41, 0x49, 0x45, 0xf9, 0x14, 0x9b,
  272. 0x58, 0x94, 0x4f, 0x11, 0xca, 0x45, 0xf9, 0x94, 0xa3, 0x40, 0x94, 0x4f,
  273. 0x99, 0x4a, 0x44, 0xf9, 0x94, 0xb3, 0x48, 0x94, 0x4f, 0x59, 0xcb, 0x44,
  274. 0xf9, 0x94, 0xb8, 0x50, 0x94, 0x4f, 0x09, 0x4c, 0x45, 0xf9, 0x94, 0xcb,
  275. 0x58, 0x94, 0x4f, 0x19, 0xcd, 0x45, 0xf9, 0x54, 0xd8, 0x80, 0x28, 0x9f,
  276. 0xca, 0x9b, 0x10, 0xe5, 0x53, 0x99, 0x23, 0xa2, 0x7c, 0xaa, 0x73, 0x46,
  277. 0x94, 0x4f, 0x25, 0x0f, 0x89, 0xf2, 0xa9, 0xf0, 0x29, 0x51, 0x3e, 0xd5,
  278. 0x40, 0x26, 0xca, 0xa7, 0x62, 0xe8, 0x44, 0xf9, 0x54, 0x0d, 0xa1, 0x28,
  279. 0x9f, 0xca, 0xa1, 0x14, 0xe5, 0x53, 0x61, 0xa4, 0xa2, 0x7c, 0xaa, 0x8c,
  280. 0x56, 0x94, 0x4f, 0x45, 0x12, 0x8b, 0xf2, 0xa9, 0x52, 0x6a, 0x51, 0x3e,
  281. 0x95, 0x4c, 0x2e, 0xca, 0xa7, 0xda, 0xe9, 0x45, 0xf9, 0xd4, 0x44, 0x81,
  282. 0x28, 0x9f, 0xba, 0xa8, 0x10, 0xe5, 0x53, 0x37, 0x25, 0xa2, 0x7c, 0x6a,
  283. 0xaa, 0x46, 0x94, 0x4f, 0xad, 0x15, 0x89, 0xf2, 0xa9, 0xc5, 0x2a, 0x51,
  284. 0x3e, 0xb5, 0x5a, 0x26, 0xca, 0xa7, 0x5e, 0xeb, 0x44, 0xf9, 0xd4, 0x6c,
  285. 0xa1, 0x28, 0x9f, 0xba, 0xad, 0x14, 0xe5, 0x53, 0xcf, 0xa5, 0xa2, 0x7c,
  286. 0x6a, 0xbd, 0x56, 0x94, 0x4f, 0xbd, 0x17, 0x8b, 0xf2, 0xa9, 0x09, 0x6b,
  287. 0x51, 0x3e, 0x35, 0x63, 0x2e, 0xca, 0xa7, 0xd6, 0xec, 0x45, 0xf9, 0x34,
  288. 0x9b, 0x01, 0x51, 0x3e, 0x0d, 0x67, 0x41, 0x94, 0x4f, 0x43, 0x9a, 0x10,
  289. 0xe5, 0xd3, 0xa8, 0x36, 0x44, 0xf9, 0x34, 0xb1, 0x11, 0x51, 0x3e, 0xcd,
  290. 0x6d, 0x45, 0x94, 0x4f, 0xe3, 0x9b, 0x11, 0xe5, 0xd3, 0x14, 0x77, 0x44,
  291. 0xf9, 0x34, 0xcc, 0x21, 0x51, 0x3e, 0x8d, 0x75, 0x49, 0x94, 0x4f, 0x83,
  292. 0x9e, 0x12, 0xe5, 0xd3, 0xb8, 0xb7, 0x44, 0xf9, 0x34, 0xfa, 0x31, 0x51,
  293. 0x3e, 0x0d, 0x80, 0x4d, 0x94, 0x4f, 0x73, 0xa0, 0x13, 0xe5, 0xd3, 0x34,
  294. 0xf8, 0x44, 0xf9, 0x34, 0x13, 0x42, 0x51, 0x3e, 0x4d, 0x87, 0x51, 0x94,
  295. 0x4f, 0x53, 0xa2, 0x14, 0xe5, 0xd3, 0xb4, 0x38, 0x45, 0xf9, 0x34, 0x34,
  296. 0x52, 0x51, 0x3e, 0x0d, 0x8f, 0x55, 0x94, 0x4f, 0x23, 0xa4, 0x15, 0xe5,
  297. 0xd3, 0x24, 0x79, 0x45, 0xf9, 0x34, 0x4f, 0x62, 0x51, 0x3e, 0x8d, 0x95,
  298. 0x59, 0x94, 0x4f, 0xd3, 0xa5, 0x16, 0xe5, 0xd3, 0x98, 0xb9, 0x45, 0xf9,
  299. 0x34, 0x6e, 0x72, 0x51, 0x3e, 0xcd, 0x9d, 0x5d, 0x94, 0x4f, 0x13, 0xa8,
  300. 0x17, 0xe5, 0xd3, 0x1c, 0xfa, 0x45, 0xf9, 0xb4, 0x90, 0x02, 0x51, 0x3e,
  301. 0xed, 0xa5, 0x41, 0x94, 0x4f, 0xeb, 0xa9, 0x10, 0xe5, 0xd3, 0x9a, 0x3a,
  302. 0x44, 0xf9, 0xb4, 0xac, 0x12, 0x51, 0x3e, 0x6d, 0xad, 0x45, 0x94, 0x4f,
  303. 0xbb, 0xab, 0x11, 0xe5, 0xd3, 0x0a, 0x7b, 0x44, 0xf9, 0xb4, 0xc9, 0x22,
  304. 0x51, 0x3e, 0x2d, 0xb4, 0x49, 0x94, 0x4f, 0x7b, 0xad, 0x12, 0xe5, 0xd3,
  305. 0x82, 0xbb, 0x44, 0xf9, 0xb4, 0xe7, 0x32, 0x51, 0x3e, 0xad, 0xbb, 0x4d,
  306. 0x94, 0x4f, 0x5b, 0xaf, 0x13, 0xe5, 0xd3, 0xf6, 0xfb, 0x44, 0xf9, 0xb4,
  307. 0x05, 0x43, 0x51, 0x3e, 0xed, 0xc2, 0x51, 0x94, 0x4f, 0x1b, 0xb1, 0x14,
  308. 0xe5, 0xd3, 0x62, 0x3c, 0x45, 0xf9, 0xb4, 0x1f, 0x53, 0x51, 0x3e, 0xad,
  309. 0xc9, 0x55, 0x94, 0x4f, 0xeb, 0xb2, 0x15, 0xe5, 0xd3, 0xda, 0x7c, 0x45,
  310. 0xf9, 0xb4, 0x3e, 0x63
  311. ];
  312. checkSynth(
  313. /*
  314. * // The stream consists of word "time" with all possible transforms.
  315. * main_header
  316. * metablock_header_easy: 833, 1
  317. * command_easy: 4, "|", 2 // = 0 << 10 + 1 + 1
  318. * command_easy: 4, "|", 1031 // = 1 << 10 + 1 + 6
  319. * command_easy: 4, "|", 2061 // = 2 << 10 + 1 + 12
  320. * command_easy: 4, "|", 3092 // = 3 << 10 + 1 + 19
  321. * command_easy: 4, "|", 4120 // = 4 << 10 + 1 + 23
  322. * command_easy: 4, "|", 5150 // = 5 << 10 + 1 + 29
  323. * command_easy: 4, "|", 6184 // = 6 << 10 + 1 + 39
  324. * command_easy: 4, "|", 7214 // = 7 << 10 + 1 + 45
  325. * command_easy: 4, "|", 8246 // = 8 << 10 + 1 + 53
  326. * command_easy: 4, "|", 9279 // = 9 << 10 + 1 + 62
  327. * command_easy: 4, "|", 10308 // = 10 << 10 + 1 + 67
  328. * command_easy: 4, "|", 11342 // = 11 << 10 + 1 + 77
  329. * command_easy: 4, "|", 12369 // = 12 << 10 + 1 + 80
  330. * command_easy: 4, "|", 13397 // = 13 << 10 + 1 + 84
  331. * command_easy: 4, "|", 14429 // = 14 << 10 + 1 + 92
  332. * command_easy: 4, "|", 15460 // = 15 << 10 + 1 + 99
  333. * command_easy: 4, "|", 16491 // = 16 << 10 + 1 + 106
  334. * command_easy: 4, "|", 17524 // = 17 << 10 + 1 + 115
  335. * command_easy: 4, "|", 18557 // = 18 << 10 + 1 + 124
  336. * command_easy: 4, "|", 19589 // = 19 << 10 + 1 + 132
  337. * command_easy: 4, "|", 20619 // = 20 << 10 + 1 + 138
  338. * command_easy: 4, "|", 21649 // = 21 << 10 + 1 + 144
  339. * command_easy: 4, "|", 22680 // = 22 << 10 + 1 + 151
  340. * command_easy: 4, "|", 23710 // = 23 << 10 + 1 + 157
  341. * command_easy: 4, "|", 24736 // = 24 << 10 + 1 + 159
  342. * command_easy: 4, "|", 25766 // = 25 << 10 + 1 + 165
  343. * command_easy: 4, "|", 26800 // = 26 << 10 + 1 + 175
  344. * command_easy: 4, "|", 27826 // = 27 << 10 + 1 + 177
  345. * command_easy: 4, "|", 28853 // = 28 << 10 + 1 + 180
  346. * command_easy: 4, "|", 29885 // = 29 << 10 + 1 + 188
  347. * command_easy: 4, "|", 30920 // = 30 << 10 + 1 + 199
  348. * command_easy: 4, "|", 31950 // = 31 << 10 + 1 + 205
  349. * command_easy: 4, "|", 32981 // = 32 << 10 + 1 + 212
  350. * command_easy: 4, "|", 34011 // = 33 << 10 + 1 + 218
  351. * command_easy: 4, "|", 35043 // = 34 << 10 + 1 + 226
  352. * command_easy: 4, "|", 36068 // = 35 << 10 + 1 + 227
  353. * command_easy: 4, "|", 37103 // = 36 << 10 + 1 + 238
  354. * command_easy: 4, "|", 38133 // = 37 << 10 + 1 + 244
  355. * command_easy: 4, "|", 39168 // = 38 << 10 + 1 + 255
  356. * command_easy: 4, "|", 40201 // = 39 << 10 + 1 + 264
  357. * command_easy: 4, "|", 41226 // = 40 << 10 + 1 + 265
  358. * command_easy: 4, "|", 42251 // = 41 << 10 + 1 + 266
  359. * command_easy: 4, "|", 43285 // = 42 << 10 + 1 + 276
  360. * command_easy: 4, "|", 44310 // = 43 << 10 + 1 + 277
  361. * command_easy: 4, "|", 45345 // = 44 << 10 + 1 + 288
  362. * command_easy: 4, "|", 46374 // = 45 << 10 + 1 + 293
  363. * command_easy: 4, "|", 47407 // = 46 << 10 + 1 + 302
  364. * command_easy: 4, "|", 48440 // = 47 << 10 + 1 + 311
  365. * command_easy: 4, "|", 49473 // = 48 << 10 + 1 + 320
  366. * command_easy: 4, "|", 50498 // = 49 << 10 + 1 + 321
  367. * command_easy: 4, "|", 51530 // = 50 << 10 + 1 + 329
  368. * command_easy: 4, "|", 52561 // = 51 << 10 + 1 + 336
  369. * command_easy: 4, "|", 53591 // = 52 << 10 + 1 + 342
  370. * command_easy: 4, "|", 54623 // = 53 << 10 + 1 + 350
  371. * command_easy: 4, "|", 55655 // = 54 << 10 + 1 + 358
  372. * command_easy: 4, "|", 56680 // = 55 << 10 + 1 + 359
  373. * command_easy: 4, "|", 57705 // = 56 << 10 + 1 + 360
  374. * command_easy: 4, "|", 58730 // = 57 << 10 + 1 + 361
  375. * command_easy: 4, "|", 59760 // = 58 << 10 + 1 + 367
  376. * command_easy: 4, "|", 60791 // = 59 << 10 + 1 + 374
  377. * command_easy: 4, "|", 61816 // = 60 << 10 + 1 + 375
  378. * command_easy: 4, "|", 62849 // = 61 << 10 + 1 + 384
  379. * command_easy: 4, "|", 63881 // = 62 << 10 + 1 + 392
  380. * command_easy: 4, "|", 64919 // = 63 << 10 + 1 + 406
  381. * command_easy: 4, "|", 65944 // = 64 << 10 + 1 + 407
  382. * command_easy: 4, "|", 66969 // = 65 << 10 + 1 + 408
  383. * command_easy: 4, "|", 68001 // = 66 << 10 + 1 + 416
  384. * command_easy: 4, "|", 69031 // = 67 << 10 + 1 + 422
  385. * command_easy: 4, "|", 70062 // = 68 << 10 + 1 + 429
  386. * command_easy: 4, "|", 71092 // = 69 << 10 + 1 + 435
  387. * command_easy: 4, "|", 72123 // = 70 << 10 + 1 + 442
  388. * command_easy: 4, "|", 73154 // = 71 << 10 + 1 + 449
  389. * command_easy: 4, "|", 74185 // = 72 << 10 + 1 + 456
  390. * command_easy: 4, "|", 75219 // = 73 << 10 + 1 + 466
  391. * command_easy: 4, "|", 76261 // = 74 << 10 + 1 + 484
  392. * command_easy: 4, "|", 77291 // = 75 << 10 + 1 + 490
  393. * command_easy: 4, "|", 78327 // = 76 << 10 + 1 + 502
  394. * command_easy: 4, "|", 79357 // = 77 << 10 + 1 + 508
  395. * command_easy: 4, "|", 80388 // = 78 << 10 + 1 + 515
  396. * command_easy: 4, "|", 81418 // = 79 << 10 + 1 + 521
  397. * command_easy: 4, "|", 82448 // = 80 << 10 + 1 + 527
  398. * command_easy: 4, "|", 83482 // = 81 << 10 + 1 + 537
  399. * command_easy: 4, "|", 84514 // = 82 << 10 + 1 + 545
  400. * command_easy: 4, "|", 85546 // = 83 << 10 + 1 + 553
  401. * command_easy: 4, "|", 86577 // = 84 << 10 + 1 + 560
  402. * command_easy: 4, "|", 87609 // = 85 << 10 + 1 + 568
  403. * command_easy: 4, "|", 88639 // = 86 << 10 + 1 + 574
  404. * command_easy: 4, "|", 89670 // = 87 << 10 + 1 + 581
  405. * command_easy: 4, "|", 90700 // = 88 << 10 + 1 + 587
  406. * command_easy: 4, "|", 91731 // = 89 << 10 + 1 + 594
  407. * command_easy: 4, "|", 92762 // = 90 << 10 + 1 + 601
  408. * command_easy: 4, "|", 93795 // = 91 << 10 + 1 + 610
  409. * command_easy: 4, "|", 94827 // = 92 << 10 + 1 + 618
  410. * command_easy: 4, "|", 95860 // = 93 << 10 + 1 + 627
  411. * command_easy: 4, "|", 96894 // = 94 << 10 + 1 + 637
  412. * command_easy: 4, "|", 97924 // = 95 << 10 + 1 + 643
  413. * command_easy: 4, "|", 98957 // = 96 << 10 + 1 + 652
  414. * command_easy: 4, "|", 99988 // = 97 << 10 + 1 + 659
  415. * command_easy: 4, "|", 101019 // = 98 << 10 + 1 + 666
  416. * command_easy: 4, "|", 102051 // = 99 << 10 + 1 + 674
  417. * command_easy: 4, "|", 103081 // = 100 << 10 + 1 + 680
  418. * command_easy: 4, "|", 104114 // = 101 << 10 + 1 + 689
  419. * command_easy: 4, "|", 105144 // = 102 << 10 + 1 + 695
  420. * command_easy: 4, "|", 106175 // = 103 << 10 + 1 + 702
  421. * command_easy: 4, "|", 107206 // = 104 << 10 + 1 + 709
  422. * command_easy: 4, "|", 108237 // = 105 << 10 + 1 + 716
  423. * command_easy: 4, "|", 109268 // = 106 << 10 + 1 + 723
  424. * command_easy: 4, "|", 110301 // = 107 << 10 + 1 + 732
  425. * command_easy: 4, "|", 111332 // = 108 << 10 + 1 + 739
  426. * command_easy: 4, "|", 112363 // = 109 << 10 + 1 + 746
  427. * command_easy: 4, "|", 113394 // = 110 << 10 + 1 + 753
  428. * command_easy: 4, "|", 114426 // = 111 << 10 + 1 + 761
  429. * command_easy: 4, "|", 115458 // = 112 << 10 + 1 + 769
  430. * command_easy: 4, "|", 116488 // = 113 << 10 + 1 + 775
  431. * command_easy: 4, "|", 117518 // = 114 << 10 + 1 + 781
  432. * command_easy: 4, "|", 118549 // = 115 << 10 + 1 + 788
  433. * command_easy: 4, "|", 119580 // = 116 << 10 + 1 + 795
  434. * command_easy: 4, "|", 120611 // = 117 << 10 + 1 + 802
  435. * command_easy: 4, "|", 121643 // = 118 << 10 + 1 + 810
  436. * command_easy: 4, "|", 122675 // = 119 << 10 + 1 + 818
  437. * command_easy: 4, "|", 123707 // = 120 << 10 + 1 + 826
  438. */
  439. compressed,
  440. true,
  441. '|time|time | time |ime|Time |time the | time|s time |time of |Time|time an'
  442. + 'd |me|tim|, time |time, | Time |time in |time to |e time |time"|time.|ti'
  443. + 'me">|time\n|t|time]|time for |e|ti|time a |time that | Time|time. |.time'
  444. + '| time, ||time with |time\'|time from |time by ||| the time||time. The |'
  445. + 'TIME|time on |time as |time is ||timing |time\n\t|time:| time. |timeed |'
  446. + '|||time(|Time, ||time at |timely | the time of ||| Time, |Time"|.time(|T'
  447. + 'IME |Time">|time="| time.|.com/time| the time of the |Time\'|time. This '
  448. + '|time,|.time |Time(|Time.|time not | time="|timeer | TIME |timeal | TIME'
  449. + '|time=\'|TIME"|Time. | time(|timeful | Time. |timeive |timeless |TIME'
  450. + '\'|timeest | Time.|TIME">| time=\'|Time,|timeize |TIME.|\xc2\xa0time| ti'
  451. + 'me,|Time="|TIME="|timeous |TIME, |Time=\'| Time,| TIME="| TIME, |TIME,|T'
  452. + 'IME(|TIME. | TIME.|TIME=\'| TIME. | Time="| TIME=\'| Time=\''
  453. );
  454. },
  455. testBaseDictWord() {
  456. const compressed = [
  457. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  458. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x02
  459. ];
  460. checkSynth(
  461. /*
  462. * // The stream consists of a base dictionary word.
  463. * main_header
  464. * metablock_header_easy: 4, 1
  465. * command_inscopy_easy: 0, 4
  466. * command_dist_easy: 1
  467. */
  468. compressed,
  469. true,
  470. 'time'
  471. );
  472. },
  473. testBaseDictWordFinishBlockOnRingbufferWrap() {
  474. const compressed = [
  475. 0x1b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  476. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x9b, 0x58, 0x32,
  477. 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,
  478. 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,
  479. 0x34, 0x34, 0x34, 0xd4, 0x00
  480. ];
  481. checkSynth(
  482. /*
  483. * main_header
  484. * metablock_header_easy: 32, 1 // 32 = minimal ringbuffer size
  485. * command_easy: 4, "aaaaaaaaaaaaaaaaaaaaaaaaaaaa", 29
  486. */
  487. compressed,
  488. true,
  489. times(28, 'a')
  490. + 'time'
  491. );
  492. },
  493. testBaseDictWordTooLong() {
  494. const compressed = [
  495. 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  496. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x02
  497. ];
  498. checkSynth(
  499. /*
  500. * // Has an unmodified dictionary word that goes over the end of the
  501. * // meta-block. Same as BaseDictWord, but with a shorter meta-block length.
  502. * main_header
  503. * metablock_header_easy: 1, 1
  504. * command_inscopy_easy: 0, 4
  505. * command_dist_easy: 1
  506. */
  507. compressed,
  508. false,
  509. ''
  510. );
  511. },
  512. testBlockCountMessage() {
  513. const compressed = [
  514. 0x1b, 0x0b, 0x00, 0x11, 0x01, 0x8c, 0xc1, 0xc5, 0x0d, 0x08, 0x00, 0x22,
  515. 0x65, 0xe1, 0xfc, 0xfd, 0x22, 0x2c, 0xc4, 0x00, 0x00, 0x38, 0xd8, 0x32,
  516. 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0x04, 0x10, 0x42, 0x00, 0x00,
  517. 0x00
  518. ];
  519. checkSynth(
  520. /*
  521. * // Same as BlockSwitchMessage but also uses 0-bit block-type commands.
  522. * main_header
  523. * metablock_header_begin: 1, 0, 12, 0
  524. * // two literal block types
  525. * vlq_blocktypes: 2
  526. * huffman_simple: 1,1,4, 1 // literal blocktype prefix code
  527. * huffman_fixed: 26 // literal blockcount prefix code
  528. * blockcount_easy: 2 // 2 a's
  529. * // one ins/copy and dist block type
  530. * vlq_blocktypes: 1
  531. * vlq_blocktypes: 1
  532. * ndirect: 0, 0
  533. * // two MSB6 literal context modes
  534. * bits: "00", "00"
  535. * // two literal prefix codes
  536. * vlq_blocktypes: 2
  537. * // literal context map
  538. * vlq_rlemax: 5
  539. * huffman_simple: 0,3,7, 5,0,6 // context map RLE Huffman code
  540. * // context map RLE: repeat 0 64 times, 1+5 64 times
  541. * bits: "01", "0", "11111", "11", "0", "11111"
  542. * bit: 1 // MTF enabled
  543. * // one distance prefix code
  544. * vlq_blocktypes: 1
  545. * huffman_simple: 0,1,256, 97 // only a's
  546. * huffman_simple: 0,1,256, 98 // only b's
  547. * huffman_fixed: 704
  548. * huffman_fixed: 64
  549. * // now comes the data
  550. * command_inscopy_easy: 12, 0
  551. * blockcount_easy: 2 // switch to other block type; 2 b's
  552. * blockcount_easy: 5 // switch to other block type; 5 a's
  553. * blockcount_easy: 1 // switch to other block type; 1 b
  554. * blockcount_easy: 1 // switch to other block type; 1 a
  555. * blockcount_easy: 1 // switch to other block type; 1 b
  556. */
  557. compressed,
  558. true,
  559. 'aabbaaaaabab'
  560. );
  561. },
  562. testBlockSwitchMessage() {
  563. const compressed = [
  564. 0x1b, 0x0b, 0x00, 0xd1, 0xe1, 0x01, 0xc6, 0xe0, 0xe2, 0x06, 0x04, 0x00,
  565. 0x91, 0xb2, 0x70, 0xfe, 0x7e, 0x11, 0x16, 0x62, 0x00, 0x00, 0x1c, 0x6c,
  566. 0x99, 0xc4, 0x00, 0x09, 0x00, 0x80, 0x3b, 0x6d, 0x02, 0x08, 0x82, 0x00,
  567. 0x00, 0x00
  568. ];
  569. checkSynth(
  570. /*
  571. * // Uses blocks with 1-symbol Huffman codes that take 0 bits, so that it
  572. * // is the block-switch commands that encode the message rather than actual
  573. * // literals.
  574. * main_header
  575. * metablock_header_begin: 1, 0, 12, 0
  576. * // two literal block types
  577. * vlq_blocktypes: 2
  578. * huffman_simple: 1,4,4, 1,0,2,3 // literal blocktype prefix code
  579. * huffman_fixed: 26 // literal blockcount prefix code
  580. * blockcount_easy: 2 // 2 a's
  581. * // one ins/copy and dist block type
  582. * vlq_blocktypes: 1
  583. * vlq_blocktypes: 1
  584. * ndirect: 0, 0
  585. * // two MSB6 literal context modes
  586. * bits: "00", "00"
  587. * // two literal prefix codes
  588. * vlq_blocktypes: 2
  589. * // literal context map
  590. * vlq_rlemax: 5
  591. * huffman_simple: 0,3,7, 5,0,6 // context map RLE Huffman code
  592. * // context map RLE: repeat 0 64 times, 1+5 64 times
  593. * bits: "01", "0", "11111", "11", "0", "11111"
  594. * bit: 1 // MTF enabled
  595. * // one distance prefix code
  596. * vlq_blocktypes: 1
  597. * huffman_simple: 0,1,256, 97 // only a's
  598. * huffman_simple: 0,1,256, 98 // only b's
  599. * huffman_fixed: 704
  600. * huffman_fixed: 64
  601. * // now comes the data
  602. * command_inscopy_easy: 12, 0
  603. * bits: "0"; blockcount_easy: 2 // switch to other block type; 2 b's
  604. * bits: "0"; blockcount_easy: 5 // switch to other block type; 5 a's
  605. * bits: "0"; blockcount_easy: 1 // switch to other block type; 1 b
  606. * bits: "0"; blockcount_easy: 1 // switch to other block type; 1 a
  607. * bits: "0"; blockcount_easy: 1 // switch to other block type; 1 b
  608. */
  609. compressed,
  610. true,
  611. 'aabbaaaaabab'
  612. );
  613. },
  614. testClClTreeDeficiency() {
  615. const compressed = [
  616. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x01, 0x80, 0x43, 0x01, 0xe0, 0x05, 0x88,
  617. 0x55, 0x90, 0x01, 0x00, 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x00, 0x00,
  618. 0x77, 0xda, 0x28, 0x40, 0x23
  619. ];
  620. checkSynth(
  621. /*
  622. * // This test is a copy of TooManySymbolsRepeated, with changed clcl table.
  623. * main_header
  624. * metablock_header_begin: 1, 0, 4, 0
  625. * metablock_header_trivial_context
  626. * hskip: 0
  627. * clcl_ordered: 0,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,1,0
  628. * set_prefix_cl_rle: "", "110", "", "", "", "", "", "", "111", "101",\
  629. * "", "", "", "", "", "", "0", ""
  630. * cl_rle: 8
  631. * cl_rle_rep: 9, 96
  632. * cl_rle: 1
  633. * cl_rle_rep: 9, 159 // 1 + 96 + 1 + 159 = 257 > 256 = alphabet size
  634. * huffman_fixed: 704
  635. * huffman_fixed: 64
  636. * command_inscopy_easy: 4, 0
  637. * command_literal_bits: 0, 0, 0, 101100010
  638. */
  639. compressed,
  640. false,
  641. 'aaab'
  642. );
  643. },
  644. testClClTreeExcess() {
  645. const compressed = [
  646. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x01, 0x80, 0xc3, 0x7b, 0x80, 0x58, 0x41,
  647. 0x06, 0x00, 0xe0, 0x60, 0xcb, 0x24, 0x06, 0x48, 0x00, 0x00, 0xdc, 0x69,
  648. 0xa3, 0x00, 0x8d, 0x00
  649. ];
  650. checkSynth(
  651. /*
  652. * // This test is a copy of ClClTreeDeficiency, with changed clcl table.
  653. * main_header
  654. * metablock_header_begin: 1, 0, 4, 0
  655. * metablock_header_trivial_context
  656. * hskip: 0
  657. * clcl_ordered: 0,3,0,0,0,0,0,0,3,1,0,0,0,0,0,0,1,0
  658. * set_prefix_cl_rle: "", "110", "", "", "", "", "", "", "111", "1",\
  659. * "", "", "", "", "", "", "0", ""
  660. * cl_rle: 8
  661. * cl_rle_rep: 9, 96
  662. * cl_rle: 1
  663. * cl_rle_rep: 9, 159 // 1 + 96 + 1 + 159 = 257 > 256 = alphabet size
  664. * huffman_fixed: 704
  665. * huffman_fixed: 64
  666. * command_inscopy_easy: 4, 0
  667. * command_literal_bits: 0, 0, 0, 101100010
  668. */
  669. compressed,
  670. false,
  671. 'aaab'
  672. );
  673. },
  674. testComplexHuffmanCodeTwoSymbols() {
  675. const compressed = [
  676. 0x1b, 0x01, 0x00, 0x00, 0x80, 0x03, 0xe0, 0xa2, 0x1a, 0x00, 0x00, 0x0e,
  677. 0xb6, 0x4c, 0x62, 0x80, 0x04, 0x00, 0xc0, 0x9d, 0x36, 0x12, 0x04
  678. ];
  679. checkSynth(
  680. /*
  681. * // This tests a complex Huffman code with only two symbols followed by a
  682. * // tiny amount of content.
  683. * main_header
  684. * metablock_header_begin: 1, 0, 2, 0
  685. * metablock_header_trivial_context
  686. * // begin of literal Huffman tree. The tree has symbol length 1 for "a",
  687. * // symbol length 1 for "b" and symbol length 0 for all others.
  688. * hskip: 0
  689. * clcl_ordered: 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
  690. * set_prefix_cl_rle: "", "0", "", "", "", "", "", "", "", "",\
  691. * "", "", "", "", "", "", "", "1"
  692. * cl_rle_rep_0: 97
  693. * cl_rle: 1 // literal number 97, that is, the letter 'a'
  694. * cl_rle: 1 // literal number 98, that is, the letter 'b'
  695. * // end of literal Huffman tree
  696. * huffman_fixed: 704
  697. * huffman_fixed: 64
  698. * command_inscopy_easy: 2, 0
  699. * command_literal_bits: 0, 1 // a followed by b
  700. */
  701. compressed,
  702. true,
  703. 'ab'
  704. );
  705. },
  706. testCompressedUncompressedShortCompressed() {
  707. const compressed = [
  708. 0x8b, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  709. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x9b, 0x66, 0x6f,
  710. 0x1b, 0x0a, 0x50, 0x00, 0x10, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x31,
  711. 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0,
  712. 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x24, 0x00
  713. ];
  714. checkSynth(
  715. /*
  716. * main_header: 22
  717. * metablock_header_easy: 1022, 0
  718. * command_easy: 1021, "a", 1 // 1022 x "a"
  719. * metablock_uncompressed: "bbbbbb"
  720. * metablock_header_easy: 4, 1
  721. * command_easy: 4, "", 1 // 6 + 4 = 10 x "b"
  722. */
  723. compressed,
  724. true,
  725. times(1022, 'a')
  726. + times(10, 'b')
  727. );
  728. },
  729. testCompressedUncompressedShortCompressedSmallWindow() {
  730. const compressed = [
  731. 0x21, 0xf4, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xa7, 0x6d, 0x00, 0x00,
  732. 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0x34, 0x7b,
  733. 0xdb, 0x50, 0x80, 0x02, 0x80, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x31,
  734. 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0,
  735. 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x24, 0x00
  736. ];
  737. checkSynth(
  738. /*
  739. * main_header: 10
  740. * metablock_header_easy: 1022, 0
  741. * command_easy: 1021, "a", 1 // 1022 x "a"
  742. * metablock_uncompressed: "bbbbbb"
  743. * metablock_header_easy: 4, 1
  744. * command_easy: 4, "", 1 // 6 + 4 = 10 x "b"
  745. */
  746. compressed,
  747. true,
  748. times(1022, 'a')
  749. + times(10, 'b')
  750. );
  751. },
  752. testCopyLengthTooLong() {
  753. const compressed = [
  754. 0x1b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  755. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x11, 0x86,
  756. 0x02
  757. ];
  758. checkSynth(
  759. /*
  760. * // Has a copy length that goes over the end of the meta-block.
  761. * // Same as OneCommand, but with a shorter meta-block length.
  762. * main_header
  763. * metablock_header_easy: 2, 1
  764. * command_easy: 2, "a", 1
  765. */
  766. compressed,
  767. false,
  768. ''
  769. );
  770. },
  771. testCopyTooLong() {
  772. const compressed = [
  773. 0xa1, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xa7, 0x6d, 0x00, 0x00,
  774. 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0x34, 0xab,
  775. 0xdb, 0x50, 0x00
  776. ];
  777. checkSynth(
  778. /*
  779. * // Has a copy length that goes over the end of the meta-block,
  780. * // with a ringbuffer wrap.
  781. * main_header: 10
  782. * metablock_header_easy: 2, 1
  783. * command_easy: 1024, "a", 1
  784. */
  785. compressed,
  786. false,
  787. ''
  788. );
  789. },
  790. testCustomHuffmanCode() {
  791. const compressed = [
  792. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x01, 0x80, 0xc3, 0x3d, 0x80, 0x58, 0x82,
  793. 0x08, 0x00, 0xc0, 0xc1, 0x96, 0x49, 0x0c, 0x90, 0x00, 0x00, 0xb8, 0xd3,
  794. 0x46, 0x01, 0x1a, 0x01
  795. ];
  796. checkSynth(
  797. /*
  798. * // This tests a small hand crafted Huffman code followed by a tiny amount
  799. * // of content. This tests if the bit reader detects the end correctly even
  800. * // with tiny content after a larger Huffman tree encoding.
  801. * main_header
  802. * metablock_header_begin: 1, 0, 4, 0
  803. * metablock_header_trivial_context
  804. * // begin of literal Huffman tree. The tree has symbol length 1 for "a",
  805. * // symbol length 8 for null, symbol length 9 for all others. The length 1
  806. * // for a is chosen on purpose here, the others must be like that to
  807. * // fulfill the requirement that sum of 32>>length is 32768.
  808. * hskip: 0
  809. * clcl_ordered: 0,3,0,0,0,0,0,0,3,2,0,0,0,0,0,0,1,0
  810. * set_prefix_cl_rle: "", "110", "", "", "", "", "", "", "111", "10",\
  811. * "", "", "", "", "", "", "0", ""
  812. * cl_rle: 8
  813. * cl_rle_rep: 9, 96
  814. * cl_rle: 1 // literal number 97, that is, the letter 'a'
  815. * cl_rle_rep: 9, 158
  816. * // end of literal Huffman tree
  817. * huffman_fixed: 704
  818. * huffman_fixed: 64
  819. * command_inscopy_easy: 4, 0
  820. * // Here is how the code "101100010" for b is derived: remember that a has
  821. * // symbol length 1, null has symbol length 8, the rest 9. So in the
  822. * // canonical Huffman code, the code for "a" is "0", for null is
  823. * // "10000000". The next value has "100000010" (cfr. the rules of canonical
  824. * // prefix code). Counting upwards +95 from there, the value "@" (ASCII 96,
  825. * // before "a") has "101100001", and so b, the next 9-bit symbol, has the
  826. * // next binary value "101100010".
  827. * command_literal_bits: 0, 0, 0, 101100010 // 3 a's followed by a b
  828. */
  829. compressed,
  830. true,
  831. 'aaab'
  832. );
  833. },
  834. testDistanceLut() {
  835. const compressed = [
  836. 0x8b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  837. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x99, 0x86,
  838. 0x46, 0xc6, 0x22, 0x14, 0x00, 0x00, 0x03, 0x00, 0x00, 0x1c, 0xa7, 0x6d,
  839. 0x00, 0x00, 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x21, 0x91, 0x69, 0x62,
  840. 0x6a, 0x36
  841. ];
  842. checkSynth(
  843. /*
  844. * main_header
  845. * metablock_header_easy: 6, 0 // implicit ndirect: 0, 0
  846. * command_easy: 3, "abc", 3 // Insert "abc", copy "abc"
  847. * metablock_header_begin: 0, 0, 6, 0
  848. * vlq_blocktypes: 1 // num litetal block types
  849. * vlq_blocktypes: 1 // num command block types
  850. * vlq_blocktypes: 1 // num distance block types
  851. * ndirect: 3, 0
  852. * bits: "00" // literal context modes
  853. * vlq_blocktypes: 1 // num literal Huffman trees
  854. * // command has no context -> num trees == num block types
  855. * vlq_blocktypes: 1 // num distance Huffman trees
  856. * huffman_fixed: 256
  857. * huffman_fixed: 704
  858. * huffman_simple: 0,1,67, 18
  859. * command_inscopy_easy: 3, 3 // Insert 3, copy 3
  860. * command_literals_easy: "def"
  861. * // 0-bit Huffman code : dcode = 18 -> third direct distance
  862. * metablock_lastempty // make sure that no extra distance bits are read
  863. */
  864. compressed,
  865. true,
  866. 'abcabcdefdef'
  867. );
  868. },
  869. testEmpty() {
  870. const compressed = [
  871. 0x3b
  872. ];
  873. checkSynth(
  874. /*
  875. * main_header
  876. * metablock_lastempty
  877. */
  878. compressed,
  879. true,
  880. ''
  881. );
  882. },
  883. testHelloWorld() {
  884. const compressed = [
  885. 0x1b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  886. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x9b, 0x00, 0x59,
  887. 0x98, 0xda, 0xd8, 0xd8, 0x13, 0xb8, 0xdb, 0x3b, 0xd9, 0x98, 0x00
  888. ];
  889. checkSynth(
  890. /*
  891. * main_header
  892. * metablock_fixed: "hello world", 1
  893. */
  894. compressed,
  895. true,
  896. 'hello world'
  897. );
  898. },
  899. testInsertTooLong() {
  900. const compressed = [
  901. 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  902. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x09, 0x86,
  903. 0x46
  904. ];
  905. checkSynth(
  906. /*
  907. * // Has an insert length that goes over the end of the meta-block.
  908. * // Same as OneInsert, but with a shorter meta-block length.
  909. * main_header
  910. * metablock_header_easy: 1, 1
  911. * command_easy: 0, "ab"
  912. */
  913. compressed,
  914. false,
  915. ''
  916. );
  917. },
  918. testIntactDistanceRingBuffer0() {
  919. const compressed = [
  920. 0x1b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  921. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0xa1, 0x80,
  922. 0x20, 0x00
  923. ];
  924. checkSynth(
  925. /*
  926. * main_header
  927. * metablock_header_easy: 11, 1
  928. * command_inscopy_easy: 0, 7 // "himself" from dictionary
  929. * bits: "000000" // distance = 4 from RB; RB remains intact
  930. * command_inscopy_easy: 0, 4 // copy "self"
  931. * bits: "000000" // distance = 4 from RB; RB remains intact
  932. */
  933. compressed,
  934. true,
  935. 'himselfself'
  936. );
  937. },
  938. testIntactDistanceRingBuffer1() {
  939. const compressed = [
  940. 0x1b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  941. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x21, 0xa0,
  942. 0x20, 0x00
  943. ];
  944. checkSynth(
  945. /*
  946. * main_header
  947. * metablock_header_easy: 10, 1
  948. * command_inscopy_easy: 0, 6 // "scroll" from dictionary
  949. * bits: "100000" // distance = 11 from RB; RB remains intact
  950. * command_inscopy_easy: 0, 4 // copy "roll"
  951. * bits: "000000" // distance = 4 from RB; RB remains intact
  952. */
  953. compressed,
  954. true,
  955. 'scrollroll'
  956. );
  957. },
  958. testIntactDistanceRingBuffer2() {
  959. const compressed = [
  960. 0x1b, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  961. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x80,
  962. 0x20, 0x50, 0x10, 0x24, 0x08, 0x06
  963. ];
  964. checkSynth(
  965. /*
  966. * main_header
  967. * metablock_header_easy: 16, 1
  968. * command_inscopy_easy: 0, 4 // "left" from dictionary (index = 3 = 4 - 1)
  969. * bits: "000000" // distance = 4 from RB; RB remains intact
  970. * command_inscopy_easy: 0, 4 // "data" from dictionary (index = 6 = 11 - 5)
  971. * bits: "100000" // distance = 11 from RB; RB remains intact
  972. * command_inscopy_easy: 0, 4 // "data" from dictionary (index = 6 = 15 - 9)
  973. * bits: "010000" // distance = 15 from RB; RB remains intact
  974. * command_inscopy_easy: 0, 4 // "left" from dictionary (index = 3 = 16 - 13)
  975. * bits: "110000" // distance = 16 from RB; RB remains intact
  976. */
  977. compressed,
  978. true,
  979. 'leftdatadataleft'
  980. );
  981. },
  982. testIntactDistanceRingBufferNoDistanceValue0() {
  983. const compressed = [
  984. 0x1b, 0x17, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  985. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x40, 0x82,
  986. 0x40, 0x41, 0x90, 0x20, 0x58, 0x18, 0x00
  987. ];
  988. checkSynth(
  989. /*
  990. * main_header
  991. * metablock_header_easy: 24, 1
  992. * // cmd is {ins_extra, copy_extra, distance_code, ctx, ins_off, copy_off}
  993. * // cmd.2 = {0x00, 0x00, 0, 0x02, 0x0000, 0x0004}
  994. * // cmd.2 = no insert, copy length = 4, distance_code = 0 (last distance)
  995. * command_short: 2 // "left" from dictionary (index = 3 = 4 - 1)
  996. * // Check that RB is untouched after the first command...
  997. * command_inscopy_easy: 0, 4 // "data" from dictionary (index = 6 = 11 - 5)
  998. * bits: "100000" // distance = 11 from RB; RB remains intact
  999. * command_inscopy_easy: 0, 4 // "data" from dictionary (index = 6 = 15 - 9)
  1000. * bits: "010000" // distance = 15 from RB; RB remains intact
  1001. * command_inscopy_easy: 0, 4 // "left" from dictionary (index = 3 = 16 - 13)
  1002. * bits: "110000" // distance = 16 from RB; RB remains intact
  1003. * command_inscopy_easy: 0, 8 // copy "leftleft"
  1004. * bits: "000000" // distance = 4 from RB; RB remains intact
  1005. */
  1006. compressed,
  1007. true,
  1008. 'leftdatadataleftleftleft'
  1009. );
  1010. },
  1011. testIntactDistanceRingBufferNoDistanceValue1() {
  1012. const compressed = [
  1013. 0x1b, 0x19, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1014. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0xc0, 0x82,
  1015. 0x41, 0x41, 0x90, 0x20, 0x58, 0x18, 0x00
  1016. ];
  1017. checkSynth(
  1018. /*
  1019. * main_header
  1020. * metablock_header_easy: 26, 1
  1021. * // cmd is {ins_extra, copy_extra, distance_code, ctx, ins_off, copy_off}
  1022. * // cmd.3 = {0x00, 0x00, 0, 0x03, 0x0000, 0x0005}
  1023. * // cmd.3 = no insert, copy length = 5, distance_code = 0 (last distance)
  1024. * command_short: 3 // "world" from dictionary (index = 3 = 4 - 1)
  1025. * // Check that RB is untouched after the first command...
  1026. * command_inscopy_easy: 0, 5 // "white" from dictionary (index = 5 = 11 - 6)
  1027. * bits: "100000" // distance = 11 from RB; RB remains intact
  1028. * command_inscopy_easy: 0, 4 // "back" from dictionary (index = 4 = 15 - 11)
  1029. * bits: "010000" // distance = 15 from RB; RB remains intact
  1030. * command_inscopy_easy: 0, 4 // "down" from dictionary (index = 1 = 16 - 15)
  1031. * bits: "110000" // distance = 16 from RB; RB remains intact
  1032. * command_inscopy_easy: 0, 8 // copy "downdown"
  1033. * bits: "000000" // distance = 4 from RB; RB remains intact
  1034. */
  1035. compressed,
  1036. true,
  1037. 'worldwhitebackdowndowndown'
  1038. );
  1039. },
  1040. testInvalidNoLastMetablock() {
  1041. const compressed = [
  1042. 0x0b, 0x06, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1043. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x9b, 0x00, 0x13,
  1044. 0x59, 0x98, 0xda, 0xd8, 0xd8, 0x13, 0xb8, 0xdb, 0x3b, 0xd9, 0x98, 0xe8,
  1045. 0x00
  1046. ];
  1047. checkSynth(
  1048. /*
  1049. * main_header
  1050. * metablock_fixed: \"hello world\", 0
  1051. */
  1052. compressed,
  1053. false,
  1054. 'hello world'
  1055. );
  1056. },
  1057. testInvalidNoMetaBlocks() {
  1058. const compressed = [
  1059. 0x0b
  1060. ];
  1061. checkSynth(
  1062. /*
  1063. * main_header
  1064. */
  1065. compressed,
  1066. false,
  1067. ''
  1068. );
  1069. },
  1070. testInvalidTooFarDist() {
  1071. const compressed = [
  1072. 0xa1, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xa7, 0x6d, 0x00, 0x00,
  1073. 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0xe8, 0xe0,
  1074. 0x62, 0x6f, 0x4f, 0x60, 0x66, 0xe8, 0x44, 0x38, 0x0f, 0x09, 0x0d
  1075. ];
  1076. checkSynth(
  1077. /*
  1078. * main_header: 10
  1079. * metablock_header_begin: 1, 0, 10, 0
  1080. * metablock_header_trivial_context
  1081. * huffman_fixed: 256
  1082. * huffman_fixed: 704
  1083. * huffman_fixed: 64
  1084. * command_easy: 2, "too far!", 1000000 // distance too far for 10 wbits
  1085. */
  1086. compressed,
  1087. false,
  1088. ''
  1089. );
  1090. },
  1091. testInvalidTooLargeContextMap() {
  1092. const compressed = [
  1093. 0x1b, 0x00, 0x00, 0xd1, 0xe1, 0x01, 0xc6, 0xe0, 0xe2, 0x06, 0x00, 0x00,
  1094. 0x91, 0xb2, 0x70, 0xfe, 0xfb, 0x45, 0x58, 0x88, 0x01, 0x00, 0x70, 0xb0,
  1095. 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x01
  1096. ];
  1097. checkSynth(
  1098. /*
  1099. * // Has a repeat code a context map that makes the size too big -> invalid.
  1100. * main_header
  1101. * metablock_header_begin: 1, 0, 1, 0
  1102. * // two literal block types
  1103. * vlq_blocktypes: 2
  1104. * huffman_simple: 1,4,4, 1,0,2,3 // literal blocktype prefix code
  1105. * huffman_fixed: 26 // literal blockcount prefix code
  1106. * blockcount_easy: 1
  1107. * // one ins/copy and dist block type
  1108. * vlq_blocktypes: 1
  1109. * vlq_blocktypes: 1
  1110. * ndirect: 0, 0
  1111. * // two MSB6 literal context modes
  1112. * bits: "00", "00"
  1113. * // two literal prefix codes
  1114. * vlq_blocktypes: 2
  1115. * // literal context map
  1116. * vlq_rlemax: 5
  1117. * huffman_simple: 0,3,7, 5,0,6 // context map RLE Huffman code
  1118. * // Too long context map RLE: repeat 0 64 times, 1+5 65 times, that is 129
  1119. * // values which is 1 too much.
  1120. * bits: "01", "0", "11111", "11", "11", "0", "11111"
  1121. * bit: 1 // MTF enabled
  1122. * // one distance prefix code
  1123. * vlq_blocktypes: 1
  1124. * huffman_simple: 0,1,256, 97 // only a's
  1125. * huffman_simple: 0,1,256, 98 // only b's
  1126. * huffman_fixed: 704
  1127. * huffman_fixed: 64
  1128. * // now comes the data
  1129. * command_inscopy_easy: 1, 0
  1130. */
  1131. compressed,
  1132. false,
  1133. 'a'
  1134. );
  1135. },
  1136. testInvalidTransformType() {
  1137. const compressed = [
  1138. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1139. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x2d,
  1140. 0x01, 0x19
  1141. ];
  1142. checkSynth(
  1143. /*
  1144. * main_header
  1145. * metablock_header_easy: 4, 1
  1146. * command_inscopy_easy: 0, 4
  1147. * command_dist_easy: 123905 // = 121 << 10 + 1
  1148. */
  1149. compressed,
  1150. false,
  1151. ''
  1152. );
  1153. },
  1154. testInvalidWindowBits9() {
  1155. const compressed = [
  1156. 0x91, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0xa7, 0x6d, 0x00, 0x00,
  1157. 0x38, 0xd8, 0x32, 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0xc8, 0x20,
  1158. 0x32, 0xd4, 0x01
  1159. ];
  1160. checkSynth(
  1161. /*
  1162. * main_header: 9
  1163. * metablock_fixed: \"a\", 1
  1164. */
  1165. compressed,
  1166. false,
  1167. 'a'
  1168. );
  1169. },
  1170. testManyTinyMetablocks() {
  1171. const compressed = [
  1172. 0x0b, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1173. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1174. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1175. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1176. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1177. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1178. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1179. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1180. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1181. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1182. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1183. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1184. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1185. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1186. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1187. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1188. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1189. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1190. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1191. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1192. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1193. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1194. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1195. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1196. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1197. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1198. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1199. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1200. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1201. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1202. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1203. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1204. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1205. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1206. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1207. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1208. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1209. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1210. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1211. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1212. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1213. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1214. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1215. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1216. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1217. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1218. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1219. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1220. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1221. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1222. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1223. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1224. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1225. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1226. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1227. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1228. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1229. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1230. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1231. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1232. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1233. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1234. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1235. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1236. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1237. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1238. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1239. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1240. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1241. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1242. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1243. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1244. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1245. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1246. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1247. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1248. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1249. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1250. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1251. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1252. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1253. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1254. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1255. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1256. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1257. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1258. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1259. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1260. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1261. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1262. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1263. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1264. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1265. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1266. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1267. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1268. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1269. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1270. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1271. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1272. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1273. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1274. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1275. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1276. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1277. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1278. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1279. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1280. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1281. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1282. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1283. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1284. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1285. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1286. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1287. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1288. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1289. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1290. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1291. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1292. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1293. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1294. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1295. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1296. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1297. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1298. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1299. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1300. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1301. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1302. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1303. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1304. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1305. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1306. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1307. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1308. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1309. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1310. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1311. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1312. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1313. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1314. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1315. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1316. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1317. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1318. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1319. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1320. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1321. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1322. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1323. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1324. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1325. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1326. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1327. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1328. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1329. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1330. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1331. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1332. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1333. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1334. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1335. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1336. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1337. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1338. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1339. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1340. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1341. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1342. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1343. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1344. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1345. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1346. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1347. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1348. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1349. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1350. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1351. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1352. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1353. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1354. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1355. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1356. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1357. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1358. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1359. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1360. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1361. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1362. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1363. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1364. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1365. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1366. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1367. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1368. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1369. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1370. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1371. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1372. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1373. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1374. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1375. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1376. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1377. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1378. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1379. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1380. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1381. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1382. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1383. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1384. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1385. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1386. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1387. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1388. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1389. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1390. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1391. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1392. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1393. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1394. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1395. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1396. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1397. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1398. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1399. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1400. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1401. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1402. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1403. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1404. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1405. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1406. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1407. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1408. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1409. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1410. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1411. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1412. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1413. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1414. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1415. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1416. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1417. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1418. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1419. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1420. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1421. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1422. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1423. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1424. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1425. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1426. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1427. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1428. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1429. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1430. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1431. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1432. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1433. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1434. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1435. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1436. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1437. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1438. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1439. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1440. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1441. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1442. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1443. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1444. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1445. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1446. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1447. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1448. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1449. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1450. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1451. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1452. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1453. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1454. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1455. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1456. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1457. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1458. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1459. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1460. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1461. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1462. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1463. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1464. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1465. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1466. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1467. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1468. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1469. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1470. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1471. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1472. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1473. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1474. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1475. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1476. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1477. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1478. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1479. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1480. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1481. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1482. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1483. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1484. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1485. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1486. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1487. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1488. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1489. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1490. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1491. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1492. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1493. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1494. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1495. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1496. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1497. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1498. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1499. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1500. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1501. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1502. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1503. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1504. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1505. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1506. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1507. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1508. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1509. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1510. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1511. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1512. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1513. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1514. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1515. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1516. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1517. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1518. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1519. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1520. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1521. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1522. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1523. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1524. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1525. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1526. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1527. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1528. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1529. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1530. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1531. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1532. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1533. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1534. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1535. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1536. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1537. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1538. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1539. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1540. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1541. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1542. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1543. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1544. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1545. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1546. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1547. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1548. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1549. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1550. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1551. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1552. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1553. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1554. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1555. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1556. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1557. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1558. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1559. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1560. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1561. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1562. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1563. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1564. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1565. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1566. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1567. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1568. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1569. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1570. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1571. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1572. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1573. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1574. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1575. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1576. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1577. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1578. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1579. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1580. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1581. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1582. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1583. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1584. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1585. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1586. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1587. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1588. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1589. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1590. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1591. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1592. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1593. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1594. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1595. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1596. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1597. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1598. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1599. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1600. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1601. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1602. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1603. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1604. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1605. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1606. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1607. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1608. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1609. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1610. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1611. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1612. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1613. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1614. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1615. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1616. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1617. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1618. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1619. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1620. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1621. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1622. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1623. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1624. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1625. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1626. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1627. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1628. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1629. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1630. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1631. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1632. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1633. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1634. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1635. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1636. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1637. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1638. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1639. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1640. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1641. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1642. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1643. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1644. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1645. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1646. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1647. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1648. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1649. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1650. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1651. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1652. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1653. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1654. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1655. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1656. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1657. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1658. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1659. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1660. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1661. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1662. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1663. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1664. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1665. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1666. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1667. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1668. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1669. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1670. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1671. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1672. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1673. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1674. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1675. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1676. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1677. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1678. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1679. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1680. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1681. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1682. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1683. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1684. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1685. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1686. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1687. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1688. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1689. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1690. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1691. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1692. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1693. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1694. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1695. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1696. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1697. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1698. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1699. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1700. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1701. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1702. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1703. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1704. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1705. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1706. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1707. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1708. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1709. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1710. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1711. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1712. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1713. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1714. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1715. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1716. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1717. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1718. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1719. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1720. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1721. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1722. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1723. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1724. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1725. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1726. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1727. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1728. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1729. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1730. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1731. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1732. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1733. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1734. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1735. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1736. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1737. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1738. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1739. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1740. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1741. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1742. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1743. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1744. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1745. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1746. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1747. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1748. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1749. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1750. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1751. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1752. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1753. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1754. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1755. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1756. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1757. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1758. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1759. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1760. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1761. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1762. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1763. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1764. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1765. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1766. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1767. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1768. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1769. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1770. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1771. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1772. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1773. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1774. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1775. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1776. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1777. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1778. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1779. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1780. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1781. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1782. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1783. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1784. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1785. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1786. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1787. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1788. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1789. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1790. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1791. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1792. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1793. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1794. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1795. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1796. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1797. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1798. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1799. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1800. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1801. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1802. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1803. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1804. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1805. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1806. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1807. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1808. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1809. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1810. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1811. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1812. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1813. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1814. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1815. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1816. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1817. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1818. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1819. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1820. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1821. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1822. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1823. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1824. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1825. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1826. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1827. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1828. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1829. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1830. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1831. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1832. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1833. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1834. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1835. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1836. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1837. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1838. 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e,
  1839. 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee,
  1840. 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00,
  1841. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  1842. 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80, 0x61, 0x00, 0x00,
  1843. 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65,
  1844. 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61, 0x04, 0x00, 0x80,
  1845. 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1846. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x11, 0x61,
  1847. 0x34
  1848. ];
  1849. checkSynth(
  1850. /*
  1851. * main_header
  1852. * repeat: 300
  1853. * metablock_uncompressed: "a"
  1854. * metablock_fixed: "b"
  1855. * end_repeat
  1856. * metablock_lastempty
  1857. */
  1858. compressed,
  1859. true,
  1860. times(300, 'ab')
  1861. );
  1862. },
  1863. testNegativeDistance() {
  1864. const compressed = [
  1865. 0x1b, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1866. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x02,
  1867. 0x01, 0x42, 0x01, 0x42, 0x01, 0x42, 0x01, 0x42, 0x01, 0x42, 0x01, 0x1c
  1868. ];
  1869. checkSynth(
  1870. /*
  1871. * main_header
  1872. * metablock_header_easy: 16, 1
  1873. * command_inscopy_easy: 0, 4 // time
  1874. * command_dist_easy: 1
  1875. * command_inscopy_easy: 0, 2 // me
  1876. * command_dist_easy: 2
  1877. * command_inscopy_easy: 0, 2 // me
  1878. * command_dist_easy: 2
  1879. * command_inscopy_easy: 0, 2 // me
  1880. * command_dist_easy: 2
  1881. * command_inscopy_easy: 0, 2 // me
  1882. * command_dist_easy: 2
  1883. * command_inscopy_easy: 0, 2 // me
  1884. * command_dist_easy: 2 // All rb items are 2 now
  1885. * command_inscopy_easy: 0, 2
  1886. * bits: "011100" // 15 -> distance = rb[idx + 2] - 3
  1887. */
  1888. compressed,
  1889. false,
  1890. 'timemememememeXX'
  1891. );
  1892. },
  1893. testNegativeRemainingLenBetweenMetablocks() {
  1894. const compressed = [
  1895. 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1896. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x09, 0x86,
  1897. 0x46, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00,
  1898. 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x91, 0x60,
  1899. 0x68, 0x04
  1900. ];
  1901. checkSynth(
  1902. /*
  1903. * main_header
  1904. * metablock_header_easy: 1, 0
  1905. * command_easy: 0, "ab" // remaining length == -1 -> invalid stream
  1906. * metablock_header_easy: 2, 1
  1907. * command_easy: 0, "ab"
  1908. */
  1909. compressed,
  1910. false,
  1911. 'abab'
  1912. );
  1913. },
  1914. testOneCommand() {
  1915. const compressed = [
  1916. 0x1b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1917. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x11, 0x86,
  1918. 0x02
  1919. ];
  1920. checkSynth(
  1921. /*
  1922. * // The stream consists of one command with insert and copy.
  1923. * main_header
  1924. * metablock_header_easy: 3, 1
  1925. * command_easy: 2, "a", 1
  1926. */
  1927. compressed,
  1928. true,
  1929. 'aaa'
  1930. );
  1931. },
  1932. testOneInsert() {
  1933. const compressed = [
  1934. 0x1b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  1935. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x09, 0x86,
  1936. 0x46
  1937. ];
  1938. checkSynth(
  1939. /*
  1940. * // The stream consists of one half command with insert only.
  1941. * main_header
  1942. * metablock_header_easy: 2, 1
  1943. * command_easy: 0, "ab"
  1944. */
  1945. compressed,
  1946. true,
  1947. 'ab'
  1948. );
  1949. },
  1950. testPeculiarWrap() {
  1951. const compressed = [
  1952. 0x21, 0xfc, 0x1f, 0x00, 0x00, 0xa1, 0x12, 0x82, 0x04, 0x60, 0x1d, 0x00,
  1953. 0xca, 0xfe, 0xba, 0xbe, 0xde, 0xad, 0xbe, 0xef, 0x21, 0x00, 0x00, 0x00,
  1954. 0x00, 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03,
  1955. 0x24, 0x00, 0x00, 0xee, 0xb4, 0x91, 0x61, 0x68, 0x64, 0x0c
  1956. ];
  1957. checkSynth(
  1958. /*
  1959. * main_header: 10
  1960. * // See ZeroCostCommand
  1961. * metablock_header_begin: 0, 0, 2048, 0
  1962. * metablock_header_trivial_context
  1963. * huffman_simple: 0,1,256, 42
  1964. * huffman_simple: 0,1,704, 130
  1965. * huffman_simple: 0,1,64, 0
  1966. * // Metadata block; at least 8 bytes long
  1967. * bits: "0", "11", "0", "01", "00000111"
  1968. * byte_boundary
  1969. * bits: "11001010", "11111110", "10111010", "10111110"
  1970. * bits: "11011110", "10101101", "10111110", "11101111"
  1971. * metablock_header_easy: 3, 1
  1972. * command_easy: 0, "abc", 0
  1973. */
  1974. compressed,
  1975. true,
  1976. times(512, 'left')
  1977. + 'abc'
  1978. );
  1979. },
  1980. testSimplePrefix() {
  1981. const compressed = [
  1982. 0x1b, 0x03, 0x00, 0x00, 0xa0, 0xc3, 0xc4, 0xc6, 0xc8, 0x02, 0x00, 0x70,
  1983. 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x51, 0xa0, 0x1d
  1984. ];
  1985. checkSynth(
  1986. /*
  1987. * main_header
  1988. * metablock_header_begin: 1, 0, 4, 0
  1989. * metablock_header_trivial_context
  1990. * huffman_simple: 1,4,256, 97,98,99,100 // ASCII codes for a, b, c, d
  1991. * huffman_fixed: 704
  1992. * huffman_fixed: 64
  1993. * command_inscopy_easy: 4, 0
  1994. * command_literal_bits: 0, 10, 110, 111 // a, b, c, d
  1995. */
  1996. compressed,
  1997. true,
  1998. 'abcd'
  1999. );
  2000. },
  2001. testSimplePrefixDuplicateSymbols() {
  2002. const compressed = [
  2003. 0x1b, 0x03, 0x00, 0x00, 0xa0, 0xc3, 0xc4, 0xc2, 0xc4, 0x02, 0x00, 0x70,
  2004. 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x51, 0xa0, 0x1d
  2005. ];
  2006. checkSynth(
  2007. /*
  2008. * main_header
  2009. * metablock_header_begin: 1, 0, 4, 0
  2010. * metablock_header_trivial_context
  2011. * huffman_simple: 1,4,256, 97,98,97,98 // ASCII codes for a, b, a, b
  2012. * huffman_fixed: 704
  2013. * huffman_fixed: 64
  2014. * command_inscopy_easy: 4, 0
  2015. * command_literal_bits: 0, 10, 110, 111 // a, b, a, b
  2016. */
  2017. compressed,
  2018. false,
  2019. 'abab'
  2020. );
  2021. },
  2022. testSimplePrefixOutOfRangeSymbols() {
  2023. const compressed = [
  2024. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x4d, 0xff, 0xef,
  2025. 0x7f, 0xff, 0xfc, 0x07, 0x00, 0xb8, 0xd3, 0x06
  2026. ];
  2027. checkSynth(
  2028. /*
  2029. * main_header
  2030. * metablock_header_begin: 1, 0, 4, 0
  2031. * metablock_header_trivial_context
  2032. * huffman_fixed: 256
  2033. * huffman_simple: 1,4,704, 1023,1022,1021,1020
  2034. * huffman_fixed: 64
  2035. */
  2036. compressed,
  2037. false,
  2038. ''
  2039. );
  2040. },
  2041. testSimplePrefixPlusExtraData() {
  2042. if (pending) pending(); else return;
  2043. const compressed = [
  2044. 0x1b, 0x03, 0x00, 0x00, 0xa0, 0xc3, 0xc4, 0xc6, 0xc8, 0x02, 0x00, 0x70,
  2045. 0xb0, 0x65, 0x12, 0x03, 0x24, 0x00, 0x00, 0xee, 0xb4, 0x51, 0xa0, 0x1d,
  2046. 0x55, 0xaa
  2047. ];
  2048. checkSynth(
  2049. /*
  2050. * main_header
  2051. * metablock_header_begin: 1, 0, 4, 0
  2052. * metablock_header_trivial_context
  2053. * huffman_simple: 1,4,256, 97,98,99,100 // ASCII codes for a, b, c, d
  2054. * huffman_fixed: 704
  2055. * huffman_fixed: 64
  2056. * command_inscopy_easy: 4, 0
  2057. * command_literal_bits: 0, 10, 110, 111 // a, b, c, d
  2058. * byte_boundary
  2059. * bits: "01010101", "10101010"
  2060. */
  2061. compressed,
  2062. true,
  2063. 'abcd'
  2064. );
  2065. },
  2066. testStressReadDistanceExtraBits() {
  2067. const compressed = [
  2068. 0x4f, 0xfe, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00,
  2069. 0x00, 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x9b, 0xf6,
  2070. 0x69, 0xef, 0xff, 0x0c, 0x8d, 0x8c, 0x05, 0x10, 0x00, 0x00, 0x00, 0x00,
  2071. 0x00, 0x38, 0x4e, 0xdb, 0x00, 0x00, 0x70, 0xb0, 0x65, 0x12, 0x03, 0x24,
  2072. 0xa8, 0xaa, 0xef, 0xab, 0xaa, 0x7f, 0x24, 0x16, 0x35, 0x8f, 0xac, 0x9e,
  2073. 0x3d, 0xf7, 0xf3, 0xe3, 0x0a, 0xfc, 0xff, 0x03, 0x00, 0x00, 0x78, 0x01,
  2074. 0x08, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x41,
  2075. 0x42, 0x43, 0x44, 0x45, 0x46, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,
  2076. 0x37, 0x38, 0x39, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x30, 0x31, 0x32,
  2077. 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x41, 0x42, 0x43, 0x44, 0x45,
  2078. 0x46, 0x03
  2079. ];
  2080. checkSynth(
  2081. /*
  2082. * main_header: 24
  2083. * metablock_header_easy: 8388605, 0 // 2^23 - 3 = shortest 22-bit distance
  2084. * command_easy: 8388602, "abc", 1
  2085. * metablock_header_begin: 0, 0, 3, 0
  2086. * vlq_blocktypes: 1 // num litetal block types
  2087. * vlq_blocktypes: 1 // num command block types
  2088. * vlq_blocktypes: 1 // num distance block types
  2089. * ndirect: 0, 0
  2090. * bits: "00" // literal context modes
  2091. * vlq_blocktypes: 1 // num literal Huffman trees
  2092. * // command has no context -> num trees == num block types
  2093. * vlq_blocktypes: 1 // num distance Huffman trees
  2094. * huffman_fixed: 256
  2095. * huffman_fixed: 704
  2096. * // Begin of distance Huffman tree. First 15 codes have lengths 1 to 15.
  2097. * // Symbol that corresponds to first half of 22-bit distance range is also
  2098. * // 15. All other symbols are 0.
  2099. * hskip: 0
  2100. * clcl_ordered: 4,4,4,4, 4,4,4,4, 4,4,4,4, 4,4, 5,5,5,5
  2101. * set_prefix_cl_rle: "0000", "0001", "0010", "0011", \
  2102. * "0100", "0101", "0110", "0111", \
  2103. * "1000", "1001", "1010", "1011", \
  2104. * "1100", "1101", \
  2105. * "11100", "11101", "11110", "11111"
  2106. * cl_rle: 1
  2107. * cl_rle: 2
  2108. * cl_rle: 3
  2109. * cl_rle: 4
  2110. * cl_rle: 5
  2111. * cl_rle: 6
  2112. * cl_rle: 7
  2113. * cl_rle: 8
  2114. * cl_rle: 9
  2115. * cl_rle: 10
  2116. * cl_rle: 11
  2117. * cl_rle: 12
  2118. * cl_rle: 13
  2119. * cl_rle: 14
  2120. * cl_rle: 15
  2121. * cl_rle_rep_0: 43
  2122. * cl_rle: 15 // literal number 97, that is, the letter 'a'
  2123. * // end of literal Huffman tree
  2124. * command_inscopy_easy: 0, 3 // Insert 0, copy 3
  2125. * // 15 bits of distance code plus 22 extra bits
  2126. * command_dist_bits: "111111111111111", "0000000000000000000000"
  2127. * metablock_uncompressed: "0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF"
  2128. * metablock_lastempty
  2129. */
  2130. compressed,
  2131. true,
  2132. 'abc'
  2133. + times(8388602, 'c')
  2134. + 'abc'
  2135. + times(3, '0123456789ABCDEF')
  2136. );
  2137. },
  2138. testTooManySymbolsRepeated() {
  2139. const compressed = [
  2140. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x01, 0x80, 0xc3, 0x3d, 0x80, 0x58, 0x82,
  2141. 0x0c, 0x00, 0xc0, 0xc1, 0x96, 0x49, 0x0c, 0x90, 0x00, 0x00, 0xb8, 0xd3,
  2142. 0x46, 0x01, 0x1a, 0x01
  2143. ];
  2144. checkSynth(
  2145. /*
  2146. * // This test is a copy of CustomHuffmanCode, with changed repeat count.
  2147. * main_header
  2148. * metablock_header_begin: 1, 0, 4, 0
  2149. * metablock_header_trivial_context
  2150. * hskip: 0
  2151. * clcl_ordered: 0,3,0,0,0,0,0,0,3,2,0,0,0,0,0,0,1,0
  2152. * set_prefix_cl_rle: "", "110", "", "", "", "", "", "", "111", "10",\
  2153. * "", "", "", "", "", "", "0", ""
  2154. * cl_rle: 8
  2155. * cl_rle_rep: 9, 96
  2156. * cl_rle: 1
  2157. * cl_rle_rep: 9, 159 // 1 + 96 + 1 + 159 = 257 > 256 = alphabet size
  2158. * huffman_fixed: 704
  2159. * huffman_fixed: 64
  2160. * command_inscopy_easy: 4, 0
  2161. * command_literal_bits: 0, 0, 0, 101100010
  2162. */
  2163. compressed,
  2164. false,
  2165. 'aaab'
  2166. );
  2167. },
  2168. testTransformedDictWord() {
  2169. const compressed = [
  2170. 0x1b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  2171. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x09,
  2172. 0x01, 0x01
  2173. ];
  2174. checkSynth(
  2175. /*
  2176. * // The stream consists of a transformed dictionary word.
  2177. * main_header
  2178. * metablock_header_easy: 9, 1
  2179. * command_inscopy_easy: 0, 4
  2180. * command_dist_easy: 5121 // 5 << 10 + 1
  2181. */
  2182. compressed,
  2183. true,
  2184. 'time the '
  2185. );
  2186. },
  2187. testTransformedDictWordTooLong() {
  2188. const compressed = [
  2189. 0x1b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe3, 0xb4, 0x0d, 0x00, 0x00,
  2190. 0x07, 0x5b, 0x26, 0x31, 0x40, 0x02, 0x00, 0xe0, 0x4e, 0x1b, 0x41, 0x09,
  2191. 0x01, 0x01
  2192. ];
  2193. checkSynth(
  2194. /*
  2195. * // Has a transformed dictionary word that goes over the end of the
  2196. * // meta-block, but the base dictionary word fits in the meta-block.
  2197. * // Same as TransformedDictWord, but with a shorter meta-block length.
  2198. * main_header
  2199. * metablock_header_easy: 4, 1
  2200. * command_inscopy_easy: 0, 4
  2201. * command_dist_easy: 5121 // 5 << 10 + 1
  2202. */
  2203. compressed,
  2204. false,
  2205. ''
  2206. );
  2207. },
  2208. testZeroCostCommand() {
  2209. const compressed = [
  2210. 0xa1, 0xf8, 0x1f, 0x00, 0x00, 0xa1, 0x12, 0x82, 0x04, 0x00
  2211. ];
  2212. checkSynth(
  2213. /*
  2214. * main_header: 10
  2215. * metablock_header_begin: 1, 0, 1024, 0 // last, not empty, length, compressed
  2216. * metablock_header_trivial_context
  2217. * huffman_simple: 0,1,256, 42 // literal: any
  2218. * huffman_simple: 0,1,704, 130 // command: insert = 0, copy = 4, distance_code = -1
  2219. * huffman_simple: 0,1,64, 0 // distance: last
  2220. * // 256 0-bit commands with direct distances
  2221. */
  2222. compressed,
  2223. true,
  2224. times(256, 'left')
  2225. );
  2226. },
  2227. testZeroCostLiterals() {
  2228. const compressed = [
  2229. 0x9b, 0xff, 0xff, 0xff, 0x00, 0x20, 0x54, 0x00, 0x00, 0x38, 0xd8, 0x32,
  2230. 0x89, 0x01, 0x12, 0x00, 0x00, 0x77, 0xda, 0xcc, 0xe1, 0x7b, 0xfa, 0x0f
  2231. ];
  2232. checkSynth(
  2233. /*
  2234. * main_header
  2235. * metablock_header_begin: 1, 0, 16777216, 0
  2236. * metablock_header_trivial_context
  2237. * huffman_simple: 0,1,256, 42 // Single symbol alphabet
  2238. * huffman_fixed: 704
  2239. * huffman_fixed: 64
  2240. * command_inscopy_easy: 16777216, 0
  2241. * // 16777216 times 0 bits
  2242. */
  2243. compressed,
  2244. true,
  2245. times(16777216, '*')
  2246. );
  2247. },
  2248. /* GENERATED CODE END */
  2249. };
  2250. describe("DecodeSynthTest", () => {
  2251. const testNames = Object.keys(allTests);
  2252. for (let i = 0; i < testNames.length; ++i) {
  2253. const key = testNames[i];
  2254. const testName = key.replace(/\$/g, '');
  2255. it(testName, allTests[key]);
  2256. }
  2257. });