U-Boot
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
March 2014
- 168 participants
- 528 discussions

18 Apr '14
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Prafulla Wadaskar <prafulla(a)marvell.com>
Cc: Lei Wen <leiwen(a)marvell.com>
---
board/Marvell/common/ecctest.c | 115 -----------------------------------------
1 file changed, 115 deletions(-)
delete mode 100644 board/Marvell/common/ecctest.c
diff --git a/board/Marvell/common/ecctest.c b/board/Marvell/common/ecctest.c
deleted file mode 100644
index 0a9a2a4..0000000
--- a/board/Marvell/common/ecctest.c
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * (C) Copyright 2001
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifdef ECC_TEST
-static inline void ecc_off (void)
-{
- *(volatile int *) (INTERNAL_REG_BASE_ADDR + 0x4b4) &= ~0x00200000;
-}
-
-static inline void ecc_on (void)
-{
- *(volatile int *) (INTERNAL_REG_BASE_ADDR + 0x4b4) |= 0x00200000;
-}
-
-static int putshex (const char *buf, int len)
-{
- int i;
-
- for (i = 0; i < len; i++) {
- printf ("%02x", buf[i]);
- }
- return 0;
-}
-
-static int char_memcpy (void *d, const void *s, int len)
-{
- int i;
- char *cd = d;
- const char *cs = s;
-
- for (i = 0; i < len; i++) {
- *(cd++) = *(cs++);
- }
- return 0;
-}
-
-static int memory_test (char *buf)
-{
- const char src[][16] = {
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
- 0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
- {0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
- 0x02, 0x02, 0x02, 0x02, 0x02, 0x02},
- {0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
- 0x04, 0x04, 0x04, 0x04, 0x04, 0x04},
- {0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08,
- 0x08, 0x08, 0x08, 0x08, 0x08, 0x08},
- {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
- 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},
- {0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20},
- {0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
- 0x40, 0x40, 0x40, 0x40, 0x40, 0x40},
- {0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,
- 0x80, 0x80, 0x80, 0x80, 0x80, 0x80},
- {0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
- 0x55, 0x55, 0x55, 0x55, 0x55, 0x55},
- {0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
- 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa},
- {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
- };
- const int foo[] = { 0 };
- int i, j, a;
-
- printf ("\ntest @ %d %p\n", foo[0], buf);
- for (i = 0; i < 12; i++) {
- for (a = 0; a < 8; a++) {
- const char *s = src[i] + a;
- int align = (unsigned) (s) & 0x7;
-
- /* ecc_off(); */
- memcpy (buf, s, 8);
- /* ecc_on(); */
- putshex (s, 8);
- if (memcmp (buf, s, 8)) {
- putc ('\n');
- putshex (buf, 8);
- printf (" [FAIL] (%p) align=%d\n", s, align);
- for (j = 0; j < 8; j++) {
- s[j] == buf[j] ? puts (" ") :
- printf ("%02x",
- (s[j]) ^ (buf[j]));
- }
- putc ('\n');
- } else {
- printf (" [PASS] (%p) align=%d\n", s, align);
- }
- /* ecc_off(); */
- char_memcpy (buf, s, 8);
- /* ecc_on(); */
- putshex (s, 8);
- if (memcmp (buf, s, 8)) {
- putc ('\n');
- putshex (buf, 8);
- printf (" [FAIL] (%p) align=%d\n", s, align);
- for (j = 0; j < 8; j++) {
- s[j] == buf[j] ? puts (" ") :
- printf ("%02x",
- (s[j]) ^ (buf[j]));
- }
- putc ('\n');
- } else {
- printf (" [PASS] (%p) align=%d\n", s, align);
- }
- }
- }
-
- return 0;
-}
-#endif
--
1.8.3.2
2
1
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
---
examples/standalone/x86-testapp.c | 100 --------------------------------------
1 file changed, 100 deletions(-)
delete mode 100644 examples/standalone/x86-testapp.c
diff --git a/examples/standalone/x86-testapp.c b/examples/standalone/x86-testapp.c
deleted file mode 100644
index 1e16ec7..0000000
--- a/examples/standalone/x86-testapp.c
+++ /dev/null
@@ -1,100 +0,0 @@
-#include <stddef.h>
-#include <stdio.h>
-#include <string.h>
-
-void *func[8], **pfunc;
-
-typedef struct xxx xxx_t;
-struct xxx {
- int dummy;
- void **pfunc;
-} q;
-
-#define XF_strcpy 3
-#define XF_printf 4
-
-#define LABEL(x) \
-asm volatile ( \
-
-#if defined(__i386__)
-#define EXPORT_FUNC(x) \
-asm volatile ( \
-" .globl mon_" #x "\n" \
-"mon_" #x ":\n" \
-" movl %0, %%eax\n" \
-" movl pfunc, %%ecx\n" \
-" jmp *(%%ecx,%%eax)\n" \
- : : "i"(XF_ ## x * sizeof(void *)) : "eax", "ecx");
-#elif defined(__powerpc__)
-#define EXPORT_FUNC(x) \
-asm volatile ( \
-" .globl mon_" #x "\n" \
-"mon_" #x ":\n" \
-" lwz %%r11, %0(%%r2)\n" \
-" lwz %%r11, %1(%%r11)\n" \
-" mtctr %%r11\n" \
-" bctr\n" \
- : : "i"(offsetof(xxx_t, pfunc)), "i"(XF_ ## x * sizeof(void *)) : "r11", "r2");
-#elif defined(__arm__)
-#define EXPORT_FUNC(x) \
-asm volatile ( \
-" .globl mon_" #x "\n" \
-"mon_" #x ":\n" \
-" ldr ip, [r8, %0]\n" \
-" ldr pc, [ip, %1]\n" \
- : : "i"(offsetof(xxx_t, pfunc)), "i"(XF_ ## x * sizeof(void *)) : "ip");
-#elif defined(__mips__)
-#define EXPORT_FUNC(x) \
-asm volatile ( \
-" .globl mon_" #x "\n" \
-"mon_" #x ":\n" \
-" lw $25, %0($26)\n" \
-" lw $25, %1($25)\n" \
-" jr $25\n" \
- : : "i"(offsetof(xxx_t, pfunc)), "i"(XF_ ## x * sizeof(void *)) : "t9");
-#elif defined(__nds32__)
-#define EXPORT_FUNC(x) \
-asm volatile ( \
-" .globl mon_" #x "\n" \
-"mon_" #x ":\n" \
-" lwi $r16, [$gp + (%0)]\n" \
-" lwi $r16, [$r16 + (%1)]\n" \
-" jr $r16\n" \
-: : "i"(offsetof(xxx_t, pfunc)), \
-"i"(XF_ ## x * sizeof(void *)) : "$r16");
-
-#else
-#error [No stub code for this arch]
-#endif
-
-void dummy(void)
-{
-EXPORT_FUNC(printf)
-EXPORT_FUNC(strcpy)
-}
-
-int main(void)
-{
-#if defined(__i386__)
- xxx_t *pq;
-#elif defined(__powerpc__)
- register volatile xxx_t *pq asm("r2");
-#elif defined(__arm__)
- register volatile xxx_t *pq asm("r8");
-#elif defined(__mips__)
- register volatile xxx_t *pq asm("k0");
-#elif defined(__nds32__)
- register volatile xxx_t *pq asm("$r16");
-#endif
- char buf[32];
-
- func[XF_strcpy] = strcpy;
- func[XF_printf] = printf;
- pq = &q;
- pq->pfunc = pfunc = func;
-
- mon_strcpy(buf, "test");
- mon_printf("hi %s %d z\n", buf, 444);
-
- return 0;
-}
--
1.8.3.2
2
1

18 Apr '14
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Wolfgang Denk <wd(a)denx.de>
Cc: Jim Thompson <jim(a)musenki.com>
---
board/sandpoint/early_init.S | 137 -------------------------------------------
1 file changed, 137 deletions(-)
delete mode 100644 board/sandpoint/early_init.S
diff --git a/board/sandpoint/early_init.S b/board/sandpoint/early_init.S
deleted file mode 100644
index 5a9b924..0000000
--- a/board/sandpoint/early_init.S
+++ /dev/null
@@ -1,137 +0,0 @@
-/*
- * (C) Copyright 2001
- * Thomas Koeller, tkoeller(a)gmx.net
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifndef __ASSEMBLY__
-#define __ASSEMBLY__ 1
-#endif
-
-#include <asm-offsets.h>
-#include <config.h>
-#include <asm/processor.h>
-#include <mpc824x.h>
-#include <ppc_asm.tmpl>
-
-#if defined(USE_DINK32)
- /* We are running from RAM, so do not clear the MCCR1_MEMGO bit! */
- #define MCCR1VAL ((CONFIG_SYS_ROMNAL << MCCR1_ROMNAL_SHIFT) | (CONFIG_SYS_ROMFAL << MCCR1_ROMFAL_SHIFT) | MCCR1_MEMGO)
-#else
- #define MCCR1VAL (CONFIG_SYS_ROMNAL << MCCR1_ROMNAL_SHIFT) | (CONFIG_SYS_ROMFAL << MCCR1_ROMFAL_SHIFT)
-#endif
-
- .text
-
- /* Values to program into memory controller registers */
-tbl: .long MCCR1, MCCR1VAL
- .long MCCR2, CONFIG_SYS_REFINT << MCCR2_REFINT_SHIFT
- .long MCCR3
- .long (((CONFIG_SYS_BSTOPRE & 0x000000f0) >> 4) << MCCR3_BSTOPRE2TO5_SHIFT) | \
- (CONFIG_SYS_REFREC << MCCR3_REFREC_SHIFT) | \
- (CONFIG_SYS_RDLAT << MCCR3_RDLAT_SHIFT)
- .long MCCR4
- .long (CONFIG_SYS_PRETOACT << MCCR4_PRETOACT_SHIFT) | (CONFIG_SYS_ACTTOPRE << MCCR4_ACTTOPRE_SHIFT) | \
- (CONFIG_SYS_REGISTERD_TYPE_BUFFER << 20) | \
- (((CONFIG_SYS_BSTOPRE & 0x00000300) >> 8) << MCCR4_BSTOPRE0TO1_SHIFT ) | \
- ((CONFIG_SYS_SDMODE_CAS_LAT << 4) | (CONFIG_SYS_SDMODE_WRAP << 3) | \
- (CONFIG_SYS_SDMODE_BURSTLEN) << MCCR4_SDMODE_SHIFT) | \
- (CONFIG_SYS_ACTTORW << MCCR4_ACTTORW_SHIFT) | \
- ((CONFIG_SYS_BSTOPRE & 0x0000000f) << MCCR4_BSTOPRE6TO9_SHIFT )
- .long MSAR1
- .long (((CONFIG_SYS_BANK0_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK1_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK2_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK3_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 24)
- .long EMSAR1
- .long (((CONFIG_SYS_BANK0_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK1_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK2_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK3_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 24)
- .long MSAR2
- .long (((CONFIG_SYS_BANK4_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK5_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK6_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK7_START & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 24)
- .long EMSAR2
- .long (((CONFIG_SYS_BANK4_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK5_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK6_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK7_START & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 24)
- .long MEAR1
- .long (((CONFIG_SYS_BANK0_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK1_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK2_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK3_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 24)
- .long EMEAR1
- .long (((CONFIG_SYS_BANK0_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK1_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK2_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK3_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 24)
- .long MEAR2
- .long (((CONFIG_SYS_BANK4_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK5_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK6_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK7_END & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT) << 24)
- .long EMEAR2
- .long (((CONFIG_SYS_BANK4_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 0) | \
- (((CONFIG_SYS_BANK5_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 8) | \
- (((CONFIG_SYS_BANK6_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 16) | \
- (((CONFIG_SYS_BANK7_END & MICR_EADDR_MASK) >> MICR_EADDR_SHIFT) << 24)
- .long 0
-
-
- /*
- * Early CPU initialization. Set up memory controller, so we can access any RAM at all. This
- * must be done in assembly, since we have no stack at this point.
- */
- .global early_init_f
-early_init_f:
- mflr r10
-
- /* basic memory controller configuration */
- lis r3, CONFIG_ADDR_HIGH
- lis r4, CONFIG_DATA_HIGH
- bl lab
-lab: mflr r5
- lwzu r0, tbl - lab(r5)
-loop: lwz r1, 4(r5)
- stwbrx r0, 0, r3
- eieio
- stwbrx r1, 0, r4
- eieio
- lwzu r0, 8(r5)
- cmpli cr0, 0, r0, 0
- bne cr0, loop
-
- /* set bank enable bits */
- lis r0, MBER@h
- ori r0, 0, MBER@l
- li r1, CONFIG_SYS_BANK_ENABLE
- stwbrx r0, 0, r3
- eieio
- stb r1, 0(r4)
- eieio
-
- /* delay loop */
- lis r0, 0x0003
- mtctr r0
-delay: bdnz delay
-
- /* enable memory controller */
- lis r0, MCCR1@h
- ori r0, 0, MCCR1@l
- stwbrx r0, 0, r3
- eieio
- lwbrx r0, 0, r4
- oris r0, 0, MCCR1_MEMGO@h
- stwbrx r0, 0, r4
- eieio
-
- /* set up stack pointer */
- lis r1, CONFIG_SYS_INIT_SP_OFFSET@h
- ori r1, r1, CONFIG_SYS_INIT_SP_OFFSET@l
-
- mtlr r10
- blr
--
1.8.3.2
2
1

18 Apr '14
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Brad Kemp <Brad.Kemp(a)seranoa.com>
---
board/ppmc8260/strataflash.c | 736 -------------------------------------------
1 file changed, 736 deletions(-)
delete mode 100644 board/ppmc8260/strataflash.c
diff --git a/board/ppmc8260/strataflash.c b/board/ppmc8260/strataflash.c
deleted file mode 100644
index ea3c42e..0000000
--- a/board/ppmc8260/strataflash.c
+++ /dev/null
@@ -1,736 +0,0 @@
-/*
- * (C) Copyright 2002
- * Brad Kemp, Seranoa Networks, Brad.Kemp(a)seranoa.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <mpc8260.h>
-#include <asm/processor.h>
-
-#undef DEBUG_FLASH
-/*
- * This file implements a Common Flash Interface (CFI) driver for U-Boot.
- * The width of the port and the width of the chips are determined at initialization.
- * These widths are used to calculate the address for access CFI data structures.
- * It has been tested on an Intel Strataflash implementation.
- *
- * References
- * JEDEC Standard JESD68 - Common Flash Interface (CFI)
- * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes
- * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets
- * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet
- *
- * TODO
- * Use Primary Extended Query table (PRI) and Alternate Algorithm Query Table (ALT) to determine if protection is available
- * Add support for other command sets Use the PRI and ALT to determine command set
- * Verify erase and program timeouts.
- */
-
-#define FLASH_CMD_CFI 0x98
-#define FLASH_CMD_READ_ID 0x90
-#define FLASH_CMD_RESET 0xff
-#define FLASH_CMD_BLOCK_ERASE 0x20
-#define FLASH_CMD_ERASE_CONFIRM 0xD0
-#define FLASH_CMD_WRITE 0x40
-#define FLASH_CMD_PROTECT 0x60
-#define FLASH_CMD_PROTECT_SET 0x01
-#define FLASH_CMD_PROTECT_CLEAR 0xD0
-#define FLASH_CMD_CLEAR_STATUS 0x50
-#define FLASH_CMD_WRITE_TO_BUFFER 0xE8
-#define FLASH_CMD_WRITE_BUFFER_CONFIRM 0xD0
-
-#define FLASH_STATUS_DONE 0x80
-#define FLASH_STATUS_ESS 0x40
-#define FLASH_STATUS_ECLBS 0x20
-#define FLASH_STATUS_PSLBS 0x10
-#define FLASH_STATUS_VPENS 0x08
-#define FLASH_STATUS_PSS 0x04
-#define FLASH_STATUS_DPS 0x02
-#define FLASH_STATUS_R 0x01
-#define FLASH_STATUS_PROTECT 0x01
-
-#define FLASH_OFFSET_CFI 0x55
-#define FLASH_OFFSET_CFI_RESP 0x10
-#define FLASH_OFFSET_WTOUT 0x1F
-#define FLASH_OFFSET_WBTOUT 0x20
-#define FLASH_OFFSET_ETOUT 0x21
-#define FLASH_OFFSET_CETOUT 0x22
-#define FLASH_OFFSET_WMAX_TOUT 0x23
-#define FLASH_OFFSET_WBMAX_TOUT 0x24
-#define FLASH_OFFSET_EMAX_TOUT 0x25
-#define FLASH_OFFSET_CEMAX_TOUT 0x26
-#define FLASH_OFFSET_SIZE 0x27
-#define FLASH_OFFSET_INTERFACE 0x28
-#define FLASH_OFFSET_BUFFER_SIZE 0x2A
-#define FLASH_OFFSET_NUM_ERASE_REGIONS 0x2C
-#define FLASH_OFFSET_ERASE_REGIONS 0x2D
-#define FLASH_OFFSET_PROTECT 0x02
-#define FLASH_OFFSET_USER_PROTECTION 0x85
-#define FLASH_OFFSET_INTEL_PROTECTION 0x81
-
-
-#define FLASH_MAN_CFI 0x01000000
-
-
-typedef union {
- unsigned char c;
- unsigned short w;
- unsigned long l;
-} cfiword_t;
-
-typedef union {
- unsigned char * cp;
- unsigned short *wp;
- unsigned long *lp;
-} cfiptr_t;
-
-#define NUM_ERASE_REGIONS 4
-
-flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
-
-
-/*-----------------------------------------------------------------------
- * Functions
- */
-
-
-static void flash_add_byte(flash_info_t *info, cfiword_t * cword, uchar c);
-static void flash_make_cmd(flash_info_t * info, uchar cmd, void * cmdbuf);
-static void flash_write_cmd(flash_info_t * info, int sect, uchar offset, uchar cmd);
-static int flash_isequal(flash_info_t * info, int sect, uchar offset, uchar cmd);
-static int flash_isset(flash_info_t * info, int sect, uchar offset, uchar cmd);
-static int flash_detect_cfi(flash_info_t * info);
-static ulong flash_get_size (ulong base, int banknum);
-static int flash_write_cfiword (flash_info_t *info, ulong dest, cfiword_t cword);
-static int flash_full_status_check(flash_info_t * info, ulong sector, ulong tout, char * prompt);
-#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
-static int flash_write_cfibuffer(flash_info_t * info, ulong dest, uchar * cp, int len);
-#endif
-/*-----------------------------------------------------------------------
- * create an address based on the offset and the port width
- */
-inline uchar * flash_make_addr(flash_info_t * info, int sect, int offset)
-{
- return ((uchar *)(info->start[sect] + (offset * info->portwidth)));
-}
-/*-----------------------------------------------------------------------
- * read a character at a port width address
- */
-inline uchar flash_read_uchar(flash_info_t * info, uchar offset)
-{
- uchar *cp;
- cp = flash_make_addr(info, 0, offset);
- return (cp[info->portwidth - 1]);
-}
-
-/*-----------------------------------------------------------------------
- * read a short word by swapping for ppc format.
- */
-ushort flash_read_ushort(flash_info_t * info, int sect, uchar offset)
-{
- uchar * addr;
-
- addr = flash_make_addr(info, sect, offset);
- return ((addr[(2*info->portwidth) - 1] << 8) | addr[info->portwidth - 1]);
-
-}
-
-/*-----------------------------------------------------------------------
- * read a long word by picking the least significant byte of each maiximum
- * port size word. Swap for ppc format.
- */
-ulong flash_read_long(flash_info_t * info, int sect, uchar offset)
-{
- uchar * addr;
-
- addr = flash_make_addr(info, sect, offset);
- return ( (addr[(2*info->portwidth) - 1] << 24 ) | (addr[(info->portwidth) -1] << 16) |
- (addr[(4*info->portwidth) - 1] << 8) | addr[(3*info->portwidth) - 1]);
-
-}
-
-/*-----------------------------------------------------------------------
- */
-unsigned long flash_init (void)
-{
- unsigned long size;
- int i;
- unsigned long address;
-
-
- /* The flash is positioned back to back, with the demultiplexing of the chip
- * based on the A24 address line.
- *
- */
-
- address = CONFIG_SYS_FLASH_BASE;
- size = 0;
-
-
- /* Init: no FLASHes known */
- for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
- flash_info[i].flash_id = FLASH_UNKNOWN;
- size += flash_info[i].size = flash_get_size(address, i);
- address += CONFIG_SYS_FLASH_INCREMENT;
- if (flash_info[0].flash_id == FLASH_UNKNOWN) {
- printf ("## Unknown FLASH on Bank %d - Size = 0x%08lx = %ld MB\n",i,
- flash_info[0].size, flash_info[i].size<<20);
- }
- }
-
- /* Monitor protection ON by default */
-#if (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE)
- for(i=0; flash_info[0].start[i] < CONFIG_SYS_MONITOR_BASE+monitor_flash_len-1; i++)
- (void)flash_real_protect(&flash_info[0], i, 1);
-#endif
-
- return (size);
-}
-
-/*-----------------------------------------------------------------------
- */
-int flash_erase (flash_info_t *info, int s_first, int s_last)
-{
- int rcode = 0;
- int prot;
- int sect;
-
- if( info->flash_id != FLASH_MAN_CFI) {
- printf ("Can't erase unknown flash type - aborted\n");
- return 1;
- }
- if ((s_first < 0) || (s_first > s_last)) {
- printf ("- no sectors to erase\n");
- return 1;
- }
-
- prot = 0;
- for (sect=s_first; sect<=s_last; ++sect) {
- if (info->protect[sect]) {
- prot++;
- }
- }
- if (prot) {
- printf ("- Warning: %d protected sectors will not be erased!\n",
- prot);
- } else {
- printf ("\n");
- }
-
-
- for (sect = s_first; sect<=s_last; sect++) {
- if (info->protect[sect] == 0) { /* not protected */
- flash_write_cmd(info, sect, 0, FLASH_CMD_CLEAR_STATUS);
- flash_write_cmd(info, sect, 0, FLASH_CMD_BLOCK_ERASE);
- flash_write_cmd(info, sect, 0, FLASH_CMD_ERASE_CONFIRM);
-
- if(flash_full_status_check(info, sect, info->erase_blk_tout, "erase")) {
- rcode = 1;
- } else
- printf(".");
- }
- }
- printf (" done\n");
- return rcode;
-}
-
-/*-----------------------------------------------------------------------
- */
-void flash_print_info (flash_info_t *info)
-{
- int i;
-
- if (info->flash_id != FLASH_MAN_CFI) {
- printf ("missing or unknown FLASH type\n");
- return;
- }
-
- printf("CFI conformant FLASH (%d x %d)",
- (info->portwidth << 3 ), (info->chipwidth << 3 ));
- printf (" Size: %ld MB in %d Sectors\n",
- info->size >> 20, info->sector_count);
- printf(" Erase timeout %ld ms, write timeout %ld ms, buffer write timeout %ld ms, buffer size %d\n",
- info->erase_blk_tout, info->write_tout, info->buffer_write_tout, info->buffer_size);
-
- printf (" Sector Start Addresses:");
- for (i=0; i<info->sector_count; ++i) {
- if ((i % 5) == 0)
- printf ("\n");
- printf (" %08lX%5s",
- info->start[i],
- info->protect[i] ? " (RO)" : " "
- );
- }
- printf ("\n");
- return;
-}
-
-/*-----------------------------------------------------------------------
- * Copy memory to flash, returns:
- * 0 - OK
- * 1 - write timeout
- * 2 - Flash not erased
- */
-int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
-{
- ulong wp;
- ulong cp;
- int aln;
- cfiword_t cword;
- int i, rc;
-
- /* get lower aligned address */
- wp = (addr & ~(info->portwidth - 1));
-
- /* handle unaligned start */
- if((aln = addr - wp) != 0) {
- cword.l = 0;
- cp = wp;
- for(i=0;i<aln; ++i, ++cp)
- flash_add_byte(info, &cword, (*(uchar *)cp));
-
- for(; (i< info->portwidth) && (cnt > 0) ; i++) {
- flash_add_byte(info, &cword, *src++);
- cnt--;
- cp++;
- }
- for(; (cnt == 0) && (i < info->portwidth); ++i, ++cp)
- flash_add_byte(info, &cword, (*(uchar *)cp));
- if((rc = flash_write_cfiword(info, wp, cword)) != 0)
- return rc;
- wp = cp;
- }
-
-#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
- while(cnt >= info->portwidth) {
- i = info->buffer_size > cnt? cnt: info->buffer_size;
- if((rc = flash_write_cfibuffer(info, wp, src,i)) != ERR_OK)
- return rc;
- wp += i;
- src += i;
- cnt -=i;
- }
-#else
- /* handle the aligned part */
- while(cnt >= info->portwidth) {
- cword.l = 0;
- for(i = 0; i < info->portwidth; i++) {
- flash_add_byte(info, &cword, *src++);
- }
- if((rc = flash_write_cfiword(info, wp, cword)) != 0)
- return rc;
- wp += info->portwidth;
- cnt -= info->portwidth;
- }
-#endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
- if (cnt == 0) {
- return (0);
- }
-
- /*
- * handle unaligned tail bytes
- */
- cword.l = 0;
- for (i=0, cp=wp; (i<info->portwidth) && (cnt>0); ++i, ++cp) {
- flash_add_byte(info, &cword, *src++);
- --cnt;
- }
- for (; i<info->portwidth; ++i, ++cp) {
- flash_add_byte(info, & cword, (*(uchar *)cp));
- }
-
- return flash_write_cfiword(info, wp, cword);
-}
-
-/*-----------------------------------------------------------------------
- */
-int flash_real_protect(flash_info_t *info, long sector, int prot)
-{
- int retcode = 0;
-
- flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
- flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT);
- if(prot)
- flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT_SET);
- else
- flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT_CLEAR);
-
- if((retcode = flash_full_status_check(info, sector, info->erase_blk_tout,
- prot?"protect":"unprotect")) == 0) {
-
- info->protect[sector] = prot;
- /* Intel's unprotect unprotects all locking */
- if(prot == 0) {
- int i;
- for(i = 0 ; i<info->sector_count; i++) {
- if(info->protect[i])
- flash_real_protect(info, i, 1);
- }
- }
- }
-
- return retcode;
-}
-/*-----------------------------------------------------------------------
- * wait for XSR.7 to be set. Time out with an error if it does not.
- * This routine does not set the flash to read-array mode.
- */
-static int flash_status_check(flash_info_t * info, ulong sector, ulong tout, char * prompt)
-{
- ulong start;
-
- /* Wait for command completion */
- start = get_timer (0);
- while(!flash_isset(info, sector, 0, FLASH_STATUS_DONE)) {
- if (get_timer(start) > info->erase_blk_tout) {
- printf("Flash %s timeout at address %lx\n", prompt, info->start[sector]);
- flash_write_cmd(info, sector, 0, FLASH_CMD_RESET);
- return ERR_TIMOUT;
- }
- }
- return ERR_OK;
-}
-/*-----------------------------------------------------------------------
- * Wait for XSR.7 to be set, if it times out print an error, otherwise do a full status check.
- * This routine sets the flash to read-array mode.
- */
-static int flash_full_status_check(flash_info_t * info, ulong sector, ulong tout, char * prompt)
-{
- int retcode;
- retcode = flash_status_check(info, sector, tout, prompt);
- if((retcode == ERR_OK) && !flash_isequal(info,sector, 0, FLASH_STATUS_DONE)) {
- retcode = ERR_INVAL;
- printf("Flash %s error at address %lx\n", prompt,info->start[sector]);
- if(flash_isset(info, sector, 0, FLASH_STATUS_ECLBS | FLASH_STATUS_PSLBS)){
- printf("Command Sequence Error.\n");
- } else if(flash_isset(info, sector, 0, FLASH_STATUS_ECLBS)){
- printf("Block Erase Error.\n");
- retcode = ERR_NOT_ERASED;
- } else if (flash_isset(info, sector, 0, FLASH_STATUS_PSLBS)) {
- printf("Locking Error\n");
- }
- if(flash_isset(info, sector, 0, FLASH_STATUS_DPS)){
- printf("Block locked.\n");
- retcode = ERR_PROTECTED;
- }
- if(flash_isset(info, sector, 0, FLASH_STATUS_VPENS))
- printf("Vpp Low Error.\n");
- }
- flash_write_cmd(info, sector, 0, FLASH_CMD_RESET);
- return retcode;
-}
-/*-----------------------------------------------------------------------
- */
-static void flash_add_byte(flash_info_t *info, cfiword_t * cword, uchar c)
-{
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- cword->c = c;
- break;
- case FLASH_CFI_16BIT:
- cword->w = (cword->w << 8) | c;
- break;
- case FLASH_CFI_32BIT:
- cword->l = (cword->l << 8) | c;
- }
-}
-
-
-/*-----------------------------------------------------------------------
- * make a proper sized command based on the port and chip widths
- */
-static void flash_make_cmd(flash_info_t * info, uchar cmd, void * cmdbuf)
-{
- int i;
- uchar *cp = (uchar *)cmdbuf;
- for(i=0; i< info->portwidth; i++)
- *cp++ = ((i+1) % info->chipwidth) ? '\0':cmd;
-}
-
-/*
- * Write a proper sized command to the correct address
- */
-static void flash_write_cmd(flash_info_t * info, int sect, uchar offset, uchar cmd)
-{
-
- volatile cfiptr_t addr;
- cfiword_t cword;
- addr.cp = flash_make_addr(info, sect, offset);
- flash_make_cmd(info, cmd, &cword);
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- *addr.cp = cword.c;
- break;
- case FLASH_CFI_16BIT:
- *addr.wp = cword.w;
- break;
- case FLASH_CFI_32BIT:
- *addr.lp = cword.l;
- break;
- }
-}
-
-/*-----------------------------------------------------------------------
- */
-static int flash_isequal(flash_info_t * info, int sect, uchar offset, uchar cmd)
-{
- cfiptr_t cptr;
- cfiword_t cword;
- int retval;
- cptr.cp = flash_make_addr(info, sect, offset);
- flash_make_cmd(info, cmd, &cword);
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- retval = (cptr.cp[0] == cword.c);
- break;
- case FLASH_CFI_16BIT:
- retval = (cptr.wp[0] == cword.w);
- break;
- case FLASH_CFI_32BIT:
- retval = (cptr.lp[0] == cword.l);
- break;
- default:
- retval = 0;
- break;
- }
- return retval;
-}
-/*-----------------------------------------------------------------------
- */
-static int flash_isset(flash_info_t * info, int sect, uchar offset, uchar cmd)
-{
- cfiptr_t cptr;
- cfiword_t cword;
- int retval;
- cptr.cp = flash_make_addr(info, sect, offset);
- flash_make_cmd(info, cmd, &cword);
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- retval = ((cptr.cp[0] & cword.c) == cword.c);
- break;
- case FLASH_CFI_16BIT:
- retval = ((cptr.wp[0] & cword.w) == cword.w);
- break;
- case FLASH_CFI_32BIT:
- retval = ((cptr.lp[0] & cword.l) == cword.l);
- break;
- default:
- retval = 0;
- break;
- }
- return retval;
-}
-
-/*-----------------------------------------------------------------------
- * detect if flash is compatible with the Common Flash Interface (CFI)
- * http://www.jedec.org/download/search/jesd68.pdf
- *
-*/
-static int flash_detect_cfi(flash_info_t * info)
-{
-
- for(info->portwidth=FLASH_CFI_8BIT; info->portwidth <= FLASH_CFI_32BIT;
- info->portwidth <<= 1) {
- for(info->chipwidth =FLASH_CFI_BY8;
- info->chipwidth <= info->portwidth;
- info->chipwidth <<= 1) {
- flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
- flash_write_cmd(info, 0, FLASH_OFFSET_CFI, FLASH_CMD_CFI);
- if(flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP,'Q') &&
- flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R') &&
- flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y'))
- return 1;
- }
- }
- return 0;
-}
-/*
- * The following code cannot be run from FLASH!
- *
- */
-static ulong flash_get_size (ulong base, int banknum)
-{
- flash_info_t * info = &flash_info[banknum];
- int i, j;
- int sect_cnt;
- unsigned long sector;
- unsigned long tmp;
- int size_ratio;
- uchar num_erase_regions;
- int erase_region_size;
- int erase_region_count;
-
- info->start[0] = base;
-
- if(flash_detect_cfi(info)){
- size_ratio = info->portwidth / info->chipwidth;
- num_erase_regions = flash_read_uchar(info, FLASH_OFFSET_NUM_ERASE_REGIONS);
-#ifdef DEBUG_FLASH
- printf("found %d erase regions\n", num_erase_regions);
-#endif
- sect_cnt = 0;
- sector = base;
- for(i = 0 ; i < num_erase_regions; i++) {
- if(i > NUM_ERASE_REGIONS) {
- printf("%d erase regions found, only %d used\n",
- num_erase_regions, NUM_ERASE_REGIONS);
- break;
- }
- tmp = flash_read_long(info, 0, FLASH_OFFSET_ERASE_REGIONS);
- erase_region_size = (tmp & 0xffff)? ((tmp & 0xffff) * 256): 128;
- tmp >>= 16;
- erase_region_count = (tmp & 0xffff) +1;
- for(j = 0; j< erase_region_count; j++) {
- info->start[sect_cnt] = sector;
- sector += (erase_region_size * size_ratio);
- info->protect[sect_cnt] = flash_isset(info, sect_cnt, FLASH_OFFSET_PROTECT, FLASH_STATUS_PROTECT);
- sect_cnt++;
- }
- }
-
- info->sector_count = sect_cnt;
- /* multiply the size by the number of chips */
- info->size = (1 << flash_read_uchar(info, FLASH_OFFSET_SIZE)) * size_ratio;
- info->buffer_size = (1 << flash_read_ushort(info, 0, FLASH_OFFSET_BUFFER_SIZE));
- tmp = 1 << flash_read_uchar(info, FLASH_OFFSET_ETOUT);
- info->erase_blk_tout = (tmp * (1 << flash_read_uchar(info, FLASH_OFFSET_EMAX_TOUT)));
- tmp = 1 << flash_read_uchar(info, FLASH_OFFSET_WBTOUT);
- info->buffer_write_tout = (tmp * (1 << flash_read_uchar(info, FLASH_OFFSET_WBMAX_TOUT)));
- tmp = 1 << flash_read_uchar(info, FLASH_OFFSET_WTOUT);
- info->write_tout = (tmp * (1 << flash_read_uchar(info, FLASH_OFFSET_WMAX_TOUT)))/ 1000;
- info->flash_id = FLASH_MAN_CFI;
- }
-
- flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
- return(info->size);
-}
-
-
-/*-----------------------------------------------------------------------
- */
-static int flash_write_cfiword (flash_info_t *info, ulong dest, cfiword_t cword)
-{
-
- cfiptr_t ctladdr;
- cfiptr_t cptr;
- int flag;
-
- ctladdr.cp = flash_make_addr(info, 0, 0);
- cptr.cp = (uchar *)dest;
-
-
- /* Check if Flash is (sufficiently) erased */
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- flag = ((cptr.cp[0] & cword.c) == cword.c);
- break;
- case FLASH_CFI_16BIT:
- flag = ((cptr.wp[0] & cword.w) == cword.w);
- break;
- case FLASH_CFI_32BIT:
- flag = ((cptr.lp[0] & cword.l) == cword.l);
- break;
- default:
- return 2;
- }
- if(!flag)
- return 2;
-
- /* Disable interrupts which might cause a timeout here */
- flag = disable_interrupts();
-
- flash_write_cmd(info, 0, 0, FLASH_CMD_CLEAR_STATUS);
- flash_write_cmd(info, 0, 0, FLASH_CMD_WRITE);
-
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- cptr.cp[0] = cword.c;
- break;
- case FLASH_CFI_16BIT:
- cptr.wp[0] = cword.w;
- break;
- case FLASH_CFI_32BIT:
- cptr.lp[0] = cword.l;
- break;
- }
-
- /* re-enable interrupts if necessary */
- if(flag)
- enable_interrupts();
-
- return flash_full_status_check(info, 0, info->write_tout, "write");
-}
-
-#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
-
-/* loop through the sectors from the highest address
- * when the passed address is greater or equal to the sector address
- * we have a match
- */
-static int find_sector(flash_info_t *info, ulong addr)
-{
- int sector;
- for(sector = info->sector_count - 1; sector >= 0; sector--) {
- if(addr >= info->start[sector])
- break;
- }
- return sector;
-}
-
-static int flash_write_cfibuffer(flash_info_t * info, ulong dest, uchar * cp, int len)
-{
-
- int sector;
- int cnt;
- int retcode;
- volatile cfiptr_t src;
- volatile cfiptr_t dst;
-
- src.cp = cp;
- dst.cp = (uchar *)dest;
- sector = find_sector(info, dest);
- flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
- flash_write_cmd(info, sector, 0, FLASH_CMD_WRITE_TO_BUFFER);
- if((retcode = flash_status_check(info, sector, info->buffer_write_tout,
- "write to buffer")) == ERR_OK) {
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- cnt = len;
- break;
- case FLASH_CFI_16BIT:
- cnt = len >> 1;
- break;
- case FLASH_CFI_32BIT:
- cnt = len >> 2;
- break;
- default:
- return ERR_INVAL;
- break;
- }
- flash_write_cmd(info, sector, 0, (uchar)cnt-1);
- while(cnt-- > 0) {
- switch(info->portwidth) {
- case FLASH_CFI_8BIT:
- *dst.cp++ = *src.cp++;
- break;
- case FLASH_CFI_16BIT:
- *dst.wp++ = *src.wp++;
- break;
- case FLASH_CFI_32BIT:
- *dst.lp++ = *src.lp++;
- break;
- default:
- return ERR_INVAL;
- break;
- }
- }
- flash_write_cmd(info, sector, 0, FLASH_CMD_WRITE_BUFFER_CONFIRM);
- retcode = flash_full_status_check(info, sector, info->buffer_write_tout,
- "buffer write");
- }
- flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
- return retcode;
-}
-#endif /* CONFIG_SYS_USE_FLASH_BUFFER_WRITE */
--
1.8.3.2
2
1
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Chin Liang See <clsee(a)altera.com>
Cc: Dinh Nguyen <dinguyen(a)altera.com>
Cc: Scott McNutt <smcnutt(a)psyent.com>
---
board/altera/common/AMDLV065D.c | 174 --------------------------------------
board/altera/common/flash.c | 180 ----------------------------------------
2 files changed, 354 deletions(-)
delete mode 100644 board/altera/common/AMDLV065D.c
delete mode 100644 board/altera/common/flash.c
diff --git a/board/altera/common/AMDLV065D.c b/board/altera/common/AMDLV065D.c
deleted file mode 100644
index eaa6b98..0000000
--- a/board/altera/common/AMDLV065D.c
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- * (C) Copyright 2000-2004
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-
-#include <common.h>
-#if defined(CONFIG_NIOS)
-#include <nios.h>
-#else
-#include <asm/io.h>
-#endif
-
-#define SECTSZ (64 * 1024)
-flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
-
-/*----------------------------------------------------------------------*/
-unsigned long flash_init (void)
-{
- int i;
- unsigned long addr;
- flash_info_t *fli = &flash_info[0];
-
- fli->size = CONFIG_SYS_FLASH_SIZE;
- fli->sector_count = CONFIG_SYS_MAX_FLASH_SECT;
- fli->flash_id = FLASH_MAN_AMD + FLASH_AMDLV065D;
-
- addr = CONFIG_SYS_FLASH_BASE;
- for (i = 0; i < fli->sector_count; ++i) {
- fli->start[i] = addr;
- addr += SECTSZ;
- fli->protect[i] = 1;
- }
-
- return (CONFIG_SYS_FLASH_SIZE);
-}
-/*--------------------------------------------------------------------*/
-void flash_print_info (flash_info_t * info)
-{
- int i, k;
- int erased;
- unsigned long *addr;
-
- printf (" Size: %ld KB in %d Sectors\n",
- info->size >> 10, info->sector_count);
- printf (" Sector Start Addresses:");
- for (i = 0; i < info->sector_count; ++i) {
-
- /* Check if whole sector is erased */
- erased = 1;
- addr = (unsigned long *) info->start[i];
- for (k = 0; k < SECTSZ/sizeof(unsigned long); k++) {
- if ( readl(addr++) != (unsigned long)-1) {
- erased = 0;
- break;
- }
- }
-
- /* Print the info */
- if ((i % 5) == 0)
- printf ("\n ");
- printf (" %08lX%s%s",
- info->start[i],
- erased ? " E" : " ",
- info->protect[i] ? "RO " : " ");
- }
- printf ("\n");
-}
-
-/*-------------------------------------------------------------------*/
-
-
-int flash_erase (flash_info_t * info, int s_first, int s_last)
-{
- unsigned char *addr = (unsigned char *) info->start[0];
- unsigned char *addr2;
- int prot, sect;
- ulong start;
-
- /* Some sanity checking */
- if ((s_first < 0) || (s_first > s_last)) {
- printf ("- no sectors to erase\n");
- return 1;
- }
-
- prot = 0;
- for (sect = s_first; sect <= s_last; ++sect) {
- if (info->protect[sect]) {
- prot++;
- }
- }
- if (prot) {
- printf ("- Warning: %d protected sectors will not be erased!\n",
- prot);
- } else {
- printf ("\n");
- }
-
- /* It's ok to erase multiple sectors provided we don't delay more
- * than 50 usec between cmds ... at which point the erase time-out
- * occurs. So don't go and put printf() calls in the loop ... it
- * won't be very helpful ;-)
- */
- for (sect = s_first; sect <= s_last; sect++) {
- if (info->protect[sect] == 0) { /* not protected */
- addr2 = (unsigned char *) info->start[sect];
- writeb (0xaa, addr);
- writeb (0x55, addr);
- writeb (0x80, addr);
- writeb (0xaa, addr);
- writeb (0x55, addr);
- writeb (0x30, addr2);
- /* Now just wait for 0xff & provide some user
- * feedback while we wait.
- */
- start = get_timer (0);
- while ( readb (addr2) != 0xff) {
- udelay (1000 * 1000);
- putc ('.');
- if (get_timer (start) > CONFIG_SYS_FLASH_ERASE_TOUT) {
- printf ("timeout\n");
- return 1;
- }
- }
- }
- }
- printf ("\n");
- return 0;
-}
-
-/*-----------------------------------------------------------------------
- * Copy memory to flash, returns:
- * 0 - OK
- * 1 - write timeout
- * 2 - Flash not erased
- */
-
-int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
-{
-
- vu_char *cmd = (vu_char *) info->start[0];
- vu_char *dst = (vu_char *) addr;
- unsigned char b;
- ulong start;
-
- while (cnt) {
- /* Check for sufficient erase */
- b = *src;
- if ((readb (dst) & b) != b) {
- printf ("%02x : %02x\n", readb (dst), b);
- return (2);
- }
-
- writeb (0xaa, cmd);
- writeb (0x55, cmd);
- writeb (0xa0, cmd);
- writeb (b, dst);
-
- /* Verify write */
- start = get_timer (0);
- while (readb (dst) != b) {
- if (get_timer (start) > CONFIG_SYS_FLASH_WRITE_TOUT) {
- return 1;
- }
- }
- dst++;
- src++;
- cnt--;
- }
-
- return (0);
-}
diff --git a/board/altera/common/flash.c b/board/altera/common/flash.c
deleted file mode 100644
index 8f56a30..0000000
--- a/board/altera/common/flash.c
+++ /dev/null
@@ -1,180 +0,0 @@
-/*
- * (C) Copyright 2000-2004
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-
-#include <common.h>
-#include <nios.h>
-
-flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
-
-/*--------------------------------------------------------------------*/
-void flash_print_info (flash_info_t * info)
-{
- int i, k;
- unsigned long size;
- int erased;
- volatile unsigned char *flash;
-
- printf (" Size: %ld KB in %d Sectors\n",
- info->size >> 10, info->sector_count);
- printf (" Sector Start Addresses:");
- for (i = 0; i < info->sector_count; ++i) {
-
- /* Check if whole sector is erased */
- if (i != (info->sector_count - 1))
- size = info->start[i + 1] - info->start[i];
- else
- size = info->start[0] + info->size - info->start[i];
- erased = 1;
- flash = (volatile unsigned char *) info->start[i];
- for (k = 0; k < size; k++) {
- if (*flash++ != 0xff) {
- erased = 0;
- break;
- }
- }
-
- /* Print the info */
- if ((i % 5) == 0)
- printf ("\n ");
- printf (" %08lX%s%s", info->start[i], erased ? " E" : " ",
- info->protect[i] ? "RO " : " ");
- }
- printf ("\n");
-}
-
-/*-------------------------------------------------------------------*/
-
-
-int flash_erase (flash_info_t * info, int s_first, int s_last)
-{
- volatile CONFIG_SYS_FLASH_WORD_SIZE *addr = (CONFIG_SYS_FLASH_WORD_SIZE *) (info->start[0]);
- volatile CONFIG_SYS_FLASH_WORD_SIZE *addr2;
- int prot, sect;
- unsigned oldpri;
- ulong start;
-
- /* Some sanity checking */
- if ((s_first < 0) || (s_first > s_last)) {
- printf ("- no sectors to erase\n");
- return 1;
- }
-
- prot = 0;
- for (sect = s_first; sect <= s_last; ++sect) {
- if (info->protect[sect]) {
- prot++;
- }
- }
- if (prot) {
- printf ("- Warning: %d protected sectors will not be erased!\n",
- prot);
- } else {
- printf ("\n");
- }
-
-#ifdef DEBUG
- for (sect = s_first; sect <= s_last; sect++) {
- printf("- Erase: Sect: %i @ 0x%08x\n", sect, info->start[sect]);
- }
-#endif
-
- /* NOTE: disabling interrupts on Nios can be very bad since it
- * also disables the LO_LIMIT exception. It's better here to
- * set the interrupt priority to 3 & restore it when we're done.
- */
- oldpri = ipri (3);
-
- /* It's ok to erase multiple sectors provided we don't delay more
- * than 50 usec between cmds ... at which point the erase time-out
- * occurs. So don't go and put printf() calls in the loop ... it
- * won't be very helpful ;-)
- */
- for (sect = s_first; sect <= s_last; sect++) {
- if (info->protect[sect] == 0) { /* not protected */
- addr2 = (CONFIG_SYS_FLASH_WORD_SIZE *) (info->start[sect]);
- *addr = 0xaa;
- *addr = 0x55;
- *addr = 0x80;
- *addr = 0xaa;
- *addr = 0x55;
- *addr2 = 0x30;
- /* Now just wait for 0xff & provide some user
- * feedback while we wait. Here we have to grant
- * timer interrupts. Otherwise get_timer() can't
- * work right. */
- ipri(oldpri);
- start = get_timer (0);
- while (*addr2 != 0xff) {
- udelay (1000 * 1000);
- putc ('.');
- if (get_timer (start) > CONFIG_SYS_FLASH_ERASE_TOUT) {
- printf ("timeout\n");
- return 1;
- }
- }
- oldpri = ipri (3); /* disallow non important irqs again */
- }
- }
-
- printf ("\n");
-
- /* Restore interrupt priority */
- ipri (oldpri);
-
- return 0;
-}
-
-/*-----------------------------------------------------------------------
- * Copy memory to flash, returns:
- * 0 - OK
- * 1 - write timeout
- * 2 - Flash not erased
- */
-
-int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
-{
-
- vu_char *cmd = (vu_char *) info->start[0];
- vu_char *dst = (vu_char *) addr;
- unsigned char b;
- unsigned oldpri;
- ulong start;
-
- while (cnt) {
- /* Check for sufficient erase */
- b = *src;
- if ((*dst & b) != b) {
- printf ("%02x : %02x\n", *dst, b);
- return (2);
- }
-
- /* Disable interrupts other than window underflow
- * (interrupt priority 2)
- */
- oldpri = ipri (3);
- *cmd = 0xaa;
- *cmd = 0x55;
- *cmd = 0xa0;
- *dst = b;
-
- /* Verify write */
- start = get_timer (0);
- while (*dst != b) {
- if (get_timer (start) > CONFIG_SYS_FLASH_WRITE_TOUT) {
- ipri (oldpri);
- return 1;
- }
- }
- dst++;
- src++;
- cnt--;
- ipri (oldpri);
- }
-
- return (0);
-}
--
1.8.3.2
2
1

18 Apr '14
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Wolfgang Denk <wd(a)denx.de>
Cc: Nye Liu <nyet(a)zumanetworks.com>
---
board/evb64260/ecctest.c | 111 -----------------------------------------------
1 file changed, 111 deletions(-)
delete mode 100644 board/evb64260/ecctest.c
diff --git a/board/evb64260/ecctest.c b/board/evb64260/ecctest.c
deleted file mode 100644
index 5d3679a..0000000
--- a/board/evb64260/ecctest.c
+++ /dev/null
@@ -1,111 +0,0 @@
-indent: Standard input:27: Warning:old style assignment ambiguity in "=*". Assuming "= *"
-
-#ifdef ECC_TEST
-static inline void ecc_off (void)
-{
- *(volatile int *) (INTERNAL_REG_BASE_ADDR + 0x4b4) &= ~0x00200000;
-}
-
-static inline void ecc_on (void)
-{
- *(volatile int *) (INTERNAL_REG_BASE_ADDR + 0x4b4) |= 0x00200000;
-}
-
-static int putshex (const char *buf, int len)
-{
- int i;
-
- for (i = 0; i < len; i++) {
- printf ("%02x", buf[i]);
- }
- return 0;
-}
-
-static int char_memcpy (void *d, const void *s, int len)
-{
- int i;
- char *cd = d;
- const char *cs = s;
-
- for (i = 0; i < len; i++) {
- *(cd++) = *(cs++);
- }
- return 0;
-}
-
-static int memory_test (char *buf)
-{
- const char src[][16] = {
- {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
- {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
- 0x01, 0x01, 0x01, 0x01, 0x01, 0x01},
- {0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
- 0x02, 0x02, 0x02, 0x02, 0x02, 0x02},
- {0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
- 0x04, 0x04, 0x04, 0x04, 0x04, 0x04},
- {0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08,
- 0x08, 0x08, 0x08, 0x08, 0x08, 0x08},
- {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
- 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},
- {0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20},
- {0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
- 0x40, 0x40, 0x40, 0x40, 0x40, 0x40},
- {0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,
- 0x80, 0x80, 0x80, 0x80, 0x80, 0x80},
- {0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
- 0x55, 0x55, 0x55, 0x55, 0x55, 0x55},
- {0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
- 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa},
- {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
- };
- const int foo[] = { 0 };
- int i, j, a;
-
- printf ("\ntest @ %d %p\n", foo[0], buf);
- for (i = 0; i < 12; i++) {
- for (a = 0; a < 8; a++) {
- const char *s = src[i] + a;
- int align = (unsigned) (s) & 0x7;
-
- /* ecc_off(); */
- memcpy (buf, s, 8);
- /* ecc_on(); */
- putshex (s, 8);
- if (memcmp (buf, s, 8)) {
- putc ('\n');
- putshex (buf, 8);
- printf (" [FAIL] (%p) align=%d\n", s, align);
- for (j = 0; j < 8; j++) {
- s[j] == buf[j] ? puts (" ") :
- printf ("%02x",
- (s[j]) ^ (buf[j]));
- }
- putc ('\n');
- } else {
- printf (" [PASS] (%p) align=%d\n", s, align);
- }
- /* ecc_off(); */
- char_memcpy (buf, s, 8);
- /* ecc_on(); */
- putshex (s, 8);
- if (memcmp (buf, s, 8)) {
- putc ('\n');
- putshex (buf, 8);
- printf (" [FAIL] (%p) align=%d\n", s, align);
- for (j = 0; j < 8; j++) {
- s[j] == buf[j] ? puts (" ") :
- printf ("%02x",
- (s[j]) ^ (buf[j]));
- }
- putc ('\n');
- } else {
- printf (" [PASS] (%p) align=%d\n", s, align);
- }
- }
- }
-
- return 0;
-}
-#endif
--
1.8.3.2
2
1

18 Apr '14
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Mateusz Zalega <m.zalega(a)samsung.com>
Cc: Minkyu Kang <mk7.kang(a)samsung.com>
---
board/samsung/goni/mem_setup.S | 249 -------------------------------------
board/samsung/smdkc100/mem_setup.S | 181 ---------------------------
2 files changed, 430 deletions(-)
delete mode 100644 board/samsung/goni/mem_setup.S
delete mode 100644 board/samsung/smdkc100/mem_setup.S
diff --git a/board/samsung/goni/mem_setup.S b/board/samsung/goni/mem_setup.S
deleted file mode 100644
index 5dc980c..0000000
--- a/board/samsung/goni/mem_setup.S
+++ /dev/null
@@ -1,249 +0,0 @@
-/*
- * Copyright (C) 2009 Samsung Electrnoics
- * Minkyu Kang <mk7.kang(a)samsung.com>
- * Kyungmin Park <kyungmin.park(a)samsung.com>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <config.h>
-
- .globl mem_ctrl_asm_init
-mem_ctrl_asm_init:
- cmp r7, r8
-
- ldreq r0, =S5PC100_DMC_BASE @ 0xE6000000
- ldrne r0, =S5PC110_DMC0_BASE @ 0xF0000000
- ldrne r6, =S5PC110_DMC1_BASE @ 0xF1400000
-
- /* DLL parameter setting */
- ldr r1, =0x50101000
- str r1, [r0, #0x018] @ PHYCONTROL0_OFFSET
- strne r1, [r6, #0x018] @ PHYCONTROL0_OFFSET
- ldr r1, =0x000000f4
- str r1, [r0, #0x01C] @ PHYCONTROL1_OFFSET
- strne r1, [r6, #0x01C] @ PHYCONTROL1_OFFSET
- ldreq r1, =0x0
- streq r1, [r0, #0x020] @ PHYCONTROL2_OFFSET
-
- /* DLL on */
- ldr r1, =0x50101002
- str r1, [r0, #0x018] @ PHYCONTROL0_OFFSET
- strne r1, [r6, #0x018] @ PHYCONTROL0_OFFSET
-
- /* DLL start */
- ldr r1, =0x50101003
- str r1, [r0, #0x018] @ PHYCONTROL0_OFFSET
- strne r1, [r6, #0x018] @ PHYCONTROL0_OFFSET
-
- mov r2, #0x4000
-wait: subs r2, r2, #0x1
- cmp r2, #0x0
- bne wait
-
- cmp r7, r8
- /* Force value locking for DLL off */
- str r1, [r0, #0x018] @ PHYCONTROL0_OFFSET
- strne r1, [r6, #0x018] @ PHYCONTROL0_OFFSET
-
- /* DLL off */
- ldr r1, =0x50101009
- str r1, [r0, #0x018] @ PHYCONTROL0_OFFSET
- strne r1, [r6, #0x018] @ PHYCONTROL0_OFFSET
-
- /* auto refresh off */
- ldr r1, =0xff001010 | (1 << 7)
- ldr r2, =0xff001010 | (1 << 7)
- str r1, [r0, #0x000] @ CONCONTROL_OFFSET
- strne r2, [r6, #0x000] @ CONCONTROL_OFFSET
-
- /*
- * Burst Length 4, 2 chips, 32-bit, LPDDR
- * OFF: dynamic self refresh, force precharge, dynamic power down off
- */
- ldr r1, =0x00212100
- ldr r2, =0x00212100
- str r1, [r0, #0x004] @ MEMCONTROL_OFFSET
- strne r2, [r6, #0x004] @ MEMCONTROL_OFFSET
-
- /*
- * Note:
- * If Bank0 has Mobile RAM we place it at 0x3800'0000 (s5pc100 only)
- * So finally Bank1 OneDRAM should address start at at 0x3000'0000
- */
-
- /*
- * DMC0: CS0 : S5PC100/S5PC110
- * 0x30 -> 0x30000000
- * 0xf8 -> 0x37FFFFFF
- * [15:12] 0: Linear
- * [11:8 ] 2: 9 bits
- * [ 7:4 ] 2: 14 bits
- * [ 3:0 ] 2: 4 banks
- */
- ldr r3, =0x30f80222
- ldr r4, =0x40f00222
-swap_memory:
- str r3, [r0, #0x008] @ MEMCONFIG0_OFFSET
- str r4, [r0, #0x00C] @ dummy write
-
- /*
- * DMC1: CS0 : S5PC110
- * 0x40 -> 0x40000000
- * 0xf8 -> 0x47FFFFFF (1Gib)
- * 0x40 -> 0x40000000
- * 0xf0 -> 0x4FFFFFFF (2Gib)
- * [15:12] 0: Linear
- * [11:8 ] 2: 9 bits - Col (1Gib)
- * [11:8 ] 3: 10 bits - Col (2Gib)
- * [ 7:4 ] 2: 14 bits - Row
- * [ 3:0 ] 2: 4 banks
- */
- /* Default : 2GiB */
- ldr r4, =0x40f01322 @ 2Gib: MCP B
- ldr r5, =0x50f81312 @ dummy: MCP D
- cmp r9, #1
- ldreq r4, =0x40f81222 @ 1Gib: MCP A
- cmp r9, #3
- ldreq r5, =0x50f81312 @ 2Gib + 1Gib: MCP D
- cmp r9, #4
- ldreq r5, =0x50f01312 @ 2Gib + 2Gib: MCP E
-
- cmp r7, r8
- strne r4, [r6, #0x008] @ MEMCONFIG0_OFFSET
- strne r5, [r6, #0x00C] @ MEMCONFIG1_OFFSET
-
- /*
- * DMC0: CS1: S5PC100
- * 0x38 -> 0x38000000
- * 0xf8 -> 0x3fFFFFFF
- * [15:12] 0: Linear
- * [11:8 ] 2: 9 bits
- * [ 7:4 ] 2: 14 bits
- * [ 3:0 ] 2: 4 banks
- */
- eoreq r3, r3, #0x08000000
- streq r3, [r0, #0xc] @ MEMCONFIG1_OFFSET
-
- ldr r1, =0x20000000
- str r1, [r0, #0x014] @ PRECHCONFIG_OFFSET
- strne r1, [r0, #0x014] @ PRECHCONFIG_OFFSET
- strne r1, [r6, #0x014] @ PRECHCONFIG_OFFSET
-
- /*
- * S5PC100:
- * DMC: CS0: 166MHz
- * CS1: 166MHz
- * S5PC110:
- * DMC0: CS0: 166MHz
- * DMC1: CS0: 200MHz
- *
- * 7.8us * 200MHz %LE %LONG1560(0x618)
- * 7.8us * 166MHz %LE %LONG1294(0x50E)
- * 7.8us * 133MHz %LE %LONG1038(0x40E),
- * 7.8us * 100MHz %LE %LONG780(0x30C),
- */
- ldr r1, =0x0000050E
- str r1, [r0, #0x030] @ TIMINGAREF_OFFSET
- ldrne r1, =0x00000618
- strne r1, [r6, #0x030] @ TIMINGAREF_OFFSET
-
- ldr r1, =0x14233287
- str r1, [r0, #0x034] @ TIMINGROW_OFFSET
- ldrne r1, =0x182332c8
- strne r1, [r6, #0x034] @ TIMINGROW_OFFSET
-
- ldr r1, =0x12130005
- str r1, [r0, #0x038] @ TIMINGDATA_OFFSET
- ldrne r1, =0x13130005
- strne r1, [r6, #0x038] @ TIMINGDATA_OFFSET
-
- ldr r1, =0x0E140222
- str r1, [r0, #0x03C] @ TIMINGPOWER_OFFSET
- ldrne r1, =0x0E180222
- strne r1, [r6, #0x03C] @ TIMINGPOWER_OFFSET
-
- /* chip0 Deselect */
- ldr r1, =0x07000000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip0 PALL */
- ldr r1, =0x01000000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip0 REFA */
- ldr r1, =0x05000000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
- /* chip0 REFA */
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip0 MRS */
- ldr r1, =0x00000032
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip0 EMRS */
- ldr r1, =0x00020020
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip1 Deselect */
- ldr r1, =0x07100000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip1 PALL */
- ldr r1, =0x01100000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip1 REFA */
- ldr r1, =0x05100000
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
- /* chip1 REFA */
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip1 MRS */
- ldr r1, =0x00100032
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* chip1 EMRS */
- ldr r1, =0x00120020
- str r1, [r0, #0x010] @ DIRECTCMD_OFFSET
- strne r1, [r6, #0x010] @ DIRECTCMD_OFFSET
-
- /* auto refresh on */
- ldr r1, =0xFF002030 | (1 << 7)
- str r1, [r0, #0x000] @ CONCONTROL_OFFSET
- strne r1, [r6, #0x000] @ CONCONTROL_OFFSET
-
- /* PwrdnConfig */
- ldr r1, =0x00100002
- str r1, [r0, #0x028] @ PWRDNCONFIG_OFFSET
- strne r1, [r6, #0x028] @ PWRDNCONFIG_OFFSET
-
- ldr r1, =0x00212113
- str r1, [r0, #0x004] @ MEMCONTROL_OFFSET
- strne r1, [r6, #0x004] @ MEMCONTROL_OFFSET
-
- /* Skip when S5PC110 */
- bne 1f
-
- /* Check OneDRAM access area at s5pc100 */
- ldreq r3, =0x38f80222
- ldreq r1, =0x37ffff00
- str r3, [r1]
- ldr r2, [r1]
- cmp r2, r3
- beq swap_memory
-1:
- mov pc, lr
-
- .ltorg
diff --git a/board/samsung/smdkc100/mem_setup.S b/board/samsung/smdkc100/mem_setup.S
deleted file mode 100644
index 2f2df0b..0000000
--- a/board/samsung/smdkc100/mem_setup.S
+++ /dev/null
@@ -1,181 +0,0 @@
-/*
- * Originates from Samsung's u-boot 1.1.6 port to S5PC1xx
- *
- * Copyright (C) 2009 Samsung Electrnoics
- * Inki Dae <inki.dae(a)samsung.com>
- * Heungjun Kim <riverful.kim(a)samsung.com>
- * Minkyu Kang <mk7.kang(a)samsung.com>
- * Kyungmin Park <kyungmin.park(a)samsung.com>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <config.h>
-
- .globl mem_ctrl_asm_init
-mem_ctrl_asm_init:
- ldr r6, =S5PC100_DMC_BASE @ 0xE6000000
-
- /* DLL parameter setting */
- ldr r1, =0x50101000
- str r1, [r6, #0x018] @ PHYCONTROL0
- ldr r1, =0xf4
- str r1, [r6, #0x01C] @ PHYCONTROL1
- ldr r1, =0x0
- str r1, [r6, #0x020] @ PHYCONTROL2
-
- /* DLL on */
- ldr r1, =0x50101002
- str r1, [r6, #0x018] @ PHYCONTROL0
-
- /* DLL start */
- ldr r1, =0x50101003
- str r1, [r6, #0x018] @ PHYCONTROL0
-
- /* Force value locking for DLL off */
- str r1, [r6, #0x018] @ PHYCONTROL0
-
- /* DLL off */
- ldr r1, =0x50101001
- str r1, [r6, #0x018] @ PHYCONTROL0
-
- /* auto refresh off */
- ldr r1, =0xff001010
- str r1, [r6, #0x000] @ CONCONTROL
-
- /*
- * Burst Length 4, 2 chips, 32-bit, LPDDR
- * OFF: dynamic self refresh, force precharge, dynamic power down off
- */
- ldr r1, =0x00212100
- str r1, [r6, #0x004] @ MEMCONTROL
-
- /*
- * Note:
- * If Bank0 has OneDRAM we place it at 0x2800'0000
- * So finally Bank1 should address start at at 0x2000'0000
- */
- mov r4, #0x0
-
-swap_memory:
- /*
- * Bank0
- * 0x30 -> 0x30000000
- * 0xf8 -> 0x37FFFFFF
- * [15:12] 0: Linear
- * [11:8 ] 2: 9 bits
- * [ 7:4 ] 2: 14 bits
- * [ 3:0 ] 2: 4 banks
- */
- ldr r1, =0x30f80222
- /* if r4 is 1, swap the bank */
- cmp r4, #0x1
- orreq r1, r1, #0x08000000
- str r1, [r6, #0x008] @ MEMCONFIG0
-
- /*
- * Bank1
- * 0x38 -> 0x38000000
- * 0xf8 -> 0x3fFFFFFF
- * [15:12] 0: Linear
- * [11:8 ] 2: 9 bits
- * [ 7:4 ] 2: 14 bits
- * [ 3:0 ] 2: 4 banks
- */
- ldr r1, =0x38f80222
- /* if r4 is 1, swap the bank */
- cmp r4, #0x1
- biceq r1, r1, #0x08000000
- str r1, [r6, #0x00c] @ MEMCONFIG1
-
- ldr r1, =0x20000000
- str r1, [r6, #0x014] @ PRECHCONFIG
-
- /*
- * FIXME: Please verify these values
- * 7.8us * 166MHz %LE %LONG1294(0x50E)
- * 7.8us * 133MHz %LE %LONG1038(0x40E),
- * 7.8us * 100MHz %LE %LONG780(0x30C),
- * 7.8us * 20MHz %LE %LONG156(0x9C),
- * 7.8us * 10MHz %LE %LONG78(0x4E)
- */
- ldr r1, =0x0000050e
- str r1, [r6, #0x030] @ TIMINGAREF
-
- /* 166 MHz */
- ldr r1, =0x0c233287
- str r1, [r6, #0x034] @ TIMINGROW
-
- /* twtr=3 twr=2 trtp=3 cl=3 wl=3 rl=3 */
- ldr r1, =0x32330303
- str r1, [r6, #0x038] @ TIMINGDATA
-
- /* tfaw=4 sxsr=0x14 txp=0x14 tcke=3 tmrd=3 */
- ldr r1, =0x04141433
- str r1, [r6, #0x03C] @ TIMINGPOWER
-
- /* chip0 Deselect */
- ldr r1, =0x07000000
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip0 PALL */
- ldr r1, =0x01000000
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip0 REFA */
- ldr r1, =0x05000000
- str r1, [r6, #0x010] @ DIRECTCMD
- /* chip0 REFA */
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip0 MRS, CL%LE %LONG3, BL%LE %LONG4 */
- ldr r1, =0x00000032
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip1 Deselect */
- ldr r1, =0x07100000
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip1 PALL */
- ldr r1, =0x01100000
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip1 REFA */
- ldr r1, =0x05100000
- str r1, [r6, #0x010] @ DIRECTCMD
- /* chip1 REFA */
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* chip1 MRS, CL%LE %LONG3, BL%LE %LONG4 */
- ldr r1, =0x00100032
- str r1, [r6, #0x010] @ DIRECTCMD
-
- /* auto refresh on */
- ldr r1, =0xff002030
- str r1, [r6, #0x000] @ CONCONTROL
-
- /* PwrdnConfig */
- ldr r1, =0x00100002
- str r1, [r6, #0x028] @ PWRDNCONFIG
-
- /* BL%LE %LONG */
- ldr r1, =0xff212100
- str r1, [r6, #0x004] @ MEMCONTROL
-
-
- /* Try to test memory area */
- cmp r4, #0x1
- beq 1f
-
- mov r4, #0x1
- ldr r1, =0x37ffff00
- str r4, [r1]
- str r4, [r1, #0x4] @ dummy write
- ldr r0, [r1]
- cmp r0, r4
- bne swap_memory
-
-1:
- mov pc, lr
-
- .ltorg
--
1.8.3.2
3
2
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
---
common/cmd_fdos.c | 124 ------------------------------------------------------
include/fdc.h | 21 ---------
2 files changed, 145 deletions(-)
delete mode 100644 common/cmd_fdos.c
delete mode 100644 include/fdc.h
diff --git a/common/cmd_fdos.c b/common/cmd_fdos.c
deleted file mode 100644
index 6930325..0000000
--- a/common/cmd_fdos.c
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * (C) Copyright 2002
- * Stäubli Faverges - <www.staubli.com>
- * Pierre AUBERT p.aubert(a)staubli.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-/*
- * Dos floppy support
- */
-
-#include <common.h>
-#include <config.h>
-#include <command.h>
-#include <fdc.h>
-
-/*-----------------------------------------------------------------------------
- * do_fdosboot --
- *-----------------------------------------------------------------------------
- */
-int do_fdosboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
-{
- char *name;
- char *ep;
- int size;
- int drive = CONFIG_SYS_FDC_DRIVE_NUMBER;
-
- /* pre-set load_addr */
- if ((ep = getenv("loadaddr")) != NULL) {
- load_addr = simple_strtoul(ep, NULL, 16);
- }
-
- /* pre-set Boot file name */
- if ((name = getenv("bootfile")) == NULL) {
- name = "uImage";
- }
-
- switch (argc) {
- case 1:
- break;
- case 2:
- /* only one arg - accept two forms:
- * just load address, or just boot file name.
- * The latter form must be written "filename" here.
- */
- if (argv[1][0] == '"') { /* just boot filename */
- name = argv [1];
- } else { /* load address */
- load_addr = simple_strtoul(argv[1], NULL, 16);
- }
- break;
- case 3:
- load_addr = simple_strtoul(argv[1], NULL, 16);
- name = argv [2];
- break;
- default:
- return CMD_RET_USAGE;
- }
-
- /* Init physical layer */
- if (!fdc_fdos_init (drive)) {
- return (-1);
- }
-
- /* Open file */
- if (dos_open (name) < 0) {
- printf ("Unable to open %s\n", name);
- return 1;
- }
- if ((size = dos_read (load_addr)) < 0) {
- printf ("boot error\n");
- return 1;
- }
- flush_cache (load_addr, size);
-
- setenv_hex("filesize", size);
-
- printf("Floppy DOS load complete: %d bytes loaded to 0x%lx\n",
- size, load_addr);
-
- return bootm_maybe_autostart(cmdtp, argv[0]);
-}
-
-/*-----------------------------------------------------------------------------
- * do_fdosls --
- *-----------------------------------------------------------------------------
- */
-int do_fdosls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
-{
- char *path = "";
- int drive = CONFIG_SYS_FDC_DRIVE_NUMBER;
-
- switch (argc) {
- case 1:
- break;
- case 2:
- path = argv [1];
- break;
- }
-
- /* Init physical layer */
- if (!fdc_fdos_init (drive)) {
- return (-1);
- }
- /* Open directory */
- if (dos_open (path) < 0) {
- printf ("Unable to open %s\n", path);
- return 1;
- }
- return (dos_dir ());
-}
-
-U_BOOT_CMD(
- fdosboot, 3, 0, do_fdosboot,
- "boot from a dos floppy file",
- "[loadAddr] [filename]"
-);
-
-U_BOOT_CMD(
- fdosls, 2, 0, do_fdosls,
- "list files in a directory",
- "[directory]"
-);
diff --git a/include/fdc.h b/include/fdc.h
deleted file mode 100644
index 207b0e2..0000000
--- a/include/fdc.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * (C) Copyright 2002
- * Stäubli Faverges - <www.staubli.com>
- * Pierre AUBERT p.aubert(a)staubli.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifndef _FDC_H_
-#define _FDC_H_
-
-/* Functions prototype */
-int fdc_fdos_init (int drive);
-int fdc_fdos_seek (int where);
-int fdc_fdos_read (void *buffer, int len);
-
-int dos_open(char *name);
-int dos_read (ulong addr);
-int dos_dir (void);
-
-#endif
--
1.8.3.2
2
1
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Scott Wood <scottwood(a)freescale.com>
---
drivers/mtd/nand/diskonchip.c | 1780 -----------------------------------------
include/linux/mtd/blktrans.h | 79 --
include/linux/mtd/nftl-user.h | 76 --
include/linux/mtd/nftl.h | 57 --
4 files changed, 1992 deletions(-)
delete mode 100644 drivers/mtd/nand/diskonchip.c
delete mode 100644 include/linux/mtd/blktrans.h
delete mode 100644 include/linux/mtd/nftl-user.h
delete mode 100644 include/linux/mtd/nftl.h
diff --git a/drivers/mtd/nand/diskonchip.c b/drivers/mtd/nand/diskonchip.c
deleted file mode 100644
index 4cd741e..0000000
--- a/drivers/mtd/nand/diskonchip.c
+++ /dev/null
@@ -1,1780 +0,0 @@
-/*
- * drivers/mtd/nand/diskonchip.c
- *
- * (C) 2003 Red Hat, Inc.
- * (C) 2004 Dan Brown <dan_brown(a)ieee.org>
- * (C) 2004 Kalev Lember <kalev(a)smartlink.ee>
- *
- * Author: David Woodhouse <dwmw2(a)infradead.org>
- * Additional Diskonchip 2000 and Millennium support by Dan Brown <dan_brown(a)ieee.org>
- * Diskonchip Millennium Plus support by Kalev Lember <kalev(a)smartlink.ee>
- *
- * Error correction code lifted from the old docecc code
- * Author: Fabrice Bellard (fabrice.bellard(a)netgem.com)
- * Copyright (C) 2000 Netgem S.A.
- * converted to the generic Reed-Solomon library by Thomas Gleixner <tglx(a)linutronix.de>
- *
- * Interface to generic NAND code for M-Systems DiskOnChip devices
- */
-
-#include <common.h>
-
-#include <linux/kernel.h>
-#include <linux/init.h>
-#include <linux/sched.h>
-#include <linux/delay.h>
-#include <linux/rslib.h>
-#include <linux/moduleparam.h>
-#include <asm/io.h>
-
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/nand.h>
-#include <linux/mtd/doc2000.h>
-#include <linux/mtd/compatmac.h>
-#include <linux/mtd/partitions.h>
-#include <linux/mtd/inftl.h>
-
-/* Where to look for the devices? */
-#ifndef CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS
-#define CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS 0
-#endif
-
-static unsigned long __initdata doc_locations[] = {
-#if defined (__alpha__) || defined(__i386__) || defined(__x86_64__)
-#ifdef CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH
- 0xfffc8000, 0xfffca000, 0xfffcc000, 0xfffce000,
- 0xfffd0000, 0xfffd2000, 0xfffd4000, 0xfffd6000,
- 0xfffd8000, 0xfffda000, 0xfffdc000, 0xfffde000,
- 0xfffe0000, 0xfffe2000, 0xfffe4000, 0xfffe6000,
- 0xfffe8000, 0xfffea000, 0xfffec000, 0xfffee000,
-#else /* CONFIG_MTD_DOCPROBE_HIGH */
- 0xc8000, 0xca000, 0xcc000, 0xce000,
- 0xd0000, 0xd2000, 0xd4000, 0xd6000,
- 0xd8000, 0xda000, 0xdc000, 0xde000,
- 0xe0000, 0xe2000, 0xe4000, 0xe6000,
- 0xe8000, 0xea000, 0xec000, 0xee000,
-#endif /* CONFIG_MTD_DOCPROBE_HIGH */
-#else
-#warning Unknown architecture for DiskOnChip. No default probe locations defined
-#endif
- 0xffffffff };
-
-static struct mtd_info *doclist = NULL;
-
-struct doc_priv {
- void __iomem *virtadr;
- unsigned long physadr;
- u_char ChipID;
- u_char CDSNControl;
- int chips_per_floor; /* The number of chips detected on each floor */
- int curfloor;
- int curchip;
- int mh0_page;
- int mh1_page;
- struct mtd_info *nextdoc;
-};
-
-/* This is the syndrome computed by the HW ecc generator upon reading an empty
- page, one with all 0xff for data and stored ecc code. */
-static u_char empty_read_syndrome[6] = { 0x26, 0xff, 0x6d, 0x47, 0x73, 0x7a };
-
-/* This is the ecc value computed by the HW ecc generator upon writing an empty
- page, one with all 0xff for data. */
-static u_char empty_write_ecc[6] = { 0x4b, 0x00, 0xe2, 0x0e, 0x93, 0xf7 };
-
-#define INFTL_BBT_RESERVED_BLOCKS 4
-
-#define DoC_is_MillenniumPlus(doc) ((doc)->ChipID == DOC_ChipID_DocMilPlus16 || (doc)->ChipID == DOC_ChipID_DocMilPlus32)
-#define DoC_is_Millennium(doc) ((doc)->ChipID == DOC_ChipID_DocMil)
-#define DoC_is_2000(doc) ((doc)->ChipID == DOC_ChipID_Doc2k)
-
-static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd,
- unsigned int bitmask);
-static void doc200x_select_chip(struct mtd_info *mtd, int chip);
-
-static int debug = 0;
-module_param(debug, int, 0);
-
-static int try_dword = 1;
-module_param(try_dword, int, 0);
-
-static int no_ecc_failures = 0;
-module_param(no_ecc_failures, int, 0);
-
-static int no_autopart = 0;
-module_param(no_autopart, int, 0);
-
-static int show_firmware_partition = 0;
-module_param(show_firmware_partition, int, 0);
-
-#ifdef CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE
-static int inftl_bbt_write = 1;
-#else
-static int inftl_bbt_write = 0;
-#endif
-module_param(inftl_bbt_write, int, 0);
-
-static unsigned long doc_config_location = CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS;
-module_param(doc_config_location, ulong, 0);
-MODULE_PARM_DESC(doc_config_location, "Physical memory address at which to probe for DiskOnChip");
-
-/* Sector size for HW ECC */
-#define SECTOR_SIZE 512
-/* The sector bytes are packed into NB_DATA 10 bit words */
-#define NB_DATA (((SECTOR_SIZE + 1) * 8 + 6) / 10)
-/* Number of roots */
-#define NROOTS 4
-/* First consective root */
-#define FCR 510
-/* Number of symbols */
-#define NN 1023
-
-/* the Reed Solomon control structure */
-static struct rs_control *rs_decoder;
-
-/*
- * The HW decoder in the DoC ASIC's provides us a error syndrome,
- * which we must convert to a standard syndrome usable by the generic
- * Reed-Solomon library code.
- *
- * Fabrice Bellard figured this out in the old docecc code. I added
- * some comments, improved a minor bit and converted it to make use
- * of the generic Reed-Solomon libary. tglx
- */
-static int doc_ecc_decode(struct rs_control *rs, uint8_t *data, uint8_t *ecc)
-{
- int i, j, nerr, errpos[8];
- uint8_t parity;
- uint16_t ds[4], s[5], tmp, errval[8], syn[4];
-
- /* Convert the ecc bytes into words */
- ds[0] = ((ecc[4] & 0xff) >> 0) | ((ecc[5] & 0x03) << 8);
- ds[1] = ((ecc[5] & 0xfc) >> 2) | ((ecc[2] & 0x0f) << 6);
- ds[2] = ((ecc[2] & 0xf0) >> 4) | ((ecc[3] & 0x3f) << 4);
- ds[3] = ((ecc[3] & 0xc0) >> 6) | ((ecc[0] & 0xff) << 2);
- parity = ecc[1];
-
- /* Initialize the syndrome buffer */
- for (i = 0; i < NROOTS; i++)
- s[i] = ds[0];
- /*
- * Evaluate
- * s[i] = ds[3]x^3 + ds[2]x^2 + ds[1]x^1 + ds[0]
- * where x = alpha^(FCR + i)
- */
- for (j = 1; j < NROOTS; j++) {
- if (ds[j] == 0)
- continue;
- tmp = rs->index_of[ds[j]];
- for (i = 0; i < NROOTS; i++)
- s[i] ^= rs->alpha_to[rs_modnn(rs, tmp + (FCR + i) * j)];
- }
-
- /* Calc s[i] = s[i] / alpha^(v + i) */
- for (i = 0; i < NROOTS; i++) {
- if (syn[i])
- syn[i] = rs_modnn(rs, rs->index_of[s[i]] + (NN - FCR - i));
- }
- /* Call the decoder library */
- nerr = decode_rs16(rs, NULL, NULL, 1019, syn, 0, errpos, 0, errval);
-
- /* Incorrectable errors ? */
- if (nerr < 0)
- return nerr;
-
- /*
- * Correct the errors. The bitpositions are a bit of magic,
- * but they are given by the design of the de/encoder circuit
- * in the DoC ASIC's.
- */
- for (i = 0; i < nerr; i++) {
- int index, bitpos, pos = 1015 - errpos[i];
- uint8_t val;
- if (pos >= NB_DATA && pos < 1019)
- continue;
- if (pos < NB_DATA) {
- /* extract bit position (MSB first) */
- pos = 10 * (NB_DATA - 1 - pos) - 6;
- /* now correct the following 10 bits. At most two bytes
- can be modified since pos is even */
- index = (pos >> 3) ^ 1;
- bitpos = pos & 7;
- if ((index >= 0 && index < SECTOR_SIZE) || index == (SECTOR_SIZE + 1)) {
- val = (uint8_t) (errval[i] >> (2 + bitpos));
- parity ^= val;
- if (index < SECTOR_SIZE)
- data[index] ^= val;
- }
- index = ((pos >> 3) + 1) ^ 1;
- bitpos = (bitpos + 10) & 7;
- if (bitpos == 0)
- bitpos = 8;
- if ((index >= 0 && index < SECTOR_SIZE) || index == (SECTOR_SIZE + 1)) {
- val = (uint8_t) (errval[i] << (8 - bitpos));
- parity ^= val;
- if (index < SECTOR_SIZE)
- data[index] ^= val;
- }
- }
- }
- /* If the parity is wrong, no rescue possible */
- return parity ? -EBADMSG : nerr;
-}
-
-static void DoC_Delay(struct doc_priv *doc, unsigned short cycles)
-{
- volatile char dummy;
- int i;
-
- for (i = 0; i < cycles; i++) {
- if (DoC_is_Millennium(doc))
- dummy = ReadDOC(doc->virtadr, NOP);
- else if (DoC_is_MillenniumPlus(doc))
- dummy = ReadDOC(doc->virtadr, Mplus_NOP);
- else
- dummy = ReadDOC(doc->virtadr, DOCStatus);
- }
-
-}
-
-#define CDSN_CTRL_FR_B_MASK (CDSN_CTRL_FR_B0 | CDSN_CTRL_FR_B1)
-
-/* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
-static int _DoC_WaitReady(struct doc_priv *doc)
-{
- void __iomem *docptr = doc->virtadr;
- unsigned long timeo = jiffies + (HZ * 10);
-
- if (debug)
- printk("_DoC_WaitReady...\n");
- /* Out-of-line routine to wait for chip response */
- if (DoC_is_MillenniumPlus(doc)) {
- while ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK) {
- if (time_after(jiffies, timeo)) {
- printk("_DoC_WaitReady timed out.\n");
- return -EIO;
- }
- udelay(1);
- cond_resched();
- }
- } else {
- while (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
- if (time_after(jiffies, timeo)) {
- printk("_DoC_WaitReady timed out.\n");
- return -EIO;
- }
- udelay(1);
- cond_resched();
- }
- }
-
- return 0;
-}
-
-static inline int DoC_WaitReady(struct doc_priv *doc)
-{
- void __iomem *docptr = doc->virtadr;
- int ret = 0;
-
- if (DoC_is_MillenniumPlus(doc)) {
- DoC_Delay(doc, 4);
-
- if ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK)
- /* Call the out-of-line routine to wait */
- ret = _DoC_WaitReady(doc);
- } else {
- DoC_Delay(doc, 4);
-
- if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B))
- /* Call the out-of-line routine to wait */
- ret = _DoC_WaitReady(doc);
- DoC_Delay(doc, 2);
- }
-
- if (debug)
- printk("DoC_WaitReady OK\n");
- return ret;
-}
-
-static void doc2000_write_byte(struct mtd_info *mtd, u_char datum)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- if (debug)
- printk("write_byte %02x\n", datum);
- WriteDOC(datum, docptr, CDSNSlowIO);
- WriteDOC(datum, docptr, 2k_CDSN_IO);
-}
-
-static u_char doc2000_read_byte(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- u_char ret;
-
- ReadDOC(docptr, CDSNSlowIO);
- DoC_Delay(doc, 2);
- ret = ReadDOC(docptr, 2k_CDSN_IO);
- if (debug)
- printk("read_byte returns %02x\n", ret);
- return ret;
-}
-
-static void doc2000_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
- if (debug)
- printk("writebuf of %d bytes: ", len);
- for (i = 0; i < len; i++) {
- WriteDOC_(buf[i], docptr, DoC_2k_CDSN_IO + i);
- if (debug && i < 16)
- printk("%02x ", buf[i]);
- }
- if (debug)
- printk("\n");
-}
-
-static void doc2000_readbuf(struct mtd_info *mtd, u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- if (debug)
- printk("readbuf of %d bytes: ", len);
-
- for (i = 0; i < len; i++) {
- buf[i] = ReadDOC(docptr, 2k_CDSN_IO + i);
- }
-}
-
-static void doc2000_readbuf_dword(struct mtd_info *mtd,
- u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- if (debug)
- printk("readbuf_dword of %d bytes: ", len);
-
- if (unlikely((((unsigned long)buf) | len) & 3)) {
- for (i = 0; i < len; i++) {
- *(uint8_t *) (&buf[i]) = ReadDOC(docptr, 2k_CDSN_IO + i);
- }
- } else {
- for (i = 0; i < len; i += 4) {
- *(uint32_t*) (&buf[i]) = readl(docptr + DoC_2k_CDSN_IO + i);
- }
- }
-}
-
-static int doc2000_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- for (i = 0; i < len; i++)
- if (buf[i] != ReadDOC(docptr, 2k_CDSN_IO))
- return -EFAULT;
- return 0;
-}
-
-static uint16_t __init doc200x_ident_chip(struct mtd_info *mtd, int nr)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- uint16_t ret;
-
- doc200x_select_chip(mtd, nr);
- doc200x_hwcontrol(mtd, NAND_CMD_READID,
- NAND_CTRL_CLE | NAND_CTRL_CHANGE);
- doc200x_hwcontrol(mtd, 0, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
- doc200x_hwcontrol(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
-
- /* We cant' use dev_ready here, but at least we wait for the
- * command to complete
- */
- udelay(50);
-
- ret = this->read_byte(mtd) << 8;
- ret |= this->read_byte(mtd);
-
- if (doc->ChipID == DOC_ChipID_Doc2k && try_dword && !nr) {
- /* First chip probe. See if we get same results by 32-bit access */
- union {
- uint32_t dword;
- uint8_t byte[4];
- } ident;
- void __iomem *docptr = doc->virtadr;
-
- doc200x_hwcontrol(mtd, NAND_CMD_READID,
- NAND_CTRL_CLE | NAND_CTRL_CHANGE);
- doc200x_hwcontrol(mtd, 0, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
- doc200x_hwcontrol(mtd, NAND_CMD_NONE,
- NAND_NCE | NAND_CTRL_CHANGE);
-
- udelay(50);
-
- ident.dword = readl(docptr + DoC_2k_CDSN_IO);
- if (((ident.byte[0] << 8) | ident.byte[1]) == ret) {
- printk(KERN_INFO "DiskOnChip 2000 responds to DWORD access\n");
- this->read_buf = &doc2000_readbuf_dword;
- }
- }
-
- return ret;
-}
-
-static void __init doc2000_count_chips(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- uint16_t mfrid;
- int i;
-
- /* Max 4 chips per floor on DiskOnChip 2000 */
- doc->chips_per_floor = 4;
-
- /* Find out what the first chip is */
- mfrid = doc200x_ident_chip(mtd, 0);
-
- /* Find how many chips in each floor. */
- for (i = 1; i < 4; i++) {
- if (doc200x_ident_chip(mtd, i) != mfrid)
- break;
- }
- doc->chips_per_floor = i;
- printk(KERN_DEBUG "Detected %d chips per floor.\n", i);
-}
-
-static int doc200x_wait(struct mtd_info *mtd, struct nand_chip *this)
-{
- struct doc_priv *doc = this->priv;
-
- int status;
-
- DoC_WaitReady(doc);
- this->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
- DoC_WaitReady(doc);
- status = (int)this->read_byte(mtd);
-
- return status;
-}
-
-static void doc2001_write_byte(struct mtd_info *mtd, u_char datum)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- WriteDOC(datum, docptr, CDSNSlowIO);
- WriteDOC(datum, docptr, Mil_CDSN_IO);
- WriteDOC(datum, docptr, WritePipeTerm);
-}
-
-static u_char doc2001_read_byte(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- /*ReadDOC(docptr, CDSNSlowIO); */
- /* 11.4.5 -- delay twice to allow extended length cycle */
- DoC_Delay(doc, 2);
- ReadDOC(docptr, ReadPipeInit);
- /*return ReadDOC(docptr, Mil_CDSN_IO); */
- return ReadDOC(docptr, LastDataRead);
-}
-
-static void doc2001_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- for (i = 0; i < len; i++)
- WriteDOC_(buf[i], docptr, DoC_Mil_CDSN_IO + i);
- /* Terminate write pipeline */
- WriteDOC(0x00, docptr, WritePipeTerm);
-}
-
-static void doc2001_readbuf(struct mtd_info *mtd, u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- /* Start read pipeline */
- ReadDOC(docptr, ReadPipeInit);
-
- for (i = 0; i < len - 1; i++)
- buf[i] = ReadDOC(docptr, Mil_CDSN_IO + (i & 0xff));
-
- /* Terminate read pipeline */
- buf[i] = ReadDOC(docptr, LastDataRead);
-}
-
-static int doc2001_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- /* Start read pipeline */
- ReadDOC(docptr, ReadPipeInit);
-
- for (i = 0; i < len - 1; i++)
- if (buf[i] != ReadDOC(docptr, Mil_CDSN_IO)) {
- ReadDOC(docptr, LastDataRead);
- return i;
- }
- if (buf[i] != ReadDOC(docptr, LastDataRead))
- return i;
- return 0;
-}
-
-static u_char doc2001plus_read_byte(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- u_char ret;
-
- ReadDOC(docptr, Mplus_ReadPipeInit);
- ReadDOC(docptr, Mplus_ReadPipeInit);
- ret = ReadDOC(docptr, Mplus_LastDataRead);
- if (debug)
- printk("read_byte returns %02x\n", ret);
- return ret;
-}
-
-static void doc2001plus_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- if (debug)
- printk("writebuf of %d bytes: ", len);
- for (i = 0; i < len; i++) {
- WriteDOC_(buf[i], docptr, DoC_Mil_CDSN_IO + i);
- if (debug && i < 16)
- printk("%02x ", buf[i]);
- }
- if (debug)
- printk("\n");
-}
-
-static void doc2001plus_readbuf(struct mtd_info *mtd, u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- if (debug)
- printk("readbuf of %d bytes: ", len);
-
- /* Start read pipeline */
- ReadDOC(docptr, Mplus_ReadPipeInit);
- ReadDOC(docptr, Mplus_ReadPipeInit);
-
- for (i = 0; i < len - 2; i++) {
- buf[i] = ReadDOC(docptr, Mil_CDSN_IO);
- if (debug && i < 16)
- printk("%02x ", buf[i]);
- }
-
- /* Terminate read pipeline */
- buf[len - 2] = ReadDOC(docptr, Mplus_LastDataRead);
- if (debug && i < 16)
- printk("%02x ", buf[len - 2]);
- buf[len - 1] = ReadDOC(docptr, Mplus_LastDataRead);
- if (debug && i < 16)
- printk("%02x ", buf[len - 1]);
- if (debug)
- printk("\n");
-}
-
-static int doc2001plus_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
-
- if (debug)
- printk("verifybuf of %d bytes: ", len);
-
- /* Start read pipeline */
- ReadDOC(docptr, Mplus_ReadPipeInit);
- ReadDOC(docptr, Mplus_ReadPipeInit);
-
- for (i = 0; i < len - 2; i++)
- if (buf[i] != ReadDOC(docptr, Mil_CDSN_IO)) {
- ReadDOC(docptr, Mplus_LastDataRead);
- ReadDOC(docptr, Mplus_LastDataRead);
- return i;
- }
- if (buf[len - 2] != ReadDOC(docptr, Mplus_LastDataRead))
- return len - 2;
- if (buf[len - 1] != ReadDOC(docptr, Mplus_LastDataRead))
- return len - 1;
- return 0;
-}
-
-static void doc2001plus_select_chip(struct mtd_info *mtd, int chip)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int floor = 0;
-
- if (debug)
- printk("select chip (%d)\n", chip);
-
- if (chip == -1) {
- /* Disable flash internally */
- WriteDOC(0, docptr, Mplus_FlashSelect);
- return;
- }
-
- floor = chip / doc->chips_per_floor;
- chip -= (floor * doc->chips_per_floor);
-
- /* Assert ChipEnable and deassert WriteProtect */
- WriteDOC((DOC_FLASH_CE), docptr, Mplus_FlashSelect);
- this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
-
- doc->curchip = chip;
- doc->curfloor = floor;
-}
-
-static void doc200x_select_chip(struct mtd_info *mtd, int chip)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int floor = 0;
-
- if (debug)
- printk("select chip (%d)\n", chip);
-
- if (chip == -1)
- return;
-
- floor = chip / doc->chips_per_floor;
- chip -= (floor * doc->chips_per_floor);
-
- /* 11.4.4 -- deassert CE before changing chip */
- doc200x_hwcontrol(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
-
- WriteDOC(floor, docptr, FloorSelect);
- WriteDOC(chip, docptr, CDSNDeviceSelect);
-
- doc200x_hwcontrol(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
-
- doc->curchip = chip;
- doc->curfloor = floor;
-}
-
-#define CDSN_CTRL_MSK (CDSN_CTRL_CE | CDSN_CTRL_CLE | CDSN_CTRL_ALE)
-
-static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd,
- unsigned int ctrl)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- if (ctrl & NAND_CTRL_CHANGE) {
- doc->CDSNControl &= ~CDSN_CTRL_MSK;
- doc->CDSNControl |= ctrl & CDSN_CTRL_MSK;
- if (debug)
- printk("hwcontrol(%d): %02x\n", cmd, doc->CDSNControl);
- WriteDOC(doc->CDSNControl, docptr, CDSNControl);
- /* 11.4.3 -- 4 NOPs after CSDNControl write */
- DoC_Delay(doc, 4);
- }
- if (cmd != NAND_CMD_NONE) {
- if (DoC_is_2000(doc))
- doc2000_write_byte(mtd, cmd);
- else
- doc2001_write_byte(mtd, cmd);
- }
-}
-
-static void doc2001plus_command(struct mtd_info *mtd, unsigned command, int column, int page_addr)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- /*
- * Must terminate write pipeline before sending any commands
- * to the device.
- */
- if (command == NAND_CMD_PAGEPROG) {
- WriteDOC(0x00, docptr, Mplus_WritePipeTerm);
- WriteDOC(0x00, docptr, Mplus_WritePipeTerm);
- }
-
- /*
- * Write out the command to the device.
- */
- if (command == NAND_CMD_SEQIN) {
- int readcmd;
-
- if (column >= mtd->writesize) {
- /* OOB area */
- column -= mtd->writesize;
- readcmd = NAND_CMD_READOOB;
- } else if (column < 256) {
- /* First 256 bytes --> READ0 */
- readcmd = NAND_CMD_READ0;
- } else {
- column -= 256;
- readcmd = NAND_CMD_READ1;
- }
- WriteDOC(readcmd, docptr, Mplus_FlashCmd);
- }
- WriteDOC(command, docptr, Mplus_FlashCmd);
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
-
- if (column != -1 || page_addr != -1) {
- /* Serially input address */
- if (column != -1) {
- /* Adjust columns for 16 bit buswidth */
- if (this->options & NAND_BUSWIDTH_16)
- column >>= 1;
- WriteDOC(column, docptr, Mplus_FlashAddress);
- }
- if (page_addr != -1) {
- WriteDOC((unsigned char)(page_addr & 0xff), docptr, Mplus_FlashAddress);
- WriteDOC((unsigned char)((page_addr >> 8) & 0xff), docptr, Mplus_FlashAddress);
- /* One more address cycle for higher density devices */
- if (this->chipsize & 0x0c000000) {
- WriteDOC((unsigned char)((page_addr >> 16) & 0x0f), docptr, Mplus_FlashAddress);
- printk("high density\n");
- }
- }
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
- /* deassert ALE */
- if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 ||
- command == NAND_CMD_READOOB || command == NAND_CMD_READID)
- WriteDOC(0, docptr, Mplus_FlashControl);
- }
-
- /*
- * program and erase have their own busy handlers
- * status and sequential in needs no delay
- */
- switch (command) {
-
- case NAND_CMD_PAGEPROG:
- case NAND_CMD_ERASE1:
- case NAND_CMD_ERASE2:
- case NAND_CMD_SEQIN:
- case NAND_CMD_STATUS:
- return;
-
- case NAND_CMD_RESET:
- if (this->dev_ready)
- break;
- udelay(this->chip_delay);
- WriteDOC(NAND_CMD_STATUS, docptr, Mplus_FlashCmd);
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
- WriteDOC(0, docptr, Mplus_WritePipeTerm);
- while (!(this->read_byte(mtd) & 0x40)) ;
- return;
-
- /* This applies to read commands */
- default:
- /*
- * If we don't have access to the busy pin, we apply the given
- * command delay
- */
- if (!this->dev_ready) {
- udelay(this->chip_delay);
- return;
- }
- }
-
- /* Apply this short delay always to ensure that we do wait tWB in
- * any case on any machine. */
- ndelay(100);
- /* wait until command is processed */
- while (!this->dev_ready(mtd)) ;
-}
-
-static int doc200x_dev_ready(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- if (DoC_is_MillenniumPlus(doc)) {
- /* 11.4.2 -- must NOP four times before checking FR/B# */
- DoC_Delay(doc, 4);
- if ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK) {
- if (debug)
- printk("not ready\n");
- return 0;
- }
- if (debug)
- printk("was ready\n");
- return 1;
- } else {
- /* 11.4.2 -- must NOP four times before checking FR/B# */
- DoC_Delay(doc, 4);
- if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
- if (debug)
- printk("not ready\n");
- return 0;
- }
- /* 11.4.2 -- Must NOP twice if it's ready */
- DoC_Delay(doc, 2);
- if (debug)
- printk("was ready\n");
- return 1;
- }
-}
-
-static int doc200x_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
-{
- /* This is our last resort if we couldn't find or create a BBT. Just
- pretend all blocks are good. */
- return 0;
-}
-
-static void doc200x_enable_hwecc(struct mtd_info *mtd, int mode)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- /* Prime the ECC engine */
- switch (mode) {
- case NAND_ECC_READ:
- WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
- WriteDOC(DOC_ECC_EN, docptr, ECCConf);
- break;
- case NAND_ECC_WRITE:
- WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
- WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, ECCConf);
- break;
- }
-}
-
-static void doc2001plus_enable_hwecc(struct mtd_info *mtd, int mode)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
-
- /* Prime the ECC engine */
- switch (mode) {
- case NAND_ECC_READ:
- WriteDOC(DOC_ECC_RESET, docptr, Mplus_ECCConf);
- WriteDOC(DOC_ECC_EN, docptr, Mplus_ECCConf);
- break;
- case NAND_ECC_WRITE:
- WriteDOC(DOC_ECC_RESET, docptr, Mplus_ECCConf);
- WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, Mplus_ECCConf);
- break;
- }
-}
-
-/* This code is only called on write */
-static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat, unsigned char *ecc_code)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- int i;
- int emptymatch = 1;
-
- /* flush the pipeline */
- if (DoC_is_2000(doc)) {
- WriteDOC(doc->CDSNControl & ~CDSN_CTRL_FLASH_IO, docptr, CDSNControl);
- WriteDOC(0, docptr, 2k_CDSN_IO);
- WriteDOC(0, docptr, 2k_CDSN_IO);
- WriteDOC(0, docptr, 2k_CDSN_IO);
- WriteDOC(doc->CDSNControl, docptr, CDSNControl);
- } else if (DoC_is_MillenniumPlus(doc)) {
- WriteDOC(0, docptr, Mplus_NOP);
- WriteDOC(0, docptr, Mplus_NOP);
- WriteDOC(0, docptr, Mplus_NOP);
- } else {
- WriteDOC(0, docptr, NOP);
- WriteDOC(0, docptr, NOP);
- WriteDOC(0, docptr, NOP);
- }
-
- for (i = 0; i < 6; i++) {
- if (DoC_is_MillenniumPlus(doc))
- ecc_code[i] = ReadDOC_(docptr, DoC_Mplus_ECCSyndrome0 + i);
- else
- ecc_code[i] = ReadDOC_(docptr, DoC_ECCSyndrome0 + i);
- if (ecc_code[i] != empty_write_ecc[i])
- emptymatch = 0;
- }
- if (DoC_is_MillenniumPlus(doc))
- WriteDOC(DOC_ECC_DIS, docptr, Mplus_ECCConf);
- else
- WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
-#if 0
- /* If emptymatch=1, we might have an all-0xff data buffer. Check. */
- if (emptymatch) {
- /* Note: this somewhat expensive test should not be triggered
- often. It could be optimized away by examining the data in
- the writebuf routine, and remembering the result. */
- for (i = 0; i < 512; i++) {
- if (dat[i] == 0xff)
- continue;
- emptymatch = 0;
- break;
- }
- }
- /* If emptymatch still =1, we do have an all-0xff data buffer.
- Return all-0xff ecc value instead of the computed one, so
- it'll look just like a freshly-erased page. */
- if (emptymatch)
- memset(ecc_code, 0xff, 6);
-#endif
- return 0;
-}
-
-static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat,
- u_char *read_ecc, u_char *isnull)
-{
- int i, ret = 0;
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- void __iomem *docptr = doc->virtadr;
- uint8_t calc_ecc[6];
- volatile u_char dummy;
- int emptymatch = 1;
-
- /* flush the pipeline */
- if (DoC_is_2000(doc)) {
- dummy = ReadDOC(docptr, 2k_ECCStatus);
- dummy = ReadDOC(docptr, 2k_ECCStatus);
- dummy = ReadDOC(docptr, 2k_ECCStatus);
- } else if (DoC_is_MillenniumPlus(doc)) {
- dummy = ReadDOC(docptr, Mplus_ECCConf);
- dummy = ReadDOC(docptr, Mplus_ECCConf);
- dummy = ReadDOC(docptr, Mplus_ECCConf);
- } else {
- dummy = ReadDOC(docptr, ECCConf);
- dummy = ReadDOC(docptr, ECCConf);
- dummy = ReadDOC(docptr, ECCConf);
- }
-
- /* Error occured ? */
- if (dummy & 0x80) {
- for (i = 0; i < 6; i++) {
- if (DoC_is_MillenniumPlus(doc))
- calc_ecc[i] = ReadDOC_(docptr, DoC_Mplus_ECCSyndrome0 + i);
- else
- calc_ecc[i] = ReadDOC_(docptr, DoC_ECCSyndrome0 + i);
- if (calc_ecc[i] != empty_read_syndrome[i])
- emptymatch = 0;
- }
- /* If emptymatch=1, the read syndrome is consistent with an
- all-0xff data and stored ecc block. Check the stored ecc. */
- if (emptymatch) {
- for (i = 0; i < 6; i++) {
- if (read_ecc[i] == 0xff)
- continue;
- emptymatch = 0;
- break;
- }
- }
- /* If emptymatch still =1, check the data block. */
- if (emptymatch) {
- /* Note: this somewhat expensive test should not be triggered
- often. It could be optimized away by examining the data in
- the readbuf routine, and remembering the result. */
- for (i = 0; i < 512; i++) {
- if (dat[i] == 0xff)
- continue;
- emptymatch = 0;
- break;
- }
- }
- /* If emptymatch still =1, this is almost certainly a freshly-
- erased block, in which case the ECC will not come out right.
- We'll suppress the error and tell the caller everything's
- OK. Because it is. */
- if (!emptymatch)
- ret = doc_ecc_decode(rs_decoder, dat, calc_ecc);
- if (ret > 0)
- printk(KERN_ERR "doc200x_correct_data corrected %d errors\n", ret);
- }
- if (DoC_is_MillenniumPlus(doc))
- WriteDOC(DOC_ECC_DIS, docptr, Mplus_ECCConf);
- else
- WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
- if (no_ecc_failures && mtd_is_eccerr(ret)) {
- printk(KERN_ERR "suppressing ECC failure\n");
- ret = 0;
- }
- return ret;
-}
-
-/*u_char mydatabuf[528]; */
-
-/* The strange out-of-order .oobfree list below is a (possibly unneeded)
- * attempt to retain compatibility. It used to read:
- * .oobfree = { {8, 8} }
- * Since that leaves two bytes unusable, it was changed. But the following
- * scheme might affect existing jffs2 installs by moving the cleanmarker:
- * .oobfree = { {6, 10} }
- * jffs2 seems to handle the above gracefully, but the current scheme seems
- * safer. The only problem with it is that any code that parses oobfree must
- * be able to handle out-of-order segments.
- */
-static struct nand_ecclayout doc200x_oobinfo = {
- .eccbytes = 6,
- .eccpos = {0, 1, 2, 3, 4, 5},
- .oobfree = {{8, 8}, {6, 2}}
-};
-
-/* Find the (I)NFTL Media Header, and optionally also the mirror media header.
- On sucessful return, buf will contain a copy of the media header for
- further processing. id is the string to scan for, and will presumably be
- either "ANAND" or "BNAND". If findmirror=1, also look for the mirror media
- header. The page #s of the found media headers are placed in mh0_page and
- mh1_page in the DOC private structure. */
-static int __init find_media_headers(struct mtd_info *mtd, u_char *buf, const char *id, int findmirror)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- unsigned offs;
- int ret;
- size_t retlen;
-
- for (offs = 0; offs < mtd->size; offs += mtd->erasesize) {
- ret = mtd_read(mtd, offs, mtd->writesize, &retlen, buf);
- if (retlen != mtd->writesize)
- continue;
- if (ret) {
- printk(KERN_WARNING "ECC error scanning DOC at 0x%x\n", offs);
- }
- if (memcmp(buf, id, 6))
- continue;
- printk(KERN_INFO "Found DiskOnChip %s Media Header at 0x%x\n", id, offs);
- if (doc->mh0_page == -1) {
- doc->mh0_page = offs >> this->page_shift;
- if (!findmirror)
- return 1;
- continue;
- }
- doc->mh1_page = offs >> this->page_shift;
- return 2;
- }
- if (doc->mh0_page == -1) {
- printk(KERN_WARNING "DiskOnChip %s Media Header not found.\n", id);
- return 0;
- }
- /* Only one mediaheader was found. We want buf to contain a
- mediaheader on return, so we'll have to re-read the one we found. */
- offs = doc->mh0_page << this->page_shift;
- ret = mtd_read(mtd, offs, mtd->writesize, &retlen, buf);
- if (retlen != mtd->writesize) {
- /* Insanity. Give up. */
- printk(KERN_ERR "Read DiskOnChip Media Header once, but can't reread it???\n");
- return 0;
- }
- return 1;
-}
-
-static inline int __init nftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- int ret = 0;
- u_char *buf;
- struct NFTLMediaHeader *mh;
- const unsigned psize = 1 << this->page_shift;
- int numparts = 0;
- unsigned blocks, maxblocks;
- int offs, numheaders;
-
- buf = kmalloc(mtd->writesize, GFP_KERNEL);
- if (!buf) {
- printk(KERN_ERR "DiskOnChip mediaheader kmalloc failed!\n");
- return 0;
- }
- if (!(numheaders = find_media_headers(mtd, buf, "ANAND", 1)))
- goto out;
- mh = (struct NFTLMediaHeader *)buf;
-
- le16_to_cpus(&mh->NumEraseUnits);
- le16_to_cpus(&mh->FirstPhysicalEUN);
- le32_to_cpus(&mh->FormattedSize);
-
- printk(KERN_INFO " DataOrgID = %s\n"
- " NumEraseUnits = %d\n"
- " FirstPhysicalEUN = %d\n"
- " FormattedSize = %d\n"
- " UnitSizeFactor = %d\n",
- mh->DataOrgID, mh->NumEraseUnits,
- mh->FirstPhysicalEUN, mh->FormattedSize,
- mh->UnitSizeFactor);
-
- blocks = mtd->size >> this->phys_erase_shift;
- maxblocks = min(32768U, mtd->erasesize - psize);
-
- if (mh->UnitSizeFactor == 0x00) {
- /* Auto-determine UnitSizeFactor. The constraints are:
- - There can be at most 32768 virtual blocks.
- - There can be at most (virtual block size - page size)
- virtual blocks (because MediaHeader+BBT must fit in 1).
- */
- mh->UnitSizeFactor = 0xff;
- while (blocks > maxblocks) {
- blocks >>= 1;
- maxblocks = min(32768U, (maxblocks << 1) + psize);
- mh->UnitSizeFactor--;
- }
- printk(KERN_WARNING "UnitSizeFactor=0x00 detected. Correct value is assumed to be 0x%02x.\n", mh->UnitSizeFactor);
- }
-
- /* NOTE: The lines below modify internal variables of the NAND and MTD
- layers; variables with have already been configured by nand_scan.
- Unfortunately, we didn't know before this point what these values
- should be. Thus, this code is somewhat dependant on the exact
- implementation of the NAND layer. */
- if (mh->UnitSizeFactor != 0xff) {
- this->bbt_erase_shift += (0xff - mh->UnitSizeFactor);
- mtd->erasesize <<= (0xff - mh->UnitSizeFactor);
- printk(KERN_INFO "Setting virtual erase size to %d\n", mtd->erasesize);
- blocks = mtd->size >> this->bbt_erase_shift;
- maxblocks = min(32768U, mtd->erasesize - psize);
- }
-
- if (blocks > maxblocks) {
- printk(KERN_ERR "UnitSizeFactor of 0x%02x is inconsistent with device size. Aborting.\n", mh->UnitSizeFactor);
- goto out;
- }
-
- /* Skip past the media headers. */
- offs = max(doc->mh0_page, doc->mh1_page);
- offs <<= this->page_shift;
- offs += mtd->erasesize;
-
- if (show_firmware_partition == 1) {
- parts[0].name = " DiskOnChip Firmware / Media Header partition";
- parts[0].offset = 0;
- parts[0].size = offs;
- numparts = 1;
- }
-
- parts[numparts].name = " DiskOnChip BDTL partition";
- parts[numparts].offset = offs;
- parts[numparts].size = (mh->NumEraseUnits - numheaders) << this->bbt_erase_shift;
-
- offs += parts[numparts].size;
- numparts++;
-
- if (offs < mtd->size) {
- parts[numparts].name = " DiskOnChip Remainder partition";
- parts[numparts].offset = offs;
- parts[numparts].size = mtd->size - offs;
- numparts++;
- }
-
- ret = numparts;
- out:
- kfree(buf);
- return ret;
-}
-
-/* This is a stripped-down copy of the code in inftlmount.c */
-static inline int __init inftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- int ret = 0;
- u_char *buf;
- struct INFTLMediaHeader *mh;
- struct INFTLPartition *ip;
- int numparts = 0;
- int blocks;
- int vshift, lastvunit = 0;
- int i;
- int end = mtd->size;
-
- if (inftl_bbt_write)
- end -= (INFTL_BBT_RESERVED_BLOCKS << this->phys_erase_shift);
-
- buf = kmalloc(mtd->writesize, GFP_KERNEL);
- if (!buf) {
- printk(KERN_ERR "DiskOnChip mediaheader kmalloc failed!\n");
- return 0;
- }
-
- if (!find_media_headers(mtd, buf, "BNAND", 0))
- goto out;
- doc->mh1_page = doc->mh0_page + (4096 >> this->page_shift);
- mh = (struct INFTLMediaHeader *)buf;
-
- le32_to_cpus(&mh->NoOfBootImageBlocks);
- le32_to_cpus(&mh->NoOfBinaryPartitions);
- le32_to_cpus(&mh->NoOfBDTLPartitions);
- le32_to_cpus(&mh->BlockMultiplierBits);
- le32_to_cpus(&mh->FormatFlags);
- le32_to_cpus(&mh->PercentUsed);
-
- printk(KERN_INFO " bootRecordID = %s\n"
- " NoOfBootImageBlocks = %d\n"
- " NoOfBinaryPartitions = %d\n"
- " NoOfBDTLPartitions = %d\n"
- " BlockMultiplerBits = %d\n"
- " FormatFlgs = %d\n"
- " OsakVersion = %d.%d.%d.%d\n"
- " PercentUsed = %d\n",
- mh->bootRecordID, mh->NoOfBootImageBlocks,
- mh->NoOfBinaryPartitions,
- mh->NoOfBDTLPartitions,
- mh->BlockMultiplierBits, mh->FormatFlags,
- ((unsigned char *) &mh->OsakVersion)[0] & 0xf,
- ((unsigned char *) &mh->OsakVersion)[1] & 0xf,
- ((unsigned char *) &mh->OsakVersion)[2] & 0xf,
- ((unsigned char *) &mh->OsakVersion)[3] & 0xf,
- mh->PercentUsed);
-
- vshift = this->phys_erase_shift + mh->BlockMultiplierBits;
-
- blocks = mtd->size >> vshift;
- if (blocks > 32768) {
- printk(KERN_ERR "BlockMultiplierBits=%d is inconsistent with device size. Aborting.\n", mh->BlockMultiplierBits);
- goto out;
- }
-
- blocks = doc->chips_per_floor << (this->chip_shift - this->phys_erase_shift);
- if (inftl_bbt_write && (blocks > mtd->erasesize)) {
- printk(KERN_ERR "Writeable BBTs spanning more than one erase block are not yet supported. FIX ME!\n");
- goto out;
- }
-
- /* Scan the partitions */
- for (i = 0; (i < 4); i++) {
- ip = &(mh->Partitions[i]);
- le32_to_cpus(&ip->virtualUnits);
- le32_to_cpus(&ip->firstUnit);
- le32_to_cpus(&ip->lastUnit);
- le32_to_cpus(&ip->flags);
- le32_to_cpus(&ip->spareUnits);
- le32_to_cpus(&ip->Reserved0);
-
- printk(KERN_INFO " PARTITION[%d] ->\n"
- " virtualUnits = %d\n"
- " firstUnit = %d\n"
- " lastUnit = %d\n"
- " flags = 0x%x\n"
- " spareUnits = %d\n",
- i, ip->virtualUnits, ip->firstUnit,
- ip->lastUnit, ip->flags,
- ip->spareUnits);
-
- if ((show_firmware_partition == 1) &&
- (i == 0) && (ip->firstUnit > 0)) {
- parts[0].name = " DiskOnChip IPL / Media Header partition";
- parts[0].offset = 0;
- parts[0].size = mtd->erasesize * ip->firstUnit;
- numparts = 1;
- }
-
- if (ip->flags & INFTL_BINARY)
- parts[numparts].name = " DiskOnChip BDK partition";
- else
- parts[numparts].name = " DiskOnChip BDTL partition";
- parts[numparts].offset = ip->firstUnit << vshift;
- parts[numparts].size = (1 + ip->lastUnit - ip->firstUnit) << vshift;
- numparts++;
- if (ip->lastUnit > lastvunit)
- lastvunit = ip->lastUnit;
- if (ip->flags & INFTL_LAST)
- break;
- }
- lastvunit++;
- if ((lastvunit << vshift) < end) {
- parts[numparts].name = " DiskOnChip Remainder partition";
- parts[numparts].offset = lastvunit << vshift;
- parts[numparts].size = end - parts[numparts].offset;
- numparts++;
- }
- ret = numparts;
- out:
- kfree(buf);
- return ret;
-}
-
-static int __init nftl_scan_bbt(struct mtd_info *mtd)
-{
- int ret, numparts;
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- struct mtd_partition parts[2];
-
- memset((char *)parts, 0, sizeof(parts));
- /* On NFTL, we have to find the media headers before we can read the
- BBTs, since they're stored in the media header eraseblocks. */
- numparts = nftl_partscan(mtd, parts);
- if (!numparts)
- return -EIO;
- this->bbt_td->options = NAND_BBT_ABSPAGE | NAND_BBT_8BIT |
- NAND_BBT_SAVECONTENT | NAND_BBT_WRITE |
- NAND_BBT_VERSION;
- this->bbt_td->veroffs = 7;
- this->bbt_td->pages[0] = doc->mh0_page + 1;
- if (doc->mh1_page != -1) {
- this->bbt_md->options = NAND_BBT_ABSPAGE | NAND_BBT_8BIT |
- NAND_BBT_SAVECONTENT | NAND_BBT_WRITE |
- NAND_BBT_VERSION;
- this->bbt_md->veroffs = 7;
- this->bbt_md->pages[0] = doc->mh1_page + 1;
- } else {
- this->bbt_md = NULL;
- }
-
- /* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
- At least as nand_bbt.c is currently written. */
- if ((ret = nand_scan_bbt(mtd, NULL)))
- return ret;
- add_mtd_device(mtd);
-#ifdef CONFIG_MTD_PARTITIONS
- if (!no_autopart)
- add_mtd_partitions(mtd, parts, numparts);
-#endif
- return 0;
-}
-
-static int __init inftl_scan_bbt(struct mtd_info *mtd)
-{
- int ret, numparts;
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
- struct mtd_partition parts[5];
-
- if (this->numchips > doc->chips_per_floor) {
- printk(KERN_ERR "Multi-floor INFTL devices not yet supported.\n");
- return -EIO;
- }
-
- if (DoC_is_MillenniumPlus(doc)) {
- this->bbt_td->options = NAND_BBT_2BIT | NAND_BBT_ABSPAGE;
- if (inftl_bbt_write)
- this->bbt_td->options |= NAND_BBT_WRITE;
- this->bbt_td->pages[0] = 2;
- this->bbt_md = NULL;
- } else {
- this->bbt_td->options = NAND_BBT_LASTBLOCK | NAND_BBT_8BIT | NAND_BBT_VERSION;
- if (inftl_bbt_write)
- this->bbt_td->options |= NAND_BBT_WRITE;
- this->bbt_td->offs = 8;
- this->bbt_td->len = 8;
- this->bbt_td->veroffs = 7;
- this->bbt_td->maxblocks = INFTL_BBT_RESERVED_BLOCKS;
- this->bbt_td->reserved_block_code = 0x01;
- this->bbt_td->pattern = "MSYS_BBT";
-
- this->bbt_md->options = NAND_BBT_LASTBLOCK | NAND_BBT_8BIT | NAND_BBT_VERSION;
- if (inftl_bbt_write)
- this->bbt_md->options |= NAND_BBT_WRITE;
- this->bbt_md->offs = 8;
- this->bbt_md->len = 8;
- this->bbt_md->veroffs = 7;
- this->bbt_md->maxblocks = INFTL_BBT_RESERVED_BLOCKS;
- this->bbt_md->reserved_block_code = 0x01;
- this->bbt_md->pattern = "TBB_SYSM";
- }
-
- /* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
- At least as nand_bbt.c is currently written. */
- if ((ret = nand_scan_bbt(mtd, NULL)))
- return ret;
- memset((char *)parts, 0, sizeof(parts));
- numparts = inftl_partscan(mtd, parts);
- /* At least for now, require the INFTL Media Header. We could probably
- do without it for non-INFTL use, since all it gives us is
- autopartitioning, but I want to give it more thought. */
- if (!numparts)
- return -EIO;
- add_mtd_device(mtd);
-#ifdef CONFIG_MTD_PARTITIONS
- if (!no_autopart)
- add_mtd_partitions(mtd, parts, numparts);
-#endif
- return 0;
-}
-
-static inline int __init doc2000_init(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
-
- this->read_byte = doc2000_read_byte;
- this->write_buf = doc2000_writebuf;
- this->read_buf = doc2000_readbuf;
- this->verify_buf = doc2000_verifybuf;
- this->scan_bbt = nftl_scan_bbt;
-
- doc->CDSNControl = CDSN_CTRL_FLASH_IO | CDSN_CTRL_ECC_IO;
- doc2000_count_chips(mtd);
- mtd->name = "DiskOnChip 2000 (NFTL Model)";
- return (4 * doc->chips_per_floor);
-}
-
-static inline int __init doc2001_init(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
-
- this->read_byte = doc2001_read_byte;
- this->write_buf = doc2001_writebuf;
- this->read_buf = doc2001_readbuf;
- this->verify_buf = doc2001_verifybuf;
-
- ReadDOC(doc->virtadr, ChipID);
- ReadDOC(doc->virtadr, ChipID);
- ReadDOC(doc->virtadr, ChipID);
- if (ReadDOC(doc->virtadr, ChipID) != DOC_ChipID_DocMil) {
- /* It's not a Millennium; it's one of the newer
- DiskOnChip 2000 units with a similar ASIC.
- Treat it like a Millennium, except that it
- can have multiple chips. */
- doc2000_count_chips(mtd);
- mtd->name = "DiskOnChip 2000 (INFTL Model)";
- this->scan_bbt = inftl_scan_bbt;
- return (4 * doc->chips_per_floor);
- } else {
- /* Bog-standard Millennium */
- doc->chips_per_floor = 1;
- mtd->name = "DiskOnChip Millennium";
- this->scan_bbt = nftl_scan_bbt;
- return 1;
- }
-}
-
-static inline int __init doc2001plus_init(struct mtd_info *mtd)
-{
- struct nand_chip *this = mtd->priv;
- struct doc_priv *doc = this->priv;
-
- this->read_byte = doc2001plus_read_byte;
- this->write_buf = doc2001plus_writebuf;
- this->read_buf = doc2001plus_readbuf;
- this->verify_buf = doc2001plus_verifybuf;
- this->scan_bbt = inftl_scan_bbt;
- this->cmd_ctrl = NULL;
- this->select_chip = doc2001plus_select_chip;
- this->cmdfunc = doc2001plus_command;
- this->ecc.hwctl = doc2001plus_enable_hwecc;
-
- doc->chips_per_floor = 1;
- mtd->name = "DiskOnChip Millennium Plus";
-
- return 1;
-}
-
-static int __init doc_probe(unsigned long physadr)
-{
- unsigned char ChipID;
- struct mtd_info *mtd;
- struct nand_chip *nand;
- struct doc_priv *doc;
- void __iomem *virtadr;
- unsigned char save_control;
- unsigned char tmp, tmpb, tmpc;
- int reg, len, numchips;
- int ret = 0;
-
- virtadr = ioremap(physadr, DOC_IOREMAP_LEN);
- if (!virtadr) {
- printk(KERN_ERR "Diskonchip ioremap failed: 0x%x bytes at 0x%lx\n", DOC_IOREMAP_LEN, physadr);
- return -EIO;
- }
-
- /* It's not possible to cleanly detect the DiskOnChip - the
- * bootup procedure will put the device into reset mode, and
- * it's not possible to talk to it without actually writing
- * to the DOCControl register. So we store the current contents
- * of the DOCControl register's location, in case we later decide
- * that it's not a DiskOnChip, and want to put it back how we
- * found it.
- */
- save_control = ReadDOC(virtadr, DOCControl);
-
- /* Reset the DiskOnChip ASIC */
- WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET, virtadr, DOCControl);
- WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET, virtadr, DOCControl);
-
- /* Enable the DiskOnChip ASIC */
- WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL, virtadr, DOCControl);
- WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL, virtadr, DOCControl);
-
- ChipID = ReadDOC(virtadr, ChipID);
-
- switch (ChipID) {
- case DOC_ChipID_Doc2k:
- reg = DoC_2k_ECCStatus;
- break;
- case DOC_ChipID_DocMil:
- reg = DoC_ECCConf;
- break;
- case DOC_ChipID_DocMilPlus16:
- case DOC_ChipID_DocMilPlus32:
- case 0:
- /* Possible Millennium Plus, need to do more checks */
- /* Possibly release from power down mode */
- for (tmp = 0; (tmp < 4); tmp++)
- ReadDOC(virtadr, Mplus_Power);
-
- /* Reset the Millennium Plus ASIC */
- tmp = DOC_MODE_RESET | DOC_MODE_MDWREN | DOC_MODE_RST_LAT | DOC_MODE_BDECT;
- WriteDOC(tmp, virtadr, Mplus_DOCControl);
- WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
-
- mdelay(1);
- /* Enable the Millennium Plus ASIC */
- tmp = DOC_MODE_NORMAL | DOC_MODE_MDWREN | DOC_MODE_RST_LAT | DOC_MODE_BDECT;
- WriteDOC(tmp, virtadr, Mplus_DOCControl);
- WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
- mdelay(1);
-
- ChipID = ReadDOC(virtadr, ChipID);
-
- switch (ChipID) {
- case DOC_ChipID_DocMilPlus16:
- reg = DoC_Mplus_Toggle;
- break;
- case DOC_ChipID_DocMilPlus32:
- printk(KERN_ERR "DiskOnChip Millennium Plus 32MB is not supported, ignoring.\n");
- default:
- ret = -ENODEV;
- goto notfound;
- }
- break;
-
- default:
- ret = -ENODEV;
- goto notfound;
- }
- /* Check the TOGGLE bit in the ECC register */
- tmp = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
- tmpb = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
- tmpc = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
- if ((tmp == tmpb) || (tmp != tmpc)) {
- printk(KERN_WARNING "Possible DiskOnChip at 0x%lx failed TOGGLE test, dropping.\n", physadr);
- ret = -ENODEV;
- goto notfound;
- }
-
- for (mtd = doclist; mtd; mtd = doc->nextdoc) {
- unsigned char oldval;
- unsigned char newval;
- nand = mtd->priv;
- doc = nand->priv;
- /* Use the alias resolution register to determine if this is
- in fact the same DOC aliased to a new address. If writes
- to one chip's alias resolution register change the value on
- the other chip, they're the same chip. */
- if (ChipID == DOC_ChipID_DocMilPlus16) {
- oldval = ReadDOC(doc->virtadr, Mplus_AliasResolution);
- newval = ReadDOC(virtadr, Mplus_AliasResolution);
- } else {
- oldval = ReadDOC(doc->virtadr, AliasResolution);
- newval = ReadDOC(virtadr, AliasResolution);
- }
- if (oldval != newval)
- continue;
- if (ChipID == DOC_ChipID_DocMilPlus16) {
- WriteDOC(~newval, virtadr, Mplus_AliasResolution);
- oldval = ReadDOC(doc->virtadr, Mplus_AliasResolution);
- WriteDOC(newval, virtadr, Mplus_AliasResolution); /* restore it */
- } else {
- WriteDOC(~newval, virtadr, AliasResolution);
- oldval = ReadDOC(doc->virtadr, AliasResolution);
- WriteDOC(newval, virtadr, AliasResolution); /* restore it */
- }
- newval = ~newval;
- if (oldval == newval) {
- printk(KERN_DEBUG "Found alias of DOC at 0x%lx to 0x%lx\n", doc->physadr, physadr);
- goto notfound;
- }
- }
-
- printk(KERN_NOTICE "DiskOnChip found at 0x%lx\n", physadr);
-
- len = sizeof(struct mtd_info) +
- sizeof(struct nand_chip) + sizeof(struct doc_priv) + (2 * sizeof(struct nand_bbt_descr));
- mtd = kzalloc(len, GFP_KERNEL);
- if (!mtd) {
- printk(KERN_ERR "DiskOnChip kmalloc (%d bytes) failed!\n", len);
- ret = -ENOMEM;
- goto fail;
- }
-
- nand = (struct nand_chip *) (mtd + 1);
- doc = (struct doc_priv *) (nand + 1);
- nand->bbt_td = (struct nand_bbt_descr *) (doc + 1);
- nand->bbt_md = nand->bbt_td + 1;
-
- mtd->priv = nand;
- mtd->owner = THIS_MODULE;
-
- nand->priv = doc;
- nand->select_chip = doc200x_select_chip;
- nand->cmd_ctrl = doc200x_hwcontrol;
- nand->dev_ready = doc200x_dev_ready;
- nand->waitfunc = doc200x_wait;
- nand->block_bad = doc200x_block_bad;
- nand->ecc.hwctl = doc200x_enable_hwecc;
- nand->ecc.calculate = doc200x_calculate_ecc;
- nand->ecc.correct = doc200x_correct_data;
-
- nand->ecc.layout = &doc200x_oobinfo;
- nand->ecc.mode = NAND_ECC_HW_SYNDROME;
- nand->ecc.size = 512;
- nand->ecc.bytes = 6;
- nand->ecc.strength = 2;
- nand->bbt_options = NAND_BBT_USE_FLASH;
-
- doc->physadr = physadr;
- doc->virtadr = virtadr;
- doc->ChipID = ChipID;
- doc->curfloor = -1;
- doc->curchip = -1;
- doc->mh0_page = -1;
- doc->mh1_page = -1;
- doc->nextdoc = doclist;
-
- if (ChipID == DOC_ChipID_Doc2k)
- numchips = doc2000_init(mtd);
- else if (ChipID == DOC_ChipID_DocMilPlus16)
- numchips = doc2001plus_init(mtd);
- else
- numchips = doc2001_init(mtd);
-
- if ((ret = nand_scan(mtd, numchips))) {
- /* DBB note: i believe nand_release is necessary here, as
- buffers may have been allocated in nand_base. Check with
- Thomas. FIX ME! */
- /* nand_release will call del_mtd_device, but we haven't yet
- added it. This is handled without incident by
- del_mtd_device, as far as I can tell. */
- nand_release(mtd);
- kfree(mtd);
- goto fail;
- }
-
- /* Success! */
- doclist = mtd;
- return 0;
-
- notfound:
- /* Put back the contents of the DOCControl register, in case it's not
- actually a DiskOnChip. */
- WriteDOC(save_control, virtadr, DOCControl);
- fail:
- iounmap(virtadr);
- return ret;
-}
-
-static void release_nanddoc(void)
-{
- struct mtd_info *mtd, *nextmtd;
- struct nand_chip *nand;
- struct doc_priv *doc;
-
- for (mtd = doclist; mtd; mtd = nextmtd) {
- nand = mtd->priv;
- doc = nand->priv;
-
- nextmtd = doc->nextdoc;
- nand_release(mtd);
- iounmap(doc->virtadr);
- kfree(mtd);
- }
-}
-
-static int __init init_nanddoc(void)
-{
- int i, ret = 0;
-
- /* We could create the decoder on demand, if memory is a concern.
- * This way we have it handy, if an error happens
- *
- * Symbolsize is 10 (bits)
- * Primitve polynomial is x^10+x^3+1
- * first consecutive root is 510
- * primitve element to generate roots = 1
- * generator polinomial degree = 4
- */
- rs_decoder = init_rs(10, 0x409, FCR, 1, NROOTS);
- if (!rs_decoder) {
- printk(KERN_ERR "DiskOnChip: Could not create a RS decoder\n");
- return -ENOMEM;
- }
-
- if (doc_config_location) {
- printk(KERN_INFO "Using configured DiskOnChip probe address 0x%lx\n", doc_config_location);
- ret = doc_probe(doc_config_location);
- if (ret < 0)
- goto outerr;
- } else {
- for (i = 0; (doc_locations[i] != 0xffffffff); i++) {
- doc_probe(doc_locations[i]);
- }
- }
- /* No banner message any more. Print a message if no DiskOnChip
- found, so the user knows we at least tried. */
- if (!doclist) {
- printk(KERN_INFO "No valid DiskOnChip devices found\n");
- ret = -ENODEV;
- goto outerr;
- }
- return 0;
- outerr:
- free_rs(rs_decoder);
- return ret;
-}
-
-static void __exit cleanup_nanddoc(void)
-{
- /* Cleanup the nand/DoC resources */
- release_nanddoc();
-
- /* Free the reed solomon resources */
- if (rs_decoder) {
- free_rs(rs_decoder);
- }
-}
-
-module_init(init_nanddoc);
-module_exit(cleanup_nanddoc);
-
-MODULE_LICENSE("GPL");
-MODULE_AUTHOR("David Woodhouse <dwmw2(a)infradead.org>");
-MODULE_DESCRIPTION("M-Systems DiskOnChip 2000, Millennium and Millennium Plus device driver\n");
diff --git a/include/linux/mtd/blktrans.h b/include/linux/mtd/blktrans.h
deleted file mode 100644
index 32acb6c..0000000
--- a/include/linux/mtd/blktrans.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * (C) 2003 David Woodhouse <dwmw2(a)infradead.org>
- *
- * Interface to Linux block layer for MTD 'translation layers'.
- *
- */
-
-#ifndef __MTD_TRANS_H__
-#define __MTD_TRANS_H__
-
-/* XXX U-BOOT XXX */
-#if 0
-#include <linux/mutex.h>
-#else
-#include <linux/list.h>
-#endif
-
-struct hd_geometry;
-struct mtd_info;
-struct mtd_blktrans_ops;
-struct file;
-struct inode;
-
-struct mtd_blktrans_dev {
- struct mtd_blktrans_ops *tr;
- struct list_head list;
- struct mtd_info *mtd;
-/* XXX U-BOOT XXX */
-#if 0
- struct mutex lock;
-#endif
- int devnum;
- unsigned long size;
- int readonly;
- void *blkcore_priv; /* gendisk in 2.5, devfs_handle in 2.4 */
-};
-
-struct blkcore_priv; /* Differs for 2.4 and 2.5 kernels; private */
-
-struct mtd_blktrans_ops {
- char *name;
- int major;
- int part_bits;
- int blksize;
- int blkshift;
-
- /* Access functions */
- int (*readsect)(struct mtd_blktrans_dev *dev,
- unsigned long block, char *buffer);
- int (*writesect)(struct mtd_blktrans_dev *dev,
- unsigned long block, char *buffer);
-
- /* Block layer ioctls */
- int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo);
- int (*flush)(struct mtd_blktrans_dev *dev);
-
- /* Called with mtd_table_mutex held; no race with add/remove */
- int (*open)(struct mtd_blktrans_dev *dev);
- int (*release)(struct mtd_blktrans_dev *dev);
-
- /* Called on {de,}registration and on subsequent addition/removal
- of devices, with mtd_table_mutex held. */
- void (*add_mtd)(struct mtd_blktrans_ops *tr, struct mtd_info *mtd);
- void (*remove_dev)(struct mtd_blktrans_dev *dev);
-
- struct list_head devs;
- struct list_head list;
- struct module *owner;
-
- struct mtd_blkcore_priv *blkcore_priv;
-};
-
-extern int register_mtd_blktrans(struct mtd_blktrans_ops *tr);
-extern int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr);
-extern int add_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
-extern int del_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
-
-
-#endif /* __MTD_TRANS_H__ */
diff --git a/include/linux/mtd/nftl-user.h b/include/linux/mtd/nftl-user.h
deleted file mode 100644
index 22b8b70..0000000
--- a/include/linux/mtd/nftl-user.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * $Id: nftl-user.h,v 1.2 2005/11/07 11:14:56 gleixner Exp $
- *
- * Parts of NFTL headers shared with userspace
- *
- */
-
-#ifndef __MTD_NFTL_USER_H__
-#define __MTD_NFTL_USER_H__
-
-/* Block Control Information */
-
-struct nftl_bci {
- unsigned char ECCSig[6];
- uint8_t Status;
- uint8_t Status1;
-}__attribute__((packed));
-
-/* Unit Control Information */
-
-struct nftl_uci0 {
- uint16_t VirtUnitNum;
- uint16_t ReplUnitNum;
- uint16_t SpareVirtUnitNum;
- uint16_t SpareReplUnitNum;
-} __attribute__((packed));
-
-struct nftl_uci1 {
- uint32_t WearInfo;
- uint16_t EraseMark;
- uint16_t EraseMark1;
-} __attribute__((packed));
-
-struct nftl_uci2 {
- uint16_t FoldMark;
- uint16_t FoldMark1;
- uint32_t unused;
-} __attribute__((packed));
-
-union nftl_uci {
- struct nftl_uci0 a;
- struct nftl_uci1 b;
- struct nftl_uci2 c;
-};
-
-struct nftl_oob {
- struct nftl_bci b;
- union nftl_uci u;
-};
-
-/* NFTL Media Header */
-
-struct NFTLMediaHeader {
- char DataOrgID[6];
- uint16_t NumEraseUnits;
- uint16_t FirstPhysicalEUN;
- uint32_t FormattedSize;
- unsigned char UnitSizeFactor;
-} __attribute__((packed));
-
-#define MAX_ERASE_ZONES (8192 - 512)
-
-#define ERASE_MARK 0x3c69
-#define SECTOR_FREE 0xff
-#define SECTOR_USED 0x55
-#define SECTOR_IGNORE 0x11
-#define SECTOR_DELETED 0x00
-
-#define FOLD_MARK_IN_PROGRESS 0x5555
-
-#define ZONE_GOOD 0xff
-#define ZONE_BAD_ORIGINAL 0
-#define ZONE_BAD_MARKED 7
-
-
-#endif /* __MTD_NFTL_USER_H__ */
diff --git a/include/linux/mtd/nftl.h b/include/linux/mtd/nftl.h
deleted file mode 100644
index fe22e0d..0000000
--- a/include/linux/mtd/nftl.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * (C) 1999-2003 David Woodhouse <dwmw2(a)infradead.org>
- */
-
-#ifndef __MTD_NFTL_H__
-#define __MTD_NFTL_H__
-
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/blktrans.h>
-
-#include <linux/mtd/nftl-user.h>
-
-/* these info are used in ReplUnitTable */
-#define BLOCK_NIL 0xffff /* last block of a chain */
-#define BLOCK_FREE 0xfffe /* free block */
-#define BLOCK_NOTEXPLORED 0xfffd /* non explored block, only used during mounting */
-#define BLOCK_RESERVED 0xfffc /* bios block or bad block */
-
-struct NFTLrecord {
- struct mtd_blktrans_dev mbd;
- __u16 MediaUnit, SpareMediaUnit;
- __u32 EraseSize;
- struct NFTLMediaHeader MediaHdr;
- int usecount;
- unsigned char heads;
- unsigned char sectors;
- unsigned short cylinders;
- __u16 numvunits;
- __u16 lastEUN; /* should be suppressed */
- __u16 numfreeEUNs;
- __u16 LastFreeEUN; /* To speed up finding a free EUN */
- int head,sect,cyl;
- __u16 *EUNtable; /* [numvunits]: First EUN for each virtual unit */
- __u16 *ReplUnitTable; /* [numEUNs]: ReplUnitNumber for each */
- unsigned int nb_blocks; /* number of physical blocks */
- unsigned int nb_boot_blocks; /* number of blocks used by the bios */
- struct erase_info instr;
- struct nand_ecclayout oobinfo;
-};
-
-int NFTL_mount(struct NFTLrecord *s);
-int NFTL_formatblock(struct NFTLrecord *s, int block);
-
-int nftl_read_oob(struct mtd_info *mtd, loff_t offs, size_t len,
- size_t *retlen, uint8_t *buf);
-int nftl_write_oob(struct mtd_info *mtd, loff_t offs, size_t len,
- size_t *retlen, uint8_t *buf);
-
-#ifndef NFTL_MAJOR
-#define NFTL_MAJOR 93
-#endif
-
-#define MAX_NFTLS 16
-#define MAX_SECTORS_PER_UNIT 64
-#define NFTL_PARTN_BITS 4
-
-#endif /* __MTD_NFTL_H__ */
--
1.8.3.2
2
1

18 Apr '14
Commit 99bcad18 deleted ADCIOP and DASA_SIM board support
but missed to delete board/esd/adciop and board/esd/dasa_sim.
It also missed to add entries to doc/README.scrapyard.
Signed-off-by: Masahiro Yamada <yamada.m(a)jp.panasonic.com>
Cc: Stefan Roese <sr(a)denx.de>
---
board/esd/adciop/Makefile | 8 -
board/esd/adciop/adciop.c | 87 -
board/esd/adciop/adciop.h | 28 -
board/esd/adciop/flash.c | 97 -
board/esd/dasa_sim/Makefile | 8 -
board/esd/dasa_sim/cmd_dasa_sim.c | 209 --
board/esd/dasa_sim/dasa_sim.c | 198 --
board/esd/dasa_sim/dasa_sim.h | 28 -
board/esd/dasa_sim/eeprom.c | 164 --
board/esd/dasa_sim/flash.c | 58 -
board/esd/dasa_sim/fpgadata.c | 3903 -------------------------------------
board/esd/dasa_sim/u-boot.lds | 89 -
doc/README.scrapyard | 2 +
13 files changed, 2 insertions(+), 4877 deletions(-)
delete mode 100644 board/esd/adciop/Makefile
delete mode 100644 board/esd/adciop/adciop.c
delete mode 100644 board/esd/adciop/adciop.h
delete mode 100644 board/esd/adciop/flash.c
delete mode 100644 board/esd/dasa_sim/Makefile
delete mode 100644 board/esd/dasa_sim/cmd_dasa_sim.c
delete mode 100644 board/esd/dasa_sim/dasa_sim.c
delete mode 100644 board/esd/dasa_sim/dasa_sim.h
delete mode 100644 board/esd/dasa_sim/eeprom.c
delete mode 100644 board/esd/dasa_sim/flash.c
delete mode 100644 board/esd/dasa_sim/fpgadata.c
delete mode 100644 board/esd/dasa_sim/u-boot.lds
diff --git a/board/esd/adciop/Makefile b/board/esd/adciop/Makefile
deleted file mode 100644
index d0e264d..0000000
--- a/board/esd/adciop/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-#
-# (C) Copyright 2000-2006
-# Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
-#
-# SPDX-License-Identifier: GPL-2.0+
-#
-
-obj-y = adciop.o flash.o ../common/misc.o ../common/pci.o
diff --git a/board/esd/adciop/adciop.c b/board/esd/adciop/adciop.c
deleted file mode 100644
index b3d637e..0000000
--- a/board/esd/adciop/adciop.c
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * (C) Copyright 2000
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <netdev.h>
-#include "adciop.h"
-
-/* ------------------------------------------------------------------------- */
-
-#define _NOT_USED_ 0xFFFFFFFF
-
-/* ------------------------------------------------------------------------- */
-
-
-int board_early_init_f (void)
-{
- /*
- * Set port pin in escc2 to keep living, and configure user led output
- */
- *(unsigned char *) 0x2000033e = 0x77; /* ESCC2: PCR bit3=pwr on, bit7=led out */
- *(unsigned char *) 0x2000033c = 0x88; /* ESCC2: PVR pwr on, led off */
-
- /*
- * Init pci regs
- */
- *(unsigned long *) 0x50000304 = 0x02900007; /* enable mem/io/master bits */
- *(unsigned long *) 0x500001b4 = 0x00000000; /* disable pci interrupt output enable */
- *(unsigned long *) 0x50000354 = 0x00c05800; /* disable emun interrupt output enable */
- *(unsigned long *) 0x50000344 = 0x00000000; /* disable pme interrupt output enable */
- *(unsigned long *) 0x50000310 = 0x00000000; /* pcibar0 */
- *(unsigned long *) 0x50000314 = 0x00000000; /* pcibar1 */
- *(unsigned long *) 0x50000318 = 0x00000000; /* pcibar2 */
-
- return 0;
-}
-
-
-/*
- * Check Board Identity:
- */
-
-int checkboard (void)
-{
- char str[64];
- int i = getenv_f("serial#", str, sizeof (str));
-
- puts ("Board: ");
-
- if (!i || strncmp (str, "ADCIOP", 6)) {
- puts ("### No HW ID - assuming ADCIOP\n");
- return (1);
- }
-
- puts (str);
-
- putc ('\n');
-
- return 0;
-}
-
-/* ------------------------------------------------------------------------- */
-
-phys_size_t initdram (int board_type)
-{
- return (16 * 1024 * 1024);
-}
-
-/* ------------------------------------------------------------------------- */
-
-int testdram (void)
-{
- /* TODO: XXX XXX XXX */
- printf ("test: 16 MB - ok\n");
-
- return (0);
-}
-
-/* ------------------------------------------------------------------------- */
-
-int board_eth_init(bd_t *bis)
-{
- return pci_eth_init(bis);
-}
diff --git a/board/esd/adciop/adciop.h b/board/esd/adciop/adciop.h
deleted file mode 100644
index 75e7950..0000000
--- a/board/esd/adciop/adciop.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * (C) Copyright 2000
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-/****************************************************************************
- * FLASH Memory Map as used by TQ Monitor:
- *
- * Start Address Length
- * +-----------------------+ 0x4000_0000 Start of Flash -----------------
- * | MON8xx code | 0x4000_0100 Reset Vector
- * +-----------------------+ 0x400?_????
- * | (unused) |
- * +-----------------------+ 0x4001_FF00
- * | Ethernet Addresses | 0x78
- * +-----------------------+ 0x4001_FF78
- * | (Reserved for MON8xx) | 0x44
- * +-----------------------+ 0x4001_FFBC
- * | Lock Address | 0x04
- * +-----------------------+ 0x4001_FFC0 ^
- * | Hardware Information | 0x40 | MON8xx
- * +=======================+ 0x4002_0000 (sector border) -----------------
- * | Autostart Header | | Applications
- * | ... | v
- *
- *****************************************************************************/
diff --git a/board/esd/adciop/flash.c b/board/esd/adciop/flash.c
deleted file mode 100644
index b1db12e..0000000
--- a/board/esd/adciop/flash.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * (C) Copyright 2001
- * Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <asm/ppc4xx.h>
-#include <asm/processor.h>
-
-/*
- * include common flash code (for esd boards)
- */
-#include "../common/flash.c"
-
-/*-----------------------------------------------------------------------
- * Functions
- */
-static ulong flash_get_size (vu_long *addr, flash_info_t *info);
-static void flash_get_offsets (ulong base, flash_info_t *info);
-
-/*-----------------------------------------------------------------------
- */
-
-unsigned long flash_init (void)
-{
- unsigned long size_b0, size_b1;
- int i;
-
- /* Init: no FLASHes known */
- for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
- flash_info[i].flash_id = FLASH_UNKNOWN;
- }
-
- size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
-
- if (flash_info[0].flash_id == FLASH_UNKNOWN) {
- printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
- size_b0, size_b0<<20);
- }
-
- size_b1 = flash_get_size((vu_long *)FLASH_BASE1_PRELIM, &flash_info[1]);
-
- if (size_b1 > size_b0) {
- printf ("## ERROR: "
- "Bank 1 (0x%08lx = %ld MB) > Bank 0 (0x%08lx = %ld MB)\n",
- size_b1, size_b1<<20,
- size_b0, size_b0<<20
- );
- flash_info[0].flash_id = FLASH_UNKNOWN;
- flash_info[1].flash_id = FLASH_UNKNOWN;
- flash_info[0].sector_count = -1;
- flash_info[1].sector_count = -1;
- flash_info[0].size = 0;
- flash_info[1].size = 0;
- return (0);
- }
-
- /* Re-do sizing to get full correct info */
- size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
-
- flash_get_offsets (FLASH_BASE0_PRELIM, &flash_info[0]);
-
- /* monitor protection ON by default */
- flash_protect(FLAG_PROTECT_SET,
- FLASH_BASE0_PRELIM+size_b0-monitor_flash_len,
- FLASH_BASE0_PRELIM+size_b0-1,
- &flash_info[0]);
-
- if (size_b1) {
- /* Re-do sizing to get full correct info */
- size_b1 = flash_get_size((vu_long *)(FLASH_BASE0_PRELIM + size_b0),
- &flash_info[1]);
-
- flash_get_offsets (FLASH_BASE0_PRELIM + size_b0, &flash_info[1]);
-
- /* monitor protection ON by default */
- flash_protect(FLAG_PROTECT_SET,
- FLASH_BASE0_PRELIM+size_b0+size_b1-monitor_flash_len,
- FLASH_BASE0_PRELIM+size_b0+size_b1-1,
- &flash_info[1]);
- /* monitor protection OFF by default (one is enough) */
- flash_protect(FLAG_PROTECT_CLEAR,
- FLASH_BASE0_PRELIM+size_b0-monitor_flash_len,
- FLASH_BASE0_PRELIM+size_b0-1,
- &flash_info[0]);
- } else {
- flash_info[1].flash_id = FLASH_UNKNOWN;
- flash_info[1].sector_count = -1;
- }
-
- flash_info[0].size = size_b0;
- flash_info[1].size = size_b1;
-
- return (size_b0 + size_b1);
-}
diff --git a/board/esd/dasa_sim/Makefile b/board/esd/dasa_sim/Makefile
deleted file mode 100644
index eb9f5f8..0000000
--- a/board/esd/dasa_sim/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-#
-# (C) Copyright 2000-2006
-# Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
-#
-# SPDX-License-Identifier: GPL-2.0+
-#
-
-obj-y = dasa_sim.o flash.o cmd_dasa_sim.o eeprom.o ../common/pci.o
diff --git a/board/esd/dasa_sim/cmd_dasa_sim.c b/board/esd/dasa_sim/cmd_dasa_sim.c
deleted file mode 100644
index 9191624..0000000
--- a/board/esd/dasa_sim/cmd_dasa_sim.c
+++ /dev/null
@@ -1,209 +0,0 @@
-/*
- * (C) Copyright 2001
- * Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <command.h>
-#include <pci.h>
-#include <asm/io.h>
-
-#define OK 0
-#define ERROR (-1)
-
-extern u_long pci9054_iobase;
-
-
-/***************************************************************************
- *
- * Routines for PLX PCI9054 eeprom access
- *
- */
-
-static unsigned int PciEepromReadLongVPD (int offs)
-{
- unsigned int value;
- unsigned int ret;
- int count;
-
- pci_write_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x4c,
- (offs << 16) | 0x0003);
- count = 0;
-
- for (;;) {
- udelay (10 * 1000);
- pci_read_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x4c, &ret);
- if ((ret & 0x80000000) != 0) {
- break;
- } else {
- count++;
- if (count > 10) {
- printf ("\nTimeout: ret=%08x - Please try again!\n", ret);
- break;
- }
- }
- }
-
- pci_read_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x50, &value);
-
- return value;
-}
-
-
-static int PciEepromWriteLongVPD (int offs, unsigned int value)
-{
- unsigned int ret;
- int count;
-
- pci_write_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x50, value);
- pci_write_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x4c,
- (offs << 16) | 0x80000003);
- count = 0;
-
- for (;;) {
- udelay (10 * 1000);
- pci_read_config_dword (CONFIG_SYS_PCI9054_DEV_FN, 0x4c, &ret);
- if ((ret & 0x80000000) == 0) {
- break;
- } else {
- count++;
- if (count > 10) {
- printf ("\nTimeout: ret=%08x - Please try again!\n", ret);
- break;
- }
- }
- }
-
- return true;
-}
-
-
-static void showPci9054 (void)
-{
- int val;
- int l, i;
-
- /* read 9054-values */
- for (l = 0; l < 6; l++) {
- printf ("%02x: ", l * 0x10);
- for (i = 0; i < 4; i++) {
- pci_read_config_dword (CONFIG_SYS_PCI9054_DEV_FN,
- l * 16 + i * 4,
- (unsigned int *)&val);
- printf ("%08x ", val);
- }
- printf ("\n");
- }
- printf ("\n");
-
- for (l = 0; l < 7; l++) {
- printf ("%02x: ", l * 0x10);
- for (i = 0; i < 4; i++)
- printf ("%08x ",
- PciEepromReadLongVPD ((i + l * 4) * 4));
- printf ("\n");
- }
- printf ("\n");
-}
-
-
-static void updatePci9054 (void)
-{
- /*
- * Set EEPROM write-protect register to 0
- */
- out_be32 ((void *)(pci9054_iobase + 0x0c),
- in_be32 ((void *)(pci9054_iobase + 0x0c)) & 0xffff00ff);
-
- /* Long Serial EEPROM Load Registers... */
- PciEepromWriteLongVPD (0x00, 0x905410b5);
- PciEepromWriteLongVPD (0x04, 0x09800001); /* other input controller */
- PciEepromWriteLongVPD (0x08, 0x28140100);
-
- PciEepromWriteLongVPD (0x0c, 0x00000000); /* MBOX0... */
- PciEepromWriteLongVPD (0x10, 0x00000000);
-
- /* las0: fpga access (0x0000.0000 ... 0x0003.ffff) */
- PciEepromWriteLongVPD (0x14, 0xfffc0000); /* LAS0RR... */
- PciEepromWriteLongVPD (0x18, 0x00000001); /* LAS0BA */
-
- PciEepromWriteLongVPD (0x1c, 0x00200000); /* MARBR... */
- PciEepromWriteLongVPD (0x20, 0x00300500); /* LMISC/BIGEND */
-
- PciEepromWriteLongVPD (0x24, 0x00000000); /* EROMRR... */
- PciEepromWriteLongVPD (0x28, 0x00000000); /* EROMBA */
-
- PciEepromWriteLongVPD (0x2c, 0x43030000); /* LBRD0... */
-
- PciEepromWriteLongVPD (0x30, 0x00000000); /* DMRR... */
- PciEepromWriteLongVPD (0x34, 0x00000000);
- PciEepromWriteLongVPD (0x38, 0x00000000);
-
- PciEepromWriteLongVPD (0x3c, 0x00000000); /* DMPBAM... */
- PciEepromWriteLongVPD (0x40, 0x00000000);
-
- /* Extra Long Serial EEPROM Load Registers... */
- PciEepromWriteLongVPD (0x44, 0x010212fe); /* PCISID... */
-
- /* las1: 505-sram access (0x0004.0000 ... 0x001f.ffff) */
- /* Offset to LAS1: Group 1: 0x00040000 */
- /* Group 2: 0x00080000 */
- /* Group 3: 0x000c0000 */
- PciEepromWriteLongVPD (0x48, 0xffe00000); /* LAS1RR */
- PciEepromWriteLongVPD (0x4c, 0x00040001); /* LAS1BA */
- PciEepromWriteLongVPD (0x50, 0x00000208); /* LBRD1 */ /* so wars bisher */
-
- PciEepromWriteLongVPD (0x54, 0x00004c06); /* HotSwap... */
-
- printf ("Finished writing defaults into PLX PCI9054 EEPROM!\n");
-}
-
-
-static void clearPci9054 (void)
-{
- /*
- * Set EEPROM write-protect register to 0
- */
- out_be32 ((void *)(pci9054_iobase + 0x0c),
- in_be32 ((void *)(pci9054_iobase + 0x0c)) & 0xffff00ff);
-
- /* Long Serial EEPROM Load Registers... */
- PciEepromWriteLongVPD (0x00, 0xffffffff);
- PciEepromWriteLongVPD (0x04, 0xffffffff); /* other input controller */
-
- printf ("Finished clearing PLX PCI9054 EEPROM!\n");
-}
-
-
-/* ------------------------------------------------------------------------- */
-int do_pci9054 (cmd_tbl_t * cmdtp, int flag, int argc,
- char * const argv[])
-{
- if (strcmp (argv[1], "info") == 0) {
- showPci9054 ();
- return 0;
- }
-
- if (strcmp (argv[1], "update") == 0) {
- updatePci9054 ();
- return 0;
- }
-
- if (strcmp (argv[1], "clear") == 0) {
- clearPci9054 ();
- return 0;
- }
-
- return cmd_usage(cmdtp);
-}
-
-U_BOOT_CMD(
- pci9054, 3, 1, do_pci9054,
- "PLX PCI9054 EEPROM access",
- "pci9054 info - print EEPROM values\n"
- "pci9054 update - updates EEPROM with default values"
-);
-
-/* ------------------------------------------------------------------------- */
diff --git a/board/esd/dasa_sim/dasa_sim.c b/board/esd/dasa_sim/dasa_sim.c
deleted file mode 100644
index b779a09..0000000
--- a/board/esd/dasa_sim/dasa_sim.c
+++ /dev/null
@@ -1,198 +0,0 @@
-/*
- * (C) Copyright 2001
- * Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <netdev.h>
-#include "dasa_sim.h"
-
-/* ------------------------------------------------------------------------- */
-
-#undef FPGA_DEBUG
-
-#define _NOT_USED_ 0xFFFFFFFF
-
-/* ------------------------------------------------------------------------- */
-
-/* fpga configuration data - generated by bit2inc */
-static unsigned char fpgadata[] = {
-#include "fpgadata.c"
-};
-
-#define FPGA_PRG_SLEEP 32 /* fpga program sleep-time */
-#define LOAD_LONG(a) a
-
-
-/******************************************************************************
- *
- * sysFpgaBoot - Load fpga-image into fpga
- *
- */
-static int fpgaBoot (void)
-{
- int i, j, index, len;
- unsigned char b;
- int imageSize;
-
- imageSize = sizeof (fpgadata);
-
- /* display infos on fpgaimage */
- index = 15;
- for (i = 0; i < 4; i++) {
- len = fpgadata[index];
- index += len + 3;
- }
-
- /* search for preamble 0xFF2X */
- for (index = 0; index < imageSize - 1; index++) {
- if ((fpgadata[index] == 0xff)
- && ((fpgadata[index + 1] & 0xf0) == 0x20))
- break;
- }
-
- /* enable cs1 instead of user0... */
- *(unsigned long *) 0x50000084 &= ~0x00000002;
-
-#ifdef FPGA_DEBUG
- printf ("%s\n",
- ((in_be32 ((void *)0x50000084) & 0x00010000) == 0) ?
- "NOT DONE" : "DONE");
-#endif
-
- /* init fpga by asserting and deasserting PROGRAM* (USER2)... */
- *(unsigned long *) 0x50000084 &= ~0x00000400;
- udelay (FPGA_PRG_SLEEP * 1000);
-
- *(unsigned long *) 0x50000084 |= 0x00000400;
- udelay (FPGA_PRG_SLEEP * 1000);
-
-#ifdef FPGA_DEBUG
- printf ("%s\n",
- ((in_be32 ((void *)0x50000084) & 0x00010000) == 0) ?
- "NOT DONE" : "DONE");
-#endif
-
- /* cs1: disable burst, disable ready */
- *(unsigned long *) 0x50000114 &= ~0x00000300;
-
- /* cs1: set write timing */
- *(unsigned long *) 0x50000118 |= 0x00010900;
-
- /* write configuration-data into fpga... */
- for (i = index; i < imageSize; i++) {
- b = fpgadata[i];
- for (j = 0; j < 8; j++) {
- *(unsigned long *) 0x30000000 =
- ((b & 0x80) == 0x80)
- ? LOAD_LONG (0x03030101)
- : LOAD_LONG (0x02020000);
- b <<= 1;
- }
- }
-
-#ifdef FPGA_DEBUG
- printf ("%s\n",
- ((in_be32 ((void *)0x50000084) & 0x00010000) == 0) ?
- "NOT DONE" : "DONE");
-#endif
-
- /* set cs1 to 32 bit data-width, disable burst, enable ready */
- *(unsigned long *) 0x50000114 |= 0x00000202;
- *(unsigned long *) 0x50000114 &= ~0x00000100;
-
- /* cs1: set iop access to little endian */
- *(unsigned long *) 0x50000114 &= ~0x00000010;
-
- /* cs1: set read and write timing */
- *(unsigned long *) 0x50000118 = 0x00010000;
- *(unsigned long *) 0x5000011c = 0x00010001;
-
-#ifdef FPGA_DEBUG
- printf ("%s\n",
- ((in_be32 ((void *)0x50000084) & 0x00010000) == 0) ?
- "NOT DONE" : "DONE");
-#endif
-
- /* wait for 30 ms... */
- udelay (30 * 1000);
- /* check if fpga's DONE signal - correctly booted ? */
- if ((*(unsigned long *) 0x50000084 & 0x00010000) == 0)
- return -1;
-
- return 0;
-}
-
-
-int board_early_init_f (void)
-{
- /*
- * Init pci regs
- */
- *(unsigned long *) 0x50000304 = 0x02900007; /* enable mem/io/master bits */
- *(unsigned long *) 0x500001b4 = 0x00000000; /* disable pci interrupt output enable */
- *(unsigned long *) 0x50000354 = 0x00c05800; /* disable emun interrupt output enable */
- *(unsigned long *) 0x50000344 = 0x00000000; /* disable pme interrupt output enable */
- *(unsigned long *) 0x50000310 = 0x00000000; /* pcibar0 */
- *(unsigned long *) 0x50000314 = 0x00000000; /* pcibar1 */
- *(unsigned long *) 0x50000318 = 0x00000000; /* pcibar2 */
-
- return 0;
-}
-
-
-/*
- * Check Board Identity:
- */
-
-int checkboard (void)
-{
- int index;
- int len;
- char str[64];
- int i = getenv_f("serial#", str, sizeof (str));
- int fpga;
- unsigned short val;
-
- puts ("Board: ");
-
- /*
- * Boot onboard FPGA
- */
- fpga = fpgaBoot ();
-
- if (!i || strncmp (str, "DASA_SIM", 8)) {
- puts ("### No HW ID - assuming DASA_SIM");
- }
-
- puts (str);
-
- if (fpga == 0) {
- val = *(unsigned short *) 0x30000202;
- printf (" (Id=%d Version=%d Revision=%d)",
- (val & 0x07f8) >> 3, val & 0x0001, (val & 0x0006) >> 1);
-
- puts ("\nFPGA: ");
-
- /* display infos on fpgaimage */
- index = 15;
- for (i = 0; i < 4; i++) {
- len = fpgadata[index];
- printf ("%s ", &(fpgadata[index + 1]));
- index += len + 3;
- }
- } else {
- puts ("\nFPGA: Booting failed!");
- }
-
- putc ('\n');
-
- return 0;
-}
-
-phys_size_t initdram (int board_type)
-{
- return (16 * 1024 * 1024);
-}
diff --git a/board/esd/dasa_sim/dasa_sim.h b/board/esd/dasa_sim/dasa_sim.h
deleted file mode 100644
index 75e7950..0000000
--- a/board/esd/dasa_sim/dasa_sim.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * (C) Copyright 2000
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-/****************************************************************************
- * FLASH Memory Map as used by TQ Monitor:
- *
- * Start Address Length
- * +-----------------------+ 0x4000_0000 Start of Flash -----------------
- * | MON8xx code | 0x4000_0100 Reset Vector
- * +-----------------------+ 0x400?_????
- * | (unused) |
- * +-----------------------+ 0x4001_FF00
- * | Ethernet Addresses | 0x78
- * +-----------------------+ 0x4001_FF78
- * | (Reserved for MON8xx) | 0x44
- * +-----------------------+ 0x4001_FFBC
- * | Lock Address | 0x04
- * +-----------------------+ 0x4001_FFC0 ^
- * | Hardware Information | 0x40 | MON8xx
- * +=======================+ 0x4002_0000 (sector border) -----------------
- * | Autostart Header | | Applications
- * | ... | v
- *
- *****************************************************************************/
diff --git a/board/esd/dasa_sim/eeprom.c b/board/esd/dasa_sim/eeprom.c
deleted file mode 100644
index 1fc78de..0000000
--- a/board/esd/dasa_sim/eeprom.c
+++ /dev/null
@@ -1,164 +0,0 @@
-/*
- * (C) Copyright 2001
- * Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <command.h>
-#include <asm/io.h>
-
-#define EEPROM_CAP 0x50000358
-#define EEPROM_DATA 0x5000035c
-
-
-unsigned int eepromReadLong(int offs)
-{
- unsigned int value;
- unsigned short ret;
- int count;
-
- out_be16((void *)EEPROM_CAP, offs);
-
- count = 0;
-
- for (;;)
- {
- count++;
- ret = in_be16((void *)EEPROM_CAP);
-
- if ((ret & 0x8000) != 0)
- break;
- }
-
- value = in_be32((void *)EEPROM_DATA);
-
- return value;
-}
-
-
-unsigned char eepromReadByte(int offs)
-{
- unsigned int valueLong;
- unsigned char *ptr;
-
- valueLong = eepromReadLong(offs & ~3);
- ptr = (unsigned char *)&valueLong;
-
- return ptr[offs & 3];
-}
-
-
-void eepromWriteLong(int offs, unsigned int value)
-{
- unsigned short ret;
- int count;
-
- count = 0;
-
- out_be32((void *)EEPROM_DATA, value);
- out_be16((void *)EEPROM_CAP, 0x8000 + offs);
-
- for (;;)
- {
- count++;
- ret = in_be16((void *)EEPROM_CAP);
-
- if ((ret & 0x8000) == 0)
- break;
- }
-}
-
-
-void eepromWriteByte(int offs, unsigned char valueByte)
-{
- unsigned int valueLong;
- unsigned char *ptr;
-
- valueLong = eepromReadLong(offs & ~3);
- ptr = (unsigned char *)&valueLong;
-
- ptr[offs & 3] = valueByte;
-
- eepromWriteLong(offs & ~3, valueLong);
-}
-
-
-void i2c_read (uchar *addr, int alen, uchar *buffer, int len)
-{
- int i;
- int len2, ptr;
-
- /* printf("\naddr=%x alen=%x buffer=%x len=%x", addr[0], addr[1], *(short *)addr, alen, buffer, len); /###* test-only */
-
- ptr = *(short *)addr;
-
- /*
- * Read till lword boundary
- */
- len2 = 4 - (*(short *)addr & 0x0003);
- for (i=0; i<len2; i++)
- {
- *buffer++ = eepromReadByte(ptr++);
- }
-
- /*
- * Read all lwords
- */
- len2 = (len - len2) >> 2;
- for (i=0; i<len2; i++)
- {
- *(unsigned int *)buffer = eepromReadLong(ptr);
- buffer += 4;
- ptr += 4;
- }
-
- /*
- * Read last bytes
- */
- len2 = (*(short *)addr + len) & 0x0003;
- for (i=0; i<len2; i++)
- {
- *buffer++ = eepromReadByte(ptr++);
- }
-}
-
-void i2c_write (uchar *addr, int alen, uchar *buffer, int len)
-{
- int i;
- int len2, ptr;
-
- /* printf("\naddr=%x alen=%x buffer=%x len=%x", addr[0], addr[1], *(short *)addr, alen, buffer, len); /###* test-only */
-
- ptr = *(short *)addr;
-
- /*
- * Write till lword boundary
- */
- len2 = 4 - (*(short *)addr & 0x0003);
- for (i=0; i<len2; i++)
- {
- eepromWriteByte(ptr++, *buffer++);
- }
-
- /*
- * Write all lwords
- */
- len2 = (len - len2) >> 2;
- for (i=0; i<len2; i++)
- {
- eepromWriteLong(ptr, *(unsigned int *)buffer);
- buffer += 4;
- ptr += 4;
- }
-
- /*
- * Write last bytes
- */
- len2 = (*(short *)addr + len) & 0x0003;
- for (i=0; i<len2; i++)
- {
- eepromWriteByte(ptr++, *buffer++);
- }
-}
diff --git a/board/esd/dasa_sim/flash.c b/board/esd/dasa_sim/flash.c
deleted file mode 100644
index 05691d0..0000000
--- a/board/esd/dasa_sim/flash.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * (C) Copyright 2001
- * Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <asm/ppc4xx.h>
-#include <asm/processor.h>
-
-/*
- * include common flash code (for esd boards)
- */
-#include "../common/flash.c"
-
-/*-----------------------------------------------------------------------
- * Functions
- */
-static ulong flash_get_size (vu_long *addr, flash_info_t *info);
-static void flash_get_offsets (ulong base, flash_info_t *info);
-
-
-/*-----------------------------------------------------------------------
- */
-
-unsigned long flash_init (void)
-{
- unsigned long size_b0;
- int i;
-
- /* Init: no FLASHes known */
- for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
- flash_info[i].flash_id = FLASH_UNKNOWN;
- }
-
- /* Static FLASH Bank configuration here - FIXME XXX */
-
- size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
-
- if (flash_info[0].flash_id == FLASH_UNKNOWN) {
- printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
- size_b0, size_b0<<20);
- }
-
- /* Setup offsets */
- flash_get_offsets (-size_b0, &flash_info[0]);
-
- /* Monitor protection ON by default */
- (void)flash_protect(FLAG_PROTECT_SET,
- -monitor_flash_len,
- 0xffffffff,
- &flash_info[0]);
-
- flash_info[0].size = size_b0;
-
- return (size_b0);
-}
diff --git a/board/esd/dasa_sim/fpgadata.c b/board/esd/dasa_sim/fpgadata.c
deleted file mode 100644
index f54ef1c..0000000
--- a/board/esd/dasa_sim/fpgadata.c
+++ /dev/null
@@ -1,3903 +0,0 @@
-0x00, 0x09, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0,
-0x0f, 0xf0, 0x00, 0x00, 0x01, 0x61, 0x00, 0x0d,
-0x61, 0x63, 0x6d, 0x30, 0x30, 0x30, 0x35, 0x64,
-0x2e, 0x6e, 0x63, 0x64, 0x00, 0x62, 0x00, 0x0b,
-0x73, 0x33, 0x30, 0x78, 0x6c, 0x74, 0x71, 0x31,
-0x34, 0x34, 0x00, 0x63, 0x00, 0x0b, 0x32, 0x30,
-0x30, 0x30, 0x2f, 0x30, 0x37, 0x2f, 0x31, 0x30,
-0x00, 0x64, 0x00, 0x09, 0x31, 0x39, 0x3a, 0x32,
-0x37, 0x3a, 0x33, 0x38, 0x00, 0x65, 0x00, 0x00,
-0x79, 0xaa, 0xff, 0x20, 0x3c, 0xd4, 0x9f, 0x5b,
-0xff, 0x7e, 0xde, 0xee, 0xbd, 0xaa, 0xfe, 0xbf,
-0x9e, 0xff, 0xfb, 0xfe, 0x5f, 0xbf, 0xed, 0xab,
-0xdb, 0xbe, 0xe5, 0xfb, 0xfe, 0xfb, 0x9f, 0xeb,
-0xfa, 0xfe, 0x5f, 0xb6, 0xef, 0xfb, 0xfe, 0xfe,
-0xaf, 0xff, 0xff, 0xff, 0xfb, 0xfe, 0xef, 0xbf,
-0xef, 0xff, 0xba, 0xff, 0xbb, 0xfe, 0xfb, 0xbe,
-0xff, 0xee, 0xeb, 0xff, 0xef, 0xbb, 0xef, 0xff,
-0xbe, 0xff, 0xbf, 0xff, 0xfb, 0xfe, 0xff, 0xbb,
-0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd,
-0xff, 0xff, 0xff, 0xff, 0xbc, 0xff, 0xbf, 0xff,
-0xfb, 0xfd, 0xff, 0xdf, 0xf7, 0xff, 0xff, 0xbf,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf7, 0xfd,
-0xff, 0xff, 0xfe, 0x3f, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xff, 0xbf, 0xef, 0xe3, 0xf6, 0xff, 0xbf,
-0xef, 0xfb, 0xfe, 0xff, 0xef, 0xdb, 0xfe, 0xff,
-0xbf, 0xef, 0xe3, 0xfe, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xfe, 0x3f, 0xff, 0xf7, 0xff, 0xef, 0xbb,
-0xe7, 0xf9, 0xbe, 0x7f, 0xbf, 0xec, 0xf8, 0xfe,
-0xff, 0xbb, 0xef, 0xfb, 0xbe, 0x7b, 0xe3, 0xfb,
-0xbe, 0xff, 0xbf, 0xec, 0xfb, 0xfe, 0xff, 0xbb,
-0xee, 0xfb, 0xfe, 0xcf, 0xbf, 0xf6, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x17,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
-0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf3, 0x7f, 0xff, 0xf7, 0xff, 0xff, 0xdf,
-0xf7, 0xf5, 0xfd, 0xff, 0xdf, 0xf7, 0xff, 0xfd,
-0xff, 0xdf, 0xf5, 0xff, 0x7f, 0xff, 0xdf, 0xfd,
-0xff, 0xff, 0x7f, 0xd7, 0xf7, 0xfd, 0x7f, 0xdf,
-0xd7, 0xf7, 0xff, 0x6f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xbf, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xfe, 0xdf, 0xff, 0xcd, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0x4f, 0xdf, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xfd, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xff, 0x7f, 0xff, 0xff, 0xfb, 0x3f, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xfc, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xfe, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,
-0xec, 0xff, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff,
-0x3f, 0xdf, 0xf7, 0xfd, 0x7f, 0x7f, 0xcf, 0xf3,
-0xfc, 0xff, 0xdf, 0x73, 0xdd, 0xff, 0x7f, 0xdf,
-0xf7, 0xfd, 0xff, 0x7f, 0xcf, 0xf7, 0xfd, 0xff,
-0x7f, 0xfc, 0x9f, 0xff, 0xef, 0xbb, 0xfe, 0xbf,
-0xdf, 0xef, 0xbb, 0xfe, 0xfb, 0xbf, 0xef, 0xfa,
-0xee, 0xff, 0xff, 0xfb, 0xfe, 0xff, 0xbf, 0xef,
-0xfa, 0xee, 0xff, 0xbe, 0xef, 0xbb, 0xfe, 0xff,
-0xbf, 0xef, 0xf7, 0xeb, 0xff, 0xe7, 0xf9, 0xfe,
-0x7a, 0x9d, 0xe7, 0xf9, 0x7c, 0x7e, 0x9e, 0xe7,
-0x59, 0xf6, 0x7e, 0x9f, 0xe9, 0x22, 0x7f, 0x9b,
-0xe6, 0xb9, 0xfe, 0x4f, 0x9f, 0xe6, 0xf9, 0xfe,
-0x7b, 0x9d, 0xe6, 0xfe, 0xfe, 0x7e, 0xff, 0xbf,
-0xef, 0xfb, 0xee, 0xff, 0xbf, 0xe7, 0xf9, 0xfe,
-0xff, 0x9f, 0xef, 0xfb, 0xfe, 0xfd, 0xdf, 0xfb,
-0xee, 0xfb, 0xbf, 0xef, 0xfb, 0xee, 0xf7, 0xbf,
-0xef, 0xf7, 0xfe, 0xff, 0x7f, 0x5f, 0x0f, 0x9f,
-0x9b, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfe, 0x7f, 0x9f, 0x66, 0xf9, 0xfe, 0x7f, 0xe7,
-0xf9, 0xee, 0x77, 0x9f, 0xe7, 0xf9, 0xde, 0x7d,
-0x9d, 0xe7, 0xf9, 0xee, 0x7f, 0x9f, 0xed, 0xc9,
-0xff, 0xfd, 0xff, 0x7f, 0xdf, 0xfd, 0xfd, 0xff,
-0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xfd,
-0xff, 0xdf, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf,
-0xf7, 0xfd, 0xff, 0x7f, 0xff, 0xf7, 0xff, 0xff,
-0xfc, 0xb7, 0xfe, 0xff, 0xbf, 0xef, 0xfa, 0xfe,
-0xff, 0xbf, 0xef, 0xfb, 0xfc, 0xfd, 0xbd, 0x6f,
-0xba, 0xee, 0xb5, 0xef, 0xfb, 0xfe, 0xff, 0xbf,
-0xef, 0xfb, 0xfa, 0xff, 0xbf, 0xef, 0xfb, 0xfe,
-0xff, 0xff, 0x65, 0xaf, 0xdb, 0xd6, 0xfd, 0xbf,
-0x7f, 0xdb, 0xf6, 0xfd, 0xbf, 0x6f, 0xfb, 0xf6,
-0xf9, 0xae, 0xf7, 0xd4, 0x79, 0xbf, 0x6f, 0xdb,
-0xb6, 0x7d, 0xbf, 0x6f, 0xdb, 0xf6, 0xfd, 0xbd,
-0x6f, 0xdb, 0xf7, 0xe8, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xe7, 0xfb, 0xf7, 0x7c, 0xfd, 0xff, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0x9d, 0x9e, 0xff, 0xff,
-0xff, 0xbf, 0x7f, 0xff, 0xfb, 0xff, 0xff, 0x9f,
-0xfe, 0xff, 0xff, 0xff, 0xfb, 0xbb, 0xff, 0xfd,
-0xff, 0xff, 0xfb, 0xff, 0x7f, 0xdb, 0xe7, 0xff,
-0xbe, 0xff, 0xff, 0xff, 0xfb, 0xfe, 0xe3, 0xff,
-0xff, 0xff, 0xdf, 0xfb, 0xef, 0xff, 0xf7, 0xfd,
-0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xcf, 0x77,
-0xdf, 0xff, 0xff, 0xdf, 0xd7, 0xff, 0xff, 0xff,
-0xff, 0xdf, 0xf7, 0xf4, 0x7f, 0xff, 0xff, 0xfd,
-0x7b, 0xff, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xf7, 0xff, 0xbf, 0xf7, 0xff,
-0x4f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f, 0xff, 0xfe,
-0xfe, 0xad, 0xff, 0xf7, 0xfd, 0xff, 0x7f, 0xdf,
-0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff,
-0x79, 0xdf, 0x5d, 0xff, 0x7d, 0xdf, 0xf7, 0xfc,
-0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf,
-0xf7, 0xff, 0xed, 0xff, 0xbf, 0xff, 0xff, 0x2f,
-0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xdb, 0xff, 0xfb, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0xff, 0xf7, 0xfd, 0xbf, 0xff, 0xff, 0xff,
-0xf7, 0xfd, 0xbf, 0xfe, 0xff, 0xff, 0xef, 0xfb,
-0xff, 0xff, 0xfe, 0xfb, 0xdb, 0xfb, 0xbf, 0xef,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0x97, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xef, 0x7f, 0xff, 0xcf,
-0xdb, 0xfd, 0xff, 0xef, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xff,
-0xff, 0xf7, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xfb, 0x7d, 0xf5,
-0xff, 0x7f, 0xdf, 0xff, 0xf7, 0xfd, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xfd,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xdf, 0xff, 0x7e, 0xdf, 0x7f,
-0xfe, 0xff, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xbf, 0xef, 0xff, 0xff,
-0xff, 0xb3, 0xff, 0xe3, 0xf9, 0xff, 0xff, 0xaf,
-0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xfa, 0x7f,
-0xfd, 0xab, 0xfa, 0x7d, 0xfe, 0x9f, 0x7f, 0xbf,
-0xff, 0xfe, 0xff, 0xff, 0xfa, 0xfe, 0xbf, 0xff,
-0xfd, 0xff, 0xf7, 0x7f, 0xfe, 0xff, 0xff, 0xff,
-0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xdf, 0xff, 0xf6, 0xfe, 0xdd, 0xff, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0x7f, 0xbf, 0xff, 0xee, 0xfb,
-0xff, 0xff, 0xff, 0xfe, 0x8f, 0xff, 0xff, 0xff,
-0xff, 0x77, 0xef, 0xfd, 0xff, 0xff, 0xef, 0x3f,
-0xfe, 0xad, 0x7f, 0xfb, 0xff, 0xcf, 0xf7, 0xff,
-0xff, 0xff, 0xfd, 0x7f, 0xff, 0xff, 0xff, 0xef,
-0x7b, 0xfd, 0xff, 0xff, 0xff, 0xd1, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xfe, 0xff, 0xff, 0xed, 0xfb, 0xff, 0xef,
-0xef, 0xfb, 0xfe, 0xff, 0xdf, 0xff, 0xfb, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x3f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xff, 0xfe, 0xff, 0xd7,
-0x7f, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff,
-0x46, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xf8, 0x7e,
-0xbf, 0xff, 0xff, 0xfd, 0xfb, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xfd, 0xf7, 0xf7, 0xfe, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x9f, 0xf3, 0xfc, 0xff, 0xfd,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xfd,
-0xff, 0xff, 0xbb, 0xf1, 0xf3, 0xbf, 0xff, 0xff,
-0xf7, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
-0xfe, 0x3d, 0xcd, 0xff, 0x7f, 0xdf, 0xff, 0xfd,
-0xff, 0xff, 0xef, 0xef, 0xff, 0xfa, 0xff, 0xf7,
-0xfb, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x7f, 0xef,
-0xff, 0xff, 0xff, 0xfb, 0x5f, 0xff, 0xff, 0xfc,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0x7f,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
-0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0xfd, 0xff, 0x3f, 0xf9,
-0xfc, 0xff, 0xff, 0xcc, 0xf5, 0xff, 0xcf, 0xe7,
-0xff, 0xff, 0x3f, 0xff, 0x7f, 0xff, 0xbf, 0xff,
-0x29, 0xaf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f,
-0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xef,
-0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0x5f, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xaf,
-0xfb, 0xca, 0xff, 0xfb, 0x2b, 0xd2, 0xbf, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xff, 0xef, 0xa6, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf5, 0xfd, 0xff, 0x5f, 0xff, 0xe5, 0x7f, 0x5f,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0x74, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb,
-0xff, 0xff, 0xff, 0xef, 0x5f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbd, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0x5b, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0x5f, 0xff, 0xfd, 0xf7, 0x7f, 0xdf, 0xff,
-0xff, 0x7f, 0xdf, 0xff, 0xdd, 0xaf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xfd, 0x89,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xaf, 0xff, 0xd2, 0xc7, 0xbf, 0xaf,
-0xff, 0xfe, 0xbf, 0xaf, 0xff, 0xd6, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xef, 0xff,
-0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf5, 0xff, 0xfb, 0x5f, 0xdf,
-0xf5, 0xff, 0xff, 0xd7, 0xf5, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfd,
-0xff, 0xf2, 0x6f, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xbf,
-0x9f, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff,
-0xff, 0xff, 0xff, 0xed, 0xff, 0x8f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xbf,
-0xef, 0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe,
-0xfb, 0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xef, 0xfb,
-0x7e, 0xff, 0xbf, 0xef, 0xfb, 0xf6, 0xff, 0xbf,
-0xee, 0xfb, 0xfe, 0xff, 0xb7, 0xfe, 0xe6, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0x57, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff, 0xd7, 0xe5,
-0xff, 0xff, 0xf7, 0xf5, 0xff, 0xfb, 0xff, 0xd7,
-0xff, 0xef, 0x7f, 0xff, 0xd7, 0xff, 0xff, 0xff,
-0x5f, 0xfe, 0x9b, 0xff, 0xff, 0xff, 0xff, 0x9f,
-0xe7, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xfa,
-0x7e, 0x9f, 0xff, 0xde, 0x7e, 0x9d, 0xff, 0xff,
-0xfa, 0x77, 0xff, 0xb7, 0xff, 0xfa, 0x7f, 0xff,
-0xff, 0xe9, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xb7, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff,
-0xff, 0xff, 0xd7, 0xff, 0xef, 0xdf, 0xff, 0xff,
-0xdf, 0xff, 0x5f, 0xff, 0xfd, 0xff, 0xfb, 0xff,
-0xff, 0xff, 0xfd, 0x7f, 0xfe, 0x8f, 0xff, 0xff,
-0x9f, 0xe6, 0xe9, 0xbc, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfe, 0x7f, 0x9f, 0xc2, 0xf9, 0xfe, 0x7b, 0xe7,
-0xf9, 0xfe, 0x7f, 0x8b, 0xe7, 0xf8, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x2f, 0x9f, 0xe1, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xf7, 0xaf, 0xff, 0xff,
-0xff, 0xd3, 0xff, 0xfd, 0x7a, 0xff, 0xfb, 0xff,
-0x3f, 0x5f, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0xfd, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0x3f, 0xff, 0xff, 0xff, 0xfb, 0xee, 0xff, 0xff,
-0xff, 0xff, 0xfa, 0xff, 0xff, 0xaf, 0xff, 0xff,
-0x7f, 0xef, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0x77, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xee,
-0xfb, 0xdf, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0x9f, 0xff, 0xfd, 0xff,
-0x7f, 0xff, 0xf7, 0xed, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x2f, 0xff, 0x8b, 0xff, 0xfe,
-0xbf, 0xaf, 0xeb, 0xfa, 0xfe, 0xbf, 0xa7, 0xe9,
-0xfa, 0xfe, 0xbf, 0xa7, 0xc8, 0xfa, 0x7f, 0xa3,
-0xe9, 0xfa, 0xbe, 0xbf, 0xab, 0xea, 0xfa, 0xbe,
-0xaf, 0xad, 0xeb, 0xfa, 0xfe, 0xbf, 0xd5, 0x7b,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xfb,
-0xcd, 0xff, 0xfc, 0xcf, 0xfe, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
-0x47, 0xff, 0xff, 0xfb, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x77, 0xff, 0xbf, 0xff, 0xfd,
-0xff, 0xef, 0xbf, 0xba, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xb5, 0xff, 0xdf, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xaf, 0xef, 0xfb, 0xff,
-0xf7, 0xff, 0xf6, 0xff, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xef, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xdf,
-0xf7, 0x5d, 0xff, 0x7e, 0x76, 0xff, 0xff, 0xff,
-0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x3f, 0xff, 0x17, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xff, 0xfd,
-0xff, 0x7f, 0xf7, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdd, 0xff, 0xea, 0x7f, 0xff,
-0xff, 0xef, 0xfe, 0xff, 0xff, 0xf7, 0xff, 0xff,
-0xfd, 0xff, 0xfd, 0xd7, 0xfd, 0xff, 0xf9, 0xfb,
-0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xef,
-0xfd, 0xff, 0x7f, 0xff, 0xbf, 0xff, 0xfe, 0x1f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff,
-0xbe, 0xff, 0xff, 0xef, 0xff, 0xbf, 0xff, 0xbf,
-0x7b, 0xfe, 0xfd, 0xaf, 0xed, 0xf9, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xff, 0xdf, 0xef, 0xff,
-0x7f, 0xe7, 0xdf, 0xff, 0xbd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xef, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0x7f, 0xff, 0xff, 0xfd, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xbf, 0x7f, 0xef, 0xff,
-0xff, 0x76, 0xfd, 0xff, 0xc7, 0x3f, 0xff, 0xff,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xc7, 0xff,
-0xff, 0xdf, 0xfe, 0x4f, 0xff, 0xff, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xfe, 0x7f, 0xfe, 0xff, 0x9f, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xd5, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xdf, 0xfd,
-0x3f, 0x4f, 0xff, 0xfd, 0xff, 0xff, 0xf7, 0xf9,
-0xf7, 0x7f, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xf8, 0x3f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0x9f, 0x7f, 0x7f, 0xff,
-0xff, 0xfe, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xa7,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x6e, 0x0f, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xc1, 0xb3, 0xff, 0xff, 0x3f, 0xc7, 0xf1,
-0xfc, 0xff, 0xfd, 0x31, 0x5c, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0xf2, 0x5b, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x7f, 0x97, 0x3f, 0xff, 0xf7, 0xfd,
-0xf3, 0x7c, 0xaf, 0xff, 0x97, 0xe7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x3b, 0xf5, 0x9b, 0x7f, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbe, 0xf7, 0xff, 0x2b,
-0x4a, 0xdf, 0xbf, 0xef, 0x3a, 0xfe, 0xed, 0x6a,
-0x6b, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfb, 0xfe, 0xf4, 0x2d, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xed, 0x73, 0x5f, 0xdf, 0xf7, 0xcf, 0x5f, 0xdf,
-0xf7, 0xfd, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xf7, 0x23, 0xff,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xfe, 0xff, 0xff, 0xfe, 0xf5, 0xbd, 0x7f,
-0xfb, 0xfe, 0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x5f, 0xd8,
-0xbf, 0xf7, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x77, 0xff, 0xff, 0x7f, 0xdf, 0x77, 0x9d,
-0x6f, 0xdf, 0x77, 0xdd, 0xef, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x6b,
-0xd9, 0x37, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xf6, 0xb9, 0xaf, 0xfb,
-0xc6, 0xff, 0xaf, 0xef, 0xfa, 0xda, 0xb5, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xb5, 0x7e, 0xf3, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x57, 0xa5,
-0xfd, 0xfb, 0x7e, 0xb5, 0xfd, 0xff, 0x7f, 0xd7,
-0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xdf, 0x3f, 0xe8, 0xff, 0xb7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xbf, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x8f, 0xff, 0xfa, 0xff, 0xff, 0xf9, 0xff,
-0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xfd, 0xbf, 0x6f, 0xfe,
-0xd5, 0xb7, 0xef, 0xbb, 0xf6, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xbb, 0xff, 0xee,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xbf, 0x6f,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf6, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf,
-0xf7, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xde, 0xff, 0xe5, 0xf9,
-0x7f, 0xdf, 0xf7, 0xfd, 0x7b, 0xdf, 0xd7, 0xf5,
-0xeb, 0x7f, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff,
-0xd7, 0xff, 0xef, 0xf9, 0x3f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x79, 0xf7, 0x7e,
-0x9f, 0xa7, 0x6d, 0xd3, 0x77, 0xa7, 0xed, 0xf2,
-0x7e, 0x9f, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xa7,
-0x7f, 0xfa, 0x7f, 0xff, 0xff, 0x33, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77,
-0xfe, 0xd7, 0x75, 0xfb, 0x7f, 0xdd, 0xf5, 0xff,
-0x7f, 0xdf, 0xd7, 0x7d, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0xff,
-0xff, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9, 0xfe,
-0x6f, 0x9f, 0xe2, 0xf8, 0xbe, 0x3f, 0x8f, 0xe6,
-0xbe, 0x3f, 0x9f, 0xe2, 0xf8, 0xfe, 0x7f, 0x9f,
-0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9, 0xff,
-0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xff, 0x9f, 0xe7, 0xff, 0xfc, 0x7f,
-0x1f, 0xfb, 0xfc, 0xff, 0x3f, 0xff, 0xf3, 0xff,
-0xff, 0xff, 0xff, 0xd7, 0xfe, 0xfd, 0x7f, 0xff,
-0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xbf, 0xff, 0x7e, 0xdf, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xdf, 0xaf,
-0xff, 0xff, 0xfd, 0x3f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xfd, 0xff, 0xff, 0xf7, 0xfc, 0xff,
-0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x4f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xdf,
-0xf7, 0xff, 0xfb, 0x7e, 0xdf, 0xfd, 0xfb, 0x7f,
-0xdf, 0xff, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xe5, 0xdf, 0xf4,
-0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x2b, 0xc9, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x3f,
-0xfe, 0xeb, 0xfa, 0xfe, 0xaf, 0xaf, 0xeb, 0xfa,
-0xfe, 0xaf, 0x25, 0xe8, 0xfa, 0x3e, 0xaf, 0x2b,
-0xfa, 0xf6, 0xaf, 0xab, 0xeb, 0xfa, 0xfe, 0xaf,
-0xaf, 0xea, 0xfa, 0xfe, 0xbf, 0xaf, 0xeb, 0xfd,
-0x87, 0xff, 0xbf, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x3f, 0xff, 0xf3, 0xfd, 0xdf, 0xb7,
-0xff, 0xff, 0xdf, 0xff, 0x87, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf8, 0x4f, 0x7f, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xf7, 0xff, 0x6f, 0xdf, 0xbe, 0xff, 0xbb,
-0x56, 0xdf, 0xb7, 0xe9, 0xff, 0xf3, 0xf7, 0x37,
-0xff, 0xff, 0xdf, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xfa, 0x5f, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x76, 0xfb, 0xec, 0x6f,
-0xff, 0x7f, 0xff, 0xf5, 0x7f, 0xee, 0xdf, 0xf7,
-0xfb, 0xbf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xf1, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xfd, 0xdf, 0xff, 0xed, 0xff,
-0xef, 0xde, 0xf7, 0xfe, 0xff, 0xea, 0x7f, 0xde,
-0x8f, 0xab, 0xff, 0x3f, 0xff, 0x7f, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x9f, 0xbf, 0xbf, 0xdf, 0xfd, 0xdb,
-0xff, 0xa7, 0xfa, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xdf, 0xfe, 0x47,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xef, 0xff, 0xfe, 0xfb, 0xfc, 0xaf, 0xbb,
-0x8b, 0xde, 0x1f, 0xbb, 0xee, 0xfd, 0x7f, 0xff,
-0xaf, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xe5, 0xff, 0xff, 0xff, 0xfe, 0x2f, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xfb, 0xf6, 0xfc, 0xbb, 0xef,
-0xcf, 0xf7, 0xbf, 0xff, 0xcb, 0xf2, 0xff, 0xff,
-0xff, 0xcf, 0xff, 0xfd, 0xf7, 0xff, 0xff, 0xff,
-0x7f, 0xf8, 0xbf, 0xff, 0xf7, 0xff, 0xfb, 0xff,
-0xff, 0xff, 0xfd, 0x7f, 0x7f, 0xd6, 0xf5, 0xec,
-0xfe, 0x5e, 0xcc, 0x75, 0x7d, 0xdb, 0xdf, 0xbf,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xef, 0x7f, 0xff,
-0xfb, 0xff, 0xff, 0xe7, 0x7f, 0xff, 0xff, 0xdc,
-0xff, 0xff, 0xff, 0xf1, 0xfe, 0xff, 0xf7, 0xaf,
-0xf7, 0xca, 0xfe, 0x7f, 0xdb, 0xf9, 0xff, 0xbf,
-0xdf, 0xf1, 0xfd, 0x7f, 0xfd, 0xcf, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xe4, 0xef, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xff, 0xdf, 0xf3, 0xfe,
-0xfd, 0xfe, 0xff, 0xdf, 0xef, 0x59, 0x7f, 0x3b,
-0xf7, 0xe3, 0xef, 0xbf, 0xff, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xfd, 0x9f, 0x7f,
-0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xeb, 0xff, 0xcf, 0xb3, 0xed, 0xeb, 0x7f, 0xff,
-0xbf, 0xfb, 0xff, 0xef, 0xd7, 0xff, 0xff, 0xfd,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9,
-0xf5, 0xff, 0xff, 0xfe, 0xaf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf9, 0xe3, 0xf8, 0xfe, 0x3e, 0x8f,
-0xda, 0xda, 0x96, 0xad, 0xeb, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xea, 0x7d, 0xff, 0xef, 0xff, 0xdf, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xdb, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x41, 0xff, 0xff, 0xfc, 0xff, 0x3f,
-0xff, 0xff, 0xfc, 0xfb, 0xff, 0xcf, 0xff, 0x3f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf9, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
-0xf9, 0xf3, 0xff, 0x1d, 0xaf, 0xff, 0xff, 0xdf,
-0xef, 0xff, 0xf3, 0xfc, 0xcf, 0x7f, 0xfd, 0xff,
-0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,
-0x3f, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
-0x3b, 0xff, 0xaf, 0xff, 0x5f, 0x35, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbf, 0xef, 0xef, 0xfb,
-0xf5, 0x79, 0xdf, 0x37, 0xcd, 0xff, 0xdf, 0x57,
-0xd5, 0xff, 0x7f, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xd2, 0xff, 0xef, 0xef, 0x86, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf7, 0xfd,
-0xf3, 0x7e, 0xff, 0x9f, 0xe7, 0xf9, 0xfe, 0xff,
-0xe7, 0xf9, 0xfe, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0x5f, 0xff, 0xff, 0x60,
-0x3f, 0xb7, 0xff, 0xff, 0xaf, 0xff, 0xfe, 0xff,
-0xbf, 0xbf, 0xfb, 0xa7, 0xed, 0xf5, 0x7f, 0x5f,
-0xef, 0xf7, 0xfd, 0x5f, 0x47, 0xfe, 0xff, 0xff,
-0xeb, 0xff, 0xfe, 0xbf, 0xef, 0x5f, 0xff, 0xff,
-0xfd, 0x5b, 0xff, 0xff, 0xff, 0xf5, 0x7f, 0xff,
-0x77, 0xdd, 0xa7, 0x7d, 0xda, 0xff, 0xbe, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xbb, 0xee, 0xff, 0xdd,
-0xff, 0xfd, 0x5f, 0xff, 0xd5, 0xf7, 0x6b, 0xdf,
-0xff, 0xfd, 0x8b, 0x7f, 0xff, 0xff, 0xfe, 0xbf,
-0xff, 0xfb, 0xfe, 0xde, 0xff, 0xaf, 0x77, 0xed,
-0xff, 0x7d, 0xdc, 0x7d, 0xff, 0x7e, 0xdf, 0xb7,
-0xfb, 0xff, 0xff, 0xaf, 0xff, 0xfa, 0xff, 0xbf,
-0xaf, 0xff, 0x7f, 0xec, 0x7f, 0xff, 0xff, 0xff,
-0xd7, 0xff, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xc7,
-0xff, 0xff, 0xff, 0x1f, 0xeb, 0xfc, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xf5, 0xff, 0xff, 0x5f,
-0xdf, 0xf5, 0xff, 0xff, 0xfe, 0x87, 0xfb, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xe7,
-0xfb, 0x6f, 0xfb, 0xbe, 0xe7, 0xbf, 0xfb, 0xb6,
-0xef, 0xbb, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0xff,
-0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xff,
-0xfe, 0xff, 0xff, 0x6f, 0xfa, 0xf6, 0xfd, 0xff,
-0xfb, 0xfe, 0xbf, 0x8f, 0x63, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
-0x1f, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xb3,
-0xef, 0xfb, 0xb6, 0xfd, 0xbc, 0x6f, 0x1b, 0xb6,
-0xfd, 0xee, 0xdb, 0xe6, 0xfd, 0xbf, 0xef, 0xfb,
-0xfe, 0xdf, 0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbf,
-0xfe, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xef, 0xfb,
-0xf7, 0xff, 0x7f, 0xf3, 0xfc, 0xfd, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf7,
-0xbd, 0xef, 0xfb, 0xff, 0xbb, 0xee, 0xfb, 0xbe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xff, 0x5f, 0xd7, 0xf5, 0xef, 0x7f,
-0xff, 0xff, 0xff, 0xef, 0xfb, 0xff, 0xbf, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x8b, 0xff, 0xff,
-0xff, 0xff, 0x9f, 0xff, 0xe9, 0xf2, 0x7e, 0x9f,
-0xa7, 0xfe, 0x9f, 0xbf, 0xeb, 0xfa, 0xff, 0xbf,
-0xef, 0xfb, 0x7e, 0xb6, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x7f,
-0xff, 0xff, 0xff, 0xf7, 0x7f, 0xfb, 0xff, 0x5f,
-0xff, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xbf, 0xff, 0xff, 0xde, 0xff, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfe,
-0x67, 0xff, 0xff, 0x9f, 0xe6, 0xf1, 0xfe, 0x7f,
-0x8b, 0xe7, 0xf9, 0xbe, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfe, 0x7f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9b, 0xe7,
-0xf9, 0xfe, 0x7f, 0x9f, 0xc7, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xde, 0xbf,
-0xf5, 0xff, 0xbf, 0x4f, 0xf1, 0xfe, 0xff, 0xff,
-0xe7, 0xf9, 0xff, 0x9f, 0xef, 0xff, 0xff, 0xff,
-0x3f, 0xef, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xfe, 0xbf, 0xf7, 0xe9, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe7, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xbf,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0xff, 0xff,
-0xff, 0xff, 0xef, 0x7f, 0xff, 0xff, 0xdf, 0xf7,
-0xfd, 0xff, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xf7,
-0xfd, 0xff, 0x7f, 0xdf, 0x9f, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xcf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xf5, 0xef, 0x7b, 0xdf, 0xf2, 0xfc, 0xbf,
-0xcb, 0xf2, 0xfd, 0x2f, 0x7f, 0xf2, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xfe, 0xbf, 0xaf, 0xeb, 0xfa, 0xfe,
-0xbf, 0xaf, 0xea, 0xda, 0xbc, 0x97, 0xab, 0x6a,
-0xda, 0xb5, 0xab, 0x69, 0xda, 0x76, 0xaf, 0x2f,
-0xea, 0xfa, 0xfe, 0xb7, 0xaf, 0xeb, 0xfa, 0xfe,
-0xaf, 0xf5, 0x7f, 0xff, 0xff, 0xcf, 0xff, 0xff,
-0xff, 0xff, 0xcf, 0xee, 0xfe, 0xfa, 0x3f, 0xbd,
-0xfd, 0x7f, 0xff, 0xfd, 0xf3, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf6, 0x07, 0xff, 0xff, 0xeb, 0xf7,
-0xf7, 0xff, 0xff, 0xab, 0xff, 0xfc, 0xcb, 0xe6,
-0xbd, 0xf7, 0xef, 0xfb, 0x7f, 0xb5, 0xe5, 0xfd,
-0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0x89, 0x7f, 0xff, 0xff,
-0xff, 0xf7, 0xbf, 0xcf, 0xff, 0xdf, 0xf7, 0xbf,
-0xe7, 0xeb, 0xf6, 0xfb, 0xff, 0xb7, 0xef, 0xdf,
-0xff, 0x7e, 0x7b, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xdf,
-0xfe, 0xf6, 0xbf, 0xaf, 0x49, 0xba, 0x7b, 0xa7,
-0x89, 0xda, 0xfd, 0xb7, 0xf7, 0xdf, 0xff, 0xff,
-0xfb, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe7,
-0xff, 0x7f, 0xff, 0x7f, 0xff, 0xfb, 0xff, 0xfb,
-0xff, 0xff, 0x7b, 0xd7, 0xd5, 0xfd, 0x7a, 0x5b,
-0x95, 0xed, 0x5d, 0x5f, 0xef, 0xff, 0xff, 0xfd,
-0xff, 0x7f, 0xff, 0xf7, 0xff, 0xff, 0xfe, 0xff,
-0xec, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe,
-0xff, 0xfc, 0xfe, 0xf3, 0xfc, 0xdf, 0x3b, 0xce,
-0xf3, 0xfb, 0x3f, 0xce, 0xf3, 0xff, 0xef, 0xfb,
-0xfd, 0xfd, 0x7f, 0xff, 0xf7, 0xff, 0xff, 0xbf,
-0xff, 0xfd, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xcf, 0x5b, 0xfe, 0xef, 0xfd, 0x7f, 0x5f, 0xd3,
-0xf6, 0xfd, 0xb7, 0x5b, 0xd6, 0xfd, 0xbf, 0xff,
-0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xe2, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0xcf, 0xff, 0xff, 0xff,
-0xdf, 0xd6, 0xed, 0xef, 0x46, 0xd7, 0xb7, 0xbf,
-0xfe, 0xff, 0xdf, 0xfe, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x7e, 0xff, 0xff,
-0xfd, 0xff, 0xff, 0xde, 0xff, 0xbf, 0xfc, 0xff,
-0xf9, 0x7e, 0x7f, 0xbf, 0xee, 0xdd, 0x3d, 0xc7,
-0xf3, 0xfb, 0xf6, 0x1f, 0x3f, 0xcf, 0xdb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfd, 0xd7,
-0xf9, 0xf5, 0xff, 0xef, 0xff, 0xff, 0xf7, 0xbb,
-0xfd, 0xfe, 0xdf, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb,
-0xbf, 0xec, 0xff, 0x7f, 0xcb, 0xf2, 0xfc, 0xbf,
-0x3e, 0xf3, 0xfe, 0xbe, 0xa5, 0xe7, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf7,
-0xfd, 0xff, 0xff, 0xde, 0xf6, 0xbf, 0xad, 0xeb,
-0x6a, 0xff, 0x2d, 0x6b, 0x7a, 0xff, 0xb7, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x77, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xaf, 0x7f, 0xde, 0xbf, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xee, 0x3f, 0xff, 0x1f, 0xd7,
-0xff, 0xff, 0xff, 0x3e, 0xdf, 0xf7, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0x3f, 0xcf, 0xff, 0x3c, 0x7f, 0x3f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf1, 0x5a, 0xff, 0xf7,
-0xff, 0xff, 0xfc, 0xef, 0xef, 0xdf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0x3f,
-0xff, 0xf9, 0xff, 0xcb, 0xff, 0xe7, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xe3, 0xdf,
-0xff, 0xff, 0xf2, 0xbf, 0xef, 0xff, 0xfb, 0xff,
-0xf1, 0xd6, 0x75, 0xfd, 0x67, 0x5f, 0xd6, 0x7d,
-0x67, 0x5d, 0x57, 0xfe, 0xfe, 0xe6, 0xbf, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf6,
-0x6f, 0xff, 0xff, 0xff, 0xd7, 0xf7, 0xff, 0xff,
-0x7f, 0xff, 0x3f, 0x7f, 0xd3, 0xf4, 0xfb, 0x3f,
-0x7f, 0xff, 0xfb, 0xbf, 0x7f, 0xff, 0x7c, 0xd7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf6, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb,
-0x2f, 0xef, 0xff, 0xff, 0xfb, 0x7c, 0xdf, 0xff,
-0xd5, 0xfb, 0x7e, 0xb7, 0xf1, 0xff, 0xff, 0xfb,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xcd, 0xbf, 0xff, 0xff, 0xff, 0xf7,
-0xdd, 0xf5, 0x7d, 0xdf, 0xf7, 0xff, 0xef, 0xbb,
-0xfa, 0xfb, 0xff, 0xef, 0xfe, 0xfd, 0xbf, 0xaf,
-0x7d, 0xdc, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xde, 0x1f, 0xff, 0xfd, 0xfd,
-0x4b, 0xfe, 0xfe, 0xb7, 0xbe, 0x7f, 0x55, 0xf1,
-0x76, 0xdd, 0xf7, 0xfd, 0xf1, 0xde, 0x37, 0x7d,
-0xff, 0xff, 0xed, 0x0b, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x17, 0xff, 0xff,
-0x1f, 0xcd, 0x7f, 0x7f, 0xd7, 0xf7, 0xef, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0xe9, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xbb, 0xfe, 0xff, 0xbb, 0xee, 0x7b, 0xef,
-0xbb, 0x6e, 0xfb, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xfd, 0xaf, 0xef,
-0xdf, 0xfd, 0xbf, 0x6b, 0xd8, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xc0, 0xff, 0xfb, 0xfe, 0xff, 0xbf, 0xef,
-0xfb, 0x7e, 0xff, 0xb7, 0x6f, 0xdb, 0xd6, 0xf1,
-0xbb, 0xef, 0xde, 0xed, 0xbe, 0x6f, 0xfb, 0xfe,
-0xdf, 0xbf, 0x6f, 0xfb, 0xee, 0xff, 0xbf, 0xef,
-0xfb, 0xf7, 0xe5, 0x6f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf7, 0xfe,
-0xff, 0xbf, 0xef, 0xf7, 0xff, 0x3f, 0xcf, 0xff,
-0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf6, 0xf7, 0xcf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xef, 0x7b, 0xde, 0xef, 0xbf, 0xfb, 0xbe, 0xef,
-0xbf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xe9, 0x7f, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xf5, 0xfd, 0x7f, 0x5f,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xfb,
-0xff, 0xff, 0xad, 0xf9, 0x7f, 0x5f, 0xf7, 0xf5,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x37,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x9f, 0xa7,
-0xe9, 0xff, 0xaf, 0xef, 0xfa, 0xfe, 0xff, 0xaf,
-0xfa, 0xfe, 0x9f, 0xaf, 0x9d, 0xa7, 0xe9, 0xfb,
-0x7e, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x27, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7,
-0xf5, 0xe9, 0x7f, 0xff, 0xff, 0xff, 0xef, 0xfb,
-0xfd, 0xff, 0xdf, 0xff, 0xff, 0xf7, 0xf5, 0xfd,
-0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xf9, 0xfe, 0x7f, 0x9f,
-0xe2, 0xf8, 0xbe, 0x2f, 0x9f, 0xe7, 0xf9, 0xfe,
-0x7f, 0x9f, 0xe7, 0xfe, 0x7f, 0x9f, 0xe6, 0xf8,
-0xbe, 0x2f, 0x8f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f,
-0xe7, 0xf9, 0xfe, 0x57, 0xff, 0xe7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xfe, 0xff, 0x9f, 0xef,
-0xfb, 0xfe, 0xff, 0x9f, 0xfb, 0xfe, 0xff, 0xbf,
-0xcf, 0xf9, 0xff, 0xff, 0x7f, 0x5f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff,
-0xfd, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f, 0xdf,
-0xf7, 0xfb, 0xff, 0xff, 0xff, 0xbf, 0xeb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xaf,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfd,
-0xff, 0x7f, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7,
-0xff, 0x7f, 0xdf, 0xf7, 0xe7, 0xfd, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7c, 0x8f, 0xfb, 0xfa, 0xf2, 0xff, 0xbf, 0x2f,
-0xfa, 0xfc, 0xbf, 0xef, 0xca, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf,
-0xef, 0xf3, 0x2f, 0xff, 0xeb, 0xfa, 0xfe, 0x9f,
-0xa7, 0xeb, 0xfa, 0xde, 0xbf, 0xae, 0xca, 0xfa,
-0x6c, 0x1f, 0xaf, 0x38, 0xbe, 0xbb, 0xa3, 0xe8,
-0xfa, 0x3e, 0x9f, 0xaf, 0xeb, 0x7a, 0xbe, 0xbf,
-0xab, 0xeb, 0xff, 0x56, 0x7f, 0xf3, 0xff, 0xff,
-0xfd, 0xfb, 0xff, 0xfb, 0xff, 0x3e, 0x57, 0xfb,
-0xf5, 0xdf, 0xaf, 0x7f, 0xff, 0xfd, 0xff, 0xff,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff,
-0xff, 0x7f, 0xbf, 0xf7, 0xed, 0xda, 0xff, 0x7f,
-0xdb, 0xdf, 0xff, 0x37, 0x7f, 0xef, 0xff, 0xff,
-0xbd, 0xff, 0xfd, 0xf7, 0xf8, 0xbf, 0xeb, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xdd, 0xfa, 0x9f, 0xff,
-0x5f, 0xff, 0xff, 0xff, 0xef, 0xfa, 0xff, 0x35,
-0xba, 0xff, 0xff, 0xef, 0xff, 0xfb, 0xba, 0x7f,
-0x6e, 0xeb, 0xbf, 0xdb, 0xfb, 0xef, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b,
-0xff, 0xff, 0xff, 0xef, 0xfd, 0xf7, 0x69, 0xfb,
-0xfe, 0x5f, 0xa7, 0xcb, 0xfa, 0xf6, 0xb5, 0xa7,
-0xfa, 0xfe, 0xbf, 0xaf, 0x3d, 0xdf, 0xb6, 0x3f,
-0xfe, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff,
-0xac, 0x7f, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x79, 0xee, 0xff, 0x95, 0xad, 0x7d, 0x5d, 0xd5,
-0xdd, 0xf5, 0xde, 0xf6, 0xfd, 0xbf, 0xff, 0xff,
-0x5f, 0xdf, 0xf7, 0xff, 0xf7, 0x7f, 0xff, 0xff,
-0xff, 0xfe, 0x8f, 0xff, 0xfd, 0xff, 0xff, 0xef,
-0xff, 0x8e, 0xf3, 0x6c, 0xff, 0xb7, 0xee, 0x7b,
-0xee, 0xee, 0xbb, 0x8b, 0xbb, 0xf6, 0xbf, 0xce,
-0xff, 0xff, 0xfd, 0xf7, 0xfe, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0x99, 0xff, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xf5, 0xfd, 0x7f, 0x4f, 0x9e, 0xf6,
-0xfd, 0xff, 0x6f, 0xdb, 0xf4, 0x3f, 0x4f, 0xaf,
-0xfe, 0xff, 0xe7, 0xef, 0x7f, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xfe, 0x3f, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xdf, 0xfe, 0xff, 0xff, 0x7e,
-0x3f, 0x95, 0x65, 0xd9, 0x7e, 0x3e, 0xfe, 0x7f,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x25, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xcc, 0xc3, 0x38,
-0xf7, 0x38, 0x4f, 0x73, 0xdc, 0xff, 0xbd, 0x9e,
-0xf8, 0x3e, 0xff, 0xff, 0x73, 0xdf, 0xff, 0x3d,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff,
-0xb7, 0xef, 0xbb, 0x76, 0xff, 0xbf, 0x9f, 0xfd,
-0xfb, 0xff, 0xef, 0xff, 0xdf, 0xfe, 0xaf, 0xff,
-0xe6, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfc, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0x9f, 0xa7, 0xe8, 0xde, 0x77, 0x8c, 0xe5, 0x9d,
-0xfb, 0x63, 0xf7, 0xfd, 0x1b, 0xbe, 0xda, 0xff,
-0xbe, 0xef, 0xff, 0xf7, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x21, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xfb, 0xe9, 0xea, 0xfe, 0xb7, 0xaf, 0xeb, 0x72,
-0x7e, 0xbf, 0xaf, 0xfe, 0xe7, 0xbf, 0xfd, 0xfb,
-0xff, 0xdf, 0xe7, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xbf, 0xf0, 0x7f, 0xff, 0xff, 0xff,
-0xbf, 0xff, 0xfd, 0xdf, 0x77, 0xdf, 0xf7, 0xfd,
-0xff, 0x7f, 0xdf, 0xf7, 0xff, 0x5e, 0xd7, 0xff,
-0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
-0xff, 0xff, 0x3f, 0xd9, 0xff, 0x3f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xfc, 0x7f,
-0xff, 0xcf, 0xff, 0xfc, 0xfb, 0x3f, 0xcf, 0xff,
-0x3f, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x31, 0xaf,
-0xff, 0xff, 0xff, 0xf6, 0xbf, 0x3f, 0xe7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xbf, 0x9f,
-0xef, 0x7e, 0xbd, 0xff, 0xff, 0xdf, 0x77, 0xcb,
-0xff, 0xbf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0x5a,
-0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0x79,
-0xdf, 0xf7, 0x9d, 0xf3, 0x7f, 0xde, 0x75, 0xfd,
-0x75, 0xbb, 0x3f, 0x1f, 0xf3, 0xf5, 0x2f, 0xef,
-0x7e, 0xe6, 0xbf, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xef, 0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x3f, 0xe7, 0xf3, 0xfe, 0x7f, 0x3f, 0xcf,
-0xf3, 0xef, 0xf7, 0xcd, 0xff, 0x7e, 0x77, 0xb5,
-0xfd, 0xff, 0x7e, 0x57, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xfb, 0x7e, 0xdf, 0xff, 0xf5,
-0xfd, 0x7b, 0x5f, 0x57, 0xbf, 0xff, 0xf9, 0xf7,
-0x71, 0xff, 0xbf, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xff, 0x7f, 0x9b, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xfb, 0xff, 0xef, 0xfb, 0xff,
-0xff, 0xbf, 0xef, 0xdb, 0xee, 0xdd, 0xa7, 0x6b,
-0x38, 0xef, 0xbd, 0xf7, 0x7d, 0xdf, 0xf7, 0xff,
-0xff, 0xfd, 0xdf, 0xff, 0xfd, 0x89, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x77, 0xfd, 0xfb, 0x7e,
-0xdf, 0xf7, 0xcd, 0xfb, 0x7d, 0xdf, 0xba, 0xfe,
-0xbf, 0xff, 0xff, 0xea, 0xde, 0xff, 0xef, 0xeb,
-0xdf, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xe2, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xfc, 0xff, 0x8f, 0xff,
-0x7e, 0xd7, 0xff, 0xeb, 0xff, 0x5f, 0xdf, 0xf7,
-0xfd, 0x79, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xf7,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
-0x7b, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xbe, 0xe7,
-0xbf, 0xff, 0xaf, 0xff, 0xdf, 0xf7, 0xff, 0xff,
-0xff, 0xf9, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe7, 0xdf, 0xf6, 0xfd, 0xff, 0x7f, 0xda,
-0xf6, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xe7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfb, 0x1f, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xdd, 0xbf, 0xef, 0xdb, 0xee, 0xfd, 0xbd,
-0x6f, 0x1b, 0xbe, 0xfd, 0xef, 0xfb, 0xe6, 0x5f,
-0x9f, 0xef, 0xfb, 0xfe, 0xdf, 0xbf, 0xef, 0xfb,
-0xfe, 0xdf, 0xbf, 0xfe, 0x66, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xff, 0xf7, 0xff, 0xfd,
-0xff, 0xef, 0xfb, 0xfe, 0xff, 0x3f, 0xfb, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x72, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xf7, 0xbd, 0xef, 0xbb, 0xdf, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97,
-0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xf5, 0xff, 0x9f, 0xef, 0xd7, 0xfd, 0xed,
-0x7f, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xcb, 0xff, 0xff, 0xff, 0xfe, 0x9f, 0xff, 0x7e,
-0xff, 0xaf, 0xeb, 0xfa, 0xfe, 0xbf, 0xaf, 0xeb,
-0xfb, 0xfa, 0x7e, 0x9f, 0xff, 0xff, 0xfa, 0x7f,
-0x9f, 0x27, 0xe9, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xd7, 0xff,
-0xdf, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
-0xff, 0x7f, 0xef, 0xde, 0xb7, 0xbf, 0xff, 0x7a,
-0x5f, 0xb7, 0xff, 0xfd, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, 0x9f, 0xe2,
-0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x6f, 0xe7, 0xf9, 0xde,
-0x6f, 0x0b, 0xe6, 0xe9, 0xfe, 0x2f, 0x9f, 0xe7,
-0xf9, 0xfe, 0x7f, 0x9f, 0xd5, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
-0xfe, 0x7f, 0x9f, 0xef, 0xfb, 0xff, 0x1f, 0xcf,
-0xd9, 0xf5, 0xfb, 0xbf, 0xdf, 0xd3, 0xfe, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xef,
-0xfd, 0xfe, 0xfe, 0xbf, 0xf7, 0xfb, 0xaa, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x17,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0x7f, 0x7f, 0xff, 0xbf, 0xff, 0x7f,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
-0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd,
-0xff, 0x7f, 0xdf, 0xf7, 0xf9, 0xff, 0xf7, 0xdf,
-0xe6, 0xfd, 0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xfc, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xef, 0xab, 0xeb, 0xfa, 0xfe, 0xbf, 0xaf, 0xe9,
-0xfa, 0xfe, 0xaf, 0xdb, 0xd7, 0xf5, 0xff, 0x2f,
-0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
-0x9f, 0xff, 0xff, 0xba, 0xff, 0xfe, 0xbf, 0xaf,
-0xe9, 0xfa, 0x7e, 0x0f, 0xa3, 0xe8, 0xfa, 0xfe,
-0xb7, 0xab, 0xeb, 0xfa, 0xf7, 0xaf, 0x63, 0xfa,
-0x76, 0xaf, 0xab, 0xea, 0xfa, 0xbe, 0xbf, 0xab,
-0xea, 0xfa, 0xfe, 0xbf, 0x5f, 0x7f, 0xef, 0xed,
-0xff, 0xf3, 0xef, 0x7f, 0xff, 0xfb, 0xfd, 0xff,
-0xdf, 0xef, 0xf5, 0xff, 0x6f, 0x7f, 0x3f, 0xff,
-0xba, 0xff, 0x33, 0xcf, 0xf3, 0x7d, 0xbf, 0xdc,
-0xff, 0xff, 0xfb, 0xff, 0xff, 0xde, 0xa7, 0xff,
-0xff, 0xdf, 0xb2, 0xff, 0xfa, 0xff, 0xff, 0xf7,
-0x7d, 0xff, 0x7d, 0xbf, 0x77, 0xff, 0xf7, 0x7e,
-0xdf, 0xf4, 0xdf, 0x5e, 0xcf, 0xff, 0xfd, 0xff,
-0xff, 0x7f, 0x7f, 0xfd, 0xff, 0xff, 0x7f, 0x85,
-0x5f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xbb,
-0xff, 0xff, 0xfe, 0xef, 0xfb, 0xfe, 0xff, 0xbb,
-0xf3, 0xaf, 0xff, 0xfb, 0x6b, 0xfa, 0xfe, 0x5f,
-0xb7, 0xef, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0x3f, 0xff, 0xfd, 0xf7, 0xf8, 0xd7, 0x76,
-0x9d, 0xa6, 0x4b, 0xda, 0x76, 0x9d, 0xa7, 0x69,
-0xda, 0xdb, 0xbf, 0xad, 0xfa, 0xfe, 0xb7, 0xa7,
-0x7d, 0xff, 0x7e, 0x3f, 0xff, 0x3f, 0xff, 0xff,
-0xff, 0xff, 0xc7, 0xff, 0x7f, 0xff, 0xf5, 0xdf,
-0xff, 0xa7, 0xd9, 0xfe, 0x7e, 0x9f, 0x67, 0xd9,
-0xf6, 0x7f, 0x9f, 0xde, 0xbf, 0x7f, 0xeb, 0x7b,
-0x7e, 0x57, 0xfd, 0xff, 0x5f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xff, 0xfe, 0xef, 0xab, 0xef, 0xfa, 0xfe,
-0x3f, 0xbf, 0xef, 0xfe, 0xfb, 0xb9, 0xe9, 0xa8,
-0xfa, 0xfe, 0xbf, 0xee, 0xfb, 0xfe, 0xff, 0xfb,
-0xef, 0xff, 0x7f, 0xff, 0xed, 0x9f, 0xef, 0xfd,
-0xfb, 0xde, 0x7d, 0x3f, 0x6f, 0xdb, 0xe6, 0xfd,
-0xbf, 0x7f, 0xdb, 0xd6, 0xf9, 0x3d, 0x6b, 0xfb,
-0xfe, 0xff, 0xbb, 0xee, 0xfa, 0xfe, 0xbf, 0xb7,
-0xfb, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xbb, 0xbf,
-0xff, 0xff, 0xfb, 0xfb, 0xfd, 0xf9, 0x9e, 0x77,
-0x9f, 0xe3, 0xf9, 0xde, 0x57, 0x9d, 0xfe, 0xef,
-0xef, 0xf6, 0xff, 0x5f, 0xdf, 0x9f, 0xff, 0x7f,
-0x7f, 0xff, 0xf7, 0xdf, 0xff, 0xff, 0xff, 0xf3,
-0x7f, 0xff, 0xff, 0x7c, 0xcd, 0xff, 0xfd, 0xf7,
-0xf8, 0xd7, 0xf1, 0x9f, 0xe7, 0x1f, 0xc7, 0xfe,
-0xf5, 0x3f, 0xcf, 0x71, 0xdc, 0x36, 0x3d, 0x8f,
-0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x8f, 0xff, 0xff, 0xef, 0xfa, 0xff, 0xff,
-0xbd, 0xff, 0xff, 0xd7, 0xbf, 0xff, 0xfd, 0xfe,
-0xfb, 0xff, 0xbb, 0x5e, 0xff, 0xdf, 0xf7, 0xfb,
-0xfe, 0xff, 0xf7, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xfd, 0x7f, 0x36, 0xdd, 0xf7, 0x3c, 0xcf,
-0x7b, 0xda, 0xff, 0xfa, 0x7e, 0x9c, 0xb3, 0x3d,
-0xbe, 0x7d, 0x9f, 0xf7, 0xed, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0x9f, 0xff, 0xff, 0xff,
-0xfe, 0x7a, 0x5e, 0xbf, 0x2f, 0xeb, 0xaa, 0xdc,
-0xbf, 0xae, 0xab, 0xff, 0xff, 0xaf, 0xab, 0x7a,
-0xdc, 0xbf, 0xad, 0xeb, 0x7a, 0xfe, 0xb7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfa, 0x67, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xf7,
-0x77, 0xdf, 0xf7, 0xfd, 0xff, 0xff, 0xf7, 0xf9,
-0xdf, 0x7f, 0xdf, 0x77, 0xfd, 0xff, 0x7f, 0xdf,
-0xef, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xbf,
-0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xdf, 0xfc,
-0xfd, 0xff, 0xd7, 0xff, 0xff, 0xff, 0xed, 0x9f,
-0xf7, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xfd, 0xff,
-0x9f, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xf1,
-0xca, 0xff, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff,
-0xff, 0x9f, 0xff, 0xf9, 0xfe, 0x7f, 0xff, 0xfd,
-0xe3, 0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff, 0xff,
-0xff, 0xfa, 0xff, 0xce, 0xff, 0xff, 0xff, 0xff,
-0xf5, 0xab, 0xdf, 0xff, 0xff, 0xff, 0xfc, 0xd6,
-0x75, 0x9d, 0x7f, 0x59, 0xd7, 0x35, 0xfd, 0xe7,
-0x79, 0xaf, 0x5d, 0xf5, 0x7c, 0xd7, 0x55, 0xd5,
-0xff, 0x7d, 0x57, 0xf5, 0xfe, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0xf0, 0x6f, 0xff, 0xff, 0xff, 0xff,
-0x9f, 0x7f, 0xd3, 0xfe, 0xfb, 0x3f, 0xe7, 0xf9,
-0xfc, 0xff, 0x35, 0xe7, 0xfe, 0x7f, 0xbe, 0xe7,
-0xbb, 0xfe, 0xff, 0x3f, 0x6f, 0xbf, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0x47, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf5, 0x7f, 0xde, 0xe7, 0xd5, 0xe3,
-0x7a, 0xdf, 0xff, 0xfc, 0xbf, 0x7f, 0xff, 0xf9,
-0xff, 0x7c, 0x9f, 0xef, 0xcd, 0xf6, 0x7f, 0xfb,
-0xf2, 0xff, 0xff, 0xff, 0xff, 0xd1, 0xbf, 0xff,
-0xff, 0xff, 0xf7, 0xfe, 0xff, 0xe3, 0xf4, 0xfa,
-0xbe, 0xff, 0xff, 0xfe, 0xfd, 0x1d, 0x4f, 0xfa,
-0xfd, 0x3f, 0x4f, 0xab, 0xfa, 0xfb, 0xbe, 0x4f,
-0xe9, 0xdc, 0x57, 0xff, 0xff, 0xff, 0xd8, 0x9f,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xdf,
-0x77, 0xfd, 0xf7, 0x7d, 0xdf, 0xb7, 0xd2, 0xf7,
-0xdf, 0xf7, 0x7d, 0xff, 0x7f, 0xdf, 0xf7, 0xc5,
-0xf7, 0x77, 0xef, 0xab, 0xff, 0xf5, 0xfd, 0x7e,
-0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe7, 0xff, 0xfe, 0x7f, 0x1f, 0xff, 0xf3,
-0x5e, 0x7f, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xeb,
-0xfb, 0xfe, 0x7f, 0xf7, 0xfd, 0x7f, 0xff, 0xff,
-0xff, 0xe6, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0x9e, 0xe7, 0xbe, 0xee, 0xdb, 0xee, 0xff, 0xbb,
-0xee, 0x7f, 0xef, 0xbf, 0xee, 0xfb, 0xbe, 0xef,
-0xb9, 0xef, 0xbb, 0xee, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0x1b, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf9, 0xf6, 0x7d, 0xff, 0xef, 0xff, 0xf7,
-0xfd, 0xaf, 0x6f, 0xf9, 0xfd, 0xff, 0x6b, 0xd8,
-0xfe, 0x3d, 0xff, 0xef, 0xff, 0xf6, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xb1, 0xff, 0xfb, 0xfe,
-0xff, 0xbf, 0x6f, 0xdb, 0xfe, 0xfd, 0xbb, 0x6f,
-0xdb, 0xd6, 0xf1, 0xbb, 0x6f, 0xfe, 0xfd, 0xbe,
-0x6f, 0xdb, 0xf6, 0xfd, 0xbe, 0x6f, 0xdb, 0xee,
-0xff, 0xbf, 0xef, 0xfb, 0xff, 0xe5, 0x6f, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xf7, 0xff, 0xff, 0x7f,
-0x6f, 0xdf, 0xfe, 0xff, 0xbf, 0x6f, 0xff, 0xff,
-0x3f, 0xcf, 0xdb, 0xfd, 0xfd, 0xff, 0xdf, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x8f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xf7, 0xbf, 0xef, 0x7b, 0xde, 0xfb, 0xff,
-0xfb, 0xbe, 0xef, 0xbb, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xf5, 0xff, 0xff, 0x5f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xeb, 0xbf, 0xfc, 0x9f, 0xff, 0xe9, 0xff,
-0xbf, 0xeb, 0xfa, 0x7e, 0xff, 0xbf, 0xeb, 0xfa,
-0x7e, 0xba, 0x7f, 0xfa, 0xfe, 0x9f, 0xaf, 0xed,
-0xfa, 0xfe, 0xff, 0xbf, 0xeb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xb3, 0xff, 0xd7, 0xff, 0xfd,
-0x7f, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xdd, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xf8, 0xff, 0xfa, 0xf9,
-0xfe, 0x2f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f,
-0xe7, 0xf9, 0xfe, 0x7f, 0x8b, 0xc7, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xc7, 0xf9,
-0xfe, 0x7f, 0x1f, 0xe7, 0xf9, 0xff, 0x9f, 0xff,
-0xff, 0xfb, 0xfe, 0xff, 0xff, 0xef, 0xfb, 0xfe,
-0xff, 0xbf, 0xff, 0xff, 0xfe, 0x7d, 0x7a, 0xff,
-0xfe, 0x7f, 0xbf, 0xef, 0xf9, 0xfe, 0x7f, 0x9e,
-0xef, 0xff, 0xff, 0xeb, 0xff, 0xe7, 0xff, 0x83,
-0xff, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xfd, 0xff,
-0xff, 0xdf, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xaf,
-0xff, 0xff, 0xff, 0xf7, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0x7f, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xff, 0xfd, 0xff, 0x7f,
-0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff,
-0x7f, 0xde, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd,
-0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xff, 0xd1, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xd3, 0xf4, 0xfd, 0x1f, 0x4f, 0xd3, 0xf4,
-0xfd, 0x3f, 0x4f, 0xd8, 0xfd, 0x3f, 0x4f, 0xd1,
-0xf4, 0xfd, 0x3f, 0x47, 0x53, 0xf4, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf6, 0xaf, 0xff, 0xe3,
-0xfa, 0xfe, 0xbb, 0xa4, 0xe9, 0xba, 0xce, 0xab,
-0xae, 0xeb, 0x3a, 0xce, 0xb3, 0x2b, 0x7a, 0xfe,
-0xbf, 0xa3, 0xeb, 0xfa, 0x3e, 0x9f, 0x8f, 0xeb,
-0x7a, 0xbe, 0xaf, 0xad, 0xeb, 0x7b, 0x07, 0xff,
-0xff, 0xff, 0x7f, 0xfe, 0xc7, 0xf2, 0xfd, 0x5f,
-0xff, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0x7f, 0xfb,
-0xee, 0xef, 0xbf, 0xef, 0x7b, 0xae, 0xfb, 0x9a,
-0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
-0x7f, 0xff, 0xff, 0xff, 0x79, 0xf7, 0xfa, 0x7d,
-0xff, 0xff, 0xdf, 0x9f, 0xeb, 0xfb, 0xfe, 0xff,
-0xf7, 0xfb, 0x7d, 0xbf, 0xbf, 0xdb, 0xff, 0x7e,
-0xbf, 0xda, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xfa, 0x5f, 0xff, 0xff, 0xff, 0xfe, 0xfb, 0x7f,
-0xf5, 0xb7, 0x3f, 0xef, 0xf7, 0xff, 0xff, 0xaf,
-0x7f, 0xbb, 0x7e, 0xff, 0xff, 0xff, 0xfe, 0xfe,
-0xff, 0xfb, 0x7f, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xfb, 0xff, 0xeb, 0xff, 0xee, 0x3f,
-0x8d, 0xe3, 0xf8, 0xfc, 0x37, 0x0f, 0x63, 0xc8,
-0xfe, 0x1d, 0xa7, 0xf8, 0x7c, 0x3f, 0x83, 0x23,
-0xf8, 0xdc, 0x1f, 0x87, 0xe3, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xfe, 0x70, 0x7f, 0xf6, 0x7f, 0xff,
-0xdf, 0xf7, 0xf5, 0xff, 0x77, 0x9f, 0x37, 0xf9,
-0xff, 0x7f, 0xdf, 0xfe, 0xed, 0x7f, 0xdf, 0x77,
-0xdd, 0xef, 0x7f, 0xdf, 0x97, 0xf5, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xf0, 0x0f, 0xff, 0xfe,
-0xff, 0xef, 0xef, 0xd7, 0xf7, 0xfb, 0xff, 0xff,
-0x1f, 0xee, 0xf3, 0xbe, 0xbe, 0xf2, 0xbb, 0xbf,
-0xf9, 0xbf, 0xfe, 0xbb, 0xfc, 0x5f, 0xff, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0x7f, 0x09, 0xff,
-0x7f, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xff, 0xbf,
-0x7f, 0xd7, 0xe5, 0xfd, 0xbf, 0x3b, 0xdf, 0xf4,
-0x3b, 0x5d, 0xcf, 0xfe, 0xfc, 0x7f, 0x7f, 0x3b,
-0xff, 0xff, 0x9f, 0xff, 0xfb, 0xff, 0xff, 0xf0,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xbe, 0xdf, 0xf5,
-0x73, 0xdb, 0x5f, 0xbf, 0xdd, 0xbd, 0xef, 0x7b,
-0xee, 0x7f, 0xff, 0x7b, 0xff, 0xff, 0xfb, 0xef,
-0xff, 0xff, 0xff, 0xfd, 0x7e, 0xff, 0xff, 0xff,
-0xff, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
-0xcf, 0xf1, 0xff, 0xff, 0xff, 0xef, 0xfb, 0xf3,
-0xfe, 0xfe, 0xde, 0xfc, 0xfa, 0xbf, 0x3f, 0x6f,
-0xff, 0xbf, 0x1f, 0xd7, 0xff, 0xfc, 0x7f, 0xff,
-0xff, 0xff, 0xd6, 0xef, 0xff, 0xff, 0xf7, 0xff,
-0xf7, 0xfb, 0x7f, 0xd7, 0xfe, 0xff, 0xfd, 0xef,
-0xdf, 0xff, 0xff, 0xf3, 0xff, 0xb7, 0xfb, 0xff,
-0xf7, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xfd, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xaf, 0x7b, 0xfc, 0xff, 0xbf, 0xed, 0x72,
-0xff, 0xf3, 0x7d, 0xdf, 0xff, 0xf7, 0xed, 0xf9,
-0x7e, 0xdd, 0x7b, 0xfd, 0x7f, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x11, 0x7f, 0xff,
-0xff, 0xff, 0xef, 0xec, 0xfd, 0x7f, 0xfa, 0xbf,
-0xef, 0xf9, 0xfe, 0xff, 0xff, 0xed, 0xf0, 0xfb,
-0xbf, 0xed, 0xf9, 0xff, 0xaf, 0x6e, 0xfb, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf7, 0x7f,
-0xff, 0xff, 0xff, 0xfc, 0xf5, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x7e, 0xff, 0x5f, 0xdf, 0xfb, 0xef,
-0xf7, 0xcf, 0xfb, 0xf8, 0xef, 0xff, 0xfd, 0x7f,
-0x9f, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
-0xc3, 0xff, 0xbf, 0xfc, 0xff, 0xf5, 0xcc, 0xf7,
-0x3c, 0xff, 0xfe, 0xcf, 0xf2, 0x6c, 0xcf, 0xdf,
-0xcf, 0xec, 0x7f, 0x3f, 0xff, 0xbf, 0xff, 0xfb,
-0x75, 0xcf, 0xb3, 0xff, 0xff, 0xe7, 0xff, 0xff,
-0xff, 0x35, 0xaf, 0xf7, 0xbf, 0xdf, 0xff, 0xff,
-0xa3, 0xe5, 0xff, 0x3f, 0xdd, 0xfe, 0xa9, 0xef,
-0x7e, 0x7f, 0xfc, 0x5a, 0x3b, 0xdf, 0xf7, 0xff,
-0xff, 0xfe, 0xbb, 0xf6, 0xff, 0xff, 0xfe, 0xbf,
-0xff, 0xff, 0x58, 0xbd, 0xfe, 0xff, 0xff, 0x2b,
-0xff, 0x9f, 0x9d, 0x73, 0x2b, 0xfa, 0xe7, 0xbf,
-0xab, 0x5d, 0xcb, 0x9f, 0xac, 0x6a, 0x9f, 0x7e,
-0x9f, 0xf7, 0xef, 0x7f, 0xfe, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xef, 0x86, 0xff, 0xdf, 0xff,
-0xed, 0x7f, 0xff, 0xcd, 0x93, 0x65, 0x79, 0x7e,
-0xdf, 0x37, 0xed, 0xd3, 0x7f, 0xf5, 0xe5, 0x7f,
-0x76, 0xdd, 0xff, 0x7f, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xdf, 0xff, 0xff, 0xff, 0x78, 0xff, 0xfb,
-0xff, 0xfe, 0xff, 0xeb, 0xfe, 0x7d, 0xdd, 0x2f,
-0xcb, 0xc3, 0xfe, 0xbe, 0x7c, 0xdb, 0xff, 0xff,
-0x2f, 0xff, 0x22, 0xdf, 0xf7, 0xff, 0xeb, 0xfb,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfc, 0xdb,
-0xff, 0x77, 0xff, 0xff, 0x7d, 0x5f, 0x77, 0x1d,
-0xf7, 0x51, 0x5e, 0x77, 0x95, 0x87, 0x7d, 0xde,
-0xdd, 0x87, 0x79, 0xdf, 0x7b, 0xdd, 0xff, 0x79,
-0x5f, 0x77, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0x99, 0xff, 0xef, 0xff, 0xfe, 0xbf, 0xad, 0xfb,
-0xca, 0xfe, 0xbf, 0xaf, 0xab, 0x42, 0xfe, 0xad,
-0x2f, 0x3f, 0xfe, 0xbe, 0xaf, 0x4b, 0xfe, 0xdf,
-0xfe, 0xaf, 0xef, 0x9f, 0xf7, 0xed, 0xff, 0xff,
-0xff, 0xe3, 0x7f, 0xfd, 0xff, 0xff, 0xd7, 0xf5,
-0xfd, 0xb8, 0x4f, 0xd7, 0xf5, 0xfd, 0xfa, 0x5f,
-0xd6, 0xf7, 0xc6, 0x7f, 0xd7, 0xf5, 0x6d, 0xff,
-0x76, 0xff, 0x35, 0xfd, 0xf3, 0xfe, 0x7f, 0x9f,
-0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf6, 0xfd, 0xbf, 0xed, 0xff, 0xfe,
-0xdf, 0xbf, 0xcd, 0xfb, 0x7f, 0xbf, 0xed, 0xd0,
-0xfc, 0xfd, 0x27, 0xed, 0xff, 0xff, 0xff, 0xef,
-0x5b, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xe3, 0xfe, 0xfe, 0xff,
-0x9f, 0xe7, 0xfa, 0xfe, 0xff, 0xfb, 0xfa, 0xfe,
-0xf9, 0xff, 0xfb, 0x9b, 0xfe, 0x7f, 0xff, 0xff,
-0xff, 0xe7, 0xff, 0xff, 0xff, 0xf9, 0x1f, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xfd, 0x9f, 0x67, 0xdb,
-0x36, 0xdf, 0xbf, 0xee, 0xdb, 0xbe, 0xfd, 0xee,
-0xdb, 0xee, 0x75, 0xbf, 0x67, 0xbb, 0xfe, 0xff,
-0xbf, 0xef, 0xf8, 0xfe, 0xff, 0xbf, 0xfe, 0x56,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xbf, 0x6f,
-0xdb, 0xfc, 0xff, 0xff, 0xef, 0xf3, 0xfe, 0xfd,
-0xbf, 0xdb, 0xff, 0xfb, 0xbe, 0xdf, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff,
-0x76, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xf7, 0xfd, 0xfe, 0xff, 0xff, 0xf7, 0xfe, 0xff,
-0xbf, 0xbf, 0xfb, 0xff, 0xfe, 0xdf, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x17, 0xfe, 0x5f, 0xff, 0xff, 0xff,
-0x7f, 0x47, 0xd1, 0xf5, 0xfd, 0x7f, 0xdf, 0xd7,
-0xf5, 0xef, 0x7f, 0xd7, 0xb5, 0xfb, 0x1b, 0x5e,
-0xf9, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0x7f,
-0xff, 0xfe, 0xff, 0x8b, 0xff, 0xe9, 0xff, 0xff,
-0xff, 0xe7, 0xeb, 0xfa, 0xfe, 0x9f, 0xa7, 0xe9,
-0xfa, 0x7e, 0x8f, 0xa7, 0xfb, 0x76, 0x9f, 0xe3,
-0xea, 0xd7, 0x3f, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xb0, 0x7b, 0xfd, 0x7f,
-0xfd, 0xff, 0xfd, 0xfb, 0x37, 0x4f, 0xf7, 0xe5,
-0xef, 0x7f, 0x5f, 0xf7, 0xbd, 0xef, 0x7f, 0xf7,
-0x3e, 0xff, 0x77, 0x5c, 0xf7, 0xbf, 0xdf, 0xf7,
-0xfe, 0xfb, 0xbf, 0xff, 0xff, 0xfd, 0x2f, 0xff,
-0xaf, 0x9f, 0xe7, 0xf9, 0xbe, 0x3f, 0x8b, 0xc2,
-0xf8, 0xbe, 0x3f, 0x8b, 0xa7, 0xf9, 0xbe, 0x6f,
-0xe2, 0xf9, 0xfe, 0x2f, 0x89, 0xe6, 0xf9, 0xfe,
-0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xdd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf5, 0xff,
-0x7a, 0x5f, 0xf7, 0xfc, 0x7f, 0x37, 0xdf, 0xf1,
-0xfd, 0x1f, 0x4f, 0xf1, 0xf5, 0xff, 0x1f, 0xef,
-0xff, 0xfe, 0x7f, 0x9f, 0xe7, 0xff, 0xff, 0xff,
-0xeb, 0x3f, 0xdf, 0xff, 0xff, 0xff, 0xfe, 0x7e,
-0xbf, 0xbf, 0xeb, 0xfa, 0xff, 0xbf, 0xa7, 0xbf,
-0xfb, 0xff, 0xbf, 0xe9, 0xfe, 0xfe, 0xbf, 0xbf,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x13, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xfd,
-0xff, 0x7f, 0xff, 0xe7, 0xff, 0x7f, 0xff, 0xff,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xe6, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xf9, 0xff, 0x7f, 0xff, 0xbf, 0xef, 0xff,
-0x7e, 0xdb, 0xfd, 0xfd, 0xfe, 0xdf, 0xb7, 0xff,
-0x7f, 0xdf, 0xb7, 0xf7, 0xfd, 0xff, 0x7f, 0xdf,
-0xfd, 0xfd, 0xff, 0xff, 0xfd, 0x9f, 0xf7, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0xdf, 0xf7, 0xfd,
-0xbf, 0xee, 0xdf, 0xf6, 0xfd, 0xad, 0xff, 0xff,
-0xfd, 0xaf, 0x27, 0xde, 0xf2, 0xff, 0xff, 0xab,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03, 0xff,
-0xf6, 0xbf, 0xa7, 0xe9, 0xfa, 0xde, 0xbb, 0xaf,
-0xea, 0xb8, 0xfc, 0x33, 0xaf, 0xe9, 0xfa, 0xf7,
-0xaf, 0xe3, 0xba, 0xf6, 0xbb, 0xa7, 0x69, 0xfa,
-0x7e, 0xbf, 0xaf, 0xeb, 0xfa, 0xfe, 0xbb, 0xf3,
-0x7f, 0xdf, 0xff, 0xcd, 0xff, 0xff, 0xdf, 0x17,
-0xcd, 0xae, 0xf6, 0xbd, 0xef, 0xf5, 0xc3, 0x73,
-0xef, 0xff, 0xfe, 0xe4, 0x7f, 0x3f, 0xc7, 0xff,
-0x6f, 0xdf, 0xfd, 0xff, 0xb3, 0xff, 0xff, 0xff,
-0xee, 0xa7, 0xff, 0xff, 0xdf, 0xef, 0xff, 0xef,
-0xbe, 0x93, 0xdf, 0xfd, 0x7f, 0x7b, 0xff, 0xff,
-0xe7, 0xef, 0xff, 0x5f, 0xf7, 0xfd, 0xff, 0xdf,
-0xff, 0xe7, 0xfb, 0xff, 0x7f, 0xff, 0xff, 0xfd,
-0xf7, 0xff, 0x95, 0xef, 0xff, 0xfc, 0xff, 0xff,
-0xff, 0xed, 0xaf, 0xcd, 0xf2, 0xff, 0xbf, 0x3f,
-0xfe, 0x3f, 0xff, 0xe7, 0xbb, 0xfb, 0xcf, 0xb3,
-0xe8, 0xf6, 0xff, 0xfd, 0x7f, 0xff, 0xff, 0x3f,
-0xff, 0xff, 0xff, 0xe9, 0xbf, 0xfa, 0xbf, 0xff,
-0xff, 0xff, 0x7e, 0x9a, 0xb7, 0xc9, 0xf9, 0xfd,
-0x9f, 0x6f, 0x79, 0xce, 0xdf, 0xff, 0xaa, 0xff,
-0xfe, 0x9f, 0x8f, 0xf9, 0xef, 0x7b, 0xdf, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfd, 0xd5,
-0xff, 0xff, 0xff, 0xff, 0xe7, 0xfd, 0xef, 0xbb,
-0xfd, 0xdf, 0xbb, 0xff, 0xff, 0xfd, 0xff, 0xad,
-0x7f, 0xfc, 0x57, 0xbf, 0xf6, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xff,
-0xfe, 0xfd, 0xff, 0xf7, 0xff, 0xbf, 0xff, 0xff,
-0xae, 0xff, 0xff, 0xef, 0x3d, 0xab, 0xee, 0xdb,
-0xfb, 0xff, 0x73, 0xfc, 0xfe, 0xff, 0xcf, 0xff,
-0xf7, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0x1f, 0xff, 0x37, 0xfb, 0xef, 0xf7, 0xbf, 0xef,
-0xfb, 0xf4, 0xed, 0x7f, 0xff, 0x7b, 0xf3, 0xdf,
-0xff, 0x59, 0xff, 0xff, 0xfa, 0xeb, 0xdb, 0xf5,
-0xff, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x9a, 0x7f, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xdf, 0xff, 0xd7, 0xff, 0x7f, 0xff, 0xfe,
-0xff, 0xff, 0xab, 0xff, 0xed, 0xff, 0xdf, 0xfe,
-0xff, 0xfd, 0xff, 0xff, 0xff, 0xdf, 0xfe, 0xff,
-0xff, 0xff, 0xd0, 0x7f, 0xfd, 0xff, 0xff, 0x7b,
-0xfe, 0xff, 0xff, 0x37, 0x7d, 0xf3, 0xfc, 0xfb,
-0xac, 0x87, 0xd1, 0xd9, 0xfe, 0xa9, 0x6f, 0xbf,
-0xf7, 0xff, 0x4d, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xbf, 0xff,
-0xdf, 0xff, 0xff, 0xfe, 0xe7, 0xff, 0xfe, 0xbe,
-0xb6, 0xbb, 0xde, 0xa9, 0x7d, 0xbe, 0xff, 0x7f,
-0xf7, 0xff, 0xff, 0xc1, 0xbd, 0xfe, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xff, 0xbf,
-0xff, 0xff, 0xfb, 0x7f, 0xff, 0xaf, 0x7b, 0xf7,
-0xd7, 0x75, 0xff, 0xf7, 0xfb, 0xff, 0x6f, 0xfe,
-0xfe, 0xd5, 0x7d, 0xef, 0xef, 0xff, 0xd7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x9d,
-0xfb, 0xf7, 0xfd, 0xfe, 0xff, 0x7b, 0xef, 0x4f,
-0xff, 0xbf, 0xff, 0xbf, 0xfb, 0xfb, 0xbe, 0xdf,
-0xef, 0xff, 0xfe, 0x7f, 0x75, 0xef, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0x56, 0xfb, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xfe, 0xff,
-0xdf, 0xed, 0xff, 0xff, 0xbf, 0xff, 0xfd, 0xbe,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfa, 0x1f, 0xff, 0x35, 0xcf, 0xf1, 0x2f,
-0x7f, 0x33, 0xcf, 0xf7, 0x5c, 0x53, 0x5e, 0xd7,
-0xb1, 0xec, 0xcf, 0xff, 0xf3, 0x5f, 0xff, 0x3f,
-0xcf, 0xf1, 0xef, 0xff, 0xe7, 0xc7, 0xff, 0xff,
-0xff, 0xff, 0xf1, 0xda, 0xff, 0xe8, 0xff, 0x33,
-0xff, 0xf9, 0xf4, 0xff, 0xaf, 0xe7, 0xaa, 0x7c,
-0xdf, 0x97, 0xbf, 0xfa, 0xcf, 0xaf, 0x65, 0xef,
-0xeb, 0xfc, 0x97, 0xbd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf5, 0xe3, 0x5f, 0xff, 0xff,
-0xbf, 0xad, 0x77, 0x4b, 0xd2, 0x3f, 0x9f, 0xf7,
-0xed, 0xd2, 0x7e, 0x8f, 0xbb, 0x5a, 0x7e, 0xbf,
-0xff, 0xfb, 0xfe, 0xfe, 0xef, 0xbf, 0xff, 0xff,
-0xbf, 0xff, 0xff, 0xff, 0xfe, 0xfa, 0x6f, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0x7d, 0x7b, 0x16, 0x4b,
-0xfb, 0xfc, 0xb9, 0x37, 0xcd, 0xff, 0xe7, 0x17,
-0xc7, 0xb7, 0xe5, 0xff, 0x7f, 0xd7, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x83,
-0xfb, 0x2f, 0xff, 0xfe, 0xfc, 0x97, 0x7f, 0xbd,
-0xfb, 0x6c, 0x8f, 0xb7, 0xe9, 0xf2, 0x7c, 0xfb,
-0x69, 0xff, 0x7b, 0xff, 0x3e, 0xcf, 0xb3, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xd1, 0xbf, 0xf5, 0x7f, 0xff, 0x77, 0x1b, 0x8f,
-0x7f, 0xdf, 0x77, 0xd5, 0xf7, 0x7d, 0x58, 0x55,
-0x3d, 0xfd, 0xd6, 0xf7, 0xdd, 0x87, 0x69, 0xdf,
-0xd7, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xdf, 0x37, 0xfe, 0xbf, 0xff, 0x7b, 0x8f,
-0xfe, 0xbf, 0xaf, 0xeb, 0x52, 0xf4, 0xff, 0xaf,
-0x6b, 0x9b, 0xff, 0x2f, 0xeb, 0xda, 0xfe, 0xbf,
-0xaf, 0x4f, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xde, 0x97, 0xff, 0xd7, 0xff, 0xe5,
-0xfa, 0xf7, 0xd7, 0xf4, 0xcd, 0xba, 0x4e, 0x9b,
-0xb4, 0xc5, 0x33, 0xff, 0xf4, 0xfd, 0x3d, 0x5f,
-0xdf, 0xf7, 0xcf, 0x7f, 0x7e, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf6, 0x7f, 0xff, 0xff,
-0xfe, 0xff, 0xfd, 0x3f, 0xff, 0xd9, 0xf6, 0xdd,
-0xff, 0x7b, 0xdb, 0xf7, 0xff, 0xb7, 0xdf, 0xf7,
-0xff, 0xff, 0xff, 0xf9, 0xfe, 0xdf, 0xb7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdf, 0xfb,
-0xff, 0xff, 0xff, 0xef, 0xfa, 0xff, 0xff, 0xbf,
-0xef, 0xfb, 0xff, 0xff, 0xef, 0xef, 0xf9, 0xff,
-0xff, 0xe7, 0xfb, 0xfe, 0xff, 0xff, 0xef, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91,
-0x7f, 0xbb, 0xfe, 0xff, 0xbe, 0x66, 0xfb, 0xfe,
-0x6d, 0x9e, 0xe7, 0x99, 0xf6, 0x7f, 0x9b, 0xed,
-0xd6, 0x7d, 0x9f, 0x6f, 0xbb, 0xb6, 0xfd, 0xbe,
-0xee, 0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xff,
-0xed, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0x3f, 0xff, 0xdb, 0xfc, 0xff, 0xff,
-0xff, 0xf7, 0xff, 0x7f, 0x6f, 0xfb, 0xf7, 0xfd,
-0xbf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xf7, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xfb, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xef, 0xfd, 0xff,
-0xff, 0xef, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xd1, 0xff, 0xff, 0xff, 0xfe,
-0x5f, 0xf1, 0xff, 0xed, 0x1b, 0x47, 0xd3, 0xfc,
-0x7d, 0x1b, 0x46, 0xdf, 0xff, 0x1f, 0x47, 0xd7,
-0xfd, 0xfd, 0x7f, 0xdf, 0x9f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xe9, 0x3f, 0xff, 0xff,
-0xff, 0x49, 0xfb, 0xbf, 0xff, 0xaf, 0xeb, 0xfa,
-0xfe, 0xbf, 0x2f, 0xcb, 0xfb, 0x7f, 0x2f, 0xeb,
-0xfa, 0x7e, 0x9f, 0x27, 0xe9, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0xff,
-0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff, 0xfc, 0xdf,
-0x3f, 0xdf, 0xf3, 0xf4, 0xfd, 0x3f, 0xfd, 0xfd,
-0xff, 0x7f, 0xde, 0xf7, 0xfd, 0xdf, 0xf6, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
-0xff, 0xbf, 0xf9, 0xfe, 0x7f, 0x9d, 0xe7, 0xf9,
-0xbe, 0x3f, 0x9b, 0xe2, 0xf8, 0xbe, 0x2f, 0x9f,
-0xe6, 0x9c, 0x37, 0x9f, 0xe3, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfd, 0x5f, 0xff, 0xff, 0xf9, 0xf4, 0x7f, 0x7f,
-0xff, 0xf1, 0xf4, 0xfd, 0x7f, 0xcf, 0xf7, 0xfc,
-0x7f, 0xbf, 0xf7, 0xac, 0x7f, 0x7f, 0xcf, 0xf1,
-0xfe, 0xfd, 0x9f, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xa3, 0xfd, 0xff, 0xff, 0xfe, 0xbf,
-0xbf, 0xff, 0xfe, 0xfe, 0xbf, 0xaf, 0xef, 0xfb,
-0xff, 0xbf, 0xf7, 0xfb, 0xfe, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0x3f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xdf, 0xfb, 0xff, 0xff,
-0x3f, 0xff, 0xff, 0xff, 0xfe, 0xdf, 0xf7, 0xfd,
-0xff, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xae, 0xff, 0xff,
-0xfd, 0xff, 0x7f, 0xf7, 0xf7, 0xf9, 0xff, 0x7f,
-0xdf, 0xb7, 0xfd, 0xff, 0x7f, 0xdf, 0xef, 0xfb,
-0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xff,
-0xdf, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0xff, 0xf4, 0x7d, 0xbb, 0x7f, 0xcb, 0xfd,
-0xff, 0xfe, 0xcb, 0xfe, 0xbd, 0xbf, 0x6f, 0xd3,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2,
-0xbf, 0xff, 0xeb, 0xfa, 0xfe, 0xaf, 0xad, 0xe9,
-0xf2, 0xfe, 0xbf, 0xa6, 0xe8, 0xba, 0x76, 0x9d,
-0xaf, 0x7a, 0xbe, 0xbb, 0xa3, 0xeb, 0xda, 0xce,
-0xbb, 0xad, 0xe2, 0xfa, 0xfe, 0xb7, 0xaf, 0xeb,
-0xff, 0xc7, 0xff, 0xff, 0xff, 0x5f, 0xfb, 0xdd,
-0xf1, 0x7c, 0xda, 0x37, 0xcd, 0xb3, 0xf4, 0x37,
-0x37, 0xfc, 0xb8, 0xdf, 0x13, 0xf5, 0xd3, 0x84,
-0x7d, 0xd7, 0xfc, 0xf5, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x74, 0x7f, 0xff, 0xf7, 0xfa, 0xff,
-0x7f, 0xff, 0x67, 0xf9, 0xdf, 0x77, 0xdf, 0xdf,
-0xfd, 0xfc, 0xdf, 0xbf, 0xf3, 0xcb, 0x7f, 0xbf,
-0xff, 0x5f, 0xfb, 0xdf, 0x7e, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xf8, 0x97, 0xff, 0xfb, 0xff,
-0x6f, 0x7e, 0xfa, 0x5f, 0x94, 0xbb, 0xfe, 0xff,
-0x3f, 0x97, 0xe5, 0xff, 0xef, 0x57, 0xff, 0xbf,
-0xf7, 0x4b, 0xef, 0xef, 0xfb, 0xfe, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x99, 0xfd, 0xfd,
-0xff, 0xb7, 0xfe, 0xfd, 0xfe, 0xfa, 0x7e, 0xbd,
-0x27, 0x6b, 0xb9, 0xf6, 0xff, 0x67, 0xf3, 0xfe,
-0x1f, 0x8f, 0xfb, 0xdb, 0xff, 0xbd, 0xfb, 0xff,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xef, 0x7f,
-0xff, 0xee, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x9e,
-0xfb, 0xf9, 0xfe, 0x7d, 0xff, 0xf7, 0xfb, 0xf5,
-0xee, 0xfd, 0xfb, 0xf5, 0xff, 0xef, 0x7f, 0xff,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xa7, 0xff, 0xfe, 0xfd, 0x77, 0xff, 0xbf, 0xee,
-0xfd, 0xeb, 0xef, 0x3a, 0xf7, 0xff, 0xff, 0x5f,
-0xff, 0xb3, 0xf8, 0xf7, 0x3b, 0xef, 0xfb, 0xf3,
-0xed, 0x3b, 0xfe, 0xff, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0x89, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xde,
-0xf6, 0xfd, 0xff, 0xff, 0xdf, 0xff, 0xfd, 0xcf,
-0x7f, 0xdf, 0xe5, 0xff, 0x7e, 0xdb, 0x7a, 0xfe,
-0xaf, 0xef, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x3f, 0xff, 0xfb, 0xff, 0xbf,
-0xfb, 0x7e, 0xd7, 0xed, 0xfe, 0xfe, 0x9f, 0xff,
-0x3f, 0xef, 0xdb, 0xff, 0xef, 0xda, 0xee, 0xe7,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xa7, 0xfd, 0xcf, 0xf3,
-0xde, 0xff, 0xad, 0xcf, 0xef, 0xfb, 0xfe, 0xfd,
-0x2d, 0xff, 0xff, 0xff, 0xfb, 0xbf, 0xbf, 0xf7,
-0x33, 0xff, 0xef, 0xff, 0xbc, 0x1f, 0xbf, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xef, 0xfe,
-0xff, 0x7e, 0xf7, 0xd7, 0xdb, 0x7f, 0xeb, 0xfb,
-0xfe, 0xff, 0x7f, 0xf7, 0xff, 0xfe, 0x79, 0xeb,
-0xff, 0x9b, 0x67, 0xb7, 0xff, 0xff, 0xfa, 0xdf,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x9d,
-0xef, 0xbf, 0xef, 0x5f, 0xdf, 0x77, 0x5f, 0xbd,
-0xfd, 0xdb, 0xff, 0x5a, 0xf7, 0xad, 0x8b, 0x3a,
-0xf7, 0xbf, 0xde, 0x7f, 0xfd, 0xb3, 0xac, 0xd9,
-0x7f, 0xff, 0xbf, 0xdf, 0xfd, 0x7f, 0xff, 0xff,
-0x19, 0xff, 0xff, 0x7f, 0xdf, 0xf7, 0xdf, 0xff,
-0xbf, 0xdf, 0xb5, 0xed, 0x79, 0xee, 0xd7, 0x37,
-0xce, 0xfe, 0xf3, 0xbf, 0xef, 0xbb, 0x7e, 0xdb,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff,
-0xff, 0xff, 0x77, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xef, 0xff, 0xff, 0xcf, 0xfb, 0x7f, 0x7f, 0x3f,
-0xb7, 0xfd, 0xff, 0x5f, 0xf7, 0xf5, 0xff, 0x7f,
-0x5f, 0xdf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0x63, 0xff, 0xf1, 0xfc, 0xcb,
-0x3f, 0xdd, 0x72, 0x7d, 0xcf, 0x1f, 0xdf, 0xb3,
-0x3f, 0x7f, 0xff, 0xfd, 0x7f, 0xff, 0xe7, 0xf9,
-0xff, 0xff, 0x9f, 0x3f, 0xff, 0xf3, 0xff, 0xcf,
-0x3f, 0xff, 0xff, 0xff, 0x35, 0xaf, 0xff, 0x7c,
-0xb9, 0x6f, 0xff, 0x3e, 0xff, 0xfa, 0xfb, 0xff,
-0xa7, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xfc,
-0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xf3, 0xff, 0xff, 0xff, 0xff, 0x5c, 0xbd, 0xff,
-0xff, 0xef, 0xef, 0xd6, 0xff, 0xff, 0xbf, 0x4e,
-0xcb, 0xfe, 0xe9, 0xd6, 0x75, 0x9d, 0x73, 0xd7,
-0x55, 0xd5, 0x75, 0x5d, 0x57, 0xfe, 0xfe, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xef, 0xa6,
-0xff, 0xff, 0xf7, 0xfd, 0xff, 0xff, 0xff, 0x97,
-0xed, 0xf9, 0x7f, 0xdf, 0x9f, 0x4f, 0xb3, 0xfc,
-0xfe, 0xff, 0xf9, 0xef, 0xff, 0x9f, 0xff, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x6a, 0xff, 0xff, 0xff, 0xbf, 0x3f, 0xf9, 0xfa,
-0xfe, 0x9e, 0xee, 0xdb, 0xd3, 0xff, 0xf7, 0xfc,
-0xde, 0xb7, 0xf5, 0x78, 0xdf, 0x57, 0x9d, 0xe5,
-0x7f, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x1b, 0xff, 0xff, 0xdd, 0xc7, 0x7f,
-0x3f, 0x57, 0xd3, 0xf7, 0x79, 0xde, 0x77, 0xfe,
-0x6f, 0xbf, 0xff, 0xfe, 0xff, 0x9b, 0xef, 0xfb,
-0x7e, 0xef, 0xfd, 0x36, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfd, 0xd9, 0xff, 0xff, 0xfe, 0xda,
-0xf7, 0xed, 0x6b, 0x7a, 0xe6, 0xbe, 0xae, 0x2f,
-0xfd, 0xff, 0x77, 0xdf, 0x5d, 0xdf, 0x7f, 0xdf,
-0xf7, 0x7d, 0xfb, 0xff, 0xaf, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xe5, 0x7f, 0xff, 0xff,
-0x7f, 0xdf, 0xff, 0xc5, 0x7f, 0x5e, 0xdf, 0xf7,
-0xcd, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xfe, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xef, 0xdb, 0xff, 0xfd, 0xa7,
-0xe7, 0xff, 0xfe, 0xdb, 0xbe, 0xe7, 0xbb, 0xfb,
-0xbe, 0xef, 0xbb, 0xee, 0xfb, 0xff, 0xe7, 0xde,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x3d, 0xaf, 0xff,
-0xfb, 0xff, 0xff, 0xbf, 0xff, 0xfa, 0xfe, 0xfd,
-0xef, 0xfe, 0xfe, 0xbf, 0x8f, 0xe3, 0xfb, 0xfe,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xee, 0x9f, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0x39,
-0xbf, 0x67, 0x9b, 0xf6, 0xf9, 0xb5, 0x6f, 0x1b,
-0xbe, 0xfd, 0xef, 0xdb, 0xe6, 0xfd, 0xbf, 0x6f,
-0x1b, 0xfe, 0x7d, 0xbf, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xfe, 0x16, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0x3f, 0xdf, 0xdb, 0xfc, 0xfd, 0xbf, 0xef,
-0xfb, 0xfe, 0xfd, 0xff, 0xf3, 0xfc, 0xfd, 0xbf,
-0xcf, 0xfb, 0xfe, 0xff, 0x3f, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xfd, 0xff, 0xbf, 0xef,
-0xf7, 0xbd, 0xee, 0xfb, 0xff, 0xbb, 0xee, 0xfb,
-0xbe, 0xfb, 0xbb, 0xfe, 0xff, 0xbf, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x17, 0xff, 0xff,
-0xff, 0xf5, 0xff, 0x3f, 0xff, 0xfb, 0xf5, 0xff,
-0x7f, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xf5, 0xff, 0x9f, 0xdf,
-0xf7, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xbb, 0xff,
-0xff, 0xff, 0xfe, 0x9d, 0xeb, 0xfd, 0xd7, 0x7e,
-0x9f, 0xa7, 0xe9, 0xff, 0xbf, 0xed, 0xfa, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbc, 0x9f, 0xf7,
-0xed, 0xfb, 0x7f, 0xff, 0xe7, 0xff, 0xff, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
-0xfd, 0xf7, 0xad, 0xff, 0x7b, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xf7,
-0xff, 0x7b, 0x7f, 0xdf, 0xff, 0x6d, 0xff, 0xff,
-0xfe, 0xcf, 0xf7, 0xff, 0x9f, 0xe7, 0xf9, 0xfe,
-0x7f, 0x9f, 0xe7, 0xe9, 0xba, 0x7f, 0x9f, 0xe7,
-0xf9, 0xfe, 0x7f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f,
-0xe7, 0xf9, 0xfe, 0x3f, 0x8f, 0xe7, 0xf9, 0xbc,
-0x7f, 0x9f, 0x99, 0xff, 0xfe, 0xff, 0xff, 0x5f,
-0xf7, 0xff, 0xff, 0xff, 0xcd, 0xf3, 0x7c, 0xff,
-0xff, 0xef, 0xfb, 0xff, 0x9f, 0xef, 0xfb, 0xff,
-0xff, 0xbf, 0xdf, 0xdb, 0xfd, 0xff, 0x7f, 0xff,
-0xf7, 0xef, 0xff, 0xfd, 0x3f, 0xdf, 0xdf, 0xff,
-0xeb, 0xfe, 0xff, 0xbf, 0xff, 0xff, 0xeb, 0xfb,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0x7e, 0xff, 0xbf,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0x27, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0x3f,
-0xef, 0xf7, 0xff, 0xff, 0xbf, 0xef, 0xef, 0xff,
-0xbf, 0xff, 0xff, 0xfe, 0xff, 0x7f, 0x7f, 0xf7,
-0xfd, 0xff, 0xff, 0xde, 0xff, 0xff, 0xd2, 0xff,
-0xff, 0x7f, 0xff, 0xf7, 0xff, 0x7e, 0x7f, 0x9f,
-0xf6, 0xfd, 0xff, 0x7f, 0xf7, 0xfd, 0xff, 0x7f,
-0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xff, 0xfd,
-0xfb, 0xfe, 0xff, 0xff, 0xfb, 0xdf, 0xff, 0xff,
-0xdb, 0xff, 0xff, 0xff, 0xf7, 0xfd, 0xff, 0xff,
-0xdf, 0xf2, 0xfd, 0xff, 0x6f, 0xd3, 0xf4, 0x75,
-0x3f, 0xd1, 0xf4, 0xfd, 0x3f, 0x4f, 0xd3, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xe7, 0xff, 0xff,
-0xff, 0xd2, 0xff, 0xbe, 0xaf, 0xad, 0xea, 0xd8,
-0x7e, 0xbd, 0x8e, 0xe9, 0xba, 0x56, 0x9b, 0x86,
-0xe1, 0xba, 0x33, 0x8e, 0xc0, 0xb8, 0x2c, 0xbb,
-0x0b, 0xe3, 0xfa, 0xbe, 0xbf, 0xaf, 0xeb, 0xfa,
-0xfe, 0xbf, 0xf6, 0x7f, 0xff, 0x1f, 0xfd, 0xef,
-0x7c, 0xfb, 0xfa, 0xff, 0xf7, 0xec, 0xdd, 0xfe,
-0xcf, 0xb1, 0xed, 0xdf, 0xf3, 0xb6, 0xff, 0xbf,
-0xd6, 0xc3, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xfe, 0x25, 0xff, 0xcf, 0xdf,
-0xff, 0x7c, 0xfd, 0xff, 0x7f, 0xf7, 0xf6, 0xfb,
-0xfa, 0x77, 0x54, 0xff, 0xff, 0x7f, 0x7f, 0xf7,
-0xdf, 0x7f, 0xd3, 0xff, 0xfb, 0xff, 0x3f, 0xfe,
-0xff, 0xff, 0xef, 0x7f, 0xff, 0xbd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0xff, 0x3b, 0xff, 0xbf,
-0xec, 0xff, 0xfa, 0xff, 0xfb, 0xef, 0xf7, 0xff,
-0xbb, 0xbf, 0xff, 0xd7, 0xee, 0xfd, 0xff, 0xfd,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xfe, 0xdf, 0x3f,
-0xff, 0xfb, 0xff, 0x7f, 0xef, 0x7c, 0x8f, 0xa7,
-0x3b, 0x5a, 0x7e, 0x37, 0x8f, 0xc3, 0xf1, 0x77,
-0x1f, 0xdf, 0xff, 0xf3, 0xff, 0xbf, 0xfb, 0xcf,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff,
-0x15, 0xff, 0xff, 0xdf, 0xfb, 0xfa, 0xfd, 0xf7,
-0x9e, 0xfe, 0xfe, 0xdd, 0xef, 0xdf, 0xff, 0xff,
-0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xee, 0xf6,
-0xf7, 0xff, 0xff, 0xff, 0xd7, 0xdf, 0xff, 0xff,
-0xef, 0x64, 0xff, 0xbf, 0xef, 0xfb, 0xfb, 0xf3,
-0xf3, 0xfc, 0xf7, 0xee, 0xef, 0xff, 0x7e, 0xfe,
-0xb5, 0xfd, 0x6b, 0xfd, 0xff, 0x7d, 0xe7, 0xf7,
-0xff, 0xcf, 0xff, 0xbf, 0xdf, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xbf,
-0xed, 0x7f, 0xef, 0xff, 0xf2, 0x7d, 0x6b, 0x7f,
-0xd3, 0xb7, 0xfd, 0x7f, 0x5b, 0xf5, 0x3d, 0xff,
-0x4b, 0xdb, 0xf5, 0xf7, 0xb7, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xff, 0x93, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xdf, 0x7f, 0xcf, 0xaf, 0xfd,
-0xfb, 0x2f, 0xef, 0xb7, 0xfd, 0x6e, 0xd7, 0xfd,
-0xef, 0xff, 0xfb, 0xbf, 0xff, 0x7f, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xf1, 0x7f, 0xdf,
-0xff, 0xfd, 0xbd, 0x6b, 0xff, 0xff, 0xfe, 0xaf,
-0xe7, 0xfc, 0xf6, 0x3b, 0x9f, 0x33, 0xf8, 0x3f,
-0xcf, 0xf3, 0xb4, 0xef, 0xbd, 0x7f, 0xff, 0x77,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xaf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xfb, 0xff,
-0xfe, 0xee, 0xff, 0xf7, 0x4d, 0x7b, 0xff, 0xdf,
-0x9d, 0xf7, 0x7f, 0xd6, 0x77, 0xfb, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfe,
-0xd1, 0xff, 0xfe, 0xaf, 0xbf, 0xfd, 0xb7, 0xff,
-0xdf, 0x3e, 0x5e, 0x97, 0x79, 0xff, 0xfe, 0xdf,
-0xa3, 0x1e, 0x7b, 0x9c, 0xa3, 0x78, 0xdb, 0xa7,
-0xd9, 0xff, 0x7f, 0xdb, 0xf7, 0xff, 0xff, 0xff,
-0xf7, 0xbe, 0x9f, 0xff, 0xef, 0xfd, 0xf8, 0xff,
-0xf9, 0xff, 0xef, 0xf9, 0x7e, 0xdd, 0xd7, 0xaf,
-0x3f, 0x6f, 0xdf, 0xfd, 0xb3, 0x7c, 0xff, 0x3f,
-0xf9, 0xda, 0x7f, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xff, 0xfe, 0x87, 0xef, 0xff, 0xff, 0xff,
-0x7f, 0x7f, 0xfd, 0xf3, 0xff, 0x5f, 0xbf, 0x9f,
-0xff, 0xfd, 0xff, 0x7f, 0xf7, 0xff, 0x5e, 0xdf,
-0xf7, 0xff, 0xfc, 0xff, 0xf7, 0xff, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xbe, 0xe4, 0xbf, 0xff, 0x35,
-0xc9, 0xf5, 0xfd, 0x1f, 0x35, 0xcf, 0xf3, 0xfd,
-0xff, 0xff, 0xfd, 0x7f, 0xff, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0x1f,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0a, 0xff,
-0xf7, 0xff, 0x3f, 0xfe, 0xf9, 0xfe, 0xac, 0xfe,
-0xfd, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xf7, 0xff, 0xff,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xcb,
-0xdf, 0x4b, 0xd2, 0xa6, 0xbc, 0xff, 0x3e, 0xd7,
-0xfe, 0xff, 0xfe, 0x77, 0x9d, 0x73, 0x5f, 0xde,
-0x7d, 0xf5, 0x7d, 0x5f, 0x57, 0xce, 0xf5, 0xff,
-0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xf9, 0x6f, 0xfd, 0x79, 0x5e, 0x57, 0x9f, 0xcf,
-0xf9, 0xff, 0xdf, 0x37, 0xcf, 0xf3, 0xfe, 0x7b,
-0x9f, 0xcf, 0xfe, 0x7f, 0x9f, 0xcf, 0xfb, 0x3e,
-0x5f, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x9f, 0xef, 0xfd, 0xfe, 0xed, 0xff, 0xfe, 0xde,
-0x7f, 0xcd, 0xfb, 0x7f, 0xd7, 0xdf, 0xfd, 0x7d,
-0xad, 0xb7, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xc5, 0xbf, 0xff, 0x7f, 0xdf,
-0xf7, 0xfb, 0xfd, 0x7f, 0xba, 0x77, 0x9d, 0xaf,
-0xff, 0xee, 0xfb, 0xff, 0xff, 0xfe, 0xfb, 0xbf,
-0xef, 0xa9, 0xde, 0x76, 0x3d, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xdb, 0x9f, 0xfe, 0xbd,
-0xaf, 0xeb, 0xfb, 0xf5, 0xff, 0xff, 0x4b, 0x8a,
-0xf7, 0x7d, 0xdd, 0x17, 0xfd, 0xff, 0xdf, 0xb7,
-0xed, 0xe3, 0x7d, 0x2f, 0x2b, 0x9a, 0xe7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x47, 0xff,
-0xd7, 0x85, 0xfd, 0x73, 0xfe, 0xbf, 0xff, 0xed,
-0xfb, 0x5c, 0x7f, 0x9f, 0xeb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0xff, 0xa6, 0xe5, 0x7a, 0x5c,
-0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0x6c,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xb7, 0xff,
-0xde, 0xff, 0xbf, 0x9e, 0xeb, 0xbb, 0xee, 0x7b,
-0xbf, 0xbb, 0xee, 0xfb, 0xbe, 0xef, 0xda, 0x7e,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xec, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xf9, 0xf7, 0xbf, 0xaf,
-0xef, 0xde, 0xfd, 0xef, 0xeb, 0xd8, 0xfe, 0x3f,
-0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xc9, 0xff, 0x5b, 0xfe, 0xdf, 0xbf,
-0xe6, 0xdb, 0xf6, 0x75, 0xbd, 0x6f, 0x5b, 0xd6,
-0xf1, 0xbb, 0xef, 0xde, 0xfd, 0xbe, 0x6f, 0xdb,
-0xd6, 0x7f, 0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbf,
-0xef, 0xfb, 0xff, 0xea, 0x6f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf3, 0xfc, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xff, 0xbf, 0xef, 0xf3, 0xff, 0x3f, 0xcf,
-0xdb, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0x8f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xef, 0xfb,
-0xfe, 0xef, 0x7b, 0xde, 0xfb, 0xbb, 0xfb, 0xbe,
-0xef, 0xbb, 0xef, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xff,
-0xfd, 0xfd, 0x7f, 0xdf, 0xf9, 0xbf, 0xfd, 0x9f,
-0xdf, 0xf7, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0x1b, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
-0x3f, 0xfe, 0xdf, 0xa7, 0xd9, 0xff, 0xf6, 0xdf,
-0xef, 0xe9, 0xf2, 0x7f, 0xeb, 0xfb, 0xfe, 0xff,
-0xa7, 0xfa, 0x7e, 0xff, 0xaf, 0xef, 0xaf, 0xe9,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe3, 0xff, 0xf7, 0xf5, 0xff, 0x7f, 0x6f,
-0xff, 0x77, 0xfb, 0x7f, 0xde, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xfb, 0xff, 0xff, 0xbd,
-0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0xff, 0xfb, 0xf8, 0xbe, 0x6f,
-0x8f, 0xe3, 0xf9, 0x9e, 0x3f, 0x1b, 0xc7, 0xf9,
-0xfe, 0x7f, 0x9f, 0xe7, 0xfe, 0x7f, 0x9f, 0xe7,
-0xf8, 0xfa, 0x6f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xff, 0xdf, 0xff, 0xc7, 0xff,
-0xfd, 0xff, 0xff, 0xef, 0xf1, 0xfc, 0x6b, 0x3e,
-0xe7, 0xfb, 0xfe, 0xff, 0xbf, 0xff, 0xfe, 0xfb,
-0x9f, 0xe7, 0xf7, 0x7c, 0x7f, 0x9f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xef,
-0xef, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xb7, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xfa, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x7f,
-0xff, 0x7f, 0xff, 0xf7, 0xf7, 0xff, 0xbf, 0xdf,
-0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xfe, 0xfe,
-0xff, 0xfb, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x6f, 0xff, 0xb6, 0xff, 0xfe, 0x7e, 0xff, 0xf7,
-0xfd, 0xff, 0x7f, 0xdf, 0xfd, 0xff, 0x7f, 0xdf,
-0xf7, 0xff, 0x7f, 0xd7, 0xf7, 0xfd, 0xed, 0xbf,
-0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xdd,
-0xf4, 0x7d, 0xff, 0xcf, 0xdb, 0xfe, 0xfc, 0xbf,
-0xcf, 0xf3, 0xfe, 0xbf, 0xaf, 0xeb, 0xbc, 0xfd,
-0x3f, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xaf, 0xff, 0xe9, 0xfa, 0xbe,
-0xaf, 0xa7, 0x6b, 0xb8, 0xfe, 0x9b, 0xa7, 0xe9,
-0xba, 0xfe, 0xbf, 0xab, 0x78, 0xfe, 0xaf, 0xa7,
-0xe8, 0xb8, 0xae, 0xbf, 0xad, 0xeb, 0xfa, 0xfe,
-0xbf, 0xaf, 0xeb, 0xfd, 0x27, 0xff, 0xf3, 0xff,
-0xf7, 0xf7, 0xbf, 0xf3, 0xed, 0xfb, 0xdf, 0x7f,
-0x9f, 0xff, 0xf7, 0xff, 0xe7, 0xff, 0xbb, 0x3f,
-0xfd, 0xff, 0x7e, 0xbd, 0xff, 0xf7, 0xfb, 0xff,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x7f, 0xee,
-0xfd, 0xff, 0x7e, 0xfe, 0xba, 0xef, 0xfd, 0xff,
-0x7d, 0x9f, 0xed, 0xf1, 0xfe, 0xef, 0x7d, 0xdf,
-0xff, 0xdf, 0x57, 0xfd, 0x7f, 0xfa, 0xdf, 0xfd,
-0xff, 0xff, 0xfd, 0xdf, 0xf7, 0xff, 0xfb, 0x57,
-0xff, 0x7f, 0xbb, 0xef, 0xfb, 0xfe, 0xfb, 0xf7,
-0xbe, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xbf, 0xba,
-0x7f, 0x64, 0xbf, 0xf5, 0xf7, 0xfe, 0xff, 0xbf,
-0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x93, 0xff, 0xff, 0xdb, 0xd7, 0xf5, 0xff, 0x6f,
-0xf2, 0xd2, 0x9c, 0xaf, 0xe9, 0xea, 0xfe, 0x9f,
-0xaf, 0xfa, 0xfe, 0x9e, 0xaf, 0x6b, 0xfe, 0xb6,
-0xbf, 0xfe, 0x7f, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xdf, 0xf7, 0x7f, 0xfb, 0xff, 0xef, 0x7f, 0xff,
-0xff, 0xbf, 0xde, 0xdb, 0x75, 0xae, 0xbf, 0xaf,
-0x6b, 0x9a, 0x6f, 0xae, 0xeb, 0xfa, 0xfe, 0xbe,
-0xff, 0xf7, 0xaf, 0xff, 0xff, 0xf7, 0x7f, 0xff,
-0xff, 0xff, 0xfe, 0xaf, 0xff, 0xfe, 0xff, 0x7e,
-0xff, 0xfb, 0x4f, 0xad, 0x7c, 0xff, 0xfb, 0xef,
-0xff, 0x9f, 0xef, 0xff, 0x9a, 0x3f, 0xf7, 0x3f,
-0xff, 0xe3, 0xfb, 0xef, 0xfb, 0xfe, 0xff, 0xbf,
-0xef, 0xff, 0xfb, 0xff, 0xc1, 0xff, 0xfe, 0xff,
-0xff, 0x2e, 0xdb, 0xf6, 0xfb, 0xfe, 0x5c, 0xd3,
-0xf5, 0xbf, 0xfb, 0x7f, 0xff, 0xf4, 0xfe, 0xfb,
-0xd6, 0xf7, 0x7d, 0x7f, 0xfe, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xdf, 0xfc, 0xb7, 0xff,
-0xf7, 0xf9, 0xef, 0x7b, 0xff, 0xb5, 0xfe, 0xdf,
-0xff, 0xed, 0xdf, 0xfc, 0xfb, 0xcf, 0xbe, 0xbd,
-0xff, 0xff, 0xff, 0xbd, 0xf9, 0x7f, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xf7, 0xff, 0x57,
-0xfd, 0xcf, 0xf3, 0x48, 0xf3, 0x2d, 0xcd, 0xf3,
-0xff, 0xbf, 0x4f, 0xcf, 0xef, 0xe8, 0xf7, 0xff,
-0x5b, 0xff, 0xbf, 0xaf, 0xef, 0x7a, 0xdf, 0xff,
-0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xe6, 0xef, 0x7d, 0xbf, 0x7f, 0xdf, 0x97, 0xe5,
-0xfd, 0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xdf,
-0xff, 0xdb, 0xbf, 0xfe, 0xfb, 0x8d, 0xf9, 0xbf,
-0xff, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x5f, 0xfe, 0xb7, 0xef, 0xe1, 0xd6,
-0xf3, 0xbe, 0xef, 0xbd, 0xbf, 0x2b, 0x9e, 0xb7,
-0xe8, 0xcb, 0x7f, 0xd7, 0xad, 0xeb, 0x6f, 0xfc,
-0xff, 0x25, 0xfe, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xfd, 0xff, 0xfb, 0xd9, 0xff, 0xfe, 0x77, 0xff,
-0xff, 0xff, 0xff, 0x67, 0x5b, 0x7e, 0xe7, 0xd7,
-0x3f, 0xfe, 0x37, 0xde, 0xff, 0xdf, 0xbf, 0xeb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xa2, 0x7f, 0xff, 0xd7,
-0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5,
-0xff, 0xff, 0x73, 0xbe, 0xbf, 0xff, 0xff, 0xcf,
-0xf3, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x41, 0xff,
-0xbf, 0x3f, 0xd7, 0xff, 0xfc, 0xf3, 0xff, 0xff,
-0x7e, 0xc9, 0xb3, 0xfc, 0xff, 0xf3, 0xcc, 0xfc,
-0x4f, 0x3f, 0xcd, 0x7f, 0x3c, 0xff, 0x27, 0xc7,
-0xff, 0x2c, 0x7f, 0xff, 0xff, 0xf1, 0xff, 0x65,
-0xaf, 0x97, 0xff, 0xfa, 0xff, 0xff, 0x97, 0x7f,
-0xff, 0xff, 0xc3, 0x37, 0x3e, 0xcf, 0xff, 0xff,
-0xff, 0xf3, 0xff, 0xf5, 0x9f, 0xe7, 0xda, 0x3f,
-0xff, 0xf3, 0x8d, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0x59, 0x35, 0xfe, 0xff, 0xff, 0x3f, 0xff, 0xf3,
-0xf9, 0xef, 0xff, 0x7a, 0xd2, 0xbd, 0x6f, 0x5f,
-0xcf, 0x9f, 0xe1, 0xfe, 0xff, 0xf2, 0xd9, 0xef,
-0xfe, 0x7f, 0xbf, 0xbf, 0xbb, 0xff, 0xff, 0xff,
-0xf9, 0xef, 0x36, 0xff, 0xdf, 0xff, 0xcf, 0xff,
-0xfe, 0xff, 0x3d, 0xed, 0xff, 0x5f, 0xc7, 0xbd,
-0xcd, 0xf9, 0xfe, 0xf3, 0xff, 0xff, 0xde, 0xdb,
-0xb3, 0xef, 0xff, 0xff, 0xdf, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0x9f, 0x7a, 0x3f, 0xfb, 0xdf, 0xf7,
-0xb6, 0xd9, 0x26, 0x7d, 0x9c, 0x7f, 0x5f, 0xf2,
-0x71, 0xfd, 0x75, 0xff, 0xee, 0xcf, 0xff, 0xff,
-0xea, 0x5a, 0xda, 0x6f, 0x5f, 0xfe, 0xfe, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf9, 0x5b, 0xfa, 0x77,
-0xff, 0xf6, 0xff, 0xbf, 0x4d, 0x3b, 0xff, 0x7d,
-0xd4, 0x75, 0xbd, 0x66, 0xdb, 0xdf, 0xdd, 0x6f,
-0xff, 0xda, 0x4f, 0xdd, 0xf7, 0x5b, 0xff, 0x77,
-0x9d, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xa3, 0x7f,
-0xef, 0xff, 0xff, 0xbf, 0xaf, 0x7f, 0xfe, 0xfe,
-0xf7, 0xff, 0xeb, 0xd7, 0xd5, 0xff, 0xaf, 0x7a,
-0xf7, 0xfd, 0x7d, 0xea, 0xfa, 0xfe, 0xf7, 0xff,
-0xfb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
-0x7f, 0xfd, 0xdf, 0xf7, 0xdf, 0xf7, 0x77, 0xff,
-0xff, 0xdf, 0x37, 0xfd, 0x3a, 0xfe, 0x99, 0xf5,
-0xf6, 0x6e, 0x7f, 0xff, 0xfd, 0x7f, 0x6e, 0xf7,
-0xff, 0xfd, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x07, 0xfb, 0x75, 0xfd, 0x7f, 0x7f, 0xd3,
-0xf6, 0x7d, 0xff, 0xed, 0xfb, 0xf7, 0xff, 0xb7,
-0x47, 0xfb, 0xdd, 0xaf, 0xe7, 0xfb, 0x74, 0x7d,
-0xa7, 0xff, 0xf9, 0xff, 0xff, 0xb7, 0xff, 0xff,
-0xff, 0xff, 0x9d, 0xbf, 0x9e, 0x7f, 0x9f, 0xf7,
-0xff, 0xaf, 0x7f, 0xdf, 0xfe, 0x7f, 0xef, 0xff,
-0xf9, 0xfe, 0x7f, 0xaf, 0xfa, 0xfe, 0x7f, 0xbf,
-0x67, 0xfb, 0xfe, 0xff, 0x9f, 0xff, 0xf9, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0x9f, 0xe7,
-0xf8, 0xfe, 0x6f, 0x8f, 0x63, 0xdb, 0xf6, 0xfd,
-0x9f, 0x6f, 0xd9, 0xd6, 0xe5, 0xe7, 0xbb, 0xfe,
-0xef, 0x9f, 0xe6, 0xdb, 0xee, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xff, 0xbf, 0xfa, 0xe7, 0xff, 0xfe,
-0xff, 0xbb, 0xef, 0xff, 0xfe, 0x6f, 0xb3, 0xfc,
-0xfd, 0xff, 0xcf, 0xdb, 0xfe, 0xff, 0xbf, 0xfb,
-0xff, 0xff, 0xfe, 0xff, 0xdb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6a, 0xff,
-0xff, 0xbf, 0xed, 0xff, 0xff, 0xff, 0xf7, 0xfd,
-0xff, 0xbf, 0xff, 0xfb, 0xfe, 0xfe, 0xff, 0xef,
-0xfb, 0xff, 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0x5f, 0xff, 0xe7, 0xfb, 0xb6, 0x7f, 0x9f, 0x47,
-0xf3, 0xfd, 0xfd, 0x7f, 0x47, 0xd7, 0xfc, 0xff,
-0x7f, 0xb3, 0xfd, 0xfd, 0xfe, 0xe7, 0xd1, 0xfd,
-0xf9, 0x7e, 0x5f, 0xd7, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xb3, 0xfd, 0xfe, 0xff, 0xbf, 0xef, 0xfb,
-0xea, 0xdb, 0xbe, 0x9f, 0x37, 0xeb, 0xfb, 0x7e,
-0xaf, 0xa7, 0xda, 0xf6, 0x9f, 0xb7, 0x5c, 0xfa,
-0xfe, 0xdf, 0xa7, 0xe9, 0xfa, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xf2, 0x3f, 0xdf, 0xff, 0xff, 0xdf,
-0xff, 0x6f, 0xff, 0xdf, 0xff, 0xf7, 0xfd, 0x7b,
-0x7e, 0xf7, 0xbd, 0xfe, 0xdf, 0xf7, 0x6f, 0xff,
-0xb7, 0xd7, 0xff, 0xbf, 0xfd, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xaf, 0xff, 0xf7, 0x1f,
-0xa7, 0x79, 0xfe, 0x77, 0x8f, 0xe7, 0xf8, 0xfe,
-0x27, 0x0f, 0xe2, 0xf9, 0xbe, 0x6f, 0xe6, 0xe9,
-0xfe, 0x7f, 0x9b, 0xc7, 0xf1, 0xfe, 0x2f, 0x9f,
-0xa7, 0xf9, 0xfe, 0x7f, 0x9f, 0xf9, 0xfe, 0xfe,
-0xfb, 0xff, 0x7f, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xd3, 0xfc, 0x79, 0x1f, 0xcf, 0xf1, 0xff, 0x3f,
-0xc5, 0xfb, 0xfe, 0xff, 0x7a, 0xde, 0x93, 0xff,
-0xfd, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xbf,
-0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xff, 0xff, 0xbf, 0xeb, 0xfb, 0xff,
-0xa7, 0xeb, 0xef, 0x7f, 0xff, 0xef, 0xff, 0xfa,
-0x7f, 0xff, 0xae, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0x77, 0xff, 0xfb, 0xbf, 0xdd, 0xff, 0x4f, 0xff,
-0xff, 0xff, 0xff, 0x6f, 0xf7, 0xb7, 0xff, 0x3f,
-0xff, 0xed, 0xff, 0x7f, 0xff, 0xf3, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf2, 0xd7, 0xff, 0xdf, 0xf3, 0xfd, 0xe9,
-0x7f, 0xdf, 0xf7, 0xff, 0xed, 0xff, 0x7e, 0xdf,
-0xb5, 0xfd, 0xfe, 0xdf, 0xe6, 0xfd, 0xfb, 0xdf,
-0x9d, 0xff, 0x7d, 0xff, 0xff, 0xdb, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0x4a, 0xff, 0x4f, 0xff, 0xbc,
-0xfd, 0x3f, 0xef, 0xd1, 0xfe, 0xfc, 0xbf, 0x7f,
-0xd3, 0xfc, 0xff, 0xff, 0xc8, 0xff, 0xff, 0x9f,
-0xcf, 0xdb, 0xff, 0xff, 0xdf, 0xff, 0xd1, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xab, 0xbf, 0xde, 0xbf,
-0xa5, 0xe9, 0xda, 0xfe, 0x8d, 0xab, 0xea, 0xfa,
-0xae, 0x8d, 0xa3, 0xe3, 0xfa, 0xf7, 0xaf, 0xe8,
-0xfa, 0xfc, 0x8d, 0xa7, 0xea, 0xfa, 0xfe, 0xad,
-0xaf, 0xeb, 0xfa, 0xde, 0xbf, 0xf0, 0x7f, 0xbe,
-0x3e, 0xcb, 0xff, 0xed, 0xbd, 0x3f, 0xce, 0xdf,
-0x78, 0xcf, 0x1f, 0xef, 0xfb, 0xff, 0xff, 0xbf,
-0xff, 0x74, 0xdf, 0x3f, 0x5f, 0xbf, 0xdf, 0xdb,
-0xff, 0xdf, 0xff, 0xff, 0xff, 0x3f, 0xff, 0x07,
-0xff, 0xde, 0xef, 0x7f, 0xc7, 0xff, 0x4e, 0xcb,
-0xbf, 0xec, 0xff, 0x4e, 0xd6, 0xbb, 0xf5, 0xdf,
-0x7f, 0xf7, 0x74, 0xad, 0xff, 0xdd, 0xff, 0xfd,
-0xff, 0xff, 0x7f, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xa5, 0xff, 0xfb, 0xea, 0xff, 0xff, 0xef, 0xbf,
-0xbf, 0xef, 0xfb, 0xef, 0xff, 0x3f, 0xee, 0xfa,
-0xbb, 0xe7, 0xef, 0xfd, 0xfe, 0xe3, 0xdb, 0x77,
-0xfd, 0xbf, 0x7f, 0xff, 0x7d, 0xf7, 0x7d, 0xd5,
-0x7f, 0xf8, 0x9f, 0xff, 0xfb, 0xff, 0xbe, 0xdb,
-0xff, 0xbf, 0xaf, 0xf9, 0xdf, 0x7e, 0x9d, 0xff,
-0xe7, 0xfa, 0xff, 0x77, 0x3f, 0xde, 0xde, 0x37,
-0xad, 0x67, 0xff, 0xfc, 0x7f, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xee, 0xdf, 0xfe, 0xdd, 0xff, 0xff, 0xb6,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xfe, 0x7e,
-0xef, 0xd5, 0xff, 0xf9, 0xff, 0xfd, 0x7f, 0xf7,
-0xef, 0xff, 0x7f, 0xff, 0xd0, 0x7f, 0xff, 0xef,
-0xd7, 0xed, 0xf3, 0xff, 0xfe, 0xfd, 0xef, 0xfb,
-0xb0, 0xdf, 0x3b, 0xff, 0xef, 0xff, 0xff, 0x7e,
-0xff, 0xff, 0xef, 0xfa, 0xee, 0xfd, 0x7f, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xdf, 0xff,
-0x7f, 0xff, 0xf3, 0xed, 0x7f, 0xff, 0xde, 0xe3,
-0xfc, 0xbf, 0xf7, 0xff, 0xff, 0xdd, 0x3f, 0x56,
-0xe5, 0xfd, 0xbf, 0x4f, 0xdb, 0xf2, 0xfd, 0xff,
-0x56, 0xdf, 0x7f, 0xff, 0xff, 0xfb, 0xff, 0x02,
-0xff, 0xfb, 0xff, 0xde, 0xff, 0xfe, 0x7f, 0xfb,
-0xf6, 0xe7, 0xeb, 0xdf, 0xdf, 0xdf, 0xfb, 0xfb,
-0xaf, 0xff, 0xff, 0xed, 0xfe, 0x1e, 0xea, 0xff,
-0x6f, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x74, 0x7f, 0x9f, 0xff, 0x5d, 0xff, 0x30, 0xfe,
-0xfe, 0xff, 0x8f, 0xe3, 0xee, 0xdd, 0xff, 0xce,
-0xfa, 0x75, 0x3f, 0x4f, 0xf3, 0x7c, 0xff, 0x3f,
-0xcf, 0xf3, 0xfc, 0xff, 0x3f, 0xff, 0xff, 0xff,
-0xf7, 0xf4, 0xef, 0xff, 0xff, 0xbf, 0xff, 0xf9,
-0xbf, 0x5f, 0x7f, 0xbd, 0xbf, 0x7f, 0xef, 0xbf,
-0xe3, 0x7f, 0xdd, 0xb7, 0xde, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xe7, 0xbf, 0xef, 0xfa, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xd5, 0xff, 0xed, 0xbf, 0xb2,
-0xed, 0xff, 0xbf, 0xd3, 0x7b, 0x1c, 0xa7, 0x7f,
-0xdd, 0x77, 0xdf, 0xbf, 0xfe, 0x67, 0x9f, 0xa7,
-0xe9, 0xfa, 0x6a, 0x8f, 0xe7, 0x39, 0xfa, 0x7f,
-0xff, 0xff, 0xff, 0xf7, 0xb8, 0x1f, 0xff, 0x7f,
-0xfd, 0xff, 0x7f, 0xfb, 0xb7, 0xcf, 0xfb, 0xfc,
-0xfd, 0xbf, 0xef, 0xff, 0xff, 0xfb, 0xef, 0x73,
-0x3c, 0x4f, 0x37, 0xc7, 0xf3, 0x7c, 0xdf, 0x37,
-0xcf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xa7, 0xff,
-0xfd, 0xef, 0x7f, 0xff, 0xf7, 0xee, 0xfd, 0xff,
-0x7f, 0xd5, 0xef, 0xfb, 0x7d, 0xff, 0xff, 0xf3,
-0x7e, 0xf7, 0xbf, 0xef, 0xfb, 0xfe, 0xfb, 0xbf,
-0xef, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea,
-0xb7, 0xff, 0xff, 0xcd, 0x77, 0x5c, 0xcf, 0x27,
-0xcf, 0xff, 0xfc, 0x7b, 0x1f, 0xcf, 0xf3, 0xfd,
-0xfe, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff,
-0x3f, 0xff, 0xdf, 0xff, 0xbf, 0xef, 0xfb, 0xff,
-0xf1, 0x1b, 0xff, 0xff, 0xfd, 0xaf, 0xff, 0xb3,
-0xfe, 0x7e, 0xf3, 0xeb, 0xff, 0x3f, 0xfc, 0xf9,
-0x7f, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xcf, 0xff, 0xff, 0xff, 0xf7, 0xfd, 0xff,
-0x7f, 0xf5, 0xd3, 0xff, 0xff, 0x52, 0xd3, 0xfc,
-0xff, 0xfe, 0xcf, 0xbe, 0xbd, 0x7b, 0x3e, 0xce,
-0xe6, 0xb5, 0x7d, 0xff, 0xe7, 0x79, 0xdf, 0x37,
-0x9d, 0xe7, 0x7d, 0x5f, 0x57, 0x9d, 0xfe, 0xff,
-0xbf, 0xef, 0xfe, 0xfa, 0x2d, 0xff, 0xff, 0x5c,
-0xdf, 0xb7, 0xff, 0xfb, 0xfc, 0xdf, 0x3f, 0xef,
-0xfb, 0x7c, 0xd7, 0xf7, 0xcf, 0xfc, 0xff, 0x3f,
-0xef, 0xf3, 0xfc, 0xff, 0x3f, 0xef, 0xf3, 0xff,
-0xdf, 0xf7, 0xfd, 0xff, 0xf6, 0x47, 0xff, 0xaf,
-0xff, 0xff, 0xf1, 0xdf, 0xff, 0xbf, 0xfa, 0xdd,
-0xde, 0x7f, 0x8f, 0xb6, 0xfd, 0xff, 0x6d, 0xff,
-0xff, 0xfc, 0x7f, 0x5f, 0xd7, 0xd5, 0xf6, 0xff,
-0xff, 0x7b, 0xfe, 0xff, 0xbf, 0xff, 0xc8, 0xbf,
-0xf5, 0x7f, 0xdf, 0xf7, 0xff, 0xef, 0xff, 0xdf,
-0x7b, 0x5b, 0xdf, 0x51, 0xda, 0x55, 0x3d, 0x4f,
-0x3f, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xfb, 0xbe,
-0xef, 0xfb, 0xea, 0x77, 0xdd, 0xf7, 0x7f, 0xd9,
-0x1f, 0xfe, 0xbf, 0xaf, 0xef, 0xff, 0xfb, 0xff,
-0xaf, 0x6b, 0xfb, 0xff, 0xff, 0xaf, 0x6b, 0xfb,
-0xf7, 0xfd, 0xf7, 0x6d, 0xfb, 0x7e, 0xdf, 0x37,
-0xed, 0xfb, 0x7e, 0xdf, 0xef, 0xfb, 0xfe, 0xff,
-0xfe, 0xf3, 0xff, 0xd7, 0x35, 0xfd, 0xf3, 0xff,
-0xff, 0xf5, 0xc5, 0xff, 0x6f, 0xff, 0xf7, 0xe1,
-0x7f, 0x7f, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xe3, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f,
-0xdf, 0xff, 0xe4, 0xff, 0xb7, 0xff, 0xff, 0xff,
-0xff, 0xb7, 0xff, 0xff, 0xfd, 0xfd, 0xb7, 0xff,
-0xfb, 0x7e, 0x7f, 0xff, 0xdf, 0xee, 0xfb, 0xbe,
-0xef, 0xbb, 0xee, 0x7b, 0xfe, 0xe7, 0xbb, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xdf, 0xf9, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xdb,
-0xff, 0xff, 0xbf, 0xff, 0xfb, 0xfd, 0xbf, 0x6b,
-0xd8, 0xf6, 0x3d, 0xef, 0xe7, 0xff, 0xf6, 0x7f,
-0xef, 0xe7, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xfb,
-0xfe, 0xfd, 0xbf, 0xef, 0x5b, 0xfe, 0xf5, 0xbe,
-0xe2, 0xfb, 0xd6, 0xf9, 0xbd, 0x6f, 0x1e, 0x2d,
-0xbe, 0x6f, 0xdb, 0xd6, 0xff, 0xbf, 0x6f, 0xdb,
-0xf6, 0xff, 0xbf, 0xef, 0xfb, 0xff, 0xed, 0x6f,
-0xff, 0xff, 0xff, 0x3f, 0xff, 0xfb, 0xfe, 0xff,
-0xbe, 0xff, 0xbb, 0xfe, 0xfd, 0xbf, 0xef, 0xff,
-0xfb, 0x3f, 0xcf, 0xdb, 0xfe, 0xff, 0xbf, 0xcf,
-0xdf, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xcf, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xfe, 0xff,
-0xbf, 0xef, 0xff, 0xfe, 0xff, 0xbf, 0xef, 0xfb,
-0xff, 0xff, 0xbe, 0xef, 0xbb, 0xee, 0xfb, 0xee,
-0xef, 0xbf, 0xef, 0x7b, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xcd, 0xff, 0xfd, 0xff, 0xfe, 0x7f, 0xd3,
-0xfd, 0xfd, 0x7f, 0x5f, 0xd3, 0xf5, 0xed, 0x7f,
-0xdf, 0x9f, 0xf9, 0x3f, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x5f, 0xff,
-0xff, 0xff, 0xef, 0xbf, 0xff, 0x9f, 0xff, 0xf9,
-0xfa, 0xff, 0xdd, 0xa7, 0x6a, 0xfa, 0xbf, 0x9f,
-0xa7, 0xe9, 0xde, 0x7f, 0xab, 0xfe, 0x9f, 0xaf,
-0xeb, 0xfa, 0xfe, 0xdf, 0xb7, 0xeb, 0xfb, 0xe9,
-0xff, 0xff, 0xff, 0xff, 0x07, 0xfe, 0xf7, 0xff,
-0xed, 0xff, 0xfd, 0xff, 0x75, 0xff, 0x7f, 0xdf,
-0xd7, 0xfd, 0xcd, 0x77, 0x5f, 0xed, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfe,
-0xf9, 0xfe, 0x6f, 0x9f, 0xe7, 0xf8, 0xbe, 0x2f,
-0x8f, 0xe6, 0xf9, 0xfe, 0x2f, 0x0b, 0xe6, 0xfe,
-0x7f, 0x9f, 0xa7, 0xf9, 0xfe, 0x7f, 0x9f, 0xa7,
-0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x9f,
-0xff, 0xc7, 0xfb, 0xf5, 0xff, 0xff, 0xef, 0xf1,
-0xfd, 0xfd, 0x7f, 0x6f, 0xf1, 0xfc, 0xf9, 0xbf,
-0xf7, 0xfe, 0xff, 0xbf, 0xe7, 0xf9, 0xfe, 0xff,
-0xff, 0xef, 0xfb, 0xf5, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xfb, 0xff, 0x7e, 0xbf, 0xff, 0xfd,
-0xff, 0xff, 0xbf, 0xaf, 0xf9, 0xff, 0xfe, 0xdf,
-0xe7, 0xfa, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xbf, 0xff, 0xfe, 0xbf, 0xff, 0xff,
-0xff, 0xf0, 0x7f, 0xfb, 0x7f, 0xff, 0xd7, 0xff,
-0xff, 0xff, 0xdf, 0xf7, 0xfd, 0xfd, 0xff, 0xdf,
-0xd7, 0xb5, 0xfe, 0xdf, 0xfb, 0xfe, 0xdf, 0xff,
-0xff, 0xfb, 0xff, 0xdf, 0xbf, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x4f, 0xff, 0xe7, 0xfd, 0xfa,
-0x7f, 0xdf, 0xf7, 0xfd, 0xfe, 0xdf, 0xf7, 0xe7,
-0xfd, 0xfa, 0x76, 0x9f, 0xef, 0x7f, 0xdf, 0xf3,
-0xfd, 0xff, 0x7f, 0xdf, 0xf3, 0xfd, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xe5, 0xff, 0xff, 0xff,
-0xff, 0x2f, 0xdf, 0xff, 0xff, 0xef, 0x27, 0xeb,
-0xf2, 0xfd, 0xbf, 0xa7, 0xf3, 0xfd, 0xff, 0x4f,
-0xd3, 0xf4, 0xf5, 0x3d, 0x4f, 0xd3, 0xf4, 0xf5,
-0x3d, 0x6f, 0xdb, 0xf7, 0xff, 0xfb, 0x37, 0xf3,
-0xeb, 0xfa, 0x2e, 0xb5, 0xaf, 0xe8, 0xfa, 0xfe,
-0xbf, 0x8f, 0x6b, 0xba, 0xbe, 0xbf, 0xa7, 0x3a,
-0xee, 0xbb, 0xae, 0xeb, 0xba, 0xee, 0x8b, 0xa6,
-0xeb, 0x3a, 0xbe, 0xb3, 0xad, 0xeb, 0xfd, 0x27,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xf5, 0x3f, 0xff,
-0xee, 0xf3, 0xfb, 0xfe, 0xf4, 0xff, 0xb6, 0xff,
-0xbc, 0xdf, 0x17, 0xcd, 0x3f, 0xff, 0xeb, 0x15,
-0xfd, 0xff, 0x7d, 0xfc, 0xff, 0x7f, 0xef, 0xdf,
-0xee, 0x6f, 0xbf, 0xff, 0xff, 0x7f, 0xff, 0xaf,
-0xed, 0xff, 0x7f, 0xdf, 0x7f, 0xfb, 0x7b, 0xbe,
-0xbf, 0x9d, 0xfd, 0x2e, 0x6b, 0x9f, 0xe7, 0xff,
-0xde, 0xdf, 0xbf, 0xcb, 0xbb, 0x7f, 0xff, 0xff,
-0xff, 0xf8, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xd3, 0xfb, 0x7e, 0xff, 0xbf, 0xff, 0xff, 0xee,
-0xef, 0xbb, 0xf6, 0x57, 0xef, 0xeb, 0xfb, 0xff,
-0xff, 0xfd, 0xf7, 0xff, 0xff, 0x7f, 0x7f, 0xdf,
-0xdf, 0xf7, 0xfe, 0xe1, 0xff, 0xff, 0xff, 0x9e,
-0x9e, 0xff, 0xe4, 0xf8, 0x7a, 0x9f, 0xaf, 0xf9,
-0xde, 0x7e, 0x9f, 0xff, 0xf8, 0xfe, 0xbf, 0xaf,
-0xc8, 0xfa, 0x9e, 0xa5, 0xad, 0xcb, 0xfa, 0xed,
-0xff, 0xff, 0xbf, 0x6f, 0xf1, 0x6f, 0xff, 0xf9,
-0xfd, 0xfb, 0xff, 0xcb, 0xff, 0xbf, 0xf7, 0xd5,
-0xbf, 0xff, 0xb7, 0x57, 0xdf, 0xff, 0xbe, 0xeb,
-0xfa, 0xee, 0xb9, 0xad, 0x6b, 0xfa, 0xde, 0xbb,
-0xaf, 0xfd, 0x7f, 0xff, 0xfb, 0xfe, 0x47, 0xff,
-0xff, 0xff, 0xfa, 0x7f, 0xff, 0xef, 0xff, 0x98,
-0x77, 0xab, 0xbe, 0xfb, 0xbf, 0xff, 0xfb, 0xbb,
-0xbe, 0xff, 0xfb, 0xfe, 0xfb, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xc9,
-0x7e, 0xff, 0xff, 0xed, 0x7f, 0xff, 0xdf, 0xbf,
-0xfd, 0x7d, 0xff, 0xe7, 0xfc, 0xff, 0x6e, 0xdb,
-0xf5, 0xfe, 0x5f, 0xff, 0xfe, 0xfe, 0xf7, 0xef,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f,
-0xf8, 0xbf, 0xfb, 0xf7, 0xfb, 0xed, 0xdf, 0xd7,
-0xdd, 0xff, 0x6f, 0x7f, 0x37, 0xbf, 0xef, 0x7b,
-0xd6, 0xee, 0xe7, 0xfd, 0xff, 0xdf, 0xfd, 0x7b,
-0x7f, 0xf7, 0xff, 0xff, 0x7d, 0x7f, 0xef, 0xff,
-0xff, 0xf7, 0x07, 0xfb, 0xcf, 0xf3, 0xd5, 0x7e,
-0x17, 0xbf, 0x72, 0x7c, 0xff, 0x3d, 0xce, 0xf1,
-0xfc, 0xef, 0x2b, 0xd3, 0x9c, 0xef, 0x3f, 0xae,
-0x73, 0xfd, 0xfd, 0x3c, 0xfe, 0x7f, 0xff, 0xed,
-0xff, 0xff, 0xff, 0xfc, 0xff, 0xdd, 0xbf, 0x75,
-0xff, 0xfd, 0xbf, 0xbb, 0x7b, 0xdf, 0x97, 0x7d,
-0xbd, 0x63, 0xd9, 0xeb, 0xfa, 0x73, 0xf7, 0xed,
-0xde, 0xee, 0x7b, 0xbf, 0xf7, 0xf7, 0xdf, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xfe, 0x99, 0xfe, 0xbe,
-0xee, 0x7f, 0xfb, 0x7d, 0xff, 0xeb, 0xf1, 0xde,
-0x7a, 0xae, 0xd7, 0xfb, 0xff, 0xfa, 0xf5, 0xe9,
-0xeb, 0xfe, 0x5e, 0xff, 0xae, 0xbe, 0xdb, 0xed,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xbf,
-0x6b, 0x7a, 0xfd, 0xf6, 0xce, 0xff, 0xff, 0xff,
-0xbf, 0xe7, 0xf9, 0xee, 0xb9, 0xbf, 0xef, 0xda,
-0xf3, 0x2b, 0xff, 0xfb, 0xff, 0xef, 0xfb, 0xff,
-0xfa, 0xff, 0x9b, 0xef, 0xff, 0xff, 0xff, 0xe4,
-0x7f, 0xbf, 0xff, 0xf7, 0xff, 0xfd, 0xff, 0xdf,
-0xff, 0xf7, 0xf3, 0xff, 0x7f, 0xdf, 0xf7, 0xfb,
-0xff, 0x76, 0xef, 0xef, 0xff, 0x5f, 0xff, 0xff,
-0xff, 0xff, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xfe, 0x8f, 0x8d, 0xd5, 0xfd, 0x7f, 0xff, 0xff,
-0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xef,
-0xff, 0xbf, 0xff, 0xdf, 0xfb, 0xfb, 0xbf, 0xef,
-0xfd, 0xff, 0xe9, 0xfe, 0xde, 0xff, 0xbf, 0x7f,
-0xfd, 0xff, 0x7e, 0xff, 0xef, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xfe,
-0xff, 0xff, 0xff, 0xfd, 0xfe, 0xfd, 0x9f, 0xf7,
-0xd9, 0xfe, 0xdc, 0xee, 0x0f, 0xff, 0xd4, 0xff,
-0xfc, 0xfb, 0x3f, 0xcf, 0xbf, 0x3f, 0xff, 0xff,
-0xfc, 0xf3, 0x5f, 0xff, 0x35, 0xf1, 0xfc, 0xff,
-0xfe, 0xff, 0xf3, 0xfd, 0xff, 0xdf, 0xdf, 0xf1,
-0xff, 0xff, 0xfe, 0xff, 0xfc, 0x96, 0xbf, 0xff,
-0xaf, 0xff, 0x3f, 0xcb, 0xfd, 0xf3, 0xeb, 0xef,
-0x7c, 0xff, 0xf9, 0xcf, 0xff, 0xfc, 0xfe, 0xff,
-0xbf, 0xfe, 0x9f, 0xfe, 0xfc, 0xff, 0x7f, 0xfe,
-0xf3, 0xff, 0xff, 0xff, 0xdf, 0xfd, 0x78, 0xf7,
-0xff, 0xe6, 0xb9, 0xfd, 0x5f, 0xcb, 0xd4, 0xbf,
-0xfe, 0x6b, 0x9e, 0xd3, 0xad, 0x6f, 0x2e, 0xcf,
-0x9f, 0xbf, 0xfd, 0xfb, 0xf2, 0xbf, 0xef, 0xfb,
-0xd2, 0xff, 0xa9, 0xae, 0x6b, 0xfb, 0xff, 0xbf,
-0x9b, 0xff, 0xfc, 0xd7, 0xff, 0xff, 0xf3, 0xde,
-0x57, 0xb7, 0xcd, 0x7b, 0x7e, 0x57, 0xf7, 0xcd,
-0xff, 0xcf, 0x97, 0xfe, 0xff, 0x3c, 0xd7, 0xf7,
-0xef, 0x7f, 0x5f, 0xdf, 0xb5, 0xe5, 0x7f, 0x7f,
-0xfd, 0xfb, 0xe7, 0xfd, 0xff, 0x5f, 0xfd, 0x3e,
-0xcf, 0xd2, 0xe9, 0xf7, 0xbf, 0x0f, 0x52, 0xfc,
-0xf7, 0xef, 0x5b, 0x3f, 0x9f, 0x73, 0xed, 0xff,
-0xff, 0xbe, 0x7c, 0xdf, 0xfe, 0xf9, 0xff, 0xff,
-0xef, 0xff, 0xf6, 0x6f, 0xff, 0xff, 0xf7, 0xfd,
-0xad, 0x5b, 0x56, 0x7f, 0xfd, 0xe7, 0xf9, 0xd6,
-0x56, 0x1d, 0xa7, 0x6b, 0x75, 0x9b, 0xcf, 0xfd,
-0xdf, 0xf7, 0xdd, 0xc7, 0x6b, 0xdf, 0x77, 0x3d,
-0xff, 0x7d, 0xdf, 0xf6, 0xc7, 0xff, 0xfe, 0x6b,
-0xff, 0xff, 0xf7, 0xff, 0xeb, 0xfe, 0xba, 0xbe,
-0xab, 0xeb, 0xfa, 0xbe, 0xbf, 0xeb, 0x5a, 0xe3,
-0xfd, 0xbf, 0x7f, 0xfe, 0xf1, 0xad, 0x2f, 0x5b,
-0xea, 0xfe, 0xbf, 0xbf, 0xff, 0xb1, 0xff, 0xfe,
-0xe9, 0x1f, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0x7f,
-0xd7, 0xf7, 0xfd, 0x7f, 0x7f, 0xdf, 0xfd, 0xb9,
-0x7e, 0xbb, 0xd6, 0xc7, 0xff, 0x7c, 0xf7, 0xa5,
-0xcd, 0xff, 0x5f, 0xd7, 0xf7, 0xff, 0xf9, 0xbf,
-0xed, 0xdf, 0xf4, 0x7f, 0x9f, 0xe7, 0xfb, 0xfc,
-0x7f, 0x3f, 0xcf, 0xd3, 0x7e, 0x7d, 0x37, 0xed,
-0xf6, 0xbd, 0xbf, 0x6f, 0xdf, 0xff, 0xff, 0xff,
-0x47, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xa5, 0xfe, 0x79, 0xbe, 0xa7, 0xff, 0xfe, 0xff,
-0xaf, 0x7f, 0xf8, 0xf6, 0xb9, 0x9f, 0xe7, 0x9b,
-0xfe, 0xff, 0xe3, 0xfa, 0xff, 0xbf, 0xff, 0xff,
-0xff, 0xe7, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xee, 0x7f, 0xd6, 0x25, 0x9f, 0x6f, 0x5b,
-0xee, 0xef, 0xbf, 0xef, 0x5b, 0xc6, 0x35, 0xbf,
-0x62, 0xfb, 0x37, 0x9f, 0xe6, 0x59, 0x76, 0x7f,
-0xbf, 0xef, 0xd8, 0x7e, 0xff, 0xbb, 0xef, 0xfb,
-0xfe, 0xff, 0xf8, 0x9b, 0xff, 0xf3, 0xbf, 0xcf,
-0xfb, 0xfe, 0xff, 0xfc, 0xef, 0xbf, 0xee, 0xfb,
-0xbf, 0xcf, 0xbb, 0xf6, 0xff, 0xff, 0xfb, 0xfd,
-0xff, 0xbf, 0xff, 0xdb, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xf3, 0xff, 0xff, 0xbf,
-0xfb, 0xfe, 0xff, 0x7f, 0xff, 0xf7, 0xff, 0xff,
-0x7f, 0xef, 0xf7, 0xfb, 0xff, 0x7f, 0xff, 0xfe,
-0xff, 0xff, 0xdf, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x5f, 0xed,
-0x3f, 0xc7, 0xff, 0xef, 0xff, 0xff, 0x5e, 0xff,
-0xf5, 0xff, 0x3e, 0x5f, 0xd3, 0xfd, 0xfe, 0xc7,
-0xd1, 0xf4, 0xfd, 0x1f, 0xff, 0xd7, 0xfe, 0x6b,
-0x7e, 0x5f, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x2f,
-0xff, 0xab, 0xea, 0xff, 0x7f, 0xdf, 0xf7, 0xea,
-0x9b, 0xbe, 0xab, 0x23, 0x69, 0xf2, 0x3e, 0x9f,
-0xeb, 0xfe, 0x7e, 0xbd, 0xaf, 0xfd, 0xf2, 0x7f,
-0x8f, 0xe7, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xf5, 0xed, 0x7f, 0xfd, 0xff, 0xff,
-0xdd, 0x7f, 0xff, 0xf7, 0xfd, 0xfd, 0x7f, 0xde,
-0xf7, 0xfb, 0x7e, 0x74, 0xd7, 0xf5, 0xff, 0xff,
-0x5e, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf1, 0x3d, 0xff, 0xbe, 0x27, 0x9f, 0xc7,
-0xf9, 0xfc, 0x2f, 0x9f, 0xa2, 0xf9, 0xba, 0x6e,
-0x9f, 0xc6, 0xf1, 0xb7, 0x0b, 0xe2, 0xf8, 0x9e,
-0x7e, 0x8b, 0xe6, 0xf9, 0xbe, 0x7f, 0x9f, 0xe7,
-0xf9, 0xfe, 0x7f, 0x97, 0xfb, 0xd7, 0xf5, 0xff,
-0xfa, 0xef, 0xdf, 0xe5, 0xff, 0x7f, 0xdf, 0xf7,
-0xf4, 0xff, 0x7a, 0xcf, 0xbd, 0xe9, 0xbf, 0xcf,
-0xf1, 0xfc, 0xff, 0xbf, 0x4f, 0xf3, 0xf4, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xfe, 0xff,
-0xbf, 0xff, 0xff, 0xfa, 0xfe, 0xbf, 0xbf, 0xaf,
-0xfb, 0xeb, 0x9e, 0xff, 0xed, 0xfe, 0xbf, 0xaf,
-0xed, 0xff, 0xfe, 0xfa, 0xf7, 0xeb, 0xfe, 0xfe,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdf, 0xff,
-0x5f, 0xd7, 0xf7, 0xfd, 0xbf, 0xfe, 0xff, 0xff,
-0xdf, 0x7f, 0xff, 0xd7, 0x7d, 0xff, 0xfb, 0xb7,
-0xf4, 0xff, 0xff, 0xdf, 0xf3, 0xff, 0xff, 0x3f,
-0xcf, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
-0xff, 0xeb, 0x7a, 0x5f, 0xbf, 0xf7, 0xff, 0xdf,
-0xdf, 0xf3, 0xbd, 0xff, 0x3e, 0x7f, 0xf7, 0xf7,
-0xfb, 0xfe, 0x9f, 0xf7, 0xfd, 0xfb, 0x6f, 0xdf,
-0xbd, 0xf9, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0x7f, 0xf7, 0xff, 0xfb, 0xdb, 0xff, 0xf7,
-0xff, 0xcf, 0xda, 0xb7, 0xf5, 0xab, 0xcf, 0xfb,
-0xd7, 0xff, 0x77, 0xd3, 0xff, 0xf5, 0x3d, 0xff,
-0xfe, 0xf2, 0xff, 0xff, 0xfe, 0xff, 0xbf, 0xfc,
-0xbf, 0xfe, 0x0e, 0xfa, 0xfa, 0xfe, 0xad, 0xab,
-0xe1, 0xfa, 0x7e, 0xbb, 0xaa, 0xeb, 0xba, 0xfe,
-0x1f, 0x22, 0xe9, 0x5e, 0x3d, 0xab, 0xeb, 0xfa,
-0xde, 0xbf, 0xac, 0xeb, 0xf8, 0xde, 0xbf, 0xab,
-0xeb, 0xfa, 0xdf, 0x71, 0xbe, 0xff, 0xdf, 0xf7,
-0x7c, 0x71, 0xfc, 0xdb, 0xfd, 0x7f, 0xff, 0x64,
-0xff, 0xdf, 0x55, 0xff, 0xfe, 0xfb, 0xc5, 0xff,
-0x7b, 0xff, 0x7f, 0xf7, 0xf9, 0x7c, 0xff, 0x3f,
-0xff, 0xff, 0xfb, 0xfb, 0xfb, 0x9f, 0xff, 0xfa,
-0x7f, 0xff, 0xf5, 0xfd, 0x77, 0xf7, 0xfd, 0xf7,
-0xe6, 0xff, 0x7f, 0xfb, 0xf7, 0xeb, 0x73, 0x97,
-0xbf, 0xed, 0xee, 0xff, 0xff, 0x6b, 0xae, 0xf7,
-0xcf, 0xdf, 0x6f, 0xff, 0xff, 0x7e, 0x67, 0xff,
-0xff, 0xff, 0xff, 0xf6, 0xbf, 0xb7, 0xfe, 0xff,
-0xfe, 0xff, 0xb7, 0xef, 0xef, 0xf7, 0xfb, 0xdf,
-0xfa, 0xfa, 0xff, 0xbf, 0xfb, 0xbf, 0xbe, 0xfb,
-0xb7, 0xef, 0xbf, 0xff, 0xff, 0xbe, 0xef, 0x78,
-0x5f, 0xdf, 0xd2, 0x5f, 0xfb, 0xeb, 0xdb, 0xd5,
-0xbd, 0xbf, 0xf9, 0xfa, 0xbe, 0x9e, 0xeb, 0xe9,
-0xef, 0xff, 0xaf, 0xfb, 0xfe, 0xd4, 0x3d, 0x6f,
-0x61, 0xbf, 0xdf, 0xde, 0xff, 0xff, 0xff, 0xf7,
-0xfe, 0x5f, 0xef, 0xff, 0x7f, 0xff, 0xff, 0x7f,
-0xdf, 0xef, 0xfe, 0xf7, 0xdb, 0xdf, 0xfb, 0xff,
-0xff, 0x7f, 0xfe, 0xde, 0xc7, 0xff, 0xff, 0xdf,
-0xf7, 0xde, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf5, 0xfd, 0xa1, 0xff, 0xf3, 0xbc, 0x17, 0x9f,
-0xbe, 0xff, 0xfe, 0xef, 0xfb, 0x8e, 0xeb, 0x7a,
-0xbe, 0xfb, 0xbf, 0xef, 0x9e, 0xff, 0xb5, 0xee,
-0xef, 0xeb, 0xbf, 0xef, 0xff, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x6f, 0xfd, 0xff, 0xff,
-0xff, 0xf6, 0xff, 0xef, 0xed, 0x5f, 0xbe, 0xfc,
-0xbe, 0x4f, 0xd3, 0xdf, 0x7d, 0xef, 0xbf, 0xff,
-0xff, 0xef, 0xfb, 0x97, 0xf7, 0xf7, 0x9f, 0xfd,
-0x93, 0xdf, 0xff, 0xfe, 0xfe, 0xef, 0xff, 0xef,
-0xff, 0xdf, 0x56, 0xed, 0xff, 0xfd, 0x7b, 0xdf,
-0xed, 0xeb, 0x5d, 0xff, 0xdd, 0xff, 0x9f, 0xff,
-0xd7, 0xef, 0xfd, 0xff, 0xff, 0x7b, 0x9f, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xfd, 0xe1, 0xff,
-0xdf, 0xcf, 0xbe, 0xf7, 0x8d, 0xeb, 0x48, 0xfb,
-0x3f, 0xcf, 0xf3, 0x9c, 0xfd, 0xf7, 0xcc, 0x65,
-0xfa, 0xb7, 0xff, 0xff, 0xf4, 0xd7, 0x4f, 0xaf,
-0x63, 0xfa, 0xfe, 0x3f, 0xff, 0xf3, 0xff, 0xfd,
-0xbf, 0xef, 0xff, 0xff, 0xfe, 0xfd, 0xdf, 0x7f,
-0xdf, 0xb7, 0xfd, 0xfd, 0x7e, 0xf7, 0xdf, 0xbd,
-0xda, 0xbf, 0xfb, 0xf7, 0xdf, 0xff, 0x77, 0x7f,
-0xfd, 0xff, 0x77, 0xef, 0xf7, 0x7f, 0xff, 0x7f,
-0xff, 0x15, 0x7f, 0xb7, 0x75, 0x8b, 0xfe, 0x9f,
-0xbf, 0x78, 0xfe, 0xba, 0x1f, 0xe7, 0xf1, 0xbf,
-0x3d, 0x9d, 0xfd, 0xfb, 0x7e, 0xdc, 0xbf, 0x6b,
-0xdf, 0x77, 0xfd, 0xaf, 0x7f, 0xf6, 0x3f, 0xff,
-0xe9, 0xff, 0xea, 0xff, 0xfd, 0xdd, 0xbf, 0xfe,
-0xfb, 0xff, 0xff, 0xf3, 0xef, 0xf9, 0xef, 0xdf,
-0xff, 0x8f, 0xfb, 0xff, 0x7e, 0xaf, 0x73, 0xff,
-0xff, 0xf7, 0x2b, 0xff, 0xff, 0xff, 0xff, 0xee,
-0xff, 0x77, 0xff, 0xf8, 0x1f, 0xee, 0xff, 0xef,
-0xff, 0xdd, 0x7f, 0xff, 0xdd, 0xbd, 0xbe, 0xf7,
-0x7b, 0xff, 0x7f, 0xec, 0xff, 0xfe, 0xe7, 0xde,
-0xf7, 0xfb, 0xff, 0xf7, 0xfb, 0xff, 0xff, 0xff,
-0xf5, 0xff, 0xff, 0xff, 0xff, 0xda, 0xff, 0xfc,
-0xff, 0xff, 0xd7, 0xfc, 0x7c, 0xcf, 0xff, 0xcf,
-0xff, 0x5f, 0xd3, 0x3f, 0xcf, 0xbf, 0xff, 0x3f,
-0xcc, 0xf7, 0xfc, 0x9f, 0x3f, 0xd7, 0xf6, 0x7f,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x6b,
-0xe7, 0x4f, 0xff, 0xf7, 0xff, 0xfd, 0xf3, 0xf8,
-0xff, 0xff, 0xe7, 0xf9, 0x3f, 0xfc, 0xff, 0xff,
-0xef, 0xda, 0xab, 0x8e, 0xff, 0xfb, 0xff, 0xff,
-0x8f, 0xff, 0x3f, 0xdf, 0xff, 0xff, 0xff, 0xdf,
-0x4f, 0x79, 0xff, 0x3f, 0x1f, 0xff, 0xf7, 0xfb,
-0x5f, 0xcb, 0xb5, 0xb9, 0xbf, 0xea, 0xcf, 0xf5,
-0xff, 0xeb, 0x7a, 0xff, 0xbf, 0xe9, 0xfe, 0xcf,
-0xff, 0xff, 0xff, 0xfb, 0xfb, 0xff, 0xff, 0xff,
-0xfb, 0xd1, 0xbf, 0xff, 0xcf, 0xf3, 0xff, 0xff,
-0xbf, 0xe7, 0xf3, 0x7e, 0xdf, 0xb7, 0xec, 0xf9,
-0xfe, 0x7f, 0x3d, 0x7f, 0x5f, 0xff, 0xff, 0xff,
-0xf3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xff,
-0xff, 0xcf, 0xd9, 0x17, 0xed, 0xfd, 0x7f, 0x5f,
-0xd7, 0xfb, 0xdb, 0x6c, 0xdd, 0xc3, 0xdb, 0xb6,
-0x26, 0xdd, 0xfb, 0x6d, 0xff, 0xfd, 0xd6, 0xf5,
-0xbf, 0xf7, 0xff, 0xfa, 0xff, 0xf7, 0xef, 0xcb,
-0xff, 0xff, 0xf7, 0xfe, 0xc6, 0xfe, 0xbd, 0x6d,
-0x7b, 0xdf, 0xf5, 0x9f, 0xe5, 0x6b, 0xba, 0x75,
-0x9d, 0xc7, 0x6b, 0xdf, 0xce, 0xbf, 0x7d, 0xb6,
-0xf7, 0xbd, 0xff, 0xff, 0xda, 0x57, 0xff, 0xf7,
-0x71, 0x7f, 0xff, 0xff, 0xff, 0x74, 0xdf, 0xff,
-0xdf, 0xfc, 0x7e, 0x7f, 0xff, 0xdb, 0xe7, 0xaf,
-0xea, 0x9a, 0xba, 0xb7, 0xef, 0xff, 0xfe, 0xb9,
-0xaf, 0x5b, 0xce, 0xdf, 0xf7, 0xff, 0x4b, 0x57,
-0x9f, 0xbe, 0xaf, 0xff, 0xff, 0xff, 0xfb, 0xdf,
-0xff, 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xff, 0xf7,
-0xf7, 0xfd, 0xfa, 0x7f, 0xd3, 0xfe, 0xff, 0xbf,
-0x97, 0xb5, 0xcf, 0xf8, 0xfc, 0xfb, 0xf7, 0xe9,
-0x7b, 0xfc, 0xdf, 0xf5, 0xff, 0xff, 0xf7, 0xff,
-0xe9, 0xfe, 0xff, 0xff, 0xe9, 0xff, 0xfd, 0xff,
-0xbf, 0x5f, 0xdf, 0xf4, 0xdd, 0x7f, 0x67, 0xdb,
-0x76, 0x7f, 0xe9, 0xdb, 0x7e, 0xdf, 0xff, 0xe7,
-0xfb, 0x7f, 0xbd, 0x37, 0xff, 0xf7, 0xff, 0xfd,
-0x7f, 0xe4, 0x5f, 0xfb, 0xfb, 0xfe, 0x7f, 0xff,
-0x7f, 0xfe, 0xe6, 0xfd, 0xfe, 0x6f, 0x9b, 0xff,
-0xfb, 0xbf, 0x67, 0xfe, 0xff, 0xbf, 0xef, 0xff,
-0xfe, 0x7f, 0xbf, 0xff, 0x9f, 0xff, 0xfc, 0xff,
-0xff, 0x8f, 0xfa, 0xc7, 0xff, 0x6f, 0x1b, 0xd6,
-0xfd, 0xbf, 0xef, 0xf8, 0xb6, 0x3d, 0x81, 0x62,
-0xf9, 0xf6, 0x71, 0x8f, 0xfb, 0xbe, 0x6f, 0xbb,
-0xef, 0xdb, 0xfe, 0xef, 0xbf, 0xe3, 0xfb, 0x7e,
-0xff, 0xbf, 0xe7, 0xff, 0xb9, 0xbf, 0x6f, 0xfb,
-0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xec, 0xfb, 0x3e,
-0xef, 0xbf, 0xfc, 0xff, 0xfe, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xf3, 0xfe, 0xff, 0xff, 0xff, 0xbb,
-0xff, 0xf3, 0xff, 0xff, 0x3f, 0xf9, 0xbf, 0xfb,
-0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xef, 0xf7, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0x7f, 0xff, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xc7,
-0xff, 0xd7, 0xb5, 0xfd, 0x7f, 0xdf, 0xbb, 0xf4,
-0xff, 0x3f, 0xc7, 0xf3, 0xf4, 0xfd, 0x1f, 0x4f,
-0xef, 0xff, 0x9b, 0xff, 0xbf, 0xff, 0x6b, 0xff,
-0xfe, 0xd1, 0xfd, 0xfd, 0x7f, 0xff, 0xfb, 0xff,
-0xe2, 0xff, 0xfa, 0x7e, 0x9f, 0xa7, 0x7c, 0xbf,
-0xf6, 0x8f, 0x23, 0xe8, 0xda, 0x3e, 0xbd, 0xaf,
-0x6a, 0xff, 0xdf, 0xb7, 0xdd, 0xff, 0x77, 0xdf,
-0xe7, 0xff, 0xfa, 0x3e, 0xdd, 0xaa, 0xff, 0xff,
-0xbf, 0xff, 0x9f, 0xff, 0xdf, 0xd7, 0xe5, 0xff,
-0xff, 0xfe, 0xd7, 0xfd, 0xff, 0x5f, 0xdf, 0xf7,
-0xe5, 0xff, 0x7f, 0xb7, 0xef, 0x5f, 0x7b, 0xff,
-0xbb, 0xff, 0xef, 0xff, 0xf6, 0xb7, 0xf5, 0xff,
-0xff, 0xff, 0xff, 0x93, 0xff, 0xeb, 0xe3, 0xe8,
-0xbe, 0x7f, 0x9f, 0xe2, 0xf8, 0xbe, 0x3f, 0x0f,
-0xe6, 0xf0, 0x9e, 0x2f, 0x9e, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe3, 0xf8,
-0xbe, 0x7f, 0x9f, 0xe7, 0xf2, 0x7f, 0xfd, 0x7f,
-0x45, 0xf7, 0xff, 0xff, 0xbf, 0xdf, 0xff, 0xfd,
-0xeb, 0x7f, 0x46, 0x91, 0xf5, 0xff, 0xe7, 0xff,
-0xff, 0xff, 0x1f, 0x6f, 0xfb, 0xfe, 0xfd, 0x7f,
-0xcf, 0xf7, 0xff, 0xff, 0x9f, 0xfe, 0xaf, 0xff,
-0xaf, 0xeb, 0xea, 0xff, 0xff, 0xf7, 0xfb, 0xff,
-0xff, 0xbf, 0xef, 0xeb, 0xfa, 0xfe, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xef, 0xfb, 0xff, 0x7b, 0xdf,
-0xaf, 0xed, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf1,
-0xfe, 0xfd, 0xfd, 0x7f, 0xdf, 0xff, 0xf7, 0xfd,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xff,
-0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff,
-0xf9, 0x3f, 0xfe, 0x9f, 0xa7, 0xeb, 0xff, 0xde,
-0xdf, 0xad, 0xff, 0x7f, 0xdf, 0xf7, 0xf7, 0xf9,
-0xff, 0xdf, 0xe7, 0xff, 0xff, 0x7f, 0xdf, 0xf7,
-0xfd, 0xbf, 0x7f, 0xf7, 0xb7, 0xfb, 0x7f, 0xff,
-0xf7, 0xff, 0x93, 0xff, 0xdb, 0xf7, 0x6d, 0x9f,
-0x2f, 0xd1, 0xdf, 0xff, 0x3f, 0x27, 0xdb, 0xfe,
-0x3f, 0xbf, 0x6f, 0xff, 0xbf, 0xbf, 0xaf, 0xeb,
-0xff, 0xfe, 0xbf, 0xff, 0xff, 0xff, 0xfd, 0xbf,
-0xff, 0xfd, 0xff, 0xe2, 0xff, 0xfd, 0x85, 0xe9,
-0xfa, 0xee, 0xbf, 0xad, 0xe8, 0xfa, 0xee, 0x3f,
-0xad, 0xe8, 0xfa, 0xb6, 0xbd, 0xeb, 0xfa, 0xbe,
-0x1f, 0xaf, 0xe9, 0xf8, 0xbe, 0xbf, 0xab, 0xeb,
-0x5a, 0xbe, 0xbf, 0xaf, 0xf4, 0x9f, 0xfe, 0x5f,
-0xef, 0xf3, 0xbf, 0xff, 0xbf, 0xfd, 0xfc, 0xff,
-0xef, 0x0d, 0xd3, 0xf4, 0xbd, 0xf6, 0xff, 0xf7,
-0xdf, 0xef, 0xff, 0xb3, 0x7f, 0xbf, 0xf7, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xc7, 0xff, 0x99, 0x7d,
-0x7b, 0xff, 0x3d, 0xfb, 0x7a, 0xdf, 0xaf, 0x7c,
-0xfe, 0xf9, 0xde, 0xfc, 0xfd, 0xff, 0xf7, 0x7f,
-0xf7, 0xeb, 0xf7, 0xdf, 0xbd, 0xad, 0xff, 0x7f,
-0xbf, 0xff, 0xdf, 0xff, 0xff, 0xef, 0xff, 0xe6,
-0x67, 0xff, 0xff, 0xff, 0xff, 0x5f, 0x7f, 0xca,
-0xfd, 0xb2, 0xff, 0x6d, 0x7f, 0xff, 0x8e, 0xef,
-0xfd, 0xff, 0xff, 0xff, 0xfb, 0xfa, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xef, 0xfa, 0xff,
-0xff, 0x45, 0xfc, 0xff, 0x2f, 0xda, 0xfe, 0xbf,
-0x1f, 0xeb, 0xfe, 0xfd, 0xb7, 0xaf, 0xfb, 0xfa,
-0xe7, 0xbf, 0xfd, 0xf0, 0xe4, 0xad, 0x83, 0xef,
-0xe8, 0xff, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0x7f, 0xcd, 0xff, 0xff, 0x7b, 0xbf, 0xec,
-0x7b, 0xbf, 0xff, 0xbf, 0xbf, 0xdf, 0xfe, 0xff,
-0xff, 0x9f, 0xff, 0xef, 0xff, 0x7f, 0xe7, 0xd7,
-0xef, 0x7f, 0x7f, 0xff, 0xdf, 0xff, 0xf7, 0x77,
-0xff, 0xff, 0xff, 0xf9, 0x9f, 0xff, 0xbb, 0xce,
-0xe3, 0xfb, 0xaf, 0xef, 0xbe, 0xff, 0xef, 0xfe,
-0x3f, 0x8e, 0xff, 0xfb, 0xee, 0xfe, 0xff, 0x7e,
-0xff, 0xaf, 0xef, 0xff, 0xbe, 0xef, 0xfb, 0xff,
-0xff, 0xff, 0xdf, 0x3f, 0xff, 0x15, 0xfb, 0xec,
-0x36, 0xfd, 0xee, 0x7f, 0xdf, 0xfe, 0xff, 0xff,
-0xfb, 0xff, 0xd7, 0xfd, 0xef, 0xef, 0xff, 0x7f,
-0xfd, 0x6d, 0xdb, 0xf6, 0xef, 0xbf, 0x6f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x57, 0xef, 0xe0, 0xff,
-0xdf, 0xbe, 0xf5, 0x6e, 0xef, 0x76, 0xff, 0xf7,
-0xfb, 0xff, 0xff, 0xdf, 0xbd, 0xbb, 0xff, 0x8b,
-0xff, 0xfd, 0x6d, 0xf6, 0x76, 0xde, 0xfd, 0xed,
-0x5f, 0xf7, 0xff, 0xfb, 0xff, 0xff, 0xdf, 0xfc,
-0x5f, 0xf7, 0x23, 0x8f, 0xf3, 0x3b, 0xfd, 0xff,
-0xfd, 0xd3, 0xff, 0xff, 0x5f, 0x8d, 0xf1, 0xbe,
-0xff, 0x4e, 0xe1, 0xd9, 0xdd, 0x2f, 0xcf, 0xfb,
-0xf4, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff,
-0x7f, 0x93, 0xb7, 0xf7, 0xfd, 0xff, 0x7f, 0xff,
-0xff, 0xdf, 0xff, 0x77, 0xfe, 0xff, 0xba, 0xfb,
-0xba, 0x6f, 0xe9, 0xbf, 0x7f, 0xbf, 0xf7, 0xfd,
-0xff, 0x7d, 0xdf, 0xfe, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xfa, 0x77, 0xfa, 0x3f, 0x1e, 0xe3,
-0x25, 0xd5, 0x76, 0xfd, 0xe7, 0xed, 0xfb, 0xbf,
-0xd7, 0xff, 0xfe, 0xdf, 0xdf, 0xb7, 0xfd, 0x38,
-0x76, 0x9f, 0xff, 0xf9, 0xfb, 0xff, 0xff, 0x6f,
-0xff, 0xfb, 0xff, 0xff, 0xc6, 0xff, 0xf7, 0xbf,
-0xb6, 0xff, 0xff, 0xef, 0xff, 0x7e, 0x7e, 0x33,
-0xae, 0xfb, 0xff, 0xff, 0xa7, 0x61, 0xfe, 0xff,
-0xff, 0xa7, 0xf3, 0xfe, 0xff, 0xb7, 0xaf, 0xff,
-0xff, 0xff, 0xef, 0xff, 0x7f, 0x89, 0xff, 0xf7,
-0xff, 0xf7, 0x5f, 0xfe, 0xfd, 0x7f, 0xff, 0x5f,
-0xfd, 0xff, 0xfd, 0x5f, 0xff, 0xef, 0xff, 0xff,
-0x3f, 0xdf, 0xef, 0xff, 0x7f, 0xbf, 0xce, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xdf, 0xe8, 0x0f,
-0xf2, 0xff, 0xbf, 0x5f, 0xfb, 0x7e, 0xdf, 0xbf,
-0xff, 0x57, 0x3e, 0xdf, 0xbd, 0xfd, 0xd3, 0x3f,
-0xf5, 0x5c, 0xff, 0x3e, 0xf7, 0xfd, 0x5c, 0xfb,
-0xfe, 0xff, 0xff, 0xef, 0xfb, 0xfe, 0xdf, 0xfc,
-0xe6, 0xbe, 0x97, 0xf3, 0xe5, 0xff, 0x1b, 0xcf,
-0xf7, 0xff, 0xfa, 0x7f, 0xcf, 0xf7, 0xfe, 0xf9,
-0x74, 0xff, 0xab, 0xdf, 0xaf, 0xce, 0xf3, 0xcf,
-0xff, 0x3f, 0xdf, 0xff, 0xfc, 0xff, 0x7f, 0xc7,
-0xfd, 0x7c, 0xf7, 0xfb, 0xfe, 0xbc, 0xaf, 0x2b,
-0xfa, 0xf2, 0xdf, 0xfe, 0x7a, 0xcf, 0xc6, 0x9f,
-0xed, 0xed, 0xff, 0xff, 0xff, 0xfb, 0xfa, 0xfe,
-0xbf, 0xfb, 0xeb, 0xca, 0x7f, 0xff, 0xaf, 0xef,
-0xca, 0x7f, 0xbe, 0x9b, 0xff, 0x5c, 0xd7, 0x35,
-0xcd, 0x7f, 0x7e, 0x55, 0x9f, 0xcf, 0x7b, 0xfe,
-0xd5, 0xff, 0xfc, 0xff, 0xef, 0xfb, 0xff, 0xff,
-0x5e, 0x57, 0xff, 0xed, 0x7b, 0x57, 0xff, 0xf7,
-0xfd, 0xf3, 0x57, 0xfd, 0x93, 0xff, 0xed, 0x32,
-0x4c, 0x93, 0x27, 0xcb, 0xfb, 0x6d, 0xff, 0xff,
-0x8b, 0xa2, 0x5e, 0xbf, 0x33, 0xff, 0x7f, 0xdf,
-0xf6, 0xcb, 0xf7, 0xdf, 0xde, 0xa5, 0x0f, 0xff,
-0xfe, 0xb7, 0xbf, 0xeb, 0xff, 0xf0, 0x6f, 0xfd,
-0xfe, 0x5f, 0xdd, 0xec, 0xf5, 0x5a, 0x7e, 0xbf,
-0xe7, 0x51, 0xdf, 0x4f, 0xfd, 0x87, 0x7f, 0xf7,
-0xff, 0xfe, 0x79, 0x58, 0x7b, 0xff, 0xf5, 0xf9,
-0xff, 0xff, 0xde, 0x67, 0x7d, 0x76, 0xf6, 0x27,
-0xff, 0xbf, 0xab, 0xfa, 0xda, 0xb7, 0xae, 0x6f,
-0xd6, 0xfb, 0xbf, 0xbf, 0x6a, 0xfa, 0xe6, 0xfd,
-0xff, 0xff, 0xf5, 0xde, 0xad, 0xeb, 0xff, 0xfe,
-0xbe, 0xad, 0xff, 0xfa, 0xde, 0xff, 0xef, 0x5f,
-0xb9, 0xff, 0xf7, 0x69, 0x5f, 0x46, 0xd3, 0x35,
-0xfd, 0x3b, 0x7f, 0xf7, 0xfd, 0xe5, 0x6a, 0xff,
-0xdb, 0xdb, 0xb3, 0xee, 0xfb, 0xb5, 0xfd, 0x7f,
-0xef, 0xd1, 0xf5, 0xff, 0xff, 0x7f, 0xdf, 0xf5,
-0xcf, 0xff, 0xbf, 0xff, 0xd7, 0xfc, 0xdd, 0x2f,
-0x6d, 0xfb, 0x76, 0x9f, 0x1f, 0xed, 0xf8, 0xfd,
-0xff, 0xff, 0x6d, 0xf7, 0xfd, 0x8f, 0x7b, 0xf3,
-0xfd, 0xff, 0xb7, 0x4f, 0xf3, 0xff, 0xff, 0x37,
-0xff, 0xfb, 0x7f, 0xf7, 0xfe, 0x79, 0xff, 0xaf,
-0x9e, 0xff, 0xff, 0xbe, 0x6f, 0xdf, 0xfe, 0xff,
-0xfe, 0x7f, 0xff, 0xfe, 0xef, 0xe7, 0xff, 0xfe,
-0xfc, 0xaf, 0xff, 0xfb, 0xe6, 0xbd, 0xaf, 0xff,
-0xef, 0xff, 0xfd, 0xff, 0xf8, 0x5f, 0xfe, 0x75,
-0xbb, 0x65, 0xd9, 0xd6, 0xef, 0x99, 0x6f, 0xdb,
-0xb6, 0xff, 0x8f, 0x6f, 0xf9, 0xbf, 0x9f, 0xe7,
-0xfb, 0x16, 0xe5, 0xbf, 0x6f, 0x99, 0xb6, 0xef,
-0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xf8, 0x5b, 0xff,
-0xfb, 0xff, 0x6f, 0xb3, 0xff, 0xff, 0xfe, 0xef,
-0x9b, 0xfd, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xff, 0xf3, 0xbf, 0x7f, 0xf7, 0xed,
-0xfb, 0xff, 0xff, 0x3f, 0xff, 0xf3, 0xfd, 0xab,
-0xff, 0xfe, 0xff, 0xfb, 0xed, 0xff, 0xff, 0xff,
-0xef, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0x5f, 0xbf, 0x1f, 0xcf, 0xf1, 0xf4, 0xf9,
-0xff, 0x47, 0xd7, 0xf7, 0xff, 0xff, 0xe7, 0xdf,
-0xf4, 0x7e, 0x47, 0xd1, 0xf4, 0x7d, 0x7e, 0x5f,
-0xf5, 0xf4, 0x7d, 0x7f, 0xff, 0xd7, 0xff, 0xfb,
-0xff, 0xfa, 0xaf, 0xfd, 0xe3, 0x7a, 0xfe, 0xbe,
-0xbf, 0xb7, 0x6a, 0xbe, 0xad, 0x9f, 0x77, 0xcc,
-0xfe, 0x76, 0xbf, 0xeb, 0xfa, 0xf4, 0xbf, 0xa2,
-0xec, 0xf7, 0xfe, 0xa9, 0xaa, 0xff, 0xda, 0xbf,
-0xff, 0xf2, 0xff, 0xfd, 0xff, 0xfd, 0xfd, 0x7b,
-0xfd, 0xd7, 0xff, 0xfd, 0x5b, 0xde, 0xff, 0xfd,
-0xeb, 0xfb, 0x7f, 0xd7, 0xb9, 0x7f, 0x55, 0xd5,
-0x75, 0xfd, 0x7f, 0xcd, 0xd7, 0x75, 0xff, 0xff,
-0x5f, 0xff, 0xbf, 0xff, 0xf8, 0xbf, 0xff, 0x9e,
-0x2f, 0x9d, 0xe2, 0xf8, 0xfe, 0x2f, 0x9b, 0xe7,
-0xf8, 0xfe, 0x37, 0x9b, 0xe2, 0x69, 0xa7, 0x8b,
-0xa2, 0xf8, 0xbe, 0x3f, 0x8f, 0xe2, 0x78, 0xfe,
-0x7f, 0x8b, 0xe7, 0xf9, 0xfe, 0x7f, 0xe7, 0xff,
-0xf1, 0xfc, 0xff, 0x1f, 0xdf, 0xf7, 0xf5, 0xfd,
-0x7f, 0xcf, 0xd3, 0xfe, 0xfd, 0x3f, 0xcd, 0xfc,
-0xff, 0x77, 0x4f, 0xd7, 0xf5, 0xff, 0xff, 0x5f,
-0xd7, 0xff, 0xfd, 0x7f, 0xff, 0xff, 0xff, 0xe0,
-0xff, 0xfe, 0xff, 0xbf, 0xef, 0xeb, 0xfe, 0xfa,
-0xbf, 0xef, 0xe9, 0xfa, 0x7e, 0xdf, 0xa7, 0xf9,
-0xef, 0xbf, 0xef, 0xab, 0xfa, 0xfe, 0xff, 0xff,
-0xeb, 0xfa, 0xff, 0xff, 0xaf, 0xbf, 0xff, 0xff,
-0xfd, 0x1f, 0xff, 0xdf, 0xf3, 0xff, 0xfd, 0x7f,
-0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xff, 0xf5,
-0xff, 0xff, 0xbb, 0xff, 0xff, 0x3f, 0x5f, 0xd7,
-0xff, 0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0x5f, 0xff, 0x93, 0xff, 0xfb, 0x7a, 0x5f, 0xb7,
-0xaf, 0xff, 0xbb, 0xdf, 0xb7, 0xa7, 0xf9, 0xff,
-0xde, 0x9f, 0xf6, 0xff, 0x7f, 0xdb, 0xa7, 0xfb,
-0x7b, 0xdf, 0xff, 0xad, 0xef, 0x7f, 0xff, 0xf3,
-0xff, 0xeb, 0x7f, 0xf8, 0x3f, 0xbe, 0xbf, 0xef,
-0xfd, 0xf7, 0x7d, 0xbf, 0x6e, 0xff, 0xf2, 0xfd,
-0x3f, 0x6f, 0xfb, 0xfc, 0xff, 0xf7, 0xff, 0xf4,
-0xfd, 0x3f, 0xef, 0xff, 0xf2, 0xec, 0xbf, 0xff,
-0xd3, 0xf4, 0xfd, 0x3d, 0xfe, 0x2f, 0xff, 0xfa,
-0x7e, 0xbf, 0xaf, 0x6b, 0xfa, 0x7e, 0x8f, 0xae,
-0xeb, 0x5a, 0xb6, 0xaf, 0xa7, 0xeb, 0x5e, 0xbf,
-0xad, 0x6b, 0xba, 0xbe, 0x3f, 0xaa, 0xe1, 0x3a,
-0xde, 0xbd, 0xa7, 0xeb, 0xd2, 0xff, 0x61, 0xff,
-0xff, 0xd9, 0x7b, 0xff, 0xff, 0x73, 0xfc, 0x3f,
-0xf7, 0xff, 0x7f, 0x7d, 0x37, 0x7f, 0xb3, 0x7f,
-0xfb, 0xdd, 0xf1, 0xff, 0x7d, 0xff, 0xfc, 0xfd,
-0xdc, 0xff, 0xff, 0xff, 0x6f, 0xbc, 0xff, 0xfa,
-0x17, 0xf7, 0xfe, 0xfe, 0x7f, 0xf7, 0xf9, 0xf1,
-0xf6, 0xff, 0xf7, 0xdf, 0xfa, 0xfc, 0xdc, 0xbb,
-0xeb, 0xff, 0xfb, 0xbc, 0xbd, 0xdb, 0xfc, 0xff,
-0xf7, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xf7, 0xed,
-0xfe, 0xb7, 0xfb, 0xfa, 0xfd, 0xff, 0xfa, 0xfb,
-0xbd, 0xf3, 0xff, 0xef, 0xfe, 0xfc, 0xe3, 0xff,
-0xff, 0xdf, 0x9e, 0xbf, 0xf7, 0xfd, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff,
-0xcf, 0xff, 0xe4, 0x5f, 0x9f, 0xbe, 0x3f, 0xef,
-0xf9, 0xf8, 0xff, 0xff, 0xf7, 0x63, 0xfe, 0xde,
-0xaf, 0xef, 0x65, 0xff, 0x9f, 0xaf, 0x69, 0xfb,
-0xff, 0xf3, 0xe3, 0xeb, 0xda, 0xf7, 0xff, 0x8d,
-0xff, 0xfb, 0x7f, 0xff, 0x5f, 0xff, 0xff, 0xef,
-0xff, 0xd6, 0xde, 0xff, 0xbf, 0xdf, 0xfe, 0xfd,
-0x7f, 0x57, 0xf7, 0xff, 0xe7, 0xff, 0xdd, 0xf7,
-0xbe, 0xdf, 0xff, 0x7f, 0xff, 0xbf, 0x6e, 0xff,
-0xeb, 0x7f, 0xff, 0xdf, 0xfe, 0xb9, 0xff, 0xff,
-0xbf, 0xfa, 0xbf, 0xff, 0xed, 0xbf, 0xef, 0xd6,
-0xfe, 0xff, 0x7e, 0xe7, 0xba, 0xff, 0xeb, 0xde,
-0xfb, 0x3f, 0xff, 0xbf, 0xf6, 0x1f, 0xbd, 0xfb,
-0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x7f,
-0xfb, 0xff, 0x6e, 0xef, 0xf5, 0xfd, 0x7f, 0xfb,
-0xff, 0xbe, 0x7d, 0xf7, 0x2f, 0xdf, 0xfe, 0xfc,
-0xff, 0xbb, 0xfe, 0xff, 0xbf, 0xff, 0xdf, 0xff,
-0xfc, 0xff, 0xff, 0x7b, 0xff, 0xdf, 0xbf, 0xfe,
-0xaf, 0xfb, 0xfd, 0x7b, 0xbf, 0xff, 0xf7, 0xff,
-0x5f, 0xff, 0x9b, 0xff, 0xbb, 0xef, 0xfb, 0x5f,
-0xef, 0xbe, 0xf7, 0xff, 0xf7, 0x7d, 0x7f, 0xde,
-0xdd, 0xf7, 0xbf, 0xbf, 0xff, 0xff, 0xfd, 0xff,
-0xed, 0xd5, 0x7f, 0xfb, 0x5c, 0xfa, 0x2e, 0xbf,
-0xef, 0xdc, 0x9e, 0x3f, 0xcf, 0xa3, 0xf3, 0xb6,
-0xbe, 0xcf, 0x74, 0xf5, 0x2f, 0xff, 0xf1, 0x58,
-0xfe, 0xff, 0x7f, 0xd3, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xaf, 0xfb, 0x7f, 0x5f, 0xf7,
-0xff, 0xbf, 0xff, 0xdf, 0xf7, 0x33, 0x7f, 0x79,
-0xff, 0xfb, 0xeb, 0x7e, 0xdb, 0xfd, 0xff, 0xff,
-0x7f, 0xdf, 0xff, 0xff, 0xfb, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x13, 0x7a, 0xf7, 0xba,
-0xfe, 0x67, 0xde, 0x7e, 0xfb, 0xde, 0xff, 0xdd,
-0xe7, 0xef, 0xcd, 0x37, 0xfe, 0xf8, 0xde, 0xfe,
-0xff, 0xd3, 0xeb, 0xff, 0xf7, 0xff, 0xeb, 0xff,
-0xf7, 0xff, 0xfb, 0xff, 0xff, 0xee, 0xef, 0xff,
-0x7f, 0xf7, 0xef, 0xff, 0x3a, 0xbf, 0xfd, 0xee,
-0xf7, 0x7e, 0xee, 0xbf, 0xfd, 0xff, 0x7f, 0x77,
-0x2e, 0xff, 0xff, 0xde, 0xbf, 0xab, 0xfe, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x1f,
-0xff, 0x7f, 0xff, 0xf3, 0xfd, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xfb, 0xff,
-0x80, 0xff, 0x5c, 0xcb, 0xdf, 0xf7, 0xb3, 0xfc,
-0xfb, 0xde, 0xfd, 0x33, 0x2f, 0xff, 0xff, 0xdf,
-0xb6, 0x7f, 0x93, 0xcc, 0xf1, 0xec, 0xfb, 0xfe,
-0xdf, 0xbf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xcf, 0x6b, 0xe7, 0xfa, 0x1a, 0x8f, 0xf7,
-0x7f, 0xdf, 0x7b, 0xdf, 0x3f, 0xbd, 0xff, 0xff,
-0xdf, 0xf7, 0xeb, 0xff, 0xff, 0xaf, 0xbd, 0xbf,
-0xdf, 0xdf, 0xf7, 0xfc, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xd6, 0x4f, 0x7f, 0xa9, 0x5f, 0xd2,
-0xf4, 0xfd, 0x7f, 0x4f, 0x9a, 0xfe, 0xed, 0x3f,
-0x5f, 0x9b, 0xde, 0xff, 0xfe, 0x7f, 0x3e, 0xaf,
-0xbf, 0xef, 0x1f, 0xfe, 0xf9, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xcd, 0xbf, 0x95, 0xcd,
-0xff, 0x5e, 0xdf, 0xff, 0xe5, 0x73, 0x5f, 0xff,
-0xf5, 0xef, 0xff, 0x7f, 0xdf, 0xff, 0xff, 0xbe,
-0x57, 0xf7, 0xff, 0x79, 0xff, 0xdf, 0x97, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x3f, 0xff,
-0xff, 0xac, 0xdd, 0xe3, 0x7d, 0xfd, 0x35, 0x4f,
-0xfb, 0xfe, 0x92, 0x2f, 0xdb, 0xfb, 0xff, 0xff,
-0xfc, 0xff, 0xfe, 0xff, 0xb6, 0xcb, 0xfb, 0xfe,
-0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x16,
-0xff, 0xfd, 0xf5, 0x7f, 0xfd, 0x6f, 0x75, 0xe7,
-0x59, 0xff, 0xf7, 0xd5, 0xfd, 0x61, 0xdf, 0x77,
-0xfe, 0xff, 0xff, 0xf7, 0xdd, 0xfd, 0xe9, 0x5f,
-0x77, 0xdc, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x70, 0x7f, 0xfa, 0xde, 0xbf, 0xfd, 0xef, 0xdf,
-0xd2, 0xfd, 0x2f, 0xef, 0xfa, 0xfe, 0xfd, 0xaf,
-0xef, 0xff, 0xdf, 0xfd, 0x6b, 0xfb, 0xfe, 0xff,
-0xaf, 0xef, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf9, 0x13, 0xff, 0x5f, 0xd5, 0xfb, 0xff,
-0xb8, 0xfc, 0x51, 0xa5, 0xff, 0xff, 0x47, 0xf7,
-0x15, 0xcd, 0xfa, 0xfe, 0xfe, 0xe1, 0x7f, 0x7f,
-0xf3, 0xf5, 0xfd, 0xff, 0x5f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x9b, 0xfe, 0xdf, 0xff, 0x47,
-0xd3, 0x77, 0xff, 0xff, 0x47, 0xf3, 0x7e, 0xdd,
-0x7f, 0x6f, 0xfb, 0x7f, 0xff, 0xdf, 0xdf, 0xff,
-0xff, 0xb7, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xef, 0xff,
-0xe7, 0xf8, 0xbf, 0xff, 0xf9, 0xee, 0x7d, 0xbf,
-0xe7, 0xbb, 0xfe, 0xbf, 0xbf, 0xef, 0xfb, 0xff,
-0xff, 0xff, 0xf9, 0xf7, 0xff, 0xff, 0xff, 0xf9,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x87, 0xfb,
-0xef, 0x59, 0xfe, 0x39, 0x9f, 0x6f, 0xd9, 0xfe,
-0xf9, 0xbf, 0x67, 0x9b, 0xbe, 0xfb, 0xb3, 0x7b,
-0xfe, 0x7f, 0xbf, 0xed, 0xdb, 0xf6, 0xff, 0xbf,
-0x6d, 0xfb, 0xfe, 0xff, 0xbf, 0x6f, 0xff, 0xa1,
-0xbf, 0xff, 0xfb, 0xef, 0xf1, 0xbf, 0xcf, 0xf7,
-0xfe, 0xf9, 0xbf, 0x6f, 0xf3, 0xfe, 0xff, 0xff,
-0xcf, 0xfe, 0xff, 0xff, 0xef, 0xf3, 0xe6, 0xff,
-0xff, 0x6f, 0xbf, 0xff, 0xff, 0xff, 0xcf, 0xff,
-0xdc, 0x3f, 0xff, 0xfe, 0xfb, 0xff, 0xdf, 0xfb,
-0xff, 0xff, 0x7f, 0xdf, 0xfb, 0xfe, 0xfe, 0xff,
-0xff, 0xfb, 0xff, 0x7f, 0xff, 0xf7, 0xfe, 0xff,
-0x7f, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xe5, 0xff, 0xf7, 0xfe, 0x7f, 0x9f,
-0xcf, 0xf7, 0xb4, 0xed, 0x7f, 0xdf, 0xd1, 0xec,
-0x7f, 0x7f, 0x5f, 0xe5, 0x7b, 0x1f, 0xff, 0xd7,
-0xf7, 0xff, 0xff, 0xfe, 0xd7, 0xff, 0xfd, 0x7f,
-0xff, 0xb7, 0xff, 0xf4, 0xff, 0xfe, 0x77, 0xcf,
-0xfb, 0xcb, 0xfe, 0x7e, 0xaf, 0xaa, 0x49, 0xfa,
-0xbf, 0xbf, 0xe7, 0xc9, 0xf6, 0x8f, 0xaf, 0xff,
-0xfa, 0x7d, 0xcb, 0x67, 0xff, 0xfa, 0x3f, 0xff,
-0xa7, 0xff, 0xfb, 0x7f, 0xff, 0x1f, 0xff, 0xdf,
-0xdf, 0xbf, 0xff, 0x7b, 0xdf, 0xd7, 0xb5, 0xff,
-0x77, 0x5e, 0xff, 0xf5, 0xff, 0xff, 0x95, 0xfc,
-0xff, 0xff, 0xfe, 0xdf, 0xff, 0xdf, 0xff, 0x5f,
-0xff, 0xe5, 0xff, 0xff, 0xdf, 0xff, 0x0b, 0xff,
-0xfb, 0xe6, 0x71, 0xda, 0x2f, 0x9b, 0xe2, 0xe8,
-0xfe, 0x2f, 0x89, 0xe7, 0x78, 0xbe, 0x7f, 0x9a,
-0xe8, 0xbe, 0x7f, 0x9f, 0xe7, 0xf9, 0xbe, 0x7f,
-0x8b, 0xe7, 0xf8, 0xbe, 0x7f, 0x8f, 0xe7, 0xf9,
-0x7f, 0xff, 0x3f, 0xef, 0xb3, 0xfc, 0x7f, 0x1f,
-0x47, 0xd7, 0xf4, 0xfd, 0x3f, 0xc7, 0xd3, 0xf4,
-0xff, 0x5d, 0xf7, 0xfe, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xfe, 0x8f, 0xff, 0xe7, 0xff, 0xfa, 0xfa, 0xbf,
-0xef, 0xeb, 0xea, 0xfe, 0x9f, 0xaf, 0xff, 0xfe,
-0x7e, 0x9f, 0xef, 0xeb, 0xff, 0xff, 0xaf, 0xff,
-0xfe, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xbf, 0xff, 0xd4, 0xff, 0xfd, 0xff, 0xbb, 0xed,
-0xf7, 0xff, 0xff, 0x77, 0xdf, 0xf7, 0xfc, 0xff,
-0xff, 0x5f, 0xff, 0xf9, 0x7f, 0xdf, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xff, 0xf8, 0xbf, 0xff, 0x9f, 0xfd,
-0xff, 0x7a, 0x7f, 0x9f, 0xa4, 0xef, 0x7e, 0x7e,
-0x97, 0xf7, 0xe9, 0xff, 0x7f, 0xbd, 0xef, 0xff,
-0x7f, 0xff, 0xfd, 0xfb, 0xff, 0xff, 0xf7, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0x47, 0xff, 0xfe,
-0xf6, 0xbf, 0xff, 0xcf, 0xfc, 0xf6, 0xfd, 0xff,
-0x76, 0xdf, 0xf6, 0xfd, 0xbf, 0x2f, 0xff, 0x7f,
-0xff, 0xff, 0xfd, 0xbf, 0xfd, 0xff, 0x6f, 0xcb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff,
-0xef, 0xaf, 0xea, 0xfa, 0xbe, 0xbf, 0xae, 0xe9,
-0xda, 0xae, 0x8f, 0xae, 0xeb, 0xb2, 0xf6, 0xbd,
-0xeb, 0xfa, 0x7e, 0x8f, 0xa7, 0xeb, 0x3a, 0xfe,
-0x9d, 0xaf, 0xeb, 0xfa, 0xfe, 0xbf, 0xaf, 0xf6,
-0x1f, 0xef, 0xf7, 0xc1, 0xff, 0xfb, 0x1f, 0xcf,
-0xdb, 0x7f, 0xff, 0xf7, 0x8f, 0xdf, 0xe7, 0x7f,
-0xf6, 0xff, 0x6f, 0xff, 0x9f, 0xff, 0xf3, 0xff,
-0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xc9, 0xff, 0xdf, 0xea, 0xfd, 0xf2, 0xdf,
-0xcb, 0xfd, 0xf7, 0xff, 0xff, 0xd3, 0xf7, 0xdf,
-0xee, 0xff, 0xff, 0x7f, 0xfd, 0xbf, 0xde, 0xff,
-0xdf, 0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xeb, 0x7d, 0xff, 0xf7, 0xff, 0x7e,
-0xfa, 0xfb, 0xea, 0xfd, 0xfe, 0xff, 0xff, 0xef,
-0xef, 0xbb, 0xef, 0x3d, 0xff, 0xfb, 0x6f, 0xbf,
-0xfc, 0x4f, 0xfe, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x25, 0xbd, 0xff, 0xab,
-0xfe, 0xbd, 0xdf, 0xa7, 0xeb, 0xaa, 0xf6, 0x27,
-0xa7, 0xe7, 0x79, 0x97, 0xff, 0xe3, 0xd8, 0xf7,
-0xfe, 0xb7, 0xeb, 0xdf, 0xdf, 0xdd, 0xaf, 0x3f,
-0xf8, 0xff, 0xfb, 0xff, 0xff, 0xf5, 0xff, 0x5f,
-0xf7, 0xbd, 0xff, 0xff, 0xf5, 0xf7, 0x7f, 0xeb,
-0x6f, 0xde, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfe,
-0xff, 0xff, 0xed, 0xfd, 0x97, 0xff, 0xbf, 0xed,
-0xff, 0xff, 0xbe, 0xff, 0xff, 0xbf, 0xfa, 0x9f,
-0xff, 0x37, 0x3e, 0xef, 0x6c, 0xef, 0xaf, 0x87,
-0xef, 0xb6, 0x7e, 0xf2, 0xff, 0x7f, 0xfc, 0xfe,
-0x7e, 0xef, 0xfe, 0xff, 0xfd, 0xef, 0xff, 0xde,
-0xfe, 0x3f, 0xfd, 0xff, 0xff, 0xef, 0xff, 0xff,
-0x14, 0xfb, 0x9b, 0x77, 0xfd, 0x3f, 0x7f, 0xcf,
-0xa7, 0xff, 0xff, 0x3f, 0xdf, 0xff, 0xff, 0xff,
-0x5f, 0xde, 0xfb, 0xe3, 0xe7, 0xfb, 0xf3, 0xbd,
-0xbf, 0x3f, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xf6, 0xff, 0xfb, 0xc7, 0xb7, 0xff, 0xfb,
-0x7b, 0xfe, 0xeb, 0x7f, 0xfb, 0xfe, 0xdf, 0xff,
-0xff, 0xff, 0xd9, 0xf5, 0x7f, 0xfd, 0xff, 0xfb,
-0xaf, 0xbf, 0xfb, 0xff, 0xff, 0xf7, 0xfb, 0xff,
-0xdf, 0xff, 0xfc, 0x1f, 0xff, 0x3f, 0xff, 0x7f,
-0xf4, 0x7f, 0x37, 0xce, 0xd6, 0xf7, 0xf7, 0x3f,
-0xcf, 0x73, 0xff, 0xf6, 0x4f, 0x7f, 0xbf, 0xff,
-0xfd, 0xcf, 0xb3, 0xfc, 0xff, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xd3, 0xff, 0xf6, 0xe7,
-0xbf, 0xff, 0xef, 0xf7, 0x3d, 0xf6, 0xf7, 0x7f,
-0xf7, 0xfd, 0xef, 0x7d, 0xff, 0xed, 0xdf, 0xfe,
-0xff, 0x7f, 0x7d, 0xff, 0x7f, 0xdd, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3b, 0xee,
-0xfb, 0xcc, 0xd7, 0xf5, 0xfe, 0xbf, 0x9f, 0xfb,
-0xfe, 0xc8, 0x3c, 0xbb, 0xe5, 0xfe, 0xeb, 0xbe,
-0xd7, 0xff, 0xdb, 0xff, 0x9b, 0xab, 0xb9, 0xef,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xed,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x6f, 0xdf,
-0xfa, 0xee, 0xaf, 0xee, 0xff, 0xef, 0xf7, 0xff,
-0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xb5, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xaf, 0xfb,
-0xfd, 0xff, 0xff, 0xff, 0xfd, 0x5f, 0xff, 0x7f,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
-0xfb, 0xff, 0xf7, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xfe, 0x8f, 0xf5, 0xff, 0xb3, 0xef, 0xff,
-0x3f, 0xef, 0xbe, 0x7c, 0xff, 0x7e, 0xff, 0xfd,
-0xff, 0x9b, 0x27, 0xbf, 0xfc, 0xff, 0xff, 0xcf,
-0xff, 0xef, 0x7b, 0xc7, 0xcf, 0xff, 0xfc, 0xff,
-0xff, 0xff, 0xfd, 0x44, 0xac, 0xff, 0xff, 0x7c,
-0xf9, 0xee, 0x7f, 0xf7, 0xcf, 0x3f, 0x3f, 0xde,
-0x3f, 0xfc, 0xf9, 0xde, 0xb7, 0xe6, 0xcf, 0xfe,
-0xbd, 0xff, 0xfd, 0xff, 0xfc, 0xcf, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xfd, 0x44, 0xd5, 0xff, 0xf3,
-0xff, 0xaf, 0xff, 0x1f, 0xb5, 0xfc, 0xff, 0xfb,
-0xfb, 0xff, 0xff, 0xef, 0xee, 0xfe, 0xff, 0xef,
-0xff, 0xff, 0xf5, 0xfd, 0x2f, 0x2b, 0x9e, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xe7, 0xbc, 0x5b, 0xf9,
-0xfe, 0x7f, 0xf5, 0xe7, 0xf9, 0xff, 0xff, 0x3f,
-0xcd, 0xf9, 0x5f, 0xff, 0xf7, 0xff, 0x7f, 0xdf,
-0x37, 0xff, 0xff, 0xfe, 0x7f, 0x95, 0xe5, 0x7b,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xf1,
-0x7f, 0xdf, 0x7f, 0x6c, 0xbd, 0x7f, 0xff, 0x7a,
-0xff, 0xff, 0x3f, 0xcb, 0xb7, 0xdf, 0x93, 0x2f,
-0xfb, 0x5f, 0xbb, 0x2f, 0xff, 0xff, 0xed, 0xff,
-0xaf, 0x8f, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xea, 0x6d, 0xe3, 0xe6, 0xff, 0xd5, 0xef, 0x7b,
-0xff, 0x5f, 0xff, 0x87, 0x61, 0xdf, 0xff, 0xdd,
-0xe5, 0x7b, 0x7f, 0xfd, 0xe7, 0x7f, 0xff, 0xff,
-0xff, 0xf5, 0x51, 0xda, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xcd, 0xff, 0xfd, 0xff, 0xda, 0xfb,
-0xfe, 0xbf, 0xeb, 0xff, 0xf6, 0xbd, 0x2f, 0xfe,
-0xfe, 0xd0, 0xbe, 0xcf, 0xff, 0xda, 0xbf, 0xff,
-0xfb, 0xfa, 0xde, 0xbf, 0xaf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xb5, 0xbf, 0xfd, 0xff, 0xfd,
-0x5e, 0x9f, 0xf7, 0x7d, 0x7f, 0xfc, 0x57, 0xa5,
-0xff, 0xff, 0x66, 0xd7, 0xfd, 0xdf, 0xff, 0xdf,
-0xff, 0xfd, 0xff, 0x5f, 0xd7, 0xf5, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf8, 0x17, 0xe7, 0xf3,
-0x7f, 0xff, 0xb7, 0xed, 0xf7, 0xfc, 0xdf, 0x9f,
-0xe7, 0xf1, 0xf5, 0xfd, 0x27, 0xed, 0xf4, 0x7f,
-0x9f, 0xed, 0xf9, 0xfc, 0x7f, 0x37, 0xcd, 0xfb,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x77, 0xff,
-0xff, 0xff, 0xff, 0xf9, 0xfe, 0x7b, 0x9f, 0x7f,
-0xff, 0xff, 0xfd, 0xfe, 0x7f, 0xaf, 0xfe, 0x7e,
-0xa7, 0xf9, 0xfe, 0xff, 0xbf, 0x7f, 0xdb, 0xfe,
-0xff, 0x8f, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xac,
-0x7f, 0xfe, 0xf5, 0xb5, 0x6f, 0xfb, 0xfe, 0x7d,
-0xbf, 0x6f, 0xfb, 0xfe, 0xff, 0x8d, 0x67, 0xfb,
-0x57, 0x9d, 0x6f, 0xfb, 0x66, 0xe5, 0xbf, 0x6f,
-0x1b, 0x46, 0xd5, 0xbf, 0xef, 0xfb, 0xfe, 0xff,
-0xfb, 0x9f, 0xfe, 0xff, 0xbf, 0xff, 0xfb, 0xff,
-0xf1, 0xbe, 0x6f, 0xff, 0xfe, 0xfb, 0xfe, 0xef,
-0xff, 0xfe, 0xbf, 0xef, 0xff, 0xf6, 0xff, 0xbe,
-0x6f, 0xbb, 0xfe, 0xff, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x8b, 0xff, 0x7f, 0xef, 0xff, 0xfd,
-0xff, 0xff, 0xdf, 0xfb, 0xff, 0xff, 0xbf, 0xff,
-0xef, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0x7f,
-0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf3, 0x7f, 0xff, 0xff, 0xef,
-0xff, 0xbd, 0xed, 0x2f, 0x7f, 0xf9, 0xbf, 0xff,
-0x7f, 0xe7, 0xd3, 0xff, 0xfe, 0xe7, 0xf7, 0xff,
-0xff, 0x7f, 0xde, 0xff, 0xf5, 0xfb, 0x7f, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xf3,
-0xfb, 0xf7, 0x7f, 0xdd, 0xab, 0x7a, 0xbf, 0xff,
-0xdd, 0xa2, 0x7e, 0xfa, 0xbf, 0xdf, 0xfe, 0xfa,
-0x7d, 0xdd, 0x37, 0x6e, 0xbe, 0xae, 0xaf, 0xa7,
-0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff,
-0xff, 0xef, 0xfb, 0x7f, 0xff, 0x3d, 0xfd, 0x77,
-0xf7, 0xff, 0xf5, 0xff, 0xff, 0x5f, 0xd7, 0xf9,
-0x7f, 0xfe, 0xff, 0xf5, 0xef, 0x77, 0xff, 0xd7,
-0xf5, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xbf, 0xfe, 0xfe, 0x6f, 0x9f, 0xe7, 0xe9, 0xbe,
-0x6f, 0x9f, 0xe7, 0xf8, 0xbe, 0x77, 0x8f, 0xe2,
-0xf9, 0xa7, 0x9f, 0xc7, 0xf8, 0xbe, 0x2f, 0x9b,
-0xc2, 0xf8, 0xba, 0x3f, 0x9f, 0xe7, 0xf9, 0xfe,
-0x7f, 0x67, 0xff, 0xff, 0xfe, 0x7f, 0x9f, 0xfd,
-0xd7, 0xff, 0xff, 0xff, 0xcf, 0xf7, 0xfe, 0xfd,
-0x1f, 0xef, 0xfe, 0xff, 0x7e, 0x6f, 0xf7, 0xfd,
-0xfd, 0x7e, 0x5f, 0xf7, 0xf5, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xf8, 0xff, 0xbf, 0xff, 0xbf, 0xff,
-0xff, 0xea, 0xff, 0xff, 0xff, 0xfb, 0xfa, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xaf, 0x6d, 0xfb,
-0xfe, 0xff, 0xaf, 0xeb, 0xfa, 0xfa, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0x8f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x5f, 0xf7, 0xf7, 0xff, 0xbf,
-0xdf, 0xfb, 0xf5, 0xfd, 0x3f, 0xb3, 0xff, 0xfd,
-0x7f, 0x5f, 0xf7, 0xff, 0xef, 0x7f, 0xdd, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xbf, 0xfd,
-0x7e, 0x7f, 0xdf, 0xf7, 0xeb, 0x7e, 0xdf, 0xdf,
-0xf7, 0xfb, 0x7f, 0xde, 0x97, 0xa7, 0xfb, 0x5f,
-0xdd, 0xa7, 0xe9, 0xfa, 0xdf, 0xb7, 0xad, 0xef,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xf1, 0x7f,
-0xfd, 0xff, 0x4f, 0x73, 0xb6, 0x7d, 0xaf, 0x6f,
-0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x67, 0xfd, 0xf7, 0xff, 0xff, 0xff, 0x5b, 0xf7,
-0x7c, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
-0x2f, 0xff, 0xba, 0xf6, 0xbf, 0xaf, 0x6a, 0xda,
-0xfe, 0x37, 0xa7, 0xcb, 0x72, 0x7e, 0xbf, 0xab,
-0xeb, 0x56, 0xbf, 0xae, 0xeb, 0x7a, 0xfe, 0xb7,
-0x8e, 0xeb, 0xba, 0xfc, 0xbf, 0xaf, 0xeb, 0xfa,
-0xff, 0x49, 0xff, 0xff, 0xdb, 0x3f, 0xfb, 0xdf,
-0x74, 0xf8, 0xdf, 0x37, 0xfb, 0x3f, 0xff, 0x6e,
-0xcd, 0xf3, 0xfd, 0x16, 0xdd, 0xff, 0xfc, 0xf7,
-0xff, 0x37, 0xbf, 0xff, 0xef, 0xff, 0xcf, 0xff,
-0xff, 0xff, 0xfe, 0x9f, 0xfd, 0xff, 0xbf, 0xfd,
-0xff, 0xef, 0x7f, 0xff, 0xbe, 0xed, 0xdf, 0xff,
-0x7f, 0xef, 0xb5, 0x3b, 0xdf, 0x7f, 0xff, 0x7f,
-0xff, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xf7, 0x7e, 0x64, 0xff, 0xff, 0xbc,
-0xfb, 0xcf, 0xf7, 0x6b, 0x6f, 0xbb, 0xdf, 0xff,
-0xfe, 0xfd, 0xaf, 0x5f, 0xc7, 0x9b, 0xfe, 0xfe,
-0xfb, 0x8d, 0xff, 0xfb, 0xfa, 0xff, 0xfe, 0x7f,
-0xfc, 0xff, 0xff, 0xff, 0xff, 0xee, 0x7f, 0x78,
-0xbf, 0xf7, 0x8f, 0xe5, 0xfa, 0xfe, 0xbf, 0xa7,
-0x6f, 0xfe, 0xff, 0xff, 0xad, 0xdf, 0xfe, 0x3c,
-0xff, 0xe3, 0xff, 0xf7, 0xfd, 0xa6, 0xe9, 0xfa,
-0xfe, 0xbf, 0xff, 0x7f, 0xff, 0xff, 0xef, 0x5f,
-0xfd, 0x7f, 0xbf, 0xd7, 0xdf, 0xf5, 0x6f, 0xfb,
-0x75, 0xff, 0xbf, 0x7f, 0xff, 0xf6, 0x7f, 0xfb,
-0xdf, 0xef, 0xfe, 0xff, 0xfb, 0xff, 0xf5, 0xd7,
-0x7d, 0xdf, 0xfb, 0xbf, 0x7f, 0xff, 0xff, 0xff,
-0xc9, 0xff, 0xff, 0xbc, 0x57, 0x3f, 0xef, 0xfd,
-0x5a, 0xf7, 0x9a, 0xcf, 0x7b, 0xbe, 0x7f, 0xdf,
-0xcb, 0xec, 0xff, 0xff, 0xed, 0xfb, 0xaf, 0x5f,
-0xff, 0xbf, 0x6f, 0x7b, 0xff, 0xff, 0xfd, 0xff,
-0xff, 0xfb, 0x7f, 0xff, 0x9f, 0x7f, 0xdf, 0xff,
-0xbf, 0xfe, 0xbf, 0xcf, 0xff, 0xbc, 0xff, 0x7f,
-0xd7, 0xf5, 0xe9, 0x77, 0xfb, 0xf3, 0xb8, 0xbf,
-0x5f, 0xdf, 0xfe, 0xff, 0xff, 0xef, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0x4e, 0xbf, 0xfd, 0xda, 0xde,
-0xbf, 0xd7, 0x7f, 0xff, 0xf6, 0xff, 0xef, 0x6f,
-0xcc, 0xff, 0xbf, 0xff, 0x9b, 0xff, 0xdd, 0xbf,
-0xbf, 0xff, 0xfe, 0xff, 0xef, 0xfd, 0xff, 0xdf,
-0xff, 0xfe, 0xff, 0xff, 0xc1, 0x76, 0xff, 0x7c,
-0xfb, 0x3f, 0xfd, 0xd3, 0xd8, 0xfd, 0xaf, 0xcc,
-0xf3, 0x7c, 0xf6, 0x3b, 0x9f, 0xf4, 0xbb, 0x37,
-0xff, 0xef, 0xd0, 0x7f, 0x3f, 0xff, 0xb3, 0xff,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3e, 0xff,
-0xff, 0xdc, 0xe7, 0xdf, 0xef, 0x7d, 0xf7, 0x77,
-0xed, 0xf7, 0x79, 0xdf, 0xf7, 0xfb, 0xff, 0xdf,
-0xf7, 0xdf, 0xff, 0xff, 0xde, 0x0d, 0xff, 0xfd,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07,
-0xff, 0xbb, 0xfb, 0xff, 0xe6, 0xdf, 0x46, 0x6b,
-0xff, 0xfb, 0x9f, 0xef, 0xfb, 0xce, 0x73, 0xcb,
-0xb9, 0xde, 0xff, 0xfe, 0xbf, 0xfd, 0xf7, 0x7e,
-0xdf, 0xef, 0xbf, 0x7f, 0xff, 0xff, 0xff, 0xfe,
-0xee, 0x7f, 0xff, 0x4e, 0xbb, 0xef, 0x73, 0x96,
-0xfe, 0xb2, 0xff, 0xf3, 0xbf, 0xd5, 0xbf, 0xef,
-0xfd, 0xff, 0x3f, 0x2e, 0x7f, 0xdf, 0xff, 0xbf,
-0xd7, 0xf7, 0xf2, 0xff, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xdb, 0x97, 0xff, 0xff, 0xff, 0xfb, 0xfe,
-0xff, 0xd3, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xef,
-0xf5, 0x7d, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xd7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xa8, 0xff, 0xfd, 0xfb, 0xff,
-0xdd, 0x73, 0xff, 0x1f, 0x35, 0xcf, 0xbf, 0xff,
-0xfb, 0xff, 0xcc, 0xf3, 0xff, 0xff, 0xfc, 0xb1,
-0xff, 0xff, 0xff, 0xc7, 0xf7, 0xec, 0xfb, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xc4, 0x4b, 0xfc, 0xff,
-0xbf, 0xff, 0xa7, 0xfd, 0xff, 0xff, 0xe7, 0xf7,
-0xfc, 0xf3, 0x3f, 0xf5, 0x9e, 0xff, 0xff, 0xff,
-0x91, 0xff, 0xff, 0x9f, 0xfb, 0xff, 0xff, 0x39,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x4d, 0x7f,
-0xef, 0xeb, 0xd7, 0xc7, 0xef, 0xae, 0x7e, 0x1e,
-0x32, 0xff, 0xef, 0xeb, 0x4f, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xad, 0x7f, 0x5f, 0x7b, 0xff, 0xf9,
-0xfd, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xed,
-0xbf, 0xf7, 0xcd, 0x7b, 0xff, 0xff, 0xf5, 0xff,
-0xf3, 0x96, 0x5f, 0xf7, 0xcd, 0x79, 0xfe, 0x5f,
-0x3f, 0xff, 0xfc, 0xdf, 0x9f, 0xe7, 0xff, 0xff,
-0xff, 0xbf, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0x9f, 0xff, 0xbf, 0xad, 0x9f, 0xff, 0xff,
-0xff, 0xbe, 0xdd, 0xfb, 0xfe, 0xbf, 0xa7, 0xfd,
-0xff, 0x7f, 0xa5, 0xff, 0xfa, 0xff, 0xff, 0xff,
-0xff, 0xf7, 0xfa, 0xfb, 0x3f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xb6, 0xff, 0x9d, 0xe5, 0x93, 0xda,
-0xf6, 0x9f, 0xef, 0x7f, 0x1f, 0x7f, 0xdf, 0xe4,
-0x7f, 0xde, 0xff, 0xf5, 0xbf, 0xff, 0x56, 0xbd,
-0xef, 0x7f, 0xf4, 0xff, 0xf5, 0xa7, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0x7c, 0x7f, 0xee, 0xf2, 0xb7,
-0xff, 0xff, 0xda, 0xfb, 0xff, 0xf7, 0xeb, 0xfa,
-0xda, 0xbd, 0xff, 0xbf, 0xfe, 0xbf, 0xff, 0xeb,
-0x9f, 0xe3, 0xff, 0xff, 0xff, 0x9f, 0xfe, 0xff,
-0xfd, 0x5f, 0xff, 0xff, 0xf9, 0x93, 0xff, 0x7e,
-0x57, 0xf7, 0xff, 0xfd, 0x5f, 0xff, 0xfe, 0xfd,
-0x7f, 0x7f, 0xc3, 0x1e, 0xff, 0xff, 0xdb, 0xaf,
-0xfd, 0x7b, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff,
-0xff, 0xef, 0xdf, 0xf9, 0xfe, 0xff, 0x37, 0xef,
-0xd9, 0xfd, 0xff, 0x7f, 0x5f, 0xdb, 0x7e, 0xdf,
-0x47, 0xf3, 0x7f, 0xbf, 0xa7, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
-0x7f, 0xff, 0xff, 0xfb, 0xff, 0xbf, 0xfb, 0xdb,
-0xfe, 0xbf, 0xff, 0x7f, 0xc9, 0xee, 0xf9, 0x9f,
-0xe7, 0xe6, 0x7d, 0xbf, 0xef, 0xf9, 0xfe, 0xbf,
-0xbf, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xe7, 0xff, 0xef, 0xdb, 0xfe, 0xf9, 0xbd,
-0x6e, 0xdb, 0xbe, 0xf5, 0xbd, 0x6f, 0x59, 0x36,
-0x3f, 0xbf, 0x78, 0xfe, 0xe5, 0xb3, 0x6d, 0xfb,
-0x96, 0xed, 0xbd, 0x6e, 0xfb, 0x7e, 0xff, 0xbf,
-0xef, 0xdf, 0x99, 0xff, 0xff, 0xdb, 0xfe, 0xfd,
-0xff, 0xef, 0x9b, 0xff, 0xff, 0xbe, 0xef, 0xbb,
-0xf6, 0xf3, 0xff, 0x6f, 0xef, 0xfb, 0xbf, 0x7f,
-0xff, 0xfe, 0xff, 0x3f, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdb, 0xdd, 0x3f, 0xff, 0xfd, 0xff,
-0x7f, 0xff, 0xf7, 0xfd, 0xff, 0xff, 0xbf, 0xfb,
-0xfe, 0xff, 0x7f, 0xff, 0xf7, 0xff, 0xfe, 0xef,
-0xff, 0xff, 0xfe, 0xff, 0xef, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0x57, 0xfe, 0xff,
-0xfd, 0xff, 0x7f, 0xff, 0xdf, 0xbf, 0xff, 0xdf,
-0x5f, 0xd7, 0xfe, 0x7f, 0x1f, 0xef, 0xe4, 0x6f,
-0x7f, 0x5e, 0xdf, 0xf5, 0xff, 0xbf, 0x5f, 0x9f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
-0xff, 0xff, 0xcf, 0xf7, 0xdd, 0xfe, 0xad, 0xdf,
-0xff, 0x7a, 0x9a, 0xaf, 0xef, 0xab, 0xff, 0xfe,
-0xaf, 0xeb, 0xe9, 0xfe, 0x7c, 0x9f, 0x7f, 0xe9,
-0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0x4f, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xfc,
-0xff, 0x7e, 0xfd, 0x77, 0x5f, 0xff, 0xb5, 0x6f,
-0xff, 0x9d, 0xbd, 0xfd, 0x7f, 0xff, 0xf7, 0xff,
-0xed, 0x7f, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe3, 0xfe, 0xff, 0xe7, 0xf9, 0xfe, 0x7f,
-0x1f, 0xe7, 0xf9, 0xfe, 0x6f, 0x8b, 0xe7, 0x78,
-0xfe, 0x7f, 0x9f, 0xf9, 0xbe, 0x2f, 0x9f, 0xe6,
-0xf9, 0xfe, 0x2f, 0x8f, 0xe7, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xe2, 0x7f, 0xff, 0xbf, 0xff, 0xfb,
-0xfe, 0x79, 0x7f, 0x4f, 0xff, 0xfd, 0xff, 0x7f,
-0xe7, 0xd7, 0xff, 0xff, 0xff, 0xf3, 0xf4, 0x7d,
-0x1f, 0x4f, 0xff, 0xfc, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x0f, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xbf, 0xef, 0xe9, 0xff, 0xff, 0xbf,
-0xaf, 0xfb, 0xfa, 0xff, 0xff, 0xff, 0xfe, 0xfe,
-0xbf, 0xaf, 0xe9, 0xff, 0xfe, 0xbf, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xbd, 0xff, 0x7f, 0x7f,
-0xf7, 0xfd, 0xff, 0xff, 0x5f, 0xdf, 0xfb, 0xff,
-0xcf, 0xdf, 0xff, 0xff, 0x7f, 0xff, 0xf3, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xbf,
-0xff, 0xdf, 0xfd, 0xfd, 0xff, 0x77, 0xb7, 0xa7,
-0xfb, 0xfe, 0xde, 0xf7, 0xfd, 0xeb, 0x7b, 0x7f,
-0xfd, 0xff, 0x7e, 0x7f, 0xdf, 0xe7, 0xef, 0xfa,
-0x7e, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x77, 0xff, 0xff, 0xf4, 0xfd, 0x3f, 0xcf, 0xda,
-0xf7, 0xff, 0x3d, 0x7f, 0xdb, 0xf2, 0x7d, 0xff,
-0xff, 0x7a, 0xbf, 0xff, 0xff, 0xdf, 0xf7, 0xbd,
-0xbb, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe0, 0xff, 0xff, 0xaf, 0x6a, 0xda, 0xde,
-0x97, 0xaf, 0xe2, 0xfa, 0x6e, 0x1f, 0xae, 0xe8,
-0xba, 0xfe, 0xad, 0xeb, 0xf8, 0xfe, 0x9b, 0xaf,
-0xeb, 0xfa, 0xde, 0xbf, 0x8b, 0xcb, 0xfa, 0xfe,
-0xbf, 0xaf, 0xff, 0x5d, 0xff, 0xcd, 0xff, 0xbf,
-0xfb, 0xff, 0x36, 0xaf, 0xbe, 0xbf, 0xef, 0x36,
-0xfe, 0xdd, 0xdf, 0xef, 0xfd, 0xfc, 0x7f, 0xff,
-0xfe, 0xed, 0xb2, 0xff, 0x3d, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xa1, 0xef, 0xff, 0xff,
-0xfd, 0xef, 0x7e, 0xbf, 0xff, 0x7d, 0x6f, 0x7f,
-0xdf, 0x77, 0xff, 0xba, 0xfe, 0xdf, 0xfc, 0xff,
-0xff, 0xff, 0xef, 0xff, 0x7b, 0xae, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x5b, 0xbd,
-0x5f, 0xff, 0xfe, 0xff, 0xfb, 0xff, 0xfd, 0xff,
-0xef, 0xdf, 0xff, 0xfb, 0xff, 0xff, 0xed, 0xf7,
-0x37, 0xff, 0x7f, 0xff, 0xff, 0xfd, 0xff, 0x7f,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xef,
-0xff, 0xff, 0xef, 0xfb, 0x7c, 0xd9, 0xa7, 0xcf,
-0xf3, 0xf6, 0x3c, 0x8f, 0xe2, 0xfa, 0x7c, 0x8f,
-0x7b, 0xde, 0xf6, 0xbb, 0xaf, 0x5f, 0xda, 0xfe,
-0xbe, 0xef, 0xfe, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xbd, 0xff, 0xff, 0xf7, 0x7f, 0xef, 0xfb, 0xfd,
-0xff, 0xbd, 0xed, 0x5e, 0x7f, 0xde, 0xdf, 0x5f,
-0xf7, 0xff, 0xf7, 0x77, 0xfb, 0xfd, 0xff, 0xf5,
-0x99, 0x67, 0x7b, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xfa, 0x3f, 0xfb, 0xf7, 0xfe, 0x3b, 0xef,
-0xfe, 0xfa, 0xc6, 0xfb, 0xff, 0xfe, 0xbd, 0xeb,
-0xbf, 0xea, 0xee, 0x3f, 0xfb, 0xaa, 0xfa, 0xff,
-0xcf, 0xfb, 0xfc, 0xf7, 0xfb, 0xfd, 0xff, 0xff,
-0xef, 0xff, 0xfe, 0xc7, 0xff, 0xbf, 0xff, 0xfd,
-0xff, 0xff, 0xdb, 0xf7, 0xff, 0xef, 0x5b, 0xce,
-0xf7, 0xdf, 0xbf, 0xef, 0xdf, 0xfd, 0xff, 0xfb,
-0xf9, 0xff, 0xfd, 0xff, 0x7c, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff,
-0xff, 0xb1, 0xfe, 0xbe, 0xff, 0xbd, 0xf5, 0xff,
-0xfb, 0xd4, 0xdd, 0x7d, 0xbd, 0xdb, 0xed, 0xb5,
-0xfd, 0xff, 0xff, 0xff, 0xe7, 0xfb, 0xff, 0x9b,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x9b, 0xed,
-0xff, 0xfd, 0x41, 0xf0, 0xfc, 0x0d, 0xcb, 0xf3,
-0xff, 0xed, 0x3f, 0xcc, 0xf1, 0xf8, 0xfe, 0x47,
-0xf3, 0xf7, 0xee, 0x3f, 0xcf, 0xde, 0xff, 0xf7,
-0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3,
-0xff, 0xff, 0xdf, 0xff, 0xdd, 0xdf, 0xfb, 0xf9,
-0xef, 0x7f, 0xff, 0xed, 0xfd, 0xff, 0xbd, 0xde,
-0xef, 0x7d, 0x7b, 0x7a, 0x36, 0xfd, 0xef, 0xfb,
-0xfb, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf8, 0x7f, 0xfb, 0xff, 0xf7, 0xbf, 0x79, 0xf3,
-0xef, 0x5c, 0xe1, 0x2c, 0xff, 0x7f, 0x8e, 0xd7,
-0xf8, 0xfb, 0xfd, 0xe3, 0xff, 0xfe, 0xf2, 0x1b,
-0xf7, 0xaf, 0xfc, 0x3f, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x07, 0xff, 0xff, 0xcb, 0xfe, 0x7f,
-0xb7, 0xf7, 0xfa, 0xff, 0xde, 0x1f, 0x8f, 0xdb,
-0xfe, 0xbd, 0xbf, 0xfb, 0xfc, 0xfe, 0x9f, 0xff,
-0xfb, 0xba, 0xff, 0xff, 0xef, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xe5, 0x7b, 0x7f, 0xff, 0xff,
-0xbf, 0xcd, 0xff, 0x7f, 0x7f, 0x7f, 0xff, 0xff,
-0xfd, 0x7f, 0xbf, 0xcf, 0xff, 0x5f, 0xdf, 0xff,
-0xef, 0xff, 0x7f, 0x7e, 0xff, 0xfb, 0xfd, 0x7f,
-0xff, 0xff, 0xff, 0xfe, 0xfa, 0xaf, 0xff, 0xff,
-0xbf, 0xfd, 0xff, 0xde, 0xc7, 0xbf, 0xff, 0xff,
-0x3f, 0xfc, 0xbf, 0xfc, 0xcf, 0xff, 0xf7, 0xff,
-0x9f, 0xfe, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xc2, 0xbf,
-0xcf, 0xf3, 0xff, 0xff, 0xff, 0xca, 0xf3, 0xff,
-0xff, 0xd7, 0xfe, 0xa1, 0xfe, 0xa3, 0xdf, 0xfd,
-0xbc, 0xf3, 0xff, 0xf6, 0xf7, 0xff, 0x73, 0x3f,
-0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x44,
-0xf7, 0xfe, 0xf4, 0xbd, 0x7d, 0xeb, 0xd2, 0xfe,
-0xb9, 0xaf, 0x3f, 0xff, 0xf2, 0xbf, 0xff, 0xff,
-0xcf, 0xf9, 0xfe, 0x7f, 0x7f, 0xff, 0xf9, 0xfe,
-0x6b, 0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7,
-0xbd, 0x5b, 0xff, 0x7e, 0x57, 0x9f, 0xcd, 0x7b,
-0x5e, 0xd7, 0xf5, 0xe7, 0xff, 0xfe, 0x57, 0xff,
-0xff, 0x7b, 0xff, 0xbf, 0xcf, 0xfb, 0xff, 0xdf,
-0x3f, 0xed, 0x79, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xfc, 0xfd, 0xe9, 0xff, 0xdb, 0xfa, 0x7e, 0xfd,
-0x3d, 0xa9, 0xa2, 0x7d, 0xb5, 0x77, 0x4b, 0xfb,
-0xcd, 0xff, 0xfd, 0xbf, 0xfa, 0xb5, 0x7f, 0xad,
-0xf2, 0xcd, 0xdc, 0x27, 0xfb, 0xf7, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xe5, 0x6f, 0xd1, 0xde, 0x4d,
-0xbd, 0xe7, 0xbd, 0x3e, 0x4e, 0x1e, 0x6f, 0xd9,
-0x5f, 0x76, 0xbd, 0xef, 0x5b, 0xf7, 0xd6, 0xef,
-0x6b, 0x54, 0x5a, 0xbf, 0xa4, 0xf9, 0xf8, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0xa7, 0xff, 0xef,
-0xab, 0xff, 0xf2, 0xbf, 0xaf, 0xab, 0xfa, 0xdf,
-0xff, 0xaf, 0xeb, 0xff, 0xfb, 0xed, 0xff, 0xda,
-0xdb, 0xff, 0xf7, 0x4b, 0xff, 0xfe, 0xbe, 0xad,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0xff,
-0xf7, 0xfd, 0x3f, 0xfc, 0x57, 0xf4, 0xfd, 0x3f,
-0x5f, 0xff, 0xf5, 0xfd, 0xdf, 0xff, 0xff, 0x9f,
-0xf1, 0x5f, 0xf7, 0xfa, 0xe9, 0x7f, 0xff, 0xd3,
-0xf7, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0x9f, 0xff, 0xf9, 0xf6, 0xdf, 0xff, 0xcf, 0xdf,
-0xf6, 0x7f, 0x7f, 0xe7, 0xff, 0xf4, 0xdf, 0xff,
-0x49, 0xfe, 0xff, 0x37, 0xed, 0xdf, 0xfc, 0x7f,
-0xbf, 0x7f, 0xf7, 0xf6, 0xdf, 0xff, 0xff, 0xff,
-0xfe, 0xb7, 0xfe, 0x7f, 0x9f, 0xef, 0xf9, 0xfe,
-0xbf, 0xff, 0xff, 0xfb, 0xfe, 0x7f, 0xfe, 0x67,
-0xf9, 0xe7, 0xff, 0xfb, 0xfb, 0xfe, 0xf9, 0xff,
-0xff, 0xfa, 0xfe, 0xfd, 0x9e, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xe6, 0x7f, 0xfe, 0xff, 0x93, 0x6f,
-0xdb, 0x96, 0x7f, 0x9d, 0x6f, 0x9b, 0xfe, 0xff,
-0x9d, 0x6f, 0xf8, 0x77, 0xbf, 0x6e, 0xdb, 0xb6,
-0x35, 0xbd, 0x6e, 0x59, 0xb6, 0xff, 0x9b, 0xef,
-0xfb, 0xfe, 0xff, 0xfa, 0xdb, 0xff, 0xff, 0xff,
-0xdf, 0xf3, 0xee, 0xff, 0xff, 0xff, 0x9b, 0xff,
-0xff, 0xfe, 0xef, 0xfb, 0xec, 0xff, 0x6f, 0xb3,
-0xf6, 0xf3, 0xfc, 0xef, 0xfb, 0xf6, 0xfb, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0x83, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xbf, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xbb, 0xfd, 0xff, 0xbf, 0xfb,
-0xfe, 0xff, 0x7f, 0xff, 0xef, 0xfb, 0xff, 0x7f,
-0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x7f,
-0xfd, 0x7f, 0x4f, 0xff, 0xff, 0xfd, 0x3f, 0x4e,
-0xdf, 0xfe, 0xfd, 0x7f, 0xe7, 0xd7, 0xe4, 0x7a,
-0xff, 0xf7, 0xbf, 0xff, 0x1b, 0x5f, 0xfb, 0xb4,
-0xed, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x6f, 0xff, 0xa7, 0xeb, 0xf7, 0x7f, 0xef, 0xaf,
-0x6b, 0xfb, 0xbf, 0xfd, 0xa7, 0x7c, 0xfa, 0x76,
-0x8f, 0xfd, 0xff, 0x3f, 0xdf, 0xb3, 0x6a, 0xff,
-0xfe, 0xbd, 0xaa, 0xeb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe0, 0xff, 0xef, 0xfd, 0x7b, 0xfc, 0xf7,
-0xf5, 0xfd, 0x7f, 0x5f, 0xbf, 0xfd, 0xed, 0xf7,
-0x5d, 0xf7, 0xfb, 0xff, 0xff, 0xff, 0xbd, 0x6d,
-0x77, 0xff, 0xd7, 0xf7, 0xfd, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xbf, 0xff, 0xfe, 0x2f, 0x9b,
-0xe3, 0xf8, 0xbe, 0x2f, 0x8f, 0xe7, 0xf9, 0xbe,
-0x37, 0x8f, 0xe2, 0x79, 0xff, 0x9f, 0xe7, 0xf8,
-0xfe, 0x2f, 0x9f, 0xe2, 0xf9, 0xbe, 0x2f, 0x9f,
-0xe7, 0xf9, 0xfe, 0x7f, 0x27, 0xff, 0xd7, 0xf5,
-0xff, 0xbf, 0xdf, 0xf7, 0xf4, 0xff, 0xff, 0xff,
-0xd3, 0xfe, 0xfd, 0x7f, 0xc7, 0xfe, 0xff, 0xff,
-0x7f, 0xf3, 0xfd, 0xff, 0xff, 0x5f, 0xdf, 0xf5,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xff, 0xfa,
-0xfe, 0xbf, 0xf7, 0xfb, 0xfb, 0xfe, 0x9f, 0xff,
-0xff, 0xfa, 0x7f, 0xff, 0xaf, 0xeb, 0xff, 0xdf,
-0xff, 0xff, 0xfb, 0xfe, 0xbf, 0xff, 0xeb, 0xfb,
-0xfe, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xcf,
-0xf7, 0xff, 0xf7, 0xff, 0xff, 0x7f, 0xdf, 0xf7,
-0xfd, 0xff, 0xff, 0xdf, 0xfb, 0xf5, 0xff, 0x7f,
-0x9f, 0xff, 0xff, 0xff, 0xcf, 0xf7, 0xf7, 0xff,
-0x7f, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xc3, 0xff, 0xff, 0xfa, 0xff, 0xdf, 0xad, 0xef,
-0xfe, 0x7e, 0xf7, 0xef, 0xf9, 0xff, 0xde, 0xbf,
-0xed, 0xff, 0x7f, 0xf7, 0xf7, 0xef, 0x7b, 0xdf,
-0xff, 0xb7, 0xff, 0x7a, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xfb, 0x77, 0xff, 0xff, 0x7f, 0xd3, 0xff,
-0xfd, 0xff, 0x67, 0xff, 0xf2, 0xff, 0xff, 0x47,
-0xff, 0xf6, 0xff, 0x67, 0xfe, 0xf7, 0xff, 0xff,
-0x2e, 0xdf, 0xff, 0xff, 0xbf, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0x6f, 0xff, 0xfa, 0xf6, 0x9d,
-0x8f, 0xeb, 0xfa, 0xf4, 0xbf, 0x2f, 0x6b, 0xfa,
-0xf6, 0xb7, 0xab, 0xe9, 0xde, 0xbf, 0xaf, 0xeb,
-0xf8, 0xae, 0x3b, 0xaf, 0xeb, 0x7a, 0xfe, 0xbf,
-0xaf, 0xeb, 0xfa, 0xfd, 0x59, 0xbf, 0xff, 0xff,
-0xff, 0xfb, 0xff, 0xfb, 0xfd, 0xf7, 0xf4, 0xf7,
-0x7f, 0xff, 0x7f, 0xfd, 0xcd, 0x6c, 0xdf, 0xff,
-0xef, 0xfc, 0xbf, 0xfb, 0xff, 0xff, 0xf7, 0xff,
-0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
-0xff, 0x7f, 0x7f, 0xff, 0xe3, 0xfb, 0x7f, 0xfd,
-0xf7, 0xff, 0xfe, 0xef, 0xff, 0xf7, 0xff, 0xff,
-0xde, 0xb7, 0xf7, 0x2f, 0xff, 0xff, 0x77, 0xfb,
-0xff, 0x3f, 0xff, 0xff, 0xfd, 0xff, 0x7e, 0x37,
-0xbf, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xfd, 0xff,
-0xff, 0xef, 0xbf, 0xff, 0xbf, 0xef, 0xef, 0xff,
-0xde, 0xeb, 0xfb, 0xe5, 0xff, 0xff, 0xfb, 0xdb,
-0xf7, 0xff, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xe4, 0x1f, 0xff, 0xf7, 0xff, 0xaf, 0xeb, 0xb8,
-0xff, 0xbd, 0x6f, 0xe7, 0xdf, 0xfe, 0x7f, 0xef,
-0x3b, 0xde, 0xff, 0xb6, 0xcb, 0xff, 0x7f, 0xa7,
-0xbf, 0xeb, 0xfb, 0xfe, 0xbc, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x9f, 0xff, 0xff, 0xff, 0xfa, 0xfd,
-0x77, 0xbf, 0xdf, 0xdf, 0xff, 0xed, 0xff, 0xff,
-0x67, 0xff, 0xf7, 0xfb, 0x7e, 0xfe, 0x77, 0xf9,
-0xef, 0xde, 0x5f, 0x75, 0xef, 0xb7, 0xff, 0xff,
-0xff, 0xff, 0xbd, 0x99, 0xfe, 0xff, 0xbc, 0xfb,
-0x3e, 0xef, 0xbf, 0xfc, 0x7e, 0xfb, 0xff, 0xff,
-0xbf, 0xff, 0x3b, 0xbf, 0x8f, 0xff, 0xfe, 0xcf,
-0xfb, 0xfc, 0xdf, 0xbe, 0x3f, 0xf3, 0xb2, 0xdf,
-0xff, 0xfe, 0xfe, 0xff, 0xfd, 0x7f, 0xfb, 0xff,
-0x7b, 0xd7, 0xd3, 0xff, 0xbf, 0x5f, 0xfd, 0xff,
-0xdf, 0xff, 0x7e, 0xff, 0xff, 0xfd, 0x7f, 0xfe,
-0xe7, 0xfd, 0xdf, 0x6f, 0xc7, 0xfe, 0xff, 0xff,
-0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0d, 0xff,
-0xff, 0x5a, 0xdf, 0xff, 0xbf, 0xfb, 0xff, 0xdf,
-0x9d, 0xff, 0xfd, 0x7a, 0x6f, 0x97, 0xff, 0xaf,
-0xff, 0xff, 0xbf, 0xe7, 0xee, 0xff, 0xff, 0xfd,
-0xfd, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5,
-0xde, 0xef, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xfc,
-0xf7, 0xff, 0xcf, 0xe3, 0x7f, 0xff, 0x3f, 0xcf,
-0xf4, 0xfd, 0x3f, 0xfd, 0xff, 0xbc, 0xff, 0xff,
-0xef, 0x67, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfa, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xdf, 0xff, 0xfd, 0xdf, 0x7f, 0xfb, 0xf6,
-0xbd, 0xfe, 0xdf, 0xeb, 0xef, 0xdd, 0xfe, 0x5f,
-0x7f, 0xfd, 0xfc, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x33, 0xff, 0xbf, 0xdd, 0xff, 0x7f,
-0x5f, 0x97, 0xf9, 0xff, 0xff, 0xbd, 0xeb, 0xed,
-0xdc, 0x7b, 0x8c, 0xa9, 0xdf, 0x6f, 0xdb, 0xf7,
-0xfb, 0xdf, 0x7a, 0x5f, 0xd7, 0xf1, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xea, 0xff, 0xef, 0xff, 0x3b,
-0xff, 0xfb, 0xfe, 0xbf, 0xbf, 0x76, 0xdf, 0xff,
-0xef, 0x3f, 0xee, 0xdf, 0xbf, 0xf7, 0xcd, 0xfb,
-0xbe, 0xff, 0xff, 0x0e, 0xdb, 0xfe, 0xbf, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xfa, 0x1f, 0xff, 0xff,
-0xf7, 0xf7, 0xff, 0x5b, 0xdf, 0xd7, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xfd, 0xfd, 0xdf, 0x9f, 0xfd,
-0x7c, 0xff, 0x57, 0xfd, 0xff, 0xff, 0x77, 0xbf,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xc2, 0xff,
-0xef, 0xd7, 0x1f, 0xff, 0xff, 0x3c, 0xff, 0xe7,
-0xcf, 0xff, 0xff, 0xff, 0x3e, 0xff, 0xb7, 0xfb,
-0xdf, 0xff, 0xf3, 0xef, 0xff, 0xff, 0xff, 0xbf,
-0x3f, 0xfb, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xca,
-0x2e, 0xfd, 0xf9, 0xfb, 0xff, 0xff, 0xbf, 0xdf,
-0xff, 0xcd, 0xff, 0xff, 0xff, 0xf7, 0xcf, 0xf7,
-0xff, 0x7f, 0xff, 0xf7, 0x7c, 0xff, 0xff, 0xff,
-0xf3, 0xeb, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xd7, 0x8e, 0x5f, 0xbf, 0x5e, 0xff, 0xd3, 0xff,
-0xaf, 0x5b, 0xfe, 0xdf, 0xff, 0xff, 0x3f, 0xca,
-0xfe, 0xfc, 0xff, 0xff, 0xff, 0xbf, 0xaf, 0xff,
-0x9f, 0xf2, 0x9c, 0xf7, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xc4, 0xbf, 0xf7, 0xef, 0xf3, 0xfe,
-0xff, 0x95, 0xfd, 0xff, 0x7f, 0xff, 0xff, 0xcf,
-0xfb, 0x5f, 0xdf, 0x3f, 0xff, 0xff, 0xff, 0x35,
-0xe7, 0xf3, 0xfe, 0xc7, 0x3a, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xd8, 0x9f, 0xfe, 0xfe, 0xff,
-0xdf, 0xa6, 0xf5, 0xdf, 0xae, 0xd9, 0xff, 0xdf,
-0xf7, 0xf6, 0x89, 0x73, 0x7f, 0xbf, 0xff, 0xfb,
-0xfe, 0x9f, 0x75, 0xfb, 0xa2, 0x3e, 0xdf, 0xac,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0x22, 0xdf, 0xdd,
-0xff, 0x53, 0xd6, 0xf5, 0xbd, 0xf5, 0xf9, 0xdf,
-0xff, 0xff, 0xfd, 0xe9, 0x78, 0x7f, 0xf7, 0xff,
-0xff, 0x77, 0xd3, 0xde, 0x1b, 0xd6, 0x77, 0x9d,
-0xf7, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x7f,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xfe, 0xbe,
-0xef, 0xff, 0xff, 0xe7, 0xff, 0xaf, 0xef, 0xd6,
-0xf7, 0xff, 0xfb, 0xfa, 0xff, 0xff, 0xff, 0xeb,
-0xca, 0xfe, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf9,
-0x4f, 0xff, 0x7f, 0xdf, 0xf7, 0xff, 0xff, 0x4f,
-0xd7, 0xf6, 0xff, 0xdf, 0xf7, 0xff, 0xf5, 0x7d,
-0xff, 0xdf, 0xff, 0xff, 0x7f, 0x4f, 0xdb, 0xff,
-0xfd, 0x31, 0x4f, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xb3, 0xff, 0xff, 0xff, 0xe7, 0xfb, 0x7e,
-0xfd, 0xb7, 0xcd, 0xd9, 0xf5, 0xfd, 0x7f, 0xed,
-0xf3, 0x77, 0xff, 0xcd, 0xfb, 0xff, 0xfd, 0xff,
-0x5f, 0xff, 0xf6, 0xfd, 0xb7, 0xdf, 0xff, 0xff,
-0xff, 0xff, 0xf3, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xbf, 0xeb, 0xbf, 0xf6, 0x7b, 0xfe, 0x7f, 0x9f,
-0xff, 0xfe, 0xbe, 0x6f, 0xf2, 0xff, 0xaf, 0xef,
-0xfb, 0xf6, 0x7f, 0xbf, 0xfb, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x67, 0xff, 0xed, 0xfb,
-0xf6, 0xf9, 0xbb, 0x67, 0xfb, 0xfe, 0x7f, 0x9f,
-0xe7, 0xfb, 0xd6, 0xfb, 0x8e, 0xfb, 0xe6, 0xed,
-0xbe, 0x67, 0x18, 0xf6, 0xed, 0x9f, 0xe6, 0xfb,
-0xfe, 0xff, 0xbf, 0xef, 0xfe, 0x91, 0xbf, 0xff,
-0xfb, 0xfc, 0xfd, 0xbf, 0xcf, 0xfb, 0xef, 0xff,
-0xfe, 0xff, 0xbf, 0xff, 0xff, 0xfe, 0xff, 0xe6,
-0xfd, 0xff, 0x7f, 0xff, 0xe6, 0xff, 0x3f, 0xef,
-0xfb, 0xef, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xbf,
-0xff, 0xfd, 0xff, 0xbf, 0xdf, 0xfb, 0xfb, 0xff,
-0xff, 0xff, 0xbf, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xa7, 0xff, 0xff, 0xed, 0xff, 0x7f, 0xff, 0xd1,
-0xf7, 0xfd, 0x1f, 0xee, 0xf9, 0xfe, 0xff, 0x3f,
-0xcf, 0xe7, 0xff, 0x7f, 0x7f, 0xd3, 0xb4, 0xff,
-0xff, 0xc7, 0xf1, 0xb7, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xae, 0xff, 0xff, 0xff, 0xdf, 0xf7, 0xdd,
-0xf2, 0xff, 0xab, 0xaf, 0xfe, 0xff, 0xbf, 0xff,
-0xeb, 0xfa, 0xfe, 0xe9, 0xf7, 0xfd, 0xfa, 0xfc,
-0x8f, 0xf7, 0xfb, 0xfe, 0xfe, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0x9f, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0x5f, 0xd7, 0xf5, 0xff, 0xf7, 0xff,
-0xf7, 0xf5, 0xff, 0x7b, 0xbf, 0xff, 0xff, 0xf7,
-0x5f, 0xf7, 0xef, 0xff, 0x3f, 0xcf, 0xd7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xd1, 0xff, 0xff, 0xe7,
-0xf9, 0xfe, 0x7f, 0x89, 0xe6, 0xf8, 0x9e, 0x7f,
-0x9d, 0xe6, 0xf8, 0xbe, 0x6f, 0x9f, 0xf9, 0xfe,
-0x7f, 0x8b, 0xe2, 0xf9, 0xfe, 0x6f, 0x9b, 0xe3,
-0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff, 0xd7,
-0xfe, 0x7f, 0x9f, 0xff, 0xf7, 0xfd, 0xff, 0xff,
-0xfb, 0xf7, 0xfd, 0x7f, 0x5f, 0xff, 0xfd, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xcf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xaf, 0xff,
-0xfa, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfb, 0xbf,
-0xef, 0xff, 0x7f, 0xbf, 0xaf, 0xeb, 0xfe, 0xff,
-0xbf, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xcd, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xff, 0x7f, 0xdf, 0xff, 0xff, 0xff, 0x7f, 0xdf,
-0xd7, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f,
-0xff, 0xf7, 0xfd, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0x3f, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xbf, 0xed, 0xeb, 0xff, 0xdf, 0xf7, 0xef,
-0xeb, 0x3a, 0xdf, 0xfd, 0xfd, 0xff, 0xfe, 0xbf,
-0xad, 0xff, 0xff, 0xff, 0xff, 0xbd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x77, 0xff, 0xeb, 0xb6, 0xff,
-0xfb, 0x77, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xf2, 0xff, 0x3f, 0x67, 0xf2, 0xbf, 0xff, 0x2f,
-0xcb, 0xf6, 0xfc, 0xbf, 0x2f, 0xfb, 0xfa, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xfe, 0xbf, 0xff, 0xaf,
-0x69, 0xfa, 0x3e, 0xb7, 0xa7, 0xe1, 0xfa, 0xfe,
-0x3f, 0xa4, 0xe9, 0xfa, 0xee, 0x3d, 0xea, 0xfa,
-0xee, 0xbd, 0xab, 0xeb, 0x72, 0xae, 0xb7, 0xa5,
-0xeb, 0xfa, 0xfe, 0xbf, 0xaf, 0xf7, 0xdf, 0xff,
-0xff, 0x9f, 0xff, 0xfe, 0xff, 0xdf, 0xbc, 0xfd,
-0xff, 0x3f, 0xff, 0xfb, 0x7f, 0xdd, 0x7f, 0xed,
-0xff, 0xef, 0x3f, 0xfb, 0xce, 0xfb, 0xfb, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1,
-0x7d, 0xdf, 0xff, 0xfd, 0xff, 0xff, 0xbf, 0xdf,
-0xfd, 0xf3, 0xdf, 0xff, 0xfb, 0xfd, 0xff, 0xff,
-0xdf, 0x7f, 0xf5, 0xaf, 0xbf, 0x7f, 0xfb, 0xdb,
-0xfa, 0xbf, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0x5f, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xee,
-0xff, 0xfe, 0xef, 0xfb, 0xdf, 0xff, 0xff, 0xfe,
-0xed, 0xe9, 0xfb, 0xbf, 0xef, 0xfb, 0xde, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0xcf, 0xff, 0xff, 0xeb, 0xf9, 0xfe,
-0xbf, 0x8d, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xee, 0xef, 0xba, 0xfe, 0x3f, 0x9f,
-0xff, 0xe8, 0xff, 0xbf, 0xbf, 0xe3, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xf5, 0x7f,
-0xfd, 0xfb, 0xfb, 0xfb, 0xf5, 0x7f, 0xfe, 0xdf,
-0xff, 0xfd, 0xff, 0xff, 0xff, 0x99, 0x6f, 0x6e,
-0xff, 0xdf, 0xff, 0xff, 0xdf, 0xfe, 0xf6, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf8, 0xbf, 0xff, 0xfd,
-0xfe, 0xdb, 0xfb, 0x5f, 0xfb, 0xcf, 0xfb, 0xbf,
-0xed, 0xfb, 0xff, 0xff, 0xbc, 0xee, 0xce, 0xf3,
-0xbf, 0xff, 0x2f, 0xc3, 0xeb, 0xbf, 0xe3, 0x3b,
-0xce, 0xff, 0xff, 0xef, 0xff, 0xff, 0xd7, 0xff,
-0xfe, 0xfe, 0xfd, 0xef, 0x57, 0xdf, 0xf5, 0xbd,
-0xfb, 0xfb, 0xff, 0xff, 0xfd, 0xb7, 0x5f, 0xd6,
-0x7d, 0xbf, 0xfb, 0xbe, 0xf5, 0xfc, 0xef, 0xef,
-0xdf, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
-0xff, 0xff, 0xff, 0xff, 0xe7, 0xbf, 0xde, 0xff,
-0xf9, 0xe3, 0xff, 0x7f, 0xd7, 0xfd, 0xef, 0xff,
-0xdb, 0xbf, 0xe9, 0x3e, 0xdf, 0xff, 0xfd, 0xed,
-0xff, 0xfb, 0xdf, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x1f, 0xef, 0xff, 0xbf, 0x03, 0x7c, 0xff,
-0xff, 0xcf, 0x73, 0xbc, 0x7f, 0xfd, 0xfc, 0xff,
-0xcc, 0xef, 0x4e, 0xff, 0xfc, 0xdf, 0xf1, 0xcf,
-0xf3, 0xec, 0x77, 0xf7, 0xcf, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xeb, 0xfe, 0xbf, 0xff, 0xbf, 0x7f,
-0xdf, 0xff, 0xf9, 0xff, 0x6f, 0xf7, 0xff, 0xff,
-0xdf, 0xf7, 0xdf, 0xed, 0xff, 0xef, 0xae, 0xff,
-0x7d, 0xfb, 0x7f, 0xf7, 0xdf, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff, 0xfe, 0x5f,
-0xeb, 0xf9, 0xfd, 0x7f, 0x5f, 0xa7, 0xff, 0xd7,
-0xf7, 0xfd, 0xff, 0xf9, 0xfa, 0x15, 0xb7, 0xfd,
-0xf7, 0xfb, 0x9f, 0xeb, 0xef, 0xef, 0xff, 0x8f,
-0xff, 0xff, 0xdf, 0xff, 0xee, 0x27, 0xff, 0xff,
-0xfb, 0xfe, 0xde, 0x37, 0xed, 0xff, 0x7c, 0xff,
-0xdf, 0xff, 0xff, 0xfe, 0xff, 0x8e, 0xe9, 0xa8,
-0xdf, 0xbf, 0xef, 0xfa, 0x5e, 0xdf, 0xf7, 0xff,
-0xd7, 0xdf, 0xff, 0xff, 0xff, 0xbd, 0xa1, 0xff,
-0xff, 0xfe, 0xff, 0xdf, 0xff, 0xfd, 0xff, 0xff,
-0xdd, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xcd, 0xff,
-0xff, 0xff, 0xd7, 0xfb, 0xfc, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf9,
-0xb1, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xd7,
-0xdf, 0xbd, 0x5c, 0xcf, 0x3e, 0xcf, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfc, 0x36, 0xbf, 0xff, 0xf7, 0xff, 0xff, 0x3f,
-0xcf, 0x93, 0xfc, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0x69, 0xbf, 0xf3, 0xcd, 0xea, 0xfb, 0xcb, 0xff,
-0xff, 0xff, 0xfb, 0xcf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x7c, 0xf7, 0xff, 0xff, 0xf9, 0xaf,
-0xfb, 0xca, 0xde, 0xaf, 0xef, 0xff, 0xfb, 0xf4,
-0xbc, 0xff, 0xfb, 0x56, 0xb9, 0xfa, 0x7e, 0xd2,
-0xf3, 0xf7, 0xef, 0xff, 0xd2, 0xf5, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xbc, 0x9b, 0xff, 0xfe, 0x7f,
-0x95, 0xfd, 0xf3, 0x5f, 0xcf, 0xf7, 0xff, 0xff,
-0x7e, 0xd7, 0x9f, 0xff, 0xf9, 0xd7, 0xff, 0xcf,
-0xf9, 0x5e, 0x7f, 0xb7, 0xff, 0xf9, 0x5e, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff,
-0xff, 0xf4, 0xff, 0xac, 0xc9, 0xd2, 0x6c, 0xbb,
-0x7f, 0xef, 0xef, 0xff, 0xff, 0x7d, 0x5b, 0xdd,
-0xff, 0xff, 0xe9, 0xff, 0xf0, 0xb3, 0x77, 0xe9,
-0xe2, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x6f,
-0xff, 0xff, 0xf5, 0x9f, 0xf7, 0xa9, 0x3e, 0x47,
-0x9f, 0xff, 0xfd, 0xdf, 0xf7, 0xfd, 0x4d, 0x7f,
-0x5a, 0x3d, 0x6f, 0x79, 0x3e, 0xf7, 0x96, 0xaf,
-0xfd, 0x34, 0x5d, 0xbf, 0xff, 0xff, 0xff, 0xf7,
-0xe7, 0xff, 0xff, 0xff, 0xfa, 0xfe, 0xb7, 0xaf,
-0xa9, 0xea, 0xdf, 0xff, 0xbf, 0xeb, 0xff, 0xff,
-0xff, 0xeb, 0xff, 0xff, 0xfe, 0xaf, 0xbf, 0xea,
-0xff, 0xfd, 0x2f, 0xeb, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xe9, 0xbf, 0xff, 0xff, 0xff, 0x5f, 0xdf,
-0xf4, 0xfd, 0x3b, 0x7f, 0xff, 0xf7, 0xfd, 0x7f,
-0xff, 0xf5, 0xfd, 0x7f, 0xff, 0xdf, 0xf4, 0xfd,
-0xff, 0x5f, 0xfb, 0xa4, 0xfd, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xf9, 0x2e, 0xff, 0xff, 0xff, 0xff,
-0x7f, 0xc7, 0xdf, 0xf7, 0xbf, 0x7f, 0xff, 0xfb,
-0x7f, 0xff, 0xbf, 0x5f, 0xfc, 0xff, 0x9f, 0xef,
-0xdb, 0x7e, 0xdf, 0x7f, 0x6f, 0xdb, 0x7d, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0x17, 0xfe, 0xff, 0xff,
-0xef, 0xdb, 0xfe, 0xff, 0xff, 0xef, 0xdb, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xe7, 0xff, 0x2b, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xee, 0xbf, 0xbf,
-0x6f, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x7f, 0xee,
-0xfd, 0xbc, 0x6e, 0xdb, 0xb6, 0x7f, 0xb3, 0x6f,
-0xbb, 0xfe, 0xdf, 0xb7, 0xed, 0xf9, 0xd7, 0xbb,
-0xef, 0xdb, 0xd6, 0x7f, 0xbf, 0x6f, 0xf9, 0xbe,
-0x6f, 0xbe, 0xef, 0xfb, 0xfe, 0xfd, 0xfa, 0x9b,
-0xff, 0xff, 0x7f, 0xef, 0x9b, 0xe6, 0xff, 0xff,
-0xdf, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xfc, 0xef, 0xf7, 0xfe, 0xff, 0xff, 0x6f, 0xbb,
-0xfe, 0xff, 0xbe, 0xff, 0xff, 0xff, 0xfd, 0xbd,
-0x9b, 0xff, 0xff, 0xff, 0xfb, 0xfd, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xf7, 0xef, 0xff, 0xff, 0xbf, 0xff, 0xf7,
-0xfe, 0xfe, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xfa, 0x5f, 0xff, 0xfb, 0x7f, 0xdf, 0xff,
-0xfd, 0x3f, 0xff, 0xdf, 0xff, 0xfd, 0x7f, 0xff,
-0xd7, 0xb4, 0x6f, 0xdf, 0xf7, 0xfd, 0xfd, 0x3f,
-0xdf, 0xff, 0xf4, 0x7d, 0x3b, 0xff, 0xff, 0xff,
-0xff, 0xfa, 0xff, 0x6f, 0xff, 0xff, 0xdd, 0xfe,
-0xae, 0xef, 0xaf, 0x7f, 0xde, 0xaf, 0xff, 0xa7,
-0xff, 0xfa, 0x7e, 0x8f, 0xfc, 0xb3, 0x7f, 0xdf,
-0xaf, 0xfd, 0xfe, 0xb6, 0xbf, 0xaf, 0xfe, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xd1, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xd7, 0xf5, 0xfb, 0xff, 0x5e, 0xff,
-0xff, 0xff, 0xfe, 0x5e, 0xb7, 0xfb, 0xff, 0xde,
-0xff, 0xf5, 0xdb, 0xfb, 0x5d, 0xd3, 0xf5, 0xef,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x3f, 0xff,
-0xfe, 0x7f, 0x9f, 0xe2, 0xf8, 0xbe, 0x7f, 0x9b,
-0xe7, 0xf9, 0xfc, 0x7f, 0x8b, 0xe6, 0x79, 0xff,
-0x8b, 0xe7, 0xf8, 0xbe, 0x7f, 0x8b, 0xe2, 0xf8,
-0xbe, 0x6f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0xb7,
-0xff, 0xff, 0xfe, 0xfd, 0x7f, 0xff, 0xf7, 0xfe,
-0x7f, 0xff, 0xef, 0xd7, 0xef, 0xfd, 0x3f, 0x4f,
-0xff, 0xff, 0x7f, 0xef, 0xd7, 0xfe, 0xff, 0xff,
-0x47, 0xd7, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xea, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xfa,
-0xff, 0xff, 0xff, 0xfd, 0xfa, 0xff, 0xff, 0xa7,
-0xeb, 0xff, 0xff, 0xbf, 0xfd, 0xfa, 0xff, 0xdf,
-0xef, 0xeb, 0xfa, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xf6, 0xdf, 0xfe, 0xff, 0xfb, 0xfd, 0xff,
-0xff, 0xdf, 0xdf, 0xfd, 0xff, 0xff, 0xfe, 0xff,
-0xfd, 0xff, 0x3f, 0xbf, 0xfd, 0xff, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0x7f, 0xdf, 0xf7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xff, 0x7f,
-0xb7, 0xbd, 0xeb, 0xfb, 0x7f, 0xb7, 0xf7, 0xff,
-0xdf, 0xff, 0x9f, 0xed, 0xff, 0xde, 0xff, 0xf7,
-0xeb, 0xff, 0x7f, 0xb7, 0xa7, 0xef, 0xfa, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0x2f, 0xff, 0xff,
-0xaf, 0xfb, 0xff, 0xfc, 0xbf, 0x7f, 0xd9, 0xff,
-0x7d, 0x1f, 0xff, 0xdf, 0xfc, 0xff, 0x2f, 0xd3,
-0xf6, 0xbc, 0xbf, 0x6f, 0xff, 0xff, 0xfc, 0x9d,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xef, 0xfb,
-0xfa, 0xfe, 0xbf, 0xaf, 0xeb, 0xba, 0xb6, 0xbf,
-0xaf, 0xeb, 0xda, 0xfe, 0xad, 0x8b, 0xe3, 0x4e,
-0xb7, 0xad, 0xeb, 0x58, 0xd6, 0xbf, 0xab, 0xeb,
-0xba, 0xfe, 0xbf, 0xaf, 0xeb, 0xfa, 0xff, 0xc9,
-0xff, 0xff, 0xff, 0x3f, 0x7f, 0xff, 0xef, 0xfb,
-0x3e, 0x37, 0xbf, 0xff, 0xff, 0xf7, 0xf7, 0xf3,
-0xbf, 0xf7, 0xbf, 0xcf, 0xff, 0xfd, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
-0xf9, 0x1f, 0xff, 0xfd, 0xbf, 0x7f, 0xff, 0x7f,
-0xff, 0xaf, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfe,
-0x7a, 0xfb, 0xfe, 0xbf, 0xb7, 0xaf, 0xfe, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xfd,
-0xff, 0xde, 0x85, 0xfb, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xdd, 0xef, 0xbf, 0x3f, 0xff, 0xf3, 0xff,
-0xff, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0xbf, 0xec, 0x7f, 0xff, 0xff, 0xbf,
-0xaf, 0xeb, 0xfe, 0xfe, 0x79, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xbf, 0x7f, 0xfe, 0x3d, 0xaf, 0x68,
-0xcb, 0x3a, 0x5f, 0xee, 0xab, 0xfb, 0xfa, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xf8, 0x9f, 0xff, 0xff,
-0x5f, 0xf5, 0xdf, 0x77, 0xbf, 0xff, 0xfb, 0xff,
-0xf7, 0xff, 0xff, 0xfd, 0xff, 0xdf, 0x1f, 0xdd,
-0xdf, 0x76, 0xed, 0xff, 0xef, 0xfd, 0x7e, 0xdd,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0xff,
-0xff, 0xbf, 0xff, 0xdf, 0xbf, 0xf3, 0xfe, 0xef,
-0xbb, 0xfb, 0xff, 0xff, 0x7f, 0xbf, 0xcd, 0xee,
-0xfe, 0x3f, 0x8f, 0xfb, 0xfe, 0xee, 0xbb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xe3,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xfd, 0xbf,
-0x3f, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xf7,
-0xfd, 0x7d, 0xff, 0xf5, 0xfc, 0xff, 0x17, 0xce,
-0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x6f, 0xbf, 0xff, 0xff, 0xbf, 0xff, 0xbd,
-0xef, 0xfb, 0xf6, 0xff, 0xf3, 0xff, 0xff, 0x5e,
-0x6f, 0xad, 0xb9, 0xbf, 0xff, 0xff, 0xef, 0xff,
-0xbb, 0xfd, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xd5, 0xf7, 0xff, 0xfc, 0xbf, 0xff,
-0xdf, 0xff, 0xf8, 0xfb, 0xff, 0xff, 0xfe, 0x5f,
-0xff, 0xfb, 0xfb, 0xf7, 0xce, 0x1f, 0xfb, 0xe2,
-0xdf, 0xef, 0xb9, 0xfe, 0xfe, 0x7f, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xbe, 0xff, 0xff, 0xdf,
-0xff, 0xfb, 0xf9, 0xff, 0x9f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xfa, 0xff, 0xfb, 0xff,
-0xe7, 0xdf, 0x7f, 0x77, 0xff, 0xfb, 0xfb, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xbf, 0xff,
-0xfb, 0xff, 0xf7, 0xfd, 0x33, 0xff, 0xfd, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0x7f, 0xdb, 0xc7, 0x5d, 0x7f, 0x1b, 0xf7, 0xf3,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xbf,
-0xff, 0xdf, 0xff, 0xff, 0xfe, 0xfa, 0xff, 0xf9,
-0xeb, 0xff, 0xff, 0xdf, 0xf7, 0xff, 0xfb, 0xff,
-0xf7, 0xcd, 0x79, 0xee, 0xf6, 0x3f, 0xf7, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
-0x5f, 0xef, 0xff, 0xff, 0xff, 0x7f, 0xd7, 0x7f,
-0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
-0xff, 0xfd, 0xfd, 0xfc, 0xdf, 0xdd, 0xfd, 0xf7,
-0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x3f, 0xff, 0xff, 0xdf, 0xf3, 0xfd, 0xff, 0xff,
-0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x3f, 0xff, 0xbf, 0x3f, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xc9, 0x6b, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0x9f, 0xbf, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0xef, 0xdf, 0xf3, 0xfc, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xd7, 0x6f, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xfc, 0xb7, 0xff, 0xff, 0xf4, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x9f, 0xe7,
-0xff, 0xff, 0x5b, 0xff, 0xfe, 0xbd, 0x27, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xd1, 0xbf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x36, 0xff, 0xff, 0xfe,
-0xd7, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,
-0xfc, 0xff, 0xff, 0xef, 0xff, 0x7e, 0xd7, 0xb6,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0xb7,
-0xff, 0xff, 0xff, 0xff, 0xfa, 0xfe, 0xb7, 0xaf,
-0xeb, 0xef, 0xff, 0xff, 0xff, 0xeb, 0xff, 0x7f,
-0xaf, 0xfb, 0xff, 0xf5, 0xfe, 0x7f, 0xeb, 0x42,
-0x79, 0xbb, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x46, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xd6,
-0xf5, 0x7d, 0x5f, 0xf7, 0xff, 0xff, 0xfd, 0x5f,
-0x7e, 0xb5, 0x7f, 0xde, 0xf7, 0xfd, 0x8f, 0x69,
-0x6e, 0x4d, 0x1f, 0xf7, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0x7a, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xeb,
-0xfa, 0xfe, 0xbf, 0xaf, 0xeb, 0xff, 0xf5, 0xff,
-0xaf, 0xff, 0xde, 0xbf, 0xff, 0xbf, 0xff, 0xff,
-0xf7, 0xad, 0xab, 0xfa, 0xfe, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfa, 0x1f, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0x7f, 0x5f, 0xd7, 0xf5, 0xe9, 0x7f, 0xff,
-0xff, 0xf5, 0xff, 0xf1, 0xd7, 0xff, 0xfd, 0xff,
-0x7f, 0xff, 0xa5, 0xfd, 0x3f, 0x7f, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf3, 0xfe, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0xdf, 0xe7, 0xff,
-0xff, 0xff, 0xbf, 0xef, 0xf7, 0xf7, 0xff, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xfe,
-0x7f, 0xbf, 0xff, 0xfa, 0xff, 0xbf, 0xbf, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x87,
-0xff, 0xef, 0xfb, 0xfe, 0xff, 0xbf, 0x6f, 0xfb,
-0x7e, 0xff, 0xb7, 0xef, 0xfb, 0xfe, 0xff, 0xbc,
-0x7b, 0xf6, 0xef, 0xbf, 0xee, 0xdb, 0xf6, 0xf9,
-0x9f, 0xef, 0xfb, 0x7e, 0xff, 0xbf, 0xef, 0xff,
-0x89, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xfc, 0xff, 0xbf, 0xef, 0xf3, 0xfc,
-0xf9, 0xff, 0xef, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xda, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xbf, 0xdf, 0xf7, 0xfe,
-0xff, 0xbf, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x25, 0xff, 0xff, 0xbf, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xef, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xcf, 0xef, 0xff, 0xfb, 0xde,
-0xb7, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbe, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdb, 0xbf, 0xff, 0xe7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xf7, 0xdf, 0xf7,
-0xfd, 0xdf, 0x7d, 0xdf, 0xbb, 0xeb, 0xdf, 0xaf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f,
-0xaf, 0xff, 0xfe, 0xff, 0xff, 0xbf, 0xfd, 0x7b,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3,
-0xff, 0xff, 0xe7, 0xf9, 0xfe, 0x7f, 0x8f, 0xe7,
-0xf9, 0xbe, 0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f,
-0x9e, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf8, 0xfe,
-0x2f, 0x1b, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7,
-0xf5, 0x7f, 0xff, 0xff, 0xef, 0xff, 0xfe, 0xfd,
-0x7f, 0xef, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xfc, 0x7f, 0xff, 0xfb, 0xfe, 0x7f, 0xbf, 0xe7,
-0xd7, 0xfd, 0xeb, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xde, 0x6f, 0xff, 0xff, 0xfd, 0xff, 0xff,
-0xdf, 0xaf, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xbf, 0xff, 0xff, 0x7f, 0xff, 0xf7,
-0xef, 0xfa, 0xfe, 0xff, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xcd, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xff, 0xf9, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xf7, 0xff, 0xff, 0x7e, 0xf7, 0xf7, 0xf9, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0x7f, 0xef, 0xed,
-0xff, 0x7f, 0xdf, 0xf7, 0xef, 0x7b, 0xf6, 0xb7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff,
-0xfd, 0xaf, 0x7f, 0xdf, 0xf6, 0x7c, 0xbf, 0x73,
-0xdb, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec,
-0xfd, 0xff, 0xab, 0xeb, 0xfa, 0xbe, 0xbf, 0xaf,
-0xeb, 0xfa, 0xfe, 0xbf, 0xaf, 0xeb, 0xfa, 0xfe,
-0xad, 0xeb, 0x7a, 0xde, 0xbd, 0xae, 0xcb, 0x32,
-0xf4, 0xb7, 0xaf, 0xeb, 0xfa, 0xfe, 0xbf, 0xaf,
-0xf5, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0x3f, 0xff, 0xff, 0xfc,
-0x78, 0xdf, 0xff, 0xf3, 0xfe, 0xff, 0xff, 0x9d,
-0xff, 0xff, 0xff, 0x3f, 0xef, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xc9, 0xfd, 0xff, 0xf7, 0xfd, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xaf, 0xff, 0xff, 0xff,
-0xfe, 0xbf, 0xf9, 0xdf, 0x7f, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xf9, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xe2, 0x5f, 0xff, 0xfd, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xdc, 0xef, 0xbf, 0xbe,
-0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xa7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xa7, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfe,
-0xfe, 0xaf, 0xef, 0xa7, 0xf8, 0xfe, 0x3f, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xf5, 0xdf, 0xff,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x7b,
-0xf5, 0xbd, 0xfb, 0x7f, 0xbf, 0xff, 0xbf, 0xef,
-0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfe,
-0x1f, 0xdf, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff,
-0xfa, 0xff, 0xff, 0xfa, 0xfe, 0xbf, 0xef, 0x7a,
-0xff, 0xbe, 0xef, 0xfb, 0xff, 0xff, 0xef, 0xff,
-0xff, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xfb, 0xdf, 0x77, 0xff, 0x6f, 0x9e, 0xf3,
-0xfc, 0xef, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf4, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xab, 0xf7, 0xff, 0xed, 0xfb,
-0x6f, 0xbf, 0xeb, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xff, 0xff, 0xf3, 0xfd, 0x5f, 0x7f, 0xff, 0xff,
-0xff, 0xef, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xbf, 0x8f, 0x7f, 0xbf, 0xff,
-0xff, 0xfd, 0x4f, 0xf3, 0xfc, 0xfd, 0x3f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xef, 0xbf,
-0xff, 0xfb, 0xff, 0xfd, 0xff, 0x7d, 0xdd, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xf0, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x5d, 0xff, 0xaf, 0xe3, 0xff, 0x1f, 0xc7, 0xf9,
-0xfe, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x07, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xca, 0xbf, 0xfb, 0xbf, 0xef, 0xfb, 0xfe,
-0xff, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xb1, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xbf, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xf7, 0xff, 0xff, 0xf7, 0xff, 0xef, 0xfb, 0xfe,
-0xdf, 0xd7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xfe, 0x0b, 0xff, 0xff, 0xbf, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7,
-0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xd4, 0xff, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfd, 0xe6, 0xd7, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xbf,
-0xff, 0xff, 0x9f, 0xff, 0xbc, 0xaf, 0x4b, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xbe, 0xcb,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
-0xd7, 0xff, 0xff, 0xff, 0xfe, 0x5f, 0xb5, 0xfd,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7d,
-0xd9, 0x7f, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbf, 0x4f, 0xd2, 0xc9,
-0xbd, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xea, 0x2d, 0xff, 0xff, 0x77, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0x7b, 0xdf,
-0x5a, 0x9f, 0xa7, 0xbf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0x4d, 0xff, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xfe,
-0xff, 0xeb, 0xfa, 0xde, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f, 0xff,
-0xff, 0xff, 0xfd, 0x7f, 0x5f, 0xd7, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xbf, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x3f, 0xc7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x07,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xfb, 0xde,
-0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xe8, 0x7f, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe,
-0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbf, 0xef,
-0xfb, 0xff, 0xbf, 0xef, 0x5b, 0xf6, 0xfd, 0xbf,
-0x6f, 0xdb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe,
-0xff, 0xfb, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xfd,
-0xfe, 0xdf, 0x9b, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xd3, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf5,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xdf, 0xff, 0xef, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xaf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
-0xff, 0xfd, 0xdd, 0x77, 0x6a, 0xfb, 0xae, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0x7f, 0xff, 0xff, 0xff, 0xfd, 0xf3, 0xfd,
-0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf3, 0x3f, 0xff, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfe, 0x7f, 0x9f, 0xe2, 0xe9, 0xfe, 0x7f, 0x9f,
-0xe7, 0xf9, 0xef, 0x9f, 0xe6, 0xe9, 0xbe, 0x6f,
-0x1f, 0xe2, 0xe9, 0xfe, 0x7f, 0x9f, 0xe7, 0xf9,
-0xfe, 0x7f, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xf7, 0xf9, 0x7f, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xef, 0xfe, 0xfd, 0xbf, 0xef, 0xef, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xfd, 0xff, 0xf7, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3b, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xfe, 0xfd, 0xff, 0xd6, 0xf7, 0xbd,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
-0x3f, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xfe, 0xff, 0xf2, 0xfd, 0xff, 0xff, 0xff,
-0xf2, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xee, 0x8f, 0xff, 0xfa, 0xfe, 0xbf, 0xab, 0xeb,
-0xfa, 0xbe, 0xbf, 0xab, 0xcb, 0xfa, 0xbe, 0xbf,
-0xaf, 0xeb, 0xde, 0xaf, 0xaf, 0xeb, 0xda, 0xde,
-0xaf, 0xae, 0xea, 0xfa, 0xde, 0xbf, 0xaf, 0xeb,
-0xfa, 0xff, 0xc5, 0xff, 0xff, 0xfa, 0xfd, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xef, 0xef,
-0xff, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xf8, 0x9f, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x7e, 0x65, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xfd, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xf2, 0x7f,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe3, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0x7f,
-0xdf, 0xf7, 0xe3, 0xfe, 0x7f, 0x9f, 0xae, 0xed,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0x9f, 0xff, 0xfb, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0x7d, 0xdf, 0xdd, 0xff, 0xbf, 0x7f, 0xea,
-0xff, 0xbf, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
-0xff, 0xe1, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xe7, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xf1, 0x7f, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xd7, 0xfb, 0x7d, 0xff, 0xfd, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xfb, 0x9f, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
-0xff, 0xff, 0xfe, 0xff, 0xff, 0xd5, 0xff, 0xbf,
-0xbf, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
-0xff, 0xc7, 0xdf, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xfd, 0xbf,
-0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xfe,
-0xf7, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xb7, 0xff, 0xff, 0xbf, 0xf7, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xf3, 0xeb, 0xff, 0xff, 0xff, 0xfd, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
-0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfb, 0xff, 0xef, 0xf7, 0xfd, 0xff, 0x7f, 0xdf,
-0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfb, 0xff,
-0xff, 0xf7, 0xfa, 0xdf, 0xef, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xdf, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff, 0xf5, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfe, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x6b, 0xfc,
-0xff, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfe, 0xbf, 0xaf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xd7, 0xcf,
-0x7f, 0xef, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfb,
-0xfd, 0xbf, 0xf7, 0xfd, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff,
-0xff, 0xdb, 0x37, 0xff, 0xbd, 0x6f, 0xdf, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xeb, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xef, 0xff,
-0xff, 0xff, 0xbf, 0xa6, 0xff, 0xdd, 0xa7, 0x77,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0x5f, 0x57, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x7d,
-0xdf, 0xff, 0xff, 0xff, 0x7a, 0xdf, 0xfe, 0xff,
-0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xaf, 0xeb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xbf, 0xbf, 0xff, 0xff, 0xff, 0xf8, 0xdf, 0xff,
-0x7f, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xf5, 0xfd, 0x7f, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xd7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xd3,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xfb, 0x7e, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
-0xf5, 0x7f, 0xef, 0xf9, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x9f, 0xeb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xbe, 0x07, 0xfe, 0xed, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xff, 0xb7, 0xfb, 0xfe, 0xff, 0xbe, 0xef,
-0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xff, 0xb1, 0xbf, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xde, 0xbf, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0xff,
-0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xed, 0x7f, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xf4,
-0xff, 0xfa, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xa7, 0xe9, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xff,
-0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x7f,
-0xff, 0xff, 0xeb, 0xff, 0xff, 0xe7, 0xf9, 0xfe,
-0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7,
-0xf9, 0xfe, 0x7f, 0x9f, 0xf9, 0xfe, 0x7f, 0x1f,
-0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xe7, 0xe9, 0xfe,
-0x2f, 0x9f, 0xe7, 0xe3, 0x7f, 0xfd, 0x7f, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xd7, 0xf4,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xfe, 0x4f, 0xff, 0xaf,
-0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfa,
-0xfe, 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xed, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0x3f, 0xfd, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
-0x7f, 0xf7, 0xfd, 0xff, 0x77, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xef,
-0xfb, 0xf7, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff,
-0xff, 0xff, 0xc0, 0xdd, 0xff, 0xad, 0xeb, 0x7a,
-0xfe, 0xbf, 0xad, 0xeb, 0xfa, 0xfe, 0xbf, 0xaf,
-0xeb, 0xfa, 0xfe, 0x8f, 0xe9, 0x7a, 0xbe, 0xaf,
-0xaf, 0xea, 0xfa, 0xfe, 0xbf, 0x2b, 0xeb, 0xda,
-0xfe, 0xbf, 0xaf, 0xfd, 0x5f, 0xfd, 0xff, 0xff,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xa9, 0x5f,
-0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xfd,
-0xfb, 0xff, 0xff, 0xdf, 0xff, 0xf7, 0xbf, 0xef,
-0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff,
-0x47, 0xfd, 0xf7, 0xfd, 0xff, 0xff, 0xf7, 0xfe,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xff,
-0xff, 0xbf, 0xaf, 0xbf, 0xff, 0xfd, 0xff, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xff, 0xfe, 0xbf, 0xff,
-0xff, 0xc1, 0xff, 0xff, 0xe7, 0xf5, 0xff, 0xfd,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb,
-0xff, 0xfb, 0xdf, 0x1f, 0xfd, 0xdf, 0xff, 0xf3,
-0xff, 0xff, 0xff, 0xef, 0xf3, 0xfc, 0xff, 0xfb,
-0xff, 0xfb, 0xf6, 0xfe, 0xef, 0xff, 0xff, 0xff,
-0xfd, 0x7f, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0x97, 0xff, 0xd7, 0x75,
-0x7d, 0xbf, 0x7f, 0xfb, 0xfb, 0xfd, 0xff, 0xff,
-0xd3, 0xff, 0xfd, 0xbf, 0x2f, 0xc4, 0xff, 0xbf,
-0xff, 0xfb, 0x7f, 0xbc, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0xff, 0xff,
-0xff, 0xff, 0xef, 0xfb, 0xff, 0xff, 0xff, 0xef,
-0xff, 0xff, 0xff, 0xff, 0xe7, 0x6f, 0xf9, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x5f,
-0xf7, 0xf7, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5,
-0x7f, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xdf,
-0xfb, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
-0xff, 0xef, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0x7d, 0xff, 0x5f, 0x5f, 0xd7, 0xff,
-0xff, 0xff, 0xff, 0xd6, 0x75, 0x5f, 0xf7, 0xde,
-0xff, 0xff, 0xff, 0xdf, 0xfd, 0x3f, 0xdf, 0xf7,
-0x5d, 0xf7, 0xdd, 0xff, 0xff, 0x5f, 0xff, 0xff,
-0x7f, 0xff, 0xde, 0xe7, 0xdf, 0x8f, 0xfb, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,
-0xeb, 0xfe, 0xdf, 0xbf, 0xf7, 0xfe, 0xff, 0xbf,
-0xff, 0xff, 0xfc, 0xff, 0xbf, 0xff, 0xfb, 0xff,
-0xff, 0xbf, 0xff, 0xff, 0x95, 0xf7, 0xff, 0xff,
-0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
-0xff, 0xfd, 0xfb, 0xb3, 0xf7, 0x6f, 0xff, 0xbf,
-0xf7, 0xbf, 0xff, 0xff, 0xdf, 0xd7, 0xff, 0xff,
-0x77, 0xff, 0xef, 0xbf, 0xfb, 0xfc, 0xbb, 0xff,
-0x8f, 0xe7, 0xf9, 0x7e, 0x7f, 0x9b, 0xe7, 0xf9,
-0xfe, 0x7f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0xe7,
-0xf9, 0xf6, 0x5f, 0x9f, 0xe7, 0xf9, 0xfe, 0x7f,
-0x9f, 0xe7, 0xf9, 0xfe, 0x7f, 0x9f, 0xfc, 0x16,
-0xff, 0xf3, 0xfa, 0xff, 0xb7, 0xed, 0xfb, 0x7e,
-0xff, 0xbf, 0xcf, 0xfb, 0x7a, 0xfe, 0xbf, 0xcf,
-0xfe, 0xfe, 0xbd, 0xcf, 0xfb, 0xfe, 0xff, 0xbf,
-0xcf, 0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xff,
-0xa4, 0xcf, 0xfe, 0x7f, 0x9d, 0xe7, 0xfb, 0xfe,
-0xff, 0xbf, 0xe7, 0xb9, 0xfe, 0xff, 0xbf, 0xe7,
-0x78, 0xfd, 0x9f, 0x67, 0xfb, 0xf8, 0xf5, 0xaf,
-0x67, 0xdb, 0xfe, 0xff, 0xbf, 0xef, 0xeb, 0xac,
-0xff, 0xfe, 0x9f, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
-0xff, 0xff, 0xef, 0xff, 0xff, 0xbf, 0xf7, 0x7f,
-0xff, 0xff, 0xbf, 0xbf, 0xff, 0xff, 0xff, 0xfd,
-0xfd, 0xff, 0xfd, 0xc3, 0xff, 0xfb, 0xde, 0xf7,
-0xbf, 0xef, 0xfb, 0xbe, 0xff, 0xae, 0xe7, 0xfb,
-0xfe, 0xff, 0xbd, 0xe7, 0xfe, 0xbd, 0xbf, 0xe7,
-0xfb, 0xfe, 0xef, 0xbd, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xfb, 0xff, 0xfa, 0x7f, 0xfc, 0xff,
-0x37, 0xcf, 0xf3, 0xfc, 0xff, 0x3f, 0xcf, 0xd3,
-0x7c, 0xff, 0x3f, 0xcf, 0xf3, 0xff, 0x3f, 0xcf,
-0xf3, 0xfe, 0xef, 0x3f, 0xcf, 0xf3, 0xfc, 0xff,
-0x3f, 0xcf, 0xfb, 0xf6, 0xef, 0xfe, 0x0f, 0xff,
-0xb7, 0xed, 0xfb, 0x7e, 0xff, 0xbf, 0x6f, 0xfb,
-0x7e, 0xdb, 0xbf, 0xef, 0xfb, 0x7a, 0xdf, 0xed,
-0xeb, 0x7e, 0xff, 0xbe, 0xef, 0xdb, 0x7e, 0xff,
-0xbf, 0xcf, 0xfb, 0xfe, 0xff, 0xbf, 0xfb, 0xe5,
-0xff, 0xfb, 0xfe, 0xff, 0xbf, 0xe5, 0xf9, 0x7e,
-0x5f, 0xbf, 0xef, 0xf9, 0x7e, 0x5f, 0xbf, 0xef,
-0xfa, 0xff, 0xbf, 0xe5, 0xf9, 0x7e, 0xdf, 0xbf,
-0xe5, 0xf9, 0x7e, 0x5f, 0x97, 0xed, 0xf9, 0x7f,
-0xf9, 0xbf, 0xff, 0x5b, 0xd7, 0xf5, 0xfd, 0xff,
-0x7d, 0xdf, 0xf5, 0xfd, 0x7f, 0x7f, 0xdb, 0xf5,
-0xfd, 0x37, 0xd7, 0xf5, 0x7d, 0xf7, 0x7f, 0xd7,
-0xf5, 0xfd, 0xef, 0x7b, 0xdf, 0xf7, 0xfd, 0x7f,
-0x7f, 0xff, 0x97, 0xff, 0xf7, 0xfd, 0xff, 0x7f,
-0xff, 0xff, 0xbf, 0xff, 0x7f, 0xdf, 0xff, 0xff,
-0xff, 0x7f, 0xdf, 0xbd, 0xff, 0x7f, 0xff, 0xff,
-0xfd, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xdf, 0xff, 0xfb, 0xf0, 0xff, 0xed, 0xff, 0x6f,
-0xdb, 0xf6, 0xfd, 0xb7, 0xed, 0xdf, 0xf7, 0xfd,
-0xff, 0x7f, 0xde, 0xf5, 0xfb, 0x6f, 0xdb, 0xf7,
-0xfd, 0xbf, 0x7d, 0xdb, 0xf7, 0xff, 0xff, 0x6f,
-0xfb, 0xf7, 0xfd, 0xff, 0x7e, 0xdf, 0xff, 0xf7,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
-0xdf, 0xfb, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
-0xfb, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xfd,
-0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0x7f,
-0xd7, 0xf7, 0xfd, 0xff, 0x7d, 0xdf, 0xf7, 0xff,
-0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0x7f, 0xdf, 0xf7,
-0xfd, 0xff, 0x7f, 0xdf, 0xf7, 0xfd, 0xff, 0xf5,
-0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xbf, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xdf,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf,
-0xff, 0xfc, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
-0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xf7,
-0xfb, 0xff, 0xb7, 0xff, 0xff, 0xfe, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
-0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xbf, 0xef, 0xff, 0xff,
-0xff, 0xff, 0x7f, 0xf4, 0xff, 0xff, 0xef, 0xff,
-0xff, 0xfe, 0xff, 0xef, 0xff, 0xfe, 0xff, 0xff,
-0xcf, 0xfb, 0xff, 0xbe, 0x3f, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xfd, 0xff, 0x7f, 0xdf, 0xff, 0xfd, 0xff,
-0x7f, 0xdf, 0xf7, 0xff, 0xff, 0xff, 0xee, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
-0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe,
-0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xef, 0x8b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-0xff, 0xff, 0xf5, 0x7f, 0xff, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb,
-0xfe, 0xff, 0xbf, 0xef, 0xfe, 0xff, 0xbf, 0xef,
-0xfb, 0xfe, 0xff, 0xbf, 0xef, 0xfb, 0xfe, 0xff,
-0xbf, 0xef, 0xfb, 0xfe, 0xcf, 0xff, 0xcf, 0xf3,
-0xfc, 0xff, 0xbf, 0xef, 0xfb, 0xfc, 0xff, 0x3f,
-0xef, 0xf3, 0xfc, 0xff, 0x3f, 0xb3, 0xfc, 0xff,
-0x3f, 0xef, 0xf3, 0xfc, 0xff, 0x3f, 0xef, 0xf3,
-0xfe, 0xff, 0x3f, 0xef, 0xff, 0xfd, 0xff, 0xff,
-0xbf, 0xef, 0xff, 0xff, 0xef, 0xff, 0xfe, 0xff,
-0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf7, 0xff,
-0xfb, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
-0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
-0xfe, 0xfe, 0xbb, 0xaf, 0xeb, 0xfa, 0xff, 0xbf,
-0xae, 0xeb, 0xba, 0xfe, 0xfb, 0xee, 0xeb, 0xfb,
-0xbb, 0xae, 0xef, 0xbe, 0xff, 0xbb, 0xee, 0xef,
-0xbe, 0xff, 0xfb, 0xef, 0xfb, 0xbe, 0xef, 0xff,
-0x17, 0xff, 0x75, 0xad, 0xab, 0x4a, 0xba, 0xef,
-0xeb, 0xaf, 0x6a, 0xda, 0xae, 0xb5, 0xfb, 0x7a,
-0xd2, 0xbd, 0xab, 0x7a, 0x5f, 0xaf, 0xed, 0x7b,
-0x7a, 0x5f, 0xaf, 0xe5, 0xfa, 0xfe, 0xdb, 0xbf,
-0xe2, 0xd4, 0xff, 0xff,
diff --git a/board/esd/dasa_sim/u-boot.lds b/board/esd/dasa_sim/u-boot.lds
deleted file mode 100644
index b8fb370..0000000
--- a/board/esd/dasa_sim/u-boot.lds
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * (C) Copyright 2000
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-OUTPUT_ARCH(powerpc)
-
-SECTIONS
-{
- .resetvec 0xFFFFFFFC :
- {
- KEEP(*(.resetvec))
- } = 0xffff
-
- /* Read-only sections, merged into text segment: */
- . = + SIZEOF_HEADERS;
- .text :
- {
- arch/powerpc/cpu/ppc4xx/start.o (.text)
-
- . = env_offset;
- common/env_embedded.o (.text*)
-
- *(.text*)
- }
- _etext = .;
- PROVIDE (etext = .);
- .rodata :
- {
- *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
- }
-
- /* Read-write section, merged into data segment: */
- . = (. + 0x0FFF) & 0xFFFFF000;
- _erotext = .;
- PROVIDE (erotext = .);
- .reloc :
- {
- _GOT2_TABLE_ = .;
- KEEP(*(.got2))
- KEEP(*(.got))
- PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
- _FIXUP_TABLE_ = .;
- KEEP(*(.fixup))
- }
- __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
- __fixup_entries = (. - _FIXUP_TABLE_)>>2;
-
- .data :
- {
- *(.data*)
- *(.sdata*)
- }
- _edata = .;
- PROVIDE (edata = .);
-
- . = .;
-
- . = ALIGN(4);
- .u_boot_list : {
- KEEP(*(SORT(.u_boot_list*)));
- }
-
-
- . = .;
- __start___ex_table = .;
- __ex_table : { *(__ex_table) }
- __stop___ex_table = .;
-
- . = ALIGN(4096);
- __init_begin = .;
- .text.init : { *(.text.init) }
- .data.init : { *(.data.init) }
- . = ALIGN(4096);
- __init_end = .;
-
- __bss_start = .;
- .bss (NOLOAD) :
- {
- *(.bss*)
- *(.sbss*)
- *(COMMON)
- . = ALIGN(4);
- }
- __bss_end = . ;
- PROVIDE (end = .);
-}
diff --git a/doc/README.scrapyard b/doc/README.scrapyard
index e49de54..0a6c6b5 100644
--- a/doc/README.scrapyard
+++ b/doc/README.scrapyard
@@ -44,6 +44,8 @@ LANTEC powerpc mpc850 1b0757e 2012-10-28 Wolfgang Den
SCM powerpc mpc8260 1b0757e 2012-10-28 Wolfgang Grandegger <wg(a)denx.de>
SX1 arm arm925t 53c4154 2012-10-26
TQM85xx powerpc MPC85xx d923a5d 2012-10-04 Stefan Roese <sr(a)denx.de>
+ADCIOP powerpc ppc4xx 99bcad1 2012-09-19 Matthias Fuchs <matthias.fuchs(a)esd-electronics.com>
+DASA_SIM powerpc ppc4xx 99bcad1 2012-09-19 Matthias Fuchs <matthias.fuchs(a)esd-electronics.com>
apollon arm omap24xx 535c74f 2012-09-18 Kyungmin Park <kyungmin.park(a)samsung.com>
tb0229 mips mips32 3f3110d 2011-12-12
rmu powerpc MPC850 fb82fd7 2011-12-07 Wolfgang Denk <wd(a)denx.de>
--
1.8.3.2
4
3