zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

cow_hpack_dec_huffman_lookup.hrl (233954B)


      1 %% Copyright (c) 2019, Loïc Hoguin <essen@ninenines.eu>
      2 %%
      3 %% Permission to use, copy, modify, and/or distribute this software for any
      4 %% purpose with or without fee is hereby granted, provided that the above
      5 %% copyright notice and this permission notice appear in all copies.
      6 %%
      7 %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      8 %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
      9 %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     10 %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     11 %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     12 %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     13 %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     14 
     15 %% This lookup function was created by converting the
     16 %% table from Nginx[1] into a form better suitable for
     17 %% Erlang/OTP. This particular table takes a byte-sized
     18 %% state and 4 bits to determine whether to emit a
     19 %% character and what the next state is. It is most
     20 %% appropriate for Erlang/OTP because we can benefit
     21 %% from binary pattern matching optimizations by
     22 %% matching the binary one byte at a time, calling
     23 %% this lookup function twice. This and similar
     24 %% algorithms are discussed here[2] and there[3].
     25 %%
     26 %% It is possible to write a lookup table taking
     27 %% a full byte instead of just 4 bits, but this
     28 %% would make this function take 65536 clauses instead
     29 %% of the current 4096. This could be done later
     30 %% as a further optimization but might not yield
     31 %% significant improvements.
     32 %% 
     33 %% [1] https://hg.nginx.org/nginx/file/tip/src/http/v2/ngx_http_v2_huff_decode.c
     34 %% [2] http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.9.4248&rep=rep1&type=pdf
     35 %% [3] https://commandlinefanatic.com/cgi-bin/showarticle.cgi?article=art007
     36 
     37 dec_huffman_lookup(16#00, 16#0) -> {more, undefined, 16#04};
     38 dec_huffman_lookup(16#00, 16#1) -> {more, undefined, 16#05};
     39 dec_huffman_lookup(16#00, 16#2) -> {more, undefined, 16#07};
     40 dec_huffman_lookup(16#00, 16#3) -> {more, undefined, 16#08};
     41 dec_huffman_lookup(16#00, 16#4) -> {more, undefined, 16#0b};
     42 dec_huffman_lookup(16#00, 16#5) -> {more, undefined, 16#0c};
     43 dec_huffman_lookup(16#00, 16#6) -> {more, undefined, 16#10};
     44 dec_huffman_lookup(16#00, 16#7) -> {more, undefined, 16#13};
     45 dec_huffman_lookup(16#00, 16#8) -> {more, undefined, 16#19};
     46 dec_huffman_lookup(16#00, 16#9) -> {more, undefined, 16#1c};
     47 dec_huffman_lookup(16#00, 16#a) -> {more, undefined, 16#20};
     48 dec_huffman_lookup(16#00, 16#b) -> {more, undefined, 16#23};
     49 dec_huffman_lookup(16#00, 16#c) -> {more, undefined, 16#2a};
     50 dec_huffman_lookup(16#00, 16#d) -> {more, undefined, 16#31};
     51 dec_huffman_lookup(16#00, 16#e) -> {more, undefined, 16#39};
     52 dec_huffman_lookup(16#00, 16#f) -> {ok, undefined, 16#40};
     53 dec_huffman_lookup(16#01, 16#0) -> {ok, 16#30, 16#00};
     54 dec_huffman_lookup(16#01, 16#1) -> {ok, 16#31, 16#00};
     55 dec_huffman_lookup(16#01, 16#2) -> {ok, 16#32, 16#00};
     56 dec_huffman_lookup(16#01, 16#3) -> {ok, 16#61, 16#00};
     57 dec_huffman_lookup(16#01, 16#4) -> {ok, 16#63, 16#00};
     58 dec_huffman_lookup(16#01, 16#5) -> {ok, 16#65, 16#00};
     59 dec_huffman_lookup(16#01, 16#6) -> {ok, 16#69, 16#00};
     60 dec_huffman_lookup(16#01, 16#7) -> {ok, 16#6f, 16#00};
     61 dec_huffman_lookup(16#01, 16#8) -> {ok, 16#73, 16#00};
     62 dec_huffman_lookup(16#01, 16#9) -> {ok, 16#74, 16#00};
     63 dec_huffman_lookup(16#01, 16#a) -> {more, undefined, 16#0d};
     64 dec_huffman_lookup(16#01, 16#b) -> {more, undefined, 16#0e};
     65 dec_huffman_lookup(16#01, 16#c) -> {more, undefined, 16#11};
     66 dec_huffman_lookup(16#01, 16#d) -> {more, undefined, 16#12};
     67 dec_huffman_lookup(16#01, 16#e) -> {more, undefined, 16#14};
     68 dec_huffman_lookup(16#01, 16#f) -> {more, undefined, 16#15};
     69 dec_huffman_lookup(16#02, 16#0) -> {more, 16#30, 16#01};
     70 dec_huffman_lookup(16#02, 16#1) -> {ok, 16#30, 16#16};
     71 dec_huffman_lookup(16#02, 16#2) -> {more, 16#31, 16#01};
     72 dec_huffman_lookup(16#02, 16#3) -> {ok, 16#31, 16#16};
     73 dec_huffman_lookup(16#02, 16#4) -> {more, 16#32, 16#01};
     74 dec_huffman_lookup(16#02, 16#5) -> {ok, 16#32, 16#16};
     75 dec_huffman_lookup(16#02, 16#6) -> {more, 16#61, 16#01};
     76 dec_huffman_lookup(16#02, 16#7) -> {ok, 16#61, 16#16};
     77 dec_huffman_lookup(16#02, 16#8) -> {more, 16#63, 16#01};
     78 dec_huffman_lookup(16#02, 16#9) -> {ok, 16#63, 16#16};
     79 dec_huffman_lookup(16#02, 16#a) -> {more, 16#65, 16#01};
     80 dec_huffman_lookup(16#02, 16#b) -> {ok, 16#65, 16#16};
     81 dec_huffman_lookup(16#02, 16#c) -> {more, 16#69, 16#01};
     82 dec_huffman_lookup(16#02, 16#d) -> {ok, 16#69, 16#16};
     83 dec_huffman_lookup(16#02, 16#e) -> {more, 16#6f, 16#01};
     84 dec_huffman_lookup(16#02, 16#f) -> {ok, 16#6f, 16#16};
     85 dec_huffman_lookup(16#03, 16#0) -> {more, 16#30, 16#02};
     86 dec_huffman_lookup(16#03, 16#1) -> {more, 16#30, 16#09};
     87 dec_huffman_lookup(16#03, 16#2) -> {more, 16#30, 16#17};
     88 dec_huffman_lookup(16#03, 16#3) -> {ok, 16#30, 16#28};
     89 dec_huffman_lookup(16#03, 16#4) -> {more, 16#31, 16#02};
     90 dec_huffman_lookup(16#03, 16#5) -> {more, 16#31, 16#09};
     91 dec_huffman_lookup(16#03, 16#6) -> {more, 16#31, 16#17};
     92 dec_huffman_lookup(16#03, 16#7) -> {ok, 16#31, 16#28};
     93 dec_huffman_lookup(16#03, 16#8) -> {more, 16#32, 16#02};
     94 dec_huffman_lookup(16#03, 16#9) -> {more, 16#32, 16#09};
     95 dec_huffman_lookup(16#03, 16#a) -> {more, 16#32, 16#17};
     96 dec_huffman_lookup(16#03, 16#b) -> {ok, 16#32, 16#28};
     97 dec_huffman_lookup(16#03, 16#c) -> {more, 16#61, 16#02};
     98 dec_huffman_lookup(16#03, 16#d) -> {more, 16#61, 16#09};
     99 dec_huffman_lookup(16#03, 16#e) -> {more, 16#61, 16#17};
    100 dec_huffman_lookup(16#03, 16#f) -> {ok, 16#61, 16#28};
    101 dec_huffman_lookup(16#04, 16#0) -> {more, 16#30, 16#03};
    102 dec_huffman_lookup(16#04, 16#1) -> {more, 16#30, 16#06};
    103 dec_huffman_lookup(16#04, 16#2) -> {more, 16#30, 16#0a};
    104 dec_huffman_lookup(16#04, 16#3) -> {more, 16#30, 16#0f};
    105 dec_huffman_lookup(16#04, 16#4) -> {more, 16#30, 16#18};
    106 dec_huffman_lookup(16#04, 16#5) -> {more, 16#30, 16#1f};
    107 dec_huffman_lookup(16#04, 16#6) -> {more, 16#30, 16#29};
    108 dec_huffman_lookup(16#04, 16#7) -> {ok, 16#30, 16#38};
    109 dec_huffman_lookup(16#04, 16#8) -> {more, 16#31, 16#03};
    110 dec_huffman_lookup(16#04, 16#9) -> {more, 16#31, 16#06};
    111 dec_huffman_lookup(16#04, 16#a) -> {more, 16#31, 16#0a};
    112 dec_huffman_lookup(16#04, 16#b) -> {more, 16#31, 16#0f};
    113 dec_huffman_lookup(16#04, 16#c) -> {more, 16#31, 16#18};
    114 dec_huffman_lookup(16#04, 16#d) -> {more, 16#31, 16#1f};
    115 dec_huffman_lookup(16#04, 16#e) -> {more, 16#31, 16#29};
    116 dec_huffman_lookup(16#04, 16#f) -> {ok, 16#31, 16#38};
    117 dec_huffman_lookup(16#05, 16#0) -> {more, 16#32, 16#03};
    118 dec_huffman_lookup(16#05, 16#1) -> {more, 16#32, 16#06};
    119 dec_huffman_lookup(16#05, 16#2) -> {more, 16#32, 16#0a};
    120 dec_huffman_lookup(16#05, 16#3) -> {more, 16#32, 16#0f};
    121 dec_huffman_lookup(16#05, 16#4) -> {more, 16#32, 16#18};
    122 dec_huffman_lookup(16#05, 16#5) -> {more, 16#32, 16#1f};
    123 dec_huffman_lookup(16#05, 16#6) -> {more, 16#32, 16#29};
    124 dec_huffman_lookup(16#05, 16#7) -> {ok, 16#32, 16#38};
    125 dec_huffman_lookup(16#05, 16#8) -> {more, 16#61, 16#03};
    126 dec_huffman_lookup(16#05, 16#9) -> {more, 16#61, 16#06};
    127 dec_huffman_lookup(16#05, 16#a) -> {more, 16#61, 16#0a};
    128 dec_huffman_lookup(16#05, 16#b) -> {more, 16#61, 16#0f};
    129 dec_huffman_lookup(16#05, 16#c) -> {more, 16#61, 16#18};
    130 dec_huffman_lookup(16#05, 16#d) -> {more, 16#61, 16#1f};
    131 dec_huffman_lookup(16#05, 16#e) -> {more, 16#61, 16#29};
    132 dec_huffman_lookup(16#05, 16#f) -> {ok, 16#61, 16#38};
    133 dec_huffman_lookup(16#06, 16#0) -> {more, 16#63, 16#02};
    134 dec_huffman_lookup(16#06, 16#1) -> {more, 16#63, 16#09};
    135 dec_huffman_lookup(16#06, 16#2) -> {more, 16#63, 16#17};
    136 dec_huffman_lookup(16#06, 16#3) -> {ok, 16#63, 16#28};
    137 dec_huffman_lookup(16#06, 16#4) -> {more, 16#65, 16#02};
    138 dec_huffman_lookup(16#06, 16#5) -> {more, 16#65, 16#09};
    139 dec_huffman_lookup(16#06, 16#6) -> {more, 16#65, 16#17};
    140 dec_huffman_lookup(16#06, 16#7) -> {ok, 16#65, 16#28};
    141 dec_huffman_lookup(16#06, 16#8) -> {more, 16#69, 16#02};
    142 dec_huffman_lookup(16#06, 16#9) -> {more, 16#69, 16#09};
    143 dec_huffman_lookup(16#06, 16#a) -> {more, 16#69, 16#17};
    144 dec_huffman_lookup(16#06, 16#b) -> {ok, 16#69, 16#28};
    145 dec_huffman_lookup(16#06, 16#c) -> {more, 16#6f, 16#02};
    146 dec_huffman_lookup(16#06, 16#d) -> {more, 16#6f, 16#09};
    147 dec_huffman_lookup(16#06, 16#e) -> {more, 16#6f, 16#17};
    148 dec_huffman_lookup(16#06, 16#f) -> {ok, 16#6f, 16#28};
    149 dec_huffman_lookup(16#07, 16#0) -> {more, 16#63, 16#03};
    150 dec_huffman_lookup(16#07, 16#1) -> {more, 16#63, 16#06};
    151 dec_huffman_lookup(16#07, 16#2) -> {more, 16#63, 16#0a};
    152 dec_huffman_lookup(16#07, 16#3) -> {more, 16#63, 16#0f};
    153 dec_huffman_lookup(16#07, 16#4) -> {more, 16#63, 16#18};
    154 dec_huffman_lookup(16#07, 16#5) -> {more, 16#63, 16#1f};
    155 dec_huffman_lookup(16#07, 16#6) -> {more, 16#63, 16#29};
    156 dec_huffman_lookup(16#07, 16#7) -> {ok, 16#63, 16#38};
    157 dec_huffman_lookup(16#07, 16#8) -> {more, 16#65, 16#03};
    158 dec_huffman_lookup(16#07, 16#9) -> {more, 16#65, 16#06};
    159 dec_huffman_lookup(16#07, 16#a) -> {more, 16#65, 16#0a};
    160 dec_huffman_lookup(16#07, 16#b) -> {more, 16#65, 16#0f};
    161 dec_huffman_lookup(16#07, 16#c) -> {more, 16#65, 16#18};
    162 dec_huffman_lookup(16#07, 16#d) -> {more, 16#65, 16#1f};
    163 dec_huffman_lookup(16#07, 16#e) -> {more, 16#65, 16#29};
    164 dec_huffman_lookup(16#07, 16#f) -> {ok, 16#65, 16#38};
    165 dec_huffman_lookup(16#08, 16#0) -> {more, 16#69, 16#03};
    166 dec_huffman_lookup(16#08, 16#1) -> {more, 16#69, 16#06};
    167 dec_huffman_lookup(16#08, 16#2) -> {more, 16#69, 16#0a};
    168 dec_huffman_lookup(16#08, 16#3) -> {more, 16#69, 16#0f};
    169 dec_huffman_lookup(16#08, 16#4) -> {more, 16#69, 16#18};
    170 dec_huffman_lookup(16#08, 16#5) -> {more, 16#69, 16#1f};
    171 dec_huffman_lookup(16#08, 16#6) -> {more, 16#69, 16#29};
    172 dec_huffman_lookup(16#08, 16#7) -> {ok, 16#69, 16#38};
    173 dec_huffman_lookup(16#08, 16#8) -> {more, 16#6f, 16#03};
    174 dec_huffman_lookup(16#08, 16#9) -> {more, 16#6f, 16#06};
    175 dec_huffman_lookup(16#08, 16#a) -> {more, 16#6f, 16#0a};
    176 dec_huffman_lookup(16#08, 16#b) -> {more, 16#6f, 16#0f};
    177 dec_huffman_lookup(16#08, 16#c) -> {more, 16#6f, 16#18};
    178 dec_huffman_lookup(16#08, 16#d) -> {more, 16#6f, 16#1f};
    179 dec_huffman_lookup(16#08, 16#e) -> {more, 16#6f, 16#29};
    180 dec_huffman_lookup(16#08, 16#f) -> {ok, 16#6f, 16#38};
    181 dec_huffman_lookup(16#09, 16#0) -> {more, 16#73, 16#01};
    182 dec_huffman_lookup(16#09, 16#1) -> {ok, 16#73, 16#16};
    183 dec_huffman_lookup(16#09, 16#2) -> {more, 16#74, 16#01};
    184 dec_huffman_lookup(16#09, 16#3) -> {ok, 16#74, 16#16};
    185 dec_huffman_lookup(16#09, 16#4) -> {ok, 16#20, 16#00};
    186 dec_huffman_lookup(16#09, 16#5) -> {ok, 16#25, 16#00};
    187 dec_huffman_lookup(16#09, 16#6) -> {ok, 16#2d, 16#00};
    188 dec_huffman_lookup(16#09, 16#7) -> {ok, 16#2e, 16#00};
    189 dec_huffman_lookup(16#09, 16#8) -> {ok, 16#2f, 16#00};
    190 dec_huffman_lookup(16#09, 16#9) -> {ok, 16#33, 16#00};
    191 dec_huffman_lookup(16#09, 16#a) -> {ok, 16#34, 16#00};
    192 dec_huffman_lookup(16#09, 16#b) -> {ok, 16#35, 16#00};
    193 dec_huffman_lookup(16#09, 16#c) -> {ok, 16#36, 16#00};
    194 dec_huffman_lookup(16#09, 16#d) -> {ok, 16#37, 16#00};
    195 dec_huffman_lookup(16#09, 16#e) -> {ok, 16#38, 16#00};
    196 dec_huffman_lookup(16#09, 16#f) -> {ok, 16#39, 16#00};
    197 dec_huffman_lookup(16#0a, 16#0) -> {more, 16#73, 16#02};
    198 dec_huffman_lookup(16#0a, 16#1) -> {more, 16#73, 16#09};
    199 dec_huffman_lookup(16#0a, 16#2) -> {more, 16#73, 16#17};
    200 dec_huffman_lookup(16#0a, 16#3) -> {ok, 16#73, 16#28};
    201 dec_huffman_lookup(16#0a, 16#4) -> {more, 16#74, 16#02};
    202 dec_huffman_lookup(16#0a, 16#5) -> {more, 16#74, 16#09};
    203 dec_huffman_lookup(16#0a, 16#6) -> {more, 16#74, 16#17};
    204 dec_huffman_lookup(16#0a, 16#7) -> {ok, 16#74, 16#28};
    205 dec_huffman_lookup(16#0a, 16#8) -> {more, 16#20, 16#01};
    206 dec_huffman_lookup(16#0a, 16#9) -> {ok, 16#20, 16#16};
    207 dec_huffman_lookup(16#0a, 16#a) -> {more, 16#25, 16#01};
    208 dec_huffman_lookup(16#0a, 16#b) -> {ok, 16#25, 16#16};
    209 dec_huffman_lookup(16#0a, 16#c) -> {more, 16#2d, 16#01};
    210 dec_huffman_lookup(16#0a, 16#d) -> {ok, 16#2d, 16#16};
    211 dec_huffman_lookup(16#0a, 16#e) -> {more, 16#2e, 16#01};
    212 dec_huffman_lookup(16#0a, 16#f) -> {ok, 16#2e, 16#16};
    213 dec_huffman_lookup(16#0b, 16#0) -> {more, 16#73, 16#03};
    214 dec_huffman_lookup(16#0b, 16#1) -> {more, 16#73, 16#06};
    215 dec_huffman_lookup(16#0b, 16#2) -> {more, 16#73, 16#0a};
    216 dec_huffman_lookup(16#0b, 16#3) -> {more, 16#73, 16#0f};
    217 dec_huffman_lookup(16#0b, 16#4) -> {more, 16#73, 16#18};
    218 dec_huffman_lookup(16#0b, 16#5) -> {more, 16#73, 16#1f};
    219 dec_huffman_lookup(16#0b, 16#6) -> {more, 16#73, 16#29};
    220 dec_huffman_lookup(16#0b, 16#7) -> {ok, 16#73, 16#38};
    221 dec_huffman_lookup(16#0b, 16#8) -> {more, 16#74, 16#03};
    222 dec_huffman_lookup(16#0b, 16#9) -> {more, 16#74, 16#06};
    223 dec_huffman_lookup(16#0b, 16#a) -> {more, 16#74, 16#0a};
    224 dec_huffman_lookup(16#0b, 16#b) -> {more, 16#74, 16#0f};
    225 dec_huffman_lookup(16#0b, 16#c) -> {more, 16#74, 16#18};
    226 dec_huffman_lookup(16#0b, 16#d) -> {more, 16#74, 16#1f};
    227 dec_huffman_lookup(16#0b, 16#e) -> {more, 16#74, 16#29};
    228 dec_huffman_lookup(16#0b, 16#f) -> {ok, 16#74, 16#38};
    229 dec_huffman_lookup(16#0c, 16#0) -> {more, 16#20, 16#02};
    230 dec_huffman_lookup(16#0c, 16#1) -> {more, 16#20, 16#09};
    231 dec_huffman_lookup(16#0c, 16#2) -> {more, 16#20, 16#17};
    232 dec_huffman_lookup(16#0c, 16#3) -> {ok, 16#20, 16#28};
    233 dec_huffman_lookup(16#0c, 16#4) -> {more, 16#25, 16#02};
    234 dec_huffman_lookup(16#0c, 16#5) -> {more, 16#25, 16#09};
    235 dec_huffman_lookup(16#0c, 16#6) -> {more, 16#25, 16#17};
    236 dec_huffman_lookup(16#0c, 16#7) -> {ok, 16#25, 16#28};
    237 dec_huffman_lookup(16#0c, 16#8) -> {more, 16#2d, 16#02};
    238 dec_huffman_lookup(16#0c, 16#9) -> {more, 16#2d, 16#09};
    239 dec_huffman_lookup(16#0c, 16#a) -> {more, 16#2d, 16#17};
    240 dec_huffman_lookup(16#0c, 16#b) -> {ok, 16#2d, 16#28};
    241 dec_huffman_lookup(16#0c, 16#c) -> {more, 16#2e, 16#02};
    242 dec_huffman_lookup(16#0c, 16#d) -> {more, 16#2e, 16#09};
    243 dec_huffman_lookup(16#0c, 16#e) -> {more, 16#2e, 16#17};
    244 dec_huffman_lookup(16#0c, 16#f) -> {ok, 16#2e, 16#28};
    245 dec_huffman_lookup(16#0d, 16#0) -> {more, 16#20, 16#03};
    246 dec_huffman_lookup(16#0d, 16#1) -> {more, 16#20, 16#06};
    247 dec_huffman_lookup(16#0d, 16#2) -> {more, 16#20, 16#0a};
    248 dec_huffman_lookup(16#0d, 16#3) -> {more, 16#20, 16#0f};
    249 dec_huffman_lookup(16#0d, 16#4) -> {more, 16#20, 16#18};
    250 dec_huffman_lookup(16#0d, 16#5) -> {more, 16#20, 16#1f};
    251 dec_huffman_lookup(16#0d, 16#6) -> {more, 16#20, 16#29};
    252 dec_huffman_lookup(16#0d, 16#7) -> {ok, 16#20, 16#38};
    253 dec_huffman_lookup(16#0d, 16#8) -> {more, 16#25, 16#03};
    254 dec_huffman_lookup(16#0d, 16#9) -> {more, 16#25, 16#06};
    255 dec_huffman_lookup(16#0d, 16#a) -> {more, 16#25, 16#0a};
    256 dec_huffman_lookup(16#0d, 16#b) -> {more, 16#25, 16#0f};
    257 dec_huffman_lookup(16#0d, 16#c) -> {more, 16#25, 16#18};
    258 dec_huffman_lookup(16#0d, 16#d) -> {more, 16#25, 16#1f};
    259 dec_huffman_lookup(16#0d, 16#e) -> {more, 16#25, 16#29};
    260 dec_huffman_lookup(16#0d, 16#f) -> {ok, 16#25, 16#38};
    261 dec_huffman_lookup(16#0e, 16#0) -> {more, 16#2d, 16#03};
    262 dec_huffman_lookup(16#0e, 16#1) -> {more, 16#2d, 16#06};
    263 dec_huffman_lookup(16#0e, 16#2) -> {more, 16#2d, 16#0a};
    264 dec_huffman_lookup(16#0e, 16#3) -> {more, 16#2d, 16#0f};
    265 dec_huffman_lookup(16#0e, 16#4) -> {more, 16#2d, 16#18};
    266 dec_huffman_lookup(16#0e, 16#5) -> {more, 16#2d, 16#1f};
    267 dec_huffman_lookup(16#0e, 16#6) -> {more, 16#2d, 16#29};
    268 dec_huffman_lookup(16#0e, 16#7) -> {ok, 16#2d, 16#38};
    269 dec_huffman_lookup(16#0e, 16#8) -> {more, 16#2e, 16#03};
    270 dec_huffman_lookup(16#0e, 16#9) -> {more, 16#2e, 16#06};
    271 dec_huffman_lookup(16#0e, 16#a) -> {more, 16#2e, 16#0a};
    272 dec_huffman_lookup(16#0e, 16#b) -> {more, 16#2e, 16#0f};
    273 dec_huffman_lookup(16#0e, 16#c) -> {more, 16#2e, 16#18};
    274 dec_huffman_lookup(16#0e, 16#d) -> {more, 16#2e, 16#1f};
    275 dec_huffman_lookup(16#0e, 16#e) -> {more, 16#2e, 16#29};
    276 dec_huffman_lookup(16#0e, 16#f) -> {ok, 16#2e, 16#38};
    277 dec_huffman_lookup(16#0f, 16#0) -> {more, 16#2f, 16#01};
    278 dec_huffman_lookup(16#0f, 16#1) -> {ok, 16#2f, 16#16};
    279 dec_huffman_lookup(16#0f, 16#2) -> {more, 16#33, 16#01};
    280 dec_huffman_lookup(16#0f, 16#3) -> {ok, 16#33, 16#16};
    281 dec_huffman_lookup(16#0f, 16#4) -> {more, 16#34, 16#01};
    282 dec_huffman_lookup(16#0f, 16#5) -> {ok, 16#34, 16#16};
    283 dec_huffman_lookup(16#0f, 16#6) -> {more, 16#35, 16#01};
    284 dec_huffman_lookup(16#0f, 16#7) -> {ok, 16#35, 16#16};
    285 dec_huffman_lookup(16#0f, 16#8) -> {more, 16#36, 16#01};
    286 dec_huffman_lookup(16#0f, 16#9) -> {ok, 16#36, 16#16};
    287 dec_huffman_lookup(16#0f, 16#a) -> {more, 16#37, 16#01};
    288 dec_huffman_lookup(16#0f, 16#b) -> {ok, 16#37, 16#16};
    289 dec_huffman_lookup(16#0f, 16#c) -> {more, 16#38, 16#01};
    290 dec_huffman_lookup(16#0f, 16#d) -> {ok, 16#38, 16#16};
    291 dec_huffman_lookup(16#0f, 16#e) -> {more, 16#39, 16#01};
    292 dec_huffman_lookup(16#0f, 16#f) -> {ok, 16#39, 16#16};
    293 dec_huffman_lookup(16#10, 16#0) -> {more, 16#2f, 16#02};
    294 dec_huffman_lookup(16#10, 16#1) -> {more, 16#2f, 16#09};
    295 dec_huffman_lookup(16#10, 16#2) -> {more, 16#2f, 16#17};
    296 dec_huffman_lookup(16#10, 16#3) -> {ok, 16#2f, 16#28};
    297 dec_huffman_lookup(16#10, 16#4) -> {more, 16#33, 16#02};
    298 dec_huffman_lookup(16#10, 16#5) -> {more, 16#33, 16#09};
    299 dec_huffman_lookup(16#10, 16#6) -> {more, 16#33, 16#17};
    300 dec_huffman_lookup(16#10, 16#7) -> {ok, 16#33, 16#28};
    301 dec_huffman_lookup(16#10, 16#8) -> {more, 16#34, 16#02};
    302 dec_huffman_lookup(16#10, 16#9) -> {more, 16#34, 16#09};
    303 dec_huffman_lookup(16#10, 16#a) -> {more, 16#34, 16#17};
    304 dec_huffman_lookup(16#10, 16#b) -> {ok, 16#34, 16#28};
    305 dec_huffman_lookup(16#10, 16#c) -> {more, 16#35, 16#02};
    306 dec_huffman_lookup(16#10, 16#d) -> {more, 16#35, 16#09};
    307 dec_huffman_lookup(16#10, 16#e) -> {more, 16#35, 16#17};
    308 dec_huffman_lookup(16#10, 16#f) -> {ok, 16#35, 16#28};
    309 dec_huffman_lookup(16#11, 16#0) -> {more, 16#2f, 16#03};
    310 dec_huffman_lookup(16#11, 16#1) -> {more, 16#2f, 16#06};
    311 dec_huffman_lookup(16#11, 16#2) -> {more, 16#2f, 16#0a};
    312 dec_huffman_lookup(16#11, 16#3) -> {more, 16#2f, 16#0f};
    313 dec_huffman_lookup(16#11, 16#4) -> {more, 16#2f, 16#18};
    314 dec_huffman_lookup(16#11, 16#5) -> {more, 16#2f, 16#1f};
    315 dec_huffman_lookup(16#11, 16#6) -> {more, 16#2f, 16#29};
    316 dec_huffman_lookup(16#11, 16#7) -> {ok, 16#2f, 16#38};
    317 dec_huffman_lookup(16#11, 16#8) -> {more, 16#33, 16#03};
    318 dec_huffman_lookup(16#11, 16#9) -> {more, 16#33, 16#06};
    319 dec_huffman_lookup(16#11, 16#a) -> {more, 16#33, 16#0a};
    320 dec_huffman_lookup(16#11, 16#b) -> {more, 16#33, 16#0f};
    321 dec_huffman_lookup(16#11, 16#c) -> {more, 16#33, 16#18};
    322 dec_huffman_lookup(16#11, 16#d) -> {more, 16#33, 16#1f};
    323 dec_huffman_lookup(16#11, 16#e) -> {more, 16#33, 16#29};
    324 dec_huffman_lookup(16#11, 16#f) -> {ok, 16#33, 16#38};
    325 dec_huffman_lookup(16#12, 16#0) -> {more, 16#34, 16#03};
    326 dec_huffman_lookup(16#12, 16#1) -> {more, 16#34, 16#06};
    327 dec_huffman_lookup(16#12, 16#2) -> {more, 16#34, 16#0a};
    328 dec_huffman_lookup(16#12, 16#3) -> {more, 16#34, 16#0f};
    329 dec_huffman_lookup(16#12, 16#4) -> {more, 16#34, 16#18};
    330 dec_huffman_lookup(16#12, 16#5) -> {more, 16#34, 16#1f};
    331 dec_huffman_lookup(16#12, 16#6) -> {more, 16#34, 16#29};
    332 dec_huffman_lookup(16#12, 16#7) -> {ok, 16#34, 16#38};
    333 dec_huffman_lookup(16#12, 16#8) -> {more, 16#35, 16#03};
    334 dec_huffman_lookup(16#12, 16#9) -> {more, 16#35, 16#06};
    335 dec_huffman_lookup(16#12, 16#a) -> {more, 16#35, 16#0a};
    336 dec_huffman_lookup(16#12, 16#b) -> {more, 16#35, 16#0f};
    337 dec_huffman_lookup(16#12, 16#c) -> {more, 16#35, 16#18};
    338 dec_huffman_lookup(16#12, 16#d) -> {more, 16#35, 16#1f};
    339 dec_huffman_lookup(16#12, 16#e) -> {more, 16#35, 16#29};
    340 dec_huffman_lookup(16#12, 16#f) -> {ok, 16#35, 16#38};
    341 dec_huffman_lookup(16#13, 16#0) -> {more, 16#36, 16#02};
    342 dec_huffman_lookup(16#13, 16#1) -> {more, 16#36, 16#09};
    343 dec_huffman_lookup(16#13, 16#2) -> {more, 16#36, 16#17};
    344 dec_huffman_lookup(16#13, 16#3) -> {ok, 16#36, 16#28};
    345 dec_huffman_lookup(16#13, 16#4) -> {more, 16#37, 16#02};
    346 dec_huffman_lookup(16#13, 16#5) -> {more, 16#37, 16#09};
    347 dec_huffman_lookup(16#13, 16#6) -> {more, 16#37, 16#17};
    348 dec_huffman_lookup(16#13, 16#7) -> {ok, 16#37, 16#28};
    349 dec_huffman_lookup(16#13, 16#8) -> {more, 16#38, 16#02};
    350 dec_huffman_lookup(16#13, 16#9) -> {more, 16#38, 16#09};
    351 dec_huffman_lookup(16#13, 16#a) -> {more, 16#38, 16#17};
    352 dec_huffman_lookup(16#13, 16#b) -> {ok, 16#38, 16#28};
    353 dec_huffman_lookup(16#13, 16#c) -> {more, 16#39, 16#02};
    354 dec_huffman_lookup(16#13, 16#d) -> {more, 16#39, 16#09};
    355 dec_huffman_lookup(16#13, 16#e) -> {more, 16#39, 16#17};
    356 dec_huffman_lookup(16#13, 16#f) -> {ok, 16#39, 16#28};
    357 dec_huffman_lookup(16#14, 16#0) -> {more, 16#36, 16#03};
    358 dec_huffman_lookup(16#14, 16#1) -> {more, 16#36, 16#06};
    359 dec_huffman_lookup(16#14, 16#2) -> {more, 16#36, 16#0a};
    360 dec_huffman_lookup(16#14, 16#3) -> {more, 16#36, 16#0f};
    361 dec_huffman_lookup(16#14, 16#4) -> {more, 16#36, 16#18};
    362 dec_huffman_lookup(16#14, 16#5) -> {more, 16#36, 16#1f};
    363 dec_huffman_lookup(16#14, 16#6) -> {more, 16#36, 16#29};
    364 dec_huffman_lookup(16#14, 16#7) -> {ok, 16#36, 16#38};
    365 dec_huffman_lookup(16#14, 16#8) -> {more, 16#37, 16#03};
    366 dec_huffman_lookup(16#14, 16#9) -> {more, 16#37, 16#06};
    367 dec_huffman_lookup(16#14, 16#a) -> {more, 16#37, 16#0a};
    368 dec_huffman_lookup(16#14, 16#b) -> {more, 16#37, 16#0f};
    369 dec_huffman_lookup(16#14, 16#c) -> {more, 16#37, 16#18};
    370 dec_huffman_lookup(16#14, 16#d) -> {more, 16#37, 16#1f};
    371 dec_huffman_lookup(16#14, 16#e) -> {more, 16#37, 16#29};
    372 dec_huffman_lookup(16#14, 16#f) -> {ok, 16#37, 16#38};
    373 dec_huffman_lookup(16#15, 16#0) -> {more, 16#38, 16#03};
    374 dec_huffman_lookup(16#15, 16#1) -> {more, 16#38, 16#06};
    375 dec_huffman_lookup(16#15, 16#2) -> {more, 16#38, 16#0a};
    376 dec_huffman_lookup(16#15, 16#3) -> {more, 16#38, 16#0f};
    377 dec_huffman_lookup(16#15, 16#4) -> {more, 16#38, 16#18};
    378 dec_huffman_lookup(16#15, 16#5) -> {more, 16#38, 16#1f};
    379 dec_huffman_lookup(16#15, 16#6) -> {more, 16#38, 16#29};
    380 dec_huffman_lookup(16#15, 16#7) -> {ok, 16#38, 16#38};
    381 dec_huffman_lookup(16#15, 16#8) -> {more, 16#39, 16#03};
    382 dec_huffman_lookup(16#15, 16#9) -> {more, 16#39, 16#06};
    383 dec_huffman_lookup(16#15, 16#a) -> {more, 16#39, 16#0a};
    384 dec_huffman_lookup(16#15, 16#b) -> {more, 16#39, 16#0f};
    385 dec_huffman_lookup(16#15, 16#c) -> {more, 16#39, 16#18};
    386 dec_huffman_lookup(16#15, 16#d) -> {more, 16#39, 16#1f};
    387 dec_huffman_lookup(16#15, 16#e) -> {more, 16#39, 16#29};
    388 dec_huffman_lookup(16#15, 16#f) -> {ok, 16#39, 16#38};
    389 dec_huffman_lookup(16#16, 16#0) -> {more, undefined, 16#1a};
    390 dec_huffman_lookup(16#16, 16#1) -> {more, undefined, 16#1b};
    391 dec_huffman_lookup(16#16, 16#2) -> {more, undefined, 16#1d};
    392 dec_huffman_lookup(16#16, 16#3) -> {more, undefined, 16#1e};
    393 dec_huffman_lookup(16#16, 16#4) -> {more, undefined, 16#21};
    394 dec_huffman_lookup(16#16, 16#5) -> {more, undefined, 16#22};
    395 dec_huffman_lookup(16#16, 16#6) -> {more, undefined, 16#24};
    396 dec_huffman_lookup(16#16, 16#7) -> {more, undefined, 16#25};
    397 dec_huffman_lookup(16#16, 16#8) -> {more, undefined, 16#2b};
    398 dec_huffman_lookup(16#16, 16#9) -> {more, undefined, 16#2e};
    399 dec_huffman_lookup(16#16, 16#a) -> {more, undefined, 16#32};
    400 dec_huffman_lookup(16#16, 16#b) -> {more, undefined, 16#35};
    401 dec_huffman_lookup(16#16, 16#c) -> {more, undefined, 16#3a};
    402 dec_huffman_lookup(16#16, 16#d) -> {more, undefined, 16#3d};
    403 dec_huffman_lookup(16#16, 16#e) -> {more, undefined, 16#41};
    404 dec_huffman_lookup(16#16, 16#f) -> {ok, undefined, 16#44};
    405 dec_huffman_lookup(16#17, 16#0) -> {ok, 16#3d, 16#00};
    406 dec_huffman_lookup(16#17, 16#1) -> {ok, 16#41, 16#00};
    407 dec_huffman_lookup(16#17, 16#2) -> {ok, 16#5f, 16#00};
    408 dec_huffman_lookup(16#17, 16#3) -> {ok, 16#62, 16#00};
    409 dec_huffman_lookup(16#17, 16#4) -> {ok, 16#64, 16#00};
    410 dec_huffman_lookup(16#17, 16#5) -> {ok, 16#66, 16#00};
    411 dec_huffman_lookup(16#17, 16#6) -> {ok, 16#67, 16#00};
    412 dec_huffman_lookup(16#17, 16#7) -> {ok, 16#68, 16#00};
    413 dec_huffman_lookup(16#17, 16#8) -> {ok, 16#6c, 16#00};
    414 dec_huffman_lookup(16#17, 16#9) -> {ok, 16#6d, 16#00};
    415 dec_huffman_lookup(16#17, 16#a) -> {ok, 16#6e, 16#00};
    416 dec_huffman_lookup(16#17, 16#b) -> {ok, 16#70, 16#00};
    417 dec_huffman_lookup(16#17, 16#c) -> {ok, 16#72, 16#00};
    418 dec_huffman_lookup(16#17, 16#d) -> {ok, 16#75, 16#00};
    419 dec_huffman_lookup(16#17, 16#e) -> {more, undefined, 16#26};
    420 dec_huffman_lookup(16#17, 16#f) -> {more, undefined, 16#27};
    421 dec_huffman_lookup(16#18, 16#0) -> {more, 16#3d, 16#01};
    422 dec_huffman_lookup(16#18, 16#1) -> {ok, 16#3d, 16#16};
    423 dec_huffman_lookup(16#18, 16#2) -> {more, 16#41, 16#01};
    424 dec_huffman_lookup(16#18, 16#3) -> {ok, 16#41, 16#16};
    425 dec_huffman_lookup(16#18, 16#4) -> {more, 16#5f, 16#01};
    426 dec_huffman_lookup(16#18, 16#5) -> {ok, 16#5f, 16#16};
    427 dec_huffman_lookup(16#18, 16#6) -> {more, 16#62, 16#01};
    428 dec_huffman_lookup(16#18, 16#7) -> {ok, 16#62, 16#16};
    429 dec_huffman_lookup(16#18, 16#8) -> {more, 16#64, 16#01};
    430 dec_huffman_lookup(16#18, 16#9) -> {ok, 16#64, 16#16};
    431 dec_huffman_lookup(16#18, 16#a) -> {more, 16#66, 16#01};
    432 dec_huffman_lookup(16#18, 16#b) -> {ok, 16#66, 16#16};
    433 dec_huffman_lookup(16#18, 16#c) -> {more, 16#67, 16#01};
    434 dec_huffman_lookup(16#18, 16#d) -> {ok, 16#67, 16#16};
    435 dec_huffman_lookup(16#18, 16#e) -> {more, 16#68, 16#01};
    436 dec_huffman_lookup(16#18, 16#f) -> {ok, 16#68, 16#16};
    437 dec_huffman_lookup(16#19, 16#0) -> {more, 16#3d, 16#02};
    438 dec_huffman_lookup(16#19, 16#1) -> {more, 16#3d, 16#09};
    439 dec_huffman_lookup(16#19, 16#2) -> {more, 16#3d, 16#17};
    440 dec_huffman_lookup(16#19, 16#3) -> {ok, 16#3d, 16#28};
    441 dec_huffman_lookup(16#19, 16#4) -> {more, 16#41, 16#02};
    442 dec_huffman_lookup(16#19, 16#5) -> {more, 16#41, 16#09};
    443 dec_huffman_lookup(16#19, 16#6) -> {more, 16#41, 16#17};
    444 dec_huffman_lookup(16#19, 16#7) -> {ok, 16#41, 16#28};
    445 dec_huffman_lookup(16#19, 16#8) -> {more, 16#5f, 16#02};
    446 dec_huffman_lookup(16#19, 16#9) -> {more, 16#5f, 16#09};
    447 dec_huffman_lookup(16#19, 16#a) -> {more, 16#5f, 16#17};
    448 dec_huffman_lookup(16#19, 16#b) -> {ok, 16#5f, 16#28};
    449 dec_huffman_lookup(16#19, 16#c) -> {more, 16#62, 16#02};
    450 dec_huffman_lookup(16#19, 16#d) -> {more, 16#62, 16#09};
    451 dec_huffman_lookup(16#19, 16#e) -> {more, 16#62, 16#17};
    452 dec_huffman_lookup(16#19, 16#f) -> {ok, 16#62, 16#28};
    453 dec_huffman_lookup(16#1a, 16#0) -> {more, 16#3d, 16#03};
    454 dec_huffman_lookup(16#1a, 16#1) -> {more, 16#3d, 16#06};
    455 dec_huffman_lookup(16#1a, 16#2) -> {more, 16#3d, 16#0a};
    456 dec_huffman_lookup(16#1a, 16#3) -> {more, 16#3d, 16#0f};
    457 dec_huffman_lookup(16#1a, 16#4) -> {more, 16#3d, 16#18};
    458 dec_huffman_lookup(16#1a, 16#5) -> {more, 16#3d, 16#1f};
    459 dec_huffman_lookup(16#1a, 16#6) -> {more, 16#3d, 16#29};
    460 dec_huffman_lookup(16#1a, 16#7) -> {ok, 16#3d, 16#38};
    461 dec_huffman_lookup(16#1a, 16#8) -> {more, 16#41, 16#03};
    462 dec_huffman_lookup(16#1a, 16#9) -> {more, 16#41, 16#06};
    463 dec_huffman_lookup(16#1a, 16#a) -> {more, 16#41, 16#0a};
    464 dec_huffman_lookup(16#1a, 16#b) -> {more, 16#41, 16#0f};
    465 dec_huffman_lookup(16#1a, 16#c) -> {more, 16#41, 16#18};
    466 dec_huffman_lookup(16#1a, 16#d) -> {more, 16#41, 16#1f};
    467 dec_huffman_lookup(16#1a, 16#e) -> {more, 16#41, 16#29};
    468 dec_huffman_lookup(16#1a, 16#f) -> {ok, 16#41, 16#38};
    469 dec_huffman_lookup(16#1b, 16#0) -> {more, 16#5f, 16#03};
    470 dec_huffman_lookup(16#1b, 16#1) -> {more, 16#5f, 16#06};
    471 dec_huffman_lookup(16#1b, 16#2) -> {more, 16#5f, 16#0a};
    472 dec_huffman_lookup(16#1b, 16#3) -> {more, 16#5f, 16#0f};
    473 dec_huffman_lookup(16#1b, 16#4) -> {more, 16#5f, 16#18};
    474 dec_huffman_lookup(16#1b, 16#5) -> {more, 16#5f, 16#1f};
    475 dec_huffman_lookup(16#1b, 16#6) -> {more, 16#5f, 16#29};
    476 dec_huffman_lookup(16#1b, 16#7) -> {ok, 16#5f, 16#38};
    477 dec_huffman_lookup(16#1b, 16#8) -> {more, 16#62, 16#03};
    478 dec_huffman_lookup(16#1b, 16#9) -> {more, 16#62, 16#06};
    479 dec_huffman_lookup(16#1b, 16#a) -> {more, 16#62, 16#0a};
    480 dec_huffman_lookup(16#1b, 16#b) -> {more, 16#62, 16#0f};
    481 dec_huffman_lookup(16#1b, 16#c) -> {more, 16#62, 16#18};
    482 dec_huffman_lookup(16#1b, 16#d) -> {more, 16#62, 16#1f};
    483 dec_huffman_lookup(16#1b, 16#e) -> {more, 16#62, 16#29};
    484 dec_huffman_lookup(16#1b, 16#f) -> {ok, 16#62, 16#38};
    485 dec_huffman_lookup(16#1c, 16#0) -> {more, 16#64, 16#02};
    486 dec_huffman_lookup(16#1c, 16#1) -> {more, 16#64, 16#09};
    487 dec_huffman_lookup(16#1c, 16#2) -> {more, 16#64, 16#17};
    488 dec_huffman_lookup(16#1c, 16#3) -> {ok, 16#64, 16#28};
    489 dec_huffman_lookup(16#1c, 16#4) -> {more, 16#66, 16#02};
    490 dec_huffman_lookup(16#1c, 16#5) -> {more, 16#66, 16#09};
    491 dec_huffman_lookup(16#1c, 16#6) -> {more, 16#66, 16#17};
    492 dec_huffman_lookup(16#1c, 16#7) -> {ok, 16#66, 16#28};
    493 dec_huffman_lookup(16#1c, 16#8) -> {more, 16#67, 16#02};
    494 dec_huffman_lookup(16#1c, 16#9) -> {more, 16#67, 16#09};
    495 dec_huffman_lookup(16#1c, 16#a) -> {more, 16#67, 16#17};
    496 dec_huffman_lookup(16#1c, 16#b) -> {ok, 16#67, 16#28};
    497 dec_huffman_lookup(16#1c, 16#c) -> {more, 16#68, 16#02};
    498 dec_huffman_lookup(16#1c, 16#d) -> {more, 16#68, 16#09};
    499 dec_huffman_lookup(16#1c, 16#e) -> {more, 16#68, 16#17};
    500 dec_huffman_lookup(16#1c, 16#f) -> {ok, 16#68, 16#28};
    501 dec_huffman_lookup(16#1d, 16#0) -> {more, 16#64, 16#03};
    502 dec_huffman_lookup(16#1d, 16#1) -> {more, 16#64, 16#06};
    503 dec_huffman_lookup(16#1d, 16#2) -> {more, 16#64, 16#0a};
    504 dec_huffman_lookup(16#1d, 16#3) -> {more, 16#64, 16#0f};
    505 dec_huffman_lookup(16#1d, 16#4) -> {more, 16#64, 16#18};
    506 dec_huffman_lookup(16#1d, 16#5) -> {more, 16#64, 16#1f};
    507 dec_huffman_lookup(16#1d, 16#6) -> {more, 16#64, 16#29};
    508 dec_huffman_lookup(16#1d, 16#7) -> {ok, 16#64, 16#38};
    509 dec_huffman_lookup(16#1d, 16#8) -> {more, 16#66, 16#03};
    510 dec_huffman_lookup(16#1d, 16#9) -> {more, 16#66, 16#06};
    511 dec_huffman_lookup(16#1d, 16#a) -> {more, 16#66, 16#0a};
    512 dec_huffman_lookup(16#1d, 16#b) -> {more, 16#66, 16#0f};
    513 dec_huffman_lookup(16#1d, 16#c) -> {more, 16#66, 16#18};
    514 dec_huffman_lookup(16#1d, 16#d) -> {more, 16#66, 16#1f};
    515 dec_huffman_lookup(16#1d, 16#e) -> {more, 16#66, 16#29};
    516 dec_huffman_lookup(16#1d, 16#f) -> {ok, 16#66, 16#38};
    517 dec_huffman_lookup(16#1e, 16#0) -> {more, 16#67, 16#03};
    518 dec_huffman_lookup(16#1e, 16#1) -> {more, 16#67, 16#06};
    519 dec_huffman_lookup(16#1e, 16#2) -> {more, 16#67, 16#0a};
    520 dec_huffman_lookup(16#1e, 16#3) -> {more, 16#67, 16#0f};
    521 dec_huffman_lookup(16#1e, 16#4) -> {more, 16#67, 16#18};
    522 dec_huffman_lookup(16#1e, 16#5) -> {more, 16#67, 16#1f};
    523 dec_huffman_lookup(16#1e, 16#6) -> {more, 16#67, 16#29};
    524 dec_huffman_lookup(16#1e, 16#7) -> {ok, 16#67, 16#38};
    525 dec_huffman_lookup(16#1e, 16#8) -> {more, 16#68, 16#03};
    526 dec_huffman_lookup(16#1e, 16#9) -> {more, 16#68, 16#06};
    527 dec_huffman_lookup(16#1e, 16#a) -> {more, 16#68, 16#0a};
    528 dec_huffman_lookup(16#1e, 16#b) -> {more, 16#68, 16#0f};
    529 dec_huffman_lookup(16#1e, 16#c) -> {more, 16#68, 16#18};
    530 dec_huffman_lookup(16#1e, 16#d) -> {more, 16#68, 16#1f};
    531 dec_huffman_lookup(16#1e, 16#e) -> {more, 16#68, 16#29};
    532 dec_huffman_lookup(16#1e, 16#f) -> {ok, 16#68, 16#38};
    533 dec_huffman_lookup(16#1f, 16#0) -> {more, 16#6c, 16#01};
    534 dec_huffman_lookup(16#1f, 16#1) -> {ok, 16#6c, 16#16};
    535 dec_huffman_lookup(16#1f, 16#2) -> {more, 16#6d, 16#01};
    536 dec_huffman_lookup(16#1f, 16#3) -> {ok, 16#6d, 16#16};
    537 dec_huffman_lookup(16#1f, 16#4) -> {more, 16#6e, 16#01};
    538 dec_huffman_lookup(16#1f, 16#5) -> {ok, 16#6e, 16#16};
    539 dec_huffman_lookup(16#1f, 16#6) -> {more, 16#70, 16#01};
    540 dec_huffman_lookup(16#1f, 16#7) -> {ok, 16#70, 16#16};
    541 dec_huffman_lookup(16#1f, 16#8) -> {more, 16#72, 16#01};
    542 dec_huffman_lookup(16#1f, 16#9) -> {ok, 16#72, 16#16};
    543 dec_huffman_lookup(16#1f, 16#a) -> {more, 16#75, 16#01};
    544 dec_huffman_lookup(16#1f, 16#b) -> {ok, 16#75, 16#16};
    545 dec_huffman_lookup(16#1f, 16#c) -> {ok, 16#3a, 16#00};
    546 dec_huffman_lookup(16#1f, 16#d) -> {ok, 16#42, 16#00};
    547 dec_huffman_lookup(16#1f, 16#e) -> {ok, 16#43, 16#00};
    548 dec_huffman_lookup(16#1f, 16#f) -> {ok, 16#44, 16#00};
    549 dec_huffman_lookup(16#20, 16#0) -> {more, 16#6c, 16#02};
    550 dec_huffman_lookup(16#20, 16#1) -> {more, 16#6c, 16#09};
    551 dec_huffman_lookup(16#20, 16#2) -> {more, 16#6c, 16#17};
    552 dec_huffman_lookup(16#20, 16#3) -> {ok, 16#6c, 16#28};
    553 dec_huffman_lookup(16#20, 16#4) -> {more, 16#6d, 16#02};
    554 dec_huffman_lookup(16#20, 16#5) -> {more, 16#6d, 16#09};
    555 dec_huffman_lookup(16#20, 16#6) -> {more, 16#6d, 16#17};
    556 dec_huffman_lookup(16#20, 16#7) -> {ok, 16#6d, 16#28};
    557 dec_huffman_lookup(16#20, 16#8) -> {more, 16#6e, 16#02};
    558 dec_huffman_lookup(16#20, 16#9) -> {more, 16#6e, 16#09};
    559 dec_huffman_lookup(16#20, 16#a) -> {more, 16#6e, 16#17};
    560 dec_huffman_lookup(16#20, 16#b) -> {ok, 16#6e, 16#28};
    561 dec_huffman_lookup(16#20, 16#c) -> {more, 16#70, 16#02};
    562 dec_huffman_lookup(16#20, 16#d) -> {more, 16#70, 16#09};
    563 dec_huffman_lookup(16#20, 16#e) -> {more, 16#70, 16#17};
    564 dec_huffman_lookup(16#20, 16#f) -> {ok, 16#70, 16#28};
    565 dec_huffman_lookup(16#21, 16#0) -> {more, 16#6c, 16#03};
    566 dec_huffman_lookup(16#21, 16#1) -> {more, 16#6c, 16#06};
    567 dec_huffman_lookup(16#21, 16#2) -> {more, 16#6c, 16#0a};
    568 dec_huffman_lookup(16#21, 16#3) -> {more, 16#6c, 16#0f};
    569 dec_huffman_lookup(16#21, 16#4) -> {more, 16#6c, 16#18};
    570 dec_huffman_lookup(16#21, 16#5) -> {more, 16#6c, 16#1f};
    571 dec_huffman_lookup(16#21, 16#6) -> {more, 16#6c, 16#29};
    572 dec_huffman_lookup(16#21, 16#7) -> {ok, 16#6c, 16#38};
    573 dec_huffman_lookup(16#21, 16#8) -> {more, 16#6d, 16#03};
    574 dec_huffman_lookup(16#21, 16#9) -> {more, 16#6d, 16#06};
    575 dec_huffman_lookup(16#21, 16#a) -> {more, 16#6d, 16#0a};
    576 dec_huffman_lookup(16#21, 16#b) -> {more, 16#6d, 16#0f};
    577 dec_huffman_lookup(16#21, 16#c) -> {more, 16#6d, 16#18};
    578 dec_huffman_lookup(16#21, 16#d) -> {more, 16#6d, 16#1f};
    579 dec_huffman_lookup(16#21, 16#e) -> {more, 16#6d, 16#29};
    580 dec_huffman_lookup(16#21, 16#f) -> {ok, 16#6d, 16#38};
    581 dec_huffman_lookup(16#22, 16#0) -> {more, 16#6e, 16#03};
    582 dec_huffman_lookup(16#22, 16#1) -> {more, 16#6e, 16#06};
    583 dec_huffman_lookup(16#22, 16#2) -> {more, 16#6e, 16#0a};
    584 dec_huffman_lookup(16#22, 16#3) -> {more, 16#6e, 16#0f};
    585 dec_huffman_lookup(16#22, 16#4) -> {more, 16#6e, 16#18};
    586 dec_huffman_lookup(16#22, 16#5) -> {more, 16#6e, 16#1f};
    587 dec_huffman_lookup(16#22, 16#6) -> {more, 16#6e, 16#29};
    588 dec_huffman_lookup(16#22, 16#7) -> {ok, 16#6e, 16#38};
    589 dec_huffman_lookup(16#22, 16#8) -> {more, 16#70, 16#03};
    590 dec_huffman_lookup(16#22, 16#9) -> {more, 16#70, 16#06};
    591 dec_huffman_lookup(16#22, 16#a) -> {more, 16#70, 16#0a};
    592 dec_huffman_lookup(16#22, 16#b) -> {more, 16#70, 16#0f};
    593 dec_huffman_lookup(16#22, 16#c) -> {more, 16#70, 16#18};
    594 dec_huffman_lookup(16#22, 16#d) -> {more, 16#70, 16#1f};
    595 dec_huffman_lookup(16#22, 16#e) -> {more, 16#70, 16#29};
    596 dec_huffman_lookup(16#22, 16#f) -> {ok, 16#70, 16#38};
    597 dec_huffman_lookup(16#23, 16#0) -> {more, 16#72, 16#02};
    598 dec_huffman_lookup(16#23, 16#1) -> {more, 16#72, 16#09};
    599 dec_huffman_lookup(16#23, 16#2) -> {more, 16#72, 16#17};
    600 dec_huffman_lookup(16#23, 16#3) -> {ok, 16#72, 16#28};
    601 dec_huffman_lookup(16#23, 16#4) -> {more, 16#75, 16#02};
    602 dec_huffman_lookup(16#23, 16#5) -> {more, 16#75, 16#09};
    603 dec_huffman_lookup(16#23, 16#6) -> {more, 16#75, 16#17};
    604 dec_huffman_lookup(16#23, 16#7) -> {ok, 16#75, 16#28};
    605 dec_huffman_lookup(16#23, 16#8) -> {more, 16#3a, 16#01};
    606 dec_huffman_lookup(16#23, 16#9) -> {ok, 16#3a, 16#16};
    607 dec_huffman_lookup(16#23, 16#a) -> {more, 16#42, 16#01};
    608 dec_huffman_lookup(16#23, 16#b) -> {ok, 16#42, 16#16};
    609 dec_huffman_lookup(16#23, 16#c) -> {more, 16#43, 16#01};
    610 dec_huffman_lookup(16#23, 16#d) -> {ok, 16#43, 16#16};
    611 dec_huffman_lookup(16#23, 16#e) -> {more, 16#44, 16#01};
    612 dec_huffman_lookup(16#23, 16#f) -> {ok, 16#44, 16#16};
    613 dec_huffman_lookup(16#24, 16#0) -> {more, 16#72, 16#03};
    614 dec_huffman_lookup(16#24, 16#1) -> {more, 16#72, 16#06};
    615 dec_huffman_lookup(16#24, 16#2) -> {more, 16#72, 16#0a};
    616 dec_huffman_lookup(16#24, 16#3) -> {more, 16#72, 16#0f};
    617 dec_huffman_lookup(16#24, 16#4) -> {more, 16#72, 16#18};
    618 dec_huffman_lookup(16#24, 16#5) -> {more, 16#72, 16#1f};
    619 dec_huffman_lookup(16#24, 16#6) -> {more, 16#72, 16#29};
    620 dec_huffman_lookup(16#24, 16#7) -> {ok, 16#72, 16#38};
    621 dec_huffman_lookup(16#24, 16#8) -> {more, 16#75, 16#03};
    622 dec_huffman_lookup(16#24, 16#9) -> {more, 16#75, 16#06};
    623 dec_huffman_lookup(16#24, 16#a) -> {more, 16#75, 16#0a};
    624 dec_huffman_lookup(16#24, 16#b) -> {more, 16#75, 16#0f};
    625 dec_huffman_lookup(16#24, 16#c) -> {more, 16#75, 16#18};
    626 dec_huffman_lookup(16#24, 16#d) -> {more, 16#75, 16#1f};
    627 dec_huffman_lookup(16#24, 16#e) -> {more, 16#75, 16#29};
    628 dec_huffman_lookup(16#24, 16#f) -> {ok, 16#75, 16#38};
    629 dec_huffman_lookup(16#25, 16#0) -> {more, 16#3a, 16#02};
    630 dec_huffman_lookup(16#25, 16#1) -> {more, 16#3a, 16#09};
    631 dec_huffman_lookup(16#25, 16#2) -> {more, 16#3a, 16#17};
    632 dec_huffman_lookup(16#25, 16#3) -> {ok, 16#3a, 16#28};
    633 dec_huffman_lookup(16#25, 16#4) -> {more, 16#42, 16#02};
    634 dec_huffman_lookup(16#25, 16#5) -> {more, 16#42, 16#09};
    635 dec_huffman_lookup(16#25, 16#6) -> {more, 16#42, 16#17};
    636 dec_huffman_lookup(16#25, 16#7) -> {ok, 16#42, 16#28};
    637 dec_huffman_lookup(16#25, 16#8) -> {more, 16#43, 16#02};
    638 dec_huffman_lookup(16#25, 16#9) -> {more, 16#43, 16#09};
    639 dec_huffman_lookup(16#25, 16#a) -> {more, 16#43, 16#17};
    640 dec_huffman_lookup(16#25, 16#b) -> {ok, 16#43, 16#28};
    641 dec_huffman_lookup(16#25, 16#c) -> {more, 16#44, 16#02};
    642 dec_huffman_lookup(16#25, 16#d) -> {more, 16#44, 16#09};
    643 dec_huffman_lookup(16#25, 16#e) -> {more, 16#44, 16#17};
    644 dec_huffman_lookup(16#25, 16#f) -> {ok, 16#44, 16#28};
    645 dec_huffman_lookup(16#26, 16#0) -> {more, 16#3a, 16#03};
    646 dec_huffman_lookup(16#26, 16#1) -> {more, 16#3a, 16#06};
    647 dec_huffman_lookup(16#26, 16#2) -> {more, 16#3a, 16#0a};
    648 dec_huffman_lookup(16#26, 16#3) -> {more, 16#3a, 16#0f};
    649 dec_huffman_lookup(16#26, 16#4) -> {more, 16#3a, 16#18};
    650 dec_huffman_lookup(16#26, 16#5) -> {more, 16#3a, 16#1f};
    651 dec_huffman_lookup(16#26, 16#6) -> {more, 16#3a, 16#29};
    652 dec_huffman_lookup(16#26, 16#7) -> {ok, 16#3a, 16#38};
    653 dec_huffman_lookup(16#26, 16#8) -> {more, 16#42, 16#03};
    654 dec_huffman_lookup(16#26, 16#9) -> {more, 16#42, 16#06};
    655 dec_huffman_lookup(16#26, 16#a) -> {more, 16#42, 16#0a};
    656 dec_huffman_lookup(16#26, 16#b) -> {more, 16#42, 16#0f};
    657 dec_huffman_lookup(16#26, 16#c) -> {more, 16#42, 16#18};
    658 dec_huffman_lookup(16#26, 16#d) -> {more, 16#42, 16#1f};
    659 dec_huffman_lookup(16#26, 16#e) -> {more, 16#42, 16#29};
    660 dec_huffman_lookup(16#26, 16#f) -> {ok, 16#42, 16#38};
    661 dec_huffman_lookup(16#27, 16#0) -> {more, 16#43, 16#03};
    662 dec_huffman_lookup(16#27, 16#1) -> {more, 16#43, 16#06};
    663 dec_huffman_lookup(16#27, 16#2) -> {more, 16#43, 16#0a};
    664 dec_huffman_lookup(16#27, 16#3) -> {more, 16#43, 16#0f};
    665 dec_huffman_lookup(16#27, 16#4) -> {more, 16#43, 16#18};
    666 dec_huffman_lookup(16#27, 16#5) -> {more, 16#43, 16#1f};
    667 dec_huffman_lookup(16#27, 16#6) -> {more, 16#43, 16#29};
    668 dec_huffman_lookup(16#27, 16#7) -> {ok, 16#43, 16#38};
    669 dec_huffman_lookup(16#27, 16#8) -> {more, 16#44, 16#03};
    670 dec_huffman_lookup(16#27, 16#9) -> {more, 16#44, 16#06};
    671 dec_huffman_lookup(16#27, 16#a) -> {more, 16#44, 16#0a};
    672 dec_huffman_lookup(16#27, 16#b) -> {more, 16#44, 16#0f};
    673 dec_huffman_lookup(16#27, 16#c) -> {more, 16#44, 16#18};
    674 dec_huffman_lookup(16#27, 16#d) -> {more, 16#44, 16#1f};
    675 dec_huffman_lookup(16#27, 16#e) -> {more, 16#44, 16#29};
    676 dec_huffman_lookup(16#27, 16#f) -> {ok, 16#44, 16#38};
    677 dec_huffman_lookup(16#28, 16#0) -> {more, undefined, 16#2c};
    678 dec_huffman_lookup(16#28, 16#1) -> {more, undefined, 16#2d};
    679 dec_huffman_lookup(16#28, 16#2) -> {more, undefined, 16#2f};
    680 dec_huffman_lookup(16#28, 16#3) -> {more, undefined, 16#30};
    681 dec_huffman_lookup(16#28, 16#4) -> {more, undefined, 16#33};
    682 dec_huffman_lookup(16#28, 16#5) -> {more, undefined, 16#34};
    683 dec_huffman_lookup(16#28, 16#6) -> {more, undefined, 16#36};
    684 dec_huffman_lookup(16#28, 16#7) -> {more, undefined, 16#37};
    685 dec_huffman_lookup(16#28, 16#8) -> {more, undefined, 16#3b};
    686 dec_huffman_lookup(16#28, 16#9) -> {more, undefined, 16#3c};
    687 dec_huffman_lookup(16#28, 16#a) -> {more, undefined, 16#3e};
    688 dec_huffman_lookup(16#28, 16#b) -> {more, undefined, 16#3f};
    689 dec_huffman_lookup(16#28, 16#c) -> {more, undefined, 16#42};
    690 dec_huffman_lookup(16#28, 16#d) -> {more, undefined, 16#43};
    691 dec_huffman_lookup(16#28, 16#e) -> {more, undefined, 16#45};
    692 dec_huffman_lookup(16#28, 16#f) -> {ok, undefined, 16#48};
    693 dec_huffman_lookup(16#29, 16#0) -> {ok, 16#45, 16#00};
    694 dec_huffman_lookup(16#29, 16#1) -> {ok, 16#46, 16#00};
    695 dec_huffman_lookup(16#29, 16#2) -> {ok, 16#47, 16#00};
    696 dec_huffman_lookup(16#29, 16#3) -> {ok, 16#48, 16#00};
    697 dec_huffman_lookup(16#29, 16#4) -> {ok, 16#49, 16#00};
    698 dec_huffman_lookup(16#29, 16#5) -> {ok, 16#4a, 16#00};
    699 dec_huffman_lookup(16#29, 16#6) -> {ok, 16#4b, 16#00};
    700 dec_huffman_lookup(16#29, 16#7) -> {ok, 16#4c, 16#00};
    701 dec_huffman_lookup(16#29, 16#8) -> {ok, 16#4d, 16#00};
    702 dec_huffman_lookup(16#29, 16#9) -> {ok, 16#4e, 16#00};
    703 dec_huffman_lookup(16#29, 16#a) -> {ok, 16#4f, 16#00};
    704 dec_huffman_lookup(16#29, 16#b) -> {ok, 16#50, 16#00};
    705 dec_huffman_lookup(16#29, 16#c) -> {ok, 16#51, 16#00};
    706 dec_huffman_lookup(16#29, 16#d) -> {ok, 16#52, 16#00};
    707 dec_huffman_lookup(16#29, 16#e) -> {ok, 16#53, 16#00};
    708 dec_huffman_lookup(16#29, 16#f) -> {ok, 16#54, 16#00};
    709 dec_huffman_lookup(16#2a, 16#0) -> {more, 16#45, 16#01};
    710 dec_huffman_lookup(16#2a, 16#1) -> {ok, 16#45, 16#16};
    711 dec_huffman_lookup(16#2a, 16#2) -> {more, 16#46, 16#01};
    712 dec_huffman_lookup(16#2a, 16#3) -> {ok, 16#46, 16#16};
    713 dec_huffman_lookup(16#2a, 16#4) -> {more, 16#47, 16#01};
    714 dec_huffman_lookup(16#2a, 16#5) -> {ok, 16#47, 16#16};
    715 dec_huffman_lookup(16#2a, 16#6) -> {more, 16#48, 16#01};
    716 dec_huffman_lookup(16#2a, 16#7) -> {ok, 16#48, 16#16};
    717 dec_huffman_lookup(16#2a, 16#8) -> {more, 16#49, 16#01};
    718 dec_huffman_lookup(16#2a, 16#9) -> {ok, 16#49, 16#16};
    719 dec_huffman_lookup(16#2a, 16#a) -> {more, 16#4a, 16#01};
    720 dec_huffman_lookup(16#2a, 16#b) -> {ok, 16#4a, 16#16};
    721 dec_huffman_lookup(16#2a, 16#c) -> {more, 16#4b, 16#01};
    722 dec_huffman_lookup(16#2a, 16#d) -> {ok, 16#4b, 16#16};
    723 dec_huffman_lookup(16#2a, 16#e) -> {more, 16#4c, 16#01};
    724 dec_huffman_lookup(16#2a, 16#f) -> {ok, 16#4c, 16#16};
    725 dec_huffman_lookup(16#2b, 16#0) -> {more, 16#45, 16#02};
    726 dec_huffman_lookup(16#2b, 16#1) -> {more, 16#45, 16#09};
    727 dec_huffman_lookup(16#2b, 16#2) -> {more, 16#45, 16#17};
    728 dec_huffman_lookup(16#2b, 16#3) -> {ok, 16#45, 16#28};
    729 dec_huffman_lookup(16#2b, 16#4) -> {more, 16#46, 16#02};
    730 dec_huffman_lookup(16#2b, 16#5) -> {more, 16#46, 16#09};
    731 dec_huffman_lookup(16#2b, 16#6) -> {more, 16#46, 16#17};
    732 dec_huffman_lookup(16#2b, 16#7) -> {ok, 16#46, 16#28};
    733 dec_huffman_lookup(16#2b, 16#8) -> {more, 16#47, 16#02};
    734 dec_huffman_lookup(16#2b, 16#9) -> {more, 16#47, 16#09};
    735 dec_huffman_lookup(16#2b, 16#a) -> {more, 16#47, 16#17};
    736 dec_huffman_lookup(16#2b, 16#b) -> {ok, 16#47, 16#28};
    737 dec_huffman_lookup(16#2b, 16#c) -> {more, 16#48, 16#02};
    738 dec_huffman_lookup(16#2b, 16#d) -> {more, 16#48, 16#09};
    739 dec_huffman_lookup(16#2b, 16#e) -> {more, 16#48, 16#17};
    740 dec_huffman_lookup(16#2b, 16#f) -> {ok, 16#48, 16#28};
    741 dec_huffman_lookup(16#2c, 16#0) -> {more, 16#45, 16#03};
    742 dec_huffman_lookup(16#2c, 16#1) -> {more, 16#45, 16#06};
    743 dec_huffman_lookup(16#2c, 16#2) -> {more, 16#45, 16#0a};
    744 dec_huffman_lookup(16#2c, 16#3) -> {more, 16#45, 16#0f};
    745 dec_huffman_lookup(16#2c, 16#4) -> {more, 16#45, 16#18};
    746 dec_huffman_lookup(16#2c, 16#5) -> {more, 16#45, 16#1f};
    747 dec_huffman_lookup(16#2c, 16#6) -> {more, 16#45, 16#29};
    748 dec_huffman_lookup(16#2c, 16#7) -> {ok, 16#45, 16#38};
    749 dec_huffman_lookup(16#2c, 16#8) -> {more, 16#46, 16#03};
    750 dec_huffman_lookup(16#2c, 16#9) -> {more, 16#46, 16#06};
    751 dec_huffman_lookup(16#2c, 16#a) -> {more, 16#46, 16#0a};
    752 dec_huffman_lookup(16#2c, 16#b) -> {more, 16#46, 16#0f};
    753 dec_huffman_lookup(16#2c, 16#c) -> {more, 16#46, 16#18};
    754 dec_huffman_lookup(16#2c, 16#d) -> {more, 16#46, 16#1f};
    755 dec_huffman_lookup(16#2c, 16#e) -> {more, 16#46, 16#29};
    756 dec_huffman_lookup(16#2c, 16#f) -> {ok, 16#46, 16#38};
    757 dec_huffman_lookup(16#2d, 16#0) -> {more, 16#47, 16#03};
    758 dec_huffman_lookup(16#2d, 16#1) -> {more, 16#47, 16#06};
    759 dec_huffman_lookup(16#2d, 16#2) -> {more, 16#47, 16#0a};
    760 dec_huffman_lookup(16#2d, 16#3) -> {more, 16#47, 16#0f};
    761 dec_huffman_lookup(16#2d, 16#4) -> {more, 16#47, 16#18};
    762 dec_huffman_lookup(16#2d, 16#5) -> {more, 16#47, 16#1f};
    763 dec_huffman_lookup(16#2d, 16#6) -> {more, 16#47, 16#29};
    764 dec_huffman_lookup(16#2d, 16#7) -> {ok, 16#47, 16#38};
    765 dec_huffman_lookup(16#2d, 16#8) -> {more, 16#48, 16#03};
    766 dec_huffman_lookup(16#2d, 16#9) -> {more, 16#48, 16#06};
    767 dec_huffman_lookup(16#2d, 16#a) -> {more, 16#48, 16#0a};
    768 dec_huffman_lookup(16#2d, 16#b) -> {more, 16#48, 16#0f};
    769 dec_huffman_lookup(16#2d, 16#c) -> {more, 16#48, 16#18};
    770 dec_huffman_lookup(16#2d, 16#d) -> {more, 16#48, 16#1f};
    771 dec_huffman_lookup(16#2d, 16#e) -> {more, 16#48, 16#29};
    772 dec_huffman_lookup(16#2d, 16#f) -> {ok, 16#48, 16#38};
    773 dec_huffman_lookup(16#2e, 16#0) -> {more, 16#49, 16#02};
    774 dec_huffman_lookup(16#2e, 16#1) -> {more, 16#49, 16#09};
    775 dec_huffman_lookup(16#2e, 16#2) -> {more, 16#49, 16#17};
    776 dec_huffman_lookup(16#2e, 16#3) -> {ok, 16#49, 16#28};
    777 dec_huffman_lookup(16#2e, 16#4) -> {more, 16#4a, 16#02};
    778 dec_huffman_lookup(16#2e, 16#5) -> {more, 16#4a, 16#09};
    779 dec_huffman_lookup(16#2e, 16#6) -> {more, 16#4a, 16#17};
    780 dec_huffman_lookup(16#2e, 16#7) -> {ok, 16#4a, 16#28};
    781 dec_huffman_lookup(16#2e, 16#8) -> {more, 16#4b, 16#02};
    782 dec_huffman_lookup(16#2e, 16#9) -> {more, 16#4b, 16#09};
    783 dec_huffman_lookup(16#2e, 16#a) -> {more, 16#4b, 16#17};
    784 dec_huffman_lookup(16#2e, 16#b) -> {ok, 16#4b, 16#28};
    785 dec_huffman_lookup(16#2e, 16#c) -> {more, 16#4c, 16#02};
    786 dec_huffman_lookup(16#2e, 16#d) -> {more, 16#4c, 16#09};
    787 dec_huffman_lookup(16#2e, 16#e) -> {more, 16#4c, 16#17};
    788 dec_huffman_lookup(16#2e, 16#f) -> {ok, 16#4c, 16#28};
    789 dec_huffman_lookup(16#2f, 16#0) -> {more, 16#49, 16#03};
    790 dec_huffman_lookup(16#2f, 16#1) -> {more, 16#49, 16#06};
    791 dec_huffman_lookup(16#2f, 16#2) -> {more, 16#49, 16#0a};
    792 dec_huffman_lookup(16#2f, 16#3) -> {more, 16#49, 16#0f};
    793 dec_huffman_lookup(16#2f, 16#4) -> {more, 16#49, 16#18};
    794 dec_huffman_lookup(16#2f, 16#5) -> {more, 16#49, 16#1f};
    795 dec_huffman_lookup(16#2f, 16#6) -> {more, 16#49, 16#29};
    796 dec_huffman_lookup(16#2f, 16#7) -> {ok, 16#49, 16#38};
    797 dec_huffman_lookup(16#2f, 16#8) -> {more, 16#4a, 16#03};
    798 dec_huffman_lookup(16#2f, 16#9) -> {more, 16#4a, 16#06};
    799 dec_huffman_lookup(16#2f, 16#a) -> {more, 16#4a, 16#0a};
    800 dec_huffman_lookup(16#2f, 16#b) -> {more, 16#4a, 16#0f};
    801 dec_huffman_lookup(16#2f, 16#c) -> {more, 16#4a, 16#18};
    802 dec_huffman_lookup(16#2f, 16#d) -> {more, 16#4a, 16#1f};
    803 dec_huffman_lookup(16#2f, 16#e) -> {more, 16#4a, 16#29};
    804 dec_huffman_lookup(16#2f, 16#f) -> {ok, 16#4a, 16#38};
    805 dec_huffman_lookup(16#30, 16#0) -> {more, 16#4b, 16#03};
    806 dec_huffman_lookup(16#30, 16#1) -> {more, 16#4b, 16#06};
    807 dec_huffman_lookup(16#30, 16#2) -> {more, 16#4b, 16#0a};
    808 dec_huffman_lookup(16#30, 16#3) -> {more, 16#4b, 16#0f};
    809 dec_huffman_lookup(16#30, 16#4) -> {more, 16#4b, 16#18};
    810 dec_huffman_lookup(16#30, 16#5) -> {more, 16#4b, 16#1f};
    811 dec_huffman_lookup(16#30, 16#6) -> {more, 16#4b, 16#29};
    812 dec_huffman_lookup(16#30, 16#7) -> {ok, 16#4b, 16#38};
    813 dec_huffman_lookup(16#30, 16#8) -> {more, 16#4c, 16#03};
    814 dec_huffman_lookup(16#30, 16#9) -> {more, 16#4c, 16#06};
    815 dec_huffman_lookup(16#30, 16#a) -> {more, 16#4c, 16#0a};
    816 dec_huffman_lookup(16#30, 16#b) -> {more, 16#4c, 16#0f};
    817 dec_huffman_lookup(16#30, 16#c) -> {more, 16#4c, 16#18};
    818 dec_huffman_lookup(16#30, 16#d) -> {more, 16#4c, 16#1f};
    819 dec_huffman_lookup(16#30, 16#e) -> {more, 16#4c, 16#29};
    820 dec_huffman_lookup(16#30, 16#f) -> {ok, 16#4c, 16#38};
    821 dec_huffman_lookup(16#31, 16#0) -> {more, 16#4d, 16#01};
    822 dec_huffman_lookup(16#31, 16#1) -> {ok, 16#4d, 16#16};
    823 dec_huffman_lookup(16#31, 16#2) -> {more, 16#4e, 16#01};
    824 dec_huffman_lookup(16#31, 16#3) -> {ok, 16#4e, 16#16};
    825 dec_huffman_lookup(16#31, 16#4) -> {more, 16#4f, 16#01};
    826 dec_huffman_lookup(16#31, 16#5) -> {ok, 16#4f, 16#16};
    827 dec_huffman_lookup(16#31, 16#6) -> {more, 16#50, 16#01};
    828 dec_huffman_lookup(16#31, 16#7) -> {ok, 16#50, 16#16};
    829 dec_huffman_lookup(16#31, 16#8) -> {more, 16#51, 16#01};
    830 dec_huffman_lookup(16#31, 16#9) -> {ok, 16#51, 16#16};
    831 dec_huffman_lookup(16#31, 16#a) -> {more, 16#52, 16#01};
    832 dec_huffman_lookup(16#31, 16#b) -> {ok, 16#52, 16#16};
    833 dec_huffman_lookup(16#31, 16#c) -> {more, 16#53, 16#01};
    834 dec_huffman_lookup(16#31, 16#d) -> {ok, 16#53, 16#16};
    835 dec_huffman_lookup(16#31, 16#e) -> {more, 16#54, 16#01};
    836 dec_huffman_lookup(16#31, 16#f) -> {ok, 16#54, 16#16};
    837 dec_huffman_lookup(16#32, 16#0) -> {more, 16#4d, 16#02};
    838 dec_huffman_lookup(16#32, 16#1) -> {more, 16#4d, 16#09};
    839 dec_huffman_lookup(16#32, 16#2) -> {more, 16#4d, 16#17};
    840 dec_huffman_lookup(16#32, 16#3) -> {ok, 16#4d, 16#28};
    841 dec_huffman_lookup(16#32, 16#4) -> {more, 16#4e, 16#02};
    842 dec_huffman_lookup(16#32, 16#5) -> {more, 16#4e, 16#09};
    843 dec_huffman_lookup(16#32, 16#6) -> {more, 16#4e, 16#17};
    844 dec_huffman_lookup(16#32, 16#7) -> {ok, 16#4e, 16#28};
    845 dec_huffman_lookup(16#32, 16#8) -> {more, 16#4f, 16#02};
    846 dec_huffman_lookup(16#32, 16#9) -> {more, 16#4f, 16#09};
    847 dec_huffman_lookup(16#32, 16#a) -> {more, 16#4f, 16#17};
    848 dec_huffman_lookup(16#32, 16#b) -> {ok, 16#4f, 16#28};
    849 dec_huffman_lookup(16#32, 16#c) -> {more, 16#50, 16#02};
    850 dec_huffman_lookup(16#32, 16#d) -> {more, 16#50, 16#09};
    851 dec_huffman_lookup(16#32, 16#e) -> {more, 16#50, 16#17};
    852 dec_huffman_lookup(16#32, 16#f) -> {ok, 16#50, 16#28};
    853 dec_huffman_lookup(16#33, 16#0) -> {more, 16#4d, 16#03};
    854 dec_huffman_lookup(16#33, 16#1) -> {more, 16#4d, 16#06};
    855 dec_huffman_lookup(16#33, 16#2) -> {more, 16#4d, 16#0a};
    856 dec_huffman_lookup(16#33, 16#3) -> {more, 16#4d, 16#0f};
    857 dec_huffman_lookup(16#33, 16#4) -> {more, 16#4d, 16#18};
    858 dec_huffman_lookup(16#33, 16#5) -> {more, 16#4d, 16#1f};
    859 dec_huffman_lookup(16#33, 16#6) -> {more, 16#4d, 16#29};
    860 dec_huffman_lookup(16#33, 16#7) -> {ok, 16#4d, 16#38};
    861 dec_huffman_lookup(16#33, 16#8) -> {more, 16#4e, 16#03};
    862 dec_huffman_lookup(16#33, 16#9) -> {more, 16#4e, 16#06};
    863 dec_huffman_lookup(16#33, 16#a) -> {more, 16#4e, 16#0a};
    864 dec_huffman_lookup(16#33, 16#b) -> {more, 16#4e, 16#0f};
    865 dec_huffman_lookup(16#33, 16#c) -> {more, 16#4e, 16#18};
    866 dec_huffman_lookup(16#33, 16#d) -> {more, 16#4e, 16#1f};
    867 dec_huffman_lookup(16#33, 16#e) -> {more, 16#4e, 16#29};
    868 dec_huffman_lookup(16#33, 16#f) -> {ok, 16#4e, 16#38};
    869 dec_huffman_lookup(16#34, 16#0) -> {more, 16#4f, 16#03};
    870 dec_huffman_lookup(16#34, 16#1) -> {more, 16#4f, 16#06};
    871 dec_huffman_lookup(16#34, 16#2) -> {more, 16#4f, 16#0a};
    872 dec_huffman_lookup(16#34, 16#3) -> {more, 16#4f, 16#0f};
    873 dec_huffman_lookup(16#34, 16#4) -> {more, 16#4f, 16#18};
    874 dec_huffman_lookup(16#34, 16#5) -> {more, 16#4f, 16#1f};
    875 dec_huffman_lookup(16#34, 16#6) -> {more, 16#4f, 16#29};
    876 dec_huffman_lookup(16#34, 16#7) -> {ok, 16#4f, 16#38};
    877 dec_huffman_lookup(16#34, 16#8) -> {more, 16#50, 16#03};
    878 dec_huffman_lookup(16#34, 16#9) -> {more, 16#50, 16#06};
    879 dec_huffman_lookup(16#34, 16#a) -> {more, 16#50, 16#0a};
    880 dec_huffman_lookup(16#34, 16#b) -> {more, 16#50, 16#0f};
    881 dec_huffman_lookup(16#34, 16#c) -> {more, 16#50, 16#18};
    882 dec_huffman_lookup(16#34, 16#d) -> {more, 16#50, 16#1f};
    883 dec_huffman_lookup(16#34, 16#e) -> {more, 16#50, 16#29};
    884 dec_huffman_lookup(16#34, 16#f) -> {ok, 16#50, 16#38};
    885 dec_huffman_lookup(16#35, 16#0) -> {more, 16#51, 16#02};
    886 dec_huffman_lookup(16#35, 16#1) -> {more, 16#51, 16#09};
    887 dec_huffman_lookup(16#35, 16#2) -> {more, 16#51, 16#17};
    888 dec_huffman_lookup(16#35, 16#3) -> {ok, 16#51, 16#28};
    889 dec_huffman_lookup(16#35, 16#4) -> {more, 16#52, 16#02};
    890 dec_huffman_lookup(16#35, 16#5) -> {more, 16#52, 16#09};
    891 dec_huffman_lookup(16#35, 16#6) -> {more, 16#52, 16#17};
    892 dec_huffman_lookup(16#35, 16#7) -> {ok, 16#52, 16#28};
    893 dec_huffman_lookup(16#35, 16#8) -> {more, 16#53, 16#02};
    894 dec_huffman_lookup(16#35, 16#9) -> {more, 16#53, 16#09};
    895 dec_huffman_lookup(16#35, 16#a) -> {more, 16#53, 16#17};
    896 dec_huffman_lookup(16#35, 16#b) -> {ok, 16#53, 16#28};
    897 dec_huffman_lookup(16#35, 16#c) -> {more, 16#54, 16#02};
    898 dec_huffman_lookup(16#35, 16#d) -> {more, 16#54, 16#09};
    899 dec_huffman_lookup(16#35, 16#e) -> {more, 16#54, 16#17};
    900 dec_huffman_lookup(16#35, 16#f) -> {ok, 16#54, 16#28};
    901 dec_huffman_lookup(16#36, 16#0) -> {more, 16#51, 16#03};
    902 dec_huffman_lookup(16#36, 16#1) -> {more, 16#51, 16#06};
    903 dec_huffman_lookup(16#36, 16#2) -> {more, 16#51, 16#0a};
    904 dec_huffman_lookup(16#36, 16#3) -> {more, 16#51, 16#0f};
    905 dec_huffman_lookup(16#36, 16#4) -> {more, 16#51, 16#18};
    906 dec_huffman_lookup(16#36, 16#5) -> {more, 16#51, 16#1f};
    907 dec_huffman_lookup(16#36, 16#6) -> {more, 16#51, 16#29};
    908 dec_huffman_lookup(16#36, 16#7) -> {ok, 16#51, 16#38};
    909 dec_huffman_lookup(16#36, 16#8) -> {more, 16#52, 16#03};
    910 dec_huffman_lookup(16#36, 16#9) -> {more, 16#52, 16#06};
    911 dec_huffman_lookup(16#36, 16#a) -> {more, 16#52, 16#0a};
    912 dec_huffman_lookup(16#36, 16#b) -> {more, 16#52, 16#0f};
    913 dec_huffman_lookup(16#36, 16#c) -> {more, 16#52, 16#18};
    914 dec_huffman_lookup(16#36, 16#d) -> {more, 16#52, 16#1f};
    915 dec_huffman_lookup(16#36, 16#e) -> {more, 16#52, 16#29};
    916 dec_huffman_lookup(16#36, 16#f) -> {ok, 16#52, 16#38};
    917 dec_huffman_lookup(16#37, 16#0) -> {more, 16#53, 16#03};
    918 dec_huffman_lookup(16#37, 16#1) -> {more, 16#53, 16#06};
    919 dec_huffman_lookup(16#37, 16#2) -> {more, 16#53, 16#0a};
    920 dec_huffman_lookup(16#37, 16#3) -> {more, 16#53, 16#0f};
    921 dec_huffman_lookup(16#37, 16#4) -> {more, 16#53, 16#18};
    922 dec_huffman_lookup(16#37, 16#5) -> {more, 16#53, 16#1f};
    923 dec_huffman_lookup(16#37, 16#6) -> {more, 16#53, 16#29};
    924 dec_huffman_lookup(16#37, 16#7) -> {ok, 16#53, 16#38};
    925 dec_huffman_lookup(16#37, 16#8) -> {more, 16#54, 16#03};
    926 dec_huffman_lookup(16#37, 16#9) -> {more, 16#54, 16#06};
    927 dec_huffman_lookup(16#37, 16#a) -> {more, 16#54, 16#0a};
    928 dec_huffman_lookup(16#37, 16#b) -> {more, 16#54, 16#0f};
    929 dec_huffman_lookup(16#37, 16#c) -> {more, 16#54, 16#18};
    930 dec_huffman_lookup(16#37, 16#d) -> {more, 16#54, 16#1f};
    931 dec_huffman_lookup(16#37, 16#e) -> {more, 16#54, 16#29};
    932 dec_huffman_lookup(16#37, 16#f) -> {ok, 16#54, 16#38};
    933 dec_huffman_lookup(16#38, 16#0) -> {ok, 16#55, 16#00};
    934 dec_huffman_lookup(16#38, 16#1) -> {ok, 16#56, 16#00};
    935 dec_huffman_lookup(16#38, 16#2) -> {ok, 16#57, 16#00};
    936 dec_huffman_lookup(16#38, 16#3) -> {ok, 16#59, 16#00};
    937 dec_huffman_lookup(16#38, 16#4) -> {ok, 16#6a, 16#00};
    938 dec_huffman_lookup(16#38, 16#5) -> {ok, 16#6b, 16#00};
    939 dec_huffman_lookup(16#38, 16#6) -> {ok, 16#71, 16#00};
    940 dec_huffman_lookup(16#38, 16#7) -> {ok, 16#76, 16#00};
    941 dec_huffman_lookup(16#38, 16#8) -> {ok, 16#77, 16#00};
    942 dec_huffman_lookup(16#38, 16#9) -> {ok, 16#78, 16#00};
    943 dec_huffman_lookup(16#38, 16#a) -> {ok, 16#79, 16#00};
    944 dec_huffman_lookup(16#38, 16#b) -> {ok, 16#7a, 16#00};
    945 dec_huffman_lookup(16#38, 16#c) -> {more, undefined, 16#46};
    946 dec_huffman_lookup(16#38, 16#d) -> {more, undefined, 16#47};
    947 dec_huffman_lookup(16#38, 16#e) -> {more, undefined, 16#49};
    948 dec_huffman_lookup(16#38, 16#f) -> {ok, undefined, 16#4a};
    949 dec_huffman_lookup(16#39, 16#0) -> {more, 16#55, 16#01};
    950 dec_huffman_lookup(16#39, 16#1) -> {ok, 16#55, 16#16};
    951 dec_huffman_lookup(16#39, 16#2) -> {more, 16#56, 16#01};
    952 dec_huffman_lookup(16#39, 16#3) -> {ok, 16#56, 16#16};
    953 dec_huffman_lookup(16#39, 16#4) -> {more, 16#57, 16#01};
    954 dec_huffman_lookup(16#39, 16#5) -> {ok, 16#57, 16#16};
    955 dec_huffman_lookup(16#39, 16#6) -> {more, 16#59, 16#01};
    956 dec_huffman_lookup(16#39, 16#7) -> {ok, 16#59, 16#16};
    957 dec_huffman_lookup(16#39, 16#8) -> {more, 16#6a, 16#01};
    958 dec_huffman_lookup(16#39, 16#9) -> {ok, 16#6a, 16#16};
    959 dec_huffman_lookup(16#39, 16#a) -> {more, 16#6b, 16#01};
    960 dec_huffman_lookup(16#39, 16#b) -> {ok, 16#6b, 16#16};
    961 dec_huffman_lookup(16#39, 16#c) -> {more, 16#71, 16#01};
    962 dec_huffman_lookup(16#39, 16#d) -> {ok, 16#71, 16#16};
    963 dec_huffman_lookup(16#39, 16#e) -> {more, 16#76, 16#01};
    964 dec_huffman_lookup(16#39, 16#f) -> {ok, 16#76, 16#16};
    965 dec_huffman_lookup(16#3a, 16#0) -> {more, 16#55, 16#02};
    966 dec_huffman_lookup(16#3a, 16#1) -> {more, 16#55, 16#09};
    967 dec_huffman_lookup(16#3a, 16#2) -> {more, 16#55, 16#17};
    968 dec_huffman_lookup(16#3a, 16#3) -> {ok, 16#55, 16#28};
    969 dec_huffman_lookup(16#3a, 16#4) -> {more, 16#56, 16#02};
    970 dec_huffman_lookup(16#3a, 16#5) -> {more, 16#56, 16#09};
    971 dec_huffman_lookup(16#3a, 16#6) -> {more, 16#56, 16#17};
    972 dec_huffman_lookup(16#3a, 16#7) -> {ok, 16#56, 16#28};
    973 dec_huffman_lookup(16#3a, 16#8) -> {more, 16#57, 16#02};
    974 dec_huffman_lookup(16#3a, 16#9) -> {more, 16#57, 16#09};
    975 dec_huffman_lookup(16#3a, 16#a) -> {more, 16#57, 16#17};
    976 dec_huffman_lookup(16#3a, 16#b) -> {ok, 16#57, 16#28};
    977 dec_huffman_lookup(16#3a, 16#c) -> {more, 16#59, 16#02};
    978 dec_huffman_lookup(16#3a, 16#d) -> {more, 16#59, 16#09};
    979 dec_huffman_lookup(16#3a, 16#e) -> {more, 16#59, 16#17};
    980 dec_huffman_lookup(16#3a, 16#f) -> {ok, 16#59, 16#28};
    981 dec_huffman_lookup(16#3b, 16#0) -> {more, 16#55, 16#03};
    982 dec_huffman_lookup(16#3b, 16#1) -> {more, 16#55, 16#06};
    983 dec_huffman_lookup(16#3b, 16#2) -> {more, 16#55, 16#0a};
    984 dec_huffman_lookup(16#3b, 16#3) -> {more, 16#55, 16#0f};
    985 dec_huffman_lookup(16#3b, 16#4) -> {more, 16#55, 16#18};
    986 dec_huffman_lookup(16#3b, 16#5) -> {more, 16#55, 16#1f};
    987 dec_huffman_lookup(16#3b, 16#6) -> {more, 16#55, 16#29};
    988 dec_huffman_lookup(16#3b, 16#7) -> {ok, 16#55, 16#38};
    989 dec_huffman_lookup(16#3b, 16#8) -> {more, 16#56, 16#03};
    990 dec_huffman_lookup(16#3b, 16#9) -> {more, 16#56, 16#06};
    991 dec_huffman_lookup(16#3b, 16#a) -> {more, 16#56, 16#0a};
    992 dec_huffman_lookup(16#3b, 16#b) -> {more, 16#56, 16#0f};
    993 dec_huffman_lookup(16#3b, 16#c) -> {more, 16#56, 16#18};
    994 dec_huffman_lookup(16#3b, 16#d) -> {more, 16#56, 16#1f};
    995 dec_huffman_lookup(16#3b, 16#e) -> {more, 16#56, 16#29};
    996 dec_huffman_lookup(16#3b, 16#f) -> {ok, 16#56, 16#38};
    997 dec_huffman_lookup(16#3c, 16#0) -> {more, 16#57, 16#03};
    998 dec_huffman_lookup(16#3c, 16#1) -> {more, 16#57, 16#06};
    999 dec_huffman_lookup(16#3c, 16#2) -> {more, 16#57, 16#0a};
   1000 dec_huffman_lookup(16#3c, 16#3) -> {more, 16#57, 16#0f};
   1001 dec_huffman_lookup(16#3c, 16#4) -> {more, 16#57, 16#18};
   1002 dec_huffman_lookup(16#3c, 16#5) -> {more, 16#57, 16#1f};
   1003 dec_huffman_lookup(16#3c, 16#6) -> {more, 16#57, 16#29};
   1004 dec_huffman_lookup(16#3c, 16#7) -> {ok, 16#57, 16#38};
   1005 dec_huffman_lookup(16#3c, 16#8) -> {more, 16#59, 16#03};
   1006 dec_huffman_lookup(16#3c, 16#9) -> {more, 16#59, 16#06};
   1007 dec_huffman_lookup(16#3c, 16#a) -> {more, 16#59, 16#0a};
   1008 dec_huffman_lookup(16#3c, 16#b) -> {more, 16#59, 16#0f};
   1009 dec_huffman_lookup(16#3c, 16#c) -> {more, 16#59, 16#18};
   1010 dec_huffman_lookup(16#3c, 16#d) -> {more, 16#59, 16#1f};
   1011 dec_huffman_lookup(16#3c, 16#e) -> {more, 16#59, 16#29};
   1012 dec_huffman_lookup(16#3c, 16#f) -> {ok, 16#59, 16#38};
   1013 dec_huffman_lookup(16#3d, 16#0) -> {more, 16#6a, 16#02};
   1014 dec_huffman_lookup(16#3d, 16#1) -> {more, 16#6a, 16#09};
   1015 dec_huffman_lookup(16#3d, 16#2) -> {more, 16#6a, 16#17};
   1016 dec_huffman_lookup(16#3d, 16#3) -> {ok, 16#6a, 16#28};
   1017 dec_huffman_lookup(16#3d, 16#4) -> {more, 16#6b, 16#02};
   1018 dec_huffman_lookup(16#3d, 16#5) -> {more, 16#6b, 16#09};
   1019 dec_huffman_lookup(16#3d, 16#6) -> {more, 16#6b, 16#17};
   1020 dec_huffman_lookup(16#3d, 16#7) -> {ok, 16#6b, 16#28};
   1021 dec_huffman_lookup(16#3d, 16#8) -> {more, 16#71, 16#02};
   1022 dec_huffman_lookup(16#3d, 16#9) -> {more, 16#71, 16#09};
   1023 dec_huffman_lookup(16#3d, 16#a) -> {more, 16#71, 16#17};
   1024 dec_huffman_lookup(16#3d, 16#b) -> {ok, 16#71, 16#28};
   1025 dec_huffman_lookup(16#3d, 16#c) -> {more, 16#76, 16#02};
   1026 dec_huffman_lookup(16#3d, 16#d) -> {more, 16#76, 16#09};
   1027 dec_huffman_lookup(16#3d, 16#e) -> {more, 16#76, 16#17};
   1028 dec_huffman_lookup(16#3d, 16#f) -> {ok, 16#76, 16#28};
   1029 dec_huffman_lookup(16#3e, 16#0) -> {more, 16#6a, 16#03};
   1030 dec_huffman_lookup(16#3e, 16#1) -> {more, 16#6a, 16#06};
   1031 dec_huffman_lookup(16#3e, 16#2) -> {more, 16#6a, 16#0a};
   1032 dec_huffman_lookup(16#3e, 16#3) -> {more, 16#6a, 16#0f};
   1033 dec_huffman_lookup(16#3e, 16#4) -> {more, 16#6a, 16#18};
   1034 dec_huffman_lookup(16#3e, 16#5) -> {more, 16#6a, 16#1f};
   1035 dec_huffman_lookup(16#3e, 16#6) -> {more, 16#6a, 16#29};
   1036 dec_huffman_lookup(16#3e, 16#7) -> {ok, 16#6a, 16#38};
   1037 dec_huffman_lookup(16#3e, 16#8) -> {more, 16#6b, 16#03};
   1038 dec_huffman_lookup(16#3e, 16#9) -> {more, 16#6b, 16#06};
   1039 dec_huffman_lookup(16#3e, 16#a) -> {more, 16#6b, 16#0a};
   1040 dec_huffman_lookup(16#3e, 16#b) -> {more, 16#6b, 16#0f};
   1041 dec_huffman_lookup(16#3e, 16#c) -> {more, 16#6b, 16#18};
   1042 dec_huffman_lookup(16#3e, 16#d) -> {more, 16#6b, 16#1f};
   1043 dec_huffman_lookup(16#3e, 16#e) -> {more, 16#6b, 16#29};
   1044 dec_huffman_lookup(16#3e, 16#f) -> {ok, 16#6b, 16#38};
   1045 dec_huffman_lookup(16#3f, 16#0) -> {more, 16#71, 16#03};
   1046 dec_huffman_lookup(16#3f, 16#1) -> {more, 16#71, 16#06};
   1047 dec_huffman_lookup(16#3f, 16#2) -> {more, 16#71, 16#0a};
   1048 dec_huffman_lookup(16#3f, 16#3) -> {more, 16#71, 16#0f};
   1049 dec_huffman_lookup(16#3f, 16#4) -> {more, 16#71, 16#18};
   1050 dec_huffman_lookup(16#3f, 16#5) -> {more, 16#71, 16#1f};
   1051 dec_huffman_lookup(16#3f, 16#6) -> {more, 16#71, 16#29};
   1052 dec_huffman_lookup(16#3f, 16#7) -> {ok, 16#71, 16#38};
   1053 dec_huffman_lookup(16#3f, 16#8) -> {more, 16#76, 16#03};
   1054 dec_huffman_lookup(16#3f, 16#9) -> {more, 16#76, 16#06};
   1055 dec_huffman_lookup(16#3f, 16#a) -> {more, 16#76, 16#0a};
   1056 dec_huffman_lookup(16#3f, 16#b) -> {more, 16#76, 16#0f};
   1057 dec_huffman_lookup(16#3f, 16#c) -> {more, 16#76, 16#18};
   1058 dec_huffman_lookup(16#3f, 16#d) -> {more, 16#76, 16#1f};
   1059 dec_huffman_lookup(16#3f, 16#e) -> {more, 16#76, 16#29};
   1060 dec_huffman_lookup(16#3f, 16#f) -> {ok, 16#76, 16#38};
   1061 dec_huffman_lookup(16#40, 16#0) -> {more, 16#77, 16#01};
   1062 dec_huffman_lookup(16#40, 16#1) -> {ok, 16#77, 16#16};
   1063 dec_huffman_lookup(16#40, 16#2) -> {more, 16#78, 16#01};
   1064 dec_huffman_lookup(16#40, 16#3) -> {ok, 16#78, 16#16};
   1065 dec_huffman_lookup(16#40, 16#4) -> {more, 16#79, 16#01};
   1066 dec_huffman_lookup(16#40, 16#5) -> {ok, 16#79, 16#16};
   1067 dec_huffman_lookup(16#40, 16#6) -> {more, 16#7a, 16#01};
   1068 dec_huffman_lookup(16#40, 16#7) -> {ok, 16#7a, 16#16};
   1069 dec_huffman_lookup(16#40, 16#8) -> {ok, 16#26, 16#00};
   1070 dec_huffman_lookup(16#40, 16#9) -> {ok, 16#2a, 16#00};
   1071 dec_huffman_lookup(16#40, 16#a) -> {ok, 16#2c, 16#00};
   1072 dec_huffman_lookup(16#40, 16#b) -> {ok, 16#3b, 16#00};
   1073 dec_huffman_lookup(16#40, 16#c) -> {ok, 16#58, 16#00};
   1074 dec_huffman_lookup(16#40, 16#d) -> {ok, 16#5a, 16#00};
   1075 dec_huffman_lookup(16#40, 16#e) -> {more, undefined, 16#4b};
   1076 dec_huffman_lookup(16#40, 16#f) -> {ok, undefined, 16#4e};
   1077 dec_huffman_lookup(16#41, 16#0) -> {more, 16#77, 16#02};
   1078 dec_huffman_lookup(16#41, 16#1) -> {more, 16#77, 16#09};
   1079 dec_huffman_lookup(16#41, 16#2) -> {more, 16#77, 16#17};
   1080 dec_huffman_lookup(16#41, 16#3) -> {ok, 16#77, 16#28};
   1081 dec_huffman_lookup(16#41, 16#4) -> {more, 16#78, 16#02};
   1082 dec_huffman_lookup(16#41, 16#5) -> {more, 16#78, 16#09};
   1083 dec_huffman_lookup(16#41, 16#6) -> {more, 16#78, 16#17};
   1084 dec_huffman_lookup(16#41, 16#7) -> {ok, 16#78, 16#28};
   1085 dec_huffman_lookup(16#41, 16#8) -> {more, 16#79, 16#02};
   1086 dec_huffman_lookup(16#41, 16#9) -> {more, 16#79, 16#09};
   1087 dec_huffman_lookup(16#41, 16#a) -> {more, 16#79, 16#17};
   1088 dec_huffman_lookup(16#41, 16#b) -> {ok, 16#79, 16#28};
   1089 dec_huffman_lookup(16#41, 16#c) -> {more, 16#7a, 16#02};
   1090 dec_huffman_lookup(16#41, 16#d) -> {more, 16#7a, 16#09};
   1091 dec_huffman_lookup(16#41, 16#e) -> {more, 16#7a, 16#17};
   1092 dec_huffman_lookup(16#41, 16#f) -> {ok, 16#7a, 16#28};
   1093 dec_huffman_lookup(16#42, 16#0) -> {more, 16#77, 16#03};
   1094 dec_huffman_lookup(16#42, 16#1) -> {more, 16#77, 16#06};
   1095 dec_huffman_lookup(16#42, 16#2) -> {more, 16#77, 16#0a};
   1096 dec_huffman_lookup(16#42, 16#3) -> {more, 16#77, 16#0f};
   1097 dec_huffman_lookup(16#42, 16#4) -> {more, 16#77, 16#18};
   1098 dec_huffman_lookup(16#42, 16#5) -> {more, 16#77, 16#1f};
   1099 dec_huffman_lookup(16#42, 16#6) -> {more, 16#77, 16#29};
   1100 dec_huffman_lookup(16#42, 16#7) -> {ok, 16#77, 16#38};
   1101 dec_huffman_lookup(16#42, 16#8) -> {more, 16#78, 16#03};
   1102 dec_huffman_lookup(16#42, 16#9) -> {more, 16#78, 16#06};
   1103 dec_huffman_lookup(16#42, 16#a) -> {more, 16#78, 16#0a};
   1104 dec_huffman_lookup(16#42, 16#b) -> {more, 16#78, 16#0f};
   1105 dec_huffman_lookup(16#42, 16#c) -> {more, 16#78, 16#18};
   1106 dec_huffman_lookup(16#42, 16#d) -> {more, 16#78, 16#1f};
   1107 dec_huffman_lookup(16#42, 16#e) -> {more, 16#78, 16#29};
   1108 dec_huffman_lookup(16#42, 16#f) -> {ok, 16#78, 16#38};
   1109 dec_huffman_lookup(16#43, 16#0) -> {more, 16#79, 16#03};
   1110 dec_huffman_lookup(16#43, 16#1) -> {more, 16#79, 16#06};
   1111 dec_huffman_lookup(16#43, 16#2) -> {more, 16#79, 16#0a};
   1112 dec_huffman_lookup(16#43, 16#3) -> {more, 16#79, 16#0f};
   1113 dec_huffman_lookup(16#43, 16#4) -> {more, 16#79, 16#18};
   1114 dec_huffman_lookup(16#43, 16#5) -> {more, 16#79, 16#1f};
   1115 dec_huffman_lookup(16#43, 16#6) -> {more, 16#79, 16#29};
   1116 dec_huffman_lookup(16#43, 16#7) -> {ok, 16#79, 16#38};
   1117 dec_huffman_lookup(16#43, 16#8) -> {more, 16#7a, 16#03};
   1118 dec_huffman_lookup(16#43, 16#9) -> {more, 16#7a, 16#06};
   1119 dec_huffman_lookup(16#43, 16#a) -> {more, 16#7a, 16#0a};
   1120 dec_huffman_lookup(16#43, 16#b) -> {more, 16#7a, 16#0f};
   1121 dec_huffman_lookup(16#43, 16#c) -> {more, 16#7a, 16#18};
   1122 dec_huffman_lookup(16#43, 16#d) -> {more, 16#7a, 16#1f};
   1123 dec_huffman_lookup(16#43, 16#e) -> {more, 16#7a, 16#29};
   1124 dec_huffman_lookup(16#43, 16#f) -> {ok, 16#7a, 16#38};
   1125 dec_huffman_lookup(16#44, 16#0) -> {more, 16#26, 16#01};
   1126 dec_huffman_lookup(16#44, 16#1) -> {ok, 16#26, 16#16};
   1127 dec_huffman_lookup(16#44, 16#2) -> {more, 16#2a, 16#01};
   1128 dec_huffman_lookup(16#44, 16#3) -> {ok, 16#2a, 16#16};
   1129 dec_huffman_lookup(16#44, 16#4) -> {more, 16#2c, 16#01};
   1130 dec_huffman_lookup(16#44, 16#5) -> {ok, 16#2c, 16#16};
   1131 dec_huffman_lookup(16#44, 16#6) -> {more, 16#3b, 16#01};
   1132 dec_huffman_lookup(16#44, 16#7) -> {ok, 16#3b, 16#16};
   1133 dec_huffman_lookup(16#44, 16#8) -> {more, 16#58, 16#01};
   1134 dec_huffman_lookup(16#44, 16#9) -> {ok, 16#58, 16#16};
   1135 dec_huffman_lookup(16#44, 16#a) -> {more, 16#5a, 16#01};
   1136 dec_huffman_lookup(16#44, 16#b) -> {ok, 16#5a, 16#16};
   1137 dec_huffman_lookup(16#44, 16#c) -> {more, undefined, 16#4c};
   1138 dec_huffman_lookup(16#44, 16#d) -> {more, undefined, 16#4d};
   1139 dec_huffman_lookup(16#44, 16#e) -> {more, undefined, 16#4f};
   1140 dec_huffman_lookup(16#44, 16#f) -> {ok, undefined, 16#51};
   1141 dec_huffman_lookup(16#45, 16#0) -> {more, 16#26, 16#02};
   1142 dec_huffman_lookup(16#45, 16#1) -> {more, 16#26, 16#09};
   1143 dec_huffman_lookup(16#45, 16#2) -> {more, 16#26, 16#17};
   1144 dec_huffman_lookup(16#45, 16#3) -> {ok, 16#26, 16#28};
   1145 dec_huffman_lookup(16#45, 16#4) -> {more, 16#2a, 16#02};
   1146 dec_huffman_lookup(16#45, 16#5) -> {more, 16#2a, 16#09};
   1147 dec_huffman_lookup(16#45, 16#6) -> {more, 16#2a, 16#17};
   1148 dec_huffman_lookup(16#45, 16#7) -> {ok, 16#2a, 16#28};
   1149 dec_huffman_lookup(16#45, 16#8) -> {more, 16#2c, 16#02};
   1150 dec_huffman_lookup(16#45, 16#9) -> {more, 16#2c, 16#09};
   1151 dec_huffman_lookup(16#45, 16#a) -> {more, 16#2c, 16#17};
   1152 dec_huffman_lookup(16#45, 16#b) -> {ok, 16#2c, 16#28};
   1153 dec_huffman_lookup(16#45, 16#c) -> {more, 16#3b, 16#02};
   1154 dec_huffman_lookup(16#45, 16#d) -> {more, 16#3b, 16#09};
   1155 dec_huffman_lookup(16#45, 16#e) -> {more, 16#3b, 16#17};
   1156 dec_huffman_lookup(16#45, 16#f) -> {ok, 16#3b, 16#28};
   1157 dec_huffman_lookup(16#46, 16#0) -> {more, 16#26, 16#03};
   1158 dec_huffman_lookup(16#46, 16#1) -> {more, 16#26, 16#06};
   1159 dec_huffman_lookup(16#46, 16#2) -> {more, 16#26, 16#0a};
   1160 dec_huffman_lookup(16#46, 16#3) -> {more, 16#26, 16#0f};
   1161 dec_huffman_lookup(16#46, 16#4) -> {more, 16#26, 16#18};
   1162 dec_huffman_lookup(16#46, 16#5) -> {more, 16#26, 16#1f};
   1163 dec_huffman_lookup(16#46, 16#6) -> {more, 16#26, 16#29};
   1164 dec_huffman_lookup(16#46, 16#7) -> {ok, 16#26, 16#38};
   1165 dec_huffman_lookup(16#46, 16#8) -> {more, 16#2a, 16#03};
   1166 dec_huffman_lookup(16#46, 16#9) -> {more, 16#2a, 16#06};
   1167 dec_huffman_lookup(16#46, 16#a) -> {more, 16#2a, 16#0a};
   1168 dec_huffman_lookup(16#46, 16#b) -> {more, 16#2a, 16#0f};
   1169 dec_huffman_lookup(16#46, 16#c) -> {more, 16#2a, 16#18};
   1170 dec_huffman_lookup(16#46, 16#d) -> {more, 16#2a, 16#1f};
   1171 dec_huffman_lookup(16#46, 16#e) -> {more, 16#2a, 16#29};
   1172 dec_huffman_lookup(16#46, 16#f) -> {ok, 16#2a, 16#38};
   1173 dec_huffman_lookup(16#47, 16#0) -> {more, 16#2c, 16#03};
   1174 dec_huffman_lookup(16#47, 16#1) -> {more, 16#2c, 16#06};
   1175 dec_huffman_lookup(16#47, 16#2) -> {more, 16#2c, 16#0a};
   1176 dec_huffman_lookup(16#47, 16#3) -> {more, 16#2c, 16#0f};
   1177 dec_huffman_lookup(16#47, 16#4) -> {more, 16#2c, 16#18};
   1178 dec_huffman_lookup(16#47, 16#5) -> {more, 16#2c, 16#1f};
   1179 dec_huffman_lookup(16#47, 16#6) -> {more, 16#2c, 16#29};
   1180 dec_huffman_lookup(16#47, 16#7) -> {ok, 16#2c, 16#38};
   1181 dec_huffman_lookup(16#47, 16#8) -> {more, 16#3b, 16#03};
   1182 dec_huffman_lookup(16#47, 16#9) -> {more, 16#3b, 16#06};
   1183 dec_huffman_lookup(16#47, 16#a) -> {more, 16#3b, 16#0a};
   1184 dec_huffman_lookup(16#47, 16#b) -> {more, 16#3b, 16#0f};
   1185 dec_huffman_lookup(16#47, 16#c) -> {more, 16#3b, 16#18};
   1186 dec_huffman_lookup(16#47, 16#d) -> {more, 16#3b, 16#1f};
   1187 dec_huffman_lookup(16#47, 16#e) -> {more, 16#3b, 16#29};
   1188 dec_huffman_lookup(16#47, 16#f) -> {ok, 16#3b, 16#38};
   1189 dec_huffman_lookup(16#48, 16#0) -> {more, 16#58, 16#02};
   1190 dec_huffman_lookup(16#48, 16#1) -> {more, 16#58, 16#09};
   1191 dec_huffman_lookup(16#48, 16#2) -> {more, 16#58, 16#17};
   1192 dec_huffman_lookup(16#48, 16#3) -> {ok, 16#58, 16#28};
   1193 dec_huffman_lookup(16#48, 16#4) -> {more, 16#5a, 16#02};
   1194 dec_huffman_lookup(16#48, 16#5) -> {more, 16#5a, 16#09};
   1195 dec_huffman_lookup(16#48, 16#6) -> {more, 16#5a, 16#17};
   1196 dec_huffman_lookup(16#48, 16#7) -> {ok, 16#5a, 16#28};
   1197 dec_huffman_lookup(16#48, 16#8) -> {ok, 16#21, 16#00};
   1198 dec_huffman_lookup(16#48, 16#9) -> {ok, 16#22, 16#00};
   1199 dec_huffman_lookup(16#48, 16#a) -> {ok, 16#28, 16#00};
   1200 dec_huffman_lookup(16#48, 16#b) -> {ok, 16#29, 16#00};
   1201 dec_huffman_lookup(16#48, 16#c) -> {ok, 16#3f, 16#00};
   1202 dec_huffman_lookup(16#48, 16#d) -> {more, undefined, 16#50};
   1203 dec_huffman_lookup(16#48, 16#e) -> {more, undefined, 16#52};
   1204 dec_huffman_lookup(16#48, 16#f) -> {ok, undefined, 16#54};
   1205 dec_huffman_lookup(16#49, 16#0) -> {more, 16#58, 16#03};
   1206 dec_huffman_lookup(16#49, 16#1) -> {more, 16#58, 16#06};
   1207 dec_huffman_lookup(16#49, 16#2) -> {more, 16#58, 16#0a};
   1208 dec_huffman_lookup(16#49, 16#3) -> {more, 16#58, 16#0f};
   1209 dec_huffman_lookup(16#49, 16#4) -> {more, 16#58, 16#18};
   1210 dec_huffman_lookup(16#49, 16#5) -> {more, 16#58, 16#1f};
   1211 dec_huffman_lookup(16#49, 16#6) -> {more, 16#58, 16#29};
   1212 dec_huffman_lookup(16#49, 16#7) -> {ok, 16#58, 16#38};
   1213 dec_huffman_lookup(16#49, 16#8) -> {more, 16#5a, 16#03};
   1214 dec_huffman_lookup(16#49, 16#9) -> {more, 16#5a, 16#06};
   1215 dec_huffman_lookup(16#49, 16#a) -> {more, 16#5a, 16#0a};
   1216 dec_huffman_lookup(16#49, 16#b) -> {more, 16#5a, 16#0f};
   1217 dec_huffman_lookup(16#49, 16#c) -> {more, 16#5a, 16#18};
   1218 dec_huffman_lookup(16#49, 16#d) -> {more, 16#5a, 16#1f};
   1219 dec_huffman_lookup(16#49, 16#e) -> {more, 16#5a, 16#29};
   1220 dec_huffman_lookup(16#49, 16#f) -> {ok, 16#5a, 16#38};
   1221 dec_huffman_lookup(16#4a, 16#0) -> {more, 16#21, 16#01};
   1222 dec_huffman_lookup(16#4a, 16#1) -> {ok, 16#21, 16#16};
   1223 dec_huffman_lookup(16#4a, 16#2) -> {more, 16#22, 16#01};
   1224 dec_huffman_lookup(16#4a, 16#3) -> {ok, 16#22, 16#16};
   1225 dec_huffman_lookup(16#4a, 16#4) -> {more, 16#28, 16#01};
   1226 dec_huffman_lookup(16#4a, 16#5) -> {ok, 16#28, 16#16};
   1227 dec_huffman_lookup(16#4a, 16#6) -> {more, 16#29, 16#01};
   1228 dec_huffman_lookup(16#4a, 16#7) -> {ok, 16#29, 16#16};
   1229 dec_huffman_lookup(16#4a, 16#8) -> {more, 16#3f, 16#01};
   1230 dec_huffman_lookup(16#4a, 16#9) -> {ok, 16#3f, 16#16};
   1231 dec_huffman_lookup(16#4a, 16#a) -> {ok, 16#27, 16#00};
   1232 dec_huffman_lookup(16#4a, 16#b) -> {ok, 16#2b, 16#00};
   1233 dec_huffman_lookup(16#4a, 16#c) -> {ok, 16#7c, 16#00};
   1234 dec_huffman_lookup(16#4a, 16#d) -> {more, undefined, 16#53};
   1235 dec_huffman_lookup(16#4a, 16#e) -> {more, undefined, 16#55};
   1236 dec_huffman_lookup(16#4a, 16#f) -> {ok, undefined, 16#58};
   1237 dec_huffman_lookup(16#4b, 16#0) -> {more, 16#21, 16#02};
   1238 dec_huffman_lookup(16#4b, 16#1) -> {more, 16#21, 16#09};
   1239 dec_huffman_lookup(16#4b, 16#2) -> {more, 16#21, 16#17};
   1240 dec_huffman_lookup(16#4b, 16#3) -> {ok, 16#21, 16#28};
   1241 dec_huffman_lookup(16#4b, 16#4) -> {more, 16#22, 16#02};
   1242 dec_huffman_lookup(16#4b, 16#5) -> {more, 16#22, 16#09};
   1243 dec_huffman_lookup(16#4b, 16#6) -> {more, 16#22, 16#17};
   1244 dec_huffman_lookup(16#4b, 16#7) -> {ok, 16#22, 16#28};
   1245 dec_huffman_lookup(16#4b, 16#8) -> {more, 16#28, 16#02};
   1246 dec_huffman_lookup(16#4b, 16#9) -> {more, 16#28, 16#09};
   1247 dec_huffman_lookup(16#4b, 16#a) -> {more, 16#28, 16#17};
   1248 dec_huffman_lookup(16#4b, 16#b) -> {ok, 16#28, 16#28};
   1249 dec_huffman_lookup(16#4b, 16#c) -> {more, 16#29, 16#02};
   1250 dec_huffman_lookup(16#4b, 16#d) -> {more, 16#29, 16#09};
   1251 dec_huffman_lookup(16#4b, 16#e) -> {more, 16#29, 16#17};
   1252 dec_huffman_lookup(16#4b, 16#f) -> {ok, 16#29, 16#28};
   1253 dec_huffman_lookup(16#4c, 16#0) -> {more, 16#21, 16#03};
   1254 dec_huffman_lookup(16#4c, 16#1) -> {more, 16#21, 16#06};
   1255 dec_huffman_lookup(16#4c, 16#2) -> {more, 16#21, 16#0a};
   1256 dec_huffman_lookup(16#4c, 16#3) -> {more, 16#21, 16#0f};
   1257 dec_huffman_lookup(16#4c, 16#4) -> {more, 16#21, 16#18};
   1258 dec_huffman_lookup(16#4c, 16#5) -> {more, 16#21, 16#1f};
   1259 dec_huffman_lookup(16#4c, 16#6) -> {more, 16#21, 16#29};
   1260 dec_huffman_lookup(16#4c, 16#7) -> {ok, 16#21, 16#38};
   1261 dec_huffman_lookup(16#4c, 16#8) -> {more, 16#22, 16#03};
   1262 dec_huffman_lookup(16#4c, 16#9) -> {more, 16#22, 16#06};
   1263 dec_huffman_lookup(16#4c, 16#a) -> {more, 16#22, 16#0a};
   1264 dec_huffman_lookup(16#4c, 16#b) -> {more, 16#22, 16#0f};
   1265 dec_huffman_lookup(16#4c, 16#c) -> {more, 16#22, 16#18};
   1266 dec_huffman_lookup(16#4c, 16#d) -> {more, 16#22, 16#1f};
   1267 dec_huffman_lookup(16#4c, 16#e) -> {more, 16#22, 16#29};
   1268 dec_huffman_lookup(16#4c, 16#f) -> {ok, 16#22, 16#38};
   1269 dec_huffman_lookup(16#4d, 16#0) -> {more, 16#28, 16#03};
   1270 dec_huffman_lookup(16#4d, 16#1) -> {more, 16#28, 16#06};
   1271 dec_huffman_lookup(16#4d, 16#2) -> {more, 16#28, 16#0a};
   1272 dec_huffman_lookup(16#4d, 16#3) -> {more, 16#28, 16#0f};
   1273 dec_huffman_lookup(16#4d, 16#4) -> {more, 16#28, 16#18};
   1274 dec_huffman_lookup(16#4d, 16#5) -> {more, 16#28, 16#1f};
   1275 dec_huffman_lookup(16#4d, 16#6) -> {more, 16#28, 16#29};
   1276 dec_huffman_lookup(16#4d, 16#7) -> {ok, 16#28, 16#38};
   1277 dec_huffman_lookup(16#4d, 16#8) -> {more, 16#29, 16#03};
   1278 dec_huffman_lookup(16#4d, 16#9) -> {more, 16#29, 16#06};
   1279 dec_huffman_lookup(16#4d, 16#a) -> {more, 16#29, 16#0a};
   1280 dec_huffman_lookup(16#4d, 16#b) -> {more, 16#29, 16#0f};
   1281 dec_huffman_lookup(16#4d, 16#c) -> {more, 16#29, 16#18};
   1282 dec_huffman_lookup(16#4d, 16#d) -> {more, 16#29, 16#1f};
   1283 dec_huffman_lookup(16#4d, 16#e) -> {more, 16#29, 16#29};
   1284 dec_huffman_lookup(16#4d, 16#f) -> {ok, 16#29, 16#38};
   1285 dec_huffman_lookup(16#4e, 16#0) -> {more, 16#3f, 16#02};
   1286 dec_huffman_lookup(16#4e, 16#1) -> {more, 16#3f, 16#09};
   1287 dec_huffman_lookup(16#4e, 16#2) -> {more, 16#3f, 16#17};
   1288 dec_huffman_lookup(16#4e, 16#3) -> {ok, 16#3f, 16#28};
   1289 dec_huffman_lookup(16#4e, 16#4) -> {more, 16#27, 16#01};
   1290 dec_huffman_lookup(16#4e, 16#5) -> {ok, 16#27, 16#16};
   1291 dec_huffman_lookup(16#4e, 16#6) -> {more, 16#2b, 16#01};
   1292 dec_huffman_lookup(16#4e, 16#7) -> {ok, 16#2b, 16#16};
   1293 dec_huffman_lookup(16#4e, 16#8) -> {more, 16#7c, 16#01};
   1294 dec_huffman_lookup(16#4e, 16#9) -> {ok, 16#7c, 16#16};
   1295 dec_huffman_lookup(16#4e, 16#a) -> {ok, 16#23, 16#00};
   1296 dec_huffman_lookup(16#4e, 16#b) -> {ok, 16#3e, 16#00};
   1297 dec_huffman_lookup(16#4e, 16#c) -> {more, undefined, 16#56};
   1298 dec_huffman_lookup(16#4e, 16#d) -> {more, undefined, 16#57};
   1299 dec_huffman_lookup(16#4e, 16#e) -> {more, undefined, 16#59};
   1300 dec_huffman_lookup(16#4e, 16#f) -> {ok, undefined, 16#5a};
   1301 dec_huffman_lookup(16#4f, 16#0) -> {more, 16#3f, 16#03};
   1302 dec_huffman_lookup(16#4f, 16#1) -> {more, 16#3f, 16#06};
   1303 dec_huffman_lookup(16#4f, 16#2) -> {more, 16#3f, 16#0a};
   1304 dec_huffman_lookup(16#4f, 16#3) -> {more, 16#3f, 16#0f};
   1305 dec_huffman_lookup(16#4f, 16#4) -> {more, 16#3f, 16#18};
   1306 dec_huffman_lookup(16#4f, 16#5) -> {more, 16#3f, 16#1f};
   1307 dec_huffman_lookup(16#4f, 16#6) -> {more, 16#3f, 16#29};
   1308 dec_huffman_lookup(16#4f, 16#7) -> {ok, 16#3f, 16#38};
   1309 dec_huffman_lookup(16#4f, 16#8) -> {more, 16#27, 16#02};
   1310 dec_huffman_lookup(16#4f, 16#9) -> {more, 16#27, 16#09};
   1311 dec_huffman_lookup(16#4f, 16#a) -> {more, 16#27, 16#17};
   1312 dec_huffman_lookup(16#4f, 16#b) -> {ok, 16#27, 16#28};
   1313 dec_huffman_lookup(16#4f, 16#c) -> {more, 16#2b, 16#02};
   1314 dec_huffman_lookup(16#4f, 16#d) -> {more, 16#2b, 16#09};
   1315 dec_huffman_lookup(16#4f, 16#e) -> {more, 16#2b, 16#17};
   1316 dec_huffman_lookup(16#4f, 16#f) -> {ok, 16#2b, 16#28};
   1317 dec_huffman_lookup(16#50, 16#0) -> {more, 16#27, 16#03};
   1318 dec_huffman_lookup(16#50, 16#1) -> {more, 16#27, 16#06};
   1319 dec_huffman_lookup(16#50, 16#2) -> {more, 16#27, 16#0a};
   1320 dec_huffman_lookup(16#50, 16#3) -> {more, 16#27, 16#0f};
   1321 dec_huffman_lookup(16#50, 16#4) -> {more, 16#27, 16#18};
   1322 dec_huffman_lookup(16#50, 16#5) -> {more, 16#27, 16#1f};
   1323 dec_huffman_lookup(16#50, 16#6) -> {more, 16#27, 16#29};
   1324 dec_huffman_lookup(16#50, 16#7) -> {ok, 16#27, 16#38};
   1325 dec_huffman_lookup(16#50, 16#8) -> {more, 16#2b, 16#03};
   1326 dec_huffman_lookup(16#50, 16#9) -> {more, 16#2b, 16#06};
   1327 dec_huffman_lookup(16#50, 16#a) -> {more, 16#2b, 16#0a};
   1328 dec_huffman_lookup(16#50, 16#b) -> {more, 16#2b, 16#0f};
   1329 dec_huffman_lookup(16#50, 16#c) -> {more, 16#2b, 16#18};
   1330 dec_huffman_lookup(16#50, 16#d) -> {more, 16#2b, 16#1f};
   1331 dec_huffman_lookup(16#50, 16#e) -> {more, 16#2b, 16#29};
   1332 dec_huffman_lookup(16#50, 16#f) -> {ok, 16#2b, 16#38};
   1333 dec_huffman_lookup(16#51, 16#0) -> {more, 16#7c, 16#02};
   1334 dec_huffman_lookup(16#51, 16#1) -> {more, 16#7c, 16#09};
   1335 dec_huffman_lookup(16#51, 16#2) -> {more, 16#7c, 16#17};
   1336 dec_huffman_lookup(16#51, 16#3) -> {ok, 16#7c, 16#28};
   1337 dec_huffman_lookup(16#51, 16#4) -> {more, 16#23, 16#01};
   1338 dec_huffman_lookup(16#51, 16#5) -> {ok, 16#23, 16#16};
   1339 dec_huffman_lookup(16#51, 16#6) -> {more, 16#3e, 16#01};
   1340 dec_huffman_lookup(16#51, 16#7) -> {ok, 16#3e, 16#16};
   1341 dec_huffman_lookup(16#51, 16#8) -> {ok, 16#00, 16#00};
   1342 dec_huffman_lookup(16#51, 16#9) -> {ok, 16#24, 16#00};
   1343 dec_huffman_lookup(16#51, 16#a) -> {ok, 16#40, 16#00};
   1344 dec_huffman_lookup(16#51, 16#b) -> {ok, 16#5b, 16#00};
   1345 dec_huffman_lookup(16#51, 16#c) -> {ok, 16#5d, 16#00};
   1346 dec_huffman_lookup(16#51, 16#d) -> {ok, 16#7e, 16#00};
   1347 dec_huffman_lookup(16#51, 16#e) -> {more, undefined, 16#5b};
   1348 dec_huffman_lookup(16#51, 16#f) -> {ok, undefined, 16#5c};
   1349 dec_huffman_lookup(16#52, 16#0) -> {more, 16#7c, 16#03};
   1350 dec_huffman_lookup(16#52, 16#1) -> {more, 16#7c, 16#06};
   1351 dec_huffman_lookup(16#52, 16#2) -> {more, 16#7c, 16#0a};
   1352 dec_huffman_lookup(16#52, 16#3) -> {more, 16#7c, 16#0f};
   1353 dec_huffman_lookup(16#52, 16#4) -> {more, 16#7c, 16#18};
   1354 dec_huffman_lookup(16#52, 16#5) -> {more, 16#7c, 16#1f};
   1355 dec_huffman_lookup(16#52, 16#6) -> {more, 16#7c, 16#29};
   1356 dec_huffman_lookup(16#52, 16#7) -> {ok, 16#7c, 16#38};
   1357 dec_huffman_lookup(16#52, 16#8) -> {more, 16#23, 16#02};
   1358 dec_huffman_lookup(16#52, 16#9) -> {more, 16#23, 16#09};
   1359 dec_huffman_lookup(16#52, 16#a) -> {more, 16#23, 16#17};
   1360 dec_huffman_lookup(16#52, 16#b) -> {ok, 16#23, 16#28};
   1361 dec_huffman_lookup(16#52, 16#c) -> {more, 16#3e, 16#02};
   1362 dec_huffman_lookup(16#52, 16#d) -> {more, 16#3e, 16#09};
   1363 dec_huffman_lookup(16#52, 16#e) -> {more, 16#3e, 16#17};
   1364 dec_huffman_lookup(16#52, 16#f) -> {ok, 16#3e, 16#28};
   1365 dec_huffman_lookup(16#53, 16#0) -> {more, 16#23, 16#03};
   1366 dec_huffman_lookup(16#53, 16#1) -> {more, 16#23, 16#06};
   1367 dec_huffman_lookup(16#53, 16#2) -> {more, 16#23, 16#0a};
   1368 dec_huffman_lookup(16#53, 16#3) -> {more, 16#23, 16#0f};
   1369 dec_huffman_lookup(16#53, 16#4) -> {more, 16#23, 16#18};
   1370 dec_huffman_lookup(16#53, 16#5) -> {more, 16#23, 16#1f};
   1371 dec_huffman_lookup(16#53, 16#6) -> {more, 16#23, 16#29};
   1372 dec_huffman_lookup(16#53, 16#7) -> {ok, 16#23, 16#38};
   1373 dec_huffman_lookup(16#53, 16#8) -> {more, 16#3e, 16#03};
   1374 dec_huffman_lookup(16#53, 16#9) -> {more, 16#3e, 16#06};
   1375 dec_huffman_lookup(16#53, 16#a) -> {more, 16#3e, 16#0a};
   1376 dec_huffman_lookup(16#53, 16#b) -> {more, 16#3e, 16#0f};
   1377 dec_huffman_lookup(16#53, 16#c) -> {more, 16#3e, 16#18};
   1378 dec_huffman_lookup(16#53, 16#d) -> {more, 16#3e, 16#1f};
   1379 dec_huffman_lookup(16#53, 16#e) -> {more, 16#3e, 16#29};
   1380 dec_huffman_lookup(16#53, 16#f) -> {ok, 16#3e, 16#38};
   1381 dec_huffman_lookup(16#54, 16#0) -> {more, 16#00, 16#01};
   1382 dec_huffman_lookup(16#54, 16#1) -> {ok, 16#00, 16#16};
   1383 dec_huffman_lookup(16#54, 16#2) -> {more, 16#24, 16#01};
   1384 dec_huffman_lookup(16#54, 16#3) -> {ok, 16#24, 16#16};
   1385 dec_huffman_lookup(16#54, 16#4) -> {more, 16#40, 16#01};
   1386 dec_huffman_lookup(16#54, 16#5) -> {ok, 16#40, 16#16};
   1387 dec_huffman_lookup(16#54, 16#6) -> {more, 16#5b, 16#01};
   1388 dec_huffman_lookup(16#54, 16#7) -> {ok, 16#5b, 16#16};
   1389 dec_huffman_lookup(16#54, 16#8) -> {more, 16#5d, 16#01};
   1390 dec_huffman_lookup(16#54, 16#9) -> {ok, 16#5d, 16#16};
   1391 dec_huffman_lookup(16#54, 16#a) -> {more, 16#7e, 16#01};
   1392 dec_huffman_lookup(16#54, 16#b) -> {ok, 16#7e, 16#16};
   1393 dec_huffman_lookup(16#54, 16#c) -> {ok, 16#5e, 16#00};
   1394 dec_huffman_lookup(16#54, 16#d) -> {ok, 16#7d, 16#00};
   1395 dec_huffman_lookup(16#54, 16#e) -> {more, undefined, 16#5d};
   1396 dec_huffman_lookup(16#54, 16#f) -> {ok, undefined, 16#5e};
   1397 dec_huffman_lookup(16#55, 16#0) -> {more, 16#00, 16#02};
   1398 dec_huffman_lookup(16#55, 16#1) -> {more, 16#00, 16#09};
   1399 dec_huffman_lookup(16#55, 16#2) -> {more, 16#00, 16#17};
   1400 dec_huffman_lookup(16#55, 16#3) -> {ok, 16#00, 16#28};
   1401 dec_huffman_lookup(16#55, 16#4) -> {more, 16#24, 16#02};
   1402 dec_huffman_lookup(16#55, 16#5) -> {more, 16#24, 16#09};
   1403 dec_huffman_lookup(16#55, 16#6) -> {more, 16#24, 16#17};
   1404 dec_huffman_lookup(16#55, 16#7) -> {ok, 16#24, 16#28};
   1405 dec_huffman_lookup(16#55, 16#8) -> {more, 16#40, 16#02};
   1406 dec_huffman_lookup(16#55, 16#9) -> {more, 16#40, 16#09};
   1407 dec_huffman_lookup(16#55, 16#a) -> {more, 16#40, 16#17};
   1408 dec_huffman_lookup(16#55, 16#b) -> {ok, 16#40, 16#28};
   1409 dec_huffman_lookup(16#55, 16#c) -> {more, 16#5b, 16#02};
   1410 dec_huffman_lookup(16#55, 16#d) -> {more, 16#5b, 16#09};
   1411 dec_huffman_lookup(16#55, 16#e) -> {more, 16#5b, 16#17};
   1412 dec_huffman_lookup(16#55, 16#f) -> {ok, 16#5b, 16#28};
   1413 dec_huffman_lookup(16#56, 16#0) -> {more, 16#00, 16#03};
   1414 dec_huffman_lookup(16#56, 16#1) -> {more, 16#00, 16#06};
   1415 dec_huffman_lookup(16#56, 16#2) -> {more, 16#00, 16#0a};
   1416 dec_huffman_lookup(16#56, 16#3) -> {more, 16#00, 16#0f};
   1417 dec_huffman_lookup(16#56, 16#4) -> {more, 16#00, 16#18};
   1418 dec_huffman_lookup(16#56, 16#5) -> {more, 16#00, 16#1f};
   1419 dec_huffman_lookup(16#56, 16#6) -> {more, 16#00, 16#29};
   1420 dec_huffman_lookup(16#56, 16#7) -> {ok, 16#00, 16#38};
   1421 dec_huffman_lookup(16#56, 16#8) -> {more, 16#24, 16#03};
   1422 dec_huffman_lookup(16#56, 16#9) -> {more, 16#24, 16#06};
   1423 dec_huffman_lookup(16#56, 16#a) -> {more, 16#24, 16#0a};
   1424 dec_huffman_lookup(16#56, 16#b) -> {more, 16#24, 16#0f};
   1425 dec_huffman_lookup(16#56, 16#c) -> {more, 16#24, 16#18};
   1426 dec_huffman_lookup(16#56, 16#d) -> {more, 16#24, 16#1f};
   1427 dec_huffman_lookup(16#56, 16#e) -> {more, 16#24, 16#29};
   1428 dec_huffman_lookup(16#56, 16#f) -> {ok, 16#24, 16#38};
   1429 dec_huffman_lookup(16#57, 16#0) -> {more, 16#40, 16#03};
   1430 dec_huffman_lookup(16#57, 16#1) -> {more, 16#40, 16#06};
   1431 dec_huffman_lookup(16#57, 16#2) -> {more, 16#40, 16#0a};
   1432 dec_huffman_lookup(16#57, 16#3) -> {more, 16#40, 16#0f};
   1433 dec_huffman_lookup(16#57, 16#4) -> {more, 16#40, 16#18};
   1434 dec_huffman_lookup(16#57, 16#5) -> {more, 16#40, 16#1f};
   1435 dec_huffman_lookup(16#57, 16#6) -> {more, 16#40, 16#29};
   1436 dec_huffman_lookup(16#57, 16#7) -> {ok, 16#40, 16#38};
   1437 dec_huffman_lookup(16#57, 16#8) -> {more, 16#5b, 16#03};
   1438 dec_huffman_lookup(16#57, 16#9) -> {more, 16#5b, 16#06};
   1439 dec_huffman_lookup(16#57, 16#a) -> {more, 16#5b, 16#0a};
   1440 dec_huffman_lookup(16#57, 16#b) -> {more, 16#5b, 16#0f};
   1441 dec_huffman_lookup(16#57, 16#c) -> {more, 16#5b, 16#18};
   1442 dec_huffman_lookup(16#57, 16#d) -> {more, 16#5b, 16#1f};
   1443 dec_huffman_lookup(16#57, 16#e) -> {more, 16#5b, 16#29};
   1444 dec_huffman_lookup(16#57, 16#f) -> {ok, 16#5b, 16#38};
   1445 dec_huffman_lookup(16#58, 16#0) -> {more, 16#5d, 16#02};
   1446 dec_huffman_lookup(16#58, 16#1) -> {more, 16#5d, 16#09};
   1447 dec_huffman_lookup(16#58, 16#2) -> {more, 16#5d, 16#17};
   1448 dec_huffman_lookup(16#58, 16#3) -> {ok, 16#5d, 16#28};
   1449 dec_huffman_lookup(16#58, 16#4) -> {more, 16#7e, 16#02};
   1450 dec_huffman_lookup(16#58, 16#5) -> {more, 16#7e, 16#09};
   1451 dec_huffman_lookup(16#58, 16#6) -> {more, 16#7e, 16#17};
   1452 dec_huffman_lookup(16#58, 16#7) -> {ok, 16#7e, 16#28};
   1453 dec_huffman_lookup(16#58, 16#8) -> {more, 16#5e, 16#01};
   1454 dec_huffman_lookup(16#58, 16#9) -> {ok, 16#5e, 16#16};
   1455 dec_huffman_lookup(16#58, 16#a) -> {more, 16#7d, 16#01};
   1456 dec_huffman_lookup(16#58, 16#b) -> {ok, 16#7d, 16#16};
   1457 dec_huffman_lookup(16#58, 16#c) -> {ok, 16#3c, 16#00};
   1458 dec_huffman_lookup(16#58, 16#d) -> {ok, 16#60, 16#00};
   1459 dec_huffman_lookup(16#58, 16#e) -> {ok, 16#7b, 16#00};
   1460 dec_huffman_lookup(16#58, 16#f) -> {ok, undefined, 16#5f};
   1461 dec_huffman_lookup(16#59, 16#0) -> {more, 16#5d, 16#03};
   1462 dec_huffman_lookup(16#59, 16#1) -> {more, 16#5d, 16#06};
   1463 dec_huffman_lookup(16#59, 16#2) -> {more, 16#5d, 16#0a};
   1464 dec_huffman_lookup(16#59, 16#3) -> {more, 16#5d, 16#0f};
   1465 dec_huffman_lookup(16#59, 16#4) -> {more, 16#5d, 16#18};
   1466 dec_huffman_lookup(16#59, 16#5) -> {more, 16#5d, 16#1f};
   1467 dec_huffman_lookup(16#59, 16#6) -> {more, 16#5d, 16#29};
   1468 dec_huffman_lookup(16#59, 16#7) -> {ok, 16#5d, 16#38};
   1469 dec_huffman_lookup(16#59, 16#8) -> {more, 16#7e, 16#03};
   1470 dec_huffman_lookup(16#59, 16#9) -> {more, 16#7e, 16#06};
   1471 dec_huffman_lookup(16#59, 16#a) -> {more, 16#7e, 16#0a};
   1472 dec_huffman_lookup(16#59, 16#b) -> {more, 16#7e, 16#0f};
   1473 dec_huffman_lookup(16#59, 16#c) -> {more, 16#7e, 16#18};
   1474 dec_huffman_lookup(16#59, 16#d) -> {more, 16#7e, 16#1f};
   1475 dec_huffman_lookup(16#59, 16#e) -> {more, 16#7e, 16#29};
   1476 dec_huffman_lookup(16#59, 16#f) -> {ok, 16#7e, 16#38};
   1477 dec_huffman_lookup(16#5a, 16#0) -> {more, 16#5e, 16#02};
   1478 dec_huffman_lookup(16#5a, 16#1) -> {more, 16#5e, 16#09};
   1479 dec_huffman_lookup(16#5a, 16#2) -> {more, 16#5e, 16#17};
   1480 dec_huffman_lookup(16#5a, 16#3) -> {ok, 16#5e, 16#28};
   1481 dec_huffman_lookup(16#5a, 16#4) -> {more, 16#7d, 16#02};
   1482 dec_huffman_lookup(16#5a, 16#5) -> {more, 16#7d, 16#09};
   1483 dec_huffman_lookup(16#5a, 16#6) -> {more, 16#7d, 16#17};
   1484 dec_huffman_lookup(16#5a, 16#7) -> {ok, 16#7d, 16#28};
   1485 dec_huffman_lookup(16#5a, 16#8) -> {more, 16#3c, 16#01};
   1486 dec_huffman_lookup(16#5a, 16#9) -> {ok, 16#3c, 16#16};
   1487 dec_huffman_lookup(16#5a, 16#a) -> {more, 16#60, 16#01};
   1488 dec_huffman_lookup(16#5a, 16#b) -> {ok, 16#60, 16#16};
   1489 dec_huffman_lookup(16#5a, 16#c) -> {more, 16#7b, 16#01};
   1490 dec_huffman_lookup(16#5a, 16#d) -> {ok, 16#7b, 16#16};
   1491 dec_huffman_lookup(16#5a, 16#e) -> {more, undefined, 16#60};
   1492 dec_huffman_lookup(16#5a, 16#f) -> {ok, undefined, 16#6e};
   1493 dec_huffman_lookup(16#5b, 16#0) -> {more, 16#5e, 16#03};
   1494 dec_huffman_lookup(16#5b, 16#1) -> {more, 16#5e, 16#06};
   1495 dec_huffman_lookup(16#5b, 16#2) -> {more, 16#5e, 16#0a};
   1496 dec_huffman_lookup(16#5b, 16#3) -> {more, 16#5e, 16#0f};
   1497 dec_huffman_lookup(16#5b, 16#4) -> {more, 16#5e, 16#18};
   1498 dec_huffman_lookup(16#5b, 16#5) -> {more, 16#5e, 16#1f};
   1499 dec_huffman_lookup(16#5b, 16#6) -> {more, 16#5e, 16#29};
   1500 dec_huffman_lookup(16#5b, 16#7) -> {ok, 16#5e, 16#38};
   1501 dec_huffman_lookup(16#5b, 16#8) -> {more, 16#7d, 16#03};
   1502 dec_huffman_lookup(16#5b, 16#9) -> {more, 16#7d, 16#06};
   1503 dec_huffman_lookup(16#5b, 16#a) -> {more, 16#7d, 16#0a};
   1504 dec_huffman_lookup(16#5b, 16#b) -> {more, 16#7d, 16#0f};
   1505 dec_huffman_lookup(16#5b, 16#c) -> {more, 16#7d, 16#18};
   1506 dec_huffman_lookup(16#5b, 16#d) -> {more, 16#7d, 16#1f};
   1507 dec_huffman_lookup(16#5b, 16#e) -> {more, 16#7d, 16#29};
   1508 dec_huffman_lookup(16#5b, 16#f) -> {ok, 16#7d, 16#38};
   1509 dec_huffman_lookup(16#5c, 16#0) -> {more, 16#3c, 16#02};
   1510 dec_huffman_lookup(16#5c, 16#1) -> {more, 16#3c, 16#09};
   1511 dec_huffman_lookup(16#5c, 16#2) -> {more, 16#3c, 16#17};
   1512 dec_huffman_lookup(16#5c, 16#3) -> {ok, 16#3c, 16#28};
   1513 dec_huffman_lookup(16#5c, 16#4) -> {more, 16#60, 16#02};
   1514 dec_huffman_lookup(16#5c, 16#5) -> {more, 16#60, 16#09};
   1515 dec_huffman_lookup(16#5c, 16#6) -> {more, 16#60, 16#17};
   1516 dec_huffman_lookup(16#5c, 16#7) -> {ok, 16#60, 16#28};
   1517 dec_huffman_lookup(16#5c, 16#8) -> {more, 16#7b, 16#02};
   1518 dec_huffman_lookup(16#5c, 16#9) -> {more, 16#7b, 16#09};
   1519 dec_huffman_lookup(16#5c, 16#a) -> {more, 16#7b, 16#17};
   1520 dec_huffman_lookup(16#5c, 16#b) -> {ok, 16#7b, 16#28};
   1521 dec_huffman_lookup(16#5c, 16#c) -> {more, undefined, 16#61};
   1522 dec_huffman_lookup(16#5c, 16#d) -> {more, undefined, 16#65};
   1523 dec_huffman_lookup(16#5c, 16#e) -> {more, undefined, 16#6f};
   1524 dec_huffman_lookup(16#5c, 16#f) -> {ok, undefined, 16#85};
   1525 dec_huffman_lookup(16#5d, 16#0) -> {more, 16#3c, 16#03};
   1526 dec_huffman_lookup(16#5d, 16#1) -> {more, 16#3c, 16#06};
   1527 dec_huffman_lookup(16#5d, 16#2) -> {more, 16#3c, 16#0a};
   1528 dec_huffman_lookup(16#5d, 16#3) -> {more, 16#3c, 16#0f};
   1529 dec_huffman_lookup(16#5d, 16#4) -> {more, 16#3c, 16#18};
   1530 dec_huffman_lookup(16#5d, 16#5) -> {more, 16#3c, 16#1f};
   1531 dec_huffman_lookup(16#5d, 16#6) -> {more, 16#3c, 16#29};
   1532 dec_huffman_lookup(16#5d, 16#7) -> {ok, 16#3c, 16#38};
   1533 dec_huffman_lookup(16#5d, 16#8) -> {more, 16#60, 16#03};
   1534 dec_huffman_lookup(16#5d, 16#9) -> {more, 16#60, 16#06};
   1535 dec_huffman_lookup(16#5d, 16#a) -> {more, 16#60, 16#0a};
   1536 dec_huffman_lookup(16#5d, 16#b) -> {more, 16#60, 16#0f};
   1537 dec_huffman_lookup(16#5d, 16#c) -> {more, 16#60, 16#18};
   1538 dec_huffman_lookup(16#5d, 16#d) -> {more, 16#60, 16#1f};
   1539 dec_huffman_lookup(16#5d, 16#e) -> {more, 16#60, 16#29};
   1540 dec_huffman_lookup(16#5d, 16#f) -> {ok, 16#60, 16#38};
   1541 dec_huffman_lookup(16#5e, 16#0) -> {more, 16#7b, 16#03};
   1542 dec_huffman_lookup(16#5e, 16#1) -> {more, 16#7b, 16#06};
   1543 dec_huffman_lookup(16#5e, 16#2) -> {more, 16#7b, 16#0a};
   1544 dec_huffman_lookup(16#5e, 16#3) -> {more, 16#7b, 16#0f};
   1545 dec_huffman_lookup(16#5e, 16#4) -> {more, 16#7b, 16#18};
   1546 dec_huffman_lookup(16#5e, 16#5) -> {more, 16#7b, 16#1f};
   1547 dec_huffman_lookup(16#5e, 16#6) -> {more, 16#7b, 16#29};
   1548 dec_huffman_lookup(16#5e, 16#7) -> {ok, 16#7b, 16#38};
   1549 dec_huffman_lookup(16#5e, 16#8) -> {more, undefined, 16#62};
   1550 dec_huffman_lookup(16#5e, 16#9) -> {more, undefined, 16#63};
   1551 dec_huffman_lookup(16#5e, 16#a) -> {more, undefined, 16#66};
   1552 dec_huffman_lookup(16#5e, 16#b) -> {more, undefined, 16#69};
   1553 dec_huffman_lookup(16#5e, 16#c) -> {more, undefined, 16#70};
   1554 dec_huffman_lookup(16#5e, 16#d) -> {more, undefined, 16#77};
   1555 dec_huffman_lookup(16#5e, 16#e) -> {more, undefined, 16#86};
   1556 dec_huffman_lookup(16#5e, 16#f) -> {ok, undefined, 16#99};
   1557 dec_huffman_lookup(16#5f, 16#0) -> {ok, 16#5c, 16#00};
   1558 dec_huffman_lookup(16#5f, 16#1) -> {ok, 16#c3, 16#00};
   1559 dec_huffman_lookup(16#5f, 16#2) -> {ok, 16#d0, 16#00};
   1560 dec_huffman_lookup(16#5f, 16#3) -> {more, undefined, 16#64};
   1561 dec_huffman_lookup(16#5f, 16#4) -> {more, undefined, 16#67};
   1562 dec_huffman_lookup(16#5f, 16#5) -> {more, undefined, 16#68};
   1563 dec_huffman_lookup(16#5f, 16#6) -> {more, undefined, 16#6a};
   1564 dec_huffman_lookup(16#5f, 16#7) -> {more, undefined, 16#6b};
   1565 dec_huffman_lookup(16#5f, 16#8) -> {more, undefined, 16#71};
   1566 dec_huffman_lookup(16#5f, 16#9) -> {more, undefined, 16#74};
   1567 dec_huffman_lookup(16#5f, 16#a) -> {more, undefined, 16#78};
   1568 dec_huffman_lookup(16#5f, 16#b) -> {more, undefined, 16#7e};
   1569 dec_huffman_lookup(16#5f, 16#c) -> {more, undefined, 16#87};
   1570 dec_huffman_lookup(16#5f, 16#d) -> {more, undefined, 16#8e};
   1571 dec_huffman_lookup(16#5f, 16#e) -> {more, undefined, 16#9a};
   1572 dec_huffman_lookup(16#5f, 16#f) -> {ok, undefined, 16#a9};
   1573 dec_huffman_lookup(16#60, 16#0) -> {more, 16#5c, 16#01};
   1574 dec_huffman_lookup(16#60, 16#1) -> {ok, 16#5c, 16#16};
   1575 dec_huffman_lookup(16#60, 16#2) -> {more, 16#c3, 16#01};
   1576 dec_huffman_lookup(16#60, 16#3) -> {ok, 16#c3, 16#16};
   1577 dec_huffman_lookup(16#60, 16#4) -> {more, 16#d0, 16#01};
   1578 dec_huffman_lookup(16#60, 16#5) -> {ok, 16#d0, 16#16};
   1579 dec_huffman_lookup(16#60, 16#6) -> {ok, 16#80, 16#00};
   1580 dec_huffman_lookup(16#60, 16#7) -> {ok, 16#82, 16#00};
   1581 dec_huffman_lookup(16#60, 16#8) -> {ok, 16#83, 16#00};
   1582 dec_huffman_lookup(16#60, 16#9) -> {ok, 16#a2, 16#00};
   1583 dec_huffman_lookup(16#60, 16#a) -> {ok, 16#b8, 16#00};
   1584 dec_huffman_lookup(16#60, 16#b) -> {ok, 16#c2, 16#00};
   1585 dec_huffman_lookup(16#60, 16#c) -> {ok, 16#e0, 16#00};
   1586 dec_huffman_lookup(16#60, 16#d) -> {ok, 16#e2, 16#00};
   1587 dec_huffman_lookup(16#60, 16#e) -> {more, undefined, 16#6c};
   1588 dec_huffman_lookup(16#60, 16#f) -> {more, undefined, 16#6d};
   1589 dec_huffman_lookup(16#61, 16#0) -> {more, 16#5c, 16#02};
   1590 dec_huffman_lookup(16#61, 16#1) -> {more, 16#5c, 16#09};
   1591 dec_huffman_lookup(16#61, 16#2) -> {more, 16#5c, 16#17};
   1592 dec_huffman_lookup(16#61, 16#3) -> {ok, 16#5c, 16#28};
   1593 dec_huffman_lookup(16#61, 16#4) -> {more, 16#c3, 16#02};
   1594 dec_huffman_lookup(16#61, 16#5) -> {more, 16#c3, 16#09};
   1595 dec_huffman_lookup(16#61, 16#6) -> {more, 16#c3, 16#17};
   1596 dec_huffman_lookup(16#61, 16#7) -> {ok, 16#c3, 16#28};
   1597 dec_huffman_lookup(16#61, 16#8) -> {more, 16#d0, 16#02};
   1598 dec_huffman_lookup(16#61, 16#9) -> {more, 16#d0, 16#09};
   1599 dec_huffman_lookup(16#61, 16#a) -> {more, 16#d0, 16#17};
   1600 dec_huffman_lookup(16#61, 16#b) -> {ok, 16#d0, 16#28};
   1601 dec_huffman_lookup(16#61, 16#c) -> {more, 16#80, 16#01};
   1602 dec_huffman_lookup(16#61, 16#d) -> {ok, 16#80, 16#16};
   1603 dec_huffman_lookup(16#61, 16#e) -> {more, 16#82, 16#01};
   1604 dec_huffman_lookup(16#61, 16#f) -> {ok, 16#82, 16#16};
   1605 dec_huffman_lookup(16#62, 16#0) -> {more, 16#5c, 16#03};
   1606 dec_huffman_lookup(16#62, 16#1) -> {more, 16#5c, 16#06};
   1607 dec_huffman_lookup(16#62, 16#2) -> {more, 16#5c, 16#0a};
   1608 dec_huffman_lookup(16#62, 16#3) -> {more, 16#5c, 16#0f};
   1609 dec_huffman_lookup(16#62, 16#4) -> {more, 16#5c, 16#18};
   1610 dec_huffman_lookup(16#62, 16#5) -> {more, 16#5c, 16#1f};
   1611 dec_huffman_lookup(16#62, 16#6) -> {more, 16#5c, 16#29};
   1612 dec_huffman_lookup(16#62, 16#7) -> {ok, 16#5c, 16#38};
   1613 dec_huffman_lookup(16#62, 16#8) -> {more, 16#c3, 16#03};
   1614 dec_huffman_lookup(16#62, 16#9) -> {more, 16#c3, 16#06};
   1615 dec_huffman_lookup(16#62, 16#a) -> {more, 16#c3, 16#0a};
   1616 dec_huffman_lookup(16#62, 16#b) -> {more, 16#c3, 16#0f};
   1617 dec_huffman_lookup(16#62, 16#c) -> {more, 16#c3, 16#18};
   1618 dec_huffman_lookup(16#62, 16#d) -> {more, 16#c3, 16#1f};
   1619 dec_huffman_lookup(16#62, 16#e) -> {more, 16#c3, 16#29};
   1620 dec_huffman_lookup(16#62, 16#f) -> {ok, 16#c3, 16#38};
   1621 dec_huffman_lookup(16#63, 16#0) -> {more, 16#d0, 16#03};
   1622 dec_huffman_lookup(16#63, 16#1) -> {more, 16#d0, 16#06};
   1623 dec_huffman_lookup(16#63, 16#2) -> {more, 16#d0, 16#0a};
   1624 dec_huffman_lookup(16#63, 16#3) -> {more, 16#d0, 16#0f};
   1625 dec_huffman_lookup(16#63, 16#4) -> {more, 16#d0, 16#18};
   1626 dec_huffman_lookup(16#63, 16#5) -> {more, 16#d0, 16#1f};
   1627 dec_huffman_lookup(16#63, 16#6) -> {more, 16#d0, 16#29};
   1628 dec_huffman_lookup(16#63, 16#7) -> {ok, 16#d0, 16#38};
   1629 dec_huffman_lookup(16#63, 16#8) -> {more, 16#80, 16#02};
   1630 dec_huffman_lookup(16#63, 16#9) -> {more, 16#80, 16#09};
   1631 dec_huffman_lookup(16#63, 16#a) -> {more, 16#80, 16#17};
   1632 dec_huffman_lookup(16#63, 16#b) -> {ok, 16#80, 16#28};
   1633 dec_huffman_lookup(16#63, 16#c) -> {more, 16#82, 16#02};
   1634 dec_huffman_lookup(16#63, 16#d) -> {more, 16#82, 16#09};
   1635 dec_huffman_lookup(16#63, 16#e) -> {more, 16#82, 16#17};
   1636 dec_huffman_lookup(16#63, 16#f) -> {ok, 16#82, 16#28};
   1637 dec_huffman_lookup(16#64, 16#0) -> {more, 16#80, 16#03};
   1638 dec_huffman_lookup(16#64, 16#1) -> {more, 16#80, 16#06};
   1639 dec_huffman_lookup(16#64, 16#2) -> {more, 16#80, 16#0a};
   1640 dec_huffman_lookup(16#64, 16#3) -> {more, 16#80, 16#0f};
   1641 dec_huffman_lookup(16#64, 16#4) -> {more, 16#80, 16#18};
   1642 dec_huffman_lookup(16#64, 16#5) -> {more, 16#80, 16#1f};
   1643 dec_huffman_lookup(16#64, 16#6) -> {more, 16#80, 16#29};
   1644 dec_huffman_lookup(16#64, 16#7) -> {ok, 16#80, 16#38};
   1645 dec_huffman_lookup(16#64, 16#8) -> {more, 16#82, 16#03};
   1646 dec_huffman_lookup(16#64, 16#9) -> {more, 16#82, 16#06};
   1647 dec_huffman_lookup(16#64, 16#a) -> {more, 16#82, 16#0a};
   1648 dec_huffman_lookup(16#64, 16#b) -> {more, 16#82, 16#0f};
   1649 dec_huffman_lookup(16#64, 16#c) -> {more, 16#82, 16#18};
   1650 dec_huffman_lookup(16#64, 16#d) -> {more, 16#82, 16#1f};
   1651 dec_huffman_lookup(16#64, 16#e) -> {more, 16#82, 16#29};
   1652 dec_huffman_lookup(16#64, 16#f) -> {ok, 16#82, 16#38};
   1653 dec_huffman_lookup(16#65, 16#0) -> {more, 16#83, 16#01};
   1654 dec_huffman_lookup(16#65, 16#1) -> {ok, 16#83, 16#16};
   1655 dec_huffman_lookup(16#65, 16#2) -> {more, 16#a2, 16#01};
   1656 dec_huffman_lookup(16#65, 16#3) -> {ok, 16#a2, 16#16};
   1657 dec_huffman_lookup(16#65, 16#4) -> {more, 16#b8, 16#01};
   1658 dec_huffman_lookup(16#65, 16#5) -> {ok, 16#b8, 16#16};
   1659 dec_huffman_lookup(16#65, 16#6) -> {more, 16#c2, 16#01};
   1660 dec_huffman_lookup(16#65, 16#7) -> {ok, 16#c2, 16#16};
   1661 dec_huffman_lookup(16#65, 16#8) -> {more, 16#e0, 16#01};
   1662 dec_huffman_lookup(16#65, 16#9) -> {ok, 16#e0, 16#16};
   1663 dec_huffman_lookup(16#65, 16#a) -> {more, 16#e2, 16#01};
   1664 dec_huffman_lookup(16#65, 16#b) -> {ok, 16#e2, 16#16};
   1665 dec_huffman_lookup(16#65, 16#c) -> {ok, 16#99, 16#00};
   1666 dec_huffman_lookup(16#65, 16#d) -> {ok, 16#a1, 16#00};
   1667 dec_huffman_lookup(16#65, 16#e) -> {ok, 16#a7, 16#00};
   1668 dec_huffman_lookup(16#65, 16#f) -> {ok, 16#ac, 16#00};
   1669 dec_huffman_lookup(16#66, 16#0) -> {more, 16#83, 16#02};
   1670 dec_huffman_lookup(16#66, 16#1) -> {more, 16#83, 16#09};
   1671 dec_huffman_lookup(16#66, 16#2) -> {more, 16#83, 16#17};
   1672 dec_huffman_lookup(16#66, 16#3) -> {ok, 16#83, 16#28};
   1673 dec_huffman_lookup(16#66, 16#4) -> {more, 16#a2, 16#02};
   1674 dec_huffman_lookup(16#66, 16#5) -> {more, 16#a2, 16#09};
   1675 dec_huffman_lookup(16#66, 16#6) -> {more, 16#a2, 16#17};
   1676 dec_huffman_lookup(16#66, 16#7) -> {ok, 16#a2, 16#28};
   1677 dec_huffman_lookup(16#66, 16#8) -> {more, 16#b8, 16#02};
   1678 dec_huffman_lookup(16#66, 16#9) -> {more, 16#b8, 16#09};
   1679 dec_huffman_lookup(16#66, 16#a) -> {more, 16#b8, 16#17};
   1680 dec_huffman_lookup(16#66, 16#b) -> {ok, 16#b8, 16#28};
   1681 dec_huffman_lookup(16#66, 16#c) -> {more, 16#c2, 16#02};
   1682 dec_huffman_lookup(16#66, 16#d) -> {more, 16#c2, 16#09};
   1683 dec_huffman_lookup(16#66, 16#e) -> {more, 16#c2, 16#17};
   1684 dec_huffman_lookup(16#66, 16#f) -> {ok, 16#c2, 16#28};
   1685 dec_huffman_lookup(16#67, 16#0) -> {more, 16#83, 16#03};
   1686 dec_huffman_lookup(16#67, 16#1) -> {more, 16#83, 16#06};
   1687 dec_huffman_lookup(16#67, 16#2) -> {more, 16#83, 16#0a};
   1688 dec_huffman_lookup(16#67, 16#3) -> {more, 16#83, 16#0f};
   1689 dec_huffman_lookup(16#67, 16#4) -> {more, 16#83, 16#18};
   1690 dec_huffman_lookup(16#67, 16#5) -> {more, 16#83, 16#1f};
   1691 dec_huffman_lookup(16#67, 16#6) -> {more, 16#83, 16#29};
   1692 dec_huffman_lookup(16#67, 16#7) -> {ok, 16#83, 16#38};
   1693 dec_huffman_lookup(16#67, 16#8) -> {more, 16#a2, 16#03};
   1694 dec_huffman_lookup(16#67, 16#9) -> {more, 16#a2, 16#06};
   1695 dec_huffman_lookup(16#67, 16#a) -> {more, 16#a2, 16#0a};
   1696 dec_huffman_lookup(16#67, 16#b) -> {more, 16#a2, 16#0f};
   1697 dec_huffman_lookup(16#67, 16#c) -> {more, 16#a2, 16#18};
   1698 dec_huffman_lookup(16#67, 16#d) -> {more, 16#a2, 16#1f};
   1699 dec_huffman_lookup(16#67, 16#e) -> {more, 16#a2, 16#29};
   1700 dec_huffman_lookup(16#67, 16#f) -> {ok, 16#a2, 16#38};
   1701 dec_huffman_lookup(16#68, 16#0) -> {more, 16#b8, 16#03};
   1702 dec_huffman_lookup(16#68, 16#1) -> {more, 16#b8, 16#06};
   1703 dec_huffman_lookup(16#68, 16#2) -> {more, 16#b8, 16#0a};
   1704 dec_huffman_lookup(16#68, 16#3) -> {more, 16#b8, 16#0f};
   1705 dec_huffman_lookup(16#68, 16#4) -> {more, 16#b8, 16#18};
   1706 dec_huffman_lookup(16#68, 16#5) -> {more, 16#b8, 16#1f};
   1707 dec_huffman_lookup(16#68, 16#6) -> {more, 16#b8, 16#29};
   1708 dec_huffman_lookup(16#68, 16#7) -> {ok, 16#b8, 16#38};
   1709 dec_huffman_lookup(16#68, 16#8) -> {more, 16#c2, 16#03};
   1710 dec_huffman_lookup(16#68, 16#9) -> {more, 16#c2, 16#06};
   1711 dec_huffman_lookup(16#68, 16#a) -> {more, 16#c2, 16#0a};
   1712 dec_huffman_lookup(16#68, 16#b) -> {more, 16#c2, 16#0f};
   1713 dec_huffman_lookup(16#68, 16#c) -> {more, 16#c2, 16#18};
   1714 dec_huffman_lookup(16#68, 16#d) -> {more, 16#c2, 16#1f};
   1715 dec_huffman_lookup(16#68, 16#e) -> {more, 16#c2, 16#29};
   1716 dec_huffman_lookup(16#68, 16#f) -> {ok, 16#c2, 16#38};
   1717 dec_huffman_lookup(16#69, 16#0) -> {more, 16#e0, 16#02};
   1718 dec_huffman_lookup(16#69, 16#1) -> {more, 16#e0, 16#09};
   1719 dec_huffman_lookup(16#69, 16#2) -> {more, 16#e0, 16#17};
   1720 dec_huffman_lookup(16#69, 16#3) -> {ok, 16#e0, 16#28};
   1721 dec_huffman_lookup(16#69, 16#4) -> {more, 16#e2, 16#02};
   1722 dec_huffman_lookup(16#69, 16#5) -> {more, 16#e2, 16#09};
   1723 dec_huffman_lookup(16#69, 16#6) -> {more, 16#e2, 16#17};
   1724 dec_huffman_lookup(16#69, 16#7) -> {ok, 16#e2, 16#28};
   1725 dec_huffman_lookup(16#69, 16#8) -> {more, 16#99, 16#01};
   1726 dec_huffman_lookup(16#69, 16#9) -> {ok, 16#99, 16#16};
   1727 dec_huffman_lookup(16#69, 16#a) -> {more, 16#a1, 16#01};
   1728 dec_huffman_lookup(16#69, 16#b) -> {ok, 16#a1, 16#16};
   1729 dec_huffman_lookup(16#69, 16#c) -> {more, 16#a7, 16#01};
   1730 dec_huffman_lookup(16#69, 16#d) -> {ok, 16#a7, 16#16};
   1731 dec_huffman_lookup(16#69, 16#e) -> {more, 16#ac, 16#01};
   1732 dec_huffman_lookup(16#69, 16#f) -> {ok, 16#ac, 16#16};
   1733 dec_huffman_lookup(16#6a, 16#0) -> {more, 16#e0, 16#03};
   1734 dec_huffman_lookup(16#6a, 16#1) -> {more, 16#e0, 16#06};
   1735 dec_huffman_lookup(16#6a, 16#2) -> {more, 16#e0, 16#0a};
   1736 dec_huffman_lookup(16#6a, 16#3) -> {more, 16#e0, 16#0f};
   1737 dec_huffman_lookup(16#6a, 16#4) -> {more, 16#e0, 16#18};
   1738 dec_huffman_lookup(16#6a, 16#5) -> {more, 16#e0, 16#1f};
   1739 dec_huffman_lookup(16#6a, 16#6) -> {more, 16#e0, 16#29};
   1740 dec_huffman_lookup(16#6a, 16#7) -> {ok, 16#e0, 16#38};
   1741 dec_huffman_lookup(16#6a, 16#8) -> {more, 16#e2, 16#03};
   1742 dec_huffman_lookup(16#6a, 16#9) -> {more, 16#e2, 16#06};
   1743 dec_huffman_lookup(16#6a, 16#a) -> {more, 16#e2, 16#0a};
   1744 dec_huffman_lookup(16#6a, 16#b) -> {more, 16#e2, 16#0f};
   1745 dec_huffman_lookup(16#6a, 16#c) -> {more, 16#e2, 16#18};
   1746 dec_huffman_lookup(16#6a, 16#d) -> {more, 16#e2, 16#1f};
   1747 dec_huffman_lookup(16#6a, 16#e) -> {more, 16#e2, 16#29};
   1748 dec_huffman_lookup(16#6a, 16#f) -> {ok, 16#e2, 16#38};
   1749 dec_huffman_lookup(16#6b, 16#0) -> {more, 16#99, 16#02};
   1750 dec_huffman_lookup(16#6b, 16#1) -> {more, 16#99, 16#09};
   1751 dec_huffman_lookup(16#6b, 16#2) -> {more, 16#99, 16#17};
   1752 dec_huffman_lookup(16#6b, 16#3) -> {ok, 16#99, 16#28};
   1753 dec_huffman_lookup(16#6b, 16#4) -> {more, 16#a1, 16#02};
   1754 dec_huffman_lookup(16#6b, 16#5) -> {more, 16#a1, 16#09};
   1755 dec_huffman_lookup(16#6b, 16#6) -> {more, 16#a1, 16#17};
   1756 dec_huffman_lookup(16#6b, 16#7) -> {ok, 16#a1, 16#28};
   1757 dec_huffman_lookup(16#6b, 16#8) -> {more, 16#a7, 16#02};
   1758 dec_huffman_lookup(16#6b, 16#9) -> {more, 16#a7, 16#09};
   1759 dec_huffman_lookup(16#6b, 16#a) -> {more, 16#a7, 16#17};
   1760 dec_huffman_lookup(16#6b, 16#b) -> {ok, 16#a7, 16#28};
   1761 dec_huffman_lookup(16#6b, 16#c) -> {more, 16#ac, 16#02};
   1762 dec_huffman_lookup(16#6b, 16#d) -> {more, 16#ac, 16#09};
   1763 dec_huffman_lookup(16#6b, 16#e) -> {more, 16#ac, 16#17};
   1764 dec_huffman_lookup(16#6b, 16#f) -> {ok, 16#ac, 16#28};
   1765 dec_huffman_lookup(16#6c, 16#0) -> {more, 16#99, 16#03};
   1766 dec_huffman_lookup(16#6c, 16#1) -> {more, 16#99, 16#06};
   1767 dec_huffman_lookup(16#6c, 16#2) -> {more, 16#99, 16#0a};
   1768 dec_huffman_lookup(16#6c, 16#3) -> {more, 16#99, 16#0f};
   1769 dec_huffman_lookup(16#6c, 16#4) -> {more, 16#99, 16#18};
   1770 dec_huffman_lookup(16#6c, 16#5) -> {more, 16#99, 16#1f};
   1771 dec_huffman_lookup(16#6c, 16#6) -> {more, 16#99, 16#29};
   1772 dec_huffman_lookup(16#6c, 16#7) -> {ok, 16#99, 16#38};
   1773 dec_huffman_lookup(16#6c, 16#8) -> {more, 16#a1, 16#03};
   1774 dec_huffman_lookup(16#6c, 16#9) -> {more, 16#a1, 16#06};
   1775 dec_huffman_lookup(16#6c, 16#a) -> {more, 16#a1, 16#0a};
   1776 dec_huffman_lookup(16#6c, 16#b) -> {more, 16#a1, 16#0f};
   1777 dec_huffman_lookup(16#6c, 16#c) -> {more, 16#a1, 16#18};
   1778 dec_huffman_lookup(16#6c, 16#d) -> {more, 16#a1, 16#1f};
   1779 dec_huffman_lookup(16#6c, 16#e) -> {more, 16#a1, 16#29};
   1780 dec_huffman_lookup(16#6c, 16#f) -> {ok, 16#a1, 16#38};
   1781 dec_huffman_lookup(16#6d, 16#0) -> {more, 16#a7, 16#03};
   1782 dec_huffman_lookup(16#6d, 16#1) -> {more, 16#a7, 16#06};
   1783 dec_huffman_lookup(16#6d, 16#2) -> {more, 16#a7, 16#0a};
   1784 dec_huffman_lookup(16#6d, 16#3) -> {more, 16#a7, 16#0f};
   1785 dec_huffman_lookup(16#6d, 16#4) -> {more, 16#a7, 16#18};
   1786 dec_huffman_lookup(16#6d, 16#5) -> {more, 16#a7, 16#1f};
   1787 dec_huffman_lookup(16#6d, 16#6) -> {more, 16#a7, 16#29};
   1788 dec_huffman_lookup(16#6d, 16#7) -> {ok, 16#a7, 16#38};
   1789 dec_huffman_lookup(16#6d, 16#8) -> {more, 16#ac, 16#03};
   1790 dec_huffman_lookup(16#6d, 16#9) -> {more, 16#ac, 16#06};
   1791 dec_huffman_lookup(16#6d, 16#a) -> {more, 16#ac, 16#0a};
   1792 dec_huffman_lookup(16#6d, 16#b) -> {more, 16#ac, 16#0f};
   1793 dec_huffman_lookup(16#6d, 16#c) -> {more, 16#ac, 16#18};
   1794 dec_huffman_lookup(16#6d, 16#d) -> {more, 16#ac, 16#1f};
   1795 dec_huffman_lookup(16#6d, 16#e) -> {more, 16#ac, 16#29};
   1796 dec_huffman_lookup(16#6d, 16#f) -> {ok, 16#ac, 16#38};
   1797 dec_huffman_lookup(16#6e, 16#0) -> {more, undefined, 16#72};
   1798 dec_huffman_lookup(16#6e, 16#1) -> {more, undefined, 16#73};
   1799 dec_huffman_lookup(16#6e, 16#2) -> {more, undefined, 16#75};
   1800 dec_huffman_lookup(16#6e, 16#3) -> {more, undefined, 16#76};
   1801 dec_huffman_lookup(16#6e, 16#4) -> {more, undefined, 16#79};
   1802 dec_huffman_lookup(16#6e, 16#5) -> {more, undefined, 16#7b};
   1803 dec_huffman_lookup(16#6e, 16#6) -> {more, undefined, 16#7f};
   1804 dec_huffman_lookup(16#6e, 16#7) -> {more, undefined, 16#82};
   1805 dec_huffman_lookup(16#6e, 16#8) -> {more, undefined, 16#88};
   1806 dec_huffman_lookup(16#6e, 16#9) -> {more, undefined, 16#8b};
   1807 dec_huffman_lookup(16#6e, 16#a) -> {more, undefined, 16#8f};
   1808 dec_huffman_lookup(16#6e, 16#b) -> {more, undefined, 16#92};
   1809 dec_huffman_lookup(16#6e, 16#c) -> {more, undefined, 16#9b};
   1810 dec_huffman_lookup(16#6e, 16#d) -> {more, undefined, 16#a2};
   1811 dec_huffman_lookup(16#6e, 16#e) -> {more, undefined, 16#aa};
   1812 dec_huffman_lookup(16#6e, 16#f) -> {ok, undefined, 16#b4};
   1813 dec_huffman_lookup(16#6f, 16#0) -> {ok, 16#b0, 16#00};
   1814 dec_huffman_lookup(16#6f, 16#1) -> {ok, 16#b1, 16#00};
   1815 dec_huffman_lookup(16#6f, 16#2) -> {ok, 16#b3, 16#00};
   1816 dec_huffman_lookup(16#6f, 16#3) -> {ok, 16#d1, 16#00};
   1817 dec_huffman_lookup(16#6f, 16#4) -> {ok, 16#d8, 16#00};
   1818 dec_huffman_lookup(16#6f, 16#5) -> {ok, 16#d9, 16#00};
   1819 dec_huffman_lookup(16#6f, 16#6) -> {ok, 16#e3, 16#00};
   1820 dec_huffman_lookup(16#6f, 16#7) -> {ok, 16#e5, 16#00};
   1821 dec_huffman_lookup(16#6f, 16#8) -> {ok, 16#e6, 16#00};
   1822 dec_huffman_lookup(16#6f, 16#9) -> {more, undefined, 16#7a};
   1823 dec_huffman_lookup(16#6f, 16#a) -> {more, undefined, 16#7c};
   1824 dec_huffman_lookup(16#6f, 16#b) -> {more, undefined, 16#7d};
   1825 dec_huffman_lookup(16#6f, 16#c) -> {more, undefined, 16#80};
   1826 dec_huffman_lookup(16#6f, 16#d) -> {more, undefined, 16#81};
   1827 dec_huffman_lookup(16#6f, 16#e) -> {more, undefined, 16#83};
   1828 dec_huffman_lookup(16#6f, 16#f) -> {more, undefined, 16#84};
   1829 dec_huffman_lookup(16#70, 16#0) -> {more, 16#b0, 16#01};
   1830 dec_huffman_lookup(16#70, 16#1) -> {ok, 16#b0, 16#16};
   1831 dec_huffman_lookup(16#70, 16#2) -> {more, 16#b1, 16#01};
   1832 dec_huffman_lookup(16#70, 16#3) -> {ok, 16#b1, 16#16};
   1833 dec_huffman_lookup(16#70, 16#4) -> {more, 16#b3, 16#01};
   1834 dec_huffman_lookup(16#70, 16#5) -> {ok, 16#b3, 16#16};
   1835 dec_huffman_lookup(16#70, 16#6) -> {more, 16#d1, 16#01};
   1836 dec_huffman_lookup(16#70, 16#7) -> {ok, 16#d1, 16#16};
   1837 dec_huffman_lookup(16#70, 16#8) -> {more, 16#d8, 16#01};
   1838 dec_huffman_lookup(16#70, 16#9) -> {ok, 16#d8, 16#16};
   1839 dec_huffman_lookup(16#70, 16#a) -> {more, 16#d9, 16#01};
   1840 dec_huffman_lookup(16#70, 16#b) -> {ok, 16#d9, 16#16};
   1841 dec_huffman_lookup(16#70, 16#c) -> {more, 16#e3, 16#01};
   1842 dec_huffman_lookup(16#70, 16#d) -> {ok, 16#e3, 16#16};
   1843 dec_huffman_lookup(16#70, 16#e) -> {more, 16#e5, 16#01};
   1844 dec_huffman_lookup(16#70, 16#f) -> {ok, 16#e5, 16#16};
   1845 dec_huffman_lookup(16#71, 16#0) -> {more, 16#b0, 16#02};
   1846 dec_huffman_lookup(16#71, 16#1) -> {more, 16#b0, 16#09};
   1847 dec_huffman_lookup(16#71, 16#2) -> {more, 16#b0, 16#17};
   1848 dec_huffman_lookup(16#71, 16#3) -> {ok, 16#b0, 16#28};
   1849 dec_huffman_lookup(16#71, 16#4) -> {more, 16#b1, 16#02};
   1850 dec_huffman_lookup(16#71, 16#5) -> {more, 16#b1, 16#09};
   1851 dec_huffman_lookup(16#71, 16#6) -> {more, 16#b1, 16#17};
   1852 dec_huffman_lookup(16#71, 16#7) -> {ok, 16#b1, 16#28};
   1853 dec_huffman_lookup(16#71, 16#8) -> {more, 16#b3, 16#02};
   1854 dec_huffman_lookup(16#71, 16#9) -> {more, 16#b3, 16#09};
   1855 dec_huffman_lookup(16#71, 16#a) -> {more, 16#b3, 16#17};
   1856 dec_huffman_lookup(16#71, 16#b) -> {ok, 16#b3, 16#28};
   1857 dec_huffman_lookup(16#71, 16#c) -> {more, 16#d1, 16#02};
   1858 dec_huffman_lookup(16#71, 16#d) -> {more, 16#d1, 16#09};
   1859 dec_huffman_lookup(16#71, 16#e) -> {more, 16#d1, 16#17};
   1860 dec_huffman_lookup(16#71, 16#f) -> {ok, 16#d1, 16#28};
   1861 dec_huffman_lookup(16#72, 16#0) -> {more, 16#b0, 16#03};
   1862 dec_huffman_lookup(16#72, 16#1) -> {more, 16#b0, 16#06};
   1863 dec_huffman_lookup(16#72, 16#2) -> {more, 16#b0, 16#0a};
   1864 dec_huffman_lookup(16#72, 16#3) -> {more, 16#b0, 16#0f};
   1865 dec_huffman_lookup(16#72, 16#4) -> {more, 16#b0, 16#18};
   1866 dec_huffman_lookup(16#72, 16#5) -> {more, 16#b0, 16#1f};
   1867 dec_huffman_lookup(16#72, 16#6) -> {more, 16#b0, 16#29};
   1868 dec_huffman_lookup(16#72, 16#7) -> {ok, 16#b0, 16#38};
   1869 dec_huffman_lookup(16#72, 16#8) -> {more, 16#b1, 16#03};
   1870 dec_huffman_lookup(16#72, 16#9) -> {more, 16#b1, 16#06};
   1871 dec_huffman_lookup(16#72, 16#a) -> {more, 16#b1, 16#0a};
   1872 dec_huffman_lookup(16#72, 16#b) -> {more, 16#b1, 16#0f};
   1873 dec_huffman_lookup(16#72, 16#c) -> {more, 16#b1, 16#18};
   1874 dec_huffman_lookup(16#72, 16#d) -> {more, 16#b1, 16#1f};
   1875 dec_huffman_lookup(16#72, 16#e) -> {more, 16#b1, 16#29};
   1876 dec_huffman_lookup(16#72, 16#f) -> {ok, 16#b1, 16#38};
   1877 dec_huffman_lookup(16#73, 16#0) -> {more, 16#b3, 16#03};
   1878 dec_huffman_lookup(16#73, 16#1) -> {more, 16#b3, 16#06};
   1879 dec_huffman_lookup(16#73, 16#2) -> {more, 16#b3, 16#0a};
   1880 dec_huffman_lookup(16#73, 16#3) -> {more, 16#b3, 16#0f};
   1881 dec_huffman_lookup(16#73, 16#4) -> {more, 16#b3, 16#18};
   1882 dec_huffman_lookup(16#73, 16#5) -> {more, 16#b3, 16#1f};
   1883 dec_huffman_lookup(16#73, 16#6) -> {more, 16#b3, 16#29};
   1884 dec_huffman_lookup(16#73, 16#7) -> {ok, 16#b3, 16#38};
   1885 dec_huffman_lookup(16#73, 16#8) -> {more, 16#d1, 16#03};
   1886 dec_huffman_lookup(16#73, 16#9) -> {more, 16#d1, 16#06};
   1887 dec_huffman_lookup(16#73, 16#a) -> {more, 16#d1, 16#0a};
   1888 dec_huffman_lookup(16#73, 16#b) -> {more, 16#d1, 16#0f};
   1889 dec_huffman_lookup(16#73, 16#c) -> {more, 16#d1, 16#18};
   1890 dec_huffman_lookup(16#73, 16#d) -> {more, 16#d1, 16#1f};
   1891 dec_huffman_lookup(16#73, 16#e) -> {more, 16#d1, 16#29};
   1892 dec_huffman_lookup(16#73, 16#f) -> {ok, 16#d1, 16#38};
   1893 dec_huffman_lookup(16#74, 16#0) -> {more, 16#d8, 16#02};
   1894 dec_huffman_lookup(16#74, 16#1) -> {more, 16#d8, 16#09};
   1895 dec_huffman_lookup(16#74, 16#2) -> {more, 16#d8, 16#17};
   1896 dec_huffman_lookup(16#74, 16#3) -> {ok, 16#d8, 16#28};
   1897 dec_huffman_lookup(16#74, 16#4) -> {more, 16#d9, 16#02};
   1898 dec_huffman_lookup(16#74, 16#5) -> {more, 16#d9, 16#09};
   1899 dec_huffman_lookup(16#74, 16#6) -> {more, 16#d9, 16#17};
   1900 dec_huffman_lookup(16#74, 16#7) -> {ok, 16#d9, 16#28};
   1901 dec_huffman_lookup(16#74, 16#8) -> {more, 16#e3, 16#02};
   1902 dec_huffman_lookup(16#74, 16#9) -> {more, 16#e3, 16#09};
   1903 dec_huffman_lookup(16#74, 16#a) -> {more, 16#e3, 16#17};
   1904 dec_huffman_lookup(16#74, 16#b) -> {ok, 16#e3, 16#28};
   1905 dec_huffman_lookup(16#74, 16#c) -> {more, 16#e5, 16#02};
   1906 dec_huffman_lookup(16#74, 16#d) -> {more, 16#e5, 16#09};
   1907 dec_huffman_lookup(16#74, 16#e) -> {more, 16#e5, 16#17};
   1908 dec_huffman_lookup(16#74, 16#f) -> {ok, 16#e5, 16#28};
   1909 dec_huffman_lookup(16#75, 16#0) -> {more, 16#d8, 16#03};
   1910 dec_huffman_lookup(16#75, 16#1) -> {more, 16#d8, 16#06};
   1911 dec_huffman_lookup(16#75, 16#2) -> {more, 16#d8, 16#0a};
   1912 dec_huffman_lookup(16#75, 16#3) -> {more, 16#d8, 16#0f};
   1913 dec_huffman_lookup(16#75, 16#4) -> {more, 16#d8, 16#18};
   1914 dec_huffman_lookup(16#75, 16#5) -> {more, 16#d8, 16#1f};
   1915 dec_huffman_lookup(16#75, 16#6) -> {more, 16#d8, 16#29};
   1916 dec_huffman_lookup(16#75, 16#7) -> {ok, 16#d8, 16#38};
   1917 dec_huffman_lookup(16#75, 16#8) -> {more, 16#d9, 16#03};
   1918 dec_huffman_lookup(16#75, 16#9) -> {more, 16#d9, 16#06};
   1919 dec_huffman_lookup(16#75, 16#a) -> {more, 16#d9, 16#0a};
   1920 dec_huffman_lookup(16#75, 16#b) -> {more, 16#d9, 16#0f};
   1921 dec_huffman_lookup(16#75, 16#c) -> {more, 16#d9, 16#18};
   1922 dec_huffman_lookup(16#75, 16#d) -> {more, 16#d9, 16#1f};
   1923 dec_huffman_lookup(16#75, 16#e) -> {more, 16#d9, 16#29};
   1924 dec_huffman_lookup(16#75, 16#f) -> {ok, 16#d9, 16#38};
   1925 dec_huffman_lookup(16#76, 16#0) -> {more, 16#e3, 16#03};
   1926 dec_huffman_lookup(16#76, 16#1) -> {more, 16#e3, 16#06};
   1927 dec_huffman_lookup(16#76, 16#2) -> {more, 16#e3, 16#0a};
   1928 dec_huffman_lookup(16#76, 16#3) -> {more, 16#e3, 16#0f};
   1929 dec_huffman_lookup(16#76, 16#4) -> {more, 16#e3, 16#18};
   1930 dec_huffman_lookup(16#76, 16#5) -> {more, 16#e3, 16#1f};
   1931 dec_huffman_lookup(16#76, 16#6) -> {more, 16#e3, 16#29};
   1932 dec_huffman_lookup(16#76, 16#7) -> {ok, 16#e3, 16#38};
   1933 dec_huffman_lookup(16#76, 16#8) -> {more, 16#e5, 16#03};
   1934 dec_huffman_lookup(16#76, 16#9) -> {more, 16#e5, 16#06};
   1935 dec_huffman_lookup(16#76, 16#a) -> {more, 16#e5, 16#0a};
   1936 dec_huffman_lookup(16#76, 16#b) -> {more, 16#e5, 16#0f};
   1937 dec_huffman_lookup(16#76, 16#c) -> {more, 16#e5, 16#18};
   1938 dec_huffman_lookup(16#76, 16#d) -> {more, 16#e5, 16#1f};
   1939 dec_huffman_lookup(16#76, 16#e) -> {more, 16#e5, 16#29};
   1940 dec_huffman_lookup(16#76, 16#f) -> {ok, 16#e5, 16#38};
   1941 dec_huffman_lookup(16#77, 16#0) -> {more, 16#e6, 16#01};
   1942 dec_huffman_lookup(16#77, 16#1) -> {ok, 16#e6, 16#16};
   1943 dec_huffman_lookup(16#77, 16#2) -> {ok, 16#81, 16#00};
   1944 dec_huffman_lookup(16#77, 16#3) -> {ok, 16#84, 16#00};
   1945 dec_huffman_lookup(16#77, 16#4) -> {ok, 16#85, 16#00};
   1946 dec_huffman_lookup(16#77, 16#5) -> {ok, 16#86, 16#00};
   1947 dec_huffman_lookup(16#77, 16#6) -> {ok, 16#88, 16#00};
   1948 dec_huffman_lookup(16#77, 16#7) -> {ok, 16#92, 16#00};
   1949 dec_huffman_lookup(16#77, 16#8) -> {ok, 16#9a, 16#00};
   1950 dec_huffman_lookup(16#77, 16#9) -> {ok, 16#9c, 16#00};
   1951 dec_huffman_lookup(16#77, 16#a) -> {ok, 16#a0, 16#00};
   1952 dec_huffman_lookup(16#77, 16#b) -> {ok, 16#a3, 16#00};
   1953 dec_huffman_lookup(16#77, 16#c) -> {ok, 16#a4, 16#00};
   1954 dec_huffman_lookup(16#77, 16#d) -> {ok, 16#a9, 16#00};
   1955 dec_huffman_lookup(16#77, 16#e) -> {ok, 16#aa, 16#00};
   1956 dec_huffman_lookup(16#77, 16#f) -> {ok, 16#ad, 16#00};
   1957 dec_huffman_lookup(16#78, 16#0) -> {more, 16#e6, 16#02};
   1958 dec_huffman_lookup(16#78, 16#1) -> {more, 16#e6, 16#09};
   1959 dec_huffman_lookup(16#78, 16#2) -> {more, 16#e6, 16#17};
   1960 dec_huffman_lookup(16#78, 16#3) -> {ok, 16#e6, 16#28};
   1961 dec_huffman_lookup(16#78, 16#4) -> {more, 16#81, 16#01};
   1962 dec_huffman_lookup(16#78, 16#5) -> {ok, 16#81, 16#16};
   1963 dec_huffman_lookup(16#78, 16#6) -> {more, 16#84, 16#01};
   1964 dec_huffman_lookup(16#78, 16#7) -> {ok, 16#84, 16#16};
   1965 dec_huffman_lookup(16#78, 16#8) -> {more, 16#85, 16#01};
   1966 dec_huffman_lookup(16#78, 16#9) -> {ok, 16#85, 16#16};
   1967 dec_huffman_lookup(16#78, 16#a) -> {more, 16#86, 16#01};
   1968 dec_huffman_lookup(16#78, 16#b) -> {ok, 16#86, 16#16};
   1969 dec_huffman_lookup(16#78, 16#c) -> {more, 16#88, 16#01};
   1970 dec_huffman_lookup(16#78, 16#d) -> {ok, 16#88, 16#16};
   1971 dec_huffman_lookup(16#78, 16#e) -> {more, 16#92, 16#01};
   1972 dec_huffman_lookup(16#78, 16#f) -> {ok, 16#92, 16#16};
   1973 dec_huffman_lookup(16#79, 16#0) -> {more, 16#e6, 16#03};
   1974 dec_huffman_lookup(16#79, 16#1) -> {more, 16#e6, 16#06};
   1975 dec_huffman_lookup(16#79, 16#2) -> {more, 16#e6, 16#0a};
   1976 dec_huffman_lookup(16#79, 16#3) -> {more, 16#e6, 16#0f};
   1977 dec_huffman_lookup(16#79, 16#4) -> {more, 16#e6, 16#18};
   1978 dec_huffman_lookup(16#79, 16#5) -> {more, 16#e6, 16#1f};
   1979 dec_huffman_lookup(16#79, 16#6) -> {more, 16#e6, 16#29};
   1980 dec_huffman_lookup(16#79, 16#7) -> {ok, 16#e6, 16#38};
   1981 dec_huffman_lookup(16#79, 16#8) -> {more, 16#81, 16#02};
   1982 dec_huffman_lookup(16#79, 16#9) -> {more, 16#81, 16#09};
   1983 dec_huffman_lookup(16#79, 16#a) -> {more, 16#81, 16#17};
   1984 dec_huffman_lookup(16#79, 16#b) -> {ok, 16#81, 16#28};
   1985 dec_huffman_lookup(16#79, 16#c) -> {more, 16#84, 16#02};
   1986 dec_huffman_lookup(16#79, 16#d) -> {more, 16#84, 16#09};
   1987 dec_huffman_lookup(16#79, 16#e) -> {more, 16#84, 16#17};
   1988 dec_huffman_lookup(16#79, 16#f) -> {ok, 16#84, 16#28};
   1989 dec_huffman_lookup(16#7a, 16#0) -> {more, 16#81, 16#03};
   1990 dec_huffman_lookup(16#7a, 16#1) -> {more, 16#81, 16#06};
   1991 dec_huffman_lookup(16#7a, 16#2) -> {more, 16#81, 16#0a};
   1992 dec_huffman_lookup(16#7a, 16#3) -> {more, 16#81, 16#0f};
   1993 dec_huffman_lookup(16#7a, 16#4) -> {more, 16#81, 16#18};
   1994 dec_huffman_lookup(16#7a, 16#5) -> {more, 16#81, 16#1f};
   1995 dec_huffman_lookup(16#7a, 16#6) -> {more, 16#81, 16#29};
   1996 dec_huffman_lookup(16#7a, 16#7) -> {ok, 16#81, 16#38};
   1997 dec_huffman_lookup(16#7a, 16#8) -> {more, 16#84, 16#03};
   1998 dec_huffman_lookup(16#7a, 16#9) -> {more, 16#84, 16#06};
   1999 dec_huffman_lookup(16#7a, 16#a) -> {more, 16#84, 16#0a};
   2000 dec_huffman_lookup(16#7a, 16#b) -> {more, 16#84, 16#0f};
   2001 dec_huffman_lookup(16#7a, 16#c) -> {more, 16#84, 16#18};
   2002 dec_huffman_lookup(16#7a, 16#d) -> {more, 16#84, 16#1f};
   2003 dec_huffman_lookup(16#7a, 16#e) -> {more, 16#84, 16#29};
   2004 dec_huffman_lookup(16#7a, 16#f) -> {ok, 16#84, 16#38};
   2005 dec_huffman_lookup(16#7b, 16#0) -> {more, 16#85, 16#02};
   2006 dec_huffman_lookup(16#7b, 16#1) -> {more, 16#85, 16#09};
   2007 dec_huffman_lookup(16#7b, 16#2) -> {more, 16#85, 16#17};
   2008 dec_huffman_lookup(16#7b, 16#3) -> {ok, 16#85, 16#28};
   2009 dec_huffman_lookup(16#7b, 16#4) -> {more, 16#86, 16#02};
   2010 dec_huffman_lookup(16#7b, 16#5) -> {more, 16#86, 16#09};
   2011 dec_huffman_lookup(16#7b, 16#6) -> {more, 16#86, 16#17};
   2012 dec_huffman_lookup(16#7b, 16#7) -> {ok, 16#86, 16#28};
   2013 dec_huffman_lookup(16#7b, 16#8) -> {more, 16#88, 16#02};
   2014 dec_huffman_lookup(16#7b, 16#9) -> {more, 16#88, 16#09};
   2015 dec_huffman_lookup(16#7b, 16#a) -> {more, 16#88, 16#17};
   2016 dec_huffman_lookup(16#7b, 16#b) -> {ok, 16#88, 16#28};
   2017 dec_huffman_lookup(16#7b, 16#c) -> {more, 16#92, 16#02};
   2018 dec_huffman_lookup(16#7b, 16#d) -> {more, 16#92, 16#09};
   2019 dec_huffman_lookup(16#7b, 16#e) -> {more, 16#92, 16#17};
   2020 dec_huffman_lookup(16#7b, 16#f) -> {ok, 16#92, 16#28};
   2021 dec_huffman_lookup(16#7c, 16#0) -> {more, 16#85, 16#03};
   2022 dec_huffman_lookup(16#7c, 16#1) -> {more, 16#85, 16#06};
   2023 dec_huffman_lookup(16#7c, 16#2) -> {more, 16#85, 16#0a};
   2024 dec_huffman_lookup(16#7c, 16#3) -> {more, 16#85, 16#0f};
   2025 dec_huffman_lookup(16#7c, 16#4) -> {more, 16#85, 16#18};
   2026 dec_huffman_lookup(16#7c, 16#5) -> {more, 16#85, 16#1f};
   2027 dec_huffman_lookup(16#7c, 16#6) -> {more, 16#85, 16#29};
   2028 dec_huffman_lookup(16#7c, 16#7) -> {ok, 16#85, 16#38};
   2029 dec_huffman_lookup(16#7c, 16#8) -> {more, 16#86, 16#03};
   2030 dec_huffman_lookup(16#7c, 16#9) -> {more, 16#86, 16#06};
   2031 dec_huffman_lookup(16#7c, 16#a) -> {more, 16#86, 16#0a};
   2032 dec_huffman_lookup(16#7c, 16#b) -> {more, 16#86, 16#0f};
   2033 dec_huffman_lookup(16#7c, 16#c) -> {more, 16#86, 16#18};
   2034 dec_huffman_lookup(16#7c, 16#d) -> {more, 16#86, 16#1f};
   2035 dec_huffman_lookup(16#7c, 16#e) -> {more, 16#86, 16#29};
   2036 dec_huffman_lookup(16#7c, 16#f) -> {ok, 16#86, 16#38};
   2037 dec_huffman_lookup(16#7d, 16#0) -> {more, 16#88, 16#03};
   2038 dec_huffman_lookup(16#7d, 16#1) -> {more, 16#88, 16#06};
   2039 dec_huffman_lookup(16#7d, 16#2) -> {more, 16#88, 16#0a};
   2040 dec_huffman_lookup(16#7d, 16#3) -> {more, 16#88, 16#0f};
   2041 dec_huffman_lookup(16#7d, 16#4) -> {more, 16#88, 16#18};
   2042 dec_huffman_lookup(16#7d, 16#5) -> {more, 16#88, 16#1f};
   2043 dec_huffman_lookup(16#7d, 16#6) -> {more, 16#88, 16#29};
   2044 dec_huffman_lookup(16#7d, 16#7) -> {ok, 16#88, 16#38};
   2045 dec_huffman_lookup(16#7d, 16#8) -> {more, 16#92, 16#03};
   2046 dec_huffman_lookup(16#7d, 16#9) -> {more, 16#92, 16#06};
   2047 dec_huffman_lookup(16#7d, 16#a) -> {more, 16#92, 16#0a};
   2048 dec_huffman_lookup(16#7d, 16#b) -> {more, 16#92, 16#0f};
   2049 dec_huffman_lookup(16#7d, 16#c) -> {more, 16#92, 16#18};
   2050 dec_huffman_lookup(16#7d, 16#d) -> {more, 16#92, 16#1f};
   2051 dec_huffman_lookup(16#7d, 16#e) -> {more, 16#92, 16#29};
   2052 dec_huffman_lookup(16#7d, 16#f) -> {ok, 16#92, 16#38};
   2053 dec_huffman_lookup(16#7e, 16#0) -> {more, 16#9a, 16#01};
   2054 dec_huffman_lookup(16#7e, 16#1) -> {ok, 16#9a, 16#16};
   2055 dec_huffman_lookup(16#7e, 16#2) -> {more, 16#9c, 16#01};
   2056 dec_huffman_lookup(16#7e, 16#3) -> {ok, 16#9c, 16#16};
   2057 dec_huffman_lookup(16#7e, 16#4) -> {more, 16#a0, 16#01};
   2058 dec_huffman_lookup(16#7e, 16#5) -> {ok, 16#a0, 16#16};
   2059 dec_huffman_lookup(16#7e, 16#6) -> {more, 16#a3, 16#01};
   2060 dec_huffman_lookup(16#7e, 16#7) -> {ok, 16#a3, 16#16};
   2061 dec_huffman_lookup(16#7e, 16#8) -> {more, 16#a4, 16#01};
   2062 dec_huffman_lookup(16#7e, 16#9) -> {ok, 16#a4, 16#16};
   2063 dec_huffman_lookup(16#7e, 16#a) -> {more, 16#a9, 16#01};
   2064 dec_huffman_lookup(16#7e, 16#b) -> {ok, 16#a9, 16#16};
   2065 dec_huffman_lookup(16#7e, 16#c) -> {more, 16#aa, 16#01};
   2066 dec_huffman_lookup(16#7e, 16#d) -> {ok, 16#aa, 16#16};
   2067 dec_huffman_lookup(16#7e, 16#e) -> {more, 16#ad, 16#01};
   2068 dec_huffman_lookup(16#7e, 16#f) -> {ok, 16#ad, 16#16};
   2069 dec_huffman_lookup(16#7f, 16#0) -> {more, 16#9a, 16#02};
   2070 dec_huffman_lookup(16#7f, 16#1) -> {more, 16#9a, 16#09};
   2071 dec_huffman_lookup(16#7f, 16#2) -> {more, 16#9a, 16#17};
   2072 dec_huffman_lookup(16#7f, 16#3) -> {ok, 16#9a, 16#28};
   2073 dec_huffman_lookup(16#7f, 16#4) -> {more, 16#9c, 16#02};
   2074 dec_huffman_lookup(16#7f, 16#5) -> {more, 16#9c, 16#09};
   2075 dec_huffman_lookup(16#7f, 16#6) -> {more, 16#9c, 16#17};
   2076 dec_huffman_lookup(16#7f, 16#7) -> {ok, 16#9c, 16#28};
   2077 dec_huffman_lookup(16#7f, 16#8) -> {more, 16#a0, 16#02};
   2078 dec_huffman_lookup(16#7f, 16#9) -> {more, 16#a0, 16#09};
   2079 dec_huffman_lookup(16#7f, 16#a) -> {more, 16#a0, 16#17};
   2080 dec_huffman_lookup(16#7f, 16#b) -> {ok, 16#a0, 16#28};
   2081 dec_huffman_lookup(16#7f, 16#c) -> {more, 16#a3, 16#02};
   2082 dec_huffman_lookup(16#7f, 16#d) -> {more, 16#a3, 16#09};
   2083 dec_huffman_lookup(16#7f, 16#e) -> {more, 16#a3, 16#17};
   2084 dec_huffman_lookup(16#7f, 16#f) -> {ok, 16#a3, 16#28};
   2085 dec_huffman_lookup(16#80, 16#0) -> {more, 16#9a, 16#03};
   2086 dec_huffman_lookup(16#80, 16#1) -> {more, 16#9a, 16#06};
   2087 dec_huffman_lookup(16#80, 16#2) -> {more, 16#9a, 16#0a};
   2088 dec_huffman_lookup(16#80, 16#3) -> {more, 16#9a, 16#0f};
   2089 dec_huffman_lookup(16#80, 16#4) -> {more, 16#9a, 16#18};
   2090 dec_huffman_lookup(16#80, 16#5) -> {more, 16#9a, 16#1f};
   2091 dec_huffman_lookup(16#80, 16#6) -> {more, 16#9a, 16#29};
   2092 dec_huffman_lookup(16#80, 16#7) -> {ok, 16#9a, 16#38};
   2093 dec_huffman_lookup(16#80, 16#8) -> {more, 16#9c, 16#03};
   2094 dec_huffman_lookup(16#80, 16#9) -> {more, 16#9c, 16#06};
   2095 dec_huffman_lookup(16#80, 16#a) -> {more, 16#9c, 16#0a};
   2096 dec_huffman_lookup(16#80, 16#b) -> {more, 16#9c, 16#0f};
   2097 dec_huffman_lookup(16#80, 16#c) -> {more, 16#9c, 16#18};
   2098 dec_huffman_lookup(16#80, 16#d) -> {more, 16#9c, 16#1f};
   2099 dec_huffman_lookup(16#80, 16#e) -> {more, 16#9c, 16#29};
   2100 dec_huffman_lookup(16#80, 16#f) -> {ok, 16#9c, 16#38};
   2101 dec_huffman_lookup(16#81, 16#0) -> {more, 16#a0, 16#03};
   2102 dec_huffman_lookup(16#81, 16#1) -> {more, 16#a0, 16#06};
   2103 dec_huffman_lookup(16#81, 16#2) -> {more, 16#a0, 16#0a};
   2104 dec_huffman_lookup(16#81, 16#3) -> {more, 16#a0, 16#0f};
   2105 dec_huffman_lookup(16#81, 16#4) -> {more, 16#a0, 16#18};
   2106 dec_huffman_lookup(16#81, 16#5) -> {more, 16#a0, 16#1f};
   2107 dec_huffman_lookup(16#81, 16#6) -> {more, 16#a0, 16#29};
   2108 dec_huffman_lookup(16#81, 16#7) -> {ok, 16#a0, 16#38};
   2109 dec_huffman_lookup(16#81, 16#8) -> {more, 16#a3, 16#03};
   2110 dec_huffman_lookup(16#81, 16#9) -> {more, 16#a3, 16#06};
   2111 dec_huffman_lookup(16#81, 16#a) -> {more, 16#a3, 16#0a};
   2112 dec_huffman_lookup(16#81, 16#b) -> {more, 16#a3, 16#0f};
   2113 dec_huffman_lookup(16#81, 16#c) -> {more, 16#a3, 16#18};
   2114 dec_huffman_lookup(16#81, 16#d) -> {more, 16#a3, 16#1f};
   2115 dec_huffman_lookup(16#81, 16#e) -> {more, 16#a3, 16#29};
   2116 dec_huffman_lookup(16#81, 16#f) -> {ok, 16#a3, 16#38};
   2117 dec_huffman_lookup(16#82, 16#0) -> {more, 16#a4, 16#02};
   2118 dec_huffman_lookup(16#82, 16#1) -> {more, 16#a4, 16#09};
   2119 dec_huffman_lookup(16#82, 16#2) -> {more, 16#a4, 16#17};
   2120 dec_huffman_lookup(16#82, 16#3) -> {ok, 16#a4, 16#28};
   2121 dec_huffman_lookup(16#82, 16#4) -> {more, 16#a9, 16#02};
   2122 dec_huffman_lookup(16#82, 16#5) -> {more, 16#a9, 16#09};
   2123 dec_huffman_lookup(16#82, 16#6) -> {more, 16#a9, 16#17};
   2124 dec_huffman_lookup(16#82, 16#7) -> {ok, 16#a9, 16#28};
   2125 dec_huffman_lookup(16#82, 16#8) -> {more, 16#aa, 16#02};
   2126 dec_huffman_lookup(16#82, 16#9) -> {more, 16#aa, 16#09};
   2127 dec_huffman_lookup(16#82, 16#a) -> {more, 16#aa, 16#17};
   2128 dec_huffman_lookup(16#82, 16#b) -> {ok, 16#aa, 16#28};
   2129 dec_huffman_lookup(16#82, 16#c) -> {more, 16#ad, 16#02};
   2130 dec_huffman_lookup(16#82, 16#d) -> {more, 16#ad, 16#09};
   2131 dec_huffman_lookup(16#82, 16#e) -> {more, 16#ad, 16#17};
   2132 dec_huffman_lookup(16#82, 16#f) -> {ok, 16#ad, 16#28};
   2133 dec_huffman_lookup(16#83, 16#0) -> {more, 16#a4, 16#03};
   2134 dec_huffman_lookup(16#83, 16#1) -> {more, 16#a4, 16#06};
   2135 dec_huffman_lookup(16#83, 16#2) -> {more, 16#a4, 16#0a};
   2136 dec_huffman_lookup(16#83, 16#3) -> {more, 16#a4, 16#0f};
   2137 dec_huffman_lookup(16#83, 16#4) -> {more, 16#a4, 16#18};
   2138 dec_huffman_lookup(16#83, 16#5) -> {more, 16#a4, 16#1f};
   2139 dec_huffman_lookup(16#83, 16#6) -> {more, 16#a4, 16#29};
   2140 dec_huffman_lookup(16#83, 16#7) -> {ok, 16#a4, 16#38};
   2141 dec_huffman_lookup(16#83, 16#8) -> {more, 16#a9, 16#03};
   2142 dec_huffman_lookup(16#83, 16#9) -> {more, 16#a9, 16#06};
   2143 dec_huffman_lookup(16#83, 16#a) -> {more, 16#a9, 16#0a};
   2144 dec_huffman_lookup(16#83, 16#b) -> {more, 16#a9, 16#0f};
   2145 dec_huffman_lookup(16#83, 16#c) -> {more, 16#a9, 16#18};
   2146 dec_huffman_lookup(16#83, 16#d) -> {more, 16#a9, 16#1f};
   2147 dec_huffman_lookup(16#83, 16#e) -> {more, 16#a9, 16#29};
   2148 dec_huffman_lookup(16#83, 16#f) -> {ok, 16#a9, 16#38};
   2149 dec_huffman_lookup(16#84, 16#0) -> {more, 16#aa, 16#03};
   2150 dec_huffman_lookup(16#84, 16#1) -> {more, 16#aa, 16#06};
   2151 dec_huffman_lookup(16#84, 16#2) -> {more, 16#aa, 16#0a};
   2152 dec_huffman_lookup(16#84, 16#3) -> {more, 16#aa, 16#0f};
   2153 dec_huffman_lookup(16#84, 16#4) -> {more, 16#aa, 16#18};
   2154 dec_huffman_lookup(16#84, 16#5) -> {more, 16#aa, 16#1f};
   2155 dec_huffman_lookup(16#84, 16#6) -> {more, 16#aa, 16#29};
   2156 dec_huffman_lookup(16#84, 16#7) -> {ok, 16#aa, 16#38};
   2157 dec_huffman_lookup(16#84, 16#8) -> {more, 16#ad, 16#03};
   2158 dec_huffman_lookup(16#84, 16#9) -> {more, 16#ad, 16#06};
   2159 dec_huffman_lookup(16#84, 16#a) -> {more, 16#ad, 16#0a};
   2160 dec_huffman_lookup(16#84, 16#b) -> {more, 16#ad, 16#0f};
   2161 dec_huffman_lookup(16#84, 16#c) -> {more, 16#ad, 16#18};
   2162 dec_huffman_lookup(16#84, 16#d) -> {more, 16#ad, 16#1f};
   2163 dec_huffman_lookup(16#84, 16#e) -> {more, 16#ad, 16#29};
   2164 dec_huffman_lookup(16#84, 16#f) -> {ok, 16#ad, 16#38};
   2165 dec_huffman_lookup(16#85, 16#0) -> {more, undefined, 16#89};
   2166 dec_huffman_lookup(16#85, 16#1) -> {more, undefined, 16#8a};
   2167 dec_huffman_lookup(16#85, 16#2) -> {more, undefined, 16#8c};
   2168 dec_huffman_lookup(16#85, 16#3) -> {more, undefined, 16#8d};
   2169 dec_huffman_lookup(16#85, 16#4) -> {more, undefined, 16#90};
   2170 dec_huffman_lookup(16#85, 16#5) -> {more, undefined, 16#91};
   2171 dec_huffman_lookup(16#85, 16#6) -> {more, undefined, 16#93};
   2172 dec_huffman_lookup(16#85, 16#7) -> {more, undefined, 16#96};
   2173 dec_huffman_lookup(16#85, 16#8) -> {more, undefined, 16#9c};
   2174 dec_huffman_lookup(16#85, 16#9) -> {more, undefined, 16#9f};
   2175 dec_huffman_lookup(16#85, 16#a) -> {more, undefined, 16#a3};
   2176 dec_huffman_lookup(16#85, 16#b) -> {more, undefined, 16#a6};
   2177 dec_huffman_lookup(16#85, 16#c) -> {more, undefined, 16#ab};
   2178 dec_huffman_lookup(16#85, 16#d) -> {more, undefined, 16#ae};
   2179 dec_huffman_lookup(16#85, 16#e) -> {more, undefined, 16#b5};
   2180 dec_huffman_lookup(16#85, 16#f) -> {ok, undefined, 16#be};
   2181 dec_huffman_lookup(16#86, 16#0) -> {ok, 16#b2, 16#00};
   2182 dec_huffman_lookup(16#86, 16#1) -> {ok, 16#b5, 16#00};
   2183 dec_huffman_lookup(16#86, 16#2) -> {ok, 16#b9, 16#00};
   2184 dec_huffman_lookup(16#86, 16#3) -> {ok, 16#ba, 16#00};
   2185 dec_huffman_lookup(16#86, 16#4) -> {ok, 16#bb, 16#00};
   2186 dec_huffman_lookup(16#86, 16#5) -> {ok, 16#bd, 16#00};
   2187 dec_huffman_lookup(16#86, 16#6) -> {ok, 16#be, 16#00};
   2188 dec_huffman_lookup(16#86, 16#7) -> {ok, 16#c4, 16#00};
   2189 dec_huffman_lookup(16#86, 16#8) -> {ok, 16#c6, 16#00};
   2190 dec_huffman_lookup(16#86, 16#9) -> {ok, 16#e4, 16#00};
   2191 dec_huffman_lookup(16#86, 16#a) -> {ok, 16#e8, 16#00};
   2192 dec_huffman_lookup(16#86, 16#b) -> {ok, 16#e9, 16#00};
   2193 dec_huffman_lookup(16#86, 16#c) -> {more, undefined, 16#94};
   2194 dec_huffman_lookup(16#86, 16#d) -> {more, undefined, 16#95};
   2195 dec_huffman_lookup(16#86, 16#e) -> {more, undefined, 16#97};
   2196 dec_huffman_lookup(16#86, 16#f) -> {more, undefined, 16#98};
   2197 dec_huffman_lookup(16#87, 16#0) -> {more, 16#b2, 16#01};
   2198 dec_huffman_lookup(16#87, 16#1) -> {ok, 16#b2, 16#16};
   2199 dec_huffman_lookup(16#87, 16#2) -> {more, 16#b5, 16#01};
   2200 dec_huffman_lookup(16#87, 16#3) -> {ok, 16#b5, 16#16};
   2201 dec_huffman_lookup(16#87, 16#4) -> {more, 16#b9, 16#01};
   2202 dec_huffman_lookup(16#87, 16#5) -> {ok, 16#b9, 16#16};
   2203 dec_huffman_lookup(16#87, 16#6) -> {more, 16#ba, 16#01};
   2204 dec_huffman_lookup(16#87, 16#7) -> {ok, 16#ba, 16#16};
   2205 dec_huffman_lookup(16#87, 16#8) -> {more, 16#bb, 16#01};
   2206 dec_huffman_lookup(16#87, 16#9) -> {ok, 16#bb, 16#16};
   2207 dec_huffman_lookup(16#87, 16#a) -> {more, 16#bd, 16#01};
   2208 dec_huffman_lookup(16#87, 16#b) -> {ok, 16#bd, 16#16};
   2209 dec_huffman_lookup(16#87, 16#c) -> {more, 16#be, 16#01};
   2210 dec_huffman_lookup(16#87, 16#d) -> {ok, 16#be, 16#16};
   2211 dec_huffman_lookup(16#87, 16#e) -> {more, 16#c4, 16#01};
   2212 dec_huffman_lookup(16#87, 16#f) -> {ok, 16#c4, 16#16};
   2213 dec_huffman_lookup(16#88, 16#0) -> {more, 16#b2, 16#02};
   2214 dec_huffman_lookup(16#88, 16#1) -> {more, 16#b2, 16#09};
   2215 dec_huffman_lookup(16#88, 16#2) -> {more, 16#b2, 16#17};
   2216 dec_huffman_lookup(16#88, 16#3) -> {ok, 16#b2, 16#28};
   2217 dec_huffman_lookup(16#88, 16#4) -> {more, 16#b5, 16#02};
   2218 dec_huffman_lookup(16#88, 16#5) -> {more, 16#b5, 16#09};
   2219 dec_huffman_lookup(16#88, 16#6) -> {more, 16#b5, 16#17};
   2220 dec_huffman_lookup(16#88, 16#7) -> {ok, 16#b5, 16#28};
   2221 dec_huffman_lookup(16#88, 16#8) -> {more, 16#b9, 16#02};
   2222 dec_huffman_lookup(16#88, 16#9) -> {more, 16#b9, 16#09};
   2223 dec_huffman_lookup(16#88, 16#a) -> {more, 16#b9, 16#17};
   2224 dec_huffman_lookup(16#88, 16#b) -> {ok, 16#b9, 16#28};
   2225 dec_huffman_lookup(16#88, 16#c) -> {more, 16#ba, 16#02};
   2226 dec_huffman_lookup(16#88, 16#d) -> {more, 16#ba, 16#09};
   2227 dec_huffman_lookup(16#88, 16#e) -> {more, 16#ba, 16#17};
   2228 dec_huffman_lookup(16#88, 16#f) -> {ok, 16#ba, 16#28};
   2229 dec_huffman_lookup(16#89, 16#0) -> {more, 16#b2, 16#03};
   2230 dec_huffman_lookup(16#89, 16#1) -> {more, 16#b2, 16#06};
   2231 dec_huffman_lookup(16#89, 16#2) -> {more, 16#b2, 16#0a};
   2232 dec_huffman_lookup(16#89, 16#3) -> {more, 16#b2, 16#0f};
   2233 dec_huffman_lookup(16#89, 16#4) -> {more, 16#b2, 16#18};
   2234 dec_huffman_lookup(16#89, 16#5) -> {more, 16#b2, 16#1f};
   2235 dec_huffman_lookup(16#89, 16#6) -> {more, 16#b2, 16#29};
   2236 dec_huffman_lookup(16#89, 16#7) -> {ok, 16#b2, 16#38};
   2237 dec_huffman_lookup(16#89, 16#8) -> {more, 16#b5, 16#03};
   2238 dec_huffman_lookup(16#89, 16#9) -> {more, 16#b5, 16#06};
   2239 dec_huffman_lookup(16#89, 16#a) -> {more, 16#b5, 16#0a};
   2240 dec_huffman_lookup(16#89, 16#b) -> {more, 16#b5, 16#0f};
   2241 dec_huffman_lookup(16#89, 16#c) -> {more, 16#b5, 16#18};
   2242 dec_huffman_lookup(16#89, 16#d) -> {more, 16#b5, 16#1f};
   2243 dec_huffman_lookup(16#89, 16#e) -> {more, 16#b5, 16#29};
   2244 dec_huffman_lookup(16#89, 16#f) -> {ok, 16#b5, 16#38};
   2245 dec_huffman_lookup(16#8a, 16#0) -> {more, 16#b9, 16#03};
   2246 dec_huffman_lookup(16#8a, 16#1) -> {more, 16#b9, 16#06};
   2247 dec_huffman_lookup(16#8a, 16#2) -> {more, 16#b9, 16#0a};
   2248 dec_huffman_lookup(16#8a, 16#3) -> {more, 16#b9, 16#0f};
   2249 dec_huffman_lookup(16#8a, 16#4) -> {more, 16#b9, 16#18};
   2250 dec_huffman_lookup(16#8a, 16#5) -> {more, 16#b9, 16#1f};
   2251 dec_huffman_lookup(16#8a, 16#6) -> {more, 16#b9, 16#29};
   2252 dec_huffman_lookup(16#8a, 16#7) -> {ok, 16#b9, 16#38};
   2253 dec_huffman_lookup(16#8a, 16#8) -> {more, 16#ba, 16#03};
   2254 dec_huffman_lookup(16#8a, 16#9) -> {more, 16#ba, 16#06};
   2255 dec_huffman_lookup(16#8a, 16#a) -> {more, 16#ba, 16#0a};
   2256 dec_huffman_lookup(16#8a, 16#b) -> {more, 16#ba, 16#0f};
   2257 dec_huffman_lookup(16#8a, 16#c) -> {more, 16#ba, 16#18};
   2258 dec_huffman_lookup(16#8a, 16#d) -> {more, 16#ba, 16#1f};
   2259 dec_huffman_lookup(16#8a, 16#e) -> {more, 16#ba, 16#29};
   2260 dec_huffman_lookup(16#8a, 16#f) -> {ok, 16#ba, 16#38};
   2261 dec_huffman_lookup(16#8b, 16#0) -> {more, 16#bb, 16#02};
   2262 dec_huffman_lookup(16#8b, 16#1) -> {more, 16#bb, 16#09};
   2263 dec_huffman_lookup(16#8b, 16#2) -> {more, 16#bb, 16#17};
   2264 dec_huffman_lookup(16#8b, 16#3) -> {ok, 16#bb, 16#28};
   2265 dec_huffman_lookup(16#8b, 16#4) -> {more, 16#bd, 16#02};
   2266 dec_huffman_lookup(16#8b, 16#5) -> {more, 16#bd, 16#09};
   2267 dec_huffman_lookup(16#8b, 16#6) -> {more, 16#bd, 16#17};
   2268 dec_huffman_lookup(16#8b, 16#7) -> {ok, 16#bd, 16#28};
   2269 dec_huffman_lookup(16#8b, 16#8) -> {more, 16#be, 16#02};
   2270 dec_huffman_lookup(16#8b, 16#9) -> {more, 16#be, 16#09};
   2271 dec_huffman_lookup(16#8b, 16#a) -> {more, 16#be, 16#17};
   2272 dec_huffman_lookup(16#8b, 16#b) -> {ok, 16#be, 16#28};
   2273 dec_huffman_lookup(16#8b, 16#c) -> {more, 16#c4, 16#02};
   2274 dec_huffman_lookup(16#8b, 16#d) -> {more, 16#c4, 16#09};
   2275 dec_huffman_lookup(16#8b, 16#e) -> {more, 16#c4, 16#17};
   2276 dec_huffman_lookup(16#8b, 16#f) -> {ok, 16#c4, 16#28};
   2277 dec_huffman_lookup(16#8c, 16#0) -> {more, 16#bb, 16#03};
   2278 dec_huffman_lookup(16#8c, 16#1) -> {more, 16#bb, 16#06};
   2279 dec_huffman_lookup(16#8c, 16#2) -> {more, 16#bb, 16#0a};
   2280 dec_huffman_lookup(16#8c, 16#3) -> {more, 16#bb, 16#0f};
   2281 dec_huffman_lookup(16#8c, 16#4) -> {more, 16#bb, 16#18};
   2282 dec_huffman_lookup(16#8c, 16#5) -> {more, 16#bb, 16#1f};
   2283 dec_huffman_lookup(16#8c, 16#6) -> {more, 16#bb, 16#29};
   2284 dec_huffman_lookup(16#8c, 16#7) -> {ok, 16#bb, 16#38};
   2285 dec_huffman_lookup(16#8c, 16#8) -> {more, 16#bd, 16#03};
   2286 dec_huffman_lookup(16#8c, 16#9) -> {more, 16#bd, 16#06};
   2287 dec_huffman_lookup(16#8c, 16#a) -> {more, 16#bd, 16#0a};
   2288 dec_huffman_lookup(16#8c, 16#b) -> {more, 16#bd, 16#0f};
   2289 dec_huffman_lookup(16#8c, 16#c) -> {more, 16#bd, 16#18};
   2290 dec_huffman_lookup(16#8c, 16#d) -> {more, 16#bd, 16#1f};
   2291 dec_huffman_lookup(16#8c, 16#e) -> {more, 16#bd, 16#29};
   2292 dec_huffman_lookup(16#8c, 16#f) -> {ok, 16#bd, 16#38};
   2293 dec_huffman_lookup(16#8d, 16#0) -> {more, 16#be, 16#03};
   2294 dec_huffman_lookup(16#8d, 16#1) -> {more, 16#be, 16#06};
   2295 dec_huffman_lookup(16#8d, 16#2) -> {more, 16#be, 16#0a};
   2296 dec_huffman_lookup(16#8d, 16#3) -> {more, 16#be, 16#0f};
   2297 dec_huffman_lookup(16#8d, 16#4) -> {more, 16#be, 16#18};
   2298 dec_huffman_lookup(16#8d, 16#5) -> {more, 16#be, 16#1f};
   2299 dec_huffman_lookup(16#8d, 16#6) -> {more, 16#be, 16#29};
   2300 dec_huffman_lookup(16#8d, 16#7) -> {ok, 16#be, 16#38};
   2301 dec_huffman_lookup(16#8d, 16#8) -> {more, 16#c4, 16#03};
   2302 dec_huffman_lookup(16#8d, 16#9) -> {more, 16#c4, 16#06};
   2303 dec_huffman_lookup(16#8d, 16#a) -> {more, 16#c4, 16#0a};
   2304 dec_huffman_lookup(16#8d, 16#b) -> {more, 16#c4, 16#0f};
   2305 dec_huffman_lookup(16#8d, 16#c) -> {more, 16#c4, 16#18};
   2306 dec_huffman_lookup(16#8d, 16#d) -> {more, 16#c4, 16#1f};
   2307 dec_huffman_lookup(16#8d, 16#e) -> {more, 16#c4, 16#29};
   2308 dec_huffman_lookup(16#8d, 16#f) -> {ok, 16#c4, 16#38};
   2309 dec_huffman_lookup(16#8e, 16#0) -> {more, 16#c6, 16#01};
   2310 dec_huffman_lookup(16#8e, 16#1) -> {ok, 16#c6, 16#16};
   2311 dec_huffman_lookup(16#8e, 16#2) -> {more, 16#e4, 16#01};
   2312 dec_huffman_lookup(16#8e, 16#3) -> {ok, 16#e4, 16#16};
   2313 dec_huffman_lookup(16#8e, 16#4) -> {more, 16#e8, 16#01};
   2314 dec_huffman_lookup(16#8e, 16#5) -> {ok, 16#e8, 16#16};
   2315 dec_huffman_lookup(16#8e, 16#6) -> {more, 16#e9, 16#01};
   2316 dec_huffman_lookup(16#8e, 16#7) -> {ok, 16#e9, 16#16};
   2317 dec_huffman_lookup(16#8e, 16#8) -> {ok, 16#01, 16#00};
   2318 dec_huffman_lookup(16#8e, 16#9) -> {ok, 16#87, 16#00};
   2319 dec_huffman_lookup(16#8e, 16#a) -> {ok, 16#89, 16#00};
   2320 dec_huffman_lookup(16#8e, 16#b) -> {ok, 16#8a, 16#00};
   2321 dec_huffman_lookup(16#8e, 16#c) -> {ok, 16#8b, 16#00};
   2322 dec_huffman_lookup(16#8e, 16#d) -> {ok, 16#8c, 16#00};
   2323 dec_huffman_lookup(16#8e, 16#e) -> {ok, 16#8d, 16#00};
   2324 dec_huffman_lookup(16#8e, 16#f) -> {ok, 16#8f, 16#00};
   2325 dec_huffman_lookup(16#8f, 16#0) -> {more, 16#c6, 16#02};
   2326 dec_huffman_lookup(16#8f, 16#1) -> {more, 16#c6, 16#09};
   2327 dec_huffman_lookup(16#8f, 16#2) -> {more, 16#c6, 16#17};
   2328 dec_huffman_lookup(16#8f, 16#3) -> {ok, 16#c6, 16#28};
   2329 dec_huffman_lookup(16#8f, 16#4) -> {more, 16#e4, 16#02};
   2330 dec_huffman_lookup(16#8f, 16#5) -> {more, 16#e4, 16#09};
   2331 dec_huffman_lookup(16#8f, 16#6) -> {more, 16#e4, 16#17};
   2332 dec_huffman_lookup(16#8f, 16#7) -> {ok, 16#e4, 16#28};
   2333 dec_huffman_lookup(16#8f, 16#8) -> {more, 16#e8, 16#02};
   2334 dec_huffman_lookup(16#8f, 16#9) -> {more, 16#e8, 16#09};
   2335 dec_huffman_lookup(16#8f, 16#a) -> {more, 16#e8, 16#17};
   2336 dec_huffman_lookup(16#8f, 16#b) -> {ok, 16#e8, 16#28};
   2337 dec_huffman_lookup(16#8f, 16#c) -> {more, 16#e9, 16#02};
   2338 dec_huffman_lookup(16#8f, 16#d) -> {more, 16#e9, 16#09};
   2339 dec_huffman_lookup(16#8f, 16#e) -> {more, 16#e9, 16#17};
   2340 dec_huffman_lookup(16#8f, 16#f) -> {ok, 16#e9, 16#28};
   2341 dec_huffman_lookup(16#90, 16#0) -> {more, 16#c6, 16#03};
   2342 dec_huffman_lookup(16#90, 16#1) -> {more, 16#c6, 16#06};
   2343 dec_huffman_lookup(16#90, 16#2) -> {more, 16#c6, 16#0a};
   2344 dec_huffman_lookup(16#90, 16#3) -> {more, 16#c6, 16#0f};
   2345 dec_huffman_lookup(16#90, 16#4) -> {more, 16#c6, 16#18};
   2346 dec_huffman_lookup(16#90, 16#5) -> {more, 16#c6, 16#1f};
   2347 dec_huffman_lookup(16#90, 16#6) -> {more, 16#c6, 16#29};
   2348 dec_huffman_lookup(16#90, 16#7) -> {ok, 16#c6, 16#38};
   2349 dec_huffman_lookup(16#90, 16#8) -> {more, 16#e4, 16#03};
   2350 dec_huffman_lookup(16#90, 16#9) -> {more, 16#e4, 16#06};
   2351 dec_huffman_lookup(16#90, 16#a) -> {more, 16#e4, 16#0a};
   2352 dec_huffman_lookup(16#90, 16#b) -> {more, 16#e4, 16#0f};
   2353 dec_huffman_lookup(16#90, 16#c) -> {more, 16#e4, 16#18};
   2354 dec_huffman_lookup(16#90, 16#d) -> {more, 16#e4, 16#1f};
   2355 dec_huffman_lookup(16#90, 16#e) -> {more, 16#e4, 16#29};
   2356 dec_huffman_lookup(16#90, 16#f) -> {ok, 16#e4, 16#38};
   2357 dec_huffman_lookup(16#91, 16#0) -> {more, 16#e8, 16#03};
   2358 dec_huffman_lookup(16#91, 16#1) -> {more, 16#e8, 16#06};
   2359 dec_huffman_lookup(16#91, 16#2) -> {more, 16#e8, 16#0a};
   2360 dec_huffman_lookup(16#91, 16#3) -> {more, 16#e8, 16#0f};
   2361 dec_huffman_lookup(16#91, 16#4) -> {more, 16#e8, 16#18};
   2362 dec_huffman_lookup(16#91, 16#5) -> {more, 16#e8, 16#1f};
   2363 dec_huffman_lookup(16#91, 16#6) -> {more, 16#e8, 16#29};
   2364 dec_huffman_lookup(16#91, 16#7) -> {ok, 16#e8, 16#38};
   2365 dec_huffman_lookup(16#91, 16#8) -> {more, 16#e9, 16#03};
   2366 dec_huffman_lookup(16#91, 16#9) -> {more, 16#e9, 16#06};
   2367 dec_huffman_lookup(16#91, 16#a) -> {more, 16#e9, 16#0a};
   2368 dec_huffman_lookup(16#91, 16#b) -> {more, 16#e9, 16#0f};
   2369 dec_huffman_lookup(16#91, 16#c) -> {more, 16#e9, 16#18};
   2370 dec_huffman_lookup(16#91, 16#d) -> {more, 16#e9, 16#1f};
   2371 dec_huffman_lookup(16#91, 16#e) -> {more, 16#e9, 16#29};
   2372 dec_huffman_lookup(16#91, 16#f) -> {ok, 16#e9, 16#38};
   2373 dec_huffman_lookup(16#92, 16#0) -> {more, 16#01, 16#01};
   2374 dec_huffman_lookup(16#92, 16#1) -> {ok, 16#01, 16#16};
   2375 dec_huffman_lookup(16#92, 16#2) -> {more, 16#87, 16#01};
   2376 dec_huffman_lookup(16#92, 16#3) -> {ok, 16#87, 16#16};
   2377 dec_huffman_lookup(16#92, 16#4) -> {more, 16#89, 16#01};
   2378 dec_huffman_lookup(16#92, 16#5) -> {ok, 16#89, 16#16};
   2379 dec_huffman_lookup(16#92, 16#6) -> {more, 16#8a, 16#01};
   2380 dec_huffman_lookup(16#92, 16#7) -> {ok, 16#8a, 16#16};
   2381 dec_huffman_lookup(16#92, 16#8) -> {more, 16#8b, 16#01};
   2382 dec_huffman_lookup(16#92, 16#9) -> {ok, 16#8b, 16#16};
   2383 dec_huffman_lookup(16#92, 16#a) -> {more, 16#8c, 16#01};
   2384 dec_huffman_lookup(16#92, 16#b) -> {ok, 16#8c, 16#16};
   2385 dec_huffman_lookup(16#92, 16#c) -> {more, 16#8d, 16#01};
   2386 dec_huffman_lookup(16#92, 16#d) -> {ok, 16#8d, 16#16};
   2387 dec_huffman_lookup(16#92, 16#e) -> {more, 16#8f, 16#01};
   2388 dec_huffman_lookup(16#92, 16#f) -> {ok, 16#8f, 16#16};
   2389 dec_huffman_lookup(16#93, 16#0) -> {more, 16#01, 16#02};
   2390 dec_huffman_lookup(16#93, 16#1) -> {more, 16#01, 16#09};
   2391 dec_huffman_lookup(16#93, 16#2) -> {more, 16#01, 16#17};
   2392 dec_huffman_lookup(16#93, 16#3) -> {ok, 16#01, 16#28};
   2393 dec_huffman_lookup(16#93, 16#4) -> {more, 16#87, 16#02};
   2394 dec_huffman_lookup(16#93, 16#5) -> {more, 16#87, 16#09};
   2395 dec_huffman_lookup(16#93, 16#6) -> {more, 16#87, 16#17};
   2396 dec_huffman_lookup(16#93, 16#7) -> {ok, 16#87, 16#28};
   2397 dec_huffman_lookup(16#93, 16#8) -> {more, 16#89, 16#02};
   2398 dec_huffman_lookup(16#93, 16#9) -> {more, 16#89, 16#09};
   2399 dec_huffman_lookup(16#93, 16#a) -> {more, 16#89, 16#17};
   2400 dec_huffman_lookup(16#93, 16#b) -> {ok, 16#89, 16#28};
   2401 dec_huffman_lookup(16#93, 16#c) -> {more, 16#8a, 16#02};
   2402 dec_huffman_lookup(16#93, 16#d) -> {more, 16#8a, 16#09};
   2403 dec_huffman_lookup(16#93, 16#e) -> {more, 16#8a, 16#17};
   2404 dec_huffman_lookup(16#93, 16#f) -> {ok, 16#8a, 16#28};
   2405 dec_huffman_lookup(16#94, 16#0) -> {more, 16#01, 16#03};
   2406 dec_huffman_lookup(16#94, 16#1) -> {more, 16#01, 16#06};
   2407 dec_huffman_lookup(16#94, 16#2) -> {more, 16#01, 16#0a};
   2408 dec_huffman_lookup(16#94, 16#3) -> {more, 16#01, 16#0f};
   2409 dec_huffman_lookup(16#94, 16#4) -> {more, 16#01, 16#18};
   2410 dec_huffman_lookup(16#94, 16#5) -> {more, 16#01, 16#1f};
   2411 dec_huffman_lookup(16#94, 16#6) -> {more, 16#01, 16#29};
   2412 dec_huffman_lookup(16#94, 16#7) -> {ok, 16#01, 16#38};
   2413 dec_huffman_lookup(16#94, 16#8) -> {more, 16#87, 16#03};
   2414 dec_huffman_lookup(16#94, 16#9) -> {more, 16#87, 16#06};
   2415 dec_huffman_lookup(16#94, 16#a) -> {more, 16#87, 16#0a};
   2416 dec_huffman_lookup(16#94, 16#b) -> {more, 16#87, 16#0f};
   2417 dec_huffman_lookup(16#94, 16#c) -> {more, 16#87, 16#18};
   2418 dec_huffman_lookup(16#94, 16#d) -> {more, 16#87, 16#1f};
   2419 dec_huffman_lookup(16#94, 16#e) -> {more, 16#87, 16#29};
   2420 dec_huffman_lookup(16#94, 16#f) -> {ok, 16#87, 16#38};
   2421 dec_huffman_lookup(16#95, 16#0) -> {more, 16#89, 16#03};
   2422 dec_huffman_lookup(16#95, 16#1) -> {more, 16#89, 16#06};
   2423 dec_huffman_lookup(16#95, 16#2) -> {more, 16#89, 16#0a};
   2424 dec_huffman_lookup(16#95, 16#3) -> {more, 16#89, 16#0f};
   2425 dec_huffman_lookup(16#95, 16#4) -> {more, 16#89, 16#18};
   2426 dec_huffman_lookup(16#95, 16#5) -> {more, 16#89, 16#1f};
   2427 dec_huffman_lookup(16#95, 16#6) -> {more, 16#89, 16#29};
   2428 dec_huffman_lookup(16#95, 16#7) -> {ok, 16#89, 16#38};
   2429 dec_huffman_lookup(16#95, 16#8) -> {more, 16#8a, 16#03};
   2430 dec_huffman_lookup(16#95, 16#9) -> {more, 16#8a, 16#06};
   2431 dec_huffman_lookup(16#95, 16#a) -> {more, 16#8a, 16#0a};
   2432 dec_huffman_lookup(16#95, 16#b) -> {more, 16#8a, 16#0f};
   2433 dec_huffman_lookup(16#95, 16#c) -> {more, 16#8a, 16#18};
   2434 dec_huffman_lookup(16#95, 16#d) -> {more, 16#8a, 16#1f};
   2435 dec_huffman_lookup(16#95, 16#e) -> {more, 16#8a, 16#29};
   2436 dec_huffman_lookup(16#95, 16#f) -> {ok, 16#8a, 16#38};
   2437 dec_huffman_lookup(16#96, 16#0) -> {more, 16#8b, 16#02};
   2438 dec_huffman_lookup(16#96, 16#1) -> {more, 16#8b, 16#09};
   2439 dec_huffman_lookup(16#96, 16#2) -> {more, 16#8b, 16#17};
   2440 dec_huffman_lookup(16#96, 16#3) -> {ok, 16#8b, 16#28};
   2441 dec_huffman_lookup(16#96, 16#4) -> {more, 16#8c, 16#02};
   2442 dec_huffman_lookup(16#96, 16#5) -> {more, 16#8c, 16#09};
   2443 dec_huffman_lookup(16#96, 16#6) -> {more, 16#8c, 16#17};
   2444 dec_huffman_lookup(16#96, 16#7) -> {ok, 16#8c, 16#28};
   2445 dec_huffman_lookup(16#96, 16#8) -> {more, 16#8d, 16#02};
   2446 dec_huffman_lookup(16#96, 16#9) -> {more, 16#8d, 16#09};
   2447 dec_huffman_lookup(16#96, 16#a) -> {more, 16#8d, 16#17};
   2448 dec_huffman_lookup(16#96, 16#b) -> {ok, 16#8d, 16#28};
   2449 dec_huffman_lookup(16#96, 16#c) -> {more, 16#8f, 16#02};
   2450 dec_huffman_lookup(16#96, 16#d) -> {more, 16#8f, 16#09};
   2451 dec_huffman_lookup(16#96, 16#e) -> {more, 16#8f, 16#17};
   2452 dec_huffman_lookup(16#96, 16#f) -> {ok, 16#8f, 16#28};
   2453 dec_huffman_lookup(16#97, 16#0) -> {more, 16#8b, 16#03};
   2454 dec_huffman_lookup(16#97, 16#1) -> {more, 16#8b, 16#06};
   2455 dec_huffman_lookup(16#97, 16#2) -> {more, 16#8b, 16#0a};
   2456 dec_huffman_lookup(16#97, 16#3) -> {more, 16#8b, 16#0f};
   2457 dec_huffman_lookup(16#97, 16#4) -> {more, 16#8b, 16#18};
   2458 dec_huffman_lookup(16#97, 16#5) -> {more, 16#8b, 16#1f};
   2459 dec_huffman_lookup(16#97, 16#6) -> {more, 16#8b, 16#29};
   2460 dec_huffman_lookup(16#97, 16#7) -> {ok, 16#8b, 16#38};
   2461 dec_huffman_lookup(16#97, 16#8) -> {more, 16#8c, 16#03};
   2462 dec_huffman_lookup(16#97, 16#9) -> {more, 16#8c, 16#06};
   2463 dec_huffman_lookup(16#97, 16#a) -> {more, 16#8c, 16#0a};
   2464 dec_huffman_lookup(16#97, 16#b) -> {more, 16#8c, 16#0f};
   2465 dec_huffman_lookup(16#97, 16#c) -> {more, 16#8c, 16#18};
   2466 dec_huffman_lookup(16#97, 16#d) -> {more, 16#8c, 16#1f};
   2467 dec_huffman_lookup(16#97, 16#e) -> {more, 16#8c, 16#29};
   2468 dec_huffman_lookup(16#97, 16#f) -> {ok, 16#8c, 16#38};
   2469 dec_huffman_lookup(16#98, 16#0) -> {more, 16#8d, 16#03};
   2470 dec_huffman_lookup(16#98, 16#1) -> {more, 16#8d, 16#06};
   2471 dec_huffman_lookup(16#98, 16#2) -> {more, 16#8d, 16#0a};
   2472 dec_huffman_lookup(16#98, 16#3) -> {more, 16#8d, 16#0f};
   2473 dec_huffman_lookup(16#98, 16#4) -> {more, 16#8d, 16#18};
   2474 dec_huffman_lookup(16#98, 16#5) -> {more, 16#8d, 16#1f};
   2475 dec_huffman_lookup(16#98, 16#6) -> {more, 16#8d, 16#29};
   2476 dec_huffman_lookup(16#98, 16#7) -> {ok, 16#8d, 16#38};
   2477 dec_huffman_lookup(16#98, 16#8) -> {more, 16#8f, 16#03};
   2478 dec_huffman_lookup(16#98, 16#9) -> {more, 16#8f, 16#06};
   2479 dec_huffman_lookup(16#98, 16#a) -> {more, 16#8f, 16#0a};
   2480 dec_huffman_lookup(16#98, 16#b) -> {more, 16#8f, 16#0f};
   2481 dec_huffman_lookup(16#98, 16#c) -> {more, 16#8f, 16#18};
   2482 dec_huffman_lookup(16#98, 16#d) -> {more, 16#8f, 16#1f};
   2483 dec_huffman_lookup(16#98, 16#e) -> {more, 16#8f, 16#29};
   2484 dec_huffman_lookup(16#98, 16#f) -> {ok, 16#8f, 16#38};
   2485 dec_huffman_lookup(16#99, 16#0) -> {more, undefined, 16#9d};
   2486 dec_huffman_lookup(16#99, 16#1) -> {more, undefined, 16#9e};
   2487 dec_huffman_lookup(16#99, 16#2) -> {more, undefined, 16#a0};
   2488 dec_huffman_lookup(16#99, 16#3) -> {more, undefined, 16#a1};
   2489 dec_huffman_lookup(16#99, 16#4) -> {more, undefined, 16#a4};
   2490 dec_huffman_lookup(16#99, 16#5) -> {more, undefined, 16#a5};
   2491 dec_huffman_lookup(16#99, 16#6) -> {more, undefined, 16#a7};
   2492 dec_huffman_lookup(16#99, 16#7) -> {more, undefined, 16#a8};
   2493 dec_huffman_lookup(16#99, 16#8) -> {more, undefined, 16#ac};
   2494 dec_huffman_lookup(16#99, 16#9) -> {more, undefined, 16#ad};
   2495 dec_huffman_lookup(16#99, 16#a) -> {more, undefined, 16#af};
   2496 dec_huffman_lookup(16#99, 16#b) -> {more, undefined, 16#b1};
   2497 dec_huffman_lookup(16#99, 16#c) -> {more, undefined, 16#b6};
   2498 dec_huffman_lookup(16#99, 16#d) -> {more, undefined, 16#b9};
   2499 dec_huffman_lookup(16#99, 16#e) -> {more, undefined, 16#bf};
   2500 dec_huffman_lookup(16#99, 16#f) -> {ok, undefined, 16#cf};
   2501 dec_huffman_lookup(16#9a, 16#0) -> {ok, 16#93, 16#00};
   2502 dec_huffman_lookup(16#9a, 16#1) -> {ok, 16#95, 16#00};
   2503 dec_huffman_lookup(16#9a, 16#2) -> {ok, 16#96, 16#00};
   2504 dec_huffman_lookup(16#9a, 16#3) -> {ok, 16#97, 16#00};
   2505 dec_huffman_lookup(16#9a, 16#4) -> {ok, 16#98, 16#00};
   2506 dec_huffman_lookup(16#9a, 16#5) -> {ok, 16#9b, 16#00};
   2507 dec_huffman_lookup(16#9a, 16#6) -> {ok, 16#9d, 16#00};
   2508 dec_huffman_lookup(16#9a, 16#7) -> {ok, 16#9e, 16#00};
   2509 dec_huffman_lookup(16#9a, 16#8) -> {ok, 16#a5, 16#00};
   2510 dec_huffman_lookup(16#9a, 16#9) -> {ok, 16#a6, 16#00};
   2511 dec_huffman_lookup(16#9a, 16#a) -> {ok, 16#a8, 16#00};
   2512 dec_huffman_lookup(16#9a, 16#b) -> {ok, 16#ae, 16#00};
   2513 dec_huffman_lookup(16#9a, 16#c) -> {ok, 16#af, 16#00};
   2514 dec_huffman_lookup(16#9a, 16#d) -> {ok, 16#b4, 16#00};
   2515 dec_huffman_lookup(16#9a, 16#e) -> {ok, 16#b6, 16#00};
   2516 dec_huffman_lookup(16#9a, 16#f) -> {ok, 16#b7, 16#00};
   2517 dec_huffman_lookup(16#9b, 16#0) -> {more, 16#93, 16#01};
   2518 dec_huffman_lookup(16#9b, 16#1) -> {ok, 16#93, 16#16};
   2519 dec_huffman_lookup(16#9b, 16#2) -> {more, 16#95, 16#01};
   2520 dec_huffman_lookup(16#9b, 16#3) -> {ok, 16#95, 16#16};
   2521 dec_huffman_lookup(16#9b, 16#4) -> {more, 16#96, 16#01};
   2522 dec_huffman_lookup(16#9b, 16#5) -> {ok, 16#96, 16#16};
   2523 dec_huffman_lookup(16#9b, 16#6) -> {more, 16#97, 16#01};
   2524 dec_huffman_lookup(16#9b, 16#7) -> {ok, 16#97, 16#16};
   2525 dec_huffman_lookup(16#9b, 16#8) -> {more, 16#98, 16#01};
   2526 dec_huffman_lookup(16#9b, 16#9) -> {ok, 16#98, 16#16};
   2527 dec_huffman_lookup(16#9b, 16#a) -> {more, 16#9b, 16#01};
   2528 dec_huffman_lookup(16#9b, 16#b) -> {ok, 16#9b, 16#16};
   2529 dec_huffman_lookup(16#9b, 16#c) -> {more, 16#9d, 16#01};
   2530 dec_huffman_lookup(16#9b, 16#d) -> {ok, 16#9d, 16#16};
   2531 dec_huffman_lookup(16#9b, 16#e) -> {more, 16#9e, 16#01};
   2532 dec_huffman_lookup(16#9b, 16#f) -> {ok, 16#9e, 16#16};
   2533 dec_huffman_lookup(16#9c, 16#0) -> {more, 16#93, 16#02};
   2534 dec_huffman_lookup(16#9c, 16#1) -> {more, 16#93, 16#09};
   2535 dec_huffman_lookup(16#9c, 16#2) -> {more, 16#93, 16#17};
   2536 dec_huffman_lookup(16#9c, 16#3) -> {ok, 16#93, 16#28};
   2537 dec_huffman_lookup(16#9c, 16#4) -> {more, 16#95, 16#02};
   2538 dec_huffman_lookup(16#9c, 16#5) -> {more, 16#95, 16#09};
   2539 dec_huffman_lookup(16#9c, 16#6) -> {more, 16#95, 16#17};
   2540 dec_huffman_lookup(16#9c, 16#7) -> {ok, 16#95, 16#28};
   2541 dec_huffman_lookup(16#9c, 16#8) -> {more, 16#96, 16#02};
   2542 dec_huffman_lookup(16#9c, 16#9) -> {more, 16#96, 16#09};
   2543 dec_huffman_lookup(16#9c, 16#a) -> {more, 16#96, 16#17};
   2544 dec_huffman_lookup(16#9c, 16#b) -> {ok, 16#96, 16#28};
   2545 dec_huffman_lookup(16#9c, 16#c) -> {more, 16#97, 16#02};
   2546 dec_huffman_lookup(16#9c, 16#d) -> {more, 16#97, 16#09};
   2547 dec_huffman_lookup(16#9c, 16#e) -> {more, 16#97, 16#17};
   2548 dec_huffman_lookup(16#9c, 16#f) -> {ok, 16#97, 16#28};
   2549 dec_huffman_lookup(16#9d, 16#0) -> {more, 16#93, 16#03};
   2550 dec_huffman_lookup(16#9d, 16#1) -> {more, 16#93, 16#06};
   2551 dec_huffman_lookup(16#9d, 16#2) -> {more, 16#93, 16#0a};
   2552 dec_huffman_lookup(16#9d, 16#3) -> {more, 16#93, 16#0f};
   2553 dec_huffman_lookup(16#9d, 16#4) -> {more, 16#93, 16#18};
   2554 dec_huffman_lookup(16#9d, 16#5) -> {more, 16#93, 16#1f};
   2555 dec_huffman_lookup(16#9d, 16#6) -> {more, 16#93, 16#29};
   2556 dec_huffman_lookup(16#9d, 16#7) -> {ok, 16#93, 16#38};
   2557 dec_huffman_lookup(16#9d, 16#8) -> {more, 16#95, 16#03};
   2558 dec_huffman_lookup(16#9d, 16#9) -> {more, 16#95, 16#06};
   2559 dec_huffman_lookup(16#9d, 16#a) -> {more, 16#95, 16#0a};
   2560 dec_huffman_lookup(16#9d, 16#b) -> {more, 16#95, 16#0f};
   2561 dec_huffman_lookup(16#9d, 16#c) -> {more, 16#95, 16#18};
   2562 dec_huffman_lookup(16#9d, 16#d) -> {more, 16#95, 16#1f};
   2563 dec_huffman_lookup(16#9d, 16#e) -> {more, 16#95, 16#29};
   2564 dec_huffman_lookup(16#9d, 16#f) -> {ok, 16#95, 16#38};
   2565 dec_huffman_lookup(16#9e, 16#0) -> {more, 16#96, 16#03};
   2566 dec_huffman_lookup(16#9e, 16#1) -> {more, 16#96, 16#06};
   2567 dec_huffman_lookup(16#9e, 16#2) -> {more, 16#96, 16#0a};
   2568 dec_huffman_lookup(16#9e, 16#3) -> {more, 16#96, 16#0f};
   2569 dec_huffman_lookup(16#9e, 16#4) -> {more, 16#96, 16#18};
   2570 dec_huffman_lookup(16#9e, 16#5) -> {more, 16#96, 16#1f};
   2571 dec_huffman_lookup(16#9e, 16#6) -> {more, 16#96, 16#29};
   2572 dec_huffman_lookup(16#9e, 16#7) -> {ok, 16#96, 16#38};
   2573 dec_huffman_lookup(16#9e, 16#8) -> {more, 16#97, 16#03};
   2574 dec_huffman_lookup(16#9e, 16#9) -> {more, 16#97, 16#06};
   2575 dec_huffman_lookup(16#9e, 16#a) -> {more, 16#97, 16#0a};
   2576 dec_huffman_lookup(16#9e, 16#b) -> {more, 16#97, 16#0f};
   2577 dec_huffman_lookup(16#9e, 16#c) -> {more, 16#97, 16#18};
   2578 dec_huffman_lookup(16#9e, 16#d) -> {more, 16#97, 16#1f};
   2579 dec_huffman_lookup(16#9e, 16#e) -> {more, 16#97, 16#29};
   2580 dec_huffman_lookup(16#9e, 16#f) -> {ok, 16#97, 16#38};
   2581 dec_huffman_lookup(16#9f, 16#0) -> {more, 16#98, 16#02};
   2582 dec_huffman_lookup(16#9f, 16#1) -> {more, 16#98, 16#09};
   2583 dec_huffman_lookup(16#9f, 16#2) -> {more, 16#98, 16#17};
   2584 dec_huffman_lookup(16#9f, 16#3) -> {ok, 16#98, 16#28};
   2585 dec_huffman_lookup(16#9f, 16#4) -> {more, 16#9b, 16#02};
   2586 dec_huffman_lookup(16#9f, 16#5) -> {more, 16#9b, 16#09};
   2587 dec_huffman_lookup(16#9f, 16#6) -> {more, 16#9b, 16#17};
   2588 dec_huffman_lookup(16#9f, 16#7) -> {ok, 16#9b, 16#28};
   2589 dec_huffman_lookup(16#9f, 16#8) -> {more, 16#9d, 16#02};
   2590 dec_huffman_lookup(16#9f, 16#9) -> {more, 16#9d, 16#09};
   2591 dec_huffman_lookup(16#9f, 16#a) -> {more, 16#9d, 16#17};
   2592 dec_huffman_lookup(16#9f, 16#b) -> {ok, 16#9d, 16#28};
   2593 dec_huffman_lookup(16#9f, 16#c) -> {more, 16#9e, 16#02};
   2594 dec_huffman_lookup(16#9f, 16#d) -> {more, 16#9e, 16#09};
   2595 dec_huffman_lookup(16#9f, 16#e) -> {more, 16#9e, 16#17};
   2596 dec_huffman_lookup(16#9f, 16#f) -> {ok, 16#9e, 16#28};
   2597 dec_huffman_lookup(16#a0, 16#0) -> {more, 16#98, 16#03};
   2598 dec_huffman_lookup(16#a0, 16#1) -> {more, 16#98, 16#06};
   2599 dec_huffman_lookup(16#a0, 16#2) -> {more, 16#98, 16#0a};
   2600 dec_huffman_lookup(16#a0, 16#3) -> {more, 16#98, 16#0f};
   2601 dec_huffman_lookup(16#a0, 16#4) -> {more, 16#98, 16#18};
   2602 dec_huffman_lookup(16#a0, 16#5) -> {more, 16#98, 16#1f};
   2603 dec_huffman_lookup(16#a0, 16#6) -> {more, 16#98, 16#29};
   2604 dec_huffman_lookup(16#a0, 16#7) -> {ok, 16#98, 16#38};
   2605 dec_huffman_lookup(16#a0, 16#8) -> {more, 16#9b, 16#03};
   2606 dec_huffman_lookup(16#a0, 16#9) -> {more, 16#9b, 16#06};
   2607 dec_huffman_lookup(16#a0, 16#a) -> {more, 16#9b, 16#0a};
   2608 dec_huffman_lookup(16#a0, 16#b) -> {more, 16#9b, 16#0f};
   2609 dec_huffman_lookup(16#a0, 16#c) -> {more, 16#9b, 16#18};
   2610 dec_huffman_lookup(16#a0, 16#d) -> {more, 16#9b, 16#1f};
   2611 dec_huffman_lookup(16#a0, 16#e) -> {more, 16#9b, 16#29};
   2612 dec_huffman_lookup(16#a0, 16#f) -> {ok, 16#9b, 16#38};
   2613 dec_huffman_lookup(16#a1, 16#0) -> {more, 16#9d, 16#03};
   2614 dec_huffman_lookup(16#a1, 16#1) -> {more, 16#9d, 16#06};
   2615 dec_huffman_lookup(16#a1, 16#2) -> {more, 16#9d, 16#0a};
   2616 dec_huffman_lookup(16#a1, 16#3) -> {more, 16#9d, 16#0f};
   2617 dec_huffman_lookup(16#a1, 16#4) -> {more, 16#9d, 16#18};
   2618 dec_huffman_lookup(16#a1, 16#5) -> {more, 16#9d, 16#1f};
   2619 dec_huffman_lookup(16#a1, 16#6) -> {more, 16#9d, 16#29};
   2620 dec_huffman_lookup(16#a1, 16#7) -> {ok, 16#9d, 16#38};
   2621 dec_huffman_lookup(16#a1, 16#8) -> {more, 16#9e, 16#03};
   2622 dec_huffman_lookup(16#a1, 16#9) -> {more, 16#9e, 16#06};
   2623 dec_huffman_lookup(16#a1, 16#a) -> {more, 16#9e, 16#0a};
   2624 dec_huffman_lookup(16#a1, 16#b) -> {more, 16#9e, 16#0f};
   2625 dec_huffman_lookup(16#a1, 16#c) -> {more, 16#9e, 16#18};
   2626 dec_huffman_lookup(16#a1, 16#d) -> {more, 16#9e, 16#1f};
   2627 dec_huffman_lookup(16#a1, 16#e) -> {more, 16#9e, 16#29};
   2628 dec_huffman_lookup(16#a1, 16#f) -> {ok, 16#9e, 16#38};
   2629 dec_huffman_lookup(16#a2, 16#0) -> {more, 16#a5, 16#01};
   2630 dec_huffman_lookup(16#a2, 16#1) -> {ok, 16#a5, 16#16};
   2631 dec_huffman_lookup(16#a2, 16#2) -> {more, 16#a6, 16#01};
   2632 dec_huffman_lookup(16#a2, 16#3) -> {ok, 16#a6, 16#16};
   2633 dec_huffman_lookup(16#a2, 16#4) -> {more, 16#a8, 16#01};
   2634 dec_huffman_lookup(16#a2, 16#5) -> {ok, 16#a8, 16#16};
   2635 dec_huffman_lookup(16#a2, 16#6) -> {more, 16#ae, 16#01};
   2636 dec_huffman_lookup(16#a2, 16#7) -> {ok, 16#ae, 16#16};
   2637 dec_huffman_lookup(16#a2, 16#8) -> {more, 16#af, 16#01};
   2638 dec_huffman_lookup(16#a2, 16#9) -> {ok, 16#af, 16#16};
   2639 dec_huffman_lookup(16#a2, 16#a) -> {more, 16#b4, 16#01};
   2640 dec_huffman_lookup(16#a2, 16#b) -> {ok, 16#b4, 16#16};
   2641 dec_huffman_lookup(16#a2, 16#c) -> {more, 16#b6, 16#01};
   2642 dec_huffman_lookup(16#a2, 16#d) -> {ok, 16#b6, 16#16};
   2643 dec_huffman_lookup(16#a2, 16#e) -> {more, 16#b7, 16#01};
   2644 dec_huffman_lookup(16#a2, 16#f) -> {ok, 16#b7, 16#16};
   2645 dec_huffman_lookup(16#a3, 16#0) -> {more, 16#a5, 16#02};
   2646 dec_huffman_lookup(16#a3, 16#1) -> {more, 16#a5, 16#09};
   2647 dec_huffman_lookup(16#a3, 16#2) -> {more, 16#a5, 16#17};
   2648 dec_huffman_lookup(16#a3, 16#3) -> {ok, 16#a5, 16#28};
   2649 dec_huffman_lookup(16#a3, 16#4) -> {more, 16#a6, 16#02};
   2650 dec_huffman_lookup(16#a3, 16#5) -> {more, 16#a6, 16#09};
   2651 dec_huffman_lookup(16#a3, 16#6) -> {more, 16#a6, 16#17};
   2652 dec_huffman_lookup(16#a3, 16#7) -> {ok, 16#a6, 16#28};
   2653 dec_huffman_lookup(16#a3, 16#8) -> {more, 16#a8, 16#02};
   2654 dec_huffman_lookup(16#a3, 16#9) -> {more, 16#a8, 16#09};
   2655 dec_huffman_lookup(16#a3, 16#a) -> {more, 16#a8, 16#17};
   2656 dec_huffman_lookup(16#a3, 16#b) -> {ok, 16#a8, 16#28};
   2657 dec_huffman_lookup(16#a3, 16#c) -> {more, 16#ae, 16#02};
   2658 dec_huffman_lookup(16#a3, 16#d) -> {more, 16#ae, 16#09};
   2659 dec_huffman_lookup(16#a3, 16#e) -> {more, 16#ae, 16#17};
   2660 dec_huffman_lookup(16#a3, 16#f) -> {ok, 16#ae, 16#28};
   2661 dec_huffman_lookup(16#a4, 16#0) -> {more, 16#a5, 16#03};
   2662 dec_huffman_lookup(16#a4, 16#1) -> {more, 16#a5, 16#06};
   2663 dec_huffman_lookup(16#a4, 16#2) -> {more, 16#a5, 16#0a};
   2664 dec_huffman_lookup(16#a4, 16#3) -> {more, 16#a5, 16#0f};
   2665 dec_huffman_lookup(16#a4, 16#4) -> {more, 16#a5, 16#18};
   2666 dec_huffman_lookup(16#a4, 16#5) -> {more, 16#a5, 16#1f};
   2667 dec_huffman_lookup(16#a4, 16#6) -> {more, 16#a5, 16#29};
   2668 dec_huffman_lookup(16#a4, 16#7) -> {ok, 16#a5, 16#38};
   2669 dec_huffman_lookup(16#a4, 16#8) -> {more, 16#a6, 16#03};
   2670 dec_huffman_lookup(16#a4, 16#9) -> {more, 16#a6, 16#06};
   2671 dec_huffman_lookup(16#a4, 16#a) -> {more, 16#a6, 16#0a};
   2672 dec_huffman_lookup(16#a4, 16#b) -> {more, 16#a6, 16#0f};
   2673 dec_huffman_lookup(16#a4, 16#c) -> {more, 16#a6, 16#18};
   2674 dec_huffman_lookup(16#a4, 16#d) -> {more, 16#a6, 16#1f};
   2675 dec_huffman_lookup(16#a4, 16#e) -> {more, 16#a6, 16#29};
   2676 dec_huffman_lookup(16#a4, 16#f) -> {ok, 16#a6, 16#38};
   2677 dec_huffman_lookup(16#a5, 16#0) -> {more, 16#a8, 16#03};
   2678 dec_huffman_lookup(16#a5, 16#1) -> {more, 16#a8, 16#06};
   2679 dec_huffman_lookup(16#a5, 16#2) -> {more, 16#a8, 16#0a};
   2680 dec_huffman_lookup(16#a5, 16#3) -> {more, 16#a8, 16#0f};
   2681 dec_huffman_lookup(16#a5, 16#4) -> {more, 16#a8, 16#18};
   2682 dec_huffman_lookup(16#a5, 16#5) -> {more, 16#a8, 16#1f};
   2683 dec_huffman_lookup(16#a5, 16#6) -> {more, 16#a8, 16#29};
   2684 dec_huffman_lookup(16#a5, 16#7) -> {ok, 16#a8, 16#38};
   2685 dec_huffman_lookup(16#a5, 16#8) -> {more, 16#ae, 16#03};
   2686 dec_huffman_lookup(16#a5, 16#9) -> {more, 16#ae, 16#06};
   2687 dec_huffman_lookup(16#a5, 16#a) -> {more, 16#ae, 16#0a};
   2688 dec_huffman_lookup(16#a5, 16#b) -> {more, 16#ae, 16#0f};
   2689 dec_huffman_lookup(16#a5, 16#c) -> {more, 16#ae, 16#18};
   2690 dec_huffman_lookup(16#a5, 16#d) -> {more, 16#ae, 16#1f};
   2691 dec_huffman_lookup(16#a5, 16#e) -> {more, 16#ae, 16#29};
   2692 dec_huffman_lookup(16#a5, 16#f) -> {ok, 16#ae, 16#38};
   2693 dec_huffman_lookup(16#a6, 16#0) -> {more, 16#af, 16#02};
   2694 dec_huffman_lookup(16#a6, 16#1) -> {more, 16#af, 16#09};
   2695 dec_huffman_lookup(16#a6, 16#2) -> {more, 16#af, 16#17};
   2696 dec_huffman_lookup(16#a6, 16#3) -> {ok, 16#af, 16#28};
   2697 dec_huffman_lookup(16#a6, 16#4) -> {more, 16#b4, 16#02};
   2698 dec_huffman_lookup(16#a6, 16#5) -> {more, 16#b4, 16#09};
   2699 dec_huffman_lookup(16#a6, 16#6) -> {more, 16#b4, 16#17};
   2700 dec_huffman_lookup(16#a6, 16#7) -> {ok, 16#b4, 16#28};
   2701 dec_huffman_lookup(16#a6, 16#8) -> {more, 16#b6, 16#02};
   2702 dec_huffman_lookup(16#a6, 16#9) -> {more, 16#b6, 16#09};
   2703 dec_huffman_lookup(16#a6, 16#a) -> {more, 16#b6, 16#17};
   2704 dec_huffman_lookup(16#a6, 16#b) -> {ok, 16#b6, 16#28};
   2705 dec_huffman_lookup(16#a6, 16#c) -> {more, 16#b7, 16#02};
   2706 dec_huffman_lookup(16#a6, 16#d) -> {more, 16#b7, 16#09};
   2707 dec_huffman_lookup(16#a6, 16#e) -> {more, 16#b7, 16#17};
   2708 dec_huffman_lookup(16#a6, 16#f) -> {ok, 16#b7, 16#28};
   2709 dec_huffman_lookup(16#a7, 16#0) -> {more, 16#af, 16#03};
   2710 dec_huffman_lookup(16#a7, 16#1) -> {more, 16#af, 16#06};
   2711 dec_huffman_lookup(16#a7, 16#2) -> {more, 16#af, 16#0a};
   2712 dec_huffman_lookup(16#a7, 16#3) -> {more, 16#af, 16#0f};
   2713 dec_huffman_lookup(16#a7, 16#4) -> {more, 16#af, 16#18};
   2714 dec_huffman_lookup(16#a7, 16#5) -> {more, 16#af, 16#1f};
   2715 dec_huffman_lookup(16#a7, 16#6) -> {more, 16#af, 16#29};
   2716 dec_huffman_lookup(16#a7, 16#7) -> {ok, 16#af, 16#38};
   2717 dec_huffman_lookup(16#a7, 16#8) -> {more, 16#b4, 16#03};
   2718 dec_huffman_lookup(16#a7, 16#9) -> {more, 16#b4, 16#06};
   2719 dec_huffman_lookup(16#a7, 16#a) -> {more, 16#b4, 16#0a};
   2720 dec_huffman_lookup(16#a7, 16#b) -> {more, 16#b4, 16#0f};
   2721 dec_huffman_lookup(16#a7, 16#c) -> {more, 16#b4, 16#18};
   2722 dec_huffman_lookup(16#a7, 16#d) -> {more, 16#b4, 16#1f};
   2723 dec_huffman_lookup(16#a7, 16#e) -> {more, 16#b4, 16#29};
   2724 dec_huffman_lookup(16#a7, 16#f) -> {ok, 16#b4, 16#38};
   2725 dec_huffman_lookup(16#a8, 16#0) -> {more, 16#b6, 16#03};
   2726 dec_huffman_lookup(16#a8, 16#1) -> {more, 16#b6, 16#06};
   2727 dec_huffman_lookup(16#a8, 16#2) -> {more, 16#b6, 16#0a};
   2728 dec_huffman_lookup(16#a8, 16#3) -> {more, 16#b6, 16#0f};
   2729 dec_huffman_lookup(16#a8, 16#4) -> {more, 16#b6, 16#18};
   2730 dec_huffman_lookup(16#a8, 16#5) -> {more, 16#b6, 16#1f};
   2731 dec_huffman_lookup(16#a8, 16#6) -> {more, 16#b6, 16#29};
   2732 dec_huffman_lookup(16#a8, 16#7) -> {ok, 16#b6, 16#38};
   2733 dec_huffman_lookup(16#a8, 16#8) -> {more, 16#b7, 16#03};
   2734 dec_huffman_lookup(16#a8, 16#9) -> {more, 16#b7, 16#06};
   2735 dec_huffman_lookup(16#a8, 16#a) -> {more, 16#b7, 16#0a};
   2736 dec_huffman_lookup(16#a8, 16#b) -> {more, 16#b7, 16#0f};
   2737 dec_huffman_lookup(16#a8, 16#c) -> {more, 16#b7, 16#18};
   2738 dec_huffman_lookup(16#a8, 16#d) -> {more, 16#b7, 16#1f};
   2739 dec_huffman_lookup(16#a8, 16#e) -> {more, 16#b7, 16#29};
   2740 dec_huffman_lookup(16#a8, 16#f) -> {ok, 16#b7, 16#38};
   2741 dec_huffman_lookup(16#a9, 16#0) -> {ok, 16#bc, 16#00};
   2742 dec_huffman_lookup(16#a9, 16#1) -> {ok, 16#bf, 16#00};
   2743 dec_huffman_lookup(16#a9, 16#2) -> {ok, 16#c5, 16#00};
   2744 dec_huffman_lookup(16#a9, 16#3) -> {ok, 16#e7, 16#00};
   2745 dec_huffman_lookup(16#a9, 16#4) -> {ok, 16#ef, 16#00};
   2746 dec_huffman_lookup(16#a9, 16#5) -> {more, undefined, 16#b0};
   2747 dec_huffman_lookup(16#a9, 16#6) -> {more, undefined, 16#b2};
   2748 dec_huffman_lookup(16#a9, 16#7) -> {more, undefined, 16#b3};
   2749 dec_huffman_lookup(16#a9, 16#8) -> {more, undefined, 16#b7};
   2750 dec_huffman_lookup(16#a9, 16#9) -> {more, undefined, 16#b8};
   2751 dec_huffman_lookup(16#a9, 16#a) -> {more, undefined, 16#ba};
   2752 dec_huffman_lookup(16#a9, 16#b) -> {more, undefined, 16#bb};
   2753 dec_huffman_lookup(16#a9, 16#c) -> {more, undefined, 16#c0};
   2754 dec_huffman_lookup(16#a9, 16#d) -> {more, undefined, 16#c7};
   2755 dec_huffman_lookup(16#a9, 16#e) -> {more, undefined, 16#d0};
   2756 dec_huffman_lookup(16#a9, 16#f) -> {ok, undefined, 16#df};
   2757 dec_huffman_lookup(16#aa, 16#0) -> {more, 16#bc, 16#01};
   2758 dec_huffman_lookup(16#aa, 16#1) -> {ok, 16#bc, 16#16};
   2759 dec_huffman_lookup(16#aa, 16#2) -> {more, 16#bf, 16#01};
   2760 dec_huffman_lookup(16#aa, 16#3) -> {ok, 16#bf, 16#16};
   2761 dec_huffman_lookup(16#aa, 16#4) -> {more, 16#c5, 16#01};
   2762 dec_huffman_lookup(16#aa, 16#5) -> {ok, 16#c5, 16#16};
   2763 dec_huffman_lookup(16#aa, 16#6) -> {more, 16#e7, 16#01};
   2764 dec_huffman_lookup(16#aa, 16#7) -> {ok, 16#e7, 16#16};
   2765 dec_huffman_lookup(16#aa, 16#8) -> {more, 16#ef, 16#01};
   2766 dec_huffman_lookup(16#aa, 16#9) -> {ok, 16#ef, 16#16};
   2767 dec_huffman_lookup(16#aa, 16#a) -> {ok, 16#09, 16#00};
   2768 dec_huffman_lookup(16#aa, 16#b) -> {ok, 16#8e, 16#00};
   2769 dec_huffman_lookup(16#aa, 16#c) -> {ok, 16#90, 16#00};
   2770 dec_huffman_lookup(16#aa, 16#d) -> {ok, 16#91, 16#00};
   2771 dec_huffman_lookup(16#aa, 16#e) -> {ok, 16#94, 16#00};
   2772 dec_huffman_lookup(16#aa, 16#f) -> {ok, 16#9f, 16#00};
   2773 dec_huffman_lookup(16#ab, 16#0) -> {more, 16#bc, 16#02};
   2774 dec_huffman_lookup(16#ab, 16#1) -> {more, 16#bc, 16#09};
   2775 dec_huffman_lookup(16#ab, 16#2) -> {more, 16#bc, 16#17};
   2776 dec_huffman_lookup(16#ab, 16#3) -> {ok, 16#bc, 16#28};
   2777 dec_huffman_lookup(16#ab, 16#4) -> {more, 16#bf, 16#02};
   2778 dec_huffman_lookup(16#ab, 16#5) -> {more, 16#bf, 16#09};
   2779 dec_huffman_lookup(16#ab, 16#6) -> {more, 16#bf, 16#17};
   2780 dec_huffman_lookup(16#ab, 16#7) -> {ok, 16#bf, 16#28};
   2781 dec_huffman_lookup(16#ab, 16#8) -> {more, 16#c5, 16#02};
   2782 dec_huffman_lookup(16#ab, 16#9) -> {more, 16#c5, 16#09};
   2783 dec_huffman_lookup(16#ab, 16#a) -> {more, 16#c5, 16#17};
   2784 dec_huffman_lookup(16#ab, 16#b) -> {ok, 16#c5, 16#28};
   2785 dec_huffman_lookup(16#ab, 16#c) -> {more, 16#e7, 16#02};
   2786 dec_huffman_lookup(16#ab, 16#d) -> {more, 16#e7, 16#09};
   2787 dec_huffman_lookup(16#ab, 16#e) -> {more, 16#e7, 16#17};
   2788 dec_huffman_lookup(16#ab, 16#f) -> {ok, 16#e7, 16#28};
   2789 dec_huffman_lookup(16#ac, 16#0) -> {more, 16#bc, 16#03};
   2790 dec_huffman_lookup(16#ac, 16#1) -> {more, 16#bc, 16#06};
   2791 dec_huffman_lookup(16#ac, 16#2) -> {more, 16#bc, 16#0a};
   2792 dec_huffman_lookup(16#ac, 16#3) -> {more, 16#bc, 16#0f};
   2793 dec_huffman_lookup(16#ac, 16#4) -> {more, 16#bc, 16#18};
   2794 dec_huffman_lookup(16#ac, 16#5) -> {more, 16#bc, 16#1f};
   2795 dec_huffman_lookup(16#ac, 16#6) -> {more, 16#bc, 16#29};
   2796 dec_huffman_lookup(16#ac, 16#7) -> {ok, 16#bc, 16#38};
   2797 dec_huffman_lookup(16#ac, 16#8) -> {more, 16#bf, 16#03};
   2798 dec_huffman_lookup(16#ac, 16#9) -> {more, 16#bf, 16#06};
   2799 dec_huffman_lookup(16#ac, 16#a) -> {more, 16#bf, 16#0a};
   2800 dec_huffman_lookup(16#ac, 16#b) -> {more, 16#bf, 16#0f};
   2801 dec_huffman_lookup(16#ac, 16#c) -> {more, 16#bf, 16#18};
   2802 dec_huffman_lookup(16#ac, 16#d) -> {more, 16#bf, 16#1f};
   2803 dec_huffman_lookup(16#ac, 16#e) -> {more, 16#bf, 16#29};
   2804 dec_huffman_lookup(16#ac, 16#f) -> {ok, 16#bf, 16#38};
   2805 dec_huffman_lookup(16#ad, 16#0) -> {more, 16#c5, 16#03};
   2806 dec_huffman_lookup(16#ad, 16#1) -> {more, 16#c5, 16#06};
   2807 dec_huffman_lookup(16#ad, 16#2) -> {more, 16#c5, 16#0a};
   2808 dec_huffman_lookup(16#ad, 16#3) -> {more, 16#c5, 16#0f};
   2809 dec_huffman_lookup(16#ad, 16#4) -> {more, 16#c5, 16#18};
   2810 dec_huffman_lookup(16#ad, 16#5) -> {more, 16#c5, 16#1f};
   2811 dec_huffman_lookup(16#ad, 16#6) -> {more, 16#c5, 16#29};
   2812 dec_huffman_lookup(16#ad, 16#7) -> {ok, 16#c5, 16#38};
   2813 dec_huffman_lookup(16#ad, 16#8) -> {more, 16#e7, 16#03};
   2814 dec_huffman_lookup(16#ad, 16#9) -> {more, 16#e7, 16#06};
   2815 dec_huffman_lookup(16#ad, 16#a) -> {more, 16#e7, 16#0a};
   2816 dec_huffman_lookup(16#ad, 16#b) -> {more, 16#e7, 16#0f};
   2817 dec_huffman_lookup(16#ad, 16#c) -> {more, 16#e7, 16#18};
   2818 dec_huffman_lookup(16#ad, 16#d) -> {more, 16#e7, 16#1f};
   2819 dec_huffman_lookup(16#ad, 16#e) -> {more, 16#e7, 16#29};
   2820 dec_huffman_lookup(16#ad, 16#f) -> {ok, 16#e7, 16#38};
   2821 dec_huffman_lookup(16#ae, 16#0) -> {more, 16#ef, 16#02};
   2822 dec_huffman_lookup(16#ae, 16#1) -> {more, 16#ef, 16#09};
   2823 dec_huffman_lookup(16#ae, 16#2) -> {more, 16#ef, 16#17};
   2824 dec_huffman_lookup(16#ae, 16#3) -> {ok, 16#ef, 16#28};
   2825 dec_huffman_lookup(16#ae, 16#4) -> {more, 16#09, 16#01};
   2826 dec_huffman_lookup(16#ae, 16#5) -> {ok, 16#09, 16#16};
   2827 dec_huffman_lookup(16#ae, 16#6) -> {more, 16#8e, 16#01};
   2828 dec_huffman_lookup(16#ae, 16#7) -> {ok, 16#8e, 16#16};
   2829 dec_huffman_lookup(16#ae, 16#8) -> {more, 16#90, 16#01};
   2830 dec_huffman_lookup(16#ae, 16#9) -> {ok, 16#90, 16#16};
   2831 dec_huffman_lookup(16#ae, 16#a) -> {more, 16#91, 16#01};
   2832 dec_huffman_lookup(16#ae, 16#b) -> {ok, 16#91, 16#16};
   2833 dec_huffman_lookup(16#ae, 16#c) -> {more, 16#94, 16#01};
   2834 dec_huffman_lookup(16#ae, 16#d) -> {ok, 16#94, 16#16};
   2835 dec_huffman_lookup(16#ae, 16#e) -> {more, 16#9f, 16#01};
   2836 dec_huffman_lookup(16#ae, 16#f) -> {ok, 16#9f, 16#16};
   2837 dec_huffman_lookup(16#af, 16#0) -> {more, 16#ef, 16#03};
   2838 dec_huffman_lookup(16#af, 16#1) -> {more, 16#ef, 16#06};
   2839 dec_huffman_lookup(16#af, 16#2) -> {more, 16#ef, 16#0a};
   2840 dec_huffman_lookup(16#af, 16#3) -> {more, 16#ef, 16#0f};
   2841 dec_huffman_lookup(16#af, 16#4) -> {more, 16#ef, 16#18};
   2842 dec_huffman_lookup(16#af, 16#5) -> {more, 16#ef, 16#1f};
   2843 dec_huffman_lookup(16#af, 16#6) -> {more, 16#ef, 16#29};
   2844 dec_huffman_lookup(16#af, 16#7) -> {ok, 16#ef, 16#38};
   2845 dec_huffman_lookup(16#af, 16#8) -> {more, 16#09, 16#02};
   2846 dec_huffman_lookup(16#af, 16#9) -> {more, 16#09, 16#09};
   2847 dec_huffman_lookup(16#af, 16#a) -> {more, 16#09, 16#17};
   2848 dec_huffman_lookup(16#af, 16#b) -> {ok, 16#09, 16#28};
   2849 dec_huffman_lookup(16#af, 16#c) -> {more, 16#8e, 16#02};
   2850 dec_huffman_lookup(16#af, 16#d) -> {more, 16#8e, 16#09};
   2851 dec_huffman_lookup(16#af, 16#e) -> {more, 16#8e, 16#17};
   2852 dec_huffman_lookup(16#af, 16#f) -> {ok, 16#8e, 16#28};
   2853 dec_huffman_lookup(16#b0, 16#0) -> {more, 16#09, 16#03};
   2854 dec_huffman_lookup(16#b0, 16#1) -> {more, 16#09, 16#06};
   2855 dec_huffman_lookup(16#b0, 16#2) -> {more, 16#09, 16#0a};
   2856 dec_huffman_lookup(16#b0, 16#3) -> {more, 16#09, 16#0f};
   2857 dec_huffman_lookup(16#b0, 16#4) -> {more, 16#09, 16#18};
   2858 dec_huffman_lookup(16#b0, 16#5) -> {more, 16#09, 16#1f};
   2859 dec_huffman_lookup(16#b0, 16#6) -> {more, 16#09, 16#29};
   2860 dec_huffman_lookup(16#b0, 16#7) -> {ok, 16#09, 16#38};
   2861 dec_huffman_lookup(16#b0, 16#8) -> {more, 16#8e, 16#03};
   2862 dec_huffman_lookup(16#b0, 16#9) -> {more, 16#8e, 16#06};
   2863 dec_huffman_lookup(16#b0, 16#a) -> {more, 16#8e, 16#0a};
   2864 dec_huffman_lookup(16#b0, 16#b) -> {more, 16#8e, 16#0f};
   2865 dec_huffman_lookup(16#b0, 16#c) -> {more, 16#8e, 16#18};
   2866 dec_huffman_lookup(16#b0, 16#d) -> {more, 16#8e, 16#1f};
   2867 dec_huffman_lookup(16#b0, 16#e) -> {more, 16#8e, 16#29};
   2868 dec_huffman_lookup(16#b0, 16#f) -> {ok, 16#8e, 16#38};
   2869 dec_huffman_lookup(16#b1, 16#0) -> {more, 16#90, 16#02};
   2870 dec_huffman_lookup(16#b1, 16#1) -> {more, 16#90, 16#09};
   2871 dec_huffman_lookup(16#b1, 16#2) -> {more, 16#90, 16#17};
   2872 dec_huffman_lookup(16#b1, 16#3) -> {ok, 16#90, 16#28};
   2873 dec_huffman_lookup(16#b1, 16#4) -> {more, 16#91, 16#02};
   2874 dec_huffman_lookup(16#b1, 16#5) -> {more, 16#91, 16#09};
   2875 dec_huffman_lookup(16#b1, 16#6) -> {more, 16#91, 16#17};
   2876 dec_huffman_lookup(16#b1, 16#7) -> {ok, 16#91, 16#28};
   2877 dec_huffman_lookup(16#b1, 16#8) -> {more, 16#94, 16#02};
   2878 dec_huffman_lookup(16#b1, 16#9) -> {more, 16#94, 16#09};
   2879 dec_huffman_lookup(16#b1, 16#a) -> {more, 16#94, 16#17};
   2880 dec_huffman_lookup(16#b1, 16#b) -> {ok, 16#94, 16#28};
   2881 dec_huffman_lookup(16#b1, 16#c) -> {more, 16#9f, 16#02};
   2882 dec_huffman_lookup(16#b1, 16#d) -> {more, 16#9f, 16#09};
   2883 dec_huffman_lookup(16#b1, 16#e) -> {more, 16#9f, 16#17};
   2884 dec_huffman_lookup(16#b1, 16#f) -> {ok, 16#9f, 16#28};
   2885 dec_huffman_lookup(16#b2, 16#0) -> {more, 16#90, 16#03};
   2886 dec_huffman_lookup(16#b2, 16#1) -> {more, 16#90, 16#06};
   2887 dec_huffman_lookup(16#b2, 16#2) -> {more, 16#90, 16#0a};
   2888 dec_huffman_lookup(16#b2, 16#3) -> {more, 16#90, 16#0f};
   2889 dec_huffman_lookup(16#b2, 16#4) -> {more, 16#90, 16#18};
   2890 dec_huffman_lookup(16#b2, 16#5) -> {more, 16#90, 16#1f};
   2891 dec_huffman_lookup(16#b2, 16#6) -> {more, 16#90, 16#29};
   2892 dec_huffman_lookup(16#b2, 16#7) -> {ok, 16#90, 16#38};
   2893 dec_huffman_lookup(16#b2, 16#8) -> {more, 16#91, 16#03};
   2894 dec_huffman_lookup(16#b2, 16#9) -> {more, 16#91, 16#06};
   2895 dec_huffman_lookup(16#b2, 16#a) -> {more, 16#91, 16#0a};
   2896 dec_huffman_lookup(16#b2, 16#b) -> {more, 16#91, 16#0f};
   2897 dec_huffman_lookup(16#b2, 16#c) -> {more, 16#91, 16#18};
   2898 dec_huffman_lookup(16#b2, 16#d) -> {more, 16#91, 16#1f};
   2899 dec_huffman_lookup(16#b2, 16#e) -> {more, 16#91, 16#29};
   2900 dec_huffman_lookup(16#b2, 16#f) -> {ok, 16#91, 16#38};
   2901 dec_huffman_lookup(16#b3, 16#0) -> {more, 16#94, 16#03};
   2902 dec_huffman_lookup(16#b3, 16#1) -> {more, 16#94, 16#06};
   2903 dec_huffman_lookup(16#b3, 16#2) -> {more, 16#94, 16#0a};
   2904 dec_huffman_lookup(16#b3, 16#3) -> {more, 16#94, 16#0f};
   2905 dec_huffman_lookup(16#b3, 16#4) -> {more, 16#94, 16#18};
   2906 dec_huffman_lookup(16#b3, 16#5) -> {more, 16#94, 16#1f};
   2907 dec_huffman_lookup(16#b3, 16#6) -> {more, 16#94, 16#29};
   2908 dec_huffman_lookup(16#b3, 16#7) -> {ok, 16#94, 16#38};
   2909 dec_huffman_lookup(16#b3, 16#8) -> {more, 16#9f, 16#03};
   2910 dec_huffman_lookup(16#b3, 16#9) -> {more, 16#9f, 16#06};
   2911 dec_huffman_lookup(16#b3, 16#a) -> {more, 16#9f, 16#0a};
   2912 dec_huffman_lookup(16#b3, 16#b) -> {more, 16#9f, 16#0f};
   2913 dec_huffman_lookup(16#b3, 16#c) -> {more, 16#9f, 16#18};
   2914 dec_huffman_lookup(16#b3, 16#d) -> {more, 16#9f, 16#1f};
   2915 dec_huffman_lookup(16#b3, 16#e) -> {more, 16#9f, 16#29};
   2916 dec_huffman_lookup(16#b3, 16#f) -> {ok, 16#9f, 16#38};
   2917 dec_huffman_lookup(16#b4, 16#0) -> {ok, 16#ab, 16#00};
   2918 dec_huffman_lookup(16#b4, 16#1) -> {ok, 16#ce, 16#00};
   2919 dec_huffman_lookup(16#b4, 16#2) -> {ok, 16#d7, 16#00};
   2920 dec_huffman_lookup(16#b4, 16#3) -> {ok, 16#e1, 16#00};
   2921 dec_huffman_lookup(16#b4, 16#4) -> {ok, 16#ec, 16#00};
   2922 dec_huffman_lookup(16#b4, 16#5) -> {ok, 16#ed, 16#00};
   2923 dec_huffman_lookup(16#b4, 16#6) -> {more, undefined, 16#bc};
   2924 dec_huffman_lookup(16#b4, 16#7) -> {more, undefined, 16#bd};
   2925 dec_huffman_lookup(16#b4, 16#8) -> {more, undefined, 16#c1};
   2926 dec_huffman_lookup(16#b4, 16#9) -> {more, undefined, 16#c4};
   2927 dec_huffman_lookup(16#b4, 16#a) -> {more, undefined, 16#c8};
   2928 dec_huffman_lookup(16#b4, 16#b) -> {more, undefined, 16#cb};
   2929 dec_huffman_lookup(16#b4, 16#c) -> {more, undefined, 16#d1};
   2930 dec_huffman_lookup(16#b4, 16#d) -> {more, undefined, 16#d8};
   2931 dec_huffman_lookup(16#b4, 16#e) -> {more, undefined, 16#e0};
   2932 dec_huffman_lookup(16#b4, 16#f) -> {ok, undefined, 16#ee};
   2933 dec_huffman_lookup(16#b5, 16#0) -> {more, 16#ab, 16#01};
   2934 dec_huffman_lookup(16#b5, 16#1) -> {ok, 16#ab, 16#16};
   2935 dec_huffman_lookup(16#b5, 16#2) -> {more, 16#ce, 16#01};
   2936 dec_huffman_lookup(16#b5, 16#3) -> {ok, 16#ce, 16#16};
   2937 dec_huffman_lookup(16#b5, 16#4) -> {more, 16#d7, 16#01};
   2938 dec_huffman_lookup(16#b5, 16#5) -> {ok, 16#d7, 16#16};
   2939 dec_huffman_lookup(16#b5, 16#6) -> {more, 16#e1, 16#01};
   2940 dec_huffman_lookup(16#b5, 16#7) -> {ok, 16#e1, 16#16};
   2941 dec_huffman_lookup(16#b5, 16#8) -> {more, 16#ec, 16#01};
   2942 dec_huffman_lookup(16#b5, 16#9) -> {ok, 16#ec, 16#16};
   2943 dec_huffman_lookup(16#b5, 16#a) -> {more, 16#ed, 16#01};
   2944 dec_huffman_lookup(16#b5, 16#b) -> {ok, 16#ed, 16#16};
   2945 dec_huffman_lookup(16#b5, 16#c) -> {ok, 16#c7, 16#00};
   2946 dec_huffman_lookup(16#b5, 16#d) -> {ok, 16#cf, 16#00};
   2947 dec_huffman_lookup(16#b5, 16#e) -> {ok, 16#ea, 16#00};
   2948 dec_huffman_lookup(16#b5, 16#f) -> {ok, 16#eb, 16#00};
   2949 dec_huffman_lookup(16#b6, 16#0) -> {more, 16#ab, 16#02};
   2950 dec_huffman_lookup(16#b6, 16#1) -> {more, 16#ab, 16#09};
   2951 dec_huffman_lookup(16#b6, 16#2) -> {more, 16#ab, 16#17};
   2952 dec_huffman_lookup(16#b6, 16#3) -> {ok, 16#ab, 16#28};
   2953 dec_huffman_lookup(16#b6, 16#4) -> {more, 16#ce, 16#02};
   2954 dec_huffman_lookup(16#b6, 16#5) -> {more, 16#ce, 16#09};
   2955 dec_huffman_lookup(16#b6, 16#6) -> {more, 16#ce, 16#17};
   2956 dec_huffman_lookup(16#b6, 16#7) -> {ok, 16#ce, 16#28};
   2957 dec_huffman_lookup(16#b6, 16#8) -> {more, 16#d7, 16#02};
   2958 dec_huffman_lookup(16#b6, 16#9) -> {more, 16#d7, 16#09};
   2959 dec_huffman_lookup(16#b6, 16#a) -> {more, 16#d7, 16#17};
   2960 dec_huffman_lookup(16#b6, 16#b) -> {ok, 16#d7, 16#28};
   2961 dec_huffman_lookup(16#b6, 16#c) -> {more, 16#e1, 16#02};
   2962 dec_huffman_lookup(16#b6, 16#d) -> {more, 16#e1, 16#09};
   2963 dec_huffman_lookup(16#b6, 16#e) -> {more, 16#e1, 16#17};
   2964 dec_huffman_lookup(16#b6, 16#f) -> {ok, 16#e1, 16#28};
   2965 dec_huffman_lookup(16#b7, 16#0) -> {more, 16#ab, 16#03};
   2966 dec_huffman_lookup(16#b7, 16#1) -> {more, 16#ab, 16#06};
   2967 dec_huffman_lookup(16#b7, 16#2) -> {more, 16#ab, 16#0a};
   2968 dec_huffman_lookup(16#b7, 16#3) -> {more, 16#ab, 16#0f};
   2969 dec_huffman_lookup(16#b7, 16#4) -> {more, 16#ab, 16#18};
   2970 dec_huffman_lookup(16#b7, 16#5) -> {more, 16#ab, 16#1f};
   2971 dec_huffman_lookup(16#b7, 16#6) -> {more, 16#ab, 16#29};
   2972 dec_huffman_lookup(16#b7, 16#7) -> {ok, 16#ab, 16#38};
   2973 dec_huffman_lookup(16#b7, 16#8) -> {more, 16#ce, 16#03};
   2974 dec_huffman_lookup(16#b7, 16#9) -> {more, 16#ce, 16#06};
   2975 dec_huffman_lookup(16#b7, 16#a) -> {more, 16#ce, 16#0a};
   2976 dec_huffman_lookup(16#b7, 16#b) -> {more, 16#ce, 16#0f};
   2977 dec_huffman_lookup(16#b7, 16#c) -> {more, 16#ce, 16#18};
   2978 dec_huffman_lookup(16#b7, 16#d) -> {more, 16#ce, 16#1f};
   2979 dec_huffman_lookup(16#b7, 16#e) -> {more, 16#ce, 16#29};
   2980 dec_huffman_lookup(16#b7, 16#f) -> {ok, 16#ce, 16#38};
   2981 dec_huffman_lookup(16#b8, 16#0) -> {more, 16#d7, 16#03};
   2982 dec_huffman_lookup(16#b8, 16#1) -> {more, 16#d7, 16#06};
   2983 dec_huffman_lookup(16#b8, 16#2) -> {more, 16#d7, 16#0a};
   2984 dec_huffman_lookup(16#b8, 16#3) -> {more, 16#d7, 16#0f};
   2985 dec_huffman_lookup(16#b8, 16#4) -> {more, 16#d7, 16#18};
   2986 dec_huffman_lookup(16#b8, 16#5) -> {more, 16#d7, 16#1f};
   2987 dec_huffman_lookup(16#b8, 16#6) -> {more, 16#d7, 16#29};
   2988 dec_huffman_lookup(16#b8, 16#7) -> {ok, 16#d7, 16#38};
   2989 dec_huffman_lookup(16#b8, 16#8) -> {more, 16#e1, 16#03};
   2990 dec_huffman_lookup(16#b8, 16#9) -> {more, 16#e1, 16#06};
   2991 dec_huffman_lookup(16#b8, 16#a) -> {more, 16#e1, 16#0a};
   2992 dec_huffman_lookup(16#b8, 16#b) -> {more, 16#e1, 16#0f};
   2993 dec_huffman_lookup(16#b8, 16#c) -> {more, 16#e1, 16#18};
   2994 dec_huffman_lookup(16#b8, 16#d) -> {more, 16#e1, 16#1f};
   2995 dec_huffman_lookup(16#b8, 16#e) -> {more, 16#e1, 16#29};
   2996 dec_huffman_lookup(16#b8, 16#f) -> {ok, 16#e1, 16#38};
   2997 dec_huffman_lookup(16#b9, 16#0) -> {more, 16#ec, 16#02};
   2998 dec_huffman_lookup(16#b9, 16#1) -> {more, 16#ec, 16#09};
   2999 dec_huffman_lookup(16#b9, 16#2) -> {more, 16#ec, 16#17};
   3000 dec_huffman_lookup(16#b9, 16#3) -> {ok, 16#ec, 16#28};
   3001 dec_huffman_lookup(16#b9, 16#4) -> {more, 16#ed, 16#02};
   3002 dec_huffman_lookup(16#b9, 16#5) -> {more, 16#ed, 16#09};
   3003 dec_huffman_lookup(16#b9, 16#6) -> {more, 16#ed, 16#17};
   3004 dec_huffman_lookup(16#b9, 16#7) -> {ok, 16#ed, 16#28};
   3005 dec_huffman_lookup(16#b9, 16#8) -> {more, 16#c7, 16#01};
   3006 dec_huffman_lookup(16#b9, 16#9) -> {ok, 16#c7, 16#16};
   3007 dec_huffman_lookup(16#b9, 16#a) -> {more, 16#cf, 16#01};
   3008 dec_huffman_lookup(16#b9, 16#b) -> {ok, 16#cf, 16#16};
   3009 dec_huffman_lookup(16#b9, 16#c) -> {more, 16#ea, 16#01};
   3010 dec_huffman_lookup(16#b9, 16#d) -> {ok, 16#ea, 16#16};
   3011 dec_huffman_lookup(16#b9, 16#e) -> {more, 16#eb, 16#01};
   3012 dec_huffman_lookup(16#b9, 16#f) -> {ok, 16#eb, 16#16};
   3013 dec_huffman_lookup(16#ba, 16#0) -> {more, 16#ec, 16#03};
   3014 dec_huffman_lookup(16#ba, 16#1) -> {more, 16#ec, 16#06};
   3015 dec_huffman_lookup(16#ba, 16#2) -> {more, 16#ec, 16#0a};
   3016 dec_huffman_lookup(16#ba, 16#3) -> {more, 16#ec, 16#0f};
   3017 dec_huffman_lookup(16#ba, 16#4) -> {more, 16#ec, 16#18};
   3018 dec_huffman_lookup(16#ba, 16#5) -> {more, 16#ec, 16#1f};
   3019 dec_huffman_lookup(16#ba, 16#6) -> {more, 16#ec, 16#29};
   3020 dec_huffman_lookup(16#ba, 16#7) -> {ok, 16#ec, 16#38};
   3021 dec_huffman_lookup(16#ba, 16#8) -> {more, 16#ed, 16#03};
   3022 dec_huffman_lookup(16#ba, 16#9) -> {more, 16#ed, 16#06};
   3023 dec_huffman_lookup(16#ba, 16#a) -> {more, 16#ed, 16#0a};
   3024 dec_huffman_lookup(16#ba, 16#b) -> {more, 16#ed, 16#0f};
   3025 dec_huffman_lookup(16#ba, 16#c) -> {more, 16#ed, 16#18};
   3026 dec_huffman_lookup(16#ba, 16#d) -> {more, 16#ed, 16#1f};
   3027 dec_huffman_lookup(16#ba, 16#e) -> {more, 16#ed, 16#29};
   3028 dec_huffman_lookup(16#ba, 16#f) -> {ok, 16#ed, 16#38};
   3029 dec_huffman_lookup(16#bb, 16#0) -> {more, 16#c7, 16#02};
   3030 dec_huffman_lookup(16#bb, 16#1) -> {more, 16#c7, 16#09};
   3031 dec_huffman_lookup(16#bb, 16#2) -> {more, 16#c7, 16#17};
   3032 dec_huffman_lookup(16#bb, 16#3) -> {ok, 16#c7, 16#28};
   3033 dec_huffman_lookup(16#bb, 16#4) -> {more, 16#cf, 16#02};
   3034 dec_huffman_lookup(16#bb, 16#5) -> {more, 16#cf, 16#09};
   3035 dec_huffman_lookup(16#bb, 16#6) -> {more, 16#cf, 16#17};
   3036 dec_huffman_lookup(16#bb, 16#7) -> {ok, 16#cf, 16#28};
   3037 dec_huffman_lookup(16#bb, 16#8) -> {more, 16#ea, 16#02};
   3038 dec_huffman_lookup(16#bb, 16#9) -> {more, 16#ea, 16#09};
   3039 dec_huffman_lookup(16#bb, 16#a) -> {more, 16#ea, 16#17};
   3040 dec_huffman_lookup(16#bb, 16#b) -> {ok, 16#ea, 16#28};
   3041 dec_huffman_lookup(16#bb, 16#c) -> {more, 16#eb, 16#02};
   3042 dec_huffman_lookup(16#bb, 16#d) -> {more, 16#eb, 16#09};
   3043 dec_huffman_lookup(16#bb, 16#e) -> {more, 16#eb, 16#17};
   3044 dec_huffman_lookup(16#bb, 16#f) -> {ok, 16#eb, 16#28};
   3045 dec_huffman_lookup(16#bc, 16#0) -> {more, 16#c7, 16#03};
   3046 dec_huffman_lookup(16#bc, 16#1) -> {more, 16#c7, 16#06};
   3047 dec_huffman_lookup(16#bc, 16#2) -> {more, 16#c7, 16#0a};
   3048 dec_huffman_lookup(16#bc, 16#3) -> {more, 16#c7, 16#0f};
   3049 dec_huffman_lookup(16#bc, 16#4) -> {more, 16#c7, 16#18};
   3050 dec_huffman_lookup(16#bc, 16#5) -> {more, 16#c7, 16#1f};
   3051 dec_huffman_lookup(16#bc, 16#6) -> {more, 16#c7, 16#29};
   3052 dec_huffman_lookup(16#bc, 16#7) -> {ok, 16#c7, 16#38};
   3053 dec_huffman_lookup(16#bc, 16#8) -> {more, 16#cf, 16#03};
   3054 dec_huffman_lookup(16#bc, 16#9) -> {more, 16#cf, 16#06};
   3055 dec_huffman_lookup(16#bc, 16#a) -> {more, 16#cf, 16#0a};
   3056 dec_huffman_lookup(16#bc, 16#b) -> {more, 16#cf, 16#0f};
   3057 dec_huffman_lookup(16#bc, 16#c) -> {more, 16#cf, 16#18};
   3058 dec_huffman_lookup(16#bc, 16#d) -> {more, 16#cf, 16#1f};
   3059 dec_huffman_lookup(16#bc, 16#e) -> {more, 16#cf, 16#29};
   3060 dec_huffman_lookup(16#bc, 16#f) -> {ok, 16#cf, 16#38};
   3061 dec_huffman_lookup(16#bd, 16#0) -> {more, 16#ea, 16#03};
   3062 dec_huffman_lookup(16#bd, 16#1) -> {more, 16#ea, 16#06};
   3063 dec_huffman_lookup(16#bd, 16#2) -> {more, 16#ea, 16#0a};
   3064 dec_huffman_lookup(16#bd, 16#3) -> {more, 16#ea, 16#0f};
   3065 dec_huffman_lookup(16#bd, 16#4) -> {more, 16#ea, 16#18};
   3066 dec_huffman_lookup(16#bd, 16#5) -> {more, 16#ea, 16#1f};
   3067 dec_huffman_lookup(16#bd, 16#6) -> {more, 16#ea, 16#29};
   3068 dec_huffman_lookup(16#bd, 16#7) -> {ok, 16#ea, 16#38};
   3069 dec_huffman_lookup(16#bd, 16#8) -> {more, 16#eb, 16#03};
   3070 dec_huffman_lookup(16#bd, 16#9) -> {more, 16#eb, 16#06};
   3071 dec_huffman_lookup(16#bd, 16#a) -> {more, 16#eb, 16#0a};
   3072 dec_huffman_lookup(16#bd, 16#b) -> {more, 16#eb, 16#0f};
   3073 dec_huffman_lookup(16#bd, 16#c) -> {more, 16#eb, 16#18};
   3074 dec_huffman_lookup(16#bd, 16#d) -> {more, 16#eb, 16#1f};
   3075 dec_huffman_lookup(16#bd, 16#e) -> {more, 16#eb, 16#29};
   3076 dec_huffman_lookup(16#bd, 16#f) -> {ok, 16#eb, 16#38};
   3077 dec_huffman_lookup(16#be, 16#0) -> {more, undefined, 16#c2};
   3078 dec_huffman_lookup(16#be, 16#1) -> {more, undefined, 16#c3};
   3079 dec_huffman_lookup(16#be, 16#2) -> {more, undefined, 16#c5};
   3080 dec_huffman_lookup(16#be, 16#3) -> {more, undefined, 16#c6};
   3081 dec_huffman_lookup(16#be, 16#4) -> {more, undefined, 16#c9};
   3082 dec_huffman_lookup(16#be, 16#5) -> {more, undefined, 16#ca};
   3083 dec_huffman_lookup(16#be, 16#6) -> {more, undefined, 16#cc};
   3084 dec_huffman_lookup(16#be, 16#7) -> {more, undefined, 16#cd};
   3085 dec_huffman_lookup(16#be, 16#8) -> {more, undefined, 16#d2};
   3086 dec_huffman_lookup(16#be, 16#9) -> {more, undefined, 16#d5};
   3087 dec_huffman_lookup(16#be, 16#a) -> {more, undefined, 16#d9};
   3088 dec_huffman_lookup(16#be, 16#b) -> {more, undefined, 16#dc};
   3089 dec_huffman_lookup(16#be, 16#c) -> {more, undefined, 16#e1};
   3090 dec_huffman_lookup(16#be, 16#d) -> {more, undefined, 16#e7};
   3091 dec_huffman_lookup(16#be, 16#e) -> {more, undefined, 16#ef};
   3092 dec_huffman_lookup(16#be, 16#f) -> {ok, undefined, 16#f6};
   3093 dec_huffman_lookup(16#bf, 16#0) -> {ok, 16#c0, 16#00};
   3094 dec_huffman_lookup(16#bf, 16#1) -> {ok, 16#c1, 16#00};
   3095 dec_huffman_lookup(16#bf, 16#2) -> {ok, 16#c8, 16#00};
   3096 dec_huffman_lookup(16#bf, 16#3) -> {ok, 16#c9, 16#00};
   3097 dec_huffman_lookup(16#bf, 16#4) -> {ok, 16#ca, 16#00};
   3098 dec_huffman_lookup(16#bf, 16#5) -> {ok, 16#cd, 16#00};
   3099 dec_huffman_lookup(16#bf, 16#6) -> {ok, 16#d2, 16#00};
   3100 dec_huffman_lookup(16#bf, 16#7) -> {ok, 16#d5, 16#00};
   3101 dec_huffman_lookup(16#bf, 16#8) -> {ok, 16#da, 16#00};
   3102 dec_huffman_lookup(16#bf, 16#9) -> {ok, 16#db, 16#00};
   3103 dec_huffman_lookup(16#bf, 16#a) -> {ok, 16#ee, 16#00};
   3104 dec_huffman_lookup(16#bf, 16#b) -> {ok, 16#f0, 16#00};
   3105 dec_huffman_lookup(16#bf, 16#c) -> {ok, 16#f2, 16#00};
   3106 dec_huffman_lookup(16#bf, 16#d) -> {ok, 16#f3, 16#00};
   3107 dec_huffman_lookup(16#bf, 16#e) -> {ok, 16#ff, 16#00};
   3108 dec_huffman_lookup(16#bf, 16#f) -> {more, undefined, 16#ce};
   3109 dec_huffman_lookup(16#c0, 16#0) -> {more, 16#c0, 16#01};
   3110 dec_huffman_lookup(16#c0, 16#1) -> {ok, 16#c0, 16#16};
   3111 dec_huffman_lookup(16#c0, 16#2) -> {more, 16#c1, 16#01};
   3112 dec_huffman_lookup(16#c0, 16#3) -> {ok, 16#c1, 16#16};
   3113 dec_huffman_lookup(16#c0, 16#4) -> {more, 16#c8, 16#01};
   3114 dec_huffman_lookup(16#c0, 16#5) -> {ok, 16#c8, 16#16};
   3115 dec_huffman_lookup(16#c0, 16#6) -> {more, 16#c9, 16#01};
   3116 dec_huffman_lookup(16#c0, 16#7) -> {ok, 16#c9, 16#16};
   3117 dec_huffman_lookup(16#c0, 16#8) -> {more, 16#ca, 16#01};
   3118 dec_huffman_lookup(16#c0, 16#9) -> {ok, 16#ca, 16#16};
   3119 dec_huffman_lookup(16#c0, 16#a) -> {more, 16#cd, 16#01};
   3120 dec_huffman_lookup(16#c0, 16#b) -> {ok, 16#cd, 16#16};
   3121 dec_huffman_lookup(16#c0, 16#c) -> {more, 16#d2, 16#01};
   3122 dec_huffman_lookup(16#c0, 16#d) -> {ok, 16#d2, 16#16};
   3123 dec_huffman_lookup(16#c0, 16#e) -> {more, 16#d5, 16#01};
   3124 dec_huffman_lookup(16#c0, 16#f) -> {ok, 16#d5, 16#16};
   3125 dec_huffman_lookup(16#c1, 16#0) -> {more, 16#c0, 16#02};
   3126 dec_huffman_lookup(16#c1, 16#1) -> {more, 16#c0, 16#09};
   3127 dec_huffman_lookup(16#c1, 16#2) -> {more, 16#c0, 16#17};
   3128 dec_huffman_lookup(16#c1, 16#3) -> {ok, 16#c0, 16#28};
   3129 dec_huffman_lookup(16#c1, 16#4) -> {more, 16#c1, 16#02};
   3130 dec_huffman_lookup(16#c1, 16#5) -> {more, 16#c1, 16#09};
   3131 dec_huffman_lookup(16#c1, 16#6) -> {more, 16#c1, 16#17};
   3132 dec_huffman_lookup(16#c1, 16#7) -> {ok, 16#c1, 16#28};
   3133 dec_huffman_lookup(16#c1, 16#8) -> {more, 16#c8, 16#02};
   3134 dec_huffman_lookup(16#c1, 16#9) -> {more, 16#c8, 16#09};
   3135 dec_huffman_lookup(16#c1, 16#a) -> {more, 16#c8, 16#17};
   3136 dec_huffman_lookup(16#c1, 16#b) -> {ok, 16#c8, 16#28};
   3137 dec_huffman_lookup(16#c1, 16#c) -> {more, 16#c9, 16#02};
   3138 dec_huffman_lookup(16#c1, 16#d) -> {more, 16#c9, 16#09};
   3139 dec_huffman_lookup(16#c1, 16#e) -> {more, 16#c9, 16#17};
   3140 dec_huffman_lookup(16#c1, 16#f) -> {ok, 16#c9, 16#28};
   3141 dec_huffman_lookup(16#c2, 16#0) -> {more, 16#c0, 16#03};
   3142 dec_huffman_lookup(16#c2, 16#1) -> {more, 16#c0, 16#06};
   3143 dec_huffman_lookup(16#c2, 16#2) -> {more, 16#c0, 16#0a};
   3144 dec_huffman_lookup(16#c2, 16#3) -> {more, 16#c0, 16#0f};
   3145 dec_huffman_lookup(16#c2, 16#4) -> {more, 16#c0, 16#18};
   3146 dec_huffman_lookup(16#c2, 16#5) -> {more, 16#c0, 16#1f};
   3147 dec_huffman_lookup(16#c2, 16#6) -> {more, 16#c0, 16#29};
   3148 dec_huffman_lookup(16#c2, 16#7) -> {ok, 16#c0, 16#38};
   3149 dec_huffman_lookup(16#c2, 16#8) -> {more, 16#c1, 16#03};
   3150 dec_huffman_lookup(16#c2, 16#9) -> {more, 16#c1, 16#06};
   3151 dec_huffman_lookup(16#c2, 16#a) -> {more, 16#c1, 16#0a};
   3152 dec_huffman_lookup(16#c2, 16#b) -> {more, 16#c1, 16#0f};
   3153 dec_huffman_lookup(16#c2, 16#c) -> {more, 16#c1, 16#18};
   3154 dec_huffman_lookup(16#c2, 16#d) -> {more, 16#c1, 16#1f};
   3155 dec_huffman_lookup(16#c2, 16#e) -> {more, 16#c1, 16#29};
   3156 dec_huffman_lookup(16#c2, 16#f) -> {ok, 16#c1, 16#38};
   3157 dec_huffman_lookup(16#c3, 16#0) -> {more, 16#c8, 16#03};
   3158 dec_huffman_lookup(16#c3, 16#1) -> {more, 16#c8, 16#06};
   3159 dec_huffman_lookup(16#c3, 16#2) -> {more, 16#c8, 16#0a};
   3160 dec_huffman_lookup(16#c3, 16#3) -> {more, 16#c8, 16#0f};
   3161 dec_huffman_lookup(16#c3, 16#4) -> {more, 16#c8, 16#18};
   3162 dec_huffman_lookup(16#c3, 16#5) -> {more, 16#c8, 16#1f};
   3163 dec_huffman_lookup(16#c3, 16#6) -> {more, 16#c8, 16#29};
   3164 dec_huffman_lookup(16#c3, 16#7) -> {ok, 16#c8, 16#38};
   3165 dec_huffman_lookup(16#c3, 16#8) -> {more, 16#c9, 16#03};
   3166 dec_huffman_lookup(16#c3, 16#9) -> {more, 16#c9, 16#06};
   3167 dec_huffman_lookup(16#c3, 16#a) -> {more, 16#c9, 16#0a};
   3168 dec_huffman_lookup(16#c3, 16#b) -> {more, 16#c9, 16#0f};
   3169 dec_huffman_lookup(16#c3, 16#c) -> {more, 16#c9, 16#18};
   3170 dec_huffman_lookup(16#c3, 16#d) -> {more, 16#c9, 16#1f};
   3171 dec_huffman_lookup(16#c3, 16#e) -> {more, 16#c9, 16#29};
   3172 dec_huffman_lookup(16#c3, 16#f) -> {ok, 16#c9, 16#38};
   3173 dec_huffman_lookup(16#c4, 16#0) -> {more, 16#ca, 16#02};
   3174 dec_huffman_lookup(16#c4, 16#1) -> {more, 16#ca, 16#09};
   3175 dec_huffman_lookup(16#c4, 16#2) -> {more, 16#ca, 16#17};
   3176 dec_huffman_lookup(16#c4, 16#3) -> {ok, 16#ca, 16#28};
   3177 dec_huffman_lookup(16#c4, 16#4) -> {more, 16#cd, 16#02};
   3178 dec_huffman_lookup(16#c4, 16#5) -> {more, 16#cd, 16#09};
   3179 dec_huffman_lookup(16#c4, 16#6) -> {more, 16#cd, 16#17};
   3180 dec_huffman_lookup(16#c4, 16#7) -> {ok, 16#cd, 16#28};
   3181 dec_huffman_lookup(16#c4, 16#8) -> {more, 16#d2, 16#02};
   3182 dec_huffman_lookup(16#c4, 16#9) -> {more, 16#d2, 16#09};
   3183 dec_huffman_lookup(16#c4, 16#a) -> {more, 16#d2, 16#17};
   3184 dec_huffman_lookup(16#c4, 16#b) -> {ok, 16#d2, 16#28};
   3185 dec_huffman_lookup(16#c4, 16#c) -> {more, 16#d5, 16#02};
   3186 dec_huffman_lookup(16#c4, 16#d) -> {more, 16#d5, 16#09};
   3187 dec_huffman_lookup(16#c4, 16#e) -> {more, 16#d5, 16#17};
   3188 dec_huffman_lookup(16#c4, 16#f) -> {ok, 16#d5, 16#28};
   3189 dec_huffman_lookup(16#c5, 16#0) -> {more, 16#ca, 16#03};
   3190 dec_huffman_lookup(16#c5, 16#1) -> {more, 16#ca, 16#06};
   3191 dec_huffman_lookup(16#c5, 16#2) -> {more, 16#ca, 16#0a};
   3192 dec_huffman_lookup(16#c5, 16#3) -> {more, 16#ca, 16#0f};
   3193 dec_huffman_lookup(16#c5, 16#4) -> {more, 16#ca, 16#18};
   3194 dec_huffman_lookup(16#c5, 16#5) -> {more, 16#ca, 16#1f};
   3195 dec_huffman_lookup(16#c5, 16#6) -> {more, 16#ca, 16#29};
   3196 dec_huffman_lookup(16#c5, 16#7) -> {ok, 16#ca, 16#38};
   3197 dec_huffman_lookup(16#c5, 16#8) -> {more, 16#cd, 16#03};
   3198 dec_huffman_lookup(16#c5, 16#9) -> {more, 16#cd, 16#06};
   3199 dec_huffman_lookup(16#c5, 16#a) -> {more, 16#cd, 16#0a};
   3200 dec_huffman_lookup(16#c5, 16#b) -> {more, 16#cd, 16#0f};
   3201 dec_huffman_lookup(16#c5, 16#c) -> {more, 16#cd, 16#18};
   3202 dec_huffman_lookup(16#c5, 16#d) -> {more, 16#cd, 16#1f};
   3203 dec_huffman_lookup(16#c5, 16#e) -> {more, 16#cd, 16#29};
   3204 dec_huffman_lookup(16#c5, 16#f) -> {ok, 16#cd, 16#38};
   3205 dec_huffman_lookup(16#c6, 16#0) -> {more, 16#d2, 16#03};
   3206 dec_huffman_lookup(16#c6, 16#1) -> {more, 16#d2, 16#06};
   3207 dec_huffman_lookup(16#c6, 16#2) -> {more, 16#d2, 16#0a};
   3208 dec_huffman_lookup(16#c6, 16#3) -> {more, 16#d2, 16#0f};
   3209 dec_huffman_lookup(16#c6, 16#4) -> {more, 16#d2, 16#18};
   3210 dec_huffman_lookup(16#c6, 16#5) -> {more, 16#d2, 16#1f};
   3211 dec_huffman_lookup(16#c6, 16#6) -> {more, 16#d2, 16#29};
   3212 dec_huffman_lookup(16#c6, 16#7) -> {ok, 16#d2, 16#38};
   3213 dec_huffman_lookup(16#c6, 16#8) -> {more, 16#d5, 16#03};
   3214 dec_huffman_lookup(16#c6, 16#9) -> {more, 16#d5, 16#06};
   3215 dec_huffman_lookup(16#c6, 16#a) -> {more, 16#d5, 16#0a};
   3216 dec_huffman_lookup(16#c6, 16#b) -> {more, 16#d5, 16#0f};
   3217 dec_huffman_lookup(16#c6, 16#c) -> {more, 16#d5, 16#18};
   3218 dec_huffman_lookup(16#c6, 16#d) -> {more, 16#d5, 16#1f};
   3219 dec_huffman_lookup(16#c6, 16#e) -> {more, 16#d5, 16#29};
   3220 dec_huffman_lookup(16#c6, 16#f) -> {ok, 16#d5, 16#38};
   3221 dec_huffman_lookup(16#c7, 16#0) -> {more, 16#da, 16#01};
   3222 dec_huffman_lookup(16#c7, 16#1) -> {ok, 16#da, 16#16};
   3223 dec_huffman_lookup(16#c7, 16#2) -> {more, 16#db, 16#01};
   3224 dec_huffman_lookup(16#c7, 16#3) -> {ok, 16#db, 16#16};
   3225 dec_huffman_lookup(16#c7, 16#4) -> {more, 16#ee, 16#01};
   3226 dec_huffman_lookup(16#c7, 16#5) -> {ok, 16#ee, 16#16};
   3227 dec_huffman_lookup(16#c7, 16#6) -> {more, 16#f0, 16#01};
   3228 dec_huffman_lookup(16#c7, 16#7) -> {ok, 16#f0, 16#16};
   3229 dec_huffman_lookup(16#c7, 16#8) -> {more, 16#f2, 16#01};
   3230 dec_huffman_lookup(16#c7, 16#9) -> {ok, 16#f2, 16#16};
   3231 dec_huffman_lookup(16#c7, 16#a) -> {more, 16#f3, 16#01};
   3232 dec_huffman_lookup(16#c7, 16#b) -> {ok, 16#f3, 16#16};
   3233 dec_huffman_lookup(16#c7, 16#c) -> {more, 16#ff, 16#01};
   3234 dec_huffman_lookup(16#c7, 16#d) -> {ok, 16#ff, 16#16};
   3235 dec_huffman_lookup(16#c7, 16#e) -> {ok, 16#cb, 16#00};
   3236 dec_huffman_lookup(16#c7, 16#f) -> {ok, 16#cc, 16#00};
   3237 dec_huffman_lookup(16#c8, 16#0) -> {more, 16#da, 16#02};
   3238 dec_huffman_lookup(16#c8, 16#1) -> {more, 16#da, 16#09};
   3239 dec_huffman_lookup(16#c8, 16#2) -> {more, 16#da, 16#17};
   3240 dec_huffman_lookup(16#c8, 16#3) -> {ok, 16#da, 16#28};
   3241 dec_huffman_lookup(16#c8, 16#4) -> {more, 16#db, 16#02};
   3242 dec_huffman_lookup(16#c8, 16#5) -> {more, 16#db, 16#09};
   3243 dec_huffman_lookup(16#c8, 16#6) -> {more, 16#db, 16#17};
   3244 dec_huffman_lookup(16#c8, 16#7) -> {ok, 16#db, 16#28};
   3245 dec_huffman_lookup(16#c8, 16#8) -> {more, 16#ee, 16#02};
   3246 dec_huffman_lookup(16#c8, 16#9) -> {more, 16#ee, 16#09};
   3247 dec_huffman_lookup(16#c8, 16#a) -> {more, 16#ee, 16#17};
   3248 dec_huffman_lookup(16#c8, 16#b) -> {ok, 16#ee, 16#28};
   3249 dec_huffman_lookup(16#c8, 16#c) -> {more, 16#f0, 16#02};
   3250 dec_huffman_lookup(16#c8, 16#d) -> {more, 16#f0, 16#09};
   3251 dec_huffman_lookup(16#c8, 16#e) -> {more, 16#f0, 16#17};
   3252 dec_huffman_lookup(16#c8, 16#f) -> {ok, 16#f0, 16#28};
   3253 dec_huffman_lookup(16#c9, 16#0) -> {more, 16#da, 16#03};
   3254 dec_huffman_lookup(16#c9, 16#1) -> {more, 16#da, 16#06};
   3255 dec_huffman_lookup(16#c9, 16#2) -> {more, 16#da, 16#0a};
   3256 dec_huffman_lookup(16#c9, 16#3) -> {more, 16#da, 16#0f};
   3257 dec_huffman_lookup(16#c9, 16#4) -> {more, 16#da, 16#18};
   3258 dec_huffman_lookup(16#c9, 16#5) -> {more, 16#da, 16#1f};
   3259 dec_huffman_lookup(16#c9, 16#6) -> {more, 16#da, 16#29};
   3260 dec_huffman_lookup(16#c9, 16#7) -> {ok, 16#da, 16#38};
   3261 dec_huffman_lookup(16#c9, 16#8) -> {more, 16#db, 16#03};
   3262 dec_huffman_lookup(16#c9, 16#9) -> {more, 16#db, 16#06};
   3263 dec_huffman_lookup(16#c9, 16#a) -> {more, 16#db, 16#0a};
   3264 dec_huffman_lookup(16#c9, 16#b) -> {more, 16#db, 16#0f};
   3265 dec_huffman_lookup(16#c9, 16#c) -> {more, 16#db, 16#18};
   3266 dec_huffman_lookup(16#c9, 16#d) -> {more, 16#db, 16#1f};
   3267 dec_huffman_lookup(16#c9, 16#e) -> {more, 16#db, 16#29};
   3268 dec_huffman_lookup(16#c9, 16#f) -> {ok, 16#db, 16#38};
   3269 dec_huffman_lookup(16#ca, 16#0) -> {more, 16#ee, 16#03};
   3270 dec_huffman_lookup(16#ca, 16#1) -> {more, 16#ee, 16#06};
   3271 dec_huffman_lookup(16#ca, 16#2) -> {more, 16#ee, 16#0a};
   3272 dec_huffman_lookup(16#ca, 16#3) -> {more, 16#ee, 16#0f};
   3273 dec_huffman_lookup(16#ca, 16#4) -> {more, 16#ee, 16#18};
   3274 dec_huffman_lookup(16#ca, 16#5) -> {more, 16#ee, 16#1f};
   3275 dec_huffman_lookup(16#ca, 16#6) -> {more, 16#ee, 16#29};
   3276 dec_huffman_lookup(16#ca, 16#7) -> {ok, 16#ee, 16#38};
   3277 dec_huffman_lookup(16#ca, 16#8) -> {more, 16#f0, 16#03};
   3278 dec_huffman_lookup(16#ca, 16#9) -> {more, 16#f0, 16#06};
   3279 dec_huffman_lookup(16#ca, 16#a) -> {more, 16#f0, 16#0a};
   3280 dec_huffman_lookup(16#ca, 16#b) -> {more, 16#f0, 16#0f};
   3281 dec_huffman_lookup(16#ca, 16#c) -> {more, 16#f0, 16#18};
   3282 dec_huffman_lookup(16#ca, 16#d) -> {more, 16#f0, 16#1f};
   3283 dec_huffman_lookup(16#ca, 16#e) -> {more, 16#f0, 16#29};
   3284 dec_huffman_lookup(16#ca, 16#f) -> {ok, 16#f0, 16#38};
   3285 dec_huffman_lookup(16#cb, 16#0) -> {more, 16#f2, 16#02};
   3286 dec_huffman_lookup(16#cb, 16#1) -> {more, 16#f2, 16#09};
   3287 dec_huffman_lookup(16#cb, 16#2) -> {more, 16#f2, 16#17};
   3288 dec_huffman_lookup(16#cb, 16#3) -> {ok, 16#f2, 16#28};
   3289 dec_huffman_lookup(16#cb, 16#4) -> {more, 16#f3, 16#02};
   3290 dec_huffman_lookup(16#cb, 16#5) -> {more, 16#f3, 16#09};
   3291 dec_huffman_lookup(16#cb, 16#6) -> {more, 16#f3, 16#17};
   3292 dec_huffman_lookup(16#cb, 16#7) -> {ok, 16#f3, 16#28};
   3293 dec_huffman_lookup(16#cb, 16#8) -> {more, 16#ff, 16#02};
   3294 dec_huffman_lookup(16#cb, 16#9) -> {more, 16#ff, 16#09};
   3295 dec_huffman_lookup(16#cb, 16#a) -> {more, 16#ff, 16#17};
   3296 dec_huffman_lookup(16#cb, 16#b) -> {ok, 16#ff, 16#28};
   3297 dec_huffman_lookup(16#cb, 16#c) -> {more, 16#cb, 16#01};
   3298 dec_huffman_lookup(16#cb, 16#d) -> {ok, 16#cb, 16#16};
   3299 dec_huffman_lookup(16#cb, 16#e) -> {more, 16#cc, 16#01};
   3300 dec_huffman_lookup(16#cb, 16#f) -> {ok, 16#cc, 16#16};
   3301 dec_huffman_lookup(16#cc, 16#0) -> {more, 16#f2, 16#03};
   3302 dec_huffman_lookup(16#cc, 16#1) -> {more, 16#f2, 16#06};
   3303 dec_huffman_lookup(16#cc, 16#2) -> {more, 16#f2, 16#0a};
   3304 dec_huffman_lookup(16#cc, 16#3) -> {more, 16#f2, 16#0f};
   3305 dec_huffman_lookup(16#cc, 16#4) -> {more, 16#f2, 16#18};
   3306 dec_huffman_lookup(16#cc, 16#5) -> {more, 16#f2, 16#1f};
   3307 dec_huffman_lookup(16#cc, 16#6) -> {more, 16#f2, 16#29};
   3308 dec_huffman_lookup(16#cc, 16#7) -> {ok, 16#f2, 16#38};
   3309 dec_huffman_lookup(16#cc, 16#8) -> {more, 16#f3, 16#03};
   3310 dec_huffman_lookup(16#cc, 16#9) -> {more, 16#f3, 16#06};
   3311 dec_huffman_lookup(16#cc, 16#a) -> {more, 16#f3, 16#0a};
   3312 dec_huffman_lookup(16#cc, 16#b) -> {more, 16#f3, 16#0f};
   3313 dec_huffman_lookup(16#cc, 16#c) -> {more, 16#f3, 16#18};
   3314 dec_huffman_lookup(16#cc, 16#d) -> {more, 16#f3, 16#1f};
   3315 dec_huffman_lookup(16#cc, 16#e) -> {more, 16#f3, 16#29};
   3316 dec_huffman_lookup(16#cc, 16#f) -> {ok, 16#f3, 16#38};
   3317 dec_huffman_lookup(16#cd, 16#0) -> {more, 16#ff, 16#03};
   3318 dec_huffman_lookup(16#cd, 16#1) -> {more, 16#ff, 16#06};
   3319 dec_huffman_lookup(16#cd, 16#2) -> {more, 16#ff, 16#0a};
   3320 dec_huffman_lookup(16#cd, 16#3) -> {more, 16#ff, 16#0f};
   3321 dec_huffman_lookup(16#cd, 16#4) -> {more, 16#ff, 16#18};
   3322 dec_huffman_lookup(16#cd, 16#5) -> {more, 16#ff, 16#1f};
   3323 dec_huffman_lookup(16#cd, 16#6) -> {more, 16#ff, 16#29};
   3324 dec_huffman_lookup(16#cd, 16#7) -> {ok, 16#ff, 16#38};
   3325 dec_huffman_lookup(16#cd, 16#8) -> {more, 16#cb, 16#02};
   3326 dec_huffman_lookup(16#cd, 16#9) -> {more, 16#cb, 16#09};
   3327 dec_huffman_lookup(16#cd, 16#a) -> {more, 16#cb, 16#17};
   3328 dec_huffman_lookup(16#cd, 16#b) -> {ok, 16#cb, 16#28};
   3329 dec_huffman_lookup(16#cd, 16#c) -> {more, 16#cc, 16#02};
   3330 dec_huffman_lookup(16#cd, 16#d) -> {more, 16#cc, 16#09};
   3331 dec_huffman_lookup(16#cd, 16#e) -> {more, 16#cc, 16#17};
   3332 dec_huffman_lookup(16#cd, 16#f) -> {ok, 16#cc, 16#28};
   3333 dec_huffman_lookup(16#ce, 16#0) -> {more, 16#cb, 16#03};
   3334 dec_huffman_lookup(16#ce, 16#1) -> {more, 16#cb, 16#06};
   3335 dec_huffman_lookup(16#ce, 16#2) -> {more, 16#cb, 16#0a};
   3336 dec_huffman_lookup(16#ce, 16#3) -> {more, 16#cb, 16#0f};
   3337 dec_huffman_lookup(16#ce, 16#4) -> {more, 16#cb, 16#18};
   3338 dec_huffman_lookup(16#ce, 16#5) -> {more, 16#cb, 16#1f};
   3339 dec_huffman_lookup(16#ce, 16#6) -> {more, 16#cb, 16#29};
   3340 dec_huffman_lookup(16#ce, 16#7) -> {ok, 16#cb, 16#38};
   3341 dec_huffman_lookup(16#ce, 16#8) -> {more, 16#cc, 16#03};
   3342 dec_huffman_lookup(16#ce, 16#9) -> {more, 16#cc, 16#06};
   3343 dec_huffman_lookup(16#ce, 16#a) -> {more, 16#cc, 16#0a};
   3344 dec_huffman_lookup(16#ce, 16#b) -> {more, 16#cc, 16#0f};
   3345 dec_huffman_lookup(16#ce, 16#c) -> {more, 16#cc, 16#18};
   3346 dec_huffman_lookup(16#ce, 16#d) -> {more, 16#cc, 16#1f};
   3347 dec_huffman_lookup(16#ce, 16#e) -> {more, 16#cc, 16#29};
   3348 dec_huffman_lookup(16#ce, 16#f) -> {ok, 16#cc, 16#38};
   3349 dec_huffman_lookup(16#cf, 16#0) -> {more, undefined, 16#d3};
   3350 dec_huffman_lookup(16#cf, 16#1) -> {more, undefined, 16#d4};
   3351 dec_huffman_lookup(16#cf, 16#2) -> {more, undefined, 16#d6};
   3352 dec_huffman_lookup(16#cf, 16#3) -> {more, undefined, 16#d7};
   3353 dec_huffman_lookup(16#cf, 16#4) -> {more, undefined, 16#da};
   3354 dec_huffman_lookup(16#cf, 16#5) -> {more, undefined, 16#db};
   3355 dec_huffman_lookup(16#cf, 16#6) -> {more, undefined, 16#dd};
   3356 dec_huffman_lookup(16#cf, 16#7) -> {more, undefined, 16#de};
   3357 dec_huffman_lookup(16#cf, 16#8) -> {more, undefined, 16#e2};
   3358 dec_huffman_lookup(16#cf, 16#9) -> {more, undefined, 16#e4};
   3359 dec_huffman_lookup(16#cf, 16#a) -> {more, undefined, 16#e8};
   3360 dec_huffman_lookup(16#cf, 16#b) -> {more, undefined, 16#eb};
   3361 dec_huffman_lookup(16#cf, 16#c) -> {more, undefined, 16#f0};
   3362 dec_huffman_lookup(16#cf, 16#d) -> {more, undefined, 16#f3};
   3363 dec_huffman_lookup(16#cf, 16#e) -> {more, undefined, 16#f7};
   3364 dec_huffman_lookup(16#cf, 16#f) -> {ok, undefined, 16#fa};
   3365 dec_huffman_lookup(16#d0, 16#0) -> {ok, 16#d3, 16#00};
   3366 dec_huffman_lookup(16#d0, 16#1) -> {ok, 16#d4, 16#00};
   3367 dec_huffman_lookup(16#d0, 16#2) -> {ok, 16#d6, 16#00};
   3368 dec_huffman_lookup(16#d0, 16#3) -> {ok, 16#dd, 16#00};
   3369 dec_huffman_lookup(16#d0, 16#4) -> {ok, 16#de, 16#00};
   3370 dec_huffman_lookup(16#d0, 16#5) -> {ok, 16#df, 16#00};
   3371 dec_huffman_lookup(16#d0, 16#6) -> {ok, 16#f1, 16#00};
   3372 dec_huffman_lookup(16#d0, 16#7) -> {ok, 16#f4, 16#00};
   3373 dec_huffman_lookup(16#d0, 16#8) -> {ok, 16#f5, 16#00};
   3374 dec_huffman_lookup(16#d0, 16#9) -> {ok, 16#f6, 16#00};
   3375 dec_huffman_lookup(16#d0, 16#a) -> {ok, 16#f7, 16#00};
   3376 dec_huffman_lookup(16#d0, 16#b) -> {ok, 16#f8, 16#00};
   3377 dec_huffman_lookup(16#d0, 16#c) -> {ok, 16#fa, 16#00};
   3378 dec_huffman_lookup(16#d0, 16#d) -> {ok, 16#fb, 16#00};
   3379 dec_huffman_lookup(16#d0, 16#e) -> {ok, 16#fc, 16#00};
   3380 dec_huffman_lookup(16#d0, 16#f) -> {ok, 16#fd, 16#00};
   3381 dec_huffman_lookup(16#d1, 16#0) -> {more, 16#d3, 16#01};
   3382 dec_huffman_lookup(16#d1, 16#1) -> {ok, 16#d3, 16#16};
   3383 dec_huffman_lookup(16#d1, 16#2) -> {more, 16#d4, 16#01};
   3384 dec_huffman_lookup(16#d1, 16#3) -> {ok, 16#d4, 16#16};
   3385 dec_huffman_lookup(16#d1, 16#4) -> {more, 16#d6, 16#01};
   3386 dec_huffman_lookup(16#d1, 16#5) -> {ok, 16#d6, 16#16};
   3387 dec_huffman_lookup(16#d1, 16#6) -> {more, 16#dd, 16#01};
   3388 dec_huffman_lookup(16#d1, 16#7) -> {ok, 16#dd, 16#16};
   3389 dec_huffman_lookup(16#d1, 16#8) -> {more, 16#de, 16#01};
   3390 dec_huffman_lookup(16#d1, 16#9) -> {ok, 16#de, 16#16};
   3391 dec_huffman_lookup(16#d1, 16#a) -> {more, 16#df, 16#01};
   3392 dec_huffman_lookup(16#d1, 16#b) -> {ok, 16#df, 16#16};
   3393 dec_huffman_lookup(16#d1, 16#c) -> {more, 16#f1, 16#01};
   3394 dec_huffman_lookup(16#d1, 16#d) -> {ok, 16#f1, 16#16};
   3395 dec_huffman_lookup(16#d1, 16#e) -> {more, 16#f4, 16#01};
   3396 dec_huffman_lookup(16#d1, 16#f) -> {ok, 16#f4, 16#16};
   3397 dec_huffman_lookup(16#d2, 16#0) -> {more, 16#d3, 16#02};
   3398 dec_huffman_lookup(16#d2, 16#1) -> {more, 16#d3, 16#09};
   3399 dec_huffman_lookup(16#d2, 16#2) -> {more, 16#d3, 16#17};
   3400 dec_huffman_lookup(16#d2, 16#3) -> {ok, 16#d3, 16#28};
   3401 dec_huffman_lookup(16#d2, 16#4) -> {more, 16#d4, 16#02};
   3402 dec_huffman_lookup(16#d2, 16#5) -> {more, 16#d4, 16#09};
   3403 dec_huffman_lookup(16#d2, 16#6) -> {more, 16#d4, 16#17};
   3404 dec_huffman_lookup(16#d2, 16#7) -> {ok, 16#d4, 16#28};
   3405 dec_huffman_lookup(16#d2, 16#8) -> {more, 16#d6, 16#02};
   3406 dec_huffman_lookup(16#d2, 16#9) -> {more, 16#d6, 16#09};
   3407 dec_huffman_lookup(16#d2, 16#a) -> {more, 16#d6, 16#17};
   3408 dec_huffman_lookup(16#d2, 16#b) -> {ok, 16#d6, 16#28};
   3409 dec_huffman_lookup(16#d2, 16#c) -> {more, 16#dd, 16#02};
   3410 dec_huffman_lookup(16#d2, 16#d) -> {more, 16#dd, 16#09};
   3411 dec_huffman_lookup(16#d2, 16#e) -> {more, 16#dd, 16#17};
   3412 dec_huffman_lookup(16#d2, 16#f) -> {ok, 16#dd, 16#28};
   3413 dec_huffman_lookup(16#d3, 16#0) -> {more, 16#d3, 16#03};
   3414 dec_huffman_lookup(16#d3, 16#1) -> {more, 16#d3, 16#06};
   3415 dec_huffman_lookup(16#d3, 16#2) -> {more, 16#d3, 16#0a};
   3416 dec_huffman_lookup(16#d3, 16#3) -> {more, 16#d3, 16#0f};
   3417 dec_huffman_lookup(16#d3, 16#4) -> {more, 16#d3, 16#18};
   3418 dec_huffman_lookup(16#d3, 16#5) -> {more, 16#d3, 16#1f};
   3419 dec_huffman_lookup(16#d3, 16#6) -> {more, 16#d3, 16#29};
   3420 dec_huffman_lookup(16#d3, 16#7) -> {ok, 16#d3, 16#38};
   3421 dec_huffman_lookup(16#d3, 16#8) -> {more, 16#d4, 16#03};
   3422 dec_huffman_lookup(16#d3, 16#9) -> {more, 16#d4, 16#06};
   3423 dec_huffman_lookup(16#d3, 16#a) -> {more, 16#d4, 16#0a};
   3424 dec_huffman_lookup(16#d3, 16#b) -> {more, 16#d4, 16#0f};
   3425 dec_huffman_lookup(16#d3, 16#c) -> {more, 16#d4, 16#18};
   3426 dec_huffman_lookup(16#d3, 16#d) -> {more, 16#d4, 16#1f};
   3427 dec_huffman_lookup(16#d3, 16#e) -> {more, 16#d4, 16#29};
   3428 dec_huffman_lookup(16#d3, 16#f) -> {ok, 16#d4, 16#38};
   3429 dec_huffman_lookup(16#d4, 16#0) -> {more, 16#d6, 16#03};
   3430 dec_huffman_lookup(16#d4, 16#1) -> {more, 16#d6, 16#06};
   3431 dec_huffman_lookup(16#d4, 16#2) -> {more, 16#d6, 16#0a};
   3432 dec_huffman_lookup(16#d4, 16#3) -> {more, 16#d6, 16#0f};
   3433 dec_huffman_lookup(16#d4, 16#4) -> {more, 16#d6, 16#18};
   3434 dec_huffman_lookup(16#d4, 16#5) -> {more, 16#d6, 16#1f};
   3435 dec_huffman_lookup(16#d4, 16#6) -> {more, 16#d6, 16#29};
   3436 dec_huffman_lookup(16#d4, 16#7) -> {ok, 16#d6, 16#38};
   3437 dec_huffman_lookup(16#d4, 16#8) -> {more, 16#dd, 16#03};
   3438 dec_huffman_lookup(16#d4, 16#9) -> {more, 16#dd, 16#06};
   3439 dec_huffman_lookup(16#d4, 16#a) -> {more, 16#dd, 16#0a};
   3440 dec_huffman_lookup(16#d4, 16#b) -> {more, 16#dd, 16#0f};
   3441 dec_huffman_lookup(16#d4, 16#c) -> {more, 16#dd, 16#18};
   3442 dec_huffman_lookup(16#d4, 16#d) -> {more, 16#dd, 16#1f};
   3443 dec_huffman_lookup(16#d4, 16#e) -> {more, 16#dd, 16#29};
   3444 dec_huffman_lookup(16#d4, 16#f) -> {ok, 16#dd, 16#38};
   3445 dec_huffman_lookup(16#d5, 16#0) -> {more, 16#de, 16#02};
   3446 dec_huffman_lookup(16#d5, 16#1) -> {more, 16#de, 16#09};
   3447 dec_huffman_lookup(16#d5, 16#2) -> {more, 16#de, 16#17};
   3448 dec_huffman_lookup(16#d5, 16#3) -> {ok, 16#de, 16#28};
   3449 dec_huffman_lookup(16#d5, 16#4) -> {more, 16#df, 16#02};
   3450 dec_huffman_lookup(16#d5, 16#5) -> {more, 16#df, 16#09};
   3451 dec_huffman_lookup(16#d5, 16#6) -> {more, 16#df, 16#17};
   3452 dec_huffman_lookup(16#d5, 16#7) -> {ok, 16#df, 16#28};
   3453 dec_huffman_lookup(16#d5, 16#8) -> {more, 16#f1, 16#02};
   3454 dec_huffman_lookup(16#d5, 16#9) -> {more, 16#f1, 16#09};
   3455 dec_huffman_lookup(16#d5, 16#a) -> {more, 16#f1, 16#17};
   3456 dec_huffman_lookup(16#d5, 16#b) -> {ok, 16#f1, 16#28};
   3457 dec_huffman_lookup(16#d5, 16#c) -> {more, 16#f4, 16#02};
   3458 dec_huffman_lookup(16#d5, 16#d) -> {more, 16#f4, 16#09};
   3459 dec_huffman_lookup(16#d5, 16#e) -> {more, 16#f4, 16#17};
   3460 dec_huffman_lookup(16#d5, 16#f) -> {ok, 16#f4, 16#28};
   3461 dec_huffman_lookup(16#d6, 16#0) -> {more, 16#de, 16#03};
   3462 dec_huffman_lookup(16#d6, 16#1) -> {more, 16#de, 16#06};
   3463 dec_huffman_lookup(16#d6, 16#2) -> {more, 16#de, 16#0a};
   3464 dec_huffman_lookup(16#d6, 16#3) -> {more, 16#de, 16#0f};
   3465 dec_huffman_lookup(16#d6, 16#4) -> {more, 16#de, 16#18};
   3466 dec_huffman_lookup(16#d6, 16#5) -> {more, 16#de, 16#1f};
   3467 dec_huffman_lookup(16#d6, 16#6) -> {more, 16#de, 16#29};
   3468 dec_huffman_lookup(16#d6, 16#7) -> {ok, 16#de, 16#38};
   3469 dec_huffman_lookup(16#d6, 16#8) -> {more, 16#df, 16#03};
   3470 dec_huffman_lookup(16#d6, 16#9) -> {more, 16#df, 16#06};
   3471 dec_huffman_lookup(16#d6, 16#a) -> {more, 16#df, 16#0a};
   3472 dec_huffman_lookup(16#d6, 16#b) -> {more, 16#df, 16#0f};
   3473 dec_huffman_lookup(16#d6, 16#c) -> {more, 16#df, 16#18};
   3474 dec_huffman_lookup(16#d6, 16#d) -> {more, 16#df, 16#1f};
   3475 dec_huffman_lookup(16#d6, 16#e) -> {more, 16#df, 16#29};
   3476 dec_huffman_lookup(16#d6, 16#f) -> {ok, 16#df, 16#38};
   3477 dec_huffman_lookup(16#d7, 16#0) -> {more, 16#f1, 16#03};
   3478 dec_huffman_lookup(16#d7, 16#1) -> {more, 16#f1, 16#06};
   3479 dec_huffman_lookup(16#d7, 16#2) -> {more, 16#f1, 16#0a};
   3480 dec_huffman_lookup(16#d7, 16#3) -> {more, 16#f1, 16#0f};
   3481 dec_huffman_lookup(16#d7, 16#4) -> {more, 16#f1, 16#18};
   3482 dec_huffman_lookup(16#d7, 16#5) -> {more, 16#f1, 16#1f};
   3483 dec_huffman_lookup(16#d7, 16#6) -> {more, 16#f1, 16#29};
   3484 dec_huffman_lookup(16#d7, 16#7) -> {ok, 16#f1, 16#38};
   3485 dec_huffman_lookup(16#d7, 16#8) -> {more, 16#f4, 16#03};
   3486 dec_huffman_lookup(16#d7, 16#9) -> {more, 16#f4, 16#06};
   3487 dec_huffman_lookup(16#d7, 16#a) -> {more, 16#f4, 16#0a};
   3488 dec_huffman_lookup(16#d7, 16#b) -> {more, 16#f4, 16#0f};
   3489 dec_huffman_lookup(16#d7, 16#c) -> {more, 16#f4, 16#18};
   3490 dec_huffman_lookup(16#d7, 16#d) -> {more, 16#f4, 16#1f};
   3491 dec_huffman_lookup(16#d7, 16#e) -> {more, 16#f4, 16#29};
   3492 dec_huffman_lookup(16#d7, 16#f) -> {ok, 16#f4, 16#38};
   3493 dec_huffman_lookup(16#d8, 16#0) -> {more, 16#f5, 16#01};
   3494 dec_huffman_lookup(16#d8, 16#1) -> {ok, 16#f5, 16#16};
   3495 dec_huffman_lookup(16#d8, 16#2) -> {more, 16#f6, 16#01};
   3496 dec_huffman_lookup(16#d8, 16#3) -> {ok, 16#f6, 16#16};
   3497 dec_huffman_lookup(16#d8, 16#4) -> {more, 16#f7, 16#01};
   3498 dec_huffman_lookup(16#d8, 16#5) -> {ok, 16#f7, 16#16};
   3499 dec_huffman_lookup(16#d8, 16#6) -> {more, 16#f8, 16#01};
   3500 dec_huffman_lookup(16#d8, 16#7) -> {ok, 16#f8, 16#16};
   3501 dec_huffman_lookup(16#d8, 16#8) -> {more, 16#fa, 16#01};
   3502 dec_huffman_lookup(16#d8, 16#9) -> {ok, 16#fa, 16#16};
   3503 dec_huffman_lookup(16#d8, 16#a) -> {more, 16#fb, 16#01};
   3504 dec_huffman_lookup(16#d8, 16#b) -> {ok, 16#fb, 16#16};
   3505 dec_huffman_lookup(16#d8, 16#c) -> {more, 16#fc, 16#01};
   3506 dec_huffman_lookup(16#d8, 16#d) -> {ok, 16#fc, 16#16};
   3507 dec_huffman_lookup(16#d8, 16#e) -> {more, 16#fd, 16#01};
   3508 dec_huffman_lookup(16#d8, 16#f) -> {ok, 16#fd, 16#16};
   3509 dec_huffman_lookup(16#d9, 16#0) -> {more, 16#f5, 16#02};
   3510 dec_huffman_lookup(16#d9, 16#1) -> {more, 16#f5, 16#09};
   3511 dec_huffman_lookup(16#d9, 16#2) -> {more, 16#f5, 16#17};
   3512 dec_huffman_lookup(16#d9, 16#3) -> {ok, 16#f5, 16#28};
   3513 dec_huffman_lookup(16#d9, 16#4) -> {more, 16#f6, 16#02};
   3514 dec_huffman_lookup(16#d9, 16#5) -> {more, 16#f6, 16#09};
   3515 dec_huffman_lookup(16#d9, 16#6) -> {more, 16#f6, 16#17};
   3516 dec_huffman_lookup(16#d9, 16#7) -> {ok, 16#f6, 16#28};
   3517 dec_huffman_lookup(16#d9, 16#8) -> {more, 16#f7, 16#02};
   3518 dec_huffman_lookup(16#d9, 16#9) -> {more, 16#f7, 16#09};
   3519 dec_huffman_lookup(16#d9, 16#a) -> {more, 16#f7, 16#17};
   3520 dec_huffman_lookup(16#d9, 16#b) -> {ok, 16#f7, 16#28};
   3521 dec_huffman_lookup(16#d9, 16#c) -> {more, 16#f8, 16#02};
   3522 dec_huffman_lookup(16#d9, 16#d) -> {more, 16#f8, 16#09};
   3523 dec_huffman_lookup(16#d9, 16#e) -> {more, 16#f8, 16#17};
   3524 dec_huffman_lookup(16#d9, 16#f) -> {ok, 16#f8, 16#28};
   3525 dec_huffman_lookup(16#da, 16#0) -> {more, 16#f5, 16#03};
   3526 dec_huffman_lookup(16#da, 16#1) -> {more, 16#f5, 16#06};
   3527 dec_huffman_lookup(16#da, 16#2) -> {more, 16#f5, 16#0a};
   3528 dec_huffman_lookup(16#da, 16#3) -> {more, 16#f5, 16#0f};
   3529 dec_huffman_lookup(16#da, 16#4) -> {more, 16#f5, 16#18};
   3530 dec_huffman_lookup(16#da, 16#5) -> {more, 16#f5, 16#1f};
   3531 dec_huffman_lookup(16#da, 16#6) -> {more, 16#f5, 16#29};
   3532 dec_huffman_lookup(16#da, 16#7) -> {ok, 16#f5, 16#38};
   3533 dec_huffman_lookup(16#da, 16#8) -> {more, 16#f6, 16#03};
   3534 dec_huffman_lookup(16#da, 16#9) -> {more, 16#f6, 16#06};
   3535 dec_huffman_lookup(16#da, 16#a) -> {more, 16#f6, 16#0a};
   3536 dec_huffman_lookup(16#da, 16#b) -> {more, 16#f6, 16#0f};
   3537 dec_huffman_lookup(16#da, 16#c) -> {more, 16#f6, 16#18};
   3538 dec_huffman_lookup(16#da, 16#d) -> {more, 16#f6, 16#1f};
   3539 dec_huffman_lookup(16#da, 16#e) -> {more, 16#f6, 16#29};
   3540 dec_huffman_lookup(16#da, 16#f) -> {ok, 16#f6, 16#38};
   3541 dec_huffman_lookup(16#db, 16#0) -> {more, 16#f7, 16#03};
   3542 dec_huffman_lookup(16#db, 16#1) -> {more, 16#f7, 16#06};
   3543 dec_huffman_lookup(16#db, 16#2) -> {more, 16#f7, 16#0a};
   3544 dec_huffman_lookup(16#db, 16#3) -> {more, 16#f7, 16#0f};
   3545 dec_huffman_lookup(16#db, 16#4) -> {more, 16#f7, 16#18};
   3546 dec_huffman_lookup(16#db, 16#5) -> {more, 16#f7, 16#1f};
   3547 dec_huffman_lookup(16#db, 16#6) -> {more, 16#f7, 16#29};
   3548 dec_huffman_lookup(16#db, 16#7) -> {ok, 16#f7, 16#38};
   3549 dec_huffman_lookup(16#db, 16#8) -> {more, 16#f8, 16#03};
   3550 dec_huffman_lookup(16#db, 16#9) -> {more, 16#f8, 16#06};
   3551 dec_huffman_lookup(16#db, 16#a) -> {more, 16#f8, 16#0a};
   3552 dec_huffman_lookup(16#db, 16#b) -> {more, 16#f8, 16#0f};
   3553 dec_huffman_lookup(16#db, 16#c) -> {more, 16#f8, 16#18};
   3554 dec_huffman_lookup(16#db, 16#d) -> {more, 16#f8, 16#1f};
   3555 dec_huffman_lookup(16#db, 16#e) -> {more, 16#f8, 16#29};
   3556 dec_huffman_lookup(16#db, 16#f) -> {ok, 16#f8, 16#38};
   3557 dec_huffman_lookup(16#dc, 16#0) -> {more, 16#fa, 16#02};
   3558 dec_huffman_lookup(16#dc, 16#1) -> {more, 16#fa, 16#09};
   3559 dec_huffman_lookup(16#dc, 16#2) -> {more, 16#fa, 16#17};
   3560 dec_huffman_lookup(16#dc, 16#3) -> {ok, 16#fa, 16#28};
   3561 dec_huffman_lookup(16#dc, 16#4) -> {more, 16#fb, 16#02};
   3562 dec_huffman_lookup(16#dc, 16#5) -> {more, 16#fb, 16#09};
   3563 dec_huffman_lookup(16#dc, 16#6) -> {more, 16#fb, 16#17};
   3564 dec_huffman_lookup(16#dc, 16#7) -> {ok, 16#fb, 16#28};
   3565 dec_huffman_lookup(16#dc, 16#8) -> {more, 16#fc, 16#02};
   3566 dec_huffman_lookup(16#dc, 16#9) -> {more, 16#fc, 16#09};
   3567 dec_huffman_lookup(16#dc, 16#a) -> {more, 16#fc, 16#17};
   3568 dec_huffman_lookup(16#dc, 16#b) -> {ok, 16#fc, 16#28};
   3569 dec_huffman_lookup(16#dc, 16#c) -> {more, 16#fd, 16#02};
   3570 dec_huffman_lookup(16#dc, 16#d) -> {more, 16#fd, 16#09};
   3571 dec_huffman_lookup(16#dc, 16#e) -> {more, 16#fd, 16#17};
   3572 dec_huffman_lookup(16#dc, 16#f) -> {ok, 16#fd, 16#28};
   3573 dec_huffman_lookup(16#dd, 16#0) -> {more, 16#fa, 16#03};
   3574 dec_huffman_lookup(16#dd, 16#1) -> {more, 16#fa, 16#06};
   3575 dec_huffman_lookup(16#dd, 16#2) -> {more, 16#fa, 16#0a};
   3576 dec_huffman_lookup(16#dd, 16#3) -> {more, 16#fa, 16#0f};
   3577 dec_huffman_lookup(16#dd, 16#4) -> {more, 16#fa, 16#18};
   3578 dec_huffman_lookup(16#dd, 16#5) -> {more, 16#fa, 16#1f};
   3579 dec_huffman_lookup(16#dd, 16#6) -> {more, 16#fa, 16#29};
   3580 dec_huffman_lookup(16#dd, 16#7) -> {ok, 16#fa, 16#38};
   3581 dec_huffman_lookup(16#dd, 16#8) -> {more, 16#fb, 16#03};
   3582 dec_huffman_lookup(16#dd, 16#9) -> {more, 16#fb, 16#06};
   3583 dec_huffman_lookup(16#dd, 16#a) -> {more, 16#fb, 16#0a};
   3584 dec_huffman_lookup(16#dd, 16#b) -> {more, 16#fb, 16#0f};
   3585 dec_huffman_lookup(16#dd, 16#c) -> {more, 16#fb, 16#18};
   3586 dec_huffman_lookup(16#dd, 16#d) -> {more, 16#fb, 16#1f};
   3587 dec_huffman_lookup(16#dd, 16#e) -> {more, 16#fb, 16#29};
   3588 dec_huffman_lookup(16#dd, 16#f) -> {ok, 16#fb, 16#38};
   3589 dec_huffman_lookup(16#de, 16#0) -> {more, 16#fc, 16#03};
   3590 dec_huffman_lookup(16#de, 16#1) -> {more, 16#fc, 16#06};
   3591 dec_huffman_lookup(16#de, 16#2) -> {more, 16#fc, 16#0a};
   3592 dec_huffman_lookup(16#de, 16#3) -> {more, 16#fc, 16#0f};
   3593 dec_huffman_lookup(16#de, 16#4) -> {more, 16#fc, 16#18};
   3594 dec_huffman_lookup(16#de, 16#5) -> {more, 16#fc, 16#1f};
   3595 dec_huffman_lookup(16#de, 16#6) -> {more, 16#fc, 16#29};
   3596 dec_huffman_lookup(16#de, 16#7) -> {ok, 16#fc, 16#38};
   3597 dec_huffman_lookup(16#de, 16#8) -> {more, 16#fd, 16#03};
   3598 dec_huffman_lookup(16#de, 16#9) -> {more, 16#fd, 16#06};
   3599 dec_huffman_lookup(16#de, 16#a) -> {more, 16#fd, 16#0a};
   3600 dec_huffman_lookup(16#de, 16#b) -> {more, 16#fd, 16#0f};
   3601 dec_huffman_lookup(16#de, 16#c) -> {more, 16#fd, 16#18};
   3602 dec_huffman_lookup(16#de, 16#d) -> {more, 16#fd, 16#1f};
   3603 dec_huffman_lookup(16#de, 16#e) -> {more, 16#fd, 16#29};
   3604 dec_huffman_lookup(16#de, 16#f) -> {ok, 16#fd, 16#38};
   3605 dec_huffman_lookup(16#df, 16#0) -> {ok, 16#fe, 16#00};
   3606 dec_huffman_lookup(16#df, 16#1) -> {more, undefined, 16#e3};
   3607 dec_huffman_lookup(16#df, 16#2) -> {more, undefined, 16#e5};
   3608 dec_huffman_lookup(16#df, 16#3) -> {more, undefined, 16#e6};
   3609 dec_huffman_lookup(16#df, 16#4) -> {more, undefined, 16#e9};
   3610 dec_huffman_lookup(16#df, 16#5) -> {more, undefined, 16#ea};
   3611 dec_huffman_lookup(16#df, 16#6) -> {more, undefined, 16#ec};
   3612 dec_huffman_lookup(16#df, 16#7) -> {more, undefined, 16#ed};
   3613 dec_huffman_lookup(16#df, 16#8) -> {more, undefined, 16#f1};
   3614 dec_huffman_lookup(16#df, 16#9) -> {more, undefined, 16#f2};
   3615 dec_huffman_lookup(16#df, 16#a) -> {more, undefined, 16#f4};
   3616 dec_huffman_lookup(16#df, 16#b) -> {more, undefined, 16#f5};
   3617 dec_huffman_lookup(16#df, 16#c) -> {more, undefined, 16#f8};
   3618 dec_huffman_lookup(16#df, 16#d) -> {more, undefined, 16#f9};
   3619 dec_huffman_lookup(16#df, 16#e) -> {more, undefined, 16#fb};
   3620 dec_huffman_lookup(16#df, 16#f) -> {ok, undefined, 16#fc};
   3621 dec_huffman_lookup(16#e0, 16#0) -> {more, 16#fe, 16#01};
   3622 dec_huffman_lookup(16#e0, 16#1) -> {ok, 16#fe, 16#16};
   3623 dec_huffman_lookup(16#e0, 16#2) -> {ok, 16#02, 16#00};
   3624 dec_huffman_lookup(16#e0, 16#3) -> {ok, 16#03, 16#00};
   3625 dec_huffman_lookup(16#e0, 16#4) -> {ok, 16#04, 16#00};
   3626 dec_huffman_lookup(16#e0, 16#5) -> {ok, 16#05, 16#00};
   3627 dec_huffman_lookup(16#e0, 16#6) -> {ok, 16#06, 16#00};
   3628 dec_huffman_lookup(16#e0, 16#7) -> {ok, 16#07, 16#00};
   3629 dec_huffman_lookup(16#e0, 16#8) -> {ok, 16#08, 16#00};
   3630 dec_huffman_lookup(16#e0, 16#9) -> {ok, 16#0b, 16#00};
   3631 dec_huffman_lookup(16#e0, 16#a) -> {ok, 16#0c, 16#00};
   3632 dec_huffman_lookup(16#e0, 16#b) -> {ok, 16#0e, 16#00};
   3633 dec_huffman_lookup(16#e0, 16#c) -> {ok, 16#0f, 16#00};
   3634 dec_huffman_lookup(16#e0, 16#d) -> {ok, 16#10, 16#00};
   3635 dec_huffman_lookup(16#e0, 16#e) -> {ok, 16#11, 16#00};
   3636 dec_huffman_lookup(16#e0, 16#f) -> {ok, 16#12, 16#00};
   3637 dec_huffman_lookup(16#e1, 16#0) -> {more, 16#fe, 16#02};
   3638 dec_huffman_lookup(16#e1, 16#1) -> {more, 16#fe, 16#09};
   3639 dec_huffman_lookup(16#e1, 16#2) -> {more, 16#fe, 16#17};
   3640 dec_huffman_lookup(16#e1, 16#3) -> {ok, 16#fe, 16#28};
   3641 dec_huffman_lookup(16#e1, 16#4) -> {more, 16#02, 16#01};
   3642 dec_huffman_lookup(16#e1, 16#5) -> {ok, 16#02, 16#16};
   3643 dec_huffman_lookup(16#e1, 16#6) -> {more, 16#03, 16#01};
   3644 dec_huffman_lookup(16#e1, 16#7) -> {ok, 16#03, 16#16};
   3645 dec_huffman_lookup(16#e1, 16#8) -> {more, 16#04, 16#01};
   3646 dec_huffman_lookup(16#e1, 16#9) -> {ok, 16#04, 16#16};
   3647 dec_huffman_lookup(16#e1, 16#a) -> {more, 16#05, 16#01};
   3648 dec_huffman_lookup(16#e1, 16#b) -> {ok, 16#05, 16#16};
   3649 dec_huffman_lookup(16#e1, 16#c) -> {more, 16#06, 16#01};
   3650 dec_huffman_lookup(16#e1, 16#d) -> {ok, 16#06, 16#16};
   3651 dec_huffman_lookup(16#e1, 16#e) -> {more, 16#07, 16#01};
   3652 dec_huffman_lookup(16#e1, 16#f) -> {ok, 16#07, 16#16};
   3653 dec_huffman_lookup(16#e2, 16#0) -> {more, 16#fe, 16#03};
   3654 dec_huffman_lookup(16#e2, 16#1) -> {more, 16#fe, 16#06};
   3655 dec_huffman_lookup(16#e2, 16#2) -> {more, 16#fe, 16#0a};
   3656 dec_huffman_lookup(16#e2, 16#3) -> {more, 16#fe, 16#0f};
   3657 dec_huffman_lookup(16#e2, 16#4) -> {more, 16#fe, 16#18};
   3658 dec_huffman_lookup(16#e2, 16#5) -> {more, 16#fe, 16#1f};
   3659 dec_huffman_lookup(16#e2, 16#6) -> {more, 16#fe, 16#29};
   3660 dec_huffman_lookup(16#e2, 16#7) -> {ok, 16#fe, 16#38};
   3661 dec_huffman_lookup(16#e2, 16#8) -> {more, 16#02, 16#02};
   3662 dec_huffman_lookup(16#e2, 16#9) -> {more, 16#02, 16#09};
   3663 dec_huffman_lookup(16#e2, 16#a) -> {more, 16#02, 16#17};
   3664 dec_huffman_lookup(16#e2, 16#b) -> {ok, 16#02, 16#28};
   3665 dec_huffman_lookup(16#e2, 16#c) -> {more, 16#03, 16#02};
   3666 dec_huffman_lookup(16#e2, 16#d) -> {more, 16#03, 16#09};
   3667 dec_huffman_lookup(16#e2, 16#e) -> {more, 16#03, 16#17};
   3668 dec_huffman_lookup(16#e2, 16#f) -> {ok, 16#03, 16#28};
   3669 dec_huffman_lookup(16#e3, 16#0) -> {more, 16#02, 16#03};
   3670 dec_huffman_lookup(16#e3, 16#1) -> {more, 16#02, 16#06};
   3671 dec_huffman_lookup(16#e3, 16#2) -> {more, 16#02, 16#0a};
   3672 dec_huffman_lookup(16#e3, 16#3) -> {more, 16#02, 16#0f};
   3673 dec_huffman_lookup(16#e3, 16#4) -> {more, 16#02, 16#18};
   3674 dec_huffman_lookup(16#e3, 16#5) -> {more, 16#02, 16#1f};
   3675 dec_huffman_lookup(16#e3, 16#6) -> {more, 16#02, 16#29};
   3676 dec_huffman_lookup(16#e3, 16#7) -> {ok, 16#02, 16#38};
   3677 dec_huffman_lookup(16#e3, 16#8) -> {more, 16#03, 16#03};
   3678 dec_huffman_lookup(16#e3, 16#9) -> {more, 16#03, 16#06};
   3679 dec_huffman_lookup(16#e3, 16#a) -> {more, 16#03, 16#0a};
   3680 dec_huffman_lookup(16#e3, 16#b) -> {more, 16#03, 16#0f};
   3681 dec_huffman_lookup(16#e3, 16#c) -> {more, 16#03, 16#18};
   3682 dec_huffman_lookup(16#e3, 16#d) -> {more, 16#03, 16#1f};
   3683 dec_huffman_lookup(16#e3, 16#e) -> {more, 16#03, 16#29};
   3684 dec_huffman_lookup(16#e3, 16#f) -> {ok, 16#03, 16#38};
   3685 dec_huffman_lookup(16#e4, 16#0) -> {more, 16#04, 16#02};
   3686 dec_huffman_lookup(16#e4, 16#1) -> {more, 16#04, 16#09};
   3687 dec_huffman_lookup(16#e4, 16#2) -> {more, 16#04, 16#17};
   3688 dec_huffman_lookup(16#e4, 16#3) -> {ok, 16#04, 16#28};
   3689 dec_huffman_lookup(16#e4, 16#4) -> {more, 16#05, 16#02};
   3690 dec_huffman_lookup(16#e4, 16#5) -> {more, 16#05, 16#09};
   3691 dec_huffman_lookup(16#e4, 16#6) -> {more, 16#05, 16#17};
   3692 dec_huffman_lookup(16#e4, 16#7) -> {ok, 16#05, 16#28};
   3693 dec_huffman_lookup(16#e4, 16#8) -> {more, 16#06, 16#02};
   3694 dec_huffman_lookup(16#e4, 16#9) -> {more, 16#06, 16#09};
   3695 dec_huffman_lookup(16#e4, 16#a) -> {more, 16#06, 16#17};
   3696 dec_huffman_lookup(16#e4, 16#b) -> {ok, 16#06, 16#28};
   3697 dec_huffman_lookup(16#e4, 16#c) -> {more, 16#07, 16#02};
   3698 dec_huffman_lookup(16#e4, 16#d) -> {more, 16#07, 16#09};
   3699 dec_huffman_lookup(16#e4, 16#e) -> {more, 16#07, 16#17};
   3700 dec_huffman_lookup(16#e4, 16#f) -> {ok, 16#07, 16#28};
   3701 dec_huffman_lookup(16#e5, 16#0) -> {more, 16#04, 16#03};
   3702 dec_huffman_lookup(16#e5, 16#1) -> {more, 16#04, 16#06};
   3703 dec_huffman_lookup(16#e5, 16#2) -> {more, 16#04, 16#0a};
   3704 dec_huffman_lookup(16#e5, 16#3) -> {more, 16#04, 16#0f};
   3705 dec_huffman_lookup(16#e5, 16#4) -> {more, 16#04, 16#18};
   3706 dec_huffman_lookup(16#e5, 16#5) -> {more, 16#04, 16#1f};
   3707 dec_huffman_lookup(16#e5, 16#6) -> {more, 16#04, 16#29};
   3708 dec_huffman_lookup(16#e5, 16#7) -> {ok, 16#04, 16#38};
   3709 dec_huffman_lookup(16#e5, 16#8) -> {more, 16#05, 16#03};
   3710 dec_huffman_lookup(16#e5, 16#9) -> {more, 16#05, 16#06};
   3711 dec_huffman_lookup(16#e5, 16#a) -> {more, 16#05, 16#0a};
   3712 dec_huffman_lookup(16#e5, 16#b) -> {more, 16#05, 16#0f};
   3713 dec_huffman_lookup(16#e5, 16#c) -> {more, 16#05, 16#18};
   3714 dec_huffman_lookup(16#e5, 16#d) -> {more, 16#05, 16#1f};
   3715 dec_huffman_lookup(16#e5, 16#e) -> {more, 16#05, 16#29};
   3716 dec_huffman_lookup(16#e5, 16#f) -> {ok, 16#05, 16#38};
   3717 dec_huffman_lookup(16#e6, 16#0) -> {more, 16#06, 16#03};
   3718 dec_huffman_lookup(16#e6, 16#1) -> {more, 16#06, 16#06};
   3719 dec_huffman_lookup(16#e6, 16#2) -> {more, 16#06, 16#0a};
   3720 dec_huffman_lookup(16#e6, 16#3) -> {more, 16#06, 16#0f};
   3721 dec_huffman_lookup(16#e6, 16#4) -> {more, 16#06, 16#18};
   3722 dec_huffman_lookup(16#e6, 16#5) -> {more, 16#06, 16#1f};
   3723 dec_huffman_lookup(16#e6, 16#6) -> {more, 16#06, 16#29};
   3724 dec_huffman_lookup(16#e6, 16#7) -> {ok, 16#06, 16#38};
   3725 dec_huffman_lookup(16#e6, 16#8) -> {more, 16#07, 16#03};
   3726 dec_huffman_lookup(16#e6, 16#9) -> {more, 16#07, 16#06};
   3727 dec_huffman_lookup(16#e6, 16#a) -> {more, 16#07, 16#0a};
   3728 dec_huffman_lookup(16#e6, 16#b) -> {more, 16#07, 16#0f};
   3729 dec_huffman_lookup(16#e6, 16#c) -> {more, 16#07, 16#18};
   3730 dec_huffman_lookup(16#e6, 16#d) -> {more, 16#07, 16#1f};
   3731 dec_huffman_lookup(16#e6, 16#e) -> {more, 16#07, 16#29};
   3732 dec_huffman_lookup(16#e6, 16#f) -> {ok, 16#07, 16#38};
   3733 dec_huffman_lookup(16#e7, 16#0) -> {more, 16#08, 16#01};
   3734 dec_huffman_lookup(16#e7, 16#1) -> {ok, 16#08, 16#16};
   3735 dec_huffman_lookup(16#e7, 16#2) -> {more, 16#0b, 16#01};
   3736 dec_huffman_lookup(16#e7, 16#3) -> {ok, 16#0b, 16#16};
   3737 dec_huffman_lookup(16#e7, 16#4) -> {more, 16#0c, 16#01};
   3738 dec_huffman_lookup(16#e7, 16#5) -> {ok, 16#0c, 16#16};
   3739 dec_huffman_lookup(16#e7, 16#6) -> {more, 16#0e, 16#01};
   3740 dec_huffman_lookup(16#e7, 16#7) -> {ok, 16#0e, 16#16};
   3741 dec_huffman_lookup(16#e7, 16#8) -> {more, 16#0f, 16#01};
   3742 dec_huffman_lookup(16#e7, 16#9) -> {ok, 16#0f, 16#16};
   3743 dec_huffman_lookup(16#e7, 16#a) -> {more, 16#10, 16#01};
   3744 dec_huffman_lookup(16#e7, 16#b) -> {ok, 16#10, 16#16};
   3745 dec_huffman_lookup(16#e7, 16#c) -> {more, 16#11, 16#01};
   3746 dec_huffman_lookup(16#e7, 16#d) -> {ok, 16#11, 16#16};
   3747 dec_huffman_lookup(16#e7, 16#e) -> {more, 16#12, 16#01};
   3748 dec_huffman_lookup(16#e7, 16#f) -> {ok, 16#12, 16#16};
   3749 dec_huffman_lookup(16#e8, 16#0) -> {more, 16#08, 16#02};
   3750 dec_huffman_lookup(16#e8, 16#1) -> {more, 16#08, 16#09};
   3751 dec_huffman_lookup(16#e8, 16#2) -> {more, 16#08, 16#17};
   3752 dec_huffman_lookup(16#e8, 16#3) -> {ok, 16#08, 16#28};
   3753 dec_huffman_lookup(16#e8, 16#4) -> {more, 16#0b, 16#02};
   3754 dec_huffman_lookup(16#e8, 16#5) -> {more, 16#0b, 16#09};
   3755 dec_huffman_lookup(16#e8, 16#6) -> {more, 16#0b, 16#17};
   3756 dec_huffman_lookup(16#e8, 16#7) -> {ok, 16#0b, 16#28};
   3757 dec_huffman_lookup(16#e8, 16#8) -> {more, 16#0c, 16#02};
   3758 dec_huffman_lookup(16#e8, 16#9) -> {more, 16#0c, 16#09};
   3759 dec_huffman_lookup(16#e8, 16#a) -> {more, 16#0c, 16#17};
   3760 dec_huffman_lookup(16#e8, 16#b) -> {ok, 16#0c, 16#28};
   3761 dec_huffman_lookup(16#e8, 16#c) -> {more, 16#0e, 16#02};
   3762 dec_huffman_lookup(16#e8, 16#d) -> {more, 16#0e, 16#09};
   3763 dec_huffman_lookup(16#e8, 16#e) -> {more, 16#0e, 16#17};
   3764 dec_huffman_lookup(16#e8, 16#f) -> {ok, 16#0e, 16#28};
   3765 dec_huffman_lookup(16#e9, 16#0) -> {more, 16#08, 16#03};
   3766 dec_huffman_lookup(16#e9, 16#1) -> {more, 16#08, 16#06};
   3767 dec_huffman_lookup(16#e9, 16#2) -> {more, 16#08, 16#0a};
   3768 dec_huffman_lookup(16#e9, 16#3) -> {more, 16#08, 16#0f};
   3769 dec_huffman_lookup(16#e9, 16#4) -> {more, 16#08, 16#18};
   3770 dec_huffman_lookup(16#e9, 16#5) -> {more, 16#08, 16#1f};
   3771 dec_huffman_lookup(16#e9, 16#6) -> {more, 16#08, 16#29};
   3772 dec_huffman_lookup(16#e9, 16#7) -> {ok, 16#08, 16#38};
   3773 dec_huffman_lookup(16#e9, 16#8) -> {more, 16#0b, 16#03};
   3774 dec_huffman_lookup(16#e9, 16#9) -> {more, 16#0b, 16#06};
   3775 dec_huffman_lookup(16#e9, 16#a) -> {more, 16#0b, 16#0a};
   3776 dec_huffman_lookup(16#e9, 16#b) -> {more, 16#0b, 16#0f};
   3777 dec_huffman_lookup(16#e9, 16#c) -> {more, 16#0b, 16#18};
   3778 dec_huffman_lookup(16#e9, 16#d) -> {more, 16#0b, 16#1f};
   3779 dec_huffman_lookup(16#e9, 16#e) -> {more, 16#0b, 16#29};
   3780 dec_huffman_lookup(16#e9, 16#f) -> {ok, 16#0b, 16#38};
   3781 dec_huffman_lookup(16#ea, 16#0) -> {more, 16#0c, 16#03};
   3782 dec_huffman_lookup(16#ea, 16#1) -> {more, 16#0c, 16#06};
   3783 dec_huffman_lookup(16#ea, 16#2) -> {more, 16#0c, 16#0a};
   3784 dec_huffman_lookup(16#ea, 16#3) -> {more, 16#0c, 16#0f};
   3785 dec_huffman_lookup(16#ea, 16#4) -> {more, 16#0c, 16#18};
   3786 dec_huffman_lookup(16#ea, 16#5) -> {more, 16#0c, 16#1f};
   3787 dec_huffman_lookup(16#ea, 16#6) -> {more, 16#0c, 16#29};
   3788 dec_huffman_lookup(16#ea, 16#7) -> {ok, 16#0c, 16#38};
   3789 dec_huffman_lookup(16#ea, 16#8) -> {more, 16#0e, 16#03};
   3790 dec_huffman_lookup(16#ea, 16#9) -> {more, 16#0e, 16#06};
   3791 dec_huffman_lookup(16#ea, 16#a) -> {more, 16#0e, 16#0a};
   3792 dec_huffman_lookup(16#ea, 16#b) -> {more, 16#0e, 16#0f};
   3793 dec_huffman_lookup(16#ea, 16#c) -> {more, 16#0e, 16#18};
   3794 dec_huffman_lookup(16#ea, 16#d) -> {more, 16#0e, 16#1f};
   3795 dec_huffman_lookup(16#ea, 16#e) -> {more, 16#0e, 16#29};
   3796 dec_huffman_lookup(16#ea, 16#f) -> {ok, 16#0e, 16#38};
   3797 dec_huffman_lookup(16#eb, 16#0) -> {more, 16#0f, 16#02};
   3798 dec_huffman_lookup(16#eb, 16#1) -> {more, 16#0f, 16#09};
   3799 dec_huffman_lookup(16#eb, 16#2) -> {more, 16#0f, 16#17};
   3800 dec_huffman_lookup(16#eb, 16#3) -> {ok, 16#0f, 16#28};
   3801 dec_huffman_lookup(16#eb, 16#4) -> {more, 16#10, 16#02};
   3802 dec_huffman_lookup(16#eb, 16#5) -> {more, 16#10, 16#09};
   3803 dec_huffman_lookup(16#eb, 16#6) -> {more, 16#10, 16#17};
   3804 dec_huffman_lookup(16#eb, 16#7) -> {ok, 16#10, 16#28};
   3805 dec_huffman_lookup(16#eb, 16#8) -> {more, 16#11, 16#02};
   3806 dec_huffman_lookup(16#eb, 16#9) -> {more, 16#11, 16#09};
   3807 dec_huffman_lookup(16#eb, 16#a) -> {more, 16#11, 16#17};
   3808 dec_huffman_lookup(16#eb, 16#b) -> {ok, 16#11, 16#28};
   3809 dec_huffman_lookup(16#eb, 16#c) -> {more, 16#12, 16#02};
   3810 dec_huffman_lookup(16#eb, 16#d) -> {more, 16#12, 16#09};
   3811 dec_huffman_lookup(16#eb, 16#e) -> {more, 16#12, 16#17};
   3812 dec_huffman_lookup(16#eb, 16#f) -> {ok, 16#12, 16#28};
   3813 dec_huffman_lookup(16#ec, 16#0) -> {more, 16#0f, 16#03};
   3814 dec_huffman_lookup(16#ec, 16#1) -> {more, 16#0f, 16#06};
   3815 dec_huffman_lookup(16#ec, 16#2) -> {more, 16#0f, 16#0a};
   3816 dec_huffman_lookup(16#ec, 16#3) -> {more, 16#0f, 16#0f};
   3817 dec_huffman_lookup(16#ec, 16#4) -> {more, 16#0f, 16#18};
   3818 dec_huffman_lookup(16#ec, 16#5) -> {more, 16#0f, 16#1f};
   3819 dec_huffman_lookup(16#ec, 16#6) -> {more, 16#0f, 16#29};
   3820 dec_huffman_lookup(16#ec, 16#7) -> {ok, 16#0f, 16#38};
   3821 dec_huffman_lookup(16#ec, 16#8) -> {more, 16#10, 16#03};
   3822 dec_huffman_lookup(16#ec, 16#9) -> {more, 16#10, 16#06};
   3823 dec_huffman_lookup(16#ec, 16#a) -> {more, 16#10, 16#0a};
   3824 dec_huffman_lookup(16#ec, 16#b) -> {more, 16#10, 16#0f};
   3825 dec_huffman_lookup(16#ec, 16#c) -> {more, 16#10, 16#18};
   3826 dec_huffman_lookup(16#ec, 16#d) -> {more, 16#10, 16#1f};
   3827 dec_huffman_lookup(16#ec, 16#e) -> {more, 16#10, 16#29};
   3828 dec_huffman_lookup(16#ec, 16#f) -> {ok, 16#10, 16#38};
   3829 dec_huffman_lookup(16#ed, 16#0) -> {more, 16#11, 16#03};
   3830 dec_huffman_lookup(16#ed, 16#1) -> {more, 16#11, 16#06};
   3831 dec_huffman_lookup(16#ed, 16#2) -> {more, 16#11, 16#0a};
   3832 dec_huffman_lookup(16#ed, 16#3) -> {more, 16#11, 16#0f};
   3833 dec_huffman_lookup(16#ed, 16#4) -> {more, 16#11, 16#18};
   3834 dec_huffman_lookup(16#ed, 16#5) -> {more, 16#11, 16#1f};
   3835 dec_huffman_lookup(16#ed, 16#6) -> {more, 16#11, 16#29};
   3836 dec_huffman_lookup(16#ed, 16#7) -> {ok, 16#11, 16#38};
   3837 dec_huffman_lookup(16#ed, 16#8) -> {more, 16#12, 16#03};
   3838 dec_huffman_lookup(16#ed, 16#9) -> {more, 16#12, 16#06};
   3839 dec_huffman_lookup(16#ed, 16#a) -> {more, 16#12, 16#0a};
   3840 dec_huffman_lookup(16#ed, 16#b) -> {more, 16#12, 16#0f};
   3841 dec_huffman_lookup(16#ed, 16#c) -> {more, 16#12, 16#18};
   3842 dec_huffman_lookup(16#ed, 16#d) -> {more, 16#12, 16#1f};
   3843 dec_huffman_lookup(16#ed, 16#e) -> {more, 16#12, 16#29};
   3844 dec_huffman_lookup(16#ed, 16#f) -> {ok, 16#12, 16#38};
   3845 dec_huffman_lookup(16#ee, 16#0) -> {ok, 16#13, 16#00};
   3846 dec_huffman_lookup(16#ee, 16#1) -> {ok, 16#14, 16#00};
   3847 dec_huffman_lookup(16#ee, 16#2) -> {ok, 16#15, 16#00};
   3848 dec_huffman_lookup(16#ee, 16#3) -> {ok, 16#17, 16#00};
   3849 dec_huffman_lookup(16#ee, 16#4) -> {ok, 16#18, 16#00};
   3850 dec_huffman_lookup(16#ee, 16#5) -> {ok, 16#19, 16#00};
   3851 dec_huffman_lookup(16#ee, 16#6) -> {ok, 16#1a, 16#00};
   3852 dec_huffman_lookup(16#ee, 16#7) -> {ok, 16#1b, 16#00};
   3853 dec_huffman_lookup(16#ee, 16#8) -> {ok, 16#1c, 16#00};
   3854 dec_huffman_lookup(16#ee, 16#9) -> {ok, 16#1d, 16#00};
   3855 dec_huffman_lookup(16#ee, 16#a) -> {ok, 16#1e, 16#00};
   3856 dec_huffman_lookup(16#ee, 16#b) -> {ok, 16#1f, 16#00};
   3857 dec_huffman_lookup(16#ee, 16#c) -> {ok, 16#7f, 16#00};
   3858 dec_huffman_lookup(16#ee, 16#d) -> {ok, 16#dc, 16#00};
   3859 dec_huffman_lookup(16#ee, 16#e) -> {ok, 16#f9, 16#00};
   3860 dec_huffman_lookup(16#ee, 16#f) -> {ok, undefined, 16#fd};
   3861 dec_huffman_lookup(16#ef, 16#0) -> {more, 16#13, 16#01};
   3862 dec_huffman_lookup(16#ef, 16#1) -> {ok, 16#13, 16#16};
   3863 dec_huffman_lookup(16#ef, 16#2) -> {more, 16#14, 16#01};
   3864 dec_huffman_lookup(16#ef, 16#3) -> {ok, 16#14, 16#16};
   3865 dec_huffman_lookup(16#ef, 16#4) -> {more, 16#15, 16#01};
   3866 dec_huffman_lookup(16#ef, 16#5) -> {ok, 16#15, 16#16};
   3867 dec_huffman_lookup(16#ef, 16#6) -> {more, 16#17, 16#01};
   3868 dec_huffman_lookup(16#ef, 16#7) -> {ok, 16#17, 16#16};
   3869 dec_huffman_lookup(16#ef, 16#8) -> {more, 16#18, 16#01};
   3870 dec_huffman_lookup(16#ef, 16#9) -> {ok, 16#18, 16#16};
   3871 dec_huffman_lookup(16#ef, 16#a) -> {more, 16#19, 16#01};
   3872 dec_huffman_lookup(16#ef, 16#b) -> {ok, 16#19, 16#16};
   3873 dec_huffman_lookup(16#ef, 16#c) -> {more, 16#1a, 16#01};
   3874 dec_huffman_lookup(16#ef, 16#d) -> {ok, 16#1a, 16#16};
   3875 dec_huffman_lookup(16#ef, 16#e) -> {more, 16#1b, 16#01};
   3876 dec_huffman_lookup(16#ef, 16#f) -> {ok, 16#1b, 16#16};
   3877 dec_huffman_lookup(16#f0, 16#0) -> {more, 16#13, 16#02};
   3878 dec_huffman_lookup(16#f0, 16#1) -> {more, 16#13, 16#09};
   3879 dec_huffman_lookup(16#f0, 16#2) -> {more, 16#13, 16#17};
   3880 dec_huffman_lookup(16#f0, 16#3) -> {ok, 16#13, 16#28};
   3881 dec_huffman_lookup(16#f0, 16#4) -> {more, 16#14, 16#02};
   3882 dec_huffman_lookup(16#f0, 16#5) -> {more, 16#14, 16#09};
   3883 dec_huffman_lookup(16#f0, 16#6) -> {more, 16#14, 16#17};
   3884 dec_huffman_lookup(16#f0, 16#7) -> {ok, 16#14, 16#28};
   3885 dec_huffman_lookup(16#f0, 16#8) -> {more, 16#15, 16#02};
   3886 dec_huffman_lookup(16#f0, 16#9) -> {more, 16#15, 16#09};
   3887 dec_huffman_lookup(16#f0, 16#a) -> {more, 16#15, 16#17};
   3888 dec_huffman_lookup(16#f0, 16#b) -> {ok, 16#15, 16#28};
   3889 dec_huffman_lookup(16#f0, 16#c) -> {more, 16#17, 16#02};
   3890 dec_huffman_lookup(16#f0, 16#d) -> {more, 16#17, 16#09};
   3891 dec_huffman_lookup(16#f0, 16#e) -> {more, 16#17, 16#17};
   3892 dec_huffman_lookup(16#f0, 16#f) -> {ok, 16#17, 16#28};
   3893 dec_huffman_lookup(16#f1, 16#0) -> {more, 16#13, 16#03};
   3894 dec_huffman_lookup(16#f1, 16#1) -> {more, 16#13, 16#06};
   3895 dec_huffman_lookup(16#f1, 16#2) -> {more, 16#13, 16#0a};
   3896 dec_huffman_lookup(16#f1, 16#3) -> {more, 16#13, 16#0f};
   3897 dec_huffman_lookup(16#f1, 16#4) -> {more, 16#13, 16#18};
   3898 dec_huffman_lookup(16#f1, 16#5) -> {more, 16#13, 16#1f};
   3899 dec_huffman_lookup(16#f1, 16#6) -> {more, 16#13, 16#29};
   3900 dec_huffman_lookup(16#f1, 16#7) -> {ok, 16#13, 16#38};
   3901 dec_huffman_lookup(16#f1, 16#8) -> {more, 16#14, 16#03};
   3902 dec_huffman_lookup(16#f1, 16#9) -> {more, 16#14, 16#06};
   3903 dec_huffman_lookup(16#f1, 16#a) -> {more, 16#14, 16#0a};
   3904 dec_huffman_lookup(16#f1, 16#b) -> {more, 16#14, 16#0f};
   3905 dec_huffman_lookup(16#f1, 16#c) -> {more, 16#14, 16#18};
   3906 dec_huffman_lookup(16#f1, 16#d) -> {more, 16#14, 16#1f};
   3907 dec_huffman_lookup(16#f1, 16#e) -> {more, 16#14, 16#29};
   3908 dec_huffman_lookup(16#f1, 16#f) -> {ok, 16#14, 16#38};
   3909 dec_huffman_lookup(16#f2, 16#0) -> {more, 16#15, 16#03};
   3910 dec_huffman_lookup(16#f2, 16#1) -> {more, 16#15, 16#06};
   3911 dec_huffman_lookup(16#f2, 16#2) -> {more, 16#15, 16#0a};
   3912 dec_huffman_lookup(16#f2, 16#3) -> {more, 16#15, 16#0f};
   3913 dec_huffman_lookup(16#f2, 16#4) -> {more, 16#15, 16#18};
   3914 dec_huffman_lookup(16#f2, 16#5) -> {more, 16#15, 16#1f};
   3915 dec_huffman_lookup(16#f2, 16#6) -> {more, 16#15, 16#29};
   3916 dec_huffman_lookup(16#f2, 16#7) -> {ok, 16#15, 16#38};
   3917 dec_huffman_lookup(16#f2, 16#8) -> {more, 16#17, 16#03};
   3918 dec_huffman_lookup(16#f2, 16#9) -> {more, 16#17, 16#06};
   3919 dec_huffman_lookup(16#f2, 16#a) -> {more, 16#17, 16#0a};
   3920 dec_huffman_lookup(16#f2, 16#b) -> {more, 16#17, 16#0f};
   3921 dec_huffman_lookup(16#f2, 16#c) -> {more, 16#17, 16#18};
   3922 dec_huffman_lookup(16#f2, 16#d) -> {more, 16#17, 16#1f};
   3923 dec_huffman_lookup(16#f2, 16#e) -> {more, 16#17, 16#29};
   3924 dec_huffman_lookup(16#f2, 16#f) -> {ok, 16#17, 16#38};
   3925 dec_huffman_lookup(16#f3, 16#0) -> {more, 16#18, 16#02};
   3926 dec_huffman_lookup(16#f3, 16#1) -> {more, 16#18, 16#09};
   3927 dec_huffman_lookup(16#f3, 16#2) -> {more, 16#18, 16#17};
   3928 dec_huffman_lookup(16#f3, 16#3) -> {ok, 16#18, 16#28};
   3929 dec_huffman_lookup(16#f3, 16#4) -> {more, 16#19, 16#02};
   3930 dec_huffman_lookup(16#f3, 16#5) -> {more, 16#19, 16#09};
   3931 dec_huffman_lookup(16#f3, 16#6) -> {more, 16#19, 16#17};
   3932 dec_huffman_lookup(16#f3, 16#7) -> {ok, 16#19, 16#28};
   3933 dec_huffman_lookup(16#f3, 16#8) -> {more, 16#1a, 16#02};
   3934 dec_huffman_lookup(16#f3, 16#9) -> {more, 16#1a, 16#09};
   3935 dec_huffman_lookup(16#f3, 16#a) -> {more, 16#1a, 16#17};
   3936 dec_huffman_lookup(16#f3, 16#b) -> {ok, 16#1a, 16#28};
   3937 dec_huffman_lookup(16#f3, 16#c) -> {more, 16#1b, 16#02};
   3938 dec_huffman_lookup(16#f3, 16#d) -> {more, 16#1b, 16#09};
   3939 dec_huffman_lookup(16#f3, 16#e) -> {more, 16#1b, 16#17};
   3940 dec_huffman_lookup(16#f3, 16#f) -> {ok, 16#1b, 16#28};
   3941 dec_huffman_lookup(16#f4, 16#0) -> {more, 16#18, 16#03};
   3942 dec_huffman_lookup(16#f4, 16#1) -> {more, 16#18, 16#06};
   3943 dec_huffman_lookup(16#f4, 16#2) -> {more, 16#18, 16#0a};
   3944 dec_huffman_lookup(16#f4, 16#3) -> {more, 16#18, 16#0f};
   3945 dec_huffman_lookup(16#f4, 16#4) -> {more, 16#18, 16#18};
   3946 dec_huffman_lookup(16#f4, 16#5) -> {more, 16#18, 16#1f};
   3947 dec_huffman_lookup(16#f4, 16#6) -> {more, 16#18, 16#29};
   3948 dec_huffman_lookup(16#f4, 16#7) -> {ok, 16#18, 16#38};
   3949 dec_huffman_lookup(16#f4, 16#8) -> {more, 16#19, 16#03};
   3950 dec_huffman_lookup(16#f4, 16#9) -> {more, 16#19, 16#06};
   3951 dec_huffman_lookup(16#f4, 16#a) -> {more, 16#19, 16#0a};
   3952 dec_huffman_lookup(16#f4, 16#b) -> {more, 16#19, 16#0f};
   3953 dec_huffman_lookup(16#f4, 16#c) -> {more, 16#19, 16#18};
   3954 dec_huffman_lookup(16#f4, 16#d) -> {more, 16#19, 16#1f};
   3955 dec_huffman_lookup(16#f4, 16#e) -> {more, 16#19, 16#29};
   3956 dec_huffman_lookup(16#f4, 16#f) -> {ok, 16#19, 16#38};
   3957 dec_huffman_lookup(16#f5, 16#0) -> {more, 16#1a, 16#03};
   3958 dec_huffman_lookup(16#f5, 16#1) -> {more, 16#1a, 16#06};
   3959 dec_huffman_lookup(16#f5, 16#2) -> {more, 16#1a, 16#0a};
   3960 dec_huffman_lookup(16#f5, 16#3) -> {more, 16#1a, 16#0f};
   3961 dec_huffman_lookup(16#f5, 16#4) -> {more, 16#1a, 16#18};
   3962 dec_huffman_lookup(16#f5, 16#5) -> {more, 16#1a, 16#1f};
   3963 dec_huffman_lookup(16#f5, 16#6) -> {more, 16#1a, 16#29};
   3964 dec_huffman_lookup(16#f5, 16#7) -> {ok, 16#1a, 16#38};
   3965 dec_huffman_lookup(16#f5, 16#8) -> {more, 16#1b, 16#03};
   3966 dec_huffman_lookup(16#f5, 16#9) -> {more, 16#1b, 16#06};
   3967 dec_huffman_lookup(16#f5, 16#a) -> {more, 16#1b, 16#0a};
   3968 dec_huffman_lookup(16#f5, 16#b) -> {more, 16#1b, 16#0f};
   3969 dec_huffman_lookup(16#f5, 16#c) -> {more, 16#1b, 16#18};
   3970 dec_huffman_lookup(16#f5, 16#d) -> {more, 16#1b, 16#1f};
   3971 dec_huffman_lookup(16#f5, 16#e) -> {more, 16#1b, 16#29};
   3972 dec_huffman_lookup(16#f5, 16#f) -> {ok, 16#1b, 16#38};
   3973 dec_huffman_lookup(16#f6, 16#0) -> {more, 16#1c, 16#01};
   3974 dec_huffman_lookup(16#f6, 16#1) -> {ok, 16#1c, 16#16};
   3975 dec_huffman_lookup(16#f6, 16#2) -> {more, 16#1d, 16#01};
   3976 dec_huffman_lookup(16#f6, 16#3) -> {ok, 16#1d, 16#16};
   3977 dec_huffman_lookup(16#f6, 16#4) -> {more, 16#1e, 16#01};
   3978 dec_huffman_lookup(16#f6, 16#5) -> {ok, 16#1e, 16#16};
   3979 dec_huffman_lookup(16#f6, 16#6) -> {more, 16#1f, 16#01};
   3980 dec_huffman_lookup(16#f6, 16#7) -> {ok, 16#1f, 16#16};
   3981 dec_huffman_lookup(16#f6, 16#8) -> {more, 16#7f, 16#01};
   3982 dec_huffman_lookup(16#f6, 16#9) -> {ok, 16#7f, 16#16};
   3983 dec_huffman_lookup(16#f6, 16#a) -> {more, 16#dc, 16#01};
   3984 dec_huffman_lookup(16#f6, 16#b) -> {ok, 16#dc, 16#16};
   3985 dec_huffman_lookup(16#f6, 16#c) -> {more, 16#f9, 16#01};
   3986 dec_huffman_lookup(16#f6, 16#d) -> {ok, 16#f9, 16#16};
   3987 dec_huffman_lookup(16#f6, 16#e) -> {more, undefined, 16#fe};
   3988 dec_huffman_lookup(16#f6, 16#f) -> {ok, undefined, 16#ff};
   3989 dec_huffman_lookup(16#f7, 16#0) -> {more, 16#1c, 16#02};
   3990 dec_huffman_lookup(16#f7, 16#1) -> {more, 16#1c, 16#09};
   3991 dec_huffman_lookup(16#f7, 16#2) -> {more, 16#1c, 16#17};
   3992 dec_huffman_lookup(16#f7, 16#3) -> {ok, 16#1c, 16#28};
   3993 dec_huffman_lookup(16#f7, 16#4) -> {more, 16#1d, 16#02};
   3994 dec_huffman_lookup(16#f7, 16#5) -> {more, 16#1d, 16#09};
   3995 dec_huffman_lookup(16#f7, 16#6) -> {more, 16#1d, 16#17};
   3996 dec_huffman_lookup(16#f7, 16#7) -> {ok, 16#1d, 16#28};
   3997 dec_huffman_lookup(16#f7, 16#8) -> {more, 16#1e, 16#02};
   3998 dec_huffman_lookup(16#f7, 16#9) -> {more, 16#1e, 16#09};
   3999 dec_huffman_lookup(16#f7, 16#a) -> {more, 16#1e, 16#17};
   4000 dec_huffman_lookup(16#f7, 16#b) -> {ok, 16#1e, 16#28};
   4001 dec_huffman_lookup(16#f7, 16#c) -> {more, 16#1f, 16#02};
   4002 dec_huffman_lookup(16#f7, 16#d) -> {more, 16#1f, 16#09};
   4003 dec_huffman_lookup(16#f7, 16#e) -> {more, 16#1f, 16#17};
   4004 dec_huffman_lookup(16#f7, 16#f) -> {ok, 16#1f, 16#28};
   4005 dec_huffman_lookup(16#f8, 16#0) -> {more, 16#1c, 16#03};
   4006 dec_huffman_lookup(16#f8, 16#1) -> {more, 16#1c, 16#06};
   4007 dec_huffman_lookup(16#f8, 16#2) -> {more, 16#1c, 16#0a};
   4008 dec_huffman_lookup(16#f8, 16#3) -> {more, 16#1c, 16#0f};
   4009 dec_huffman_lookup(16#f8, 16#4) -> {more, 16#1c, 16#18};
   4010 dec_huffman_lookup(16#f8, 16#5) -> {more, 16#1c, 16#1f};
   4011 dec_huffman_lookup(16#f8, 16#6) -> {more, 16#1c, 16#29};
   4012 dec_huffman_lookup(16#f8, 16#7) -> {ok, 16#1c, 16#38};
   4013 dec_huffman_lookup(16#f8, 16#8) -> {more, 16#1d, 16#03};
   4014 dec_huffman_lookup(16#f8, 16#9) -> {more, 16#1d, 16#06};
   4015 dec_huffman_lookup(16#f8, 16#a) -> {more, 16#1d, 16#0a};
   4016 dec_huffman_lookup(16#f8, 16#b) -> {more, 16#1d, 16#0f};
   4017 dec_huffman_lookup(16#f8, 16#c) -> {more, 16#1d, 16#18};
   4018 dec_huffman_lookup(16#f8, 16#d) -> {more, 16#1d, 16#1f};
   4019 dec_huffman_lookup(16#f8, 16#e) -> {more, 16#1d, 16#29};
   4020 dec_huffman_lookup(16#f8, 16#f) -> {ok, 16#1d, 16#38};
   4021 dec_huffman_lookup(16#f9, 16#0) -> {more, 16#1e, 16#03};
   4022 dec_huffman_lookup(16#f9, 16#1) -> {more, 16#1e, 16#06};
   4023 dec_huffman_lookup(16#f9, 16#2) -> {more, 16#1e, 16#0a};
   4024 dec_huffman_lookup(16#f9, 16#3) -> {more, 16#1e, 16#0f};
   4025 dec_huffman_lookup(16#f9, 16#4) -> {more, 16#1e, 16#18};
   4026 dec_huffman_lookup(16#f9, 16#5) -> {more, 16#1e, 16#1f};
   4027 dec_huffman_lookup(16#f9, 16#6) -> {more, 16#1e, 16#29};
   4028 dec_huffman_lookup(16#f9, 16#7) -> {ok, 16#1e, 16#38};
   4029 dec_huffman_lookup(16#f9, 16#8) -> {more, 16#1f, 16#03};
   4030 dec_huffman_lookup(16#f9, 16#9) -> {more, 16#1f, 16#06};
   4031 dec_huffman_lookup(16#f9, 16#a) -> {more, 16#1f, 16#0a};
   4032 dec_huffman_lookup(16#f9, 16#b) -> {more, 16#1f, 16#0f};
   4033 dec_huffman_lookup(16#f9, 16#c) -> {more, 16#1f, 16#18};
   4034 dec_huffman_lookup(16#f9, 16#d) -> {more, 16#1f, 16#1f};
   4035 dec_huffman_lookup(16#f9, 16#e) -> {more, 16#1f, 16#29};
   4036 dec_huffman_lookup(16#f9, 16#f) -> {ok, 16#1f, 16#38};
   4037 dec_huffman_lookup(16#fa, 16#0) -> {more, 16#7f, 16#02};
   4038 dec_huffman_lookup(16#fa, 16#1) -> {more, 16#7f, 16#09};
   4039 dec_huffman_lookup(16#fa, 16#2) -> {more, 16#7f, 16#17};
   4040 dec_huffman_lookup(16#fa, 16#3) -> {ok, 16#7f, 16#28};
   4041 dec_huffman_lookup(16#fa, 16#4) -> {more, 16#dc, 16#02};
   4042 dec_huffman_lookup(16#fa, 16#5) -> {more, 16#dc, 16#09};
   4043 dec_huffman_lookup(16#fa, 16#6) -> {more, 16#dc, 16#17};
   4044 dec_huffman_lookup(16#fa, 16#7) -> {ok, 16#dc, 16#28};
   4045 dec_huffman_lookup(16#fa, 16#8) -> {more, 16#f9, 16#02};
   4046 dec_huffman_lookup(16#fa, 16#9) -> {more, 16#f9, 16#09};
   4047 dec_huffman_lookup(16#fa, 16#a) -> {more, 16#f9, 16#17};
   4048 dec_huffman_lookup(16#fa, 16#b) -> {ok, 16#f9, 16#28};
   4049 dec_huffman_lookup(16#fa, 16#c) -> {ok, 16#0a, 16#00};
   4050 dec_huffman_lookup(16#fa, 16#d) -> {ok, 16#0d, 16#00};
   4051 dec_huffman_lookup(16#fa, 16#e) -> {ok, 16#16, 16#00};
   4052 dec_huffman_lookup(16#fa, 16#f) -> error;
   4053 dec_huffman_lookup(16#fb, 16#0) -> {more, 16#7f, 16#03};
   4054 dec_huffman_lookup(16#fb, 16#1) -> {more, 16#7f, 16#06};
   4055 dec_huffman_lookup(16#fb, 16#2) -> {more, 16#7f, 16#0a};
   4056 dec_huffman_lookup(16#fb, 16#3) -> {more, 16#7f, 16#0f};
   4057 dec_huffman_lookup(16#fb, 16#4) -> {more, 16#7f, 16#18};
   4058 dec_huffman_lookup(16#fb, 16#5) -> {more, 16#7f, 16#1f};
   4059 dec_huffman_lookup(16#fb, 16#6) -> {more, 16#7f, 16#29};
   4060 dec_huffman_lookup(16#fb, 16#7) -> {ok, 16#7f, 16#38};
   4061 dec_huffman_lookup(16#fb, 16#8) -> {more, 16#dc, 16#03};
   4062 dec_huffman_lookup(16#fb, 16#9) -> {more, 16#dc, 16#06};
   4063 dec_huffman_lookup(16#fb, 16#a) -> {more, 16#dc, 16#0a};
   4064 dec_huffman_lookup(16#fb, 16#b) -> {more, 16#dc, 16#0f};
   4065 dec_huffman_lookup(16#fb, 16#c) -> {more, 16#dc, 16#18};
   4066 dec_huffman_lookup(16#fb, 16#d) -> {more, 16#dc, 16#1f};
   4067 dec_huffman_lookup(16#fb, 16#e) -> {more, 16#dc, 16#29};
   4068 dec_huffman_lookup(16#fb, 16#f) -> {ok, 16#dc, 16#38};
   4069 dec_huffman_lookup(16#fc, 16#0) -> {more, 16#f9, 16#03};
   4070 dec_huffman_lookup(16#fc, 16#1) -> {more, 16#f9, 16#06};
   4071 dec_huffman_lookup(16#fc, 16#2) -> {more, 16#f9, 16#0a};
   4072 dec_huffman_lookup(16#fc, 16#3) -> {more, 16#f9, 16#0f};
   4073 dec_huffman_lookup(16#fc, 16#4) -> {more, 16#f9, 16#18};
   4074 dec_huffman_lookup(16#fc, 16#5) -> {more, 16#f9, 16#1f};
   4075 dec_huffman_lookup(16#fc, 16#6) -> {more, 16#f9, 16#29};
   4076 dec_huffman_lookup(16#fc, 16#7) -> {ok, 16#f9, 16#38};
   4077 dec_huffman_lookup(16#fc, 16#8) -> {more, 16#0a, 16#01};
   4078 dec_huffman_lookup(16#fc, 16#9) -> {ok, 16#0a, 16#16};
   4079 dec_huffman_lookup(16#fc, 16#a) -> {more, 16#0d, 16#01};
   4080 dec_huffman_lookup(16#fc, 16#b) -> {ok, 16#0d, 16#16};
   4081 dec_huffman_lookup(16#fc, 16#c) -> {more, 16#16, 16#01};
   4082 dec_huffman_lookup(16#fc, 16#d) -> {ok, 16#16, 16#16};
   4083 dec_huffman_lookup(16#fc, 16#e) -> error;
   4084 dec_huffman_lookup(16#fc, 16#f) -> error;
   4085 dec_huffman_lookup(16#fd, 16#0) -> {more, 16#0a, 16#02};
   4086 dec_huffman_lookup(16#fd, 16#1) -> {more, 16#0a, 16#09};
   4087 dec_huffman_lookup(16#fd, 16#2) -> {more, 16#0a, 16#17};
   4088 dec_huffman_lookup(16#fd, 16#3) -> {ok, 16#0a, 16#28};
   4089 dec_huffman_lookup(16#fd, 16#4) -> {more, 16#0d, 16#02};
   4090 dec_huffman_lookup(16#fd, 16#5) -> {more, 16#0d, 16#09};
   4091 dec_huffman_lookup(16#fd, 16#6) -> {more, 16#0d, 16#17};
   4092 dec_huffman_lookup(16#fd, 16#7) -> {ok, 16#0d, 16#28};
   4093 dec_huffman_lookup(16#fd, 16#8) -> {more, 16#16, 16#02};
   4094 dec_huffman_lookup(16#fd, 16#9) -> {more, 16#16, 16#09};
   4095 dec_huffman_lookup(16#fd, 16#a) -> {more, 16#16, 16#17};
   4096 dec_huffman_lookup(16#fd, 16#b) -> {ok, 16#16, 16#28};
   4097 dec_huffman_lookup(16#fd, 16#c) -> error;
   4098 dec_huffman_lookup(16#fd, 16#d) -> error;
   4099 dec_huffman_lookup(16#fd, 16#e) -> error;
   4100 dec_huffman_lookup(16#fd, 16#f) -> error;
   4101 dec_huffman_lookup(16#fe, 16#0) -> {more, 16#0a, 16#03};
   4102 dec_huffman_lookup(16#fe, 16#1) -> {more, 16#0a, 16#06};
   4103 dec_huffman_lookup(16#fe, 16#2) -> {more, 16#0a, 16#0a};
   4104 dec_huffman_lookup(16#fe, 16#3) -> {more, 16#0a, 16#0f};
   4105 dec_huffman_lookup(16#fe, 16#4) -> {more, 16#0a, 16#18};
   4106 dec_huffman_lookup(16#fe, 16#5) -> {more, 16#0a, 16#1f};
   4107 dec_huffman_lookup(16#fe, 16#6) -> {more, 16#0a, 16#29};
   4108 dec_huffman_lookup(16#fe, 16#7) -> {ok, 16#0a, 16#38};
   4109 dec_huffman_lookup(16#fe, 16#8) -> {more, 16#0d, 16#03};
   4110 dec_huffman_lookup(16#fe, 16#9) -> {more, 16#0d, 16#06};
   4111 dec_huffman_lookup(16#fe, 16#a) -> {more, 16#0d, 16#0a};
   4112 dec_huffman_lookup(16#fe, 16#b) -> {more, 16#0d, 16#0f};
   4113 dec_huffman_lookup(16#fe, 16#c) -> {more, 16#0d, 16#18};
   4114 dec_huffman_lookup(16#fe, 16#d) -> {more, 16#0d, 16#1f};
   4115 dec_huffman_lookup(16#fe, 16#e) -> {more, 16#0d, 16#29};
   4116 dec_huffman_lookup(16#fe, 16#f) -> {ok, 16#0d, 16#38};
   4117 dec_huffman_lookup(16#ff, 16#0) -> {more, 16#16, 16#03};
   4118 dec_huffman_lookup(16#ff, 16#1) -> {more, 16#16, 16#06};
   4119 dec_huffman_lookup(16#ff, 16#2) -> {more, 16#16, 16#0a};
   4120 dec_huffman_lookup(16#ff, 16#3) -> {more, 16#16, 16#0f};
   4121 dec_huffman_lookup(16#ff, 16#4) -> {more, 16#16, 16#18};
   4122 dec_huffman_lookup(16#ff, 16#5) -> {more, 16#16, 16#1f};
   4123 dec_huffman_lookup(16#ff, 16#6) -> {more, 16#16, 16#29};
   4124 dec_huffman_lookup(16#ff, 16#7) -> {ok, 16#16, 16#38};
   4125 dec_huffman_lookup(16#ff, 16#8) -> error;
   4126 dec_huffman_lookup(16#ff, 16#9) -> error;
   4127 dec_huffman_lookup(16#ff, 16#a) -> error;
   4128 dec_huffman_lookup(16#ff, 16#b) -> error;
   4129 dec_huffman_lookup(16#ff, 16#c) -> error;
   4130 dec_huffman_lookup(16#ff, 16#d) -> error;
   4131 dec_huffman_lookup(16#ff, 16#e) -> error;
   4132 dec_huffman_lookup(16#ff, 16#f) -> error.