1/*	$NetBSD: adiantum_selftest.c,v 1.1 2020/06/29 23:44:01 riastradh Exp $	*/
2
3/*-
4 * Copyright (c) 2020 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__KERNEL_RCSID(1, "$NetBSD: adiantum_selftest.c,v 1.1 2020/06/29 23:44:01 riastradh Exp $");
31
32#include <sys/types.h>
33
34#ifdef _KERNEL
35
36#include <sys/systm.h>
37
38#include <lib/libkern/libkern.h>
39
40#else
41
42#include <string.h>
43#include <stdio.h>
44
45#include <openssl/aes.h>
46
47struct aesenc {
48	AES_KEY enckey;
49};
50
51struct aesdec {
52	AES_KEY deckey;
53};
54
55static void
56hexdump(int (*prf)(const char *, ...) __printflike(1,2), const char *prefix,
57    const void *buf, size_t len)
58{
59	const uint8_t *p = buf;
60	size_t i;
61
62	(*prf)("%s (%zu bytes)\n", prefix, len);
63	for (i = 0; i < len; i++) {
64		if (i % 16 == 8)
65			(*prf)("  ");
66		else
67			(*prf)(" ");
68		(*prf)("%02hhx", p[i]);
69		if ((i + 1) % 16 == 0)
70			(*prf)("\n");
71	}
72	if (i % 16)
73		(*prf)("\n");
74}
75
76#endif
77
78#include "adiantum.h"
79
80/* https://github.com/google/adiantum/blob/aab35db7bfb6e05d5ad0b41b5088a9f5a840bde3/test_vectors/ours/Adiantum/Adiantum_XChaCha12_32_AES256.json */
81
82int
83adiantum_selftest(void)
84{
85	static const struct {
86		uint8_t k[32];
87		unsigned tlen;
88		uint8_t t[64];
89		unsigned len;
90		uint8_t p[4096];
91		uint8_t c[4096];
92	} C[] = {
93		[0] = {
94			.k = {
95				0x7f,0xc7,0x15,0x2a, 0xe1,0xf5,0xfd,0xa4,
96				0x17,0x67,0x69,0xae, 0xc9,0x2b,0xba,0x82,
97				0xa3,0x14,0xe7,0xcf, 0xad,0xfd,0x85,0x40,
98				0xda,0x7b,0x7d,0x24, 0xbd,0xf1,0x7d,0x07,
99			},
100			.tlen = 0,
101			.len = 16,
102			.p = {
103				0x9b,0xe3,0x82,0xc6, 0x5a,0xc1,0x9f,0xad,
104				0x46,0x59,0xb8,0x0b, 0xac,0xc8,0x57,0xa0,
105			},
106			.c = {
107				0x82,0x0a,0xe4,0x44, 0x77,0xdd,0x9a,0x18,
108				0x6f,0x80,0x28,0x8b, 0x25,0x07,0x0e,0x85,
109			},
110		},
111		[1] = {
112			.k = {
113				0x26,0x6a,0xf9,0x4a, 0x21,0x49,0x6b,0x4e,
114				0x3e,0xff,0x43,0x46, 0x9c,0xc1,0xfa,0x72,
115				0x0e,0x77,0x9a,0xd5, 0x37,0x47,0x00,0x38,
116				0xb3,0x6f,0x58,0x6c, 0xde,0xc0,0xa6,0x74,
117			},
118			.tlen = 0,
119			.len = 128,
120			.p = {
121				0xdd,0x07,0xfe,0x61, 0x97,0x0c,0x31,0x48,
122				0x09,0xbf,0xdb,0x9b, 0x4b,0x7d,0x9c,0x80,
123				0xe6,0x11,0xe5,0x76, 0x5b,0xcc,0x76,0xdf,
124				0x34,0xd5,0x23,0xcd, 0xe1,0xdc,0x4e,0x4f,
125				0x65,0x20,0x58,0x8e, 0xe8,0x2c,0xc2,0x64,
126				0x32,0x83,0x7a,0xbf, 0xe1,0xca,0x0b,0x4b,
127				0xc6,0xec,0x0d,0xc5, 0x4a,0xb6,0x9b,0xa5,
128				0xc4,0x01,0x54,0xf5, 0xb5,0xfa,0x8f,0x58,
129				0x45,0x72,0x28,0xd8, 0x55,0x21,0xa2,0x5c,
130				0x7d,0xc8,0x0c,0x3c, 0x3c,0x99,0xc4,0x1a,
131				0xc2,0xe7,0x1c,0x0c, 0x14,0x72,0x1d,0xf8,
132				0x45,0xb7,0x9c,0x97, 0x07,0x04,0x9b,0x91,
133				0x5e,0x95,0xef,0x5f, 0xe6,0xad,0xbd,0xbb,
134				0xe7,0xd1,0x22,0xc3, 0x98,0x44,0x89,0x05,
135				0xe8,0x63,0x0d,0x44, 0xcb,0x36,0xd5,0x43,
136				0xcc,0x05,0x7c,0x31, 0xd3,0xbc,0x17,0x7f,
137			},
138			.c = {
139				0xba,0xd3,0xbf,0xbf, 0xb2,0x4e,0x1a,0xfd,
140				0x59,0xbe,0x9d,0x40, 0xe0,0x27,0x94,0xdd,
141				0x5c,0x08,0x1c,0xa5, 0xd0,0x25,0x87,0xca,
142				0x15,0x6a,0x35,0xe9, 0x8a,0x05,0x67,0x53,
143				0x04,0x4d,0xdf,0x35, 0x07,0x19,0x25,0xa0,
144				0x44,0x1a,0x5b,0xd6, 0x8b,0x0f,0xd3,0x36,
145				0x8a,0x60,0x8c,0x6b, 0x53,0xdb,0x69,0xb0,
146				0x37,0x69,0xb5,0x1b, 0x1f,0xf5,0xd5,0xab,
147				0x47,0x3a,0x45,0xb2, 0x37,0x6c,0xc3,0xc1,
148				0x1f,0xdb,0x74,0x6b, 0x1f,0x3b,0x2c,0x1a,
149				0xee,0xff,0xe9,0x28, 0xfe,0xa3,0x49,0x96,
150				0x7a,0xb3,0x68,0x4e, 0xb1,0xc4,0x85,0xdc,
151				0x18,0x87,0xfd,0xbf, 0x84,0x39,0xb2,0x20,
152				0x29,0x46,0x8a,0x3e, 0xa9,0xf9,0xcc,0x56,
153				0x6b,0x2f,0x43,0x4a, 0x1b,0x48,0x6b,0xd6,
154				0x03,0x1d,0x66,0xa1, 0x49,0xba,0xe9,0xf5,
155			},
156		},
157		[2] = {
158			.k = {
159				0x7c,0xab,0xc4,0x63, 0xc0,0x40,0x5e,0xad,
160				0x8f,0x02,0x5a,0xa9, 0xba,0x68,0x58,0xe3,
161				0xb6,0xbb,0x03,0xc9, 0xe6,0x1e,0xe7,0xc3,
162				0xd7,0x2c,0xf7,0x7a, 0xf7,0x2c,0xd1,0x07,
163			},
164			.tlen = 0,
165			.len = 512,
166			.p = {
167				0x4f,0xc9,0x8f,0xa7, 0x81,0x81,0x3a,0xb7,
168				0x3c,0x55,0x8f,0x8f, 0x18,0xc4,0x7a,0xd2,
169				0x13,0x70,0x94,0x0f, 0x46,0xb2,0x0f,0x53,
170				0xde,0xdf,0x06,0xf8, 0x60,0x34,0xad,0x39,
171				0xe9,0x47,0x23,0x31, 0x94,0xf3,0x59,0x88,
172				0x96,0x14,0x52,0x3b, 0x88,0xb7,0x55,0xe9,
173				0x4a,0xbc,0x41,0xea, 0x24,0x03,0x35,0x78,
174				0xb7,0x4b,0x9f,0x8b, 0xe4,0x36,0x77,0x0a,
175				0x70,0x19,0x90,0x9b, 0xb1,0x70,0x27,0x23,
176				0x31,0xd9,0xe5,0x26, 0x36,0x71,0x06,0xc7,
177				0xd3,0xb1,0xb8,0x52, 0x6a,0xe1,0x95,0x86,
178				0x76,0xc3,0x02,0x2c, 0xd2,0xe7,0xc2,0x1c,
179				0x6f,0xcb,0x61,0x56, 0xfc,0x5e,0xf2,0x57,
180				0x90,0x46,0xfb,0x6a, 0xc1,0x5e,0x56,0x5b,
181				0x18,0x8d,0x0e,0x4f, 0x4e,0x14,0x4c,0x6d,
182				0x97,0xf9,0x73,0xed, 0xc5,0x41,0x94,0x24,
183				0xaa,0x35,0x2f,0x01, 0xef,0x8f,0xb2,0xfd,
184				0xc2,0xc7,0x8b,0x9c, 0x9b,0x10,0x89,0xec,
185				0x64,0xbb,0x54,0xa5, 0x01,0xdc,0x51,0x57,
186				0xc8,0x5a,0x03,0xcb, 0x91,0x73,0xb2,0x08,
187				0xc3,0xcc,0x3c,0x1b, 0xae,0x3e,0x0f,0xf3,
188				0x93,0xb9,0xc3,0x27, 0xd7,0x88,0x66,0xa2,
189				0x40,0xf9,0xfd,0x02, 0x61,0xe1,0x2b,0x5d,
190				0xc9,0xe8,0xd6,0xac, 0xf0,0xd0,0xe3,0x79,
191				0x94,0xff,0x50,0x09, 0x4e,0x68,0xe8,0x5e,
192				0x3f,0x58,0xc8,0xb8, 0x0f,0xd7,0xc2,0x2d,
193				0x91,0x3e,0x47,0x10, 0x50,0x98,0xa6,0xf9,
194				0x37,0xd6,0x90,0xed, 0xb7,0x5e,0x3a,0xd0,
195				0xd7,0x50,0xc4,0x69, 0xe6,0x29,0xb8,0x9a,
196				0xc1,0x5c,0x2b,0x34, 0x6d,0x44,0x58,0xd6,
197				0xd4,0x7e,0xe2,0x42, 0x67,0x45,0xe5,0x64,
198				0x48,0xac,0x00,0xe9, 0xb6,0xd0,0xc3,0xc5,
199				0x5d,0x9e,0x95,0x4e, 0x10,0x18,0x29,0x86,
200				0xaa,0x37,0xa3,0x3c, 0xe1,0xd6,0x5d,0x6d,
201				0x4a,0xca,0xc3,0xe2, 0x25,0xb7,0x49,0x4a,
202				0x36,0x67,0xc0,0xe1, 0x02,0x45,0xcc,0xd4,
203				0x11,0x37,0x11,0x8e, 0x54,0xf5,0xea,0x80,
204				0x04,0x72,0x06,0x36, 0x8f,0xf9,0x1e,0xed,
205				0x91,0x14,0x9d,0x42, 0x59,0xc1,0x87,0xb8,
206				0xf1,0xce,0xb2,0x17, 0x42,0xa1,0x2f,0x96,
207				0xa3,0x50,0xe9,0x01, 0x24,0x9e,0xe5,0xbb,
208				0x97,0x83,0x31,0x12, 0xa8,0x7c,0xca,0x7b,
209				0x90,0x33,0xad,0x1c, 0x99,0x81,0x1a,0xb8,
210				0xa1,0xe0,0xf1,0x5a, 0xbc,0x08,0xde,0xab,
211				0x69,0x0a,0x89,0xa0, 0x9f,0x02,0x5e,0x3a,
212				0xf3,0xba,0xb9,0x6e, 0x34,0xdf,0x15,0x13,
213				0x64,0x51,0xa9,0x55, 0x67,0xa3,0xba,0x6b,
214				0x35,0xb0,0x8a,0x05, 0xf5,0x79,0x84,0x97,
215				0x92,0x8e,0x11,0xeb, 0xef,0xec,0x65,0xb5,
216				0xe6,0x42,0xfb,0x06, 0x33,0x93,0x6b,0xff,
217				0xc2,0x49,0x15,0x71, 0xb0,0xca,0x62,0xd1,
218				0x81,0x40,0xd2,0xab, 0x0b,0x7d,0x7e,0x1a,
219				0xe9,0xec,0xfc,0xde, 0xdb,0xd5,0xa7,0x56,
220				0x83,0x25,0x0e,0x5e, 0xac,0x0c,0x42,0x26,
221				0x00,0x59,0x55,0x17, 0x8b,0x5a,0x03,0x7b,
222				0x85,0xe9,0xc1,0xa3, 0xe4,0xeb,0xd3,0xde,
223				0xd8,0x81,0xf5,0x31, 0x2c,0xda,0x21,0xbc,
224				0xb5,0xd9,0x7a,0xd0, 0x1e,0x2a,0x6b,0xcf,
225				0xad,0x06,0x3c,0xf2, 0xf7,0x5c,0x3a,0xf1,
226				0xa7,0x0f,0x5f,0x53, 0xe9,0x3f,0x3c,0xf1,
227				0xb7,0x47,0x53,0x16, 0x19,0xd9,0xef,0xf0,
228				0xcb,0x16,0xe4,0xc9, 0xa3,0x8f,0xd6,0x3f,
229				0xf8,0xb2,0x22,0x65, 0xf9,0xa1,0xa3,0x03,
230				0xe4,0x06,0x75,0x69, 0xf5,0x32,0x48,0x80,
231			},
232			.c = {
233				0x66,0x3f,0xf7,0x7a, 0x20,0xa4,0x35,0xd6,
234				0x0e,0xe8,0x17,0x32, 0x84,0xae,0xee,0x18,
235				0x0f,0x64,0x83,0x66, 0xa4,0xf4,0x24,0x53,
236				0xe6,0x58,0x2e,0xd5, 0x61,0x58,0xdd,0x5f,
237				0x1d,0xb9,0xba,0x34, 0xd0,0xd3,0x64,0xde,
238				0x99,0x47,0x92,0x3a, 0x26,0x90,0xbb,0x98,
239				0xb0,0xbd,0xf4,0x5e, 0x26,0x57,0xe0,0xe1,
240				0x09,0x27,0xc1,0xc4, 0x86,0x2b,0x4b,0x48,
241				0xbb,0xcd,0xec,0x2f, 0xd1,0x54,0xe9,0x21,
242				0xa0,0x40,0x76,0x01, 0x2d,0xb1,0xe7,0x75,
243				0xa1,0xd7,0x04,0x23, 0x9d,0xd3,0x0f,0x3b,
244				0x7e,0xb8,0xd0,0x37, 0xe4,0xd9,0x48,0xaa,
245				0xe1,0x4d,0x0f,0xf6, 0xae,0x29,0x20,0xae,
246				0xda,0x35,0x18,0x97, 0x2c,0xc2,0xa9,0xdd,
247				0x6e,0x50,0x73,0x52, 0x0a,0x8a,0x2a,0xd2,
248				0x2a,0xf4,0x12,0xe9, 0x7d,0x88,0x37,0xae,
249				0x12,0x81,0x92,0x96, 0xbe,0xea,0x15,0xa4,
250				0x3c,0x53,0xad,0x1f, 0x75,0x54,0x24,0x81,
251				0xaa,0x1b,0x92,0x84, 0x7c,0xb2,0xd7,0x10,
252				0x5e,0xb6,0xab,0x83, 0x25,0xf7,0x03,0x2b,
253				0xd9,0x53,0x4d,0xf9, 0x41,0x21,0xef,0xef,
254				0x40,0x3a,0x2d,0x54, 0xa9,0xf0,0x72,0xff,
255				0x03,0x59,0x2e,0x91, 0x07,0xff,0xe2,0x86,
256				0x33,0x59,0x98,0xdf, 0xa4,0x7d,0x9e,0x52,
257				0x95,0xd9,0x77,0x4b, 0xdf,0x93,0xc8,0x2d,
258				0xbc,0x81,0x2b,0x77, 0x89,0xae,0x52,0xdc,
259				0xfc,0xb7,0x22,0xf0, 0x1a,0x9d,0xc1,0x28,
260				0x70,0xe2,0x15,0xe4, 0x77,0x11,0x49,0x09,
261				0x89,0xf4,0x06,0x00, 0x64,0x78,0xb6,0x3f,
262				0x63,0x36,0xfd,0x9f, 0x35,0x33,0x85,0x52,
263				0x18,0x26,0xc1,0x0d, 0xf7,0xab,0x5a,0x06,
264				0x9c,0x3a,0xab,0x5f, 0x81,0x36,0x39,0xe3,
265				0xe6,0xf7,0x33,0xb0, 0xec,0xe6,0x8d,0x05,
266				0xbd,0xc7,0xbd,0x20, 0x5f,0x74,0xdf,0x98,
267				0x3a,0xa9,0xde,0xae, 0x89,0xee,0xcc,0x60,
268				0x8b,0x23,0xed,0x0f, 0x55,0x4d,0x56,0xd2,
269				0x69,0xa5,0xf8,0xff, 0x94,0x62,0x99,0xc6,
270				0xd4,0x02,0x0b,0xcf, 0xe4,0x86,0x23,0x5e,
271				0xed,0x12,0x12,0x2e, 0x0a,0x0f,0xda,0x12,
272				0x0a,0x68,0x56,0xea, 0x16,0x92,0xa5,0xdb,
273				0xf5,0x9d,0x0e,0xe6, 0x39,0x5d,0x76,0x50,
274				0x41,0x85,0xb4,0xcc, 0xb3,0x9e,0x84,0x46,
275				0xd3,0x93,0xcf,0xa1, 0xee,0x5b,0x51,0x94,
276				0x05,0x46,0x16,0xbb, 0xd1,0xae,0x94,0xe4,
277				0x1c,0x3d,0xeb,0xf4, 0x09,0x00,0xf7,0x86,
278				0x57,0x60,0x49,0x94, 0xf5,0xa7,0x7e,0x4b,
279				0x32,0x4a,0x6a,0xae, 0x2c,0x5f,0x30,0x2d,
280				0x7c,0xa1,0x71,0x5e, 0x63,0x7a,0x70,0x56,
281				0x1f,0xaf,0x3e,0xf3, 0x46,0xb5,0x68,0x61,
282				0xe2,0xd4,0x16,0x6b, 0xaf,0x94,0x07,0xa9,
283				0x5d,0x7a,0xee,0x4c, 0xad,0x85,0xcc,0x3e,
284				0x99,0xf3,0xfa,0x21, 0xab,0x9d,0x12,0xdf,
285				0x33,0x32,0x23,0x68, 0x96,0x8f,0x8f,0x78,
286				0xb3,0x63,0xa0,0x83, 0x16,0x06,0x64,0xbd,
287				0xea,0x1f,0x69,0x73, 0x9c,0x54,0xe1,0x60,
288				0xe8,0x98,0xc9,0x94, 0xe9,0xdf,0x0c,0xee,
289				0xf4,0x38,0x1e,0x9f, 0x26,0xda,0x3f,0x4c,
290				0xfd,0x6d,0xf5,0xee, 0x75,0x91,0x7c,0x4f,
291				0x4d,0xc2,0xe8,0x1a, 0x7b,0x1b,0xa9,0x52,
292				0x1e,0x24,0x22,0x5a, 0x73,0xa5,0x10,0xa2,
293				0x37,0x39,0x1e,0xd2, 0xf7,0xe0,0xab,0x77,
294				0xb7,0x93,0x5d,0x30, 0xd2,0x5a,0x33,0xf4,
295				0x63,0x98,0xe8,0x6d, 0x3f,0x34,0x4a,0xb9,
296				0x44,0x57,0x39,0xe7, 0xa9,0xdd,0xac,0x91,
297			},
298		},
299		[3] = {
300			.k = {
301				0xac,0x95,0xec,0x00, 0xa5,0x57,0x8e,0x99,
302				0x14,0x54,0x95,0x60, 0xdc,0xae,0x56,0x66,
303				0x03,0x22,0xa1,0x55, 0xbf,0xa5,0x2b,0x1c,
304				0x02,0xc9,0x0c,0x2f, 0xa1,0x5d,0x1b,0x84,
305			},
306			.tlen = 0,
307			.len = 1536,
308			.p = {
309				0xd2,0x80,0x06,0x95, 0xcd,0xe1,0x71,0x2c,
310				0xcf,0x89,0xa6,0xc7, 0x8b,0xa7,0xe3,0xcb,
311				0x66,0x3e,0x6b,0x58, 0x2a,0x20,0xd1,0xc4,
312				0x07,0xd6,0x3b,0x03, 0xdc,0x26,0xda,0x1b,
313				0xe0,0x51,0xd5,0x1c, 0x4c,0xed,0xd0,0xf5,
314				0xe2,0x7f,0x89,0xe8, 0x3d,0x41,0x1a,0xa0,
315				0xb1,0xed,0x61,0xa8, 0xc7,0x0a,0xe8,0x69,
316				0x4d,0xb8,0x18,0x81, 0x6c,0x76,0x67,0x83,
317				0x8a,0x47,0xa2,0x4b, 0xfb,0xfd,0x6f,0x65,
318				0x88,0xa8,0xf6,0x6d, 0x9f,0x71,0x6e,0x33,
319				0x4f,0x82,0xee,0x8f, 0x38,0x5c,0xe4,0x9b,
320				0x45,0x29,0xca,0xda, 0x9b,0x5d,0x65,0x06,
321				0xab,0xf5,0x86,0x28, 0x8c,0x3e,0x20,0x38,
322				0x1a,0x4c,0xb2,0xd9, 0x1f,0xc0,0x10,0x59,
323				0x6b,0x2c,0xb5,0x41, 0x41,0xc5,0xd9,0xb7,
324				0x4f,0xc3,0x36,0x08, 0xd4,0xdc,0xff,0x57,
325				0xd7,0x97,0x77,0x45, 0xc4,0x28,0x93,0x2c,
326				0xbe,0xdc,0xae,0x1d, 0x18,0xc8,0xfa,0x9a,
327				0xd4,0x41,0x2e,0x5a, 0x26,0x03,0xae,0x7a,
328				0xb2,0x6a,0xc0,0x0c, 0xb6,0x3e,0xf0,0x73,
329				0x36,0xed,0xea,0xc1, 0xae,0x9d,0xc9,0xa1,
330				0x85,0x4c,0x57,0x14, 0xb0,0xf3,0xf8,0x4e,
331				0x91,0x99,0x06,0x65, 0x17,0x66,0xc2,0x9a,
332				0x7a,0x4f,0x39,0x77, 0x32,0x44,0xc8,0x3f,
333				0xe2,0x3c,0xc2,0x31, 0x0b,0x40,0x84,0xee,
334				0xa1,0xeb,0xc6,0xc2, 0xb4,0x48,0xe6,0x09,
335				0xc5,0xf5,0x3d,0x96, 0x90,0xa2,0x1d,0xf2,
336				0x89,0x26,0x9f,0x10, 0x49,0x30,0x0f,0xe1,
337				0x5e,0xca,0x1c,0x3f, 0x82,0xda,0xcb,0x8d,
338				0x91,0x6d,0x08,0x96, 0x9e,0x57,0x88,0x16,
339				0xee,0xa7,0x9e,0xe8, 0x1b,0xc1,0x63,0xb0,
340				0x57,0xfa,0xfd,0x56, 0x49,0xec,0x51,0x1d,
341				0x34,0x2e,0xc6,0xda, 0xc0,0x1d,0x02,0x3e,
342				0x52,0xaf,0x44,0x24, 0xc6,0x80,0x12,0x64,
343				0xbe,0x44,0xa8,0x46, 0xb5,0x8d,0x80,0xfd,
344				0x95,0x4a,0xeb,0x3d, 0x4f,0x85,0x1f,0x1c,
345				0xa4,0x3f,0x5c,0x0c, 0x71,0xed,0x96,0x41,
346				0xde,0xb0,0xbd,0x08, 0xf3,0x4d,0x37,0xd2,
347				0xb1,0x4f,0x71,0x04, 0xf1,0x14,0x66,0x4a,
348				0x59,0x73,0xdc,0x98, 0x5b,0x61,0x56,0xfd,
349				0x50,0xe5,0x76,0xd9, 0x6a,0x9f,0x30,0x82,
350				0x6f,0xdf,0x6e,0x7b, 0x91,0xc2,0x5e,0x4f,
351				0x74,0x92,0x92,0xb8, 0x24,0xd3,0x30,0x21,
352				0x5d,0x4b,0xb1,0x01, 0xf7,0x62,0x27,0x94,
353				0xb3,0x88,0x86,0x75, 0xe8,0xab,0xe8,0x42,
354				0x50,0x15,0xb7,0xde, 0xc0,0xc4,0x8d,0x4e,
355				0x08,0x17,0xcb,0xf9, 0x4a,0x2e,0xe3,0x69,
356				0xbd,0xe7,0xdb,0xd1, 0xf1,0xfa,0x47,0xed,
357				0x78,0xa9,0x26,0xf0, 0xd1,0xbb,0x02,0xa1,
358				0x07,0x5c,0x1f,0xe8, 0x2f,0x52,0xd8,0x95,
359				0xd7,0xa9,0x2b,0x79, 0x77,0xf4,0xee,0xee,
360				0xbc,0x1f,0xaa,0x46, 0xe7,0x66,0x75,0xb1,
361				0x43,0x01,0x35,0xac, 0xc6,0x85,0xad,0x44,
362				0x23,0x59,0x50,0x0b, 0x39,0x47,0x51,0x54,
363				0x68,0x92,0x89,0x00, 0x08,0xa3,0xaa,0x24,
364				0x03,0x3f,0xf6,0xab, 0x19,0x42,0xff,0x0c,
365				0xc5,0xa3,0x96,0xcb, 0xd9,0x6d,0xa0,0xcc,
366				0x24,0x9e,0x71,0xb1, 0x87,0x95,0x7a,0x2e,
367				0x31,0x5e,0x17,0x26, 0x5a,0x1b,0xa1,0x33,
368				0x10,0x3f,0xd7,0xce, 0xa0,0xd9,0xbc,0xd8,
369				0x72,0xbe,0x75,0xc4, 0x78,0x3b,0x67,0xf5,
370				0xc3,0x82,0x2d,0x21, 0x49,0x74,0x2e,0xd5,
371				0x63,0xaa,0xa2,0x54, 0xc5,0xe2,0x98,0x82,
372				0x39,0xd9,0xda,0x14, 0x3c,0x75,0x18,0xc8,
373				0x75,0x6a,0xa1,0x7d, 0xfa,0x72,0x0f,0x9b,
374				0x5a,0xb3,0x7c,0x15, 0xc2,0xa5,0x6d,0x98,
375				0x02,0x6c,0xa2,0x26, 0xaa,0xc0,0x69,0xc5,
376				0xa7,0xa2,0xca,0xf5, 0xf3,0x8c,0x80,0x4e,
377				0x7e,0x47,0xc9,0x87, 0x47,0x36,0xd6,0xc6,
378				0xe8,0x49,0xb5,0x97, 0xa8,0xdc,0x4a,0x55,
379				0x6f,0x02,0x79,0x83, 0xe4,0x7c,0x4c,0x69,
380				0xa6,0x4d,0x4f,0x8a, 0x48,0x18,0x00,0xf9,
381				0xad,0xd1,0xb2,0xca, 0xc4,0x50,0x47,0x21,
382				0x4e,0xa7,0xce,0x6e, 0xdf,0xbd,0x2a,0x4d,
383				0xca,0x13,0x33,0xde, 0xa2,0x30,0xe1,0x03,
384				0xcd,0x2c,0x74,0xd3, 0x30,0x0d,0x61,0xe6,
385				0x9d,0xf3,0x09,0xc5, 0x27,0x99,0x0e,0x23,
386				0xbc,0x21,0xdb,0xdb, 0xeb,0x77,0xea,0xd4,
387				0x4b,0xbf,0x9b,0x49, 0x30,0xd4,0xc2,0xe7,
388				0x5e,0x85,0xe8,0xb6, 0xa5,0xe3,0x4e,0x64,
389				0xf0,0x45,0x95,0x04, 0x9a,0xed,0xaa,0x4d,
390				0xbd,0x5e,0x03,0x9f, 0xd4,0x2b,0xae,0x14,
391				0x1a,0x3d,0x49,0x92, 0xd6,0x6f,0x64,0xc7,
392				0xca,0x18,0x32,0x16, 0xf6,0x07,0x00,0x22,
393				0xfd,0xe1,0x45,0xe6, 0x19,0x24,0x5b,0x6e,
394				0xd3,0x67,0xf2,0x60, 0x36,0xf5,0x22,0xeb,
395				0x5f,0x42,0xba,0x70, 0x38,0xfc,0x98,0x96,
396				0x58,0x72,0xbf,0x13, 0x60,0xcc,0x32,0x45,
397				0x8d,0x00,0x44,0x60, 0xaf,0x7a,0x19,0xd6,
398				0xc0,0x14,0x33,0x96, 0xf3,0x33,0xc3,0xa8,
399				0x34,0x77,0x69,0x0c, 0x50,0xe5,0xfc,0x1b,
400				0x42,0x39,0x96,0x24, 0x3a,0x3a,0x47,0x0e,
401				0x27,0x66,0xa8,0x18, 0x50,0xdf,0x6d,0xa7,
402				0xad,0x4f,0xe5,0x88, 0x79,0xea,0x30,0xe2,
403				0xcd,0x27,0x05,0x36, 0x0c,0x3c,0x97,0x12,
404				0x69,0xa6,0xc0,0xa2, 0xa7,0x58,0x82,0x20,
405				0x68,0xfc,0xd0,0x81, 0x49,0xc0,0xcf,0xba,
406				0x90,0xe1,0x03,0xce, 0x70,0xd6,0x94,0x1a,
407				0xc0,0x22,0x3b,0xdc, 0x7f,0x63,0x6b,0xc4,
408				0x91,0xc2,0x21,0xdc, 0x84,0x42,0x80,0x04,
409				0x6f,0x14,0xc3,0x2c, 0x79,0x49,0x3c,0xb1,
410				0x5f,0xc7,0x69,0x4a, 0x4f,0xf5,0xd5,0x4b,
411				0x7c,0xe7,0x83,0x79, 0x30,0xff,0x74,0xe0,
412				0xf7,0xd3,0x6c,0x95, 0xef,0x77,0xe8,0x7b,
413				0x1f,0x54,0xad,0xc7, 0x4b,0xe8,0x5a,0x37,
414				0xd7,0xe9,0xfe,0xcb, 0x11,0x7b,0x54,0xb8,
415				0xd2,0xc7,0x80,0x1d, 0x80,0x17,0xdd,0x21,
416				0xa6,0xed,0x20,0x2c, 0x8a,0xa1,0x0b,0x3a,
417				0x08,0xde,0x34,0xe4, 0xa0,0xff,0x68,0xfa,
418				0x4a,0x01,0xcc,0x4f, 0x57,0x5f,0x84,0x95,
419				0x88,0xe2,0x7f,0xb7, 0x5d,0x35,0x36,0xe2,
420				0xa1,0xca,0xc0,0x9b, 0x4a,0xb0,0x6f,0x35,
421				0xef,0x08,0xd7,0x5a, 0xec,0x4f,0x97,0x20,
422				0x92,0x2a,0x63,0x1d, 0x15,0x07,0x73,0x1f,
423				0x97,0xcf,0x28,0x41, 0x65,0x0d,0x41,0xee,
424				0xca,0xd8,0x90,0x65, 0xaa,0x3d,0x04,0x7f,
425				0x35,0x4b,0x9e,0xe9, 0x96,0xa9,0x61,0xcb,
426				0x43,0xc9,0xfa,0x1d, 0xc8,0x85,0x40,0x64,
427				0x88,0x89,0xea,0xb5, 0xf7,0xe5,0xe4,0xfe,
428				0xaf,0x8e,0x52,0xf9, 0x7e,0x7d,0x83,0x92,
429				0x90,0x51,0x4c,0xf0, 0x49,0x52,0x5e,0x56,
430				0xc9,0xb7,0x4c,0xca, 0x57,0x01,0x3d,0x28,
431				0xe2,0x7d,0xaa,0x96, 0xd7,0xad,0xad,0xd9,
432				0xd5,0x1a,0xd5,0xc2, 0xd0,0x5a,0xd3,0x7a,
433				0x9a,0x91,0xa0,0xb8, 0x6f,0x28,0xff,0xa0,
434				0x1c,0x1d,0xf1,0x5e, 0x45,0x53,0x3f,0x85,
435				0x1b,0xc2,0x76,0x51, 0xbf,0x25,0x02,0xf7,
436				0x10,0xde,0xb7,0x1a, 0x04,0x6c,0x9a,0xeb,
437				0xb9,0x4b,0x67,0xfb, 0xa1,0x5b,0xa8,0x02,
438				0x01,0x1f,0x38,0xa9, 0x9d,0x96,0x50,0x07,
439				0xef,0xa7,0xc3,0xb4, 0x0f,0xcd,0x1b,0x9f,
440				0xd2,0x08,0x87,0xca, 0xd5,0x65,0x1a,0x5e,
441				0x1a,0xff,0x97,0xb0, 0x4b,0x43,0x67,0x51,
442				0x22,0xfd,0x49,0xcd, 0x54,0x2f,0xf8,0x9b,
443				0xed,0x46,0x7e,0x00, 0x5b,0x67,0x06,0xeb,
444				0xb7,0x4d,0x1c,0x72, 0x74,0xdd,0xbd,0xb1,
445				0x71,0x0a,0x28,0xc7, 0x7b,0xa8,0x12,0xac,
446				0x58,0x53,0xa4,0xfb, 0x41,0x74,0xb4,0x52,
447				0x95,0x99,0xf6,0x38, 0x53,0xff,0x2d,0x26,
448				0xef,0x12,0x91,0xc6, 0x52,0xe1,0xa9,0x50,
449				0xfa,0x8e,0x2e,0x82, 0x8b,0x4f,0xb7,0xad,
450				0xe1,0x74,0x0d,0xbf, 0x73,0x04,0xdf,0x3f,
451				0xf6,0xf8,0x09,0x9d, 0xdf,0x18,0x07,0x13,
452				0xe6,0x60,0xf0,0x6a, 0x98,0x22,0x15,0xdf,
453				0x0c,0x72,0x6a,0x9d, 0x6e,0x67,0x76,0x61,
454				0xda,0xbe,0x10,0xd6, 0xf0,0x5f,0x06,0x74,
455				0x76,0xce,0x63,0xee, 0x91,0x39,0x24,0xa9,
456				0xcf,0xc7,0xca,0xd5, 0xb4,0xff,0x30,0x6e,
457				0x05,0x32,0x0c,0x9d, 0xeb,0xfb,0xc6,0x3e,
458				0xe4,0xc6,0x20,0xc5, 0x3e,0x1d,0x5c,0xd6,
459				0x05,0xbe,0xb8,0xc3, 0x44,0xe3,0xc9,0xc1,
460				0x38,0xaa,0xc5,0xc8, 0xe3,0x11,0x8d,0xde,
461				0xdc,0x48,0x8e,0xe9, 0x38,0xe5,0x80,0xec,
462				0x82,0x17,0xf2,0xcf, 0x26,0x55,0xf7,0xdc,
463				0x78,0x7f,0xfb,0xc1, 0xb4,0x6c,0x80,0xcc,
464				0xf8,0x5a,0xbc,0x8f, 0x9d,0x62,0xfe,0x35,
465				0x17,0x7c,0x10,0xb7, 0x4a,0x0f,0x81,0x43,
466				0x11,0xbd,0x33,0x47, 0x9c,0x61,0x02,0xec,
467				0xab,0xde,0xb2,0x3f, 0x73,0x48,0xfb,0x5c,
468				0x84,0x4a,0xeb,0xab, 0x58,0x07,0x18,0xdc,
469				0x57,0x85,0xb8,0xe7, 0xff,0x9c,0xc2,0xc8,
470				0xb3,0xef,0x5b,0x50, 0x16,0xb1,0x38,0x6e,
471				0xa7,0xd7,0x9c,0xb1, 0x29,0x6b,0x74,0x9c,
472				0x50,0xcc,0x90,0xee, 0x86,0x2a,0x7c,0x07,
473				0xd4,0xcb,0xc2,0x24, 0x53,0xb0,0x3f,0x4f,
474				0x9b,0xc4,0x62,0x73, 0x85,0x3d,0x1e,0x54,
475				0x86,0xda,0x1e,0x5e, 0x70,0x73,0x6a,0x2a,
476				0x29,0x75,0xb7,0x18, 0x1a,0x72,0x81,0x64,
477				0x58,0xa0,0xb3,0x70, 0x61,0x9f,0x22,0x37,
478				0xac,0xdc,0xe8,0xaf, 0xe2,0x74,0xe4,0xa7,
479				0xed,0x92,0x5c,0x47, 0xff,0xc3,0xaf,0x9e,
480				0x59,0xe1,0x09,0x22, 0x72,0x18,0x96,0x35,
481				0x23,0x91,0x00,0xa3, 0x7d,0x95,0x25,0x95,
482				0xd5,0xad,0xf8,0x6e, 0xcc,0x14,0x31,0xb2,
483				0x52,0x20,0x2a,0x41, 0xf1,0xaf,0x9a,0xaf,
484				0xdd,0xbd,0x04,0x5a, 0xcd,0x1a,0x86,0xb1,
485				0x45,0x1b,0x6f,0x7a, 0x02,0x45,0x05,0xef,
486				0x74,0xdf,0xe8,0x72, 0x1c,0x82,0x57,0xea,
487				0x2a,0x24,0x1b,0x46, 0x3f,0x66,0x89,0x9f,
488				0x00,0xb9,0xec,0xf7, 0x59,0x6d,0xeb,0xac,
489				0xca,0x82,0x14,0x79, 0xbf,0x7f,0xd5,0x18,
490				0x26,0x6b,0xee,0x34, 0x44,0xee,0x6d,0x8a,
491				0x82,0x8f,0x4f,0xa3, 0x1a,0xc3,0x9b,0x2e,
492				0x57,0x83,0xb8,0x7d, 0xa0,0x21,0xc6,0x66,
493				0x96,0x7d,0x30,0x81, 0x29,0xc7,0x05,0x46,
494				0x99,0xd4,0x35,0x7b, 0x40,0xe8,0x87,0x60,
495				0x13,0xa5,0xa6,0xb9, 0x24,0x59,0xca,0xa8,
496				0xcd,0x62,0xeb,0xc5, 0x22,0xff,0x49,0x64,
497				0x03,0x2d,0x42,0x01, 0xa2,0x09,0x4a,0x45,
498				0x41,0x34,0x88,0x44, 0xf4,0xe1,0xa3,0x48,
499				0xcf,0x2d,0xee,0xee, 0xbf,0x83,0x1a,0x42,
500				0x8d,0xa4,0x15,0x3d, 0xfc,0x92,0x67,0x91,
501			},
502			.c = {
503				0x5c,0xb9,0xab,0x7c, 0xe4,0x0b,0xbe,0xa5,
504				0x17,0x18,0xdf,0xd7, 0x17,0x13,0x98,0xbd,
505				0xcb,0x1c,0xa3,0x39, 0x9c,0xbc,0x19,0x1f,
506				0xca,0xcb,0x50,0x89, 0x1d,0x69,0xc3,0xcb,
507				0xd1,0x76,0x70,0x6b, 0x7c,0x62,0x49,0xe8,
508				0xb1,0xa8,0xb7,0x58, 0x87,0xf6,0x79,0xf7,
509				0xf2,0xc1,0xd8,0xb2, 0x1d,0xd2,0x1a,0xf5,
510				0xa0,0x41,0xda,0x17, 0x3f,0xaa,0xdb,0xf6,
511				0xa9,0xf2,0x49,0x1c, 0x6f,0x20,0xf3,0xae,
512				0x4a,0x5e,0x55,0xdd, 0xa6,0x9e,0xc4,0x03,
513				0x07,0x22,0xc0,0xbe, 0x5e,0x58,0xdd,0xf0,
514				0x7e,0xfe,0xcf,0x2c, 0x96,0x33,0x32,0xbd,
515				0xe8,0xdf,0x84,0x71, 0x45,0x35,0x40,0x48,
516				0xcf,0x10,0x45,0x47, 0x97,0x4c,0x20,0x6b,
517				0x3a,0xdd,0x73,0xd0, 0xce,0x0c,0x4c,0xf1,
518				0x78,0xcd,0x93,0xd2, 0x21,0x70,0xeb,0x2f,
519				0x23,0x99,0x64,0xbb, 0x97,0x28,0xe9,0xde,
520				0xef,0x9c,0xf2,0x7f, 0x4b,0x4d,0x2c,0x66,
521				0x7b,0x6e,0x70,0xf7, 0x25,0x68,0xea,0x93,
522				0x3a,0x27,0xbd,0x04, 0x8b,0xcd,0xd9,0xed,
523				0x1a,0x9d,0xca,0x8f, 0x15,0x2d,0xa1,0x25,
524				0xb8,0x66,0x1b,0x3d, 0xd4,0xd4,0x9b,0xab,
525				0x3a,0xa8,0xe8,0x88, 0xc6,0xd2,0x5a,0x28,
526				0x51,0x4d,0x11,0xb6, 0x4a,0x2b,0x6d,0xe4,
527				0xc9,0xc1,0x20,0x6f, 0xba,0x23,0x72,0xc9,
528				0x6d,0x44,0xf0,0xaa, 0x06,0x8c,0x9b,0xbb,
529				0x4b,0xd2,0xa0,0x94, 0x5f,0x0b,0xc8,0xa3,
530				0x4c,0xe9,0xe2,0x8a, 0xe5,0xf9,0xe3,0x2c,
531				0xc7,0x87,0x75,0xc1, 0xc9,0x62,0xb5,0xb4,
532				0x04,0x86,0x6a,0x31, 0x54,0x0e,0x31,0xf7,
533				0xad,0xea,0xbb,0xa6, 0x8e,0x6c,0xac,0x24,
534				0x52,0x2c,0x9d,0x1f, 0xde,0x70,0xfd,0xc4,
535				0x93,0x8b,0x75,0x6c, 0xef,0xa7,0x89,0xaf,
536				0x2c,0x4c,0xf6,0x38, 0xdd,0x79,0xfa,0x70,
537				0x54,0x1e,0x92,0xd4, 0xb4,0x04,0x69,0x8e,
538				0x6b,0x9e,0x12,0xfe, 0x15,0x15,0xf7,0x99,
539				0xb6,0x2f,0xfc,0xfa, 0x66,0xe9,0x40,0xb5,
540				0xd3,0x10,0xbb,0x42, 0xf9,0x68,0x64,0xd4,
541				0x2a,0xcd,0x43,0x75, 0xb0,0x9c,0x61,0x34,
542				0xc1,0xc4,0x42,0xf3, 0xf1,0xa7,0x65,0xf4,
543				0xcb,0x42,0xe9,0xc2, 0x5a,0x05,0xdf,0x98,
544				0xa3,0xba,0xf7,0xe0, 0x15,0xa1,0xdf,0xf7,
545				0xce,0xd5,0xf0,0x62, 0x89,0xe1,0x44,0x3a,
546				0x4f,0x6f,0x75,0x3e, 0xfc,0x19,0xe3,0x5f,
547				0x36,0x48,0xc1,0x95, 0x08,0x22,0x09,0xf9,
548				0x07,0x74,0x1c,0xa4, 0x1b,0x7e,0xa8,0x82,
549				0xca,0x0b,0xd9,0x1e, 0xe3,0x5b,0x1c,0xb5,
550				0x57,0x13,0x7d,0xbd, 0xbd,0x16,0x88,0xd4,
551				0xb1,0x8e,0xdb,0x6f, 0x2f,0x7b,0x55,0x72,
552				0x79,0xc9,0x49,0x7b, 0xf7,0x86,0xa9,0x3d,
553				0x2d,0x11,0x33,0x7d, 0x82,0x38,0xc7,0xb5,
554				0x7c,0x6b,0x0b,0x28, 0x42,0x50,0x47,0x69,
555				0xd8,0x48,0xc6,0x85, 0x0b,0x1b,0xca,0x08,
556				0x85,0x36,0x6d,0x97, 0xe9,0x3e,0xeb,0xe2,
557				0x28,0x6a,0x17,0x61, 0x7d,0xcb,0xb6,0xb3,
558				0x23,0x44,0x76,0xd3, 0x57,0x39,0x9b,0x1d,
559				0x69,0x30,0xd8,0x3f, 0x21,0xe8,0x68,0x94,
560				0x82,0x85,0x97,0xb1, 0x1f,0x0c,0x99,0x6e,
561				0x6e,0x44,0xa6,0x82, 0xd0,0xa2,0xe6,0xfe,
562				0xff,0x08,0x41,0x49, 0x54,0x18,0x51,0x88,
563				0x23,0xd5,0x14,0xbd, 0xfe,0xea,0x5d,0x15,
564				0xd4,0x0b,0x2d,0x92, 0x94,0x8d,0xd4,0xe5,
565				0xaf,0x60,0x88,0x2b, 0x67,0xae,0xbb,0xa8,
566				0xec,0xae,0x9b,0x35, 0xa2,0xd7,0xe8,0xb6,
567				0xe5,0xaa,0x12,0xd5, 0xef,0x05,0x5a,0x64,
568				0xe0,0xff,0x79,0x16, 0xb6,0xa3,0xdb,0x1e,
569				0xee,0xe8,0xb7,0xd6, 0x71,0xbd,0x76,0xbf,
570				0x66,0x2a,0x9c,0xec, 0xbe,0x8c,0xb5,0x8e,
571				0x8e,0xc0,0x89,0x07, 0x5d,0x22,0xd8,0xe0,
572				0x27,0xcf,0x58,0x8a, 0x8c,0x4d,0xc7,0xa4,
573				0x45,0xfc,0xe5,0xa4, 0x32,0x7c,0xbf,0x86,
574				0xf0,0x82,0x96,0x05, 0x1e,0x86,0x03,0x0f,
575				0x1f,0x0d,0xf2,0xfc, 0x28,0x62,0x90,0x53,
576				0xfe,0xd4,0x28,0x52, 0x4f,0xa6,0xbc,0x4d,
577				0xba,0x5d,0x04,0xc0, 0x83,0x61,0xf6,0x41,
578				0xc8,0x58,0x40,0x49, 0x1d,0x27,0xd5,0x9f,
579				0x93,0x4f,0xb5,0x7a, 0xea,0x7b,0x86,0x31,
580				0x2b,0xe5,0x92,0x51, 0x3e,0x7a,0xbe,0xdb,
581				0x04,0xae,0x21,0x71, 0x5a,0x70,0xf9,0x9b,
582				0xa8,0xb6,0xdb,0xcd, 0x21,0x56,0x75,0x2e,
583				0x98,0x38,0x78,0x4d, 0x51,0x4a,0xa6,0x03,
584				0x8a,0x84,0xb2,0xf9, 0x6b,0x98,0x6d,0xf3,
585				0x12,0xaa,0xd4,0xea, 0xb3,0x7c,0xb0,0xd9,
586				0x5e,0x1c,0xb0,0x69, 0x48,0x67,0x13,0x26,
587				0xf0,0x25,0x04,0x93, 0x6d,0xc6,0x6c,0xb2,
588				0xcd,0x7c,0x36,0x62, 0x6d,0x38,0x44,0xe9,
589				0x6b,0xe2,0x7f,0xc1, 0x40,0xdb,0x55,0xe1,
590				0xa6,0x71,0x94,0x0a, 0x13,0x5f,0x9e,0x66,
591				0x3b,0xb3,0x11,0x90, 0xbb,0x68,0xd4,0x11,
592				0xf2,0xb7,0x61,0xbd, 0xac,0x4a,0x56,0xf4,
593				0x9e,0xe2,0xd0,0x1e, 0xb4,0xa1,0xb8,0x4e,
594				0xbb,0xc2,0x73,0x63, 0x04,0x99,0x97,0x9f,
595				0x76,0x18,0x82,0x11, 0x7e,0xe1,0xcc,0x58,
596				0xb7,0xb5,0x37,0x78, 0x60,0x19,0x6c,0x2b,
597				0x6e,0x65,0x15,0x10, 0x3c,0x93,0xf0,0xc5,
598				0x3d,0x9e,0xeb,0x77, 0x72,0x25,0x95,0xf0,
599				0x27,0xe8,0xbd,0x81, 0x9c,0x22,0x38,0xa7,
600				0x8d,0xe9,0x94,0xf2, 0x27,0x8d,0x3a,0x34,
601				0x36,0xba,0x26,0xa0, 0xd7,0x3e,0xd8,0xbe,
602				0x60,0xd1,0x53,0x58, 0x56,0xe6,0xf3,0xa1,
603				0x0d,0x62,0x5e,0x44, 0xd3,0x7c,0xc9,0x25,
604				0x87,0xc8,0x1a,0x57, 0x7f,0xfa,0x79,0x4a,
605				0x15,0xf6,0x3e,0x2e, 0xd0,0x6b,0x83,0x9b,
606				0xe6,0xfe,0x6c,0xd3, 0x8e,0x40,0x4a,0x12,
607				0x57,0x41,0xc9,0x5a, 0x42,0x91,0x0b,0x28,
608				0x56,0x38,0xfc,0x45, 0x4b,0x26,0xbf,0x3a,
609				0xa3,0x46,0x75,0x73, 0xde,0x7e,0x18,0x7c,
610				0x82,0x92,0x73,0xe6, 0xb5,0xd2,0x1f,0x1c,
611				0xdd,0xb3,0xd5,0x71, 0x9f,0xd2,0xa5,0xf4,
612				0xf1,0xcb,0xfe,0xfb, 0xd3,0xb6,0x32,0xbd,
613				0x8e,0x0d,0x73,0x0a, 0xb6,0xb1,0xfd,0x31,
614				0xa5,0xa4,0x7a,0xb1, 0xa1,0xbb,0xf0,0x0b,
615				0x97,0x21,0x27,0xe1, 0xbb,0x6a,0x2a,0x5b,
616				0x95,0xda,0x01,0xd3, 0x06,0x8e,0x53,0xd8,
617				0x23,0xa3,0xa9,0x82, 0x8a,0xa2,0x8f,0xdb,
618				0x87,0x37,0x41,0x41, 0x2b,0x36,0xf3,0xb3,
619				0xa6,0x32,0x5f,0x3e, 0xbf,0x70,0x3a,0x13,
620				0xba,0x11,0xa1,0x4e, 0x11,0xa8,0xc0,0xb7,
621				0xb2,0x1b,0xab,0xc8, 0xcb,0x38,0x35,0x2e,
622				0x76,0xa7,0x0b,0x5a, 0x6c,0x53,0x83,0x60,
623				0x4f,0xee,0x91,0xe8, 0xca,0x1e,0x7f,0x76,
624				0x2b,0x4c,0xe7,0xd4, 0xcb,0xf8,0xeb,0x94,
625				0x76,0x17,0x68,0x23, 0x95,0x93,0x7f,0x60,
626				0x80,0x7a,0x85,0x70, 0x95,0x56,0xb9,0x76,
627				0x76,0xb6,0x8f,0xe2, 0x93,0x60,0xfc,0x70,
628				0x57,0x4a,0x27,0xc0, 0xfb,0x49,0x2f,0xac,
629				0xde,0x87,0x2f,0x1a, 0x80,0xca,0x68,0x5e,
630				0xc6,0x18,0x4e,0x3a, 0x4b,0x36,0xdc,0x24,
631				0x78,0x7e,0xb0,0x58, 0x85,0x4d,0xa9,0xbc,
632				0x0d,0x87,0xdd,0x02, 0xa6,0x0d,0x46,0xae,
633				0xf7,0x2f,0x8e,0xeb, 0xf4,0x29,0xe0,0xbc,
634				0x9a,0x34,0x30,0xc3, 0x29,0xea,0x2c,0xb3,
635				0xb4,0xa2,0x9c,0x45, 0x6e,0xcb,0xa4,0x9d,
636				0x22,0xe6,0x71,0xe0, 0xcb,0x9f,0x05,0xef,
637				0x2f,0xf7,0x12,0xfd, 0x5d,0x48,0x6c,0x9e,
638				0x8b,0xaa,0x90,0xb6, 0xa8,0x78,0xeb,0xde,
639				0xeb,0x4c,0xce,0x7b, 0x62,0x60,0x69,0xc0,
640				0x54,0xc3,0x13,0x76, 0xdc,0x7e,0xd1,0xc3,
641				0x8e,0x24,0x58,0x43, 0x3c,0xbc,0xa0,0x75,
642				0xf2,0x7c,0x2d,0x1e, 0x94,0xec,0x40,0x15,
643				0xe1,0x78,0xac,0x4a, 0x93,0xef,0x87,0xec,
644				0x99,0x94,0xcb,0x65, 0xde,0xcb,0x38,0xd7,
645				0x89,0x90,0xa2,0x68, 0xcf,0xfd,0x98,0xf8,
646				0x1f,0x06,0xd5,0x6c, 0x53,0x1d,0xd3,0xa7,
647				0x06,0x0b,0xa9,0x92, 0xbb,0x6e,0x6f,0xaa,
648				0x5a,0x54,0x71,0xb7, 0x90,0x00,0x06,0x6b,
649				0xf9,0x34,0xba,0x41, 0x73,0x58,0x98,0xfc,
650				0xca,0x98,0xbd,0xd3, 0x7d,0xa4,0x49,0xcc,
651				0xa8,0x19,0xc1,0x40, 0x75,0x81,0x02,0x33,
652				0xac,0x90,0xcd,0x58, 0xeb,0x1b,0xb4,0x4e,
653				0xe0,0x8a,0xa9,0x0f, 0x15,0x8e,0x51,0x85,
654				0x06,0x09,0x92,0x40, 0xe3,0x75,0x60,0x64,
655				0xcf,0x9b,0x88,0xc7, 0xb0,0xab,0x37,0x5d,
656				0x43,0x21,0x18,0x09, 0xff,0xec,0xa0,0xb3,
657				0x47,0x09,0x22,0x4c, 0x55,0xc2,0x2d,0x2b,
658				0xce,0xb9,0x3a,0xcc, 0xd7,0x0c,0xb2,0x9a,
659				0xff,0x2a,0x73,0xac, 0x7a,0xf2,0x11,0x73,
660				0x94,0xd9,0xbe,0x31, 0x9f,0xae,0x62,0xab,
661				0x03,0xac,0x5f,0xe2, 0x99,0x90,0xfb,0xa5,
662				0x74,0xc0,0xfa,0xb9, 0x3c,0x96,0x7c,0x36,
663				0x25,0xab,0xff,0x2f, 0x24,0x65,0x73,0x21,
664				0xc3,0x21,0x73,0xc9, 0x23,0x06,0x22,0x6c,
665				0xb2,0x22,0x26,0x1d, 0x88,0x6f,0xd3,0x5f,
666				0x6f,0x4d,0xf0,0x6d, 0x13,0x70,0x7d,0x67,
667				0xe8,0x5c,0x3b,0x35, 0x27,0x8a,0x8c,0x65,
668				0xae,0x50,0x78,0xe1, 0x26,0x07,0xf8,0x18,
669				0xfc,0xea,0xa3,0x58, 0x73,0x2b,0xca,0x92,
670				0x10,0xdc,0xb5,0x39, 0xd5,0x2d,0x21,0xfe,
671				0x79,0xac,0x7d,0xe8, 0x0c,0xe9,0x6d,0x3e,
672				0xb4,0x8a,0x23,0x65, 0x08,0xbc,0x57,0x51,
673				0xe1,0xf8,0x8d,0x5b, 0xe4,0xfe,0x14,0x60,
674				0x02,0xe7,0xd1,0xc2, 0xd2,0x2c,0x3f,0x4d,
675				0x08,0xd1,0xd0,0xe7, 0x3b,0xcb,0x85,0x84,
676				0x32,0xd6,0xb9,0xfb, 0xf7,0x45,0xa1,0xaf,
677				0x9c,0xa3,0x8d,0x37, 0xde,0x03,0x6b,0xf4,
678				0xae,0x58,0x03,0x26, 0x58,0x4f,0x73,0x49,
679				0xc8,0x7f,0xa3,0xdd, 0x51,0xf2,0xec,0x34,
680				0x8f,0xd5,0xe0,0xc2, 0xe5,0x33,0xf7,0x31,
681				0x33,0xe7,0x98,0x5f, 0x26,0x14,0x4f,0xbb,
682				0x88,0x1f,0xb3,0x92, 0x4e,0x97,0x2d,0xee,
683				0x08,0x5f,0x9c,0x14, 0x5f,0xaf,0x6c,0x10,
684				0xf9,0x47,0x41,0x81, 0xe9,0x99,0x49,0x52,
685				0x86,0x29,0x55,0xba, 0x2e,0xb6,0x62,0x24,
686				0x58,0xf7,0x4d,0x99, 0xce,0x75,0xa8,0x45,
687				0x66,0x27,0x48,0x3f, 0x78,0xe3,0x48,0x7c,
688				0xd7,0x1a,0x6c,0x89, 0x9d,0xb2,0x6a,0x23,
689				0x9d,0xd7,0xed,0x82, 0x31,0x94,0x40,0x66,
690				0xc8,0x28,0x52,0x23, 0xe7,0x61,0xde,0x71,
691				0x69,0xf2,0x53,0x43, 0x30,0xce,0x6a,0x1a,
692				0xfe,0x1e,0xeb,0xc2, 0x9f,0x61,0x81,0x94,
693				0x18,0xed,0x58,0xbb, 0x01,0x13,0x92,0xb3,
694				0xa6,0x90,0x7f,0xb5, 0xf4,0xbd,0xff,0xae,
695			},
696		},
697		[4] = {
698			.k = {
699				0x7f,0x56,0x7d,0x15, 0x77,0xe6,0x83,0xac,
700				0xd3,0xc5,0xb7,0x39, 0x9e,0x9f,0xf9,0x17,
701				0xc7,0xff,0x50,0xb0, 0x33,0xee,0x8f,0xd7,
702				0x3a,0xab,0x0b,0xfe, 0x6d,0xd1,0x41,0x8a,
703			},
704			.tlen = 0,
705			.len = 4096,
706			.p = {
707				0x95,0x96,0x98,0xef, 0x73,0x92,0xb5,0x20,
708				0xec,0xfc,0x4d,0x91, 0x54,0xbf,0x8d,0x9d,
709				0x54,0xbc,0x4f,0x0f, 0x94,0xfc,0x94,0xcf,
710				0x07,0xf6,0xef,0xbb, 0xed,0x3f,0xd3,0x60,
711				0xba,0x85,0x1d,0x04, 0x08,0x54,0x92,0x08,
712				0x06,0x52,0x7f,0x33, 0xfd,0xf3,0xdf,0x2a,
713				0x17,0x2d,0xda,0x73, 0x03,0x56,0x21,0xa9,
714				0xa3,0xab,0xf7,0x24, 0x17,0x39,0x7e,0x0f,
715				0x00,0xdd,0xac,0x55, 0xb0,0x8b,0x2d,0x72,
716				0x3b,0x9a,0x36,0x5a, 0xd9,0x0a,0x8e,0x0f,
717				0xe2,0x1d,0xe8,0x85, 0xc3,0xc1,0x17,0x11,
718				0xa7,0x2c,0x87,0x77, 0x9d,0x6c,0x3a,0xa6,
719				0x90,0x59,0x10,0x24, 0xb0,0x92,0xe1,0xb6,
720				0xa9,0x89,0x7c,0x95, 0x0a,0xf2,0xb2,0xa3,
721				0x4a,0x40,0x88,0x35, 0x71,0x4e,0xa5,0xc9,
722				0xde,0xba,0xd7,0x62, 0x56,0x46,0x40,0x1e,
723				0xda,0x80,0xaf,0x28, 0x5d,0x40,0x36,0xf6,
724				0x09,0x06,0x29,0x6e, 0xaa,0xca,0xe3,0x9e,
725				0x9a,0x4f,0x4c,0x7e, 0x71,0x81,0x6f,0x9e,
726				0x50,0x05,0x91,0x58, 0x13,0x6c,0x75,0x6a,
727				0xd3,0x0e,0x7e,0xaf, 0xe1,0xbc,0xd9,0x38,
728				0x18,0x47,0x73,0x3a, 0xf3,0x78,0x6f,0xcc,
729				0x3e,0xea,0x52,0x82, 0xb9,0x0a,0xc5,0xfe,
730				0x77,0xd6,0x25,0x56, 0x2f,0xec,0x04,0x59,
731				0xda,0xd0,0xc9,0x22, 0xb1,0x01,0x60,0x7c,
732				0x48,0x1a,0x31,0x3e, 0xcd,0x3d,0xc4,0x87,
733				0xe4,0x83,0xc2,0x06, 0x91,0xf7,0x02,0x86,
734				0xd2,0x9b,0xfd,0x26, 0x5b,0x9b,0x32,0xd1,
735				0x5c,0xfd,0xb4,0xa8, 0x58,0x3f,0xd8,0x10,
736				0x8a,0x56,0xee,0x04, 0xd0,0xbc,0xaa,0xa7,
737				0x62,0xfd,0x9a,0x52, 0xec,0xb6,0x80,0x52,
738				0x39,0x9e,0x07,0xc8, 0xb4,0x50,0xba,0x5a,
739				0xb4,0x9a,0x27,0xdb, 0x93,0xb6,0x98,0xfe,
740				0x52,0x08,0xa9,0x45, 0xeb,0x03,0x28,0x89,
741				0x26,0x3c,0x9e,0x97, 0x0f,0x0d,0x0b,0x67,
742				0xb0,0x00,0x01,0x71, 0x4b,0xa0,0x57,0x62,
743				0xfe,0xb2,0x6d,0xbb, 0xe6,0xe4,0xdf,0xe9,
744				0xbf,0xe6,0x21,0x58, 0xd7,0xf6,0x97,0x69,
745				0xce,0xad,0xd8,0xfa, 0xce,0xe6,0x80,0xa5,
746				0x60,0x10,0x2a,0x13, 0xb2,0x0b,0xbb,0x88,
747				0xfb,0x64,0x66,0x00, 0x72,0x8c,0x4e,0x21,
748				0x47,0x33,0x00,0x1f, 0x85,0xa6,0x3a,0xd3,
749				0xe2,0x6c,0xc7,0x42, 0xb6,0x7b,0xc0,0x56,
750				0x75,0xe2,0x61,0x72, 0x15,0xd1,0x88,0x08,
751				0x3f,0x4d,0xfd,0xe2, 0x68,0x64,0xe5,0x7a,
752				0x23,0x9b,0x3f,0x6c, 0xc3,0xd6,0x51,0x08,
753				0x24,0x33,0x24,0x47, 0x7e,0xea,0x23,0xdc,
754				0x07,0x41,0x66,0xa2, 0xa4,0xeb,0x23,0xa1,
755				0x37,0x31,0xc0,0x7a, 0xe6,0xa4,0x63,0x05,
756				0x20,0x44,0xe2,0x70, 0xd3,0x3e,0xee,0xd8,
757				0x24,0x34,0x5d,0x80, 0xde,0xc2,0x34,0x66,
758				0x5a,0x2b,0x6a,0x20, 0x4c,0x99,0x0d,0xbc,
759				0x37,0x59,0xc5,0x8b, 0x70,0x4d,0xb4,0x0e,
760				0x51,0xec,0x59,0xf6, 0x4f,0x08,0x1e,0x54,
761				0x3d,0x45,0x31,0x99, 0x4d,0x5e,0x29,0x5f,
762				0x12,0x57,0x46,0x09, 0x33,0xb9,0xf2,0x66,
763				0xb4,0xc2,0xfa,0x63, 0xbe,0x42,0x6c,0x21,
764				0x68,0x33,0x40,0xc6, 0xbd,0xd8,0x8a,0x55,
765				0xd7,0x90,0x27,0x25, 0x7d,0x1e,0xed,0x02,
766				0x50,0xd8,0xb1,0xac, 0xfa,0xd9,0xd4,0xcb,
767				0x1c,0xc9,0x43,0x60, 0x44,0xab,0xd8,0x97,
768				0x04,0xac,0xef,0x72, 0xa3,0x88,0xdc,0xb0,
769				0xb0,0xb6,0xc6,0xd4, 0xd0,0x38,0xaf,0xc7,
770				0xcd,0x8d,0x2a,0xa4, 0x13,0x53,0xd9,0xfd,
771				0x2d,0x0b,0x91,0xb4, 0x3c,0x3a,0x72,0x11,
772				0x6c,0x8b,0x96,0xa3, 0xc6,0x0b,0xd6,0x9a,
773				0xa2,0xb9,0xae,0x76, 0xad,0xfd,0x01,0x90,
774				0xab,0x93,0x9c,0x4b, 0xde,0x7e,0xf2,0x82,
775				0x96,0xb9,0x98,0x55, 0xe2,0x68,0xe0,0xd8,
776				0x61,0xb8,0x91,0x9a, 0xaf,0x92,0xd7,0xe5,
777				0xeb,0x88,0xc5,0xb0, 0xcb,0x75,0x55,0xa9,
778				0x94,0x7c,0x9c,0x11, 0x14,0x81,0x1a,0x09,
779				0x61,0xd8,0x22,0x44, 0x13,0xba,0xe8,0x06,
780				0x78,0xfd,0xd5,0x82, 0x73,0x19,0x9a,0xd1,
781				0x5d,0x16,0xf5,0xd8, 0x86,0x7e,0xe3,0xcd,
782				0xdc,0xe8,0x6a,0x18, 0x05,0xba,0x10,0xe4,
783				0x06,0xc7,0xb2,0xf3, 0xb2,0x3e,0x1c,0x74,
784				0x86,0xdd,0xad,0x8c, 0x82,0xf0,0x73,0x15,
785				0x34,0xac,0x1d,0x95, 0x5e,0xba,0x2a,0xba,
786				0xf8,0xac,0xbd,0xd7, 0x28,0x74,0x28,0xc7,
787				0x29,0xa0,0x00,0x11, 0xda,0x31,0x7c,0xab,
788				0x66,0x4d,0xb2,0x5e, 0xae,0x71,0xc5,0x31,
789				0xcc,0x2b,0x9f,0x36, 0x2e,0xe6,0x97,0xa4,
790				0xe1,0xb8,0x4b,0xc9, 0x00,0x87,0x7b,0x54,
791				0xaa,0xeb,0xff,0x1a, 0x15,0xe8,0x3e,0x11,
792				0xf7,0x25,0x3a,0xce, 0x94,0x23,0x27,0x44,
793				0x77,0x80,0x6e,0xdd, 0x3f,0x8e,0x5a,0x92,
794				0xae,0xee,0xb9,0x00, 0x79,0xc3,0x1d,0xab,
795				0x17,0xb8,0x2b,0xff, 0x0d,0x64,0x29,0xb7,
796				0x61,0x4d,0xd0,0x8d, 0x3d,0x36,0x3d,0x13,
797				0xed,0x12,0xe8,0x08, 0xdd,0x4b,0x37,0xf7,
798				0x2b,0xe7,0xeb,0x92, 0x78,0x98,0xc2,0xd6,
799				0x13,0x15,0x94,0xff, 0xef,0xdc,0xda,0x27,
800				0x7b,0xf9,0x58,0x5b, 0x90,0xf3,0xcd,0x1b,
801				0x38,0x8a,0x00,0x38, 0x9b,0x95,0xcb,0x18,
802				0x1f,0x97,0xd2,0x1f, 0x60,0x9d,0x6c,0xac,
803				0xb8,0x72,0x08,0xd9, 0xc1,0xf4,0x98,0x72,
804				0xf9,0x44,0xf2,0x2b, 0xe1,0x6e,0x76,0x15,
805				0x63,0xfc,0x57,0x12, 0x23,0x4a,0xff,0xd3,
806				0x1f,0x0d,0x0c,0xb9, 0x14,0xf9,0x98,0x52,
807				0xce,0x90,0x34,0x8c, 0xd4,0x54,0x14,0x9e,
808				0xf7,0x2c,0xba,0x5f, 0x80,0xb0,0x02,0x68,
809				0x4f,0xca,0xb0,0xda, 0x44,0x11,0xb4,0xbd,
810				0x12,0x14,0x80,0x6b, 0xc1,0xce,0xa7,0xfe,
811				0x0e,0x16,0x69,0x19, 0x3c,0xe7,0xb6,0xfe,
812				0x5a,0x59,0x02,0xf6, 0x78,0x3e,0xa4,0x65,
813				0x57,0xa1,0xf2,0x65, 0xad,0x64,0xfc,0xba,
814				0xd8,0x47,0xc8,0x8d, 0x11,0xf9,0x6a,0x25,
815				0x22,0xa7,0x7f,0xa9, 0x43,0xe4,0x07,0x6b,
816				0x49,0x26,0x42,0xe4, 0x03,0x1f,0x56,0xcd,
817				0xf1,0x49,0xf8,0x0d, 0xea,0x1d,0x4f,0x77,
818				0x5c,0x3c,0xcd,0x6d, 0x58,0xa8,0x92,0x6d,
819				0x50,0x4a,0x81,0x6e, 0x09,0x2a,0x15,0x9e,
820				0x3b,0x56,0xd3,0xb4, 0xef,0xe6,0x12,0xaf,
821				0x60,0x3b,0x73,0xe7, 0xd8,0x2e,0xab,0x13,
822				0xfb,0x7e,0xea,0xb1, 0x7b,0x54,0xc5,0x26,
823				0x41,0x93,0x31,0xda, 0xb5,0x7a,0xe3,0x46,
824				0x7a,0x8a,0xb0,0x81, 0xab,0xd5,0x90,0x85,
825				0x4b,0xef,0x30,0x11, 0xb8,0x00,0x19,0x39,
826				0xd3,0x11,0x54,0x53, 0x48,0x7a,0x7e,0xc5,
827				0x4e,0x52,0xe5,0x4c, 0xeb,0xa2,0x9f,0x7a,
828				0xdc,0xb5,0xc8,0x4e, 0x3b,0x5c,0x92,0x0f,
829				0x19,0xcb,0x0a,0x9d, 0xda,0x01,0xfc,0x17,
830				0x62,0xc3,0x46,0x63, 0x8b,0x4e,0x85,0x92,
831				0x75,0x01,0x00,0xb3, 0x74,0xa8,0x23,0xd1,
832				0xd2,0x91,0x53,0x0f, 0xd0,0xe9,0xed,0x90,
833				0xde,0x9c,0x8c,0xb7, 0xf1,0x6a,0xd6,0x49,
834				0x3c,0x22,0x2b,0xd7, 0x73,0x76,0x38,0x79,
835				0xb5,0x88,0x1e,0xee, 0xdf,0xed,0x9f,0xfd,
836				0x1a,0x0e,0xe7,0xd5, 0xc6,0xc9,0xfb,0x03,
837				0xcc,0x84,0xb5,0xd2, 0x49,0xca,0x49,0x0a,
838				0x1b,0x7c,0x78,0xe4, 0xd1,0x2e,0x7c,0x14,
839				0x80,0x38,0x9d,0xba, 0x64,0x13,0xd3,0xf8,
840				0x8e,0x05,0x4a,0xd6, 0x0d,0x73,0x09,0x1e,
841				0xf1,0x75,0x63,0x59, 0xed,0xfc,0xbe,0x83,
842				0x56,0x91,0x22,0x84, 0xd2,0x1e,0xf2,0x61,
843				0x12,0x3d,0x50,0x6c, 0x9f,0xea,0x6b,0xcd,
844				0x8c,0xac,0x28,0x0d, 0xad,0xf4,0xfd,0x77,
845				0x45,0x68,0x17,0xb6, 0x03,0x13,0x54,0x7a,
846				0xc0,0x8e,0x6b,0x56, 0x8a,0xd2,0xc6,0x1b,
847				0xb3,0x3e,0x4f,0x68, 0x91,0x2e,0x2d,0x35,
848				0x2a,0x32,0x27,0x86, 0x67,0x36,0x73,0xb8,
849				0xfc,0x08,0xb8,0xf8, 0x1f,0x67,0x0b,0x32,
850				0x89,0x00,0xfb,0x2d, 0xbe,0x74,0xae,0x41,
851				0x3a,0xd3,0xed,0xf1, 0x67,0xee,0xe5,0x26,
852				0xd4,0x59,0xdc,0x3b, 0x6b,0xf7,0x33,0x67,
853				0xed,0xef,0xb0,0x5d, 0x5e,0x43,0x34,0xa2,
854				0x3d,0x55,0x16,0x99, 0x4b,0x90,0x49,0x40,
855				0x82,0x35,0x0d,0x82, 0xa6,0x16,0xd2,0x41,
856				0xc8,0x65,0xd4,0xe7, 0x1a,0xdb,0xad,0xe6,
857				0x48,0x5e,0xeb,0x94, 0xa6,0x9f,0x97,0x1e,
858				0xd4,0x38,0x5d,0xff, 0x6e,0x17,0x0c,0xd0,
859				0xb3,0xd5,0xb4,0x06, 0xd7,0xcb,0x8e,0xa3,
860				0x27,0x75,0x24,0xb5, 0x14,0xe9,0x55,0x94,
861				0x51,0x14,0xaf,0x15, 0x02,0xd3,0x9c,0x5f,
862				0x43,0xfe,0x97,0xf4, 0x0b,0x4e,0x4d,0x89,
863				0x15,0x33,0x4a,0x04, 0x10,0xf3,0xeb,0x13,
864				0x71,0x86,0xb4,0x8a, 0x2c,0x75,0x04,0x47,
865				0xb9,0x60,0xe9,0x2a, 0x5a,0xe8,0x7e,0x8b,
866				0x91,0xa7,0x01,0x49, 0xcf,0xfc,0x48,0x83,
867				0xa7,0x42,0xc8,0x2f, 0x80,0x92,0x04,0x64,
868				0x03,0xf7,0x9f,0x1d, 0xc2,0x82,0x0b,0x14,
869				0x65,0x4d,0x04,0x09, 0x13,0x5f,0xb8,0x66,
870				0x19,0x14,0x7a,0x09, 0xa7,0xf8,0x73,0x2d,
871				0x4d,0x90,0x86,0x14, 0x25,0xd6,0xd6,0xf5,
872				0x82,0x9c,0x32,0xab, 0x5c,0x37,0x12,0x28,
873				0xd1,0xfe,0xfa,0x0d, 0x90,0x8d,0x28,0x20,
874				0xb1,0x1e,0xbe,0x30, 0x80,0xd7,0xb1,0x63,
875				0xd9,0x23,0x83,0x0b, 0x9d,0xf5,0x0e,0x9c,
876				0xa2,0x88,0x5f,0x2c, 0xf2,0xa6,0x9d,0x23,
877				0x45,0x1c,0x9b,0x7a, 0xd2,0x60,0xa6,0x0f,
878				0x44,0xba,0x91,0x3d, 0xc6,0xf7,0xef,0x2f,
879				0x5c,0xa8,0x5e,0x2b, 0x50,0xd3,0xd1,0x85,
880				0xfd,0xed,0x52,0x48, 0xe2,0xd9,0xd2,0x12,
881				0x4e,0x03,0xc9,0x3d, 0x8f,0x8d,0x1f,0x8e,
882				0x6b,0xd8,0xe3,0x32, 0xa7,0x5b,0x39,0x57,
883				0x91,0x08,0x52,0x09, 0xa4,0x7a,0x40,0xc6,
884				0xcf,0xcf,0x68,0xba, 0xb1,0x97,0xf8,0x38,
885				0x94,0x1d,0x18,0x69, 0x80,0x6a,0x11,0x15,
886				0xc2,0xfb,0x2d,0x6c, 0xd1,0xd4,0x88,0x50,
887				0xbb,0xca,0x8c,0x56, 0x36,0xb6,0xc4,0x41,
888				0x97,0xe6,0xb0,0x5c, 0x7f,0x51,0x00,0x6f,
889				0x17,0xe5,0xde,0x27, 0xf7,0xb4,0x85,0x3b,
890				0xc5,0xa1,0x60,0x1c, 0xba,0x21,0xd6,0xed,
891				0xd5,0x08,0x62,0x80, 0xb4,0x85,0x52,0x15,
892				0x5c,0x94,0x19,0x3a, 0x10,0x92,0xa4,0x06,
893				0xf1,0x86,0x02,0xce, 0x94,0xd3,0xd5,0x33,
894				0xe7,0x59,0x47,0x72, 0x12,0xf4,0x8b,0x06,
895				0x29,0xa3,0xb0,0x39, 0x78,0x8f,0x46,0x56,
896				0x4a,0x42,0x4f,0x89, 0x1b,0x3f,0x09,0x12,
897				0xc4,0x24,0x0b,0x22, 0xf0,0x27,0x04,0x4d,
898				0x39,0xd8,0x59,0xc8, 0x7c,0x59,0x18,0x0a,
899				0x36,0xa8,0x3c,0xba, 0x42,0xe2,0xf7,0x7a,
900				0x23,0x90,0x73,0xff, 0xd6,0xa3,0xb2,0xcf,
901				0x60,0xc6,0x62,0x76, 0x61,0xa3,0xcd,0x53,
902				0x94,0x37,0x3c,0x24, 0x4b,0xc1,0xc5,0x3b,
903				0x26,0xf8,0x67,0x1d, 0xca,0xdd,0x08,0xcb,
904				0xdb,0x00,0x96,0x34, 0xd0,0x5d,0xef,0x4e,
905				0x64,0x18,0xb1,0xdc, 0x46,0x13,0xc1,0x8c,
906				0x87,0xbf,0xa3,0xfe, 0xd7,0x49,0x7e,0xb3,
907				0x94,0xe4,0x38,0x70, 0x2a,0xde,0xaf,0x73,
908				0x46,0xda,0xff,0xec, 0xfc,0x18,0xe2,0x02,
909				0x64,0x5f,0x9b,0xd2, 0xdf,0x8b,0xa8,0xd0,
910				0x4c,0xd7,0x5c,0xc7, 0x80,0x59,0x4d,0x66,
911				0x68,0xd3,0x4a,0x51, 0xc3,0x68,0xe2,0x0a,
912				0x17,0x31,0x4b,0xd7, 0x23,0x28,0x25,0x26,
913				0x4a,0xef,0x02,0xd7, 0x3a,0x53,0xdb,0x09,
914				0x19,0x85,0x68,0xab, 0xa9,0x8c,0xff,0x7e,
915				0x30,0xfb,0x42,0x08, 0xa1,0x5a,0xd1,0xc9,
916				0x3f,0xc9,0x00,0xfb, 0xd4,0x3e,0xb0,0x1c,
917				0x99,0xba,0xdc,0xb4, 0x69,0xe7,0xe1,0xb0,
918				0x67,0x53,0x46,0xa6, 0xc6,0x34,0x5c,0x94,
919				0xfa,0xd3,0x9b,0x48, 0x92,0xa1,0xd3,0xe5,
920				0xa7,0xea,0xe1,0x86, 0x5e,0x90,0x26,0x2d,
921				0x4b,0x85,0xe1,0x68, 0xee,0xc2,0xf1,0x25,
922				0xb7,0xff,0x01,0x96, 0x61,0x54,0xba,0xf3,
923				0x09,0x62,0x7f,0xa3, 0x92,0x6b,0xe7,0x00,
924				0xfc,0xd4,0x04,0xfd, 0x2d,0x42,0x7e,0x56,
925				0x91,0x33,0x6e,0xf8, 0x08,0x94,0xff,0xce,
926				0x03,0x7e,0x4d,0x0a, 0x91,0x41,0x4f,0xaa,
927				0xdd,0xd1,0x8c,0x34, 0x99,0x46,0xb5,0xfb,
928				0x0e,0x09,0x26,0xcc, 0x6d,0x35,0x58,0x0a,
929				0xc6,0xc0,0x89,0xa0, 0xbd,0xb6,0x89,0xd1,
930				0x51,0x64,0x85,0x96, 0x4d,0x6a,0x16,0x26,
931				0x30,0xb7,0xb3,0xe4, 0x80,0x46,0xaa,0x37,
932				0x4c,0x9b,0x2b,0xa3, 0x76,0x5e,0x8b,0x52,
933				0x13,0x42,0xe5,0xe3, 0xa8,0xe9,0xaf,0x83,
934				0x60,0xc0,0xb0,0xf8, 0x3d,0x82,0x0a,0x21,
935				0x60,0xd2,0x3f,0x1c, 0xb4,0xb5,0x53,0x31,
936				0x2e,0x16,0xfd,0xf3, 0xc3,0x46,0xfa,0xcc,
937				0x45,0x1f,0xd1,0xac, 0x22,0xe2,0x41,0xb5,
938				0x21,0xf3,0xdd,0x1f, 0x81,0xbf,0x03,0xaf,
939				0xd6,0x31,0xc1,0x6a, 0x2e,0xff,0xc1,0x2d,
940				0x44,0x53,0xd0,0xb5, 0xa2,0x7c,0x5f,0xf4,
941				0x47,0xf7,0x4d,0x1e, 0x77,0xe2,0x29,0xcc,
942				0xd2,0x46,0x85,0xfa, 0xdb,0x7f,0x46,0xf5,
943				0xc9,0x60,0x4a,0x2c, 0xb7,0xf2,0xa2,0x2c,
944				0x9d,0x76,0xcd,0x82, 0x67,0xae,0xbb,0xe0,
945				0x92,0x56,0x48,0xcb, 0xe5,0xf5,0x3c,0x2c,
946				0xe0,0xe8,0x6a,0x6a, 0x5a,0x0a,0x20,0x7c,
947				0xa6,0x9d,0x8e,0x84, 0xfa,0xfe,0x61,0x13,
948				0x54,0x79,0xe0,0x83, 0xd2,0x15,0xe0,0x33,
949				0xe4,0xf9,0xad,0xb8, 0x1e,0x75,0x35,0xd3,
950				0xee,0x7e,0x4a,0x63, 0x2f,0xeb,0xf1,0xe6,
951				0x22,0xac,0x77,0x74, 0xa1,0xc0,0xa0,0x21,
952				0x66,0x59,0x7c,0x48, 0x7f,0xaa,0x05,0xe8,
953				0x51,0xd9,0xc7,0xed, 0xb9,0xea,0x7a,0xdd,
954				0x23,0x53,0xea,0x8f, 0xef,0xaa,0xe6,0x9e,
955				0x19,0x21,0x84,0x27, 0xc5,0x78,0x2e,0x8c,
956				0x52,0x40,0x15,0x1c, 0x2b,0x91,0xb3,0x4c,
957				0xe8,0xfa,0xd3,0x64, 0x0f,0xf9,0xf4,0xb8,
958				0x59,0x4d,0x6b,0x2d, 0x44,0x6c,0x8d,0xb2,
959				0xdb,0x73,0x29,0x66, 0xb1,0xc2,0x28,0xfc,
960				0x85,0xba,0x60,0x5e, 0x27,0x8f,0xfb,0xb3,
961				0xc9,0x20,0x43,0xb1, 0x3e,0x18,0x97,0x42,
962				0x63,0x2d,0x0c,0x97, 0xf2,0xcc,0xcd,0x90,
963				0x46,0x5f,0x1a,0x85, 0xca,0x44,0x2a,0x1a,
964				0x52,0xf7,0xbb,0x4e, 0xd1,0xab,0xd5,0xa3,
965				0x58,0x6b,0xb6,0x5a, 0x88,0x1c,0x9d,0x3b,
966				0xe2,0x46,0xe4,0x3b, 0x33,0x64,0x6c,0xfd,
967				0xeb,0x36,0x8e,0x32, 0x1f,0x71,0xbd,0x95,
968				0xb6,0xfd,0x1a,0xcb, 0xfb,0x4a,0x88,0x27,
969				0xd6,0x28,0x7b,0x5e, 0xa3,0x8a,0x0c,0x36,
970				0xa8,0x5d,0x2f,0x28, 0xa9,0xad,0xb2,0x88,
971				0x9e,0x62,0x9d,0x4a, 0x07,0x74,0x00,0x04,
972				0x0c,0xc1,0x6a,0x09, 0xe1,0x0b,0xfa,0xf3,
973				0xd1,0x41,0xdd,0x94, 0x52,0x06,0xb8,0x9e,
974				0xba,0x81,0xe0,0x52, 0xdf,0x52,0x5d,0x74,
975				0x40,0x59,0x36,0x05, 0xf2,0x30,0xc4,0x84,
976				0x85,0xdc,0xb8,0xba, 0xd9,0xf4,0x5f,0x11,
977				0x83,0xce,0x25,0x57, 0x97,0xf5,0x0f,0xb5,
978				0x0b,0xd6,0x6d,0x1c, 0xfb,0xf2,0x30,0xda,
979				0xc2,0x05,0xa8,0xe1, 0xc2,0x57,0x0a,0x05,
980				0x2d,0x4c,0x8b,0xb7, 0x5a,0xc0,0x8a,0xba,
981				0xa9,0x85,0x7c,0xf0, 0xb8,0xce,0x72,0x79,
982				0xf5,0x27,0x99,0xd7, 0xed,0xcf,0x85,0xfa,
983				0x92,0x15,0xf1,0x47, 0x02,0x24,0x39,0x07,
984				0x89,0xb6,0xdd,0x4a, 0xb8,0xbc,0xd5,0x9d,
985				0x4c,0x03,0x8b,0x1d, 0x45,0x58,0x1c,0x86,
986				0x46,0x71,0x0a,0x0d, 0x7c,0x5b,0xf9,0xdc,
987				0x60,0xb5,0xb0,0x00, 0x70,0x47,0x83,0xa6,
988				0x8e,0x79,0xba,0x1d, 0x21,0x20,0xc0,0x24,
989				0x56,0x35,0x6a,0x49, 0xb6,0xa3,0x58,0x87,
990				0x16,0xae,0xd9,0x77, 0x62,0xa0,0x61,0xce,
991				0x3d,0xe6,0x77,0x9e, 0x83,0xec,0xc2,0x04,
992				0x8c,0xba,0x62,0xac, 0x32,0xda,0xf0,0x89,
993				0x7b,0x2b,0xb0,0xa3, 0x3a,0x5f,0x8b,0x0d,
994				0xbd,0xe9,0x14,0xcd, 0x5b,0x7a,0xde,0xd5,
995				0x0d,0xc3,0x4b,0x38, 0x92,0x31,0x97,0xd8,
996				0xae,0x89,0x17,0x2c, 0xc9,0x54,0x96,0x66,
997				0xd0,0x9f,0x60,0x7a, 0x7d,0x63,0x67,0xfc,
998				0xb6,0x02,0xce,0xcc, 0x97,0x36,0x9c,0x3c,
999				0x1e,0x69,0x3e,0xdb, 0x54,0x84,0x0a,0x77,
1000				0x6d,0x0b,0x6e,0x10, 0x9f,0xfb,0x2a,0xb1,
1001				0x49,0x31,0x71,0xf2, 0xd1,0x1e,0xea,0x87,
1002				0xb9,0xd6,0x4a,0x4c, 0x57,0x17,0xbc,0x8b,
1003				0x38,0x66,0x2d,0x5f, 0x25,0xca,0x6d,0x10,
1004				0xc6,0x2e,0xd7,0x2c, 0x89,0xf1,0x4c,0x1d,
1005				0xc9,0x9c,0x02,0x23, 0xc6,0x1f,0xd6,0xc3,
1006				0xb8,0xc7,0x85,0x29, 0x75,0x40,0x1e,0x04,
1007				0x6e,0xc7,0xb4,0x60, 0xfc,0xea,0x30,0x8b,
1008				0x4d,0x9d,0xb7,0x5d, 0x91,0xfb,0x8e,0xb8,
1009				0xc2,0x54,0xdf,0xdb, 0x79,0x58,0x32,0xda,
1010				0xd0,0xa1,0xd6,0xd6, 0xc4,0xc8,0xa4,0x16,
1011				0x95,0xbb,0xe5,0x58, 0xd2,0xb6,0x83,0x76,
1012				0x1d,0xd7,0x45,0xbc, 0xb8,0x14,0x79,0x3b,
1013				0x4e,0x1a,0x0b,0x5c, 0xfc,0xa5,0xa0,0xc3,
1014				0xf1,0x64,0x74,0xb0, 0x0d,0x82,0x90,0x62,
1015				0x87,0x02,0x0f,0x71, 0xc7,0xab,0x7d,0x2b,
1016				0x70,0xf1,0x9b,0x9e, 0xe7,0x6b,0x99,0x18,
1017				0x6c,0x54,0x17,0x0b, 0xf5,0x44,0x58,0x54,
1018				0x44,0x9b,0x54,0x30, 0x5e,0xaf,0xa6,0xfa,
1019				0x42,0x37,0xe8,0x67, 0xbf,0xf7,0x6c,0x1e,
1020				0x73,0xd8,0xc7,0x5c, 0xfa,0x51,0xd5,0x1f,
1021				0xab,0xfc,0x91,0x03, 0xc1,0xc1,0x22,0x58,
1022				0xc7,0xe8,0x60,0xae, 0xb6,0x58,0x44,0xad,
1023				0x1e,0x07,0x5d,0x3c, 0x90,0x33,0x43,0xe0,
1024				0x67,0x44,0x9f,0x8c, 0xf3,0xef,0xce,0x3a,
1025				0x22,0x2b,0x1b,0x97, 0x83,0x6f,0x9f,0xd3,
1026				0x46,0xc3,0xa1,0xdf, 0xde,0x60,0xf0,0x32,
1027				0x2e,0xcf,0xed,0x72, 0x27,0x0d,0xa7,0xd0,
1028				0x91,0x6a,0xf0,0x6d, 0x41,0xfa,0x77,0x2e,
1029				0xd8,0x43,0xce,0xe2, 0xf5,0x7a,0x9e,0x04,
1030				0x30,0x4c,0xe7,0x08, 0xf3,0x2e,0x13,0x05,
1031				0x5e,0xfa,0x16,0x2c, 0x6c,0x53,0x02,0xb5,
1032				0x2f,0x2c,0x7d,0x86, 0x61,0x0e,0x5f,0x96,
1033				0xe1,0x1c,0x37,0x87, 0xf0,0x84,0xe4,0x1d,
1034				0x53,0x4d,0xb1,0x13, 0xe2,0xcb,0x71,0x6e,
1035				0x86,0x7b,0xad,0x97, 0x3e,0x16,0xb3,0xb4,
1036				0x0f,0x32,0x01,0x69, 0x31,0x1f,0x49,0x99,
1037				0x7a,0x46,0xd9,0x9b, 0x5f,0x17,0x3d,0xcb,
1038				0xe4,0xfd,0xbc,0xbb, 0xe3,0xec,0x8c,0x54,
1039				0xc4,0x14,0x44,0x89, 0xa3,0x65,0x25,0xc0,
1040				0x06,0x9b,0x7d,0x9b, 0x7f,0x15,0x8f,0x84,
1041				0xe1,0x08,0x0d,0x2c, 0x0a,0x91,0x9a,0x85,
1042				0x4e,0xa1,0x50,0xee, 0x72,0x70,0xf4,0xd2,
1043				0x1c,0x67,0x20,0x1f, 0xe6,0xb2,0x9d,0x95,
1044				0x85,0x7e,0xf2,0x9d, 0xf0,0x73,0x10,0xe7,
1045				0xfc,0x62,0x9d,0xea, 0x8d,0x63,0xdc,0x70,
1046				0xe0,0x2b,0x30,0x01, 0x7c,0xcd,0x24,0x22,
1047				0x03,0xf9,0x8b,0xe4, 0x77,0xef,0x2c,0xdc,
1048				0xa5,0xfb,0x29,0x66, 0x50,0x1c,0xd7,0x4e,
1049				0x8f,0x0f,0xbf,0x61, 0x0c,0xea,0xc0,0xe6,
1050				0xc6,0xc3,0xa1,0xae, 0xf3,0xea,0x4c,0xfb,
1051				0x21,0x96,0xd1,0x38, 0x64,0xe0,0xdd,0xa8,
1052				0xa4,0xd0,0x33,0x82, 0xf0,0xdd,0x91,0x6e,
1053				0x88,0x27,0xe1,0x0d, 0x8b,0xfb,0xc6,0x36,
1054				0xc5,0x9a,0x9d,0xbc, 0x32,0x8f,0x8a,0x3a,
1055				0xfb,0xd0,0x88,0x1e, 0xe5,0xb8,0x68,0x35,
1056				0x4b,0x22,0x72,0x55, 0x9e,0x77,0x39,0x1d,
1057				0x64,0x81,0x6e,0xfd, 0xe3,0x29,0xb8,0xa5,
1058				0x3e,0xc8,0x4c,0x6f, 0x41,0xc2,0xbd,0xb6,
1059				0x15,0xd1,0xd5,0xe9, 0x77,0x97,0xb6,0x54,
1060				0x9e,0x60,0xdd,0xf3, 0x48,0xdb,0x65,0x04,
1061				0x54,0xa2,0x93,0x12, 0xf0,0x66,0x6c,0xae,
1062				0xa2,0x2c,0xb9,0xeb, 0xf0,0x7c,0x9c,0xae,
1063				0x8e,0x49,0xf5,0x0f, 0xfc,0x4b,0x2a,0xdb,
1064				0xaf,0xff,0x96,0x0d, 0xa6,0x05,0xe9,0x37,
1065				0x81,0x43,0x41,0xb2, 0x69,0x88,0xd5,0x2c,
1066				0xa2,0xa9,0x9b,0xf2, 0xf1,0x77,0x68,0x05,
1067				0x84,0x0f,0x6a,0xee, 0xd0,0xb5,0x65,0x4b,
1068				0x35,0x18,0xeb,0x34, 0xba,0x09,0x4f,0xc3,
1069				0x5a,0xac,0x44,0x5b, 0x03,0xf5,0xf5,0x1d,
1070				0x10,0x04,0xfd,0xb5, 0xc4,0x26,0x84,0x13,
1071				0x8a,0xde,0x8d,0xbb, 0x51,0xd0,0x6f,0x58,
1072				0xc1,0xe5,0x9e,0x12, 0xe6,0xba,0x13,0x73,
1073				0x27,0x3e,0x3f,0xf0, 0x4f,0x0f,0x64,0x6c,
1074				0x0e,0x36,0xe9,0xcc, 0x38,0x93,0x9b,0xda,
1075				0xf9,0xfd,0xc2,0xe9, 0x44,0x7a,0x93,0xa6,
1076				0x73,0xf6,0x2a,0xc0, 0x21,0x42,0xbc,0x58,
1077				0x9e,0xe3,0x0c,0x6f, 0xa1,0xd0,0xdd,0x67,
1078				0x14,0x3d,0x49,0xf1, 0x5b,0xc3,0xc3,0xa4,
1079				0x52,0xa3,0xe7,0x0f, 0xb4,0x26,0xf4,0x62,
1080				0x73,0xf5,0x9f,0x75, 0x5b,0x6e,0x38,0xc8,
1081				0x4a,0xcc,0xf6,0xfa, 0xcf,0xfb,0x28,0x02,
1082				0x8a,0xdb,0x6b,0x63, 0x52,0x17,0x94,0x87,
1083				0x71,0xa2,0xf5,0x5a, 0x1d,0x94,0xe3,0xcd,
1084				0x28,0x70,0x96,0xd5, 0xb1,0xaf,0xec,0xd6,
1085				0xea,0xf4,0xfc,0xe9, 0x10,0x66,0xd9,0x8a,
1086				0x1e,0x03,0x03,0xf1, 0x54,0x2d,0xc5,0x8c,
1087				0x85,0x71,0xed,0xa7, 0xa4,0x1e,0x5a,0xff,
1088				0xab,0xb8,0x07,0xb3, 0x0b,0x84,0x00,0x0a,
1089				0x7f,0xa5,0x38,0x20, 0x66,0x33,0x84,0x2f,
1090				0xec,0x16,0x94,0x78, 0xa8,0x42,0x98,0x55,
1091				0xa3,0xe5,0xd3,0x62, 0x2a,0xfc,0xed,0xec,
1092				0x7a,0x96,0x41,0x35, 0xc0,0xd2,0xe6,0x53,
1093				0xf8,0x0f,0x59,0x94, 0x0a,0xa0,0x50,0xef,
1094				0x0d,0x9f,0x04,0x1c, 0x5f,0x48,0xfe,0x33,
1095				0x20,0xca,0x8d,0x09, 0xdd,0x0b,0xf8,0x59,
1096				0xd3,0x63,0x8a,0xa4, 0xf5,0x73,0x6b,0x3e,
1097				0x7e,0x0f,0xff,0xdb, 0x96,0x62,0x4d,0x3a,
1098				0xdb,0x8d,0x8c,0x9b, 0x8c,0xb3,0xa1,0xff,
1099				0x16,0xb9,0x2c,0x8c, 0xf6,0xbb,0x0d,0x9e,
1100				0x6f,0xff,0x24,0x6f, 0x59,0xee,0x02,0xe6,
1101				0x57,0x38,0xbd,0x5f, 0xbd,0xd4,0xe5,0x74,
1102				0x14,0xea,0x85,0xbb, 0x0c,0xfe,0xad,0xad,
1103				0x98,0x82,0x8a,0x81, 0x0b,0x37,0xdc,0x7d,
1104				0xda,0x13,0x74,0x8a, 0xa5,0xaf,0x74,0x82,
1105				0x95,0x35,0x1f,0x0b, 0x03,0x88,0x17,0xf3,
1106				0x67,0x11,0x40,0xd1, 0x9d,0x48,0xec,0x9b,
1107				0xc8,0xb2,0xcc,0xb4, 0x93,0xd2,0x0b,0x0a,
1108				0xd6,0x6f,0x34,0x32, 0xd1,0x9a,0x0d,0x89,
1109				0x93,0x1f,0x96,0x5a, 0x7a,0x57,0x06,0x02,
1110				0x1d,0xbf,0x57,0x3c, 0x9e,0xca,0x5d,0x68,
1111				0xe8,0x4e,0xea,0x4f, 0x0b,0x11,0xf0,0x35,
1112				0x73,0x5a,0x77,0x24, 0x29,0xc3,0x60,0x51,
1113				0xf0,0x15,0x93,0x45, 0x6b,0xb1,0x70,0xe0,
1114				0xda,0xf7,0xf4,0x0a, 0x70,0xd1,0x73,0x3f,
1115				0x9c,0x9d,0x07,0x19, 0xad,0xb2,0x28,0xae,
1116				0xf2,0xe2,0xb6,0xf4, 0xbc,0x71,0x63,0x00,
1117				0xde,0xe3,0xdc,0xb1, 0xa3,0xd5,0x4c,0x34,
1118				0xf8,0x6b,0x68,0x4c, 0x73,0x84,0xab,0xd4,
1119				0x89,0xae,0x07,0x1a, 0x0d,0x3d,0x8e,0xaa,
1120				0x6c,0xa2,0x54,0xb3, 0xd9,0x46,0x81,0x87,
1121				0xe2,0xdc,0x49,0xb1, 0x14,0x5c,0xcc,0x72,
1122				0x56,0xf0,0x0f,0xa9, 0x3d,0x31,0x2f,0x08,
1123				0xbc,0x15,0xb7,0xd3, 0x0d,0x4f,0xd1,0xc9,
1124				0x4e,0xde,0x1c,0x03, 0xd1,0xae,0xaf,0x14,
1125				0x62,0xbc,0x1f,0x33, 0x5c,0x00,0xeb,0xf4,
1126				0x8e,0xf6,0x3e,0x13, 0x6a,0x64,0x42,0x07,
1127				0x60,0x71,0x35,0xf1, 0xd0,0xff,0x8d,0x1f,
1128				0x88,0xc0,0x1c,0x3c, 0x6c,0x1c,0x54,0x71,
1129				0x6b,0x65,0x4a,0xe2, 0xe3,0x5f,0x77,0x56,
1130				0x1c,0x8d,0x2a,0x8d, 0xef,0x92,0x4a,0xa9,
1131				0xf6,0xcf,0xa5,0x67, 0x89,0x8e,0x5a,0xd9,
1132				0x60,0xaa,0x94,0x14, 0x55,0x66,0x8a,0xb0,
1133				0x18,0x4f,0x9e,0x8e, 0xf4,0xdb,0xc1,0x88,
1134				0x9b,0xf0,0x84,0x33, 0x2f,0xcd,0x2c,0xeb,
1135				0x65,0xe6,0x5d,0xde, 0x30,0x97,0xad,0xe6,
1136				0xbc,0xcb,0x83,0x93, 0xf3,0xfd,0x65,0xdc,
1137				0x07,0x27,0xf9,0x0f, 0x4a,0x56,0x5c,0xf7,
1138				0xff,0xa3,0xd1,0xad, 0xd4,0xd1,0x38,0x13,
1139				0x71,0xc9,0x42,0x0f, 0x0d,0x35,0x12,0x32,
1140				0xd2,0x2d,0x2b,0x96, 0xe4,0x01,0xdc,0x55,
1141				0xd8,0x71,0x2c,0x0c, 0xc4,0x55,0x3f,0x16,
1142				0xe8,0xaa,0xe7,0xe8, 0x45,0xfa,0x23,0x23,
1143				0x5e,0x21,0x02,0xab, 0xc8,0x6b,0x88,0x5e,
1144				0xdc,0x90,0x13,0xb5, 0xe7,0x47,0xfa,0x12,
1145				0xd5,0xa7,0x0a,0x06, 0xd2,0x7c,0x62,0x80,
1146				0xb7,0x8e,0x4f,0x77, 0x88,0xb7,0xa2,0x12,
1147				0xdb,0x19,0x1f,0xd8, 0x00,0x82,0xf5,0xf2,
1148				0x59,0x34,0xec,0x91, 0xa8,0xc1,0xd7,0x6e,
1149				0x76,0x10,0xf3,0x15, 0xa6,0x86,0xfa,0xfd,
1150				0x45,0x2f,0x86,0x18, 0x16,0x83,0x16,0x8c,
1151				0x6e,0x99,0x7e,0x43, 0x3f,0x0a,0xba,0x32,
1152				0x94,0x5b,0x15,0x32, 0x66,0xc2,0x3a,0xdc,
1153				0xf3,0xd3,0x1d,0xd1, 0x5d,0x6f,0x5f,0x9a,
1154				0x7f,0xa2,0x90,0xf1, 0xa1,0xd0,0x17,0x33,
1155				0xdf,0x9a,0x2e,0xa2, 0xdc,0x89,0xe6,0xb0,
1156				0xda,0x23,0x2b,0xf6, 0xe9,0x1f,0x82,0x3c,
1157				0x07,0x90,0xab,0x3a, 0xb9,0x87,0xb0,0x02,
1158				0xcc,0xb9,0xe7,0x2e, 0xe7,0xc6,0xee,0xfa,
1159				0xe2,0x16,0xc8,0xc3, 0xd0,0x40,0x15,0xc5,
1160				0xa7,0xc8,0x20,0x42, 0xb7,0x09,0xf8,0x66,
1161				0xeb,0x0e,0x4b,0xd7, 0x91,0x74,0xa3,0x8b,
1162				0x17,0x2a,0x0c,0xee, 0x7f,0xc1,0xea,0x63,
1163				0xc6,0x3c,0x1e,0xea, 0x8b,0xa2,0xd1,0x2e,
1164				0xf3,0xa6,0x0f,0x36, 0xff,0xdd,0x81,0x06,
1165				0xe3,0x63,0xfc,0x0c, 0x38,0xb0,0x23,0xfb,
1166				0x83,0x66,0x81,0x73, 0x5c,0x0b,0x9c,0xd4,
1167				0x23,0xdc,0x7f,0x5c, 0x00,0x8c,0xa6,0xa7,
1168				0x52,0xd4,0xc1,0x00, 0xea,0x99,0x6b,0x59,
1169				0x19,0x8e,0x34,0x32, 0x24,0xea,0x0c,0x61,
1170				0x95,0x9d,0xdb,0xf0, 0x63,0xcc,0xa9,0xfd,
1171				0x1b,0xeb,0xd7,0xbc, 0x0c,0xa4,0x74,0x24,
1172				0xfd,0xfa,0x32,0x58, 0xe3,0x74,0x1c,0x8f,
1173				0x76,0xa6,0x53,0x0d, 0xea,0xde,0x50,0x92,
1174				0xbd,0x3f,0x3d,0x56, 0x8f,0x48,0x4e,0xb7,
1175				0x8c,0x5e,0x83,0x2c, 0xf7,0xec,0x04,0x2c,
1176				0x35,0xdf,0xa9,0x72, 0xc0,0x77,0xf5,0x44,
1177				0xe5,0xa7,0x56,0x3e, 0xa4,0x8d,0xb8,0x6e,
1178				0x31,0x86,0x15,0x1d, 0xc4,0x66,0x86,0x75,
1179				0xf8,0x1a,0xea,0x2f, 0x3a,0xb7,0xbf,0x97,
1180				0xe9,0x11,0x53,0x64, 0xa8,0x71,0xc6,0x78,
1181				0x8a,0x70,0xb5,0x18, 0xd7,0x9c,0xe3,0x44,
1182				0x1a,0x7c,0x6b,0x1b, 0x41,0xe1,0x1c,0x0d,
1183				0x98,0x43,0x67,0x28, 0xb8,0x14,0xb4,0x48,
1184				0x01,0x85,0x79,0x20, 0x94,0x36,0x25,0x3a,
1185				0x5c,0x48,0xd2,0x2e, 0x91,0x91,0xfd,0x85,
1186				0x38,0xc1,0xc5,0xa5, 0x4d,0x52,0x1f,0xb4,
1187				0xe7,0x44,0x7a,0xff, 0xb1,0x65,0xdf,0x53,
1188				0x86,0x2a,0xff,0x25, 0x2b,0xeb,0x3e,0xdc,
1189				0x3d,0xec,0x72,0xae, 0xa9,0xd1,0xdf,0xe9,
1190				0x4a,0x3e,0xe8,0xf1, 0x74,0xe0,0xee,0xd6,
1191				0x0b,0xba,0x9b,0x14, 0x9b,0x0c,0x4a,0xf9,
1192				0x55,0xee,0x7e,0x82, 0xa4,0xb5,0xa5,0xb7,
1193				0x2f,0x75,0x48,0x51, 0x60,0xcc,0x41,0x8e,
1194				0x65,0xe3,0xb7,0x29, 0xe0,0x32,0xe7,0x1b,
1195				0x2f,0xa0,0x80,0xce, 0x73,0x28,0x6c,0xf4,
1196				0xd0,0xc7,0x05,0x69, 0xbd,0x3e,0x2e,0x77,
1197				0x1a,0x7f,0x9a,0x98, 0x60,0x31,0xdb,0x47,
1198				0xc2,0xa2,0x12,0xcb, 0x8c,0x35,0xff,0x58,
1199				0xe3,0x07,0x22,0xe4, 0x2f,0x26,0x87,0x30,
1200				0x16,0xea,0x64,0x4f, 0x44,0x64,0x3d,0xe4,
1201				0x7b,0x41,0x06,0xca, 0xee,0x02,0xcf,0xf3,
1202				0x26,0x4c,0xfe,0x9c, 0xf6,0x64,0x96,0xd4,
1203				0xd9,0x7e,0x04,0x47, 0x1d,0xdb,0xc7,0x8c,
1204				0xae,0xd7,0x9d,0xea, 0xe3,0x3a,0xee,0x24,
1205				0xa9,0x2d,0x65,0xba, 0xd5,0x9f,0x38,0x81,
1206				0x61,0x42,0x15,0xdf, 0xcc,0x29,0xd9,0xf7,
1207				0xd4,0x30,0xb9,0xc9, 0x86,0x76,0xdc,0xee,
1208				0xa5,0x27,0xa6,0x27, 0xa3,0xbb,0x8f,0x3b,
1209				0xaa,0xca,0x01,0x52, 0x37,0x12,0xc0,0x55,
1210				0x39,0x4a,0xb2,0xce, 0x85,0x73,0xf2,0x10,
1211				0x9c,0x7f,0xa6,0x34, 0x7f,0x0f,0x69,0x63,
1212				0x03,0xc4,0xde,0xe2, 0x7b,0x10,0xbf,0x91,
1213				0x3e,0x7e,0xad,0xb7, 0xa8,0x85,0xc7,0x99,
1214				0xae,0x8e,0x7c,0x2e, 0x02,0x25,0x5b,0xd5,
1215				0xf4,0x46,0xd1,0x49, 0x48,0xa0,0x12,0x6a,
1216				0x6a,0x01,0x23,0xb9, 0x7e,0x67,0x8b,0x48,
1217				0xac,0xf7,0x88,0x88, 0xeb,0xd9,0x39,0x3a,
1218				0xc8,0xa0,0x06,0xd9, 0x0b,0x80,0xc4,0x84,
1219			},
1220			.c = {
1221				0x10,0x46,0xb6,0xc8, 0xaa,0x83,0x67,0x7b,
1222				0xc5,0x9a,0x9a,0x0d, 0xe2,0xec,0x6f,0x9a,
1223				0x3e,0x74,0xa7,0xfa, 0x43,0x93,0x9d,0xc5,
1224				0x23,0x27,0xad,0x99, 0x74,0xb4,0xc0,0xe4,
1225				0xd7,0x70,0x5c,0x95, 0x58,0xe3,0x8f,0x72,
1226				0xe3,0x03,0x3d,0xc2, 0xd9,0x69,0x37,0x3e,
1227				0x8e,0x2a,0x0c,0x2b, 0x75,0x59,0x05,0x18,
1228				0x4a,0x50,0x67,0xd4, 0xf5,0x4b,0xb0,0x59,
1229				0x08,0xaf,0xbc,0x6f, 0xb1,0x95,0xa1,0x32,
1230				0xe7,0x77,0x1a,0xfd, 0xaf,0xe8,0x4d,0x32,
1231				0x87,0x9c,0x87,0x90, 0x5e,0xe8,0x08,0xc3,
1232				0xb4,0x0c,0x80,0x9a, 0x9e,0x23,0xeb,0x5a,
1233				0x5c,0x18,0x4a,0x7c, 0xd0,0x4a,0x91,0x57,
1234				0x7e,0x6c,0x53,0xde, 0x98,0xc0,0x09,0x80,
1235				0x8d,0x41,0x0b,0xbc, 0x56,0x5e,0x69,0x61,
1236				0xd3,0x56,0x48,0x43, 0x19,0x49,0x49,0xaf,
1237				0xcf,0xad,0x98,0x3e, 0x88,0x4b,0x44,0x69,
1238				0x73,0xd2,0xcb,0xdf, 0x30,0xdb,0x76,0x1d,
1239				0xfb,0x4b,0xc5,0x66, 0x22,0x34,0x6f,0x07,
1240				0x0b,0xcd,0x1c,0xed, 0x88,0xd9,0x0d,0x30,
1241				0xe9,0x96,0xcb,0xf5, 0xde,0x57,0x5f,0x0b,
1242				0x12,0x11,0xcf,0x52, 0xf5,0x0d,0xf8,0x29,
1243				0x39,0x87,0xb2,0xa5, 0x7f,0x7a,0x2b,0x9d,
1244				0x66,0x11,0x32,0xf4, 0xd4,0x37,0x16,0x75,
1245				0xe3,0x0b,0x55,0x98, 0x44,0x6f,0xc7,0x5c,
1246				0xd4,0x89,0xf8,0xb3, 0xee,0xe4,0x5e,0x45,
1247				0x34,0xc2,0xc0,0xef, 0xdd,0x4d,0xbb,0xb4,
1248				0x0a,0x7b,0xda,0xe3, 0x6e,0x41,0xe1,0xb4,
1249				0x73,0xf8,0x9b,0x65, 0x1c,0x5f,0xdf,0x9c,
1250				0xd7,0x71,0x91,0x72, 0x6f,0x9e,0x8f,0x96,
1251				0x5d,0x45,0x11,0xd1, 0xb9,0x99,0x63,0x50,
1252				0xda,0x36,0xe9,0x75, 0x21,0x9a,0xce,0xc5,
1253				0x1a,0x8a,0x12,0x81, 0x8b,0xeb,0x51,0x7c,
1254				0x00,0x5f,0x58,0x5a, 0x3e,0x65,0x10,0x9e,
1255				0xe3,0x9e,0xf0,0x6b, 0xfe,0x49,0x50,0x2a,
1256				0x2a,0x3b,0xa5,0x42, 0x1b,0x15,0x2b,0x5b,
1257				0x88,0xb8,0xfb,0x6f, 0x0c,0x5d,0x16,0x76,
1258				0x48,0x77,0x4d,0x22, 0xb9,0xf0,0x0a,0x3f,
1259				0xa6,0xdd,0xc8,0x32, 0xcc,0x98,0x76,0x41,
1260				0x84,0x36,0x24,0x6d, 0x88,0x62,0x65,0x40,
1261				0xa4,0x55,0xdc,0x39, 0x74,0xed,0x0f,0x50,
1262				0x08,0xcf,0x69,0x5f, 0x1d,0x31,0xd6,0xb4,
1263				0x39,0x94,0x5b,0x18, 0x88,0x0f,0xcb,0x56,
1264				0xfb,0xf7,0x19,0xe0, 0x80,0xe0,0x4f,0x67,
1265				0x9c,0xab,0x35,0x78, 0xc9,0xca,0x95,0xfa,
1266				0x31,0xf0,0x5f,0xa6, 0xf9,0x71,0xbd,0x7f,
1267				0xb1,0xe2,0x42,0x67, 0x9d,0xfb,0x7f,0xde,
1268				0x41,0xa6,0x7f,0xc7, 0x7f,0x75,0xd8,0x8d,
1269				0x43,0xce,0xe6,0xeb, 0x74,0xee,0x4e,0x35,
1270				0xbc,0x7b,0x7c,0xfc, 0x8b,0x4f,0x1f,0xa2,
1271				0x5e,0x34,0x3b,0x5f, 0xd0,0x05,0x9d,0x4f,
1272				0xfe,0x47,0x59,0xa3, 0xf6,0xb7,0x27,0xb0,
1273				0xa1,0xec,0x1d,0x09, 0x86,0x70,0x48,0x00,
1274				0x03,0x0a,0x15,0x98, 0x2e,0x6d,0x48,0x2a,
1275				0x81,0xa2,0xde,0x11, 0xe4,0xde,0x8b,0xb0,
1276				0x06,0x28,0x03,0x82, 0xe4,0x6e,0x40,0xfb,
1277				0x3c,0x35,0x2d,0x1b, 0x62,0x56,0x87,0xd4,
1278				0xd6,0x06,0x36,0xce, 0x70,0x26,0x2f,0x21,
1279				0xf5,0x47,0x3f,0xf8, 0x57,0x17,0xa9,0x15,
1280				0x30,0xfd,0x1f,0xa6, 0x7a,0x24,0x1c,0xf8,
1281				0x33,0xf3,0xef,0xe1, 0x6c,0xb5,0x0b,0x04,
1282				0x21,0x5d,0xb5,0xff, 0x4f,0xdb,0xd1,0x3d,
1283				0x8f,0x01,0x56,0x7f, 0x0b,0xa4,0xf1,0xf9,
1284				0xdd,0xa3,0x38,0xcb, 0xa9,0xd3,0xdd,0xe3,
1285				0x29,0x5b,0x2b,0x22, 0xd7,0xe8,0x4f,0x02,
1286				0xb1,0x73,0x83,0x80, 0xda,0xd0,0x8e,0x11,
1287				0x9f,0x4d,0xd4,0x0a, 0x86,0x45,0x11,0xa1,
1288				0x9e,0x2e,0xa9,0x59, 0x6d,0x95,0x49,0xc5,
1289				0xc9,0xcd,0x7c,0x71, 0x81,0xac,0x6b,0xb8,
1290				0x1b,0x94,0xe8,0xe3, 0xb2,0xb7,0x8a,0x9b,
1291				0xda,0x5b,0xb7,0xc6, 0x00,0xcb,0x40,0x47,
1292				0x0c,0x38,0x75,0xb8, 0xba,0x6f,0x2b,0x9d,
1293				0x01,0xf3,0xf2,0xc8, 0xf7,0xde,0xcf,0xfb,
1294				0x82,0xa8,0x8f,0x10, 0x75,0x0e,0x27,0xc5,
1295				0x4b,0x9f,0xfe,0x1d, 0x60,0x84,0x69,0x96,
1296				0xac,0xb1,0xd3,0xdd, 0x07,0x4c,0x50,0x94,
1297				0xb1,0x17,0x53,0x23, 0x98,0xbf,0x22,0xf9,
1298				0x2c,0xb0,0x3f,0x62, 0x16,0xa7,0x8f,0xea,
1299				0x43,0x25,0xfb,0x21, 0x18,0xec,0x1a,0xf6,
1300				0x5e,0x64,0xbd,0x3d, 0xcf,0x27,0xf5,0x02,
1301				0xf2,0xaf,0x1b,0x2d, 0x2c,0xcb,0xaa,0x6d,
1302				0x7d,0xa0,0xae,0x31, 0x05,0x51,0x80,0x7f,
1303				0x99,0xcf,0xbd,0x0f, 0x12,0x5a,0xda,0x4a,
1304				0x56,0x22,0xd4,0x22, 0x95,0x2c,0x46,0x5a,
1305				0xb3,0x5a,0x5e,0xd4, 0x27,0x7f,0x06,0xbd,
1306				0x3c,0xf6,0xf2,0x0f, 0x9d,0xbb,0x0c,0x14,
1307				0x8c,0xb1,0x72,0xf2, 0xb0,0xaf,0xda,0xf7,
1308				0x05,0x33,0x78,0x9c, 0x79,0xe9,0xe0,0xc5,
1309				0x8c,0x4b,0x23,0x65, 0xd1,0x70,0x81,0x3d,
1310				0x74,0xfa,0xb6,0xff, 0xf2,0x65,0x21,0x3f,
1311				0xe4,0xc2,0x9e,0x9d, 0x49,0x0e,0xad,0xaf,
1312				0xc2,0x21,0x18,0xa8, 0x19,0xa8,0x69,0x32,
1313				0xcb,0x8e,0xc2,0x9d, 0xf5,0xbd,0x50,0x60,
1314				0x72,0xa2,0xa6,0xad, 0xe6,0x6b,0xd2,0x01,
1315				0x52,0xf9,0xac,0x18, 0xfa,0xe8,0x8d,0x4a,
1316				0x98,0x25,0xd3,0xa8, 0x0e,0x97,0x2d,0xa3,
1317				0xf6,0xf1,0x34,0x7c, 0xf0,0x15,0x06,0x05,
1318				0x31,0xdf,0xc7,0x86, 0x54,0xfb,0x62,0xe2,
1319				0xd5,0x3b,0x72,0xd2, 0x70,0x7c,0x3c,0x62,
1320				0x2f,0xbd,0x47,0x0d, 0x20,0x97,0xf5,0x1f,
1321				0xa1,0xe8,0x4c,0x3e, 0x13,0xec,0xb3,0xcc,
1322				0xc9,0x15,0x01,0x23, 0xe5,0x1f,0x3b,0x2e,
1323				0xc5,0xdd,0x71,0xe3, 0xfa,0x6a,0x44,0x07,
1324				0x25,0x64,0xa5,0xa5, 0x16,0x64,0x14,0xb8,
1325				0x86,0xb1,0xae,0x6f, 0xc5,0xdb,0x6b,0xfa,
1326				0x0f,0x8f,0xc5,0x89, 0x57,0x52,0xeb,0xb3,
1327				0xca,0x4e,0x23,0xac, 0xbd,0xad,0xf5,0x77,
1328				0x58,0x72,0x18,0x2c, 0xb8,0x37,0x0b,0xfd,
1329				0xfd,0x04,0x49,0x4a, 0x7b,0x11,0x82,0x1b,
1330				0xc4,0x5f,0x54,0x46, 0x97,0xe9,0xac,0x64,
1331				0xa7,0x13,0x04,0x56, 0x5a,0x3b,0x17,0x2c,
1332				0x08,0xff,0xa4,0xe2, 0xe4,0x43,0x05,0xfa,
1333				0x94,0x3a,0xbc,0x24, 0xec,0xa8,0x89,0x02,
1334				0xd0,0xbc,0xcf,0x4a, 0xef,0x0f,0x90,0x50,
1335				0xfb,0x6a,0x25,0x4f, 0xdb,0x67,0x5b,0xd8,
1336				0xa1,0x1e,0x95,0x4d, 0xe5,0xd6,0xf3,0x22,
1337				0x2e,0x6f,0x01,0x50, 0xd8,0x2f,0x91,0x47,
1338				0x82,0x0e,0xae,0x18, 0xbf,0x3a,0xc9,0x5a,
1339				0x71,0xcf,0x5e,0xbf, 0x9e,0xec,0x1d,0x11,
1340				0x96,0x33,0x32,0x5e, 0x5e,0xee,0xc8,0xee,
1341				0x52,0x03,0xbc,0x8d, 0x97,0xd2,0x55,0xc5,
1342				0xaf,0x52,0xb0,0x55, 0x8f,0xb8,0x9b,0x83,
1343				0x60,0x9f,0x60,0x92, 0x47,0x1d,0xf2,0x6e,
1344				0xd1,0x93,0xfe,0xc2, 0x77,0x8c,0xb6,0x49,
1345				0x5e,0x3e,0xdb,0xb9, 0x7a,0x58,0x4d,0x18,
1346				0x66,0xc8,0xc2,0x67, 0xf8,0x37,0x7d,0x06,
1347				0x50,0xcc,0x42,0xab, 0x08,0x27,0x8e,0x81,
1348				0x6f,0xb3,0x03,0xbd, 0x41,0x11,0xeb,0x13,
1349				0xf1,0xaf,0xee,0x56, 0xae,0xb3,0x36,0x41,
1350				0xb8,0xc9,0x0a,0x96, 0x88,0x1d,0x98,0x25,
1351				0xc6,0x45,0xeb,0x76, 0x07,0xc1,0xfe,0xae,
1352				0xbc,0x26,0x1f,0xc4, 0x5f,0x70,0x0c,0xae,
1353				0x70,0x00,0xcf,0xc6, 0x77,0x5c,0x9c,0x24,
1354				0x8b,0x4b,0x83,0x32, 0x09,0xb7,0xb1,0x43,
1355				0x4a,0x01,0x42,0x04, 0x4d,0xca,0x5f,0x4e,
1356				0x9b,0x2b,0xa9,0xcb, 0x99,0x0b,0x0e,0x57,
1357				0x09,0xd6,0xe2,0xa0, 0xc1,0x12,0x79,0xf2,
1358				0x6f,0xe1,0x6c,0x7f, 0x0a,0x1a,0xec,0xc1,
1359				0x82,0x4a,0xf8,0x98, 0x22,0xc9,0x81,0x81,
1360				0x5d,0xf8,0x7d,0x9d, 0x86,0x97,0xdd,0x9e,
1361				0x8a,0xb5,0xce,0x6c, 0xfb,0x06,0xc3,0x8a,
1362				0x0d,0x53,0xda,0x12, 0x0c,0x4b,0x6f,0xa0,
1363				0x3f,0x8d,0xc3,0x07, 0x27,0x10,0xaf,0xc5,
1364				0x27,0xfe,0x64,0x17, 0x18,0xa5,0x3a,0xfe,
1365				0x9b,0x91,0xae,0xd0, 0x2d,0x34,0x34,0x9e,
1366				0x9f,0x31,0x5d,0x3e, 0x4c,0x26,0x1e,0xcb,
1367				0x62,0x05,0xd2,0x83, 0x8d,0x71,0xb8,0x57,
1368				0xef,0x3a,0x94,0xb3, 0x3a,0x67,0x1b,0x21,
1369				0x33,0x1f,0x7f,0x10, 0xd8,0xd7,0x89,0x1b,
1370				0x4f,0x51,0x74,0x97, 0x4a,0x0e,0x74,0x59,
1371				0x74,0x66,0xef,0xdd, 0x26,0xb6,0xa1,0x53,
1372				0xd4,0x2f,0xd7,0x76, 0x51,0x27,0xcc,0xe4,
1373				0x94,0xe3,0xed,0x26, 0x13,0x4e,0xe8,0x2c,
1374				0x11,0x6e,0xb3,0x63, 0x51,0x36,0x9c,0x91,
1375				0x2d,0x66,0x2c,0x3e, 0x0a,0xf7,0xa4,0x97,
1376				0x70,0x6d,0x04,0xaa, 0x89,0xe8,0x2c,0x5e,
1377				0xdd,0x01,0x46,0xfc, 0x99,0xce,0xe6,0x32,
1378				0x8a,0x85,0xe6,0x07, 0x1e,0x71,0x5d,0x29,
1379				0x07,0x16,0x0e,0xf9, 0xd4,0xdf,0x54,0xb4,
1380				0x7b,0x7b,0x3f,0xe0, 0xeb,0x73,0xe0,0xe1,
1381				0x92,0x51,0x50,0x74, 0xb5,0x6e,0x08,0x7e,
1382				0x57,0x70,0xb2,0x1b, 0x9c,0xf2,0xa2,0x6b,
1383				0x52,0xa3,0x35,0xf7, 0x22,0x40,0xa6,0x11,
1384				0x30,0xd3,0x5b,0x4b, 0x78,0xc9,0xd7,0x84,
1385				0x9a,0x88,0x9a,0x44, 0xb4,0x88,0xfe,0x8c,
1386				0x3f,0x10,0xab,0xc7, 0xc9,0xb6,0x59,0x9a,
1387				0xf3,0xe6,0xe6,0x4d, 0xea,0x3e,0xe0,0xeb,
1388				0x9e,0xb4,0x41,0xf6, 0xcb,0xfc,0x04,0x73,
1389				0x7d,0xc8,0x00,0xc6, 0xf2,0x10,0x00,0xcf,
1390				0x59,0xed,0x05,0x2a, 0x6a,0xde,0x7a,0xdf,
1391				0x7d,0xa9,0x25,0xc8, 0x6e,0x08,0x60,0xf9,
1392				0xd8,0x23,0x9b,0x20, 0xe5,0x93,0x9c,0x90,
1393				0x3d,0xe0,0xd0,0x33, 0x2d,0xce,0x86,0x93,
1394				0xdc,0xb3,0x9c,0x40, 0x33,0x9a,0xf0,0x71,
1395				0x47,0x0e,0xc4,0xb9, 0x58,0xc4,0x36,0xf1,
1396				0x4c,0x82,0xcf,0x91, 0x9f,0x16,0xce,0x43,
1397				0x58,0x72,0x54,0x51, 0x0d,0x8e,0x1e,0x3d,
1398				0x5e,0x67,0x7e,0x96, 0x6e,0x12,0xb8,0xee,
1399				0x1f,0x8b,0x15,0x3b, 0x49,0x95,0x2f,0xd9,
1400				0xec,0x63,0x56,0xec, 0x4e,0x88,0x37,0x2f,
1401				0xa7,0xd5,0xe5,0x4a, 0x97,0x1f,0x6f,0xa0,
1402				0x40,0x68,0x69,0xee, 0x6a,0xc6,0xbe,0x83,
1403				0xba,0x69,0xb8,0x08, 0x0a,0x5c,0x2f,0xd2,
1404				0x3e,0x3b,0x73,0x40, 0x9c,0x62,0xcc,0xe1,
1405				0x99,0x44,0xa2,0xaa, 0xb8,0xe9,0x48,0xf4,
1406				0x79,0x07,0xe8,0xe8, 0x16,0x99,0x84,0x7b,
1407				0x3d,0x53,0xb2,0x5d, 0x2d,0xa4,0xb0,0x12,
1408				0xb9,0xa9,0x0d,0x77, 0x98,0xa1,0x98,0x90,
1409				0x4e,0xe2,0x14,0xd4, 0x15,0x35,0xd0,0x85,
1410				0xbf,0xa1,0x0f,0x54, 0x05,0xa0,0x90,0x2a,
1411				0x74,0xe3,0xd3,0x1b, 0x5e,0x16,0x07,0xcf,
1412				0x36,0xbd,0xea,0x9b, 0x2d,0x35,0x47,0xea,
1413				0xea,0xb7,0xd1,0xda, 0x66,0x47,0x42,0x47,
1414				0x4e,0x76,0xe5,0x90, 0x0c,0x82,0x15,0x3f,
1415				0x17,0x1b,0xa6,0x04, 0xb6,0x58,0x67,0x42,
1416				0xfb,0x19,0x2a,0xc2, 0xd7,0x6a,0x48,0x36,
1417				0x87,0x53,0x90,0x95, 0x53,0xb7,0xf1,0xbe,
1418				0x0d,0x9f,0xa3,0x74, 0x5f,0x3d,0x89,0xef,
1419				0x29,0x07,0xe1,0xc1, 0x13,0xe0,0xc7,0xf6,
1420				0x53,0xc2,0xe5,0x7e, 0x96,0xdf,0x1f,0x12,
1421				0x98,0xd6,0x7b,0x2d, 0xdb,0x3e,0x01,0x03,
1422				0x05,0xbe,0x66,0x29, 0x42,0xeb,0x5d,0xab,
1423				0xa8,0x13,0x78,0x7f, 0x1e,0x0e,0xfd,0x7f,
1424				0xf1,0xd2,0x59,0xb2, 0x46,0x13,0x1c,0xb8,
1425				0x42,0x4f,0x87,0xb3, 0x26,0x0b,0xed,0x26,
1426				0xb2,0xd5,0x27,0xfc, 0xf1,0xec,0x32,0x66,
1427				0xe1,0x2d,0x27,0x2a, 0xe2,0x80,0xf2,0x72,
1428				0x90,0x3c,0x54,0xfa, 0xaa,0xe6,0x31,0xb0,
1429				0xb7,0xdd,0x97,0x0d, 0x22,0xb5,0x16,0x46,
1430				0x66,0x6d,0x02,0x13, 0x9a,0x7c,0x52,0xfc,
1431				0xf8,0x73,0x0c,0x81, 0xac,0xa3,0x8f,0x40,
1432				0x50,0x2e,0x80,0x3b, 0xb6,0xdf,0x88,0xbb,
1433				0xb5,0xa8,0x13,0xfa, 0xd2,0xd6,0xb8,0x07,
1434				0x47,0x7b,0xa0,0x09, 0x9f,0xc3,0x42,0xab,
1435				0xb8,0xd6,0xca,0xfa, 0x41,0xdc,0x9a,0xb5,
1436				0x96,0xf4,0xfa,0xfd, 0x09,0xca,0x8e,0x47,
1437				0x1d,0x8f,0x8d,0x54, 0x3f,0xbf,0xfd,0x22,
1438				0x30,0x25,0xbd,0xea, 0xb3,0xf6,0x90,0x68,
1439				0x6e,0x2b,0x78,0x8e, 0xc4,0x58,0x1c,0xbd,
1440				0x6b,0x36,0xdc,0x9d, 0x9f,0x27,0xce,0xf6,
1441				0x4f,0x1b,0xeb,0x41, 0x2c,0x07,0xa1,0x1f,
1442				0xaa,0xc3,0x65,0xe0, 0x78,0x85,0x80,0x22,
1443				0x00,0x94,0x1a,0x9f, 0x34,0x2b,0x2b,0x51,
1444				0x94,0x93,0x23,0x20, 0x48,0x2e,0x16,0xd6,
1445				0xdf,0x09,0xa2,0xfa, 0xb8,0x9b,0xf0,0x64,
1446				0x18,0x36,0x78,0xbc, 0xb8,0x5b,0x87,0x90,
1447				0xba,0xd2,0x2e,0x30, 0xe6,0xc5,0xe0,0x0c,
1448				0x81,0x32,0x69,0x9a, 0x8a,0x5a,0x3d,0x6f,
1449				0x06,0xe1,0x3f,0xa9, 0xf2,0x0e,0x21,0xfe,
1450				0x9e,0x63,0x31,0xa9, 0xc3,0x3e,0xb4,0xcd,
1451				0xcb,0x60,0xd9,0x45, 0xc6,0x5f,0xc5,0xca,
1452				0x9e,0xd8,0x40,0x72, 0x39,0x04,0x59,0x2d,
1453				0x4c,0xac,0xdf,0xea, 0x4a,0x78,0xa9,0xd5,
1454				0x87,0xb1,0xd6,0x59, 0x77,0x58,0x4d,0xa7,
1455				0xd3,0x9b,0xfc,0xe3, 0xdd,0x8d,0xf5,0x57,
1456				0x06,0xb3,0x96,0xf1, 0xbe,0xd9,0x07,0x54,
1457				0x36,0xa4,0x8b,0xaa, 0x0b,0xcb,0xd3,0x80,
1458				0x13,0xa6,0x53,0x8e, 0xcc,0x23,0x15,0x02,
1459				0x1e,0x1b,0x2f,0x0a, 0x02,0x5b,0xca,0x50,
1460				0x11,0x28,0x27,0x0e, 0xbe,0xfe,0x76,0x60,
1461				0x1b,0x78,0x58,0x9b, 0xe6,0x0a,0x0a,0xef,
1462				0xa3,0xa5,0x33,0x0d, 0x5b,0x65,0xe1,0x03,
1463				0x38,0xdd,0xf8,0x22, 0x92,0xcd,0x50,0x87,
1464				0x02,0xbc,0x91,0x16, 0xfd,0x05,0x9c,0xcd,
1465				0x72,0xae,0x4c,0xd7, 0xef,0xb3,0x57,0x1a,
1466				0x3f,0x79,0x23,0xfd, 0xf0,0xc3,0xfb,0x68,
1467				0xb4,0xc9,0x93,0x22, 0x33,0xd3,0x01,0x74,
1468				0xe3,0x00,0x31,0xcf, 0x0f,0x23,0xc5,0xf7,
1469				0x09,0x95,0x5a,0xa0, 0x56,0xf9,0xb0,0x20,
1470				0xb1,0xcc,0x8d,0x88, 0xd6,0x27,0x97,0x8d,
1471				0x0e,0xa3,0x3d,0x33, 0x94,0x04,0x44,0x93,
1472				0x67,0x10,0xb6,0xa0, 0x0c,0x2a,0x28,0xd4,
1473				0x1b,0x41,0x86,0xe7, 0x29,0x2c,0x68,0x2a,
1474				0x94,0xf3,0x4f,0x20, 0xa1,0xb4,0x6c,0x9d,
1475				0x85,0x6b,0xa0,0x31, 0xa2,0xbd,0x74,0xf0,
1476				0x0b,0xe5,0x2f,0xb7, 0x8a,0x33,0xd9,0x1f,
1477				0xf2,0xb5,0xad,0x85, 0xc3,0xad,0x47,0x2f,
1478				0x27,0x2a,0xc9,0x32, 0xd8,0xd9,0x05,0xc2,
1479				0x9d,0xbf,0x21,0x88, 0x02,0x05,0x12,0x6e,
1480				0x0f,0xb6,0x64,0x43, 0xa8,0xc3,0x87,0xea,
1481				0xb0,0x81,0x5b,0x51, 0x51,0xf1,0x83,0x7d,
1482				0x94,0x46,0x7f,0x0a, 0x9a,0xef,0xcc,0x68,
1483				0x73,0xef,0x9d,0x3c, 0x0e,0xfc,0x37,0x91,
1484				0xca,0x36,0x2d,0x1d, 0x72,0x7e,0x39,0x9e,
1485				0xad,0xd3,0x55,0x1b, 0x10,0x1e,0xff,0x00,
1486				0xc1,0x45,0x80,0xe7, 0xb4,0xcc,0xc8,0xb0,
1487				0x62,0xbd,0xf9,0xa5, 0x8f,0x05,0xaa,0x3b,
1488				0x86,0x73,0x14,0xf9, 0xee,0x95,0xd0,0xfd,
1489				0x95,0x30,0x68,0x22, 0xc9,0x70,0x66,0x1d,
1490				0x91,0x3f,0xc0,0x19, 0x93,0x07,0x19,0x2d,
1491				0x3c,0x21,0x6b,0xc1, 0x2a,0xeb,0xaa,0xf2,
1492				0xa4,0x45,0x35,0xff, 0x8f,0x24,0x46,0x2c,
1493				0xc8,0x75,0x58,0x68, 0x0f,0x3b,0x87,0x11,
1494				0xcb,0x9f,0xf7,0x28, 0xbd,0x66,0x91,0x01,
1495				0xeb,0x70,0x8e,0x8d, 0xe6,0x01,0xc8,0x48,
1496				0x94,0xfe,0x4e,0xa8, 0xeb,0x90,0xbf,0xd1,
1497				0xcd,0x89,0xc2,0x98, 0x34,0x92,0xf9,0x08,
1498				0xb9,0xbc,0xd4,0x34, 0x1a,0x59,0xcc,0x80,
1499				0x9a,0xe6,0xbc,0xbb, 0x23,0x12,0x9c,0xa4,
1500				0x5b,0x79,0xc6,0x8a, 0xc0,0x03,0x2b,0x16,
1501				0xe5,0x1c,0x0f,0x02, 0x37,0x4f,0x3e,0xc2,
1502				0xf3,0x4d,0x7c,0xcb, 0xde,0x9b,0x66,0x52,
1503				0xf3,0xdd,0x86,0x42, 0x4a,0x81,0x5b,0x96,
1504				0x83,0x2a,0xb1,0x48, 0x31,0x42,0x16,0x16,
1505				0xf8,0x97,0xa3,0x52, 0xeb,0xb6,0xbe,0x99,
1506				0xe1,0xbc,0xa1,0x3a, 0xdd,0xea,0x00,0xfa,
1507				0x11,0x2f,0x0b,0xf8, 0xc7,0xcc,0xba,0x1a,
1508				0xf3,0x36,0x20,0x3f, 0x59,0xea,0xf1,0xc8,
1509				0x08,0xd0,0x6d,0x8e, 0x91,0x1e,0x90,0x91,
1510				0x7b,0x80,0xdc,0xcb, 0x5c,0x94,0x74,0x26,
1511				0xd3,0x5d,0x1a,0x2d, 0xad,0xcf,0xef,0xfa,
1512				0xe9,0xa0,0x17,0xb7, 0x2b,0x7c,0x37,0x83,
1513				0x31,0x78,0x1a,0xcf, 0x04,0xa0,0xe7,0x83,
1514				0x66,0x12,0x4f,0x9d, 0x31,0x6b,0x4d,0xc5,
1515				0x31,0x1b,0x3a,0xd9, 0x79,0x76,0x49,0xc3,
1516				0x19,0xf0,0x3f,0xb5, 0xbc,0x7d,0xa4,0xa7,
1517				0x24,0x44,0x75,0xbb, 0x6d,0x65,0x59,0xf8,
1518				0xe0,0xb9,0xd7,0x29, 0x79,0xce,0x14,0x32,
1519				0xd2,0x3e,0xb8,0x22, 0x4a,0x0a,0x2a,0x6c,
1520				0xb2,0xbd,0xa5,0xd4, 0xc4,0xc5,0x68,0xb3,
1521				0x63,0xe7,0x46,0x05, 0x3a,0x18,0xa5,0xad,
1522				0xcc,0x61,0xc3,0xec, 0x3d,0x42,0xb0,0xa7,
1523				0x23,0x72,0x1e,0x14, 0xd8,0x7e,0x68,0x60,
1524				0xec,0xe9,0x1d,0x5b, 0x1f,0x86,0xda,0x5e,
1525				0x34,0x74,0x00,0xd3, 0x98,0x98,0x7e,0xbd,
1526				0x6a,0x8b,0xd3,0x6f, 0x31,0xf1,0x62,0xb3,
1527				0xa3,0x86,0x95,0x02, 0x76,0x7d,0x58,0xbc,
1528				0xf8,0xb1,0x52,0xc3, 0x0b,0xd5,0x6b,0x74,
1529				0xa5,0x84,0xef,0xf2, 0x31,0xc1,0xe4,0x83,
1530				0x42,0x12,0xb5,0xe7, 0x61,0xdd,0xba,0x43,
1531				0x39,0xf2,0x44,0x0a, 0xb4,0x62,0x06,0x32,
1532				0x5b,0x33,0x67,0x2e, 0x7a,0x93,0x85,0x1a,
1533				0x07,0x36,0x9f,0xab, 0xf7,0x2a,0x6e,0x3d,
1534				0x3e,0xe3,0x59,0x1b, 0xf8,0xd3,0xe8,0x5f,
1535				0xe5,0x24,0xb3,0x59, 0x80,0xd5,0x11,0x14,
1536				0x98,0x3a,0xb4,0x7d, 0x8f,0x37,0x18,0xb2,
1537				0xa7,0x25,0xf4,0x31, 0x74,0x61,0x3a,0x42,
1538				0x62,0x77,0x37,0x3d, 0x72,0x1b,0x67,0x87,
1539				0xb3,0x59,0x4b,0x08, 0x07,0xdb,0x0b,0x57,
1540				0xfd,0x61,0x99,0x28, 0x3b,0xe5,0x7a,0xb4,
1541				0x6c,0x06,0x95,0x65, 0x2c,0x1c,0x41,0x71,
1542				0x21,0xd7,0x94,0x51, 0x1c,0x8d,0xe6,0x38,
1543				0xc5,0x95,0x7f,0x30, 0xd5,0xc5,0xcc,0xd2,
1544				0x03,0x7f,0x69,0x2e, 0xae,0xc7,0x28,0x2e,
1545				0xc6,0xa9,0x28,0x4b, 0x77,0xc3,0xcf,0xa3,
1546				0xc3,0xd3,0x2d,0x43, 0x47,0x87,0xde,0x38,
1547				0xeb,0x3a,0xb6,0xf9, 0xe7,0x3c,0xb6,0x92,
1548				0x19,0x42,0xf8,0xc2, 0x87,0x50,0xed,0xe6,
1549				0x3d,0x2b,0xb5,0xf8, 0x89,0x14,0x42,0xf7,
1550				0x2c,0x7a,0xbe,0xdc, 0x2f,0x5d,0x49,0x83,
1551				0xf5,0x60,0xe0,0xcf, 0xbc,0x23,0x13,0x4f,
1552				0xb3,0x16,0xd7,0x9a, 0xca,0x16,0x8b,0xa5,
1553				0x08,0x80,0xcf,0x21, 0xbb,0xd8,0x32,0x5e,
1554				0x07,0x8a,0xb3,0x48, 0xba,0x99,0xd4,0xd7,
1555				0x6a,0xae,0x4b,0x9b, 0xb4,0xd7,0x2f,0x87,
1556				0xb0,0x0a,0xd1,0x1b, 0xf1,0x8b,0xf6,0x21,
1557				0x81,0x8e,0xc4,0x79, 0x9a,0x5c,0x75,0xbe,
1558				0x87,0x99,0xe5,0x11, 0xf9,0x9a,0xe1,0xf9,
1559				0x76,0xa2,0x92,0xc6, 0xc0,0xd8,0x05,0xc9,
1560				0x7d,0x8c,0x27,0xc2, 0x7f,0xf4,0xe9,0x4f,
1561				0xb7,0xbc,0xa3,0x3e, 0x66,0x3b,0xaf,0xed,
1562				0x7a,0xd9,0x78,0x20, 0x6b,0xd5,0xe1,0xfe,
1563				0xd5,0x06,0x65,0x11, 0x49,0xac,0x22,0x38,
1564				0x02,0x80,0xec,0x91, 0x11,0x18,0x1a,0x61,
1565				0x3c,0x59,0x4e,0x7a, 0xd8,0xca,0xda,0xd4,
1566				0x27,0xbd,0xf4,0x00, 0x9c,0x1b,0xde,0xf3,
1567				0x6c,0x1f,0x20,0x9a, 0x30,0xc9,0x9b,0x3c,
1568				0xe5,0x55,0xb7,0xb3, 0xc8,0x52,0x9c,0x05,
1569				0xad,0xe8,0x13,0x9e, 0x31,0xc2,0x2c,0xd4,
1570				0x3f,0x18,0x00,0xc4, 0xcf,0x08,0x05,0x7b,
1571				0x5e,0x2a,0x8e,0x11, 0x61,0x03,0xc8,0x39,
1572				0x2b,0x54,0x1a,0xd9, 0x08,0x04,0xc6,0xe9,
1573				0xda,0x69,0xb3,0x0c, 0x83,0x44,0xcd,0xe8,
1574				0x50,0x04,0x72,0xa2, 0xb4,0x10,0x17,0x39,
1575				0x68,0x32,0xdb,0xab, 0xe3,0xee,0x57,0x1b,
1576				0x05,0x45,0x1f,0x5a, 0xdc,0xdc,0x56,0x81,
1577				0x98,0x20,0xfe,0x69, 0x0a,0xa4,0xd6,0x9d,
1578				0x25,0xdd,0x7e,0xd0, 0x2b,0x33,0x41,0x75,
1579				0xf6,0x59,0xa8,0xa3, 0x3c,0xdd,0xd9,0x6b,
1580				0xa8,0xcd,0x1d,0x1f, 0xc5,0x78,0x5b,0x93,
1581				0xdf,0x10,0x71,0xeb, 0xcc,0xbd,0x35,0x4c,
1582				0x07,0x21,0x5f,0xb7, 0x47,0x21,0x6d,0x55,
1583				0x8b,0x72,0x0e,0x4a, 0x2c,0x17,0xfc,0x75,
1584				0x21,0xdd,0x76,0xfd, 0x34,0xfc,0x0f,0x1b,
1585				0xa6,0x77,0x53,0xf9, 0xdb,0x09,0x07,0x58,
1586				0xb0,0x18,0x32,0x03, 0x98,0x79,0xdf,0x55,
1587				0xd3,0x95,0xba,0xa9, 0xb6,0x9f,0xad,0xc4,
1588				0x9d,0xba,0x76,0x36, 0x47,0xb1,0xde,0x78,
1589				0x18,0xa0,0x2f,0x16, 0x41,0xeb,0x4a,0x96,
1590				0x82,0xc4,0xa4,0xde, 0x4b,0xdf,0xee,0xc7,
1591				0x33,0xdf,0xb7,0xde, 0xd3,0xa7,0x0f,0xc7,
1592				0x23,0x61,0x6b,0xd9, 0x15,0xc8,0x09,0xf7,
1593				0xe7,0xf9,0x44,0xba, 0x14,0xdc,0x94,0x5e,
1594				0xd9,0xcc,0x74,0xb2, 0x3d,0xef,0x78,0x15,
1595				0xb5,0xb9,0x56,0xd5, 0xfb,0x47,0x49,0x3a,
1596				0xbc,0x53,0x71,0x8b, 0x72,0x8b,0xb2,0xe3,
1597				0x58,0xbf,0xea,0x47, 0x7a,0x76,0x03,0x48,
1598				0xdd,0x8c,0x30,0x99, 0x81,0x2c,0x5f,0xf6,
1599				0xd3,0x9b,0x8e,0x77, 0x1c,0xb7,0xbd,0x1e,
1600				0xd4,0x28,0x05,0xf7, 0xff,0xdf,0xd6,0xb9,
1601				0x83,0x99,0xbc,0x94, 0xb7,0x41,0x93,0xc4,
1602				0x66,0xff,0x29,0x4d, 0x5c,0xba,0x79,0xd9,
1603				0x6e,0x79,0x47,0x45, 0xd6,0x2d,0xcd,0x79,
1604				0xa1,0xfa,0x49,0xee, 0x8e,0x7f,0x2b,0x08,
1605				0x3f,0x60,0x56,0xcf, 0xcb,0xe8,0x0d,0x55,
1606				0xee,0xa5,0xaf,0x04, 0xde,0x01,0xde,0xce,
1607				0xb6,0x9c,0x68,0x4e, 0xb0,0x88,0xcd,0x89,
1608				0x83,0x6b,0x01,0xb5, 0x78,0xac,0x85,0x3c,
1609				0x2c,0xcf,0x39,0xb6, 0xc8,0x5f,0x0e,0xac,
1610				0x02,0x08,0x56,0xbe, 0xd1,0x8d,0x7d,0x55,
1611				0x69,0x0c,0x33,0x33, 0xff,0x1a,0xd6,0x0b,
1612				0xcf,0x57,0x18,0x01, 0x56,0x5f,0x9c,0x6f,
1613				0xe2,0x24,0xda,0xc3, 0x9f,0x81,0xc3,0x27,
1614				0x46,0x7a,0xb4,0xae, 0xec,0xa4,0x0e,0x41,
1615				0x8b,0xb7,0x16,0xe3, 0x9b,0x2e,0x32,0x75,
1616				0xd9,0x86,0xa2,0x13, 0x68,0x4e,0xbc,0x43,
1617				0xa2,0x78,0x64,0x1a, 0x7c,0xac,0x13,0x70,
1618				0x1c,0x23,0x15,0x5b, 0xda,0x99,0xa5,0x24,
1619				0x3d,0xcf,0x29,0xf7, 0xbc,0x1d,0x10,0xe8,
1620				0x95,0x1a,0x11,0xec, 0xfc,0xfb,0x20,0x1f,
1621				0x09,0x1b,0xe3,0x3d, 0xae,0x82,0x70,0xd7,
1622				0x9e,0xf3,0x18,0x97, 0x89,0xfa,0x42,0x67,
1623				0x70,0x9c,0xc8,0xbe, 0x62,0x98,0xf1,0x82,
1624				0xfc,0x2b,0xf0,0x40, 0xaa,0xdc,0x27,0xf9,
1625				0x21,0x5a,0xc1,0x25, 0x8b,0xef,0xd5,0x48,
1626				0x6c,0x68,0xae,0xbc, 0xcd,0xa9,0x3c,0x1e,
1627				0xe9,0xcf,0xe2,0xd1, 0xc0,0x98,0xa9,0x62,
1628				0x5d,0x1f,0x57,0x7a, 0xca,0x8a,0x0f,0xfb,
1629				0xe3,0xc9,0x7e,0x98, 0x44,0x84,0x67,0x12,
1630				0x60,0x60,0xe5,0xc7, 0xcc,0x72,0x90,0x64,
1631				0x67,0x30,0x6a,0xd8, 0xa1,0x11,0xd5,0x7e,
1632				0x5e,0x0c,0x74,0xa2, 0x6f,0x0a,0xff,0x41,
1633				0xd3,0x9a,0x30,0x56, 0xd4,0xec,0x9a,0x5f,
1634				0x22,0x71,0x6b,0x4e, 0xe6,0xe0,0x19,0x69,
1635				0x56,0x4a,0xba,0x9d, 0x50,0x8a,0x73,0x6a,
1636				0xf1,0x59,0x48,0xd6, 0xcd,0xfa,0xaa,0x0c,
1637				0xbb,0x7c,0xa4,0xbc, 0xf5,0x32,0x95,0x55,
1638				0x1c,0xe9,0x9a,0x60, 0x43,0x10,0xbd,0x27,
1639				0x88,0x2f,0x05,0xcf, 0xce,0x21,0x25,0x3a,
1640				0x07,0xab,0x37,0xfd, 0xf6,0x2f,0xd6,0x51,
1641				0xbe,0xe6,0xcc,0x58, 0x3a,0xab,0x60,0x23,
1642				0x45,0xa0,0xe5,0x79, 0xe5,0xaa,0xed,0xa4,
1643				0x28,0xd0,0x4d,0x37, 0x9c,0x6a,0xd7,0xc2,
1644				0x39,0x22,0xb9,0x3e, 0x0d,0xb8,0x94,0x65,
1645				0x48,0x4d,0x4c,0x02, 0x31,0x7e,0x9c,0xc9,
1646				0xb7,0xd6,0x23,0x1a, 0x94,0x5a,0x13,0x55,
1647				0x78,0x7a,0x29,0x4a, 0xa2,0xfd,0x37,0x24,
1648				0xd8,0xd0,0x9e,0x47, 0x24,0xab,0x26,0x34,
1649				0x28,0xb5,0x2d,0x82, 0x9a,0x4d,0xdd,0x17,
1650				0x68,0xe0,0x07,0x5d, 0xb9,0x2d,0xff,0xa9,
1651				0x0c,0x11,0x59,0x75, 0xda,0x98,0xe9,0xd5,
1652				0xfa,0xb5,0x18,0x16, 0x28,0x17,0x7c,0xad,
1653				0xab,0xee,0x65,0x10, 0x13,0x0d,0x26,0xfa,
1654				0x7f,0xac,0x06,0x43, 0x4d,0x5d,0x3a,0xf4,
1655				0x77,0xe7,0x03,0x17, 0x39,0x9f,0xbe,0x52,
1656				0x9b,0x68,0x2b,0x7f, 0xd3,0xa2,0x7e,0x5c,
1657				0x78,0x22,0xc5,0xe3, 0x17,0x73,0xc6,0x9e,
1658				0x68,0x17,0x74,0x50, 0xf4,0xc5,0xa8,0xc3,
1659				0x66,0xe1,0x05,0xed, 0xdd,0xdb,0xd3,0x11,
1660				0x16,0xad,0x05,0x3a, 0x38,0x55,0x1c,0xf0,
1661				0x93,0x0b,0x22,0x83, 0xc8,0x34,0xc5,0x43,
1662				0x4d,0x65,0x57,0xf3, 0x03,0x56,0x21,0xa9,
1663				0xbd,0x04,0x41,0x49, 0x62,0xfd,0xcc,0xc2,
1664				0x75,0x59,0x09,0xb9, 0x28,0x38,0xcf,0xfb,
1665				0x54,0x64,0x51,0xc2, 0x3e,0xad,0x35,0x3e,
1666				0x31,0x87,0x6e,0xfe, 0xf0,0x41,0xef,0x1d,
1667				0xb8,0x46,0xbe,0x85, 0xb9,0xff,0xa3,0xdb,
1668				0x87,0xf9,0x65,0x95, 0x60,0x53,0x7c,0x9d,
1669				0x26,0x83,0xfc,0xa7, 0xad,0x5a,0xcb,0x8d,
1670				0x81,0xec,0x28,0xeb, 0xdd,0x96,0x25,0x31,
1671				0x24,0x3f,0x59,0x28, 0x60,0x0b,0xc0,0x59,
1672				0xea,0x36,0x15,0xad, 0x70,0xd8,0x70,0xff,
1673				0x9b,0x15,0x76,0xc5, 0x84,0xe6,0x81,0x75,
1674				0x1a,0x1e,0xc9,0xec, 0x33,0xbe,0x10,0xd4,
1675				0x6f,0x10,0x1b,0xa2, 0xdb,0xc6,0x1b,0x0a,
1676				0xfb,0xe9,0x3f,0x4d, 0x04,0x4e,0x33,0x87,
1677				0xb3,0x21,0xad,0x41, 0xbe,0xce,0x26,0x0c,
1678				0x0c,0x84,0x0f,0x9a, 0xb9,0xa7,0xa2,0x36,
1679				0x70,0x49,0xce,0x25, 0x0f,0x69,0x4a,0x4a,
1680				0x3d,0xf5,0xa0,0x9e, 0xad,0x69,0x2d,0x79,
1681				0xdb,0x8b,0x85,0xf6, 0xb8,0x55,0xcd,0xf1,
1682				0xbb,0x04,0x35,0xad, 0xa8,0xb6,0x0d,0x3f,
1683				0x23,0xec,0x39,0xd7, 0xef,0x02,0x95,0x42,
1684				0x11,0xc9,0x70,0xc6, 0xa4,0x65,0x37,0x4d,
1685				0x9f,0x51,0x99,0xd6, 0x9e,0xb1,0x18,0xcf,
1686				0x31,0x81,0xde,0x95, 0x0a,0x8c,0x0c,0x80,
1687				0xdc,0xf7,0x19,0x5d, 0xdc,0x3e,0xee,0x0c,
1688				0x17,0xaf,0xc4,0x9c, 0xbf,0x65,0xf2,0xe1,
1689				0xc9,0xdb,0xc0,0x2a, 0xd0,0xbd,0xa1,0x7f,
1690				0x4b,0x9c,0x5b,0xe6, 0x91,0x98,0xa6,0xdb,
1691				0x72,0xef,0x14,0x38, 0x24,0x77,0x1e,0x71,
1692				0x74,0x63,0x0c,0xd9, 0x16,0x90,0x23,0x4a,
1693				0xe6,0xa4,0xc1,0x53, 0x8b,0xb4,0x7e,0x90,
1694				0x1b,0x68,0x32,0x48, 0x93,0xd8,0x72,0x43,
1695				0x8e,0x32,0x09,0x1e, 0x48,0xfc,0x3a,0xc6,
1696				0x15,0xb9,0x79,0x57, 0x02,0x61,0xc6,0x4b,
1697				0x56,0x1e,0x68,0x4e, 0x65,0x26,0xe5,0x1c,
1698				0xb1,0xd1,0x86,0x1d, 0xea,0x93,0x5a,0x88,
1699				0x4c,0x3b,0x10,0xd1, 0xf7,0x5a,0x4c,0xa3,
1700				0xe7,0x59,0xf5,0x04, 0x7d,0xd7,0xe3,0x2e,
1701				0x2c,0x3e,0x14,0x14, 0x83,0xed,0x3d,0x0b,
1702				0xa4,0xab,0x65,0xcf, 0x39,0xee,0xbe,0x0c,
1703				0x5e,0x4b,0x62,0x5e, 0xb4,0xd2,0x16,0xc7,
1704				0xe0,0x71,0x2b,0x92, 0x1e,0x21,0x45,0x02,
1705				0xfd,0xa1,0xda,0x0b, 0xbe,0xa6,0xe5,0x7f,
1706				0x31,0x8b,0x5a,0xcb, 0x8f,0xb8,0x0c,0xfb,
1707				0x7f,0x2d,0x7e,0xa2, 0x14,0xfd,0xe0,0xbb,
1708				0xa4,0x1b,0xce,0x81, 0x6f,0x25,0xbd,0x72,
1709				0x44,0x00,0x13,0x18, 0x75,0x04,0xf3,0x06,
1710				0xdc,0xf1,0x5b,0xa0, 0xb1,0x5a,0x9a,0xd8,
1711				0x4f,0xe7,0x94,0xe1, 0x65,0xe5,0xb2,0xd1,
1712				0x47,0x6d,0xd8,0x81, 0x22,0x96,0x09,0xd8,
1713				0x5e,0x12,0x73,0x62, 0xd6,0x2c,0xcb,0x45,
1714				0x71,0xa9,0xc1,0x21, 0x16,0x6f,0xf0,0xaa,
1715				0xce,0x19,0x1f,0x68, 0xee,0x17,0x07,0x94,
1716				0x4f,0x93,0x9a,0x12, 0xf7,0x91,0xe1,0xc6,
1717				0x9c,0x29,0xe5,0x06, 0x7a,0x40,0xf5,0xf6,
1718				0x51,0xc8,0x32,0x94, 0x52,0xd9,0x6b,0x9b,
1719				0x3e,0xb5,0xcf,0x1a, 0xf1,0x6c,0x7b,0x0a,
1720				0x16,0x47,0xee,0xa6, 0x46,0x0f,0xed,0xe0,
1721				0x1b,0x3f,0x39,0xfa, 0x4c,0x69,0xeb,0xfb,
1722				0xd0,0x36,0x3b,0x3a, 0x04,0x94,0xa4,0x2f,
1723				0x51,0xe1,0x1a,0x47, 0xc9,0xdb,0xf6,0x09,
1724				0xab,0x35,0x46,0x2c, 0x2f,0xb7,0x19,0xed,
1725				0x55,0x7e,0xa3,0x2c, 0xec,0xff,0x39,0xba,
1726				0x0f,0xfb,0x4f,0x8b, 0xfc,0x36,0x4e,0x5e,
1727				0xa1,0xe8,0x49,0x15, 0x65,0xd2,0xfb,0x11,
1728				0x4b,0x10,0xe6,0x07, 0x82,0x3a,0x5d,0x3f,
1729				0xeb,0xc0,0x0b,0x76, 0x66,0xb5,0xed,0x65,
1730				0xb3,0x9d,0x06,0x13, 0x3b,0x18,0x70,0x7a,
1731				0xbd,0xf7,0xd8,0x20, 0x81,0xc7,0x76,0x2e,
1732				0x21,0x6f,0xdb,0x8e, 0xba,0x83,0x42,0xb1,
1733			},
1734		},
1735		[5] = {
1736			.k = {
1737				0x79,0xce,0xb0,0x8e, 0xf8,0x7a,0x67,0xc6,
1738				0x48,0x2c,0x2a,0xc0, 0xa5,0x45,0x06,0x49,
1739				0xc8,0x90,0xb8,0xe9, 0xc6,0xb6,0xb3,0x50,
1740				0xbd,0x9e,0x46,0x56, 0x26,0xf2,0xb0,0x3b,
1741			},
1742			.tlen = 17,
1743			.t = {
1744				0xe6,0x93,0xbe,0x89, 0xf5,0xee,0x40,0xde,
1745				0xf2,0x9c,0xb5,0xec, 0x6a,0x37,0x23,0x46,
1746				0x0e,
1747			},
1748			.len = 16,
1749			.p = {
1750				0x5d,0x83,0x98,0x37, 0xc6,0x33,0x9e,0x7e,
1751				0x59,0xad,0xd2,0x5b, 0x8a,0x3a,0x9d,0x03,
1752			},
1753			.c = {
1754				0x96,0x23,0x2f,0x7d, 0x52,0xfc,0x98,0x63,
1755				0x98,0xa5,0x8b,0xdf, 0xca,0xbc,0x85,0x2f,
1756			},
1757		},
1758		[6] = {
1759			.k = {
1760				0x9f,0xd3,0x36,0xb1, 0x85,0x07,0xdf,0x19,
1761				0x01,0xea,0xf9,0x52, 0x68,0xbf,0xce,0xe7,
1762				0xd0,0x49,0xf3,0xba, 0x58,0xfb,0x87,0x18,
1763				0x9f,0xca,0x24,0xca, 0x61,0xa3,0xf0,0xda,
1764			},
1765			.tlen = 17,
1766			.t = {
1767				0xea,0xc6,0x72,0x5e, 0x66,0xd4,0xc7,0xbd,
1768				0xa1,0x6e,0xab,0x09, 0xb5,0x58,0x39,0xae,
1769				0x40,
1770			},
1771			.len = 128,
1772			.p = {
1773				0xc7,0xd6,0x73,0x65, 0xcb,0xf3,0xf5,0x3e,
1774				0xb9,0xa7,0xbf,0xb1, 0x54,0xcb,0xac,0x01,
1775				0xee,0xb5,0x94,0x17, 0x40,0x92,0xfd,0xad,
1776				0x8f,0xdb,0x27,0x22, 0x3d,0xb1,0x0b,0xf7,
1777				0xa7,0x46,0x70,0xd0, 0x31,0xdb,0xf9,0xdb,
1778				0xb9,0xb9,0x40,0x4a, 0x0a,0xba,0x77,0x6f,
1779				0x35,0x36,0x9e,0xeb, 0x68,0xe2,0x9e,0xd7,
1780				0xef,0xc2,0x5e,0x21, 0x0d,0xb3,0xb0,0x87,
1781				0xd6,0x43,0x35,0x6e, 0x22,0xa0,0xb7,0xec,
1782				0x26,0xe0,0x7d,0x48, 0xf5,0x5d,0x58,0xd3,
1783				0x29,0xb7,0x1f,0x7e, 0xe9,0x5a,0x02,0xa4,
1784				0xb1,0xde,0x10,0x9f, 0xe1,0xa8,0x5e,0x05,
1785				0xb6,0xa2,0x59,0xca, 0x3e,0xbc,0xd1,0x94,
1786				0x09,0x4e,0x1b,0x37, 0x29,0x9c,0x15,0xef,
1787				0x8c,0x72,0x53,0xbe, 0x6f,0x25,0x2c,0x68,
1788				0x88,0x08,0x0c,0x00, 0x80,0x7a,0x85,0x64,
1789			},
1790			.c = {
1791				0x49,0x36,0x97,0xd2, 0xde,0xa4,0xde,0x92,
1792				0x7d,0x30,0x08,0xc3, 0xd9,0x47,0xd4,0xcb,
1793				0x5b,0x41,0x27,0x2c, 0x06,0xb8,0x2b,0xef,
1794				0x7b,0x57,0x59,0xb7, 0x5b,0x81,0x38,0xb4,
1795				0xd1,0x81,0xb3,0xe8, 0xac,0xf0,0xa0,0x06,
1796				0xcb,0x74,0x31,0x01, 0xe1,0x3d,0xcf,0x6d,
1797				0x57,0xd1,0x65,0xcd, 0xe7,0x33,0x6c,0x03,
1798				0x54,0xf0,0x2c,0x41, 0xb8,0x75,0x07,0x1d,
1799				0x70,0xf0,0x9c,0xbd, 0x8f,0x6b,0xdb,0x76,
1800				0x86,0x5b,0xe0,0xfd, 0xad,0x61,0x7a,0x4c,
1801				0xd6,0xf1,0x85,0x0b, 0xfd,0x0b,0x3a,0x5f,
1802				0xcf,0xfc,0xb0,0x0b, 0x2b,0xc7,0x31,0x07,
1803				0x9d,0x75,0x82,0xd9, 0x14,0xd4,0x33,0xd3,
1804				0xff,0x20,0xf7,0x14, 0xcf,0xe4,0xda,0xca,
1805				0x11,0xcc,0x57,0x8f, 0x51,0x52,0x9d,0x90,
1806				0x01,0xc8,0x4e,0x1f, 0x2a,0x89,0xe2,0x52,
1807			},
1808		},
1809	};
1810	static struct adiantum A;
1811	static uint8_t buf[4096];
1812	unsigned i;
1813	int result = 0;
1814
1815	for (i = 0; i < __arraycount(C); i++) {
1816		adiantum_init(&A, C[i].k);
1817		adiantum_enc(buf, C[i].p, C[i].len, C[i].t, C[i].tlen, &A);
1818		if (memcmp(buf, C[i].c, C[i].len)) {
1819			char prefix[16];
1820			snprintf(prefix, sizeof prefix, "adiantum enc %u", i);
1821			hexdump(printf, prefix, buf, C[i].len);
1822			result = -1;
1823		}
1824		memset(buf, 0, sizeof buf); /* paranoia */
1825		adiantum_dec(buf, C[i].c, C[i].len, C[i].t, C[i].tlen, &A);
1826		if (memcmp(buf, C[i].p, C[i].len)) {
1827			char prefix[16];
1828			snprintf(prefix, sizeof prefix, "adiantum dec %u", i);
1829			hexdump(printf, prefix, buf, C[i].len);
1830			result = -1;
1831		}
1832	}
1833
1834	return result;
1835}
1836