mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-9039 simplify/optimize ucase.icu encoding: fixed trie bit for Case_Ignorable; ucase.icu formatVersion 3.0
X-SVN-Rev: 31204
This commit is contained in:
parent
7a1d76f8b4
commit
8a320205af
5 changed files with 438 additions and 450 deletions
icu4c/source
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2004-2011, International Business Machines
|
||||
* Copyright (C) 2004-2012, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -403,16 +403,7 @@ ucase_getType(const UCaseProps *csp, UChar32 c) {
|
|||
U_CAPI int32_t U_EXPORT2
|
||||
ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c) {
|
||||
uint16_t props=UTRIE2_GET16(&csp->trie, c);
|
||||
int32_t type=UCASE_GET_TYPE(props);
|
||||
if(props&UCASE_EXCEPTION) {
|
||||
const uint16_t *pe=GET_EXCEPTIONS(csp, props);
|
||||
if(*pe&UCASE_EXC_CASE_IGNORABLE) {
|
||||
type|=4;
|
||||
}
|
||||
} else if(type==UCASE_NONE && (props&UCASE_CASE_IGNORABLE)) {
|
||||
type|=4;
|
||||
}
|
||||
return type;
|
||||
return UCASE_GET_TYPE_AND_IGNORABLE(props);
|
||||
}
|
||||
|
||||
/** @return UCASE_NO_DOT, UCASE_SOFT_DOTTED, UCASE_ABOVE, UCASE_OTHER_ACCENT */
|
||||
|
|
|
@ -278,37 +278,36 @@ enum {
|
|||
};
|
||||
|
||||
#define UCASE_GET_TYPE(props) ((props)&UCASE_TYPE_MASK)
|
||||
#define UCASE_GET_TYPE_AND_IGNORABLE(props) ((props)&7)
|
||||
|
||||
#define UCASE_SENSITIVE 4
|
||||
#define UCASE_EXCEPTION 8
|
||||
#define UCASE_IGNORABLE 4
|
||||
#define UCASE_SENSITIVE 8
|
||||
#define UCASE_EXCEPTION 0x10
|
||||
|
||||
#define UCASE_DOT_MASK 0x30
|
||||
#define UCASE_DOT_MASK 0x60
|
||||
enum {
|
||||
UCASE_NO_DOT=0, /* normal characters with cc=0 */
|
||||
UCASE_SOFT_DOTTED=0x10, /* soft-dotted characters with cc=0 */
|
||||
UCASE_ABOVE=0x20, /* "above" accents with cc=230 */
|
||||
UCASE_OTHER_ACCENT=0x30 /* other accent character (0<cc!=230) */
|
||||
UCASE_SOFT_DOTTED=0x20, /* soft-dotted characters with cc=0 */
|
||||
UCASE_ABOVE=0x40, /* "above" accents with cc=230 */
|
||||
UCASE_OTHER_ACCENT=0x60 /* other accent character (0<cc!=230) */
|
||||
};
|
||||
|
||||
/* no exception: bits 15..6 are a 10-bit signed case mapping delta */
|
||||
#define UCASE_DELTA_SHIFT 6
|
||||
#define UCASE_DELTA_MASK 0xffc0
|
||||
#define UCASE_MAX_DELTA 0x1ff
|
||||
/* no exception: bits 15..7 are a 9-bit signed case mapping delta */
|
||||
#define UCASE_DELTA_SHIFT 7
|
||||
#define UCASE_DELTA_MASK 0xff80
|
||||
#define UCASE_MAX_DELTA 0xff
|
||||
#define UCASE_MIN_DELTA (-UCASE_MAX_DELTA-1)
|
||||
|
||||
#if U_SIGNED_RIGHT_SHIFT_IS_ARITHMETIC
|
||||
# define UCASE_GET_DELTA(props) ((int16_t)(props)>>UCASE_DELTA_SHIFT)
|
||||
#else
|
||||
# define UCASE_GET_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UCASE_DELTA_SHIFT)|0xfc00) : ((uint16_t)(props)>>UCASE_DELTA_SHIFT))
|
||||
# define UCASE_GET_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UCASE_DELTA_SHIFT)|0xfe00) : ((uint16_t)(props)>>UCASE_DELTA_SHIFT))
|
||||
#endif
|
||||
|
||||
/* case-ignorable uses one of the delta bits, see genprops/casepropsbuilder.cpp */
|
||||
#define UCASE_CASE_IGNORABLE 0x40
|
||||
|
||||
/* exception: bits 15..4 are an unsigned 12-bit index into the exceptions array */
|
||||
#define UCASE_EXC_SHIFT 4
|
||||
#define UCASE_EXC_MASK 0xfff0
|
||||
#define UCASE_MAX_EXCEPTIONS 0x1000
|
||||
/* exception: bits 15..5 are an unsigned 11-bit index into the exceptions array */
|
||||
#define UCASE_EXC_SHIFT 5
|
||||
#define UCASE_EXC_MASK 0xffe0
|
||||
#define UCASE_MAX_EXCEPTIONS ((UCASE_EXC_MASK>>UCASE_EXC_SHIFT)+1)
|
||||
|
||||
/* definitions for 16-bit main exceptions word ------------------------------ */
|
||||
|
||||
|
@ -328,12 +327,10 @@ enum {
|
|||
/* each slot is 2 uint16_t instead of 1 */
|
||||
#define UCASE_EXC_DOUBLE_SLOTS 0x100
|
||||
|
||||
/* reserved: exception bits 10..9 */
|
||||
|
||||
#define UCASE_EXC_CASE_IGNORABLE 0x800
|
||||
/* reserved: exception bits 11..9 */
|
||||
|
||||
/* UCASE_EXC_DOT_MASK=UCASE_DOT_MASK<<UCASE_EXC_DOT_SHIFT */
|
||||
#define UCASE_EXC_DOT_SHIFT 8
|
||||
#define UCASE_EXC_DOT_SHIFT 7
|
||||
|
||||
/* normally stored in the main word, but pushed out for larger exception indexes */
|
||||
#define UCASE_EXC_DOT_MASK 0x3000
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
static const UVersionInfo ucase_props_dataVersion={6,1,0,0};
|
||||
|
||||
static const int32_t ucase_props_indexes[UCASE_IX_TOP]={0x10,0x590c,0x4bb8,0x518,0x172,0,0,0,0,0,0,0,0,0,0,3};
|
||||
static const int32_t ucase_props_indexes[UCASE_IX_TOP]={0x10,0x5908,0x4bb8,0x516,0x172,0,0,0,0,0,0,0,0,0,0,3};
|
||||
|
||||
static const uint16_t ucase_props_trieIndex[9684]={
|
||||
0x2d1,0x2d9,0x2e1,0x2e9,0x2f7,0x2ff,0x307,0x30f,0x317,0x31f,0x326,0x32e,0x336,0x33e,0x346,0x34e,
|
||||
|
@ -198,413 +198,413 @@ static const uint16_t ucase_props_trieIndex[9684]={
|
|||
0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,0x2f0,
|
||||
0x2f0,0x2f0,0x2f0,0x2f0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x40,0,0,0,0,
|
||||
0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0x40,0,
|
||||
0,0,0,0,0,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0xe,0x5e,0x7e,
|
||||
0x806,0x806,0x806,0x806,0x806,0x806,0x806,0xbe,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0,
|
||||
0,0,0x40,0,0x40,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xfd,0xf815,0x14d,
|
||||
0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0x18d,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,
|
||||
0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,
|
||||
0,0,0,0,0,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x1a,0xba,0xfa,
|
||||
0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x17a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0,
|
||||
0,0,4,0,4,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0x1f9,0xf029,0x299,
|
||||
0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0x319,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0,1,0,0,0x40,0,0x40,0,0,0,0,
|
||||
0x40,0x1cd,0,0x40,0x40,0,1,0,0,0,0,0,0x806,0x806,0x806,0x806,
|
||||
0x806,0x1fe,0x806,0x806,0x806,0x806,0x806,0x806,0x23e,0x25e,0x806,0x806,0x806,0x806,0x806,0x806,
|
||||
0x806,0x806,0x806,0,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x27d,0xf805,0xf805,0xf805,0xf805,
|
||||
0xf805,0x31d,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,
|
||||
0xf805,0xf805,0xf805,0,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0x1e45,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x35e,0xffc5,0x46,0xffc5,0x46,0xffc5,0x37e,0xffd5,0x39e,0x3ed,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,1,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,
|
||||
0xffc5,0x43d,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0xe1c6,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x4bd,0x30c5,0x3486,0x46,0xffc5,0x46,0xffc5,0x3386,0x46,
|
||||
0xffc5,0x3346,0x3346,0x46,0xffc5,1,0x13c6,0x3286,0x32c6,0x46,0xffc5,0x3346,0x33c6,0x1845,0x34c6,0x3446,
|
||||
0x46,0xffc5,0x28c5,1,0x34c6,0x3546,0x2085,0x3586,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x3686,0x46,
|
||||
0xffc5,0x3686,1,1,0x46,0xffc5,0x3686,0x46,0xffc5,0x3646,0x3646,0x46,0xffc5,0x46,0xffc5,0x36c6,
|
||||
0x46,0xffc5,1,0,0x46,0xffc5,1,0xe05,0,0,0,0,0x4ee,0x51f,0x55d,0x58e,
|
||||
0x5bf,0x5fd,0x62e,0x65f,0x69d,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,
|
||||
0xffc5,0x46,0xffc5,0x46,0xffc5,0xec45,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x6cd,0x74e,0x77f,0x7bd,0x46,0xffc5,0xe7c6,0xf206,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0xdf86,1,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,1,1,1,1,1,1,0x7ee,0x46,0xffc5,0xd746,0x80e,0x82d,
|
||||
0x84d,0x46,0xffc5,0xcf46,0x1146,0x11c6,0x46,0xffc5,0x46,0xffd5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x86d,0x88d,0x8ad,0xcb85,0xcc85,1,0xccc5,0xccc5,1,0xcd85,1,0xcd45,1,1,1,1,
|
||||
0xccc5,1,1,0xcc45,1,0x8cd,0x8ed,1,0xcbd5,0xcb45,1,0x90d,1,1,1,0xcb45,
|
||||
1,0x92d,0xcac5,1,1,0xca85,1,1,1,1,1,1,1,0x94d,1,1,
|
||||
0xc985,1,1,0xc985,1,1,1,1,0xc985,0xeec5,0xc9c5,0xc9c5,0xee45,1,1,1,
|
||||
1,1,0xc945,1,0,1,1,1,1,1,1,1,1,0x11,1,1,
|
||||
0,0,0,0,4,0,1,0,0,4,0,4,0,0,0,0,
|
||||
4,0x399,0,4,4,0,1,0,0,0,0,0,0x100a,0x100a,0x100a,0x100a,
|
||||
0x100a,0x3fa,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x47a,0x4ba,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,
|
||||
0x100a,0x100a,0x100a,0,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x4f9,0xf009,0xf009,0xf009,0xf009,
|
||||
0xf009,0x639,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,
|
||||
0xf009,0xf009,0xf009,0,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0x3c89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x6ba,0xff89,0x8a,0xff89,0x8a,0xff89,0x6fa,0xffa9,0x73a,0x7d9,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,1,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,
|
||||
0xff89,0x879,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0xc38a,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x979,0x6189,0x690a,0x8a,0xff89,0x8a,0xff89,0x670a,0x8a,
|
||||
0xff89,0x668a,0x668a,0x8a,0xff89,1,0x278a,0x650a,0x658a,0x8a,0xff89,0x668a,0x678a,0x3089,0x698a,0x688a,
|
||||
0x8a,0xff89,0x5189,1,0x698a,0x6a8a,0x4109,0x6b0a,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x6d0a,0x8a,
|
||||
0xff89,0x6d0a,1,1,0x8a,0xff89,0x6d0a,0x8a,0xff89,0x6c8a,0x6c8a,0x8a,0xff89,0x8a,0xff89,0x6d8a,
|
||||
0x8a,0xff89,1,0,0x8a,0xff89,1,0x1c09,0,0,0,0,0x9da,0xa3b,0xab9,0xb1a,
|
||||
0xb7b,0xbf9,0xc5a,0xcbb,0xd39,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,
|
||||
0xff89,0x8a,0xff89,0x8a,0xff89,0xd889,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0xd99,0xe9a,0xefb,0xf79,0x8a,0xff89,0xcf8a,0xe40a,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0xbf0a,1,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,1,1,1,1,1,1,0xfda,0x8a,0xff89,0xae8a,0x101a,0x1059,
|
||||
0x1099,0x8a,0xff89,0x9e8a,0x228a,0x238a,0x8a,0xff89,0x8a,0xffa9,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x10d9,0x1119,0x1159,0x9709,0x9909,1,0x9989,0x9989,1,0x9b09,1,0x9a89,1,1,1,1,
|
||||
0x9989,1,1,0x9889,1,0x1199,0x11d9,1,0x97a9,0x9689,1,0x1219,1,1,1,0x9689,
|
||||
1,0x1259,0x9589,1,1,0x9509,1,1,1,1,1,1,1,0x1299,1,1,
|
||||
0x9309,1,1,0x9309,1,1,1,1,0x9309,0xdd89,0x9389,0x9389,0xdc89,1,1,1,
|
||||
1,1,0x9289,1,0,1,1,1,1,1,1,1,1,0x21,1,1,
|
||||
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
0x969,0x969,0x979,0x969,0x969,0x969,0x969,0x969,0x969,0x40,0x40,0x40,0x44,0x40,0x44,0x40,
|
||||
0x969,0x969,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x969,0x969,0x969,0x969,0x969,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x64,0x64,0x60,0x60,0x60,0x60,0x60,0x98c,0x64,0x60,0x64,0x60,0x64,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0x64,0x60,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,
|
||||
0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,
|
||||
0x70,0x74,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x60,0x60,0x60,
|
||||
0x60,0x60,0x64,0x60,0x60,0x99d,0x60,0x70,0x70,0x70,0x60,0x60,0x60,0x70,0x70,0x40,
|
||||
0x60,0x60,0x60,0x70,0x70,0x70,0x70,0x60,0x70,0x70,0x70,0x60,0x70,0x70,0x70,0x70,
|
||||
0x70,0x70,0x70,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
|
||||
0x46,0xffc5,0x46,0xffc5,0x40,0x40,0x46,0xffc5,0,0,0x969,0x2085,0x2085,0x2085,0,0,
|
||||
0,0,0,0,0x40,0x40,0x986,0x40,0x946,0x946,0x946,0,0x1006,0,0xfc6,0xfc6,
|
||||
0x9ed,0x806,0xabe,0x806,0x806,0xafe,0x806,0x806,0xb3e,0xb8e,0xbde,0x806,0xc1e,0x806,0x806,0x806,
|
||||
0xc5e,0xc9e,0,0xcde,0x806,0x806,0xd1e,0x806,0x806,0xd5e,0x806,0x806,0xf685,0xf6c5,0xf6c5,0xf6c5,
|
||||
0xd9d,0xf805,0xe6d,0xf805,0xf805,0xead,0xf805,0xf805,0xeed,0xf3d,0xf8d,0xf805,0xfcd,0xf805,0xf805,0xf805,
|
||||
0x100d,0x104d,0x108d,0x10bd,0xf805,0xf805,0x10fd,0xf805,0xf805,0x113d,0xf805,0xf805,0xf005,0xf045,0xf045,0x206,
|
||||
0x117d,0x11ad,2,2,2,0x11fd,0x122d,0xfe05,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x125d,0x128d,0x1c5,0x11,0x12be,0x130d,0,0x46,0xffc5,0xfe46,0x46,0xffc5,1,0xdf86,0xdf86,0xdf86,
|
||||
0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,0x1406,
|
||||
0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,
|
||||
0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,
|
||||
0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,
|
||||
0xec05,0xec05,0xec05,0xec05,0xec05,0xec05,0xec15,0xec05,0xec15,0xec05,0xec05,0xec05,0xec05,0xec05,0xec05,0xec05,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0,0x60,0x60,0x60,0x60,0x60,0x40,0x40,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x3c6,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0xfc45,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0,0,0,0,0,0,0,0,0,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,
|
||||
0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,
|
||||
0xc06,0xc06,0xc06,0,0,0x40,0,0,0,0,0,0,0,0xf405,0xf405,0xf405,
|
||||
0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,
|
||||
0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0x133d,
|
||||
0,0,0,0,0,0,0,0,0,0x70,0x60,0x60,0x60,0x60,0x70,0x60,
|
||||
0x60,0x60,0x70,0x70,0x60,0x60,0x60,0x60,0x60,0x60,0x70,0x70,0x70,0x70,0x70,0x70,
|
||||
0x60,0x60,0x70,0x60,0x60,0x70,0x70,0x60,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,
|
||||
0x70,0x70,0x70,0x70,0x70,0x70,0,0x70,0,0x70,0x70,0,0x60,0x70,0,0x70,
|
||||
5,5,0x25,5,5,5,5,5,5,4,4,4,0xc,4,0xc,4,
|
||||
5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
0x4c,0x4c,0x44,0x44,0x44,0x44,0x44,0x12dc,0x4c,0x44,0x4c,0x44,0x4c,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0x4c,0x44,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,
|
||||
0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,
|
||||
0x64,0x6c,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x44,0x44,0x44,
|
||||
0x44,0x44,0x4c,0x44,0x44,0x12fd,0x44,0x64,0x64,0x64,0x44,0x44,0x44,0x64,0x64,4,
|
||||
0x44,0x44,0x44,0x64,0x64,0x64,0x64,0x44,0x64,0x64,0x64,0x44,0x64,0x64,0x64,0x64,
|
||||
0x64,0x64,0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
|
||||
0x8a,0xff89,0x8a,0xff89,4,4,0x8a,0xff89,0,0,5,0x4109,0x4109,0x4109,0,0,
|
||||
0,0,0,0,4,4,0x130a,4,0x128a,0x128a,0x128a,0,0x200a,0,0x1f8a,0x1f8a,
|
||||
0x1399,0x100a,0x153a,0x100a,0x100a,0x15ba,0x100a,0x100a,0x163a,0x16da,0x177a,0x100a,0x17fa,0x100a,0x100a,0x100a,
|
||||
0x187a,0x18fa,0,0x197a,0x100a,0x100a,0x19fa,0x100a,0x100a,0x1a7a,0x100a,0x100a,0xed09,0xed89,0xed89,0xed89,
|
||||
0x1af9,0xf009,0x1c99,0xf009,0xf009,0x1d19,0xf009,0xf009,0x1d99,0x1e39,0x1ed9,0xf009,0x1f59,0xf009,0xf009,0xf009,
|
||||
0x1fd9,0x2059,0x20d9,0x2139,0xf009,0xf009,0x21b9,0xf009,0xf009,0x2239,0xf009,0xf009,0xe009,0xe089,0xe089,0x40a,
|
||||
0x22b9,0x2319,2,2,2,0x23b9,0x2419,0xfc09,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x2479,0x24d9,0x389,0x21,0x253a,0x25d9,0,0x8a,0xff89,0xfc8a,0x8a,0xff89,1,0xbf0a,0xbf0a,0xbf0a,
|
||||
0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,0x280a,
|
||||
0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,
|
||||
0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,
|
||||
0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,
|
||||
0xd809,0xd809,0xd809,0xd809,0xd809,0xd809,0xd829,0xd809,0xd829,0xd809,0xd809,0xd809,0xd809,0xd809,0xd809,0xd809,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0,0x44,0x44,0x44,0x44,0x44,4,4,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x78a,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0xf889,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0,0,0,0,0,0,0,0,0,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,
|
||||
0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,
|
||||
0x180a,0x180a,0x180a,0,0,4,0,0,0,0,0,0,0,0xe809,0xe809,0xe809,
|
||||
0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,
|
||||
0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0x2639,
|
||||
0,0,0,0,0,0,0,0,0,0x64,0x44,0x44,0x44,0x44,0x64,0x44,
|
||||
0x44,0x44,0x64,0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x64,0x64,0x64,0x64,0x64,0x64,
|
||||
0x44,0x44,0x64,0x44,0x44,0x64,0x64,0x44,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,
|
||||
0x64,0x64,0x64,0x64,0x64,0x64,0,0x64,0,0x64,0x64,0,0x44,0x64,0,0x64,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x40,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
|
||||
0x70,0x70,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,
|
||||
0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
|
||||
0x64,0x64,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,0,
|
||||
0,0,0,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x60,0x60,0x70,0x70,0x60,
|
||||
0x60,0x60,0x60,0x60,0x70,0x60,0x60,0x70,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x70,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,
|
||||
0,0,0,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x44,0x44,0x64,0x64,0x44,
|
||||
0x44,0x44,0x44,0x44,0x64,0x44,0x44,0x64,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x64,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x40,0,0x60,0x60,0x60,0x60,0x70,
|
||||
0x60,0x40,0x40,0x60,0x60,0,0x70,0x60,0x60,0x70,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x40,
|
||||
0,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x44,0x44,0x44,0x44,0x44,0x44,0x44,4,0,0x44,0x44,0x44,0x44,0x64,
|
||||
0x44,4,4,0x44,0x44,0,0x64,0x44,0x44,0x64,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,
|
||||
0,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x60,0x70,0x60,0x60,0x70,0x60,0x60,0x70,0x70,0x70,0x60,0x70,0x70,0x60,0x70,0x60,
|
||||
0x60,0x60,0x70,0x60,0x70,0x60,0x70,0x60,0x70,0x60,0x60,0,0,0,0,0,
|
||||
0x44,0x64,0x44,0x44,0x64,0x44,0x44,0x64,0x64,0x64,0x44,0x64,0x64,0x44,0x64,0x44,
|
||||
0x44,0x44,0x64,0x44,0x64,0x44,0x64,0x44,0x64,0x44,0x44,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0,
|
||||
0,0,4,4,4,4,4,4,4,4,4,4,4,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x60,0x60,0x60,0x60,0x60,
|
||||
0x60,0x60,0x70,0x60,0x40,0x40,0,0,0,0,0x40,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x44,0x44,0x44,0x44,0x44,
|
||||
0x44,0x44,0x64,0x44,4,4,0,0,0,0,4,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x60,0x60,0x60,0x60,0x40,0x60,0x60,0x60,0x60,0x60,0x40,0x60,0x60,0x60,
|
||||
0x40,0x60,0x60,0x60,0x60,0x60,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x44,0x44,0x44,0x44,4,0x44,0x44,0x44,0x44,0x44,4,0x44,0x44,0x44,
|
||||
4,0x44,0x44,0x44,0x44,0x44,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x70,0x70,0x70,0,0,0,0,0x60,0x60,0x70,0x60,0x60,0x70,0x60,0x60,
|
||||
0x60,0x70,0x70,0x70,0x70,0x70,0x70,0x60,0x60,0x60,0x70,0x60,0x60,0x70,0x70,0x60,
|
||||
0x60,0x60,0x60,0,0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,
|
||||
0,0x64,0x64,0x64,0,0,0,0,0x44,0x44,0x64,0x44,0x44,0x64,0x44,0x44,
|
||||
0x44,0x64,0x64,0x64,0x64,0x64,0x64,0x44,0x44,0x44,0x64,0x44,0x44,0x64,0x64,0x44,
|
||||
0x44,0x44,0x44,0,4,4,4,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x40,0,0x70,0,0,0,0,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0,0,0,0,0x70,0,0,0,0x60,0x70,0x60,
|
||||
0x60,0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0x40,0x40,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0x40,0,0,
|
||||
0,0,0,0,0,0,4,0,0x64,0,0,0,0,4,4,4,
|
||||
4,4,4,4,4,0,0,0,0,0x64,0,0,0,0x44,0x64,0x44,
|
||||
0x44,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x70,0,0,0,
|
||||
0,0x40,0x40,0x40,0x40,0,0,0,0,0,0,0,0,0x70,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x64,0,0,0,
|
||||
0,4,4,4,4,0,0,0,0,0,0,0,0,0x64,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x40,0x40,0,0,0,0,0x40,0x40,0,0,0x40,0x40,0x70,0,0,
|
||||
0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0x40,0,0,0,0x40,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0,0x40,0x40,0,0,0,
|
||||
0,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,4,4,0,0,0,0,4,4,0,0,4,4,0x64,0,0,
|
||||
0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,4,4,0,0,0,4,0,0,0,0,0,0,
|
||||
0,0,0,0,0,4,4,4,4,4,0,4,4,0,0,0,
|
||||
0,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x70,0,0,0x40,0,0x40,0x40,0x40,0x40,0,0,0,0,0,0,0,
|
||||
0,0x70,0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,
|
||||
0x64,0,0,4,0,4,4,4,4,0,0,0,0,0,0,0,
|
||||
0,0x64,0,0,0,0,0,0,0,0,4,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x70,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0x40,0x40,
|
||||
0x40,0,0x40,0x40,0x40,0x70,0,0,0,0,0,0,0,0x70,0x70,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,
|
||||
0x40,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x70,0,0,0,0,0,0,0,0x40,0x40,
|
||||
0x40,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x40,0,0,0x40,0x40,0x40,0x40,0x70,0x70,0x70,0,
|
||||
0,0,0,0,0,0,0x40,0x40,0x70,0x70,0x70,0x70,0x40,0x40,0x40,0,
|
||||
0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x64,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,4,
|
||||
4,0,4,4,4,0x64,0,0,0,0,0,0,0,0x64,0x64,0,
|
||||
0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,
|
||||
4,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x64,0,0,0,0,0,0,0,4,4,
|
||||
4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,4,0,0,4,4,4,4,0x64,0x64,0x64,0,
|
||||
0,0,0,0,0,0,4,4,0x64,0x64,0x64,0x64,4,4,4,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x40,0,0,0x40,0x40,0x40,0x40,0x70,0x70,0,0x40,0x40,0,0,0,
|
||||
0,0,0,0,0,0,0x40,0,0x70,0x70,0x70,0x70,0x40,0x40,0,0,
|
||||
0,4,0,0,4,4,4,4,0x64,0x64,0,4,4,0,0,0,
|
||||
0,0,0,0,0,0,4,0,0x64,0x64,0x64,0x64,4,4,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x70,0x70,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x64,0x64,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x70,0,0x70,0,0x70,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x70,0x70,0x40,0x70,0x40,0x40,0x40,
|
||||
0x40,0x40,0x70,0x70,0x70,0x70,0x40,0,0x70,0x40,0x60,0x60,0x70,0,0x60,0x60,
|
||||
0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0,0,0,0,0,0,0,0,0,0x70,0,0,0,0,0,
|
||||
0,0x64,0,0x64,0,0x64,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x64,0x64,4,0x64,4,4,4,
|
||||
4,4,0x64,0x64,0x64,0x64,4,0,0x64,4,0x44,0x44,0x64,0,0x44,0x44,
|
||||
0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,
|
||||
0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
4,0,0,0,0,0,0,0,0,0,0x64,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x40,0x40,0x40,0x40,0,0x40,0x40,0x40,0x40,0x40,0x70,
|
||||
0,0x70,0x70,0,0,0x40,0x40,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,4,4,4,4,0,4,4,4,4,4,0x64,
|
||||
0,0x64,0x64,0,0,4,4,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0,0,0,0,0x40,0x40,0x40,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x40,0,0,0x40,0x40,0,
|
||||
0,0,0,0,0,0x70,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x40,0,0,0x13be,0x13de,0x13fe,0x141e,0x143e,0x145e,0x147e,0x149e,
|
||||
0x14be,0x14de,0x14fe,0x151e,0x153e,0x155e,0x157e,0x159e,0x15be,0x15de,0x15fe,0x161e,0x163e,0x165e,0x167e,0x169e,
|
||||
0x16be,0x16de,0x16fe,0x171e,0x173e,0x175e,0x177e,0x179e,0x17be,0x17de,0x17fe,0x181e,0x183e,0x185e,0,0x187e,
|
||||
0,0,0,0,0,0x189e,0,0,0,0,0,0,0,0,0,0,
|
||||
4,4,0,0,0,0,4,4,4,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,4,0,0,4,4,0,
|
||||
0,0,0,0,0,0x64,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,4,0,0,0x273a,0x277a,0x27ba,0x27fa,0x283a,0x287a,0x28ba,0x28fa,
|
||||
0x293a,0x297a,0x29ba,0x29fa,0x2a3a,0x2a7a,0x2aba,0x2afa,0x2b3a,0x2b7a,0x2bba,0x2bfa,0x2c3a,0x2c7a,0x2cba,0x2cfa,
|
||||
0x2d3a,0x2d7a,0x2dba,0x2dfa,0x2e3a,0x2e7a,0x2eba,0x2efa,0x2f3a,0x2f7a,0x2fba,0x2ffa,0x303a,0x307a,0,0x30ba,
|
||||
0,0,0,0,0,0x30fa,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x60,0x60,0x60,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x40,0x40,0x70,0,0,0,
|
||||
0,0,0,0,0,0x44,0x44,0x44,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,4,4,0x64,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0x40,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0,
|
||||
0,0,0,0,0,0,0x40,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x70,0x40,0,0,0,0x40,0,0,0,0,0,0x60,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0,0,
|
||||
0,0,0,0,4,4,0,4,4,4,4,4,4,4,0,0,
|
||||
0,0,0,0,0,0,4,0,0,4,4,4,4,4,4,4,
|
||||
4,4,0x64,4,0,0,0,4,0,0,0,0,0,0x44,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0x40,0x40,0,0,0,0,0x40,
|
||||
0x40,0,0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,
|
||||
0,0x70,0x60,0x70,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x60,0x70,0,0,0,
|
||||
0,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,4,
|
||||
4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,
|
||||
0,0x64,0x44,0x64,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x44,0x64,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x40,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,
|
||||
0x70,0,0x40,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0,
|
||||
0,0,0,0x40,0x40,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0,0x70,
|
||||
0x40,0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,4,0,4,4,4,4,4,4,4,0,
|
||||
0x64,0,4,0,0,4,4,4,4,4,4,4,4,0,0,0,
|
||||
0,0,0,4,4,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,0,0x64,
|
||||
4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x70,0,0x40,0x40,0x40,0x40,0x40,0,0x40,0,0,0,0,0,0x40,0,
|
||||
0x30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x60,
|
||||
0x70,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0x40,0,0,0,0,0,0,0,0,0,0,
|
||||
0x64,0,4,4,4,4,4,0,4,0,0,0,0,0,4,0,
|
||||
0x60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x44,
|
||||
0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x40,0x40,0x40,0x40,0,0,0x40,0x40,0x30,0x70,
|
||||
0,0,0,0,0,0,4,4,4,4,0,0,4,4,0x60,0x64,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x70,0,0x40,0x40,0,0,0,0x40,0,0x40,
|
||||
0x40,0x40,0x30,0x30,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0x40,0x70,0,0,0,0,
|
||||
0,0,0,0,0,0,0x64,0,4,4,0,0,0,4,0,4,
|
||||
4,4,0x60,0x60,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
4,4,4,4,4,4,4,4,0,0,4,0x64,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x60,0x60,0x60,0,
|
||||
0x70,0x70,0x70,0x70,0x70,0x70,0x60,0x60,0x70,0x70,0x70,0x70,0x60,0,0x70,0x70,
|
||||
0x70,0x70,0x70,0x70,0x70,0,0,0,0,0x70,0,0,0,0,0,0,
|
||||
0x60,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,
|
||||
0,0,0,0,4,4,4,4,4,4,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x44,0x44,0x44,0,
|
||||
0x64,0x64,0x64,0x64,0x64,0x64,0x44,0x44,0x64,0x64,0x64,0x64,0x44,0,0x64,0x64,
|
||||
0x64,0x64,0x64,0x64,0x64,0,0,0,0,0x64,0,0,0,0,0,0,
|
||||
0x44,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,1,1,1,1,0x969,0x969,0x969,0x969,
|
||||
0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,
|
||||
0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x979,0x969,
|
||||
0x969,0x969,0x969,0x969,0x969,0x969,0x969,1,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,0x969,0x18bd,1,1,1,0x18dd,1,1,0x969,0x969,0x969,0x969,
|
||||
0x979,0x969,0x969,0x969,0x979,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,
|
||||
0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,
|
||||
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
|
||||
5,5,5,5,5,5,5,5,5,5,5,5,5,5,0x25,5,
|
||||
5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,5,0x3139,1,1,1,0x3179,1,1,5,5,5,5,
|
||||
0x25,5,5,5,0x25,5,5,5,5,5,5,5,5,5,5,5,
|
||||
5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,0x11,1,1,1,1,0x969,0x969,0x969,0x969,0x969,0x60,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x70,0x70,0x60,0x70,0x60,0x60,0x70,0x60,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x70,0x60,0x60,0x70,0x70,0x70,0x70,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffd5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x18fe,0x193d,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x197d,0x19fd,
|
||||
0x1a7d,0x1afd,0x1b7d,0x1bfd,1,1,0x1c2e,1,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffd5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x205,0x205,0x205,0x205,0x205,0x205,0x205,0x205,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0x205,0x205,0x205,0x205,0x205,0x205,0,0,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0,0,0x205,0x205,0x205,0x205,0x205,0x205,0x205,0x205,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0x205,0x205,0x205,0x205,0x205,0x205,0x205,0x205,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0x205,0x205,0x205,0x205,0x205,0x205,0,0,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0,0,0x1c7d,0x205,0x1cfd,0x205,0x1dad,0x205,0x1e5d,0x205,
|
||||
0,0xfe06,0,0xfe06,0,0xfe06,0,0xfe06,0x205,0x205,0x205,0x205,0x205,0x205,0x205,0x205,
|
||||
0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0xfe06,0x1285,0x1285,0x1585,0x1585,0x1585,0x1585,0x1905,0x1905,
|
||||
0x2005,0x2005,0x1c05,0x1c05,0x1f85,0x1f85,0,0,0x1f0d,0x1f7d,0x1fed,0x205d,0x20cd,0x213d,0x21ad,0x221d,
|
||||
0x228f,0x22ff,0x236f,0x23df,0x244f,0x24bf,0x252f,0x259f,0x260d,0x267d,0x26ed,0x275d,0x27cd,0x283d,0x28ad,0x291d,
|
||||
0x298f,0x29ff,0x2a6f,0x2adf,0x2b4f,0x2bbf,0x2c2f,0x2c9f,0x2d0d,0x2d7d,0x2ded,0x2e5d,0x2ecd,0x2f3d,0x2fad,0x301d,
|
||||
0x308f,0x30ff,0x316f,0x31df,0x324f,0x32bf,0x332f,0x339f,0x205,0x205,0x340d,0x348d,0x34fd,0,0x357d,0x35fd,
|
||||
0xfe06,0xfe06,0xed86,0xed86,0x36af,0x40,0x371d,0x40,0x40,0x40,0x376d,0x37ed,0x385d,0,0x38dd,0x395d,
|
||||
0xea86,0xea86,0xea86,0xea86,0x3a0f,0x40,0x40,0x40,0x205,0x205,0x3a7d,0x3b2d,0,0,0x3bfd,0x3c7d,
|
||||
0xfe06,0xfe06,0xe706,0xe706,0,0x40,0x40,0x40,0x205,0x205,0x3d2d,0x3ddd,0x3ead,0x1c5,0x3f2d,0x3fad,
|
||||
0xfe06,0xfe06,0xe406,0xe406,0xfe46,0x40,0x40,0x40,0,0,0x405d,0x40dd,0x414d,0,0x41cd,0x424d,
|
||||
0xe006,0xe006,0xe086,0xe086,0x42ff,0x40,0x40,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0x40,0x40,0x40,0x40,0x40,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0,0,0,0,0,0,0x40,0,0,0x40,0,0,0x40,0x40,
|
||||
0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x40,0x40,0x40,0x40,0x40,0,0,0,0,0,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0,0x979,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0x969,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,0x969,
|
||||
0x969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x60,0x60,0x70,0x70,0x60,0x60,0x60,0x60,0x70,0x70,0x70,0x60,
|
||||
0x60,0x40,0x40,0x40,0x40,0x60,0x40,0x40,0x40,0x70,0x70,0x60,0x70,0x60,0x70,0x70,
|
||||
0x70,0x70,0x70,0x70,0x60,0,0,0,0,0,0,0,0,0,0,0,
|
||||
1,1,0x21,1,1,1,1,5,5,5,5,5,0x44,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x64,0x64,0x44,0x64,0x44,0x44,0x64,0x44,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x64,0x44,0x44,0x64,0x64,0x64,0x64,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xffa9,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x31ba,0x3239,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x32b9,0x33b9,
|
||||
0x34b9,0x35b9,0x36b9,0x37b9,1,1,0x381a,1,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xffa9,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x409,0x409,0x409,0x409,0x409,0x409,0x409,0x409,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0x409,0x409,0x409,0x409,0x409,0x409,0,0,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0,0,0x409,0x409,0x409,0x409,0x409,0x409,0x409,0x409,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0x409,0x409,0x409,0x409,0x409,0x409,0x409,0x409,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0x409,0x409,0x409,0x409,0x409,0x409,0,0,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0,0,0x38b9,0x409,0x39b9,0x409,0x3b19,0x409,0x3c79,0x409,
|
||||
0,0xfc0a,0,0xfc0a,0,0xfc0a,0,0xfc0a,0x409,0x409,0x409,0x409,0x409,0x409,0x409,0x409,
|
||||
0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0xfc0a,0x2509,0x2509,0x2b09,0x2b09,0x2b09,0x2b09,0x3209,0x3209,
|
||||
0x4009,0x4009,0x3809,0x3809,0x3f09,0x3f09,0,0,0x3dd9,0x3eb9,0x3f99,0x4079,0x4159,0x4239,0x4319,0x43f9,
|
||||
0x44db,0x45bb,0x469b,0x477b,0x485b,0x493b,0x4a1b,0x4afb,0x4bd9,0x4cb9,0x4d99,0x4e79,0x4f59,0x5039,0x5119,0x51f9,
|
||||
0x52db,0x53bb,0x549b,0x557b,0x565b,0x573b,0x581b,0x58fb,0x59d9,0x5ab9,0x5b99,0x5c79,0x5d59,0x5e39,0x5f19,0x5ff9,
|
||||
0x60db,0x61bb,0x629b,0x637b,0x645b,0x653b,0x661b,0x66fb,0x409,0x409,0x67d9,0x68d9,0x69b9,0,0x6ab9,0x6bb9,
|
||||
0xfc0a,0xfc0a,0xdb0a,0xdb0a,0x6d1b,4,0x6df9,4,4,4,0x6e99,0x6f99,0x7079,0,0x7179,0x7279,
|
||||
0xd50a,0xd50a,0xd50a,0xd50a,0x73db,4,4,4,0x409,0x409,0x74b9,0x7619,0,0,0x77b9,0x78b9,
|
||||
0xfc0a,0xfc0a,0xce0a,0xce0a,0,4,4,4,0x409,0x409,0x7a19,0x7b79,0x7d19,0x389,0x7e19,0x7f19,
|
||||
0xfc0a,0xfc0a,0xc80a,0xc80a,0xfc8a,4,4,4,0,0,0x8079,0x8179,0x8259,0,0x8359,0x8459,
|
||||
0xc00a,0xc00a,0xc10a,0xc10a,0x85bb,4,4,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,4,4,4,4,4,0,0,0,0,0,0,0,0,
|
||||
4,4,0,0,0,0,0,0,4,0,0,4,0,0,4,4,
|
||||
4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,4,4,4,4,4,0,0,0,0,0,4,4,
|
||||
4,4,4,4,0,0x25,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,
|
||||
5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x44,0x44,0x64,0x64,0x44,0x44,0x44,0x44,0x64,0x64,0x64,0x44,
|
||||
0x44,4,4,4,4,0x44,4,4,4,0x64,0x64,0x44,0x64,0x44,0x64,0x64,
|
||||
0x64,0x64,0x64,0x64,0x44,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,2,0,0,0,0,2,0,0,1,2,
|
||||
2,2,1,1,2,2,2,1,0,2,0,0,0,2,2,2,
|
||||
2,2,0,0,0,0,0,0,2,0,0x436e,0,2,0,0x43ae,0x43ee,
|
||||
2,2,0,1,2,2,0x706,2,1,0,0,0,0,1,0,0,
|
||||
1,1,2,2,0,0,0,0,0,2,1,1,0x11,0x11,0,0,
|
||||
0,0,0xf905,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x406,0x406,0x406,0x406,0x406,0x406,0x406,0x406,0x406,0x406,0x406,0x406,
|
||||
0x406,0x406,0x406,0x406,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,0xfc05,
|
||||
0xfc05,0xfc05,0xfc05,0xfc05,0,0,0,0x46,0xffc5,0,0,0,0,0,0,0,
|
||||
2,2,0,0,0,0,0,0,2,0,0x869a,0,2,0,0x871a,0x879a,
|
||||
2,2,0,1,2,2,0xe0a,2,1,0,0,0,0,1,0,0,
|
||||
1,1,2,2,0,0,0,0,0,2,1,1,0x21,0x21,0,0,
|
||||
0,0,0xf209,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,0x80a,
|
||||
0x80a,0x80a,0x80a,0x80a,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809,
|
||||
0xf809,0xf809,0xf809,0xf809,0,0,0,0x8a,0xff89,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0x686,0x686,0x686,0x686,0x686,0x686,0x686,0x686,0x686,0x686,
|
||||
0x686,0x686,0x686,0x686,0x686,0x686,0x686,0x686,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,
|
||||
0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0xf985,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,
|
||||
0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xd0a,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,
|
||||
0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0xf309,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,
|
||||
0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,0xc06,
|
||||
0xc06,0xc06,0xc06,0,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,
|
||||
0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,0xf405,
|
||||
0xf405,0xf405,0xf405,0,0x46,0xffc5,0x442e,0x444e,0x446e,0x448d,0x44ad,0x46,0xffc5,0x46,0xffc5,0x46,
|
||||
0xffc5,0x44ce,0x44ee,0x450e,0x452e,1,0x46,0xffc5,1,0x46,0xffc5,1,1,1,1,1,
|
||||
0x979,0x969,0x454e,0x456e,0x46,0xffc5,0x46,0xffc5,1,0,0,0,0,0,0,0x46,
|
||||
0xffc5,0x46,0xffc5,0x60,0x60,0x60,0x46,0xffc5,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x458d,0x45ad,0x45cd,0x45ed,0x460d,0x462d,0x464d,0x466d,0x468d,0x46ad,0x46cd,0x46ed,
|
||||
0x470d,0x472d,0x474d,0x476d,0x478d,0x47ad,0x47cd,0x47ed,0x480d,0x482d,0x484d,0x486d,0x488d,0x48ad,0x48cd,0x48ed,
|
||||
0x490d,0x492d,0x494d,0x496d,0x498d,0x49ad,0x49cd,0x49ed,0x4a0d,0x4a2d,0,0x4a4d,0,0,0,0,
|
||||
0,0x4a6d,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x70,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0,0,0,0,0,0,0,
|
||||
0,0,0x70,0x70,0x70,0x70,0x30,0x30,0,0x40,0x40,0x40,0x40,0x40,0,0,
|
||||
0,0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0x70,0x70,0x40,
|
||||
0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,
|
||||
0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,0x180a,
|
||||
0x180a,0x180a,0x180a,0,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,
|
||||
0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,0xe809,
|
||||
0xe809,0xe809,0xe809,0,0x8a,0xff89,0x881a,0x885a,0x889a,0x88d9,0x8919,0x8a,0xff89,0x8a,0xff89,0x8a,
|
||||
0xff89,0x895a,0x899a,0x89da,0x8a1a,1,0x8a,0xff89,1,0x8a,0xff89,1,1,1,1,1,
|
||||
0x25,5,0x8a5a,0x8a9a,0x8a,0xff89,0x8a,0xff89,1,0,0,0,0,0,0,0x8a,
|
||||
0xff89,0x8a,0xff89,0x44,0x44,0x44,0x8a,0xff89,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x8ad9,0x8b19,0x8b59,0x8b99,0x8bd9,0x8c19,0x8c59,0x8c99,0x8cd9,0x8d19,0x8d59,0x8d99,
|
||||
0x8dd9,0x8e19,0x8e59,0x8e99,0x8ed9,0x8f19,0x8f59,0x8f99,0x8fd9,0x9019,0x9059,0x9099,0x90d9,0x9119,0x9159,0x9199,
|
||||
0x91d9,0x9219,0x9259,0x9299,0x92d9,0x9319,0x9359,0x9399,0x93d9,0x9419,0,0x9459,0,0,0,0,
|
||||
0,0x9499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,0,0,0,0,0,0,0,
|
||||
0,0,0x64,0x64,0x64,0x64,0x60,0x60,0,4,4,4,4,4,0,0,
|
||||
0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0x64,0x64,4,
|
||||
4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0,0x60,0x40,0x40,0x40,0,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0x40,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0,0,0,0,0,0,0,0x60,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x60,0x60,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,1,1,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,
|
||||
0x969,1,1,1,1,1,1,1,1,0x46,0xffc5,0x46,0xffc5,0x4a8e,0x46,0xffc5,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x40,0x40,0x40,0x46,0xffc5,0x4aae,1,0,
|
||||
0x46,0xffc5,0x46,0xffc5,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x46,0xffc5,0x4ace,0,0,0,0,0,
|
||||
4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0,0x44,4,4,4,0,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,4,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0,0,0,0,0,0,0,0x44,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x44,0x44,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,1,1,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,
|
||||
5,1,1,1,1,1,1,1,1,0x8a,0xff89,0x8a,0xff89,0x94da,0x8a,0xff89,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,4,4,4,0x8a,0xff89,0x951a,1,0,
|
||||
0x8a,0xff89,0x8a,0xff89,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x8a,0xff89,0x955a,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0x969,0x969,1,0,0,0,0,0,0,0,0x40,0,
|
||||
0,0,0x70,0,0,0,0,0x40,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x70,0,0,0,
|
||||
0,0,0,0,5,5,1,0,0,0,0,0,0,0,4,0,
|
||||
0,0,0x64,0,0,0,0,4,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x64,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x70,
|
||||
0x70,0x70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0,0x30,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x70,0,0,0x40,0x40,0x40,0x40,0,0,
|
||||
0x40,0,0,0,0x30,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0x40,0x40,0,
|
||||
0,0x40,0x40,0,0,0,0,0,0,0,0,0,0,0,0,0x40,
|
||||
0,0,0,0,0,0,0,0,0x40,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x40,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0x64,
|
||||
0x64,0x64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,
|
||||
4,4,0,0x60,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x64,0,0,4,4,4,4,0,0,
|
||||
4,0,0,0,0x60,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,4,4,4,4,4,4,0,0,4,4,0,
|
||||
0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4,
|
||||
0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x60,0,0x60,0x60,0x70,0,0,0x60,0x60,0,0,0,0,0,0x60,0x60,
|
||||
0,0x60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0x40,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x40,0x40,0,0,
|
||||
0,0,0,0x40,0x40,0,0x70,0,0,0,0,0,0,0,0,0,
|
||||
0,0x40,0,0,0x40,0,0,0,0,0x70,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x4aed,0x4b6d,0x4bed,0x4c6d,
|
||||
0x4d1d,0x4dcd,0x4e6d,0,0,0,0,0,0,0,0,0,0,0,0,0x4f0d,
|
||||
0x4f8d,0x500d,0x508d,0x510d,0,0,0,0,0,0,0x70,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0,0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x60,0x60,0x60,0x60,0x60,0x60,0x60,0,0,0,0,0,0,0,0,0,
|
||||
0x44,0,0x44,0x44,0x64,0,0,0x44,0x44,0,0,0,0,0,0x44,0x44,
|
||||
0,0x44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,
|
||||
0,0,0,4,4,0,0x64,0,0,0,0,0,0,0,0,0,
|
||||
0,4,0,0,4,0,0,0,0,0x64,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0x9599,0x9699,0x9799,0x9899,
|
||||
0x99f9,0x9b59,0x9c99,0,0,0,0,0,0,0,0,0,0,0,0,0x9dd9,
|
||||
0x9ed9,0x9fd9,0xa0d9,0xa1d9,0,0,0,0,0,0,0x64,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x44,0x44,0x44,0x44,0x44,0x44,0x44,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x40,0,0,0x40,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,
|
||||
0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0x806,0,0,0,0x40,0,
|
||||
0x40,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,
|
||||
0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0xf805,0,0,0,0,0,
|
||||
0,0,0,0x40,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0,0,0,0,
|
||||
0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,
|
||||
0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,0xa06,
|
||||
0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,
|
||||
0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0xf605,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0x40,0x40,0x40,0,0x40,0x40,0,
|
||||
0,0,0,0,0x40,0x70,0x40,0x60,0,0,0,0,0,0,0,0,
|
||||
0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,
|
||||
0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0x100a,0,0,0,4,0,
|
||||
4,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,
|
||||
0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0xf009,0,0,0,0,0,
|
||||
0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,
|
||||
0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,
|
||||
0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,0x140a,
|
||||
0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,
|
||||
0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0xec09,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,4,4,4,0,4,4,0,
|
||||
0,0,0,0,4,0x64,4,0x44,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x60,0x70,0x70,0,0,0,0,0x70,0,0,0,0,0,0,0,0,
|
||||
0x44,0x64,0x64,0,0,0,0,0x64,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x70,0,0,0,0,0,
|
||||
4,4,4,4,4,4,4,4,4,4,0x64,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0,0,0x70,0x70,0,
|
||||
0,0x40,0,0,0x60,0x60,0x60,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,4,4,4,4,0,0,0x64,0x64,0,
|
||||
0,4,0,0,0x44,0x44,0x44,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x70,0x70,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0x30,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,4,4,4,4,4,0,4,4,4,
|
||||
4,4,4,0x64,0x64,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,
|
||||
4,4,4,4,4,4,4,0,0x60,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0x40,0,0x40,0,0,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x30,0x70,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0,0,0,0,0,0x30,0x30,0x70,
|
||||
0x70,0x70,0,0,0,0x30,0x30,0x30,0x30,0x30,0x30,0x40,0x40,0x40,0x40,0x40,
|
||||
0x40,0x40,0x40,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0,0,0x60,0x60,0x60,
|
||||
0x60,0x60,0x70,0x70,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x60,0x60,0x60,0x60,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,
|
||||
4,4,4,4,4,4,0x60,0x64,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,
|
||||
4,4,4,4,4,4,4,4,0,0,0,0,0,0x60,0x60,0x64,
|
||||
0x64,0x64,0,0,0,0x60,0x60,0x60,0x60,0x60,0x60,4,4,4,4,4,
|
||||
4,4,4,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0,0,0x44,0x44,0x44,
|
||||
0x44,0x44,0x64,0x64,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0x44,0x44,0x44,0x44,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x60,0x60,0x60,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0x44,0x44,0x44,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
|
||||
2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,
|
||||
1,1,0x11,0x11,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,0x21,0x21,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,
|
||||
2,2,1,1,1,1,1,1,1,0,0x11,0x11,1,1,1,1,
|
||||
2,2,1,1,1,1,1,1,1,0,0x21,0x21,1,1,1,1,
|
||||
1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,
|
||||
2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,
|
||||
1,1,1,1,1,1,0x11,0x11,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,1,1,0x21,0x21,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,2,0,2,2,0,0,2,0,
|
||||
0,2,2,0,0,2,2,2,2,0,2,2,2,2,2,2,
|
||||
2,2,1,1,1,1,0,1,0,1,0x11,0x11,1,1,1,1,
|
||||
2,2,1,1,1,1,0,1,0,1,0x21,0x21,1,1,1,1,
|
||||
0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,
|
||||
2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,
|
||||
2,2,0,2,2,2,2,0,0,2,2,2,2,2,2,2,
|
||||
2,0,2,2,2,2,2,2,2,0,1,1,1,1,1,1,
|
||||
1,1,0x11,0x11,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,0x21,0x21,1,1,1,1,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,2,2,0,2,2,2,2,0,2,2,2,2,
|
||||
2,0,2,0,0,0,2,2,2,2,2,2,2,0,1,1,
|
||||
1,1,1,1,1,1,0x11,0x11,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,1,1,0x21,0x21,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,
|
||||
2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,
|
||||
1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,
|
||||
|
@ -619,12 +619,12 @@ static const uint16_t ucase_props_trieIndex[9684]={
|
|||
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
|
||||
1,1,1,0,1,1,1,1,1,1,2,1,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
|
||||
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0
|
||||
};
|
||||
|
||||
static const uint16_t ucase_props_exceptions[1304]={
|
||||
static const uint16_t ucase_props_exceptions[1302]={
|
||||
0xc041,0x69,2,0x130,0x131,0x4001,0x6a,0x41,0x6b,1,0x212a,0x41,0x73,1,0x17f,0x5044,
|
||||
0x49,2,0x130,0x131,0x44,0x4b,1,0x212a,0x44,0x53,1,0x17f,6,0x3bc,0x39c,0x41,
|
||||
0xe5,1,0x212b,0x4001,0xec,0x4001,0xed,0xc0,1,0x2220,0x73,0x73,0x53,0x53,0x53,0x73,
|
||||
|
@ -634,79 +634,79 @@ static const uint16_t ucase_props_exceptions[1304]={
|
|||
0x1c7,0x1c8,9,0x1cc,0x1cb,0xd,0x1cc,0x1ca,0x1cb,0xc,0x1ca,0x1cb,0x80,0x2220,0x6a,0x30c,
|
||||
0x4a,0x30c,0x4a,0x30c,9,0x1f3,0x1f2,0xd,0x1f3,0x1f1,0x1f2,0xc,0x1f1,0x1f2,1,0x2c65,
|
||||
1,0x2c66,4,0x2c7e,4,0x2c7f,4,0x2c6f,4,0x2c6d,4,0x2c70,4,0xa78d,4,0xa7aa,
|
||||
4,0x2c62,4,0x2c6e,4,0x2c64,0x800,0x1800,0x6800,0x3846,0x3b9,0x399,1,0x1fbe,0xc0,1,
|
||||
0x3330,0x3b9,0x308,0x301,0x399,0x308,0x301,0x399,0x308,0x301,0x1fd3,0x41,0x3b2,1,0x3d0,0x41,
|
||||
0x3b5,1,0x3f5,0x41,0x3b8,2,0x3d1,0x3f4,0x41,0x3b9,2,0x345,0x1fbe,0x41,0x3ba,1,
|
||||
0x3f0,0x41,0x3bc,1,0xb5,0x41,0x3c0,1,0x3d6,0x41,0x3c1,1,0x3f1,0x4041,0x3c3,1,
|
||||
0x3c2,0x41,0x3c6,1,0x3d5,0x41,0x3c9,1,0x2126,0xc0,1,0x3330,0x3c5,0x308,0x301,0x3a5,
|
||||
0x308,0x301,0x3a5,0x308,0x301,0x1fe3,0x44,0x392,1,0x3d0,0x44,0x395,1,0x3f5,0x44,0x398,
|
||||
2,0x3d1,0x3f4,0x44,0x399,2,0x345,0x1fbe,0x44,0x39a,1,0x3f0,0x44,0x39c,1,0xb5,
|
||||
0x44,0x3a0,1,0x3d6,0x44,0x3a1,1,0x3f1,6,0x3c3,0x3a3,0x44,0x3a3,1,0x3c2,0x44,
|
||||
0x3a6,1,0x3d5,0x44,0x3a9,1,0x2126,6,0x3b2,0x392,0x46,0x3b8,0x398,1,0x3f4,6,
|
||||
0x3c6,0x3a6,6,0x3c0,0x3a0,6,0x3ba,0x39a,6,0x3c1,0x3a1,0x41,0x3b8,2,0x398,0x3d1,
|
||||
6,0x3b5,0x395,0x80,0x2220,0x565,0x582,0x535,0x552,0x535,0x582,1,0x2d00,1,0x2d01,1,
|
||||
0x2d02,1,0x2d03,1,0x2d04,1,0x2d05,1,0x2d06,1,0x2d07,1,0x2d08,1,0x2d09,1,
|
||||
0x2d0a,1,0x2d0b,1,0x2d0c,1,0x2d0d,1,0x2d0e,1,0x2d0f,1,0x2d10,1,0x2d11,1,
|
||||
0x2d12,1,0x2d13,1,0x2d14,1,0x2d15,1,0x2d16,1,0x2d17,1,0x2d18,1,0x2d19,1,
|
||||
0x2d1a,1,0x2d1b,1,0x2d1c,1,0x2d1d,1,0x2d1e,1,0x2d1f,1,0x2d20,1,0x2d21,1,
|
||||
0x2d22,1,0x2d23,1,0x2d24,1,0x2d25,1,0x2d27,1,0x2d2d,4,0xa77d,4,0x2c63,0x41,
|
||||
0x1e61,1,0x1e9b,0x44,0x1e60,1,0x1e9b,0x80,0x2220,0x68,0x331,0x48,0x331,0x48,0x331,0x80,
|
||||
0x2220,0x74,0x308,0x54,0x308,0x54,0x308,0x80,0x2220,0x77,0x30a,0x57,0x30a,0x57,0x30a,0x80,
|
||||
0x2220,0x79,0x30a,0x59,0x30a,0x59,0x30a,0x80,0x2220,0x61,0x2be,0x41,0x2be,0x41,0x2be,6,
|
||||
0x1e61,0x1e60,0x81,0xdf,0x20,0x73,0x73,0x80,0x2220,0x3c5,0x313,0x3a5,0x313,0x3a5,0x313,0x80,
|
||||
0x3330,0x3c5,0x313,0x300,0x3a5,0x313,0x300,0x3a5,0x313,0x300,0x80,0x3330,0x3c5,0x313,0x301,0x3a5,
|
||||
0x313,0x301,0x3a5,0x313,0x301,0x80,0x3330,0x3c5,0x313,0x342,0x3a5,0x313,0x342,0x3a5,0x313,0x342,
|
||||
0x84,0x1f88,0x220,0x1f00,0x3b9,0x1f08,0x399,0x84,0x1f89,0x220,0x1f01,0x3b9,0x1f09,0x399,0x84,0x1f8a,
|
||||
0x220,0x1f02,0x3b9,0x1f0a,0x399,0x84,0x1f8b,0x220,0x1f03,0x3b9,0x1f0b,0x399,0x84,0x1f8c,0x220,0x1f04,
|
||||
0x3b9,0x1f0c,0x399,0x84,0x1f8d,0x220,0x1f05,0x3b9,0x1f0d,0x399,0x84,0x1f8e,0x220,0x1f06,0x3b9,0x1f0e,
|
||||
0x399,0x84,0x1f8f,0x220,0x1f07,0x3b9,0x1f0f,0x399,0x81,0x1f80,0x220,0x1f00,0x3b9,0x1f08,0x399,0x81,
|
||||
0x1f81,0x220,0x1f01,0x3b9,0x1f09,0x399,0x81,0x1f82,0x220,0x1f02,0x3b9,0x1f0a,0x399,0x81,0x1f83,0x220,
|
||||
0x1f03,0x3b9,0x1f0b,0x399,0x81,0x1f84,0x220,0x1f04,0x3b9,0x1f0c,0x399,0x81,0x1f85,0x220,0x1f05,0x3b9,
|
||||
0x1f0d,0x399,0x81,0x1f86,0x220,0x1f06,0x3b9,0x1f0e,0x399,0x81,0x1f87,0x220,0x1f07,0x3b9,0x1f0f,0x399,
|
||||
0x84,0x1f98,0x220,0x1f20,0x3b9,0x1f28,0x399,0x84,0x1f99,0x220,0x1f21,0x3b9,0x1f29,0x399,0x84,0x1f9a,
|
||||
0x220,0x1f22,0x3b9,0x1f2a,0x399,0x84,0x1f9b,0x220,0x1f23,0x3b9,0x1f2b,0x399,0x84,0x1f9c,0x220,0x1f24,
|
||||
0x3b9,0x1f2c,0x399,0x84,0x1f9d,0x220,0x1f25,0x3b9,0x1f2d,0x399,0x84,0x1f9e,0x220,0x1f26,0x3b9,0x1f2e,
|
||||
0x399,0x84,0x1f9f,0x220,0x1f27,0x3b9,0x1f2f,0x399,0x81,0x1f90,0x220,0x1f20,0x3b9,0x1f28,0x399,0x81,
|
||||
0x1f91,0x220,0x1f21,0x3b9,0x1f29,0x399,0x81,0x1f92,0x220,0x1f22,0x3b9,0x1f2a,0x399,0x81,0x1f93,0x220,
|
||||
0x1f23,0x3b9,0x1f2b,0x399,0x81,0x1f94,0x220,0x1f24,0x3b9,0x1f2c,0x399,0x81,0x1f95,0x220,0x1f25,0x3b9,
|
||||
0x1f2d,0x399,0x81,0x1f96,0x220,0x1f26,0x3b9,0x1f2e,0x399,0x81,0x1f97,0x220,0x1f27,0x3b9,0x1f2f,0x399,
|
||||
0x84,0x1fa8,0x220,0x1f60,0x3b9,0x1f68,0x399,0x84,0x1fa9,0x220,0x1f61,0x3b9,0x1f69,0x399,0x84,0x1faa,
|
||||
0x220,0x1f62,0x3b9,0x1f6a,0x399,0x84,0x1fab,0x220,0x1f63,0x3b9,0x1f6b,0x399,0x84,0x1fac,0x220,0x1f64,
|
||||
0x3b9,0x1f6c,0x399,0x84,0x1fad,0x220,0x1f65,0x3b9,0x1f6d,0x399,0x84,0x1fae,0x220,0x1f66,0x3b9,0x1f6e,
|
||||
0x399,0x84,0x1faf,0x220,0x1f67,0x3b9,0x1f6f,0x399,0x81,0x1fa0,0x220,0x1f60,0x3b9,0x1f68,0x399,0x81,
|
||||
0x1fa1,0x220,0x1f61,0x3b9,0x1f69,0x399,0x81,0x1fa2,0x220,0x1f62,0x3b9,0x1f6a,0x399,0x81,0x1fa3,0x220,
|
||||
0x1f63,0x3b9,0x1f6b,0x399,0x81,0x1fa4,0x220,0x1f64,0x3b9,0x1f6c,0x399,0x81,0x1fa5,0x220,0x1f65,0x3b9,
|
||||
0x1f6d,0x399,0x81,0x1fa6,0x220,0x1f66,0x3b9,0x1f6e,0x399,0x81,0x1fa7,0x220,0x1f67,0x3b9,0x1f6f,0x399,
|
||||
0x80,0x2220,0x1f70,0x3b9,0x1fba,0x399,0x1fba,0x345,0x84,0x1fbc,0x220,0x3b1,0x3b9,0x391,0x399,0x80,
|
||||
0x2220,0x3ac,0x3b9,0x386,0x399,0x386,0x345,0x80,0x2220,0x3b1,0x342,0x391,0x342,0x391,0x342,0x80,
|
||||
0x3330,0x3b1,0x342,0x3b9,0x391,0x342,0x399,0x391,0x342,0x345,0x81,0x1fb3,0x220,0x3b1,0x3b9,0x391,
|
||||
0x399,0x46,0x3b9,0x399,1,0x345,0x80,0x2220,0x1f74,0x3b9,0x1fca,0x399,0x1fca,0x345,0x84,0x1fcc,
|
||||
0x220,0x3b7,0x3b9,0x397,0x399,0x80,0x2220,0x3ae,0x3b9,0x389,0x399,0x389,0x345,0x80,0x2220,0x3b7,
|
||||
0x342,0x397,0x342,0x397,0x342,0x80,0x3330,0x3b7,0x342,0x3b9,0x397,0x342,0x399,0x397,0x342,0x345,
|
||||
0x81,0x1fc3,0x220,0x3b7,0x3b9,0x397,0x399,0x80,0x3330,0x3b9,0x308,0x300,0x399,0x308,0x300,0x399,
|
||||
0x308,0x300,0xc0,1,0x3330,0x3b9,0x308,0x301,0x399,0x308,0x301,0x399,0x308,0x301,0x390,0x80,
|
||||
0x2220,0x3b9,0x342,0x399,0x342,0x399,0x342,0x80,0x3330,0x3b9,0x308,0x342,0x399,0x308,0x342,0x399,
|
||||
0x308,0x342,0x80,0x3330,0x3c5,0x308,0x300,0x3a5,0x308,0x300,0x3a5,0x308,0x300,0xc0,1,0x3330,
|
||||
0x3c5,0x308,0x301,0x3a5,0x308,0x301,0x3a5,0x308,0x301,0x3b0,0x80,0x2220,0x3c1,0x313,0x3a1,0x313,
|
||||
0x3a1,0x313,0x80,0x2220,0x3c5,0x342,0x3a5,0x342,0x3a5,0x342,0x80,0x3330,0x3c5,0x308,0x342,0x3a5,
|
||||
0x308,0x342,0x3a5,0x308,0x342,0x80,0x2220,0x1f7c,0x3b9,0x1ffa,0x399,0x1ffa,0x345,0x84,0x1ffc,0x220,
|
||||
0x3c9,0x3b9,0x3a9,0x399,0x80,0x2220,0x3ce,0x3b9,0x38f,0x399,0x38f,0x345,0x80,0x2220,0x3c9,0x342,
|
||||
0x3a9,0x342,0x3a9,0x342,0x80,0x3330,0x3c9,0x342,0x3b9,0x3a9,0x342,0x399,0x3a9,0x342,0x345,0x81,
|
||||
0x1ff3,0x220,0x3c9,0x3b9,0x3a9,0x399,0x41,0x3c9,1,0x3a9,0x41,0x6b,1,0x4b,0x41,0xe5,
|
||||
1,0xc5,1,0x26b,1,0x1d7d,1,0x27d,4,0x23a,4,0x23e,1,0x251,1,0x271,
|
||||
1,0x250,1,0x252,1,0x23f,1,0x240,4,0x10a0,4,0x10a1,4,0x10a2,4,0x10a3,
|
||||
4,0x10a4,4,0x10a5,4,0x10a6,4,0x10a7,4,0x10a8,4,0x10a9,4,0x10aa,4,0x10ab,
|
||||
4,0x10ac,4,0x10ad,4,0x10ae,4,0x10af,4,0x10b0,4,0x10b1,4,0x10b2,4,0x10b3,
|
||||
4,0x10b4,4,0x10b5,4,0x10b6,4,0x10b7,4,0x10b8,4,0x10b9,4,0x10ba,4,0x10bb,
|
||||
4,0x10bc,4,0x10bd,4,0x10be,4,0x10bf,4,0x10c0,4,0x10c1,4,0x10c2,4,0x10c3,
|
||||
4,0x10c4,4,0x10c5,4,0x10c7,4,0x10cd,1,0x1d79,1,0x265,1,0x266,0x80,0x2220,
|
||||
0x66,0x66,0x46,0x46,0x46,0x66,0x80,0x2220,0x66,0x69,0x46,0x49,0x46,0x69,0x80,0x2220,
|
||||
0x66,0x6c,0x46,0x4c,0x46,0x6c,0x80,0x3330,0x66,0x66,0x69,0x46,0x46,0x49,0x46,0x66,
|
||||
0x69,0x80,0x3330,0x66,0x66,0x6c,0x46,0x46,0x4c,0x46,0x66,0x6c,0xc0,1,0x2220,0x73,
|
||||
0x74,0x53,0x54,0x53,0x74,0xfb06,0xc0,1,0x2220,0x73,0x74,0x53,0x54,0x53,0x74,0xfb05,
|
||||
0x80,0x2220,0x574,0x576,0x544,0x546,0x544,0x576,0x80,0x2220,0x574,0x565,0x544,0x535,0x544,0x565,
|
||||
0x80,0x2220,0x574,0x56b,0x544,0x53b,0x544,0x56b,0x80,0x2220,0x57e,0x576,0x54e,0x546,0x54e,0x576,
|
||||
0x80,0x2220,0x574,0x56d,0x544,0x53d,0x544,0x56d
|
||||
4,0x2c62,4,0x2c6e,4,0x2c64,0x6000,0x3046,0x3b9,0x399,1,0x1fbe,0xc0,1,0x3330,0x3b9,
|
||||
0x308,0x301,0x399,0x308,0x301,0x399,0x308,0x301,0x1fd3,0x41,0x3b2,1,0x3d0,0x41,0x3b5,1,
|
||||
0x3f5,0x41,0x3b8,2,0x3d1,0x3f4,0x41,0x3b9,2,0x345,0x1fbe,0x41,0x3ba,1,0x3f0,0x41,
|
||||
0x3bc,1,0xb5,0x41,0x3c0,1,0x3d6,0x41,0x3c1,1,0x3f1,0x4041,0x3c3,1,0x3c2,0x41,
|
||||
0x3c6,1,0x3d5,0x41,0x3c9,1,0x2126,0xc0,1,0x3330,0x3c5,0x308,0x301,0x3a5,0x308,0x301,
|
||||
0x3a5,0x308,0x301,0x1fe3,0x44,0x392,1,0x3d0,0x44,0x395,1,0x3f5,0x44,0x398,2,0x3d1,
|
||||
0x3f4,0x44,0x399,2,0x345,0x1fbe,0x44,0x39a,1,0x3f0,0x44,0x39c,1,0xb5,0x44,0x3a0,
|
||||
1,0x3d6,0x44,0x3a1,1,0x3f1,6,0x3c3,0x3a3,0x44,0x3a3,1,0x3c2,0x44,0x3a6,1,
|
||||
0x3d5,0x44,0x3a9,1,0x2126,6,0x3b2,0x392,0x46,0x3b8,0x398,1,0x3f4,6,0x3c6,0x3a6,
|
||||
6,0x3c0,0x3a0,6,0x3ba,0x39a,6,0x3c1,0x3a1,0x41,0x3b8,2,0x398,0x3d1,6,0x3b5,
|
||||
0x395,0x80,0x2220,0x565,0x582,0x535,0x552,0x535,0x582,1,0x2d00,1,0x2d01,1,0x2d02,1,
|
||||
0x2d03,1,0x2d04,1,0x2d05,1,0x2d06,1,0x2d07,1,0x2d08,1,0x2d09,1,0x2d0a,1,
|
||||
0x2d0b,1,0x2d0c,1,0x2d0d,1,0x2d0e,1,0x2d0f,1,0x2d10,1,0x2d11,1,0x2d12,1,
|
||||
0x2d13,1,0x2d14,1,0x2d15,1,0x2d16,1,0x2d17,1,0x2d18,1,0x2d19,1,0x2d1a,1,
|
||||
0x2d1b,1,0x2d1c,1,0x2d1d,1,0x2d1e,1,0x2d1f,1,0x2d20,1,0x2d21,1,0x2d22,1,
|
||||
0x2d23,1,0x2d24,1,0x2d25,1,0x2d27,1,0x2d2d,4,0xa77d,4,0x2c63,0x41,0x1e61,1,
|
||||
0x1e9b,0x44,0x1e60,1,0x1e9b,0x80,0x2220,0x68,0x331,0x48,0x331,0x48,0x331,0x80,0x2220,0x74,
|
||||
0x308,0x54,0x308,0x54,0x308,0x80,0x2220,0x77,0x30a,0x57,0x30a,0x57,0x30a,0x80,0x2220,0x79,
|
||||
0x30a,0x59,0x30a,0x59,0x30a,0x80,0x2220,0x61,0x2be,0x41,0x2be,0x41,0x2be,6,0x1e61,0x1e60,
|
||||
0x81,0xdf,0x20,0x73,0x73,0x80,0x2220,0x3c5,0x313,0x3a5,0x313,0x3a5,0x313,0x80,0x3330,0x3c5,
|
||||
0x313,0x300,0x3a5,0x313,0x300,0x3a5,0x313,0x300,0x80,0x3330,0x3c5,0x313,0x301,0x3a5,0x313,0x301,
|
||||
0x3a5,0x313,0x301,0x80,0x3330,0x3c5,0x313,0x342,0x3a5,0x313,0x342,0x3a5,0x313,0x342,0x84,0x1f88,
|
||||
0x220,0x1f00,0x3b9,0x1f08,0x399,0x84,0x1f89,0x220,0x1f01,0x3b9,0x1f09,0x399,0x84,0x1f8a,0x220,0x1f02,
|
||||
0x3b9,0x1f0a,0x399,0x84,0x1f8b,0x220,0x1f03,0x3b9,0x1f0b,0x399,0x84,0x1f8c,0x220,0x1f04,0x3b9,0x1f0c,
|
||||
0x399,0x84,0x1f8d,0x220,0x1f05,0x3b9,0x1f0d,0x399,0x84,0x1f8e,0x220,0x1f06,0x3b9,0x1f0e,0x399,0x84,
|
||||
0x1f8f,0x220,0x1f07,0x3b9,0x1f0f,0x399,0x81,0x1f80,0x220,0x1f00,0x3b9,0x1f08,0x399,0x81,0x1f81,0x220,
|
||||
0x1f01,0x3b9,0x1f09,0x399,0x81,0x1f82,0x220,0x1f02,0x3b9,0x1f0a,0x399,0x81,0x1f83,0x220,0x1f03,0x3b9,
|
||||
0x1f0b,0x399,0x81,0x1f84,0x220,0x1f04,0x3b9,0x1f0c,0x399,0x81,0x1f85,0x220,0x1f05,0x3b9,0x1f0d,0x399,
|
||||
0x81,0x1f86,0x220,0x1f06,0x3b9,0x1f0e,0x399,0x81,0x1f87,0x220,0x1f07,0x3b9,0x1f0f,0x399,0x84,0x1f98,
|
||||
0x220,0x1f20,0x3b9,0x1f28,0x399,0x84,0x1f99,0x220,0x1f21,0x3b9,0x1f29,0x399,0x84,0x1f9a,0x220,0x1f22,
|
||||
0x3b9,0x1f2a,0x399,0x84,0x1f9b,0x220,0x1f23,0x3b9,0x1f2b,0x399,0x84,0x1f9c,0x220,0x1f24,0x3b9,0x1f2c,
|
||||
0x399,0x84,0x1f9d,0x220,0x1f25,0x3b9,0x1f2d,0x399,0x84,0x1f9e,0x220,0x1f26,0x3b9,0x1f2e,0x399,0x84,
|
||||
0x1f9f,0x220,0x1f27,0x3b9,0x1f2f,0x399,0x81,0x1f90,0x220,0x1f20,0x3b9,0x1f28,0x399,0x81,0x1f91,0x220,
|
||||
0x1f21,0x3b9,0x1f29,0x399,0x81,0x1f92,0x220,0x1f22,0x3b9,0x1f2a,0x399,0x81,0x1f93,0x220,0x1f23,0x3b9,
|
||||
0x1f2b,0x399,0x81,0x1f94,0x220,0x1f24,0x3b9,0x1f2c,0x399,0x81,0x1f95,0x220,0x1f25,0x3b9,0x1f2d,0x399,
|
||||
0x81,0x1f96,0x220,0x1f26,0x3b9,0x1f2e,0x399,0x81,0x1f97,0x220,0x1f27,0x3b9,0x1f2f,0x399,0x84,0x1fa8,
|
||||
0x220,0x1f60,0x3b9,0x1f68,0x399,0x84,0x1fa9,0x220,0x1f61,0x3b9,0x1f69,0x399,0x84,0x1faa,0x220,0x1f62,
|
||||
0x3b9,0x1f6a,0x399,0x84,0x1fab,0x220,0x1f63,0x3b9,0x1f6b,0x399,0x84,0x1fac,0x220,0x1f64,0x3b9,0x1f6c,
|
||||
0x399,0x84,0x1fad,0x220,0x1f65,0x3b9,0x1f6d,0x399,0x84,0x1fae,0x220,0x1f66,0x3b9,0x1f6e,0x399,0x84,
|
||||
0x1faf,0x220,0x1f67,0x3b9,0x1f6f,0x399,0x81,0x1fa0,0x220,0x1f60,0x3b9,0x1f68,0x399,0x81,0x1fa1,0x220,
|
||||
0x1f61,0x3b9,0x1f69,0x399,0x81,0x1fa2,0x220,0x1f62,0x3b9,0x1f6a,0x399,0x81,0x1fa3,0x220,0x1f63,0x3b9,
|
||||
0x1f6b,0x399,0x81,0x1fa4,0x220,0x1f64,0x3b9,0x1f6c,0x399,0x81,0x1fa5,0x220,0x1f65,0x3b9,0x1f6d,0x399,
|
||||
0x81,0x1fa6,0x220,0x1f66,0x3b9,0x1f6e,0x399,0x81,0x1fa7,0x220,0x1f67,0x3b9,0x1f6f,0x399,0x80,0x2220,
|
||||
0x1f70,0x3b9,0x1fba,0x399,0x1fba,0x345,0x84,0x1fbc,0x220,0x3b1,0x3b9,0x391,0x399,0x80,0x2220,0x3ac,
|
||||
0x3b9,0x386,0x399,0x386,0x345,0x80,0x2220,0x3b1,0x342,0x391,0x342,0x391,0x342,0x80,0x3330,0x3b1,
|
||||
0x342,0x3b9,0x391,0x342,0x399,0x391,0x342,0x345,0x81,0x1fb3,0x220,0x3b1,0x3b9,0x391,0x399,0x46,
|
||||
0x3b9,0x399,1,0x345,0x80,0x2220,0x1f74,0x3b9,0x1fca,0x399,0x1fca,0x345,0x84,0x1fcc,0x220,0x3b7,
|
||||
0x3b9,0x397,0x399,0x80,0x2220,0x3ae,0x3b9,0x389,0x399,0x389,0x345,0x80,0x2220,0x3b7,0x342,0x397,
|
||||
0x342,0x397,0x342,0x80,0x3330,0x3b7,0x342,0x3b9,0x397,0x342,0x399,0x397,0x342,0x345,0x81,0x1fc3,
|
||||
0x220,0x3b7,0x3b9,0x397,0x399,0x80,0x3330,0x3b9,0x308,0x300,0x399,0x308,0x300,0x399,0x308,0x300,
|
||||
0xc0,1,0x3330,0x3b9,0x308,0x301,0x399,0x308,0x301,0x399,0x308,0x301,0x390,0x80,0x2220,0x3b9,
|
||||
0x342,0x399,0x342,0x399,0x342,0x80,0x3330,0x3b9,0x308,0x342,0x399,0x308,0x342,0x399,0x308,0x342,
|
||||
0x80,0x3330,0x3c5,0x308,0x300,0x3a5,0x308,0x300,0x3a5,0x308,0x300,0xc0,1,0x3330,0x3c5,0x308,
|
||||
0x301,0x3a5,0x308,0x301,0x3a5,0x308,0x301,0x3b0,0x80,0x2220,0x3c1,0x313,0x3a1,0x313,0x3a1,0x313,
|
||||
0x80,0x2220,0x3c5,0x342,0x3a5,0x342,0x3a5,0x342,0x80,0x3330,0x3c5,0x308,0x342,0x3a5,0x308,0x342,
|
||||
0x3a5,0x308,0x342,0x80,0x2220,0x1f7c,0x3b9,0x1ffa,0x399,0x1ffa,0x345,0x84,0x1ffc,0x220,0x3c9,0x3b9,
|
||||
0x3a9,0x399,0x80,0x2220,0x3ce,0x3b9,0x38f,0x399,0x38f,0x345,0x80,0x2220,0x3c9,0x342,0x3a9,0x342,
|
||||
0x3a9,0x342,0x80,0x3330,0x3c9,0x342,0x3b9,0x3a9,0x342,0x399,0x3a9,0x342,0x345,0x81,0x1ff3,0x220,
|
||||
0x3c9,0x3b9,0x3a9,0x399,0x41,0x3c9,1,0x3a9,0x41,0x6b,1,0x4b,0x41,0xe5,1,0xc5,
|
||||
1,0x26b,1,0x1d7d,1,0x27d,4,0x23a,4,0x23e,1,0x251,1,0x271,1,0x250,
|
||||
1,0x252,1,0x23f,1,0x240,4,0x10a0,4,0x10a1,4,0x10a2,4,0x10a3,4,0x10a4,
|
||||
4,0x10a5,4,0x10a6,4,0x10a7,4,0x10a8,4,0x10a9,4,0x10aa,4,0x10ab,4,0x10ac,
|
||||
4,0x10ad,4,0x10ae,4,0x10af,4,0x10b0,4,0x10b1,4,0x10b2,4,0x10b3,4,0x10b4,
|
||||
4,0x10b5,4,0x10b6,4,0x10b7,4,0x10b8,4,0x10b9,4,0x10ba,4,0x10bb,4,0x10bc,
|
||||
4,0x10bd,4,0x10be,4,0x10bf,4,0x10c0,4,0x10c1,4,0x10c2,4,0x10c3,4,0x10c4,
|
||||
4,0x10c5,4,0x10c7,4,0x10cd,1,0x1d79,1,0x265,1,0x266,0x80,0x2220,0x66,0x66,
|
||||
0x46,0x46,0x46,0x66,0x80,0x2220,0x66,0x69,0x46,0x49,0x46,0x69,0x80,0x2220,0x66,0x6c,
|
||||
0x46,0x4c,0x46,0x6c,0x80,0x3330,0x66,0x66,0x69,0x46,0x46,0x49,0x46,0x66,0x69,0x80,
|
||||
0x3330,0x66,0x66,0x6c,0x46,0x46,0x4c,0x46,0x66,0x6c,0xc0,1,0x2220,0x73,0x74,0x53,
|
||||
0x54,0x53,0x74,0xfb06,0xc0,1,0x2220,0x73,0x74,0x53,0x54,0x53,0x74,0xfb05,0x80,0x2220,
|
||||
0x574,0x576,0x544,0x546,0x544,0x576,0x80,0x2220,0x574,0x565,0x544,0x535,0x544,0x565,0x80,0x2220,
|
||||
0x574,0x56b,0x544,0x53b,0x544,0x56b,0x80,0x2220,0x57e,0x576,0x54e,0x546,0x54e,0x576,0x80,0x2220,
|
||||
0x574,0x56d,0x544,0x53d,0x544,0x56d
|
||||
};
|
||||
|
||||
static const uint16_t ucase_props_unfold[370]={
|
||||
|
@ -755,5 +755,5 @@ static const UCaseProps ucase_props_singleton={
|
|||
0x25d0,
|
||||
NULL, 0, FALSE, FALSE, 0, NULL
|
||||
},
|
||||
{ 2,0,0,0 }
|
||||
{ 3,0,0,0 }
|
||||
};
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2005-2011, International Business Machines
|
||||
* Copyright (C) 2005-2012, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -334,7 +334,7 @@ ucase_swap(const UDataSwapper *ds,
|
|||
((pInfo->formatVersion[0]==1 &&
|
||||
pInfo->formatVersion[2]==UTRIE_SHIFT &&
|
||||
pInfo->formatVersion[3]==UTRIE_INDEX_SHIFT) ||
|
||||
pInfo->formatVersion[0]==2)
|
||||
pInfo->formatVersion[0]==2 || pInfo->formatVersion[0]==3)
|
||||
)) {
|
||||
udata_printError(ds, "ucase_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not recognized as case mapping data\n",
|
||||
pInfo->dataFormat[0], pInfo->dataFormat[1],
|
||||
|
|
Loading…
Add table
Reference in a new issue