file
stringlengths 18
26
| data
stringlengths 3
1.04M
|
---|---|
the_stack_data/46810.c | /* Wrapper to set errno for log2.
Copyright (C) 2017-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
/* Only build wrappers from the templates for the types that define the macro
below. This macro is set in math-type-macros-<type>.h in sysdeps/generic
for each floating-point type. */
#if __USE_WRAPPER_TEMPLATE
# include <errno.h>
# include <fenv.h>
# include <math.h>
# include <math_private.h>
FLOAT
M_DECL_FUNC (__log2) (FLOAT x)
{
if (__glibc_unlikely (islessequal (x, M_LIT (0.0))))
{
if (x == 0)
/* Pole error: log2(0). */
__set_errno (ERANGE);
else
/* Domain error: log2(<0). */
__set_errno (EDOM);
}
return M_SUF (__ieee754_log2) (x);
}
declare_mgen_alias (__log2, log2)
#endif /* __USE_WRAPPER_TEMPLATE. */
|
the_stack_data/80998.c | #include <stdlib.h>
int nondet_int();
int main()
{
if(nondet_int())
{
return 0;
}
else
{
return 1;
}
}
|
the_stack_data/92324781.c | #include <stdio.h>
int main() {
int e, i, j, t, c;
while(scanf("%d", &e) != EOF) {
int v[e][e];
for(i = 0; i < e; i++) {
for(j = 0; j < e; j++) {
if((i == j) || (i == e-1 && j == e-1)) {
v[i][j] = 2;
} else if(j == e-1-i) {
v[i][j] = 3;
} else {
v[i][j] = 0;
}
t = (int) e/3;
if((i >= t && j >= t) && ( i < e-t && j < e-t)) {
v[i][j] = 1;
}
c = (int) e/2;
if((i == c && j == c) && e%2 != 0) {
v[i][j] = 4;
}
if( j == e-1) {
printf("%d\n", v[i][j]);
} else {
printf("%d", v[i][j]);
}
}
}
printf("\n");
}
return 0;
}
|
the_stack_data/628360.c | #include <stdio.h>
int main()
{
int n = 4;
int height = n - 1, length = n, pc = n - 1;
for (int i = 0; i <= height; i++) {
for (int j = 0; j <= 2 * height * length; j++) {
if ((j % (height * 2) == pc) || (j % (height * 2) == height + i))
printf("%02d", j);
else
printf(" ");
}
pc--;
printf("\n");
}
return 0;
} |
the_stack_data/706453.c | /****************************************************************************
* *
* cryptlib PKI UserID En/Decoding Routines *
* Copyright Peter Gutmann 1998-2012 *
* *
****************************************************************************/
#if defined( INC_ALL )
#include "crypt.h"
#else
#include "crypt.h"
#endif /* Compiler-specific includes */
#ifdef USE_BASE64ID
/* The number of bits in each code group of 5 characters */
#define BITS_PER_GROUP ( 5 * 5 ) /* 5 chars encoding 5 bits each */
/* En/decode tables for text representations of binary keys. For the two
mask tables, only positions 4...7 are used */
static const char codeTable[] = \
"ABCDEFGHJKLMNPQRSTUVWXYZ23456789____"; /* No O/0, I/1 */
static const int hiMask[] = \
{ 0x00, 0x00, 0x00, 0x00, 0x0F, 0x07, 0x03, 0x01, 0x00, 0x00 };
static const int loMask[] = \
{ 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0xE0, 0xF0, 0x00, 0x00 };
/****************************************************************************
* *
* PKI User ID Encoding Functions *
* *
****************************************************************************/
/* Adjust the binary form of a PKI user ID so that it can be encoded into a
fixed number of text characters. This function is required because key
lookup is performed on the decoded form of the ID that's supplied via PKI
user requests, if we used the non-adjusted form for the key lookup then
we couldn't locate the stored user info that's indexed from the adjusted
form */
CHECK_RETVAL STDC_NONNULL_ARG( ( 1, 3 ) ) \
static int adjustPKIUserValue( INOUT_BUFFER( valueMaxLength, *valueLength ) \
BYTE *value,
IN_LENGTH_SHORT_MIN( 32 ) \
const int valueMaxLength,
OUT_LENGTH_BOUNDED_Z( valueMaxLength ) \
int *valueLength,
IN_RANGE( 3, 4 ) const int noCodeGroups )
{
assert( isWritePtrDynamic( value, valueMaxLength ) );
assert( isWritePtr( valueLength, sizeof( int ) ) );
REQUIRES( valueMaxLength >= 32 && valueMaxLength < MAX_INTLENGTH_SHORT );
REQUIRES( noCodeGroups == 3 || noCodeGroups == 4 );
/* Mask off any bits at the end of the data that can't be encoded using
the given number of code groups */
if( noCodeGroups == 3 )
{
/* Length = ( ( roundUp( 3 * BITS_PER_GROUP, 8 ) / 8 ) - 1 )
= ( 80 / 8 ) - 1
= 9
Mask = ( 0xFF << ( 8 - ( ( 3 * BITS_PER_GROUP ) % 8 ) ) )
= ( 0xFF << ( 8 - 3 ) )
= 0xE0 */
value[ 8 ] &= 0xE0;
*valueLength = 9;
}
else
{
/* Length = ( ( roundUp( 4 * BITS_PER_GROUP, 8 ) / 8 ) - 1 )
= ( 104 / 8 ) - 1
= 12
Mask = ( 0xFF << ( 8 - ( ( 4 * BITS_PER_GROUP ) % 8 ) ) )
= ( 0xFF << ( 8 - 4 ) )
= 0xF0 */
value[ 11 ] &= 0xF0;
*valueLength = 12;
}
return( CRYPT_OK );
}
/* Encode a text representation of a binary key */
CHECK_RETVAL STDC_NONNULL_ARG( ( 1, 3, 4 ) ) \
int encodePKIUserValue( OUT_BUFFER( encValMaxLen, *encValLen ) char *encVal,
IN_LENGTH_SHORT_MIN( 10 ) const int encValMaxLen,
OUT_LENGTH_BOUNDED_Z( encValMaxLen ) int *encValLen,
IN_BUFFER( valueLen ) const BYTE *value,
IN_LENGTH_SHORT_MIN( 8 ) const int valueLen,
IN_RANGE( 3, 4 ) const int noCodeGroups )
{
BYTE valBuf[ 128 + 8 ];
const int dataBytes = ( roundUp( noCodeGroups * BITS_PER_GROUP, 8 ) / 8 );
int i, byteCount = 0, bitCount = 0, length, status, LOOP_ITERATOR;
assert( isWritePtrDynamic( encVal, encValMaxLen ) );
assert( isWritePtr( encValLen, sizeof( int ) ) );
assert( isReadPtrDynamic( value, dataBytes ) );
REQUIRES( encValMaxLen >= 10 && encValMaxLen < MAX_INTLENGTH_SHORT );
REQUIRES( valueLen >= 8 && valueLen < MAX_INTLENGTH_SHORT );
REQUIRES( noCodeGroups == 3 || noCodeGroups == 4 );
REQUIRES( dataBytes >= 10 && dataBytes < 64 );
REQUIRES( valueLen >= dataBytes - 1 );
/* There must be enough input data present to produce the
required number of output bytes minus one for the checksum
at the start */
/* Clear return values */
memset( encVal, 0, min( 16, encValMaxLen ) );
*encValLen = 0;
/* Copy across the data bytes, leaving a gap at the start for the
checksum */
REQUIRES( boundsCheck( 1, dataBytes - 1, 128 ) );
memcpy( valBuf + 1, value, dataBytes - 1 );
status = adjustPKIUserValue( valBuf + 1, 128 - 1, &length,
noCodeGroups );
if( cryptStatusError( status ) )
return( status );
length += 1;
/* Calculate the Fletcher checksum and prepend it to the data bytes
This is easier than handling the addition of a non-byte-aligned
quantity to the end of the data */
valBuf[ 0 ] = intToByte( checksumData( valBuf + 1, length - 1 ) & 0xFF );
/* Encode the binary data as text */
LOOP_MED( ( length = 0, i = 1 ), i <= noCodeGroups * 5, i++ )
{
int chunkValue;
/* Extract the next 5-bit chunk and convert it to text form */
if( bitCount < 3 )
{
/* Everything's present in one byte, shift it down to the LSB */
chunkValue = ( valBuf[ byteCount ] >> ( 3 - bitCount ) ) & 0x1F;
}
else
{
if( bitCount == 3 )
{
/* It's the 5 LSBs */
chunkValue = valBuf[ byteCount ] & 0x1F;
}
else
{
/* The data spans two bytes, shift the bits from the high
byte up and the bits from the low byte down */
chunkValue = ( ( valBuf[ byteCount ] & \
hiMask[ bitCount ] ) << ( bitCount - 3 ) ) | \
( ( valBuf[ byteCount + 1 ] & \
loMask[ bitCount ] ) >> ( 11 - bitCount ) );
}
}
ENSURES( chunkValue >= 0 && chunkValue <= 0x20 );
encVal[ length++ ] = codeTable[ chunkValue ];
if( length < encValMaxLen && ( i % 5 ) == 0 && i < noCodeGroups * 5 )
encVal[ length++ ] = '-';
ENSURES( length < encValMaxLen );
/* Advance by 5 bits */
bitCount += 5;
if( bitCount >= 8 )
{
bitCount -= 8;
byteCount++;
}
ENSURES( bitCount >= 0 && bitCount < 8 );
ENSURES( byteCount >= 0 && byteCount < 64 );
}
ENSURES( LOOP_BOUND_OK );
*encValLen = length;
return( CRYPT_OK );
}
/****************************************************************************
* *
* PKI User ID Decoding Functions *
* *
****************************************************************************/
/* Check whether a text string appears to be an encoded PKI user value */
CHECK_RETVAL_BOOL STDC_NONNULL_ARG( ( 1 ) ) \
BOOLEAN isPKIUserValue( IN_BUFFER( encValLength ) const char *encVal,
IN_LENGTH_SHORT_MIN( 10 ) const int encValLength )
{
int i, LOOP_ITERATOR;
assert( isReadPtrDynamic( encVal, encValLength ) );
REQUIRES_B( encValLength > 10 && encValLength < MAX_INTLENGTH_SHORT );
/* Check whether a user value is of the form XXXXX-XXXXX-XXXXX{-XXXXX}.
Although we shouldn't be seeing O/0 or I/1 in the input we don't
specifically check for these since they could be present as typos.
In other words we're checking for the presence of an input pattern
that matches an encoded PKI user value, not for the validity of the
value itself, which will be checked by decodePKIUserValue() */
if( ( encValLength != ( 3 * 5 ) + 2 ) && \
( encValLength != ( 4 * 5 ) + 3 ) )
return( FALSE );
LOOP_MED_INITCHECK( i = 0, i < encValLength )
{
int j, LOOP_ITERATOR_ALT;
/* Decode each character group. We know from the length check above
that this won't run off the end of the data, so we don't have to
check the index value */
LOOP_SMALL_ALT( j = 0, j < 5, j++ )
{
const int ch = byteToInt( encVal[ i++ ] );
if( !isAlnum( ch ) )
return( FALSE );
}
ENSURES_B( LOOP_BOUND_OK_ALT );
if( i < encValLength && encVal[ i++ ] != '-' )
return( FALSE );
}
ENSURES_B( LOOP_BOUND_OK );
return( TRUE );
}
/* Decode a text representation of a binary key */
CHECK_RETVAL STDC_NONNULL_ARG( ( 1, 3, 4 ) ) \
int decodePKIUserValue( OUT_BUFFER( valueMaxLen, *valueLen ) BYTE *value,
IN_LENGTH_SHORT_MIN( 10 ) const int valueMaxLen,
OUT_LENGTH_BOUNDED_Z( valueMaxLen ) int *valueLen,
IN_BUFFER( encValLength ) const char *encVal,
IN_LENGTH_SHORT const int encValLength )
{
BYTE valBuf[ 128 + 8 ];
char encBuf[ CRYPT_MAX_TEXTSIZE + 8 ];
int i, byteCount = 0, bitCount = 0, length = 0, LOOP_ITERATOR;
assert( isWritePtrDynamic( value, valueMaxLen ) );
assert( isWritePtr( valueLen, sizeof( int ) ) );
assert( isReadPtrDynamic( encVal, encValLength ) );
REQUIRES( valueMaxLen >= 10 && valueMaxLen < MAX_INTLENGTH_SHORT );
REQUIRES( isShortIntegerRangeNZ( encValLength ) );
/* Clear return values */
memset( value, 0, min( 16, valueMaxLen ) );
*valueLen = 0;
/* Make sure that the input has a reasonable length (this should have
been checked by the caller using isPKIUserValue(), so we throw an
exception if the check fails). We return CRYPT_ERROR_BADDATA rather
than the more obvious CRYPT_ERROR_OVERFLOW since something returned
from this low a level should be a consistent error code indicating
that there's a problem with the PKI user value as a whole */
if( encValLength < ( 3 * 5 ) || encValLength > CRYPT_MAX_TEXTSIZE )
{
DEBUG_DIAG(( "PKI user value has invalid length" ));
assert( DEBUG_WARN );
return( CRYPT_ERROR_BADDATA );
}
REQUIRES( isPKIUserValue( encVal, encValLength ) );
/* Undo the formatting of the encoded value from XXXXX-XXXXX-XXXXX...
to XXXXXXXXXXXXXXX... */
LOOP_LARGE_INITCHECK( i = 0, i < encValLength )
{
int j, LOOP_ITERATOR_ALT;
LOOP_SMALL_ALT( j = 0, j < 5, j++ )
{
const int ch = byteToInt( encVal[ i++ ] );
/* Note that we've just incremented 'i', so the range check is
'>' rather than '>=' */
if( !isAlnum( ch ) || i > encValLength )
return( CRYPT_ERROR_BADDATA );
encBuf[ length++ ] = intToByte( toUpper( ch ) );
}
ENSURES( LOOP_BOUND_OK_ALT );
if( i < encValLength && encVal[ i++ ] != '-' )
return( CRYPT_ERROR_BADDATA );
}
ENSURES( LOOP_BOUND_OK );
if( ( length % 5 ) != 0 || length > CRYPT_MAX_TEXTSIZE )
return( CRYPT_ERROR_BADDATA );
/* Decode the text data into binary */
memset( valBuf, 0, 128 );
LOOP_LARGE( i = 0, i < length, i ++ )
{
const int ch = byteToInt( encBuf[ i ] );
int chunkValue, LOOP_ITERATOR_ALT;
LOOP_MED_ALT( chunkValue = 0, chunkValue < 0x20, chunkValue++ )
{
if( codeTable[ chunkValue ] == ch )
break;
}
ENSURES( LOOP_BOUND_OK_ALT );
if( chunkValue >= 0x20 )
return( CRYPT_ERROR_BADDATA );
/* Extract the next 5-bit chunk and convert it to text form */
if( bitCount < 3 )
{
/* Everything's present in one byte, shift it up into position */
valBuf[ byteCount ] |= chunkValue << ( 3 - bitCount );
}
else
{
if( bitCount == 3 )
{
/* It's the 5 LSBs */
valBuf[ byteCount ] |= chunkValue;
}
else
{
/* The data spans two bytes, shift the bits from the high
byte down and the bits from the low byte up */
valBuf[ byteCount ] |= \
intToByte( ( chunkValue >> ( bitCount - 3 ) ) & \
hiMask[ bitCount ] );
valBuf[ byteCount + 1 ] = \
intToByte( ( chunkValue << ( 11 - bitCount ) ) & \
loMask[ bitCount ] );
}
}
/* Advance by 5 bits */
bitCount += 5;
if( bitCount >= 8 )
{
bitCount -= 8;
byteCount++;
}
ENSURES( bitCount >= 0 && bitCount < 8 );
ENSURES( byteCount >= 0 && byteCount < 64 );
}
ENSURES( LOOP_BOUND_OK );
/* Calculate the Fletcher checksum and make sure that it matches the
value at the start of the data bytes */
if( bitCount > 0 )
byteCount++; /* More bits in the last partial byte */
if( valBuf[ 0 ] != ( checksumData( valBuf + 1, byteCount - 1 ) & 0xFF ) )
return( CRYPT_ERROR_BADDATA );
/* Return the decoded value to the caller */
ENSURES( byteCount >= 2 && byteCount - 1 <= valueMaxLen );
REQUIRES( boundsCheck( 1, byteCount - 1, valueMaxLen ) );
memcpy( value, valBuf + 1, byteCount - 1 );
*valueLen = byteCount - 1;
return( CRYPT_OK );
}
#endif /* USE_BASE64ID */
|
the_stack_data/561147.c | /* Copyright (C) 2016 A. C. Open Hardware Ideas Lab
*
* Authors:
* Marco Giammarini <[email protected]>
* Matteo Civale <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
/**
* @file libohiboard/source/adc_K12D5.c
* @author Marco Giammarini <[email protected]>
* @author Matteo Civale <[email protected]>
* @brief ADC functions implementation.
*/
#ifdef LIBOHIBOARD_ADC
#include "platforms.h"
#include "interrupt.h"
#include "clock.h"
#include "adc.h"
#if defined (LIBOHIBOARD_K12D5)
#define ADC_MAX_PINS 26
typedef struct Adc_Device {
ADC_MemMapPtr regMap;
volatile uint32_t* simScgcPtr; /**< SIM_SCGCx register for the device. */
uint32_t simScgcBitEnable; /**< SIM_SCGC enable bit for the device. */
void (*isr)(void); /**< The function pointer for ISR. */
void (*callback)(void); /**< The function pointer for user callback. */
Interrupt_Vector isrNumber; /**< ISR vector number. */
Adc_Pins pins[ADC_MAX_PINS+1]; /**< List of the pin for the ADC channel. */
volatile uint32_t* pinsPtr[ADC_MAX_PINS];
Adc_ChannelNumber channelNumber[ADC_MAX_PINS];
Adc_ChannelMux channelMux[ADC_MAX_PINS];
uint8_t pinMux[ADC_MAX_PINS]; /**< Mux of the pin of the FTM channel. */
uint8_t devInitialized; /**< Indicate that device was been initialized. */
/** Indicate that device require calibration on Adc_readValue. */
uint8_t devCalibration;
} Adc_Device;
static Adc_Device adc0 = {
.regMap = ADC0_BASE_PTR,
.simScgcPtr = &SIM_SCGC6,
.simScgcBitEnable = SIM_SCGC6_ADC0_MASK,
.pins = {ADC_PINS_DP0,
ADC_PINS_DP1,
ADC_PINS_DP3,
ADC_PINS_DP0,
ADC_PINS_DP1,
ADC_PINS_DP3,
ADC_PINS_PTE16,
ADC_PINS_PTE17,
ADC_PINS_PTE18,
ADC_PINS_PTE19,
ADC_PINS_PTC2,
ADC_PINS_PTD1,
ADC_PINS_PTD5,
ADC_PINS_PTD6,
ADC_PINS_PTB0,
ADC_PINS_PTB1,
ADC_PINS_PTE0,
ADC_PINS_PTE1,
ADC_PINS_PTB2,
ADC_PINS_PTB3,
ADC_PINS_PTC0,
ADC_PINS_PTC1,
ADC_PINS_PTD4,
ADC_PINS_PTD7,
ADC_PINS_SE23,
ADC_PINS_NONE,
},
.pinsPtr = {0,//&ADC_PINS_ADC0_DP0,
0,//&ADC_PINS_ADC0_DP1,
0,//&ADC_PINS_ADC0_DP3,
0,//&ADC_PINS_ADC0_DM0,
0,//&ADC_PINS_ADC0_DM1,
0,//&ADC_PINS_ADC0_DP3,
&PORTE_PCR16,
&PORTE_PCR17,
&PORTE_PCR18,
&PORTE_PCR19,
&PORTC_PCR2,
&PORTD_PCR1,
&PORTD_PCR5,
&PORTD_PCR6,
&PORTB_PCR0,
&PORTB_PCR1,
&PORTE_PCR0,
&PORTE_PCR1,
&PORTB_PCR2,
&PORTB_PCR3,
&PORTC_PCR0,
&PORTC_PCR1,
&PORTD_PCR4,
&PORTD_PCR5,
0,//&ADC_PINS_SE23,
},
.pinMux = {0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
},
.channelNumber = {ADC_CH_DP0,
ADC_CH_DP1,
ADC_CH_DP3,
ADC_CH_SE4a,
ADC_CH_SE5a,
ADC_CH_SE6a,
ADC_CH_SE7a,
ADC_CH_SE4b,
ADC_CH_SE5b,
ADC_CH_SE6b,
ADC_CH_SE7b,
ADC_CH_SE8,
ADC_CH_SE9,
ADC_CH_SE10,
ADC_CH_SE11,
ADC_CH_SE12,
ADC_CH_SE13,
ADC_CH_SE14,
ADC_CH_SE15,
ADC_CH_SE21,
ADC_CH_SE22,
ADC_CH_SE23,
},
.channelMux = {ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_B,
ADC_CHL_B,
ADC_CHL_B,
ADC_CHL_B,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
ADC_CHL_A,
},
.isr = ADC0_IRQHandler,
.isrNumber = INTERRUPT_ADC0,
.devInitialized = 0,
.devCalibration = 0,
};
Adc_DeviceHandle OB_ADC0 = &adc0;
void ADC0_IRQHandler (void)
{
OB_ADC0->callback();
ADC_R_REG(OB_ADC0->regMap, 0U);
ADC_R_REG(OB_ADC0->regMap, 1U);
if (!(ADC_SC3_REG(OB_ADC0->regMap) & ADC_SC3_ADCO_MASK) &&
!(ADC_SC2_REG(OB_ADC0->regMap) & ADC_SC2_ADTRG_MASK))
ADC_SC1_REG(OB_ADC0->regMap,0) |= ADC_SC1_ADCH(ADC_CH_DISABLE);
}
System_Errors Adc_init (Adc_DeviceHandle dev, void *callback, Adc_Config *config)
{
ADC_MemMapPtr regmap = dev->regMap;
System_Errors errore = ERRORS_NO_ERROR;
uint8_t clkdiv = 0;
/* In this way it is not reconfigurable! */
// if (dev->devInitialized) return ERRORS_ADC_DEVICE_JUST_INIT;
/* Enable the clock to the selected ADC */
*dev->simScgcPtr |= dev->simScgcBitEnable;
/* Disable conversion */
ADC_SC1_REG(regmap,0) = ADC_SC1_ADCH(ADC_CH_DISABLE);
/* If call back exist save it */
if (callback)
{
dev->callback = callback;
/* Enable interrupt */
Interrupt_enable(dev->isrNumber);
}
/*setting clock source and divider*/
ADC_CFG1_REG(regmap) &= ~ADC_CFG1_ADIV_MASK;
switch (config->clkDiv)
{
case 1:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(0);
break;
case 2:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(1);
break;
case 4:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(2);
break;
case 8:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(3);
break;
default:
return errore = ERRORS_ADC_DIVIDER_NOT_FOUND;
}
ADC_CFG1_REG(regmap) &= ~ADC_CFG1_ADICLK_MASK;
switch (config->clkSource)
{
case ADC_BUS_CLOCK:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADICLK(0);
break;
case ADC_BUS_CLOCK_DIV2:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADICLK(1);
break;
case ADC_ALTERNATE_CLOCK:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADICLK(2);
break;
case ADC_ASYNCHRONOUS_CLOCK:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADICLK(3);
break;
}
/* Setting Sample Time */
ADC_CFG1_REG(regmap) &= ~(ADC_CFG1_ADLSMP_MASK | ADC_CFG2_ADLSTS_MASK);
switch (config->sampleLength)
{
case ADC_SHORT_SAMPLE:
ADC_CFG1_REG(regmap) &= ~(ADC_CFG1_ADLSMP_MASK);
break;
case ADC_LONG_SAMPLE_20:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADLSMP_MASK;
ADC_CFG2_REG(regmap) |= ADC_CFG2_ADLSTS(0);
break;
case ADC_LONG_SAMPLE_12:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADLSMP_MASK;
ADC_CFG2_REG(regmap) |= ADC_CFG2_ADLSTS(1);
break;
case ADC_LONG_SAMPLE_6:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADLSMP_MASK;
ADC_CFG2_REG(regmap) |= ADC_CFG2_ADLSTS(2);
break;
case ADC_LONG_SAMPLE_2:
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADLSMP_MASK;
ADC_CFG2_REG(regmap) |= ADC_CFG2_ADLSTS(3);
break;
}
/*setting convertion speed*/
switch (config->covertionSpeed)
{
case ADC_NORMAL_CONVERTION:
ADC_CFG2_REG(regmap) &= ~(ADC_CFG2_ADHSC_MASK);
break;
case ADC_HIGH_SPEED_CONVERTION:
ADC_CFG2_REG(regmap) |= ADC_CFG2_ADHSC_MASK;
break;
}
/*setting single or continuous conversion*/
switch (config->contConv)
{
case ADC_SINGLE_CONVERTION:
ADC_SC3_REG(regmap) &= ~(ADC_SC3_ADCO_MASK);
break;
case ADC_CONTINUOUS_CONVERTION:
ADC_SC3_REG(regmap) |= ADC_SC3_ADCO_MASK;
break;
}
/*setting resoluton*/
ADC_CFG1_REG(regmap) &= ~ADC_CFG1_MODE_MASK;
switch (config->resolution)
{
case ADC_RESOLUTION_8BIT:
ADC_CFG1_REG(regmap) |= ADC_CFG1_MODE(0);
break;
case ADC_RESOLUTION_10BIT:
ADC_CFG1_REG(regmap) |= ADC_CFG1_MODE(2);
break;
case ADC_RESOLUTION_12BIT:
ADC_CFG1_REG(regmap) |= ADC_CFG1_MODE(1);
break;
case ADC_RESOLUTION_16BIT:
ADC_CFG1_REG(regmap) |= ADC_CFG1_MODE(3);
break;
}
/* Select voltage reference*/
ADC_SC2_REG(regmap) &= ~ADC_SC2_REFSEL_MASK;
switch (config->voltRef)
{
case ADC_VREF:
ADC_SC2_REG(regmap) |= ADC_SC2_REFSEL(0);
break;
case ADC_VALT:
ADC_SC2_REG(regmap) |= ADC_SC2_REFSEL(1);
break;
}
/* Select the average */
ADC_SC3_REG(regmap) &= ~(ADC_SC3_AVGE_MASK | ADC_SC3_AVGS_MASK);
switch (config->average)
{
case ADC_AVERAGE_1_SAMPLES:
/* Nothing to do! */
ADC_SC3_REG(regmap) &= ~ADC_SC3_AVGE_MASK;
break;
case ADC_AVERAGE_4_SAMPLES:
ADC_SC3_REG(regmap) |= ADC_SC3_AVGE_MASK | ADC_SC3_AVGS(0);
break;
case ADC_AVERAGE_8_SAMPLES:
ADC_SC3_REG(regmap) |= ADC_SC3_AVGE_MASK | ADC_SC3_AVGS(1);
break;
case ADC_AVERAGE_16_SAMPLES:
ADC_SC3_REG(regmap) |= ADC_SC3_AVGE_MASK | ADC_SC3_AVGS(2);
break;
case ADC_AVERAGE_32_SAMPLES:
ADC_SC3_REG(regmap) |= ADC_SC3_AVGE_MASK | ADC_SC3_AVGS(3);
break;
}
if (config->enableHwTrigger)
ADC_SC2_REG(dev->regMap) |= ADC_SC2_ADTRG_MASK;
else
ADC_SC2_REG(dev->regMap) &= ~ADC_SC2_ADTRG_MASK;
/* Calibration flag */
if (config->doCalibration)
Adc_calibration(dev);
dev->devInitialized = 1;
return ERRORS_NO_ERROR;
}
void Adc_enablePin (Adc_DeviceHandle dev, Adc_Pins pin)
{
uint8_t devPinIndex;
for (devPinIndex = 0; devPinIndex < ADC_MAX_PINS; ++devPinIndex)
{
if (dev->pins[devPinIndex] == ADC_PINS_NONE) break;
/* Pins haven't PORT register */
if ((pin == ADC_PINS_DP0) ||
(pin == ADC_PINS_DP1) ||
(pin == ADC_PINS_DP3) ||
(pin == ADC_PINS_SE23))
break;
if (dev->pins[devPinIndex] == pin)
{
*(dev->pinsPtr[devPinIndex]) =
PORT_PCR_MUX(dev->pinMux[devPinIndex]) | PORT_PCR_IRQC(0);
break;
}
}
/* TODO: It's all? */
}
System_Errors Adc_readValue (Adc_DeviceHandle dev,
Adc_ChannelNumber channel,
uint16_t *value,
Adc_InputType type)
{
ADC_MemMapPtr regmap = dev->regMap;
uint8_t channelIndex;
Adc_ChannelMux channelMux;
if (!dev->devInitialized) return ERRORS_ADC_DEVICE_NOT_INIT;
if (channel != ADC_CH_DISABLE)
{
for (channelIndex = 0; channelIndex < ADC_MAX_PINS; ++channelIndex)
{
if (dev->channelNumber[channelIndex] == channel)
{
channelMux = dev->channelMux[channelIndex];
break;
}
}
if (channel > 0x1F)
channel -= 0x20;
if (channelMux == ADC_CHL_A)
ADC_CFG2_REG(regmap) &= ~ADC_CFG2_MUXSEL_MASK;
else
ADC_CFG2_REG(regmap) |= ADC_CFG2_MUXSEL_MASK;
/* Set single-ended or differential input mode! */
ADC_SC1_REG(regmap,0) |= ((type << ADC_SC1_DIFF_SHIFT) & ADC_SC1_DIFF_MASK);
/*
* If is there a callback, enable interrupt and go out!
*/
if(dev->callback)
{
ADC_SC1_REG(regmap,0) &= ~(ADC_SC1_AIEN_MASK | ADC_SC1_ADCH_MASK);
ADC_SC1_REG(regmap,0) |= ADC_SC1_AIEN_MASK | ADC_SC1_ADCH(channel);
*value = 0;
return ERRORS_NO_ERROR;
}
/* Start conversion */
ADC_SC1_REG(regmap,0) = ADC_SC1_ADCH(channel);
/* wait until conversion ended */
while ((ADC_SC1_REG(regmap,0) & ADC_SC1_COCO_MASK) != ADC_SC1_COCO_MASK);
*value = (uint16_t) ADC_R_REG(regmap,0);
/* Disable conversion */
ADC_SC1_REG(regmap,0) = ADC_SC1_ADCH(ADC_CH_DISABLE);
return ERRORS_NO_ERROR;
}
else
{
*value = 0;
return ERRORS_ADC_CHANNEL_WRONG;
}
}
System_Errors Adc_setHwChannelTrigger (Adc_DeviceHandle dev,
Adc_ChannelConfig* config,
uint8_t numChannel)
{
uint8_t i;
if (!dev->devInitialized) return ERRORS_ADC_DEVICE_NOT_INIT;
if (numChannel > ADC_MAX_CHANNEL_NUMBER)
return ERRORS_ADC_NUMCH_WRONG;
//ADC_SC2_REG(dev->regMap) &= ~ADC_SC2_ADTRG_MASK;
for(i=0;i<numChannel;i++)
{
ADC_SC1_REG(dev->regMap,i) = 0;
ADC_SC1_REG(dev->regMap,i) = ADC_SC1_ADCH(config[i].channel) |
ADC_SC1_AIEN_MASK |
((config[i].inputType << ADC_SC1_DIFF_SHIFT) & ADC_SC1_DIFF_MASK);
}
ADC_SC2_REG(dev->regMap) |=ADC_SC2_ADTRG_MASK;
return ERRORS_NO_ERROR;
}
System_Errors Adc_readValueFromInterrupt (Adc_DeviceHandle dev, uint16_t *value)
{
*value = (uint16_t) ADC_R_REG(dev->regMap,0);
}
System_Errors Adc_enableDmaTrigger(Adc_DeviceHandle dev)
{
if (!dev->devInitialized) return ERRORS_ADC_DEVICE_NOT_INIT;
ADC_SC2_REG(dev->regMap) |= ADC_SC2_DMAEN_MASK; // Enable dma request
ADC_SC3_REG(dev->regMap) = 0; // Reset all pending status
return ERRORS_NO_ERROR;
}
System_Errors Adc_calibration (Adc_DeviceHandle dev)
{
ADC_MemMapPtr regmap = dev->regMap;
uint16_t calibration;
uint32_t busClock = Clock_getFrequency(CLOCK_BUS);
uint32_t regSC3 = ADC_SC3_REG(regmap);
uint32_t regSC2 = ADC_SC2_REG(regmap);
uint32_t regCFG1 = ADC_CFG1_REG(regmap);
if (!dev->devInitialized) return ERRORS_ADC_DEVICE_NOT_INIT;
/* Set registers and clock for a better calibration */
ADC_SC3_REG(regmap) &= ~(ADC_SC3_AVGE_MASK | ADC_SC3_AVGS_MASK | ADC_SC3_ADCO_MASK);
ADC_SC3_REG(regmap) |= ADC_SC3_AVGE_MASK | ADC_SC3_AVGS(3)|ADC_SC3_CAL_MASK;
ADC_SC2_REG(regmap) &= ~ADC_SC2_REFSEL_MASK;
ADC_SC2_REG(regmap) |= ADC_SC2_REFSEL(0);
ADC_CFG1_REG(regmap) &= ~(ADC_CFG1_ADIV_MASK | ADC_CFG1_ADICLK_MASK);
if (busClock < 32000000)
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(3);
else
ADC_CFG1_REG(regmap) |= ADC_CFG1_ADIV(3) | ADC_CFG1_ADICLK_MASK;
/* Start calibration */
ADC_SC3_REG(regmap) |= ADC_SC3_CAL_MASK;
/* wait calibration ended */
while ((ADC_SC1_REG(regmap,0) & ADC_SC1_COCO_MASK) != ADC_SC1_COCO_MASK);
/* Check error */
if(ADC_SC3_REG(regmap) & ADC_SC3_CALF_MASK)
{
/* Restore register */
ADC_SC3_REG(regmap) = regSC3;
ADC_SC2_REG(regmap) = regSC2;
ADC_CFG1_REG(regmap) = regCFG1;
return ERRORS_ADC_CALIBRATION;
}
calibration = 0;
calibration += ADC_CLP0_REG(regmap);
calibration += ADC_CLP1_REG(regmap);
calibration += ADC_CLP2_REG(regmap);
calibration += ADC_CLP3_REG(regmap);
calibration += ADC_CLP4_REG(regmap);
calibration += ADC_CLPS_REG(regmap);
calibration = (calibration >> 1U) | 0x8000U; // divide by 2
ADC_PG_REG(regmap) = calibration;
calibration = 0;
calibration += ADC_CLM0_REG(regmap);
calibration += ADC_CLM1_REG(regmap);
calibration += ADC_CLM2_REG(regmap);
calibration += ADC_CLM3_REG(regmap);
calibration += ADC_CLM4_REG(regmap);
calibration += ADC_CLMS_REG(regmap);
calibration = (calibration >> 1U) | 0x8000U; // divide by 2
ADC_MG_REG(regmap) = calibration;
ADC_SC1_REG(regmap,0) = ADC_SC1_ADCH(ADC_CH_DISABLE);
/* Restore register */
ADC_SC3_REG(regmap) = regSC3;
ADC_SC2_REG(regmap) = regSC2;
ADC_CFG1_REG(regmap) = regCFG1;
dev->devCalibration = 1;
return ERRORS_NO_ERROR;
}
#endif // LIBOHIBOARD_K12D5
#endif // LIBOHIBOARD_ADC
|
the_stack_data/92325409.c | #include <stdio.h>
int main ()
{
int n,temp,k;
puts("Enter the number of elements");
scanf("%d", &n);
int a[n];
puts("Enter value for k");
scanf("%d", &k);
puts("Enter the array elements \n");
for (int i=0;i<n;++i)
scanf("%d", &a[i]);
for (int i=0;i<n;i++) //Bubble sort
{
for (int j=0;j<i-n-1;j++)
{
if (a[j]>a[j+1])
{
temp=a[j];
a[j+1]=temp;
temp=a[j+1];
}
}
}
printf("K-th element is %d", a[k-1]);
return 0;
} |
the_stack_data/190768037.c |
#include <stdio.h>
void scilab_rt_contour_d2d2d2i2d0d0s0_(int in00, int in01, double matrixin0[in00][in01],
int in10, int in11, double matrixin1[in10][in11],
int in20, int in21, double matrixin2[in20][in21],
int in30, int in31, int matrixin3[in30][in31],
double scalarin0,
double scalarin1,
char* scalarin2)
{
int i;
int j;
double val0 = 0;
double val1 = 0;
double val2 = 0;
int val3 = 0;
for (i = 0; i < in00; ++i) {
for (j = 0; j < in01; ++j) {
val0 += matrixin0[i][j];
}
}
printf("%f", val0);
for (i = 0; i < in10; ++i) {
for (j = 0; j < in11; ++j) {
val1 += matrixin1[i][j];
}
}
printf("%f", val1);
for (i = 0; i < in20; ++i) {
for (j = 0; j < in21; ++j) {
val2 += matrixin2[i][j];
}
}
printf("%f", val2);
for (i = 0; i < in30; ++i) {
for (j = 0; j < in31; ++j) {
val3 += matrixin3[i][j];
}
}
printf("%d", val3);
printf("%f", scalarin0);
printf("%f", scalarin1);
printf("%s", scalarin2);
}
|
the_stack_data/488474.c | #include <stdio.h>
int main(int argc, char *argv[])
{
if (argc != 2) {
fprintf(stderr, "Invalid amount of arguments\n");
return -1;
}
FILE *file = fopen(argv[1], "r");
if (file == NULL) {
perror(argv[1]);
return -1;
}
char buffer[1024] = {'\0'};
size_t size = 0;
while ( (size = fread(buffer, 1, 1024, file)) > 0) {
fwrite(buffer, 1, size, stdout);
}
fclose(file);
return 0;
}
|
the_stack_data/148578334.c | /**
* Assignment 027 - symmetric matrix
*
* Given the dimension of a matrix and its elements, the program
* checks whether the matrix is symmetric or not.
*
* This example shows the usage malloc for dynamic memory allocation.
*
* Author: Álvaro A. Costa
*/
#include <stdio.h>
#include <stdlib.h>
int **new_mat(int nrow, int ncol);
int is_symmetric(int **mat, int nrow, int ncol);
void free_mat(int ***mat, int nrow);
int **new_mat(int nrow, int ncol)
{
int **mat;
int ok, i;
ok = 1;
mat = (int **) malloc(nrow * sizeof(int *));
if (mat == NULL) {
return mat;
}
for (i = 0; i < nrow; i++) {
mat[i] = (int *) malloc(ncol * sizeof(int));
if (mat[i] == NULL) {
ok = 0;
break;
}
}
if (!ok)
free_mat(&mat, i);
return mat;
}
void free_mat(int ***mat, int nrow)
{
int i;
for (i = 0; i < nrow; i++)
free((*mat)[i]);
free(*mat);
*mat = NULL;
}
int is_symmetric(int **mat, int nrow, int ncol)
{
int i, j;
if (nrow != ncol) {
return 0;
}
for (i = 0; i < nrow; i++) {
for (j = 0; j < ncol; j++) {
if (mat[i][j] != mat[j][i])
return 0;
}
}
return 1;
}
int main()
{
int ncol, nrow, i, j;
int **mat;
scanf("%d %d", &nrow, &ncol);
if ((mat = new_mat(nrow, ncol)) == NULL) {
printf("ERR: alocacao falhou!\n");
return 1;
}
for (i = 0; i < nrow; i++)
for (j = 0; j < ncol; j++)
scanf("%d", &mat[i][j]);
if (is_symmetric(mat, nrow, ncol))
printf("Eh simetrica\n");
else
printf("Nao eh simetrica\n");
free_mat(&mat, nrow);
return 0;
}
|
the_stack_data/242329673.c | int printf(const char *, ...);
#define LONG_SIGN_BIT (1ull << 63)
#define ULONG_MAX (0xFFFFFFFFFFFFFFFFull)
#define LONG_MAX (0x7FFFFFFFFFFFFFFFll)
int float_to_ushort(void) {
float g = 0x92F9E84EL;
unsigned short s = g;
return printf("(float) unsigned short: %d\n", s);
}
int float_to_uint(void) {
float f1 = 1.5678e30f, f2 = LONG_SIGN_BIT, f3 = ULONG_MAX;
unsigned int a = f1, b = f2, c = f3;
return printf("(float) unsigned int: %u, %u, %u\n", a, b, c);
}
int float_to_ulong(void) {
float f1 = 1.5678e30f, f2 = LONG_SIGN_BIT, f3 = ULONG_MAX, f4 = LONG_MAX;
unsigned long long a = f1, b = f2, c = f3, d = f4;
return printf("(float) unsigned long: %llu, %llu, %llu, %llu\n", a, b, c, d);
}
int double_to_uint(void) {
double d1 = 1.67890e20, d2 = LONG_SIGN_BIT, d3 = ULONG_MAX;
unsigned int a = d1, b = d2, c = d3;
return printf("(double) unsigned int %u, %u, %u\n", a, b, c);
}
int double_to_ulong(void) {
double d1 = 1.67890e20, d2 = LONG_SIGN_BIT, d3 = ULONG_MAX;
unsigned long long a = d1, b = d2, c = d3;
return printf("(double) unsigned long: %llu, %llu, %llu\n", a, b, c);
}
int main(void) {
return float_to_ushort()
+ float_to_uint()
+ float_to_ulong()
+ double_to_uint()
+ double_to_ulong();
}
|
the_stack_data/581401.c | /*
------------------------------------------------------------------------------------
Tutorial: Using of scanf to read different data types.
------------------------------------------------------------------------------------
*/
// All functions related to standard input(read) and output(write)
// are included in stdio.h.
// stdio: STanDard Input and Output.
#include <stdio.h>
// Scanf is a function to read some data given by keyboard.
int main()
{
// Declare variables and initialize them.
char letter = 's';
int num = 100;
float decimal = 3.1415;
// Print them
printf("Initial values:\n");
printf("%c\n", letter);
printf("%d\n", num);
printf("%f\n", decimal);
// Modify its content through scanf
printf("Enter the new value of letter: ");
scanf("%c", &letter);
printf("Enter the new value of num: ");
scanf("%d", &num);
printf("Enter the new value of decimal: ");
scanf("%f", &decimal);
// As you can see scanf needs at least two parameters
// a format identifier (%d, %f, %c) and an & followed by the variable
// name (if you ARE using pointers, in that case you must
// ommit the "&").
// Format identifier tells to scanf the data type of the data you want
// to read.
// Print new values:
printf("New values:\n");
printf("%c\n", letter);
printf("%d\n", num);
printf("%f\n", decimal);
}
/*
------------------------------------------------------------------------------------
Scanf can read multiple values at once, you just need to type the format identifiers
between ", then type format identifiers separated by an space, that will be the first
argument, after that, all the following arguments will be an & followed by
the variable's name. If you want to read two int variables at once the syntax will be
scanf("%d %d", &num1, &num2)
Challenge: Read "Hello" letter by letter and print all the letters
together.
------------------------------------------------------------------------------------
*/
|
the_stack_data/145453546.c | /* KallistiOS ##version##
thrd_detach.c
Copyright (C) 2014 Lawrence Sebald
*/
#include <threads.h>
int thrd_detach(thrd_t thr) {
if(thd_detach(thr))
return thrd_error;
return thrd_success;
}
|
the_stack_data/21244.c | #if defined(USE_MDR1986VE9x)
#include "digitalpin.h"
#include <MDR32Fx.h>
#include <MDR32F9Qx_rst_clk.h>
typedef struct {
MDR_PORT_TypeDef * port;
uint8_t pin_pos;
} digitalpin_descript;
static const digitalpin_descript DIGITALPINS[] = {
{MDR_PORTA, 0},
{MDR_PORTA, 1},
{MDR_PORTA, 2},
{MDR_PORTA, 3},
{MDR_PORTA, 4},
{MDR_PORTA, 5},
{MDR_PORTA, 6},
{MDR_PORTA, 7},
{MDR_PORTA, 8},
{MDR_PORTA, 9},
{MDR_PORTA, 10},
{MDR_PORTA, 11},
{MDR_PORTA, 12},
{MDR_PORTA, 13},
{MDR_PORTA, 14},
{MDR_PORTA, 15},
{MDR_PORTB, 0},
{MDR_PORTB, 1},
{MDR_PORTB, 2},
{MDR_PORTB, 3},
{MDR_PORTB, 4},
{MDR_PORTB, 5},
{MDR_PORTB, 6},
{MDR_PORTB, 7},
{MDR_PORTB, 8},
{MDR_PORTB, 9},
{MDR_PORTB, 10},
{MDR_PORTB, 11},
{MDR_PORTB, 12},
{MDR_PORTB, 13},
{MDR_PORTB, 14},
{MDR_PORTB, 15},
{MDR_PORTC, 0},
{MDR_PORTC, 1},
{MDR_PORTC, 2},
{MDR_PORTC, 3},
{MDR_PORTC, 4},
{MDR_PORTC, 5},
{MDR_PORTC, 6},
{MDR_PORTC, 7},
{MDR_PORTC, 8},
{MDR_PORTC, 9},
{MDR_PORTC, 10},
{MDR_PORTC, 11},
{MDR_PORTC, 12},
{MDR_PORTC, 13},
{MDR_PORTC, 14},
{MDR_PORTC, 15},
};
void digitalpin_mode(DIGITALPIN_NAME pn, DIGITALPIN_MODE pmode) {
/* тактирование порта */
RST_CLK_PCLKcmd(PCLK_BIT(DIGITALPINS[pn].port), ENABLE);
/* digital mode */
DIGITALPINS[pn].port->ANALOG |= (1UL << DIGITALPINS[pn].pin_pos);
DIGITALPINS[pn].port->PULL |= (1UL << DIGITALPINS[pn].pin_pos) << PORT_PULL_DOWN_Pos; // pull down
DIGITALPINS[pn].port->PULL |= (1UL << DIGITALPINS[pn].pin_pos) << PORT_PULL_UP_Pos; //pull up
DIGITALPINS[pn].port->PWR |= 0x01 << 2*DIGITALPINS[pn].pin_pos; // speed slow
switch (pmode)
{
case DIGITALPIN_INPUT:
break;
case DIGITALPIN_OUTPUT:
DIGITALPINS[pn].port->OE |= (1UL << DIGITALPINS[pn].pin_pos); // output
break;
}
}
void digitalpin_set(DIGITALPIN_NAME pn, bool state) {
if (state)
DIGITALPINS[pn].port->RXTX |= (1UL << DIGITALPINS[pn].pin_pos);
else
DIGITALPINS[pn].port->RXTX &= ~(1UL << DIGITALPINS[pn].pin_pos);
}
void digitalpin_toggle(DIGITALPIN_NAME pn) {
DIGITALPINS[pn].port->RXTX ^= (1UL << DIGITALPINS[pn].pin_pos);
}
bool digitalpin_get(DIGITALPIN_NAME pn) {
return DIGITALPINS[pn].port->RXTX;
}
#endif |
the_stack_data/148577322.c | #include <stdio.h>
/**
* 显示小于输入整数的所有二的乘方
*
*/
int main(int argc, char const *argv[])
{
puts("请输入一个整数:");
int i;
scanf("%d", &i);
for (int index = 2; index < i; index *= 2) {
printf("%6d", index);
}
putchar('\n');
return 0;
}
|
the_stack_data/190767021.c | #include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
int main(int argc, char *argv[]) {
if (argc < 3) {
fprintf(stderr, "uso %s <ipv6> <porta>\n", argv[0]);
exit(0);
}
int socket_agente;
socklen_t clilen;
struct sockaddr_in6 server_addr, client_addr;
char buffer[1024];
socket_agente = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
if (socket_agente < 0) {
perror("erro ao criar socket");
exit(1);
}
(&server_addr, 0, sizeof(server_addr));
server_addr.sin6_family = AF_INET6;
inet_pton(AF_INET6, argv[1], &server_addr.sin6_addr);
server_addr.sin6_port = htons(atoi(argv[2]));
char request[7];
request[0] = 'r';
request[1] = 'e';
request[2] = 'q';
request[3] = 'u';
request[4] = 'e';
request[5] = 's';
request[6] = 't';
// Envia a mensagem 'REQUEST' para o monitor
if (sendto(socket_agente, request, sizeof(request), 0,
(struct sockaddr *) &server_addr, sizeof(server_addr)) < 0) {
perror("sendto falhou");
exit(4);
}
clilen = sizeof(client_addr);
if (recvfrom(socket_agente, buffer, 1024, 0,
(struct sockaddr *) &client_addr, &clilen) < 0) {
perror("recvfrom falhou");
exit(4);
}
// Imprima mensagem recebida do monitor
printf("%s\n\n", buffer);
close(socket_agente);
return 0;
}
|
the_stack_data/225141909.c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
/*
* Strips spaces from both the front and back of a string,
* leaving any internal spaces alone.
*/
char* strip(char* str) {
int size;
int num_spaces;
int first_non_space, last_non_space, i;
char* result;
size = strlen(str);
// This counts the number of leading and trailing spaces
// so we can figure out how big the result array should be.
num_spaces = 0;
first_non_space = 0;
while (first_non_space<size && str[first_non_space] == ' ') {
++num_spaces;
++first_non_space;
}
last_non_space = size-1;
while (last_non_space>=0 && str[last_non_space] == ' ') {
++num_spaces;
--last_non_space;
}
// If num_spaces >= size then that means that the string
// consisted of nothing but spaces, so we'll return the
// empty string.
if (num_spaces >= size) {
return "";
}
// Allocate a slot for all the "saved" characters
// plus one extra for the null terminator.
result = calloc(size-num_spaces+1, sizeof(char));
// Copy in the "saved" characters.
for (i=first_non_space; i<=last_non_space; ++i) {
result[i-first_non_space] = str[i];
}
// Place the null terminator at the end of the result string.
result[i-first_non_space] = '\0';
return result;
}
/*
* Return true (1) if the given string is "clean", i.e., has
* no spaces at the front or the back of the string.
*/
int is_clean(char* str) {
char* cleaned;
int result;
// We check if it's clean by calling strip and seeing if the
// result is the same as the original string.
cleaned = strip(str);
// strcmp compares two strings, returning a negative value if
// the first is less than the second (in alphabetical order),
// 0 if they're equal, and a positive value if the first is
// greater than the second.
result = strcmp(str, cleaned);
if(strlen(cleaned) != 0) {
free(cleaned);
}
return result == 0;
}
int main() {
int i;
int NUM_STRINGS = 7;
// Makes an array of 7 string constants for testing.
char* strings[] = { "Morris",
" stuff",
"Minnesota",
"nonsense ",
"USA",
" ",
" silliness "
};
for (i=0; i<NUM_STRINGS; ++i) {
if (is_clean(strings[i])) {
printf("The string '%s' is clean.\n", strings[i]);
} else {
printf("The string '%s' is NOT clean.\n", strings[i]);
}
}
return 0;
}
|
the_stack_data/234519422.c | /* RIPEMD160DRIVER.C - test driver for RIPEMD160
* $FreeBSD: src/lib/libmd/rmddriver.c,v 1.3 2001/09/30 21:56:22 dillon Exp $
* $DragonFly: src/lib/libmd/rmddriver.c,v 1.3 2008/09/11 20:25:34 swildner Exp $
*/
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.
These notices must be retained in any copies of any part of this
documentation and/or software.
*/
#include <sys/types.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include "ripemd.h"
/* Digests a string and prints the result.
*/
static void RIPEMD160String (char *string)
{
char buf[2*20+1];
printf ("RIPEMD160 (\"%s\") = %s\n",
string, RIPEMD160_Data(string,strlen(string),buf));
}
/* Digests a reference suite of strings and prints the results.
*/
int main(void)
{
printf ("RIPEMD160 test suite:\n");
RIPEMD160String ("");
RIPEMD160String ("abc");
RIPEMD160String ("message digest");
RIPEMD160String ("abcdefghijklmnopqrstuvwxyz");
RIPEMD160String
("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
RIPEMD160String
("1234567890123456789012345678901234567890\
1234567890123456789012345678901234567890");
return 0;
}
|
the_stack_data/7951531.c | /* utility to create the register check tables
* this includes inlined list.h safe for userspace.
*
* Copyright 2009 Jerome Glisse
* Copyright 2009 Red Hat Inc.
*
* Authors:
* Jerome Glisse
* Dave Airlie
*/
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <regex.h>
#include <libgen.h>
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
/**
* container_of - cast a member of a structure out to the containing structure
* @ptr: the pointer to the member.
* @type: the type of the container struct this is embedded in.
* @member: the name of the member within the struct.
*
*/
#define container_of(ptr, type, member) ({ \
const typeof(((type *)0)->member)*__mptr = (ptr); \
(type *)((char *)__mptr - offsetof(type, member)); })
/*
* Simple doubly linked list implementation.
*
* Some of the internal functions ("__xxx") are useful when
* manipulating whole lists rather than single entries, as
* sometimes we already know the next/prev entries and we can
* generate better code by using them directly rather than
* using the generic single-entry routines.
*/
struct list_head {
struct list_head *next, *prev;
};
#define LIST_HEAD_INIT(name) { &(name), &(name) }
#define LIST_HEAD(name) \
struct list_head name = LIST_HEAD_INIT(name)
static inline void INIT_LIST_HEAD(struct list_head *list)
{
list->next = list;
list->prev = list;
}
/*
* Insert a new entry between two known consecutive entries.
*
* This is only for internal list manipulation where we know
* the prev/next entries already!
*/
#ifndef CONFIG_DEBUG_LIST
static inline void __list_add(struct list_head *new,
struct list_head *prev, struct list_head *next)
{
next->prev = new;
new->next = next;
new->prev = prev;
prev->next = new;
}
#else
extern void __list_add(struct list_head *new,
struct list_head *prev, struct list_head *next);
#endif
/**
* list_add - add a new entry
* @new: new entry to be added
* @head: list head to add it after
*
* Insert a new entry after the specified head.
* This is good for implementing stacks.
*/
static inline void list_add(struct list_head *new, struct list_head *head)
{
__list_add(new, head, head->next);
}
/**
* list_add_tail - add a new entry
* @new: new entry to be added
* @head: list head to add it before
*
* Insert a new entry before the specified head.
* This is useful for implementing queues.
*/
static inline void list_add_tail(struct list_head *new, struct list_head *head)
{
__list_add(new, head->prev, head);
}
/*
* Delete a list entry by making the prev/next entries
* point to each other.
*
* This is only for internal list manipulation where we know
* the prev/next entries already!
*/
static inline void __list_del(struct list_head *prev, struct list_head *next)
{
next->prev = prev;
prev->next = next;
}
/**
* list_del - deletes entry from list.
* @entry: the element to delete from the list.
* Note: list_empty() on entry does not return true after this, the entry is
* in an undefined state.
*/
#ifndef CONFIG_DEBUG_LIST
static inline void list_del(struct list_head *entry)
{
__list_del(entry->prev, entry->next);
entry->next = (void *)0xDEADBEEF;
entry->prev = (void *)0xBEEFDEAD;
}
#else
extern void list_del(struct list_head *entry);
#endif
/**
* list_replace - replace old entry by new one
* @old : the element to be replaced
* @new : the new element to insert
*
* If @old was empty, it will be overwritten.
*/
static inline void list_replace(struct list_head *old, struct list_head *new)
{
new->next = old->next;
new->next->prev = new;
new->prev = old->prev;
new->prev->next = new;
}
static inline void list_replace_init(struct list_head *old,
struct list_head *new)
{
list_replace(old, new);
INIT_LIST_HEAD(old);
}
/**
* list_del_init - deletes entry from list and reinitialize it.
* @entry: the element to delete from the list.
*/
static inline void list_del_init(struct list_head *entry)
{
__list_del(entry->prev, entry->next);
INIT_LIST_HEAD(entry);
}
/**
* list_move - delete from one list and add as another's head
* @list: the entry to move
* @head: the head that will precede our entry
*/
static inline void list_move(struct list_head *list, struct list_head *head)
{
__list_del(list->prev, list->next);
list_add(list, head);
}
/**
* list_move_tail - delete from one list and add as another's tail
* @list: the entry to move
* @head: the head that will follow our entry
*/
static inline void list_move_tail(struct list_head *list,
struct list_head *head)
{
__list_del(list->prev, list->next);
list_add_tail(list, head);
}
/**
* list_is_last - tests whether @list is the last entry in list @head
* @list: the entry to test
* @head: the head of the list
*/
static inline int list_is_last(const struct list_head *list,
const struct list_head *head)
{
return list->next == head;
}
/**
* list_empty - tests whether a list is empty
* @head: the list to test.
*/
static inline int list_empty(const struct list_head *head)
{
return head->next == head;
}
/**
* list_empty_careful - tests whether a list is empty and not being modified
* @head: the list to test
*
* Description:
* tests whether a list is empty _and_ checks that no other CPU might be
* in the process of modifying either member (next or prev)
*
* NOTE: using list_empty_careful() without synchronization
* can only be safe if the only activity that can happen
* to the list entry is list_del_init(). Eg. it cannot be used
* if another CPU could re-list_add() it.
*/
static inline int list_empty_careful(const struct list_head *head)
{
struct list_head *next = head->next;
return (next == head) && (next == head->prev);
}
/**
* list_is_singular - tests whether a list has just one entry.
* @head: the list to test.
*/
static inline int list_is_singular(const struct list_head *head)
{
return !list_empty(head) && (head->next == head->prev);
}
static inline void __list_cut_position(struct list_head *list,
struct list_head *head,
struct list_head *entry)
{
struct list_head *new_first = entry->next;
list->next = head->next;
list->next->prev = list;
list->prev = entry;
entry->next = list;
head->next = new_first;
new_first->prev = head;
}
/**
* list_cut_position - cut a list into two
* @list: a new list to add all removed entries
* @head: a list with entries
* @entry: an entry within head, could be the head itself
* and if so we won't cut the list
*
* This helper moves the initial part of @head, up to and
* including @entry, from @head to @list. You should
* pass on @entry an element you know is on @head. @list
* should be an empty list or a list you do not care about
* losing its data.
*
*/
static inline void list_cut_position(struct list_head *list,
struct list_head *head,
struct list_head *entry)
{
if (list_empty(head))
return;
if (list_is_singular(head) && (head->next != entry && head != entry))
return;
if (entry == head)
INIT_LIST_HEAD(list);
else
__list_cut_position(list, head, entry);
}
static inline void __list_splice(const struct list_head *list,
struct list_head *prev, struct list_head *next)
{
struct list_head *first = list->next;
struct list_head *last = list->prev;
first->prev = prev;
prev->next = first;
last->next = next;
next->prev = last;
}
/**
* list_splice - join two lists, this is designed for stacks
* @list: the new list to add.
* @head: the place to add it in the first list.
*/
static inline void list_splice(const struct list_head *list,
struct list_head *head)
{
if (!list_empty(list))
__list_splice(list, head, head->next);
}
/**
* list_splice_tail - join two lists, each list being a queue
* @list: the new list to add.
* @head: the place to add it in the first list.
*/
static inline void list_splice_tail(struct list_head *list,
struct list_head *head)
{
if (!list_empty(list))
__list_splice(list, head->prev, head);
}
/**
* list_splice_init - join two lists and reinitialise the emptied list.
* @list: the new list to add.
* @head: the place to add it in the first list.
*
* The list at @list is reinitialised
*/
static inline void list_splice_init(struct list_head *list,
struct list_head *head)
{
if (!list_empty(list)) {
__list_splice(list, head, head->next);
INIT_LIST_HEAD(list);
}
}
/**
* list_splice_tail_init - join two lists and reinitialise the emptied list
* @list: the new list to add.
* @head: the place to add it in the first list.
*
* Each of the lists is a queue.
* The list at @list is reinitialised
*/
static inline void list_splice_tail_init(struct list_head *list,
struct list_head *head)
{
if (!list_empty(list)) {
__list_splice(list, head->prev, head);
INIT_LIST_HEAD(list);
}
}
/**
* list_entry - get the struct for this entry
* @ptr: the &struct list_head pointer.
* @type: the type of the struct this is embedded in.
* @member: the name of the list_struct within the struct.
*/
#define list_entry(ptr, type, member) \
container_of(ptr, type, member)
/**
* list_first_entry - get the first element from a list
* @ptr: the list head to take the element from.
* @type: the type of the struct this is embedded in.
* @member: the name of the list_struct within the struct.
*
* Note, that list is expected to be not empty.
*/
#define list_first_entry(ptr, type, member) \
list_entry((ptr)->next, type, member)
/**
* list_for_each - iterate over a list
* @pos: the &struct list_head to use as a loop cursor.
* @head: the head for your list.
*/
#define list_for_each(pos, head) \
for (pos = (head)->next; prefetch(pos->next), pos != (head); \
pos = pos->next)
/**
* __list_for_each - iterate over a list
* @pos: the &struct list_head to use as a loop cursor.
* @head: the head for your list.
*
* This variant differs from list_for_each() in that it's the
* simplest possible list iteration code, no prefetching is done.
* Use this for code that knows the list to be very short (empty
* or 1 entry) most of the time.
*/
#define __list_for_each(pos, head) \
for (pos = (head)->next; pos != (head); pos = pos->next)
/**
* list_for_each_prev - iterate over a list backwards
* @pos: the &struct list_head to use as a loop cursor.
* @head: the head for your list.
*/
#define list_for_each_prev(pos, head) \
for (pos = (head)->prev; prefetch(pos->prev), pos != (head); \
pos = pos->prev)
/**
* list_for_each_safe - iterate over a list safe against removal of list entry
* @pos: the &struct list_head to use as a loop cursor.
* @n: another &struct list_head to use as temporary storage
* @head: the head for your list.
*/
#define list_for_each_safe(pos, n, head) \
for (pos = (head)->next, n = pos->next; pos != (head); \
pos = n, n = pos->next)
/**
* list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
* @pos: the &struct list_head to use as a loop cursor.
* @n: another &struct list_head to use as temporary storage
* @head: the head for your list.
*/
#define list_for_each_prev_safe(pos, n, head) \
for (pos = (head)->prev, n = pos->prev; \
prefetch(pos->prev), pos != (head); \
pos = n, n = pos->prev)
/**
* list_for_each_entry - iterate over list of given type
* @pos: the type * to use as a loop cursor.
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*/
#define list_for_each_entry(pos, head, member) \
for (pos = list_entry((head)->next, typeof(*pos), member); \
&pos->member != (head); \
pos = list_entry(pos->member.next, typeof(*pos), member))
/**
* list_for_each_entry_reverse - iterate backwards over list of given type.
* @pos: the type * to use as a loop cursor.
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*/
#define list_for_each_entry_reverse(pos, head, member) \
for (pos = list_entry((head)->prev, typeof(*pos), member); \
prefetch(pos->member.prev), &pos->member != (head); \
pos = list_entry(pos->member.prev, typeof(*pos), member))
/**
* list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue()
* @pos: the type * to use as a start point
* @head: the head of the list
* @member: the name of the list_struct within the struct.
*
* Prepares a pos entry for use as a start point in list_for_each_entry_continue().
*/
#define list_prepare_entry(pos, head, member) \
((pos) ? : list_entry(head, typeof(*pos), member))
/**
* list_for_each_entry_continue - continue iteration over list of given type
* @pos: the type * to use as a loop cursor.
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Continue to iterate over list of given type, continuing after
* the current position.
*/
#define list_for_each_entry_continue(pos, head, member) \
for (pos = list_entry(pos->member.next, typeof(*pos), member); \
prefetch(pos->member.next), &pos->member != (head); \
pos = list_entry(pos->member.next, typeof(*pos), member))
/**
* list_for_each_entry_continue_reverse - iterate backwards from the given point
* @pos: the type * to use as a loop cursor.
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Start to iterate over list of given type backwards, continuing after
* the current position.
*/
#define list_for_each_entry_continue_reverse(pos, head, member) \
for (pos = list_entry(pos->member.prev, typeof(*pos), member); \
prefetch(pos->member.prev), &pos->member != (head); \
pos = list_entry(pos->member.prev, typeof(*pos), member))
/**
* list_for_each_entry_from - iterate over list of given type from the current point
* @pos: the type * to use as a loop cursor.
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Iterate over list of given type, continuing from current position.
*/
#define list_for_each_entry_from(pos, head, member) \
for (; prefetch(pos->member.next), &pos->member != (head); \
pos = list_entry(pos->member.next, typeof(*pos), member))
/**
* list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
* @pos: the type * to use as a loop cursor.
* @n: another type * to use as temporary storage
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*/
#define list_for_each_entry_safe(pos, n, head, member) \
for (pos = list_entry((head)->next, typeof(*pos), member), \
n = list_entry(pos->member.next, typeof(*pos), member); \
&pos->member != (head); \
pos = n, n = list_entry(n->member.next, typeof(*n), member))
/**
* list_for_each_entry_safe_continue
* @pos: the type * to use as a loop cursor.
* @n: another type * to use as temporary storage
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Iterate over list of given type, continuing after current point,
* safe against removal of list entry.
*/
#define list_for_each_entry_safe_continue(pos, n, head, member) \
for (pos = list_entry(pos->member.next, typeof(*pos), member), \
n = list_entry(pos->member.next, typeof(*pos), member); \
&pos->member != (head); \
pos = n, n = list_entry(n->member.next, typeof(*n), member))
/**
* list_for_each_entry_safe_from
* @pos: the type * to use as a loop cursor.
* @n: another type * to use as temporary storage
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Iterate over list of given type from current point, safe against
* removal of list entry.
*/
#define list_for_each_entry_safe_from(pos, n, head, member) \
for (n = list_entry(pos->member.next, typeof(*pos), member); \
&pos->member != (head); \
pos = n, n = list_entry(n->member.next, typeof(*n), member))
/**
* list_for_each_entry_safe_reverse
* @pos: the type * to use as a loop cursor.
* @n: another type * to use as temporary storage
* @head: the head for your list.
* @member: the name of the list_struct within the struct.
*
* Iterate backwards over list of given type, safe against removal
* of list entry.
*/
#define list_for_each_entry_safe_reverse(pos, n, head, member) \
for (pos = list_entry((head)->prev, typeof(*pos), member), \
n = list_entry(pos->member.prev, typeof(*pos), member); \
&pos->member != (head); \
pos = n, n = list_entry(n->member.prev, typeof(*n), member))
struct offset {
struct list_head list;
unsigned offset;
};
struct table {
struct list_head offsets;
unsigned offset_max;
unsigned nentry;
unsigned *table;
char *gpu_prefix;
};
static struct offset *offset_new(unsigned o)
{
struct offset *offset;
offset = (struct offset *)malloc(sizeof(struct offset));
if (offset) {
INIT_LIST_HEAD(&offset->list);
offset->offset = o;
}
return offset;
}
static void table_offset_add(struct table *t, struct offset *offset)
{
list_add_tail(&offset->list, &t->offsets);
}
static void table_init(struct table *t)
{
INIT_LIST_HEAD(&t->offsets);
t->offset_max = 0;
t->nentry = 0;
t->table = NULL;
}
static void table_print(struct table *t)
{
unsigned nlloop, i, j, n, c, id;
nlloop = (t->nentry + 3) / 4;
c = t->nentry;
printf("static const unsigned %s_reg_safe_bm[%d] = {\n", t->gpu_prefix,
t->nentry);
for (i = 0, id = 0; i < nlloop; i++) {
n = 4;
if (n > c)
n = c;
c -= n;
for (j = 0; j < n; j++) {
if (j == 0)
printf("\t");
else
printf(" ");
printf("0x%08X,", t->table[id++]);
}
printf("\n");
}
printf("};\n");
}
static int table_build(struct table *t)
{
struct offset *offset;
unsigned i, m;
t->nentry = ((t->offset_max >> 2) + 31) / 32;
t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry);
if (t->table == NULL)
return -1;
memset(t->table, 0xff, sizeof(unsigned) * t->nentry);
list_for_each_entry(offset, &t->offsets, list) {
i = (offset->offset >> 2) / 32;
m = (offset->offset >> 2) & 31;
m = 1 << m;
t->table[i] ^= m;
}
return 0;
}
static char gpu_name[10];
static int parser_auth(struct table *t, const char *filename)
{
FILE *file;
regex_t mask_rex;
regmatch_t match[4];
char buf[1024];
size_t end;
int len;
int done = 0;
int r;
unsigned o;
struct offset *offset;
char last_reg_s[10];
int last_reg;
if (regcomp
(&mask_rex, "(0x[0-9a-fA-F]*) *([_a-zA-Z0-9]*)", REG_EXTENDED)) {
fprintf(stderr, "Failed to compile regular expression\n");
return -1;
}
file = fopen(filename, "r");
if (file == NULL) {
fprintf(stderr, "Failed to open: %s\n", filename);
return -1;
}
fseek(file, 0, SEEK_END);
end = ftell(file);
fseek(file, 0, SEEK_SET);
/* get header */
if (fgets(buf, 1024, file) == NULL)
return -1;
/* first line will contain the last register
* and gpu name */
sscanf(buf, "%s %s", gpu_name, last_reg_s);
t->gpu_prefix = gpu_name;
last_reg = strtol(last_reg_s, NULL, 16);
do {
if (fgets(buf, 1024, file) == NULL)
return -1;
len = strlen(buf);
if (ftell(file) == end)
done = 1;
if (len) {
r = regexec(&mask_rex, buf, 4, match, 0);
if (r == REG_NOMATCH) {
} else if (r) {
fprintf(stderr,
"Error matching regular expression %d in %s\n",
r, filename);
return -1;
} else {
buf[match[0].rm_eo] = 0;
buf[match[1].rm_eo] = 0;
buf[match[2].rm_eo] = 0;
o = strtol(&buf[match[1].rm_so], NULL, 16);
offset = offset_new(o);
table_offset_add(t, offset);
if (o > t->offset_max)
t->offset_max = o;
}
}
} while (!done);
fclose(file);
if (t->offset_max < last_reg)
t->offset_max = last_reg;
return table_build(t);
}
int main(int argc, char *argv[])
{
struct table t;
if (argc != 2) {
fprintf(stderr, "Usage: %s <authfile>\n", argv[0]);
exit(1);
}
table_init(&t);
if (parser_auth(&t, argv[1])) {
fprintf(stderr, "Failed to parse file %s\n", argv[1]);
return -1;
}
table_print(&t);
return 0;
}
|
the_stack_data/1157424.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <unistd.h>
char * ip = "127.0.0.1";
#define PORT 8888
char * method_type = "POST /user HTTP/1.1";
char * client = "Android 8.1";
char * token = "0eefffb6-32af-4fed-833c-866af540akdn";
char * host = "jobs8.cn";
char * make_post_info() {
char * content = "{\"key\":\"123456\",\"name\":\"Dio\",\"address\":\"BJ\"}";
char *info = (char *)malloc(0x4000);
memset(info,0,0x4000);
sprintf(info,"%s\r\n",method_type);
sprintf(info,"%sUser-Agent: %s\r\n",info,client);
sprintf(info,"%sAccept: */*\r\n",info);
sprintf(info,"%sToken: %s\r\n",info,token);
sprintf(info,"%sHost: %s\r\n",info,host);
sprintf(info,"%sAccept-Encoding: gzip, deflate, br\r\n",info);
sprintf(info,"%sConnection: keep-alive\r\n",info);
sprintf(info,"%sContent-Type: %s\r\n",info,"application/json");
sprintf(info,"%sContent-Length: %lu\r\n\r\n",info,strlen(content));
sprintf(info,"%s%s",info,content);
return info;
}
int main(int argc, char *argv[]) {
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
struct sockaddr_in address;
address.sin_family = AF_INET;
address.sin_port = htons(PORT);
address.sin_addr.s_addr = inet_addr(ip);
int result = connect(sockfd,(struct sockaddr *)&address,sizeof(address));
if(result == -1) {
perror("oops: client connect error");
return 1;
}
char * msg = make_post_info();
send(sockfd,msg,strlen(msg),0);
char buff[BUFSIZ];
int len = recv(sockfd, buff, BUFSIZ, 0);
printf("%s\n", buff);
close(sockfd);
free(msg);
return 0;
}
|
the_stack_data/49806.c | /*
Copyright (c) 2011-2020 Roger Light <[email protected]>
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
Contributors:
Roger Light - initial implementation and documentation.
*/
#if defined(WIN32) || defined(__CYGWIN__)
#include "config.h"
#include <windows.h>
#include "memory_mosq.h"
extern int run;
SERVICE_STATUS_HANDLE service_handle = 0;
static SERVICE_STATUS service_status;
int main(int argc, char *argv[]);
static void print_error(void)
{
char *buf = NULL;
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL, GetLastError(), LANG_NEUTRAL, (LPTSTR)&buf, 0, NULL);
fprintf(stderr, "Error: %s\n", buf);
LocalFree(buf);
}
/* Service control callback */
void __stdcall service_handler(DWORD fdwControl)
{
switch(fdwControl){
case SERVICE_CONTROL_CONTINUE:
/* Continue from Paused state. */
break;
case SERVICE_CONTROL_PAUSE:
/* Pause service. */
break;
case SERVICE_CONTROL_SHUTDOWN:
/* System is shutting down. */
case SERVICE_CONTROL_STOP:
/* Service should stop. */
service_status.dwCurrentState = SERVICE_STOP_PENDING;
SetServiceStatus(service_handle, &service_status);
run = 0;
break;
}
}
/* Function called when started as a service. */
void __stdcall service_main(DWORD dwArgc, LPTSTR *lpszArgv)
{
char **argv;
int argc = 1;
char conf_path[MAX_PATH + 20];
int rc;
UNUSED(dwArgc);
UNUSED(lpszArgv);
service_handle = RegisterServiceCtrlHandler("mosquitto", service_handler);
if(service_handle){
memset(conf_path, 0, sizeof(conf_path));
rc = GetEnvironmentVariable("MOSQUITTO_DIR", conf_path, MAX_PATH);
if(!rc || rc == MAX_PATH){
service_status.dwCurrentState = SERVICE_STOPPED;
SetServiceStatus(service_handle, &service_status);
return;
}
strcat(conf_path, "/mosquitto.conf");
argv = mosquitto__malloc(sizeof(char *)*3);
argv[0] = "mosquitto";
argv[1] = "-c";
argv[2] = conf_path;
argc = 3;
service_status.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
service_status.dwCurrentState = SERVICE_RUNNING;
service_status.dwControlsAccepted = SERVICE_ACCEPT_SHUTDOWN | SERVICE_ACCEPT_STOP;
service_status.dwWin32ExitCode = NO_ERROR;
service_status.dwCheckPoint = 0;
SetServiceStatus(service_handle, &service_status);
main(argc, argv);
mosquitto__free(argv);
service_status.dwCurrentState = SERVICE_STOPPED;
SetServiceStatus(service_handle, &service_status);
}
}
void service_install(void)
{
SC_HANDLE sc_manager, svc_handle;
char service_string[MAX_PATH + 20];
char exe_path[MAX_PATH + 1];
SERVICE_DESCRIPTION svc_desc;
memset(exe_path, 0, sizeof(exe_path));
if(GetModuleFileName(NULL, exe_path, MAX_PATH) == MAX_PATH){
fprintf(stderr, "Error: Path too long.\n");
return;
}
snprintf(service_string, sizeof(service_string), "\"%s\" run", exe_path);
sc_manager = OpenSCManager(NULL, NULL, SC_MANAGER_CREATE_SERVICE);
if(sc_manager){
svc_handle = CreateService(sc_manager, "mosquitto", "Mosquitto Broker",
SERVICE_START | SERVICE_STOP | SERVICE_CHANGE_CONFIG,
SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL,
service_string, NULL, NULL, NULL, NULL, NULL);
if(svc_handle){
svc_desc.lpDescription = "Eclipse Mosquitto MQTT v5/v3.1.1 broker";
ChangeServiceConfig2(svc_handle, SERVICE_CONFIG_DESCRIPTION, &svc_desc);
CloseServiceHandle(svc_handle);
}else{
print_error();
}
CloseServiceHandle(sc_manager);
} else {
print_error();
}
}
void service_uninstall(void)
{
SC_HANDLE sc_manager, svc_handle;
SERVICE_STATUS status;
sc_manager = OpenSCManager(NULL, SERVICES_ACTIVE_DATABASE, SC_MANAGER_CONNECT);
if(sc_manager){
svc_handle = OpenService(sc_manager, "mosquitto", SERVICE_QUERY_STATUS | DELETE);
if(svc_handle){
if(QueryServiceStatus(svc_handle, &status)){
if(status.dwCurrentState == SERVICE_STOPPED){
DeleteService(svc_handle);
}
}
CloseServiceHandle(svc_handle);
}else{
print_error();
}
CloseServiceHandle(sc_manager);
}else{
print_error();
}
}
void service_run(void)
{
SERVICE_TABLE_ENTRY ste[] = {
{ "mosquitto", service_main },
{ NULL, NULL }
};
StartServiceCtrlDispatcher(ste);
}
#endif
|
the_stack_data/549617.c | #include <stdio.h>
int main()
{
int val_1, val_2, output;
printf("Enter first value: ");
scanf("%d", &val_1);
printf("Enter second value: ");
scanf("%d", &val_2);
output = val_1+val_2;
printf("Value 1 + Value 2 = %d \n",output);
output = val_1-val_2;
printf("Value 1 - Value 2 = %d \n",output);
output = val_1*val_2;
printf("Value 1 * Value 2 = %d \n",output);
output = val_1/val_2;
printf("Value 1 / Value 2 = %d \n",output);
output = val_1%val_2;
printf("Remainder when Value 1 divided by Value 2 = %d \n",output);
return 0;
} |
the_stack_data/14201320.c | #include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/time.h>
#include <pthread.h>
/* Fibonacci with stack variables */
inline double curr_time(void)
{
struct timeval tv;
gettimeofday(&tv,NULL);
return tv.tv_sec + (double) tv.tv_usec * 1e-6;
}
void *fib(void *args)
{
pthread_t th1, th2;
intptr_t arg1, arg2;
intptr_t ret1, ret2;
intptr_t n = (intptr_t) args;
int status;
if (n == 0 || n == 1) pthread_exit((void *) n);
arg1 = n - 1;
arg2 = n - 2;
if (pthread_create(&th1, NULL, fib, (void*) arg1) != 0) {
perror(NULL);
abort();
}
if (pthread_create(&th2, NULL, fib, (void*) arg2) != 0) {
perror(NULL);
abort();
}
pthread_join(th1, (void**) &ret1);
pthread_join(th2, (void**) &ret2);
pthread_exit((void*) (ret1 + ret2));
}
int main(int argc,char **argv)
{
double t0,t1;
intptr_t n;
intptr_t ret;
pthread_t th;
n = atoi(argv[1]);
t0 = curr_time();
pthread_create(&th, NULL, fib, (void *) n);
pthread_join(th, (void **) &ret);
t1 = curr_time();
printf("fib(%d)=%d, took %lf sec\n", (int)n, (int)ret, t1 - t0);
return 0;
}
|
the_stack_data/137531.c | #include "assert.h"
int main()
{
int x = 1;
int y = 0;
while(y < 1000 && __VERIFIER_nondet_int())
{
x = x + y;
y = y + 1;
}
__VERIFIER_assert(y <= x);
return 0;
} |
the_stack_data/110277.c | #if 0
mini_read
mini_buf 128
globals_on_stack
mini_start
shrinkelf
INCLUDESRC
LDSCRIPT default
OPTFLAG -Os
return
#endif
int main(){
volatile int ret=42;
volatile int a1=0;
volatile void * a2=0;
volatile int a3=0;
read(a1,a2,a3);
return(ret);
}
|
the_stack_data/103264213.c | #include <stdio.h>
#include <stdlib.h>
void freeTwoDimensionalArray(int **array, int size)
{
for (int i = 0; i < size; i++)
{
free(array[i]);
}
free(array);
}
int** createTwoDimensionalArray(int size)
{
int **matrix = malloc(sizeof(int*) * size);
for (int i = 0; i < size; i++)
{
matrix[i] = malloc(sizeof(int) * size);
for (int j = 0; j < size; j++)
{
matrix[i][j] = 0;
}
for (int j = 0; j < size; j++)
{
scanf("%d", &matrix[i][j]);
}
}
return matrix;
}
int main()
{
int size = 0;
printf("Enter the size of the matrix: ");
scanf("%d", &size);
printf("Enter the matrix: ");
int** matrix = createTwoDimensionalArray(size);
int movementX[4] = {0, 1, 0, -1}; // up, right, down, left
int movementY[4] = {-1, 0, 1, 0}; // up, right, down, left
int currentPathLength = 1;
int coordinateX = size / 2;
int coordinateY = size / 2;
for (int i = 0; i < size * 2 - 2; i++)
{
if (i != 0 && i % 2 == 0)
{
currentPathLength++;
}
int currentMovementX = movementX[i % 4];
int currentMovementY = movementY[i % 4];
for (int j = 0; j < currentPathLength; j++)
{
printf("%d ", matrix[coordinateY][coordinateX]);
coordinateX += currentMovementX;
coordinateY += currentMovementY;
}
}
for (int j = 0; j < size; j++)
{
printf("%d ", matrix[coordinateY--][coordinateX]);
}
freeTwoDimensionalArray(matrix, size);
return 0;
} |
the_stack_data/716509.c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include<time.h>
int main() {
// using one word instead of a file for now
int turnNum = 0;
char *word; // will be the word from the file read in
// the entered string can be at most 32 chars long
word = malloc(sizeof(char)*32);
//creates the array of "_"
char *guessSpace;
guessSpace = malloc(sizeof(char)*32);
//represents the number of words in the file
int wordsNum = 0;
int randomNum = 0;
//reads in from the file
FILE *infile = NULL;
infile = fopen("words.txt","r");
//reads the first line
word = fgets(word, 32, infile);
wordsNum = atoi(word);
//finds a random word in the list
srand(time(0));
randomNum = rand();
randomNum = (randomNum%(wordsNum-1))+1;
for(int i =0; i < randomNum; i++) {
fgets(word,32,infile);
}
int wordLength = strlen(word);
//makes every char necessary in guessSpace "_"
for(int i=0; i < wordLength-2; i++){
guessSpace[i] = '_';
}
printf("welcome to Word Guess!!\n");
//goes until the user fills in all the letters
while((strchr(guessSpace,'_'))!= NULL){
char currentGuess;
//prints the number of the current turn
printf("Turn: %d\n",turnNum);
turnNum++;
printf("%s",guessSpace);
printf("\nguess a character: ");
scanf(" %c",¤tGuess);
//fills in the guessed letter in the correct place in guessSpace
for(int i = 0; i < wordLength; i++){
if(word[i] == currentGuess){
guessSpace [i] = currentGuess;
}
}// for loop
//prints a statement if the letter they guessed is not in the word
if(strchr(word, currentGuess) == NULL){
printf("%c is not in the word\n",currentGuess);
} //if
} // greater for loop
printf("the word was: %s",word);
printf("You won in %d turns!\n", turnNum);
//frees the dynamically allocated space
free(word);
free(guessSpace);
free(infile);
return 0;
}
|
the_stack_data/156394413.c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
pthread_cond_t taxicond = PTHREAD_COND_INITIALIZER;
pthread_mutex_t taximutex = PTHREAD_MUTEX_INITIALIZER;
void *traveler_arrive(void *name)
{
char *p = (char *)name;
printf ("Travelr: %s need a taxi now!\n", p);
// 加锁,把信号量加入队列,释放信号量
pthread_mutex_lock(&taximutex);
pthread_cond_wait(&taxicond, &taximutex);
pthread_mutex_unlock(&taximutex);
printf ("traveler: %s now got a taxi!\n", p);
pthread_exit(NULL);
}
void *taxi_arrive(void *name)
{
char *p = (char *)name;
printf ("Taxi: %s arrives.\n", p);
// 给线程或者条件发信号,一定要在改变条件状态后再给线程发信号
pthread_cond_signal(&taxicond);
pthread_exit(NULL);
}
int main (int argc, char **argv)
{
char *name;
pthread_t thread;
pthread_attr_t threadattr; // 线程属性
pthread_attr_init(&threadattr); // 线程属性初始化
// 创建三个线程
name = "Jack";
pthread_create(&thread, &threadattr, taxi_arrive, (void *)name);
sleep(1);
name = "Susan";
pthread_create(&thread, &threadattr, traveler_arrive, (void *)name);
sleep(1);
name = "Mike";
pthread_create(&thread, &threadattr, taxi_arrive, (void *)name);
sleep(1);
return 0;
}
|
the_stack_data/93619.c | /*
* Copyright (c) 2015 Dmitry V. Levin <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <sys/syscall.h>
#if defined __NR_clock_getres \
&& defined __NR_clock_gettime \
&& defined __NR_clock_settime
int
main(void)
{
struct {
struct timespec ts;
uint32_t pad[2];
} t = {
.pad = { 0xdeadbeef, 0xbadc0ded }
};
if (syscall(__NR_clock_getres, CLOCK_REALTIME, &t.ts))
return 77;
printf("clock_getres(CLOCK_REALTIME, {%jd, %jd}) = 0\n",
(intmax_t) t.ts.tv_sec,
(intmax_t) t.ts.tv_nsec);
if (syscall(__NR_clock_gettime, CLOCK_PROCESS_CPUTIME_ID, &t.ts))
return 77;
printf("clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {%jd, %jd}) = 0\n",
(intmax_t) t.ts.tv_sec,
(intmax_t) t.ts.tv_nsec);
t.ts.tv_sec = 0xdeface1;
t.ts.tv_nsec = 0xdeface2;
if (!syscall(__NR_clock_settime, CLOCK_THREAD_CPUTIME_ID, &t.ts))
return 77;
printf("clock_settime(CLOCK_THREAD_CPUTIME_ID, {%jd, %jd})"
" = -1 EINVAL (Invalid argument)\n",
(intmax_t) t.ts.tv_sec,
(intmax_t) t.ts.tv_nsec);
puts("+++ exited with 0 +++");
return 0;
}
#else
int
main(void)
{
return 77;
}
#endif
|
the_stack_data/55791.c | /*
* Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#include <openssl/opensslconf.h>
#ifdef OPENSSL_NO_DEPRECATED_0_9_8
NON_EMPTY_TRANSLATION_UNIT
#else
# include <openssl/evp.h>
/*
* Define some deprecated functions, so older programs don't crash and burn
* too quickly. On Windows and VMS, these will never be used, since
* functions and variables in shared libraries are selected by entry point
* location, not by name.
*/
# ifndef OPENSSL_NO_BF
# undef EVP_bf_cfb
const EVP_CIPHER *EVP_bf_cfb(void);
const EVP_CIPHER *EVP_bf_cfb(void)
{
return EVP_bf_cfb64();
}
# endif
# ifndef OPENSSL_NO_DES
# undef EVP_des_cfb
const EVP_CIPHER *EVP_des_cfb(void);
const EVP_CIPHER *EVP_des_cfb(void)
{
return EVP_des_cfb64();
}
# undef EVP_des_ede3_cfb
const EVP_CIPHER *EVP_des_ede3_cfb(void);
const EVP_CIPHER *EVP_des_ede3_cfb(void)
{
return EVP_des_ede3_cfb64();
}
# undef EVP_des_ede_cfb
const EVP_CIPHER *EVP_des_ede_cfb(void);
const EVP_CIPHER *EVP_des_ede_cfb(void)
{
return EVP_des_ede_cfb64();
}
# endif
# ifndef OPENSSL_NO_IDEA
# undef EVP_idea_cfb
const EVP_CIPHER *EVP_idea_cfb(void);
const EVP_CIPHER *EVP_idea_cfb(void)
{
return EVP_idea_cfb64();
}
# endif
# ifndef OPENSSL_NO_RC2
# undef EVP_rc2_cfb
const EVP_CIPHER *EVP_rc2_cfb(void);
const EVP_CIPHER *EVP_rc2_cfb(void)
{
return EVP_rc2_cfb64();
}
# endif
# ifndef OPENSSL_NO_CAST
# undef EVP_cast5_cfb
const EVP_CIPHER *EVP_cast5_cfb(void);
const EVP_CIPHER *EVP_cast5_cfb(void)
{
return EVP_cast5_cfb64();
}
# endif
# ifndef OPENSSL_NO_RC5
# undef EVP_rc5_32_12_16_cfb
const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void);
const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void)
{
return EVP_rc5_32_12_16_cfb64();
}
# endif
# undef EVP_aes_128_cfb
const EVP_CIPHER *EVP_aes_128_cfb(void);
const EVP_CIPHER *EVP_aes_128_cfb(void)
{
return EVP_aes_128_cfb128();
}
# undef EVP_aes_192_cfb
const EVP_CIPHER *EVP_aes_192_cfb(void);
const EVP_CIPHER *EVP_aes_192_cfb(void)
{
return EVP_aes_192_cfb128();
}
# undef EVP_aes_256_cfb
const EVP_CIPHER *EVP_aes_256_cfb(void);
const EVP_CIPHER *EVP_aes_256_cfb(void)
{
return EVP_aes_256_cfb128();
}
#endif
|
the_stack_data/967647.c | /* Purpose: check side effect in condition, here, j=0
*/
int if05()
{
int i, j, k;
if(0<=j && j<=2) {
if(j=0)
k = 0;
else
k = 4;
}
return k;
}
|
the_stack_data/54419.c | /* This testcase is part of GDB, the GNU debugger.
Copyright 2009-2014 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <pthread.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
static const char *image;
static char *argv1 = "go away";
static void *
thread_execler (void *arg)
{
/* Exec ourselves again. */
if (execl (image, image, argv1, NULL) == -1) /* break-here */
{
perror ("execl");
abort ();
}
return NULL;
}
int
main (int argc, char **argv)
{
pthread_t thread;
int i;
image = argv[0];
/* Pass "inf" as argument to keep re-execing ad infinitum, which can
be useful for manual testing. Passing any other argument exits
immediately (and that's what the execl above does by
default). */
if (argc == 2 && strcmp (argv[1], "inf") == 0)
argv1 = argv[1];
else if (argc > 1)
exit (0);
i = pthread_create (&thread, NULL, thread_execler, NULL);
assert (i == 0);
pthread_join (thread, NULL);
return 0;
}
|
the_stack_data/135862.c | #include <stdio.h>
void swap(int *x, int *y) {
if (*x > *y) {
int temp = *x;
*x = *y;
*y = temp;
}
}
void sort3(int *x, int *y, int *z) {
swap(x, y);
swap(x, z);
swap(y, z);
}
int main(int argc, char const *argv[])
{
puts("输入三个整数,程序将按从小到大的顺序排列。");
int i, j, k;
scanf("%d", &i);
scanf("%d", &j);
scanf("%d", &k);
sort3(&i, &j, &k);
printf("%4d%4d%4d\n", i, j, k);
return 0;
}
|
the_stack_data/92591.c | /*
* Copyright 2012 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
const int MOD_ADLER = 65521;
uint64_t adler32(unsigned char *data, int32_t len) /* where data is the location of the data in physical memory and
len is the length of the data in bytes */
{
uint64_t a = 1, b = 0;
int32_t index;
/* Process each byte of the data in order */
for (index = 0; index < len; ++index)
{
a = (a + data[index]) % MOD_ADLER;
b = (b + a) % MOD_ADLER;
}
return (b << 16) | a;
}
int main(int argc, char* argv[]) {
long bufsize;
if (argc != 2) {
fputs("Need 1 argument\n", stderr);
return (EXIT_FAILURE);
}
unsigned char *source = NULL;
FILE *fp = fopen(argv[1], "rb");
if (fp != NULL) {
/* Go to the end of the file. */
if (fseek(fp, 0L, SEEK_END) == 0) {
/* Get the size of the file. */
bufsize = ftell(fp);
if (bufsize == -1) { fputs("Couldn't get size\n", stderr); return (EXIT_FAILURE); }
/* Allocate our buffer to that size. */
source = malloc(sizeof(char) * (bufsize + 1));
if (source == NULL) { fputs("Couldn't allocate\n", stderr); return (EXIT_FAILURE); }
/* Go back to the start of the file. */
if (fseek(fp, 0L, SEEK_SET) == -1) { fputs("Couldn't seek\n", stderr); return (EXIT_FAILURE); }
/* Read the entire file into memory. */
size_t newLen = fread(source, sizeof(char), bufsize, fp);
if (newLen == 0) {
fputs("Error reading file\n", stderr);
//return (EXIT_FAILURE);
} else {
source[++newLen] = '\0'; /* Just to be safe. */
}
} else {
fputs("Couldn't seek to end\n", stderr);
return (EXIT_FAILURE);
}
fclose(fp);
} else {
fputs("Couldn't open\n", stderr);
return (EXIT_FAILURE);
}
printf("%u\n", (uint32_t) adler32(source, bufsize));
free(source); /* Don't forget to call free() later! */
return (EXIT_SUCCESS);
}
|
the_stack_data/262881.c | /* __ieee754_sqrtl is defined in q_sqrt.c. */
|
the_stack_data/744412.c | #include <stdio.h>
#include <stdlib.h>
int compare(const void* left, const void* right)
{
return (*(int*)right - *(int*)left);
}
void f1(int var)
{
printf("This is f1 and var is: %d\n", var);
}
void f2(int var)
{
printf("This is f2 and var is: %d\n", var);
}
void f3(int var)
{
printf("This is f3 and var is: %d\n", var);
}
int main(void)
{
int intArray[5] = { 10, 20, 30, 40, 50 };
for (int i = 0; i < 5; i++)
{
printf("intArray[%d] has value %d - and address @ %x\n",
i, intArray[i], &intArray[i]);
}
int *intPointer = &intArray[3];
printf("adress: %x - has value %d\n", intPointer, *intPointer);
intPointer++;
printf("adress: %x - has value %d\n", intPointer, *intPointer);
intPointer--;
printf("adress: %x - has value %d\n", intPointer, *intPointer);
int (*cmp) (const void*, const void*);
cmp = &compare;
int iarray[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
qsort(iarray, sizeof(iarray) / sizeof(*iarray), sizeof(*iarray), cmp);
int c = 0;
while (c < sizeof(iarray) / sizeof(*iarray))
{
printf("%d \t", iarray[c]);
c++;
}
void (*funcs[]) (int) = { *f1, *f2, *f3 };
for (int i = 0; i < 3; i++)
funcs[i](i);
return 0;
}
|
the_stack_data/15763237.c |
extern int bar();
int foo()
{
return bar();
}
|
the_stack_data/11074758.c | // RUN: test.sh -p -t %t %s
//
// No fmemopen() on darwin.
// XFAIL: darwin
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
// fread() test on EOF conditions.
int main()
{
uint64_t arr1[32];
uint64_t arr2[64];
char buf[32 * sizeof(uint64_t)];
unsigned i;
size_t result;
FILE *f;
memset(arr1, 0, sizeof(arr1));
f = fmemopen(buf, sizeof(buf), "r+");
fwrite(arr1, sizeof(uint64_t), 32, f);
rewind(f);
result = fread(arr2, sizeof(uint64_t), 64, f);
assert(result == 32);
fclose(f);
return 0;
}
|
the_stack_data/161079651.c | #include <stdio.h>
#define MAX_LINE (100)
/* Rewrite the function `lower`, which converts upper case letter to lower case,
* with a conditional expression instead of `if-else` */
/* lower: convert c to lower case; ASCII only */
int lower(int c){
if (c >= 'A' && c <= 'Z')
return c + 'a' - 'A';
else
return c;
}
/* lower_conditional: convert c to lower case; ASCII only */
int lower_conditional(int c){
return (c >= 'A' && c <= 'Z') ? (c + 'a' - 'A') : c;
}
int main(){
printf("Exercise2-10\n");
char x = 'G';
char y = 'i';
printf("x: %c\t lower:%c\tlower_conditional:%c\n", x, lower(x), lower_conditional(x));
printf("y: %c\t lower:%c\tlower_conditional:%c\n", y, lower(y), lower_conditional(y));
return 0;
}
|
the_stack_data/165766507.c | const char net_vmxnet3_pmd_info[] __attribute__((used)) = "PMD_INFO_STRING= {\"name\" : \"net_vmxnet3\", \"kmod\" : \"* igb_uio | uio_pci_generic | vfio-pci\", \"pci_ids\" : [[5549, 1968, 65535, 65535] ]}";
|
the_stack_data/57949344.c | // File: 'FSEX300.ttf' (575668 bytes)
// Exported using binary_to_compressed_c.cpp
static const unsigned int fs3_compressed_size = 283157;
static const unsigned int fs3_compressed_data[283160/4] =
{
0x0000bc57, 0x00000000, 0xb4c80800, 0x00000400, 0x00010025, 0x82110000, 0x00043e04, 0x44424510, 0x358fb354, 0xa708000b, 0x01000054, 0x4c424522,
0x55385843, 0xa80800b3, 0x2c0f8278, 0x45444710, 0x119a0d46, 0xa90800c0, 0x2c0f8288, 0x4f504708, 0x99cddf53, 0xaa0800a4, 0x360f8490, 0x65425553,
0x00d2b2fd, 0x0098ab08, 0x4f2e1200, 0x5c322f53, 0x82b3778b, 0x080f821b, 0x56600029, 0x69584d44, 0x008771ff, 0x009c5f00, 0x63e00500, 0xbb70616d,
0x004ae453, 0x00c8bd08, 0x67ea0a00, 0x00707361, 0x82080017, 0x8244207f, 0x67103895, 0x3966796c, 0x0061dd12, 0x007c6500, 0x6854f306, 0xe5646165,
0x82fbf210, 0x821c204f, 0x6836211f, 0x02231082, 0x825e1951, 0x29af820f, 0x6d682400, 0x96097874, 0x0f82408d, 0x0000f830, 0x6f6ca45d, 0xff4b6163,
0x07008420, 0x0f82d058, 0x616da828, 0x8c177078, 0x1f82f100, 0x002ccf82, 0x6d616e20, 0x8bd7de65, 0xb6070090, 0x03330f82, 0x736f70dd, 0x111d4774,
0xba07007e, 0xec000058, 0x820100eb, 0x02032e65, 0x87c55d8f, 0x3c0f5f43, 0x000900f5, 0x241182a0, 0x1411c200, 0x2a078484, 0xffef9d14, 0x02d8ff74,
0x82820058, 0x0009220f, 0x20318402, 0x26058400, 0x00e2ff82, 0x82620200, 0x82b0201f, 0x8201201f, 0x21028a1f, 0x23836917, 0xf0220582, 0x16842200,
0x13821f8e, 0x5d000326, 0x05009001, 0x70220982, 0x05826800, 0x85001621, 0x004c3c07, 0x0828000a, 0x060b020a, 0x02070700, 0xe5040204, 0xd0ff2e10,
0x00ffff01, 0x821ccd02, 0x50002b27, 0x00504f4f, 0xff000040, 0x838400fd, 0x1e229b82, 0x20821160, 0x1d82ff20, 0x5a004622, 0x20200582, 0x50200382,
0x0a220384, 0x4f825000, 0x002003f9, 0x14207f82, 0x1383838e, 0x1e209783, 0x1f8b1b86, 0x1b871383, 0x3b8f0783, 0x3783cf97, 0x238b3b87, 0x37976b87,
0x439b63ab, 0xb387478b, 0x439ffb93, 0xe38b1fb3, 0xa3075341, 0x416ba7f7, 0x3fa3175b, 0x8f0b0341, 0x873f87a7, 0x831f8b17, 0x200f8b0b, 0x0a2b4214,
0x87173f42, 0xa33b8f33, 0x872387a7, 0xab9b8f67, 0x412ba343, 0x6f8f4b9f, 0x8f134f41, 0xd70fa723, 0x0ba341a7, 0x14206393, 0x87063344, 0xc7239307,
0xa75ba7c3, 0xe7979f27, 0x00142347, 0x6b820050, 0x45f6ff21, 0x1b430a7f, 0x21138213, 0xa345ecff, 0x0f43450e, 0x450f9b43, 0xdf9a1b97, 0x3741679c,
0x9a1f831f, 0x14e7465b, 0x45070f45, 0x2344079f, 0x0b2b430f, 0x87a31b87, 0x0920238b, 0x411a3b41, 0x5baf0f47, 0xa0000a22, 0x0387d782, 0x4109c747,
0x1b9b1b07, 0x2faf7f93, 0x0b20438f, 0x5fbfff9e, 0x420f8b45, 0xef440f8b, 0x416f970f, 0x239f0bdf, 0x8f2f0b42, 0x0f234193, 0xaf970fbf, 0xafdf57b7,
0x7b439793, 0x0bd3410b, 0xff23db92, 0x835000f6, 0x47002003, 0x9b470bf7, 0x0f7f440b, 0x1e234383, 0x8b005000, 0x473b9703, 0x2f830beb, 0x83071b44,
0x870f932f, 0x87738f53, 0x0fb34a47, 0x8b0f4b48, 0x13174187, 0xf78f139f, 0x4b0b4741, 0x27850b43, 0x0a005a23, 0x20038300, 0x26078250, 0x00baff00,
0x82b0ff00, 0x20078b03, 0x200f86ce, 0x831796c4, 0x8303872b, 0x2003872b, 0x832f82f6, 0x8737830b, 0x20278313, 0x834f8aec, 0x8357871b, 0x86e22023,
0x834f8b33, 0x8ed8201f, 0x8b378b17, 0x87bb837f, 0x83c38b03, 0x8343830b, 0x83cf8b07, 0x832f8747, 0x00b0237b, 0x1f83ff50, 0x27871383, 0xff8b5f87,
0x13823387, 0x00000025, 0x8e1e0050, 0x8bef879f, 0x07574147, 0xa387af8b, 0xe7872f87, 0x410b4741, 0x1b850f43, 0x50217383, 0x07834200, 0x41077342,
0x0f8307eb, 0x8713bb46, 0x23434213, 0xab46239f, 0x129b4313, 0x9f0c6747, 0xaf738f1f, 0x0ffb452f, 0x13484f8f, 0x0fdb4507, 0x634867b7, 0x0f634113,
0x930f6f46, 0x2013ab93, 0x0e9f4914, 0x879b3ba7, 0x2397ffa3, 0x0f8f178f, 0x9b279341, 0x415397c7, 0x478f137f, 0xdf463ba3, 0x42a02011, 0xcf4108b7,
0x82782005, 0x2103830f, 0x0f850050, 0x1400a023, 0x91038300, 0x857f8f0f, 0x853f870f, 0x00002207, 0x834f82c8, 0x49178d03, 0x7f5105bf, 0x2070820d,
0x0d3344ff, 0x74ff4626, 0x88ff3c00, 0x930e0742, 0x911383e7, 0x435f8ddb, 0x00210fc7, 0x8feb8900, 0x8f6393cb, 0x8f0f9323, 0x41238d87, 0xd7440f03,
0x8d6bb705, 0x9beb855b, 0x931b9b4b, 0x43139b4b, 0x5b990f63, 0x2742f391, 0x119b4113, 0x990dbb41, 0x0543415f, 0x8f178348, 0x1d9f41c3, 0x938f738d,
0x230dbf48, 0x00ecff00, 0x7f830383, 0xe2ff0022, 0x931eeb4b, 0x4413939f, 0xd38f2343, 0x33410f97, 0x1307540f, 0x478bd38b, 0x73499b97, 0x975f8f0b,
0x26178587, 0x003c006e, 0x821e006e, 0x20078703, 0x200b8228, 0x83038214, 0x86322007, 0x2007831b, 0x8323860a, 0x832f8307, 0x83038f07, 0x83038337,
0x2003831f, 0x8b338200, 0x872f8703, 0x831b8327, 0x870f8713, 0x8b63873b, 0x830b8367, 0x87038b93, 0x8b078767, 0x8713837b, 0x873383c7, 0x8f13874b,
0x8f0f8373, 0x8b0fb3cf, 0x8f0b9757, 0x410f93b7, 0x2b410f3b, 0x8797970b, 0x871f836f, 0x87838b3f, 0x413f8f17, 0x1f8f0f0b, 0xd7410f8b, 0x0f9f410b,
0x738bc793, 0x87133742, 0x07d74133, 0x138b4393, 0x5385d78f, 0x43005021, 0x43431b47, 0x0b47430f, 0x43175343, 0x2bb11337, 0x14000023, 0x20038d00,
0x200f821e, 0x8313860a, 0x550b8707, 0xb38f0fcb, 0xefa38f8f, 0xc7ab5397, 0x0021778d, 0x87b38700, 0x830f87c7, 0x4c138507, 0x9b45091b, 0x8250200d,
0x003c24f5, 0x865a0014, 0x82822003, 0x828c204b, 0x82b42003, 0x82962003, 0x866e2003, 0x8abe2003, 0x8278200b, 0x8227830b, 0x18012103, 0xa0200b86,
0x1b831f86, 0x07830b83, 0x1b86e620, 0xaa200b83, 0x64200b82, 0x82062f49, 0x216f8237, 0x6b87000a, 0x23836783, 0x3b830783, 0x7f836b83, 0x5a203f83,
0x3b833386, 0x17831f83, 0x97832b83, 0x7f835382, 0x000e0125, 0x4e54010a, 0xbb8306b3, 0x5f83b787, 0x53832783, 0x3f831787, 0xe3871383, 0xd387ef8b,
0x73863620, 0x04205f83, 0x07820b82, 0x6423ab84, 0x83001400, 0x83039587, 0x9a00201b, 0x820a201f, 0x8b1f871b, 0x8f538727, 0x930f833f, 0x8b17876f,
0x8f0b871b, 0x22438d7f, 0x82baff00, 0x22138283, 0x4f00e2ff, 0xa74f05d7, 0x470f830f, 0x6422059f, 0xcb861e00, 0x0b856f8b, 0x134f3b85, 0x4fb02007,
0xd8200ad3, 0xc4200b82, 0x411e0341, 0x0b850b07, 0x0f4ec820, 0x0ddb420c, 0x20136748, 0x066b425a, 0x6e201b87, 0x5a240f82, 0x6e000000, 0x1385478a,
0x0b854b85, 0x93000021, 0x07cb4123, 0x4f8b6793, 0x2b831f83, 0x1783138f, 0xbfae7820, 0x13bd6b93, 0x212d5f48, 0x6b440050, 0x83ff8b09, 0x41e7870b,
0x3b410763, 0x056b4605, 0x82201383, 0x200ac743, 0x062b448c, 0x078a7820, 0x20071b44, 0x06374396, 0x4744aa20, 0x43078706, 0x338707e3, 0x3f934383,
0x830b0f41, 0x837b8397, 0x070f4413, 0xb38ba787, 0x2b873387, 0x2b87db8f, 0x6f4b4387, 0x830f870f, 0x87a783e3, 0x930b8b0f, 0x932f9333, 0x073b429f,
0x1f8b9f97, 0xb7078353, 0x444b8307, 0xc34507ff, 0x45cf8b07, 0x1b830723, 0xaf870b83, 0x45177741, 0x434107bb, 0xff502307, 0x974100f6, 0x4267870f,
0xbb87073b, 0x410ba341, 0xa78313af, 0x2f839b83, 0xaf87678b, 0x0746138b, 0x468c2007, 0x43420a6f, 0x0b534213, 0x8f138b41, 0x41978be7, 0xe3420b87,
0x44079707, 0x0a200d83, 0x930cfb44, 0x0b834277, 0xcb8b1fc7, 0x44005a21, 0xaf4f050b, 0x073f410b, 0x8b13e341, 0x1bcf432f, 0x435a1b83, 0x870b8707,
0x0b3f422f, 0x4213eb41, 0x0b4117ef, 0x83d7871f, 0x077b4527, 0x420f0b42, 0x8345088f, 0x446b8706, 0x33420b0b, 0x0907490b, 0x460f5357, 0x4b4105ef,
0x076f440b, 0x978f138f, 0x6e206b8b, 0x83061f45, 0x05d74213, 0x78000023, 0x2003e700, 0x976b840a, 0x4a1789af, 0x974a136b, 0x47279313, 0x63910553,
0x620f6f5f, 0x93420b47, 0x0dc35105, 0x33871383, 0x590b635d, 0x5b630b4b, 0x973b8717, 0x0b73519f, 0x830fd755, 0x0b3b506b, 0x830b2757, 0x512f8b17,
0xef47157f, 0x8b0b870b, 0x4d138f07, 0x6b411107, 0x41578b15, 0x9b93115f, 0x8f41ab83, 0x51179713, 0x77934b33, 0x20092f41, 0x06735e50, 0x3b99c795,
0x41912f40, 0xcb401f4b, 0x42ab8fab, 0x7f4111eb, 0x47374149, 0x278747a7, 0x44131344, 0x57a3130f, 0x442b1f41, 0xab5e0f67, 0x0f435413, 0xbf58ab93,
0xa3438b0b, 0x0fdf41af, 0xbf560fc3, 0x8f8fa317, 0x5f0f8fbf, 0x278f17c3, 0x2f970f87, 0x3fa7178f, 0x17972797, 0x0f8f678f, 0x1f8f378f, 0x970f8f41,
0x8f278f2f, 0x41378f47, 0x3f970f1f, 0xa02317b5, 0x9b000000, 0x0d536403, 0x9b111742, 0x441b833b, 0x3fbf1f73, 0x8309ef59, 0x000a21c7, 0x20098f47,
0x5c0b821e, 0x67411b2f, 0x4fa0200d, 0xfb4318e7, 0x0faf410f, 0x41137741, 0x138313b3, 0xab613b8f, 0x854b9b0f, 0x83a7852b, 0x001423db, 0x13850028,
0x1e200787, 0x200ae554, 0x201b8650, 0x20078214, 0x8403820a, 0xf6ff2502, 0xe2ff0000, 0xab610382, 0x0d9b4105, 0x6e001421, 0x0b870913, 0x8f0f3363,
0x0f6f54c3, 0x47859785, 0x5d001e21, 0x33830533, 0x2b4a178d, 0x0fa74b09, 0x4a131f41, 0x7f870b7b, 0x9b419f87, 0x0b074217, 0x4a130360, 0xab450fcf,
0x113f6317, 0x8f0d675b, 0x0fbf4147, 0x910ffb4a, 0x05cf41df, 0x0b4ac78b, 0x00a0210d, 0xf7874383, 0x22117f43, 0x4192ff00, 0x1b8506b7, 0x87007821,
0x4e53894b, 0x0f83052f, 0x5e000a21, 0x50210783, 0x41678f00, 0xf35b0bff, 0x859f8f0f, 0x0d335f1f, 0x53425b85, 0x2027850d, 0x43938278, 0x3341195f,
0x4b0f8d0f, 0xe3420737, 0x076f4d07, 0x53825020, 0x00205785, 0x834dd382, 0x83138b05, 0x5f038d0b, 0xf020056b, 0x200abb4a, 0x820b82a0, 0x4001210f,
0x00201391, 0x7787c78f, 0x5f41a020, 0x97a78d08, 0x0b9f69df, 0x50200b87, 0x03426f8e, 0x0faf4409, 0x8509f343, 0x07e3443b, 0x970fe341, 0x20a3870f,
0x89cf8e1e, 0x87b78b0f, 0x41139f0b, 0x50220f1b, 0x5f821400, 0x47439b83, 0x13134d17, 0x850d3f41, 0x20138f43, 0x2057841e, 0x0c034350, 0x0a22238f,
0x7f84a000, 0xc7440789, 0x82002009, 0x87438b3f, 0x0ddf420b, 0x870ba341, 0x611383db, 0xf38f0beb, 0x7b851f87, 0x200f4b68, 0x8f778228, 0x870f8313,
0x0b136817, 0x44072344, 0x3344172b, 0x410f8f0f, 0x1f410ffb, 0x8d1f830f, 0x0d2361ef, 0x27a53f8b, 0x911fb347, 0x057b431f, 0x00211791, 0x83138d00,
0xab138f27, 0x873fa70f, 0x44078527, 0x28200927, 0x41062f42, 0x0f8707bb, 0x87071741, 0x8707830f, 0x137b670b, 0x67471faf, 0x0fd74113, 0x418b0f40,
0x9b830f0f, 0x1341c383, 0xa317af17, 0x875383eb, 0x870b8b27, 0x0b534113, 0x14201383, 0x440adb41, 0x6fa30f17, 0x7f93239b, 0x6f824620, 0x1b933383,
0x2749178d, 0x055f6605, 0x50210b8f, 0x058b4200, 0x4311e36f, 0x0f9b0fe7, 0x24117f45, 0x00080035, 0x10c35fa0, 0x450b2b44, 0x034113cb, 0x17834407,
0x538c0a20, 0x1e20cb85, 0xa7701382, 0x48502009, 0x0020080b, 0x50201784, 0x470abf70, 0x23891743, 0xf7999393, 0x85093b49, 0x970f8db7, 0x0fe74137,
0x2b41eb97, 0x0f63450b, 0x178f5b97, 0x0f93438f, 0x7f68f385, 0x0b034109, 0xf020ab85, 0x89089b68, 0x09d3465f, 0x78202f85, 0x37582382, 0x0050210b,
0x5a117f55, 0x142109ff, 0x452f8300, 0xc820079b, 0x4906b341, 0xb345062f, 0x000a2206, 0x85178af0, 0x19034a2b, 0x400f3f47, 0x0020dd0f, 0x420a7b4e,
0x0b4a371b, 0x1ff7420b, 0x4b0fc347, 0x6e21050f, 0x89078300, 0x0fdb5647, 0x23891f83, 0x590d0f57, 0x5787057b, 0x6b095742, 0x135b0d17, 0x20138305,
0x0c3f4f46, 0xef427787, 0x0b4b430f, 0x8f1b1774, 0x0fbf4aef, 0x178b5797, 0x4b177771, 0x53931713, 0x978fa38f, 0x200fbf4e, 0x0e674b00, 0x13405393,
0x0f4763e5, 0xe745a020, 0x9f1f9f0e, 0x057f5e2f, 0x5d0f1363, 0x4b6009a3, 0x8228200f, 0x2003877f, 0x06c75b78, 0x6f8f838b, 0x630f9b5f, 0x93721153,
0x07277207, 0x230b2f72, 0xff0000a6, 0x27850387, 0x14003223, 0x85038500, 0x865020a3, 0xff002183, 0xb02e3f8b, 0xecff2800, 0x00002800, 0x0a009600,
0x0382d200, 0xb420c787, 0x50240b82, 0x8c00f6ff, 0xc8200382, 0x43069f5f, 0x834205a3, 0x0b877407, 0x4a074b4c, 0xd37417af, 0x0bc37d0f, 0x7b510b8b,
0x893b8313, 0x05174123, 0x8b0b0b41, 0x00a6240b, 0x8a92ff00, 0x200f8303, 0x200f827e, 0x8303829c, 0x82b0200b, 0x6eb02007, 0x00201ad7, 0x82099352,
0x0dcf4ff3, 0x4717a747, 0x338f1baf, 0x830f9768, 0x0bf3510f, 0x3f450b83, 0x0bfb6f05, 0x0d3b4118, 0x73855383, 0x230beb64, 0x002800a0, 0x87055342,
0x051b4907, 0x1e00a022, 0x03891782, 0x0a005024, 0xef601c02, 0x222f8506, 0x82f0000a, 0x41dc200f, 0x642406fb, 0x5e010a00, 0x26082f50, 0x00500000,
0x82400100, 0x00f0220f, 0x0cf75114, 0x42134f47, 0x0f970fd3, 0x138d3b93, 0x440f6376, 0x03451bc3, 0x7cff201a, 0xa023056b, 0x83003200, 0x829f2003,
0x850b87c1, 0x845a2007, 0x00a02217, 0x20078246, 0x20038250, 0x200f8628, 0x830b8614, 0x203b8313, 0x830f863c, 0x87038327, 0x202f834f, 0x8d1b881e,
0x97b39bc3, 0x0f1f421b, 0x17ef2797, 0x54170f47, 0x00200f2b, 0x550a2342, 0x0f830f2b, 0x54091b48, 0x2b8f0d0f, 0x430d2b54, 0x8b481d87, 0x932f8d11,
0x0f77504b, 0xc7939b8f, 0x478f6793, 0x0b606b8b, 0x13b34f0b, 0x779a1393, 0x7a0f8f44, 0x3b410893, 0x7f002009, 0xab8f085b, 0xcf41a78f, 0x1b674307,
0x00208b9a, 0x6b421bdb, 0x4ec38b17, 0x5f4c115f, 0x2d8f4313, 0x5b97d3db, 0x5d0f9741, 0x27a717af, 0x178f6797, 0x8f9f4f40, 0x7c0f95af, 0x037c094b,
0x00d82107, 0x20056f5a, 0x200782ec, 0x0a6b7cf6, 0x011f0010, 0x575020b5, 0xff410887, 0x0de74515, 0x3220238f, 0x8f1aaf48, 0x470ff32b, 0xd75727c3,
0x0f174e13, 0x27974ba7, 0x4111e351, 0x4918095b, 0x37580f6f, 0x0747411b, 0x5b0f1b66, 0x27830feb, 0x8b418b97, 0x0f474f17, 0x4f97278f, 0xcb9b17df,
0x8b487bb3, 0x0f374913, 0xf34557b3, 0x64678f0f, 0xd341174f, 0x937bbf0f, 0x3643413f, 0x0c4b4818, 0x930fc342, 0x4213bb67, 0x0fa70f6f, 0x2208bb41,
0x82006202, 0xe2ff230b, 0x07822c01, 0x95070b53, 0x79142007, 0x63790657, 0x0b1f7713, 0x2f8f0b8f, 0x27834787, 0x0f830b8b, 0x830b4378, 0x783b830f,
0x9f780b27, 0x78139313, 0x238b0f8b, 0xb7171f79, 0x72c38b67, 0x6e210547, 0x97f38700, 0x979f8beb, 0x41d7930b, 0xd3780733, 0x1f6f410b, 0x378b4797,
0x970f7741, 0x15af7a93, 0x570d0f62, 0x3b620b53, 0x00a02811, 0x00e6000a, 0x770e010a, 0x00210963, 0x200b8278, 0x113b77aa, 0x86040121, 0x86be2013,
0x828c2007, 0x50c82007, 0x3f840507, 0x00214782, 0x830f82b4, 0x2057831f, 0x068b7396, 0x83076b77, 0x0b1f7707, 0x3b85d220, 0x27830020, 0x4f834783,
0x8307c773, 0x8343832b, 0x071b784f, 0x03835783, 0x8b50dc20, 0x218f8305, 0x0f782c01, 0x78f0201a, 0x43830a0f, 0x7407cb6f, 0x47730753, 0x87738307,
0x87f7836f, 0x07174167, 0x870b8770, 0x203b83db, 0x83bf8afa, 0x775f8317, 0x078307bb, 0x07833783, 0x2f83af83, 0x5300ce21, 0x57820543, 0x3b830020,
0xbf830382, 0x414a0121, 0xc8200647, 0x3383078a, 0xbf85d220, 0x4783e384, 0x77416e20, 0x005a2406, 0x8268010a, 0x21378203, 0x07821801, 0x04200383,
0x83067741, 0x07ab51e7, 0x0f833f83, 0x07833b83, 0x23828c20, 0x67831b83, 0x3f54ab83, 0x13637711, 0xb0231393, 0x18ff0000, 0x830bcb46, 0x0b97770f,
0x07b74618, 0x094b4718, 0x57059342, 0xa34209f7, 0x13df530d, 0x8b1f8745, 0x231b4633, 0x9f4f0f49, 0x9b1f9b9f, 0x53cb8b8b, 0xeb8307fb, 0x8f0f7b47,
0x1fef4e5f, 0x181f1766, 0x4a130f54, 0x238f0f57, 0x930f8b52, 0x8feb8f63, 0x13b34f0f, 0x638f478b, 0x580b2756, 0x23410feb, 0x0b47410b, 0x5c000a21,
0x13460947, 0x078b4405, 0x21075343, 0x2b7b006e, 0x200b8309, 0x06db435a, 0xe375378b, 0x44178f0b, 0x2f74073f, 0x00002209, 0x87438232, 0x5a502003,
0x4620068b, 0x038b0782, 0x178a3c20, 0x2f830b83, 0x07831f83, 0x87835383, 0xab502f87, 0x832b830b, 0x3b4b1803, 0x0b47760b, 0x8f833387, 0x934b6385,
0x0f4b421b, 0x79890f40, 0xeb7707bf, 0xaf074007, 0x09cf4c18, 0x59075b58, 0xcb990987, 0x1813d747, 0x180fc341, 0x870f3343, 0x0032211f, 0x4f875791,
0x0f574118, 0x43177b49, 0x93650523, 0x0faf4d0d, 0x2007db4a, 0x1ecf5514, 0x53422787, 0x8b27871f, 0x052f4607, 0x22132358, 0x8628006e, 0x073749e7,
0xa3172349, 0x17934917, 0xdb4a3ba3, 0x1353410f, 0x17975f97, 0x4b057f41, 0x441809f7, 0x934b07d3, 0x4745180b, 0x8317830b, 0x0fdf4103, 0x07434518,
0x137f4518, 0x1355b785, 0x0f4b4615, 0x50000022, 0x088f4118, 0x2b4c8b87, 0x411e200f, 0x73420e8f, 0x379f4107, 0x410f4741, 0x1797172b, 0x4c17bb41,
0x934c1703, 0x0fc74b0f, 0x4d0f1f4d, 0x03420b47, 0x0b8f410f, 0x46189f8f, 0xb3410fff, 0x158f410d, 0x931f3b43, 0x1b67471f, 0x13952f93, 0x6f055f63,
0x0b83057b, 0x01000024, 0x00830100, 0x000c002f, 0x00ff08f8, 0xff070008, 0x000900fe, 0x22058208, 0x8209000a, 0x820b2005, 0x82fd2005, 0xff0a261d,
0x000d00fd, 0x2205820b, 0x820c000e, 0x000f2205, 0x2005820d, 0x28058410, 0xff0e0011, 0x001200fc, 0x2205820f, 0x82100013, 0x00142205, 0x22058211,
0x82120015, 0x82162005, 0x00fb2a05, 0xff130017, 0x001800fb, 0x22058214, 0x82150019, 0x001a2205, 0x20058216, 0x2a05821b, 0x001c00fa, 0x00faff17,
0x8218001d, 0x001e2205, 0x22058219, 0x821a001f, 0x84202005, 0x00212805, 0x00f9ff1b, 0x821c0022, 0x00232205, 0x2205821d, 0x821e0024, 0x00252205,
0x2005821f, 0x2a058226, 0x002700f8, 0x00f8ff20, 0x82210028, 0x00292205, 0x22058222, 0x8223002a, 0x822b2005, 0x00f72a05, 0xff24002c, 0x002d00f7,
0x22058225, 0x8226002e, 0x002f2205, 0x20058227, 0x28058430, 0xff280031, 0x003200f6, 0x22058229, 0x822a0033, 0x00342205, 0x2205822b, 0x822c0035,
0x82362005, 0x00f52a05, 0xff2d0037, 0x003800f5, 0x2205822e, 0x822f0039, 0x003a2205, 0x20058230, 0x2a05823b, 0x003c00f4, 0x00f4ff31, 0x8232003d,
0x003e2205, 0x22058233, 0x8234003f, 0x84402005, 0x00412805, 0x00f3ff35, 0x82360042, 0x00432205, 0x22058237, 0x82380044, 0x00452205, 0x20058239,
0x2a058246, 0x004700f2, 0x00f2ff3a, 0x823b0048, 0x00492205, 0x2205823c, 0x823d004a, 0x824b2005, 0x00f12a05, 0xff3e004c, 0x004d00f1, 0x2205823f,
0x8240004e, 0x004f2205, 0x20058241, 0x28058450, 0xff420051, 0x005200f0, 0x22058243, 0x82440053, 0x00542205, 0x22058245, 0x82460055, 0x82562005,
0x00ef2a05, 0xff470057, 0x005800ef, 0x22058248, 0x82490059, 0x005a2205, 0x2005824a, 0x2a05825b, 0x005c00ee, 0x00eeff4b, 0x824c005d, 0x005e2205,
0x2205824d, 0x824e005f, 0x84602005, 0x00612805, 0x00edff4f, 0x82500062, 0x00632205, 0x22058251, 0x82520064, 0x00652205, 0x20058253, 0x2a058266,
0x006700ec, 0x00ecff54, 0x82550068, 0x00692205, 0x22058256, 0x8257006a, 0x826b2005, 0x00eb2a05, 0xff58006c, 0x006d00eb, 0x22058259, 0x825a006e,
0x006f2205, 0x2005825b, 0x28058470, 0xff5c0071, 0x007200ea, 0x2205825d, 0x825e0073, 0x00742205, 0x2205825f, 0x82600075, 0x82762005, 0x00e92a05,
0xff610077, 0x007800e9, 0x22058262, 0x82630079, 0x007a2205, 0x20058264, 0x2a05827b, 0x007c00e8, 0x00e8ff65, 0x8266007d, 0x007e2205, 0x22058267,
0x8268007f, 0x84802005, 0x00812805, 0x00e7ff69, 0x826a0082, 0x00832205, 0x2205826b, 0x826c0084, 0x00852205, 0x2005826d, 0x2a058286, 0x008700e6,
0x00e6ff6e, 0x826f0088, 0x00892205, 0x22058270, 0x8271008a, 0x828b2005, 0x00e52a05, 0xff72008c, 0x008d00e5, 0x22058273, 0x8274008e, 0x008f2205,
0x20058275, 0x28058490, 0xff760091, 0x009200e4, 0x22058277, 0x82780093, 0x00942205, 0x22058279, 0x827a0095, 0x82962005, 0x00e32a05, 0xff7b0097,
0x009800e3, 0x2205827c, 0x827d0099, 0x009a2205, 0x2005827e, 0x2a05829b, 0x009c00e2, 0x00e2ff7f, 0x8280009d, 0x009e2205, 0x22058281, 0x8282009f,
0x84a02005, 0x00a12805, 0x00e1ff83, 0x828400a2, 0x00a32205, 0x22058285, 0x828600a4, 0x00a52205, 0x20058287, 0x2a0582a6, 0x00a700e0, 0x00e0ff88,
0x828900a8, 0x00a92205, 0x2205828a, 0x828b00aa, 0x82ab2005, 0x00df2a05, 0xff8c00ac, 0x00ad00df, 0x2205828d, 0x828e00ae, 0x00af2205, 0x2005828f,
0x280584b0, 0xff9000b1, 0x00b200de, 0x22058291, 0x829200b3, 0x00b42205, 0x22058293, 0x829400b5, 0x82b62005, 0x00dd2a05, 0xff9500b7, 0x00b800dd,
0x22058296, 0x829700b9, 0x00ba2205, 0x20058298, 0x2a0582bb, 0x00bc00dc, 0x00dcff99, 0x829a00bd, 0x00be2205, 0x2205829b, 0x829c00bf, 0x84c02005,
0x00c12805, 0x00dbff9d, 0x829e00c2, 0x00c32205, 0x2205829f, 0x82a000c4, 0x00c52205, 0x200582a1, 0x2a0582c6, 0x00c700da, 0x00daffa2, 0x82a300c8,
0x00c92205, 0x220582a4, 0x82a500ca, 0x82cb2005, 0x00d92a05, 0xffa600cc, 0x00cd00d9, 0x220582a7, 0x82a800ce, 0x00cf2205, 0x200582a9, 0x280584d0,
0xffaa00d1, 0x00d200d8, 0x220582ab, 0x82ac00d3, 0x00d42205, 0x220582ad, 0x82ae00d5, 0x82d62005, 0x00d72a05, 0xffaf00d7, 0x00d800d7, 0x220582b0,
0x82b100d9, 0x00da2205, 0x200582b2, 0x2a0582db, 0x00dc00d6, 0x00d6ffb3, 0x82b400dd, 0x00de2205, 0x220582b5, 0x82b600df, 0x84e02005, 0x00e12805,
0x00d5ffb7, 0x82b800e2, 0x00e32205, 0x220582b9, 0x82ba00e4, 0x00e52205, 0x200582bb, 0x2a0582e6, 0x00e700d4, 0x00d4ffbc, 0x82bd00e8, 0x00e92205,
0x220582be, 0x82bf00ea, 0x82eb2005, 0x00d32a05, 0xffc000ec, 0x00ed00d3, 0x220582c1, 0x82c200ee, 0x00ef2205, 0x200582c3, 0x280584f0, 0xffc400f1,
0x00f200d2, 0x220582c5, 0x82c600f3, 0x00f42205, 0x220582c7, 0x82c800f5, 0x82f62005, 0x00d12a05, 0xffc900f7, 0x00f800d1, 0x220582ca, 0x82cb00f9,
0x00fa2205, 0x200582cc, 0x2a0582fb, 0x00fc00d0, 0x00d0ffcd, 0x82ce00fd, 0x00fe2205, 0x220582cf, 0x82d000ff, 0x00013705, 0x0000000a, 0x005a0046,
0x37000003, 0x0a231533, 0x5a5a3c3c, 0x17970000, 0x0a000828, 0x5000ecff, 0x2f827800, 0x17000f2c, 0x23001f00, 0x2b002700, 0x3d852f00, 0x33353724,
0x03842335, 0x83152321, 0x82152008, 0x82372051, 0x20078310, 0x820b8327, 0x35072303, 0x03831533, 0x46460a24, 0x00820a32, 0x0a0a2824, 0x04851414,
0x14220782, 0x13821414, 0x835a4621, 0x0a0a2305, 0x0e835a32, 0x1f820382, 0x82500a21, 0x820a2028, 0x8a0620ae, 0x8d818383, 0x8315207f, 0x15232281,
0x20728223, 0x21898333, 0x7f862715, 0x7f82878f, 0x140a1e25, 0x820a1e0a, 0x82142002, 0x22848c05, 0x821e5a46, 0x821a8312, 0x8a50208d, 0x41002084,
0x3341191b, 0xd7174017, 0x0b420720, 0x37002116, 0x4105f541, 0x81410884, 0x3507240f, 0x82371533, 0x82272023, 0x460a2303, 0x83413c46, 0x42322005,
0x14200807, 0x14250984, 0x3c5a4614, 0x411b830a, 0x4627077f, 0x0a6e1e1e, 0x41000a0a, 0x0b419283, 0x00112a0b, 0x001d0015, 0x00290025, 0x0715432d,
0x24071343, 0x15333533, 0x42038327, 0xf2821993, 0x14280a22, 0x9242e682, 0x83142011, 0x14322216, 0x20198214, 0x0d92423c, 0x4218af43, 0xd343a77b,
0x0010280b, 0x00200018, 0x41280024, 0xca43063d, 0x35232109, 0x440f4a42, 0x0a280754, 0x141e4646, 0x140a1e0a, 0x4e440182, 0x5a46290d, 0x0a0a2846,
0x321e2828, 0x2c0b3241, 0x00140002, 0x003c0000, 0x000b005a, 0x2b67820f, 0x35231523, 0x35333523, 0x07331533, 0x3c200782, 0x0a204684, 0x6e414982,
0x83502005, 0x0002222d, 0x4531820a, 0x0720052b, 0x35203383, 0x46292b84, 0x14281414, 0x1e1e3c14, 0x8351821e, 0x00002223, 0x22578250, 0x871f001b,
0x865b8657, 0x2063835f, 0x82d38215, 0x50152170, 0x6882b085, 0x0a200882, 0x1420bf83, 0x07860082, 0x52850a20, 0x0001002b, 0x00ecff0a, 0x006e0046,
0x8451852b, 0x444d824f, 0x352005ea, 0x5784b986, 0x1b833320, 0xc5821520, 0x46200383, 0xc3825783, 0x00840a20, 0x0d821420, 0x85055545, 0x200b8312,
0x230a8914, 0x00050000, 0x20052d64, 0x06d14564, 0x37003325, 0x41330000, 0x05830519, 0x83353321, 0x08274101, 0x6d827d82, 0xcb82c982, 0x27331525,
0x83152335, 0x86172003, 0x82502007, 0x207684c4, 0x86d6831e, 0x210b8209, 0x0b84280a, 0x07837882, 0x09868382, 0x14221683, 0xfd834614, 0x47410a20,
0x001f220c, 0x82858323, 0x41798556, 0x77850645, 0x3320fb82, 0x7d840982, 0x85145021, 0x46648272, 0x69840530, 0xc9412820, 0x83282005, 0x14322269,
0x053b4414, 0x3c001e24, 0xf3463200, 0x824f8206, 0x1e3c2817, 0x00010000, 0x82ecff14, 0x005a2519, 0x17000013, 0x6b846d83, 0xe5853520, 0x33153323,
0x2044823c, 0x834f830a, 0x32142104, 0x378e5285, 0x82233721, 0x8437858f, 0x831520af, 0x84348837, 0x83398508, 0x000a2c37, 0x00500014, 0x001b0046,
0x82233700, 0x20318229, 0x052a4415, 0xd9843320, 0x7b843320, 0xd9823320, 0x76821420, 0x0684d582, 0x0a20d784, 0x47870087, 0x47824620, 0xc9420b20,
0x1446210d, 0x28200084, 0xf9823883, 0x1e000122, 0x1422df84, 0xdf830900, 0x3c206987, 0x39415a82, 0x22238405, 0x8228000a, 0x00322249, 0x264b8303,
0x3c463335, 0x830a283c, 0x001e2463, 0x823c0000, 0x201782af, 0x22a38233, 0x821e1e3c, 0x0100252e, 0xf6ff0a00, 0x5a222f82, 0x7b851300, 0xff891520,
0x3f82bd82, 0x8206e641, 0x828e86f9, 0x00002193, 0x26057f43, 0x005a0050, 0x8d17000b, 0x350721b5, 0x35235e82, 0x82331523, 0x0a50214a, 0xc241ec82,
0x26488306, 0x460a0a46, 0x820a1428, 0x08034602, 0x43823c20, 0x21420920, 0x84352005, 0x143c2671, 0x140a141e, 0x0528463c, 0x2009ff44, 0x8423841d,
0x42278221, 0x648406cf, 0x1522b184, 0x32834633, 0x3a420a20, 0x453c8205, 0x0e820583, 0x46051b41, 0xaf410c73, 0x06df4105, 0x9742ae86, 0x46332109,
0xe582b582, 0xed420282, 0x22558206, 0x851e0a1e, 0x0000214b, 0xfb839385, 0xf98c1120, 0x3526f282, 0x50331533, 0xf183140a, 0x40822d82, 0x32321425,
0x4828280a, 0x67410b73, 0x82ed8408, 0x05ea4875, 0x0a0a4627, 0x280a1e28, 0x4204823c, 0x322005a5, 0x0022b782, 0xdf490200, 0x41132008, 0xd5420d67,
0x35072309, 0xb1831523, 0x30820a20, 0x22056542, 0x42320a0a, 0x282005e5, 0x5b467a83, 0x42af860a, 0x332008e1, 0x7982fb83, 0x28252d84, 0x1414463c,
0x22e5841e, 0x8a030000, 0x45192077, 0xb3820909, 0x200a2741, 0x22798227, 0x82171533, 0x20818744, 0x0506440a, 0x2006db42, 0x0518481e, 0x141e0a28,
0x0a14280a, 0x1744001e, 0x00462308, 0xcf88005a, 0x6d431520, 0x20d5820a, 0x85cf8533, 0x824f82cc, 0x829e8493, 0x850a200a, 0x000221cf, 0x2005cb42,
0x23a58246, 0x37000007, 0x43833f82, 0x821e3c21, 0x14322300, 0x67851446, 0x83052b43, 0x870d2023, 0x08314323, 0x831e1e21, 0x321e2652, 0x0a0a5014,
0x422f840a, 0xad440967, 0x44352006, 0xf5820a3f, 0x49054344, 0x15250611, 0x46331533, 0x85e48614, 0x08ce439c, 0xef86088b, 0x46001e24, 0xab8d3c00,
0x823c4621, 0x05e14100, 0x820b1b42, 0x057f447b, 0x200aa141, 0x83898633, 0x091746e5, 0x7f8cb682, 0x830d5344, 0x143b421a, 0x6b411520, 0x47078506,
0x6546052b, 0x0a282508, 0x3c141414, 0x02820482, 0x5021dd82, 0x82bf8414, 0x50002704, 0x15005a00, 0xa5431900, 0x05eb4409, 0x4605c142, 0x5020053b,
0x3c214682, 0x2286820a, 0x823c2814, 0x240d843c, 0x46140a14, 0x05b34514, 0x4f420220, 0x000f2208, 0x080f4613, 0x41833320, 0x33244b82, 0x15233507,
0x82053b46, 0x1414233b, 0x3f821e1e, 0x3f470a20, 0x098b4207, 0x84000b21, 0x2337213d, 0x3782bf83, 0x7b852320, 0x82351721, 0x320a223d, 0x82f68232,
0x2241826e, 0x831e0a5a, 0x1e28223d, 0x20bd831e, 0x437b8801, 0x3520067b, 0x8208c342, 0x20838238, 0x84b78346, 0x203b82fd, 0x207a820a, 0x41b78214,
0x0b200b3f, 0x47091d45, 0xaf8205a5, 0x2b823a84, 0xf3832820, 0x0a237983, 0x830a5a0a, 0x0a462184, 0x200c6b44, 0x21ed840b, 0x10451533, 0x46332305,
0x96823c3c, 0x825a2821, 0x899c83a1, 0x0009219b, 0x83064346, 0x824620db, 0x3c142523, 0x280a1e50, 0x410ccb4d, 0x35410639, 0x84232006, 0x20cb8282,
0x84f98246, 0x865482be, 0x418393bd, 0x35210635, 0x06c84533, 0x5a282822, 0x49061f44, 0x0021094b, 0x204f8233, 0x83038235, 0x283c23af, 0x02820a0a,
0x53820a20, 0xd38f4620, 0x57483720, 0x15332105, 0x28063f41, 0x0a141414, 0x14140a0a, 0x0bcf4250, 0xfb841720, 0x83061547, 0x09b54429, 0x2e824620,
0x06823283, 0x8a823683, 0x14214182, 0x4189830a, 0x05200913, 0x63823f84, 0x143c4624, 0x5a825a28, 0x420a7b45, 0xd7860945, 0x50205f85, 0x8b838685,
0x1e1e3c24, 0x0e825a3c, 0x50225389, 0x7d425a00, 0x88e38207, 0x8a398337, 0x0a1e2337, 0x3783320a, 0xaf442820, 0x11674a0c, 0xf5443520, 0x49282006,
0x46250584, 0x46460a0a, 0x22338c46, 0x490d0009, 0xc58208f1, 0x31840720, 0x32141e22, 0x32233082, 0x425a280a, 0x022006e0, 0x24061f4a, 0x0011005a,
0x08b94815, 0x220e6745, 0x820a1446, 0x055e45ca, 0x2206a542, 0x8e141446, 0x085b436f, 0x2f446882, 0x06214305, 0x0a203d82, 0x0a207682, 0x1e207882,
0x14217884, 0x0f1b4314, 0x20067b44, 0x44378435, 0x35200973, 0x934ab782, 0x21ee860d, 0x08880a0a, 0xfe420a20, 0x05094505, 0x03429c83, 0x4707200b,
0xb0820923, 0x503c1425, 0x8b0a5050, 0x0af3481f, 0x820d4b42, 0x20278b28, 0x103b4b0f, 0xb9443320, 0x83142007, 0x057c4173, 0x43099b47, 0xbd8308eb,
0x0385c583, 0x8305b14b, 0x1e142130, 0x3c240083, 0x3c1e1e3c, 0x1f20678b, 0x200bb342, 0x057d4535, 0x8c503320, 0x45152005, 0x462006ff, 0x72843e82,
0x1e230787, 0x471e280a, 0x1e21057a, 0x43078214, 0xb79b0c2b, 0x280a3223, 0x05d44628, 0x2009f342, 0x0de74817, 0x84063143, 0x05e14879, 0x0a3c2822,
0x70820082, 0xfd500a20, 0x06334305, 0xe2ff142b, 0x5a003c00, 0x00000700, 0x08bf4317, 0x14142826, 0x640a781e, 0xe749df84, 0x461f8209, 0x534605dd,
0x091b4b0b, 0xfb480a20, 0x4b058205, 0x578c051b, 0x33823520, 0x56823c20, 0x64207f82, 0x2406c741, 0x00460050, 0x05854d6e, 0x44057742, 0x3320069f,
0x2008d145, 0x06ab4650, 0x00204f83, 0x5024a782, 0x0300ecff, 0x5023a785, 0x841e5050, 0x00142247, 0x25bf8250, 0x0009006e, 0x9d853700, 0x2106b14b,
0xa5470a1e, 0x07434606, 0x0d004624, 0x8b461100, 0x05b14209, 0x7a820720, 0x0a324626, 0x281e1e0a, 0x0a21bf82, 0x20018214, 0x062f4c0a, 0x43097b46,
0xc545088f, 0x46152108, 0x1e202582, 0x0a263183, 0x320a145a, 0xbb413232, 0x4546200a, 0x2f4607f5, 0x2274821d, 0x82320a0a, 0x20678ec3, 0x08d74d33,
0x14219b88, 0x22638214, 0x8450140a, 0x08db4966, 0x414ccf86, 0x053d4107, 0x28203384, 0x0a20cc82, 0x1e21cf83, 0x82628314, 0x0d1f45a6, 0x820cf94e,
0x152323d3, 0x2a834633, 0x1e280a2c, 0x2828281e, 0x0a0a1e0a, 0x6783001e, 0x00e2ff23, 0x22018246, 0x4c11000d, 0x23200a39, 0x67846983, 0x28320a22,
0x32202a82, 0x0a209e83, 0x3c20a183, 0x210c0741, 0xc346005a, 0x082f4505, 0x28824620, 0x0a1e1426, 0x145a3c3c, 0x2409eb4d, 0x00640046, 0x05ef4403,
0x17333522, 0x21074546, 0x2b823233, 0x14143c2c, 0x14501428, 0x0a320a64, 0x8f87003c, 0x2f8b3c20, 0x8206ef48, 0x822b8235, 0x281427bd, 0x0a781450,
0x2b52500a, 0x284f460e, 0x5a1e0a26, 0x14140a32, 0x4c0f434c, 0x33200567, 0x20053142, 0x22968446, 0x460a460a, 0x46200b57, 0x3320c183, 0x8605b146,
0x051946ef, 0x3c0a3c25, 0x473c3232, 0x46210cdb, 0x864f8500, 0x82462027, 0x85e082e9, 0x09ab4223, 0x21203746, 0x77420a32, 0x41338206, 0x374606a7,
0x0a0a231a, 0x2f95641e, 0x35431720, 0x49352006, 0xd141064d, 0x1e1e2205, 0x4194820a, 0xe3840ccf, 0x4505674a, 0x35220513, 0x02434633, 0x32142605,
0x1446280a, 0x0a9f450a, 0x45090343, 0x65420609, 0x33152205, 0x06334246, 0x66822820, 0x6e430a20, 0x45142005, 0x0f200cd7, 0x4606a143, 0x46220ac7,
0x2a820a28, 0x92841e20, 0x0a141422, 0x4e0d6b43, 0x15210803, 0x228f8233, 0x82140a32, 0x3c3c2221, 0x0c8f433c, 0x821b4b45, 0x064841b6, 0x21054b45,
0xbb890050, 0x830aab48, 0x0a03465d, 0x14256582, 0x28323214, 0x858c8228, 0x4f462037, 0x034205cf, 0x08315106, 0x20082d51, 0x82fb8233, 0x84c98235,
0x850782a2, 0x4205820d, 0x0020086f, 0x2006c741, 0x09534f15, 0x84097b51, 0x05c145df, 0x42841420, 0x0a21b984, 0x89ec840a, 0x27074683, 0x05843d85,
0x20052b41, 0x050351ff, 0x49481b20, 0x0ac34c0d, 0x0b51c182, 0x08464c07, 0x1e0a1422, 0xeb519282, 0x001e2506, 0x1e000100, 0x6351c382, 0x51172006,
0x1e210563, 0x20178378, 0x225f8214, 0x505a0046, 0x232006f3, 0x510c4b4e, 0x15220831, 0x13484633, 0x4e068606, 0x6683070a, 0x2405ef45, 0x003c0000,
0x50478250, 0x4b88093d, 0x21056d47, 0x83523335, 0x21968207, 0x50830a0a, 0x1710ae87, 0x560901c3, 0x0125a71f, 0x32001e00, 0x06eb5100, 0x13443720,
0x15232b05, 0x0a1e3c33, 0x320a0a14, 0x73440a1e, 0x52238c05, 0x3c200ddf, 0x4005a94f, 0x975ba9ef, 0x21d7df2d, 0x1f4a0002, 0x573c2005, 0x1720052f,
0x200a2f57, 0x0c2f5727, 0x0a0a1425, 0x5414141e, 0x1b200e1b, 0x210d7b4b, 0xab563335, 0x4b35200b, 0x0a210687, 0x203b820a, 0x53008314, 0x14200584,
0x0a200e82, 0x20057b54, 0x22008200, 0x505a0046, 0x33200641, 0x4c054f49, 0xdd4a0a59, 0x0a462105, 0x28200082, 0x1e233c82, 0x82320a1e, 0x821e203d,
0x1e0a210e, 0x29054f4b, 0x000a0002, 0x00460014, 0x97570050, 0x06694a06, 0x46086748, 0xef4c0697, 0x457d8408, 0x9f4c0da1, 0x4ba68605, 0xdf860ca3,
0x51929784, 0xd5854620, 0x0b864d85, 0x1e0a0a22, 0xa1820082, 0x02000022, 0x520a2b45, 0xc2820a8f, 0x28141425, 0x82327832, 0x0883496a, 0x27005a26,
0x00002b00, 0x58077f41, 0x13410801, 0x05575106, 0x8706ff57, 0x4f0a20cb, 0x1d4105db, 0x46142007, 0xcd820b7a, 0x0984e986, 0x82141421, 0x0002256c,
0x0050000a, 0x86058f49, 0x8207208f, 0x05e758d5, 0xbf825020, 0x05202382, 0x00200382, 0x5a232582, 0x5d000b00, 0x00200783, 0x5307d34f, 0x35220685,
0x82821523, 0x2b21a282, 0x05314901, 0x0b4e2720, 0x82172006, 0x0a50234d, 0x02830a3c, 0x8309e055, 0x1e142187, 0x0a219c83, 0x221a8246, 0x820a0a32,
0x1e0a2302, 0x1282281e, 0x820a1e21, 0x4103206f, 0x5a2206c3, 0xe94e0d00, 0x23372205, 0x20498235, 0x84fb8435, 0x273321f9, 0x230ac54b, 0x14143c3c,
0x2106d652, 0xf4820a3c, 0x00020022, 0x50260083, 0x13003200, 0x5d482700, 0x0955500b, 0x5387e782, 0x8205b153, 0x4c5020b1, 0x282009d9, 0xb0530a89,
0x205d8312, 0x23a38601, 0x00050032, 0x2305874c, 0x28144633, 0xdb488982, 0x135b5706, 0x38830320, 0x22064b41, 0x5629001d, 0x33200c13, 0xcf419183,
0x82352005, 0x4a098499, 0x9b83075d, 0x20054541, 0x05ab4a14, 0x0a1e2822, 0x7351e883, 0x14282107, 0x8305f54b, 0x3232240f, 0x8201000a, 0x5f6e2067,
0x9b8306bb, 0x50503324, 0x774c6e50, 0x003c2406, 0x43640046, 0xc54105db, 0x051b560e, 0x61822820, 0x50082e4f, 0x46200aa3, 0x15203391, 0x20052b42,
0x21008214, 0x7b583c3c, 0x827c8205, 0x00012a33, 0x00280014, 0x005a003c, 0x48e38311, 0xc58206d1, 0x2105174f, 0xbd82283c, 0x0a21c182, 0x05664114,
0xd3450a20, 0x20338705, 0x59338313, 0x37820d1d, 0x0a3c3323, 0x20e5821e, 0x20378314, 0x0c135932, 0x480c0f4e, 0x3c260765, 0x0a140a0a, 0x0b46641e,
0x00022705, 0x00e2ff00, 0xc3830050, 0x33205d82, 0x210a3f48, 0xb1422317, 0x14322105, 0x14212f82, 0x83628214, 0x5a0a2608, 0x3c0a0a3c, 0x06e7413c,
0x5a203b84, 0x420a3d5c, 0x50210839, 0x0553430a, 0x6e503225, 0x820a0a32, 0x0000249a, 0x841e0001, 0x593c20fb, 0x3c240757, 0x14281e1e, 0x22091f4f,
0x4d0b0000, 0x33210a59, 0x84d78515, 0x0a074174, 0x9f4f3220, 0x07f74205, 0xf9833220, 0x5f842820, 0x54091b43, 0x23200be3, 0x23056945, 0x15233507,
0x3320d182, 0x2208a754, 0x853c3c28, 0x821e2098, 0x830a2000, 0x0e1b43cf, 0x2013c55a, 0x12d95a07, 0xd95a5020, 0x06c65409, 0xd3500a20, 0x0e204307,
0x00000023, 0x085f5c04, 0x20051b5f, 0x20f18331, 0x05cd4235, 0x830e5b5c, 0x08b950b7, 0xbf843320, 0x15233529, 0x1523013d, 0x831e1450, 0x82668762,
0x1e0a246d, 0x5a1e0a28, 0x0a830865, 0x7b863220, 0x2208da4a, 0x88010000, 0x8375857b, 0x0f7b4a6f, 0x03541382, 0x20798905, 0x06054415, 0xdd825020,
0x5e837790, 0x8207a141, 0x42838271, 0x0a210981, 0x0b4f5d0a, 0x31002d28, 0x39003500, 0xf1923d00, 0x46353321, 0x2e450831, 0x05f55b06, 0xf98c9d83,
0xf342fd8b, 0x0a0a2108, 0x580b0141, 0x0641154b, 0x46088208, 0x3c200b4b, 0x47054359, 0xf78609cb, 0x27207f82, 0x46219382, 0x47f4820a, 0x3b820893,
0x0283eb82, 0x82142821, 0x07535744, 0x0f007822, 0x1b204582, 0x42159157, 0xef4c05a7, 0x06dd4707, 0x9e575182, 0x0a3c2309, 0x2b5a0a0a, 0x204b9e08,
0x56938215, 0xf484057b, 0x5705d759, 0x46200aea, 0x82204b8b, 0x23249784, 0x33370000, 0x820a3345, 0x351724d9, 0x5e371523, 0x1b8508cd, 0x9a851e20,
0x85060147, 0x0a5a235d, 0xa783460a, 0xac862820, 0xf7885c83, 0x83005021, 0x0b995eab, 0x84088958, 0x085d5c5b, 0x56074b4f, 0x716408a9, 0x1e142105,
0xa046b787, 0x500a2506, 0x04001e1e, 0x41066758, 0x17210507, 0x19554100, 0x83077760, 0x22ae82b7, 0x83142814, 0x0a564102, 0x14141423, 0x224f8800,
0x820f0082, 0x20ad944b, 0x099a5227, 0x35071525, 0x59371523, 0x32210b47, 0x0501420a, 0x43094f59, 0x3c200557, 0x00206884, 0x57067f52, 0x6d4e0513,
0x09574105, 0x8206ad58, 0x5015235f, 0xa7820a28, 0x2005cd48, 0x213a840a, 0x07821e0a, 0x25083f56, 0x4600e2ff, 0x235c5a00, 0x05714307, 0x2d503520,
0x10675905, 0x1e208082, 0x3b564c82, 0x05644505, 0x73599384, 0x00782210, 0x06a9570b, 0x21083959, 0xd3452327, 0x06415905, 0x14223d82, 0x8a835a0a,
0xdb415a20, 0x41022006, 0x3b92087f, 0x59067d42, 0x0a20057d, 0x1420d182, 0x64203b84, 0x82203b8e, 0xb7417782, 0x85778a05, 0x4235203b, 0x7f880689,
0x8806bd41, 0x214a8247, 0x5b43000a, 0x06cb450c, 0x8f553320, 0x23152306, 0xc3833315, 0x0f820720, 0x28214588, 0x20898514, 0x0a575f5a, 0x8a003c21,
0x082361ff, 0x9559ff86, 0x82142007, 0x460a24c4, 0x89460a0a, 0x05c759ff, 0x2d4b3b92, 0x8b332006, 0x843a833b, 0x073741fe, 0x7389fb8a, 0x3f88fb8d,
0x7f84fb86, 0xfb9c4483, 0x37204d87, 0xfb83f782, 0xfc824589, 0xfc844284, 0x83000221, 0x00462400, 0x500f005a, 0xe042095d, 0x07332108, 0x96420a82,
0x82352006, 0x059b5abb, 0x20081b45, 0x06254928, 0x1e0a1e23, 0x08df480a, 0x78005024, 0x7f621300, 0x0ff15907, 0x82233521, 0x0ae943db, 0x395a5020,
0x20438209, 0x5a038314, 0x66850809, 0x200ceb44, 0x60a5820b, 0x152011f9, 0x5c083345, 0x3d840a53, 0x41051e5a, 0x7f4507ab, 0x41479809, 0xf3470579,
0x0a1e2208, 0x21018214, 0x47850a0a, 0xcf446420, 0x0046230c, 0x47830082, 0x7b4a1f20, 0x122b450e, 0x14204f88, 0x8306d344, 0x4153899c, 0x50220dc7,
0x579c7800, 0x880a3d41, 0x41322057, 0x4a82073c, 0x23455791, 0x051b4309, 0x45154141, 0x4141051f, 0x051d4507, 0x5a204e88, 0x0023b982, 0x820a0001,
0x00462501, 0x00230050, 0x4805a74b, 0xf35212dd, 0x15332108, 0x4808a34e, 0x55650968, 0x4c0a2008, 0xf7600815, 0x0007220b, 0x08ff570d, 0x07463320,
0x055f4505, 0x46353326, 0x320a320a, 0x14203482, 0x0a2b0382, 0x1e500a50, 0x0a3c0a14, 0x4200141e, 0x46210877, 0x06834300, 0x440b255d, 0xcf4d08bf,
0x843c8205, 0x50502277, 0x06744150, 0x8d0ebf44, 0x090d423b, 0x8406b841, 0x5050217b, 0x778a0683, 0x9306c343, 0x08bf443b, 0x8309dd62, 0x86478af9,
0x0d9b4287, 0x2007b74b, 0x203f8323, 0x09bf4435, 0x28204587, 0x82050541, 0x469882c5, 0xff830653, 0x41000f21, 0xed6606db, 0x2733210a, 0x4c063142,
0x0a20088a, 0x14208282, 0x8e07065b, 0x4c5a20cb, 0xef5f099b, 0x58332006, 0x1e2405ad, 0x0a1e1414, 0x5a210384, 0x06435d14, 0x8311e35f, 0x089f42a9,
0x46331522, 0x6c836882, 0xe4831e20, 0x1e280a22, 0x0a21af82, 0x09ef411e, 0x0d006e22, 0xf945af82, 0x0a934e05, 0x895a2720, 0x5a152008, 0x0a200d5f,
0x45058e43, 0x0a240506, 0x14145014, 0x40824ba0, 0x0f5a8f86, 0x491e2008, 0xcf8205a1, 0x8405dc43, 0x8f64200e, 0x001d224b, 0x0fed5a21, 0x610b754b,
0x3222083f, 0xfd5a0a0a, 0x21958505, 0x54851414, 0xf3840d82, 0x5022a38a, 0xef826400, 0x57911120, 0x01499983, 0x09555b0f, 0x8309da43, 0x320a235a,
0xd85b1414, 0x07d74308, 0x2b625785, 0x099f5b0c, 0x8907ff45, 0x06da4351, 0x46204e87, 0x200cf748, 0x21a3826e, 0xfd940019, 0x69231521, 0x352008ed,
0x87059543, 0x0c764553, 0xef41fa82, 0x845a2005, 0x000022aa, 0x07ab4f00, 0x8a004621, 0x674d8759, 0x332408b3, 0x33152315, 0x15216282, 0x225d8237,
0x820a1e50, 0x82998244, 0x1e1e2206, 0x20608332, 0x0559410a, 0x1e0a0a22, 0x03821682, 0x01000028, 0xe2ff0a00, 0x01824600, 0x49068345, 0x32213507,
0x2100820a, 0x4b420a32, 0x0d1d5c12, 0x5c0e9742, 0x91820827, 0x5c140a21, 0x0a26072c, 0x32140a0a, 0x9f4b1414, 0x08e34208, 0x97424b8d, 0x824b860e,
0x0508543b, 0x4a0a0a21, 0x46200747, 0x11234b8e, 0x68002100, 0xa94e08f7, 0x4e372009, 0x15240a11, 0x46331533, 0x28209d88, 0x8206ba44, 0x82558458,
0x073f4b0e, 0x00820020, 0x8d124342, 0x059d42a9, 0x1d463520, 0x82558b05, 0x09215d58, 0x14200c82, 0x22088744, 0x4a09006e, 0xdd410747, 0x09394105,
0x6705ff5b, 0xe38205d4, 0x0a463c24, 0xc3450a0a, 0x413b900c, 0x3b850929, 0x0a212f82, 0x203a831e, 0x453a845a, 0x378307bf, 0x63001921, 0x89440949,
0x0583450a, 0x0c413d85, 0x827b8707, 0x094b4d43, 0xb7826420, 0xe55e0d20, 0x203f8306, 0x0b394a33, 0x83141421, 0x840382e3, 0x6447823a, 0x1d250bab,
0x00002100, 0x20ec8237, 0x876c8323, 0x05284d07, 0x2405e842, 0x15333715, 0x05ec5d23, 0x8c4b0a20, 0x078b410b, 0x56820a20, 0x28280a23, 0x0b474950,
0xd3858f83, 0x8b452320, 0x10254405, 0x32208682, 0x204dc282, 0x3c3c2206, 0x05d44f46, 0x250ea748, 0x000b006e, 0x4982000f, 0x5f0fa552, 0x8d6509f3,
0x821e200c, 0x228e833f, 0x41323232, 0x9f46089f, 0x524b9a07, 0x4b88072f, 0x820a2821, 0x066452ea, 0xb0414b82, 0x0aab4b05, 0x3f494b85, 0x0ed36014,
0x510a9548, 0x3222082a, 0xa0860a0a, 0x200f3f49, 0x3c3f4964, 0x64455785, 0x0c234308, 0x85323f49, 0x1446214e, 0x2806c743, 0x0046000a, 0x00030050,
0x20a38207, 0x079b4500, 0x9b4c3520, 0x26238205, 0x0a281414, 0x441e1428, 0x4620093f, 0x13492982, 0x0a3c2625, 0x0a0a143c, 0x05ba5728, 0x42128b43,
0x3320059a, 0x200a8b43, 0x05746232, 0x1e0a0a28, 0x3c3c0a0a, 0x8b430a3c, 0x08874819, 0x8408e341, 0x820a203b, 0x831e206c, 0x2040823a, 0x0dff430a,
0x2208b768, 0x43353315, 0x3d84118b, 0x86088b43, 0x188b437b, 0x860f0549, 0x5e28203d, 0xa06105ac, 0x05975405, 0x6e004624, 0x154f1500, 0x6a232008,
0x87850be5, 0x0b5ebf88, 0x20c5840b, 0x82118214, 0x858b8202, 0x083361cc, 0xef704620, 0x1413490b, 0x1e0a0a23, 0x07c76278, 0x5e000321, 0x64200587,
0x19228782, 0x8b5e1d00, 0x08914e17, 0x1421878a, 0x89d18314, 0x43d88487, 0x0f200977, 0x5f057952, 0x33200a23, 0x20078548, 0x063d5637, 0xc9820a20,
0x28213582, 0x056d503c, 0x1e229782, 0xdf443c1e, 0x08035809, 0x41082563, 0x05820559, 0x210b1d49, 0xc5483c3c, 0x0c634909, 0x51007821, 0x00200513,
0x3520838f, 0x6a0aeb5f, 0xaf4a0c55, 0x05c15007, 0x2205c547, 0x4a1e500a, 0x64200a03, 0x84066f48, 0x09dd5653, 0x67495190, 0x0ac64b06, 0x200b6748,
0x06eb5900, 0x5a005022, 0x5605514a, 0x4544058b, 0x08f3700d, 0x0a0a1e22, 0x2406874d, 0x141e140a, 0x6a04821e, 0x462205fa, 0x9a833c14, 0x46244b88,
0x19001500, 0x670ed15f, 0x50200ce1, 0xff493b82, 0x48488605, 0x3c2005a2, 0x14205582, 0x200c974c, 0x075b4f13, 0x4b0fd564, 0x2820099b, 0x20099f51,
0x21468214, 0x9e510a0a, 0x45502006, 0xe74605cc, 0x42132009, 0x4b8f0755, 0x490a2947, 0x82450a90, 0x0a0a2309, 0x7b6d0a32, 0x097f5008, 0xcd4d1320,
0x09dd4905, 0xb5430983, 0x43558914, 0xa68808ba, 0xa882ad82, 0x8b056776, 0x0ae168ab, 0x44097b5c, 0x5b941211, 0x88463220, 0x663c2005, 0x734708c9,
0x6e782009, 0x074109cb, 0x0887550f, 0xdf442820, 0x6c142005, 0x46200a60, 0x200b9741, 0x8743ae64, 0x20438b8e, 0x05eb5082, 0x410b5947, 0x1520093f,
0x20051743, 0x20f98323, 0x09495835, 0x20067c42, 0x20988b14, 0x20e3925a, 0x865bbf6e, 0x0bcb46b0, 0x22074f44, 0x890b0082, 0x0ad5445d, 0x15233524,
0xc9583533, 0x35232106, 0x0a25b988, 0x0a0a2828, 0x20a38214, 0x08715e1e, 0x52097a6d, 0x5022118b, 0x4b495a00, 0x05db4d0a, 0x494a3320, 0x833c2007,
0x20fb824a, 0x274e8232, 0x50140a32, 0x1e323232, 0x5206675c, 0x64204d87, 0x4c07f15c, 0x675d0b6b, 0x50152206, 0x217f820a, 0x8782141e, 0x50141e22,
0x8e820c84, 0xb7438b82, 0x059f480a, 0x49540020, 0x0645540f, 0x5a3c3c22, 0x4b050855, 0x5f4508eb, 0x0d414b08, 0x5f453520, 0x063d4b07, 0x143c3c22,
0x21092e4c, 0x37471432, 0x00782309, 0x1356000b, 0x08075505, 0x860b0745, 0x05024577, 0x880a0055, 0x084b457f, 0x8d6b7f8f, 0x0be16809, 0x22089c45,
0x5a0a0a14, 0x0a2305d9, 0x8e3c0a0a, 0x0551668f, 0x27208f88, 0x550b4555, 0x00200743, 0x4e0ad349, 0xa34c078b, 0x0a974c15, 0x04411420, 0x14142309,
0x1f5c1428, 0x0a4b760d, 0x7e541520, 0x2c078306, 0x1e0a1e50, 0x1e1e283c, 0x1e140a28, 0x207d850a, 0x0503500a, 0x935cff20, 0x45132005, 0xad4e0afd,
0x25418408, 0x23352733, 0xc7821715, 0x2405b345, 0x1e280a28, 0x21018214, 0x48820a0a, 0x1422fd84, 0x92823c1e, 0x87830a20, 0x84129b55, 0x45898243,
0x19430663, 0x09db5609, 0x3e820a20, 0x4e825a20, 0x0a6e1e22, 0x034e0085, 0x05214c0c, 0xaf44cb84, 0x414b8f07, 0xc9470c9b, 0x09244105, 0x2007274c,
0x0a9f4146, 0x47067b44, 0x152007cd, 0x5382dd82, 0x43094c7e, 0x17820677, 0xad703320, 0x08bb450a, 0x20066046, 0x085e450a, 0x4f4f0320, 0x006e2606,
0x0011000d, 0x13b56a21, 0x6a10674e, 0x674e08c5, 0x0a142108, 0x4607ce6a, 0x78241313, 0x1f001300, 0x4d0fd372, 0xeb420567, 0x0a5d710c, 0x830a2821,
0x85ad87b2, 0x87002054, 0x056f42ab, 0xab951d20, 0x6909f742, 0x14220739, 0xf6422814, 0x20a58806, 0x10b74650, 0x41065b46, 0x27201357, 0x8b0df971,
0x143c2198, 0x23060743, 0x4600e2ff, 0x2006eb51, 0x20979515, 0x08c96935, 0x8f414082, 0x0a322506, 0x4632323c, 0x02204384, 0x20068741, 0x09255c5a,
0x200f7d72, 0x05765c07, 0xd7413520, 0x1428230a, 0x3448140a, 0x05d34107, 0xd3418f8b, 0x93192005, 0x013d218f, 0x41053c5d, 0x48820923, 0x830ac541,
0x084f4c0a, 0x2009af58, 0x05354623, 0x6e12cb47, 0x0a2008ca, 0x0a244882, 0x285a2828, 0x9908e54e, 0x4c152047, 0xf16c1125, 0x061f4105, 0x5005f96c,
0x022108ba, 0x22008300, 0x475a0050, 0xc3480bc3, 0x09e54509, 0x14293e85, 0x141e0a14, 0x28283c3c, 0x0513483c, 0xab730a20, 0x05fb5805, 0xad506420,
0x0a9f6506, 0x15231522, 0x8208736a, 0x821e2041, 0x0527427d, 0x200b9f4f, 0x09b75a78, 0x58096d59, 0x3c200ddf, 0x0282b082, 0x9f571420, 0x07005a08,
0x035b0a20, 0x20838708, 0x0ba96509, 0x59331521, 0xbf500f29, 0x22478805, 0x473c0a32, 0x6f4908d6, 0x000b2109, 0x8906af45, 0x5a35208f, 0x3c22087f,
0xb95a0a3c, 0x6f718305, 0x71821137, 0xf3823520, 0x35232723, 0x226b8633, 0x820a3232, 0x45462066, 0xa3460c13, 0x48f38d0a, 0xef8605e3, 0x5a06cb4a,
0x738b0aa9, 0x09006424, 0xab511500, 0x0aa9430d, 0x14143c24, 0xa4431428, 0x857e8305, 0x010024e5, 0x5cff1400, 0x1b4605f3, 0x2681870a, 0x33152315,
0x820a1e46, 0x82282000, 0x1e142103, 0x23050843, 0x00140a46, 0x48080366, 0x1720060b, 0x84065b56, 0x83332039, 0x82ef8437, 0x20758331, 0x06714214,
0x0a227783, 0x3e826414, 0xdf5b3f82, 0x0e5b4109, 0x555b3983, 0x20eb8409, 0x792c835a, 0xab6e08fb, 0x0dfb6e07, 0x42078f6f, 0xab6e07bf, 0x3315240c,
0x82233335, 0x0a502197, 0x0a249282, 0x14145014, 0x1422d083, 0xab535a50, 0xe2ff2806, 0x64005000, 0x46000900, 0x152008e9, 0x20060961, 0x08116107,
0x28075550, 0x1e280a50, 0x281e1e0a, 0x204b820a, 0x22de851e, 0x82500a0a, 0x208182a7, 0x09375846, 0x58005021, 0xe74512bf, 0x05854511, 0x21083c46,
0x88560a0a, 0x4f0a2009, 0x87530a2b, 0x23172106, 0x498f9787, 0x95823c20, 0x4c851420, 0xdc820a20, 0xe1410282, 0x098f5905, 0x2406e741, 0x001f0017,
0x08144400, 0x230dc876, 0x15330715, 0x32206184, 0x2209ca4d, 0x8214280a, 0x21e78250, 0xa582285a, 0x5a820b82, 0xbb420a20, 0x4553a407, 0x538f0653,
0xd8701420, 0x88142009, 0x0f336e53, 0x21226f77, 0xf16f1e0a, 0x09434406, 0x78004624, 0xfd700500, 0x15332106, 0x2109a959, 0xcc85143c, 0x5f505a21,
0x78220f2b, 0xa1540900, 0x08414e0d, 0x20053743, 0x0505460a, 0xfb86378b, 0x3d46678a, 0x83678208, 0x505a2268, 0x098f441e, 0x20055357, 0x8a678f5a,
0x849c8233, 0x0a46219e, 0x2f7a3789, 0x00052109, 0x45088544, 0x3b5605d3, 0x206b8206, 0x279d820a, 0x505a0a0a, 0x28140a32, 0x21086f57, 0x6b830050,
0x43074577, 0x3721062b, 0x08215123, 0x3a84d786, 0x72820a20, 0xbf443c85, 0x72052009, 0xad550611, 0x82462006, 0x14142467, 0x4b28505a, 0x5f850757,
0x6f440d20, 0x4437200b, 0x142109e3, 0x5c538314, 0x01200547, 0x20080b5f, 0x0ba14811, 0x23051642, 0x3c463315, 0x0a25bf85, 0x32141428, 0x208f8214,
0x0ccf6a28, 0x00001923, 0x05eb5237, 0x33208983, 0x43059f67, 0x15220505, 0x3a820a23, 0x04822820, 0x53140a21, 0x1e2005a4, 0x14213e82, 0x2011820a,
0x08c37414, 0x5b05375f, 0x4f42070d, 0x84152008, 0x07e5414d, 0x830a2f5f, 0x5f142081, 0x8e820c2c, 0x8313f753, 0x054f4683, 0x20090d64, 0x258b8232,
0x3c1e0a14, 0x8483463c, 0x2205bb53, 0x4700e2ff, 0x8382054f, 0x82060164, 0x823382cf, 0x2335248b, 0x84172315, 0x333521d3, 0x7543ba82, 0x670a2005,
0x5a2505e3, 0x280a0a14, 0x4389835a, 0x46200ec3, 0x83064342, 0x8235203c, 0x421520c6, 0x32250743, 0x0a321414, 0x83c08228, 0x433c207f, 0x02220853,
0xc2820a00, 0x4a005021, 0x07410bd7, 0x0f334b0e, 0x820a0f41, 0x20028293, 0x09124114, 0xda499182, 0x11235805, 0x9083cd82, 0x4d744d8f, 0x41488705,
0xd584071c, 0x20096f48, 0x05a15e0f, 0x820a8d6d, 0x153123a3, 0x37823523, 0x140a3223, 0x82ce8214, 0x3c0a2147, 0x0a210082, 0x08a35a0a, 0x0d005a22,
0x41097b49, 0x46250591, 0x141e280a, 0x24328214, 0x50640a0a, 0x05eb6a5a, 0x00e2ff22, 0x6c053376, 0x054805ad, 0x15332405, 0x820a4633, 0x222b852a,
0x5a463c50, 0xbb680cab, 0x66372016, 0x2820078d, 0x28229382, 0xca5f3c3c, 0x0c2f6309, 0xa9005a21, 0x06ca563f, 0xab603f8c, 0x0bcb6d05, 0x7c06737b,
0x0a200fab, 0x566d8784, 0x0ba56008, 0x830d3f4e, 0x574fb18f, 0x2b470bb5, 0x21068206, 0x9f850050, 0x41181720, 0xa18b0c4d, 0x33353324, 0xf5612307,
0x0a32240e, 0x82140a14, 0x0efa61ae, 0x00820a20, 0x42040021, 0x642106a3, 0x05436200, 0x8514bd58, 0x58579d4f, 0xa3420e66, 0x00502405, 0x7d0f005a,
0x9b82082d, 0x15231523, 0xf7461833, 0x0a3c2408, 0x5b143c0a, 0x462705bf, 0x0a1e0a0a, 0x6d46461e, 0x5b5d089f, 0x37002205, 0x84348335, 0x06884a32,
0x11842320, 0x37152325, 0x82152335, 0x1e0a2632, 0x1f091e1e, 0x23da820a, 0x320a0a28, 0x14204582, 0x23056353, 0x141e320a, 0x7c18a368, 0x37200fd9,
0x82073141, 0x8214203c, 0x05176044, 0x7c140a21, 0xa36809e6, 0x006e240c, 0x60110007, 0x35230799, 0x6b331533, 0x29410929, 0x82282005, 0x82cf8240,
0x1e1e2694, 0x2828140a, 0x82548546, 0x08e74d44, 0x20051741, 0x0c11481b, 0x15231529, 0x35271533, 0x45011d23, 0x352005a2, 0x39858a82, 0x88141421,
0x321e218c, 0x20067c56, 0x594b8800, 0x814a0553, 0x20428206, 0x051b7323, 0x20079d44, 0x213d821e, 0x8882280a, 0x45823220, 0xe2824620, 0x5a0a0a22,
0x690c9b58, 0x33200827, 0x82061945, 0x8333207e, 0x208b828c, 0x103b5315, 0x20092341, 0x09a24428, 0x0a5a2823, 0x0822681e, 0x2b505c82, 0x0007220a,
0x08e15517, 0x50092b41, 0x31410871, 0x140a210f, 0x34414782, 0x234b8209, 0x0a0a3c0a, 0x22080746, 0x18230078, 0x7e070149, 0x49481f65, 0x09647e08,
0x56096d7e, 0xc0840593, 0x5609ba63, 0xb9781a9b, 0x0b9b560e, 0x1e283223, 0x0536500a, 0x84069b56, 0x0a14215b, 0x51086b5c, 0x2322097f, 0x5d653300,
0xb9491809, 0x0cb5710d, 0x6a273321, 0x46200eb1, 0x2821c391, 0x08b77114, 0x540f3a7f, 0xbb560ac0, 0x43cb9013, 0x717d050f, 0x83cc8508, 0x0b1e4bd6,
0x2005dd4a, 0x0ad75532, 0xd74f0120, 0x852f2008, 0x0faf60d5, 0x4620e19b, 0x1e204883, 0x18082e67, 0x650e0940, 0x1f611457, 0x87d58e1d, 0x4114205f,
0x116e099d, 0x48758208, 0x462309a7, 0x41008200, 0x61472897, 0x11974110, 0x410a0a21, 0xdf840a98, 0x5707976e, 0xc18e1f13, 0x69426b91, 0x059a470c,
0xcd846c82, 0x410b9b52, 0x0f210997, 0x0f441800, 0x05c65f0a, 0x2e824620, 0x0a141e25, 0x84503c14, 0x0ba7478e, 0x41065b75, 0x0d440fc5, 0x82398607,
0x741420cd, 0x204805b5, 0x320a2106, 0x200c3b66, 0x08194507, 0x82352321, 0x0e3358d1, 0x14141422, 0x8205764a, 0x50502108, 0x08204c18, 0x4e068347,
0x0f200743, 0x0a294618, 0x2108ff6b, 0x454b3315, 0x1e322109, 0x43828683, 0x2705bf57, 0x0a320a0a, 0x320a1414, 0x65054b4b, 0xff8b09c7, 0x35218d84,
0x20c58333, 0x26b98214, 0x0a1e503c, 0x7a0a2828, 0x67770547, 0x081b7e07, 0x7a46b983, 0x3315230b, 0x71822846, 0x1e243782, 0x1e14141e, 0x324a3682,
0xef4d1806, 0x5178200b, 0x2948053f, 0x10e1600b, 0x2a4e0a20, 0x0a1e2206, 0x67448214, 0xaf431137, 0x05134f05, 0x900c735e, 0x069b4949, 0x3c214887,
0x05784a3c, 0x200e8b6c, 0x0d9b736e, 0xd14b1520, 0x054f4406, 0x3c3c1422, 0x50222e82, 0xe75a5050, 0x05eb580d, 0x8806c15c, 0x826f8431, 0x45688230,
0x4b180c8f, 0x2d850cbb, 0x860afd50, 0x20f586ef, 0x836b820a, 0x206f8df3, 0x083f5164, 0x55069f59, 0x14220e39, 0x46861414, 0x5f46e488, 0x82822008,
0x5c1720df, 0x818b0b8d, 0x86073553, 0x07935bed, 0x8785f385, 0x200dab46, 0x0a774209, 0x49943320, 0x850a3221, 0x2090848d, 0x838f880a, 0x49938646,
0x215d05a3, 0x2049830c, 0x06634837, 0x450b4549, 0x9b49065e, 0x081d4108, 0x20051f41, 0x089b4903, 0x11000922, 0x41064d53, 0x4d900621, 0x8608bf60,
0x4b998a4c, 0x13240ab3, 0x15170000, 0x0ab64318, 0x21056748, 0x4d434615, 0x05ba4406, 0x86820a20, 0x140a5023, 0x22378600, 0x82460050, 0x0b4f187d,
0x587f8607, 0x142106bd, 0x24c2830a, 0x140a1e14, 0x2070820a, 0x05bb5846, 0x00000022, 0x5d058351, 0x15240c89, 0x07333533, 0x5106f547, 0x6d820f43,
0x7b820a20, 0x4e822820, 0x651e0a21, 0x1e2008df, 0x3c240082, 0x3c3c1e5a, 0x410bdb44, 0x6e200713, 0x480bef5b, 0x5fad0609, 0x28266782, 0x14463228,
0x8f5d3232, 0x00822213, 0x0977610f, 0x47080865, 0xed451297, 0x088d4706, 0x5507876a, 0x002108d9, 0x0bcb6100, 0x41612520, 0x0c91721a, 0x2821f483,
0x575d821e, 0x0a200952, 0x6205a948, 0x276408dc, 0x052f6b0d, 0x0b114d18, 0x50086349, 0x4184087b, 0x28215084, 0x08316b14, 0x736b0a20, 0x8317200d,
0x233322f7, 0x254f1835, 0x08097508, 0xd1512320, 0x217c830b, 0x05843c28, 0x14215583, 0x200a821e, 0x05174514, 0x230fe351, 0x0017006e, 0x94057d6a,
0x0a4b4953, 0x55894f85, 0x9a6f1e20, 0x05b34a08, 0x200b5b5c, 0x061b7317, 0x27205394, 0x4618bf82, 0x2a460ce9, 0x860a2005, 0x05d754a1, 0x22056b45,
0x6b640046, 0x4ba808b5, 0xe358978a, 0x00002508, 0x82004600, 0x27204b82, 0x197d4718, 0x8f10d347, 0x05fe4af1, 0x08954718, 0x49087b5b, 0x172009c7,
0x9406b77a, 0x415fa4ab, 0x0a200e54, 0x00230082, 0x82140001, 0x005025bf, 0x000b005a, 0x5105f751, 0x2320051d, 0x282a2c82, 0x320a141e, 0x500a0a1e,
0xd75e0028, 0x108b5e08, 0x2f831520, 0x089f4a18, 0x850a3221, 0x551420c8, 0x3228090f, 0x00003232, 0xf6ff0300, 0x46240582, 0x11007800, 0x21056b45,
0xea4a3527, 0x243e8505, 0x35231523, 0x83c48217, 0x1e0a2103, 0x9b820182, 0x14283225, 0x416e1414, 0x1e270512, 0x1e3c6e0a, 0x181e281e, 0x560e0750,
0x858d0973, 0x1e283c22, 0x0a228782, 0x49825a0a, 0x55181e20, 0x03650a9b, 0x2080820c, 0x21bd8223, 0x77820733, 0x320a4624, 0x33871e32, 0x09534518,
0x0020b282, 0x0d203383, 0x6909b57a, 0x3720070c, 0xa4823582, 0x821e1421, 0x1428252d, 0x280a0a46, 0x0a206b82, 0x37876b86, 0x63510f20, 0x067a4505,
0x8605d24e, 0x07e1576f, 0x44821420, 0xe4833c20, 0x0d3f4818, 0x398a5a20, 0x33153322, 0x23206c82, 0x46059748, 0x142006d3, 0x39826f82, 0x46141423,
0x75418214, 0x6e20098f, 0x17243782, 0x23370000, 0x774f3182, 0x08997a05, 0x15332723, 0x822d8223, 0x257b822f, 0x140a141e, 0x3d853c14, 0x0a20bc82,
0x09f34d18, 0x08574318, 0x35204191, 0x0a23418c, 0x82320a14, 0x20858201, 0x82038232, 0x4c837340, 0x00ecff2e, 0x00460000, 0x0015006e, 0x2700001d,
0x41063b41, 0x1450077d, 0x35172105, 0x5249e685, 0x280a2307, 0xcc83140a, 0x8f836420, 0x64259a83, 0x0a32460a, 0x0ba75646, 0x65052752, 0x33660ca5,
0x14322409, 0x821e0a14, 0x42502001, 0x6d661467, 0x83338d0b, 0x974918ff, 0x06fb5209, 0xb9821120, 0x35170022, 0x2209dc4b, 0x82231533, 0x23352401,
0x82143315, 0x20ab8267, 0x066f500a, 0x0a0a3227, 0x5a0a1e32, 0x59f08232, 0xa7830873, 0x8208056c, 0x463327e6, 0x1e1e283c, 0x9f843c28, 0x200a774b,
0x0e1b625a, 0x8408b570, 0x206482a1, 0x4e6b8228, 0x282106fe, 0x210b821e, 0xdc84460a, 0x4a000121, 0x401807fb, 0x33200fbf, 0x8208914e, 0x06ed63a9,
0x8205a54d, 0x053a63b6, 0xb9851e20, 0x00141e22, 0x2768af82, 0x005a2305, 0x734c000d, 0x05db4f08, 0xb0824620, 0x0a140a2a, 0x0a1e503c, 0x6e0a0a3c,
0x13202b8b, 0x23202b8e, 0x82057546, 0x0a1e229a, 0x2063831e, 0x83348528, 0x553783ee, 0x6e22054f, 0x37821700, 0x594c3320, 0x57152005, 0xdd420561,
0x483c2008, 0x1e2b0593, 0x1e0a0a32, 0x280a6e0a, 0x82144614, 0x0a4621fd, 0x875e3a82, 0x001b2209, 0x8341821f, 0x18a282e0, 0x180a3a54, 0x2507a047,
0x2335011d, 0xed833c15, 0x08274118, 0x02858d82, 0x52060955, 0xf783055e, 0x83063745, 0x863520cb, 0x08605294, 0x82153321, 0x0a1e248f, 0x8214140a,
0x823c203c, 0x3c322551, 0x320a145a, 0x1420cb83, 0x87443782, 0x0a694b05, 0x3c231525, 0x82140a1e, 0x4b0a2001, 0x93720694, 0x2060820f, 0x20f18435,
0x23b68235, 0x33152315, 0xdb41de84, 0x82282005, 0x821e2068, 0x1e0a21f5, 0xf0825f83, 0x005a0023, 0x08057764, 0x8706cf41, 0x0545449a, 0x46231522,
0xcd4ce184, 0x0a1e2405, 0x83285a14, 0x5e1420ab, 0xa28205e3, 0x47847f87, 0x84091f52, 0x753320e8, 0xe0820c1b, 0x1e0a1422, 0x09d54e18, 0x0a5a1e23,
0x3f4b180a, 0x58112013, 0xb55c09b9, 0x3c462209, 0x20008214, 0x82038228, 0x0a1e22bf, 0x51c28328, 0x036908f3, 0x08a56906, 0x7f82f982, 0x8205d544,
0x7a2720d5, 0x1f4908af, 0x0a282306, 0xea422828, 0x0fdf5a05, 0x5a005022, 0x4a069d5a, 0x458207c7, 0x843c5021, 0x0a142237, 0x20008350, 0x5f4e1800,
0x202b8208, 0x20ab8417, 0x76a78223, 0x15200819, 0x51187182, 0xaa4108eb, 0x140a2805, 0x460a0a1e, 0x826e0a0a, 0x842820fc, 0x05735a3f, 0x09004625,
0x57170000, 0x8d5708f1, 0x5a1e2105, 0x560cef56, 0x521819af, 0xc7840b19, 0x46206182, 0x220efb46, 0x436e0050, 0x9d820ef7, 0x3325ad82, 0x23272315,
0x07a16715, 0x4187a583, 0x28140a24, 0x5b18460a, 0x11250c5b, 0x00001500, 0x43318237, 0x3522054f, 0x43843533, 0x3f820720, 0x4405db59, 0x5a2106a1,
0x05615528, 0xef4f0a20, 0x065f5907, 0x0f000b22, 0x4e18e588, 0x502f080d, 0x0a1e0a14, 0x0a283c0a, 0x0a506e1e, 0x18500a46, 0x84076352, 0x00462233,
0x07514c0d, 0x850d8373, 0x82322035, 0x5a1e2270, 0x06b16f3c, 0x0346ab83, 0x00132208, 0x0c034617, 0x82059541, 0x35172305, 0xb3451523, 0x1e0a2805,
0x46140a14, 0x820a6414, 0x0a1e2500, 0x280a6428, 0x220a036b, 0x18640046, 0x4409fd55, 0xf582059d, 0x8208b548, 0x141e213a, 0x2105fd47, 0x8b47781e,
0x05374409, 0x08bf5618, 0x1806735f, 0x6508c94e, 0xbd59098f, 0x20f98206, 0x8286820a, 0x1e0a237d, 0x09820a5a, 0x876b2820, 0x1f581805, 0x0725500c,
0x4305f144, 0x35200595, 0x4d828982, 0x1521d584, 0x08734533, 0x47140a21, 0x088306e5, 0x5c189683, 0x00200c4a, 0x20082b46, 0x0b695746, 0x28085b43,
0x46331523, 0x1e0a0a32, 0x42048428, 0x551805b1, 0x4c180f23, 0x23200927, 0x42088360, 0x33200511, 0x2205454b, 0x820a283c, 0x83282000, 0x431e20d9,
0x235f052d, 0x41502008, 0x17410753, 0x05414207, 0x27331522, 0x2005f774, 0x267b8214, 0x0a28140a, 0x83500a1e, 0x5a6e2339, 0x23431414, 0x6c5a200a,
0x31500591, 0x517f8308, 0xe5480af1, 0x237b8206, 0x1e1e1e14, 0x0a204a82, 0x32224382, 0x4345140a, 0x050f4606, 0x18005a21, 0x4108ff53, 0x502005d3,
0x14241f82, 0x50503c0a, 0x1f410883, 0x08176309, 0x083b4818, 0x51068d58, 0x1e2005db, 0x0a206283, 0x63845c82, 0x5f82a38c, 0x3321dd86, 0x059b6115,
0x143c1429, 0x640a1e14, 0x46640a0a, 0x13230b97, 0x41370000, 0x426e0640, 0x4615210a, 0x3050b482, 0x0a502605, 0x0a3c2814, 0x5d99820a, 0x67690a27,
0x06834305, 0x33273e84, 0x35173335, 0x823c1523, 0x05f341e6, 0x32285a22, 0x5d06d270, 0x4c1808a3, 0x33200df7, 0x9b823784, 0x026a0787, 0x0a1e2105,
0x44570183, 0x3c142106, 0x4f185082, 0x64200a5f, 0x20075b4a, 0x08a17815, 0x33203d84, 0x08cd5918, 0xb8831420, 0x460a0a23, 0x46118246, 0xe7830b53,
0x08cd5a18, 0x20091d4f, 0x06fe453c, 0x0a141423, 0x18ef8264, 0x24099754, 0x00e2ff00, 0x7301825a, 0xe34206b3, 0x18352005, 0x230c174f, 0x145a3335,
0x23093c70, 0x46501e0a, 0x20083970, 0x20b38a46, 0x07516a5a, 0x4706c341, 0x51840605, 0x3c463323, 0x20ef820a, 0x4e058528, 0x4f180a90, 0xeb420cff,
0x09a17907, 0x82050542, 0x183f8c05, 0x4710134f, 0x3f8206af, 0x4807bb43, 0xc782057b, 0xad428586, 0x05184f08, 0x2106bf63, 0x4747140a, 0x43bf840a,
0x5d1808fb, 0xbf8208b9, 0x6c08ef43, 0x0a23074f, 0x8414280a, 0x5d282084, 0x1d200c4b, 0x09f94918, 0x43897984, 0x458b3320, 0x830a0a21, 0x064e5147,
0x4f182820, 0x4b8d0848, 0x41071369, 0xcb88080b, 0x44081341, 0x89830685, 0x823c1e21, 0x83cd8246, 0xf344180b, 0x180c8208, 0x820db351, 0x5533209f,
0x5f18066b, 0x51440e63, 0x441e200a, 0x1e2007d3, 0x5582e482, 0x5f181e20, 0x99461563, 0x08174507, 0x22073342, 0x421e3c0a, 0x1e22062d, 0x48555a0a,
0x140a2106, 0x0a235f18, 0xa94d4620, 0x85152005, 0x08234189, 0x280a4624, 0x3c861e1e, 0x1e140a24, 0xbb8d0a0a, 0x1807db41, 0x200e7942, 0x237f8215,
0x28320a46, 0x14207283, 0x20088644, 0x83c38314, 0x7353183f, 0x08d97409, 0x83231521, 0x077f5401, 0x46353322, 0x0a22e382, 0x175c3214, 0x1e0a2606,
0x1e1e0a64, 0x056b4d28, 0x00001e22, 0x07876218, 0xa7823320, 0x14143223, 0x2111825a, 0x1f4a0002, 0x00032507, 0x33000007, 0x07201982, 0x20051573,
0x2020821e, 0x4522835a, 0x234e08f7, 0x0517430c, 0x2324b182, 0x14463315, 0xb1570088, 0x82fb8205, 0xf7641874, 0x82042033, 0x00002c93, 0x00780050,
0x001b0015, 0x48270023, 0x33200833, 0x83053d44, 0x49352071, 0x4544061b, 0x20178305, 0x211d8237, 0x2c622828, 0x417d8306, 0x1e300533, 0x1e5a0a0a,
0x0a0a141e, 0x5a0a4646, 0x141e320a, 0x0a212282, 0x209a820a, 0x20678700, 0x20678a64, 0x8fca8215, 0x27152164, 0x35201482, 0x22058f53, 0x83233523,
0x0a462167, 0x65824684, 0x82142821, 0x2103825a, 0x68820a14, 0x08823220, 0x0a206785, 0x14210f82, 0x82678232, 0xbb4c1869, 0x05c75007, 0xd1871d20,
0x870a3d41, 0x82332074, 0x20e3845b, 0x82718417, 0x8323200d, 0x236b8342, 0x0a0a4614, 0x1420c582, 0x8205a345, 0x08817615, 0xd0833220, 0x3220e182,
0x2005e341, 0x20008200, 0x057b4a50, 0x09455a18, 0x15231523, 0x823a8223, 0x5a462695, 0x50141450, 0x752b8350, 0x5024056f, 0x09006400, 0x6605a948,
0x07210979, 0x056b5e23, 0x5033352a, 0x141e280a, 0x14321e28, 0x61516182, 0x52418205, 0x03220587, 0x53670a00, 0x0877610c, 0x67333521, 0x50200d51,
0x4d67b983, 0x67142009, 0x4622054a, 0x4785500a, 0xb1820120, 0x50000022, 0x2208034b, 0x41331533, 0x152007dd, 0x3520b782, 0x14200384, 0x44059f44,
0x5a23050b, 0x833c1414, 0x0a0a22c4, 0x543b8228, 0xc78305f3, 0x44001921, 0x15200611, 0x3b834387, 0x2305c950, 0x37233523, 0x4785d582, 0x2306f24d,
0x14143c0a, 0x28224b82, 0x92825a14, 0x141e3c25, 0x8200141e, 0x00032200, 0x4cd78d00, 0x1521070d, 0x09214133, 0x4b823520, 0x8d823220, 0x840a2821,
0x821e204b, 0x823c2091, 0x204782d1, 0x06576f0a, 0x46214982, 0x05db5500, 0x09516618, 0x8205c74c, 0x5527209d, 0xbf430831, 0x4c172005, 0x14200859,
0xc54dd582, 0x75ac8206, 0x0a240cfe, 0x1e1e3c0a, 0x76111b6f, 0x075b0f93, 0x0fbd7f0d, 0x55820a20, 0x0c421420, 0x430a2005, 0x0a23050b, 0x6914640a,
0xb38605ef, 0xef540b20, 0x06cd4408, 0xbb69ad8f, 0x076d4e06, 0x45181420, 0x37641057, 0x08157c11, 0x2f6b9d8d, 0x06da5606, 0x0a320a24, 0x03705a3c,
0x2b44180f, 0x090d4818, 0x7b054341, 0x3e41083d, 0x08b86307, 0x7808a55e, 0xe3830913, 0x540e8162, 0x64180fd1, 0xd34608a9, 0x05384106, 0x8208607e,
0x640a235d, 0x976d3232, 0xcb42180f, 0x08a37f0d, 0xa3832320, 0x8562a183, 0x08ee5e05, 0x410d8859, 0xa75a1137, 0x0a3b490a, 0x59463321, 0x0a200885,
0x3c224a83, 0xb3653c3c, 0x05676308, 0x41004621, 0x13200537, 0x5a0b235d, 0x9f430567, 0xa14d1805, 0x374f1807, 0x18431807, 0x05c64908, 0x09cf4918,
0x8f747820, 0x00152106, 0x200ea75b, 0x849b8207, 0x218b8445, 0x41823c3c, 0x2106587a, 0x08820a28, 0xff7b1420, 0x188b870a, 0x180dc966, 0x4e089d43,
0xff470513, 0x43681805, 0x05114a09, 0x50505023, 0x0653480a, 0x82209389, 0x4209c76b, 0xd98305fd, 0xf5472720, 0x20958205, 0x83098207, 0x05254153,
0x0a1e1e22, 0xc76b4a82, 0x06525105, 0x14205083, 0x0420a082, 0x00214782, 0x052b4100, 0x1f001b22, 0x2609cf77, 0x33173327, 0x41273327, 0x35210dbe,
0x29578223, 0x15333533, 0x0a280a46, 0x01831401, 0x820b3121, 0x820920af, 0x0b0b2304, 0xed5b0933, 0x0e4b7e0e, 0x4218b383, 0xb18a0a1d, 0x68825582,
0x20061144, 0x85bf8207, 0x055a46b7, 0xbc821420, 0x14206382, 0x0845b987, 0x14282205, 0x0be74100, 0x4206d36c, 0xa541137b, 0x0b007a08, 0x41141421,
0x5f8208ee, 0x03830a20, 0x83085744, 0x07f158a7, 0x62067d42, 0xa7830923, 0xaf821520, 0x3c22a185, 0xc8420a1e, 0x469d8505, 0x4b44059d, 0x067f4f0b,
0x560c854a, 0x2821088d, 0x053a511e, 0x821e0a21, 0x8332207f, 0x85d38a36, 0x181f20d1, 0x840ce94d, 0x427d828d, 0x85820537, 0x35451520, 0x05f55209,
0x14238d82, 0x52461e1e, 0x32200563, 0x32239c82, 0x82001e1e, 0x18052000, 0x21086b4b, 0x0d58000d, 0x181d2005, 0x8212a344, 0x061b4351, 0x0fd75318,
0xcf4e5783, 0x0a322205, 0x200c8228, 0x41ad825a, 0x0f21097f, 0x7bad8500, 0x4f8212dd, 0x37204b82, 0x82054f49, 0x210282e6, 0x40823c3c, 0x2508c164,
0x1e5a0a32, 0x8f483c1e, 0x23058305, 0x00780046, 0x3356a387, 0x05014c0c, 0x4d870720, 0x0a0a3226, 0x0a281e1e, 0x9b874c86, 0x14146e23, 0x098b6646,
0x57005021, 0x4d18059b, 0x23210fd9, 0x05bf4b15, 0x18065d77, 0x220a314d, 0x82283232, 0x0a462156, 0x0a225c82, 0xb8555a1e, 0x07274905, 0x19005a28,
0x21001d00, 0x6d182500, 0x6c180c1f, 0x13700939, 0x83a38308, 0x89441803, 0x50aa820d, 0x1420084c, 0x0a286082, 0x0a46141e, 0x1e141432, 0x2109b34c,
0x5b180050, 0x997a08a7, 0x08a16f0e, 0x740a5021, 0xa38308de, 0x0a141422, 0xf482ac82, 0xc3465083, 0xe2ff2405, 0x7c005000, 0x1520087f, 0x82084d6f,
0x53458351, 0x502706c5, 0x28320a0a, 0x821e1e1e, 0x46888206, 0x0a260672, 0x14460a28, 0x63622828, 0x1813200c, 0x48088f4b, 0xfe570595, 0x44498205,
0xb743086d, 0x0c277606, 0x9c88e984, 0x460a1421, 0x5b8208d4, 0x26053749, 0x006e0046, 0x761d000d, 0x8546112b, 0x83ac8215, 0x1f5118aa, 0x1832200d,
0x4608b342, 0xb75b0d87, 0x14596f07, 0x6618b790, 0xb75d0dd9, 0xe2661808, 0x08185c08, 0x9f0c1741, 0x05335563, 0xb3462320, 0x3d671805, 0x183c200c,
0x1809ca4b, 0x8e08f660, 0x08af7263, 0x45601720, 0x4d35200c, 0x3d22079c, 0x49602301, 0x280a2205, 0x83b0820a, 0x460a22c1, 0x2302820a, 0x46461e14,
0xbb72a682, 0x00462308, 0x43830013, 0x280deb51, 0x15331523, 0x23353723, 0x853d8315, 0x0a1e2142, 0x32279583, 0x0a320a0a, 0x5c280a14, 0xd377053f,
0x5d032008, 0x372405b5, 0x07333523, 0x2007164e, 0x4c448315, 0x27200584, 0x46229782, 0x85823c3c, 0x0a274b84, 0x6414281e, 0x8614820a, 0x0a0a2191,
0xf7419386, 0x005a2107, 0x50244fb1, 0x0a146e0a, 0x0a219d86, 0x8f63181e, 0x5e82200d, 0x29500507, 0x6f272017, 0x23210953, 0x50018235, 0x8b410c39,
0x830a2008, 0x83282000, 0x099c7204, 0x26087753, 0x006e0046, 0x182d001d, 0x200e075a, 0x060a4133, 0x83057547, 0x49232065, 0x0a250edb, 0x14140a28,
0x5054821e, 0x142007a4, 0x8805cb46, 0x820a206b, 0x750a2010, 0x6f8c088c, 0x77000921, 0xf76a0b71, 0x08354b07, 0x42060b73, 0x0a2008ad, 0x01494682,
0x46002008, 0x962506cb, 0x0b005a00, 0x08c56900, 0x22053b6e, 0x60173315, 0xdc461771, 0x46352505, 0x28280a0a, 0x305f5082, 0x4864200b, 0x5a230582,
0x51460a0a, 0x0a210aed, 0x05ea5b32, 0x1d526fdc, 0x206f920a, 0x09914509, 0x83333521, 0x20dd9701, 0x07d34623, 0x8c501421, 0x821420d8, 0x5a142154,
0x3221648a, 0x2b401832, 0x654c180d, 0x0b277b0a, 0x4508f36a, 0x1e220890, 0x48790a0a, 0x4846200b, 0xff2209ff, 0xef4400e2, 0x00112105, 0x454d4d82,
0x08c35708, 0x8206f96b, 0x7b4620bf, 0xb4490915, 0x086c7a05, 0x08034718, 0x20092f4e, 0x0cd36c13, 0x2206ee4e, 0x82281523, 0x06e04c33, 0x5a281e28,
0x3c502828, 0x5b420a3c, 0x5ff62006, 0x7218065b, 0x15250e3d, 0x23350733, 0x0c3b5115, 0x0a264482, 0x280a6414, 0xcb5d3228, 0x1e677209, 0x20052c4a,
0x08686a50, 0x2005e371, 0x9e6b181e, 0x0a277407, 0x46248d82, 0x09006e00, 0x4e0a3d79, 0x23200713, 0xbf59c683, 0x05a85205, 0x463c3c22, 0x49080657,
0xad4a0aa3, 0x0da95a06, 0xa95a3520, 0x82152008, 0x615518ce, 0x0897530d, 0x66062349, 0x14260894, 0x321e1e1e, 0x7b490a0a, 0x000d260a, 0x00250021,
0x11214929, 0x8808c25c, 0x18638867, 0x86096544, 0x09324968, 0x21079743, 0x4c180a0a, 0x4f570ad7, 0x00782305, 0xc9830013, 0x820d3949, 0x42bf83bb,
0x63830761, 0x250aa348, 0x0a140a0a, 0xa6481e14, 0x82642009, 0x1e502270, 0x08cf511e, 0x19006e28, 0x27002300, 0xa7482b00, 0x4261821d, 0x4d18097f,
0xc4841037, 0x18281e21, 0x200e3d4d, 0x2016835a, 0x06b34864, 0x091b5218, 0x0f000724, 0x19681500, 0x35332108, 0x83088d76, 0x855118b9, 0x46bb840c,
0x0a2106b2, 0x28c88250, 0x1e6e0a0a, 0x0a3c0a14, 0x09cf4b1e, 0xf36f6e20, 0x001d2206, 0x39581800, 0x08135c08, 0x41825194, 0x82051752, 0x20a18547,
0x21b8820a, 0x2f4d0a14, 0x82782009, 0x821320a1, 0x128950a1, 0x37205183, 0x42097b4c, 0x5a45087f, 0x67282006, 0x59180529, 0xcd421046, 0x034d1805,
0x1819200d, 0x4317a14f, 0x93670519, 0x4f4f1807, 0x8357830b, 0x4c078261, 0x81670504, 0xd7511809, 0x3b471809, 0x60352018, 0x58480d7b, 0x69142008,
0x1e2105c5, 0x424d841e, 0x4620057f, 0x243b4718, 0x5018518e, 0x28200aa3, 0x18054f54, 0x1808444b, 0x200edf47, 0x08717e0b, 0x08f14118, 0x2005714a,
0x082b6815, 0x3c3c4625, 0x411e1e28, 0x5a240950, 0x1e0a1e0a, 0x4109194a, 0x4218124b, 0xa9410d8d, 0x574e1814, 0x074b410a, 0x0a5b4e18, 0x00850a20,
0x1808a350, 0x89142743, 0xe55718f3, 0x0a142208, 0xac581828, 0x47561809, 0x2743180a, 0x0e374118, 0x88419588, 0x0a142406, 0x820a320a, 0x188e839f,
0x830be34f, 0x5213208f, 0x8d420f6d, 0x08297c0f, 0x7d082c42, 0x4218058c, 0x0020082b, 0x46230082, 0x6a006400, 0x917d09bb, 0x35232209, 0x0b814133,
0x28141422, 0x20051a46, 0x1806831e, 0x180ccb4e, 0x590bcf54, 0x15210ab9, 0x050d6e23, 0x49821520, 0x8d884b83, 0xdb831420, 0x8a890a20, 0x67418482,
0x12a77d08, 0x18092141, 0x21094f4f, 0x81890a28, 0x75087f45, 0x49431c77, 0x07676c0e, 0x52095442, 0x584208f3, 0x09574208, 0xa31a7775, 0x364e1857,
0x7755180e, 0x1477760d, 0x820d4366, 0x141422ac, 0xa6781828, 0x0a462508, 0x4646460a, 0xc776a685, 0x8b4f9c26, 0x184f839e, 0x200ddf5c, 0x08c74d1b,
0x0e8d7518, 0x180f6d42, 0x410a7b72, 0x9e750955, 0x09957209, 0x25095741, 0x000d0007, 0xaf450015, 0x3b152208, 0x0ce86301, 0x2607f744, 0x14140a28,
0x441e1e0a, 0x1e260547, 0x0a140a14, 0x6d832828, 0x095a7b18, 0x0c9b5e18, 0x85081747, 0x08b34ff5, 0x210ef344, 0xb8750a0a, 0x056e4b08, 0x0a5a2825,
0x8446141e, 0x443c2054, 0x07220df3, 0x50181300, 0x332008cb, 0x420dd542, 0xa18505dd, 0x2005a141, 0x0519751e, 0x20053c45, 0x0a034428, 0x2008b343,
0x05dd4d37, 0x35204982, 0x4305c55a, 0x0a200b69, 0x4305dd63, 0x0a2108b2, 0x06c8530a, 0x430c0f76, 0xe9540bb3, 0x0e8b4208, 0x480a3221, 0x1e21064a,
0x5e4d8214, 0xde84069b, 0x09337818, 0x8f06d744, 0x62d58591, 0x7b18059d, 0x8a880b21, 0x8a15b343, 0x18418889, 0x2008774f, 0x0a146d28, 0x2008674e,
0x05654c5a, 0x8208e456, 0x502320c2, 0x67180dc2, 0x07200824, 0x20053b49, 0x08ca5923, 0xbb472820, 0x05b24705, 0x60751420, 0x20f3840f, 0x26a7850a,
0x00e2ff0b, 0x46460047, 0x74410669, 0x05206507, 0x23215f82, 0x205b8715, 0x0889740b, 0x440a2921, 0x578205ee, 0xd77f0885, 0x0007220f, 0x08d7550f,
0x3f872320, 0x14143225, 0x831e143c, 0x0a50223a, 0x0a636d0a, 0x46227f82, 0x31825a00, 0x7909ad64, 0x40180834, 0x6f180757, 0x28200835, 0x3220ba84,
0x3220dd83, 0xc3847e82, 0x76180120, 0x1d23083b, 0x5f370000, 0x48820c9c, 0x220c9a62, 0x820a0a46, 0x821e20c5, 0x0a142444, 0x180a0a28, 0x21081f85,
0x4c82141e, 0x24050768, 0x00ecff0a, 0x82018246, 0x8417204b, 0x8f35203e, 0x059b4e44, 0x1e0a2322, 0xdb62cb82, 0x064d7809, 0x00820a20, 0xcb6a1420,
0x0707560b, 0x55088d4a, 0xcb5006a3, 0x2133820e, 0x394f1414, 0x28282308, 0x4518285a, 0x4f4208a5, 0xef45180b, 0x33152110, 0x200f4759, 0x204a8346,
0x82de831e, 0x090a2708, 0x5a3c3c15, 0xf7760a14, 0x13df6515, 0x5a506e2d, 0x0300000a, 0xecff0000, 0x69005000, 0x1d200597, 0x08eb6618, 0x55183320,
0x37220944, 0x5b5c1523, 0x82f48408, 0x280a2104, 0x08065018, 0x820a3221, 0x820a20ce, 0x1e3221d3, 0xc38b0582, 0x09234618, 0xb3653320, 0x061d4308,
0x20051d59, 0x82bc830a, 0x20bf8234, 0x058c463c, 0x1e1e1e23, 0x0c435350, 0x20068351, 0xf26a1837, 0x58811808, 0x17152508, 0x32152335, 0x82073751,
0x050d6b42, 0x85830a20, 0x76054b65, 0xd782095f, 0x2108374e, 0x7b503533, 0x1523210d, 0x4621df82, 0x06db5d0a, 0x83056c50, 0x0b2970dd, 0x9b720020,
0x00462108, 0xa4614bb4, 0x09fb460c, 0x295b5218, 0x2309cd5b, 0x3c1e1e1e, 0x09a75418, 0x08f74b18, 0x550dc75b, 0xb65b0fe9, 0x1432240a, 0x88144614,
0x625a20cf, 0x4b7705a7, 0x08834a0c, 0x24088377, 0x281e1e28, 0x2200840a, 0x681e0a5a, 0xff2307f3, 0x824600e2, 0x46192001, 0x186f06bb, 0x0c956009,
0x46208983, 0x20059065, 0x24418314, 0x14140a28, 0x083e4e1e, 0x820a3221, 0x5714200e, 0x82210a63, 0x05177f00, 0x200c2b75, 0x08397e35, 0x200d7d5a,
0x204c830a, 0x083b5a28, 0x480a0a21, 0x6e200515, 0x0a23a382, 0x5700000a, 0x53bb09b7, 0x21051948, 0x945a0a64, 0x00042105, 0x83057b4e, 0x20f983a7,
0x85601821, 0x0543460d, 0x081b4618, 0x15233526, 0x23353337, 0x20065b5c, 0x0549440a, 0x591e4621, 0xad830585, 0x25052047, 0x4646780a, 0xe37e0a64,
0x00782108, 0x4f5aaf83, 0x6f5a180a, 0xe748180b, 0x1835200d, 0x200b6d40, 0x275f8432, 0x46140a1e, 0x0a0a0a46, 0x200de87e, 0x49b6820a, 0x7e180d73,
0x31420e1f, 0x11521808, 0x090e4a0a, 0x5806db5e, 0x64200563, 0x24bb4018, 0xe5841420, 0x46208585, 0x5b5c3f84, 0x0fe1411a, 0x24063141, 0x3c281414,
0xaf51183c, 0x46462308, 0xe2826e46, 0x5c0eeb4a, 0x47a10ca3, 0x4b09ce41, 0x6e20086f, 0x740c6b69, 0x46210c8d, 0x05fb450a, 0x3c3c1422, 0x47073075,
0x476e0703, 0x49152007, 0x15200715, 0x12f75618, 0x75333521, 0x3c210b1f, 0x0c19753c, 0x00820020, 0x0a000222, 0x23087f45, 0x37000019, 0x5b07a556,
0xd56108d2, 0x0a322107, 0x14210082, 0x076f580a, 0x0a141422, 0x46220282, 0x7445500a, 0x45022006, 0xdf4706c7, 0x18372006, 0x840cbf43, 0x82232099,
0x15332613, 0x28231533, 0x0580620a, 0x7e424f82, 0x3c322205, 0x21568346, 0x0e821414, 0x938c1420, 0x18076375, 0x870cd34f, 0x829988a2, 0x140a2195,
0x82056247, 0x47028353, 0xa38206b7, 0x5018f182, 0x3c210a63, 0x066b6c00, 0x09ef7218, 0x141e2823, 0x21408228, 0x5e180a50, 0x5a2109af, 0x06174500,
0x37526185, 0x23172809, 0x33233315, 0x82322335, 0x823c2030, 0x06fc45c5, 0x320a4623, 0x2402820a, 0x32321e14, 0x077f6100, 0x43874620, 0x48053b43,
0xc782062c, 0x33153724, 0x47823335, 0x40840a20, 0x140a1423, 0x20f5820a, 0x823f833c, 0x823220c1, 0x099b7200, 0x97515a20, 0x0d57620d, 0x82013d21,
0x28152188, 0x977f3f82, 0x5a142008, 0x0a22064a, 0x53823c14, 0x001e1422, 0x0c538218, 0x1f001924, 0x7b460000, 0xc9851805, 0x8289820a, 0x15232357,
0x09843723, 0x280a0a22, 0x23051b45, 0x3c0a1414, 0x0a21e683, 0x06524146, 0x0a225c82, 0x4c181e50, 0x46200c13, 0x8309914b, 0x84e383d4, 0x204d82ed,
0x224d8435, 0x820a0a32, 0x0a322347, 0x87180a32, 0xf6820836, 0x14831420, 0x00219a82, 0x25048301, 0x5a004600, 0x99850d00, 0x33249784, 0x23352315,
0x14282282, 0x3c0a3c28, 0x280a1e1e, 0x0cbb7818, 0x11605a20, 0xe5591809, 0x85318208, 0x413c207f, 0x3c20060a, 0x2820c383, 0x1420c982, 0x13823d82,
0x49055768, 0x1f20066f, 0x7e099559, 0xc0820e48, 0x15247c84, 0x0a0a1e3c, 0x8408844a, 0x180a20bb, 0x83087679, 0x000a225a, 0x07374300, 0x1f004624,
0x58182300, 0xdb47082b, 0x82d58214, 0x23152317, 0x9e851e46, 0x890b4f58, 0x2f40185c, 0x0000250d, 0x5a004600, 0x09f14918, 0x4982eb85, 0x23152324,
0xe34c1432, 0x20a38205, 0x05187328, 0x200cb769, 0x08557713, 0x82086b4d, 0x823582d8, 0x4814206b, 0x0a2005f0, 0x0a20df82, 0x37820482, 0x5e091f5d,
0x372008b3, 0x200b3474, 0x06224b35, 0x82066b76, 0x3c23210e, 0x20056143, 0x07544c0a, 0xba843220, 0x3c0a1428, 0x1e1e1e0a, 0xe4820a28, 0x830c7742,
0x85002057, 0x08025b46, 0x82352321, 0x82172001, 0x450a2053, 0x3582055c, 0x32143223, 0x82008228, 0xef6a1895, 0x4b49820b, 0x4d5405b3, 0x06194a09,
0xfa833220, 0x6d821420, 0x46464622, 0x46218083, 0x0a4f4200, 0x8208ed61, 0x08e14271, 0xb96a1520, 0x283c2106, 0x0a21a282, 0x4205820a, 0x1e20062f,
0x270a1b5c, 0x000b0046, 0x37000011, 0x2320f683, 0x22051042, 0x83333537, 0x320a24a9, 0x821e0a1e, 0x3c142103, 0x3e833a82, 0x7e180a20, 0x5024091f,
0x13005a00, 0x21703586, 0x8215200a, 0x056c4738, 0x14216c82, 0x05cd4214, 0x2820f282, 0x109f4e18, 0x73183720, 0x45430897, 0x37232806, 0x14333523,
0x82281414, 0x1e2827db, 0x14142814, 0x77821e1e, 0x28210e82, 0x2177833c, 0xbf660002, 0x705a2005, 0xb24d0923, 0x82272009, 0x0a3c224d, 0x0594441e,
0x14264482, 0x6e0a460a, 0xcf70280a, 0x0f5b7006, 0x0b26379a, 0x0a5a0a31, 0xcf413129, 0x4b881808, 0x6e461808, 0x2335260d, 0x23352315, 0x21068237,
0xaf82320a, 0x0a0a142a, 0x14320a14, 0x1e0a2832, 0x0782b584, 0x260a8b44, 0x00460046, 0x4315000f, 0x3f840df1, 0x3521f182, 0x203a8233, 0x26b2820a,
0x0a1e460a, 0x82281e14, 0x05855b4a, 0x220dcb44, 0x871b0017, 0x0953423f, 0x57424383, 0x824c830e, 0x82462089, 0x05124450, 0x3f479d82, 0x8250200b,
0x001d228b, 0x444b9321, 0xa942085d, 0x0a0a220d, 0x20988228, 0x4354820a, 0x4a4a0586, 0x791e2007, 0x80180536, 0x1f691267, 0x05a75908, 0x1e0a4626,
0x320a281e, 0x2820d582, 0x3c209d83, 0x0c678018, 0x11248f83, 0x35370000, 0xde853488, 0x6c823520, 0x2205ce41, 0x8232320a, 0x3c0a217c, 0x7d18c583,
0x3385097b, 0xb8822b85, 0x09842320, 0x86143c21, 0x059e4632, 0x1b5b3282, 0x05b74b0a, 0x71085543, 0x32220bdd, 0xdc711e0a, 0x795a2006, 0x7d181167,
0x64830ae7, 0x7909f44e, 0xa3830d67, 0xa3830a20, 0x22092745, 0x821f0017, 0xa56e18d9, 0x05d1440e, 0x47233521, 0x35230569, 0x180a1423, 0x2008294a,
0x06f24b0a, 0x47823220, 0xff820a20, 0x42053141, 0x0f200dfb, 0x0a7d8e18, 0x08f55618, 0x94822720, 0x0a145022, 0xa772fc82, 0x320a2607, 0x1e6e140a,
0x41fe8232, 0x5a21069f, 0x5dff8b00, 0x07250851, 0x5a331523, 0x20708214, 0x247c821e, 0x5a5a1414, 0x05505f0a, 0x200c1f44, 0x0c316d0d, 0x41183320,
0xb0820a3b, 0x20060e51, 0x055c6814, 0x0f623796, 0x74072008, 0x4b6406bb, 0x00022112, 0x50220083, 0xbd5f4600, 0x23152106, 0x44085a61, 0x7a83072a,
0x15012b23, 0x82eb8233, 0x831e20ec, 0x280a2273, 0x200a820a, 0x06a6490a, 0x0f4f1420, 0x6b7f1806, 0x05214c0c, 0x0bb74318, 0x73056c42, 0xc4830a47,
0x82063143, 0x820a2042, 0x72068300, 0x4620091f, 0x0e474218, 0xa146cf84, 0xd38d180a, 0xc4671812, 0x05476e08, 0x2321db87, 0x06797b00, 0x8d531520,
0x834d8d09, 0x83e182e4, 0x83d683d1, 0x821e2047, 0x88e58690, 0x53088256, 0x4620094f, 0x8805e351, 0x153322e9, 0x06515c33, 0x1520f683, 0x82080d4d,
0x21028254, 0x4584320a, 0x3220e282, 0x200c9376, 0x877b1811, 0x09477808, 0x0a27d982, 0x14141e28, 0x820a2814, 0x280a2102, 0xcb458682, 0x005a2208,
0x06af6164, 0x82085648, 0x060d466e, 0x15233723, 0x20398233, 0x2430820a, 0x320a141e, 0x82428228, 0x20d18306, 0x05c87a6e, 0x1805cf45, 0x74393784,
0xe95e0cd3, 0x5e46200b, 0x4a430ae1, 0xb7531806, 0x00502209, 0x05c15c46, 0xa1829f82, 0x440a2551, 0x33200542, 0x07b58418, 0x73415020, 0x830a2006,
0x140a23b2, 0xc1830a1e, 0x14230c82, 0x821e1e14, 0x665a2003, 0x53830aff, 0x2005175d, 0x08114723, 0x4b058141, 0x232005c5, 0x2806634c, 0x23350735,
0x35332715, 0x21538523, 0x07821e0a, 0x6f422820, 0x3c0a2106, 0x6a830c82, 0x14220f84, 0x63823214, 0x21093350, 0x67740046, 0x20a3820b, 0x20908246,
0x20228214, 0xd781181e, 0x5464200d, 0xc176071d, 0x8246200b, 0x1e0a2128, 0x3c223082, 0x64835a3c, 0x200af341, 0x054d4464, 0x3b492d84, 0x70232007,
0xe48205d3, 0x35841420, 0x0a0a1423, 0x21388750, 0x8f4e0002, 0x18112007, 0x760bd756, 0x33240851, 0x33352327, 0x8309b179, 0x05ef4b78, 0x8f4e1420,
0x09974305, 0x74050b7c, 0x3323095d, 0x4f1e0a46, 0x0a2306ad, 0x183c0a32, 0x820c2384, 0x378c18fb, 0x225f830b, 0x8214143c, 0x320a2126, 0x0a8f5d18,
0x23054f53, 0x37000019, 0x820d097b, 0x6a27200d, 0x3224065f, 0x0a143c14, 0x8306c742, 0x0a0a243e, 0x4a0a280a, 0x4a820721, 0x77062b45, 0x521808cf,
0x152209e5, 0x55871523, 0x1b492320, 0x051a5905, 0x1e208783, 0x0a20ae82, 0x5a834e82, 0x25097f44, 0x4600e2ff, 0xe7795a00, 0x33352107, 0x2705074e,
0x1e142814, 0x6e0a6414, 0x8308b773, 0x831f206b, 0x094341b3, 0x82101944, 0x21a98279, 0xae85281e, 0x28236684, 0x820a460a, 0x24128349, 0x1414280a,
0x082f4132, 0x75825020, 0x4f830d20, 0x35331522, 0x03827382, 0x23352322, 0x2605c242, 0x3c460a3c, 0x753c3232, 0x13490633, 0x820f2006, 0x822a8b2b,
0x0a1e2286, 0x82c6820a, 0x202d8361, 0x18dd8264, 0x180fef45, 0x830ab159, 0x231521d5, 0x2505b448, 0x1e0a0a3c, 0x61845014, 0x8f845020, 0x2405af4f,
0x000d0046, 0x45628500, 0x0a2107d2, 0x82608232, 0x0a5a2302, 0x2a833c3c, 0x0a4f4618, 0x18071742, 0x2008e54c, 0x82dd8332, 0x6f3c20c0, 0x8b8405af,
0x00000022, 0x21057343, 0x41423300, 0x09717905, 0x5020f582, 0x8209d161, 0x46282109, 0x1e20ce82, 0x200a2742, 0x184b5146, 0x2110577b, 0xf1680a32,
0x09a34e08, 0x6905e74e, 0x501808eb, 0x634517b7, 0x32322105, 0x7d82db83, 0x4805d746, 0xbb4811e7, 0x493c2006, 0x18440562, 0x05f04805, 0x0a320a27,
0x0028280a, 0x09b77100, 0x180a356c, 0x20092f42, 0x1b671835, 0x82332008, 0x0a5021bf, 0x22089d5f, 0x831e0a28, 0x821e20f9, 0x06674f47, 0x2509fb6e,
0x00070046, 0xf34b000d, 0x2b352306, 0xc5823301, 0xef5a2320, 0x281e2208, 0x0b7a1846, 0x22bb8209, 0x9d5a0046, 0x5a3c212f, 0x0c3b7a18, 0x534ceb83,
0x0afb4805, 0x62832720, 0x15413520, 0x24978205, 0x280a1414, 0x21e0825a, 0xdf480a0a, 0x00462109, 0xcf419787, 0x06975b05, 0x28229788, 0x678c6446,
0x67842f83, 0xbb451720, 0x15232105, 0x3725c782, 0x33353335, 0x05054115, 0x06821e20, 0x9b821420, 0x500a3c22, 0x7f446785, 0x07177a09, 0x35822c83,
0x8f833220, 0x3c140a24, 0x28843c3c, 0x124e278e, 0x24518209, 0x14140a28, 0x21878228, 0x7f473c3c, 0x4e0d200b, 0xad5c06b9, 0x0519640e, 0x14245382,
0x0a461e1e, 0x14203582, 0x0c036e18, 0x82096f6d, 0x84152083, 0x333522c5, 0x06d96407, 0x68829382, 0x0a246e82, 0x281e1e46, 0x200c1b7b, 0x056d6746,
0x31823520, 0x84180382, 0x8d4308ef, 0x33152305, 0xcc4f1e32, 0x141e2309, 0x895b0a1e, 0x82142005, 0xbb49187f, 0x00462108, 0x83081b7b, 0x21e18377,
0x28831446, 0x64501e25, 0x44640a0a, 0xff4c089f, 0x37002105, 0x8407d162, 0x05634e6b, 0x14212f84, 0x4a348214, 0x0a23057a, 0x180a0a3c, 0x200aeb8e,
0xd78b1846, 0x06d94407, 0x1e463323, 0x458b820a, 0x022108b7, 0x051f4400, 0x0ac76818, 0x20088d47, 0x09196533, 0x4905314a, 0xc88206e4, 0x82280a21,
0x0a0a21c6, 0x46230482, 0x82500a0a, 0x09934e07, 0x4a0b374f, 0x15220871, 0x76824633, 0x4605a64f, 0x4f180834, 0x17200c07, 0x200d6d6a, 0x08115b33,
0x5f821e20, 0x50223282, 0x9b4a0000, 0x4d112009, 0x7c4c09c7, 0x4f23200a, 0x322609d9, 0x14320a0a, 0x00821e28, 0x0a1e0a23, 0x20008214, 0x08ab5000,
0x46005022, 0x0d014f18, 0x7b054741, 0x28201797, 0x3220e582, 0x0b474e82, 0x560f200c, 0x152109fd, 0x4a398433, 0x1541067b, 0x3c3c2105, 0xb74a3082,
0x062d5c0b, 0x0b677918, 0x08378f18, 0x5d843220, 0x240b2f67, 0x000b0046, 0x4c618313, 0x172109e5, 0x82658523, 0x085a6457, 0x32280a25, 0x83141432,
0x22db8a03, 0x1815005a, 0x2008eb51, 0x09335733, 0x35333525, 0x181e5033, 0x21086840, 0xd5845028, 0x8c183b82, 0x8b180d07, 0x28231b7b, 0x821e1e0a,
0x461e2002, 0x99180b87, 0x4a180eaf, 0x15200b89, 0x32207d84, 0x20051b47, 0x216e823c, 0x1545280a, 0x200a8205, 0x21038214, 0x7a831e0a, 0x220acf52,
0x84270021, 0x0bb349b9, 0x840bb15a, 0x2b352617, 0x15231502, 0x824f8433, 0x0a256b50, 0x140a0a22, 0x14206084, 0x8308725a, 0x12bf5a09, 0x08836c18,
0x4e0f896b, 0x796b0549, 0x84488409, 0x4eb882bf, 0x276f0753, 0x00212505, 0x17000025, 0x7b058d43, 0x0b420b9b, 0x41981805, 0x35072508, 0x0a501523,
0x5308885d, 0xba4f0680, 0x675d8405, 0xc3410af5, 0x06eb4308, 0x57863320, 0x820d8153, 0x841420e5, 0x182820f7, 0x7a09aa9a, 0x425f0f67, 0x84232010,
0x140a21d3, 0x82057549, 0x1414230c, 0x9a180a1e, 0x332010af, 0x0c3e7218, 0x2320c983, 0x2820a984, 0x5a203884, 0x7c837082, 0xeb7c1e20, 0x6c13200c,
0x874309dd, 0x057f5505, 0x0d7f7a18, 0xe5825020, 0x59500a21, 0x50210887, 0x53431800, 0x23f38219, 0x0a320a50, 0x2b5b0282, 0x0a462507, 0x4646460a,
0x5905ff55, 0x3b4807c7, 0x09654d0d, 0x18371521, 0x200f2398, 0x05f14246, 0xef451e20, 0xb778180f, 0x7d352008, 0x25510809, 0x15332105, 0x0ae59a18,
0x20084a42, 0x20918214, 0x93411832, 0x0677790b, 0xd7703720, 0x0de36908, 0x82144621, 0x821e203a, 0x821e20c7, 0x0a32217f, 0x28203a82, 0x0a20d282,
0x4b0d6b43, 0x6418054f, 0x338308d5, 0x1e233682, 0x491e461e, 0xff240627, 0x005000e2, 0x08d76f18, 0x410f6d42, 0x272305ad, 0x45153335, 0x1e22069b,
0xb6530a0a, 0x05f95305, 0x73820d82, 0x0a0a4625, 0x82141464, 0x4e002002, 0x17230c63, 0x18370000, 0x1808ef94, 0x2009df4d, 0x06a54a35, 0x08098118,
0x0a144625, 0x823c641e, 0x25bb8e57, 0x33000005, 0x41823523, 0x143c4625, 0x6e3c4628, 0x5a200883, 0x076b4218, 0x82069b76, 0x3335214f, 0x07270183,
0x3c331523, 0x8214141e, 0x23a784a4, 0x1e780a64, 0x14219e82, 0x06fb4e1e, 0x8e184182, 0x2f84076f, 0x4e0cd460, 0xba470821, 0x280a2105, 0x03608d82,
0x4ca01805, 0x0ec37f08, 0x9f451b20, 0x08994709, 0x96183320, 0x975309e1, 0x83d98408, 0x4f51824a, 0x8f5907de, 0x0011240b, 0x82190015, 0x844482eb,
0x07da4796, 0x82271521, 0x15372393, 0x89843533, 0x14223982, 0x9c830a32, 0x50823220, 0x08821e20, 0x67323c21, 0x002205af, 0xa218e2ff, 0x23200867,
0x1c60478f, 0x20478208, 0x82519023, 0xd24818da, 0x20568408, 0x22f68314, 0x8514280a, 0x0004245b, 0x84f6ff00, 0x083f575b, 0x41471720, 0x058b4308,
0xa787ac83, 0xaf821720, 0x820a3c21, 0x14142141, 0x0383ad83, 0x220ab25a, 0x841e0a1e, 0x0a282155, 0x0c2f8218, 0xcb50f982, 0x08414a06, 0x33225382,
0x68823507, 0x41501521, 0x28200586, 0x8308da69, 0x21fa82a4, 0x275f1414, 0x00ec2208, 0xbb4f185a, 0x0ab94807, 0x82061342, 0x353327f4, 0x35330733,
0xbc485a23, 0x820a2005, 0x1e0a263c, 0x5a0a0a32, 0x839a8364, 0x5014204e, 0x002007a3, 0x50200082, 0xd77e4d82, 0x05fa4205, 0xa1183520, 0xa218098c,
0x33270dee, 0x07352315, 0x46153335, 0x14200524, 0x03835683, 0x2822a882, 0x0e823c0a, 0x8405d643, 0x226883ae, 0x18282828, 0x6f0c5348, 0x5c180a6b,
0x50820bd2, 0x33217083, 0x05895c50, 0x0a234d82, 0x83281e28, 0x32462158, 0x61850082, 0x0d6f8318, 0x6d05054f, 0x152108f5, 0x824f8223, 0x821720ef,
0x352321fa, 0x23059151, 0x0a3c0a0a, 0x5a225083, 0x1d470a1e, 0x28462305, 0xa318141e, 0x0f250d5b, 0x00001500, 0x08f84e37, 0x2005ee44, 0x24478227,
0x143c3315, 0x833d8246, 0x84142084, 0x0a462195, 0x1805dd41, 0x200c3f48, 0x06574713, 0x55182320, 0x375b0bb5, 0x09ff5208, 0x35205882, 0x1420dd82,
0x05848785, 0x20063b41, 0x20ec8246, 0x89008414, 0x26628209, 0x0a000200, 0x4c00f6ff, 0x0f20052f, 0x4109af48, 0x33230635, 0x82280a46, 0x200382dd,
0x20a48228, 0x83038250, 0xff012433, 0x82e2fff6, 0x00502133, 0x1808f34e, 0x2009ef54, 0x2064821e, 0x24c3821e, 0x643c3c46, 0x223b821e, 0x8500000a,
0x005a222f, 0x0d715550, 0x2109ab7e, 0xd04a0a3c, 0x14142105, 0x33833d82, 0x5a3c3c22, 0x00233783, 0x82320014, 0x00782267, 0x82998a0b, 0x424620e3,
0x32220501, 0x09822828, 0x27885f82, 0x840e7149, 0x832f86c5, 0x140a2662, 0x1e1e320a, 0x0595543c, 0xfb820020, 0x1e00142a, 0x78003c00, 0x0d000900,
0xda416182, 0x33352305, 0x03822715, 0x141e3225, 0x53141e0a, 0x322305a9, 0x8214143c, 0x860220f8, 0x00642267, 0x83918507, 0x05f36830, 0x864f3220,
0x50142505, 0x0a0a321e, 0x5b842a82, 0x2b88bb83, 0x27057e44, 0x33352307, 0x0a0a1446, 0x3222e883, 0x2d820a0a, 0x02222c82, 0x87820a00, 0x8c184620,
0xef440917, 0x86272009, 0x23b9822f, 0x1e141428, 0xbe830682, 0x53568b8c, 0x0611420a, 0x4d463320, 0x14282105, 0x2305d042, 0x14320a3c, 0x08a44b18,
0x32226b83, 0x6b845000, 0x0e318018, 0x6f07ad69, 0x2e6c059d, 0x82462005, 0x1e142539, 0x1e1e1432, 0x01207382, 0xa218a788, 0x71180d9f, 0x1f4d09f1,
0x41142005, 0x28210561, 0x05df5428, 0x00460025, 0x416e003c, 0x33240b63, 0x07153335, 0xa1820382, 0x32140a25, 0x820a5a0a, 0x5ca18300, 0x3c200653,
0x2f859f82, 0x1b001722, 0x87079741, 0x4b372033, 0x41830880, 0x0a141e22, 0x32204183, 0x48880685, 0x17824f82, 0x00231482, 0x821e0001, 0x05e3414d,
0x92180020, 0x50200fcf, 0x09cf9218, 0x07425020, 0x18238206, 0x830dcf92, 0x00142153, 0x6118478e, 0x1e20082c, 0x14224182, 0x6982780a, 0x238b0a20,
0x2009134f, 0x21e68223, 0x88413c33, 0x824a8205, 0x20278328, 0x21938214, 0xd7420032, 0xb1611805, 0x23352108, 0x2006b041, 0x48bb826e, 0xff420567,
0x66132007, 0x975d08db, 0x825a8210, 0x320a2283, 0x8208821e, 0x052357f6, 0x3759378d, 0x053d530c, 0x850a0a21, 0x4114202f, 0x3b8205ec, 0x97851e20,
0x3c003c25, 0x83006e00, 0x4228836f, 0xc4820788, 0x15217882, 0x082e6032, 0x8c185020, 0x378f0975, 0x0ac97c18, 0x22055c4b, 0x84283533, 0x8e0483d0,
0x000a2237, 0x939c1846, 0x42462020, 0x012408bc, 0x50000a00, 0x78212f82, 0x1be34c00, 0x4d426420, 0x83142005, 0x000a2297, 0x0f3f4464, 0x3320ca82,
0x28215284, 0x2029840a, 0x8abf850a, 0x274b1827, 0x46332308, 0xf1821e0a, 0x846e1421, 0x05df41ec, 0x46183220, 0x37270747, 0x32333523, 0x4b321414,
0x3f830683, 0xa7186e20, 0x64200acb, 0x02225782, 0xfb421400, 0x14322119, 0x28205582, 0x8f0cfb42, 0x21aa832f, 0x8e823315, 0x09821720, 0x14232e83,
0x835a0a14, 0x82948207, 0x0100255e, 0xecff1e00, 0x14208f82, 0x17207783, 0x14208f85, 0x17828f85, 0xf6ff4622, 0x40821784, 0x3c3c0a23, 0x9346180a,
0x4328200a, 0x5f93068b, 0x08a49218, 0x081f4718, 0x87003c21, 0x0c79432f, 0x8e85bf86, 0x2f840582, 0x05821e20, 0xf3823c20, 0x0f000724, 0x3f4a0000,
0x35152207, 0x63698433, 0x46200765, 0x8f82f882, 0x82052745, 0x85c182c3, 0x84318833, 0x05457729, 0x1e211f83, 0x431f8300, 0x5a421553, 0x05c34105,
0x49821e20, 0x83004621, 0x11534327, 0xa4847082, 0x2207c344, 0x5807003c, 0x23260861, 0x1414140a, 0xfa82283c, 0x0a224783, 0xc1820a00, 0x1f852820,
0x82231521, 0x0a2322f4, 0x05b6593c, 0x83065342, 0x883c201f, 0x06024a67, 0x25834383, 0xd77d4582, 0x821e2007, 0x84322047, 0x28ff8247, 0x15233523,
0x280a3c0a, 0x05e8441e, 0x65820120, 0x20167342, 0x424a8328, 0x64200b73, 0x7820d782, 0x23075b42, 0x64141432, 0x2105ef7d, 0xdb425a00, 0x820f2006,
0x09304ec9, 0x23271524, 0xa2183315, 0x5a210882, 0x2000840a, 0x072f4214, 0x3382e220, 0x93830020, 0x8c501720, 0x83152005, 0x631e206d, 0x93850555,
0x43005021, 0xc14b085f, 0x33352309, 0x25820a50, 0xb17c0383, 0x88022009, 0x06ef41c3, 0x20052644, 0x057d4137, 0x0a0a2323, 0x05a65214, 0x20064043,
0x2483850a, 0x001e000a, 0x82858250, 0x443720c4, 0x8c8208cd, 0x4b013b21, 0x90820599, 0xb5846682, 0x83281e21, 0x84cb8206, 0x010024be, 0x44001400,
0xab180a9f, 0xf8460ac4, 0x443c2006, 0x3484099f, 0x00220484, 0x37820200, 0x71821e20, 0x57186420, 0xbb7f08af, 0x85232009, 0x21898274, 0x6c821e33,
0x0582b182, 0x21051c53, 0x0082280a, 0x00211384, 0x207b8400, 0x08234632, 0x82087161, 0x0a1e2661, 0x0a323c28, 0x0aaf483c, 0x00206783, 0x6e080963,
0x28240aad, 0x280a0a14, 0x96415c84, 0x905d8206, 0x085b4637, 0x21088e48, 0xcd893233, 0xa1826420, 0x63421420, 0x8228200a, 0x05af45d7, 0x5011766f,
0x46200b33, 0x5208015d, 0x5a2509d3, 0x00000500, 0x276f8237, 0x3c0a2335, 0x5a5a2814, 0x0c13a618, 0x82071f43, 0x280a2757, 0x46281414, 0xa3185a14,
0x1f8f0c7f, 0x5a283222, 0x8f0c8f50, 0x3c1e221f, 0xa34d185a, 0x207b840c, 0x257d8235, 0x3c14280a, 0xa718500a, 0x46200a3f, 0x9b4e9783, 0x0947560e,
0x4e000721, 0x152206b7, 0x96821e23, 0x58502820, 0x201f8205, 0x05db42ff, 0x00000f24, 0x3367013b, 0x41618209, 0x0a20063f, 0x08c78e18, 0x00000022,
0x0f63b018, 0x21067541, 0x00823c0a, 0x09a78d18, 0x50000a22, 0x78200182, 0x4205af7a, 0x232106ad, 0x0d491835, 0x0a28220a, 0x06bd4b14, 0x2205d076,
0x570a1e14, 0x8f84081f, 0x09450a20, 0xc5461809, 0x05cf4109, 0x8f820a20, 0x20063e45, 0x08e35200, 0x54182f84, 0xa31807cf, 0xf082109f, 0x94183184,
0x142509cf, 0x00001300, 0x1cab4717, 0x4209aa47, 0x9782056b, 0x85003c21, 0x1cab4737, 0x635e378c, 0x00002207, 0x20d1830b, 0x176f4417, 0x3343ff83,
0x05774307, 0x21053769, 0x1f6a000d, 0x0ecf4606, 0xcf463220, 0x0004220a, 0x061b4400, 0x0d000922, 0x2205bb60, 0x4e33013d, 0x17230629, 0x8d153335,
0x08cf6f0d, 0x0a141422, 0xbf464688, 0x4a4f920b, 0x27200d3d, 0x200cd146, 0x05914746, 0x28224184, 0x5e82320a, 0x44510a20, 0x22088308, 0x50000100,
0x0020050b, 0x00229b82, 0xcf412317, 0x44152005, 0x0d4f08c3, 0x0b9f1805, 0x08c7540c, 0x00224c82, 0xdd820200, 0x3c001e24, 0xac186400, 0x3c210d63,
0x2000821e, 0x08d75d50, 0x32001422, 0x9b432382, 0x23152708, 0x14142814, 0x9f490a5a, 0x291b8906, 0x35233523, 0x14143c33, 0xcf533228, 0x00142605,
0x003c0000, 0x06d34328, 0x37823320, 0x28201b82, 0x93541b90, 0x823c2005, 0x42528353, 0x5a200677, 0x07203b82, 0x49053743, 0x5023051f, 0x181e2814,
0x21085b9c, 0x1f8300e2, 0xfb680520, 0x15332605, 0x1414505a, 0x0787720a, 0x5000e222, 0x82064b42, 0x0c2e4a71, 0x60580f82, 0x18282008, 0x31086998,
0x00000a0a, 0x00baff01, 0x00f6ff50, 0x000f006e, 0x88182700, 0x0a210e85, 0x06744114, 0x091d4118, 0xb0ff0122, 0x00206582, 0x17232f82, 0x41350000,
0x33461677, 0x0a1e2106, 0x5d450082, 0x057c4105, 0x6f87d982, 0x03005a22, 0x97826f82, 0x5f4e4620, 0x20578206, 0x201f826e, 0x82178378, 0x503323bb,
0x9e826e50, 0x64229f88, 0x2f820b00, 0x220a5d4f, 0x83280a0a, 0x835e859e, 0x82ce20c7, 0x00e222c7, 0x2a578464, 0x1e333523, 0x14501414, 0x86020000,
0x06e741df, 0x3321e182, 0x821d8207, 0x8328203a, 0x054b4e20, 0x82c4ff21, 0x00ec223b, 0x054f4378, 0x51462720, 0x23152708, 0x15333527, 0x324c0a32,
0x05ef4905, 0xca821420, 0x5787a782, 0x33866e20, 0x0a7b7818, 0x23350723, 0x849d8315, 0x085c46a0, 0x3b413384, 0x00092207, 0x42cd8513, 0x172005f4,
0x21079c4b, 0x6b832833, 0x22057c69, 0x840a641e, 0x06c34478, 0x180da741, 0x850de342, 0x14142228, 0x624c1814, 0x01002208, 0x050f41ff, 0x41006e21,
0x32240667, 0x1e6e1414, 0x83090f41, 0x41072017, 0x37270581, 0x46231533, 0x83281414, 0x821e2020, 0x0a334122, 0x15420720, 0x0bbf7a07, 0x31590a20,
0x09164208, 0x2008a741, 0x4b318478, 0x232008b6, 0x15223883, 0x91492814, 0x050c4105, 0x4105db49, 0x0b200897, 0x210b7742, 0x29833315, 0x0a280a22,
0xd7415a85, 0x00ec2407, 0x84090078, 0x05cf4827, 0x1e143322, 0x0a218582, 0x06334e50, 0x2387eb84, 0x22083358, 0x820a0a32, 0x0a5a2125, 0x47912b82,
0x23229883, 0x8b823315, 0x50244382, 0x0a141e0a, 0xf6262383, 0x14004600, 0x6b846e00, 0x0a204788, 0x50204784, 0xff2a4788, 0xffecffe2, 0x000700f6,
0xb7490700, 0x05f24209, 0xc4204383, 0xe2201f82, 0xad851f86, 0x533c2321, 0x6f4305c7, 0x82ce2005, 0x00ec211f, 0x02823c82, 0x20843520, 0x14323523,
0x8221820a, 0x8aa78442, 0x4115201f, 0x2820053f, 0x14201e82, 0x4305e059, 0x052009af, 0x2805bd41, 0x3c462335, 0x1e6e2814, 0x2b3b8314, 0x003200ec,
0x0050000a, 0x35000007, 0x24055a42, 0x140a1415, 0x074f5c3c, 0x82baff21, 0x82d8205b, 0x830b207b, 0x09605d7b, 0x2005904b, 0x0564461e, 0xe387c387,
0x8405304c, 0x4f2820c3, 0xff20065b, 0x1f87e383, 0x49068a42, 0x428205ad, 0x67873f88, 0x22056153, 0x87233523, 0x836789e7, 0x41f6208f, 0x974b062b,
0x4b462006, 0xff210a97, 0x20af82ce, 0x824782f6, 0x870720cf, 0x057747cf, 0xef841420, 0xe2ffe222, 0xcc821d82, 0x23000022, 0x35226684, 0x70531e23,
0x20178206, 0x203f8401, 0x057b4de2, 0x0f5f0720, 0x05134406, 0x17845783, 0x3c820720, 0x27201982, 0x58820382, 0x82142821, 0x0613443d, 0xc3849b84,
0x23820f20, 0x7417df43, 0x6f880881, 0x0a00ec24, 0x31820900, 0x820e8742, 0x0a1e2158, 0x4c0f1b41, 0x298405af, 0x8605e668, 0x2027834e, 0x42db89d8,
0x1e230767, 0x4c14140a, 0xdb85071f, 0x03207582, 0x2321fb84, 0x841a8232, 0x14534183, 0xb8441c82, 0xff012105, 0x00241f82, 0x00f6ff00, 0x4718d583,
0xc8420895, 0x58282005, 0xd38805e4, 0xf620af88, 0x0b202f82, 0x25090541, 0x33353315, 0x89820a0a, 0x0a208f82, 0x2106374b, 0x5341c4ff, 0x42278706,
0xa94c0637, 0x83538506, 0x909f87d7, 0x0524444f, 0x278f4f88, 0x61184f87, 0x4f4309d7, 0x42cf8a05, 0x2842058a, 0x842f8206, 0x858082a2, 0x05f34c7c,
0xec21ff82, 0x20cf83ff, 0x05f94103, 0x8f4f4620, 0xff012905, 0x00e2ffb0, 0x00ecff00, 0x50231786, 0x82145050, 0x850220ff, 0x00002117, 0x21052748,
0x5d833307, 0x82231521, 0x5b1f831d, 0x3b820547, 0x82140021, 0x00322521, 0x27000017, 0x20158a48, 0x0b134715, 0x85056943, 0x28388295, 0x00baff01,
0x00f6ff1e, 0x27638228, 0x35232700, 0x3c3c0a33, 0x22052b42, 0x821e00b0, 0x47178457, 0x70840513, 0x2f820720, 0x00211682, 0x76938446, 0x27240a93,
0x012b1533, 0x82061566, 0x200b88a9, 0x21138237, 0x05580a3c, 0x057b4c05, 0x7206d146, 0x0a2005ff, 0x6f859b82, 0xf6ffba22, 0x5a228782, 0xc7841300,
0x590a197b, 0x2e8205ad, 0x14223e85, 0x00881446, 0x8206ab42, 0x00002537, 0x0700000b, 0x2105b244, 0x07821523, 0xd5721e20, 0x06174408, 0x26109b42,
0x141e1533, 0x4e14143c, 0x022105f3, 0x071b45ff, 0x07000322, 0x2605d542, 0x23353337, 0x821e1e32, 0x05de5e3e, 0xff020022, 0xc5444389, 0x4a152007,
0x3220058d, 0x49189283, 0x00210a7e, 0x0cd74703, 0x2320d383, 0x8205e742, 0x67232030, 0x1e20073d, 0x20077b45, 0x203a820a, 0x230c855a, 0x000a280a,
0x01200082, 0x00213f8a, 0xfd611827, 0x45232009, 0x1420052f, 0x00202d85, 0xd7479382, 0x83b78407, 0x33352159, 0x20062342, 0x8556825a, 0x00b0264b,
0x00ceff64, 0x82d98378, 0x271f8221, 0x14502335, 0x780a140a, 0x22061b41, 0x826400e2, 0x831f8628, 0x2315213f, 0x2108f152, 0x77490000, 0x48ce2041,
0x092006e3, 0x25057948, 0x23353335, 0x80833335, 0x22062d4d, 0x49030000, 0x782006db, 0x20065742, 0x072d4900, 0x4f491720, 0x141e2805, 0x14143c14,
0x61282850, 0xaf4107ff, 0x00072308, 0x5b410700, 0x83142006, 0x054c7652, 0x2007ab46, 0x45f38464, 0x50200adf, 0x41058b44, 0x5b4306cb, 0x3c46210f,
0x14200082, 0x8e063741, 0x45232023, 0x1e220cab, 0x3c821e1e, 0x46010021, 0x0523088f, 0x82070000, 0x23352221, 0x20a3823c, 0x05bf430a, 0x5000ba22,
0x78202482, 0x41056f50, 0x15200579, 0xb718ab82, 0x1523098d, 0x44233533, 0x0a2005a5, 0x1e233282, 0x4d780a0a, 0x17410c6d, 0x84462005, 0x00172443,
0x431f001b, 0x5d8219e3, 0x7f832320, 0x820eeb43, 0x0b054b52, 0x881e1421, 0x053742db, 0x0f007822, 0x82185583, 0x27200f31, 0x0e6b9b18, 0x083b8218,
0x5b4a0887, 0x0b737408, 0x2008af44, 0x0db54613, 0x51333521, 0xf65c055d, 0xd2991806, 0x0997460d, 0x0b000a22, 0x15203782, 0x1809c050, 0x4209e25e,
0x002005a7, 0x2005c357, 0x2027836e, 0x0aeb4337, 0xeb432820, 0x08c75505, 0x82089349, 0x0513454f, 0x82823320, 0x4c152321, 0x7e570551, 0x06fb4405,
0xf6ff5022, 0x8205e752, 0x0cb46b27, 0x2205354a, 0x466e280a, 0x03200967, 0x2205ff43, 0x44000000, 0xef4105f7, 0x84352006, 0x44072089, 0x1e2006fb,
0x20059c44, 0x5ac51828, 0x43ba8208, 0x63440887, 0x42978207, 0x8449052b, 0x06ab4405, 0x8b09a746, 0x41e79127, 0x00210572, 0x091f4600, 0x1b000f25,
0x70070000, 0x5f4208bd, 0x8a272005, 0xdc6d1839, 0x062a4108, 0x8707aa44, 0x06b34b4a, 0x7800ec22, 0x2008eb4c, 0x20d78533, 0x0eb35814, 0x2105c347,
0x71831400, 0x6108ec76, 0x70180779, 0x0a490ab1, 0x18142005, 0x42087c41, 0x0a290ad7, 0x03000000, 0xe2ffb0ff, 0x20098300, 0x05e14f13, 0xd35c1520,
0x48352008, 0x33260519, 0x23272315, 0x03833315, 0x820a1e21, 0x820484af, 0x059e7045, 0xff4b4e8a, 0x07ff5205, 0x3145f586, 0x2335240a, 0x45140a3c,
0x502005e9, 0x4e08a54c, 0x3782087f, 0x22090f4e, 0x825a8c8c, 0x82012092, 0x00ec22e3, 0x09bb4946, 0x8c8c4622, 0x50222f89, 0xfb836e00, 0x4705d556,
0x35200d70, 0x1520b982, 0x3c207982, 0x2821f582, 0x21008214, 0x0683140a, 0xa5186e20, 0x00200c9a, 0x5b48af8e, 0x21ed8205, 0xbd612335, 0x143c2207,
0x84418250, 0x05d342b2, 0x2a07e748, 0x00e2ffb0, 0x00000050, 0x5100000b, 0x3c200b79, 0xf8439f83, 0x45bf8406, 0x0723076f, 0x83270000, 0x05c94659,
0x78141423, 0x056b4c28, 0x54481f8b, 0x14152605, 0x5a141e1e, 0x241f840a, 0x00d8ff02, 0x24698250, 0x00040078, 0x24418208, 0x011d3335, 0x20db8227,
0x82868228, 0x21688398, 0x63430200, 0x84032008, 0x5f232023, 0x468405ff, 0x500a0a24, 0x68821e28, 0x2205074e, 0x847800ec, 0x82408221, 0x011d2224,
0x253f821e, 0x28281e5a, 0xc882140a, 0x200a7742, 0x8d698207, 0x8921838b, 0x00052267, 0x20218209, 0x26468333, 0x15233537, 0x820a1432, 0x0a6e2163,
0x48829483, 0x0a206b89, 0x68822582, 0x20050343, 0x201e8215, 0x4d8f8314, 0x00210565, 0x05574700, 0xe742f620, 0x42332006, 0x15230775, 0x82323c23,
0x0a0a23dd, 0x85752878, 0x204f8905, 0x834f8205, 0x32152774, 0x2850141e, 0xcf4d1e0a, 0x4e0d200b, 0x37540817, 0x836e8206, 0x07664246, 0x03000022,
0x200a2741, 0x055b4307, 0x07333526, 0x011d3335, 0x2305cb59, 0x5a0a0a1e, 0x35827183, 0x5f442b8a, 0x2d431806, 0x08334807, 0x5853d782, 0x820a2008,
0x84642009, 0x1414226c, 0x0533481e, 0x210de35c, 0xdd822315, 0x33353323, 0x8224843c, 0x1414212a, 0x24072f54, 0x00000032, 0x53801807, 0x32332308,
0x254e140a, 0x281f8305, 0x00e2ff1e, 0x00f6ff3c, 0x821f8305, 0x3c3323a4, 0x3d41141e, 0x00022505, 0x00ecff1e, 0x1808c753, 0x200d0b5e, 0x2041823c,
0x84c9820a, 0x821e206c, 0x214b8469, 0xb3585000, 0x2850240e, 0x82030000, 0x054f557d, 0x0ecb9618, 0xdf821720, 0xcd823220, 0x830eeb47, 0x0000212f,
0x0a737318, 0x0f439418, 0x23350723, 0x05215f15, 0x081e9118, 0x58180a20, 0x9382085f, 0x001e3222, 0x82095f5a, 0x8237204d, 0x1e3c2367, 0xa582321e,
0x8b820120, 0x50000022, 0x83050346, 0x44f18357, 0x152305d7, 0x823c5033, 0x1e282789, 0x1e5a281e, 0x01820a1e, 0x2f902b82, 0xd7491520, 0x33352208,
0x05fb4550, 0x28141422, 0x28203183, 0x7118ea82, 0xdf5108c3, 0x0b757106, 0x2822b184, 0x02820a0a, 0x0a26f482, 0x460a0a46, 0x62821e50, 0x83030021,
0x42938404, 0x99180607, 0x39830f7b, 0x40185020, 0x3f8513e3, 0x1320a389, 0x72087f74, 0x15210817, 0x22a78233, 0x82140a0a, 0x24ad8302, 0x28280a32,
0x82e2830a, 0x223789ac, 0x8500001b, 0x09aa62a9, 0x2409bd4a, 0x1e503315, 0x8301830a, 0x0a322642, 0x3c140a0a, 0x264e823c, 0x1e1e0a3c, 0x820a3c0a,
0x820420bb, 0x05534103, 0x08c75918, 0x83097b64, 0x24bf837f, 0x33352317, 0x20038207, 0x05db4550, 0x411e1421, 0x508207f7, 0x47823220, 0x28283c22,
0x0b2b7518, 0x83054f7f, 0xb9751895, 0x1807200c, 0x833887c0, 0x10636839, 0x8c825a20, 0x6b181e20, 0xbe1808f7, 0xc1840cd7, 0x28463327, 0x50503c14,
0x09a76e5a, 0x09db7018, 0x20057146, 0x057b6833, 0x413c4621, 0x46200662, 0x5174ce82, 0x43bd1805, 0x1992180e, 0x1846200b, 0x181763c0, 0x182753b6,
0x83157f67, 0xc947189b, 0x06394d0c, 0x5a282824, 0xe7732828, 0x1667420c, 0x20051f41, 0x06ee5428, 0xca821420, 0x0c176d18, 0x18000121, 0x182f87c0,
0x20280fba, 0x5fc01814, 0x1b7b6d15, 0xc37d4620, 0x0c2f6505, 0x250c7b6d, 0x33153315, 0xb0582317, 0x0a322305, 0xe178140a, 0x1e1e2707, 0x0a145a3c,
0x8b7d3c3c, 0x1e0b7311, 0x08d85418, 0x220c4b41, 0x6d0f0007, 0x15210bf1, 0x05cf4823, 0x07822720, 0x14144625, 0x823c3c14, 0x280a2304, 0x81824628,
0x2106c44d, 0x03760002, 0x064b4205, 0x6b0fed43, 0x44180881, 0x6f8208ca, 0x21099b42, 0xe3410007, 0x225f8408, 0x415a5050, 0x2f750803, 0xd3c01805,
0x424f8923, 0x6c180973, 0x8f8c2b9f, 0xc018c187, 0xb361143f, 0x5fbf181b, 0x07034509, 0x73005a21, 0x142025a3, 0x2005d044, 0x2241820a, 0x820a1e0a,
0x2004850d, 0x1800821e, 0x8308534e, 0x0019224b, 0x052f411f, 0x089c4418, 0x84153321, 0x053d4b01, 0x2005d549, 0x81b21846, 0x834d820d, 0x27558353,
0x1e1e0a14, 0x0a14320a, 0x0e8b7218, 0x0ef75918, 0x20056345, 0x07fc4a14, 0x34842820, 0x00823220, 0x20096b75, 0x5b6b185a, 0x0a634509, 0x4505274d,
0x5d45095f, 0x055b450b, 0x10ff4618, 0x200b5146, 0x06534537, 0x09a15118, 0x0cafa918, 0x10b34918, 0x420bc34a, 0x152505a5, 0x15332723, 0x08975c23,
0x82141421, 0x285a2340, 0x0283280a, 0x0cf78d18, 0xb54b7820, 0x0e657e05, 0x23204482, 0x2720ce84, 0x2506c947, 0x0a1e0a0a, 0x5c480a14, 0x32322305,
0x02820a0a, 0x46200484, 0x0b635e18, 0x3f7a7820, 0x0bc36d09, 0x294f1520, 0x07314606, 0x280a4622, 0x0852b518, 0x00841420, 0x8308a85f, 0x3c0a2160,
0xff255386, 0x004600e2, 0x05db6278, 0x2007415d, 0x05477915, 0x32213582, 0x2504820a, 0x463c5a1e, 0x838d140a, 0x937d0d20, 0x05f74208, 0x85353321,
0x099f4633, 0x46089946, 0x60180ce3, 0xf54208fb, 0x82af8207, 0x187185fd, 0x6e0d7b62, 0x3c2208c1, 0x4c821414, 0x323c3c23, 0x2085820a, 0x1fa91828,
0x00002107, 0x4115d376, 0x32230855, 0x411e1414, 0x4e410851, 0x09375e0b, 0x0f735a20, 0x41332008, 0x537d054b, 0x8276830d, 0x8228207b, 0x2402827d,
0x6e1e0a1e, 0x8950836e, 0x0046213f, 0x241b9f43, 0x28280a14, 0x0ac7420a, 0x85004621, 0x084c436f, 0x78702320, 0x8232200c, 0x1e3c216e, 0x28200482,
0x3220f982, 0x06827385, 0xbd183220, 0xf1440fbb, 0x0da16608, 0x160b7718, 0x220f4f7e, 0x8300e2ff, 0x181d2087, 0x180f9f94, 0x840a5f6d, 0x51462096,
0xef820561, 0x97428382, 0x0a1e2107, 0x0b711585, 0x1809200d, 0x22086573, 0x18331533, 0x604c4b74, 0xaf7b09bf, 0x2837472b, 0x90180a20, 0x76180b27,
0x334b0ccf, 0x4564180a, 0x23d98308, 0x140a0a0a, 0x28210382, 0x06025728, 0x0a4f6a18, 0x36a7b518, 0x46214182, 0x1f474200, 0x4205b374, 0x5a210977,
0x0fbf4100, 0x18050b42, 0x21081b6f, 0xbf413315, 0x1e282108, 0x5744b182, 0x141e2106, 0x1809bf5a, 0x6233c3c1, 0x03630c4f, 0x65152005, 0x462105e7,
0x068f7846, 0x82e2ff21, 0x004621cd, 0x08f77c18, 0x088bcb18, 0x15233524, 0xbf780a46, 0x0a0a2306, 0x7c185a1e, 0x836207c3, 0x60462007, 0xcd7f081f,
0x7415200a, 0xcd870651, 0xca863f82, 0xdd442820, 0x09776e05, 0x5b18738d, 0x857408ab, 0x1e3c2405, 0x82323c14, 0x180a2071, 0x210dfbc3, 0xc7180046,
0x3c210fbf, 0x0dfb7d3c, 0x8228ef76, 0x0d8f44f7, 0x2009b862, 0x05b45035, 0x7a614620, 0x05814105, 0x0a323226, 0x3c0a1e1e, 0xd7419484, 0x00462609,
0x3700001b, 0x13b41823, 0x4535200d, 0x15220861, 0x43843c23, 0x24057047, 0x1e0a1414, 0x076e650a, 0x00821e20, 0x21099f76, 0x7318005a, 0x3f8a0a07,
0x523c3321, 0x46200961, 0x2205824c, 0x7c50503c, 0x69180d5b, 0x23200d73, 0x45094f5e, 0xfa6a0558, 0x70282008, 0x282508ff, 0x0a0a3228, 0x090f7f3c,
0x00820020, 0x18004621, 0x4c08a750, 0x6f7f15cd, 0x14322307, 0xc9822814, 0x3e820a20, 0x3c0a3c22, 0x4706af56, 0x6420077b, 0x08174c18, 0x0cad4218,
0x0a2da818, 0x0a280a22, 0x86053848, 0x3c3c2145, 0x45828b82, 0x092f5118, 0x18054b4e, 0x8225fb4e, 0x3232243b, 0x82284632, 0x574618c0, 0x18782008,
0x18092b4e, 0x2008d78b, 0x05af4633, 0x46053777, 0xa14605a7, 0x853c8209, 0x05274fbf, 0x0a69d518, 0x37823520, 0x0bad5618, 0x23055141, 0x33352337,
0x820f5541, 0x415082c1, 0x938d0a58, 0x43185a20, 0x46252d6f, 0x0a1e0a0a, 0x1802821e, 0x7f09e7cc, 0xa84e07f7, 0x0562410a, 0x15208c82, 0x0983a685,
0xdc823220, 0x1e208882, 0x2105f644, 0x49820a0a, 0x32230e82, 0x82280a0a, 0x071b7a02, 0xc218f082, 0xf1600beb, 0xd1421808, 0x1850200a, 0x2a08a756,
0x50140a14, 0x28281414, 0x5a0a1414, 0x474f054b, 0x8237200c, 0x433f8c84, 0x3321050b, 0x05874f35, 0x38828d84, 0x45870782, 0x47872820, 0x57090750,
0x4b9006fb, 0x4782d683, 0x8c074f4f, 0x05864293, 0x9d82998b, 0x0a679c18, 0x64005022, 0x49265b4b, 0x0a2006c1, 0x8713ff7e, 0x004622eb, 0x73481817,
0x097a560b, 0x3c210983, 0x2042831e, 0x138b7f46, 0x67443f82, 0x00232406, 0x82351700, 0x090655cc, 0x7c07c941, 0x232308ba, 0x56152315, 0xbe4105c9,
0x21068206, 0x04820a0a, 0x08bad918, 0x7318e282, 0x0a200777, 0x08ab5718, 0x5808356f, 0x15240585, 0x37233523, 0x240a1b6b, 0x14141e0a, 0x259c820a,
0x1e1e0a46, 0xff764650, 0x05c34608, 0x32233ba3, 0x82320a0a, 0x183c203b, 0x210bfb45, 0x3174005a, 0x7eb28206, 0x33200b53, 0x2b227d82, 0x2f701501,
0x57b68205, 0x1e22098f, 0x3f423c0a, 0x41bb8508, 0x52490553, 0x0c454609, 0x42883c20, 0x0a141e23, 0x55468632, 0xd018050c, 0x431826a3, 0x3720094f,
0x21066547, 0xd0183335, 0x462108c7, 0xe7d21878, 0x05b8460f, 0x96183520, 0xd683099c, 0x4a189282, 0xad6408e4, 0x05cb4205, 0x0482c984, 0x09f34518,
0x08fc4518, 0x1821578b, 0xbf801800, 0x8535200e, 0x013b2554, 0x0a282315, 0x8205bb55, 0x243b8205, 0x0a140a3c, 0x185b8214, 0x2b078f48, 0x000a0005,
0x00500000, 0x0021005a, 0x08ddbc18, 0xf34a3720, 0x18058605, 0x210a824e, 0xa8843533, 0x37231522, 0x3520e982, 0x17200382, 0x07200f82, 0x4e820382,
0x584ca582, 0x208f1805, 0x2071820b, 0x0750570a, 0x320a0a22, 0x7c820e83, 0x28841e20, 0x79831420, 0x07c36a18, 0x0897b018, 0xbf185183, 0x8184082d,
0x82080a4b, 0x1507220d, 0x05fd7033, 0x14204582, 0x08217818, 0x6a840984, 0x44460a21, 0x87670588, 0x23d78306, 0x17000017, 0x0cb57918, 0x0d821520,
0x23266182, 0x0a0a2315, 0x38442828, 0x1e142205, 0x21518214, 0x0083500a, 0x7b0a7821, 0xb74708cf, 0x203fa806, 0x2000833c, 0x09d37a64, 0x12247f83,
0x23370000, 0x35247387, 0x35333523, 0x75059541, 0x7582050c, 0x281e5026, 0x1e0a285a, 0x0f8fd518, 0x37820f20, 0x22072948, 0x83153335, 0x14462342,
0xaf820a1e, 0x845a1421, 0x1e0a212f, 0x20056b54, 0x054f79ff, 0xe7821f20, 0x180e6d5c, 0x220df9b7, 0x83462315, 0x82038265, 0x83142044, 0x20fb844a,
0x2300820a, 0x5a3c0a3c, 0x42188982, 0x0f420837, 0x37002307, 0x40183533, 0x9b610af1, 0x836d840e, 0xfa4918db, 0x97e01808, 0x20a78208, 0x08a74c3c,
0x32200883, 0x20054e5e, 0x09534300, 0xdf822420, 0x2320d683, 0xd818a582, 0x35231add, 0x420a1432, 0x6f4d05ba, 0x5c142008, 0x0a2006cf, 0x08fb7218,
0x470a1421, 0x5a240b97, 0x23001f00, 0x0bdf4c18, 0x0382b783, 0x41186582, 0x23240ac7, 0x23353337, 0x5c8ff482, 0x823c1421, 0x077d4314, 0x08306718,
0x23094751, 0x0020001c, 0x7f4abb83, 0x23152206, 0x21578235, 0xc684013d, 0xcf491520, 0x07232105, 0x27205a82, 0x4620dc82, 0x49055c41, 0x2826079a,
0x0a1e1414, 0xb782500a, 0x58181e20, 0x3c2409f6, 0x000a3214, 0x2108ab56, 0x5f940046, 0xaa493120, 0x9d15200b, 0x0a3c215f, 0x07e45c18, 0x0a210882,
0x05d45828, 0xe7430220, 0x00192208, 0x0979411f, 0x115e5218, 0x3325ba82, 0x143c2335, 0x05a4430a, 0x4b822820, 0xac820a20, 0x185a1e21, 0x45082b8b,
0x1b5305e2, 0x00502608, 0x00130050, 0x43538217, 0x431808a8, 0x4d82098a, 0x821e2321, 0x214682f3, 0x8b821428, 0x9c821420, 0x32200e82, 0x82051242,
0x09574143, 0x8a180f20, 0x3e8408d1, 0x35234c85, 0x41150723, 0x3b240559, 0x32231501, 0x8206ad50, 0x0a0a21d2, 0x3c214382, 0x08826e0a, 0x24097343,
0x005a0046, 0x828d820d, 0x195118c5, 0x14232108, 0x3c822982, 0x35821e20, 0x3c213282, 0x08775200, 0x5c05574b, 0x2e470c35, 0x0a46210d, 0x0972a918,
0xba820a20, 0x0f820a20, 0x82141421, 0x054145cf, 0x092b4c18, 0xbf821320, 0x460c4d5c, 0x3d210670, 0x08234701, 0x841e1e21, 0x460a2186, 0x0a25bd84,
0x32500a0a, 0x08474100, 0x600a2747, 0x43590bd7, 0x1e3c2205, 0x8272821e, 0x0a0a2302, 0x3d85323c, 0x8505ab5a, 0x05036d7f, 0x1369f583, 0x05294705,
0x823c3321, 0x1e2821eb, 0x0c53d018, 0x20057f4a, 0x6f401846, 0x6b48181a, 0x0cab5610, 0xb1826f82, 0xef84ab83, 0x4106f146, 0xfc42053f, 0x82bd8306,
0x22b18aaf, 0x8e140a14, 0x41438db3, 0x6b5009a7, 0x23352205, 0x43c18215, 0x2820059b, 0x8205d55b, 0x820a20f4, 0x20498203, 0x0eeb4332, 0x180c4f4e,
0x1809138b, 0x41122bb9, 0xfb87052b, 0xd0180020, 0x52180909, 0x1420080d, 0x18059a67, 0x180a4bb0, 0x180ebfd9, 0x410d4767, 0x5021109b, 0x05084b46,
0xeb44a385, 0x00502105, 0x2005734d, 0x83d58523, 0x82ef84a1, 0x82d0830f, 0x140a22e5, 0xaf781814, 0x06137208, 0x084ba918, 0x379ca582, 0x460a1e24,
0x00820a64, 0x1b7a4620, 0x00002306, 0xbf180046, 0xa1850a07, 0x60181520, 0xc018082f, 0x0f551843, 0x183d8714, 0x4f1ebbbf, 0xe78605a7, 0x7b181720,
0x33200b29, 0x33244184, 0x141e0a50, 0xf16be383, 0x503c2106, 0x4105875f, 0x7823075b, 0x18000500, 0x20085d4b, 0x2d3f8527, 0x14284633, 0x140a0a3c,
0x5050140a, 0xd218145a, 0x17200fcf, 0x0d695d18, 0x570be154, 0x1e2008e5, 0x2005d247, 0x82448246, 0x731e2077, 0xaf180c2b, 0x97180a11, 0x28201def,
0x18076144, 0x591df3d7, 0x634125bf, 0x43352014, 0x332005b1, 0x471e7356, 0x0b200937, 0x5218fb89, 0x14210727, 0x83da1814, 0x8200200a, 0x18502000,
0x2008037d, 0x895c1823, 0x50332008, 0x3324083b, 0x0a0a1e46, 0x4208f946, 0x282005b3, 0x0c4fbc18, 0x15203f83, 0x090f5218, 0x097f8918, 0x50224383,
0x1a580a0a, 0x82428205, 0x280a2635, 0x28285a28, 0x0b481828, 0x5a3b8308, 0x8018095f, 0x502008c5, 0x20070142, 0x07fe413c, 0x2406474f, 0x00780050,
0x0b76181d, 0x09b14807, 0x20087748, 0x18b78423, 0x2008096d, 0x434d1850, 0x21c7830c, 0x01830a14, 0xef4d8482, 0x140a2205, 0x4f961864, 0x6b6f180c,
0xe380180c, 0x605f8509, 0x558b0719, 0x32204d83, 0x5a22e282, 0x59820a28, 0x46204b8c, 0x1522ab82, 0x93182100, 0x346f190f, 0x46332108, 0xc76c3882,
0x14142405, 0x820a280a, 0x822820fd, 0x2314829f, 0x3232320a, 0x20084a71, 0xc7641800, 0x000b2309, 0xcb503300, 0x07811809, 0x505a2209, 0x0c875a50,
0x6f180f20, 0xde180beb, 0x175b2447, 0x73901813, 0x5cab8217, 0x46181ad3, 0xf35d1b57, 0xa743182b, 0x000d2207, 0x075d1811, 0x8235200b, 0x823720ff,
0x0a0a3304, 0x28140a32, 0x0a143214, 0x14500a46, 0x46140a0a, 0xab5b0046, 0x180b200c, 0x431e5bde, 0x23200703, 0x50185d83, 0x8d440944, 0x45152005,
0x5f180589, 0x41420aa1, 0x420a2005, 0x0882074c, 0x69485a20, 0x20058205, 0x8200821e, 0x57de1806, 0x1009530d, 0x0c9b4518, 0x12735518, 0x18141421,
0x201447e3, 0x82c78413, 0x05a54389, 0x2105f174, 0x8d423335, 0x0888420a, 0x42080342, 0x7a1805cf, 0x398d08cf, 0x41422720, 0x97a3180a, 0x0a28210c,
0x4c88c482, 0x440c7f42, 0x1d20062f, 0x5d09cf5b, 0x5518076b, 0x33210833, 0x43018215, 0x0a220f79, 0x74430a14, 0x2045820a, 0x21038201, 0x7f490000,
0x05275706, 0x09c14d18, 0x44050348, 0xcb8a056c, 0x4b185a20, 0x5b5e0dd7, 0x05c7472a, 0x421b975f, 0xcc1813f7, 0x0f5e0a59, 0x0e67546e, 0x18231521,
0x2110174a, 0xe1180a0a, 0x075e0983, 0x6bd71829, 0x0781441c, 0x4c0a7b44, 0x135e096b, 0x82282038, 0x280a21a9, 0x135e0083, 0xff0a2656, 0x005000f6,
0x5b56185a, 0x43332008, 0x502205c3, 0xea463214, 0x505a2205, 0x0c5b7b50, 0x4d050f44, 0x56180882, 0xdc180783, 0x4f860cd7, 0x35233322, 0x35244d86,
0x14465033, 0x1420c982, 0x4e824d83, 0x00010022, 0x0d227787, 0x278b0000, 0x3c231523, 0x85298432, 0x1864202a, 0x180c835d, 0x4a0e3bac, 0x3225074b,
0x0a1e1e0a, 0x21358214, 0x5b471446, 0x09834d07, 0x1809235d, 0x2608714a, 0x15233527, 0x82280a3c, 0x23e28631, 0x5a320a28, 0xfb454382, 0xc7dd180c,
0x0dc3471d, 0x5707535c, 0x5c180c1f, 0x1e210f23, 0x2170821e, 0x00820a28, 0x2008a144, 0x53501800, 0x051f4208, 0x91180020, 0x9f440941, 0x33152105,
0x2205516a, 0x840a1e46, 0x820682e0, 0x1e0a243f, 0x82285a28, 0x4546200a, 0x374b05ab, 0x0a0d440e, 0x20087f59, 0x06674f46, 0x14143222, 0x1422b983,
0x97180a1e, 0x46200e23, 0x38efde18, 0x18059b4c, 0x4f084f7a, 0x152009f5, 0x4e06f168, 0x1e220592, 0xb9835a14, 0x3c25ff82, 0x2828460a, 0x21008200,
0x43620003, 0x05335a05, 0x4607b343, 0x4d181bf7, 0x075b0d4f, 0x48052009, 0x352c0525, 0x14284633, 0x463c3c3c, 0x00020000, 0x8805f746, 0x082e7bd7,
0x2735a982, 0x3c233533, 0x0a0a1428, 0x1e140a32, 0x140a1414, 0x143c0a32, 0x0e1f4e14, 0x4d073742, 0xdf180a6f, 0x5024202f, 0x2b004600, 0x5308bf66,
0x53430a09, 0x0ce34505, 0x7f492320, 0x6b282005, 0x0c880c68, 0x18091751, 0x2108babb, 0x574b0a0a, 0x054b4f0a, 0x21166f42, 0x6f182315, 0x5983113d,
0x0685e982, 0x1809d361, 0x49083f5b, 0x81460fad, 0x22a2820a, 0x491e4614, 0x6b42059c, 0x00502205, 0xd7b4186e, 0x47398f09, 0x4c881d17, 0x1420e183,
0x8b8bd182, 0x22311747, 0x841e0a0a, 0x744d829a, 0x002005af, 0x46220083, 0x93184600, 0x934b07c7, 0x14462109, 0x3220ff84, 0x8205d44f, 0x18cb8726,
0x470eef52, 0x14251717, 0x14462814, 0x06046c0a, 0x0c1b5618, 0x44057143, 0x4f1805eb, 0xdf5d0e47, 0x835b8740, 0x05da4257, 0x07510020, 0xc3df1809,
0x47ab8925, 0x32212417, 0x1800820a, 0x21094b5a, 0x9f5d0046, 0x83de1819, 0x00032539, 0x00ecff0a, 0x1807cf52, 0x2116fbd9, 0xfa563507, 0xcf581805,
0x14142210, 0x20a5850a, 0x54008232, 0x462108e7, 0x33831800, 0x08a3460d, 0x4508bf5e, 0xcb5405ee, 0x860a2005, 0x53df1806, 0x0593460b, 0x0b474620,
0x18462018, 0x470e3fdf, 0xd74b150b, 0x05774107, 0x84005021, 0x120b474f, 0x3c224d83, 0x0b470000, 0x00462408, 0x6700000d, 0x2f4405ed, 0x14502407,
0x820a1432, 0x0a0a21a9, 0x02202c86, 0x4708df42, 0x32221f0b, 0x3c5b1e14, 0x09e74206, 0x24220b47, 0x280a1e46, 0x43388246, 0x4620081f, 0x0b47bf82,
0x5e31821c, 0xb2180530, 0x59640c23, 0x190b470d, 0x4408cf56, 0x17220b07, 0x2b730000, 0x08cd510a, 0x15333524, 0xf3183c33, 0x0a2d0875, 0x0a3c0a0a,
0x0a0a320a, 0x1e461e14, 0xe3631814, 0x08f3450a, 0x05477586, 0x1414210a, 0x32253582, 0x1e1e1414, 0x2047821e, 0x057f441e, 0x095f8a18, 0x17550d20,
0x0d795205, 0x0941c418, 0x23351523, 0x69c81815, 0x0a0a2109, 0x79184382, 0x568207b6, 0x57821420, 0x08236d18, 0x2007775f, 0x54c98319, 0xc8180b63,
0x01202a5f, 0x0a1b5918, 0xeb510020, 0x08f16d0d, 0x51463321, 0x0a2005ef, 0x0a23d286, 0x73463246, 0x5f47086b, 0x006e2206, 0x07216505, 0x0871a718,
0x2b473320, 0x0a0a2605, 0x3c1e0a14, 0x0542453c, 0xf74d0020, 0xa358180a, 0xeb9b180d, 0x57282013, 0x1420055a, 0x32206d82, 0x132b6318, 0x1808cf47,
0x180d9b5a, 0x1816d3e3, 0x20095360, 0x06b94509, 0x37823320, 0x0c9fb718, 0x14141428, 0x3c0a320a, 0x3b481446, 0x1864200b, 0x180a77bf, 0x2426c3c8,
0x3c00e2ff, 0x41378500, 0x0b550855, 0x0a3c2505, 0x28141e28, 0x0a216783, 0xb3ef1850, 0x05df4e08, 0x20050f41, 0x08ee7215, 0xe4513082, 0x0ce35109,
0x43063456, 0x0344067c, 0x25e35109, 0x1e24e382, 0x1e1e461e, 0x4605db65, 0x5a2005cb, 0x180a8550, 0x650c0953, 0x1420050b, 0x32202d83, 0x5109f641,
0x6e2408eb, 0x27001d00, 0x201f694e, 0x08b55227, 0x180af147, 0x21091c58, 0x61470a1e, 0x185a200c, 0x480d33c7, 0xb5470507, 0x11074806, 0x2005f941,
0x0b634f15, 0x4805976a, 0x4e820804, 0x18058b5b, 0x2107075c, 0xf351006e, 0x1e28242a, 0x180a140a, 0x1809fda7, 0x20081096, 0x0c5b483c, 0x00ecff23,
0x07834546, 0x200a3352, 0x21008614, 0xe5183c46, 0x962409ff, 0x3f005a00, 0x180acd5a, 0x5c08d36a, 0x5b18091c, 0x9d5d08ef, 0x4b332005, 0xed4908a7,
0x82152006, 0x0a642133, 0x2005bd58, 0x052c5d28, 0x4e181e20, 0xad820842, 0x3c20f184, 0x22083543, 0x82320a0a, 0x200e8211, 0x20088314, 0x05934a14,
0x18000a21, 0x21082ba8, 0x9b6d0046, 0x06dc4206, 0x17451520, 0x82372007, 0x824e8588, 0x23028205, 0x14143232, 0x534c0385, 0x5a642008, 0x7418062b,
0x9e180857, 0x172309d0, 0x82331523, 0x282822a3, 0x05444528, 0x821e1e21, 0x248882b3, 0x0a460a28, 0x0b03721e, 0x14005a27, 0x00001800, 0x5c438537,
0x3b230943, 0x83231501, 0x08315844, 0x20057241, 0x28438246, 0x0a3c0a1e, 0x1e280a14, 0x05fb4200, 0xd7186e20, 0x438408b7, 0x0f029f18, 0x22064843,
0x4d145a23, 0x1420061f, 0x2006d041, 0x07c55150, 0x4a05eb4c, 0x6e2008fb, 0x08ffce18, 0x3c204fad, 0x46052d41, 0xa682052d, 0x220b7b4d, 0x4b1c0018,
0x5d590cb5, 0x06f54405, 0x011d3525, 0x85323523, 0x82e5823d, 0x461423db, 0x1082281e, 0x14264482, 0x0a0a2832, 0x4b892828, 0xaf004621, 0x1432224b,
0x06034c1e, 0x0a1e2825, 0x831e1e0a, 0x27ec824b, 0x5a008c00, 0x21001d00, 0x63429782, 0x18352006, 0x4c0808a5, 0x8c440539, 0x82372005, 0x5e142006,
0x0a2005ab, 0x0a269a83, 0x5a141414, 0x84505a14, 0x229e8205, 0x84281e1e, 0x134f1800, 0x008c2208, 0x2057b946, 0x06804e46, 0x821e2821, 0x831e2073,
0x089f4f00, 0xaf825020, 0x20001c29, 0x33350000, 0x43013b35, 0xb85d06fa, 0x20098209, 0x5e038235, 0xba4705c2, 0x85142005, 0x143223af, 0x10822814,
0x82141421, 0x20aa8404, 0x23a41850, 0x82502008, 0xf36c18ab, 0x42528208, 0x35200885, 0x3c204e8d, 0x4d843a82, 0x294f4b82, 0x209c8307, 0x4149823c,
0xab5e0b4f, 0x09586505, 0xa2879e90, 0x32141424, 0x13590a0a, 0x22a48305, 0x825a1414, 0x4f282002, 0x8d510583, 0x18282005, 0x4107bbce, 0x462005ab,
0x18060f6e, 0x58085f9f, 0x01550801, 0x23372308, 0xea833315, 0x5584ac88, 0xb9504620, 0x82ad8305, 0xf3861803, 0x050f6e08, 0x31002525, 0x4e170000,
0xf5840881, 0x152d7b18, 0x4a373321, 0x32200aed, 0x1e23bd83, 0x500a1414, 0x1e200871, 0xc8830b82, 0x0682c182, 0x5a181e20, 0x7d82096e, 0x0d827820,
0xbc180a20, 0x25230dd3, 0x60003500, 0x4a18058f, 0xd56a0921, 0x8e352008, 0xb5ea188f, 0x21818308, 0x748b0a23, 0x14208786, 0x2008f06a, 0x206b8314,
0x85898414, 0xf3b01805, 0x13b61811, 0x0db16808, 0x013b1527, 0x46333523, 0x434a820a, 0x0a23058a, 0x41282828, 0x0020058a, 0x2108ff64, 0x65180050,
0xf8690897, 0x233b910b, 0x3c0a1e1e, 0x67450083, 0x005a2408, 0x5f11000b, 0xcb7d0559, 0x33272209, 0x20f58235, 0x28038207, 0x32462335, 0x0a320a0a,
0x20dd821e, 0x2903840a, 0x0a0a460a, 0x14281e46, 0x8f48280a, 0xaf7f830a, 0x6f578347, 0x7f490522, 0x07334509, 0x0a0a4e18, 0xce5cfc82, 0xea5e1807,
0x06e94908, 0x820a1421, 0x0a1e2500, 0x1e3c0a14, 0x14210a82, 0x4500831e, 0x0020058e, 0x22088345, 0x181f0046, 0x7709bb7d, 0x64180c58, 0x152009d6,
0x32214f8f, 0x20468514, 0x20078314, 0x4604820a, 0x6e220797, 0x4f827800, 0x2f002722, 0x272053a1, 0x4c064545, 0x152105ff, 0x21638f23, 0xb8821446,
0x03822820, 0xbd901420, 0x6106d562, 0x6e2206af, 0x73826e00, 0x33002922, 0x352073a9, 0x085f6f18, 0x77903520, 0x821e5021, 0xd4701873, 0x18e78e08,
0x2009c4fd, 0x2e008200, 0xff0a0003, 0x00be00e2, 0x000f005a, 0x82390031, 0x0922427f, 0x44153321, 0x575805d4, 0x95de1808, 0x0aae4109, 0x35072322,
0x10823282, 0x68822820, 0x8c200384, 0x09504018, 0x0a201282, 0x6e228b82, 0x16451e0a, 0x3c0a2205, 0x425f180a, 0x20088208, 0x2117831e, 0x15823c32,
0x46208b8b, 0x28208be2, 0x28208f82, 0x28228b92, 0x5745280a, 0xff0a2606, 0x006e00f6, 0xe3c61864, 0x4635200d, 0x232005a7, 0x087fa718, 0x35200f82,
0x32200d82, 0x1e21df82, 0x49048414, 0x0a21057a, 0x83608246, 0x825a2004, 0x0a462408, 0x85000200, 0xb750204f, 0x08a9734f, 0x32200882, 0x00234f84,
0x82780000, 0x001f2201, 0xfd5e182b, 0x059c6408, 0x6b18a485, 0x2320086e, 0x3721a082, 0xc0451833, 0x18142009, 0x2008f389, 0x210a820a, 0x4e7c0a28,
0x831e2005, 0x83b487ac, 0x083a4507, 0x4206734b, 0x6bb105a3, 0x67835e82, 0x84071c41, 0x740a206e, 0x0a820a7a, 0x456e0a21, 0x6b8607a6, 0xd7829620,
0x4f003f22, 0x1841ad4a, 0x5e083b7d, 0x2320053f, 0x2120bd4a, 0x0082140a, 0x0a780a23, 0x1fc64a14, 0x1806c043, 0x26092795, 0x00640050, 0x660f0007,
0xd14a0533, 0x06d34710, 0x87863520, 0xe14a1720, 0x42fc840b, 0xe64a0530, 0x054f5606, 0x3c201782, 0x220b9b73, 0x4111005a, 0x967305e9, 0x1428230d,
0xb04e0a0a, 0x82068205, 0x282821bf, 0x0c8f6218, 0x1d421420, 0x15332509, 0x15233523, 0x20053868, 0x96731835, 0x0a142109, 0x24065c42, 0x01001e32,
0x055b5600, 0xeb555a20, 0x06e34408, 0x0a4da018, 0x5f0d0569, 0x23210557, 0x0984553c, 0x22080847, 0x4a140a0a, 0xc077064a, 0x83142009, 0x6b50180a,
0x000b220b, 0x01941800, 0x42598208, 0x1142068d, 0xff012407, 0x825000ba, 0x006e22cf, 0x254f180f, 0x8435200b, 0x05317a95, 0xa95f1e20, 0x05bd4d05,
0xff252f84, 0x006e00f6, 0x77401807, 0x14322609, 0x50282814, 0x3342181e, 0x821f8808, 0x22d7826f, 0x82284623, 0x0a642e20, 0x00000a1e, 0xff74ff13,
0x003c00e2, 0x083f8278, 0x17000f22, 0x27001f00, 0x2f002b00, 0x37003300, 0x3f003b00, 0x47004300, 0x4f004b00, 0x57005300, 0x5f005b00, 0x35216382,
0x188c8423, 0x2007974b, 0x4a0f8627, 0x33210624, 0x241f8817, 0x013d1533, 0x226e8233, 0x82371533, 0x82072006, 0x82372003, 0x3507240d, 0x82271533,
0x82272007, 0x87172007, 0x831b820f, 0x82172017, 0x461e2013, 0x0a2105a7, 0x20078646, 0x05fa486e, 0xc449b420, 0x82a02006, 0x826e20b5, 0x82aa20fa,
0x24e08207, 0x0a460a8c, 0x210e8264, 0x8345820a, 0x07854808, 0xa7720a20, 0x870a2005, 0x09656f21, 0x5d710982, 0x0a3c3006, 0x0000000a, 0xff88ff08,
0x003200d8, 0x48050082, 0x1d260639, 0x29002300, 0x8f432f00, 0x49152005, 0xc183062d, 0x82233521, 0x85a582b7, 0x332721e5, 0x23220a82, 0xbe821537,
0x84373521, 0x141422ea, 0x2398821e, 0x0a140a14, 0x14259182, 0x50140a3c, 0x2011820a, 0x2809830a, 0x0a145a0a, 0x1e0a0a28, 0x2305831e, 0x140a4614,
0x14210982, 0x82068282, 0x18002002, 0x2708bb68, 0x001b0078, 0x17000027, 0x5e08dc6c, 0x0d840da7, 0x2109f84e, 0x68823c15, 0x42076f4b, 0x078207e0,
0x2108b05e, 0xd6440a5a, 0x08e34505, 0x5000ec24, 0x63866e00, 0x5e08956c, 0xd38210b7, 0x6909824a, 0x0a2008e8, 0x1425d683, 0x140a2814, 0x206b8414,
0x0549580a, 0x0a0a4623, 0x541a826e, 0x02210537, 0x07e75000, 0x15001125, 0x85370000, 0x09e252ab, 0x23271525, 0x183c3315, 0x820932b2, 0x213f8248,
0xdf540a0a, 0x663f8c09, 0x4f1808e1, 0x17200848, 0x80833f82, 0x0a0a1e23, 0x51de1832, 0x213c8207, 0xbb49460a, 0x005a220d, 0x5dcb180d, 0x233d850a,
0x27231533, 0x2c05bf46, 0x3c233533, 0x0a3c141e, 0x1e140a0a, 0x05f37314, 0x06845a20, 0x0a200f82, 0x089f6f18, 0x43874620, 0x41233321, 0x09420521,
0x21439705, 0x9182641e, 0x0a280a23, 0x0b6f5728, 0x0f756e20, 0x05a55308, 0x50142823, 0x7f581850, 0x0007210d, 0x08c17818, 0x2824c382, 0x463c3c14,
0x08174218, 0x20061360, 0x09ec4f37, 0x1533352d, 0x141e1e1e, 0x503c0a0a, 0x47280a1e, 0x012105bd, 0x05334100, 0x0020af83, 0x3c202b94, 0x1e20e482,
0x0021e082, 0x276d1800, 0x00112209, 0x07336e00, 0x3320d784, 0x23310582, 0x14141e14, 0x0a1e283c, 0x4614280a, 0x140a5a32, 0x5b72180a, 0x00462309,
0x339f0046, 0x461e3222, 0xff853382, 0x07138718, 0x6f083366, 0x495e08a8, 0x4d73830a, 0x3c20055d, 0x0b190919, 0x0a22df82, 0xe882140a, 0x14218e82,
0x0661480a, 0x5e181420, 0xf6220753, 0x8b825000, 0x37412920, 0x08f35206, 0x09445818, 0x18333521, 0x450e72c9, 0x9d5b05ad, 0x8257830f, 0x82168266,
0x8314206f, 0x180a8203, 0x2308936c, 0x005a0046, 0x1720bb82, 0x2006f570, 0x12cf7a15, 0x7f82bd84, 0x08cd4218, 0x430a1421, 0x0a20052c, 0xb682b782,
0x2008bb62, 0x4121821e, 0x4620097b, 0x655757bd, 0x05754d08, 0xec225785, 0xaf825000, 0xe4181d20, 0x034109db, 0x08307107, 0x33153322, 0x1807ed76,
0x6209b158, 0xfb860d8b, 0x46214b83, 0x544bb100, 0x4b850c5d, 0x84000021, 0x6c1b2097, 0x352008e5, 0x60071848, 0x1523084c, 0x413c1523, 0xbb710685,
0x82322005, 0x141e2547, 0x285a281e, 0x14200582, 0x23082b52, 0x00460050, 0x33204782, 0x8a0b5467, 0x822320dc, 0x0a282217, 0x0a806e14, 0x461e1e24,
0xf9181e1e, 0xdb50086b, 0x0021220c, 0x05254825, 0x0cf44918, 0x220e3442, 0x82271533, 0x209b825f, 0x061a420a, 0x0a205c84, 0x14239e82, 0x4246280a,
0x3542054c, 0x37fe1805, 0x05874308, 0x6e005a21, 0x5c8e052b, 0x8209eb42, 0x353322aa, 0x45488433, 0x0a20054b, 0x1422b884, 0x56841e0a, 0x4620c384,
0x5305a76c, 0x8a420c77, 0x09285e05, 0x0c94b118, 0x15331523, 0x2294825a, 0x41321e14, 0xb88208de, 0x0a502822, 0x8206cf75, 0x0813580c, 0x52077753,
0x6e18098d, 0x15200867, 0x8405504e, 0x84eb8364, 0x069f4199, 0x9e5d1e20, 0x22638209, 0x423c1e0a, 0xbb680b7b, 0x3f4b1809, 0x433c2008, 0x0a2805ba,
0x5a282814, 0x1e502828, 0xff207f85, 0x9b055f42, 0x821e202f, 0x3c1e2169, 0x35822f86, 0x5a005026, 0x00000e00, 0x2409fb41, 0x2315013b, 0x07d66e15,
0x0a225d84, 0x9f570050, 0x842b9909, 0x3c0a2159, 0x08435b18, 0x13005a25, 0x4c350000, 0x352008e5, 0xfd826285, 0x6c493220, 0x0a142305, 0x2a4c5a14,
0x50322205, 0x08674a50, 0x46005022, 0x83060f7a, 0x0ab96b39, 0x0a231523, 0x29388728, 0x0a1e460a, 0x320a0a32, 0x27413c1e, 0x4323200c, 0x2320050b,
0x082b5d18, 0x4f0cdd4a, 0x3c2208c1, 0xf66b0a0a, 0x05d44205, 0x32205482, 0x21065b44, 0x00820a46, 0xab544620, 0x05076906, 0x57b88f83, 0x20075271,
0x20568232, 0x43f6830a, 0xff210673, 0x22e582e2, 0x461b005a, 0x70180527, 0x78430d09, 0x06fb4406, 0x0896d418, 0x761e0a21, 0x142105ca, 0x05a05f14,
0x450e877b, 0xf450074b, 0xd78d1808, 0x23152208, 0x8de1820a, 0x188f8547, 0x22084b66, 0x84ecff0a, 0x410b208f, 0xee45063f, 0x82322006, 0x3c142738,
0x141e4650, 0x4b6b0a50, 0x09235805, 0x63413720, 0x15332108, 0x3c232785, 0x18141e32, 0x220a7780, 0x5b5a0046, 0xa518074d, 0x0a200cdb, 0xf8675482,
0x28282105, 0x086f0319, 0x82e2ff21, 0x1f577e7f, 0x159f4018, 0x6e181520, 0x52500876, 0x05224306, 0x85071f43, 0x0a91546a, 0x200b3741, 0xa1ef8317,
0x08de6b3f, 0x00823220, 0x03000022, 0x08138918, 0x1d001723, 0xa30a1900, 0x4215200e, 0x058305ef, 0x2006cf4a, 0x23a18237, 0x0a3c3523, 0x2608454b,
0x0a32140a, 0x180a280a, 0x2a097744, 0x1e141e14, 0x145a280a, 0x42001e0a, 0x4d690973, 0x47d68208, 0x3f640927, 0x20098209, 0x0740443c, 0x82053d45,
0x4708840d, 0x5f82057b, 0xeb830020, 0x23072b48, 0x1700000f, 0x57086d56, 0x3c2105b8, 0x82868232, 0x14142832, 0x460a0a50, 0x891e5050, 0x0046212f,
0xcd822f9c, 0x3c3c3222, 0x200ad346, 0x4b7d185a, 0x05a24c07, 0x20058542, 0x057a4a3c, 0x1e140a26, 0x3232320a, 0x9415a344, 0x0a14242f, 0x44282828,
0x13200ea3, 0x4b07a344, 0xc583093d, 0x14248982, 0x0a0a140a, 0x2505a164, 0x14143232, 0x8b455a32, 0x064b4408, 0x89067844, 0x057b466a, 0x14213786,
0x226e8314, 0x7c281414, 0x0b200d6f, 0x0deff218, 0x28140a29, 0x141e140a, 0x600a145a, 0x5a210cdb, 0x20279000, 0x055a581e, 0xaf5d2785, 0x586e2005,
0xb71809a3, 0x97590af1, 0x2335250e, 0x2335013b, 0xce82c882, 0x280a2822, 0x0a269583, 0x143c0a1e, 0xbd425014, 0x831e2005, 0x280a2112, 0x2007075c,
0x20e5820a, 0xdf8e186e, 0x05ed4308, 0x1805b446, 0x82085d64, 0x21538df0, 0x5185281e, 0x51863c20, 0x6d841420, 0x83092f53, 0x057179a7, 0x46062b42,
0x5c9005b0, 0x24081b48, 0x23353327, 0x6f6f8217, 0xb882057f, 0xa0821420, 0x0a21a784, 0xd044181e, 0x82282008, 0x820a2017, 0x840a20ce, 0x0a1424c1,
0x835a145a, 0x030026bc, 0xe2ff0a00, 0x79c38300, 0x7c1805e7, 0x3520089f, 0xe4437090, 0x86cf8205, 0x0a46216f, 0x6e87c882, 0xc5841e20, 0x06821420,
0x6a851184, 0x0b821420, 0x143c0a22, 0x7105634b, 0x0221250b, 0x24008300, 0x00780050, 0x089f4e0b, 0x23228985, 0x264c3307, 0x83152005, 0x2003850f,
0x468d8423, 0x352008d3, 0x2105cf75, 0xb150280a, 0x50088908, 0x1e200580, 0x774b9882, 0x083b620d, 0x6e005022, 0x37207382, 0x08897e18, 0x82152321,
0x8417205d, 0x7c152067, 0xb7180919, 0xfa1808a5, 0xa45309bd, 0x83142007, 0x4b6082ee, 0x0f850f86, 0x82146e21, 0x5a0a211f, 0x47142b67, 0x5a220a77,
0x977a1f00, 0x0eb74e09, 0x2322ff87, 0x10641e14, 0x825d8309, 0x0a3223ef, 0x15825a32, 0x46053274, 0xe2220627, 0x94185000, 0xbb820cbb, 0x8f0a394c,
0x82bd824d, 0x0a0a219c, 0x28234c82, 0x8546280a, 0x462820a8, 0x50240973, 0x13005a00, 0x63189b87, 0x5382088d, 0x82231521, 0x213d8225, 0x95823c0a,
0x500a0a27, 0x4614143c, 0x20378b5a, 0x2537a446, 0x1414283c, 0x637b4632, 0x06bb4609, 0x4208c34d, 0x14220605, 0x0083141e, 0x3c25a682, 0x28285a28,
0x66eb826e, 0x67640963, 0x05804609, 0x33012b22, 0x28071d78, 0x28281e14, 0x1e461e1e, 0x05f7421e, 0x8507e345, 0x061649d3, 0x8208d849, 0x0a2821de,
0x09024918, 0x82283221, 0x0a502169, 0x5341d393, 0x069b4208, 0x378b2320, 0x6f832820, 0x378a3c20, 0x3720d386, 0x200e4b46, 0x07a34528, 0x0a140a25,
0x4f323232, 0xe747063f, 0x000f2206, 0x272f9900, 0x28280a0a, 0x00144628, 0x22085f51, 0x480f005a, 0x638306d1, 0x21087f48, 0xa886013d, 0x6918a682,
0x142109ec, 0x2e9b8214, 0x140a3c0a, 0x320a0a5a, 0x145a3c1e, 0x82001e0a, 0x47022000, 0x4620065b, 0x32234bb1, 0x82460a0a, 0x3214214b, 0xfb620582,
0x9fe6180c, 0x08185c09, 0x5405a447, 0xdc56052b, 0x59332008, 0x0a2105c7, 0x419b820a, 0x1e20054a, 0x2005344c, 0x05e85146, 0xf0182820, 0x19220ea3,
0x0f551d00, 0x8f448608, 0x21e48251, 0x4b831e1e, 0x09319a18, 0x3c211282, 0x2204826e, 0x823c1414, 0xc79b18a5, 0x4d17200d, 0x35200a85, 0x2406fe43,
0x15232715, 0x555c1833, 0x18a18907, 0x240da7f8, 0x501e4646, 0xa7f81814, 0x0a57650b, 0x220a387f, 0x83153315, 0x20598349, 0x05017a07, 0x3c219d83,
0x204c8314, 0x05f24e14, 0x643c0a22, 0x32204882, 0x76189a82, 0x17200c63, 0x09894e18, 0x0ab24118, 0xf8183320, 0xef182093, 0x574757e3, 0x00462505,
0x000b0078, 0x35209b83, 0x4109bc61, 0x0a220b83, 0xe182283c, 0x2206cf41, 0x821e0a5a, 0x098b5801, 0x220bcf66, 0x4a1d0019, 0x794109fb, 0x5ba81805,
0x61352009, 0x282606c2, 0x0a280a0a, 0x4e84143c, 0x09e6ee18, 0x83501e21, 0x180a2011, 0x200d73f4, 0x4fbe185a, 0x081f5e0e, 0x1247c218, 0x4b821e20,
0x460a0a23, 0x09734114, 0x67004621, 0x7358069b, 0x33352105, 0x88055e42, 0x0552423b, 0xae180a20, 0x7820125b, 0xcd867784, 0x8805a246, 0x0c49427a,
0x62483c20, 0x18bc8207, 0x8808d4f5, 0x826e2089, 0x14a36715, 0x98181520, 0x4b4209df, 0x42152005, 0x4f83069d, 0x4f859684, 0x26056976, 0x145a320a,
0x825a1432, 0x070742d8, 0x03007828, 0x2b000700, 0x1e190000, 0x594707b3, 0x75471823, 0x0a0a2108, 0x200d1675, 0x476c8278, 0xaf5e1456, 0x84642008,
0x8933206f, 0x2b55476f, 0xe4507782, 0x12574706, 0x7b826420, 0x52475020, 0x08837217, 0x1b007823, 0x054d6100, 0x18085956, 0x200dc08a, 0x06934323,
0x15332724, 0x75443c23, 0x52142005, 0x484105ea, 0x08067108, 0x1e0a1e23, 0x7348186e, 0x525fc110, 0x5a200bf4, 0x0c838118, 0x1815af71, 0x200823bd,
0x05d54446, 0x280a0a22, 0x8205dd4c, 0x820a2008, 0x0be34e00, 0x18004621, 0x200a67bb, 0x18398415, 0x2533cf7f, 0x50000000, 0x75566e00, 0x67448205,
0x15210f42, 0x0c7f5327, 0x46464622, 0x2109a557, 0x3c820a6e, 0x2010cb44, 0x10e07635, 0x7d674391, 0x47462008, 0x491805b7, 0x13210927, 0x09a94500,
0x210e4458, 0x17433527, 0x583c2005, 0x1424083a, 0x14144614, 0x64208f89, 0x0aef4918, 0x64005022, 0x1823d382, 0x51001c00, 0x4b8f057f, 0x011d3323,
0x06e44c23, 0x14140a22, 0x4a835183, 0x98891420, 0x6c0a6421, 0x98180582, 0x14223573, 0xc3182814, 0x46220811, 0xf3435a46, 0x180b200d, 0x180fcd4a,
0x8719bb98, 0xd3f01847, 0x5000200e, 0x0f200653, 0x0619e382, 0x15200fcf, 0x1e7f5618, 0x7715f372, 0x3f910a29, 0x0c7f8818, 0x155b9b18, 0x240a3159,
0x33152327, 0x0a594735, 0x57183c20, 0x5947080a, 0x11571806, 0x1e462208, 0x05144346, 0x64215387, 0x1b651800, 0x0b85590a, 0x89057946, 0x41538a57,
0x5a220b22, 0x01823214, 0xa3483c20, 0x074a180e, 0x16274407, 0x23445b83, 0x09026808, 0x4405c041, 0x46200821, 0xbb111f44, 0x08194457, 0x195a3221,
0x240e3b1a, 0x0015006e, 0x09616219, 0x840dc65d, 0xd2bb18a7, 0x3c142308, 0xeb773c3c, 0x4632220a, 0x8750180a, 0x00462208, 0x2047a25a, 0x06be6a28,
0x0a204782, 0x2109bb6a, 0x4783503c, 0x8309bf7e, 0x9a1e208f, 0x012b2691, 0x011d3335, 0x8296893c, 0x142821d1, 0x5021988b, 0x185d8214, 0x220823bb,
0x84640046, 0x8753a49b, 0x8b5384a2, 0x865a20a4, 0x05af4853, 0x78005026, 0x25000f00, 0x2009955a, 0x06254b15, 0x52611720, 0x55451809, 0x6632200a,
0xb5890800, 0x21054b4e, 0x9d5c0a0a, 0x520a2006, 0x00290592, 0xff000003, 0x005a00e2, 0x22b3826e, 0x8229001f, 0x23352161, 0x4e05a15f, 0x352209b8,
0xc56c3533, 0x1b6e1809, 0x14462109, 0x1421a382, 0x065d690a, 0x05820885, 0x823c0a21, 0x05f74600, 0x825a1421, 0x6c142007, 0x40180883, 0xb38a1133,
0x2207a742, 0x180a1e32, 0x20082d63, 0x21a5831e, 0xf418785a, 0x002307eb, 0x43004600, 0x00200743, 0x930b8e4c, 0x0a14263b, 0x46282828, 0x099b4464,
0x48005021, 0x7f420543, 0x15332305, 0x03823723, 0x6006a94d, 0x33240592, 0x15333523, 0x1e203082, 0x1420d783, 0x28238682, 0x830a1e0a, 0x5a64297d,
0x5a280a32, 0x001e1e0a, 0x08cb9e18, 0x88051f48, 0x9181834b, 0x0507484b, 0x4e842820, 0x8d834b83, 0x82465021, 0x05007209, 0x2507db41, 0x0009005a,
0xcf18000d, 0x352108f5, 0x2edb8223, 0x280a0a15, 0x320a3c14, 0x140a3c1e, 0x77320a5a, 0x2f960c3b, 0x32141e22, 0x2f8e3384, 0x5a007823, 0x05494500,
0x20095d6c, 0x82e88233, 0x152325ed, 0x5a0a1464, 0x14226983, 0xb6751e28, 0x50142105, 0x6e206b8b, 0x5a293b9b, 0x0a500a14, 0x14141e0a, 0x233d8228,
0x0a320a0a, 0x1f593b87, 0x181d2009, 0x41099d47, 0x5b7e05ea, 0x3315210d, 0x20057f5f, 0x07476914, 0x84831420, 0x0a0a1424, 0x00820a1e, 0x0a03b718,
0x46006e23, 0x204bb000, 0xd66a1828, 0x1414210a, 0x20088756, 0x20d38250, 0x08b56f19, 0x918f3320, 0x3c231523, 0x0513540a, 0x83822820, 0x8d890982,
0xaa0d2b59, 0x94cb1843, 0x05ac4e08, 0x20051f41, 0x4b451878, 0x05875d0b, 0xd5431520, 0x0a462206, 0x20018214, 0x28b4823c, 0x46460a28, 0x50500a0a,
0x09bf5e32, 0xe7587820, 0x0a2a7106, 0x31823793, 0x3c3c0a23, 0x05e7701e, 0x1805f353, 0x180a2f53, 0x410b9b42, 0x75430685, 0x323c2105, 0x2823ef82,
0x7c28285a, 0x6e200893, 0x20085759, 0x74a58223, 0x5a210c2b, 0x05c84914, 0x28213a82, 0x0527741e, 0x0d871b19, 0xff411520, 0x18db830a, 0x820851ee,
0x0737472e, 0x82320a21, 0x22e48209, 0x5c461414, 0x4620089f, 0x3ba47382, 0x0a224782, 0x00820a32, 0x0bb76118, 0x3f585a20, 0x55e38205, 0x1e210a29,
0x415f820a, 0x0a220551, 0x4f41460a, 0x82002006, 0x82502000, 0x820f206b, 0xd95c18a7, 0xeb6a1808, 0x42462008, 0x5f820596, 0x47413220, 0x1344180a,
0x20d98411, 0x05006550, 0x8b821420, 0x50500a23, 0x6b1f1950, 0x415f840d, 0x5e4507e3, 0x28462105, 0x22053c41, 0x82282828, 0x1414213a, 0xe118fb82,
0x9f6b0eb3, 0x22918209, 0x82331533, 0x501523a0, 0xee7b140a, 0x20388207, 0x190b820a, 0x85089f28, 0x43fb85cb, 0x718706e9, 0x83143c21, 0x280a2500,
0x280a320a, 0x1806ac46, 0x850fa3db, 0x062f41fd, 0x2a824620, 0x48281421, 0x50230522, 0x85280a1e, 0x06c77e9b, 0x1f001b24, 0x8c180000, 0x1520087a,
0x6208c147, 0x2727084f, 0x50152335, 0x43141e14, 0x7a6e05c7, 0x20ab8208, 0x2157820a, 0x05823c0a, 0x83282821, 0x828382ad, 0x064f6153, 0x22079777,
0x82152315, 0x144622eb, 0x83808228, 0x825a2032, 0x8f45187f, 0x8f411808, 0x0a4d4209, 0x823c4621, 0x14142156, 0x20054641, 0x08f77c46, 0x7d05a741,
0xb44b053d, 0x25a48408, 0x35332333, 0xa5831723, 0x1e0a0a23, 0x223c8214, 0x8214320a, 0x143222ad, 0x0532570a, 0xf74b0d82, 0x0a3b450a, 0x1c191520,
0x0a200d0d, 0xe882cf84, 0x81831420, 0x1e214782, 0x18d88450, 0x430dcbd5, 0x15220831, 0x66825033, 0x821e1421, 0x82322073, 0x000021d5, 0xd3832785,
0x89180520, 0x3223086f, 0x5c5a1e14, 0xc98206d3, 0x0d9f2619, 0x22080e53, 0x57503335, 0xb182051a, 0x0a0a2827, 0x145a3c14, 0x123f421e, 0x50085d73,
0xf1830507, 0x415a1e20, 0x820a2005, 0x77502088, 0x142105dd, 0x0a9f7350, 0x08af9018, 0x2008f258, 0x068f4723, 0x320a1e25, 0x18461e32, 0x200ba751,
0x09e7581d, 0x20058448, 0x826f8215, 0x450e1969, 0x07c35c08, 0x2107e44d, 0x6f180a5a, 0x098209eb, 0x098f5718, 0xb4185a20, 0x65650ced, 0x0b676408,
0x23352326, 0x0a145015, 0x6105dc6a, 0xf88205d0, 0x6505f843, 0x0a22055b, 0xd342000a, 0x18502005, 0x430963d0, 0x33210871, 0x05ca4350, 0x14500a22,
0xcf182d82, 0x9e18097f, 0x33200877, 0x0ae58d18, 0x6318cd84, 0xeb490bb3, 0x0a457105, 0x20087343, 0x06a3410a, 0x094d6118, 0x44064763, 0x1e24060d,
0x0a0a4650, 0x0edf4118, 0x246f4518, 0xc6592820, 0x62e08305, 0x00200bb3, 0x0a8ba018, 0xb7187382, 0x232108dc, 0x86018235, 0x505a25e2, 0x0a0a3232,
0x9e82e385, 0xe3830020, 0x83001721, 0x081a7475, 0x5705b343, 0x2727074c, 0x32231533, 0x82280a14, 0x8214206c, 0x570a20d9, 0x57450692, 0x0a0a2105,
0x4405774b, 0x937b092f, 0x03ae1806, 0x05d65208, 0x0a21e482, 0x436e820a, 0x718209d3, 0x97841720, 0x6747a585, 0x1523270c, 0x0a144633, 0x8e18141e,
0x098208ee, 0x03820a20, 0xa0753220, 0x7f491805, 0x20738717, 0x242e8550, 0x3c500a32, 0x82ec833c, 0x00022177, 0x24055b7c, 0x001f005a, 0x139f4425,
0x5109526e, 0x8f820539, 0xa5443320, 0x20f88206, 0x59fe840a, 0x69180608, 0x3c20094e, 0x28211782, 0x425e821e, 0x0f200a5b, 0x4109d346, 0xc7830803,
0x5f451420, 0x50502106, 0x0dbf4f18, 0x18e34a18, 0x420a1742, 0x79430ab3, 0x50332208, 0x278f821e, 0x1e0a1414, 0x321e1e0a, 0x20091344, 0x0fc01846,
0x09e7590d, 0x94451520, 0x15332305, 0x8a824633, 0x28461420, 0x83068405, 0x1845829e, 0x820adf8f, 0x0aeb43d2, 0x210ecb41, 0xc385143c, 0x09f74218,
0x10dd5918, 0x09d55418, 0x15257583, 0x23352733, 0xa99f1815, 0x054c4108, 0x7083b982, 0x820a2821, 0xaf171905, 0x650f2013, 0xf5450d17, 0x05484105,
0x1425f282, 0x0a145a3c, 0x09a77714, 0x27df4518, 0x4e140a21, 0x2820057b, 0x7a824383, 0x690bc77e, 0xa9180907, 0xa1180e5b, 0xc78408eb, 0x601e3c21,
0x0a2005f6, 0x20057f41, 0x20428314, 0x2155821e, 0x44181e1e, 0x1f7e0cbf, 0x07e3500c, 0x14874718, 0x2005f74c, 0x06b34e50, 0x18072f56, 0x200c72d1,
0x05bf6a33, 0x33271526, 0x0a462335, 0xfc827182, 0xc2820a20, 0x3c22ce83, 0x4841280a, 0x0a142705, 0x2828321e, 0x8f421432, 0x00142205, 0x2201823c,
0x410b0064, 0x3b4a0647, 0x3c332105, 0x21052345, 0xc4820a3c, 0x01212982, 0x18278c00, 0x20093782, 0x05685d3c, 0x28826c82, 0x01000026, 0x6400ecff,
0x82222b82, 0x0b4f0900, 0x231b820b, 0x0a820a14, 0x8307d76c, 0x00282223, 0x44738482, 0x5084054d, 0x82141421, 0x09d56a4c, 0x46207383, 0x24199b84,
0x70821207, 0x97820a20, 0xe2ff0222, 0x0b256f86, 0x00000f00, 0x0db36327, 0x5d143321, 0x0a20059b, 0xab527b85, 0x00012406, 0x4e46000a, 0x00210603,
0x05b14537, 0x23153327, 0x3c463315, 0x59ee820a, 0x3b440573, 0x4d46200a, 0x56180555, 0x638208af, 0x28822820, 0x2b823c20, 0x3c3c4625, 0x643c0a46,
0x43620603, 0xe58b1805, 0x08464307, 0x32141e22, 0x28277882, 0x0a64280a, 0x5b281e1e, 0x502008b3, 0x0d208182, 0x4807056f, 0x15210686, 0x19531823,
0x0a322107, 0x14243382, 0x3c0a320a, 0x3c223482, 0xb3820032, 0x3385e982, 0x2009076a, 0x21bc8215, 0x2a844615, 0x323c3225, 0x825a1e0a, 0x0b5b478d,
0x22838b83, 0x2908bf4a, 0x28140a14, 0x32141428, 0x5b82500a, 0x86062b4a, 0x000b2257, 0x0c5d6f0f, 0x1e218989, 0x232c8214, 0x1e0a5a0a, 0x14288784,
0x46000000, 0x09005a00, 0x6e412d83, 0x15332705, 0x1e1e1414, 0x26835a14, 0x600caf6f, 0x2323079b, 0x82152335, 0x22ce8283, 0x82281414, 0x3c3c23a3,
0x9b180a50, 0x4623092b, 0x6c000d00, 0xab650551, 0x23152408, 0x49372315, 0x7a43065d, 0x20848205, 0x4c008214, 0x1e2205d2, 0x25191446, 0x8b760ccf,
0xd6461809, 0x83352009, 0x012b214c, 0x2205c544, 0x82141e0a, 0x4e142002, 0xa782069b, 0x2f6ba682, 0x1a43610a, 0x82005a21, 0x41142027, 0x07230623,
0x84370000, 0x233521f2, 0x3224f082, 0x0a5a460a, 0x0a201f84, 0x334b1f84, 0x35332107, 0x083b5518, 0x82333521, 0x1e142778, 0x14140a0a, 0xf8823c46,
0x785a3222, 0x470baf48, 0x2d79054f, 0x28bc8a08, 0x17233523, 0x0a331523, 0x21b78232, 0xa3480a0a, 0x14282405, 0x820a5a14, 0x820d8200, 0x05ff7b02,
0x83000121, 0x0683457b, 0x200b2747, 0x21758246, 0xa5821414, 0x50500a22, 0x0c538518, 0x7f057747, 0x1e200814, 0x0a202382, 0x14225882, 0x26823c0a,
0x5306af4a, 0x44780a17, 0x3e801809, 0x011d2108, 0x3c209982, 0x21059641, 0xdb83140a, 0x47180c83, 0x934b0820, 0x05835f08, 0x37206f82, 0x2208714a,
0x56322315, 0x3c23058b, 0x420a463c, 0x00200503, 0x6f830082, 0x51001121, 0x41180505, 0x23230884, 0x82353335, 0x0715277d, 0x023d3315, 0x70841533,
0xeb471420, 0x216f8a05, 0x0b712828, 0x49002005, 0x38850b43, 0x03472320, 0x82322005, 0x220382a3, 0x820a5014, 0x09ab4371, 0x46003c24, 0x83470900,
0x27dc8208, 0x280a2814, 0x5a46141e, 0x43432682, 0x094a790f, 0x15231527, 0x0a321432, 0x8287820a, 0x0a4622c1, 0x05cb4a0a, 0x09ef0b19, 0x4a061e42,
0x152009c0, 0x82080368, 0x1523233b, 0x3d82281e, 0xb0480a20, 0x839b8208, 0x204f8202, 0x18548214, 0x180dd353, 0x4108a7f7, 0x47440512, 0x056e4405,
0x7808bb42, 0xa9410a2f, 0x2075850d, 0x243a8223, 0x0a321533, 0x2075860a, 0x186c840a, 0x82083094, 0x07934508, 0xc3420020, 0x65462005, 0xc46b0847,
0x283c210a, 0x14223685, 0x00833c0a, 0x5e186420, 0xd3470cc7, 0x89db8405, 0x0b254981, 0x23352722, 0xc618818b, 0x54840954, 0xf6841e20, 0x0f6a1e20,
0x2083840b, 0x06515137, 0x21051748, 0x82822315, 0x0a32142a, 0x0a28140a, 0x0a463c32, 0xa3414482, 0x05274109, 0x2308f048, 0x14140a14, 0x3b4fa984,
0x069b4306, 0x07b34518, 0x4908a16e, 0x1e200817, 0x5021d682, 0xd744186e, 0x180f200b, 0x6d0d4f54, 0x1e20055d, 0x0382af82, 0x823c3c21, 0x6703822e,
0x09200bc7, 0x33202f86, 0x32212983, 0x25a88214, 0x645a3c14, 0xab183c0a, 0x46200947, 0x2005e144, 0x08d37c17, 0x43333521, 0xe78305ed, 0x1e22b082,
0x0c670a0a, 0x82142005, 0x220a82e3, 0x180a0a5a, 0x210cf396, 0x7b440046, 0x1e0a250a, 0x460a321e, 0x5718838a, 0x4d7b084f, 0x208d840c, 0x05c7483c,
0x9282bb82, 0x1420e984, 0x48189785, 0x11250713, 0x00001500, 0x0ccb7117, 0x33152324, 0x04822715, 0x8c821e20, 0x88823220, 0x14142823, 0x28a38214,
0x280a460a, 0x460a0a0a, 0x0abf4828, 0x12331e19, 0x8207255e, 0x2136822c, 0x95590a0a, 0x089f7905, 0x2205cb6e, 0x7a250021, 0x18410d1f, 0xe85a1807,
0x33072309, 0x85832335, 0x745d5020, 0x06c94809, 0x28218482, 0x0556491e, 0x08636918, 0x23721e20, 0x09bb4d05, 0x5f820b20, 0x2108eb41, 0x15422315,
0x500a2706, 0x0a3c3c50, 0x34190000, 0x4b832337, 0x46001e24, 0x1b493200, 0x05034809, 0x8305275d, 0x4289828c, 0x17200b87, 0x84085957, 0x432d8579,
0x282005bd, 0x099a7e18, 0xba821420, 0x14141e22, 0x05820683, 0x830b7742, 0x076645b3, 0x2315332a, 0x3228280a, 0x0a460a0a, 0x49180482, 0x11220de7,
0x694e0000, 0x825f8209, 0x2335222b, 0x076a4628, 0x82052246, 0x27461834, 0x053f420c, 0x23152329, 0x3c0a2335, 0x441e140a, 0x4a180548, 0x072009f7,
0x47084968, 0x28220aad, 0x27831414, 0x82320a21, 0x0100224a, 0x05c76600, 0x220c8b42, 0x850a1e14, 0x0b074123, 0x6f82c789, 0x1e231529, 0x0a3c1e0a,
0x8232140a, 0x41498398, 0x462005a3, 0x46067f45, 0x1946071b, 0x3c142205, 0x1870823c, 0x200e139f, 0x08217437, 0x09823520, 0x1420e982, 0x41052453,
0x3c21051a, 0x839d823c, 0x0014229b, 0x8353823c, 0x057d41e7, 0x83282321, 0x2079829c, 0x0bab4328, 0x260b4743, 0x28140a32, 0x185a0a46, 0x890c178c,
0x153321bb, 0x83419b82, 0x41322005, 0x5a230f83, 0x18001100, 0x200a57f9, 0x832b8415, 0x830a20e9, 0x0a0a2174, 0x2205dd41, 0x640a1e0a, 0x0023059f,
0x82460000, 0x46052001, 0x2d820671, 0x15233723, 0x20548233, 0x0661413c, 0x0dff2a19, 0x15208386, 0x4e82c787, 0x4b823220, 0x1b413220, 0xff142207,
0x84eb97e2, 0x07a741cb, 0xa3840920, 0x14254586, 0x0a1e1414, 0x43738228, 0x4f1805ff, 0xc9840bd3, 0x3521c385, 0x82998423, 0x05496928, 0xc0433c20,
0x20c18206, 0x85038201, 0x08d347c7, 0x15333528, 0x46333533, 0xa1823c0a, 0x0a0a1424, 0x0b4b3c0a, 0x4a7d8611, 0x14200501, 0x14277e82, 0x1e140a14,
0x525a0a28, 0x878706bb, 0x20054f41, 0x052d4323, 0x7d415783, 0x412c8205, 0x3222057b, 0xbd840a1e, 0x840bcb41, 0x45278333, 0x8d85054b, 0x88833220,
0x0a223683, 0x32822846, 0xf3563220, 0x5646200a, 0xad630683, 0x589c8208, 0x15200550, 0x32263584, 0x140a1e28, 0x04821e28, 0x140a0a23, 0x060b530a,
0x0ca36b18, 0x2a080449, 0x33272315, 0x0a282315, 0x820a3228, 0x141421ce, 0x5f4f3482, 0x0c27430f, 0x1421c482, 0x0b734328, 0x2008ff4b, 0xef521837,
0x23152308, 0x0d822335, 0x7b822320, 0x82141421, 0x27f18230, 0x3c0a3246, 0x3c0a0a3c, 0x56091f42, 0xf3840867, 0x3c208f88, 0x3c21f184, 0x06e34a0a,
0x8309e341, 0x0007222f, 0x09b94a0f, 0x69826f84, 0x0a216583, 0x83368328, 0x49638296, 0x33a409ff, 0x8a282821, 0x00142133, 0x282033a8, 0x83053f46,
0x0050236d, 0x13430028, 0x33152105, 0x9982fc82, 0x60182320, 0x1420075b, 0x002bfc82, 0x00020000, 0x00f6ff1e, 0x86140046, 0x35332527, 0x012b1533,
0x28212c82, 0x2121830a, 0xc5820a0a, 0x00232682, 0x823c0003, 0x83838327, 0x650d204f, 0x5683074b, 0x14215586, 0x202c8214, 0x2335823c, 0x0a501432,
0x57832f82, 0x28005a22, 0xf9440982, 0x5b232007, 0x152105c9, 0x066b4c23, 0x14223182, 0xef6c1432, 0x84282007, 0x6264205f, 0x37200503, 0x210d9e73,
0x01823523, 0x95851720, 0x69829183, 0x67820682, 0x0a269d82, 0x0a141e0a, 0xa4821428, 0x22053f45, 0x41320050, 0x9754058d, 0x1523220a, 0x259d8223,
0x28280a1e, 0xa784320a, 0x00224082, 0x9d820400, 0x5a000024, 0xa3827800, 0x2005f15f, 0x82a18300, 0x1833206b, 0x6208b57b, 0xb6790677, 0x5a5a2208,
0x8c93186e, 0x82032008, 0x00002469, 0x82820050, 0x06195c3f, 0x4f231521, 0x85180521, 0x14210839, 0x223a821e, 0x82785a5a, 0x820a20a5, 0x207382a2,
0x062f491e, 0x5f001121, 0xeb8207b9, 0x08dd6818, 0x7d823320, 0x41422320, 0x82152005, 0x2209820b, 0x530a1e23, 0xc18205e9, 0x1e140a23, 0x2150831e,
0x58420a28, 0x460a2105, 0x0a200882, 0x20056f47, 0x20578632, 0x08674605, 0x48012b21, 0x398209a1, 0x185a5a21, 0x240ad3cc, 0x006400f6, 0x18818246,
0x4a095947, 0x68180752, 0x594409b3, 0x22838306, 0x82460a0a, 0x28282184, 0x72820482, 0x1e22d484, 0xbb510a14, 0x20138205, 0x230a833c, 0x3c000100,
0x0d1f4719, 0x5a271682, 0x0200005a, 0x50ff0a00, 0x034f0591, 0x82698405, 0x153323dd, 0x03820723, 0x51825a20, 0x4482c784, 0x82141421, 0x06274156,
0x50220682, 0xcd825000, 0x11190f20, 0xd3410901, 0x43272007, 0x23200597, 0x99839b83, 0x42056059, 0x2825051a, 0x0a280a0a, 0x60058214, 0x6420093f,
0xe1419982, 0x71d71806, 0x18152009, 0x8608cb85, 0x85322081, 0x821e203f, 0x18322084, 0x2009f3fb, 0x85839164, 0x054b5ebb, 0xc38a4585, 0xd4824489,
0xff844683, 0x6400e228, 0x27004600, 0xa5182b00, 0x23200e5b, 0x5806c84c, 0x3520067d, 0x08db4818, 0x17231525, 0x82231533, 0x0a3c22d7, 0x05944e32,
0xfb551420, 0x08196005, 0x82181582, 0xd7550d0a, 0x216b8707, 0xcb413700, 0x94699a0b, 0x185e8265, 0x1808f769, 0x2309e4c5, 0xff0a0002, 0x5a225f83,
0xcb840300, 0x0720a382, 0x5e4165a6, 0x21ce9105, 0x28410a5a, 0xb3691805, 0x436e8309, 0x3c200acf, 0x42060b48, 0x8f490637, 0x23152405, 0x430a2814,
0x322005cb, 0x2408a567, 0x00020000, 0x22398214, 0x82500050, 0x6c152033, 0x35870bdd, 0xb1823720, 0x3f82398f, 0x0a140a23, 0x5f971850, 0x0032250b,
0x3300000b, 0x65060246, 0x6c8305a2, 0x140a1425, 0x82322814, 0x00022261, 0x0bb7461e, 0x1d63298b, 0x829a8505, 0x20308356, 0x775a8346, 0x6e240637,
0x1f003200, 0x0c67ae18, 0xd8821520, 0x08e14618, 0x42153321, 0x322005da, 0x0a206a82, 0x0a203e83, 0x2506c14d, 0x1e14140a, 0x12830a28, 0x431e0a21,
0x04280525, 0xe2ff0000, 0x5a006e00, 0x23204f82, 0x82065b42, 0x8240823e, 0x85352005, 0x8d232092, 0x0a956958, 0x57822320, 0x3220638d, 0x8207e641,
0x206c8c66, 0x22838332, 0x8602000a, 0x003c226f, 0x8f4b181b, 0x22678e10, 0x8235013b, 0x20618211, 0x843a830a, 0x0a1e223f, 0x054d5e1e, 0x28206582,
0xc587d882, 0xdb620020, 0x006e2206, 0x20578450, 0xe94b1825, 0x4559940e, 0x01430517, 0x845d8a05, 0x062d435a, 0x14237982, 0x180a141e, 0x2508ff44,
0x005a0064, 0x1342000f, 0xad4e1805, 0x06075309, 0x82064377, 0x285021b0, 0x1422a582, 0x4a843246, 0x44141421, 0x3f850b43, 0x9f831920, 0x2008eb70,
0x07495333, 0x37231522, 0x8f460b82, 0x0a0a2105, 0x42824584, 0x2b19488a, 0xff2108d7, 0x248982e2, 0x00230046, 0x06a36300, 0x46052449, 0x51840705,
0x15231522, 0x5a24a386, 0x0a280a0a, 0x2820e884, 0x41053541, 0x282005a4, 0x240c2d43, 0x00020000, 0x20578414, 0x2057825a, 0x2059a527, 0x92698227,
0x0605425d, 0x1b43608d, 0x82002006, 0x006e2700, 0x00030014, 0x3d823500, 0x146e6e23, 0x08774e14, 0x46006422, 0x08fb1619, 0x6e7bcb87, 0x35232309,
0xcf463723, 0x84322006, 0x0a3c28ba, 0x0a143c0a, 0x4d1e1e0a, 0x0a21084d, 0x200f821e, 0x82ed820a, 0x04002152, 0x5383cf84, 0x1d001926, 0x25002100,
0x9847d382, 0x21f01806, 0x3523210f, 0x8f835983, 0x04823320, 0x48824f84, 0x5e830785, 0x140a1422, 0x12825a85, 0x4605d641, 0x6382061b, 0x5a246a82,
0x0b005a00, 0x0b03db18, 0x2205db41, 0x46272315, 0x0f8206ff, 0x82072321, 0x825020ed, 0x4502823c, 0x14220a73, 0x1483460a, 0x1420cf82, 0x41053b44,
0x13200783, 0x088fa918, 0x8308a74e, 0x18502045, 0x820a27a7, 0x29ef83f6, 0x0000645a, 0xff1e0002, 0xb74800e2, 0x85398205, 0x09577bcd, 0x74830f83,
0xb882d482, 0x22086b7f, 0x710a321e, 0x6422084f, 0xc1843c00, 0x08d19618, 0x0861e418, 0xe741b782, 0x08117a05, 0x0a204382, 0x2305e04f, 0x3c281e0a,
0x1e204385, 0x50204982, 0x18062347, 0x8409cbb1, 0x2335213b, 0x470a5f47, 0x2c82055a, 0x1120b38a, 0x66095343, 0xed4108e4, 0x0ab94806, 0x481e1e21,
0x7f5c08b3, 0x0583480a, 0x51370021, 0x8d4e0db5, 0x0c754808, 0x200b6f48, 0x065b7600, 0x21533f85, 0x20439605, 0x21c58417, 0x4b8c2315, 0x14228b82,
0x518b0a0a, 0x0a200e82, 0x032ed783, 0x64001e00, 0x78005000, 0x0b000700, 0x57180f00, 0xa171097f, 0x4a0a2008, 0x094a080b, 0x00002409, 0x82280002,
0x00462337, 0x834e0082, 0x05b14a0b, 0x31821e20, 0x8207004a, 0xe2ff2327, 0x6a824600, 0x09000327, 0x013b0000, 0x06a54915, 0x82143221, 0x1e142682,
0x000a0a0a, 0x204b8201, 0x08175114, 0x21084b43, 0xba412335, 0xcba01807, 0x82282008, 0x0e934f47, 0x2305e741, 0x00321414, 0xd7414782, 0x833a1905,
0x08c25308, 0x82462321, 0x820a206c, 0x2828226c, 0x077f5a32, 0x5a202b83, 0x15207582, 0xad18f384, 0x4d460853, 0x84502009, 0x430a2076, 0x0a2006a4,
0x0a223984, 0xfb83140a, 0x0b216787, 0x05bf4200, 0x50057157, 0x0b8205e7, 0x1e233526, 0x1e28280a, 0x0a216f84, 0x085d603c, 0x2752bc82, 0x82502006,
0x000f2277, 0x4b798217, 0x014205f7, 0x33372208, 0x82458335, 0x827c843f, 0x20028241, 0x47e3840a, 0x2748060b, 0x82462008, 0x08635b43, 0x2321b584,
0x202f853c, 0x20718328, 0x0b0f4146, 0x0d5b8518, 0x22063347, 0x70503335, 0x28210906, 0x20008214, 0x0b1b411e, 0x0ae33a19, 0x0a435f18, 0x1d6fdd84,
0x213e8207, 0x44760a1e, 0x411e2005, 0x49420e17, 0x84352006, 0x233525d9, 0x33152337, 0xb64ac082, 0x1e1e2105, 0x3c230782, 0x820a1e14, 0x000921cb,
0x00213882, 0x21cb845a, 0xfb6f0017, 0x55481805, 0x0c455007, 0x17421720, 0x079b420a, 0x2d690720, 0x8a372006, 0x82c28207, 0x05434696, 0x7354de84,
0x08cb4105, 0xbe850e82, 0x2205d744, 0x821e0a1e, 0x0a14222b, 0x83078214, 0x00022690, 0x00ecff28, 0x091f4e3c, 0xbb82fb82, 0x61231521, 0x3583066c,
0x0020b682, 0x00212782, 0x20278232, 0x08ff425a, 0x91502320, 0x20278505, 0x2427895a, 0x001e001e, 0x63018250, 0xee5f05af, 0x8323200d, 0x1e4621c9,
0x96827d82, 0x6d798782, 0x07334408, 0x64236a82, 0x59002800, 0x8c180563, 0x7d4b08b1, 0x1e0a2306, 0xfb5d1414, 0xff142405, 0x826400e2, 0x0019228f,
0x1f37461d, 0x460f2f46, 0x71820f2b, 0x71820320, 0x4f820020, 0x03008222, 0x13227982, 0x45490000, 0x05cb4105, 0x85843720, 0x3c23152a, 0x14140a0a,
0x3232140a, 0x0a200582, 0x4405254e, 0xd3410953, 0x5e3f8305, 0x332105d1, 0x46e98215, 0x0b820667, 0x48233521, 0x3c21053d, 0x82f3820a, 0x28142135,
0x14214882, 0x47458514, 0x634105fc, 0x075f4605, 0x17000722, 0x09419f18, 0xb37a0720, 0x23152108, 0x46204983, 0x32218983, 0x2047860a, 0xd349185a,
0x860a2008, 0x46002343, 0xcd823200, 0x230ea744, 0x1e140a14, 0x2d82c182, 0xf3481e20, 0x050f4405, 0xdb4e6420, 0x05974e0b, 0x23230582, 0x820a0a1e,
0x8330842d, 0x47328460, 0x5a2108b3, 0x20db4e00, 0x2320b382, 0x14204783, 0x2008db4e, 0x247f8232, 0x321e1e28, 0x4efc8214, 0x06260edc, 0xe2ff0a00,
0xb3825a00, 0x2f235787, 0x43003300, 0xf7820a0d, 0x870a374f, 0x5992185b, 0x05f54407, 0x012b1524, 0x4b4f1533, 0x24bb820a, 0x1e1e141e, 0x436f841e,
0x584f08f7, 0x08044d0f, 0x00820020, 0x87820320, 0x8582f620, 0x374f6e20, 0x0927411f, 0x200c7546, 0x0562413c, 0x220b7646, 0x180a0a64, 0x82085371,
0x82642061, 0x000b23e5, 0x8347001b, 0x09674e06, 0x35333522, 0x4208515c, 0x282106ed, 0x05c54614, 0x4e0a1421, 0x1e2006b0, 0x0de7fe18, 0xb74e6420,
0x204d9008, 0x0d754f15, 0x2005774f, 0x0cab4e46, 0x0a192820, 0x50190b8f, 0x23210cbd, 0x05045032, 0x7a836e84, 0x04217684, 0x05174e00, 0x13003c22,
0x2006b544, 0x0b2d5d00, 0x82231521, 0x15332301, 0xc684022b, 0x40432320, 0x23152205, 0x18fd823c, 0x830a86cc, 0x05af4449, 0x0a225787, 0x96845a0a,
0x5f820020, 0x00000022, 0x871c8b4f, 0x148b4f54, 0x2005744a, 0x50478300, 0x13200a8b, 0x44064743, 0x07210849, 0x05cf4f33, 0x21412720, 0x08cc5b09,
0x94830a20, 0x00249e85, 0x0a000500, 0xb5418f8e, 0x53458312, 0x95860721, 0x180a1e21, 0x8408dfa4, 0x4297854f, 0x03200503, 0x20064341, 0x098d4a28,
0x200c6f5a, 0x06454123, 0x614e2320, 0x977b1805, 0x0f34410a, 0x26091f49, 0x0027006e, 0x5031002d, 0xe3432975, 0x11ac4f0c, 0x1e20be82, 0x5006764f,
0x50210f7f, 0x06cb420a, 0x7b83c787, 0x697f2b20, 0xa6751805, 0x1a87500a, 0x23207b82, 0xf5502982, 0x4367831f, 0x214208b1, 0x51738706, 0x2f200563,
0x1720efa9, 0x51062b47, 0x37191403, 0x6c510c9f, 0x0a0a220e, 0x20008200, 0x06b34104, 0x4f185020, 0xeb5b08fb, 0x20e69a06, 0x22e48315, 0x82371533,
0x35172122, 0x20054d76, 0x0fe35150, 0x7c84df82, 0x4705e343, 0x23430abe, 0x221e8208, 0x87000a28, 0x076b417f, 0xf9a93320, 0x45072f43, 0xeb4106cf,
0x677f1811, 0x130a5208, 0x14824620, 0x7f891e20, 0xaa077741, 0x07994b7f, 0x32217f98, 0x42f7830a, 0x8a5205db, 0x20938510, 0x051b4600, 0x41006421,
0x3723097f, 0x41003b00, 0x93442983, 0x07864105, 0x8a418a83, 0x82ee8416, 0x828e8291, 0x11904102, 0x28201785, 0x83522682, 0x006e2208, 0x05275111,
0x095d4d18, 0x8305e755, 0x0bd14566, 0x450a8f52, 0xd25207d4, 0x42502008, 0x002106ed, 0x06e34f00, 0x3c005024, 0x57831900, 0x3b491720, 0x0e155305,
0x65456182, 0x0a322107, 0x44415888, 0x82588809, 0x0a0a21a9, 0xec215384, 0x4d538300, 0x4f8e07c7, 0x2f531720, 0x253d8218, 0x00030000, 0x3f83ff14,
0x1522eb83, 0x71532500, 0x20418313, 0x06736c35, 0x20050744, 0x0ebb5335, 0x1805e442, 0x210ae069, 0xf587640a, 0xf9825f82, 0x50005023, 0x07bf6200,
0x53085074, 0x27200bd1, 0xb842a58c, 0x20e98805, 0x08f75650, 0x3c20ab85, 0x93424b99, 0x08384107, 0x4b8e3220, 0xf7434a82, 0x05675406, 0x8f7d6420,
0x4b99940a, 0x73540793, 0x07dd430c, 0x79540a20, 0x56ed8205, 0x53aa056f, 0xd14bf190, 0x8357820b, 0x0a1e2453, 0x8f000500, 0x41212053, 0x794513a3,
0x20558307, 0x0f4b4135, 0x8b09b246, 0x05b346ae, 0x1e000222, 0x22069b49, 0x551b000b, 0x4b850d31, 0x2009b748, 0x0537463c, 0x5509e142, 0x0a210519,
0x09b7481e, 0x50204b83, 0x55088f51, 0x57590c7f, 0x23352205, 0x17491837, 0x828c8308, 0x066255e8, 0x0e825a20, 0x51141421, 0x17200f4b, 0x0e653919,
0x2e413d89, 0x20848307, 0x05dc7f14, 0x5022cb85, 0xf94f3200, 0x0ad35505, 0x88011d21, 0x860a2075, 0x5a0a206f, 0x674c05e3, 0x053f5205, 0x1720af8c,
0x860a3d59, 0x867285f9, 0x054a413f, 0x51030021, 0x9f5808fb, 0x0a735607, 0x85076158, 0x4528203f, 0xb185060e, 0x7f871420, 0x62005021, 0x13200523,
0x200d7d41, 0x06c94835, 0x08434a18, 0xe749b887, 0x86042005, 0x845a2077, 0x050749eb, 0x3d20798a, 0x9c18f082, 0x41860795, 0x4387b083, 0x4b653c20,
0x90052008, 0x0e054247, 0x4d5b8783, 0x410b8307, 0x5084090b, 0x21055057, 0xdf450a5a, 0x090b5605, 0xd3564620, 0x37002106, 0x821bce56, 0x07b94250,
0x82112f57, 0x571e2052, 0x28240f34, 0x000a460a, 0x20073757, 0x0a375732, 0xab46659e, 0x20698f0b, 0x0697413c, 0x6d920a20, 0x0a228382, 0xa7570700,
0x002f2410, 0x58370033, 0x57182103, 0x7d8b07fb, 0x05703520, 0x58142005, 0xb6680d1b, 0x20188209, 0x8289910a, 0x83f982a3, 0x895a2025, 0x003c28ff,
0x0021001b, 0x57290025, 0x15202371, 0x57092749, 0x0a210fd3, 0x5274820a, 0x2820059b, 0x8308d857, 0x0000230f, 0xfb860500, 0x6b886420, 0x6da32d20,
0xf7793520, 0x51152008, 0x1e2205fb, 0xe7570a0a, 0x080c700d, 0x2006334f, 0x05ec571e, 0x4b076750, 0x6427079f, 0x15000f00, 0x5c001900, 0xb75706e7,
0x1a5f1917, 0x06175308, 0x28285023, 0x055b441e, 0xc5576783, 0x05e54a0c, 0x23059f56, 0x006e005a, 0x20057959, 0x2973572f, 0x57075743, 0x7118127b,
0x81570c04, 0x5bda840f, 0x3220077f, 0x034fd584, 0x8423200d, 0x067b55dd, 0x820e6557, 0x19322059, 0x5708103e, 0x17232db3, 0x8e231533, 0x6249824d,
0x0a2005b7, 0x5a05b357, 0x8b4a05df, 0x415a2007, 0x835a0f71, 0x0509580d, 0x91071747, 0x05915259, 0x4625ad89, 0x000a780a, 0x08775c05, 0x4807cd41,
0x4a18056b, 0x8b180869, 0x6758080d, 0x09b15508, 0xaf851e20, 0x4b056f58, 0x124108d3, 0x230c820c, 0x000a1e0a, 0xcb586788, 0x48212007, 0x679606d3,
0x83079943, 0x48c98e6b, 0x29410838, 0x828b820e, 0x07b74a67, 0x43092b41, 0xe3700687, 0x06874908, 0x20050f60, 0x08324f35, 0x8e071943, 0x08ba7a6d,
0x920a0a21, 0x820a20d7, 0x00002271, 0x0e535903, 0x59170021, 0x974b1c51, 0x280a2106, 0x590c4d59, 0x0020124c, 0x05200082, 0xf3185b86, 0x29200967,
0x201f7953, 0x06fb4c37, 0x14206793, 0x90051548, 0x461e206c, 0x01200727, 0x20067f4f, 0x08895c64, 0x85182320, 0xe77609d3, 0x08475608, 0x550a0a21,
0x43820aa3, 0xd5884620, 0x8d49dc82, 0x00002105, 0x25057f65, 0x0050006e, 0x5943001f, 0x07714f05, 0x7308917d, 0x282009c5, 0x55849b82, 0x0a0a5a23,
0x095e4550, 0x4105ff44, 0x4f8705e3, 0x7f4f6420, 0x51352005, 0x6b670503, 0x84b58a0e, 0xfb4d1819, 0x83588209, 0x460a2147, 0xcb86bc8f, 0x2008c158,
0x5387180a, 0x49002008, 0x5a2206ef, 0xd35a6400, 0x60cb8208, 0x23210cf3, 0x05b86f35, 0x82066145, 0x5a23200d, 0x788211d9, 0x2707dc5a, 0x1e0a280a,
0x0007000a, 0x2005c354, 0x22578a78, 0x52270023, 0xf3480ea9, 0x07df430a, 0x8e078543, 0x09904c63, 0x32206a8a, 0x6d836b82, 0xff226f85, 0x9b5b00ec,
0x001f210b, 0x1f476f98, 0x076b480b, 0xc0426f8b, 0x20698206, 0x0576490a, 0x2205b65b, 0x82460a3c, 0x051d4c70, 0x4f420220, 0x516e2006, 0x2e6b062d,
0x085d440e, 0x82080744, 0x0ca55867, 0x4110a441, 0x322106bb, 0x086a420a, 0x8408a14b, 0x5b0a20f2, 0x0020067b, 0x6e260082, 0x3d006e00, 0x595e4100,
0x05474108, 0x820e0f42, 0x17414283, 0x35252f84, 0x35013b23, 0x516f8223, 0x0a870a1b, 0x180c4342, 0x870b54a6, 0x0a4c4220, 0x90820a20, 0x41086f53,
0x3522050f, 0x9b833900, 0x70181520, 0xc94e0a59, 0x48f41805, 0x0ce95d08, 0x4c18a982, 0x172008d1, 0x7b433382, 0x420a200d, 0x605008d1, 0x7a918508,
0x23550a77, 0x201f8205, 0x0663500a, 0x6400ec23, 0x428bb800, 0xda18078b, 0x214108bd, 0x0719410a, 0x96074045, 0x2016838a, 0x085b745a, 0x35228b83,
0xfd423900, 0x4f23200a, 0x294207e3, 0x794e180b, 0x0cb74108, 0x15231526, 0x32231533, 0x1741dc82, 0x4496850f, 0xb34205e3, 0x08f2510a, 0x14820a20,
0x540a0a21, 0x8221087b, 0x2b491900, 0x4237200a, 0x058805b1, 0x20110345, 0x0ad34235, 0x410bbb64, 0x1d451ba1, 0x41948208, 0x32201619, 0x590abb4b,
0x82200577, 0x5e060356, 0xfd82178d, 0x5f05cf46, 0x44840a0f, 0x5f068341, 0x8c200517, 0x0a1fce18, 0x2005f758, 0x19e35e6e, 0x210e5d5f, 0x3c820a0a,
0x47850a20, 0xcf427820, 0x5b9b8906, 0x9d940557, 0x2007eb5f, 0x9da38237, 0x21b0849d, 0x474d0000, 0x005a2405, 0x550f005a, 0xbf610eb5, 0x05e36606,
0x84076b53, 0x06c25c53, 0x8405f550, 0x504621aa, 0x0a201383, 0xc754a982, 0x834a1809, 0x08931807, 0x8733200d, 0x210783a1, 0xd55f0a5a, 0x280a210f,
0x1e204882, 0x092f5c19, 0x6006eb56, 0x3f8a168f, 0x67091260, 0x5a2009af, 0x2320d182, 0x4f15c960, 0x498a0fdb, 0x60099758, 0xe44f0a65, 0x07bf4a08,
0x0837df18, 0xfe181520, 0x2b61093f, 0x05bf420c, 0x8206e956, 0x44028349, 0xed8510db, 0x5a221a82, 0xdb57000a, 0x41502009, 0x1f200689, 0x1144bb99,
0x10414107, 0x4105f042, 0x50200646, 0x00227784, 0x5d830003, 0x50005a22, 0x2007b169, 0x097d7433, 0x5a183520, 0x15280a0e, 0x15233527, 0x35331537,
0x720a5e44, 0x4a4c057a, 0x831e2008, 0x4a1e8209, 0x5a200867, 0x20083756, 0x2db95537, 0x43203d55, 0x544c08ba, 0x05644209, 0x46209d86, 0x2306104e,
0x00040000, 0x2205bf5f, 0x4d0b0064, 0x0362062d, 0x09b65910, 0x200a0d62, 0x21cd8214, 0x5e820a14, 0x140a2823, 0x05164d32, 0x2208e366, 0x4d170028,
0x2f5f0911, 0x33352109, 0x23214982, 0x209b8350, 0x208d831e, 0x82058414, 0x830a203f, 0x4f142047, 0x5a2009ff, 0x6507635b, 0x438f0723, 0x8c09676b,
0x844a824d, 0x06154e95, 0x14209c82, 0x250a9758, 0x00f6ff1e, 0xff53006e, 0x0a575b0b, 0x2105c965, 0x12832315, 0x0a219b83, 0x05bb5e28, 0x33480a20,
0x23068405, 0x0a0a0a46, 0x22067b62, 0x4e32005a, 0x96180957, 0xbf4b09a4, 0x2448820a, 0x23353337, 0x82038207, 0x4514204f, 0x3c2206d1, 0xf5820a0a,
0x21059d41, 0x18820a0a, 0x1c826583, 0x000a2822, 0x2008f775, 0x225b8250, 0x181f001b, 0x93093d5e, 0x185b835f, 0x8308a09f, 0x320a2248, 0xe38f181e,
0x20588509, 0x05174332, 0x4f09736c, 0xaf630c09, 0x35da180d, 0x0f756c09, 0xa7820a20, 0xe34f1e20, 0x82ac8205, 0x82502008, 0x0a322403, 0x6c00143c,
0xeb5608cf, 0x11c34c05, 0x3522fb82, 0xcb4c3723, 0x83332009, 0x6c072065, 0x994210d9, 0x07104208, 0x8209025e, 0x1e0a247c, 0x52280a32, 0x5a2009ef,
0x490abf55, 0x3520088f, 0x33216985, 0x066f4115, 0x14235183, 0x420a1414, 0xd75d056a, 0x1e502108, 0x45056741, 0x575605b7, 0x19134105, 0x84059144,
0x5e352051, 0x96820e3d, 0x5988ab84, 0x11823c20, 0xa6832820, 0x76081341, 0x5d830593, 0x860da74f, 0x833520a9, 0x4123205d, 0xb0660e6b, 0x41468205,
0x0a200600, 0x0a220a83, 0x67530000, 0x05075709, 0x410acf50, 0x294e0dc5, 0x4e599009, 0xc7410bf9, 0x205d8505, 0x205f821e, 0x06db5e01, 0x85634620,
0x09e74c05, 0x09df6618, 0x43653520, 0x0d8f650d, 0x0000012c, 0x6e00f6ff, 0x19004600, 0x69480000, 0x73cb1808, 0x3523230d, 0x466e1e23, 0x8b14200a,
0x00142341, 0x5f5f0000, 0x82502007, 0xa1741883, 0x0645540e, 0x710a874d, 0x996e08cb, 0x0a0a210c, 0x2007804d, 0x2208841e, 0x48500a0a, 0x67550546,
0x07934107, 0x42149141, 0x3c201e3b, 0x0aef6f18, 0x6400e224, 0x45185000, 0xf195090f, 0x29631520, 0x20f68808, 0x66a18228, 0x0a200c78, 0x480b435b,
0x23200599, 0x7a086b4b, 0x23200b64, 0xf545f183, 0x0c5b600b, 0x41082b5b, 0xbf460c54, 0x05c37c05, 0x28006423, 0x08f76400, 0x4605eb43, 0x462607c6,
0x5014140a, 0x05820a50, 0xeb440a20, 0x821e2005, 0x09435e38, 0x37824620, 0x5e05c542, 0xb54e0881, 0x09874509, 0x3c23458a, 0x821e140a, 0x824c894d,
0x052f5809, 0x63000121, 0x282205ff, 0xe5840300, 0x321e2324, 0x2f782832, 0x68502008, 0x27672c83, 0x005021b7, 0x5305fb64, 0x33290c16, 0x15333515,
0x140a5023, 0x2300830a, 0x0a3c1414, 0x20066167, 0x06174614, 0x2205a347, 0x50130046, 0x216a079d, 0x23352109, 0x42050d43, 0x33550785, 0x0c074e06,
0x05663220, 0x2064820b, 0x090f6700, 0x19005022, 0x0d7dc618, 0x83083e6e, 0x283525a1, 0x0a1e0a0a, 0x4806796a, 0x664306ce, 0x140a2105, 0x56a55367,
0x276f0783, 0x822f2009, 0x1e296fef, 0x710b6943, 0x2d6f0689, 0x4128200d, 0x306f0a5e, 0x0a1e230f, 0x43430a5a, 0x076b5805, 0x6b575020, 0x0a07612b,
0x6e116b57, 0x502014e3, 0x6e05b365, 0x2b200b03, 0x18259156, 0x560719b7, 0x8a561c8d, 0x5ddc820d, 0xcb4208f7, 0x0bb96905, 0x19502320, 0x08495d05,
0x750a0a21, 0xec4f0577, 0x42322005, 0x4c1805df, 0x0426085b, 0xecff1e00, 0x01825000, 0x6c083f4d, 0x1d6711ff, 0x49272005, 0x6c580547, 0x05cb4605,
0x14141e23, 0x230f8328, 0x28321e0a, 0x46200082, 0x22071b4f, 0x4b6e005a, 0x272406ab, 0x00002b00, 0x6d1faf4b, 0x272307e9, 0x4b231533, 0xaf840fbb,
0x0e806a19, 0x3e4b0e84, 0x01002b08, 0x00001e00, 0x46003200, 0x6b840300, 0x141e1523, 0x574e1846, 0x82502009, 0x51112017, 0x618208d9, 0x1907f643,
0x5308270f, 0x0a2006cf, 0x09bb7219, 0x08236918, 0x09378c18, 0xa284358a, 0x54141e21, 0x37890806, 0x6b824620, 0x19670b20, 0x2335230b, 0x0084140a,
0x6d823c20, 0x02252783, 0x14000a00, 0x1f7a1800, 0x18372008, 0x250c4597, 0x15022b35, 0x0e7a3c33, 0x222f8205, 0x851e0a0a, 0x1e1e2102, 0xcf7ae382,
0x05af6d09, 0x5f853985, 0x460a1e25, 0x48461414, 0x5f820647, 0x11798783, 0x7e461806, 0x85232008, 0x8257848b, 0x6b14202d, 0x8f83075b, 0x0a73a618,
0x08a1ee18, 0x5f185f82, 0x2820080d, 0x3882c382, 0x6d0ceb7b, 0x4e18059d, 0x5318085f, 0x0a25088d, 0x280a1e14, 0x20ef8214, 0x0581433c, 0xbb860020,
0x099fcc18, 0x0a21b984, 0x05a37d28, 0x1f833220, 0x2205cf7b, 0x18170050, 0x4708a347, 0x23220979, 0x01823315, 0x21067b6d, 0xa66d0a14, 0x850a2008,
0x181e2000, 0x20091f4e, 0xd76a1850, 0x4a5d180d, 0x1e232108, 0x20095647, 0x21c68250, 0x99851e0a, 0x0d97e718, 0x6d83c988, 0x25082f65, 0x35233533,
0x7e450a23, 0x22368305, 0x561e2832, 0xdf8b0eca, 0x857a0920, 0x23152109, 0xae82df82, 0x32144624, 0xa3890a28, 0x08fb4118, 0x0b6aa318, 0xd4821e20,
0x97480282, 0x18ac8305, 0x41118386, 0xe318050f, 0xd9480845, 0x43c68305, 0x1e22050b, 0x3d843228, 0xde830a20, 0x85141421, 0x001e223f, 0x0b837e50,
0x15333528, 0x14284623, 0xcd820a3c, 0x42186482, 0x476b0e5f, 0x82238206, 0x1414268d, 0x141e2828, 0xbf6e181e, 0x180f200c, 0x230ecf76, 0x28153315,
0x2005dc42, 0x207a841e, 0x18768314, 0x24080f50, 0x00170046, 0xa17a181b, 0x068f6c0c, 0x2305f948, 0x33152337, 0x7508496e, 0x0a200557, 0x92439382,
0x320a2107, 0x37427a82, 0x052b4306, 0x6b370021, 0x6b18055c, 0x502008ca, 0x22059242, 0x821e321e, 0x05e96bab, 0x20054356, 0x8bf58250, 0x1049427b,
0x2008bb74, 0x074d420a, 0x4c141421, 0x0a2008ff, 0x7b89cb82, 0x4b844620, 0x3f4d0020, 0x0a456405, 0x20054f54, 0x059e4323, 0x35824682, 0x45050745,
0x37410516, 0x213f8308, 0xbb83001f, 0x7718f683, 0x96180996, 0x332008e8, 0x3c23d584, 0x180a0a0a, 0x180a8555, 0x4408daa0, 0x002008fb, 0x087f5c18,
0xf34e5020, 0x94252006, 0x055c4155, 0x59661520, 0x4f5b880b, 0xf5520602, 0x073c4705, 0x0a206184, 0x00220d85, 0xb8820002, 0x82460021, 0x00032501,
0x33000007, 0x2106dd5f, 0x25821414, 0x4a464621, 0x6341053f, 0x8b3c2005, 0x82272023, 0x142826c4, 0x460a0a32, 0xa79b1846, 0x0050240d, 0x18170013,
0x200dfd50, 0x056b7535, 0x33832320, 0x820a9543, 0x09984360, 0x000a0a23, 0xa7471800, 0x00502108, 0x430c6744, 0x152005d3, 0x8305f544, 0x05574597,
0x2407534e, 0x001e000a, 0x20018250, 0x71491809, 0x067f6208, 0x2009556a, 0x08054337, 0x8405504f, 0x428a8205, 0x77840501, 0x37431420, 0x9f9a1806,
0x07f35308, 0x87053d43, 0x87142031, 0x187389a7, 0x85080d75, 0x822f856f, 0x0a282159, 0xd7886184, 0x09f7e918, 0x201a7544, 0x44a98237, 0xb3561179,
0x0c2b410f, 0x1805254c, 0x7508b16d, 0x35220ca9, 0xff611523, 0x066b4205, 0x42050f48, 0x4e820f08, 0x20087b41, 0xeba81846, 0x4aa7820a, 0xc51807ef,
0xfb500791, 0x244d8205, 0x0a141414, 0x8203830a, 0x0002223c, 0x2001820a, 0x095f7046, 0x5a093752, 0x55460719, 0x20358208, 0x203b861e, 0x063f4946,
0x3b874182, 0x27651720, 0x7c23200e, 0x2f45092f, 0x05c85908, 0x14217d85, 0x0967660a, 0x42052b47, 0x1320053b, 0x21098f47, 0xa5462335, 0x20c98205,
0x46b78223, 0x0a2205a9, 0x0282320a, 0x07824382, 0x2405a745, 0x003c005a, 0x071f4d64, 0x28281423, 0x06bf4564, 0x6e201783, 0x6e21178a, 0x4f7d1914,
0x27d41808, 0x202f8209, 0x23ce180a, 0x84178d09, 0x001e212f, 0x78204783, 0x4208257e, 0x232105a1, 0x053a441e, 0xd2827820, 0x02223f83, 0x27820a00,
0x78004622, 0x82094343, 0x08537ab5, 0x35333524, 0x03821723, 0x134b0a20, 0x180a2008, 0x221100c1, 0x82140001, 0x82322043, 0x000b2143, 0x0acd7818,
0x32152322, 0x64206b84, 0x08cfc718, 0x17206b88, 0xf0182787, 0x78820cff, 0x46152322, 0x21088553, 0xbd180a14, 0x46180958, 0x5a21081f, 0x21ab8500,
0xe1433700, 0x07c24c05, 0x3520b182, 0x2442db85, 0x495a2005, 0x002108df, 0x229f8500, 0x75820046, 0x711807e7, 0x1520095b, 0x82055b45, 0x641e21dd,
0xe7827883, 0x02000022, 0x6783cf84, 0x85081976, 0x23152131, 0x20064f46, 0x0554761e, 0x14219f85, 0x089b740a, 0x9d825020, 0x18055b48, 0x4808676c,
0x1182081d, 0x5e822820, 0x08424a18, 0x420a3c21, 0xa11805d8, 0x458208eb, 0x44004621, 0x44181287, 0xc75a0d47, 0x3c3c2105, 0x0a934618, 0xd7855020,
0x7b691520, 0x0a3c240c, 0x83143c14, 0x323c23d2, 0x34820a0a, 0x08874f18, 0x09206383, 0x0a839618, 0x87472320, 0x1e502305, 0x5388281e, 0x87823c20,
0x37212382, 0x2ef78233, 0x35333523, 0x141e0a23, 0x321e1e32, 0x180a501e, 0x8c08135a, 0x827b8323, 0x22228223, 0x4a281e32, 0xe345051f, 0x18502005,
0x27096f49, 0x14142315, 0x50141e1e, 0x0c0be318, 0x65821f8a, 0x14281425, 0x181e5028, 0x2207a7d7, 0x82460000, 0x09cb5087, 0x15208982, 0x8f829182,
0x3c21e982, 0x050b440a, 0x1e200682, 0x50210382, 0x4a048232, 0x50210a37, 0x7b1e1900, 0x05bf410c, 0x83232721, 0x4639853f, 0x3a84059f, 0x0a141422,
0x85086345, 0x05b74f73, 0x0c704c18, 0xa5183520, 0x14240bd3, 0x14140a0a, 0x0a23e782, 0x821e0a1e, 0x08634f02, 0xaf823220, 0x00000323, 0x05dd4837,
0x46505021, 0x3c20095f, 0x08354119, 0x27245588, 0x3c233533, 0x02828682, 0x82821e20, 0x4a097379, 0xd741072f, 0x09735c07, 0x7c84f784, 0x280a1425,
0x83142828, 0x095f4900, 0x07423c20, 0x63c21806, 0x0905450c, 0xb3492d84, 0x21e78307, 0x7946003c, 0x33152208, 0x225b8235, 0x491e2315, 0x06820519,
0x18283c21, 0x210ca37b, 0x4718003c, 0x23220903, 0x7d822315, 0x820a3c21, 0x3214225a, 0x83e3890a, 0x0a0545af, 0x27821520, 0xbb823520, 0x23353725,
0x770a0a15, 0x282306c6, 0x410a4614, 0x0a200535, 0x200e7f47, 0x82bd8403, 0x05754285, 0x09821520, 0x0a233523, 0x0826433c, 0xa7413883, 0x0050210b,
0x53051f56, 0x2f8407e1, 0x6f821520, 0x85233521, 0x4a142071, 0x6d82052e, 0xd5825020, 0x81463c20, 0x08ab4306, 0x4608bf42, 0x142207c6, 0x00821428,
0x0a145023, 0x08eb4b14, 0xc7822388, 0x20825f84, 0x82142821, 0x501421f4, 0x08df5918, 0x18054f43, 0x270aad52, 0x23271533, 0x323c3315, 0x24071a53,
0x280a1450, 0x0deb491e, 0x0cdf5c18, 0x1e23e985, 0x823c0a0a, 0xd8471803, 0x0c674308, 0xf9422f83, 0x23352108, 0x2321b182, 0x07ff420a, 0xfd423220,
0x9b551806, 0x056b4209, 0x234c1320, 0x22398208, 0x82173315, 0x25978336, 0x460a1432, 0x1d45140a, 0x0a3c2205, 0x203d8232, 0xafe9181e, 0x071f4d09,
0x450e5b4e, 0x3c2106fc, 0x189d8214, 0x26087792, 0x00500050, 0x45190015, 0x152006c9, 0x4308e077, 0x1521056a, 0x206f8227, 0x3a71183c, 0x22718608,
0x82140a32, 0x280a2200, 0xbb55180a, 0x003c220c, 0x05a54607, 0x22058342, 0x82353337, 0x0a3221dd, 0x83055e42, 0x0c7b4832, 0x4f089345, 0x37270729,
0x14331523, 0x820a3c0a, 0x22ca8263, 0x821e1e32, 0x83282005, 0x000322c9, 0x0e536e0a, 0x09077d18, 0x2105ef42, 0x3b820733, 0xbb823720, 0x820a4621,
0x20e68494, 0x2109831e, 0x0e841e28, 0x14205182, 0x081f8519, 0x4f09eb47, 0x214a0a17, 0x14502408, 0x44325014, 0x43440c7f, 0x08775a05, 0xb1676482,
0x180a2006, 0x2108d159, 0x77821414, 0x4e141421, 0x7b4f0626, 0x07134508, 0x09cfda18, 0x460a5023, 0x12ab4a46, 0x2409f348, 0x23353307, 0x0803413c,
0x03411e20, 0x33581809, 0xe7651809, 0x06ad410c, 0x3523352a, 0x15331533, 0x15233507, 0x21198983, 0x322308c7, 0x82140a14, 0x0a0a2102, 0x4605b04c,
0x17460c6b, 0x239f8209, 0x14320a0a, 0x5021c583, 0x0c8b4c3c, 0x0fc74f18, 0x14281426, 0x0a321432, 0x3520c393, 0x08af2e19, 0x2405b543, 0x32321e1e,
0x055b5e0a, 0x61195020, 0x50200ec3, 0x5506a348, 0xe844084f, 0x82c18c09, 0x18c087b6, 0x200c4be1, 0x7b5b1800, 0x82438e0a, 0x41118249, 0x3c210e09,
0x20498a14, 0x474a850a, 0x0a2205eb, 0x4b826400, 0xa3497820, 0x3c0a2307, 0xff86783c, 0x67481783, 0xb06d1807, 0x33352408, 0x483c2315, 0x0a220597,
0x5482640a, 0x2205ab46, 0x821e0001, 0x00322147, 0x1e224788, 0x47921414, 0x2009e541, 0x0b2b5115, 0x4a05957e, 0x8f850503, 0x76188220, 0x33200cc3,
0x23050f49, 0x820a1e3c, 0x278d6e82, 0x13975118, 0x57829f87, 0xf355f782, 0x49578d05, 0x332705ac, 0x141e3335, 0x183c1e0a, 0x28070b58, 0x00010000,
0x00e2ff1e, 0x09834a32, 0x3f83c782, 0x0973dc18, 0x07000324, 0x07680000, 0x14322507, 0x6414143c, 0x19067444, 0x1809c374, 0x821533de, 0x180a2066,
0x220927e1, 0x445a0032, 0x33240a29, 0x23352315, 0x2105a642, 0xe382500a, 0xef422783, 0x4fb3880f, 0x35220555, 0x35821533, 0x33152725, 0x820a3c35,
0x265a8286, 0x0a0a280a, 0x411e141e, 0x1e2305de, 0x82280a0a, 0x270619bc, 0x00502408, 0x780d0050, 0x6b1909e9, 0x35240937, 0x17233533, 0x33227e82,
0x42430715, 0x0d841805, 0x511e2008, 0x5082052c, 0x55829182, 0x0a143222, 0x1e209c82, 0x14211682, 0x20688214, 0x461f8428, 0x6f4507fb, 0x00462105,
0x82051f41, 0x25618299, 0x28281423, 0x0082140a, 0xc3444620, 0x20238505, 0x22238450, 0x1800000b, 0x71075b4b, 0x298505bd, 0x28145027, 0x00143214,
0x20b78201, 0x18b18200, 0x2208b743, 0x18145050, 0x20092f4b, 0x099b4828, 0x50225c82, 0x874f0050, 0x845b8508, 0x257f8459, 0x141e1414, 0x00825014,
0x0abbe418, 0x08f7c018, 0x086d4b18, 0x200e0b4b, 0x83e7823c, 0x223382e0, 0x820a0006, 0x00782105, 0x17203383, 0x2009376d, 0x08f94837, 0x07231522,
0x37200b8a, 0x24052345, 0x35231523, 0x3fe91823, 0x23078307, 0x1e0a0a32, 0xfc500282, 0x321e2105, 0x46180c84, 0x6e850865, 0x74852820, 0x82180a20,
0x3220085c, 0x2009f745, 0x24ef8282, 0x0027001f, 0x08974d2b, 0x089bb118, 0x20079948, 0x20118235, 0x22758235, 0x84153307, 0x33372409, 0x82282335,
0x82142062, 0x0a0a2600, 0x0a0a0a28, 0x23608232, 0x280a140a, 0x20060a7b, 0x06bf6328, 0x1e841982, 0x200bcf79, 0x246f82aa, 0x003b0033, 0xdf76183f,
0x05a94709, 0x8705f945, 0x063f416b, 0x840a1746, 0x2733221f, 0x20848515, 0x21838227, 0x42182864, 0x8184087b, 0x0e821e20, 0x2005db6c, 0x06bb4714,
0x1e0a1422, 0x240b4b52, 0x281e0a0a, 0x05564632, 0x3608396b, 0x00060000, 0x00ecff0a, 0x0078008c, 0x00430033, 0x0051004b, 0x515b0057, 0xd7680a27,
0x47631808, 0x07164608, 0x0d0f9418, 0x17201582, 0x088a7f18, 0x2320a684, 0x83073141, 0x2b352317, 0xb4821501, 0x82373521, 0x49322023, 0x28210665,
0x0836590a, 0x2305a941, 0x141e2814, 0xa685b184, 0xe1821e20, 0x1e480a20, 0x0a642405, 0x7b0a320a, 0x9352082c, 0x3c142106, 0x14211c82, 0x22178214,
0x44281428, 0x0d830503, 0x000a5a22, 0x084f6418, 0x7f516420, 0x82002008, 0x05c04579, 0x23083d6d, 0x5a141e3c, 0x32276f84, 0x46460a0a, 0x83460a50,
0x503a828e, 0x3b830673, 0x4207bb53, 0x2b5d087d, 0x4823200a, 0x0a260553, 0x140a0a1e, 0x134b5046, 0x830a2005, 0x181e2086, 0x88087d54, 0x82b42087,
0x00212687, 0x003d0039, 0x45e31800, 0x6b232008, 0x352009dd, 0x420ce24e, 0x6f8f0bf7, 0x18328221, 0x820aa055, 0x0a2823fa, 0x81840a6e, 0x86a09621,
0x0a502581, 0x28323232, 0x20052b41, 0x4685180a, 0x90928b08, 0x0bd65fdf, 0x22080d54, 0x82073523, 0x66481895, 0x0a462208, 0x82e88214, 0x26498305,
0x0a0a0a32, 0x18284646, 0x20099ff6, 0x22df8264, 0x4223001f, 0xb11809d5, 0x5749128a, 0x20538305, 0x2b4e1814, 0x460a2108, 0x22059a4d, 0x84500a14,
0x830a20d7, 0x0a502359, 0x5a833c0a, 0x2006cf7a, 0x265b846e, 0x003b002f, 0x18000041, 0x480ff159, 0x48590518, 0x35152108, 0x4107a642, 0x15210538,
0x08be5c17, 0x27233522, 0x23200b83, 0x21051343, 0xcf84141e, 0x41530482, 0x14142208, 0xbc7c180a, 0x20148208, 0x054b440a, 0x28209f82, 0x79580a87,
0x18a98205, 0x2008775d, 0x209b8278, 0x08db6e3b, 0xe3523520, 0x84152006, 0x07554107, 0x5d0bdc41, 0x835509a6, 0x20238205, 0x2088861e, 0x05bf6714,
0x2005e542, 0x20768246, 0x056b6f1e, 0x774a9682, 0xc4b31805, 0x308d1808, 0x000a2109, 0x83062341, 0x001f2687, 0x003f003b, 0x09e75643, 0x23246c92,
0x33352335, 0x9905a146, 0x571720ac, 0x9c41060f, 0x67858305, 0x8d82096b, 0x5e420c89, 0x18142006, 0x180c0ed6, 0x470885f6, 0x032805bc, 0xe2ff0a00,
0x50000e01, 0x5f229d82, 0x2b416300, 0x1837203d, 0x6d0bc84c, 0x23200a02, 0x22089c44, 0x84071533, 0x1e1424bd, 0x890a0a0a, 0x821420ac, 0x0853410d,
0x51328c21, 0x0a210854, 0x4f27830a, 0x684105a4, 0x0a64271c, 0x0a46460a, 0x54823c3c, 0x21070043, 0x67441428, 0x82782009, 0x093964df, 0x082f4718,
0xf3623520, 0x1527280c, 0x33273533, 0x825a2335, 0x83322041, 0x21a48390, 0x8c453c14, 0x20058205, 0x208c821e, 0x21038214, 0xb7181e28, 0x96200c8b,
0x7f545b82, 0x82e68306, 0x42332003, 0x5d84065a, 0xe6825020, 0x50141422, 0x14274b82, 0x1e0a4614, 0x82464628, 0x1e0a2411, 0x68005046, 0x642006ab,
0x4a0b2f7b, 0x3b8208d2, 0x47823520, 0x93860720, 0x2b415020, 0x14462206, 0x050a5932, 0x1e208f86, 0x03268b87, 0xe2ff0a00, 0x4b826e00, 0x89432b20,
0x19372005, 0x20087435, 0x45438223, 0xcc460620, 0x09106205, 0x9f433520, 0x43072005, 0x79820e95, 0x6e211882, 0x83ba840a, 0x140a22b9, 0x230c8428,
0x3c1e140a, 0x82069043, 0x8246200f, 0x41068284, 0x088505c9, 0x84069443, 0x140a239d, 0xe383140a, 0x96209782, 0x2f229782, 0x99823700, 0x8205e94f,
0x19152092, 0x420a8b44, 0x50180a1e, 0x1384089f, 0x83067950, 0x20038214, 0x24638435, 0x14143214, 0x21678314, 0x9a82460a, 0x46140a22, 0x8205e366,
0x53462013, 0x32200524, 0x0a21ab82, 0x84958332, 0x066f5905, 0x18141421, 0x20085796, 0xb3e11850, 0x140a2509, 0x46506450, 0x2305a743, 0xdc000000,
0xa583a782, 0x4205a743, 0xca6408cd, 0x052b4408, 0x9d189a84, 0x6118084a, 0x352a0d65, 0x33011d33, 0x15022b35, 0xb1822733, 0x0a3ca022, 0x14419782,
0x08ae4509, 0x9a833c20, 0x3c20a382, 0x4622b284, 0xb3821446, 0x45182820, 0xd282094e, 0xc2821c82, 0x82283c21, 0x41988215, 0x78200647, 0x05789f82,
0x33172206, 0x42018335, 0x948316cb, 0x3b423720, 0x44628306, 0x462205bd, 0x53821e14, 0x84144621, 0x43638206, 0x1e230558, 0x820a140a, 0x460a217e,
0x420ad742, 0x1d20064b, 0x0d459d18, 0x7788ea84, 0x7b823520, 0x84500a21, 0x143c224b, 0x22e9830a, 0x86501414, 0x2466824b, 0x46462828, 0x06e34200,
0xf37fa020, 0x06f35508, 0x1812d246, 0x4508a760, 0x3721057a, 0x05424123, 0x5d455020, 0x053b4906, 0x82064f41, 0x833c20bb, 0x46142062, 0xe5820995,
0x28144624, 0x2f41320a, 0x057f5306, 0x77825a20, 0xc3840720, 0x0a275d84, 0x50142814, 0x53464650, 0x6e2008d3, 0x4309ab55, 0x79830924, 0x14140a27,
0x640a280a, 0x21d18250, 0x5a833c46, 0xbf503c20, 0x84782008, 0x18132033, 0x2409c394, 0x23153335, 0x051a4127, 0x0a321527, 0x141e140a, 0x052c4346,
0x69823220, 0x5020a982, 0xd7653b83, 0x82502005, 0xa759183b, 0x06c3410d, 0x2005cb45, 0x21768214, 0xf1820a50, 0x500a0a22, 0x2205674f, 0x8500e2ff,
0x5123206f, 0x328209a3, 0xc247ac83, 0x0b944107, 0x51463521, 0x0a20069a, 0x46210082, 0x20558314, 0x82008346, 0x08f3720d, 0x490a3c21, 0x82200943,
0x21069741, 0x474a3700, 0x16b64508, 0x29058163, 0x15230723, 0x0a146433, 0xe182280a, 0x8506b467, 0x823c200b, 0x770a20b2, 0x1420053d, 0x23078145,
0x283c320a, 0x09477d18, 0x6b828c20, 0x27002322, 0x2546c782, 0x465a2026, 0x46201307, 0x2016e845, 0x08ff4402, 0xcf856385, 0x51087848, 0x98180524,
0x35220be7, 0xbb551733, 0x47282005, 0x14220541, 0xd6820a1e, 0xdb821420, 0x50141422, 0x8208eb47, 0x0a0a260e, 0x2828323c, 0x082b4a28, 0x1721c783,
0x053d6b00, 0x860bd846, 0x20dc8371, 0x0b604837, 0x23273326, 0x0a3c3315, 0x2205b645, 0x821e0a0a, 0x8c57185d, 0x0a0a2109, 0x28246a85, 0x1450460a,
0x21055441, 0x9f411414, 0x00962109, 0x84072f51, 0x069b41c9, 0xcd852320, 0x57823720, 0x0a643225, 0x83140a28, 0x50142103, 0x4620b782, 0xae42ac82,
0x823c2005, 0x00062644, 0x00e2ff0a, 0x264382b4, 0x002d001f, 0x74390035, 0x172005b7, 0x4c05d94a, 0x89450827, 0x795b1806, 0x8c272008, 0x153721bd,
0x70826682, 0x35013b2d, 0x15230723, 0x2335023b, 0x89461496, 0x0a0a24ce, 0x88501e14, 0x142821d0, 0x0e82d182, 0x11826e20, 0x8208b35f, 0x0a1e2212,
0x21de8632, 0xaf82141e, 0x83281e21, 0x000222e5, 0x20a5820a, 0x229f82aa, 0x4233002f, 0x12730517, 0x5fee8a0c, 0x75180544, 0x8d820d6c, 0x1e5a3322,
0x56050144, 0x5a830599, 0x41083148, 0x3c23060b, 0x483c0a0a, 0xff7a1218, 0x82dc2005, 0x001f267b, 0x00410033, 0x095f4345, 0x2214d441, 0x79153335,
0x1f820781, 0x41087343, 0x27270d2b, 0xb4331523, 0x41501414, 0x28200a1d, 0x2405cf4a, 0xaa0a14aa, 0x08254178, 0x93430a20, 0x4e322006, 0xa2820583,
0xad824620, 0xbc530282, 0x180a2008, 0x200babcc, 0x05b75750, 0x7c827484, 0x83460a21, 0x8350201d, 0x00002a44, 0x000a0008, 0x006e0000, 0x08c77b78,
0x0ba5c118, 0x11f3d818, 0x33072325, 0x50172315, 0xd48206a5, 0x27200b84, 0x1e201386, 0x4a09d843, 0x014e0633, 0x21a98207, 0xcb5b0a14, 0x64642105,
0x2a82c783, 0x2206bb42, 0x82280a1e, 0x82092082, 0x840a2087, 0x09f36c87, 0xbd828991, 0x83058248, 0x23272781, 0x23373335, 0x91833315, 0x15013b23,
0x82858323, 0x011d21b0, 0x77828d82, 0x64830282, 0x41056c44, 0x0b82051e, 0x89850e85, 0xf9420a20, 0x3c0a2205, 0x0832770a, 0x84080021, 0x668c2087,
0x1f200aa3, 0x4406bd50, 0x15210ce3, 0x05135d23, 0x7f8b7b83, 0x33201782, 0x28219b83, 0x05ac415a, 0x59821420, 0x8505a37b, 0x820a207b, 0x500a21ec,
0x21059f4a, 0x8518140a, 0x10820837, 0x8b410020, 0x000a2305, 0x9c1900aa, 0xf34b0b67, 0x2b511807, 0x060d540c, 0x08735118, 0x0b830f82, 0x3721938e,
0x05134133, 0x08f96018, 0x7c833c20, 0x1e208182, 0x2005844c, 0x8675821e, 0x0c9f5f9f, 0x3d6a5020, 0x05154308, 0x08d67218, 0x9e4e0882, 0x08cb4605,
0x6e006e22, 0x0b118118, 0x23152322, 0x74065946, 0x352008c8, 0x20054242, 0x21178207, 0x7f83146e, 0x28052342, 0x0a3c0a0a, 0x5a5a0a32, 0x8208835a,
0x0a0a2257, 0x20758346, 0x9f56193c, 0x7f64200a, 0x7a18086f, 0x76520757, 0x06d94309, 0x0bda5718, 0x59332721, 0x5f8205f3, 0x07845384, 0x780a0a21,
0x60840876, 0xf9831420, 0xd0844620, 0x23190982, 0xa02009df, 0x22064344, 0x45000037, 0x2a44067b, 0x133a4409, 0x18081743, 0x2009fbdc, 0x84508282,
0x0aa3496e, 0xd3822820, 0xfb771420, 0x0a322106, 0x08ec4e18, 0x21089d49, 0x6f48320a, 0x000b2608, 0x0100000a, 0x064f410e, 0x2609eb77, 0x00450041,
0x5f4d0049, 0x6141092b, 0x8637201b, 0x05f741b5, 0x737d2720, 0x0bdd6a06, 0x35230723, 0x410f8333, 0x8c22118b, 0xf2520a46, 0x820a2005, 0x084e5095,
0x41061c55, 0x322413a8, 0x4646460a, 0x2d42d582, 0x0a142405, 0x421e0a3c, 0x002105c6, 0x20cb840c, 0x08bf4104, 0x85073946, 0x005122c9, 0x0add6555,
0x20096860, 0x06684135, 0x4108e541, 0x3b2107d1, 0x07b94401, 0xdf822720, 0xfb41d59b, 0x9b782016, 0x057942da, 0x97101842, 0x20db85dc, 0x06a7414a,
0x0df39b18, 0x67006324, 0xa9416b00, 0x26c34826, 0xc741f19f, 0x48dc2011, 0x322013f5, 0x18065177, 0x4508df4e, 0xd6410506, 0x49282013, 0x28211320,
0x4b30820a, 0xe6410548, 0x05af4506, 0x6e005022, 0x20069356, 0x0887770f, 0xf34b2320, 0x41172005, 0x14201fab, 0x1805e653, 0x4508664b, 0x6e20089c,
0x6e8f1882, 0x0005002b, 0x00e2ff0a, 0x00640082, 0x0611433d, 0x20195120, 0x7451113f, 0x57232008, 0xa01809e9, 0x232008f4, 0x4908316f, 0x23210569,
0x282e8217, 0x3d233533, 0x33152301, 0x20038217, 0x48b18227, 0xb351067e, 0x0a462405, 0x851e0a0a, 0x06304cf9, 0x0a0a1e23, 0x087d7132, 0xbe4e3220,
0x82282008, 0x22298228, 0x820a141e, 0x523185ba, 0x1e21057f, 0x20108232, 0x09636628, 0x2960c34a, 0x64000000, 0x13005000, 0x27521f00, 0x4a232014,
0xbe840b59, 0x53051942, 0xcd430902, 0x05ab4405, 0x090f5d18, 0x4955ff50, 0x875505bf, 0x18322034, 0x21088546, 0x575f0a0a, 0x8296200a, 0x821520fb,
0xc98f18f9, 0x084b5109, 0x50231522, 0x20084951, 0x0a485128, 0x0321e482, 0x21048200, 0x3b828200, 0x0e9d3819, 0x09bb9018, 0x012b1522, 0x4b060d4f,
0x462405db, 0x32141e14, 0x48050042, 0x142105cd, 0x05d6511e, 0x2205a74d, 0x7f6e008c, 0x8f500645, 0x84538310, 0x09f17f57, 0x1808317e, 0x250a5597,
0x0a1e0a3c, 0x1d57140a, 0x22068305, 0x82281414, 0x230482f2, 0x140a1414, 0xf64bc982, 0x500a2105, 0x0839fd18, 0x32260a84, 0x00464628, 0x174b0400,
0x00152108, 0x2006ed4f, 0x0db95133, 0x96851520, 0xbe513720, 0x080f5b05, 0x8405bd52, 0x8246205a, 0x24808267, 0x32140a1e, 0x0943535a, 0x8205ea4f,
0x0a1e210f, 0x6b56ee85, 0x0987414c, 0x4165b359, 0x1d200927, 0x081b4918, 0x6b462320, 0x142e4105, 0x48272321, 0x352605dd, 0x23353327, 0xa54b0a96,
0x14462c08, 0x78140a50, 0x460a321e, 0x5a280a0a, 0x1e2608ae, 0x280a140a, 0x61531e28, 0x054f5006, 0x64007824, 0xa56a1f00, 0x7476180f, 0x05ce4808,
0x23352322, 0x20051853, 0xe697181e, 0x64142508, 0x0a3c0a0a, 0x46200083, 0x12190082, 0x82200a23, 0x4606ef42, 0x1949094d, 0x33352105, 0x46231182,
0x6d140a3c, 0x282305ec, 0x820a0a46, 0x823c2038, 0x560a2004, 0xaa200853, 0x31203b82, 0x2106d54d, 0x524a1700, 0x0d274206, 0x42111c52, 0xed5409ce,
0x35172707, 0x14641523, 0x9d82320a, 0x1421fa82, 0x20098428, 0x06a35a46, 0x12827820, 0x20076a62, 0xf1401814, 0x05085508, 0x820a0a21, 0x1e3c2411,
0x82140a1e, 0x06e751da, 0xcf847820, 0x4d05814f, 0x15201246, 0x510cbf44, 0x194f05df, 0x089c590a, 0x21095c4c, 0x6682280a, 0x2511174f, 0x00820082,
0x85180021, 0xd48607bb, 0x7f413520, 0x70332007, 0x07200b97, 0x64201d82, 0x6421dc84, 0x82c28514, 0x20b4825d, 0x25db8214, 0x50460a14, 0xa6193c46,
0x3c2208f8, 0x67530000, 0x2c012905, 0x5d006e00, 0x6f006b00, 0x095f5d18, 0x44191520, 0xb3180807, 0xe1920850, 0x830d5156, 0x07c94629, 0x58083344,
0x35200af1, 0x4405ad7a, 0x2720083f, 0xf022ab82, 0xa682a014, 0x148c1422, 0x0a200082, 0x82091c41, 0x821420aa, 0x231c84b8, 0xb4140a0a, 0xb7822382,
0x8c201182, 0x2009554e, 0x0671445a, 0x82283221, 0x095950d4, 0x16823c20, 0x18320a21, 0x2309c3b1, 0x3c32140a, 0x32211382, 0x0e574132, 0x7b06f353,
0x96420a03, 0x0d595c05, 0xa3821720, 0x9b821e20, 0x0a281422, 0x1e223f82, 0x0b830a1e, 0x46321e23, 0x05235c32, 0x320a0a23, 0x09bf5d50, 0x5000a02a,
0x29001f00, 0x00002d00, 0x41152f55, 0x232107ba, 0x09537015, 0x14822720, 0x57824620, 0x5a05a043, 0x282005d2, 0x0a24ec82, 0x0a0a5a1e, 0x220ae15a,
0x821e0a1e, 0x820a2000, 0x141e2519, 0x0a000800, 0xfa22bf82, 0x6b826e00, 0x4900412f, 0x55005100, 0x5d005900, 0x00006100, 0x05ba4137, 0x5408e053,
0x9f180868, 0x0a5108a3, 0x20f08208, 0xe4671807, 0x060f4d0b, 0x15824182, 0x17352322, 0x23210f84, 0x20a18335, 0x05556b37, 0x82012b21, 0x82782057,
0x25ad8483, 0x46141e14, 0x18491e0a, 0x32142305, 0x9c820a14, 0x05821e20, 0xd9421e20, 0x82282005, 0x500a211c, 0xaa202884, 0x2208176b, 0x60320a1e,
0x2583074e, 0x3b440a20, 0x0a0a2805, 0x280a0a32, 0x82280a3c, 0x205c824d, 0x21238214, 0xf767143c, 0x24e78206, 0x007800a0, 0x199b423b, 0xb746c682,
0x211b8218, 0xf0821533, 0x90467820, 0x82322005, 0x059e5855, 0x67054957, 0x14220565, 0xc7515a14, 0x320a2105, 0x2006b058, 0x200f8232, 0x82bc830a,
0x661e2007, 0x878205d7, 0x82008c23, 0xfd611900, 0x0b0b7308, 0x18112956, 0x20088641, 0x82278233, 0x826e2081, 0x05a64948, 0x83083c56, 0x0a1e2563,
0x1e781e0a, 0xec4ef283, 0x0a0a2205, 0x6b818328, 0x012008d7, 0x08735f18, 0xff831320, 0x4d0a2a71, 0x232105d3, 0x06314e46, 0x140a3223, 0x833c833c,
0xb7d01866, 0x005a2208, 0xb36c1846, 0x05bb7309, 0xf3183520, 0x3725089f, 0x0a353315, 0x243e830a, 0x0a3c0a14, 0x82048314, 0x823c20a0, 0x721e2045,
0x43830baf, 0x8f05775e, 0x05e24340, 0x35153524, 0xca821523, 0xb7844084, 0x46884620, 0x5f828c82, 0x7f4f0020, 0x224b8308, 0x60190011, 0x115008dd,
0x060f430a, 0x830a2321, 0x8328208b, 0x82048338, 0x3c0a220c, 0x96a6183c, 0x47478207, 0x47830503, 0x15000d23, 0x05697e00, 0x4108dc5d, 0x35210612,
0x62e48223, 0x83820be3, 0x0a1e0a24, 0xe44a281e, 0x205b8205, 0x2052840a, 0x826b823c, 0x20b38203, 0x206b8214, 0x4b431800, 0x51462008, 0x3a5a0941,
0x08245005, 0x08a71719, 0x18096f47, 0x20074541, 0xe84a1814, 0x830a2008, 0x4b0d89ae, 0x32210991, 0x207a8346, 0x211a820a, 0xca820a28, 0x00010022,
0xcb830683, 0x18096347, 0x180c95a4, 0x22081ea6, 0x18233523, 0x4e08a643, 0x0a2106e2, 0x09ef7a3c, 0x7f763220, 0x82142007, 0x184f8356, 0x84087564,
0x0a945e41, 0x21069d45, 0x13821723, 0x1422b184, 0x955f3228, 0x23528208, 0x32140a0a, 0x8209504f, 0x0002214d, 0x64200083, 0x081f6c18, 0x0a036c18,
0x200bae54, 0x09c85435, 0x82353321, 0x2317235b, 0x01193315, 0x8f5d085d, 0x1e0a2209, 0x08d2443c, 0x09a25b18, 0x140a1423, 0x0943451e, 0x13216b83,
0x06954500, 0x09e77018, 0x33236184, 0x82072315, 0x23352759, 0x35331527, 0xb0820a50, 0x1e0a1422, 0x41823c82, 0x0a1e0a24, 0xe26e2832, 0x820a2005,
0x0a28224f, 0x0a0f5d14, 0x0b4f6e18, 0x08f08218, 0x82080843, 0x153322b0, 0x20578417, 0x82bb8207, 0x141e213a, 0x54825b85, 0xcc486082, 0x205e8607,
0x41d88314, 0x5b8309bf, 0x00002923, 0x227e1837, 0x18488208, 0x180980cd, 0x640c96f1, 0x46200540, 0x18062042, 0x220b664c, 0x42283c28, 0x8f42051d,
0x071b4105, 0x03000027, 0xecff0a00, 0x26638300, 0x00210019, 0x56000029, 0xbc8206cd, 0x69183520, 0x33230b9b, 0x82073335, 0x20848213, 0x23218423,
0x64331533, 0x82088c77, 0x461422b8, 0x2076820a, 0x18db833c, 0x7d08a8da, 0x142105c5, 0x0a1b7228, 0x5a236b82, 0x5e004600, 0x3b21063b, 0x424f8301,
0x33200885, 0x21086076, 0x24472723, 0x28152205, 0xeb691814, 0x47322008, 0x0a200573, 0x1e206882, 0x78646285, 0x00002205, 0x83c38401, 0x00272357,
0xb68c3700, 0xda572320, 0x07675c05, 0x8405c943, 0x501e2013, 0xba430502, 0x615b1805, 0x83142008, 0x84af8309, 0x830a2065, 0x6000207c, 0xeb440673,
0x001d2405, 0x7e2b0023, 0x6f470931, 0x33352108, 0x61087b61, 0x15200579, 0x2508fd66, 0x3c0a3246, 0x2c412832, 0x14142405, 0x821e0a28, 0x546783d3,
0x818506ee, 0x8f841420, 0x7e832820, 0x00030022, 0x6f830083, 0x4d541520, 0x5a352005, 0xcc850ca2, 0x66233521, 0x35250723, 0x3533012b, 0x08db7123,
0x3c141e22, 0x14210b82, 0x834b820a, 0x820a2008, 0x052c4d66, 0x5d283c21, 0x64250897, 0x13004600, 0x05e54b00, 0x19450020, 0x21638306, 0x31453523,
0x27232205, 0x06387115, 0x82011d21, 0x15372308, 0x46513523, 0x41b78405, 0x0a20067e, 0x5642d283, 0x25e38207, 0x1e140a0a, 0x63820a32, 0x2309d343,
0x0031002d, 0x084f4718, 0x5408dd41, 0x8f180a2d, 0xd44208c8, 0x82372008, 0x4a1e2009, 0xc9820858, 0x41099844, 0x13830642, 0x85281e21, 0x06ce4284,
0x44058b43, 0x1b2009ef, 0x210d7774, 0x67423335, 0xf9751805, 0x84498208, 0x83282062, 0x8228204b, 0x143c2144, 0x14210f82, 0x20788332, 0x0e374500,
0xbc823485, 0x54352321, 0xc4860b6b, 0x443c3521, 0x488405e6, 0xdb540a20, 0x854c8205, 0x453c204a, 0x63470537, 0x821f2009, 0x09fb6497, 0x4108ef67,
0x9c4205d1, 0x05ff5105, 0x320a0a22, 0x09837418, 0x03430a20, 0x823c2005, 0x4666824e, 0x11210b47, 0x05894500, 0x5b07cb51, 0x1b4208a5, 0x07232108,
0xeb84bf82, 0x1e200483, 0x0883f083, 0x22057e48, 0x82141e0a, 0x283c2153, 0x08ff9218, 0x1807df45, 0x61090f5d, 0x37230cd1, 0x73353315, 0x4782053e,
0xc7423c20, 0x05c26107, 0x4c0ccb45, 0xc54606b1, 0x579f8b08, 0x37220cb9, 0xa1191523, 0xdb180ac1, 0xeb7f0c83, 0x225f8208, 0x690a1e1e, 0x23510647,
0x0f774805, 0xaf44a585, 0x18232005, 0x200869a2, 0x05304214, 0x06830a20, 0x823c3221, 0x0e2b48e9, 0xbb485a20, 0x2243a20c, 0x440a5050, 0x00200511,
0x8506276a, 0x08d54187, 0x0d3d8d18, 0x92181720, 0x0a200ced, 0x83055a5f, 0x21d98206, 0x68182814, 0x3220087b, 0x0a230e82, 0x89004632, 0xc2978353,
0x5a462153, 0x210c1749, 0x53180013, 0x83180b0d, 0x152108b9, 0x21531823, 0x2096830b, 0x0ac0450a, 0x32141422, 0x2008a64e, 0x41a5830a, 0xa386077f,
0x4fb43b88, 0xe350a182, 0x05eb4405, 0x19059347, 0x430ebdb5, 0x0728051b, 0x011d3335, 0x28153335, 0x1b438d84, 0x441e2005, 0x6549061c, 0x200d8405,
0x0abb430a, 0xcf4b2720, 0x97501809, 0x21098909, 0xf4513315, 0x21548205, 0x49824623, 0x84092d47, 0x84142009, 0x450a2005, 0x698506a3, 0x00463222,
0x23435f82, 0x821d2007, 0x0ab1465f, 0x4408c343, 0x23220524, 0xcd422315, 0x820a2007, 0x141e2345, 0xca463c0a, 0x87b18409, 0x0050224b, 0x06b14a46,
0x10f14618, 0x2505b744, 0x0a280a32, 0x864b2832, 0x440a2006, 0x7e1805f7, 0x14200a1f, 0x44065347, 0x50203c5b, 0x083b0219, 0x2008334a, 0x56df8223,
0x01450511, 0x7b86180d, 0x05a84108, 0x0a1e1e23, 0x051b4628, 0x25410a20, 0x05717105, 0x1084ee83, 0x1e220482, 0x67480014, 0x3ee74106, 0x82067f43,
0x06874152, 0x22075b78, 0x18352335, 0x840d2493, 0x3c15259b, 0x14140a0a, 0x09476318, 0x4f181e20, 0x00200847, 0x220aa753, 0x181d0015, 0x180c7d4e,
0x21087d79, 0xe34b2335, 0x473c2007, 0x3c2105a3, 0x08247414, 0x2206fe7c, 0x7032460a, 0x676e05b6, 0x05c74a06, 0x52180020, 0x3841078f, 0x08634a05,
0x820d0545, 0x5b3c83a2, 0x0a2009ec, 0x0d5c0a82, 0x4f142006, 0x765008ae, 0x82002005, 0x7367185f, 0x05d74207, 0x200a744f, 0x08844835, 0x41093d6b,
0x3c2205b8, 0x9d46321e, 0x46688409, 0x0a2105a0, 0x09ed4246, 0x0a831e20, 0x22093b67, 0x52110046, 0x734b0709, 0x4461830a, 0xc7840927, 0x59461520,
0x8252850e, 0x0a28214c, 0x44085c46, 0x0a23054d, 0x6714141e, 0x5a26089b, 0x27001300, 0xf15a2b00, 0x82152008, 0x2a5418c8, 0x012b2108, 0x21109f43,
0x86823723, 0x2008d74c, 0x20cf820a, 0x09186d0a, 0x20051c41, 0x0585410a, 0x1e220c82, 0x7f483c0a, 0x07a34305, 0x58180f20, 0xbf5c08cd, 0x013b210a,
0x0cb56219, 0x66142321, 0x5786063b, 0x281e0a22, 0x20057763, 0x06bf421e, 0x82003221, 0x00042100, 0x3b4c5383, 0x64212009, 0x15200daf, 0x4a05bb52,
0x272006d0, 0x0723d582, 0x82152335, 0x42322041, 0xc0460673, 0x23698305, 0x28140a0a, 0x14220382, 0x1e830a1e, 0x1b431420, 0x06574d05, 0x74000721,
0x09440591, 0x18272006, 0x470da144, 0x1422052b, 0x40841e14, 0x21057148, 0x4c834614, 0xe756a984, 0x3f6f1806, 0x7000200b, 0x498b085f, 0x37210b82,
0x829e8233, 0x82142003, 0x280a2289, 0x4a058746, 0xb6840844, 0x32210d82, 0x2f99820a, 0x00baff01, 0x00ecff50, 0x00050064, 0x15332700, 0x46253f82,
0x64321e14, 0x5b43180a, 0x18502008, 0x820d7b45, 0x1423215b, 0x4f05ad55, 0x00240503, 0xe2ff0200, 0x50204982, 0x40184382, 0x29830c53, 0x2705675a,
0x14140a28, 0x14143214, 0x32213085, 0x22778a14, 0x8403005a, 0x46232777, 0x0a5a3232, 0x8f8e0000, 0x8f833520, 0x820a2821, 0x9334821a, 0x141e211b,
0x09201b8f, 0x37824f83, 0x3b843320, 0x0a0a1422, 0x0a213d83, 0x263f840a, 0xffe2ffce, 0x83f6ffec, 0x820720eb, 0x23352259, 0x051e7e32, 0x1b867784,
0x00000b23, 0x0a775407, 0x1f4e4620, 0x053d4105, 0xe2202783, 0xf6202782, 0xb7824382, 0x23222782, 0x2082141e, 0x03450020, 0x00462206, 0x2d55186e,
0x08c55409, 0x82152321, 0x2315286b, 0x35372315, 0x82171523, 0x9ca11803, 0x83142009, 0x825a2000, 0x0a1e3142, 0x46140a1e, 0x1e281e1e, 0x0001001e,
0x0000001e, 0x073b4618, 0x82062d4d, 0x20098392, 0x09a84415, 0xe2790a20, 0x09ef4405, 0x43004621, 0x318e0513, 0x3520e884, 0x08666d18, 0x82281521,
0x05c750b0, 0x2a440a20, 0x20498507, 0x4651880a, 0x642209bf, 0xa4181900, 0xc6460b5f, 0x2057830b, 0x2242833c, 0x82320a1e, 0x850a2053, 0x05c5434d,
0x0a0a3225, 0x18030000, 0x2008a365, 0x0b396117, 0x210f2a7e, 0xba183533, 0x17200737, 0x3982b982, 0x6c462820, 0x1e0a2106, 0x28220882, 0x0e845a0a,
0x0a221782, 0xba47320a, 0x8b5d8405, 0x000f215f, 0x19096552, 0x420a4aa1, 0x352105cf, 0x84578323, 0x84a282a9, 0x280c8547, 0x0a0a460a, 0x140a5046,
0x20078214, 0x25008200, 0xff140001, 0xef4200ec, 0x5050211c, 0x86051743, 0x00192527, 0x35331700, 0x1808df4c, 0x200d0c87, 0x085e4132, 0x820a2821,
0x09e8440a, 0x43824620, 0x77430220, 0x006e2706, 0x0011000b, 0x74182700, 0x35230859, 0x82153123, 0x3c35210c, 0x2005a16f, 0xa012190a, 0x00142a08,
0x00ceff01, 0x00d8ff6e, 0x07334382, 0x0a0a3229, 0x00001482, 0x82b0ff02, 0x82ec2017, 0x82072017, 0x4d00204d, 0x232905df, 0x15013b35, 0x28143223,
0x2025830a, 0x8200830a, 0x202b86e2, 0x832b84f6, 0x05944577, 0x25088c6d, 0x0a281533, 0x31821414, 0x6e0a1422, 0xb8823384, 0x37830a20, 0x64207b83,
0x8220f582, 0x204d6184, 0x83232005, 0x832b8236, 0x84782028, 0x8200202d, 0x44c420a3, 0x0720064f, 0x82068743, 0x0a3c2225, 0x0525551e, 0x7f820020,
0x1f82d820, 0x6e00f626, 0x0f000700, 0x099dbc18, 0x4c07a941, 0xf35508cd, 0x77041908, 0x82e22008, 0x881320b3, 0x092f4153, 0x23353322, 0x8306ce41,
0x8587853c, 0x097f4aed, 0x7f421320, 0x06044306, 0x210a0f75, 0x5158013b, 0x82352006, 0x82072047, 0x191e2055, 0x82087e50, 0x830a20b4, 0x141421fe,
0x1905c37d, 0x2208dbae, 0x480a0a1e, 0x234c0663, 0x91599e09, 0x06845055, 0x4c820a20, 0xe6820283, 0x690a4354, 0x33210633, 0x09115923, 0x5009c26a,
0x5c470683, 0x23bd8205, 0x33152317, 0x0556b484, 0x18142005, 0x84088e67, 0x205c8208, 0x8264830a, 0x55142003, 0x5d1805b0, 0x5a250803, 0x15000d00,
0x05994b00, 0x82089b62, 0x773520c8, 0x366e0fe3, 0x09036005, 0x0a0a3c26, 0x505a0a32, 0x2008e248, 0x0b83440a, 0x31001d25, 0x41370000, 0x15200655,
0x5918c182, 0x7d490809, 0x15332305, 0x1c761723, 0x18d68809, 0x8c0c0359, 0x433c20c3, 0xcb830847, 0xea821420, 0x094a2119, 0x26083341, 0x000f005a,
0x8423001b, 0x080f4779, 0x2321d482, 0x08f84407, 0x51233521, 0x2323060d, 0x821e3250, 0x14322145, 0x20050f41, 0x225f850a, 0x820a323c, 0x141422d5,
0x144d181e, 0x0b934108, 0x5d825a20, 0x2f002722, 0xfb695f82, 0x4f152008, 0xd98209ed, 0x35331524, 0x6b921723, 0x5f826882, 0x0a207084, 0x14200085,
0x63846082, 0x710a5a21, 0x322006d6, 0x28201883, 0x8b4d778c, 0x31541809, 0x064e4908, 0xe3662320, 0xb9631806, 0x3a4e1810, 0x844f820a, 0x05db4a53,
0x0ba85f18, 0x0221d383, 0x05975500, 0x23005a24, 0xd1822d00, 0x2012a341, 0x83c98635, 0x21e78273, 0xeb832723, 0x1521e182, 0x05694223, 0xcd70c985,
0x4a698305, 0x71830873, 0x1e281682, 0x0a50500a, 0x1e0a1432, 0x09ebdd18, 0x5a006424, 0x1b4a2800, 0x08864b05, 0x5d185e84, 0x352312e0, 0x8215012b,
0x45408252, 0xc2490944, 0x200f8205, 0x41588314, 0x5f8205b3, 0x08779918, 0x29205f83, 0x7609ed4b, 0x68830d87, 0x4205bd58, 0xc987088d, 0xb4836782,
0x53840682, 0xc1863c20, 0x1424d584, 0x14280a14, 0x00210482, 0x09f75200, 0x52085d56, 0xa9430cf3, 0x15232205, 0x9d561833, 0x46508208, 0x142006ad,
0x2607d349, 0x0a284614, 0x18140a0a, 0x2209239c, 0x6c4600be, 0x31430769, 0x41352007, 0x1554051c, 0x06f3680f, 0x840ab944, 0x79152021, 0x232505cd,
0x2315013b, 0x19c9863c, 0x200a9e18, 0x05944a0a, 0x0a257583, 0x0a821414, 0x05245d0a, 0xfa4e1420, 0x18a28509, 0x8208f04c, 0x000a22e7, 0x2195820a,
0xcb49003c, 0x09c15506, 0x23351723, 0x82c98315, 0x141e214d, 0x1e204884, 0x00230082, 0x82010000, 0x23338531, 0x37000013, 0xfc522582, 0x05104708,
0x18321521, 0x5508ee43, 0x6e83050a, 0x37840a20, 0x84e2ff21, 0x0005236b, 0xcf831700, 0x280a2327, 0x50143c14, 0x201b8b5a, 0x08e3621f, 0x6118f186,
0x3520099b, 0x82067541, 0x080a4e35, 0x2b5b1420, 0x085d5608, 0x2005cb4a, 0x4f6b860a, 0x2320054b, 0x0ccc0b19, 0x08cc4118, 0xb552b083, 0x420a2005,
0x28220610, 0xa35c140a, 0x0a2b5105, 0x8f181e20, 0x3c24099f, 0x1b001300, 0xe74ca182, 0x09955608, 0x07a77718, 0x280a1e23, 0x4102820a, 0x65580569,
0x0a462105, 0x46205582, 0x14216182, 0x0a3f4114, 0x49845a20, 0x2320e583, 0x0cdcbf18, 0x95853320, 0x82233521, 0x8685828b, 0x0a14224d, 0x520c8232,
0x3c20076a, 0x86058f7f, 0x552020e3, 0xe7840923, 0x8209514e, 0x33352609, 0x1523013d, 0x07ba5923, 0x27411420, 0x14142105, 0x88504e82, 0x5fb51807,
0x09db4109, 0x074a0f20, 0x08a07f08, 0x20057461, 0x05d4410a, 0xeb5cd982, 0x00462208, 0x51cb863c, 0x2d430831, 0x84db8408, 0x071542cb, 0x140a0a26,
0x46141e0a, 0x0a210e82, 0x05e54346, 0x09e34518, 0x0d33a218, 0x45833320, 0x3223d185, 0x82280a14, 0x1e3c21ff, 0x2005f778, 0x190b823c, 0x2409972e,
0x005a005a, 0x18af820d, 0x200c48ec, 0x282a8232, 0x28141414, 0x28280a28, 0x05c74928, 0xf6ff0a24, 0x2b826400, 0x1805677e, 0x2b087d95, 0x141e3c0a,
0x5a14141e, 0x500a1450, 0x0ae34218, 0x180a5354, 0x200babce, 0x20658215, 0x82d58237, 0x3c142281, 0x82058214, 0x14142160, 0x0a229084, 0x0282320a,
0x0d832819, 0x97820720, 0x15246984, 0x143c0a23, 0x66826582, 0x86090350, 0x205382b7, 0x05a94433, 0x32231522, 0x1e274c82, 0x50140a14, 0x82281e14,
0x8bd018f4, 0x202b8309, 0x74e58911, 0xe882090b, 0x0a1e2824, 0xc382280a, 0x0a460a28, 0x0a280a1e, 0x2f542832, 0x5def8308, 0xb86c0547, 0x0723230f,
0x13823533, 0x50331524, 0xc682280a, 0x07853f83, 0xc7820582, 0x14142823, 0xb3401946, 0x1905200e, 0x1810a31b, 0x181027e2, 0x82098f51, 0x3233215b,
0x86419a82, 0x23fb8205, 0x1e3c3c0a, 0xaf519682, 0x27a61808, 0x0a617309, 0x17231526, 0x0a331523, 0x94833882, 0x14461424, 0xd0835a14, 0xfd18d782,
0x5a220a2b, 0x87185a00, 0x19470a17, 0x8217200c, 0x1e142376, 0x6c423c28, 0x141e2405, 0x840a143c, 0x1928203f, 0x180fd7c6, 0x20088f41, 0x416f8215,
0x28270575, 0x32321428, 0x5f140a5a, 0x6e200813, 0x08f7a918, 0x44053b41, 0x2d4e0591, 0x736f1908, 0x820a200b, 0x05664567, 0x0a0a4624, 0x7e820a3c,
0x82465021, 0x820120ec, 0x00002203, 0x109f4250, 0x1e234f82, 0x8428140a, 0x0a4622a5, 0x06674c50, 0x2b8b2c83, 0xd74e2320, 0x853c2007, 0x2814212c,
0xc319cc83, 0xdb4109df, 0x05a35205, 0x23083f42, 0x23352315, 0x14247f82, 0x0a0a141e, 0x14212f82, 0x05785b50, 0x0efb0319, 0xc5883720, 0x2a822d85,
0x19505a21, 0x200d874b, 0x0d13465a, 0x90181520, 0x0a23098d, 0x823c281e, 0x825a20bb, 0x0a142234, 0x096b4250, 0xe7826e20, 0x17001325, 0x77370000,
0x368209f9, 0x2d419a85, 0x23cd860a, 0x460a0a0a, 0x20058449, 0x0923473c, 0x43825a20, 0xcd570f20, 0x8623200c, 0x3b232c4c, 0x33233501, 0x0a331523,
0x830a3c0a, 0x06de5ee1, 0xe7845020, 0x56181e20, 0x43850a77, 0x19370021, 0x260c8d28, 0x0a462315, 0x83141e14, 0x28282303, 0x2e821428, 0x0ad34518,
0x2f85eb83, 0x2005e341, 0x05c34623, 0x50501422, 0xe3185d82, 0xd1180f2f, 0xde420c9b, 0x82282005, 0x77c5194e, 0x18372010, 0x2008cb83, 0x08914515,
0x3184b782, 0x0a280a24, 0xb383141e, 0x9f182820, 0x46180ebf, 0x2824125b, 0x32285a28, 0x20092347, 0x8fbf185a, 0x1533211a, 0x5a82f382, 0x0a2f0519,
0x0ae49319, 0xbb4bfc82, 0x574c190a, 0x08dd4209, 0x2106bd43, 0x30190723, 0x28210969, 0x22a7823c, 0x84283214, 0x20b38351, 0x09ef4128, 0xa9184620,
0xa54a08af, 0x42078207, 0x28270727, 0x0a32140a, 0x821e1e0a, 0x26828274, 0x0a1e0a5a, 0x1846140a, 0x8309bf97, 0x07bf4b3b, 0x54084d4d, 0x094d0833,
0x504d8308, 0x53470563, 0x21598209, 0x0c471450, 0x05724305, 0x09835718, 0xc0180020, 0x3320081f, 0x20055345, 0x22078235, 0x823c281e, 0x2ac18227,
0x3228285a, 0x00020000, 0x82e2ff0a, 0x4e5a20b9, 0x3b210525, 0x089e4c01, 0x334a2320, 0x82232006, 0x06b34575, 0x18231521, 0x6308e2d4, 0x142007e3,
0x3221d182, 0x05d75514, 0x0a218582, 0x24e48214, 0x0a6e1e1e, 0x47481800, 0x82642008, 0x180f205d, 0x49092f41, 0x15210522, 0x82b48233, 0x32142384,
0xb0821e14, 0x190a4621, 0x830df7c6, 0x0ceb4b2f, 0x82073347, 0x3c3c225f, 0x1873825a, 0x200de7a1, 0x5d5f1811, 0x0a3d4108, 0x14140a23, 0x25988228,
0x1e0a280a, 0x2b483c14, 0x0ff74305, 0x20092347, 0x06214723, 0x280a1424, 0x83493c28, 0x41c18205, 0x002005d3, 0x200be342, 0x20978215, 0x0571431e,
0x28140a22, 0x28202d82, 0x00200482, 0x20068b4d, 0x5eeb826e, 0xf643087d, 0x51352009, 0x098409f6, 0x25058761, 0x33152337, 0x9e820a50, 0x321e0a24,
0x8c530a0a, 0x82322005, 0x861420b2, 0x0785490a, 0x14141424, 0x4f411432, 0x00462209, 0x9358183c, 0x0927420d, 0x0a533219, 0x4b052a53, 0x0a2007bf,
0x1b20cb86, 0x770c3756, 0x35200c26, 0x6f46d782, 0xe3a51806, 0x0a142208, 0x26e3820a, 0x14461414, 0x4f14140a, 0x128205ac, 0x181e1421, 0x8308d364,
0x0b63188b, 0x2053900d, 0x84e58217, 0xe97618e4, 0x82cf8209, 0x82508757, 0x204f8859, 0x8ddb8250, 0x182320a3, 0x640b5d43, 0x17220555, 0x0d4a3533,
0x218b8205, 0x46830a1e, 0x0a200882, 0x2005c149, 0x05234d1e, 0x43280a21, 0x134a065b, 0xa94e1806, 0x083a610c, 0x2005064a, 0x84db8228, 0x0a462591,
0x461e1e0a, 0x8605f348, 0x05595337, 0x1808b944, 0x210866a9, 0x4b181523, 0x142007df, 0x083d5619, 0x0a214784, 0x2606821e, 0x0a140a0a, 0x180a0a28,
0x200a9f46, 0x060b4646, 0x4a0abf5f, 0x23250ae5, 0x3d331517, 0x0c274101, 0x50209384, 0x4b824886, 0x19282821, 0x230847a4, 0x003c0050, 0x079b7818,
0x4f0abb4b, 0x272007df, 0x28214782, 0x6f521814, 0x0a0a210a, 0x28208c83, 0x32254482, 0x01002832, 0x050b4200, 0xe3454383, 0x32322213, 0x45b98232,
0x3c23095f, 0x75001700, 0x835f052b, 0x08c76c08, 0x1e142322, 0x2007db51, 0x840a8214, 0x82668274, 0x00002714, 0xff0a0006, 0xab8300e2, 0x11000d24,
0x93611900, 0x08014708, 0x4a83ba84, 0x4f853320, 0x56881720, 0x14153329, 0x140a1e0a, 0x42460a1e, 0x1e200588, 0x9382c182, 0x14225982, 0x9f820a14,
0x7a6d1e20, 0x53501806, 0x0df35e0c, 0x420ac345, 0x41820ad3, 0x14141e27, 0x50141428, 0x825b820a, 0x0a14215c, 0x450a4749, 0x1b6009bf, 0x4435200c,
0x322106f3, 0x21768228, 0x3d850a28, 0x52411420, 0x08574a05, 0x41079341, 0x2b7d0c51, 0x05ab4205, 0xc3821420, 0xbe836d82, 0x1e0a0a23, 0x45078228,
0x4622081f, 0x2f4c6400, 0x41152005, 0x35261261, 0x35233533, 0x654c0a23, 0x0a282205, 0x22008214, 0x57640a1e, 0x76450696, 0x2fa31905, 0x483c2009,
0xed470a29, 0x08dc6d09, 0x320a1422, 0x82063646, 0x1e1e228d, 0x05ee4250, 0x0cb3a919, 0x8b825020, 0x23441720, 0x08335007, 0x0870ac18, 0x5a233521,
0x3b820763, 0x22073b4d, 0x83280a0a, 0x069d658f, 0x321e1e22, 0x1907f64b, 0x540e3b37, 0xe64106b5, 0x35232308, 0x314c3233, 0x06745c05, 0x0a0a1e25,
0x181e5050, 0x26088f6f, 0x00500050, 0x4d17000f, 0x5c6c0679, 0x15332108, 0x2305a94b, 0x0a462335, 0x0a20d082, 0x21069b68, 0x0e820a3c, 0x50218383,
0xf3781946, 0x863c200c, 0x08e35343, 0x4105464a, 0xba82071e, 0x08df0119, 0x0244b782, 0x20968206, 0x0c934400, 0x4305436e, 0x0d830dfe, 0x0a4b3520,
0x2b35230c, 0xd3851501, 0x2009d16f, 0x85a0820a, 0x822820a6, 0x06c0530a, 0x1805f244, 0x4d088fa0, 0x352006e7, 0x0c81a118, 0x0a235a83, 0x86141e0a,
0x0a32234a, 0x9f446e1e, 0x0050220d, 0x057f4f3c, 0x6f633320, 0x4433200d, 0x414d059b, 0x82c98205, 0x1e0a2402, 0x821e140a, 0x8314204a, 0x1e1e2689,
0x14140a32, 0x05824246, 0x53468388, 0xa8aa1808, 0x42152009, 0x1420067b, 0x1e258385, 0x28283c0a, 0x05b84550, 0x095fad19, 0x58005a21, 0x6141077f,
0x41ca820b, 0x15210619, 0x41c88217, 0x85830565, 0x7d437982, 0x0a0a250a, 0x2828460a, 0x2206034d, 0x18640046, 0x470ba1d0, 0x23250c33, 0x33152327,
0x20888232, 0x827f821e, 0x223882cc, 0x825a3232, 0x05e15a05, 0x08c74718, 0x46005022, 0x201f4b43, 0x058b501e, 0x140a3222, 0x14200982, 0x2005744f,
0x21878228, 0xad182846, 0x46210a17, 0x07ef4b00, 0x21090e41, 0x83841735, 0x45440a20, 0x1e3c2205, 0x05574550, 0x83082742, 0x001b2533, 0x33000021,
0x4a0a5f51, 0xdd4309eb, 0x95561805, 0x436e820a, 0x098206c7, 0x7458c782, 0x1e1e2109, 0x2308ef47, 0x5000e2ff, 0x2f208b82, 0x08afa918, 0x821a1d4a,
0x703320aa, 0x23230857, 0x840a0a46, 0x852820e9, 0x09096206, 0x18827482, 0xc4181420, 0x0a210811, 0x21d1821e, 0xeb4f1414, 0x09ff520c, 0x2406cf47,
0x33152337, 0x054c490a, 0x854e2820, 0x28282107, 0x0322fb82, 0xa3840000, 0x5d08fb68, 0x374a0899, 0x09ef4306, 0x2007a77c, 0x886c821e, 0x8214209a,
0x82aa827c, 0x410882a5, 0x12830508, 0x240a3f4a, 0x00640046, 0x0a454d23, 0x69331521, 0x82180809, 0x6c8309d6, 0x0905ab18, 0xa9821420, 0x56053245,
0xff8308d0, 0x0682f382, 0x47000021, 0x50230503, 0x55005a00, 0x365b0633, 0x92c0180a, 0x0bda4309, 0x15216882, 0x30651833, 0x0a32210d, 0x2820ad85,
0x84082e66, 0x058c4d10, 0x09bf5318, 0x590b9345, 0x152208b7, 0xc4823523, 0xf1473720, 0x14142108, 0x28249a82, 0x0a321414, 0x52058f52, 0x9b43054e,
0x8217200a, 0x86e285ff, 0x017a19f2, 0x82462009, 0x0a2821d2, 0x3c234185, 0x44281428, 0xf7530665, 0x4550200b, 0x451805d1, 0xa349084b, 0x084a4108,
0x1e208f82, 0x84061843, 0x208f834b, 0x21588250, 0xcf470a14, 0x05095b05, 0xd3470320, 0x185a2006, 0x18081fbf, 0x5d0978a2, 0x998708e7, 0x23351724,
0x03823715, 0xa843d983, 0x824a8405, 0x32142165, 0x83054a4a, 0x2213825b, 0x4528283c, 0x8f6a05b2, 0x00502306, 0x6b18005a, 0x23590933, 0x82b48208,
0x22fe845a, 0x19353335, 0x24072f02, 0x15333527, 0x06cb4232, 0x081b8418, 0x140a0a23, 0x84b98350, 0x0a282610, 0x28284614, 0x41728228, 0x23200a4f,
0x530e2354, 0x034d0ea9, 0x0a265405, 0xc4834d83, 0x41141421, 0x142106f6, 0x215c8414, 0x6b710a0a, 0x06974b09, 0x31441720, 0x07fc4309, 0x8682a183,
0xfd833282, 0x500a0a22, 0x0a208f82, 0x210c4755, 0xbf180019, 0x2d540a71, 0x1523210a, 0x27239984, 0x49233533, 0x2820060c, 0x74827282, 0x80852820,
0x490d434b, 0xf37009db, 0x27481907, 0x4e332009, 0x1e21063b, 0x052f423c, 0x4b193220, 0x00200871, 0x8306ab5e, 0x000321bf, 0x0cd79d18, 0x3f822720,
0xb5826882, 0x14220282, 0x01822814, 0xef440020, 0x3c002105, 0x78210182, 0xf7561800, 0x0aed4309, 0x2406d742, 0x0a0a141e, 0x4401821e, 0x0c8205d7,
0x4e08ef55, 0xf3460b97, 0x26d48208, 0x0a280a14, 0x5050505a, 0x3b4e0a03, 0x10bb5007, 0x2e832820, 0xc3831e20, 0xfa182f82, 0x2f830933, 0x2116fb54,
0xfb54321e, 0x83af180b, 0x5135200d, 0x034e06ff, 0x20288406, 0x07c3435a, 0x11225383, 0xd9631500, 0x0695420c, 0x35332722, 0x2107374e, 0xe1820a0a,
0xfc543884, 0x48608205, 0x0a460eff, 0x82352009, 0x22728336, 0x83141e15, 0x213a83f2, 0xf6832832, 0x820a2821, 0x22778b11, 0x18160012, 0x8408655f,
0x1533263f, 0x1d231523, 0x20418301, 0x069d573c, 0x2005d544, 0x223f8350, 0x19280a0a, 0x43095b0c, 0x00200547, 0x081d3c19, 0x82099f6a, 0x84b78244,
0x830a20b1, 0x0a142500, 0x28281e46, 0x18051042, 0x23097768, 0x005a006e, 0x0867b918, 0x700aa773, 0x765008c9, 0x052e5507, 0x871e2821, 0x5a142043,
0x438609f7, 0xb9183720, 0x19620a2f, 0x7fd51808, 0x23848409, 0x321e0a0a, 0x1e204389, 0x093bb918, 0x1420c7ad, 0x1806f745, 0x21071769, 0x934f0000,
0xb1511807, 0x05e94e08, 0x820c9f7b, 0x3307268b, 0x0a642335, 0x0885460a, 0x20063046, 0x88128214, 0x0a1e21d9, 0x0a3b9a18, 0x5a005022, 0x76066b6e,
0x508e05b3, 0x09f14518, 0x3c205983, 0x8e6f5884, 0x83568209, 0x20108458, 0x84b38228, 0x00022159, 0x20059f7c, 0x0bb3785a, 0x3520ad93, 0x1521af82,
0x058d5123, 0x93825a20, 0x8308ca41, 0x821e20fc, 0x2828215b, 0x84094a41, 0x0a93416a, 0xb7826420, 0x4105874e, 0x28201895, 0x875e3383, 0x0a3c2408,
0x411e1e1e, 0xba180757, 0x878211d3, 0xfe85a383, 0x21051843, 0x0082145a, 0x821e0a21, 0x8214208d, 0x28282289, 0x0523510a, 0x20059f44, 0x53fe188c,
0x23398e0b, 0x6e231533, 0x83051d48, 0x1e1e213c, 0x0a203d88, 0x83095342, 0x1815203f, 0x420d8547, 0x8c2109da, 0x207a8832, 0x8275820a, 0x1805823f,
0x2009c760, 0x457b826e, 0xfb84051b, 0x4384b397, 0x9341b385, 0x22738305, 0x821d0019, 0x47551875, 0x080c5a0c, 0x17201582, 0x6e20ca82, 0x2105c647,
0xfb841414, 0x8805cc47, 0x8a1e20c2, 0x198783c3, 0x7809e904, 0xd660085f, 0x15332405, 0x410a1e46, 0x0a230605, 0x85144614, 0x7f2820c7, 0xbd180500,
0xc7a409df, 0x55057b41, 0x822008db, 0x21057b41, 0x728c3337, 0x2008d143, 0x097b4146, 0x823c1421, 0x820e82c3, 0x1e0a237c, 0xdf52000a, 0x828c2006,
0x078f563f, 0x220c1f49, 0x82072315, 0x23333653, 0x0a503315, 0x6e0a0a32, 0x32320a0a, 0x145a1414, 0x0a505014, 0x23b98246, 0x1e461e0a, 0xaa204386,
0x840a0b51, 0x0a396443, 0x47893320, 0x47828c20, 0x1e224984, 0x49846e1e, 0x280a3222, 0x0a224b84, 0x4b94320a, 0x4708c15a, 0x1d21073f, 0x23938701,
0x28321e8c, 0x4a859685, 0xd5820a20, 0xdb984b90, 0x8a057d7b, 0x281421db, 0x5021db8b, 0x26db8328, 0x000a0004, 0x59aa0000, 0x79190623, 0x204e0955,
0x3315240c, 0x41012b15, 0x17200627, 0xa0210782, 0x23968628, 0x820a0a14, 0x0882e484, 0xe6852820, 0x4621fb82, 0x05ef761e, 0x5b840320, 0x4205f742,
0x42180685, 0x152009f7, 0x082b4918, 0x15233724, 0x55822333, 0x74472820, 0x21418206, 0x55855014, 0x12831420, 0x280a1e25, 0x1950143c, 0x8308af7d,
0x6911204f, 0xb65e0897, 0x2315220c, 0x21a58627, 0xcc411e32, 0x670a2005, 0x5b8406ab, 0x50214882, 0x20478832, 0x0cdb52a0, 0x4a055743, 0x49870a17,
0x87146421, 0x463c21eb, 0x0a219484, 0x23e8851e, 0x460a0a46, 0x0b4fed18, 0x45001321, 0xa81806a9, 0x15220b9f, 0xbb5a5a33, 0x21878405, 0x00820a3c,
0xb1185020, 0x53440aa3, 0x05eb4606, 0x240d677f, 0x23153315, 0x20fe826e, 0x22c28428, 0x821e1e14, 0x0a0a21d1, 0x3c203c83, 0x09ff8219, 0x55050b41,
0xf9580be7, 0x465a2106, 0x32233686, 0x833c0a14, 0x063b5d00, 0x00000023, 0x20f7826e, 0x0d675d0f, 0x6b823520, 0x14203187, 0x47483086, 0x07bf4108,
0x180a8746, 0x280a0970, 0x35330733, 0x0a0a8223, 0x4a708628, 0x4486065f, 0x5218aa84, 0x5a210897, 0x57778300, 0x424908d2, 0x141e2105, 0x0a230084,
0x845a1414, 0x036618a8, 0x076b4408, 0xd5185f82, 0xa54e0c4c, 0x19282006, 0x210b74e7, 0xe5850a0a, 0x274d3c20, 0x1982200a, 0x1808075b, 0x820dc4d5,
0x144621eb, 0x3083ad87, 0x200e1f41, 0x5d378246, 0x29820523, 0x28140a24, 0x3b415a3c, 0x821b8309, 0x052153a0, 0x2321c882, 0x82208235, 0x3c5a21bf,
0xfb4dbf82, 0xabd5180c, 0x07564b08, 0x1908274a, 0x2209af3b, 0x82640000, 0x000e226b, 0x0ae35a00, 0x15013b25, 0x490a4623, 0x264a0522, 0x841e2005,
0x05cf4557, 0x1805235f, 0x2008c171, 0x93bb1915, 0x05e54d09, 0x0a144622, 0x82070e60, 0x097b46b5, 0x0720b783, 0xc94d6782, 0x3c0a2206, 0x21d68228,
0x475a460a, 0x056b5b08, 0x088d6318, 0x2320d984, 0x21082b5c, 0x55830a46, 0x3c3c2823, 0x05d7690a, 0x50203882, 0x78205b89, 0x9184c382, 0x1805f34b,
0x2608e155, 0x143c0a23, 0x831e3214, 0x0a5a27cb, 0x140a1e46, 0xbe180a0a, 0x2b590c0b, 0x08594908, 0x66182320, 0x3c200807, 0x14216b82, 0x091b6014,
0xcb416420, 0x7b181905, 0x0cfb450a, 0x5c830a20, 0x861e1e21, 0x0aaf4635, 0x9b833783, 0xf1462320, 0xa160180b, 0x321e210b, 0x32203486, 0x0c2fc018,
0x28229b9c, 0x9b850a28, 0x83059341, 0x00152263, 0x09295a19, 0x07276b8d, 0x5a233533, 0x43280a0a, 0x7f4d0718, 0x20758605, 0x0adf481e, 0x2105c755,
0x00533700, 0x24448405, 0x15333523, 0x836c823c, 0x0a462133, 0x0c833382, 0x9c0b0b5a, 0x054341a7, 0x3f772820, 0x07af5309, 0x4d100d41, 0x658305de,
0x320a3c22, 0x0f41de85, 0x0519420d, 0x48062b4d, 0x232208fb, 0x33833c0a, 0x5a20d984, 0x5a068243, 0x642009df, 0x1807b347, 0x840d9785, 0x353321d8,
0x1e203b85, 0x3d837986, 0x280a0a22, 0x3f8de182, 0xb3421520, 0x08195f08, 0x82333521, 0x423d8601, 0x3c83052f, 0x8c0a3221, 0x05b7583b, 0x9305b144,
0x05854e39, 0xef82b385, 0x83080743, 0x06a946b3, 0x3320b588, 0x0bf50f19, 0x17233522, 0x3349bb87, 0x0a0a2205, 0x06164314, 0x01411e20, 0x0a0a2205,
0x091b4346, 0xb7425a20, 0x18372005, 0x4108f5b7, 0x2320063b, 0x1e20ff84, 0x4106da41, 0xbfa9113b, 0x3c282822, 0xe3417f82, 0x4117200b, 0x88730e33,
0x83738408, 0x23fd89af, 0x320a0a32, 0xab47ff85, 0x05674a05, 0x09b38019, 0x09bc6418, 0x2329c183, 0x33152337, 0x35331527, 0x05af4b46, 0x0a0a1e23,
0x204b821e, 0x200d823c, 0x21ca8214, 0x0e84140a, 0x535c1420, 0x050f510a, 0x8e05717a, 0x075d444b, 0x1e204f8e, 0xa082518e, 0x538b6282, 0x1807fd6a,
0x440ab260, 0x2323050c, 0x83152315, 0x8233204d, 0x326421a5, 0x04839c84, 0x28142824, 0xdd181414, 0x32200b00, 0xa38a5082, 0x08d3d018, 0x084c5518,
0x4907a242, 0x35200590, 0x83052b7e, 0x83642059, 0x280a2346, 0x5c840a1e, 0x6818fa84, 0xdf5008a7, 0x840a2005, 0xb74018ac, 0x05c34608, 0x23206187,
0x575d5088, 0x87b48209, 0x4f0720b3, 0x834b0595, 0x0a0a2106, 0x2e51b682, 0x0a1e2105, 0x23065e41, 0x3c0a0a0a, 0xd74a6082, 0x215f8909, 0x11453700,
0x0c6f6808, 0x41172321, 0x406206b3, 0x141e2105, 0x0a26ba83, 0x3c141432, 0x56835a14, 0x8405b741, 0x821420b6, 0x040023b6, 0x06820a00, 0xb5855783,
0x3b4c2720, 0x0a704109, 0x24087549, 0x35331507, 0x25618333, 0x50152335, 0xbb850a14, 0x28210782, 0x2063820a, 0x21ab8228, 0xbc8a3c14, 0x67840a20,
0x00221b82, 0x334e0500, 0x57a21808, 0x13274209, 0x4108b74c, 0x15240725, 0x013b1523, 0x83427182, 0x21768409, 0x6d841428, 0x200be841, 0x8200820a,
0x0b4f75e8, 0x5a009622, 0x08278318, 0x27412320, 0x4967830c, 0x2720063b, 0x20063141, 0x22cd856e, 0x521e141e, 0x3c2406b8, 0x1e0a2814, 0x21068c41,
0xec421e0a, 0x37571806, 0x0c8b4108, 0x6312036e, 0xc7830679, 0x82058541, 0x24438257, 0x14143c3c, 0xe42e193c, 0x2010820c, 0x0e8b4114, 0x1809875c,
0x6b08c672, 0xad8208ed, 0x3720c983, 0x20068941, 0x20218207, 0x42a58214, 0x46200846, 0x2105a248, 0xee410a0a, 0x0f47420a, 0x4f0b1741, 0xac4206b8,
0x416c840c, 0x82210781, 0x25bf881e, 0x14781414, 0xc8841428, 0x82071741, 0x0d5f430d, 0x45060344, 0x77410903, 0x1d23220c, 0x05414201, 0x443c1e21,
0x54820b54, 0xb1845a20, 0x1420c982, 0x20053642, 0x12b34300, 0x82085745, 0x41581853, 0x05214608, 0xb387578e, 0x5985ae83, 0xb3835e82, 0x60180a20,
0xf7420827, 0x475f1806, 0x19538408, 0x200ba618, 0x43598523, 0xb1860751, 0x6a441e20, 0x433c2005, 0x65410552, 0x20588805, 0x8a548214, 0x001f27b7,
0x00270023, 0xac623300, 0x19098308, 0x1808220e, 0x4108d15e, 0x0a200769, 0x41066944, 0x5a82051a, 0x5105ca44, 0xc3820936, 0x78820a20, 0xb7436582,
0x08dd5415, 0x1d411520, 0x23c3870e, 0x23353317, 0x4a82c785, 0x0a1e2825, 0x84141e0a, 0x491420c8, 0x068205ea, 0x66181282, 0x0a2009b9, 0x181a8341,
0x410939c8, 0x35220627, 0x93421723, 0x45538206, 0x60830532, 0x84414d82, 0x82142006, 0x8276820a, 0x20108364, 0x0a7b4414, 0x0bd35618, 0x4405df42,
0x83440607, 0x2561880e, 0x15233527, 0x5b495014, 0x611e2005, 0x5e82065a, 0x82142821, 0x185a2000, 0x84090de3, 0x441483cf, 0xf9190e83, 0xd15e0e0d,
0x82d38408, 0x4323205a, 0x4f4508cf, 0x44172008, 0x3d410687, 0x20588205, 0x0507431e, 0x0282eb82, 0x4205b845, 0x44410868, 0x054f510b, 0x0a000326,
0x96000000, 0x420a7763, 0x352006cb, 0x8b08af48, 0x0c7342eb, 0x66141421, 0xac410577, 0x82e08407, 0x059c4456, 0x8509cb45, 0x09cb4563, 0x190a0f49,
0x430b355f, 0xc382142f, 0xd3825182, 0x82088943, 0x421420e2, 0x00200709, 0x640aab41, 0x29200537, 0x0e495f18, 0x096c4518, 0x420e3543, 0x46200c71,
0x4205a844, 0x67821072, 0x09582e19, 0x41067342, 0xf943282b, 0x1414220c, 0x0ffa4314, 0x82140a21, 0x0b57445b, 0x18059b52, 0x4708dbc6, 0x254c05fe,
0x0a282107, 0x200e3f68, 0x053f4f64, 0x42098b4c, 0x5e18052d, 0x1e240799, 0x0a505050, 0x180f4371, 0x2108c372, 0x2d853335, 0x21059968, 0x2c84321e,
0x0d2b9519, 0x8408d36a, 0x08c3682b, 0x0a3c3c23, 0xd75f180a, 0x08db5708, 0x09515718, 0x08091119, 0x20096f4c, 0x82e98428, 0x206584ec, 0x0a6b4c32,
0x3721c386, 0x50358633, 0xb68206fd, 0x14233383, 0x821e321e, 0x5050216c, 0x41083b4c, 0xc2181e1b, 0x474e0873, 0x53002005, 0x441806a7, 0x1e240857,
0x0a141414, 0x3c225982, 0xc683460a, 0x5e09774e, 0x6e1809af, 0x15240887, 0x15332723, 0x2821f587, 0x2400833c, 0x5a3c0a0a, 0x0c0b6d0a, 0x01190f20,
0x65880a7d, 0x85413783, 0x21388408, 0x00820a3c, 0x3f4f3220, 0x0567590a, 0x410a114e, 0x7189058d, 0x87321e21, 0x0a322172, 0xa7a3738a, 0x87282821,
0x057743a7, 0x4e07a341, 0x73831019, 0x35330722, 0x194ee784, 0x05a94106, 0x1420b382, 0x3c204382, 0x1e21b682, 0x05464c14, 0x4111676d, 0x37230db1,
0x41231533, 0x1e2308b5, 0x4c323c3c, 0x28200584, 0xd76df484, 0x09d94210, 0x21126341, 0x63414628, 0x0a0f5009, 0x99413520, 0x836b8209, 0x08cd4137,
0xa9821420, 0xf6833220, 0x43062b41, 0x3b830547, 0x0e9b7318, 0x141e0a23, 0x2402821e, 0x0a1e1e3c, 0x05036b32, 0x00000022, 0x64092b42, 0x2b840c3f,
0x14222d87, 0x2f8c140a, 0xff5c0d20, 0x208d820a, 0x82fb8235, 0x321e2259, 0x9c6f191e, 0x20838908, 0xb3bd1813, 0x08936109, 0x0a22cb82, 0x5d830a14,
0x0a0a1e22, 0x92820284, 0x00200782, 0x6e081b78, 0xcd710893, 0x3315240f, 0x593c2335, 0x5e490555, 0x0a0a2305, 0x4a82320a, 0x4b180a20, 0xe3520ddb,
0x08aa5e06, 0x82233521, 0x839d827c, 0x50142233, 0x20ff8214, 0x0aaf610a, 0x20051f4e, 0x09bb7e17, 0x210ac748, 0xb17e3733, 0x82282005, 0x141e2130,
0x46200183, 0x02827282, 0x18323221, 0x200893b6, 0x0c47410a, 0x8308954b, 0x05f744bb, 0x3c141e22, 0xe482a082, 0x41096b5c, 0xea180877, 0x14210dcc,
0x83a2823c, 0x825a2002, 0x5762829f, 0xa385087b, 0x60370021, 0x23201161, 0x1e203384, 0x1e209a82, 0x20074c4c, 0x0f0d1932, 0x05df6f09, 0xab603788,
0x3c232508, 0x321e1e1e, 0x3c203582, 0x31829b84, 0x8309f34f, 0x09bf4e33, 0xef732320, 0x85db830a, 0x0a0a246f, 0x820a141e, 0x21a7833e, 0xc5490a1e,
0x0bbf4105, 0x19098b51, 0x230f1f03, 0x35331723, 0xc7414385, 0x0a282206, 0x05044d0a, 0x320a0a24, 0xb74f140a, 0x217b181b, 0x0a232208, 0x227d843c,
0x820a1e1e, 0x140a23f3, 0x4482280a, 0x85088362, 0x471b20bf, 0xbb48080b, 0x41451805, 0x17232609, 0x0a152335, 0x217e8250, 0x2e6b1e14, 0x83322005,
0x83c48245, 0x600a2046, 0x2f5505ae, 0x12774106, 0xbf823520, 0x14240383, 0x1e1e143c, 0xbf830485, 0x7205d66d, 0x376a0b8f, 0x09ce4e0c, 0x141e0a22,
0xfc842b82, 0x7e824620, 0x00821420, 0x22097b41, 0x185a0082, 0x200a3db3, 0x0c7b4133, 0x39832320, 0x83281e21, 0x1e28219f, 0x914b3a82, 0x713b8905,
0x8c180563, 0xc15f0bc7, 0x84af8305, 0x0a0a253b, 0x0a0a321e, 0x14203b84, 0x08207f18, 0x5205ab43, 0x70180827, 0xfd410e7d, 0x1e1e2106, 0x1e203783,
0x0a20b883, 0x0a20bc85, 0x7b83ba83, 0xab4e0220, 0x75172008, 0xf3410885, 0x055c4b0b, 0x23172324, 0xf9853315, 0x02824982, 0x0a501e24, 0x4382460a,
0x00820a20, 0x0eb37219, 0x46097356, 0x83840555, 0x15219787, 0x41c58223, 0x14220740, 0x87843c14, 0xce841420, 0x20077f42, 0x065f4e78, 0x59470020,
0x094b5509, 0x82050662, 0x0a232419, 0x823c0a1e, 0x0a0a214b, 0x8e843c83, 0x18094a5e, 0x480c4f76, 0x002007f3, 0x190a0d5f, 0x5d10d85a, 0x6e21054f,
0x059d4114, 0xa1821e20, 0x5c821e20, 0x8208d25b, 0x820f8265, 0x0aff4756, 0x1b215783, 0x8b559c00, 0x1414234f, 0x2c422828, 0x83f38205, 0x0b6b4202,
0x47821720, 0x450cd04c, 0x05830539, 0x67432820, 0x3c142109, 0x3c828184, 0x2f418c83, 0x05675f07, 0x41941d20, 0x24051546, 0x15233723, 0x0b034233,
0x83460a21, 0x82eb8349, 0x0f235e4b, 0x8220d7a2, 0x2106c542, 0x0882141e, 0xd78ad882, 0x0b777c18, 0x8605c745, 0x07414383, 0xfd410a20, 0x585a2007,
0x335605b5, 0x0f675608, 0x49352321, 0x3c2006e7, 0x2823a883, 0x411e2814, 0xca18053f, 0xc4180fbf, 0x23200d57, 0x08c98618, 0x0a253182, 0x14321e0a,
0x050f7614, 0x480c9b56, 0x332005bd, 0x4a091d4c, 0x142306a9, 0x820a0a0a, 0x1e5027d2, 0x1e0a2832, 0x93440a0a, 0x73502008, 0x451808cf, 0x5d410bda,
0x8337820b, 0x830682d8, 0x82738437, 0x0533604b, 0x20094f47, 0x08d16a15, 0x21085044, 0xe8833533, 0xe5846f82, 0x5659b082, 0x450e8306, 0x93450c13,
0x202d8205, 0x08ca7b23, 0x20076043, 0x20448227, 0x05094332, 0x823c0a21, 0x830a2007, 0x46c38605, 0x46200ce7, 0x79089f44, 0x52830ef9, 0xfd837183,
0x14141423, 0x05354f3c, 0x1e141422, 0x560df346, 0xd54309c3, 0x3c0a210c, 0x2008d243, 0x053a4d5a, 0x775f1420, 0x87782009, 0x4f152073, 0xdd4e0949,
0x45398308, 0x14200613, 0xbb823a82, 0x3b897d82, 0x46051758, 0x714d08ff, 0x05134508, 0x1e247584, 0x280a0a32, 0x14203b83, 0x20051345, 0x0bdb571e,
0x45461920, 0x7f332008, 0x79571091, 0x05004308, 0x830a5a21, 0x28142200, 0x0540461e, 0xf6ff0226, 0x50000000, 0x1723bb82, 0x18001b00, 0x1808a742,
0x220b3655, 0x45352335, 0x87840517, 0x02828582, 0x0a461425, 0x830a5a0a, 0x830a208a, 0x3c1e2105, 0x820dc756, 0x0803489c, 0x093b1c19, 0x0383cd83,
0x15013b23, 0x79601823, 0x0a282908, 0x3214141e, 0x1446140a, 0xc2699083, 0x49948208, 0x1d220a67, 0x334e2100, 0x0f1e420d, 0x20086b57, 0x082b451e,
0x820a0a21, 0x84a48256, 0x860a20ef, 0x0aaf7ef0, 0xf3824620, 0x37411d20, 0x18332010, 0x410c6c88, 0x3c20093b, 0x820c3d41, 0x0c9f7365, 0x4b825020,
0xaf611920, 0x09384305, 0x0a2c4018, 0x621e1521, 0x0882086d, 0x28282822, 0x08823d82, 0x4f570a20, 0x09ef6005, 0x23204394, 0x8805be43, 0x83322043,
0x2043994c, 0x3b4d181b, 0x828c8f0a, 0x065b45dd, 0x23056c41, 0x0a28321e, 0x8d868482, 0x940d8f64, 0x2340828b, 0x23352335, 0x1421cf8e, 0x47cf8c14,
0x1f22096b, 0x15752300, 0x090e440d, 0x1e411520, 0x11956405, 0x18056841, 0x41084163, 0x6344082b, 0x0050220b, 0x4459845a, 0x6d180721, 0x33200cf7,
0x8208ab7d, 0x571520ad, 0x54840574, 0x090ec319, 0x4208196c, 0x3345051c, 0x37c74108, 0x200ba75d, 0x0e57425a, 0xc041e182, 0x09094306, 0x85055742,
0x208b828f, 0x0ad8490a, 0xc345ef83, 0x000f210c, 0x4f07af57, 0xde820579, 0x5a140a21, 0x5a20060e, 0x46053b5f, 0xbb440c5b, 0x08e65805, 0x2106934d,
0x33820a23, 0x141e1e22, 0x5a20a983, 0x28227283, 0x47673c3c, 0x0a577a09, 0x20090977, 0x21698635, 0x3486321e, 0x5c05385b, 0xe6420f53, 0x90e58208,
0x2828219b, 0x450c2f5b, 0xf94105db, 0x0a2d5b08, 0x87172321, 0x0a0a223b, 0x256f8328, 0x5a0a0a3c, 0x285b0a14, 0x0a5f4407, 0x5a004622, 0x20053171,
0x07e24a23, 0x82074047, 0x423320ea, 0x20410599, 0x830a2005, 0x821e20ed, 0x3c0a2205, 0x15af473c, 0x410af571, 0x28220b53, 0x70833c28, 0x7509ab66,
0x152005af, 0x6b84b882, 0x5d08d263, 0x17240879, 0x3c331523, 0x0a214283, 0x0524481e, 0x20060170, 0x8200830a, 0x821b824d, 0x410020d4, 0x7820073b,
0x1a20c382, 0x0a6b4418, 0x21428787, 0x21d88205, 0xf9821e15, 0x76481420, 0x0a0a2305, 0x98494614, 0x18488505, 0x220c1f5a, 0x4214005a, 0xbf5b0a1f,
0x20418607, 0x5ef68214, 0xbc5b050f, 0x50142006, 0x17200edf, 0x20050b4b, 0xcdfa1815, 0x073c4309, 0x20069743, 0x05fd575a, 0xc0827e84, 0x4d820a20,
0xf55d0a20, 0x0b8f5e06, 0x1420cfa7, 0x84058042, 0x944e82cf, 0x133f5ecf, 0x831f035d, 0x0ecb5c7f, 0x2d431520, 0x23352308, 0xfc423c0a, 0x076a4309,
0x470c035e, 0x17420fbb, 0x5e3d870a, 0x7b4d183f, 0x5e39910d, 0xff4b173f, 0x143f5e0a, 0x1720bf82, 0x22053f5e, 0x43140a1e, 0x14260614, 0x5a0a0a50,
0x16430a0a, 0x0f3f5e08, 0xcf461b20, 0x899b1910, 0x3c0a220c, 0x454b8214, 0x0a20055a, 0x21057444, 0x9f823c3c, 0x50831420, 0x1910fb5f, 0x480c0124,
0x78440789, 0x5a142106, 0x28218582, 0x054f5e28, 0x23052743, 0x005a0096, 0x6905ef45, 0xc382092d, 0x654d3520, 0x07c44907, 0x23372325, 0x846e3315,
0x140a2175, 0x824c9084, 0x204e8207, 0xc54e183c, 0x05fa5008, 0x4f690020, 0x191d2009, 0x2009fb01, 0x8f8d8435, 0x0a642159, 0x83056a41, 0x200a8253,
0x879e8328, 0x87f7824f, 0x09b74ddf, 0x59071b41, 0xde190954, 0x988508f3, 0x320a3c24, 0x91852828, 0xc7443220, 0x82782008, 0x050f44e7, 0x4808b756,
0x33410933, 0x07332106, 0x6e20a182, 0x41083b43, 0x51880b76, 0x200b3f43, 0x0633468c, 0x201c3941, 0x063c4378, 0x1420df86, 0x1420df8c, 0x088b5018,
0x0b20df83, 0x5106b56e, 0x232409e5, 0x33152337, 0x14230383, 0x82500a0a, 0x05ad5702, 0x23055076, 0x46464650, 0x83097b5a, 0x5c3f8f8b, 0x4382078f,
0x1e243f84, 0x14144678, 0x07e73f19, 0x3f8d0a20, 0x73677f83, 0x8d7e1809, 0x2081830e, 0x24458727, 0x321e1e0a, 0x2448851e, 0x0a0a1e32, 0x2401821e,
0x1e1e2828, 0x668b891e, 0x1321057f, 0x0df55200, 0x23152323, 0x8acf8435, 0x8c142049, 0x88282048, 0x09eb5a47, 0x20050b60, 0x71fc1921, 0x46232010,
0x332008f1, 0x17204f83, 0x5a210f82, 0x208e8228, 0x05184f50, 0x0e82e784, 0x7d182820, 0x46200863, 0x1e20a282, 0x094f6a18, 0x22175369, 0x83231533,
0x2103834f, 0x4c820a6e, 0xee825020, 0x4d841420, 0x0a0a0a23, 0x215c8246, 0x7741280a, 0x0a4f610c, 0x46058b7d, 0x9d45076a, 0x07394105, 0x9a863220,
0x5f140a21, 0x988606f4, 0x3c205a82, 0x0ecb7f19, 0x92185a20, 0x8d181103, 0x237a0d7b, 0x46462305, 0x3b560000, 0x0dd36910, 0x4623c984, 0x820a280a,
0x06444802, 0x3b8cc287, 0x4d001121, 0xbc6907f9, 0x3327250c, 0x1e462335, 0x4182b983, 0x14141e24, 0x47831e28, 0x820a0a21, 0xf3de18ca, 0x000f220d,
0xc9331913, 0x8233200d, 0x753d84fc, 0x0a200597, 0x28203c83, 0x0a20f186, 0x3f573b83, 0x05df4109, 0x095f7118, 0x78441520, 0x20438608, 0x06336117,
0x0a248382, 0x3c0a0a14, 0xcf848782, 0x0a258784, 0x1e320a0a, 0x87c61946, 0xab441809, 0x09716608, 0x0b074618, 0x09054618, 0x18141421, 0x57080346,
0x10220943, 0x69191400, 0xc8410ad3, 0x20c88307, 0x8279821e, 0x0a0a22fc, 0x8a7e8214, 0x12575ac9, 0x82331521, 0x32232138, 0x2b842882, 0x18285a21,
0x190d0744, 0x20124b03, 0x212b8546, 0x2a821e1e, 0x5c822820, 0x24086f48, 0x005a0064, 0x094f6e0d, 0x2005c748, 0x215a8564, 0x2d840a0a, 0x11f34218,
0x88087c69, 0x46142183, 0xcb668384, 0x72112009, 0x2a880633, 0x15245982, 0x35271523, 0x07a80319, 0x5f85ed83, 0x82068945, 0x0f571892, 0x08137a08,
0x47065849, 0x232305b1, 0x690a2315, 0x142108af, 0x200b8250, 0x20fa8228, 0x08635650, 0x410c5f5a, 0x37681123, 0x0e5f5a08, 0x33232984, 0x411e2315,
0x14230523, 0x831e0a3c, 0x09af69ce, 0x5a008224, 0x1d441b00, 0x083b4805, 0x3320ce83, 0x20094559, 0x213b8264, 0x9c83140a, 0x28230384, 0x5c145028,
0x0a21051e, 0x0f8d1814, 0x19478309, 0x59092301, 0x47890a11, 0x2320ef82, 0x1e214b8e, 0x4e4d8c1e, 0x4f830aa7, 0x8e0dfb46, 0x834d8395, 0x21988988,
0x4c8c321e, 0xb209335c, 0x3c1421e3, 0xbf71e38c, 0x082b5a14, 0x180a2b41, 0x2109e5ba, 0x9d8d2335, 0x0a0a1423, 0x41038328, 0x32210b3d, 0x0cbf510a,
0xf14fa783, 0x0e755c05, 0x26099941, 0x33352335, 0x41322315, 0x9841068e, 0x820a2005, 0x0a3c29ac, 0x140a0a1e, 0x28285014, 0x7756b884, 0x73fb8609,
0xa95a05a7, 0x18df410b, 0x41141421, 0xa3430de0, 0x06df4105, 0x180d5f70, 0x200a377a, 0x825b8223, 0x7a7d8299, 0x964105fa, 0x82142005, 0x0b4a4197,
0x5c0dd75c, 0x177708a3, 0x2047830b, 0x092e4432, 0x2106f544, 0xf6181e28, 0x45181033, 0x53190c3b, 0xa57d081f, 0x0a282505, 0x1e1e0a0a, 0x0a21c982,
0x05e7441e, 0x3f873c20, 0x18084f55, 0x82098552, 0xf67618c5, 0x7c8b820a, 0x0a20050d, 0x2008b044, 0x20488914, 0x884f8214, 0x1850204b, 0x480c9f49,
0x6f560a75, 0x847b8305, 0x7c322043, 0x8a8405df, 0x45502821, 0xf9660dbf, 0x0dad5408, 0x0b867718, 0x21079f47, 0x16410a3c, 0x21d58507, 0x51821414,
0xf2829a89, 0x49460a21, 0x4352055e, 0x06eb4c0a, 0x190c9846, 0x880c458c, 0x14142454, 0x8228460a, 0x05516304, 0x821e0a21, 0x44ab840a, 0x914809f7,
0x419b8206, 0xf1470b7b, 0x0a462106, 0x1e204986, 0x14213982, 0x055d7232, 0x44189382, 0x97770753, 0x65438506, 0x095708a3, 0x82372009, 0x208b8995,
0x20898b3c, 0x18878e0a, 0x1809038f, 0x820d3965, 0x8227204c, 0x59642045, 0x0a21080a, 0x072f7c14, 0x0a0a1e22, 0x32200282, 0x20097747, 0x08f35564,
0x4908b85a, 0x332107b4, 0x21458415, 0xbd822832, 0x08550c1a, 0x20080d5d, 0x0dbb4746, 0x5a050b46, 0x0a4609bf, 0x83332005, 0x14462141, 0x3f87418a,
0xe7492820, 0x05d7590a, 0x4f0b554b, 0x458607dc, 0x9b491520, 0x0a0a2209, 0x204d8828, 0x05f94128, 0x5785d284, 0x181e3221, 0x410f97c6, 0x332011f7,
0x6e05af5a, 0x4c4208b3, 0x21388205, 0x6d41140a, 0x21f28209, 0x6f411e0a, 0x4246200b, 0x22410ce3, 0x06a37609, 0x97842f83, 0x94821420, 0x4108a148,
0x5a200aaf, 0x085b4c18, 0x8809dc7d, 0x052743dd, 0x440aae41, 0xdf42063e, 0x8e879005, 0x833520d3, 0x087d6647, 0x5f823720, 0x6b082d65, 0x142007c3,
0x14201182, 0x0a200484, 0x0a878018, 0x1809c36c, 0x6b08c847, 0x01420d7a, 0x86988506, 0x05654d54, 0x0f6a5882, 0x854f8e06, 0x0b4b429b, 0x4f429e88,
0x834c880b, 0x219c8848, 0xe9181432, 0x15200c03, 0x41089d79, 0x75410533, 0x42e98305, 0x968d0a57, 0x1e20e484, 0x0cdf6918, 0x5f09cb7d, 0xd9490c6a,
0x3133210a, 0x86105f42, 0x08614255, 0xf0881420, 0x62821e20, 0x420a2f4b, 0xc56906b5, 0x4231200d, 0x52831363, 0x20096542, 0x20f48514, 0x2057830a,
0x18af843c, 0x900feb8f, 0x421520f3, 0x9f850a6b, 0x52692820, 0x824b8205, 0x84498202, 0x20478548, 0x0a5f5c5a, 0x41084d43, 0xd34d0a8a, 0x0cda4106,
0x57143c21, 0xda4106d2, 0x0a142105, 0x46204f8a, 0x6c0cf74e, 0x8d4f0a95, 0x5b9b1807, 0x062b5708, 0x55670686, 0x709b1806, 0x0e2f4209, 0x6b0fdb57,
0x578408c5, 0x55843320, 0x33152322, 0x0a208a82, 0x2005cb46, 0x05c05828, 0x67141421, 0x14200832, 0x09ffeb18, 0x4409a345, 0x6543094d, 0x0926450a,
0x8408d358, 0x8e322055, 0x49ad8654, 0x974105d7, 0x0def6f09, 0x0e0d6818, 0x1420518c, 0x1e20508e, 0xb34ca38a, 0x050f6709, 0x960b6b67, 0x411720fd,
0x1e200801, 0x2006ff44, 0x05f9410a, 0x04410a20, 0x0fe35310, 0x200f5f41, 0x11cf6723, 0x28205d87, 0x0aa77718, 0x2006cb67, 0x6549180a, 0x220b4108,
0x67421520, 0x07315a09, 0x0a213f82, 0x82fb8228, 0x82518646, 0x1e14220c, 0x4305830a, 0x335709eb, 0x0de35905, 0x56193320, 0x07420d07, 0x3c14210e,
0x840f6141, 0x4d578864, 0x5218094f, 0x1b8511c3, 0x5a006424, 0xef4b0900, 0x84352005, 0x1446286b, 0x1e1e3c28, 0x75280a50, 0x914e0d0b, 0x5f332006,
0xd84306da, 0x32462107, 0x093c8019, 0x6c141e21, 0x77890877, 0x53640d20, 0x056f4609, 0x0a1e0a25, 0x820a3c28, 0x3c0a235e, 0x9360460a, 0x53e91809,
0x20618508, 0x02551833, 0x83152009, 0x3527236b, 0x5d821523, 0x71823a84, 0x870a0a21, 0x550c846c, 0x002006cf, 0x50200082, 0x0d21cf82, 0x2f541800,
0x20d38208, 0x293a8223, 0x15232723, 0x0a1e2833, 0x1f41460a, 0x22808205, 0x18505a0a, 0x220d4fe8, 0x6509005a, 0x3523092b, 0x82140a23, 0x46282400,
0x18461414, 0x20081753, 0x08fb4678, 0x0ea54018, 0x2205b746, 0x82140a50, 0x08c653d9, 0xe3835020, 0x830cbf53, 0xa395183f, 0x24378512, 0x28281414,
0x53338228, 0x46200aa3, 0x20059b41, 0x4b971837, 0x280a2a08, 0x28143c28, 0x5a0a1e32, 0x0bbf6328, 0x4108cb61, 0x33230c9c, 0x82153315, 0x823720a7,
0x05794afe, 0x20057b4e, 0x82068246, 0x449882d9, 0xfb7505e4, 0x189f860a, 0x84081169, 0x23352241, 0x82d68346, 0x831e2032, 0x0bbf579d, 0x0d209f83,
0x48086b55, 0x0a2106f3, 0x05de513c, 0x0a0a5a22, 0xf7606a83, 0x08f3760b, 0x200a2966, 0x212f8323, 0xdf6c1e1e, 0x73282008, 0x6b450a9b, 0x07174405,
0xb343cb82, 0x45332008, 0x3d840615, 0x0a0a0a24, 0x0482321e, 0x44055943, 0x142005b3, 0x4205484d, 0x15200987, 0x4582a789, 0x8305de47, 0x22418605,
0x850a1e28, 0x2148833e, 0x9742280a, 0x053b440d, 0x42075c41, 0x0f190699, 0xcb1909ea, 0x1e2107cd, 0x8243830a, 0x727b83fe, 0x0a8406f3, 0x2105a446,
0x94821e0a, 0x0c8b1519, 0x700c7765, 0xeb450844, 0x46142008, 0x50420587, 0x410a2006, 0x67600650, 0x098f4508, 0x8305ef42, 0xf3701890, 0x82172008,
0x3c0a214e, 0x20056e44, 0x513a8a28, 0x6e20080b, 0x2a12936b, 0x46233523, 0x0a141414, 0x6b140a50, 0x502006c1, 0x8c202f88, 0x680c4f78, 0x6e200ce1,
0x35843382, 0x501e1e22, 0xcb6b0083, 0x2037830c, 0x09735111, 0x8c213889, 0x82368332, 0x0a0a216b, 0xb3503586, 0x4e9b8608, 0xed4806a3, 0x229b8b05,
0x823c3c14, 0x879f18da, 0x0b6f7b09, 0x210a7f6e, 0xdb482315, 0x0daf7f05, 0x830a5021, 0x4274899f, 0x77830aff, 0x0bd7ad19, 0x7808586e, 0xab820553,
0x1e25e682, 0x0a282832, 0x5757180a, 0x20afa10c, 0x20758250, 0x08f36b3c, 0x510a677b, 0x15210d63, 0x05bb5223, 0x3c226983, 0xc96b460a, 0x0a462105,
0x220bfb73, 0x1815000f, 0x8c099347, 0x2723273d, 0x33152335, 0x04833715, 0x33073322, 0x2205cb7e, 0x82280a6e, 0x0a642d01, 0x141e3214, 0x0a141e3c,
0x320a0a1e, 0x82059342, 0x82502091, 0x320a23cb, 0xcf710a28, 0x055f7405, 0x5a00a027, 0x19001300, 0xafbf1800, 0x23658c0a, 0x07231533, 0x82216792,
0x22688614, 0x92461e1e, 0x20768369, 0x746a8928, 0x6b8306cb, 0x17001122, 0x09315018, 0x4108fa52, 0x152105b8, 0x50cb8427, 0x4818054a, 0xa0210707,
0x20698632, 0x82ce8214, 0x26d189d5, 0x0a500a0a, 0x9146460a, 0x82822067, 0x443741d3, 0x0a216b82, 0x8266823c, 0x820a2076, 0x0537417d, 0x0a000626,
0xa0000000, 0x15206382, 0x0825b018, 0x00002d22, 0x0c784118, 0x9a4c1520, 0x0fa34107, 0x1723d583, 0x41152335, 0x0a2208a7, 0x3f415a0a, 0x21cb8205,
0x6d830a32, 0xd7840a20, 0x0a200b82, 0x440aae41, 0x5370054a, 0x26df8306, 0x001e0018, 0x64260022, 0x35200871, 0x08f64218, 0x0b837b82, 0x83273321,
0x07332191, 0x74830582, 0x560a6e21, 0x642305c7, 0x821e140a, 0x5e1e2009, 0x2821066c, 0x0723420a, 0x28282822, 0x1e231382, 0x18143214, 0x4108379b,
0x4e180e47, 0x69460c8d, 0x0c7f4206, 0x3222d782, 0x61820a28, 0x0a206082, 0x22081542, 0x85500a28, 0x821420d7, 0x1432211c, 0x88052976, 0x42962063,
0x5f520d7f, 0x42152011, 0x5a2114e7, 0x07154214, 0x421e3c21, 0x14210c7f, 0x216c840a, 0xb3410a46, 0x093b450c, 0x5c053b47, 0x6d44091f, 0x084b4505,
0x32331522, 0x83052647, 0x22aa8247, 0x781e1e14, 0x1e20085b, 0x200baf4c, 0x07174c64, 0x4e08e570, 0x53820f42, 0x8a050550, 0x20ab8250, 0x22528b14,
0x4d320a0a, 0x974e0a03, 0x9535200b, 0x059950a2, 0x0a21a28d, 0x41a48a0a, 0xefba05bf, 0xf14d0a20, 0x4bef8509, 0x1c2409b7, 0x24002000, 0x16799a18,
0x85353321, 0x231723ff, 0x03833315, 0x45141e21, 0x28200577, 0xf682ab86, 0x5a0a0a23, 0x051a4714, 0x0a20af85, 0x0bc35618, 0x91094f41, 0x06564ef9,
0x4105474f, 0x1e21099f, 0x41aa821e, 0x70830a4e, 0x4e143c21, 0x2f6106a3, 0x821b2005, 0x154841ad, 0x67542320, 0x99671805, 0x418c8209, 0x2e500a46,
0x0a475305, 0x4b08ef4e, 0xe4430aed, 0x21078307, 0xf8823723, 0x8205aa5c, 0x228a8295, 0x553c140a, 0xe64f069e, 0x0f574e08, 0x48084f53, 0xe56f06dd,
0x209b8908, 0x59498228, 0x3e540b33, 0x0a874f05, 0x8908897c, 0x08025a97, 0x7f422320, 0x2048830a, 0x209f831e, 0x087e5928, 0x5e180a20, 0x9f480fa7,
0x08fe4505, 0x4109d054, 0x64200579, 0x53057a41, 0x49880812, 0x13531e20, 0x21d7aa0e, 0xeb511414, 0x42d78605, 0x6378096b, 0x0abd4107, 0x210cda5a,
0x68423523, 0x21948a06, 0xb7500a0a, 0x20988805, 0x2200820a, 0x5a1e1e50, 0x642307df, 0x41005a00, 0x6342052f, 0x2156820b, 0x1e4e1533, 0x8b521805,
0x20488207, 0x065d420a, 0x48824b86, 0x7b410a20, 0xe3fe180c, 0x91372008, 0x0a5b42a1, 0x200fbf41, 0x0b734114, 0x8e0a0b6f, 0x82db8290, 0x0b534296,
0x3c254884, 0x0a141414, 0x0733411e, 0x19061f53, 0x4411af4b, 0x978305d3, 0x33372322, 0x03825982, 0x8206fd45, 0x2357183f, 0xb7471808, 0x05eb7409,
0x0ebdfb18, 0x20051641, 0x05d74307, 0x055d2320, 0x83282008, 0x07ca5d42, 0x0a1e1e23, 0x067b761e, 0x6a0bcb73, 0x352014c1, 0x5d0e0d5d, 0xdc190c0f,
0x835c0baf, 0x5d172005, 0x45841511, 0x5c09155d, 0x43830b4d, 0x0a000429, 0x64000000, 0x5e005a00, 0xfa5609f7, 0x0897470c, 0x17238d82, 0x5d152335,
0x1f5d111d, 0x0a46240f, 0x190a0a1e, 0x200907eb, 0xb75f1846, 0x0859520d, 0x23352324, 0x6a82013b, 0x88825782, 0x03821420, 0x22056749, 0x5d0a3c14,
0xfd18052b, 0x438a0a77, 0x0953ca19, 0x09c78018, 0xfd189783, 0x1420082c, 0x20097c58, 0x05af621e, 0x2209eb51, 0x180f000b, 0x8308f1e2, 0x372321d8,
0x67827d82, 0x50202882, 0x50207583, 0x5e059055, 0x7f570cab, 0x08a6480c, 0x2106c342, 0x3d850a1e, 0xc282ba84, 0x83143c21, 0x600a2072, 0xdf68059b,
0xbb031909, 0x6d35200a, 0x332107c7, 0x257b8223, 0x500a145a, 0x4582140a, 0x14143c22, 0x8083c183, 0x7e821e20, 0x8911675f, 0x82152037, 0x5e27207b,
0xae6405a3, 0x14142207, 0x2079840a, 0x42788414, 0x782005df, 0x20068b4f, 0x20f18b19, 0x20f58435, 0x23f78415, 0x33152317, 0xb283bd84, 0xfe825a20,
0xc0824620, 0x14208082, 0x0a210682, 0x0c17590a, 0x520b1b78, 0xc9830979, 0x35234382, 0x821e1e23, 0x248b82f1, 0x14143c50, 0x834d8246, 0x320a218e,
0x420eb757, 0x0021055f, 0x18318237, 0x210aa27d, 0xcd821533, 0x2005894b, 0x82d38337, 0x501e2345, 0x7f82500a, 0x14249082, 0x500a0a28, 0x05825b82,
0x3c209383, 0x4110b357, 0x9b6b159b, 0x821e2006, 0x0520414b, 0x9b419682, 0x09f74e0f, 0x0cd7f418, 0x14141425, 0x5e500a5a, 0x502208e3, 0xe1185a00,
0x64180a8b, 0x1421080f, 0x79a3821e, 0x27830b8f, 0x4f000921, 0x0b660887, 0x82322005, 0x0a46214a, 0x0f204b8c, 0x270feb51, 0x140a2315, 0x143c140a,
0x0a22ef83, 0x74180a3c, 0x0a2007db, 0x720ea751, 0x37240a81, 0x1e233533, 0x1d5d3182, 0x05044b06, 0x200fa751, 0x8b49180b, 0x20b38408, 0x22628428,
0x82282814, 0x08fb7666, 0x094f1919, 0x20094a52, 0x208f8223, 0x222c840a, 0x7f1e140a, 0x5618063b, 0xbf8f0b23, 0xbf869782, 0xbc851420, 0x180a9b50,
0x20086b63, 0x07274235, 0x15212d82, 0x288b8423, 0x280a1414, 0x0a0a460a, 0x20088246, 0x4f4d1800, 0x10d77f0a, 0x8206a44b, 0x4d352041, 0x332006af,
0x2830d182, 0x0a32143c, 0x320a2814, 0x14280a0a, 0x5a14140a, 0x2305e355, 0x3c28143c, 0x46211383, 0x07bb5c32, 0x6705474e, 0x35200cf1, 0x6708b57e,
0x14230935, 0x510a500a, 0x1e22055f, 0x92821e0a, 0x47460a21, 0x1e26069f, 0x32001400, 0xa1824600, 0x83062542, 0x2021823d, 0x4a2d8214, 0x04200587,
0x14202182, 0x23852182, 0x82055f44, 0x20278361, 0x20078617, 0x88008314, 0x4a0a2034, 0x0320056f, 0x3c223784, 0x5b845a00, 0x00000b22, 0x07115818,
0x2c823583, 0x28280a22, 0x2826d882, 0x0a0a4614, 0x76180014, 0x2f89089b, 0x31850f20, 0x63820720, 0x0a4b5818, 0x05823585, 0x0a142827, 0x2814460a,
0x255d820a, 0x000a0014, 0xa718003c, 0x27200c47, 0x67883586, 0x2a821e20, 0x0b592820, 0x84cf8b08, 0x82352097, 0x013b222f, 0x05f15315, 0x1e1e1e23,
0x21c38228, 0x5b82000a, 0x5b821e20, 0xc38d3220, 0x15202b83, 0x23093f61, 0x1450141e, 0x0720c183, 0x00202982, 0x64202982, 0x0e3b9118, 0x3b835f8c,
0x07ab7719, 0x2205eb73, 0x82141414, 0x840484a4, 0x7f142007, 0x1427090a, 0x0a000400, 0x1900f6ff, 0x20098b0f, 0x7f6b1817, 0x21808209, 0x0f7b2715,
0x44498306, 0x4e8206e7, 0x29053250, 0x1e0a143c, 0x321e0a0a, 0xc7825a0a, 0x47880520, 0x17001324, 0xb34b1b00, 0x0a825306, 0x8206f244, 0x055f5351,
0x013b3722, 0x55052448, 0x282005a6, 0x14204982, 0xdd555783, 0x230e8205, 0x0a320a0a, 0x3c200083, 0x46205f82, 0x00200b82, 0xab87f582, 0x18000521,
0x85084bf3, 0x22f5834d, 0x84283c0a, 0x0a502141, 0x6e205282, 0xdb939382, 0x21087b5b, 0xeb7b1533, 0x48a48307, 0x1e200569, 0x4620db86, 0x02837982,
0x841e3221, 0x820320db, 0x00ec22db, 0xdf931950, 0x5e372009, 0x461808cb, 0x23200a39, 0x07777418, 0x140a2824, 0xc0830a14, 0x281e1424, 0x0082461e,
0x2305a04b, 0x1e1e1414, 0x64219982, 0x0a73410a, 0x20082f48, 0xfd891837, 0x0bf15308, 0xfd420720, 0x56172006, 0x32210d97, 0x8200823c, 0x0a1e2160,
0x2208c271, 0x566e0a0a, 0xab8305e7, 0x4105cf41, 0x00220587, 0xf8431537, 0x0ba04405, 0x5757a987, 0x411e2009, 0x5187057a, 0x83501421, 0x204b89f8,
0x06e3680b, 0x2005324c, 0x20fe8215, 0x829b8715, 0x143c22ec, 0x223e8314, 0x410a0a3c, 0x8b820537, 0x65145742, 0x2320050a, 0x23229082, 0x677d013b,
0x82152005, 0x204182e1, 0x07237414, 0x50204782, 0x56424d82, 0x0af34108, 0x0a4b5818, 0xaf417b87, 0x46502107, 0x2b8aff83, 0x56082747, 0x352111ab,
0x453d8923, 0x142005a6, 0x78828083, 0x1e0a3c22, 0x2305b647, 0x281e1e0a, 0xff85c383, 0x5f195a20, 0x98181247, 0x4b410a40, 0x0f8d1808, 0x3c142208,
0x25008250, 0x0a0a3246, 0x04823232, 0x415a3c21, 0x4b8b094b, 0x0d3c4f18, 0x31233523, 0x08534123, 0x08764618, 0x82280a21, 0x28502149, 0xea829082,
0x0a284622, 0xe78a9684, 0x18093b6a, 0x8708cd6a, 0x1e3221dd, 0x1421d683, 0x052b4228, 0x1e1e1e22, 0x200b2341, 0x20d38250, 0xdd61180f, 0x076c1908,
0x20cf870c, 0x05534714, 0x0a3c1422, 0x14244183, 0x0a0a1e14, 0xcb840382, 0x83055743, 0x6d4385cb, 0x13460509, 0x42152008, 0x4e1806b5, 0x462010a7,
0x3c200082, 0x22068748, 0x830a320a, 0x6950204b, 0xff2106db, 0x209182f6, 0x67a01964, 0x2315220f, 0x08ad4115, 0xa3463c20, 0x5a322105, 0x46210082,
0x0529473c, 0x410a6e21, 0x8b83060b, 0x087f4a18, 0x420d227b, 0x154105f7, 0x05aa7a08, 0x1e0a2825, 0x82503232, 0x20558200, 0x2000830a, 0x20dd8214,
0x0db7423c, 0xf363db89, 0x0895430e, 0x410bb163, 0x14200567, 0x23058064, 0x280a140a, 0x14234c82, 0x45000014, 0x78200517, 0x4418dd82, 0x518d0bcb,
0x816aa284, 0x09194309, 0x61823720, 0x50051d4e, 0x766105d6, 0x140a2405, 0x826e281e, 0x0a5a2100, 0x0e56aa18, 0x1e277682, 0x5a0a4614, 0x8314500a,
0x0100357a, 0x14000000, 0x1e007800, 0x00000300, 0x23153335, 0x0a1e7878, 0x01241382, 0xecff0000, 0x07211784, 0xe3501800, 0x32782608, 0x14783c0a,
0x059b7728, 0x0b201f87, 0x62601f87, 0x28782105, 0x32208782, 0x278e2583, 0x4f086f5a, 0x232206c6, 0x6a823335, 0x0a212c82, 0x8e2d8528, 0x0b2e1a2f,
0x43338a0c, 0x0a21067f, 0x8e35871e, 0x8b172037, 0x8637878f, 0x053b6e9b, 0x14200583, 0x3f873d89, 0x82140021, 0x004621ef, 0xf655ef84, 0x78782905,
0x14320a3c, 0x0028280a, 0x21082741, 0xef840046, 0x09458818, 0x59787821, 0x885705f1, 0x074f4106, 0x014d4620, 0x33352107, 0x8305e968, 0x78782207,
0x20818428, 0x5f57181e, 0x84578b07, 0x875789ef, 0x41782037, 0x0a220624, 0x3587140a, 0xef848f8d, 0x6f853791, 0x82072c41, 0x863d8976, 0xecff213f,
0x7784ef84, 0x08578118, 0x08cd6118, 0x3c21d684, 0x22388246, 0x6e1e1428, 0x0a24050c, 0x0300001e, 0x20061742, 0x0bfb5746, 0x180d9851, 0x2709b48b,
0x1d233523, 0x15233501, 0x0a224b84, 0xac47280a, 0x83068305, 0xaa9f1852, 0x1e1e2408, 0x821e281e, 0x8805205b, 0x0bdd185b, 0x7c332007, 0x896f08e7,
0xb175180b, 0x1523210d, 0x2306e854, 0x35171523, 0x66412685, 0x41608206, 0x0886056f, 0xcc821420, 0x7a887885, 0x7d820882, 0x80827e83, 0x7f880720,
0x0d7d3719, 0x19370021, 0x940a5127, 0xcfc218eb, 0x828b8809, 0x838f88fb, 0x08c6410b, 0x870a0a21, 0x858e8983, 0x201789a6, 0x4b75181e, 0x419e8309,
0x05820520, 0x09001e22, 0x3819a388, 0xa793111d, 0x420e6354, 0x414a0b8d, 0x09e95805, 0x21053f41, 0x47413527, 0x42b78409, 0xba820a42, 0x87094143,
0x0a28210c, 0x76180183, 0x21850905, 0x6341c18a, 0x1e1e2206, 0x18028728, 0x2008c776, 0x22008200, 0x43320078, 0xa3430553, 0x2b958205, 0x0a327833,
0x320a3c3c, 0x0a141414, 0x87052776, 0x0c134427, 0x2109f342, 0x43182878, 0x2820075a, 0x35843382, 0x1b20378d, 0x430f1344, 0x9b410d2f, 0x41282006,
0x004b0586, 0x597b8306, 0x01200557, 0x00207e83, 0x2320a783, 0xb389478f, 0x440ce743, 0x1e2008a3, 0x08837a18, 0xd1859884, 0xfb430a85, 0x84002005,
0x932b2057, 0x835b9557, 0x41782067, 0xc4560985, 0x850f8505, 0x09014157, 0xff21678a, 0x216782e2, 0x4f430050, 0x08017905, 0x7a05e95d, 0x90520903,
0x4d961805, 0x82332008, 0x1523246b, 0x43331523, 0x6783084f, 0x89323221, 0x280a217d, 0x2005c05f, 0x05e7610a, 0x58180a20, 0x09820841, 0x85052b44,
0x002b2477, 0x19430037, 0x6909795a, 0xe34608a7, 0xc85e1808, 0x19a1820e, 0x82080233, 0x3517212c, 0x8206cc50, 0x41fb9626, 0x9b850568, 0x180cb142,
0x840cbccc, 0x291183a7, 0x00000100, 0x7800e2ff, 0xa7451e00, 0x60152005, 0x352c08d9, 0x78333523, 0x140a143c, 0x78280a28, 0x0a270482, 0x0a280a1e,
0x88050000, 0x0015282f, 0x0021001d, 0x882d0029, 0x09a37ccf, 0x3323b483, 0x82233507, 0x215083b3, 0x40191523, 0xc18307a7, 0x4620b984, 0x78208f84,
0x8d18a283, 0x16840c98, 0x08787d18, 0x585b0d83, 0x000d2105, 0x21059f47, 0xef430078, 0x00572611, 0x005f005b, 0x4b878363, 0x35200574, 0x430a8279,
0xd9500ee9, 0x0b091a05, 0x4527200a, 0x9983062b, 0x4507f343, 0x1388073f, 0x1b872f82, 0x41098746, 0xce440e51, 0x0a1e2105, 0x59450185, 0x411e2005,
0x88410568, 0x863c2019, 0x34a018e1, 0x20308408, 0x853d8328, 0x22f68212, 0x83000200, 0x00782200, 0x0517501e, 0x8207eb4f, 0x46462189, 0x0a206182,
0x01221d83, 0xc7460a00, 0x00232306, 0x22823700, 0x18054755, 0x200f0f54, 0x5ea91833, 0x820a2008, 0x3c0a215f, 0x9d877f83, 0xd48d8b84, 0x0100002a,
0xecff0000, 0x46006e00, 0x08076818, 0x4208207d, 0x35200699, 0x4307334d, 0x5a200526, 0x8609c141, 0x8d32205d, 0x230d8353, 0x00060000, 0x0943e319,
0x09d7a018, 0x0d190020, 0x23270879, 0x33373315, 0x82012b15, 0x821720c0, 0x82072060, 0x82372003, 0x43322003, 0xdd1805cb, 0x1e250ef9, 0x0a145a1e,
0x5a678214, 0x002005bd, 0x07200082, 0x78205f86, 0x5106274b, 0x232105e9, 0x20618c00, 0x995d8327, 0x436b8265, 0xc265054e, 0x20688508, 0x860f8350,
0x0c57656a, 0x0cc7fa19, 0x82463321, 0x28142726, 0x0a460a0a, 0x6f185a50, 0x50220a2f, 0x4d4c5a00, 0x212d8505, 0xa4722335, 0x05564105, 0x5e85e783,
0x09ebfd18, 0x82460a21, 0x0a0a233e, 0xa7552832, 0x08536509, 0x3d86718d, 0x32141424, 0x3f820a0a, 0x67517885, 0x77691805, 0x1a152009, 0x44082338,
0x7f8706ff, 0xe8847782, 0x46263d83, 0x3c0a0a0a, 0xb78b3c3c, 0x2005bf53, 0x08ed4317, 0x43085756, 0x352006db, 0x14203382, 0x089b6718, 0x1421f782,
0x544e845a, 0x235605b7, 0x21b78305, 0xe15d000f, 0x8a152008, 0x204587fb, 0x20578237, 0x663b1950, 0x4b821809, 0x238a8208, 0x0a1e1e0a, 0xef42d982,
0x00142706, 0x00460000, 0x6f56005a, 0x05be4705, 0x1805f442, 0x2009b772, 0x48938233, 0x1e230a66, 0x18320a0a, 0x20084951, 0x06075400, 0x17784383,
0x82918709, 0x4a152043, 0x232105b1, 0x21918217, 0x4682143c, 0x8206d545, 0x85282092, 0x0a142247, 0x6bdd8328, 0x3b860f1f, 0x89853f82, 0x15223f82,
0x4585013b, 0x4b83cf84, 0x46210882, 0x0520410a, 0xcc829383, 0xed190020, 0xd39e0913, 0x0a208c84, 0x14203d83, 0xd38c7f82, 0x23234389, 0x41370000,
0x05820515, 0x094fd518, 0x0996ae18, 0x20054c46, 0x45478446, 0x14210e76, 0x84108228, 0x841e209c, 0x19002008, 0x75084b0b, 0x6d41051b, 0x21e9820e,
0x47823c33, 0x2108e744, 0x37875a14, 0x14000322, 0x3c20da82, 0x09ab6619, 0x896f3320, 0x2307210a, 0x17419782, 0x05f64908, 0xd6821420, 0x46321e21,
0x0a20066b, 0x710a9370, 0x074e0d87, 0x8333200b, 0x824b8745, 0x5e8b82f3, 0x49820935, 0x3224c282, 0x28280a0a, 0x0a215a84, 0x20dc820a, 0x05b84128,
0x04215d82, 0x4e638700, 0x70700ac3, 0x2059940d, 0x25548228, 0x0a0a320a, 0x55854646, 0x40185183, 0x462009b7, 0x1b20ef82, 0x58051d54, 0xe8430a7e,
0x82232008, 0x823b8209, 0x833c8242, 0x3c142249, 0x05e94a0a, 0x825a1e21, 0x051b7414, 0x14001428, 0x46003c00, 0x3a1a1300, 0x59190953, 0xc56c0be7,
0x0bd65206, 0x10977718, 0x190d1d44, 0x84096918, 0x140a2263, 0x064c435a, 0x18099f5c, 0x8508a3fd, 0x453720aa, 0x75450679, 0x27358405, 0x145a3c3c,
0x0a140a0a, 0x41052356, 0x7821053b, 0x84378500, 0x203985a9, 0x0ab74527, 0x14213d85, 0x21e88314, 0x40830a0a, 0x42831182, 0x51091344, 0xeb49089b,
0x217b8709, 0x6f83143c, 0x2106de49, 0x3a823c3c, 0x431a7f88, 0xef8510e7, 0x0c1df218, 0x7c193320, 0x538b2ecb, 0x27001d22, 0x4706c341, 0xc7630b4f,
0x18232008, 0x2308cc8e, 0x15331523, 0x4306ea47, 0x0a220594, 0x1b7f280a, 0x6f0a2005, 0x1e2305f6, 0x821e280a, 0x1e14230a, 0x6f180a14, 0x0d200ceb,
0x08d5ac19, 0x45080945, 0x28210c4d, 0x2146830a, 0x4f823c0a, 0x77051842, 0x8f450a7f, 0xd95d1905, 0x3315220c, 0x05754635, 0x21057946, 0x77825a32,
0x220cb770, 0x4517000f, 0xbe8408fd, 0x71863183, 0x83461521, 0x82038635, 0x5a1e2676, 0x3c1e0a14, 0x82098214, 0x23601942, 0x8dcf180c, 0x18152008,
0x270b31c7, 0x27331533, 0x07231533, 0x53445782, 0x204c8207, 0x21ba820a, 0x87820a0a, 0x0c822820, 0x141e1e23, 0x050e461e, 0x510a4f44, 0x35200837,
0x5719bd82, 0x28250887, 0x1e142828, 0x8f81181e, 0x0dcf440f, 0x15217182, 0x826b8a33, 0x82322065, 0x511e206f, 0x77440597, 0x7f691909, 0x06a7440c,
0x5a202b82, 0x095b4918, 0x45052b60, 0x5f920f2f, 0x9783c586, 0x00209c82, 0x21058b58, 0x7f583700, 0x5a5a2105, 0x9d0b2745, 0x000226d7, 0x000a0000,
0x22018250, 0x4f270013, 0x9e4908dd, 0x20798407, 0x0a154c07, 0x2106fe60, 0x90185033, 0x951809a8, 0x65490f56, 0x195f820e, 0x5009976d, 0x00220547,
0x9a463537, 0x41232005, 0x024206b8, 0x42078207, 0x272008e1, 0x1720cb82, 0x46201f82, 0x200c5944, 0x820d8214, 0x0a3c2111, 0x41059a4a, 0x1e2205d8,
0xbf4b140a, 0x0d234208, 0x4912cf43, 0x3c2007c1, 0x82052143, 0x0a322847, 0x2832320a, 0x821e280a, 0x830a2047, 0x4602203f, 0x0720082b, 0x2109055d,
0x39833335, 0x68823c20, 0x0a1e1423, 0x202e820a, 0x182b843c, 0x2009cf80, 0x9f731817, 0x088d4208, 0x2007e346, 0x050a5450, 0x4d550585, 0x47158208,
0x79180bfb, 0x0f4909cf, 0x17332107, 0xcf424983, 0x839e8206, 0x21eb86e5, 0x08415a0a, 0x0a0a2405, 0x41000a50, 0xa818095f, 0x73180dd3, 0x3520081a,
0xc7444382, 0x41f78308, 0x3d410553, 0x3c3c2105, 0x8305704b, 0x054f455d, 0x09438419, 0x09233d19, 0x45081142, 0x0d420bfb, 0x05034607, 0x420ca841,
0x79180e05, 0x07210ea7, 0x069d7d00, 0x07204d83, 0x20067344, 0x055b4146, 0x24050461, 0x283c0a1e, 0x24008200, 0x001e0001, 0x0fdf4228, 0x00003225,
0x82140001, 0x05cf4719, 0x42054b4b, 0xd741063c, 0x93231909, 0x00282108, 0x0d977f18, 0x21061741, 0x0d493335, 0x0a0c7606, 0xb7843220, 0x8a0c6f5f,
0xea77183b, 0x0961440d, 0x3882b882, 0x460a3c23, 0x08747046, 0x9f820320, 0x5a05174a, 0x332006f7, 0x33827584, 0x82013b21, 0x20eb82a9, 0x0587461e,
0xab615020, 0x4b2f8505, 0x1520074f, 0x2009e355, 0x242d8235, 0x012b3315, 0x20378435, 0x4aab8450, 0x0a26057e, 0x2828280a, 0x3f871414, 0x2209a348,
0x4323001b, 0xb46409c9, 0x4a33200a, 0x7f4308db, 0x82352005, 0x066351ae, 0x8208e94e, 0x05e145ca, 0x1e20c983, 0x20056643, 0x49008200, 0x214d103f,
0x4735200b, 0x32200665, 0x08677618, 0x4c0a0a21, 0x282005a2, 0xd36b9d82, 0x43db8306, 0x774b058f, 0x82378208, 0x33152139, 0x2007d34e, 0x06874937,
0x3c0a5023, 0x227f823c, 0x591e1e14, 0x5a2007dd, 0x52824782, 0x1e1e2825, 0x72320a32, 0x1b200d7f, 0x200a7743, 0xe78a1833, 0x06f0480a, 0x42084d46,
0x1e220891, 0x0c191e5a, 0xdd820cf7, 0x09209b83, 0x20057950, 0x068d4235, 0x25057b43, 0x140a0a32, 0x85820a1e, 0x0a461e26, 0x500a5a50, 0x0aab6718,
0x795d3383, 0x06315d05, 0xb6507c82, 0x8428200a, 0x820482c0, 0x8246203c, 0x5a3c2106, 0x0a220482, 0x9e183c5a, 0x3f830843, 0x82001121, 0x2f021941,
0xc7bc1809, 0x15332108, 0x14208582, 0x2d05a144, 0x143c0a0a, 0x1e5a0a0a, 0x320a1e1e, 0x69180a32, 0x5746091b, 0x4639840c, 0x3c210bb7, 0x1835833c,
0x18091fd8, 0x47090f88, 0x958308e1, 0x0a22dc82, 0x184e0a3c, 0x0d137106, 0xa4452320, 0x215b840c, 0xe0423315, 0x08b66105, 0x28141423, 0x22428328,
0x18020000, 0x22087fda, 0x421f0013, 0x6018087d, 0x7d420cf8, 0x15232705, 0x35331533, 0x674a0a50, 0x09b55406, 0x480e3144, 0x5026082f, 0x33005a00,
0x2f483f00, 0x52641809, 0x0ae5440e, 0x0bad7c18, 0x0895f419, 0x8305fd51, 0x08244673, 0x0930ee18, 0x0d2b9018, 0x0e88828e, 0x82062f42, 0x0a1b4d92,
0x8209fb41, 0x0dfb4176, 0x14202f82, 0x0a206c83, 0x28250582, 0x5a281414, 0x22098214, 0x181e5a1e, 0x83082347, 0x002322d3, 0x84d3982f, 0x075d454e,
0x82352721, 0x20ce85e2, 0x05934f35, 0x0a8a8b18, 0x49073f41, 0xf84c052f, 0x056e4c09, 0x71820a20, 0x1f460020, 0x0663460a, 0x82088f4d, 0x41072067,
0x3b21053f, 0x072f4901, 0x320a2822, 0x2405c25f, 0x500a460a, 0xf7ea1950, 0x0533500f, 0x49067343, 0xb3463a77, 0x4b701809, 0x75352008, 0xa7470c3b,
0x42462007, 0x1e230529, 0x820a3c0a, 0x83028290, 0x0a502292, 0x20098250, 0x0c5b4800, 0x4c06fb46, 0x4c48086b, 0x0775450a, 0x14213a83, 0x959a180a,
0x140a220b, 0x056b4414, 0x410a0a21, 0xb7180b27, 0x35200789, 0x420c584a, 0x82180b5e, 0x4c180892, 0x33200d9a, 0x2408f44b, 0x35231537, 0x201c8227,
0x0a6e191e, 0x054d410b, 0x84052a5e, 0x0a32220b, 0x44df8232, 0xd841088f, 0xea49180c, 0x06fb4a0f, 0x2105b751, 0x134c0023, 0x82152005, 0xf6b21862,
0x820b8408, 0x42858481, 0x15250531, 0x15233527, 0x20638628, 0x20688e1e, 0x8362835a, 0x82178204, 0x0a3c2202, 0x06e3530a, 0x59089b44, 0x0b7c073e,
0x4c332008, 0xa35105c7, 0x82142005, 0x823c203f, 0x109b4404, 0x2005934a, 0x4ab18232, 0x32220793, 0xbb4b0032, 0x0d434f0a, 0x8508c04c, 0x231521c8,
0x3321b282, 0x20158227, 0x18038217, 0x4b08fd92, 0x322008c4, 0x86071841, 0x28322108, 0x82051246, 0x070347bb, 0x52000d21, 0x3520085d, 0xbd834382,
0x21060556, 0x99434615, 0x18282005, 0x21082141, 0xbb54280a, 0x00022507, 0x00f6ff00, 0x2005675f, 0x4171191f, 0x20418509, 0x45918215, 0x15220965,
0x81191523, 0xa8450a4d, 0x05644c07, 0x821e3c21, 0x200a828f, 0x052f441e, 0x2005bf48, 0x0a0b413c, 0x00143c22, 0x1e23ab82, 0x65000a00, 0x1e211563,
0x22218314, 0x82010000, 0x820a2040, 0x005a218f, 0x41076f43, 0xdb4e06e0, 0x095f6605, 0x80825020, 0x84852820, 0x1e200683, 0x09820a89, 0xe3546b83,
0x05376807, 0x0cd3bd18, 0x820aef53, 0x061d43b3, 0x23051662, 0x1e0a3246, 0x67431384, 0x001f230c, 0xe0190025, 0x24430dc5, 0x0676420c, 0x82273321,
0x05854dab, 0x42333521, 0x8a19052d, 0x0a210919, 0x06c56714, 0x91421e20, 0x86142005, 0x14462407, 0x4a143c0a, 0x421816cf, 0x254209f5, 0x3b671905,
0x204d830a, 0x22048214, 0x69280a32, 0x28200584, 0x0a216a82, 0x45008328, 0xff5d08af, 0xa0501805, 0x056b4408, 0x1e222682, 0x0182140a, 0x09824620,
0x503c3c21, 0x46260bb7, 0x00001f00, 0x27823337, 0x0142c782, 0x0d9f4405, 0x28208f83, 0x73833c84, 0xd8824988, 0x15821420, 0x0a210f82, 0x2351180a,
0xc3b31909, 0x23332108, 0x2321bd84, 0x9da01937, 0x05944608, 0x820a1421, 0x21fd8282, 0xf746003c, 0x006e2608, 0x00150046, 0x21858221, 0xc2532315,
0x9a1f190a, 0x065e180a, 0x058d4d08, 0x1e214983, 0x214f8432, 0xd74c0a3c, 0x06c84505, 0x578d0c82, 0x1c001422, 0x1808356d, 0x210b2a73, 0xcb5d011d,
0x35232205, 0x35821850, 0x0a0a2208, 0x210b8214, 0x7d18320a, 0x322008c0, 0x092f4718, 0xd174a385, 0x259d880a, 0x5a153335, 0x4818140a, 0x888408a7,
0x32214282, 0xe3691846, 0x0046270a, 0x0019000d, 0x3f830023, 0x080f7b18, 0x27152322, 0x3322ef88, 0x4f451715, 0x463c2008, 0xde5005e1, 0x83f08505,
0x320a21e4, 0x3c22eb84, 0xa1833c0a, 0x67183c20, 0x46260853, 0x1b000f00, 0xe5822700, 0x8407bf41, 0x2315219a, 0x33205d8f, 0x33246182, 0x46153315,
0x4e4be684, 0x876a8205, 0x840a20ff, 0x83058464, 0x200d8363, 0x45c2823c, 0x4622088b, 0x69820700, 0xc2191720, 0x02200965, 0x2005e041, 0x4b6e8627,
0x54820912, 0x140a0a24, 0x7b4a4632, 0x081b420f, 0x33353722, 0x23203b82, 0x20086642, 0x05b45128, 0x34843782, 0x778a3c20, 0x41006e21, 0x3720083b,
0x0c479f18, 0x13421720, 0x15332108, 0xdb8de982, 0x647f0a20, 0x84462005, 0x058c5489, 0xd9863220, 0x3c0a0a24, 0xdf48320a, 0x1846200b, 0x6407a14b,
0x598508a4, 0x28011d23, 0x20978214, 0x061e4214, 0x14143c22, 0x0d82d082, 0x59061341, 0x0f2706a3, 0x27001d00, 0x18170000, 0x4b08c943, 0x9f180522,
0x07200df3, 0x08a79d18, 0x7d5a5020, 0x4b58840a, 0x142405f6, 0x0a0a280a, 0x083ec218, 0xa3860b82, 0x07474c18, 0x0b004624, 0x7d181700, 0xeb84081b,
0x23215389, 0x58e78415, 0x3c200608, 0x8205b168, 0x820883ee, 0x000322ac, 0x20ab860a, 0x82ab9511, 0x1487429c, 0xab842820, 0x8208275b, 0x830b84ba,
0x0a3c2216, 0x42b18350, 0xa782088b, 0x15206386, 0x18054d44, 0x8209be7d, 0x4133205d, 0xe14205e8, 0x052b4c09, 0x2005bb45, 0x319d185a, 0x05f64808,
0x2106dd42, 0x5f5b0000, 0x00462505, 0x00230046, 0x0a7daa18, 0x620bc443, 0x23230a3b, 0x82283315, 0x831e209e, 0x5c0a2054, 0xa1440904, 0x83462008,
0x140a2166, 0x86057344, 0x180b20ab, 0x20089ff0, 0x05f04833, 0xc0183520, 0xaa4c0972, 0x74f68208, 0x598905ac, 0x83503221, 0x42322061, 0x322005de,
0x200d2343, 0x39911805, 0x35232108, 0x0a491d19, 0x141e3223, 0x209f820a, 0x2399821e, 0x14324646, 0x33470182, 0xf6ff2707, 0x5a003200, 0x59180600,
0x2982081d, 0x5a5a0a21, 0x00210506, 0x08b76a02, 0x47540920, 0x20a08205, 0x4cf58433, 0x2323055c, 0x85353335, 0x0a2a66f9, 0x0a646e2b, 0x320a1e32,
0x00281e0a, 0x203f8801, 0x845f820b, 0x493e8538, 0x66820503, 0x64202c82, 0x09ff8a18, 0x0d006422, 0x8905cb42, 0x141e2f2a, 0x3c0a0a14, 0x6e141e0a,
0x786e0a5a, 0x9382000a, 0xe2ff1423, 0x05cb4300, 0x17215582, 0x05c24b35, 0x58820720, 0x1e252982, 0x0a323232, 0x20308250, 0x05bb4e0a, 0x00202b89,
0x25832987, 0x82641e21, 0x096b5424, 0x84006421, 0x057a4d9f, 0x1521d482, 0x2574841e, 0x0a5a505a, 0x4882645a, 0xc7820320, 0x9f837383, 0x56181520,
0x2e460aa9, 0x41372006, 0x7c820c0d, 0x140a1422, 0x25070662, 0x64640a14, 0x4e830a0a, 0x870a1341, 0x1700214b, 0x23206c83, 0x22058749, 0x82142315,
0x140a293a, 0x78141e14, 0x6e640a64, 0x01227782, 0x7f6c1400, 0x41072006, 0x2826093f, 0x5a320a0a, 0x1f830a5a, 0x2009f742, 0x074b4217, 0x180c9f42,
0x83080da2, 0x352321d9, 0x21065c56, 0x00820a1e, 0x82281421, 0x460a2169, 0x82064442, 0x209e8206, 0x49728246, 0x211906db, 0xa18309fb, 0x2005f944,
0x059d5d23, 0xcf82a583, 0x1421e382, 0x20b0833c, 0xab681832, 0x0046260b, 0x00140046, 0x18ad8218, 0x200cfc5a, 0x22458235, 0x6e153335, 0x1e22067a,
0xca18280a, 0x498208ec, 0x03821e20, 0x13769a82, 0x22438308, 0x8b15000b, 0x23352243, 0x904c1807, 0x48b88208, 0xc585054b, 0x0a218283, 0x05984a28,
0xdb590320, 0x00462206, 0xaf2d1907, 0x3523220a, 0xc5bf1923, 0x15332108, 0xf9829782, 0xfb858283, 0x0a3c4626, 0x0a323c0a, 0x6b468483, 0x497f8506,
0xf34505c1, 0x011d2108, 0x0829e419, 0x1e201382, 0x2821bf84, 0x45068214, 0x948205e3, 0x840a0a21, 0x480020c7, 0x47830857, 0x0ef36918, 0x8205ac42,
0x3f5a1acb, 0x1414220b, 0x198a8332, 0x220c3f40, 0x5e460050, 0x76180633, 0xc86008b8, 0x23272309, 0x70843315, 0x8a743220, 0x83cf8205, 0x82142041,
0x05337080, 0x10534819, 0x99183720, 0x1f770deb, 0x2335210c, 0x32204f83, 0x21095f44, 0x28420a0a, 0x05a75505, 0x58835c82, 0x1e143c23, 0x06df4e14,
0x1146d787, 0x0caa4b05, 0x35330724, 0x9d823723, 0xec6c4620, 0x831e2006, 0x213982a0, 0x01821e0a, 0x0a824682, 0x5a0dfb46, 0x8b180741, 0x35210c55,
0x5d321933, 0x07114908, 0x18141421, 0x200b03dc, 0x7bbc1946, 0x0733240c, 0x82152335, 0x05014871, 0x32200883, 0x02216482, 0x83008300, 0x000b21ab,
0x08cb5318, 0x8305e143, 0x821520ef, 0x889f18a5, 0x0a0a2307, 0xa1840a14, 0x82323221, 0x6f4118a3, 0x213b8508, 0xa3433300, 0x83332005, 0x3c462731,
0x1e1e283c, 0x30824628, 0x09675118, 0x1b202783, 0x52094754, 0x4f18059a, 0x75190ad7, 0x4d192143, 0x03200923, 0x20050145, 0x082f6f15, 0x1e233529,
0x3c141414, 0x82281414, 0x0a64249a, 0x8f3c0a32, 0x4f37209f, 0x46200acd, 0x20052a6e, 0x20d1820a, 0xeb401814, 0x5a9f8308, 0x5b560e05, 0x0cb7530b,
0x1e0a1427, 0x140a1e46, 0x07ef7314, 0x20074341, 0x09034711, 0x5744df82, 0x46332205, 0xc85e183c, 0x831e2009, 0x874d180a, 0x00502309, 0x77410046,
0x0a395e05, 0x147f9a19, 0x46321426, 0x32320a0a, 0x4d06af45, 0x035d053f, 0x54332005, 0xaa490563, 0x82152007, 0x190a20e7, 0x20086854, 0x22a68214,
0x18460a0a, 0x410bc768, 0x561a05af, 0x15200c65, 0x82061b42, 0x4b282026, 0x0e1a085d, 0x6b890df7, 0x09184318, 0x8b720983, 0x840a2005, 0x141e2339,
0x7a561432, 0x09e34d05, 0x69473c20, 0x44332005, 0x23220897, 0x0c822715, 0x62822685, 0x76193985, 0x3c250d97, 0x00001300, 0x05344733, 0x200c3743,
0x05f54b3c, 0x490a3221, 0x748405f1, 0x2608bf4b, 0x003c0050, 0x420d0007, 0x904405c5, 0x23172605, 0x33153315, 0x26058227, 0x0a462335, 0x823c0a3c,
0x82e08276, 0x0a322209, 0x05bf4b32, 0x83051748, 0x00502205, 0xa9461946, 0x0ae17108, 0x15208782, 0x2007af43, 0x82398250, 0x3c1422b0, 0x217a8228,
0xc4841e0a, 0x00821e20, 0x6006af43, 0x0f7709ef, 0x1fe61809, 0x20ca830a, 0x198b8237, 0x2508cc92, 0x14280a28, 0xcb853c14, 0x0b979c18, 0x89821e20,
0xf3685020, 0x058c4308, 0x14322323, 0x207a8314, 0x207a8346, 0xe39f1828, 0x05b3740b, 0x2005b944, 0x2b9a1823, 0x18a28208, 0x200c1b46, 0x06ed7246,
0x20085a62, 0x23898227, 0x32141e3c, 0x2105de77, 0x7419461e, 0x93450cbb, 0x41372008, 0x598207b8, 0x37233a83, 0x82353315, 0x063d41bf, 0x00821420,
0x79460a21, 0xcf450535, 0x18372011, 0x220899a3, 0x7a352335, 0x0a2306b5, 0x820a0a14, 0x820a2073, 0x144622f9, 0x1975840a, 0x820863cd, 0x05af4841,
0x088d8018, 0x823c0a21, 0x0a462160, 0x098f4418, 0x1805bb42, 0x1808ffe0, 0x2407499b, 0x460a280a, 0x0d2f4f3c, 0xef823c20, 0x7b824787, 0x0a3c0a26,
0x3c323232, 0xe218ed83, 0x09270ba7, 0x11000d00, 0x83370000, 0x21de83a0, 0x52822335, 0x03823720, 0x32284622, 0x8205684d, 0x05224180, 0x0883d318,
0x0d208383, 0x55823382, 0x82068f4a, 0x845d8209, 0x0a282361, 0xe3823c14, 0x4f093349, 0x216c07e7, 0x23688406, 0x0a143233, 0x0a242482, 0x1e461414,
0xcf5d5f82, 0x05cf460a, 0x082f9c18, 0x67435f86, 0x08b85306, 0x1e284625, 0x8228281e, 0x0a075e3a, 0x6f494620, 0x4b352005, 0xde6605c5, 0x83332009,
0x26158243, 0x0a0a1e33, 0x823c0a1e, 0x20068543, 0x7c8e1828, 0x18142009, 0x45097382, 0x37200603, 0x12179318, 0x23204382, 0x627b3f84, 0x46282106,
0x087b4e18, 0x2706a750, 0x4600f6ff, 0x23005a00, 0x12c96c19, 0x8a18fd84, 0x8f830c6c, 0x86837882, 0x860a0a21, 0x82322008, 0x19142008, 0x8308546f,
0x0bd81908, 0x060b430f, 0x18231521, 0x820cf562, 0x233522f3, 0x05af410a, 0x0a204285, 0x7c56a983, 0x0d475108, 0x9f830520, 0xcd824182, 0x46142822,
0x09878018, 0x1805f342, 0x18082d95, 0x200bcd73, 0x224a820a, 0x411e1e14, 0x938b05ac, 0x37670720, 0x32232808, 0x143c1414, 0x18463c3c, 0x430a63e2,
0xfd840773, 0x09113a19, 0x20057443, 0x05fd4228, 0x09534d18, 0x18077f44, 0x50089b9d, 0x46200bbb, 0x20087b4f, 0x1909831e, 0x22086270, 0x46000100,
0x0b20070b, 0x83057b46, 0x333526d9, 0x14503335, 0x24b68214, 0x14283c3c, 0x05e74714, 0x6e252783, 0x10004600, 0x23738200, 0x15013b37, 0x083a4418,
0x28058e5d, 0x0a323315, 0x1e280a28, 0x82608250, 0x0a462234, 0x24f5821e, 0x14323c3c, 0x09774700, 0x08079918, 0x1808d64f, 0x8408ffc1, 0x44232077,
0x0a21071f, 0x06835d14, 0x82064f46, 0x480a204a, 0x611a053e, 0x0025091f, 0x00a00000, 0x21df185a, 0x6523200c, 0x9c830885, 0xb8182320, 0x6f8209b1,
0x22054344, 0x82233533, 0x1e1e2548, 0x0a1e1432, 0xdc820882, 0x2305b75c, 0x46141464, 0x3220f183, 0x1e20f583, 0x8205a85b, 0x4114200a, 0x63180d5f,
0x5218093f, 0x8e6b0c59, 0x82172005, 0x8332206e, 0x82322055, 0x0a1e2159, 0x1e220982, 0x9f460a46, 0x44ba8305, 0x042005a7, 0x1806e34c, 0x500a0f90,
0x9b420655, 0x0a394305, 0xcd833720, 0x15230382, 0x18152335, 0x8209a678, 0x06846e50, 0x8205564c, 0x0a0a2862, 0x1e461e32, 0x190a0a3c, 0x43082f0d,
0x1b210587, 0x59021900, 0x1af78209, 0x5c0c9b51, 0x462008a3, 0x2105f742, 0xd1431e1e, 0x05944305, 0x83141421, 0x0a3c21b1, 0x6405a969, 0x4d190d93,
0x7f190d8f, 0x37270efd, 0x46333523, 0x8232320a, 0x833b82af, 0x0a0a2102, 0x09fc8619, 0x4b143221, 0x642108fb, 0x073b4500, 0x371a2320, 0x15200add,
0x14213f86, 0x207a821e, 0x8666181e, 0x32322207, 0x73dd1846, 0x6646200a, 0x172008f3, 0x240d756a, 0x15233507, 0x20038237, 0x20839c17, 0x19838450,
0x19089794, 0x830e617b, 0x843f8643, 0x82c18283, 0x821420c0, 0x693220d1, 0x042005ef, 0x085bed19, 0x8e1c0741, 0x3c282283, 0x0b07413c, 0x33764620,
0x00ec2105, 0x0741cb83, 0x85838b14, 0x2283843c, 0x82000a1e, 0x074f4300, 0x1f007822, 0x1808e362, 0x18089b62, 0x240bf441, 0x33152335, 0x05e75735,
0x46210782, 0x694d1a0a, 0x08385110, 0x24057d61, 0x14461414, 0x05934a50, 0x6e206387, 0x29206382, 0x150d241a, 0x55333521, 0x638305c6, 0x09d18d18,
0xa7596594, 0x82322009, 0x320a225e, 0x7c65830a, 0x002508a7, 0x78004600, 0x08cb5b00, 0x5f086248, 0x232209df, 0xdb5f3335, 0x05084406, 0xd65f1420,
0x32322505, 0x500a460a, 0x5742478c, 0x23332108, 0x200b2959, 0x82418337, 0x141e217b, 0x02823a82, 0x140a3226, 0x46323250, 0x9a0b0b42, 0x058d417f,
0x4d280a21, 0x0a2105b0, 0x0515420a, 0x840a0a21, 0x070b4e7f, 0x53420a20, 0x847f8d0d, 0x577f8641, 0x7f8305da, 0x7f852820, 0xa9050742, 0x3c1e227f,
0x22ff8a3c, 0x82000a28, 0x42032000, 0x4f420897, 0x237f9906, 0x0a3c3c28, 0x1e20ff85, 0x25058742, 0x004600e2, 0x7f83006e, 0xe95e1d20, 0x15332108,
0xe15e0182, 0x35332105, 0x0985ab19, 0x200b8541, 0x2284820a, 0x1a0a281e, 0x2308e168, 0x0a0a0a3c, 0x20078b41, 0x835385ff, 0x8317208b, 0x0b8b4153,
0x11414d8a, 0x841e2006, 0x8614204a, 0x8d148295, 0x845a2047, 0x971f209b, 0x4c35209b, 0x9d8a0851, 0x14141e25, 0x83280a14, 0x415a2057, 0x9e8207a7,
0x2b410a20, 0x219f8308, 0x9f83005a, 0x734d1920, 0x33352109, 0x8906ff43, 0x20a18651, 0x864e8528, 0x07f618a1, 0x059f5b08, 0xb7558220, 0x0bc14e05,
0x2108df46, 0x691a1533, 0x3c2107dd, 0x248d8214, 0x1e0a5a14, 0x078c6a0a, 0x87000421, 0x000d213f, 0x2105476f, 0xeb523700, 0x33352206, 0x18398235,
0x230745b1, 0x23172335, 0x46229b85, 0x7c821e28, 0x3c0a2823, 0x254c821e, 0x3c3c3c0a, 0x464c1414, 0x460a2105, 0x2205005c, 0x5c141432, 0x97970837,
0x67825b83, 0xb306654f, 0x071f4197, 0x0a209790, 0x1e219682, 0x8898820a, 0x0a322197, 0x28211282, 0x2097860a, 0x057741ff, 0x10473c1a, 0x4108f576,
0x7141092f, 0x0a5a2305, 0xf2830a1e, 0x420a0a21, 0x2b5809ab, 0x05ab4205, 0x44083952, 0x041a068b, 0x7f190a7d, 0x142009f9, 0x0b2f651a, 0x4a825a20,
0x2741a182, 0x228f8205, 0x1a5a0050, 0x21092737, 0x47832315, 0x17331522, 0x0e2d9819, 0x20062b41, 0x208d820a, 0x84038314, 0x07d54496, 0x21077f43,
0xcf5300e2, 0x001d2305, 0xc9410021, 0x224f8f0e, 0x19233527, 0x88089980, 0x411e2054, 0x502007cb, 0x0a21a284, 0xdb40190a, 0x24a78209, 0x00780046,
0x05255717, 0x0d24f918, 0x6859b387, 0x06ad6a08, 0x0a141e28, 0x1e283c14, 0xad50281e, 0x84568208, 0x846420b8, 0x5500205f, 0x1924096f, 0x29002500,
0x5d8cb387, 0x8b064f41, 0xa9f0195b, 0xa93d1a11, 0x08ea540b, 0x20051d41, 0x0a8f423c, 0x09007823, 0x4d1c1a00, 0x3335220a, 0x205d8227, 0x20a18246,
0x26258214, 0x0a1e5014, 0x490a5a28, 0xef83096f, 0x0eb15519, 0x15333524, 0x35851523, 0x0a20dc82, 0x2405e268, 0x28282814, 0x216c820a, 0x3b8b321e,
0x0b726e20, 0x4633200a, 0x71820aa9, 0x0b463520, 0x05884c06, 0x3c3c1e22, 0x0a953a1a, 0x20081341, 0x24a9825a, 0x00150011, 0x08ad4400, 0x83433582,
0x82372005, 0x0a462309, 0x73822832, 0x14143227, 0x143c3c28, 0x513c1a0a, 0x4e002009, 0x78200ac7, 0x0933f318, 0x0fa1ab19, 0x22051c49, 0x825a2828,
0x43b683bb, 0x642008b3, 0xa819338f, 0x14200955, 0x14247082, 0x5a3c3c14, 0x1805b578, 0x2009b3ae, 0x82338f5a, 0x77a383a7, 0x678408af, 0x67877820,
0x18088343, 0x220c5166, 0x87073315, 0x0a1e2133, 0x67843982, 0x5b475a20, 0x20cf850c, 0x33651813, 0x73ce1808, 0x82398808, 0x28142337, 0x6f841414,
0x19051050, 0x5211a353, 0x35200aa9, 0x2006076f, 0x83378346, 0x843b8275, 0x18078277, 0x220affae, 0x8217005a, 0x4d352073, 0x6b1806b4, 0x33270a7c,
0x32153335, 0x180a1414, 0x2007a252, 0x05984528, 0x825a0a21, 0x3f9f1880, 0x00462108, 0x15203f99, 0x1e233f8b, 0x423c3c0a, 0x5a2305bd, 0x183c0a14,
0x440c039f, 0x232007af, 0x08f86618, 0x410b0d54, 0x04430567, 0x20fa8405, 0x4c46846e, 0x5a2008f7, 0x4a081f46, 0x921808eb, 0xfd860b07, 0xfe843f85,
0x3f8b5020, 0x200c9f44, 0x06255535, 0x200f4f44, 0xc73b1a3c, 0x139f4413, 0x09006423, 0xc1111a00, 0x444d8408, 0x272010eb, 0x46206382, 0x44050a55,
0x1e2607ee, 0x320a1414, 0x50873c0a, 0xc74b5a20, 0x05634609, 0x63059755, 0x418308ae, 0x5505ab43, 0xac5c0561, 0x0a282205, 0x27018314, 0x14142814,
0x0a0a4650, 0x6507a573, 0x78200dd3, 0x17209f82, 0x0cabfe19, 0xdd653320, 0x9d721a05, 0x4a9d850c, 0x0c82060b, 0x60559c83, 0x44142005, 0xf1190c6f,
0xb9410a97, 0x09f46407, 0x85232721, 0x0c995553, 0xa2840a20, 0x5a281422, 0xf482a582, 0x195a1421, 0xb710e394, 0x1e0a2253, 0x053a575a, 0x538a0a20,
0x18068b43, 0x2008cb50, 0x08614235, 0x5d43a789, 0x18988205, 0x8208c86f, 0x18a189e4, 0xb8084753, 0x8999894b, 0x05934a4b, 0x1521979c, 0x0a157123,
0x00820a20, 0x143c3c22, 0x28229689, 0x375b000a, 0x8f521805, 0x08c96608, 0x4c0bd56a, 0x5d710543, 0x89478609, 0x48478692, 0x05210537, 0xf9f91800,
0x42072008, 0x282505a5, 0x5a141414, 0x059b4d50, 0x4907b34c, 0x231a05d7, 0xd9440865, 0x5d621906, 0x0a462108, 0xff462f86, 0x006e2107, 0x8209d36c,
0x0895448f, 0x28143c22, 0x5f82d283, 0x8c0a5a24, 0x1b460014, 0x196e2008, 0x841fc386, 0x059f7835, 0x07413783, 0x20bf8a09, 0x23bf8615, 0x505a3c3c,
0x2005935b, 0x090f4eff, 0x2786bb8a, 0x14281424, 0x52833c3c, 0x0f412b86, 0x00112107, 0xfd482b84, 0x8246200d, 0x063e49b9, 0xab4a5020, 0x061f4209,
0x0edb3e1a, 0x200d7949, 0x85678214, 0x866b8339, 0x05c3453b, 0x4d005021, 0x1b2005a3, 0x2008ff76, 0x6f758233, 0x654e06d3, 0x42322009, 0x1e2005a8,
0x28051e57, 0x1e140a14, 0x145a3c1e, 0x58bc820a, 0xfb5c07ee, 0x006e2308, 0x3159000d, 0xb0bc1806, 0x52272009, 0x352106ed, 0x051b6a33, 0x820a3c21,
0x0a142600, 0x32323c1e, 0x05ab503c, 0x870a9346, 0x44458293, 0x35200525, 0x3521938e, 0x218f8b33, 0x8d8a141e, 0x47840a20, 0x52000221, 0x642005ff,
0x4b418b82, 0x08f94905, 0x87057947, 0x853b8285, 0x4c142082, 0x9b450ae3, 0x08856605, 0x20056344, 0x08134115, 0x9a230721, 0x0b8f477f, 0x1808075e,
0x6a0ade41, 0x054105cb, 0x477f8808, 0xb7870593, 0xe7487820, 0x0a59470a, 0x4105f74f, 0x14240743, 0x140a0a0a, 0x1e244082, 0x5a320a0a, 0x2005c358,
0x0aa74800, 0x1905334f, 0x200a2d96, 0x20b78227, 0x07b95646, 0x463c3c23, 0x43f3850a, 0x677b055f, 0x0577481a, 0x90053141, 0x0d7f4873, 0x8606db54,
0x8ceb86ef, 0x22e78873, 0x9c00ecff, 0x82152073, 0x21738aad, 0xe6884646, 0x83446e20, 0x836f9009, 0x206f8535, 0x2200823c, 0x85500a46, 0x86e2202b,
0x001f226b, 0x11477c00, 0x1b4edf84, 0x20738a08, 0x0533430a, 0x78207888, 0x4805c047, 0x7f830a43, 0x39491520, 0x0c77430b, 0x26076b41, 0x3c0a280a,
0x4c0a463c, 0x936505a2, 0x00822208, 0x3d9f180b, 0x5533200c, 0x5a180670, 0x352008f8, 0x4a06d14d, 0x4620059f, 0x02834582, 0x181e0a21, 0x21086daf,
0x9082141e, 0x820a3c21, 0x08206e11, 0x3c3c6422, 0x5c199e82, 0x6383087f, 0x4f520f20, 0x19352009, 0x4d0be160, 0x27200e0b, 0x08555a19, 0x820a2821,
0x14142267, 0x82698432, 0x8232206d, 0x065b6770, 0x32323222, 0x2005c548, 0x7184840a, 0x67830833, 0x75052d6b, 0x6987069d, 0x08d57e19, 0x694bdd84,
0x82072009, 0x82d18c89, 0x191e2067, 0x8a091a61, 0x20d182d4, 0x20de826e, 0x236b8800, 0x000b0078, 0xee826bcb, 0x23070149, 0x5a282850, 0x0ce76819,
0x20053f41, 0x736f8213, 0x07240cbd, 0x37152335, 0x2721c182, 0xf5e51923, 0x280a2209, 0x05364c0a, 0x25067d53, 0x3c0a0a3c, 0x2d413c3c, 0x3f631905,
0x191b2010, 0xa30dcd9f, 0x0a32264f, 0x3232320a, 0x67c61846, 0x1a46200b, 0x9808a718, 0x8215204f, 0x0a1160a5, 0x823c2821, 0x87a08596, 0x1814209f,
0x53096756, 0x0f2105af, 0x99ef9a00, 0x1a9f874f, 0x240c0f17, 0x00090078, 0x09b5790d, 0x2007ed58, 0x066d4337, 0x580a4621, 0x1e2d05f5, 0x140a140a,
0x5a280a32, 0x1e1e1e0a, 0x5690833c, 0x97470af3, 0x08497f05, 0x8d87438b, 0x28204585, 0x2606a650, 0x320a641e, 0x525a3232, 0x4d820ab7, 0x9355db83,
0x05d3450a, 0x87077741, 0x14142187, 0xff538588, 0x0cd7560d, 0x0a213b98, 0x207a850a, 0x0e5f4d46, 0x7c063b70, 0x23200c5f, 0x21054f74, 0x6d492337,
0x085b5706, 0x0a2e071a, 0x23098f4b, 0x00070064, 0x210bd356, 0x3782013b, 0x2605694f, 0x14140a28, 0x821e1e0a, 0x14142505, 0x14462828, 0x0349f684,
0x7b581807, 0x207b9308, 0x577b9a17, 0x46200a4f, 0x07207b95, 0x7b883d82, 0x7b872820, 0x00146422, 0x20070b59, 0x931c196e, 0x495e190b, 0x8a152009,
0x08034bf9, 0x9749fd85, 0x0a004105, 0x148c0a23, 0x204f8800, 0x2087825a, 0xf76a190b, 0x1533230a, 0x83823733, 0x89050342, 0x3c3c248d, 0x86140a1e,
0x214a828f, 0x92820a0a, 0x47550020, 0x1a8b4109, 0x820e0f41, 0x578a898d, 0x46200adb, 0x43188786, 0x3783081b, 0x4105ef44, 0x8185050f, 0x14462824,
0xab700a46, 0x050f5405, 0x18007821, 0x190c45de, 0x201b85a3, 0x061d4527, 0x1f651420, 0x20088408, 0x740f8614, 0x08830821, 0x1f514620, 0x97ae180b,
0x8523200d, 0x23152195, 0x2105ef60, 0x91193335, 0x4b850af5, 0x820a1421, 0x0a142242, 0x57f71832, 0x00462209, 0x20a7a95a, 0x20a7aa07, 0x65638b3c,
0x5c18069f, 0x4782086b, 0x08df311a, 0x210a8751, 0x3b1a1e28, 0x43840d3e, 0x24097b50, 0x002b0023, 0x0e3b642f, 0x0cff4e18, 0x21065c50, 0x9b181533,
0xb1960811, 0x0a140a24, 0x5d412814, 0x0a502213, 0x4782820a, 0x6e2308b3, 0x54001300, 0x73520707, 0x20b98a05, 0x08e34a37, 0x4b526585, 0x4ac38205,
0x322005ea, 0x71415f84, 0x49462006, 0x676205bb, 0x0078220b, 0x1acd8223, 0x8326793e, 0x057b466b, 0xe1513520, 0x66b91805, 0x8214200c, 0x2002825d,
0x20d6831e, 0x84d6973c, 0x668082d8, 0x642007ef, 0x7d18db82, 0x332009f9, 0x2408715a, 0x15331523, 0x8a6f9133, 0x86678add, 0x843c20de, 0x0b534b80,
0x42004621, 0x4a1805ff, 0x352008b3, 0x090f2219, 0x710cbf66, 0x818209e9, 0x93653320, 0x214d8405, 0xc9850a28, 0x7f5c1420, 0x43138205, 0x3c220c07,
0xf7596e14, 0x05074309, 0x8e071547, 0x410720cb, 0x0d4305b9, 0x0b9d410e, 0x5a143c22, 0x20096f57, 0x0a2f6778, 0x2105f347, 0x55664633, 0x50142405,
0x540a5050, 0x751813db, 0xdb540e8b, 0x83282005, 0x821e20b1, 0x21698200, 0x04830a32, 0x4d090b4b, 0xe41905f7, 0x41530913, 0x823c200a, 0x2067836b,
0x0da34378, 0x136b7618, 0x87050942, 0x06905a67, 0x5c0a1421, 0xaf4e06e3, 0x4b678c09, 0x3c220731, 0x66833c3c, 0x8b5c6e20, 0x05b74e08, 0x33846794,
0x775a6787, 0x4e668205, 0x07220cc3, 0x99431300, 0x08d34a0a, 0x3b411520, 0x280a2208, 0x4bd6840a, 0x5a221053, 0x29520f00, 0x9d3d1906, 0x0545510e,
0x82333521, 0x82e38b43, 0x054e410b, 0x5509d74e, 0x858b0a0b, 0x2b433320, 0x44172005, 0x704a08b5, 0x218a8209, 0xaf421478, 0x055b4c0d, 0x2008bb67,
0x833d8b15, 0x233c8770, 0x643c3c3c, 0x58069f52, 0x31430b77, 0x0fd7530b, 0x23086968, 0x0a140a1e, 0x0a210383, 0x1980820a, 0x20093a03, 0x07934d00,
0xc95a8383, 0x90818308, 0x58898449, 0x0a20086b, 0x5a208c82, 0x0dd3571a, 0x49080b41, 0x56180641, 0x9341081c, 0xa065190b, 0x82088208, 0x4c8c823e,
0x35211ceb, 0x4c8b8333, 0x0d1a0ceb, 0x8b580ee3, 0x5b491a06, 0x590b2009, 0xd57e063d, 0x0b194c08, 0x4109e94c, 0x0a200c19, 0x23059d46, 0x46460a0a,
0x18080d72, 0x240dd7ac, 0x00090082, 0x18598319, 0x4c09f36d, 0xd74c0f71, 0x0d294108, 0x2105d44c, 0x40183c3c, 0x074b0814, 0x07f74b0c, 0x200e3341,
0x06394435, 0x20094546, 0x46408214, 0x0f1a0639, 0x04200b18, 0x0833211a, 0x820d4f60, 0x05575f3f, 0x94054874, 0x20938247, 0x62f9820a, 0x78200ca3,
0x15e73c1a, 0x4620eb8f, 0x20053141, 0x42cb8214, 0x09820659, 0x6b0c3e41, 0x502208db, 0x53826e00, 0x7b06ad4d, 0x53850b21, 0x2109f95f, 0xb1843315,
0x5b8c3320, 0x091eae18, 0x0cdea919, 0x0a206d84, 0x200c6357, 0x0707440f, 0x4018638b, 0x4c180a93, 0x462209a1, 0xe3444646, 0x0577690c, 0x55470020,
0x08374206, 0x32233b94, 0x18643232, 0x52095fe0, 0xd36f0cd3, 0x06437c09, 0x86373321, 0x0a50214b, 0x1421af83, 0xd3741828, 0x831e2008, 0x5a3c2400,
0x823c3c1e, 0x47c683ec, 0x475f0af7, 0xc73e1a0a, 0x8e138513, 0x1e0a2c51, 0x1414140a, 0x46322828, 0x5f323214, 0x00220b47, 0xa3a00000, 0x8b05d74a,
0x82142051, 0x891420af, 0xef1119a3, 0x5f50200d, 0xa3910deb, 0x8a080166, 0x05776cf5, 0xbf61a389, 0x05bf4208, 0x6d098753, 0x171a0da1, 0x43180895,
0xa58b07ad, 0x14142824, 0xa68a1432, 0x5e824620, 0x21088f50, 0x48190064, 0x514808eb, 0x1823200e, 0x910bfd43, 0x20a3894f, 0x410a823c, 0x5f620897,
0x20f3910c, 0x06fd7a35, 0x8c07e341, 0x057b4996, 0x61072754, 0x47a20aa7, 0x47868e8b, 0x5408fb45, 0x77420637, 0x82172011, 0x0d2142e3, 0x6a188f8a,
0x4784089b, 0x4405ff6d, 0xbf420e7d, 0x89479207, 0x1432218f, 0xbf418f83, 0x00462805, 0x00130078, 0x191f0019, 0x82174582, 0x35332251, 0x09df7133,
0x21056545, 0x00820a14, 0x48182820, 0x6c1808de, 0x1e24092f, 0x0a14320a, 0x0af77718, 0x64004624, 0x5d821b00, 0x20086354, 0x06694935, 0x4c051d46,
0x6d4c0a77, 0x890a2005, 0x49098506, 0xfb8506c9, 0x33450520, 0xbf6f1808, 0x09de7e0e, 0x116fc719, 0x94078142, 0x557918b9, 0x861e200c, 0xcff518bd,
0x76bf870a, 0x411806a3, 0xc18b0bb1, 0x8f083958, 0x822820c5, 0x05364a10, 0x3c201985, 0x0c9bba18, 0x44007821, 0xdb4d14fb, 0x60a11805, 0x32142408,
0x8228280a, 0x4a282002, 0x00210647, 0x05df74ff, 0x19001522, 0x18053f49, 0x200aed73, 0x05774723, 0x0a214186, 0x05994128, 0xf0657482, 0x3c3c2208,
0x0e8f4a3c, 0xfb411720, 0x18332006, 0x200e0660, 0x6c541823, 0x067d4b08, 0x0a3c4622, 0x080a7718, 0x20061763, 0x2110821e, 0x05840a14, 0x5e055448,
0x57bb0acf, 0xf7681420, 0x5d462009, 0x255c0f53, 0xaa771809, 0x5923200f, 0xa78d07f1, 0x2f5aa48a, 0x0046210d, 0x988a4bb0, 0x335b4b89, 0x1447410d,
0x35231523, 0x0c3f4133, 0x8a3c3c21, 0x0a075a96, 0x4792939e, 0x478a928a, 0x21101b60, 0x3b843315, 0x2005715f, 0x2400823c, 0x500a145a, 0x0897690a,
0x72058b42, 0x352008c7, 0x08f77e18, 0x694c2720, 0x07514b07, 0x4b06a169, 0x5a200551, 0x220bbb45, 0x4e0b006e, 0x8d420c21, 0x09554706, 0x5305f144,
0xe944079f, 0x0a1e220b, 0x05a24a1e, 0x4109a744, 0x0a2105f8, 0x42a3830a, 0x6e2205f3, 0x0f571500, 0x11f54209, 0x0bd54818, 0x083f151a, 0x57060143,
0x1420051a, 0x6d0b0643, 0x034108e6, 0x5f0d200a, 0x6f1a0823, 0x8f180cf7, 0x332008fe, 0x11ef2f1a, 0x830a0a21, 0x824c8254, 0x260582c0, 0x00141464,
0x54140002, 0x474d064f, 0x53332009, 0x4622058b, 0x8a82141e, 0x174e1420, 0x14875309, 0x421a6f84, 0x17200a5d, 0x366f8d82, 0x20618205, 0x23008314,
0x0a461e1e, 0x1e200082, 0xd34e0782, 0x00462209, 0x05fd520d, 0x1905eb4a, 0x680bb57d, 0x7d190887, 0xb5840722, 0x14320a23, 0x058b6814, 0x8d66af86,
0xe1711806, 0x1d981808, 0x20fd830e, 0x838b8835, 0x208382f9, 0x84938214, 0x8207828e, 0x22928255, 0x56000a3c, 0x53410acf, 0xb5701a05, 0x06855f10,
0x45744d82, 0x23578405, 0x1e0a0a32, 0x5984a182, 0x05841420, 0x5b41a785, 0x195a2008, 0x260b03d2, 0x000f0082, 0x1823001f, 0x830ac541, 0x523320af,
0x415606cb, 0x05195c06, 0x23351523, 0x08535615, 0x085b5a18, 0x21070e42, 0x38493214, 0x05534105, 0x0283d382, 0x1e1e4622, 0x47064049, 0x502a052b,
0x0d007800, 0x21001d00, 0x39682900, 0x19bf840a, 0x210f5fe6, 0x6d823507, 0x82837882, 0xd3874620, 0x21087b42, 0x31421e14, 0x83e08605, 0x1450236b,
0x07836414, 0x09bb4518, 0x2720db83, 0x4618d993, 0x798408f3, 0x09e0ef18, 0x180cf578, 0x220c5fab, 0x421e141e, 0x4518062d, 0xdd820a89, 0x83086f78,
0x922520d7, 0x08996ed5, 0x08ab6f18, 0x17207384, 0xd5870e82, 0x9e192820, 0xd7850c27, 0x14840a20, 0x64226b86, 0x47181414, 0x822108b7, 0x20658300,
0xc981192d, 0x0ca5410c, 0x19055749, 0x230b376f, 0x23153337, 0x8205f942, 0x835282d2, 0x05194761, 0xd6830c82, 0x4106c543, 0x1e27064b, 0x0a501e1e,
0x83000400, 0x05af4100, 0x076f718a, 0xd7961909, 0x0ae05a07, 0x15333524, 0xd9831533, 0x87427184, 0x8528200b, 0x207f8a79, 0x0ab9411e, 0x14500a23,
0x06c37c14, 0x50247482, 0x27008200, 0x45067354, 0xce610542, 0xc4561808, 0x06e0430c, 0x23822320, 0x35227384, 0xfe441523, 0x05f34205, 0x21090649,
0xd9190a0a, 0x46200ce0, 0x8506c941, 0x4b708207, 0x82270837, 0x29000d00, 0x18002d00, 0x220ecbe9, 0x60273315, 0x35200b22, 0xe9827183, 0x1d219585,
0x20778201, 0x0acd4137, 0x14207d82, 0x3545db84, 0x076f4105, 0x0e2ad818, 0xf1835a20, 0x6c058743, 0x874305fb, 0x41272007, 0x66820cd9, 0x4405c156,
0xf3841fcd, 0x430cd544, 0x46210981, 0x58e48214, 0x7f43092f, 0x43252005, 0xd6820f7f, 0x200c4742, 0x23e68207, 0x1523013d, 0x090b251a, 0x0a20d584,
0x41060849, 0x78200abe, 0x62821283, 0x2008b748, 0x06db5682, 0x180e3541, 0x6a0bda47, 0x2326052a, 0x2335011d, 0xaa413c15, 0x06fc4209, 0x0a501422,
0x43059d41, 0x28200a6c, 0x0beb9018, 0x78004624, 0xc7460d00, 0x0da74505, 0x8c572720, 0x71c6180a, 0x20c5890b, 0x6863830a, 0x098305be, 0x2209d65d,
0x6b500a0a, 0x47580cff, 0x18c39605, 0x2008889e, 0x8ac3d515, 0x20d1835f, 0x0b2f4415, 0x25411420, 0x56c39905, 0x8225076b, 0x29001d00, 0x0e2b4400,
0xe3454e84, 0x4b232005, 0xc94305e9, 0x3515220b, 0x08f77d23, 0x0c29e818, 0x00451420, 0x0a0a2107, 0x08773719, 0x3c222082, 0x6f451e1e, 0x00782309,
0x6f45000d, 0x19294408, 0x1e83db84, 0x43011d21, 0x595c0d37, 0x05024705, 0x42059b41, 0x0a200a65, 0x0b13781a, 0x82005026, 0x23001f00, 0x18076f45,
0x4c0d054e, 0x4a1a0855, 0x6c8208c9, 0x07197e18, 0x0b54be82, 0x06a84306, 0x18050d44, 0x24089b59, 0x3c1e1e1e, 0x087b470a, 0x0d206783, 0x890b4541,
0x0f1552d5, 0xd5680720, 0x0de1480a, 0x22087e54, 0x43140a28, 0x6582093d, 0xe8458b83, 0x145a2106, 0x200a835b, 0x9f801a78, 0x0f4b6c19, 0x540cd548,
0xac41085f, 0x05754408, 0xe3825020, 0x200b0344, 0x07781a64, 0x0785551f, 0x890bff43, 0x430a205c, 0x82200a37, 0x550afb43, 0x0f200803, 0x0d45bb19,
0x35230722, 0x8207c76f, 0x0a5a242d, 0x4b1e0a1e, 0xb74905f7, 0x08734907, 0x700dc16f, 0x3320064f, 0x820a8b6e, 0x0a1425d8, 0x0a0a320a, 0x46204882,
0x230cfb6b, 0x00150078, 0x1805c355, 0x200cd541, 0x09f56c15, 0x821e3c21, 0x140a29b8, 0x281e1e28, 0x5a0a0a28, 0x0a214782, 0x0550700a, 0x44090346,
0x78180557, 0x216f0945, 0x146b490a, 0x49065170, 0x51700a6b, 0x056c4906, 0x14144624, 0x8f7d0a3c, 0x6f782009, 0x4542112b, 0x142b6f0f, 0x6b566420,
0x07db430a, 0x0d006e22, 0x620b776e, 0x57540d09, 0x7f6a1a11, 0x0589610d, 0x376f0584, 0x200d8408, 0x0515410a, 0x14144623, 0x0ab35a00, 0x4f057762,
0x332105bf, 0x05ba4515, 0xaf493320, 0x08194a0f, 0x283c3c25, 0x4c281e1e, 0x1e200826, 0x850eb971, 0x087347cb, 0x410a0f4a, 0x5f8f0dfd, 0x3720c183,
0x41073d63, 0x0f4a0777, 0x70098309, 0x48180702, 0x142208d3, 0x6e824614, 0x08c74e18, 0x0b008222, 0x8707a74f, 0x17094ac5, 0x82078741, 0x72638856,
0xc4860a7e, 0x42082341, 0x25200537, 0x18090770, 0x1808274e, 0x1809ffb4, 0x200ced9a, 0x0ac37017, 0x20055551, 0x21c1840a, 0xc487320a, 0x83071f44,
0x068f416a, 0x49000221, 0xc7920593, 0x42178d49, 0x1420084f, 0x086c1419, 0x420ac570, 0xef490a57, 0x0e8f4112, 0x0c3fa419, 0x09b67e18, 0x4308ef49,
0xef490b0b, 0x0711430b, 0x220bcb45, 0x5f141432, 0xef4905eb, 0x471d2006, 0x2d4d08cb, 0x49352006, 0xc1430860, 0x07cf6005, 0x35331725, 0x463c4623,
0x28220928, 0xfa5d1e1e, 0x053a5105, 0x1424d083, 0x641e0a1e, 0xbf542183, 0x00822208, 0x05d5490d, 0x6c82d18f, 0x6b082c46, 0x0249054c, 0x23352108,
0x86057347, 0x0a3c24d5, 0x1a140a1e, 0x440acc5a, 0x50180888, 0x4b410880, 0x430a2006, 0xd749083b, 0x05476507, 0x0ca34318, 0x41136b49, 0x574d06a9,
0x0bee7409, 0xa3610a20, 0x4d6e200c, 0x25210643, 0x0e297300, 0x3d215793, 0x092d7301, 0x2b435c8a, 0x1478230f, 0x691a1432, 0x4f450d13, 0x08fc410c,
0x22084f45, 0x410a283c, 0xf8820511, 0x0aedff18, 0x5a460a23, 0x053b440a, 0x20078f61, 0x0f994509, 0x6f0c4945, 0x14200a2f, 0x2505d641, 0x0a320a0a,
0x0b83503c, 0x2505bb43, 0x00e2ff14, 0x8b51003c, 0x05df4509, 0x6f06a752, 0x0a2506bb, 0x460a1414, 0xe3a0190a, 0x2133820a, 0x4f640046, 0x19332008,
0x5e082f28, 0x3c200895, 0x8206ad6b, 0x0a322538, 0x5a14283c, 0x850aa36c, 0x0ad35c6b, 0x20076d51, 0x094f6717, 0x2005c947, 0x2175840a, 0xcf464646,
0x6b5c180f, 0x085d7b13, 0x8206f967, 0x65e08241, 0x3f8805d0, 0x18064350, 0x48070b71, 0x4f180653, 0x59780a10, 0x35152105, 0x14208987, 0x8205b245,
0x824c82c6, 0x05fb448d, 0x46464624, 0x0f670a5a, 0x001b210e, 0x0e4d401a, 0xcf4f0720, 0x534d8209, 0xe45106f7, 0x052c4707, 0x1a061d4b, 0x8408e623,
0x081b4e5d, 0x821cf768, 0x0924445c, 0x1a05d960, 0x180e19a2, 0x8408b05d, 0x0a4621c2, 0x096c2d1a, 0x21102346, 0x5f69000b, 0x20678f18, 0x22658235,
0x88462315, 0x062041c7, 0x6708ac42, 0x67860be1, 0x57450320, 0x7c0f200a, 0xc1450715, 0x82072007, 0x18538360, 0x180a8f54, 0x8808e352, 0x46488465,
0xcb85092b, 0x8307b647, 0x0a27501c, 0xf9630b20, 0x08ab780d, 0x20122950, 0x867b8217, 0x0e244663, 0x46053942, 0x64220b23, 0x77433232, 0x09234605,
0x3720cb94, 0x8816c745, 0x0a1e21cb, 0x7c092b46, 0x462205da, 0xcb8b4646, 0x2f490a20, 0x21678505, 0xcf850078, 0x840a7162, 0x466596d1, 0x9f41082d,
0x8b0a2005, 0x050f426b, 0x0a320a23, 0x0d1c500a, 0x64323222, 0x2307cb42, 0x00820050, 0x0cb30519, 0x4f05a541, 0x31460d92, 0x35072b05, 0x33371523,
0x013d2335, 0xdb841523, 0x20080460, 0x06e2620a, 0xe34cdc83, 0x820a2009, 0x825020e5, 0x21dd8212, 0x04820003, 0x6b830020, 0x6c180b20, 0xd147094b,
0x0e935008, 0x8209d647, 0x0533466c, 0x3246db85, 0x86798209, 0x0a322173, 0xd54ede83, 0x0a14210a, 0x4f06b741, 0x5343079f, 0xcd6e1807, 0x846e8508,
0x084b60cd, 0x6b058b42, 0xcc440add, 0x09975e05, 0x20069644, 0x2069865a, 0x0b2f688c, 0xbe054b43, 0x0d45435f, 0x70147821, 0x78200897, 0x1905fd55,
0x180a518d, 0x240d6388, 0x33152715, 0x08b54535, 0x14140a25, 0x4214280a, 0x0a200565, 0x0a230783, 0x18463c28, 0x220a639f, 0x5a6e0050, 0x372005fb,
0x804a458a, 0x081a4505, 0x0f821520, 0x48463521, 0x28260812, 0x1e280a0a, 0x4d833c14, 0x28205082, 0xab840e82, 0x41051b43, 0x782205d7, 0xa5860700,
0x2106a35e, 0xee183317, 0x4c8208b7, 0x35331528, 0x35012b33, 0x91493233, 0x82458305, 0x140a2453, 0x82641414, 0x872820a9, 0x4a4620af, 0x6e2208c3,
0x837c0900, 0x24a88309, 0x33153335, 0x20a08217, 0x20078215, 0x234d8235, 0x23072335, 0x2005015c, 0x204d8232, 0xd842181e, 0x22fe8209, 0x82500a0a,
0x82088255, 0x282822a6, 0x48058250, 0x1f200ab7, 0x180f2b44, 0x8608de59, 0x45d618fe, 0x82272009, 0x05e7421a, 0x82086b53, 0x141421bf, 0x0a226d82,
0x6282460a, 0x22070145, 0x82460a28, 0x0d0f41c7, 0x20055343, 0x09654100, 0x580a7f50, 0x23230870, 0x5b353315, 0xc5820615, 0xc7855c82, 0xbb821e20,
0x6f410a20, 0x41142007, 0x7b740870, 0x22668205, 0x49820050, 0x015d05dd, 0x5c4e8805, 0x271905c5, 0x161a0c27, 0x28200707, 0x61835984, 0xcc821e20,
0x6e142824, 0xc3853c28, 0xc9847782, 0x23422820, 0x0021220e, 0x6de91825, 0x1835200c, 0x8c080a44, 0x185f836e, 0x84081459, 0x21698263, 0x2643141e,
0x860a2007, 0x140a24bc, 0x8232321e, 0x059f4eb9, 0x6e005022, 0x088b4219, 0x48097442, 0x27240685, 0x07331523, 0x46206c82, 0x08ab4418, 0x00841420,
0x2007d242, 0x070f4a28, 0x1805df43, 0x2009d361, 0xd5ca1819, 0x05594409, 0x49860720, 0x59823720, 0x73423c20, 0x1414250a, 0x5a0a0a1e, 0x32219986,
0x79ac8214, 0x0f200c1b, 0x680c9969, 0x14200aa5, 0x22055f48, 0x61505050, 0x09220eef, 0x93180d00, 0xab6509c9, 0x64462005, 0x3c230857, 0x4f643c3c,
0xbe191357, 0x1c420ce1, 0x6baf8205, 0xb2820b41, 0x6e501420, 0x50502106, 0x08aaf819, 0x4a0a175a, 0x615d0907, 0x0a135a08, 0x85851382, 0x2005c444,
0x20f4820a, 0x828c820a, 0x214b8448, 0x6f180100, 0x7a18083b, 0xfd5f0aad, 0x09255509, 0x82142821, 0x08c56830, 0x0a780a29, 0x0a0a3c28, 0x84505050,
0x88002057, 0x006e2147, 0x55444783, 0x05b74611, 0x15333522, 0x21085144, 0x51820a32, 0x18084f44, 0x2007d7ab, 0x6f8f8802, 0x941805c7, 0x52440889,
0x18418206, 0x20078140, 0x06e44646, 0x280a1423, 0x220a8214, 0x87140a50, 0x0a282392, 0x67420a0a, 0x21058205, 0xd3750050, 0x43df8505, 0x352108df,
0xc9401833, 0x07531a0a, 0x1e32210a, 0x0a244b82, 0x285a0a3c, 0x5a829284, 0x820a0a21, 0x0bd7434f, 0x21072b47, 0xce433700, 0x33152110, 0x3320a082,
0x5f82fe85, 0x33172325, 0x4b282315, 0x068205cf, 0x210a0e5d, 0xa382780a, 0x830a4241, 0x8963831a, 0x05a96bff, 0x0d816a18, 0x4e821520, 0x830a9c41,
0x0a462161, 0x25059245, 0x0a320a14, 0xaa831414, 0x84093344, 0x181782c1, 0x22083750, 0x18820050, 0x8407cb4a, 0x0cf245a9, 0x3526bb89, 0x0a231523,
0x12191e0a, 0x3a5408a4, 0x20b28306, 0x18f7410a, 0x3d192120, 0xa88d0ca7, 0x87089344, 0x83ab8455, 0x641421b9, 0x85057844, 0x187183aa, 0x7f0967df,
0x4c18062f, 0xf98a08c9, 0x42051b44, 0x1e220791, 0xfd411414, 0x145a210a, 0x7f0a6344, 0x54180833, 0x33200c07, 0x57823f83, 0x413c1521, 0x41820636,
0xf2412820, 0x14502107, 0x09035718, 0x2106374c, 0xc171000f, 0x08884209, 0x61093f73, 0x0882080f, 0x42081161, 0x02210583, 0x091f5e00, 0x5e06274c,
0x4984111d, 0x33352325, 0x82463315, 0x09196135, 0x58180a20, 0x1582074f, 0x18055867, 0x20084758, 0x6f6718e2, 0x1b9f660d, 0x78259187, 0x00000014,
0x208f8401, 0x233d8250, 0x17000019, 0x0b99d418, 0x9f82d788, 0x14503323, 0x08a1610a, 0x1e140a22, 0x2005b842, 0x2083820a, 0x4244823c, 0x462205a3,
0xed477800, 0x18d18407, 0x820e7970, 0x46332013, 0x70440ad5, 0x28142305, 0x8e870a0a, 0x410bcb44, 0x78200523, 0x4e1d435f, 0x2b4110df, 0x0add440a,
0xe444ab89, 0x08577808, 0xb3825020, 0xaf4d0f20, 0x11376807, 0xbf431182, 0x0d2f6805, 0x1e0a1423, 0x08e9620a, 0x0a205e86, 0xb7835384, 0x6e005022,
0x2d20b782, 0x4517ef62, 0x5d6f06e1, 0x0a916808, 0x82096141, 0x08946860, 0x08d95e18, 0xdd693c20, 0x0b976806, 0xc3837582, 0x21001722, 0xf2186f82,
0x9b470d7e, 0x013d2107, 0x08e35518, 0x14143222, 0x4406ba60, 0x1e220582, 0x294b320a, 0x67078207, 0x7344082f, 0x45579e09, 0x3320068c, 0x1420578b,
0x578bbb84, 0x1e0a4623, 0x0c7f6814, 0x83007821, 0x982b2057, 0x413520b1, 0x172009d9, 0x8d08034e, 0x18142063, 0x9009ce7c, 0x702820c2, 0x874a090b,
0x186fa007, 0x4a09b340, 0x6f8c0757, 0x08d88419, 0xda907782, 0x6f950a20, 0x56062949, 0x91410ada, 0x41df8d07, 0x61820e3d, 0x141e1e23, 0x11994114,
0x4a282821, 0xd3830d4b, 0xd38a639c, 0xcd84638d, 0x4622638f, 0x7a821e0a, 0x0c677618, 0x17007823, 0x19a54100, 0x46023d21, 0x9118062d, 0x34410a1f,
0x05025c0e, 0x034aca8c, 0x0a0a2108, 0x9b0acb4c, 0x27352267, 0x0a511835, 0x61551808, 0x0dc94208, 0x2105404c, 0x69980a28, 0x04000023, 0x26008300,
0x00780046, 0x6313000f, 0xef5d0939, 0x2327210f, 0x180d1f67, 0x21091271, 0xc7620a0a, 0x0a322309, 0x6a182814, 0xf7440853, 0x08896208, 0x15204384,
0x5918b484, 0xed7a0fe5, 0x05e65b08, 0x20064845, 0x05735d1e, 0x0b600520, 0x22a38508, 0x5e250021, 0x072311a5, 0x85152335, 0x851720a5, 0x07332567,
0x50333523, 0x200a7254, 0x209d820a, 0x20688214, 0x82b28e32, 0x1e0a21cb, 0x410b9362, 0xd719050b, 0x0b4108bb, 0x6cc78315, 0x658d0863, 0x68490a20,
0x09174105, 0x860a2821, 0x000021d0, 0xf976cbb0, 0x79cb8f09, 0x7e41054e, 0x820a200d, 0xb6282000, 0x8e6985cb, 0x83cb8265, 0x49cb8e67, 0xcb8b0585,
0x1f001b22, 0x0911471a, 0x180b3141, 0x410b1f9b, 0x072009a3, 0x49088164, 0x0a210633, 0x0523411e, 0xea620e83, 0x1e46220c, 0x0656421e, 0x22088362,
0x8e190078, 0x1059426b, 0x7f62758f, 0x84708b0a, 0x069b4169, 0x0904451a, 0x2009b747, 0x7c67821b, 0xc1740913, 0x7f23200d, 0xeb8405a7, 0x1a070d55,
0x180b9365, 0x8208cbf8, 0x0a0a2108, 0x07d96518, 0x0d234918, 0xad445fa2, 0x5d462007, 0xc35d05a9, 0x14142306, 0xb0850a14, 0x0a205883, 0x3c205f85,
0x20065046, 0x08d34303, 0x2f205f83, 0x0dbf6f18, 0xca193520, 0x53460e5f, 0x826b8e13, 0x09564673, 0x0cddb419, 0x79834620, 0x440a5746, 0x77a4074b,
0x8f115b46, 0x0b5e4677, 0xe984778c, 0x230e5f46, 0x00780046, 0x29207783, 0x3320efaa, 0x1e21718e, 0x0766460a, 0xe6856e8c, 0xa80a6746, 0x90e38a6b,
0x086e466b, 0xda856b8c, 0x02206b84, 0x1808f744, 0x4e09afa9, 0x374a08fb, 0x3c502107, 0x3c243e82, 0x281e1e28, 0x5a24a582, 0x0a1e140a, 0x46200182,
0x0c0f7418, 0x13007822, 0x08114118, 0x0ceb7f18, 0x0a213b84, 0x223c8346, 0x831e0a50, 0x1e0a21fa, 0x2408535c, 0x00780050, 0x09114611, 0x57108159,
0x818908b3, 0x5e451420, 0x22868706, 0x820a0a5a, 0x08ff5c8d, 0x1b208783, 0xb9458995, 0x33152105, 0x4c84918a, 0x5a209688, 0x55082f7e, 0x9b9a07f7,
0x410a3345, 0x1420081d, 0x87062e45, 0x4564209b, 0x63410529, 0x76132009, 0x15200b8f, 0x0b0d8118, 0x8c05274a, 0x884c839b, 0x204a839b, 0xdb531800,
0x0009220c, 0x07354c13, 0x15333522, 0x07c55318, 0x08994318, 0x66420a20, 0x3c5a2405, 0x821e0a46, 0x0bf37786, 0x90007821, 0x0801443b, 0x14141424,
0xf8430a32, 0x831e2005, 0x4314203b, 0xff2209ef, 0xfb7e00e2, 0x00132205, 0x4a79951d, 0x46200931, 0xd4434784, 0x844d840b, 0x0bcb4389, 0xb9435399,
0x43538512, 0xa1890ab0, 0x8a0ba743, 0x98172053, 0x853320a7, 0x088c43a1, 0x28209e8a, 0x9906eb49, 0x0c714347, 0x1e209584, 0x1e229584, 0x928a1414,
0x02214784, 0x05235d00, 0x09007822, 0x200e3541, 0x11c24935, 0x08df4418, 0xbd490a20, 0x204c8405, 0x094a5728, 0x410eff41, 0xa9490d85, 0x424fa412,
0x441809eb, 0x7218097f, 0xe1480a63, 0x29e9820a, 0x280a0a46, 0x140a5a28, 0x9682281e, 0x01203983, 0x20083f44, 0x082f4913, 0x470c2947, 0x1e2807eb,
0x28281414, 0x141e0a50, 0xff434082, 0x09054e17, 0x2005f746, 0x09ff4335, 0x5405fd48, 0x14220577, 0x868b320a, 0x8817ff43, 0x060d4a4d, 0x8508ff43,
0x838a824b, 0x868f8308, 0xbf6b1996, 0x12ff4309, 0x33499b8f, 0x434c8210, 0x224107ff, 0x43142007, 0x9b9118ff, 0x200d1949, 0x419a851e, 0x77190932,
0x9b890983, 0x21001d22, 0x570e7341, 0x2320058b, 0x5c072f5c, 0x814105ef, 0x219f8606, 0xc3410a1e, 0x05ea4e0c, 0x0963fc18, 0xc5197820, 0xa38f09ab,
0x8208fe52, 0x0ad54165, 0x4105c256, 0x4c1a08db, 0x0d2010eb, 0x4d07af51, 0x4a1807dd, 0x2323080b, 0x6f463335, 0x6e6506cf, 0x0a322208, 0x72a0833c,
0x43940e7b, 0x8708b344, 0x5d142043, 0x3c2008ca, 0xf84e4582, 0x09a74805, 0x21204383, 0x5508b747, 0xbb44109f, 0x484f860a, 0x99880e92, 0x96128b48,
0x12c3445b, 0x76485b87, 0x485b830d, 0xe7480f6f, 0x205b8307, 0x41b79c1b, 0xb1850845, 0x14141e25, 0x890a0a0a, 0x442820ae, 0x4f9e05cf, 0x8c0cd344,
0x484f89a5, 0x46251037, 0x0d007800, 0x11554100, 0x8613db44, 0x444d8353, 0xa48605dd, 0xdf445020, 0x96a7890e, 0xbec81857, 0x0741420d, 0x0742579e,
0x700b2009, 0x656108fb, 0x0a794e08, 0x23059659, 0x140a0a32, 0x46289683, 0x50460a0a, 0x0a28140a, 0x0c43031a, 0x8e052745, 0x2315213d, 0x82054d7e,
0x833d8640, 0x087f513c, 0x8309034f, 0x6151187f, 0x4e39820d, 0x46201155, 0x28208989, 0x2006f248, 0x838e860a, 0x0a1e229a, 0x0c6f5f00, 0x1a001521,
0x490a8767, 0x232206b7, 0x414e3335, 0x4e518a0b, 0x5084063d, 0xec83a284, 0x9c0aa74f, 0x09f944a3, 0x2821518a, 0x82a4820a, 0x735284f8, 0x0a2105b1,
0x85a3ab28, 0x83a38d55, 0x83a38953, 0x089761f6, 0x0b007824, 0xf3821700, 0x41050145, 0x934d088b, 0x094f500c, 0x84054b41, 0x0a1e224e, 0x0adc413c,
0x22051251, 0x89140a14, 0x005021ab, 0x59a05b85, 0x8d0af141, 0x0a462359, 0x5885460a, 0x1e0a1e23, 0x0b3b7514, 0x9e1a0b20, 0xe14d17c7, 0x0a28230c,
0x98481414, 0x083c6305, 0x140f5d18, 0xd9770f20, 0x8d4b1807, 0x0ccd4d0d, 0x6205cb4d, 0x93420ce3, 0x5f4b8314, 0xd171122f, 0x45332008, 0x28200b1f,
0x8205834e, 0x190a20f5, 0x20088518, 0x0840630a, 0x45140a21, 0xf3420621, 0x455f980b, 0x5f861323, 0x230f2345, 0x3232320a, 0xed49bc84, 0x0d1b7f06,
0x1d001922, 0x20082545, 0x1f4a1833, 0x3523210e, 0x6a18bf83, 0x0a2009cf, 0x8b0a834d, 0x642820b7, 0x53960e4f, 0x410d2b45, 0x1e22090d, 0x2c450a0a,
0x83ab8907, 0x07b34753, 0x08976219, 0x88068956, 0x098144a7, 0x655d5020, 0xd0891805, 0x089e6208, 0x240b8744, 0x00780050, 0x0afd4115, 0x750c7149,
0x47840527, 0x08dacc18, 0x84504584, 0x057b6005, 0x85095751, 0x451d2093, 0x958e0ac5, 0x8b0ceb52, 0x0897449d, 0xa4430a20, 0x82462005, 0x0d9b44a2,
0xc945a787, 0x5dc3180b, 0x09a34108, 0x13833520, 0xb18d3320, 0x84141421, 0x885982bc, 0x4d5a20b6, 0xbbac069f, 0x4109ad44, 0xaf440c59, 0x52bb8a08,
0x2b4607d8, 0x85bba605, 0x82bb8e5f, 0x05f161ba, 0xbf4dbb88, 0x0000220a, 0x050b5500, 0xd75e1920, 0x4d23200c, 0x0a200ec5, 0x0341a282, 0x5e4a8205,
0x3222052a, 0xcb4d0a0a, 0x44479d0a, 0x14200b05, 0xcd514783, 0x3c3c2108, 0xd74d4782, 0x44478a0a, 0x15200a01, 0x4e055345, 0x01440a57, 0x4953840d,
0x59840e22, 0x9f10e34d, 0x1501445f, 0x02445f85, 0x51b9890d, 0x0f201297, 0x1909015b, 0x4f081d00, 0xd9680c17, 0x4d598407, 0x498208f8, 0x7f51b68a,
0x4453980e, 0x53850f01, 0x8a0a6d51, 0x0ad757aa, 0x4105f741, 0x31491365, 0x06014214, 0x53060b4c, 0x5884059c, 0x4110134e, 0x5b980863, 0xa60f3549,
0x09df4d5b, 0x440d755d, 0x50200c71, 0x081d8718, 0x5b141e21, 0x1e20059c, 0x5007e84d, 0x172009fb, 0x8c0eeb5b, 0x089b4d41, 0x1420498b, 0x2105f748,
0xb8552828, 0x5d078205, 0x7b5b08c7, 0x08c75d08, 0x2d1a3520, 0xef4d09f6, 0x079b4308, 0x20054944, 0x84938214, 0x1aa28c52, 0x45083fac, 0x172107a3,
0x06434100, 0x8c06ff4c, 0x0c034da7, 0x6382ab8c, 0x4f5d1e20, 0x4afb8605, 0x375a05d6, 0x000f210d, 0x430c8d55, 0xf97c0763, 0x07ad4905, 0x4118b584,
0x578208e1, 0x3c5d2820, 0x08234d05, 0x32282825, 0x823c0a0a, 0x320a216c, 0x5d0e1748, 0x63a20553, 0x4907bf42, 0x142106a9, 0x2163870a, 0xf2550a14,
0x48638a05, 0xd35b0a2f, 0x18c78507, 0x220f314d, 0x8b331533, 0x133b48c9, 0x42486f8f, 0x48d88f0d, 0x77ae0847, 0x8f115144, 0x0d574477, 0x5f48ec8f,
0x0953410c, 0x410af555, 0xef8c13b9, 0x107b001a, 0x900a7148, 0x002821e6, 0x21086767, 0x5b410078, 0x8a6ba005, 0x446b90e3, 0xda900a87, 0x03206b82,
0x8308d763, 0x1ec5416b, 0x99443720, 0x104d4112, 0x1a08ae77, 0x200d5e01, 0x0cda4d5a, 0x8508f367, 0x4477a4e3, 0x778f0db5, 0x07b46c18, 0x67832820,
0x778ee98a, 0x4105874a, 0x7f5c05c7, 0x5c332009, 0x232308d0, 0x5b273315, 0x072508d9, 0x50333523, 0x1850823c, 0x2008cdad, 0x82c58414, 0x21028312,
0x7f5c463c, 0x4d53830b, 0x2b440bcb, 0xa9a8190c, 0x204f8409, 0xbac3180a, 0x0a0a2109, 0x8305494f, 0x3c0a2307, 0x0082003c, 0x9617b35b, 0x0c9349a5,
0x9549ad8d, 0x5cb28a09, 0xdb48087f, 0x5cb78309, 0x116405e3, 0x057f4406, 0x18057964, 0x200a5b53, 0x41178223, 0xc18a0511, 0x84141421, 0x23c68c0c,
0x0a0a0a50, 0x98187b5c, 0x0d4757c7, 0x75410a20, 0x09a14909, 0x7b5cc78a, 0x85c7b008, 0x0f894167, 0xa9491420, 0x20c78c05, 0x5cc7915a, 0xc7900977,
0x4215714e, 0x28200a41, 0x4e052053, 0x0a200775, 0x5020cd87, 0x0a206682, 0x28207e83, 0x46051f67, 0x1922077f, 0xf3791d00, 0x1e974106, 0x089dac19,
0x8a465182, 0x053c4105, 0x64427086, 0x3362180e, 0x25b76209, 0x82138b61, 0x108461b1, 0x0cab581a, 0x78005022, 0x4e930d1a, 0x695b2520, 0x5ba7871f,
0x51180e65, 0x1b5d0ad1, 0x623c2008, 0x7b5d062c, 0x063f480b, 0xd9414582, 0x06f2440a, 0x65353321, 0x0d1a0635, 0x97592ef3, 0x24a1880e, 0x32141414,
0x2098850a, 0x055b591e, 0x58053c41, 0x0d200b23, 0x200db158, 0x06a75835, 0x32853a82, 0x66182820, 0x17550c3f, 0x35232317, 0x15541533, 0x411e2008,
0x125405b6, 0x11034105, 0x090d5818, 0x66087566, 0xae64052b, 0x0afd5305, 0x65187b83, 0xc14c0daf, 0x0ccd4d0a, 0xc74f7f86, 0x059e4208, 0x516f0a20,
0x18142008, 0x740ed758, 0x3720164b, 0x86118b74, 0x10534b42, 0x41144b4d, 0x4b4d0879, 0x08154207, 0x034d3c20, 0x087f4105, 0x18083f4b, 0x840de551,
0x0a016cc7, 0x30821420, 0x3e854383, 0x49090f41, 0x53842b77, 0x880fc946, 0x0caf4798, 0x37479e85, 0x0ab1420e, 0x20138548, 0x13394a37, 0x5f831420,
0xe35a5a8b, 0x05b3430a, 0x89182120, 0x41180b5f, 0x33220bfd, 0xc5662315, 0x8415200a, 0x0d0164bd, 0x1e0a0a23, 0x0e16441e, 0x0a0a5026, 0x1496140a,
0x08b37f18, 0x352063a4, 0x08e17b18, 0x15333522, 0x210d3565, 0x64821e0a, 0x4621638e, 0x2075820a, 0x6e638378, 0x78200777, 0x2006db66, 0x2ddd6631,
0xd3900720, 0x964a1420, 0x9414200a, 0x822820db, 0x821421df, 0x7bac7c82, 0x9211974a, 0x0a9a4a7b, 0xfd527b90, 0x207b9109, 0x1a2f6625, 0x920ef566,
0x089e4a75, 0x2821ee95, 0x9eeb9096, 0x20eb8a6f, 0x4a6f9233, 0x6f8f08a2, 0x6f84e285, 0x0a000325, 0x4200e2ff, 0x2b21053b, 0x19d54100, 0x94130d67,
0x05775872, 0x4a105541, 0x82200a2e, 0x9b0fb342, 0x141d6777, 0xa54a7891, 0x8fec8f0a, 0x49002079, 0x9628063f, 0x0f007800, 0x21001d00, 0x096b4218,
0x200bef64, 0xc9171917, 0x33152208, 0x0ebb4a35, 0x08ff4918, 0x450a5021, 0x642005c0, 0x23075b44, 0x0a461e1e, 0x3c200082, 0x20050846, 0x0ff36414,
0x19207383, 0xcf4a6f8e, 0x9133200f, 0x0df56479, 0xf6647489, 0x2272890b, 0x83000600, 0x876b8300, 0x002f22df, 0x11696733, 0x21596791, 0x08456611,
0x2107025a, 0xea82145a, 0x67281421, 0xee8c0d7f, 0x4108064b, 0x2b201067, 0x976785ab, 0x67858d14, 0x84890d9f, 0x410aa667, 0x3b4b410b, 0x072f560a,
0x2820858d, 0x410dbf67, 0x4a4b0c0b, 0x430b4108, 0x200dbd5e, 0x67858d0a, 0x0b410ddf, 0x8214200e, 0x00002187, 0x260e0b41, 0x002d0029, 0x42370033,
0xe95e2017, 0x0cc14d0b, 0x20100543, 0x05854b46, 0x0877e118, 0x4b0d0c43, 0x0668051c, 0x06675a0a, 0x8d071343, 0x1f15438b, 0x2143958e, 0x43908815,
0x8e881228, 0x6a180020, 0x78250853, 0x13000900, 0x08277000, 0x440d2b56, 0xed610573, 0x0a0a2605, 0x1e0a0a14, 0x62e88214, 0x962009d2, 0x6208036e,
0x4b8e0ad3, 0x8b07af45, 0x0632564b, 0x14204b87, 0x23087147, 0x00040000, 0x83072770, 0x001d2297, 0x0db74a23, 0x8d7e1520, 0x09335606, 0x1764578b,
0x47a98c0c, 0x5f9c0a57, 0x41174947, 0x28200503, 0x200a4347, 0x20bd8c1e, 0x0db7470a, 0x2007cf64, 0x0e9b6317, 0x8208b56f, 0x06bd46bf, 0x8d0f2f64,
0x0a1f47b6, 0x11475398, 0x64538611, 0xaa8d083b, 0x850a0347, 0x0f654153, 0x41129951, 0xdd4e0dbd, 0x0a282105, 0x56080341, 0x82200a37, 0x94111342,
0x0d81515f, 0xef455fb2, 0x18112007, 0x63093d56, 0xeb450d4b, 0x09516d0e, 0x14141422, 0x20074844, 0x09f0638c, 0xbf465020, 0x0a3c2105, 0x2406935f,
0x00780096, 0x10096313, 0x8d060356, 0x0731465b, 0x58891e20, 0x8608b762, 0x20ad8356, 0x08a34604, 0x4918b383, 0xb59e08ed, 0x4512ab64, 0x126e0906,
0x07176405, 0x06826b86, 0xc75f0a20, 0x20c78709, 0x0ed36329, 0xcb64c994, 0x8f6c8c12, 0x446a83d6, 0xd7aa0ad3, 0x41106346, 0x5a200a95, 0x8e065e46,
0x0a5a22d7, 0x0afb5f0a, 0x4946d7ae, 0x0aa9410d, 0xd78f6c84, 0xd78e6a83, 0x98182b20, 0xaf410767, 0x6569851f, 0x46410f23, 0x069f4507, 0x410a2c65,
0x0a200ab5, 0x1812b741, 0x4609834c, 0x81420c1f, 0xf147180d, 0x70152009, 0xe38a0837, 0xe58f7486, 0x0a227982, 0xe7820a0a, 0x56070f4b, 0x63180523,
0x7f570f01, 0x1365180e, 0x4d332008, 0x734e05b5, 0x05886c11, 0x4d0e3c55, 0xdb4c09bb, 0x4d6fa609, 0x6f900dc1, 0x8e06e744, 0x09c74d6f, 0xef4b0520,
0x226f8508, 0x5d35002f, 0x61581121, 0x05a1441f, 0xd04d7b8f, 0x0a0a210f, 0x46108457, 0x00210719, 0x4687b200, 0x878f178f, 0x8c0fdc4d, 0x0ddd4d87,
0x29208791, 0x10a36618, 0x580ef141, 0x09410d81, 0x141e211a, 0x14208882, 0x200e8841, 0x220f8250, 0x48282814, 0x0341052c, 0x467ba20f, 0xfd9411df,
0xf54d7b94, 0x4200200a, 0x05420ee7, 0x13a15820, 0x485dfb95, 0x1e142109, 0x8a4dfd8f, 0x0dfb420e, 0x2b4783a6, 0x0f034113, 0x420e0d4e, 0x838e0c00,
0x4e051358, 0xa954110b, 0x3b15220a, 0x0c0b4e01, 0x054b2320, 0x0885560c, 0x4e0f8f4b, 0x3c200506, 0x32240682, 0x3c0a3c0a, 0x5706d458, 0x074e0553,
0x1583560d, 0x59577592, 0x5670890d, 0x0a200c86, 0xef4b6e85, 0x00212310, 0x074e0027, 0x58dda407, 0xe58d14ff, 0x860f0759, 0x0a46227b, 0x07054e14,
0x4e09e747, 0x874e05f7, 0x75f1a805, 0x7f570899, 0x59848a0c, 0x82861023, 0x0a0a5024, 0x0341000a, 0x123b5943, 0x470e0341, 0x0a2006a0, 0x41067558,
0x82820903, 0x82280a21, 0x40034185, 0x8b135759, 0x7f142084, 0x6f4305c2, 0x09714205, 0x03415a20, 0x09f74d16, 0x591e0742, 0x82891e77, 0x41157f59,
0x84590a8a, 0x0f0b4108, 0x42057f4e, 0x93592c0f, 0x438c9015, 0xe4471314, 0x08df5706, 0x64005023, 0x058b6000, 0x21155b7c, 0x41183735, 0x91550a3f,
0x280a230c, 0xc57a140a, 0x0bb11812, 0x0017220e, 0x1927551b, 0x35233722, 0x220c8155, 0x793c3c0a, 0x46200ce0, 0x5305b35a, 0x3f56099f, 0xd69a181e,
0x106b5508, 0x0a0a0a22, 0x7b058b46, 0xc1820ddb, 0x82148221, 0xbf681864, 0x00172209, 0x56af991d, 0x6a531197, 0x4c28200f, 0x53540bef, 0x7d1b2005,
0x35211ab9, 0x06336827, 0x820d8956, 0x8f0a2096, 0x47462059, 0x537b0632, 0x20b74108, 0x5606a747, 0x5b820ee5, 0x7b0a1421, 0x46210e48, 0x1800830a,
0x850a4341, 0x4129205b, 0x17431909, 0x9063960e, 0x206784c3, 0x08234178, 0x18080f59, 0x820f9563, 0x3315214f, 0x0fa15518, 0x18086d51, 0x5408e881,
0x5518056a, 0xa118089a, 0x7118090b, 0x631807cb, 0x5e1a0be9, 0xbb8208eb, 0x4b883320, 0x28141424, 0x137a3c3c, 0x08ef4d09, 0x78004622, 0x088f6118,
0x0a41f118, 0x0848ab18, 0x5c183320, 0x14240be1, 0x0a0a140a, 0x072a5618, 0x7b05f845, 0x0f6e05ef, 0x180f2009, 0x7b092179, 0x8f8b1285, 0x0a254888,
0x321e1e1e, 0x5b02191e, 0x05cb540a, 0xfb4bd390, 0x7758180e, 0x550a200a, 0x0a210e28, 0x0916530a, 0x501a0020, 0x501a0e27, 0x0a241603, 0x46000000,
0x0d200182, 0x2408234b, 0x15333523, 0x09537133, 0x1a06dd47, 0x500f2f50, 0x3c2608db, 0x0a0a140a, 0x1c765a1e, 0xcf4e1a05, 0x00642207, 0x424f830b,
0x462409a1, 0x0a141414, 0x0a8f421a, 0x50247582, 0x78005000, 0x078d6918, 0x0f469318, 0x089ba118, 0x640a3c22, 0x6d473982, 0x1ec75205, 0x50071d44,
0x97830c5d, 0x510a0a21, 0x11440912, 0xd7821807, 0x00462409, 0x520f0009, 0x3f8b0b77, 0x2108f350, 0xab44145a, 0x05475109, 0x39770d20, 0x5135200f,
0xf0830ce3, 0xdb437688, 0x6f51180a, 0x8b152008, 0x0b116673, 0x22096f75, 0x5d1e0a28, 0x761806e1, 0x64200e83, 0x1522b382, 0x41971b00, 0x220c0141,
0x510a1414, 0x14200abb, 0x6708a243, 0x73790993, 0x1833200b, 0x78094554, 0x322605e1, 0x281e1e28, 0x45820a5a, 0x1737341a, 0x338c3520, 0x3c141422,
0x1e213184, 0x752f901e, 0x9f1a0fdb, 0x5c830813, 0x14229882, 0x69852814, 0x00282824, 0x9f890000, 0x09418418, 0x6b842320, 0x2d7f3320, 0x83142005,
0x82318200, 0x182f839f, 0x22092ff0, 0x1819000b, 0x430d3d84, 0x46200d41, 0x14203884, 0x82073b43, 0x28282141, 0x830ab751, 0x059b4247, 0x9d420920,
0x6e35200b, 0x79540abb, 0x7c5a200b, 0x3b850b58, 0x7d071f42, 0x3321058f, 0x06034635, 0x85085773, 0x23e38532, 0x0050000a, 0x13202f83, 0x43088b45,
0xea8407a8, 0x13653220, 0x57501808, 0x2759180a, 0x00642209, 0x0cbf6d0d, 0xe97d3320, 0xd1cf1908, 0x0a1e2308, 0x49181e0a, 0xd1730756, 0x0ec7470b,
0x4116bf5f, 0x0a210724, 0x0874493c, 0x180db37f, 0x180b538a, 0x2108e943, 0x46183335, 0x072009ff, 0x4987fd86, 0x23054760, 0x3c14141e, 0x82086074,
0x0592415a, 0x1a0a9771, 0x21476f35, 0x23410050, 0x099b4416, 0x2a19e388, 0x32220890, 0x01823c0a, 0x6a063347, 0x1323097b, 0x41002100, 0x431908d3,
0x3d4d0c59, 0x0abb440c, 0x22083c5b, 0x840a0a14, 0x546420ee, 0x00200576, 0x200c7f61, 0x41311a0b, 0x0abd6909, 0x1806c141, 0x47070150, 0x0a240514,
0x460a0a46, 0x8b050a42, 0x186e2043, 0x72089b87, 0xc01a0bc3, 0x574315f3, 0x06734205, 0x61573320, 0x08a97905, 0x5c078d72, 0x6b8205e3, 0x4620b785,
0x08a76f18, 0xc11a3783, 0x371a105f, 0x462012ff, 0x43085b61, 0xe1500c4b, 0x0b655711, 0x4b0a5021, 0x701805e0, 0x1b43086b, 0x19092005, 0x230a9535,
0x17331523, 0x3585b382, 0x14141e22, 0x4b433285, 0x00631811, 0x06934207, 0x15333524, 0x66444633, 0x280a2106, 0x08263e19, 0x09c30119, 0x64004624,
0x7d180f00, 0x15610b57, 0xef8a1807, 0x084d6f0c, 0x21051b4b, 0xf46d0a0a, 0x19498308, 0x2009bb24, 0x6b6b185a, 0x41f18409, 0x05840595, 0x43874620,
0x6e3c3c21, 0x14200734, 0x0e275418, 0x70052f6e, 0xbb8209ed, 0x08f50a1a, 0x0a314418, 0x5d0c896e, 0x5643059e, 0x09996208, 0x00821420, 0x180a5743,
0x1a1027b9, 0x5f34e331, 0x0b420553, 0x08417205, 0xf0611520, 0xa7411806, 0x35072709, 0x0a461523, 0x8f67141e, 0x06884405, 0x0a5a1e24, 0xfa821e0a,
0x326e1424, 0x934a0032, 0x544b9808, 0x2e1a080d, 0x40820ca3, 0x20067648, 0x205f8314, 0x214a8250, 0xcb480002, 0x18c74105, 0x4109f143, 0xf1430883,
0x072f4108, 0x92829782, 0x0a074018, 0xc76d0f20, 0x0bc74107, 0xfd483720, 0x0b034406, 0x0a215388, 0x82ef830a, 0x823c209d, 0x0520424c, 0xc2482820,
0xfb63180a, 0x42782008, 0x6356096f, 0x4b352009, 0x72180c15, 0x282109e3, 0x18aa820a, 0x430d674b, 0x6d180dff, 0xb38314db, 0xe2834388, 0x0a282823,
0x11737d28, 0x4713936f, 0x9d6e079b, 0x6f0a2008, 0x89830693, 0x084bc818, 0xc3490020, 0x96b6180b, 0x5033210e, 0x096a6518, 0xa847b985, 0x2b421805,
0x4f73180e, 0x8762180c, 0x05d64308, 0x3c0a1422, 0x0e857685, 0x181e1e21, 0x4407f341, 0xb5460753, 0x0bf94906, 0x35231725, 0x4e0a3233, 0x1420050e,
0x074ef019, 0x77181420, 0xb183084b, 0x78005022, 0x0847d118, 0xa1462d82, 0x14322207, 0x9b451a14, 0x873e1a10, 0x2067870d, 0x835f843c, 0x8b6218df,
0x09bb6508, 0x87204f57, 0x174f5745, 0x5655bb85, 0x5646200e, 0x03200858, 0x2406df56, 0x000f0046, 0xc576181b, 0x6fcd820e, 0x17200d3d, 0x45152766,
0xbc560566, 0x06d74e0a, 0x200daf54, 0x5346181f, 0x1725660b, 0x1420c596, 0x4e111b55, 0xfb6706e1, 0x45502005, 0x2720066f, 0x4e1d9b57, 0x03550b87,
0x431e200f, 0xc88a08bd, 0x5508ea4e, 0x0f4408ff, 0x18272005, 0x4307e9c4, 0x31710bc7, 0x0def7e0d, 0x0ba9ae18, 0x87053971, 0x103c416f, 0x78217385,
0x07b01814, 0x19782009, 0x180a8f2d, 0x2008977d, 0x08a14e15, 0x280a5023, 0x5d67180a, 0x470a2008, 0x46210965, 0xd3401846, 0x16cf680c, 0x15332723,
0x21418423, 0xf7180a28, 0x46240af8, 0x1e6e4646, 0x83051344, 0x4e502005, 0x33200adf, 0x1806976a, 0x2108f3c1, 0xab6e2315, 0x42502005, 0x9f4505c8,
0x05b24406, 0x06851420, 0x6d054f6e, 0xdf4e091f, 0x0b515309, 0x6e073564, 0x41870ceb, 0x3c0a0a25, 0x441e463c, 0x962506ef, 0x17005a00, 0x08296e00,
0x8d181520, 0x352008c5, 0x56053d4c, 0x50220e0b, 0x01830a1e, 0x7c0a0a21, 0xc44a050c, 0x3c142205, 0x4e9c863c, 0xe34e0794, 0x82322005, 0x52a982eb,
0x5029066d, 0x01000028, 0x50001400, 0x22178300, 0x55000009, 0xf3820661, 0x0a143222, 0x50244982, 0x0a141e0a, 0xff252382, 0x00ecfff6, 0x8397820a,
0x23152c3b, 0x5a140a35, 0x00006e6e, 0x82e2ff05, 0x001e2417, 0x820f0064, 0x5e1b20b1, 0x3720056f, 0x0aca9d18, 0x200bd041, 0x20be8237, 0x83cb8207,
0x45721807, 0x180a2009, 0x2007bd9e, 0x18138350, 0x83080eb4, 0x237f8216, 0x02000000, 0x32227b84, 0x457e6e00, 0xb1811805, 0x24648507, 0x23352315,
0x21538217, 0xf950140a, 0x05ec6b05, 0x05716e20, 0x203f8408, 0x86bb84ce, 0x1827203f, 0x18086d57, 0x82080f8f, 0x823784a4, 0x19282035, 0x8207b265,
0x6e0a210b, 0x088bb718, 0x46002823, 0x6bb21800, 0x3c0a2a08, 0x000a323c, 0x0a000100, 0x20179700, 0x202f821e, 0x8fb11828, 0x202f8207, 0x202f8428,
0x202f8214, 0x2247893c, 0x85282814, 0x82002047, 0x85502017, 0x21938317, 0x16835050, 0x17865f86, 0xe3833720, 0x83464621, 0x00022718, 0x00e2ff14,
0x9745003c, 0x83002005, 0x82038319, 0x0a1e26b8, 0x9696780a, 0x9b511896, 0x8200200a, 0x00072283, 0x05414200, 0x50231522, 0x14230082, 0x820a1e0a,
0x821e205b, 0xe7f31a6f, 0x1b1e2043, 0x8b22eb06, 0x3b611a6b, 0x825a200e, 0x000a2cb6, 0x00000200, 0x46003200, 0x4e005a00, 0x35210647, 0x059d4133,
0x81180720, 0x462208a3, 0x53180a1e, 0x0a210795, 0x21e98232, 0x0483140a, 0x02223782, 0x3b820a00, 0x3b895020, 0x08c3841a, 0x20087751, 0x213a8350,
0x0584281e, 0x0a0a3c22, 0xac183a85, 0x50220993, 0x77851400, 0x08599418, 0x07e1c31a, 0x8607d96b, 0x8b3a823b, 0x82b38f3b, 0x2315212d, 0x83075346,
0x14462209, 0x4ba4820a, 0x3222057f, 0xbf821e0a, 0x20054e43, 0x63ad1800, 0x033d1907, 0x20e78509, 0x066f4f33, 0x46463225, 0x181e1e0a, 0x20098bad,
0x085d4f5a, 0x18055043, 0x86080374, 0x8214202f, 0x19308200, 0x20083c88, 0x22d18201, 0x823c0014, 0x9bbf1801, 0x05124a15, 0x14225f83, 0x25820a00,
0x08178819, 0xf944b582, 0x07601808, 0x45282008, 0x0a200576, 0x090bc018, 0x03001425, 0x56330000, 0x474105b1, 0x20058305, 0x22758246, 0x1a070003,
0x480f4ba7, 0x00220a4f, 0x23865000, 0x33209782, 0x260a4f48, 0x3c141450, 0x4e1e1414, 0x142405da, 0x1e000100, 0x32200182, 0x20051343, 0x20678537,
0x2862821e, 0xff140006, 0x009600f6, 0x2b071a64, 0x1889820c, 0x1b082dd2, 0x6f20410b, 0x23240735, 0x27152335, 0x17240382, 0x011d2335, 0x96220782,
0xd0181e0a, 0x0a200929, 0x84059277, 0x0a142412, 0x87140a28, 0x974d1810, 0x52128208, 0x0a20051e, 0x4621b384, 0x230d8314, 0x000a0a28, 0xa382ff83,
0xa382a020, 0x07bb7719, 0x4b004725, 0x8a004f00, 0xeeae18a5, 0x19332008, 0x420e450f, 0x5d1805f5, 0x197408e3, 0x89072005, 0x83e684a9, 0x823720b5,
0x18a02013, 0x180880cb, 0x820807d4, 0x22148608, 0x54640a14, 0xbd1805f1, 0xb0840a77, 0xc4860482, 0xbc822c83, 0x4542ba82, 0x820a2005, 0x06e341e8,
0x32003c27, 0x05006e00, 0x06c14f00, 0x0a0a322f, 0x32145014, 0x00020000, 0x003c0014, 0x421b8446, 0x2b430759, 0x43462006, 0x27830556, 0x2a831e20,
0x00030027, 0x003c0000, 0x202b8650, 0x204b8711, 0x21dd8207, 0x69433335, 0x82502005, 0x8c3c2033, 0x233a8537, 0x1e000100, 0x83883b82, 0xa74a3520,
0x3c142305, 0x83921e14, 0x9d481d83, 0x82838705, 0x83322027, 0x8983932a, 0x05d15c2d, 0x3785838b, 0x83823a85, 0x2005d342, 0x49c0181e, 0x18152007,
0x200a7964, 0x0a434146, 0x0c73ca19, 0x32003c22, 0x0b974d18, 0x2206c744, 0x1b331523, 0x460cd70c, 0x451a0b9f, 0x3784074f, 0x09878618, 0x2008f94a,
0x07c77433, 0x0bea6818, 0x00000a24, 0x04820009, 0x00500023, 0x206f8246, 0x558d1817, 0x002b2408, 0x1833002f, 0x4f0847c7, 0x7b180601, 0x2720097b,
0xcc18c382, 0x0724076d, 0x013b3523, 0x75730385, 0x46968806, 0x5247054c, 0x15b91805, 0xdab91808, 0x5a77180c, 0x6e0a2009, 0x002705a7, 0x00500000,
0x480b005a, 0x8d180607, 0x73470d73, 0x05915008, 0x33217982, 0xedb51850, 0x22088308, 0x8214141e, 0x14322202, 0x05c0720a, 0x50206a82, 0x0b2b7e18,
0xe3826e20, 0x1d001922, 0x0a655818, 0x210ef169, 0xc9821d33, 0x0a235387, 0x830a320a, 0x4614264e, 0x14140a0a, 0x28a08228, 0x0a1e1e0a, 0x00144614,
0x20a58201, 0x22a78278, 0x83030082, 0x3335274b, 0x78505050, 0x1783000a, 0x82ecff21, 0x1a002017, 0x54081ff4, 0x3c230813, 0x1828140a, 0x2008ac59,
0x203f8201, 0x20278264, 0x0fb35778, 0x24835020, 0x640a3c22, 0x5349d484, 0x00002605, 0x00320046, 0x0d516b11, 0x46333521, 0x41190617, 0x0a210c4c,
0x20578214, 0x06cf4108, 0x23006e23, 0x10394400, 0x4c193520, 0x9d840d41, 0x18331521, 0x2308b9e2, 0x27331523, 0xb8180382, 0x1f8608c1, 0x6d820720,
0x4107b14d, 0x232106f9, 0x20138217, 0x05555050, 0xd541ac84, 0x84908407, 0xe94e1904, 0x18f68508, 0x420acc64, 0x4620081f, 0x28210988, 0x202e830a,
0x48058232, 0x142005cb, 0x4106b943, 0x3c23065f, 0x821e2828, 0x820120dc, 0x000a22df, 0x21018250, 0x1319001b, 0x2320076d, 0x08401f19, 0x2009b345,
0x184c8233, 0x21093776, 0x82460a0a, 0x08574108, 0xe2ff0a26, 0x5a003c00, 0x43078558, 0xd382065f, 0xc1531520, 0x233d8205, 0x0a3c1e14, 0x00249084,
0x14000100, 0x46202f82, 0x096f021a, 0x69182f82, 0x462008b5, 0x2105827d, 0x2f890a28, 0xa7820620, 0x2a05c742, 0x00180014, 0x0020001c, 0x82280024,
0x013b21b1, 0x0866d119, 0x2008005b, 0x20748217, 0x27038227, 0x35331537, 0x33152307, 0x0a220b83, 0x77181e1e, 0xd242080a, 0x20d08205, 0x258d820a,
0x140a5a0a, 0x0082140a, 0x3c140a22, 0x50200582, 0x0a210382, 0x09bb791e, 0x43050353, 0x002105c5, 0xc7121937, 0xcbb5190e, 0x85078307, 0x23638464,
0x1432140a, 0x3c210286, 0x825f860a, 0x833c2064, 0x0a502166, 0x09935618, 0x5f185b9c, 0xc88407a5, 0x2820cc82, 0x0a23bf85, 0x86142814, 0x85108202,
0x215b8bbb, 0x9b190001, 0x52180cd3, 0x23270845, 0x14280a28, 0x82140a28, 0x480a20fb, 0x536c05bf, 0x21838305, 0xd7833500, 0x08c7aa18, 0x32233522,
0xac82c682, 0x0a20ba82, 0x32256482, 0x0000006e, 0x24578202, 0x00460014, 0xbf8d1950, 0x2335310b, 0x2335013b, 0x32320a0a, 0x0a0a280a, 0x0a3c0a46,
0x8b082f55, 0x4f23202b, 0x2b24055d, 0x46331501, 0x1e202b86, 0x6f492b87, 0x00502705, 0x001b001e, 0x701a3300, 0x33200976, 0x1806ed4d, 0x2008d3ad,
0x05d74450, 0x42064958, 0x9f840dfa, 0x2305ef4a, 0x00090046, 0x43063778, 0x478305d1, 0x83143c21, 0x1e1e21c7, 0x14210682, 0x9fed180a, 0xf6ff2108,
0x6422cf82, 0x4d180b00, 0xbb490893, 0x719c1808, 0x14322209, 0x05e95414, 0x140a2825, 0x830a5a14, 0x099b4f00, 0x17440220, 0x001b2308, 0x6d180037,
0xfa58089b, 0x18232008, 0x1808d56e, 0x420a6f66, 0x121b0be7, 0xe78d14dd, 0x6e18e88d, 0xf6820d7d, 0x1a030021, 0x2008af11, 0x20c78213, 0x4385821b,
0x688207bc, 0x2105c448, 0xba191533, 0x0a200973, 0x26057448, 0x1e1e4614, 0x4a1e1e32, 0x14200aa3, 0x0a77be18, 0x50001424, 0x15413200, 0x18232008,
0x1a115d72, 0x440c4b63, 0x3b1905a6, 0x0020095b, 0x500baf45, 0x8745098d, 0x20278706, 0x06dd4a04, 0x09577419, 0x15370023, 0x03bb1823, 0x220b8209,
0x821e0a3c, 0x0a0a2301, 0x0086326e, 0x1424ef85, 0x46002800, 0x08d7a818, 0x0c3fc919, 0x15233727, 0x35332733, 0x05ee4123, 0x0a213c84, 0x0752450a,
0x830a1421, 0x8202203f, 0x00282277, 0x233f823c, 0x000d0009, 0xe1823d85, 0x013b3522, 0x37823b82, 0x0a1e1422, 0x5022a282, 0x0682320a, 0x01212f83,
0x836f8300, 0x4c2d832f, 0x152008b7, 0x9f822d82, 0x28141427, 0x0a321414, 0x576a830a, 0x5b850537, 0x1805c754, 0x41086b62, 0x072005e7, 0x2b823382,
0x08184918, 0x37853c20, 0x8905ac55, 0x59092067, 0x3522099d, 0x86823c33, 0x46281423, 0x6034821e, 0x5f850537, 0x0debc918, 0x2310cb50, 0x15233517,
0x59829d82, 0x42829883, 0x0e866a18, 0x09df4019, 0xaf8b0020, 0x18352321, 0x42087159, 0x152205c3, 0x2a822833, 0xf145b084, 0x200b8306, 0x0517410a,
0x2205634f, 0x190b005a, 0x20149ba0, 0x2fda1846, 0x000a2408, 0x8246003c, 0x82032001, 0x33352327, 0x0d190a15, 0x32200917, 0x50201582, 0x1905074f,
0x82072f8e, 0x3c3c231d, 0xb6820a32, 0x6b4c6482, 0x003c2205, 0x44638864, 0x1e20061f, 0x1422d283, 0xd6845a0a, 0x09636c1a, 0xa3412785, 0x32332109,
0x0be7cb18, 0x3b422785, 0x82092005, 0x469b188b, 0x14462608, 0x5028140a, 0x05f34f28, 0x14000324, 0x9782ecff, 0x73821e20, 0x1906c541, 0x2409d610,
0x23353337, 0x05274217, 0x8f5c0a20, 0x05ef4505, 0x820a1e21, 0x055f4268, 0x3f840120, 0x1e003227, 0x00000700, 0x06514117, 0x82143221, 0x82142020,
0x82838425, 0x823c205f, 0x8411201f, 0x4433201f, 0xc446050f, 0x3c332206, 0x19298228, 0x1a091ad8, 0x8608876a, 0x83132033, 0x0d5f4433, 0x86078942,
0x08fe4737, 0x00000a25, 0x860a0002, 0x1beb4237, 0xeb421420, 0x202f860b, 0x87678b0d, 0x28142261, 0x5c7c1a14, 0x215b8909, 0x9582000f, 0x18013b21,
0x220ac6b3, 0x42331523, 0xea420feb, 0x4100200b, 0x3c230523, 0x42001e00, 0x0a2012eb, 0x8808eb42, 0x001722f3, 0x4f8f861b, 0x27200e63, 0x4205254e,
0xc7180feb, 0xeb420cca, 0x844f8609, 0x457c18af, 0xbfa51807, 0x0ceb4209, 0x21063943, 0x0f500a1e, 0x421e2008, 0x0a2016e7, 0x380ae742, 0x00460000,
0x0003000a, 0x33353300, 0x0a3c0a15, 0x0000000a, 0xff0a0002, 0x201782f6, 0x05e74214, 0x19821720, 0x15332725, 0x823c0a23, 0x420a2000, 0xff2509e7,
0x003c00e2, 0x16e74228, 0xe7421e20, 0x20278209, 0x51278532, 0x15200911, 0x8207e742, 0x183220ea, 0x20097fb1, 0xb3091950, 0x09d74309, 0x18233521,
0x210a5f67, 0xde435033, 0x49142006, 0x1421056f, 0x823e820a, 0x206f826b, 0x4bb8180a, 0x65478309, 0x3c830563, 0x19191520, 0x48860844, 0x4d079a5c,
0x1a4a0982, 0x73b21808, 0x280a2108, 0x7f092f4a, 0xfa840543, 0x02206483, 0x20064347, 0x06bd465a, 0x0cd3a918, 0x5c821520, 0x3b216684, 0x205e8201,
0x189a8246, 0x22096c4f, 0x821e0a0a, 0x221382ef, 0x18460a0a, 0x24087f57, 0x0000000a, 0x21f78250, 0x8d470015, 0x98681806, 0x05034109, 0x1e285022,
0x38820082, 0x3c0a0a22, 0x0963b019, 0x00001e23, 0x22398201, 0x82460000, 0xeb50183b, 0x2de8180a, 0x84fc840b, 0x8215209d, 0x84462005, 0x828d8578,
0x0a1e2250, 0x517c1832, 0x840a2008, 0xc7421809, 0x9fac190b, 0xb19e1808, 0x50cf820a, 0x372007ef, 0x8b845a82, 0x3c283882, 0x1e0a280a, 0x141e280a,
0x2823dc82, 0x8214140a, 0x13c51812, 0x181d200b, 0x1809cb85, 0x8608b985, 0xab441849, 0x0717570a, 0x08677f18, 0x93840a20, 0x0889ff18, 0x28205483,
0x03821382, 0xfa831984, 0x29190320, 0xdd180847, 0xff820a4f, 0x83060b4c, 0xb05819ab, 0x15332108, 0x15226182, 0x1e830733, 0x27208682, 0x96230382,
0x4d0a3c0a, 0x156805d2, 0x7cb61807, 0x320a2607, 0x5a280a0a, 0x8216830a, 0x22068304, 0x66283214, 0x50260b77, 0x13005a00, 0x74181b00, 0x152009ad,
0x83081f63, 0x22658467, 0x83153315, 0x0a502365, 0xcd190a28, 0xba840821, 0x1e1e0a23, 0x22dc835a, 0x821e141e, 0x2057865a, 0x20d08304, 0x05ff4200,
0x09516f18, 0x7f09906e, 0x23230bd2, 0x86332335, 0x4c0783c3, 0x142108e5, 0x0587491e, 0x1e0a0a22, 0x1e217482, 0x82dd821e, 0x3c142160, 0xda820983,
0x820a0a21, 0x00042163, 0x22056f42, 0x46050046, 0x3320072d, 0x08db8418, 0x4d333521, 0x462107df, 0x22438228, 0x82281e0a, 0x0a3c245b, 0x8228320a,
0x3c46254f, 0x00003c32, 0x09a7ea18, 0x50181120, 0x79180cc1, 0x7d180a13, 0x50210713, 0xe1e81a0a, 0x3c282309, 0x0f84503c, 0x50239382, 0x471e3232,
0x9082068f, 0x0813b618, 0x4208c961, 0xbd1a16c1, 0x4282086f, 0xd7822820, 0x00821e20, 0x6a191420, 0xeb8408a5, 0x14200482, 0x82057f4f, 0x44462058,
0x15200b4b, 0x4d082748, 0x46200be3, 0x02883e82, 0x53820a20, 0x2821ef82, 0x93161b28, 0x06a75d12, 0xcf459984, 0x43152006, 0x3a1a0557, 0x3c2008ab,
0x1e203683, 0x82059555, 0x820a204a, 0x00062b87, 0x00e2ff1e, 0x006e008c, 0x4951001f, 0x00372405, 0x1b00003b, 0x4e08b304, 0x441909a9, 0x27210c93,
0x0eb71835, 0x05c56a08, 0x27240f82, 0x17231533, 0x8c210782, 0x2061830a, 0x06eb4532, 0x0812e518, 0x180a1e21, 0x82085677, 0x140a2186, 0xfe502584,
0x27308306, 0x0a500a28, 0x5a0a6e0a, 0x0d8ba718, 0x70185a20, 0x53190b33, 0x07200df0, 0x37206b82, 0x3682e182, 0x081b7b18, 0x3c205982, 0x3c207182,
0x4805a048, 0x002105ee, 0x06135d03, 0xe3826420, 0x27002322, 0x4c098347, 0x9818098f, 0x3321083f, 0x83018215, 0x05b151dd, 0xa0185883, 0xdf1808ae,
0x282309b9, 0x1a140a0a, 0x22088e98, 0x1828281e, 0x2007c78e, 0x20008200, 0xc3311950, 0x00252208, 0x3b671800, 0x05dd430a, 0x27053641, 0x37233523,
0x17233533, 0x6182c186, 0x65853220, 0x12566f82, 0x20118207, 0x21148514, 0x6f82140a, 0x0a0a1e22, 0x26056f50, 0x00ecff0a, 0x4d6e0046, 0x874205d7,
0x825f820a, 0xd1b9184e, 0xc2ec1808, 0x82a88208, 0x460a2152, 0x1423b184, 0x1b0a1446, 0x180c6703, 0x6a0c739d, 0x1d210e9b, 0x184d8201, 0x220deb89,
0x820a4614, 0x82142000, 0xff1b1900, 0x82462008, 0x4f5b19ef, 0xcf0f1a11, 0x8247820d, 0x05f24d76, 0x90822820, 0x8c822820, 0xdd843c20, 0x0786a682,
0x9909fb57, 0xd9e619db, 0x083d6009, 0xdb880883, 0x140a1434, 0x08000000, 0xe2ff92ff, 0x78002800, 0x3f001300, 0x1e1a4f00, 0x63230853, 0x18070000,
0x200ac24f, 0x05245433, 0x87271521, 0x47078b08, 0x058f057e, 0x18173321, 0x1a0fde8f, 0x180f591e, 0x1808f1dc, 0x490c97c8, 0x0a250c39, 0x32140a64,
0x2af58432, 0x146e0a0a, 0x640a1414, 0x821e1414, 0x18158622, 0x8a0afde3, 0x07894237, 0x462d2482, 0x0a6e1414, 0x5a14141e, 0x0300000a, 0x05174e00,
0x31006e27, 0x39003500, 0x06794d00, 0x8306ac4e, 0x07eb47d1, 0x4106bb44, 0x352007e3, 0x22057370, 0x45333533, 0xed48050b, 0x08e34206, 0x19099841,
0x480d5eb6, 0x4e530561, 0x0a1e2509, 0x281e1e28, 0x8b8b8982, 0x8b922120, 0x7b927f82, 0x4a08ed5a, 0x27240931, 0x32152335, 0x0951d718, 0x28207085,
0x28230682, 0x820a141e, 0x079e486d, 0x20091c41, 0x0686541e, 0x46201183, 0x83070347, 0x00502192, 0x2005ff48, 0x05974c1f, 0x43051c43, 0x78180728,
0x152a0871, 0x15333537, 0x0a0a3246, 0xf5820a32, 0x32210282, 0x276e830a, 0x0a0a460a, 0x14461414, 0x46226f83, 0x2f480a3c, 0x00782107, 0x0d7b9c18,
0x0c4d6718, 0x5d333521, 0x1522096d, 0xc9820733, 0x56187820, 0x687c08cd, 0x85a68408, 0x0517475b, 0x080fc418, 0x19073f44, 0x20083f09, 0x06134635,
0x0a357b18, 0x0b823320, 0x23152323, 0x21cc8227, 0x49191e32, 0x14200ca3, 0x8406f343, 0x850a20bc, 0x822820c3, 0x42042052, 0x67550823, 0x0f915407,
0xcf493320, 0x09ef4508, 0x3520c982, 0x4a06b951, 0x232108dd, 0x06775517, 0x0a20b785, 0x20062f41, 0x08d74b14, 0x14220982, 0xba441e0a, 0x08af4a05,
0x82055441, 0x82a08523, 0x280a260e, 0x000a281e, 0x22978802, 0x6c370033, 0x911809ad, 0x594108fb, 0x5a15200e, 0x8582092b, 0x37200d85, 0x8b8c0982,
0x5f0bec59, 0x6e830521, 0x57088b46, 0x282308d1, 0x185a3228, 0x200df3d6, 0xf5ca1819, 0x4b35200c, 0x3c200d8f, 0x0a216482, 0xa1e4180a, 0x821e2009,
0x821e20f9, 0x141e21ce, 0x08231619, 0x5a006e24, 0x43822c00, 0x33213982, 0x0adc5135, 0x1807ba41, 0x830b3471, 0x2b3525bc, 0x0a281501, 0xb3820183,
0xa1833c20, 0x22450482, 0x1e1e2105, 0x2008c35a, 0x089a520a, 0xd4181420, 0x78210a77, 0x05e36d00, 0x1441b382, 0x18ad8205, 0x84079bcc, 0x2327296f,
0x3c3c3315, 0x281e1e28, 0x4d84f182, 0xb1825a20, 0xee652820, 0x08134708, 0x4e05434b, 0x43831407, 0xb5820720, 0x46353322, 0x82054b42, 0x1414218a,
0x08699518, 0x2823bb84, 0x18140a0a, 0x2c0a9bf9, 0x006e00c8, 0x00450027, 0x3700004f, 0x21888323, 0xe6183335, 0xb5180842, 0x954808af, 0x820f8206,
0x59232009, 0xf44c05ff, 0x08a34908, 0x55057b42, 0x14200967, 0x02836882, 0x81820a20, 0x820a3c21, 0x21038276, 0x8d85a032, 0x15850f87, 0x0a799f18,
0x21821082, 0x3c202982, 0x12821488, 0x6c4a0a20, 0x03002505, 0xecff0a00, 0x6e26b182, 0x37003300, 0xb3823b00, 0xb4558683, 0x1990840e, 0x45083440,
0x25840834, 0x23352328, 0x15330715, 0x03823723, 0x7c863220, 0xe3186c82, 0x0a2408bc, 0x1e0a280a, 0x22050b57, 0x831e5a0a, 0x84322019, 0x065f44b9,
0x24059f42, 0x0a500a0a, 0x06db416e, 0x0d37e718, 0xee670020, 0x05aa5505, 0x6b822720, 0x32216f83, 0x82bd820a, 0x0a1e244b, 0x825a2828, 0x460a2102,
0x63180082, 0x6e27095b, 0x20001c00, 0x68370000, 0x7045052a, 0x82c18209, 0x84058447, 0x822820ae, 0xeae618a4, 0x23528209, 0x1e140a0a, 0x14250084,
0x1e0a1414, 0x681e8214, 0x6e2008e7, 0x0ae96819, 0x18152321, 0x18082fd3, 0x44082d8a, 0x17200625, 0x28201982, 0x1e205383, 0x14225b85, 0x5282141e,
0x460a0a22, 0x5a844e83, 0x0f825684, 0xa36e0020, 0x005a2209, 0x05a14c13, 0x8147de84, 0x057c4306, 0x3520c283, 0x1582f283, 0x410a3221, 0x9b8205c0,
0x2305f645, 0x5a280a1e, 0x04846b82, 0x52821183, 0x00040023, 0x21068214, 0x53850096, 0x341a2320, 0x152011c7, 0x895d4982, 0x095b4406, 0x82273321,
0x864b837a, 0x443c2061, 0x322005d4, 0x20050e64, 0x21658432, 0x14830a32, 0x820a3c21, 0x45bb84cf, 0x0b2007a7, 0x0c576d18, 0x4506297d, 0x6d85074b,
0x5023c187, 0x820a3c0a, 0x0a142202, 0x24c38414, 0x280a0a28, 0x0608461e, 0x11832820, 0x82079a76, 0x3be3185a, 0x000d2a09, 0x00150011, 0x23153700,
0x82b08215, 0x82232050, 0x07f74aab, 0x1e1e4622, 0x4605ea54, 0x5a2805b1, 0x1e1e1e0a, 0x46464628, 0x22078f43, 0x4a00e2ff, 0x0021098b, 0x074a4337,
0x0cc36718, 0x37295583, 0x17331523, 0x1e152335, 0x82e6820a, 0x16601892, 0x0a0a2208, 0x82028246, 0x0a0a2350, 0x58820a14, 0x141e4623, 0x05674114,
0x4d07a742, 0x2120055f, 0x4d47a183, 0x87098509, 0x845982a5, 0x0a462371, 0xaf890a1e, 0x67821420, 0x1e143224, 0xb5891e1e, 0x13822820, 0x56181420,
0x5a2008a3, 0x2108e35d, 0xf4823700, 0x82081d42, 0x821520ab, 0x82272060, 0x82172007, 0x82072007, 0x823c2003, 0x8414204b, 0x065c41ba, 0x10831e20,
0x82280a21, 0x1414235a, 0x0d82500a, 0x25067b67, 0x00500032, 0x916c005a, 0x20518406, 0x08f35323, 0x49153321, 0x50200609, 0x0a208682, 0x0a26e882,
0x28140a28, 0x7042320a, 0x520a2008, 0x022405f0, 0x28000000, 0x11204784, 0x6e05c957, 0x91820801, 0x7f6e1520, 0x33152206, 0x82e08432, 0x224a8287,
0x1a280a0a, 0x210837ac, 0x3f822832, 0x03820120, 0x43863c20, 0x0897e218, 0x8305fd4d, 0x26818485, 0x0a320a14, 0x420a3c14, 0x0020062d, 0x084fac18,
0x09005a22, 0x1f247782, 0x2b002700, 0x4108f35e, 0xc1820507, 0x20052442, 0x936a1935, 0x05834508, 0x0f821520, 0x46331522, 0x46208682, 0x0a215482,
0x46098228, 0x0983095e, 0xa6836982, 0xf6841420, 0xbb83b382, 0xb6182820, 0x6b820cfb, 0x401a1720, 0xd7450d37, 0x4b35200a, 0xf7420695, 0x82058205,
0x8228206b, 0x0a1e22b8, 0x4102820a, 0x578607f4, 0x0e4b1284, 0x8bc4180c, 0x185a2009, 0x600fc1e4, 0xb5180b4b, 0xb3180c21, 0x2f500ae3, 0x00462208,
0xef8d186e, 0x9d0f1b09, 0x3327210f, 0x2508e148, 0x1523013b, 0xbf820733, 0xe7821e20, 0x82098c43, 0x05d762ac, 0x320a0a27, 0x0a321414, 0x20a48532,
0x7fde1a3c, 0x82a02008, 0x0035245f, 0x1947003f, 0x47080d30, 0xff85077a, 0x12219619, 0x21082a5a, 0x01821523, 0xa96f1720, 0x20098205, 0x827d8237,
0x82332011, 0x07874563, 0x2105ae49, 0x22490a32, 0x0a142305, 0x9a842814, 0x46201e84, 0x2009814e, 0x470a851e, 0x1e220885, 0x32821e0a, 0x2005f64c,
0x05f35300, 0x09331819, 0x4606b141, 0x152005aa, 0x2724ad82, 0x46152335, 0x084df319, 0x0a214483, 0x82788246, 0x083b6d44, 0x50000022, 0x1b260182,
0x27002300, 0xbf870000, 0x83053b41, 0x05eb41b1, 0xbf4e3520, 0x20118306, 0x58f78217, 0x0a2005cc, 0x41053543, 0x12820539, 0x5f462820, 0x2a171905,
0x20088308, 0x73201900, 0x03a91909, 0x35332e09, 0x141e1423, 0x321e283c, 0x1e0a5a28, 0x26c78600, 0x006400c8, 0x4c57004f, 0x81860fd1, 0x20054141,
0x07e64623, 0x180ac94f, 0x2008f39a, 0x08b15015, 0x200d6571, 0x24bd8207, 0x33153315, 0x058b42a0, 0x200a4f48, 0x457d190a, 0x41148608, 0x1e20056d,
0x5a230683, 0x82140a0a, 0x06de4700, 0x85088a72, 0x4a142015, 0x1d82061a, 0x3a821e20, 0xaf430020, 0x005a2507, 0x00160050, 0x4f09555f, 0x594108fd,
0x013b2408, 0x83072315, 0x3b2322b2, 0x052a4601, 0x23211a82, 0x82488350, 0x20a18403, 0x06fb4632, 0x28210f82, 0x48618414, 0x0f550549, 0x00012208,
0x2001820a, 0x206b8250, 0x08e35a23, 0x4e06a848, 0x334105e2, 0x820b8405, 0x233522fb, 0x9de31828, 0x82448409, 0x53a71904, 0x1e0a2108, 0xef56ee84,
0x820a2007, 0x19502055, 0x270f13a9, 0x0a0a320a, 0x50282846, 0x32200783, 0x8505bf43, 0x82182027, 0x0873487f, 0x82085667, 0x012b2311, 0xbb841e15,
0xbb822820, 0xfb4f0882, 0x05495008, 0x0720438b, 0x089fd418, 0x460a2324, 0x6582140a, 0x003c3c32, 0x00000800, 0x7800ecff, 0x0f006400, 0x29001f00,
0x0fcdcb19, 0x8f45db89, 0x217c8a06, 0x1d823337, 0xc3190f82, 0x172809ed, 0x012b1533, 0x27231533, 0x1e210382, 0x05e4413c, 0x3c230687, 0x840a1e0a,
0x1e1424a4, 0x84500a0a, 0x2005821b, 0x20088264, 0x8222823c, 0x82068307, 0x0a0a23fd, 0x2282281e, 0x0a0a4624, 0xef410a5a, 0x00282a06, 0x005a0096,
0x0015000b, 0x21a18425, 0x65483700, 0x27232409, 0x82152315, 0x5805820e, 0x99850b61, 0x35228d83, 0x61655023, 0x82282005, 0x6e1421f3, 0x4c05434a,
0x28200615, 0x28209082, 0x2007f855, 0x82268214, 0x4c322002, 0x936f050f, 0x18462007, 0x720aef9c, 0x15210930, 0x48e6833d, 0xdf180533, 0x3720085d,
0x3c201f82, 0x055edc82, 0x82e18405, 0x2a63820d, 0x0a0a3232, 0x28283232, 0x820a1e28, 0x821e200d, 0x7c002074, 0x5020067f, 0x2006d75d, 0xfbd91811,
0x29cc8208, 0x33152337, 0x35331537, 0x9a82460a, 0x03831e20, 0x825a0a21, 0x50502348, 0xc2184646, 0x002308e3, 0x82500000, 0x7bec183b, 0x1923200d,
0x2307a386, 0x461e0a32, 0x0a203182, 0x50276982, 0x0a5a5a50, 0x82464646, 0x0aeb4630, 0x2f001d22, 0x83089b4b, 0x06184abf, 0x84060448, 0x450b8511,
0x3320065b, 0x081bbd18, 0x51353321, 0xa1830699, 0xa3836382, 0x520b7646, 0x0a2105c8, 0x05ed4114, 0x20087d56, 0x069b4214, 0x141e1e22, 0x22059351,
0x84320a0a, 0x09b744cc, 0x62001321, 0x808208af, 0x60153321, 0x27830683, 0x20055958, 0x4fc8821e, 0x235305dd, 0x1905200c, 0x8910d76a, 0x201b8453,
0x20bd8235, 0x1b861a0a, 0x005a210f, 0x08b7b019, 0x4309646e, 0x14240643, 0x280a2814, 0x5f180283, 0x8d180adb, 0x0d560773, 0x05514b07, 0x23272329,
0x35233315, 0x82371523, 0x0a462307, 0x41863232, 0x0a22b483, 0xe4825a0a, 0x46463c24, 0xe0183c46, 0x8518084f, 0x0020095f, 0x820a9c76, 0x352723a0,
0x4b831523, 0x4405bf43, 0x32200629, 0x14264f82, 0x46460a5a, 0x2f423232, 0x089b5908, 0xb6823720, 0x3b827982, 0x15214986, 0x830b8227, 0x1e282143,
0x0a218683, 0x052d4c32, 0x52821e20, 0x0a214883, 0xa348191e, 0x00502b0e, 0x0009006e, 0x0012000e, 0x8d820016, 0x33244588, 0x17352315, 0x37208e82,
0x32820382, 0x32143223, 0x8243831e, 0x3c0a29cb, 0x141e6e0a, 0x5032325a, 0x0d6bc518, 0xc1186e20, 0x3a82084f, 0x99824785, 0x44828f85, 0x1e323c23,
0x82918314, 0x268b82d5, 0x505a0a50, 0x6d1e6450, 0x93460672, 0x826e2006, 0x0013228b, 0x08995f17, 0x1a08f947, 0x2108a63c, 0x31821428, 0x3c281e2a,
0x14501414, 0x14145a14, 0x1e24ce82, 0x3c3c500a, 0x0b2fd318, 0x4f4d5a20, 0x0a1d7d09, 0x35218a82, 0x4d018233, 0x17240861, 0x0a353315, 0x0a214083,
0x8245820a, 0x05b947e2, 0x0e825a20, 0x1e442820, 0x05134405, 0x00141423, 0x06675b00, 0x5a002825, 0x56000b00, 0xec4d0675, 0x850a2005, 0x0a462135,
0x8207774d, 0x5000212c, 0x0f202784, 0x3726298d, 0x0a233533, 0x0282500a, 0xa3191e20, 0x462008cc, 0x03202d83, 0x00210483, 0x091b6278, 0x3c413520,
0x82152006, 0x1d5319ff, 0x0a0a2207, 0x82028278, 0x82fa82f1, 0x2102826a, 0x3d824650, 0x2f713b89, 0x6b9b8905, 0x232105f3, 0x05a94637, 0x35172324,
0x43841523, 0x781e0a29, 0x0a0a281e, 0x82143c14, 0x320a2143, 0x2005b443, 0x4e008232, 0x1b4c088f, 0x20498505, 0x30861823, 0x828d8409, 0x821e2045,
0x22c58232, 0x4b501e0a, 0x44830785, 0x4f781e20, 0x20cc8307, 0x86cb8278, 0x1831208f, 0x820835f7, 0x204282cc, 0x05a34727, 0x86273321, 0x25d58249,
0x0a0a141e, 0xd14b2828, 0x0a462206, 0x204e8250, 0x204d8314, 0x214a8304, 0x4b88a000, 0x4f411f20, 0x9b4d1806, 0x08dd5009, 0x73233721, 0x9b830553,
0x0a0aa024, 0x52855aa0, 0x8c501421, 0x46462155, 0x05205784, 0xc8205784, 0x2320578a, 0x5d8a599e, 0x0a0ac823, 0x245d84c8, 0x28141450, 0x86609014,
0x064b4162, 0x63827820, 0x2b001922, 0x820a0742, 0x87b218fd, 0x33152509, 0x33372315, 0x83088951, 0x410382d7, 0xb88305a5, 0x1e200982, 0x0a840782,
0x460a1422, 0x18089a76, 0x20096fde, 0x21ca8314, 0x73420002, 0x00212307, 0x3d450027, 0x570f1a05, 0x41152008, 0x352006ff, 0x850ac941, 0x41322081,
0x5e8406c7, 0x82500a21, 0x4209820d, 0x768306f9, 0x19050343, 0x83085b0c, 0x87782063, 0x973720cf, 0x022b225f, 0x22e28e15, 0x85780a6e, 0x2105825a,
0x00460a78, 0x5a5c8307, 0x678806a3, 0x140a0a23, 0x05cf4200, 0x6786a020, 0x4b002f21, 0xc5900623, 0x8d051943, 0x023b236a, 0x6a882335, 0x84070542,
0x5b1420dd, 0x6d830911, 0x500a4623, 0x05614a14, 0x82461421, 0x0fef18d6, 0x830d2009, 0x39d2186f, 0x35332c08, 0x28325023, 0x0a0a500a, 0x823c0a5a,
0x202b8d58, 0x087d5a1b, 0x09f35c18, 0x820aa560, 0x82142077, 0x82798565, 0x07684342, 0x240ed77e, 0x000f005a, 0x0d274417, 0xdb841520, 0x20051356,
0x22a9830a, 0x8550140a, 0x5a46203d, 0x462005c8, 0x43056a44, 0x07200aaf, 0x3720438b, 0xe744b782, 0x21498206, 0x43822335, 0x561e5021, 0x46200823,
0x4d84cc82, 0x421e1e21, 0x7769053b, 0x00642305, 0xfa1a0009, 0x27200c9f, 0x08f19418, 0x0a25c282, 0x463c0a32, 0x099b5014, 0x83009621, 0x1813202f,
0x8408c345, 0x33152271, 0x20338217, 0x6f5f1835, 0x88072008, 0x3c502441, 0x82281414, 0x50142346, 0x4a831414, 0x4f850a20, 0x51821420, 0x83000621,
0x86e6207f, 0x0527604f, 0x18002921, 0x890a1bc1, 0x835d8d53, 0x85618f0d, 0x14b42467, 0x8c14a014, 0x836f886a, 0x47002071, 0xc3830643, 0x0a1b6c18,
0x1a09d449, 0x200b75d7, 0x22c38227, 0x4e0a0a96, 0xc68805c9, 0x52820e82, 0x46323222, 0x6a091741, 0x0f2009bf, 0x0d49ec18, 0x35331522, 0x09fd8618,
0x83a23887, 0x5856ed8d, 0x20839b08, 0x084b4105, 0x2320d783, 0x1807c350, 0x410c4d88, 0x07200aa3, 0x10adff1a, 0xa0256588, 0x2814143c, 0x476b8514,
0xf28c056a, 0x22084f41, 0x83070000, 0x36012473, 0x85006400, 0x5b2d2073, 0xd6180827, 0x35200ccd, 0xd141778a, 0x8e1b831b, 0x418585eb, 0x502208da,
0x02821414, 0xe3418e91, 0x181b2018, 0x4d0e0382, 0xb54d08b9, 0x09094109, 0x35232724, 0xab189633, 0x71410dd9, 0xddab1809, 0x4114200b, 0xf74106fa,
0xe74e1a09, 0x0593543d, 0x64009623, 0x42afa200, 0xafab0e1b, 0x83092342, 0x05fd4b67, 0x1cb1ad18, 0x2f426b89, 0x42798d12, 0x32411235, 0x08a64110,
0x97520020, 0x4309200b, 0x46270bf1, 0x2814143c, 0x1b460a14, 0x220a9f31, 0x76460046, 0x775d0caf, 0x0f96180a, 0x206a8408, 0x05ba4f32, 0x2005d36a,
0x7bd31800, 0x75e41808, 0xd5a91809, 0x05d64409, 0x48501421, 0xc74105b7, 0x82502005, 0x05054531, 0x21055946, 0x69823523, 0x82145021, 0x3c142754,
0x32323c0a, 0x1f65463c, 0x00782109, 0x4805ff63, 0xb349073b, 0x0bc1450a, 0x4e462720, 0x82352005, 0x78142144, 0x5a200484, 0x0588a385, 0x4620b382,
0x3c24ed82, 0x460a320a, 0x4906ff46, 0x1f21053f, 0x845b8800, 0x84232044, 0x49332057, 0xad7a0550, 0x28778208, 0x1e781414, 0x781e0a0a, 0x06f26a28,
0x50826682, 0xdd180a20, 0x0a200809, 0x00211783, 0x05f74800, 0xb784a020, 0xf74d2320, 0x83b78e08, 0x013b215d, 0x0973d319, 0x15233524, 0x73911723,
0x22832b20, 0x140a0a23, 0x836b82a0, 0x054f4704, 0x0a1e1423, 0x2083893c, 0x8584841e, 0x05634b85, 0xe4830a20, 0x0282a982, 0x4b1e1e21, 0xef670653,
0x080a4d09, 0x5f631520, 0x4750200e, 0x6e830948, 0x83083941, 0x8b7b19e1, 0x00502308, 0x3b4e003c, 0x05474905, 0x23055749, 0x15331523, 0x4a098f51,
0x3f830565, 0x676a0a20, 0x183d8205, 0x5309c7dc, 0xe8190bcf, 0xe48209b1, 0x08c27718, 0x3a823985, 0x13520020, 0xd3721907, 0x08ef560e, 0x0793f619,
0x28280a22, 0xe918f482, 0xb918133f, 0x15200c4b, 0x2006e359, 0x67778237, 0x37840a92, 0xd36d3220, 0x000a2409, 0x8296000a, 0x002321e7, 0x0be7eb18,
0x88352321, 0x0abf73eb, 0x6e24cd82, 0x140a500a, 0x14204383, 0x976f0888, 0x058c480d, 0x65057b44, 0x1f21052b, 0x825b8400, 0x08dd538f, 0x08dc9419,
0x22065741, 0x82172315, 0x739a84a5, 0x32210b59, 0x058b5b0a, 0x20089d41, 0x05177c32, 0x2205cb58, 0x18170046, 0x500cf3f4, 0xc7430556, 0x213a8206,
0xf6870a0a, 0x20078751, 0x23dd180a, 0x0050210a, 0xe1603f86, 0x2085820c, 0x41e58235, 0x478409df, 0xf2850a20, 0x63444f84, 0x183f8707, 0x4b096dde,
0x13820915, 0xb3842820, 0x1426cc84, 0x0a0a320a, 0xdd863214, 0x8b573f90, 0x18bf8308, 0x610820a6, 0x3685064d, 0x7f903c20, 0x1905b341, 0x200cbd0e,
0x09d56715, 0x2306e556, 0x32280a64, 0x84867b82, 0x143c3c23, 0x091a590a, 0x8a06e750, 0x0de74147, 0x44183520, 0x352208b7, 0x8c874633, 0x833c0a21,
0x2d5e1851, 0x584e8209, 0x00270573, 0x00960014, 0x41210046, 0x3d7a098f, 0x41152009, 0x51820697, 0xa3823320, 0x82963321, 0x280a2186, 0x3220d182,
0x7f199882, 0x0a2008af, 0x82082241, 0x05234109, 0x8b425389, 0x51981805, 0x41352008, 0x352008a5, 0x4f06b45f, 0xa983085f, 0x93575b83, 0x09834105,
0x42091b55, 0xa18608eb, 0x84103541, 0x21b383a7, 0x2b1a5023, 0x0a200eae, 0x0a25ba18, 0x49089852, 0xdf650777, 0x05eb4205, 0x8408ec52, 0x84e21863,
0x05f55909, 0xbf832320, 0x6b05bb54, 0x32200829, 0x5a204f83, 0x3c200e83, 0x2307ec41, 0x0a280a14, 0x87061344, 0x085d49b3, 0x45054b43, 0x658207af,
0x22085b57, 0x8f464650, 0x0c1279b5, 0xb393b784, 0x08d97519, 0x58073744, 0x37580541, 0x83152005, 0x7f9619d1, 0x84b48707, 0x821e20b3, 0x0a0a216d,
0x2820b487, 0xb38e0d82, 0x41076f51, 0xa5420667, 0x33352211, 0x0e504482, 0x77500a21, 0x53440e53, 0x051f4505, 0x8209bf41, 0x823520f3, 0x08f476b5,
0x46080341, 0x352205cd, 0xab441e33, 0x0d357411, 0x00285787, 0x50000a00, 0x17003c00, 0x44092b55, 0xb9840aff, 0xde82e785, 0x18141e21, 0x21086b93,
0xe6180a0a, 0x67520ef7, 0x10e74407, 0x43823520, 0x21081e56, 0x77823c14, 0x24064443, 0x0a320a28, 0x20008200, 0x88038201, 0x0a785383, 0x09101219,
0x23152323, 0x18848a14, 0x820856bc, 0x03e31884, 0x4183860c, 0x814c05b1, 0x0561450a, 0x6d413683, 0x0a322405, 0x870a460a, 0x181e2085, 0x20098b97,
0xef111946, 0x37002108, 0x4205d144, 0x4d460519, 0x0a626305, 0x77231521, 0xb34508eb, 0x0a0a240b, 0x73323c14, 0xa34e0964, 0x23eb8f0a, 0x001b0050,
0x52056f77, 0x35210657, 0x081b6923, 0x82152321, 0x0a46217b, 0x5b84a082, 0x1e0a1423, 0x24fe1a3c, 0x0a0a2309, 0x33411e0a, 0x2047840a, 0x42318437,
0x4f850f0f, 0x413c5021, 0xf0820838, 0x43464621, 0xf8830a10, 0x83000221, 0x009622fd, 0x06e35350, 0x450ba37a, 0x35200649, 0xa783fd85, 0x3522f582,
0x11455a23, 0x82322008, 0x1e0a22a2, 0x087a5614, 0x21085665, 0x3f54281e, 0x185b8809, 0x420cb7c1, 0x272012bf, 0x07855c19, 0xb7452820, 0x84322009,
0x086c4f5b, 0x5a846083, 0x2406eb48, 0x004600a0, 0x23774527, 0x15333526, 0x82333523, 0x07cd4a18, 0x21077d45, 0x305f0a14, 0x056c4608, 0x09826083,
0x5f820020, 0x20071b48, 0x435f832b, 0x874413b9, 0x41462015, 0x0a8c0a6e, 0x5e845a83, 0x20093248, 0x0b076314, 0x0a37d218, 0x58050343, 0x6d42091b,
0x05f54205, 0xc3181420, 0x4c8308a0, 0x3c0a2822, 0xa3760282, 0x055b6908, 0x15003c22, 0x8213cb43, 0x8823204f, 0x43322091, 0x3c210ac8, 0x095f7d32,
0x23203b85, 0x2008314a, 0x09614433, 0x141e3222, 0x2108f941, 0xc345321e, 0x06af4605, 0x0a000026, 0x5a005000, 0x94187785, 0xd1420856, 0x8a1e200a,
0x9928203b, 0xaf9a183b, 0x0623420d, 0xb3827488, 0x2008c244, 0x21b3823c, 0x00830002, 0x57005021, 0x4d4305bb, 0x05494308, 0x3d821520, 0x6d611720,
0x82142005, 0x280a22a5, 0x47931946, 0x1e282209, 0x2139830a, 0x2f410001, 0xa5462005, 0x3c0a21b7, 0x0cb7f318, 0xe2ff0022, 0x4620f382, 0x2105b351,
0x31462337, 0x47ff8209, 0x232107b3, 0x82818307, 0x0513547f, 0x2f462820, 0x72468605, 0x461805c7, 0x4b860a0b, 0x41231721, 0xd34309ff, 0x050d5c09,
0xca821e20, 0x0a141423, 0x84068328, 0x20d48305, 0x84048232, 0x0ceb6310, 0x1b001722, 0x2019214a, 0x4a978227, 0x32220c25, 0x284a5050, 0x5747180b,
0x821e2008, 0x5d3c20e3, 0x1b48054f, 0x226c8409, 0x82284628, 0x095b4807, 0x28005022, 0x77452785, 0x05274c08, 0x7a284621, 0x1e200913, 0x4622a182,
0x27844600, 0x0ad7d718, 0x9b493c20, 0x32322205, 0x20518246, 0x06bb5800, 0x27823220, 0x0d7b0319, 0x2006cb4b, 0x4e861814, 0x05c34107, 0x8a000a21,
0x051548a3, 0x2320a982, 0xa1827583, 0x5d05a642, 0xa38809af, 0x7f841520, 0x56233521, 0x28200506, 0x0220cb87, 0x08779219, 0x33207b87, 0x23205382,
0x8505474c, 0x4c4620c8, 0x00220b3f, 0xcf853200, 0x2207dd44, 0x63353315, 0x0a20054d, 0xe6182d84, 0x50240907, 0x13006e00, 0x4406ad44, 0x072010fd,
0x7d4b1184, 0x82c38405, 0x8232200f, 0x82438494, 0x200a8904, 0x087c4950, 0x72080b43, 0x96240983, 0x0f005a00, 0x085df519, 0x3520b982, 0x21094762,
0xd1462723, 0x056f4605, 0x7383a582, 0x15331725, 0x470a5a23, 0x1e20069d, 0x6b825a82, 0x320a142b, 0x0a820a0a, 0x460a1e0a, 0x1ab41946, 0x200b8408,
0x23971828, 0x4acb8709, 0x15211041, 0x09e15023, 0x20093b44, 0x050d4128, 0x820a1421, 0x43cb89c8, 0xd24d084f, 0x06ff410c, 0x92092f41, 0x4ed78263,
0x6d8a1b95, 0x21152e41, 0xe7740400, 0x092f4108, 0x200eaf4e, 0x200f8e37, 0x0fc34e27, 0x37415020, 0x320a2706, 0x0a500a0a, 0x2e41460a, 0x88088305,
0x4acb9074, 0xa4690ac5, 0x0ae17e06, 0x41092f41, 0x2e410afb, 0x09384609, 0x20093841, 0x084f6400, 0x201cfb41, 0x0e0b4237, 0x4108bd48, 0xfa1807fb,
0xcb85083e, 0x8b07fb41, 0x20cb88cc, 0x062b7f46, 0x08eea919, 0x37353322, 0x430a334f, 0x1e200551, 0x4f78a382, 0x420a2005, 0xe5180556, 0xb1820823,
0x18005021, 0x4108b7f7, 0x152008dc, 0x08639f1a, 0x23076150, 0x0a284646, 0x4620f382, 0xb948f786, 0x25ef8605, 0x008c000a, 0x3157003c, 0x001f2105,
0x0a7d2419, 0x18094549, 0x8408fe41, 0x83e8844f, 0x0a3c2104, 0x45051b69, 0xaa41063e, 0x000a2408, 0x180a0005, 0x89088b42, 0x0e054259, 0x4d820720,
0x08974c18, 0x089bd119, 0x1e214582, 0x45008514, 0x1082058c, 0x14460a28, 0x140a1450, 0xa3410a46, 0x46b38f07, 0x2b7612ed, 0x20078307, 0x09f5626e,
0xc24bb388, 0x21b3950f, 0xb719013b, 0x5d5a0d96, 0x83152005, 0x05094b6f, 0x08b8b218, 0x5941b285, 0x22b28305, 0x82321428, 0xe3451901, 0x0064270a,
0x001f0017, 0x54473700, 0x08a24207, 0x8305f041, 0x23352367, 0x08662315, 0x42498707, 0xeb4b05a0, 0x0a3c2406, 0x82000a28, 0x79022000, 0x0f2008e3,
0x20195582, 0xc84c0ae1, 0x83332007, 0x50152165, 0x0a213c85, 0x244c8228, 0x14282828, 0x21ad8214, 0xcb691e14, 0x57439106, 0xde84088e, 0x42869086,
0x0a284625, 0x85321e0a, 0x59498341, 0x012805a3, 0xecff0a00, 0x64004600, 0xd182d984, 0x8206684c, 0x84d58509, 0x838b8287, 0x05184617, 0x47462820,
0x3c0a2205, 0x83598228, 0x5f0a2090, 0x1e200575, 0x079f5b19, 0x09674e18, 0x46224282, 0x4e183c3c, 0x4b18074f, 0x454b09e3, 0xbfcc1908, 0x18322008,
0x20089ba4, 0x20008200, 0x208f8250, 0xaf281913, 0x084b6809, 0x2f822320, 0x9a451420, 0x0a1e2106, 0x14218e82, 0x26008228, 0x00001414, 0x52140003,
0x1b2306bf, 0x4a002300, 0xad4205a7, 0x09b94b0c, 0x37233523, 0x06224e15, 0x1522dc84, 0x685f5a33, 0x20068606, 0x05554814, 0x41054462, 0x068406c5,
0xe0190485, 0xa7180e23, 0x152208bd, 0x38843223, 0x3c3c1429, 0x3c0a0a3c, 0x82020000, 0x00142491, 0x823c0050, 0x82cd839d, 0xebb4186d, 0x460a270f,
0x1e0a4646, 0x0383140a, 0x5b054264, 0x0a2008c3, 0x3b833d82, 0x1f000f24, 0x378f0000, 0x2105e841, 0xd5852315, 0x50333522, 0x08644619, 0x32204c86,
0x4106cb43, 0x0a2205b2, 0xcb54000a, 0x82462008, 0x13f61891, 0x09a57c0c, 0x33152323, 0x083f6515, 0x2005056a, 0x088b5314, 0xc5820020, 0x46209383,
0x0722cf84, 0x95820b00, 0x1533352b, 0x23153307, 0x1533013d, 0x21f5820a, 0x76823c3c, 0x0a208083, 0x1420fb82, 0x6b83bf82, 0x4f05874e, 0x63830846,
0x2005e744, 0x82788217, 0x220286f3, 0x43323228, 0x28200ad0, 0x0221b083, 0x18438d00, 0x820f8ca3, 0x05534aad, 0x0a204286, 0x438a4282, 0x43831e20,
0x09774a18, 0x07eb4918, 0x27002322, 0x5e062d79, 0x232309cd, 0x1a372335, 0x700efb9c, 0x2720071b, 0x1720ac82, 0x0a670c1a, 0x0a0a0a27, 0x0a0a1e1e,
0x2005843c, 0x058d4d0a, 0x4a187482, 0x1423087d, 0x42320a0a, 0x317b0a2c, 0x0a322105, 0x22054c62, 0x42010000, 0x32210613, 0x06cb5b00, 0xef183520,
0x15240866, 0x14144623, 0x4305066d, 0x0a200550, 0x08bfa318, 0x83195020, 0x394308f7, 0x43332005, 0x1720079e, 0x2005ed4e, 0x21718423, 0x744e460a,
0x20078406, 0x20958332, 0x074f5628, 0x41822820, 0x08f7e119, 0x8a084841, 0x463c204d, 0x0a220899, 0x4541140a, 0x0807650a, 0x28005025, 0x46001700,
0x7f5b055d, 0x20bd8409, 0x50478215, 0x14200887, 0x1909d450, 0x830a63db, 0x4c64207f, 0x4518071f, 0xbf42093d, 0x29631905, 0x21858d09, 0x888b4646,
0x9b503c20, 0x204b8307, 0xb94b1878, 0x534d9909, 0xc442075f, 0x820a2005, 0x824620d7, 0x21538d00, 0x41180a1e, 0x6e20087b, 0x20079f56, 0x06174a15,
0xdd630786, 0x064f4708, 0x481e2321, 0x0888087d, 0x1a0a6e21, 0x550ec2db, 0x0026060f, 0x78004600, 0x37410500, 0x3c0a2607, 0x0a781428, 0x099f5a6e,
0x35271b88, 0x143c0a23, 0x85787828, 0x067b471b, 0x33273785, 0x140a2315, 0x1a5a3c28, 0x22093fc6, 0x835a0046, 0x19172053, 0x21092395, 0x131a786e,
0x1421095f, 0x4fd11900, 0x0a1e280c, 0x28280a0a, 0x4232280a, 0x0020050b, 0x32255b82, 0x07001400, 0x06254e00, 0x68233521, 0x282205a2, 0x97830028,
0xb1821e20, 0xb3825020, 0x836e1f82, 0x211f8307, 0x43825028, 0x02000023, 0x20d18300, 0x871f8232, 0x012b2163, 0x24055348, 0x78282828, 0x08674428,
0x46001424, 0xf78d3200, 0x140a3226, 0x00040000, 0x20054344, 0xff191946, 0x37002108, 0x2409f648, 0x35330733, 0x07794323, 0xad183c20, 0x1425085b,
0x0a320a0a, 0x8205820a, 0x141e2588, 0x0a3c0a1e, 0x6a83e182, 0x2105674d, 0x2b46000f, 0x08434805, 0x071f4a18, 0xa4434620, 0x05af4605, 0x820a1421,
0x14142100, 0xc2823e82, 0x2108bf49, 0x3d850032, 0x200af554, 0x06ed4315, 0x1e217483, 0x05c2481e, 0x30571e20, 0x052c7905, 0xbb470520, 0x823c2006,
0x4c1b20c3, 0x3f440861, 0xf118190d, 0x23352a0a, 0x2315013b, 0x15333527, 0x8c598217, 0x05fc5993, 0xda862820, 0x580ce368, 0xa78405a2, 0x50000a24,
0xa7864600, 0x08d41b19, 0x23057c48, 0x33152337, 0x08303619, 0x08d2ba18, 0x280a1e23, 0x2ce4821e, 0xff140005, 0x009600e2, 0x00270078, 0x07935b2d,
0x84069b4d, 0x0c895947, 0x89081d4d, 0x23352859, 0x23353307, 0x6b023b15, 0x5021056e, 0x24948214, 0x141e0a14, 0x82b08314, 0x24098305, 0x0a1e141e,
0x22038332, 0x833c0a0a, 0x0a1422c0, 0x690d8214, 0x09840594, 0x141e6e23, 0x49a2823c, 0xcb830847, 0x08c7f318, 0x220f6356, 0x18352315, 0x2109abf7,
0x7c470a0a, 0x6b32200b, 0x138706ed, 0x831e1e21, 0x820620e3, 0x00ec24e3, 0x4550008c, 0x372406d3, 0x3f003b00, 0x5c0a2561, 0x6744065d, 0x09054807,
0x84057344, 0x1523236f, 0x57703733, 0x82272006, 0x821720ef, 0x825a200b, 0x82ec84e6, 0x820a8b82, 0xef4a18da, 0x6acd1909, 0x1414210a, 0x0f822d82,
0x32260682, 0x3c143214, 0x4a182814, 0x0a21083b, 0x0b0b4300, 0x2606cb43, 0x000a1432, 0x83000600, 0x18502000, 0x6f0a8750, 0x116d06b9, 0x9d581809,
0x23352208, 0x20158235, 0x014d1823, 0x0a0a230b, 0x74412828, 0x05016e06, 0x9a833220, 0x1e3c0a23, 0x208d820a, 0x82b5823c, 0x82282008, 0x0a1e21bf,
0x2008ab4e, 0x496b8246, 0x7646051d, 0x0afa6405, 0x3c669882, 0x3523230a, 0x75741533, 0x08114b07, 0x280a3c22, 0x0a21df82, 0x2053823c, 0x058f4b0a,
0x1e207083, 0x76051b43, 0x0a2005d9, 0x23066344, 0x32004600, 0x8306f744, 0x0a23264a, 0x4628320a, 0x211c8232, 0x5f440001, 0x08536b07, 0x0a321e2a,
0x28327828, 0x00010000, 0x82079b44, 0x05ad4f1b, 0x32280a23, 0x83bd8214, 0xff1e261b, 0x005000e2, 0x09f74414, 0x0a281e22, 0x32201c82, 0x4b511b89,
0x223d850a, 0x83141446, 0x5a3c22ab, 0x089b535a, 0x97841420, 0x079f4918, 0x2006214a, 0x2027850a, 0x2027861e, 0x08a34704, 0x48180320, 0xc47b08f1,
0x07352109, 0x03830b82, 0x5682f182, 0x520a2821, 0xbc430582, 0x05e34408, 0xab821420, 0x89003221, 0x05aa493f, 0x23263982, 0x23152715, 0x0f82013d,
0x40843c20, 0xe5422820, 0x23418508, 0x02000000, 0x28207f82, 0x08ab4318, 0x097d7319, 0x5c193320, 0x33230e17, 0x82372335, 0x41e28313, 0xa56f058f,
0x1e1e2205, 0x0ca4735a, 0x840a0a21, 0x00002253, 0x0947441e, 0x0d5b681a, 0x83084f53, 0x321e2191, 0x09dd421b, 0xd36d3a84, 0x00a02406, 0x491b0046,
0xb5520c3b, 0x42998609, 0x2b200740, 0x20060e71, 0x82a18215, 0x07232169, 0x3b200782, 0x6e24f282, 0x78780a1e, 0x1e249b84, 0x141e1446, 0x14280283,
0x14141446, 0x64141432, 0xcb4fc184, 0x21258209, 0xd9820a1e, 0x7f86d282, 0x7f829620, 0xc2180320, 0x33210c15, 0x511e1907, 0x71352008, 0x15210882,
0x05217433, 0x73823720, 0x8c8c9623, 0x2164833c, 0x6c821e50, 0x141e5023, 0x8308821e, 0xf2bf19dd, 0x08724108, 0x0010002a, 0x0000000a, 0x007800a0,
0x4e05ef6e, 0x2d4a07f3, 0x05594409, 0x41004321, 0x2322058f, 0x33523335, 0x073f5007, 0x27200787, 0x1a0a2d4a, 0x430fa916, 0x502a07c3, 0x4696460a,
0x1e82823c, 0x8c824646, 0x8505c643, 0x05e54608, 0x08503019, 0x0a210e82, 0x2719820a, 0x5a5a146e, 0x0a324650, 0x09c3b219, 0x8309e341, 0x19502013,
0x200a3f9d, 0x6d7d1878, 0x52352007, 0x434d0a17, 0x3d5a1909, 0x48462009, 0x1e2111c7, 0x07834a0a, 0x05190887, 0x578509f7, 0x8708a373, 0x05a7725d,
0x21086774, 0x1f5c1523, 0x0a244407, 0xda4a5482, 0x205f8806, 0x17574200, 0xd349a983, 0x09915f05, 0x23240982, 0x23013b35, 0x4306d24e, 0x172406b7,
0x07333523, 0x3c230382, 0x59141e14, 0x782606cc, 0x141e0a78, 0x6f824614, 0x57420682, 0x08bf4405, 0x1905ca47, 0x21086813, 0x0082000a, 0x45000821,
0x0f210783, 0x05394e00, 0x37003328, 0x43003f00, 0x7b450000, 0x08da4205, 0x44073521, 0x9d770a03, 0x23138408, 0x35173523, 0x23057c48, 0x35231507,
0x2007356f, 0x4d1e1927, 0x5e0a2008, 0x13410985, 0x06df6409, 0x4c5a0a21, 0x0a200651, 0x83050f44, 0x841e209e, 0x05524cb2, 0x32243086, 0x04000a0a,
0x0b48aa82, 0x82172005, 0x084d61ab, 0x4109b44f, 0x152009ef, 0x27209782, 0x2005eb69, 0x4bff8a33, 0x502005da, 0x82099651, 0x05cf477b, 0x00141425,
0x82000700, 0x8c002204, 0x057b6400, 0x2007254d, 0x08f56b37, 0x09bb4f18, 0x23352323, 0x20768507, 0x09ad7735, 0x4d054544, 0x3c200b37, 0xcb827a82,
0x14240285, 0x0a0a1428, 0x78051748, 0x0a2005b8, 0xa944e082, 0x741d8309, 0x218209c8, 0x820a3221, 0x030022ee, 0x053f4700, 0x09824620, 0x2112734e,
0x00822832, 0x00820a20, 0x134a4b82, 0x00642608, 0x00220017, 0x49b78226, 0xfd420893, 0x76a7820b, 0x15210554, 0x055c5823, 0x0c0d2619, 0x0b461420,
0xea261905, 0x8346200c, 0x05ac6c60, 0x2307fb49, 0x00090046, 0x0ac96a18, 0x20060642, 0x25fd8933, 0x33172335, 0x21492315, 0x46142205, 0x05724446,
0x0a0a3228, 0x280a0a3c, 0xaf19281e, 0x062008d3, 0x0023df82, 0x83005000, 0x0973444f, 0x5f420020, 0x33352107, 0x07200989, 0x2007d341, 0x205b8333,
0x205b8635, 0x24af8328, 0x461e1414, 0x20c6821e, 0x0649440a, 0x1e200a84, 0x08c64718, 0x00000023, 0x2067840a, 0x276784a0, 0x0015000d, 0x00210019,
0x2305e974, 0x00350031, 0x14416f84, 0x82c18605, 0x59c185bb, 0x15210581, 0x217c8223, 0xb760012b, 0x82372006, 0x82372007, 0x82642085, 0x0a1426de,
0x0a32325a, 0x82008214, 0x86058207, 0x845a2002, 0x868e8207, 0x210983e9, 0x3c660a14, 0x84282006, 0x0b901808, 0x00502408, 0x4313000b, 0x8219067d,
0x2945086f, 0x83332006, 0x84938207, 0x070b418f, 0x084c0e19, 0x14206484, 0x14236586, 0x82460a14, 0x05644203, 0x14236183, 0x490a500a, 0x778205c4,
0x823c1421, 0x0000220b, 0x06e34204, 0x0d007824, 0x73821500, 0x36191f20, 0x124b092b, 0x23172205, 0xbdb91935, 0x23153308, 0x35231537, 0x1e280a50,
0x320a1e78, 0x1464143c, 0xcf832832, 0x0a145a2b, 0x14505028, 0x3c283c0a, 0x0578413c, 0x00010023, 0xa3c11814, 0xa1431808, 0x827a830c, 0x833c2084,
0x005a2107, 0x28242786, 0x03007800, 0xd5827982, 0x14141424, 0x17859678, 0x3c00ec22, 0x5a1a1782, 0x584a12bb, 0x6e142205, 0x2027856e, 0x202782e2,
0x05375a5a, 0x2009ab63, 0x8c648228, 0x18282067, 0x82087761, 0x2315228f, 0x20679428, 0x08974823, 0xd61a3220, 0x678d0986, 0x00000524, 0xa8823517,
0x28141524, 0xbb4e1e14, 0x86eb8306, 0x231b83c3, 0x961e1414, 0x9b83c386, 0x86007821, 0x15332133, 0x1e23dd82, 0x8b0a8c96, 0x201b84b7, 0x26518223,
0x1e281428, 0x83780a6e, 0x83ab8a1b, 0x9368824f, 0x8333824f, 0x8c0a214f, 0x1e206b84, 0x5a22df84, 0x657a0700, 0x821e2009, 0x501422c3, 0x065f4f0a,
0x32221f82, 0x1b4e7800, 0x08034409, 0x82153321, 0x571e20ce, 0x1421088a, 0x210a8214, 0x04824646, 0x41064b4a, 0x57820587, 0x2007d545, 0x22578328,
0x8482820a, 0x4e7783c7, 0x002005ff, 0x1e20ab83, 0x3221fb8b, 0x838f8500, 0x216384de, 0x8f880a14, 0x46203783, 0xc9528f86, 0x563c2012, 0x1e2308e1,
0x8632320a, 0x05374191, 0x8300ec21, 0x418f836f, 0x767506ae, 0x820a2a06, 0x00060000, 0x00ecff0a, 0x20578250, 0x06434303, 0x82055d7e, 0x3537217d,
0x8305ca42, 0x353323ee, 0x35431523, 0x09514407, 0x2205d64d, 0x8246460a, 0x451420e0, 0x14250645, 0x0a0a2814, 0x2f008214, 0x46141428, 0x0a0a325a,
0x140a1e32, 0x143c1432, 0x03822082, 0x0a211c82, 0x8b008200, 0x000f2277, 0x08054f17, 0x56557784, 0x15232205, 0x22739b33, 0x481e1e1e, 0x718d05c2,
0x50201486, 0x11206f9a, 0x2108bd44, 0x6f843700, 0x8208c65b, 0x061143e5, 0x0cd5241a, 0xe5822583, 0x8d089653, 0x82e38271, 0x8d1e2088, 0x5adf9be2,
0x085808a5, 0x08b57f08, 0x8f832720, 0x6d820382, 0x1e320a25, 0x821e1414, 0x206d865c, 0x24078228, 0x5a461414, 0x57f58414, 0x0a2006ca, 0x45134f41,
0xdf47050d, 0x37232107, 0x20059044, 0x21d99a15, 0x67820a14, 0xd68d0a20, 0x0f821e20, 0x46410a20, 0x1b0a200c, 0x21142373, 0xd94a0033, 0x074b4105,
0xd218d484, 0xc3410965, 0x20e38711, 0x83978207, 0x8207879b, 0x4a3c20f3, 0xd7820894, 0x1420f78c, 0x1e20e982, 0xff870382, 0x5a202884, 0x240ae441,
0x1e0a0a64, 0x8320820a, 0x00002105, 0x08d76e18, 0x11006423, 0x09c61800, 0x08a15007, 0x47333521, 0x1723056f, 0x18331523, 0x230b0b5c, 0x140a0a32,
0x14210282, 0x27878214, 0x460a0a32, 0x3c0a320a, 0x14224f83, 0x0a823232, 0x00010022, 0x2105e360, 0xbc1a0000, 0x3c240a3f, 0x28145014, 0x2409f77d,
0x0046000a, 0x06cd4250, 0x2f002b25, 0x18370000, 0x20090647, 0x18768215, 0x200d55bf, 0x05957915, 0x87833720, 0x2a830382, 0x180e7a4d, 0x460e2db8,
0x645e060d, 0x2fb81808, 0x0046220e, 0xd138195a, 0x08876e08, 0x68331521, 0x172005a1, 0x0a210782, 0x05aa430a, 0x5020e685, 0x0a20ec84, 0x2823bd82,
0x6c000014, 0x0b210af3, 0x63851a00, 0x35232609, 0x14323223, 0x2402820a, 0x28501e28, 0x6f278c1e, 0x6184071b, 0x3c141428, 0x32281414, 0x75185a28,
0x5a200ba3, 0x18059378, 0x2808e347, 0x14281423, 0x5a1e141e, 0x90288228, 0x59372027, 0x3c200a0b, 0x14202784, 0x32202784, 0x13249b8b, 0x23370000,
0xdb614f85, 0x23152209, 0x20cb823c, 0x27d68350, 0x46501450, 0x1e28281e, 0x00220483, 0x43180200, 0x172208b3, 0x39821b00, 0x09085318, 0x2908f65e,
0x15331523, 0x23353337, 0x58191414, 0x604a08b4, 0x6c322005, 0x0882082e, 0x03214782, 0x05335400, 0x4b4a5020, 0x06ad4308, 0x23214082, 0x20fb820a,
0x2200821e, 0x82463c46, 0x084b4adf, 0x2b885a20, 0xe14d7982, 0x141e2207, 0x266c8332, 0x3232320a, 0x191e3228, 0x7f08db13, 0x03240547, 0x0b000700,
0x09c73f19, 0x63823720, 0x1e1e3222, 0x25059e47, 0x3c141e50, 0x8a823c3c, 0x14235f84, 0x4a005000, 0x354e09d7, 0x268b820a, 0x1e14141e, 0x82460a0a,
0x84322061, 0x0002215f, 0x07580083, 0x181f2005, 0x200a3d44, 0x05864b33, 0xa84c6582, 0x19138209, 0x4a08c1ac, 0x2a4908db, 0x86e48205, 0x0a835c08,
0xb1853220, 0x5f05d644, 0x1421051c, 0x8383820a, 0x0f001981, 0x00502609, 0x00110032, 0x61801915, 0x57298209, 0x7d820620, 0x68182320, 0x388308a8,
0x5509df65, 0x0b5a0d6b, 0x09c86e05, 0x2008427b, 0x21bd8237, 0x75831e28, 0x7b83b082, 0x820c0b55, 0x05bb7744, 0x774b8383, 0x37002205, 0x06004233,
0x82173321, 0x2327253b, 0x0a0a3315, 0x83058b54, 0x0a2825b6, 0x0a140a32, 0x2010eb55, 0x5dc1820d, 0x2320066b, 0x8606c943, 0x28142279, 0x182f8214,
0x2108da40, 0x738c140a, 0x95430f20, 0x20f08307, 0xf74e1835, 0x4b798708, 0xf45e05dc, 0x06704105, 0xff8dc687, 0x7f8abb83, 0x28203f83, 0x28247682,
0x1e14140a, 0x83051a4d, 0x83042077, 0x83002034, 0x09795feb, 0x420e406c, 0x152105f3, 0x82f78323, 0x28332193, 0x8308db46, 0x0f83444a, 0x65461420,
0x09434105, 0x5418cf87, 0xd78408b5, 0x41373321, 0x1e230649, 0x820a0a14, 0x141e2150, 0x41058542, 0x0a200715, 0x4b058a53, 0x6e2008b7, 0x2208c357,
0x5d00001f, 0x47860c5f, 0x35332725, 0x41013d23, 0x5084052e, 0x143c0a22, 0x82080a4f, 0x8213834c, 0x05a941af, 0x47430a20, 0x82002008, 0x006e22fb,
0x215d8207, 0xc37e0013, 0x18352005, 0x8408474b, 0x08e44566, 0x2006a142, 0x7eac823c, 0x6e260aff, 0x15001100, 0xa9421d00, 0x41272017, 0xb14206c0,
0x4228200b, 0x14210b73, 0x20508514, 0xcb601803, 0x00132308, 0x50180017, 0x4c180b87, 0x332208da, 0xeb833715, 0xc1425186, 0x05f1430c, 0x86098a41,
0x46002054, 0x6e2009db, 0x2106434e, 0xcd420019, 0x42a58912, 0x4c8209d5, 0xd9421420, 0x84282008, 0x20a389f4, 0x83f5820d, 0x0ce07249, 0xe5429d8e,
0x829a8706, 0x0a142141, 0x1f429793, 0x4ff18305, 0x098309f3, 0x87086b43, 0x0ef9429d, 0x1420a083, 0x58820482, 0x140a0a25, 0x8e320a14, 0x000924a3,
0x1815000d, 0x200bcf51, 0x0b3d4117, 0x82060943, 0x080d4353, 0x20058841, 0x075f7400, 0x6e005022, 0x2008e762, 0xf34f1827, 0x41a0840f, 0x8168058f,
0x88332005, 0x131d43a5, 0x8208fb52, 0x140a21af, 0xad867482, 0x200b9f41, 0xd3c8180f, 0x4433200c, 0x232106ae, 0x84598835, 0x068359bf, 0x1e206482,
0x14205483, 0x0b820082, 0x07825f84, 0x03833220, 0x60822820, 0x20123743, 0x19374329, 0x06532720, 0x22728705, 0x43153315, 0x0a211041, 0x845a8214,
0x460784ba, 0x477406fd, 0x000a2a09, 0x00e2ff00, 0x007800a0, 0xa567180f, 0x00532310, 0xf85f3300, 0x15332409, 0x55233523, 0x1956054d, 0x20138408,
0x055f4637, 0x4b540583, 0x22058205, 0x58353317, 0x17200c87, 0x83060b66, 0x48462007, 0x701806e0, 0x3c2308e0, 0x5e14143c, 0x0882071a, 0xd77e1420,
0x64142a05, 0x0a820a0a, 0x0a0a780a, 0x068b526e, 0x281e4622, 0x08595518, 0x55188c20, 0x1583084f, 0x6e0a6e24, 0x30823214, 0xce825a20, 0x0b000022,
0x0b20d388, 0x1325d582, 0x3b002700, 0x81741a00, 0x4736190b, 0x2335230d, 0x03821715, 0x114dd9a9, 0x5f072005, 0x6d5906f3, 0x196e2007, 0x2009910c,
0x055e4128, 0xd78d1420, 0x8808c77a, 0x0a0a2cd4, 0x0a1e0a5a, 0x281e1e0a, 0x92141e1e, 0x837820d9, 0x20d78aff, 0x97d78809, 0x515318d3, 0x82d3c10e,
0x0a2822ca, 0x20008214, 0x22d3a850, 0x820a460a, 0x14462131, 0x8d13ab41, 0x097b42d1, 0x96000b21, 0x07ca49d1, 0xa74e0720, 0x19d1c106, 0x2008610b,
0x20d1a632, 0x7d0a1914, 0x411e2009, 0xa34121a4, 0x000b2209, 0x064f5d1f, 0x18077b42, 0xc00cdbd4, 0x3c3c25c9, 0x281e1e28, 0x23279741, 0x0a1e0a5a,
0x89236442, 0x000932bf, 0x0031001d, 0x00390035, 0x0041003d, 0x00490045, 0x08b56d00, 0x44065559, 0x2d432307, 0x21bb8216, 0xbca73c14, 0x0a1e5024,
0x59185a28, 0xfb430955, 0x0d4f4209, 0x201c1f43, 0xb57b1933, 0x5835200e, 0xfd550517, 0x05234b08, 0x44233521, 0xc59615cd, 0x6b4d3220, 0x0a142205,
0x19caa71e, 0x20080708, 0x414b4232, 0x08c70319, 0x20404b42, 0xa7008414, 0x282824c3, 0x4128285a, 0x0020218e, 0x20200b43, 0x06604b35, 0x6423bfbf,
0x820a0a28, 0x06195c02, 0x82217745, 0x45462028, 0xbf9c2270, 0x5f5a3720, 0x33152206, 0x410d4335, 0x6345bd82, 0x1414222d, 0x21804150, 0x1722bf89,
0x01472b00, 0x1957200c, 0x7109452d, 0x2053087d, 0x3f8b4106, 0x57146e21, 0x0a21084e, 0x2751420a, 0x0aef5118, 0x232c6345, 0x00190005, 0x0d0be219,
0x41056345, 0x3c214191, 0x295a4514, 0x4b425020, 0x490a2024, 0xe9460667, 0xdf641812, 0x1533210a, 0x35200182, 0x20425342, 0x05664a78, 0x0a0a0a23,
0x07854114, 0x14323224, 0x16833214, 0x23063b49, 0x14144614, 0x61490e82, 0x0a642205, 0xb7781b0a, 0x215a4208, 0x00090022, 0x3522cf9e, 0xfb5f3523,
0x4123430a, 0x0319cfb2, 0xcfa2082a, 0x4b0b8b48, 0x314a1109, 0x7b661805, 0x4025430a, 0x0a280a22, 0x14200282, 0x4a16034b, 0x0a25132b, 0x460a0a46,
0x23b74446, 0x0924cb89, 0x21000d00, 0x200cc347, 0x08f7644d, 0x33153323, 0x44f74a07, 0x32141e22, 0x20055656, 0x4500820a, 0x0119207c, 0x14210958,
0x058c4232, 0x2017ce47, 0x24c78900, 0x00150011, 0x08874829, 0x51004d27, 0x00005500, 0x076d4c17, 0x087f7018, 0xcfc32720, 0x610a1421, 0xd3aa055e,
0x0a25f782, 0x3c0a0a3c, 0x44fd8214, 0xd78922bf, 0xf74a0f20, 0x1d011913, 0x406f4213, 0x4207ac76, 0x00192971, 0x3c20096e, 0x4721aa48, 0x23230aeb,
0x1a003700, 0x200be981, 0xe3811863, 0x13ff180e, 0x20e1c016, 0x05f5560a, 0xbf190a20, 0x7d460937, 0x08be6e27, 0x4c08617f, 0x5b4721bb, 0x00072209,
0xbb7b181b, 0x8947200c, 0x21d3c0ef, 0x244b1414, 0x5050212a, 0x0a796418, 0x89175443, 0x129f4cb7, 0x217dd348, 0xd3485050, 0x16a5452c, 0x0e474b18,
0x183ddf4b, 0x4e08794b, 0x0a24292b, 0x4646460a, 0x47217046, 0xc9711c3f, 0x08f76f08, 0x21423f47, 0x0184140a, 0x202a0f48, 0x2400831e, 0x1e1e3c3c,
0x52cfa33c, 0x1f240747, 0x47003300, 0x200c0144, 0x09d14400, 0x5d333521, 0x3320080f, 0x0cff4a18, 0x183da741, 0x5f09a450, 0xf9430521, 0x0a1e2327,
0x31821e28, 0x0a141424, 0x0782141e, 0x4421f643, 0x7f420ae7, 0x0a322393, 0x02822828, 0x4c229c4d, 0x33211f1b, 0xf1f61835, 0x3da74115, 0x820a3c21,
0x051b7600, 0x20285e4b, 0x2032821e, 0x08055814, 0x48293348, 0x512311f9, 0x57370000, 0x05830585, 0x15331522, 0x23289f45, 0x17331523, 0x20067b5b,
0x0adf6427, 0xd2821383, 0x281e1e22, 0x2116e94c, 0xe8551428, 0x826e2006, 0x22c78207, 0x196e0a0a, 0x20084640, 0x13354c3c, 0x1e144625, 0x8214280a,
0x23078224, 0x00000a5a, 0x490a0349, 0x855118cb, 0x2fcb4905, 0x91553720, 0x06cb6506, 0xcb832320, 0x320a6e22, 0x22487782, 0x821e201a, 0x25c98cc0,
0x320a145a, 0xc9933232, 0xc78d7820, 0x7c1c9b51, 0x23220c39, 0x534f2335, 0x54cb952f, 0xce8e21bb, 0x23054272, 0x0a320a0a, 0x41150844, 0x634b0b98,
0x8233201e, 0x054143c5, 0x24449741, 0x1e0a0a32, 0x2a974114, 0x140a3223, 0x24964150, 0x240a5f42, 0x0011000d, 0x0aed5325, 0x51004d23, 0x37e91800,
0x21cbc40e, 0xfa4c1e28, 0x0e96411f, 0x97412820, 0x4aff8205, 0x2f431588, 0x0967420c, 0x7c169f45, 0x152009ef, 0x422c2550, 0x1e201463, 0x0a229a82,
0xfd531e28, 0x22ca8f19, 0x820a2828, 0xa11e2012, 0x095f42c8, 0x20179741, 0x074b4723, 0xc74d3520, 0x20cb9430, 0x6d1c190a, 0x17ec4808, 0x2682cc8e,
0x280a1422, 0x28203682, 0x4115cb54, 0x774a1697, 0x06ff5012, 0x82153321, 0x28934501, 0x20168f45, 0x0571456e, 0x8e180148, 0x3c3c25c4, 0x460a145a,
0x8c14e04c, 0x098f41bf, 0x534f0320, 0x61541815, 0x20c3bf0b, 0x23c3825a, 0x2814143c, 0x5a08b951, 0xc58e1049, 0x5a144625, 0x450a280a, 0xc7a22387,
0x5705e75f, 0x53422f1f, 0x14642713, 0x141e0a14, 0x98552814, 0x27c68e18, 0x0a641450, 0x500a3c0a, 0x49218e41, 0xdb540a87, 0x54cf9356, 0xd48e25db,
0x190a1421, 0x5008941b, 0x6742151b, 0x09bf440c, 0x18127f59, 0x490c9fed, 0xc9942889, 0x222c5e42, 0x540a460a, 0xbb8e16e3, 0x49071354, 0x6918117b,
0xe5430b07, 0x050d5442, 0x76493c20, 0x10da5408, 0x0a0a1e23, 0x07a94864, 0x0a0a6427, 0x32323c0a, 0x42c5823c, 0x7f412059, 0x5437201c, 0xe14308d3,
0x826e203f, 0x4a32209b, 0xff621634, 0x0c314a05, 0xbba43c20, 0x2009db43, 0x12cd5f0b, 0x423cc354, 0xc3541443, 0x10094320, 0x0a320a26, 0x3232320a,
0x89220743, 0x18f74acb, 0x48051b5e, 0x0a204493, 0x8e1ec354, 0x0a2826c8, 0x280a5a1e, 0x23f74628, 0x4d18c79e, 0xc7c409e3, 0x6006eb64, 0xc78e1880,
0xbe471e20, 0x0a6f4528, 0x4614db43, 0xfc6a0533, 0x401b4305, 0x140a1e23, 0x0aa65014, 0x231ffc46, 0x46280a3c, 0x5a202f82, 0x592adb43, 0x13191283,
0x654516fd, 0x0653493d, 0x431e2821, 0xa61928ea, 0x0a2008e5, 0x4a215449, 0x59421ceb, 0x33152109, 0x08c39118, 0x09356918, 0x181ab963, 0x4e09ab51,
0x28250c1b, 0x140a0a0a, 0x29eb4a1e, 0x1420c083, 0x89249348, 0x12f346c7, 0x07734318, 0x442d0153, 0x322114af, 0x1b645d0a, 0x240e1b43, 0x3c3c0a0a,
0x2b53423c, 0x54166f4c, 0xc194378f, 0x8e208f54, 0x240e82c4, 0x32320a0a, 0x5bc7a332, 0x8f541acf, 0x20cb933f, 0x228f5478, 0x210ec447, 0x0082141e,
0x28323223, 0x54cfa428, 0x1b23078f, 0x1a002f00, 0x190d7d9a, 0x4d085354, 0x696e0741, 0x05f37a05, 0x4840bd44, 0x06860675, 0x2027874c, 0x822f850a,
0x58142005, 0xe85205c1, 0x0b6c4912, 0x5b093f56, 0x37211219, 0x2b4d1823, 0x086f5508, 0x20413f43, 0x9fe91878, 0x18525e0a, 0x200eb241, 0x82cd8328,
0x32322237, 0x15435632, 0xb341d38d, 0x12d34b07, 0x07314d18, 0xd1833520, 0xdf853320, 0x5444d744, 0x57432493, 0x0565560e, 0xcc480585, 0x00012421,
0x6f3c0000, 0x002006c7, 0x5027c783, 0x0a3c5050, 0x82010000, 0x8e322017, 0x14322117, 0x7607eb76, 0x2326073f, 0x0a323335, 0xcf761e0a, 0x21178b08,
0x17831414, 0x14000322, 0x46205f82, 0x180a2770, 0x220a8796, 0x6b0a0a46, 0xe78405ca, 0x00227582, 0x2f820300, 0x70193220, 0x93840a87, 0x08758318,
0x32212f87, 0x379f1814, 0xff282609, 0x003200ec, 0x08e7706e, 0x426c5f82, 0x209b8207, 0x2500820a, 0x1e821e50, 0x5b831e14, 0x2b9a1e20, 0x14205284,
0x04222b87, 0x17410a00, 0x416e1808, 0xff831808, 0x82172009, 0x0a502265, 0x22b7820a, 0x820a0a14, 0x22c08502, 0x83000a0a, 0x07374137, 0xc88537a2,
0x82141421, 0x20c78537, 0x57701978, 0x70f98408, 0x32200b6a, 0x2405fb50, 0x14640a0a, 0x21ff888c, 0xd3850004, 0x2c84379b, 0x378b0482, 0x2800012b,
0x5000e2ff, 0x05004600, 0x057d4b00, 0x1e503327, 0x5a3c280a, 0x07e34164, 0x32211b90, 0x201b8450, 0x2137911e, 0x37863214, 0x37861b94, 0x37820020,
0x6f853220, 0x3523172c, 0x32333523, 0x1e32280a, 0x6f830a5a, 0x50211b95, 0x211b9514, 0x37991e14, 0x37851b83, 0x3c002822, 0x7820df82, 0x352adf85,
0x50331533, 0x3c1e0a28, 0xdf84323c, 0x91320021, 0x4632211b, 0x1e201b84, 0x32213790, 0x20378714, 0x8237901e, 0x2037861b, 0x18378200, 0x820a3344,
0x283224df, 0x840a3c0a, 0x82002053, 0x211b9037, 0x1b861432, 0x44183c20, 0x37830b6b, 0x99141e21, 0x141e2137, 0xbf413786, 0x00782105, 0x09433b19,
0x1e503323, 0x21e2820a, 0x5784965a, 0x32211f97, 0x411f8550, 0x782005ab, 0x08af8b18, 0x33352323, 0x82418415, 0x5a5a21ed, 0x8f052741, 0x85332023,
0x84142023, 0x32642166, 0x0abb4418, 0x1420878e, 0x67a04483, 0x50503222, 0x24067341, 0x5000e2ff, 0x8a8b8900, 0x50322167, 0xcf87679e, 0x84054342,
0xa38d1887, 0x280a2508, 0x5a1e0a28, 0x82068341, 0x82322063, 0xc38d1863, 0x201f840b, 0x06874150, 0x1e211f94, 0x213f9b14, 0x5f9d1e14, 0x9d1e1421,
0x280a213f, 0x7f9a1f82, 0x1f9c5f84, 0x50213f8d, 0xfbb61a00, 0x1e50260c, 0x3c50280a, 0x0963435a, 0x67431f95, 0x211f9309, 0x3f9d5032, 0x9a503221,
0x1e14213f, 0x1f847f9d, 0x7f9c3f9d, 0x7f883f82, 0x2006b743, 0x31ae1907, 0x50502609, 0x3c1e0a28, 0x05a7420a, 0xbb430020, 0x9f8e1806, 0x15332509,
0x321e5033, 0x14202284, 0x8d572392, 0x21238205, 0x23822828, 0x8e0a3221, 0x20678f47, 0x44438832, 0x1f8c0577, 0xa0141e21, 0x9c228487, 0x1e322187,
0x879d2382, 0x43872083, 0x18065343, 0x220e939e, 0x830a1e50, 0x5a3c22ce, 0x9ecf875a, 0xa4502027, 0x5032214f, 0x32214fa5, 0x824fa250, 0x249fa2c5,
0x0a281e14, 0xa527a41e, 0x280a214f, 0x9f8f2784, 0x0c7fb218, 0x2205ff44, 0x821e0a0a, 0x42ca822a, 0x43410813, 0x8fa38617, 0x10934153, 0x43412784,
0x41788524, 0x4f861f93, 0xf39477a2, 0x77849f92, 0x2020e341, 0x06184114, 0x02209f84, 0x490c4349, 0x502608c9, 0x1e281e1e, 0xd37a3c1e, 0x49238305,
0x238e092f, 0x1414322c, 0x00000014, 0xff280002, 0x4f1800f6, 0xe14909b3, 0x82322006, 0x460a2441, 0x82328232, 0x20238222, 0x8223941e, 0x89142041,
0x05034423, 0x03005022, 0x22053547, 0x82153335, 0x8350204b, 0x1a462000, 0x2008df5b, 0x7742181e, 0x05294608, 0x82073321, 0x05e84923, 0x96961e23,
0x496c8296, 0x5020073b, 0x82083b47, 0x33152447, 0x820a1e50, 0x503224d7, 0x180a0a6e, 0x440bd34b, 0x2320076f, 0x08a72d19, 0x5a3c3226, 0x00645a5a,
0xe222b384, 0x01825000, 0x5d180520, 0x27850a45, 0x320a282b, 0x461e0a14, 0x501e6e64, 0x1872825a, 0x84085b4c, 0x06df4673, 0x25054349, 0x1e322828,
0x73850a50, 0xbb840020, 0x171b4620, 0x152207bf, 0xbb853523, 0x3c1e0a23, 0x2173821e, 0x7382000a, 0x50212385, 0x85738400, 0x84e18249, 0x3c322127,
0x28227382, 0xa518641e, 0x2820088b, 0x210b3345, 0xad513335, 0x28502805, 0x1e1e1e0a, 0x85284632, 0x072f4973, 0xb16de784, 0x33152305, 0x6f693250,
0x32322205, 0x49738332, 0x0b200937, 0x089d8518, 0x2b056f48, 0x1e280a32, 0x4632140a, 0x28320a3c, 0x7382e786, 0x0b483220, 0x05514d07, 0x32333527,
0x28282832, 0x8254830a, 0x05b34c25, 0x238a3c20, 0x35249982, 0x1e3c3c33, 0x48827482, 0x00207385, 0x23834782, 0xa14de784, 0x20e78205, 0x22278333,
0x82140a32, 0x0a322275, 0x417d823c, 0x78200acf, 0x410a8541, 0xea8407d1, 0x84965021, 0x000222eb, 0x06e7431e, 0x298b0720, 0x50225583, 0x53820a14,
0x3c0a0a27, 0x6432965a, 0x20538296, 0x202b8803, 0xc5b51803, 0x18332008, 0x820b7d7b, 0x14282151, 0x0a265d82, 0x46961e14, 0xfe835a50, 0x8348d782,
0x180b2006, 0x21086796, 0xb1823523, 0xfe83a682, 0x82501e21, 0x21ff82df, 0xc3410002, 0x00782105, 0xc3418784, 0x05e35b05, 0x51842820, 0x1e0a0a22,
0x96205082, 0x2b878785, 0xef41878a, 0x05df4605, 0xb8823c20, 0x281e0a28, 0x1e0a1e28, 0x60859696, 0x50205f85, 0x08179c18, 0x83064d70, 0x1e50282f,
0x5050280a, 0x42503250, 0xf9180571, 0x76190be3, 0x50210ea7, 0x23ac8214, 0x5a3c501e, 0x20057742, 0x83b38403, 0x00052453, 0x870f000b, 0x091141df,
0x2826b982, 0x1e0a1428, 0xe6835050, 0x0a5a5024, 0x8782000a, 0xa74b0020, 0x18e78405, 0x220ad17c, 0x82505033, 0x5050232f, 0xb8830a46, 0x00820020,
0x03820120, 0x19057747, 0x820e3f76, 0x2388824f, 0x320a3c14, 0x00220082, 0x27820300, 0x05205385, 0x85059741, 0xe75e1855, 0x20508309, 0x20348328,
0x245c8214, 0x320a0a46, 0x06334328, 0x78005024, 0x56180700, 0x1f480bf5, 0x0a1e2108, 0x8f823082, 0x21051541, 0x62822828, 0xa341338f, 0x23152509,
0x33153335, 0x35822d82, 0x0a0a142b, 0x0a5a1e14, 0x965a3c32, 0x20348232, 0x06234104, 0x05007828, 0x11000b00, 0x25411700, 0x8227200d, 0x05e54139,
0x28223f84, 0xb7411428, 0x1e282105, 0x50284582, 0x5a500a0a, 0x32280a0a, 0x0420af82, 0x7f08db4d, 0x6d4105cb, 0x013b2105, 0x1e193f82, 0x32200705,
0x2308576a, 0x3c1e0a0a, 0x874d8783, 0x6b31850c, 0x1520060d, 0x1521af82, 0x20318333, 0x85288214, 0x0a0a252e, 0x04000014, 0xbb4cb382, 0x87678805,
0x20678a5f, 0x08ea5a1e, 0x823c1421, 0x0a1e2436, 0x4d000100, 0x6782079b, 0x678c2982, 0x08136118, 0x3a832c83, 0x22096342, 0x181f0078, 0x510993a2,
0x82180765, 0x136608e7, 0x95a21805, 0x82e18409, 0x06e05d04, 0xf2852820, 0x51180a20, 0x502108a7, 0x6d4f8400, 0xb16d08a9, 0x0f4e1808, 0x88f78408,
0x204f878f, 0x06c1581e, 0x07863220, 0x33209f8b, 0x5209f96d, 0xe7520ae5, 0x08df5605, 0x8f18b185, 0xb3840a25, 0x7d0dce7b, 0x6d850876, 0x7285bc86,
0x77840c86, 0x82320021, 0x46502001, 0x618206cd, 0x32333526, 0x141e1e14, 0x1f83eb83, 0x03451e20, 0x0a8b4a06, 0x821e3c21, 0x1432215b, 0x4505ef4a,
0x3f860597, 0x27059942, 0x14141e50, 0x1e0a3c1e, 0x2008c346, 0x0d534c3c, 0x3e823c20, 0x734b1e20, 0x05214609, 0x7f895f85, 0x291a2820, 0x3c200af3,
0x098b5718, 0x15333524, 0x1b833c33, 0x28217f89, 0x05674400, 0x8408f77a, 0x0a32227f, 0x73491828, 0x0cd34c0a, 0x5a823c20, 0x7f892820, 0x21053b48,
0x3f820005, 0x7f823520, 0x28285023, 0x1afc8250, 0x8208d32a, 0x201b827b, 0x24998617, 0x5a1e0a0a, 0x0bdb523c, 0x8209fb50, 0x91598237, 0x82398237,
0x8814204f, 0x1baf8337, 0x24081f08, 0x28505050, 0x08ff4150, 0x00f6ff26, 0x17000003, 0x20055148, 0x08bb501e, 0x0a005022, 0x7f42178b, 0x831e200a,
0x33352617, 0x50502315, 0x1896821e, 0x20082fff, 0x892f8b32, 0x3c00215f, 0x5a20178b, 0x00217788, 0x20178b50, 0x2017896e, 0x20178b64, 0x84178982,
0x20a787bf, 0xbf5c1b96, 0x22178809, 0x53464646, 0x3b4605d3, 0x22d78409, 0x893c3c3c, 0x0beb5317, 0x89323221, 0x00282117, 0x28224788, 0x17892828,
0x17891e20, 0x00821e20, 0x14207788, 0x14201789, 0x47053354, 0x0a200507, 0x0a201789, 0x50076354, 0x674107d3, 0x205f8507, 0xabcf181e, 0x07874408,
0x09894e18, 0x09055018, 0x190d677d, 0x2b07db75, 0x006b0067, 0x0073006f, 0x35000077, 0x2005357d, 0x9d83182b, 0x18372007, 0x220a5d45, 0x84153315,
0x82352017, 0x1a038713, 0x21092f5f, 0x0b8b2315, 0x53181f83, 0x2720134b, 0x0ad3211b, 0x53841f86, 0x46540a20, 0x713b1a06, 0x8948180c, 0x06174408,
0x82081e44, 0x8e288808, 0x820e820b, 0x0a782202, 0x05c76978, 0x2106f844, 0x01830a1e, 0x07485718, 0x26820d85, 0x038d0a20, 0x00210d82, 0x087f460e,
0x3f001f3a, 0x7f005f00, 0xaf009b00, 0xcf00c300, 0xdf00db00, 0xe700e300, 0xef00eb00, 0x0a4d5118, 0x0c235a18, 0x12dc9418, 0xb97b1fb6, 0x7f41830a,
0x531808b7, 0x1d9110af, 0x217b3320, 0x85072013, 0x15332187, 0x27874989, 0x1f841184, 0x35200984, 0x5b181783, 0xed4a08bf, 0x69421a05, 0x9944180d,
0x180fc80f, 0x250b295a, 0x0a320a0a, 0x52183c0a, 0x6e2008e4, 0x2a86648e, 0x64181588, 0x2e8e0f47, 0x128a4c83, 0x1809cf46, 0x8509b7bd, 0x84782009,
0x0a782425, 0x848c0a82, 0x15002109, 0x43080f42, 0x17202a45, 0x68058762, 0x4c180501, 0x0b890b69, 0x08ef8c18, 0x23353724, 0x03861715, 0x0bba2720,
0x50204783, 0x0a528618, 0x0a20be84, 0x32201082, 0xf1420982, 0x20059b05, 0x188c180a, 0x22378211, 0x430a0a8c, 0xea470874, 0x0a0a2106, 0x358208a3,
0x01000022, 0x08bbaa18, 0x09fbaa18, 0x83146421, 0x4c462017, 0xc3440643, 0x07db4407, 0x17820020, 0x45002821, 0x282408fb, 0x501e2828, 0x88098b57,
0x87502017, 0x82002017, 0x066b452b, 0x35233723, 0x212f8233, 0xe3454632, 0x06f7460b, 0x50331522, 0x96203283, 0x03551b8c, 0x05dd5208, 0x46206982,
0x17471f8c, 0x5032210c, 0x2008ab45, 0x084f4750, 0x21066b47, 0x3784501e, 0x47050548, 0x28210917, 0x208b8328, 0x083f4202, 0x85000321, 0x013b2171,
0xdc84a985, 0xaf923982, 0xaf853520, 0x14245785, 0x9600f6ff, 0x28090746, 0x0a828296, 0x05000082, 0x59178900, 0x13230563, 0x82170000, 0x35072359,
0x53421523, 0x83078307, 0x856e202f, 0x820a2800, 0x3c141478, 0x841e1414, 0x20439e05, 0x42478233, 0x152006c6, 0x28274382, 0x28143214, 0x82140a14,
0x234c8543, 0x11006e6e, 0xae188392, 0x59180f17, 0x9b870871, 0x17205383, 0x27205b82, 0x0e794e18, 0x4e181787, 0x7f83078d, 0x0f83cb8b, 0x0a208782,
0x14208582, 0x32208782, 0x50200382, 0x50200b82, 0x50269784, 0x50144614, 0x0b821414, 0x5a820a22, 0xe2830782, 0x0582e585, 0xf3840282, 0x01410a87,
0x22158405, 0x8a080000, 0x002d2cc3, 0x006d004f, 0x00950083, 0x41a5009f, 0x7945064d, 0x544f180f, 0x5745180b, 0x07dd4a09, 0x3f4b2d88, 0x180d830d,
0x96089b45, 0x07034c23, 0x338b398b, 0x37211787, 0x83098523, 0x8215201b, 0x82962277, 0x08a24382, 0x870ae244, 0x8e1b8a13, 0x46142026, 0x4d1807fc,
0x0a200b61, 0x2106807c, 0x1d820a5a, 0x1d458220, 0x433b8a09, 0x6d8608fe, 0x090c4a18, 0x5c451085, 0x18142009, 0x200834cd, 0x261a826e, 0x0a145014,
0x411d0000, 0x42180a6f, 0x317a09b9, 0x59280805, 0x61005d00, 0x69006500, 0x71006d00, 0x79007500, 0x81007d00, 0x89008500, 0x91008d00, 0x99009500,
0xa1009d00, 0x0000a500, 0x21059548, 0x0b193335, 0x57450841, 0x15232109, 0x8407b442, 0x07bf4607, 0x352a0785, 0x35232733, 0x3523013b, 0xcb481733,
0x012b2105, 0x23200785, 0xb0181786, 0x2384079d, 0x0aadb018, 0x0b87178b, 0x15207d82, 0x078f3f87, 0x82332321, 0x82142363, 0xd3752882, 0xb7101907,
0x0f974108, 0x1808e348, 0x910e7165, 0x0fd2460e, 0x46240f8c, 0x82780a0a, 0x6689648a, 0x08b05718, 0x1e833220, 0x4105bc41, 0xd64108a2, 0x0f002108,
0x3a0a9741, 0x002b001b, 0x0043003b, 0x0053004b, 0x0063005b, 0x0073006b, 0x007b0077, 0x4383007f, 0xab420d15, 0x2335230d, 0x60183327, 0x1b83098c,
0x0f8e0720, 0x3d433720, 0x8635200a, 0x1807830b, 0x18071190, 0x8608228d, 0x86172037, 0x05f34207, 0x07233523, 0x23218533, 0x28828296, 0x09579819,
0x1e140a22, 0xe782c782, 0x180a1421, 0x22080d87, 0x84140a3c, 0x200582f8, 0x0586420a, 0x2683fd83, 0x32202284, 0x5a201783, 0x0a221283, 0x57185082,
0x0a210834, 0x8317830a, 0x82282024, 0x2107831f, 0x66850a32, 0x2d820f83, 0x82501421, 0x06524a0f, 0x825a0a21, 0x82642062, 0x00002914, 0x00140001,
0x003c0000, 0x087fb918, 0x82281421, 0x00002200, 0x21178a02, 0x54180007, 0x1d8208e7, 0x03821e20, 0x35823e82, 0x0a000122, 0x96220582, 0x58184600,
0x0a22074b, 0x57198c8c, 0x178509ff, 0x1d823b8a, 0x46788226, 0x32320a46, 0x5a183582, 0x0b200977, 0x08bd5518, 0x6c182b20, 0x27210ddb, 0xef4a1833,
0x07232108, 0x35210a85, 0x24078227, 0x35231537, 0x23078217, 0x1e1e0a46, 0x0a20f682, 0x1e200086, 0x20053071, 0x05d3430a, 0xf1820c84, 0x1e221c84,
0x2884281e, 0x6e20778a, 0x089b7118, 0x2f002b22, 0x440a134b, 0xd14406e1, 0x07254506, 0x086f4a18, 0x0aab6f18, 0x0cfa8f18, 0xd8495e84, 0x20058205,
0x0564683c, 0x68191420, 0x142608c2, 0x1428141e, 0x7f821446, 0x09bf5b18, 0x4c180b20, 0x6d180849, 0x35250fd1, 0x15333523, 0x20e58217, 0x20078233,
0x89078227, 0x822820e9, 0x872820f2, 0x0a0a21e2, 0x01450d82, 0x235a8206, 0x0a000800, 0x50200682, 0x1908ab61, 0x790b3f81, 0x35210510, 0x83078217,
0x05d1465e, 0x61866582, 0x0a456218, 0x51823c20, 0x830a1e21, 0x320a2305, 0x774c0a0a, 0x067e4305, 0x12d7461a, 0x180a8266, 0x240f6c7a, 0x33152327,
0x0513413c, 0x4306a049, 0x1e2006b2, 0x0683b685, 0x82323221, 0x88072053, 0x051341b7, 0x28191f20, 0x2269097b, 0x84232009, 0x23b18269, 0x013d2315,
0x1806394c, 0x42088f5b, 0x28201011, 0x6f847784, 0xc3821420, 0x083c9e18, 0x1b847984, 0x0a20e584, 0x18066b50, 0x20091bb6, 0x3d711800, 0x20638408,
0x83768415, 0x20348447, 0x097a411e, 0x02203282, 0x1720b788, 0x071b5418, 0x20089a75, 0x08dc4c15, 0x91181520, 0x0a200733, 0x850c0541, 0x831e204f,
0x184a8281, 0x2308ef53, 0x000f0046, 0x7f184d85, 0x3d210d06, 0x83ff8601, 0x8528204d, 0x20428449, 0x8641840a, 0x1e1e250a, 0x000a0a28, 0x4982978f,
0x0dde7018, 0x1524a584, 0x1533013d, 0x86055942, 0x05604599, 0x09ab4e18, 0x54180020, 0x978a0ab3, 0x43353321, 0x33200598, 0x1d219183, 0x06994301,
0x0e823720, 0x82055341, 0x1e1e2190, 0x74414582, 0x05294308, 0x42000a21, 0x664318fb, 0x35232105, 0x180be543, 0x8507b368, 0x0a3224eb, 0x6e141e1e,
0xc2410513, 0x84142006, 0x820c8255, 0x0c9742b5, 0x19001522, 0x1808cf43, 0x200da787, 0x35651823, 0x209e8209, 0x2150820a, 0xfa86460a, 0xac841e20,
0x0f454782, 0x58462007, 0xeb530521, 0x23352107, 0x14223183, 0x27830a14, 0xdb524620, 0x212d8205, 0x2784003c, 0x22080f41, 0x82152315, 0x05b45423,
0x08ef291b, 0x46232782, 0x1a005a00, 0x82095f43, 0x07e04754, 0x3c3c0a22, 0x22050d50, 0x451e5a5a, 0x574505cb, 0x00502408, 0x840f0046, 0xfbb518c9,
0x84b2830c, 0x184620fa, 0x1b08684f, 0x55099f38, 0x64820d8f, 0x32233522, 0x2b832683, 0x0a208f82, 0x002a3c83, 0x08000200, 0x2d001f00, 0xe3824400,
0x61821720, 0x16322708, 0x23061415, 0x34352622, 0x06221736, 0x33161415, 0x34353632, 0x0b071b26, 0x0b08070b, 0x0706080b, 0x07050607, 0x0d854407,
0x060b0724, 0x12850507, 0x0b28ab82, 0xf6ff1e00, 0x64008c00, 0x0a8b5318, 0x700b6d4e, 0x17200c19, 0x820a3b66, 0x220d820b, 0x42273315, 0xb548058c,
0x5633200b, 0x6e21077d, 0x29b4820a, 0x141e0a1e, 0x14145a14, 0xa3180a28, 0x0a200859, 0xad421783, 0x05054105, 0x0a212684, 0x20ea8214, 0x2104833c,
0x09823c0a, 0x0a641422, 0x14200782, 0x2106a743, 0x4f410014, 0x43ef8305, 0x35220b0f, 0xce421533, 0x46232306, 0xa418140a, 0x1e21071e, 0x782b1a1e,
0x820a2009, 0x43002041, 0x50220853, 0xc5561b00, 0x18352005, 0x180b2b7e, 0x2609c65e, 0x07331533, 0x48231533, 0x124308a5, 0x18578205, 0x8408f365,
0x182820a0, 0x22092778, 0x185a0046, 0x46080fc2, 0x56180709, 0x58830897, 0x0d822320, 0x6e823720, 0x08821720, 0x18283c21, 0x1809039e, 0x8308f768,
0x0a1e2863, 0x281e1e0a, 0x821e1414, 0x00092458, 0x820a0000, 0x005a22ef, 0x99441907, 0x001f2508, 0x00270023, 0x18066147, 0x210ac85a, 0x55823715,
0x3b215982, 0x4a078201, 0x33200649, 0x22063d4a, 0x411e2833, 0x54180558, 0x8341084a, 0x20c18405, 0x206a820a, 0x2275840a, 0x82320a3c, 0x207f8281,
0x066b410a, 0x0c2f6c18, 0x073d5a18, 0x82056541, 0x50332159, 0x1e203f82, 0x1e203d82, 0x28203682, 0x2006fd48, 0x07034528, 0xef193b89, 0xae41085f,
0x99ad1805, 0x82418c07, 0x0a0a217f, 0x4a844387, 0x0021fa82, 0x06bb4804, 0x45194620, 0xad6a0c97, 0x33152408, 0x4b273335, 0x23200943, 0x4a07a346,
0xf1460c94, 0x03641806, 0x00002208, 0x20018246, 0xc3f91809, 0x1533230a, 0x79181523, 0x7018075f, 0x57820885, 0x1e322323, 0x0528590a, 0x08019a18,
0x463c3c22, 0x2009a848, 0x20538a14, 0x20538250, 0xd1cb180b, 0x81ae180d, 0x22538208, 0x83320a50, 0x48142037, 0x0c8306cc, 0x8d323221, 0xa3a6183f,
0x82332008, 0x2335212f, 0x10fdc418, 0x83073321, 0x18038214, 0x200cf7c4, 0x20588232, 0x20008228, 0x0552451e, 0x1f191420, 0x53880d73, 0x82083b7d,
0x21ed825b, 0x07863533, 0x53872720, 0x0a214682, 0x059a510a, 0x9f820a82, 0x50820a20, 0x59851e20, 0x02215485, 0x20008300, 0x575c183c, 0x06354308,
0x7c05cc46, 0x3c2009c5, 0x1e298183, 0x0a140a0a, 0x460a1e14, 0x82538214, 0x14142402, 0x821e1e50, 0x0004263e, 0x00f6ff00, 0x20438250, 0x7766180d,
0x20478308, 0x07c15b23, 0x56180720, 0x35210a25, 0x07854f33, 0x4d825020, 0x79439d83, 0x05cd4c05, 0x62823c20, 0x315b9882, 0x790a2005, 0x2f47050a,
0x0023230c, 0x6c183700, 0xee820887, 0x0584a282, 0x15331523, 0xf7791907, 0x1e3c210a, 0x4620ac82, 0xf6824c82, 0x8405af4c, 0x861583fc, 0x17d718c9,
0x24c18209, 0x00460050, 0x097f4321, 0x8a185182, 0xb1180984, 0x332008bd, 0x05820984, 0x23217f82, 0x44858315, 0x142005e2, 0x6f856383, 0x22132a54,
0x82141e1e, 0x82028281, 0x216a82c7, 0x01825000, 0xc2180320, 0x4b820857, 0x50505026, 0x46503c0a, 0x0dc7f518, 0x03005026, 0x15000f00, 0x08db0c19,
0xdd853320, 0x21058947, 0x36822327, 0x83088545, 0x8382823f, 0x140a21d0, 0x0882f682, 0x32465022, 0x82058248, 0x28142110, 0x8b05d74a, 0x05bf577b,
0x51330021, 0x215c07d3, 0x8207200a, 0x33372313, 0x95842315, 0x180a3221, 0x830abf77, 0xfe7c18a2, 0x184e8209, 0x2009bb92, 0x534e1833, 0x97691807,
0x0c795c0e, 0x192c975b, 0x180e298c, 0x290c177b, 0xff0a000c, 0x005000f6, 0x91180078, 0x4e1807b3, 0x49200d07, 0x08b1ca19, 0x18089356, 0x220a296a,
0x18331533, 0x1907c741, 0x4b077338, 0xd9180771, 0x734508b3, 0x83332005, 0x0b294617, 0x4108d24e, 0x94820516, 0x3b461182, 0x830a2005, 0x430a2012,
0x05830517, 0x08bcfa19, 0x0a640a22, 0x09db6618, 0x25841e20, 0x00820020, 0x1e000822, 0x8c200582, 0x1926c382, 0x29002100, 0x7d7f3100, 0x06df4208,
0x0ec6d018, 0xb6821520, 0x8b471520, 0xf3671806, 0x830f8208, 0x47232016, 0x072007ab, 0x2907bf47, 0x82352315, 0x3c1e1414, 0x7b82280a, 0x48145021,
0xbd840593, 0xa94f1e20, 0x1aad8409, 0x50080ff9, 0x32200614, 0x4918d485, 0x3c200c16, 0x2206776d, 0x44500000, 0x63470627, 0x0e305805, 0x15257c82,
0x15233517, 0x06d75935, 0x44844620, 0x7c820a20, 0x55833220, 0x7b496e82, 0x32142205, 0x22088332, 0x4b1e143c, 0x5a200aa3, 0x20056545, 0x42448233,
0xcb180627, 0x48870933, 0x17710a20, 0x4a142006, 0x00290552, 0x00140003, 0x008c0000, 0xa162186e, 0x1c401b09, 0x1889820d, 0x5108b773, 0x152007d1,
0x082aa718, 0x83231521, 0x180f82c0, 0x8208b39c, 0x656518e8, 0xeba71808, 0x06104108, 0xec432820, 0x4c6f1805, 0x42178609, 0x1e20080a, 0xfb45e882,
0x00052a05, 0x000a001e, 0x00500082, 0x08a14211, 0x0933a918, 0x2008354f, 0x093c4d37, 0x2308fb5a, 0x23153337, 0x14236885, 0x42320a0a, 0x6e820b7b,
0x18141e21, 0x2009c060, 0x2077820a, 0x2003823c, 0x20008200, 0x256d8202, 0x0096000a, 0x5b4b005a, 0x76641805, 0x0aa14109, 0x23351728, 0x0a146415,
0x54822828, 0x0a3c2822, 0x52820183, 0xcf824620, 0x28226982, 0x47823232, 0x47880420, 0x0ab96a18, 0x2005475f, 0xd3031935, 0x82372008, 0x20038347,
0x28a68296, 0x3c282850, 0x143c0a78, 0x834e821e, 0x3c0a23fe, 0x16823232, 0x00215782, 0x204b8803, 0x0e57451b, 0x0c16ff18, 0x20058c41, 0x094b4d27,
0xa7833520, 0xa6827820, 0x0a462823, 0x204b820a, 0x269d8232, 0x14143232, 0x820a3214, 0x66b21802, 0x07744308, 0xba842382, 0x57060021, 0x6e24060b,
0x13000700, 0x09f9f018, 0x59193720, 0x6c410896, 0x84272009, 0x42d08381, 0x352807ad, 0x35231723, 0x0a464633, 0x2105a742, 0x0182140a, 0x830a0a21,
0x2581827a, 0x2846280a, 0x1982280a, 0x28283227, 0x280a1414, 0x24988232, 0x1e0a1446, 0x20738214, 0x22e5820a, 0x8e5a0096, 0x06854773, 0x0b077e18,
0x5e180720, 0x09820811, 0x95831520, 0x013d2322, 0x50202782, 0x3c225b83, 0x5f822832, 0xe3823c20, 0x5d82f482, 0x8a826582, 0x20054841, 0x0c33430a,
0x083fb318, 0x00e2ff26, 0x006e0050, 0x200b5b41, 0x08e54c15, 0x820c2a5c, 0x085d416f, 0x23352723, 0x20e48415, 0x05dd4214, 0xe7844620, 0x32210b82,
0x21e2821e, 0xe482140a, 0x46207582, 0x32218d82, 0x21008214, 0x6f856e32, 0x20056f45, 0x246f82a0, 0x002f002b, 0x515b1835, 0x0057240e, 0x1800005b,
0x610968ce, 0xa6180c86, 0x15200936, 0x82056c43, 0x42152005, 0x35230641, 0x41071533, 0x2321069d, 0x07b14815, 0x080dd41b, 0xad824683, 0x07823720,
0xa5822820, 0x03821420, 0x19460a21, 0x2908616c, 0x3c0a320a, 0x140a5a32, 0x14841478, 0x3c0a1e24, 0x674f780a, 0x45c68209, 0xc14608a9, 0x0a142405,
0x831e1e28, 0x84338216, 0x82048244, 0x0a5a214d, 0x3c203482, 0x7d180483, 0x5a2008b3, 0x0d7bb318, 0x86055e48, 0x152325c6, 0x46331523, 0x20052342,
0x83068628, 0x83038397, 0x05674770, 0x22074b77, 0x7631001d, 0x7018067b, 0xfb420929, 0x09e6440b, 0x33206488, 0x21089550, 0xb8443507, 0x84728306,
0xe7c61815, 0x82642007, 0x064857ba, 0x78820a20, 0x450a1e21, 0x90820614, 0x21056c4f, 0x21825a0a, 0x3c0a0a23, 0x0539421e, 0x2c840a20, 0x1e200c82,
0x0c821683, 0x28461422, 0x20078a45, 0x05af441e, 0x85000a21, 0x006e36b3, 0x00480027, 0x00580054, 0x0060005c, 0x00680064, 0x0070006c, 0x06715c00,
0x0c8b2619, 0x820e435e, 0x231521ac, 0x4d05ef42, 0x8544086a, 0x0ba45308, 0xeb843320, 0x08c62519, 0x18231521, 0x200b7882, 0x05206037, 0x4b782321,
0xf14b0750, 0x4c1e2009, 0x118906e9, 0x49640a21, 0x198205c8, 0x1e1e3228, 0x6e0a0a32, 0x32430a0a, 0x08fe4105, 0x140a1422, 0x05831282, 0xdd461420,
0x42108206, 0x67180519, 0x0a210825, 0x20388232, 0x20238228, 0x321b8264, 0x06000a5a, 0xecff0a00, 0x6e009600, 0x5b005300, 0x1a005f00, 0x1807b736,
0x8208caba, 0x200b82a3, 0x58d11823, 0x860b880b, 0x331521fb, 0x0c3d7718, 0x18064a58, 0x4109e2a1, 0x3d2206d3, 0x13832301, 0x69183520, 0x1d240a27,
0x33352301, 0x8647d884, 0x65b4860a, 0x257806e6, 0x82b18206, 0x140a2122, 0x08c86518, 0x8b101d4d, 0x0b4d4941, 0x08057e18, 0x2005bb48, 0x078f5250,
0x08475d19, 0xe9413720, 0x054e4405, 0x200a0f4c, 0x18f78237, 0x200cc2ff, 0x207d8228, 0x84458314, 0x14282103, 0x09ffbc18, 0x1b214b83, 0x335c1800,
0x41d58209, 0x53180624, 0x601808af, 0x0a200809, 0x14245383, 0x1e0a0a32, 0xac82d386, 0xac180020, 0x19210a2b, 0x05e54900, 0x0d23161a, 0x4e08594a,
0x37230b77, 0x18231533, 0x82087594, 0x82282046, 0x0a1e265a, 0x0a0a280a, 0x83b8843c, 0x200a83ac, 0x216e8214, 0xf3430a14, 0x8413200a, 0x6bc219ab,
0x41462010, 0xde83056c, 0x097d8018, 0x09e78018, 0x21564620, 0x09b14906, 0x0a908f18, 0x2007e944, 0x837f843c, 0x82282004, 0x884a8288, 0x820a200f,
0x0300219a, 0x2106a354, 0xdd5c0050, 0x7d002005, 0xb01809bb, 0x26420886, 0x06934a05, 0xcd824620, 0xaa184284, 0x0d8408e1, 0x2e05d649, 0x0a281414,
0x000f0000, 0x00ecff0a, 0x827800a0, 0x50172009, 0x33240657, 0x3f003b00, 0x109b4f18, 0x09b17418, 0x23089944, 0x15331533, 0x0ceb8018, 0x07202382,
0x71180382, 0x17200f5b, 0x94821784, 0x33222f83, 0x1f832315, 0x4d08574b, 0x2b6805ef, 0x06cb480c, 0x6e0a2826, 0x0a0a460a, 0x0861c519, 0x5a201683,
0xc4840f82, 0x490a3221, 0x5a21055e, 0x06b0425a, 0x14464622, 0x0a292c82, 0x460a3c0a, 0x3c3c0a46, 0x22168564, 0x4514640a, 0x4e8208df, 0x03827820,
0xf6820a20, 0x18060021, 0x2208cf7c, 0x435d0059, 0x6f2006b9, 0x5a05d941, 0xf349084d, 0x09904608, 0x08e9bf18, 0xfb42fa83, 0x863d1905, 0x8415870b,
0x40851807, 0x0ac84408, 0x1523352c, 0x15012b33, 0x33153733, 0xf9822735, 0x6d436e20, 0x2874180c, 0x61f7820c, 0xc5830b0b, 0x82058b42, 0x42142032,
0xde410da7, 0x3c142205, 0x053e511e, 0x4e1e0a21, 0x1e2105bb, 0x05506a28, 0x1e221e83, 0x5d85321e, 0x000a6e23, 0x4fae1a01, 0x1a212008, 0x5608d70b,
0xb4440954, 0x08054d06, 0x1e142324, 0xfa680a0a, 0x14142105, 0x14224383, 0x12833c1e, 0x14201482, 0x5d821083, 0xa8180a20, 0x4621091f, 0x05f15700,
0x860ae742, 0x1835205a, 0x210da289, 0xb54c013d, 0x82272005, 0x613c206f, 0x6c820af5, 0x20059f42, 0x05ce480a, 0x64841e20, 0x1e201282, 0x14220f83,
0x30191e0a, 0x462109bb, 0x09ef4300, 0x26161757, 0x35071533, 0x82371523, 0x576783cc, 0x67820b21, 0x4c821e20, 0x8f510a20, 0x09285705, 0x43057341,
0x2b7b066b, 0x0a6d660b, 0x843c0a21, 0x05a84300, 0x89077f44, 0x000f212b, 0x0881aa19, 0x8407df4c, 0x14142431, 0x85141428, 0xdfbe1834, 0x4637940a,
0x378407ea, 0x38843582, 0x20058249, 0x067b5700, 0x1320378b, 0x37207185, 0x0a3d6518, 0x3d82ef83, 0x41893b85, 0x410a0a21, 0x042305af, 0x53000a00,
0x2f6c0507, 0x18e18609, 0x8308b380, 0x21b384e4, 0xef6f0a28, 0x08f35a05, 0x3d8a7b9a, 0x41887585, 0x6b0a0a21, 0xbf99050a, 0x81861720, 0x1520bb83,
0xbf850b82, 0x14224084, 0x3e824614, 0x0a0a2822, 0x5c06c74c, 0x878d0573, 0x05411720, 0x83172015, 0x41448449, 0x1420150c, 0x4f050f44, 0x6e230563,
0x44002b00, 0x432205ff, 0x4f824700, 0x15233522, 0x1809fd59, 0x420a5c82, 0x314b096f, 0x202d840b, 0x062a4e07, 0x79423720, 0x15072806, 0x1e823523,
0x8214140a, 0x823220bb, 0x820a8a04, 0x0a142513, 0x0a1e141e, 0x1b820184, 0x1e201082, 0x0a872686, 0x82141e21, 0x8332201f, 0x05fc5234, 0x2105d04e,
0x00830006, 0x50005028, 0x17000b00, 0x86182300, 0x97890885, 0x77831520, 0x8a08c94c, 0xb9201a17, 0x06894508, 0x280a4622, 0x08adc218, 0x2005eb48,
0x0595443c, 0x168a0a20, 0xd54e1182, 0x5c0a2007, 0x1e210555, 0x2081830a, 0x43878c07, 0x2f2205fb, 0xfd5d3300, 0x2b41180d, 0x0797500b, 0x15208588,
0x2305dd4c, 0x33352335, 0x0a22898e, 0x8182140a, 0x6f840a20, 0x28220b87, 0xae840a14, 0x9b608f83, 0xd3691809, 0x00502209, 0x06575413, 0xa2182720,
0x954e0ddf, 0x55152005, 0x15210543, 0x200e8233, 0x08494c23, 0x67475020, 0x05824709, 0x7e471e20, 0x451e200c, 0xee830aa4, 0x27590c20, 0x411b2010,
0x37210881, 0x33821800, 0x08d15408, 0x20069b4c, 0x06954707, 0x200e2d59, 0x06495933, 0x210c1370, 0x74820a6e, 0x820a1e21, 0x599a82ec, 0x50220e2f,
0xcd181414, 0x28840b29, 0x1e1e0a27, 0x3c14321e, 0x0932590a, 0xb8682820, 0x0a142305, 0xc3180000, 0x751809af, 0xe260095b, 0x57232008, 0x15220992,
0xa3821533, 0xf552a582, 0x15332205, 0xf1b91823, 0x83142007, 0x3214264c, 0x2828140a, 0x820a820a, 0x09af5e09, 0x5344a383, 0x05934207, 0x8d005a21,
0x47352067, 0x67820e0e, 0x7a821284, 0x6d821720, 0x55060146, 0x0a200580, 0x66855f84, 0x155f0b82, 0x0a322208, 0x850e8250, 0x05135d67, 0x18004621,
0x73078fb8, 0x62460913, 0x205f8208, 0x06894d23, 0x35273324, 0x9d491523, 0x48638206, 0x867f050e, 0x06554605, 0x21066943, 0x99191e1e, 0xb95d0c47,
0x185b8d05, 0x8b08a670, 0x82282053, 0x214f8a46, 0x65821e0a, 0x235d4b84, 0x51e3180b, 0x078b4a10, 0xc5183320, 0x50220a1d, 0xfe83320a, 0x82066753,
0x660f8456, 0x14210647, 0x199e8214, 0x2018e78d, 0x05184e33, 0x820aa449, 0x830720ab, 0x0557435b, 0x8408a453, 0x820d84ac, 0x851420a8, 0x0a142508,
0x321e1e1e, 0x0877cc18, 0x50000026, 0x15006400, 0x230de74a, 0x23153315, 0x22053650, 0x82140a50, 0x06ac44f2, 0x5b1e1e21, 0xc37005cc, 0xff0a2205,
0x203b82ec, 0x092d735a, 0x0c15b718, 0x50204184, 0x32253885, 0x0a0a1e14, 0x2178830a, 0x07855032, 0xdb820020, 0x5022e183, 0x19585a00, 0x5a3e8208,
0x8a180adf, 0x4f4a09de, 0x3d152505, 0x3c152301, 0x086b7818, 0x14244d82, 0x320a141e, 0x5b821082, 0x280a1e23, 0x23008214, 0x1e1e2828, 0x7418ad82,
0x6b4c0acf, 0xf1e81905, 0x1b23200d, 0x410c7fd9, 0x142006cc, 0x4d835083, 0xb2821420, 0x83280a21, 0x8a002000, 0x44272047, 0x5a180ae3, 0x2e4208a2,
0x08c54d0c, 0xba483c20, 0x84578505, 0x4ba68256, 0x5e8508de, 0x08f3ae1a, 0x22070341, 0x19000013, 0x4e081a39, 0x15210848, 0x844a8223, 0x140a2241,
0x24328350, 0x4646141e, 0x0cb74214, 0x0cc95319, 0x82083241, 0x03ad1aef, 0x82428408, 0x203f8204, 0x82938528, 0x479018db, 0xbbe7180c, 0x35232610,
0x46501523, 0x06635f0a, 0x46210883, 0x0a574446, 0x79180f20, 0x0c5f08b3, 0x0b721805, 0x065d410d, 0x15333522, 0x08e97919, 0xfd825020, 0x0a0a1e23,
0x8402833c, 0x0a32250a, 0x1e320a28, 0xb65d0a82, 0x831e2005, 0x141e240a, 0x82143214, 0xdbc218dc, 0x005a2607, 0x0021001b, 0x098f7725, 0x430b795a,
0x2e410bed, 0x82502005, 0x05cd4960, 0x2106a143, 0x0182140a, 0x23089a65, 0x321e1428, 0x0020fe84, 0x44070f77, 0x621807b7, 0xce180831, 0xc04408c2,
0x83bd8305, 0x071521c4, 0x5020d182, 0x4a063a43, 0x0c82053f, 0x0b82b882, 0x50464626, 0x0a0a5a50, 0x21052a41, 0xb3431e46, 0x00002106, 0x1805c35d,
0x20092b73, 0x08494c33, 0x33152326, 0x15233523, 0x82050372, 0x24ac8244, 0x32141e14, 0x42be8350, 0x282205c7, 0x8f720a1e, 0x005a2208, 0x45ff821f,
0x23200ebd, 0x0875a019, 0x9f823320, 0x82061343, 0x05916692, 0x06820a20, 0x823c3c21, 0x8414204a, 0x054f749a, 0x18074345, 0x4e0917cc, 0x42410dd1,
0x27332105, 0xd94ee982, 0x23498209, 0x1e0a0a32, 0x079e8718, 0x14210a82, 0x0c37420a, 0x08a9d818, 0x8309c14f, 0x50152009, 0x33210519, 0x20e78207,
0x06554850, 0x843c2821, 0x088e63a0, 0x09840a20, 0x83451e20, 0x41002005, 0x1722062f, 0xaa192f00, 0xe0830e2d, 0x55820387, 0x18055f44, 0x2009bb90,
0x201b8215, 0x834a8250, 0x2006854c, 0x84588414, 0x4546200b, 0x0b8b0a04, 0x0021c282, 0x27718201, 0x00500000, 0x0023005a, 0x8306574f, 0x065545b5,
0x18352321, 0x82086f67, 0x08c74415, 0x544b5a87, 0x0a0a2205, 0x08544c1e, 0x96180885, 0x57830843, 0x21071b67, 0x8d193700, 0xb445089b, 0x185c8605,
0x2107b7c1, 0xd4821715, 0x82324621, 0x831e20ab, 0x0a14215f, 0x14260682, 0x28281e14, 0xd5821428, 0x0284ce82, 0x22821e82, 0x2609774d, 0x000f005a,
0x841f001b, 0x064452bb, 0x2005d344, 0x08224107, 0x2005df6f, 0x17871850, 0x320a240c, 0x841e5a32, 0x05394800, 0x4f516283, 0x0015220a, 0x20538219,
0xf5a81827, 0x20bc830b, 0x83618615, 0x3537215b, 0xcd49bf83, 0x5a5d8307, 0x3222083b, 0xc0490a32, 0x058f4e05, 0x06821420, 0x32201b82, 0x1e20d182,
0xbb8bbe82, 0x65821b20, 0x4805ad5d, 0x794b0a8d, 0x41332005, 0x172006dc, 0x3720c782, 0x085b2f1b, 0x0a213f82, 0x21c9820a, 0x09823228, 0x20088243,
0x2062820a, 0x46c28314, 0x234c05cb, 0x00502405, 0x68130064, 0x7b561197, 0x205f8308, 0x845d8315, 0x058f5ac8, 0x54012b21, 0x975a065e, 0x205a830d,
0x06ea430a, 0x82842820, 0x28460a23, 0x20d3820a, 0x83198228, 0x09176589, 0x4b05a35a, 0x0020050f, 0x18052341, 0x84086891, 0xeb84186d, 0x8507200b,
0xc3a3188c, 0x50d98409, 0xe84509b7, 0x880a2005, 0x425020de, 0x1e2008c8, 0x450d7f43, 0x914c05fb, 0xb4941808, 0x21df8309, 0xaa830a32, 0x0a0a3225,
0x461e1414, 0x28210591, 0x20638228, 0xe3ef1832, 0x5daa1b0e, 0x05ed4708, 0x42094542, 0x33420939, 0x20878207, 0x0cff4300, 0x56187f84, 0x3b85097d,
0x7b461520, 0x071b4206, 0x0a217382, 0x08376832, 0x0c27541b, 0x080bea19, 0xd3484384, 0x060c420b, 0x87460720, 0x09c15406, 0xfd413220, 0x184b860a,
0x5f093be8, 0xc9430a13, 0x09f06606, 0xbd423320, 0x42152006, 0x548308b3, 0x0a143224, 0xd7430a1e, 0x0a0a2105, 0x60050c4c, 0x2b450853, 0x189b8606,
0x200cf174, 0x066d4915, 0x920d5d43, 0x09075f9b, 0xd9441f20, 0x49c31808, 0x5c352008, 0x50200ed1, 0x14209182, 0x85059843, 0x829a8593, 0x840283e6,
0x07634aed, 0x0f005a22, 0x1908e342, 0x44082d6e, 0x152105b5, 0x077f4233, 0x210a734d, 0x4d791535, 0x05484105, 0x14141424, 0x4f823c0a, 0x84321421,
0x2814330f, 0x1e0a1428, 0x280a0a28, 0x14140a32, 0x1e141428, 0xcb44000a, 0x18462008, 0x6a0a638e, 0xe54d0ced, 0x20d3820c, 0x6b628217, 0x5782083d,
0x0a214582, 0x20018228, 0x20008214, 0x05cc440a, 0x0a143224, 0xeb601414, 0x005a2308, 0x55490023, 0x58332006, 0x23200834, 0x82067044, 0x084b57ae,
0x33153322, 0xa7410b82, 0x07234109, 0x820a2821, 0x0a0a21af, 0x08905319, 0xfb180a83, 0x87450cfb, 0x09ad4d05, 0x2006a751, 0x225c8235, 0x5e013b15,
0xcf840ea3, 0x17823320, 0x6406af45, 0x23210667, 0x206e8432, 0x06824114, 0x823c0a21, 0x55778261, 0xa3560859, 0x41058205, 0x1b8409a6, 0x09a3a918,
0x4a005a21, 0xdc840783, 0x420af244, 0xcb5d069d, 0x8228200e, 0x05ff4e49, 0x47877483, 0x18004621, 0x84081be5, 0x0a8f42a0, 0x83844620, 0x28210484,
0x20008214, 0x2003820a, 0x09234f14, 0x0b005a22, 0x6d06d745, 0x3983052d, 0x180a0141, 0x22090fcd, 0x60153335, 0x3b20072f, 0x8707b36a, 0x7f241afd,
0x0a326308, 0x14217184, 0x2406831e, 0x1e141e14, 0x05634a1e, 0x086b7718, 0x2005f763, 0x06a9420b, 0x2f002724, 0x70183700, 0x0021086d, 0x09ac4433,
0x45059943, 0x4b560613, 0x08994e07, 0xc7601786, 0x08b14e0a, 0x2107ff52, 0x584a0a50, 0x05384105, 0x21093e6c, 0x00820a28, 0x03824620, 0x8205b441,
0x07795408, 0xd082c482, 0x0a60c118, 0x61089279, 0x5f6f0903, 0xbbe61808, 0x3335220e, 0x08d85f3c, 0x320a1422, 0x21095f68, 0x635f005a, 0x35232105,
0x420c154b, 0x434a05da, 0x837a8408, 0x280a2365, 0x81820a1e, 0x0a254282, 0x000a280a, 0x226f8600, 0x4264008c, 0x1f44072f, 0x3dc01806, 0x848c2010,
0x833e827f, 0x3228214b, 0x0a210583, 0x22e3831e, 0x82320a14, 0x05ff6f48, 0x1f214783, 0x08136500, 0x200a7465, 0x05354a35, 0x2805004a, 0x23023d33,
0x1e1e5a15, 0x4353851e, 0x28210550, 0x056b513c, 0x50214f83, 0x8219830a, 0x259f860f, 0x005a0046, 0xef55000f, 0x051a4808, 0x59152321, 0x498208a4,
0x84285a21, 0x190220d0, 0x200a1782, 0x22318413, 0x83153335, 0x82048275, 0x23152736, 0x0a323315, 0x9255141e, 0x28142305, 0x83825a0a, 0x28210382,
0xe7d71800, 0x059f4908, 0xd9512720, 0x437f1809, 0x08fd4208, 0x083b7e18, 0x35073324, 0x49431523, 0x21b5820e, 0x5f831e0a, 0x434d1420, 0x870a2006,
0x82142008, 0x00052163, 0x20059b66, 0x0841526e, 0xab642b20, 0x479f8208, 0xa8180856, 0x841808af, 0x354808bd, 0x32232105, 0x0a204d82, 0x8206cf41,
0x0a1e2106, 0x0a266c82, 0x460a0a32, 0xf8530a0a, 0x11d31805, 0x82782008, 0x0a282116, 0x5a2c7388, 0x0d007800, 0x29001700, 0x37003300, 0xc4827382,
0x2207d34b, 0x45373523, 0x3d210701, 0x4fe58201, 0x16820987, 0x5a012b21, 0x07200845, 0x73820982, 0x28207183, 0x82086c64, 0x841e2008, 0x2b04820d,
0x3c140a28, 0x143c0a0a, 0x3c0a280a, 0x1d4b9382, 0x281b8209, 0x000f000a, 0x00e2ff14, 0x2e8782dc, 0x00350023, 0x0055004d, 0x0065005d, 0x74750069,
0x9b620ef9, 0x09165508, 0x20088c4c, 0x82918233, 0x233521a1, 0x200ac57b, 0x05354123, 0xd8183720, 0x0d820dcd, 0x99731885, 0x08134b08, 0x35211784,
0x544b8217, 0x15200729, 0x17200b82, 0x27206e8a, 0x17202b82, 0x1720ed82, 0x23826b82, 0x82373321, 0x3537251f, 0x28781533, 0x0a71a318, 0x0a0a1e25,
0x54140a32, 0x0a240550, 0x8c140a0a, 0x2006a545, 0x22078232, 0x821e0a82, 0x821f821e, 0x283c220b, 0x82128328, 0x22128309, 0x62280a0a, 0x962105ed,
0x8207820a, 0x826e2014, 0x83282003, 0x396a182e, 0x1b528208, 0x4a084674, 0x1421080f, 0x200a821e, 0x05dc5732, 0x50140a25, 0x640a640a, 0x298405b5,
0x20050642, 0x205a8214, 0x240f8328, 0x00070000, 0x06375e14, 0xc2181d20, 0xcb421dc1, 0x82232008, 0x452320fe, 0x0b830701, 0x4207e15f, 0x17240781,
0x46231533, 0xf7835e84, 0x28206683, 0x22053671, 0x84642828, 0x5be485ca, 0x20820734, 0x03825020, 0x82140a21, 0x822820e5, 0x20a28236, 0x200c823c,
0x0b5b5928, 0xb9711320, 0x0d225408, 0x15226982, 0x085b022b, 0x1523210c, 0x3d262282, 0x37153301, 0x90513335, 0x082e6b05, 0x7b09a849, 0x0a2014d8,
0x936d7582, 0x00142608, 0x00640046, 0xc7e71911, 0x09de4f08, 0x15231522, 0x8206fb4b, 0x056143ac, 0x376e4620, 0x831e2008, 0x00022340, 0x3f8b000a,
0xe7449f88, 0x35332505, 0x33352307, 0x85055d4f, 0x8d32203f, 0x09cf643f, 0x5d6d1120, 0x7aa81808, 0xab871808, 0x0c9c6a09, 0xbf549586, 0x22998506,
0x880a0a64, 0x145023a2, 0x65883c14, 0xfb4c0888, 0x906f9305, 0x0c4651b3, 0xc0821520, 0x1720c584, 0x9405f75f, 0x9728206f, 0x050b716f, 0x78009623,
0x09d34400, 0x08654518, 0x4b066742, 0x2320091b, 0x08375718, 0x415a2321, 0x941808c1, 0x7142122e, 0x19f38506, 0x200e7b45, 0xd7b91823, 0x08405908,
0x8c58e087, 0x8333200a, 0x3fe31869, 0x084e7f08, 0x1424088b, 0x14320a0a, 0x20055545, 0x21008214, 0x0c820a0a, 0x14461425, 0x82001432, 0x00072100,
0x6e210683, 0x0bff4a00, 0x49050576, 0x88440fcd, 0x17152105, 0x25055542, 0x33353715, 0x03820715, 0x03822720, 0x33013d23, 0x82e78615, 0x0a142158,
0x03826c82, 0x506d1420, 0x41861805, 0x094c5e0c, 0x0023a185, 0x820a0007, 0xc1782085, 0x4164207f, 0x14230567, 0xf4282846, 0x8550207f, 0x5a28217f,
0xffaae282, 0xff840220, 0x32005022, 0x0db7e618, 0x35331729, 0x32140a23, 0x821e1432, 0x32142300, 0x5b570a14, 0x202b8809, 0x06cd4633, 0x2b820720,
0x2a823c20, 0x1e281423, 0x8429821e, 0x0200292a, 0xe2ff1400, 0x6e004600, 0x172b5785, 0x23153335, 0x27153315, 0x82152335, 0x1e14304e, 0x0a8c1e0a,
0x780a0a78, 0x00000078, 0x820a0002, 0x8a3c202b, 0x8335202b, 0x262b835a, 0x3214140a, 0x821e0a0a, 0x832e822a, 0x1901202b, 0x20082337, 0x1f481823,
0x09774d09, 0x0c37b518, 0xf51b3320, 0x96181647, 0xdb856bd7, 0x78006e26, 0x47002300, 0x1720b1a5, 0x4e07d743, 0xd5a4084d, 0x6d052c4b, 0x0982093c,
0x0a20e891, 0x12d29718, 0x89067f41, 0x353321a3, 0x5f440185, 0x09516108, 0x20075744, 0x4423a237, 0x08510878, 0x054d5208, 0x1420a28c, 0x94840083,
0xab899990, 0x00000028, 0xff140003, 0xa38300ec, 0x1c001325, 0x1a002400, 0x1809c79b, 0x2209bc9d, 0x42012b15, 0x15210509, 0x53078607, 0xd452092b,
0x82142108, 0x5a239785, 0x826e6e6e, 0x5a782409, 0x936e0a0a, 0x05f1485f, 0x48453320, 0x33352209, 0x05915d35, 0x2320fa82, 0x20058444, 0x0e9e4a35,
0x78226483, 0x8a446e6e, 0x78822106, 0x64835f82, 0x5f825a20, 0x00000122, 0x2006a763, 0xc38c1947, 0x07b9450b, 0x09b79718, 0x69087562, 0x27820c5c,
0x84068d41, 0x82968690, 0x1802836f, 0x8409eb7b, 0x06516710, 0x1d840683, 0x20080e51, 0x07224214, 0x86050545, 0x05935b0e, 0x7f829f91, 0x18058245,
0x200b5d4b, 0x06f74115, 0xa9421386, 0x08026813, 0x8c231522, 0x7c188f94, 0x94660899, 0x05074705, 0xa5820a20, 0x94499e85, 0x23ad8808, 0x00000a0a,
0x28054358, 0x005a00c8, 0x003b002b, 0x157a184b, 0x0945410d, 0x4b0da879, 0x15220586, 0xb5832723, 0x0ac3c318, 0x095b2720, 0x23df8706, 0x0a143c6e,
0x14207682, 0xb2180682, 0x08850808, 0x1e141e27, 0x32280a0a, 0x2007850a, 0x08bd550a, 0x83094746, 0x140a2338, 0xcc821e1e, 0x06854620, 0x0022ad82,
0x136d0100, 0x003c2106, 0x1f2bbc18, 0x1b6e6e21, 0x8e0c4346, 0x48332037, 0x152005c4, 0x85085567, 0x0a14232d, 0x044f6e6e, 0x6bb01808, 0x18e62009,
0x2229b3bb, 0x82a00abe, 0x0a0a21ce, 0x08870482, 0x4a0db054, 0xef5205eb, 0x00962405, 0x191c0046, 0x450c6da7, 0x15210972, 0x24a28223, 0x9615012b,
0xebdb186e, 0x0a6e2209, 0x08014878, 0x20056e43, 0x084b7900, 0x4b86a020, 0x012b3522, 0x180c0c6b, 0x2409cb60, 0x788c3523, 0x924d8b0a, 0x0002214b,
0xf0200083, 0x2b214b82, 0xbdc51800, 0x33352108, 0x18081975, 0x210db1ed, 0xb5183533, 0x232009bf, 0xf78b0c83, 0x21090241, 0x1049c8dc, 0x0e626908,
0x180acf41, 0x181a0fb8, 0x2308cdaf, 0x5a14145a, 0x22084d41, 0x42143214, 0x3f830b0f, 0x42061c4e, 0x78200fad, 0x45413783, 0x0a142205, 0x08f96b1e,
0xab1b0a20, 0x96200837, 0x1b20ef82, 0x7705f378, 0x254608cb, 0x28fb8408, 0x3d231533, 0x82152301, 0x098c415a, 0x62425482, 0x21ed820a, 0x51831e46,
0x074b041a, 0x5388a020, 0x700e234f, 0xad82080d, 0x15233725, 0x8c140a33, 0x6e822354, 0xe388466e, 0x56820a20, 0xbe182820, 0xc82609af, 0x49003c00,
0x23570000, 0x07334406, 0x3f445f82, 0x826b8b08, 0x06df425f, 0x0b820984, 0x87087151, 0x0e8e410b, 0x8205e249, 0x0d1942e2, 0x268e3c20, 0x00220e94,
0x8d180c00, 0x3b6508cb, 0xe34c1807, 0x3700210f, 0x82065d73, 0x1733217f, 0x20067b43, 0x18078207, 0x820b6549, 0x214718a4, 0x1e502408, 0x821e281e,
0x18048800, 0x820aa1f2, 0x461e211b, 0x0a200182, 0x9f180382, 0x0a2308cb, 0x190a500a, 0x20079f50, 0xa08f9e0b, 0x2389878d, 0x15233507, 0x1e258993,
0x1e0a320a, 0x20878b0a, 0x8a7c8414, 0x83834084, 0x07410a20, 0x1805411c, 0xf5821720, 0x831d8b41, 0x21eb82ff, 0x87411e1e, 0x89ff8208, 0x20fbb8fc,
0x674b1827, 0x0719420a, 0x200f7f41, 0x2000820a, 0x8d038232, 0x0807427f, 0xb6070542, 0x998187fb, 0x417b917d, 0x788605fb, 0x6f8777b6, 0x23200783,
0x20167542, 0x1473420a, 0x0a207782, 0x0a03f818, 0x1537651a, 0x200e7d43, 0x6d551807, 0x83698207, 0x41038371, 0x28220a67, 0xa0181e1e, 0xe442082d,
0x1e1e2307, 0x64411e0a, 0x00002208, 0x38e34100, 0x6142e987, 0x20eb831d, 0x4300820a, 0x6b411c63, 0x0bdf4236, 0x43156b41, 0xe14314df, 0xef9f1806,
0x00502108, 0x21136b41, 0x57430027, 0x0a0a223c, 0x0f574432, 0x20095743, 0x1acf4309, 0xe3417590, 0x4133200b, 0xe34106e7, 0x82322010, 0x0948436e,
0x4506e341, 0x5f410847, 0x08877436, 0x4306cd43, 0x322211c1, 0xe7911e0a, 0xe8882820, 0xbb7de7b8, 0x093d4608, 0x8b07cb42, 0x09cb4270, 0xb805b747,
0x8237206f, 0x417383e1, 0x0a201057, 0x20460082, 0x0f3b4309, 0xc7410820, 0x0cc54118, 0x410c2b47, 0xe0860ec1, 0x890b2243, 0x43002065, 0xbd413b9f,
0x1b034707, 0x410a0a21, 0x034705c1, 0x6cbe190d, 0x08884707, 0x43363f42, 0x81470b9f, 0x169f4315, 0x8b3efb45, 0x2c174477, 0x18068245, 0x440887fd,
0xd9411317, 0x06e16a0c, 0x7e373321, 0x9f430643, 0x2070822f, 0x39874400, 0x930be346, 0x0a0a22e7, 0x0cbe4232, 0x461e0a23, 0x08e3461e, 0x833c6b46,
0x166b4679, 0x6d159f43, 0x9f4305db, 0x2d0f4438, 0x2007c641, 0x5c9f4300, 0x493dbb41, 0x3747239b, 0x46434612, 0x2014eb44, 0x0c0c4b32, 0x410f4346,
0x332038bb, 0x96175b45, 0x0657416f, 0x8336bb41, 0x07c5456d, 0x83065b45, 0x0efd4867, 0x430a0a21, 0xfb4239e3, 0x1083471c, 0x84472820, 0x41cfb607,
0x2b460ba9, 0x13914608, 0x00190020, 0xbf4d0c6f, 0x0cb5440f, 0xa50f8f46, 0x06974163, 0x49051758, 0x618c1133, 0x8307c15c, 0x0ef94507, 0x2407c747,
0x1e1e1e50, 0x2003826e, 0x2203820a, 0x4a0a0a3c, 0x6b4c3987, 0x050d4527, 0x4614734e, 0x6b4c3e6f, 0x4c7b9121, 0xeb65476b, 0x13ff4507, 0x470a1e21,
0x9f49145f, 0x3cff4505, 0x4a186b4c, 0x03431487, 0x36474808, 0x4d074b4d, 0xe7941953, 0x4409e74b, 0xe7463cbb, 0x20e79114, 0x7e501814, 0x3d5b4409,
0x430bc144, 0x0582052c, 0x684b0a20, 0x1e1e220c, 0x06c8470a, 0x4405f74a, 0xd98b365b, 0x4216874a, 0xa34805a6, 0x4f172046, 0x0a20120f, 0x2b4d0084,
0x42434c10, 0x4b41dd83, 0x82322014, 0x4c708972, 0xe7466143, 0x3f174614, 0x4612bb41, 0x764912e7, 0x398f4205, 0x422abb47, 0x8f420bff, 0x22bb4736,
0xd7496584, 0x22e74637, 0x4609ef42, 0x5d8253e7, 0x03450020, 0x21eb4b36, 0xbe490a20, 0x49eb4b0c, 0x501aeb45, 0x1b4f0be4, 0x3873450f, 0x4b2db743,
0x474352eb, 0x06fb4812, 0x8142d3e3, 0x4fd74505, 0xe742d38f, 0x32ab4309, 0x4b0f8d4d, 0xab431667, 0x30474305, 0x4b149b4c, 0x2f4a0557, 0x44598207,
0xcf4239d3, 0x50bf4b1c, 0x9314a745, 0x3abf4b65, 0xbf4b63a5, 0x053f474c, 0x420bbf4b, 0xbb4a3247, 0x10af4d07, 0x450d1f41, 0xbb8d4f93, 0xeb645d82,
0x2ad34c06, 0x9114a342, 0x07a77357, 0x4d0d4752, 0x254d0829, 0x2327230b, 0x07413335, 0x08f34905, 0x50200882, 0x2308224d, 0x00001e0a, 0x2306a379,
0x005a0046, 0x0f31911b, 0x2108a16a, 0x0083140a, 0x0a3c2826, 0x14460a0a, 0x4805366b, 0xd9190504, 0x5f180d9f, 0x5f1808cf, 0x35200bbf, 0x3f841582,
0x44842820, 0x7b143c21, 0x1e20050e, 0x49824b82, 0xc77a1420, 0x190d200b, 0x670893be, 0xbb690aca, 0x83282007, 0x0a3d6f7e, 0x1e0a3224, 0x51180a28,
0xbf8309fb, 0xc18c0d20, 0x82152321, 0x23372145, 0x0a278b85, 0x1e0a0a32, 0x82320a14, 0x46142730, 0x0a1e0a14, 0x89613c28, 0xb3261905, 0xffaf1809,
0x1eb51908, 0x253d840a, 0x35372335, 0x41831523, 0x14206f83, 0x14213b82, 0x294c825a, 0x3c0a1e1e, 0x1e460a0a, 0x9b75001e, 0xbfe91809, 0x0bfa6809,
0x33352329, 0x33073315, 0x82172335, 0x0a462147, 0xbc828b84, 0x82142821, 0x5d1e2000, 0x1e200756, 0x0a209482, 0x3f734a82, 0x33481806, 0x6d571809,
0x08956008, 0x15224d82, 0x9b822723, 0x47827f82, 0x00820a20, 0x05829582, 0x4c822820, 0x140a0a22, 0xfa700682, 0x0b101b05, 0x195a2008, 0x210b9b12,
0x8f833315, 0x3c231523, 0x827f820a, 0x28142328, 0x02825a28, 0x7c821420, 0x7c000121, 0x26190793, 0x6162091f, 0x202f8408, 0x255f821e, 0x145a3c3c,
0x2f8d3c0a, 0x07781b20, 0x205d8309, 0x87961835, 0xd9161b0a, 0x05c0410b, 0x72827782, 0x8c078b64, 0x1847ae77, 0x2009058c, 0x658f9314, 0x33200937,
0x82055f5f, 0x23cf8305, 0x0a323c23, 0x09339518, 0x42140a21, 0x0585058d, 0x4621478b, 0xa78f8500, 0x82de8647, 0x0a0a215a, 0x09b34918, 0x5a005024,
0x79181100, 0x511809db, 0x2e82091d, 0x140a3224, 0x7f82140a, 0x500a4628, 0x46460a0a, 0x1d19000a, 0x58180863, 0x002209c3, 0x4f412337, 0x7a272005,
0x232108b9, 0x06554135, 0x91433b82, 0x3c1e2c05, 0x506e140a, 0x0a145a3c, 0x60501e1e, 0x0020071b, 0x591a7982, 0xed640ab7, 0x15332108, 0x3c20d182,
0x8206dc7b, 0x625a203f, 0x322305dd, 0x42003c32, 0x5a25067f, 0x0f006e00, 0x75c81800, 0x1b35200a, 0x20082d89, 0x200a8423, 0x054f6446, 0x820a0a21,
0x6e142445, 0x821e460a, 0x82462000, 0x823c2005, 0x6a438842, 0x00210567, 0x067d4137, 0x8382439c, 0x2814142a, 0x143c3c28, 0x00323214, 0x44071744,
0x1b220597, 0xe8181f00, 0xa3630933, 0x22888308, 0x6f233723, 0x1522051e, 0xca740a33, 0x430a2008, 0x3c200508, 0x0a21a282, 0x056d5932, 0x5e182820,
0x83710aef, 0x23e11807, 0x2328820e, 0x1e1e0a28, 0x46203c82, 0x0a21d582, 0xeb5c181e, 0x9bbc1908, 0x27c78409, 0x1e1e1414, 0x0a1e4614, 0x0873f318,
0x0923c618, 0x70193320, 0x61820e7a, 0xe4413220, 0x205d8206, 0x228c8346, 0x84323c3c, 0x030021de, 0x2106e759, 0xae180046, 0x0819073f, 0x07240c6d,
0x17152335, 0x35264f84, 0x14284623, 0x0b760a1e, 0x05f17107, 0x1420ce82, 0xaa190082, 0x5a220ee3, 0x14190b00, 0xed630749, 0x84072007, 0x824620b3,
0x24438285, 0x140a1e3c, 0x4a858414, 0x051b050b, 0xb1441d23, 0x83282008, 0x8628207c, 0x2179826f, 0x04821e1e, 0x63640020, 0x00462208, 0x21778246,
0x4f413700, 0x82352006, 0x1e142d07, 0x283c3c28, 0x0a14281e, 0x00140a46, 0x2006f368, 0x20278232, 0x23ed8203, 0x35233700, 0xa3859584, 0x92823220,
0xd5821e20, 0x5a143223, 0x199b820a, 0x210bcf0d, 0xe7180064, 0x3c201b77, 0x0a22fd82, 0x76182828, 0x87830857, 0x1d001525, 0x18170000, 0x180a6b4a,
0x1808c2fb, 0x20083c61, 0x4b561828, 0x0a14210a, 0x7482d582, 0x1421e083, 0x207f820a, 0x83ad8214, 0xff0024af, 0x825000e2, 0x831320af, 0x4537204f,
0x15200631, 0x0992ef18, 0x73192320, 0x28200917, 0x2105287a, 0x44821e14, 0x0b831e20, 0x63321421, 0x142305aa, 0x823c3c0a, 0x5bd718d1, 0x204f840c,
0x058f6317, 0x09454a18, 0x591a5782, 0x15210897, 0x0513760a, 0xa8823982, 0x50841420, 0x23058a72, 0x320a500a, 0x08c70b19, 0x46275582, 0x17006400,
0x41001b00, 0x33200779, 0x4606fa72, 0x1724087b, 0x14152335, 0x32214082, 0x2500830a, 0x1e0a0a28, 0x2a193c14, 0x0a2108fc, 0x88008228, 0x05e3429b,
0x2006a544, 0x0b4f7215, 0xa2442320, 0x82142005, 0x3c0a258c, 0x1e5a0a0a, 0x0a200482, 0x6e243788, 0x11004600, 0x460b7175, 0x3520075d, 0x21098171,
0x83825023, 0x14223f83, 0x4684320a, 0x5a503223, 0x2000820a, 0x4200823c, 0x032005c0, 0x00204f82, 0x5a20cd82, 0x43080b43, 0x23260949, 0x23173335,
0x6f413315, 0x23152505, 0x0a0a1e3c, 0x1427c984, 0x0a145014, 0x7446140a, 0x1e220532, 0x0b435032, 0x1b97830c, 0x200adf30, 0xeb441835, 0x18dd830b,
0x2108ab56, 0x8b822335, 0xa2824882, 0x840a1e21, 0x20098252, 0x8254833c, 0x0a0a2365, 0x6e84463c, 0x0c2fc519, 0x95420520, 0x83352005, 0x05c34147,
0x23152328, 0x141e0a32, 0x9c820a28, 0x0a3c1424, 0x8b823c46, 0x18052341, 0x2007cbd3, 0xb9541a0b, 0x4235200d, 0x5766063f, 0x18698205, 0x82076c41,
0x2446827c, 0x50285a0a, 0x06b0641e, 0x83000221, 0x20cf8349, 0xdde11819, 0x47bd8208, 0xd78505c3, 0x83231521, 0x08214147, 0xcb850a20, 0x0a228383,
0xdb823214, 0xce831420, 0x0a20cb82, 0x28215282, 0x45d1820a, 0x5783055f, 0x43725020, 0xc7e21806, 0x0848720a, 0x77412320, 0x82282009, 0x843c82d8,
0x281426df, 0x641e0a14, 0x2553831e, 0x1e140a32, 0x4b445a32, 0x7aa78505, 0x112205ef, 0xcf420000, 0x06924205, 0x2326ac82, 0x140a2835, 0x3a82143c,
0x0a321424, 0x07825a28, 0x833c0a21, 0x062b4686, 0x20054742, 0xb9cb1a19, 0x05194109, 0x37218b83, 0x203e8433, 0x42d58223, 0x46210647, 0x2447820a,
0x320a3c46, 0x21e3843c, 0xc9834632, 0x25074342, 0x00070046, 0x49830011, 0x71073547, 0x21410851, 0x0a502107, 0x32214082, 0x204d821e, 0x0603470a,
0x82463221, 0x0525414e, 0x00820020, 0xff244b82, 0x006400e2, 0x64214bb5, 0x20978264, 0x06024232, 0x0b47df88, 0x41232007, 0xcf18075f, 0x3320087b,
0x5a201183, 0x0a21d282, 0x05824214, 0x20053844, 0x83068246, 0xaf441895, 0x0007220c, 0x07c7180f, 0x7d232008, 0x1521055b, 0x23c88223, 0x0a280a14,
0x5a20d482, 0x0a22da82, 0x43454632, 0x20c38206, 0x22c38246, 0x18000017, 0x20074bc2, 0x05a34515, 0x33427182, 0x055e4405, 0x0a2c3f82, 0x1432281e,
0x280a0a5a, 0x320a0a32, 0x174b0f82, 0x006e2207, 0x074d415a, 0x5368b785, 0x20bb8205, 0x07954823, 0x820a3c21, 0x820a20b5, 0x82bd8233, 0x20f78282,
0x069a413c, 0x6f704620, 0x826e2009, 0x001d2287, 0x20bb8329, 0xf9521835, 0x0501460a, 0x22083344, 0x7633012b, 0xb77f09da, 0x063b4409, 0x0a22e684,
0xea822814, 0x04831e20, 0x2005917a, 0x0512450a, 0x00010023, 0x20ef820a, 0x20af825a, 0x8b47180f, 0x1a598709, 0x26095f5e, 0x0a143c46, 0x83142832,
0x820020df, 0x00462400, 0x47090046, 0xd7840933, 0x20062f42, 0x8476831e, 0x826283d7, 0x3c3c217c, 0xda1b3082, 0x1b420843, 0x099b4905, 0x2408a673,
0x140a0a32, 0x05c67614, 0x64320a25, 0x82320a1e, 0x0877713e, 0x0f256f83, 0x00001700, 0x05034617, 0xfc183320, 0x7586081b, 0x3f823b82, 0x1420e282,
0x0a217182, 0x233e820a, 0x5a0a0a5a, 0xdf70e386, 0x82462005, 0x000722e3, 0x09d5410f, 0x34413720, 0x141e2a06, 0x280a0a14, 0x1e140a14, 0x207f8278,
0x082b463c, 0x20060742, 0x061d6d0b, 0x085b2319, 0x73883720, 0x32213682, 0x23f0820a, 0x0a460a14, 0x5a210283, 0x48ec840a, 0x0342051f, 0x001f2207,
0x05897000, 0x8307e548, 0x26438776, 0x23353307, 0x430a3315, 0x47820650, 0x07235618, 0x8e823c20, 0x0a320a25, 0x823c0a0a, 0x28282153, 0x8207f343,
0x09f34393, 0x41085e7b, 0x072007af, 0x20065745, 0x057f415a, 0x3a441e20, 0x43428205, 0x3c2305f2, 0x460a641e, 0x46250983, 0x19004600, 0x419d8200,
0x41420553, 0x05614309, 0x4f83a584, 0x140a2322, 0xfd470082, 0x0a282206, 0x20ab8428, 0x209b8428, 0x210d8214, 0x0f4f500a, 0x05b34506, 0x0d004623,
0x11321b00, 0x23978408, 0x32281e23, 0x28284283, 0x5a0a0a14, 0x00463c3c, 0x2606d748, 0x0050005a, 0x7b290025, 0xad710867, 0x08536e0d, 0x20089479,
0xef4e1a33, 0x1414210b, 0x0d24d118, 0x0c4c1d19, 0x074b4018, 0x25078741, 0x00070046, 0xab45000f, 0x08194c0a, 0x08ba4e18, 0x27451520, 0x42502005,
0x22470684, 0x20e38305, 0x85f41a32, 0x57ca1808, 0x495a2009, 0x564c058d, 0x2823210a, 0x1e27e182, 0x320a140a, 0x821e7850, 0x093f7f3c, 0x11004622,
0x08ff5218, 0x2008ef6d, 0x206d8235, 0x069d4a14, 0x08821e20, 0x42062c47, 0xa5880ea7, 0x0919ea18, 0x2c831420, 0x0a235f82, 0x42647846, 0x012205a7,
0xa7420000, 0x217e1906, 0x2315230c, 0x88822315, 0x82141e21, 0x0a3c2400, 0x75463c3c, 0x6e26091b, 0x1d006400, 0x95842500, 0x7b4bff82, 0x087f6e09,
0x82353321, 0x07454b01, 0x707c3c20, 0x20de8208, 0x20e3820a, 0x21078214, 0x09821464, 0xf7443220, 0x1a142008, 0x240d43fb, 0x000b003c, 0x475f820f,
0x5842056c, 0x15232305, 0x104b1433, 0x82388307, 0x9b5e193b, 0x185a200c, 0x4a08b9ce, 0x37200a35, 0x27233582, 0x82233533, 0x084b4b2c, 0x0a501429,
0x0a0a460a, 0x83281e1e, 0x180020d2, 0x83099b42, 0x05236d73, 0x794a0020, 0x2243840b, 0x43353315, 0x4b830569, 0x32217e82, 0x8204820a, 0x7a0a2044,
0x4f8405a4, 0x18058b4d, 0x18179f4d, 0x45094647, 0x33220587, 0x99832315, 0x14143227, 0x0b09090b, 0x2147823c, 0x0082140a, 0x1e1e1e22, 0x04850a82,
0x4b183c20, 0x734a0d33, 0x57e81807, 0x2055880b, 0x20e98217, 0x204b8e1e, 0x424b8f3c, 0x462205cf, 0x57185a00, 0x959208e7, 0x4b82fb82, 0x9788e782,
0x97823c20, 0x8b141421, 0x14462197, 0x0a074d18, 0x0affbf18, 0x07db4018, 0x13131e22, 0x3c258c82, 0x5a5a1414, 0x97141b5a, 0x000b2308, 0x1f190000,
0xa9410deb, 0x2bcf8205, 0x09131432, 0x0a0a140a, 0x1e323214, 0x00240084, 0x0a000100, 0x45202f82, 0x19065746, 0x21084d0b, 0x01822335, 0x871e3321,
0x8e28202f, 0x0507492f, 0x0811de18, 0x5b821520, 0x283c0a28, 0x3c281414, 0x291b0a5a, 0x578208eb, 0x4d832788, 0x2505e151, 0x3c28280a, 0x5082283c,
0x2a820a20, 0x09bf5418, 0x23195a20, 0x23200833, 0x200d9142, 0x0a9d4237, 0x17246783, 0x35331523, 0x2208a542, 0x820a280a, 0x82508202, 0x441420fe,
0x0a21055c, 0xd14e183c, 0x18462009, 0x200cc74e, 0x0521465a, 0x0b074d18, 0x23229382, 0x30822315, 0xba84b583, 0xa0824620, 0x04830a20, 0x0bbb4118,
0x19001126, 0x23330000, 0x55428a82, 0x4f838208, 0x3325059d, 0x1e283335, 0xca711846, 0x29088208, 0x0a140a5a, 0x0a1e141e, 0x6f4d3c3c, 0xa3e41905,
0x0ac34109, 0x15331724, 0x03820723, 0x1e22b882, 0x02821414, 0x0a145a22, 0x2506c341, 0x000a0002, 0x57510000, 0x08334a05, 0x79891520, 0xd5773320,
0x19152005, 0x21082722, 0xfa831e46, 0x75838482, 0x5a0a1426, 0x3c14143c, 0x430ab753, 0x232118b3, 0x0b674333, 0x0a0a1e22, 0x2205b343, 0x4f464646,
0x8b4706bf, 0x410d2005, 0xad820637, 0x42231521, 0x8d8205b7, 0x684a3b86, 0x82142005, 0x0a502b3a, 0x1e1e0a46, 0x04001e0a, 0x7d821e00, 0x5a003222,
0x0d339118, 0x3520ed83, 0x20069d47, 0x85ea8232, 0x14462302, 0x734d1446, 0x0d6f5506, 0x2007224b, 0x0fba7815, 0x0b614318, 0x14280a23, 0x85fc8314,
0x450a204b, 0x1d1909cf, 0x35220c2b, 0x1d471523, 0x14142405, 0x82282832, 0x20278702, 0xa7121950, 0x05734c08, 0x200cdd41, 0x08b54335, 0x0a0a1e28,
0x090b140a, 0x6b840b09, 0x3c210b82, 0x0740441e, 0x2005fb43, 0x26f38200, 0x000a000a, 0x8a500046, 0x20eb82f3, 0x83038217, 0x22fb83f3, 0x8214140a,
0x200484ad, 0x20488250, 0x55038246, 0x8019095b, 0x4f4710a3, 0x82372005, 0x15072cfc, 0x460a3523, 0x0a1e0a0a, 0x82324628, 0x5a0a2189, 0x3c214982,
0x18fa830a, 0x20090752, 0x20798228, 0x207b863c, 0x071f4400, 0x7d822720, 0x14143c23, 0x213b8214, 0x08831414, 0x0bab0919, 0xfb824620, 0x15000926,
0x1f001b00, 0x7409734b, 0x09820945, 0x44372321, 0x4582050f, 0xba850a20, 0x84056641, 0x501e20c2, 0xf7420517, 0x19142005, 0x200ea7ec, 0x2de2180b,
0x3533230a, 0x7b820a23, 0x5a200282, 0x4620c583, 0x200ba341, 0x2027821b, 0x0a8f4323, 0x51182320, 0xf7820826, 0x1b333521, 0x20084a21, 0x20c4840a,
0x05d84346, 0xf3183220, 0x50200d0b, 0xc386c782, 0x1808537e, 0x200cab65, 0x1fb01a15, 0x820a2008, 0x0d4e18b3, 0x215c8208, 0x58831e1e, 0x870a1421,
0x0af35106, 0x0f005a22, 0x3b489b83, 0x33352305, 0x09823335, 0x18282321, 0x2308f873, 0x0a285a1e, 0xcb8b0382, 0xf3890720, 0x283c0a24, 0xed833c28,
0x092b2c19, 0x03005a22, 0x1e241f85, 0x5a5a1414, 0x0fb74718, 0x0c015018, 0x8405c754, 0x87ce1899, 0x05664208, 0x00001e28, 0xff1e0002, 0x5b4300ec,
0x08814507, 0x57825582, 0x140a5022, 0x6357c282, 0x95ab1810, 0x087b500d, 0x15233724, 0x00820a33, 0x30451e20, 0x0a282405, 0x41141428, 0x0a26065b,
0x0b0b270a, 0x49182727, 0x428817e7, 0x9d453520, 0x1399450b, 0x14235282, 0x460a1e14, 0x06860574, 0x82461421, 0x000222a5, 0x081f460a, 0x20190f20,
0x3b210dd5, 0x08494801, 0x9244ff82, 0x192c8206, 0x2408df1d, 0x000f005a, 0x639b1915, 0x44152009, 0x99790653, 0x51322005, 0xa9410541, 0x4b0a2005,
0x142205ef, 0x3f833c0a, 0x738a0120, 0x1a370021, 0x820e876c, 0x7cc8186a, 0x44032007, 0xe7460ebf, 0x411e200c, 0xad450593, 0x05d74807, 0xeb444620,
0x1813200a, 0x8309a3c7, 0x86372099, 0x4337869d, 0x3c220547, 0x01823214, 0x03825a20, 0x03209783, 0x0e1bf719, 0x0a230619, 0x37231526, 0x27331523,
0x14234382, 0x82320a0a, 0x1e282202, 0x8509821e, 0x465022d7, 0x0cef4132, 0x17416420, 0x49718705, 0x352805d0, 0x35330733, 0x32233523, 0x28223683,
0x87820a0a, 0x640a0a23, 0x1841860a, 0x4608fbde, 0xe419056f, 0x3321092f, 0x0c155435, 0x20098447, 0x224d8317, 0x82353315, 0x0601444a, 0x14219682,
0x2100830a, 0x07824650, 0x46210282, 0x8219840a, 0x001421dd, 0x890e7341, 0x06df4247, 0x28283225, 0x4428280a, 0x07441013, 0x83bf830d, 0x77df1839,
0xb8571808, 0x320a2108, 0x1e214782, 0x210f821e, 0x06821414, 0x0963b919, 0x092b0e19, 0x00002323, 0x092a4d37, 0x2721d688, 0x05374223, 0x35211b82,
0x08c95607, 0x44184f82, 0xd9850a9b, 0x1e27ce84, 0x461e0a1e, 0x18461414, 0x200dab62, 0x845b8213, 0x05d74647, 0xd282dd87, 0x283c3c23, 0x2300830a,
0x5a0a1e28, 0x00235185, 0x49000200, 0x774b079b, 0x63431805, 0x8237200a, 0x090b2781, 0x0a0a140a, 0xc983133b, 0x00821e20, 0x44280a21, 0x07200c8f,
0xb3426b82, 0x23f38206, 0x505a3c14, 0x092f8c1b, 0x5a005023, 0x84e78300, 0x089d5a51, 0x08d98719, 0x65181520, 0x95840a5c, 0x20060b42, 0x2170830a,
0xf443280a, 0x08e37808, 0x830b1f47, 0x09a34557, 0x89486182, 0x71fa180a, 0x33352208, 0x2a431828, 0x20088808, 0x06e3413c, 0x21065f45, 0x73581414,
0x4d5a200a, 0xb918059b, 0x23250aef, 0x140a0a3c, 0x2382821e, 0x5a460a3c, 0x838b0a82, 0xfb832b20, 0x890a0542, 0x0b314685, 0x2320e587, 0x8205eb4f,
0x054c7d43, 0x1420ed83, 0x32210a82, 0x8290870a, 0x850a8865, 0x00322567, 0x00640046, 0x220f6341, 0x18282864, 0x2308c34b, 0x0028003c, 0x2005b741,
0x08444223, 0xae1a2320, 0x1e2009cf, 0x0a216585, 0x207c8214, 0x7f7b1800, 0x18642009, 0x2609c799, 0x2814143c, 0x84645050, 0xe2ff231b, 0x71823c00,
0x08038918, 0x14283c2b, 0x50141e14, 0x00020000, 0x833d8214, 0x8205208b, 0x8200206d, 0x0827715f, 0x1e14462d, 0x0a1e0a32, 0x14644646, 0x5146500a,
0x47850873, 0x00000b2e, 0x3335013b, 0x15372315, 0x15233533, 0x2b82ed84, 0x00212a87, 0x262f8201, 0x0050001e, 0x19110032, 0x20086745, 0x07dd4623,
0x50331522, 0x7118b682, 0x0a2008f1, 0x0a25c482, 0x0600000a, 0x05a34500, 0x180f8b5f, 0x830afd60, 0x21038771, 0x008a3c0a, 0x0d4c4c87, 0x00002205,
0x444b940c, 0x2724056f, 0x2f002b00, 0x0daf5f18, 0xd584578b, 0x43064545, 0x152105b3, 0x49078323, 0x2820054f, 0x4808494a, 0x32190ba2, 0x84180902,
0x4b660d7e, 0x76462006, 0xdb8618bf, 0x20074149, 0x0ac34935, 0x1b8a2720, 0x1420eb82, 0x7d846f83, 0x3c210485, 0x4e11843c, 0x758505ad, 0x1e200583,
0x2005b857, 0x18ff9c0a, 0x210927d7, 0xe9193523, 0x27200891, 0x15200b82, 0x17200382, 0x07200786, 0x46220782, 0x67861414, 0x08506118, 0x50200f86,
0xa6696782, 0x09c74105, 0x00000023, 0x61779808, 0x15200c53, 0x0ac17718, 0x03830b83, 0x64836b82, 0x28205f86, 0x2005dc41, 0x072b4d64, 0xdc850a20,
0x639f6282, 0x638f4f87, 0x5585cf84, 0x8a141421, 0x86642069, 0x6ec7855a, 0xb34108e7, 0x002b2117, 0x08919d18, 0x2d412720, 0x41078b06, 0x6d851241,
0x0a82058a, 0x7b83e586, 0x410a0a21, 0x0b201247, 0x18184741, 0x1808db48, 0x8709859e, 0x418f97f1, 0x8b920a59, 0x20076241, 0x0cd1411e, 0x084f7d18,
0x88110741, 0x0f6141ff, 0x46200f83, 0x09b96318, 0x41056b41, 0x5c41055e, 0x0a1e2105, 0xcb635682, 0x8f579e06, 0x4257845b, 0xb6410b1b, 0x2057830d,
0x1a334109, 0x4114b341, 0xac190bab, 0x6318080d, 0x142108a8, 0x08834214, 0x42071a41, 0xc5830583, 0x89426ba4, 0x0f23420b, 0x1742cf88, 0x89d4870c,
0x27874170, 0x097f3919, 0x17333525, 0x88333523, 0x513c205f, 0x3c200528, 0x32205a85, 0x41064f43, 0x35202087, 0x4112a143, 0x51870623, 0x2005df41,
0x5b891850, 0x4257830c, 0x4b8324bb, 0x180f1341, 0x44087d93, 0x93410695, 0x08914414, 0x43141421, 0x1e20093d, 0x200a4343, 0x427fac00, 0x938f0f03,
0x82144621, 0x09714500, 0x4610ad41, 0xc7430978, 0x0a1e2105, 0x4206f768, 0x1f2111df, 0x05db4800, 0x45073321, 0xbb430a65, 0x438b870b, 0x3c2108af,
0x437d8b3c, 0x1e2009a8, 0x4208c541, 0x35202087, 0x4506cd45, 0x5f430fdd, 0x09e14507, 0x8406ef42, 0x07dd45e1, 0x2107f042, 0x03790a0a, 0x7dd79508,
0xd541068b, 0x073f670f, 0x410b6541, 0x68430751, 0x075d4108, 0x453c3c21, 0x0020130e, 0x86204347, 0x200545e1, 0x45059944, 0xe7851401, 0x820b8945,
0x245b41ef, 0x410fcb41, 0xe9820b67, 0x41072b43, 0x31430bc7, 0x053e420b, 0x33420020, 0x13c74121, 0x410ba343, 0x14210cc7, 0x41778714, 0xf94309c8,
0x211f4309, 0x2012fd48, 0x18138215, 0x490b73f2, 0x11490a85, 0x4b6e2014, 0x1b4908dc, 0x2d9b430b, 0x420f7d69, 0x49420f4d, 0x0aa74813, 0x890d4d42,
0x1ea348ff, 0x420bb545, 0x994307cf, 0x05f34408, 0x430d9543, 0x7d4a0924, 0x415f9e05, 0x034913c9, 0x06e3460a, 0x21068d43, 0x8a433c3c, 0x240f430f,
0x4541638b, 0x49cb880f, 0x39410edb, 0x0bdc490a, 0x43283741, 0xd3870f09, 0xd1441783, 0x081f480a, 0x230bce44, 0x0a0a0a1e, 0x8f23e743, 0x0fd54463,
0xb9456b8c, 0x89de820d, 0x2bb34a71, 0x430f0947, 0x4b4a1075, 0x0b734307, 0x085b1e20, 0x48058205, 0x4b4405f3, 0x42d98f20, 0x13460f25, 0x0823420c,
0x414ad187, 0x23b74409, 0x4b0fd542, 0xf3460f31, 0x0aaf410c, 0x4c077646, 0xeb420a67, 0x90598b1e, 0x074b43d1, 0x3641cd8a, 0x05744207, 0x9b214f4c,
0x46c590c9, 0x9218075f, 0x4b430903, 0x0f9d4128, 0x45122548, 0x4d430ee9, 0x0dec4507, 0x9f4dd788, 0x0f4b4722, 0x480c137c, 0x01450641, 0x1414210d,
0xef497582, 0x05d0460b, 0x44051c49, 0xb343249b, 0x078d490b, 0x0875ab18, 0x8e080942, 0x09ac4a65, 0x4205eb42, 0x4f431e13, 0x0b5b410f, 0x430c3147,
0x01450557, 0x05b34105, 0x2005b643, 0x258b4800, 0x0b87578b, 0x4e108342, 0xd7840c09, 0x14211184, 0x09784e14, 0x410c5b43, 0x094e2ab7, 0x0e574f0f,
0x28206786, 0x8409d34c, 0x05b44611, 0x0a21ee8b, 0x23d3430a, 0x4913f145, 0xc94f0e75, 0x095d4611, 0x42059842, 0xab440523, 0x1bd74c20, 0x45087b4c,
0x8f47067d, 0x4261830e, 0x1e200795, 0x0720d882, 0x5016b34d, 0x738b102d, 0x210e4d46, 0x4a463c3c, 0x20db4c0d, 0x4b0fe147, 0x5052080b, 0x088b4109,
0x4609dc47, 0xc343339f, 0x0cc94513, 0x4c0e4f4c, 0xa344124d, 0x42679324, 0xdd88076f, 0x50119141, 0xef4b1085, 0x2007420c, 0x430f1545, 0xe98c0f71,
0x470c7151, 0x1042097f, 0x21ff4a05, 0xdd925b8f, 0x210f3d52, 0xf3471414, 0x5271890a, 0xd58f1f3f, 0x850eef47, 0x3c3c2165, 0x4709634b, 0x41430b84,
0x20075305, 0x490f0345, 0x614f0e2b, 0x088f4d0b, 0x4909b646, 0x1b47252b, 0x0ea14c17, 0x890b8744, 0x0b86440b, 0x42096d4e, 0x6345248b, 0x16d54f0f,
0x4508f547, 0xae4c0b75, 0x0594440d, 0x46211b42, 0xfd8b13b5, 0x500a9352, 0xf3520e3d, 0x20f34210, 0x46135541, 0xd9450ec1, 0x0d794811, 0x9328f34d,
0x0e8d426b, 0xf9476b8b, 0x0d814a0d, 0x9142d7a0, 0x0fc5410f, 0x410c9947, 0xdd4808bb, 0x0c234707, 0x411eff47, 0xfb420fad, 0x0d3d540c, 0x430a8545,
0x9d4139bf, 0x09bf430e, 0x164c0987, 0x4700200f, 0x4346236f, 0x14854c0b, 0x550a6d50, 0xab570def, 0x209b4110, 0x8f0f9144, 0x0fdf556f, 0x15476f84,
0x097d550b, 0x42269b41, 0x45431379, 0x09714206, 0x8b05d542, 0x241f44ce, 0x6d425b93, 0x0dd94212, 0x44089549, 0x7142078c, 0x2c3f410a, 0x4a0b094a,
0x054a08d9, 0x051b4211, 0x450d044a, 0x6fa007db, 0x460f4b43, 0x4b430fbb, 0x0ab5460c, 0x58092b4c, 0x0128088b, 0x46000a00, 0x64003c00, 0x0c63ac18,
0x0a1e2332, 0x0a14320a, 0x0a1e145a, 0x01000014, 0xf6ff0a00, 0x14202382, 0x3b212383, 0x07b95e01, 0x0a140a22, 0x14262583, 0x00001e14, 0xcf6d0300,
0x00462606, 0x00170007, 0x09ed6c1b, 0xac5d3320, 0x06725d06, 0x82071521, 0x141e213e, 0x3c203a82, 0x21089f79, 0x8e83641e, 0x2205555e, 0x840a0a32,
0x00e2226f, 0x8a97825a, 0x18152047, 0x210d5070, 0x58821523, 0xaa824784, 0x8a82a682, 0x47833c20, 0x94182820, 0x93920872, 0x33823720, 0x35233522,
0x6b07886f, 0x372408e2, 0x46352315, 0x4621938d, 0x82498464, 0x8ce3825c, 0x05c16693, 0x1b6fce84, 0x82558506, 0x23352357, 0xd982500a, 0x44839188,
0x00289088, 0x0a000500, 0x9600e2ff, 0x0723d782, 0x5c001700, 0x17200625, 0x08f36918, 0x86066157, 0x0589620f, 0x24093d41, 0x2b153307, 0x0e3b4101,
0x8206b66e, 0x14142472, 0x41143c14, 0x14530b47, 0x06245005, 0x08a3e319, 0x2b207b83, 0x200c5f70, 0x07855e33, 0x2005055f, 0x610f8935, 0x0a2009e7,
0x0a224682, 0x6d821e14, 0xd25e2820, 0x780a2106, 0x820d6b41, 0x9624841a, 0x077741e3, 0xe75e2720, 0x67332005, 0x3521050a, 0xc57b1833, 0x056e6008,
0x15371525, 0x82073523, 0x418220ff, 0xe3890a8b, 0x28145024, 0x97411414, 0x20e3880b, 0x05bd713c, 0x83055370, 0x182920e3, 0x410b4775, 0x7d8208e6,
0x2211b141, 0x41963335, 0xe08b07b2, 0x281e8c23, 0x08ba410a, 0x250d5342, 0x5a000000, 0xe7426400, 0x41332007, 0xe74206af, 0x0e524222, 0x00010023,
0x424b860a, 0x42830553, 0x2012e542, 0x0b52420a, 0x44825020, 0x880ee342, 0x0018248f, 0x4200001c, 0x3b220be3, 0x4f601501, 0x42352008, 0x0a200ae4,
0x14250082, 0x14280a1e, 0x0e794364, 0x938a0020, 0x4b831b20, 0x557e3520, 0x42498a08, 0x3c2105e9, 0x0cea4214, 0x200c1042, 0x061f6d00, 0x27419620,
0x06eb4206, 0x18072b41, 0x42088dad, 0x768217eb, 0xdf433720, 0x06274407, 0x410e0742, 0x06420a4b, 0x83c3860f, 0x8329207b, 0x05635fc3, 0x220ad942,
0x44231523, 0x6741134d, 0x0c074208, 0x420c6f41, 0x00220ce7, 0xdf8e0000, 0x2628e742, 0x013b3523, 0x42352315, 0x142315e7, 0x413c1414, 0xcb430c99,
0x207b8612, 0x09ef412b, 0x420cd942, 0x6f8416e9, 0xcb43c382, 0x6464220e, 0x14eb420a, 0x44050b66, 0xc3410eaf, 0x4546204a, 0xc34109f6, 0x00462118,
0x8242c341, 0x13cb4368, 0xc341df94, 0x9346204a, 0x613220e0, 0xfb43053f, 0x06ab4405, 0x4d463320, 0x16c14111, 0x4115ab44, 0xf36c15be, 0x005a2806,
0x00070046, 0x191c0018, 0x2509c1e4, 0x15231533, 0x1143012b, 0x0a94470a, 0x8a081b44, 0x0c3f7cbc, 0xaf444f83, 0x0c7b412a, 0x938c0020, 0x1b731720,
0x64fd8406, 0xae440584, 0x050d7d14, 0x41142821, 0x27480b4f, 0x00002206, 0x418f8600, 0x52831243, 0x5a200382, 0x410c3f45, 0x73640b2b, 0x00502608,
0x00240046, 0x0aa96f28, 0x20050e47, 0x859a8315, 0x35233146, 0x3315013b, 0x33353315, 0x15331735, 0x0a1e2823, 0x1e200083, 0x10645f18, 0x0a206c82,
0x14211483, 0x251f8228, 0x46140a1e, 0xb118000a, 0x4621076f, 0x055b6100, 0x0b192f20, 0x937a0cb1, 0x18728e08, 0x2008a777, 0x666e8227, 0x748e0683,
0x0a0a3c25, 0x820a0a46, 0x0a1e2105, 0x8505a968, 0x82142079, 0x0a282106, 0x1313191b, 0x200ec445, 0x05164b33, 0x35171522, 0x02826282, 0x3c67b282,
0x5a142305, 0xf2182832, 0x6782101b, 0x23079b49, 0x00460064, 0x08cd7418, 0x180b4670, 0x85093a40, 0x353321d6, 0x28226383, 0x51820a14, 0x821e0a21,
0x320a22a4, 0x1900820a, 0x86090fbc, 0x201382b7, 0x07c7780a, 0x00000025, 0x1b64005a, 0x75082bff, 0xa9480891, 0x71508205, 0x152008d5, 0x3d215e84,
0x986d1801, 0x05a26807, 0x21068141, 0x51833c14, 0x76845882, 0x28140a24, 0x1f821e0a, 0x07765c82, 0x058f4108, 0x41370021, 0x577207e4, 0xdd611808,
0x08854308, 0x23011d23, 0x8d5d8535, 0x835e8263, 0x93da856e, 0x00822763, 0x003f003b, 0x5b851700, 0x20073977, 0x098b6f23, 0x3520cf91, 0x8408af75,
0x8f332087, 0x207382df, 0x83e3860a, 0x1e0a210a, 0x1e207d83, 0x08779518, 0x9d868b8a, 0x0a8c2823, 0x86f78b0a, 0x82372093, 0x05616e8d, 0x6d41718a,
0x08a67008, 0x08d14418, 0xb1822b87, 0x0f412320, 0x2093930f, 0x1893a36e, 0x2009cf78, 0xb19c1817, 0x558f1809, 0x059d410c, 0x82312321, 0x33072390,
0x7c6d2315, 0x82d98605, 0x460a2106, 0x8305fe4a, 0x140a2105, 0x00200082, 0x25066344, 0x00640078, 0x1361000f, 0x78508205, 0x0b8208b4, 0xc2820720,
0x4805825e, 0x372005de, 0x6e215b82, 0x823d820a, 0x4c502003, 0x3c200896, 0x28250982, 0x28500a0a, 0x067b4828, 0x07450a20, 0x0b421806, 0x07f77509,
0x088f6818, 0x97181520, 0xab830869, 0xaf843720, 0x89429982, 0x21088405, 0x68853c0a, 0x891a0583, 0x00280a13, 0x46005a00, 0x1b001300, 0x0b016918,
0x09f96818, 0xb1823720, 0x8982c183, 0x820a0a21, 0x4f048294, 0x0a220717, 0x15860a0a, 0x20095f6b, 0x6ffb821e, 0xd582069f, 0x00646423, 0x056f4600,
0xa5181e20, 0x14220a03, 0xbb704614, 0xe2ff2205, 0x82178e00, 0x20e3852f, 0x412f8278, 0x32214343, 0x1243410a, 0x474b7782, 0x07074d0a, 0x2122474b,
0x9b4d821e, 0x4e642015, 0xe1490b77, 0x0f2f4e13, 0x4b4b4782, 0x79938d0e, 0x2f420809, 0x0a462412, 0x4e14140a, 0x0a2409c3, 0x3282500a, 0x4c0e2742,
0xe383058f, 0x1a05d541, 0x440a9ebe, 0x232006cb, 0x6a475885, 0x06c54e05, 0x47141421, 0x82200cce, 0x4c09534d, 0x374e0573, 0x214b4b2f, 0x490b4f41,
0xc3850f88, 0x64009623, 0x46374e00, 0x4b0c7341, 0xff210c4f, 0x5b4f4be2, 0x4b0a3342, 0x7b86124f, 0x3720e382, 0x190a3375, 0x18086105, 0x82089340,
0x06b34111, 0x07823520, 0x4b4b8220, 0x05b94e11, 0x0788d787, 0x53757d82, 0x00002405, 0x18460050, 0x2009ef9f, 0x121d5137, 0x15332724, 0x9118012b,
0x142307c1, 0x42280a1e, 0x0a200518, 0x210b5e42, 0xdf470a3c, 0x85002005, 0x0a7f7a4f, 0x4408cf4f, 0x232005e0, 0x07914b18, 0xbb4f0a20, 0x83462008,
0xfd9d18ff, 0x18a28208, 0x8b0bd79a, 0x12f5429b, 0x0781a118, 0x25450a20, 0x20e28408, 0x07417f0a, 0x08ad4618, 0x7a112345, 0x23200b7f, 0x3322a582,
0x4d882335, 0x9c884620, 0x9a828b82, 0x08eea418, 0x00294f83, 0x00baff03, 0x00d8ff5a, 0x070f7678, 0x4b822720, 0x07639118, 0x5808ec6f, 0x00200551,
0x2f820082, 0xffe2ff25, 0x87f6ffd8, 0x1907202f, 0x880a0b39, 0x2366822f, 0x02000a14, 0x64205b86, 0x00202b84, 0x25825987, 0x0a0a1423, 0x05ab4b64,
0xff212382, 0x204f88ec, 0x07d94500, 0xd145a482, 0x820a2005, 0xff012273, 0x20a382c4, 0x057745ce, 0xc8824583, 0x18826420, 0x3b821782, 0x8b84ce20,
0xe0843984, 0x03000022, 0xe2202f84, 0xab41d38d, 0x07b94807, 0x1e248082, 0x04000a0a, 0xec20a384, 0x07202b82, 0x83063942, 0x7f3320a7, 0xdd860829,
0x08418218, 0xc44e9584, 0x08256505, 0x8b821e20, 0x73860220, 0xeb828220, 0x84000b21, 0x1b3720eb, 0x820aad1e, 0x780a22ec, 0x8237821e, 0x0617412a,
0x8200ec22, 0x00217184, 0x062b4827, 0xc7481520, 0x82272006, 0x08fa4a7d, 0x860a2821, 0x2a418237, 0x0000001e, 0x00b0ff02, 0x82ceff5a, 0x0007213b,
0x35206783, 0x15416485, 0x820a2006, 0x765a2037, 0x2b8205ac, 0xa6ff0422, 0xd8202b82, 0x0f232b86, 0x88001300, 0x351724db, 0x82271533, 0x82232003,
0x4250206b, 0x142105af, 0x226b820a, 0x841e0a82, 0x22128200, 0x82010000, 0xff50243f, 0x825a00f6, 0x24d184d3, 0x5a50505a, 0x2317840a, 0xf6ffecff,
0x82097741, 0x840a2017, 0x00c42817, 0x00d8ff46, 0x8907006e, 0x823c2069, 0x6e0a254a, 0x00141414, 0x1f83bb82, 0x6400e222, 0x23411f82, 0x05674105,
0x25840582, 0x0a0a1424, 0x4d180a64, 0x142208af, 0x01821e00, 0x0993ac18, 0x9f820a20, 0x00234382, 0x820a0014, 0x193c2017, 0x20095f12, 0x823f8215,
0x0a0a223a, 0x20fe823c, 0x08cb7a00, 0x50002822, 0x18087f7e, 0x820b2177, 0x8237202d, 0x203184f9, 0x8205820a, 0x141e2202, 0x2102820a, 0xc482460a,
0x0a000222, 0x2006a746, 0x061d4f0b, 0x2206f970, 0x46172315, 0x48180858, 0x251909ae, 0x1e210912, 0x23ba840a, 0x1e140a28, 0xf5830283, 0x32265482,
0x1482460a, 0x6c85320a, 0x86085278, 0x001e24a3, 0x1b320046, 0x180ffb24, 0x2008e54f, 0x20008314, 0x7e47180a, 0x21418207, 0xf9840300, 0x33995a20,
0x2005797d, 0x75c8830a, 0x00270672, 0xffc4ff01, 0x82d8ffe2, 0x00052371, 0xae822300, 0x3c233522, 0x1182f184, 0xbaff0422, 0xec201b82, 0xfb420982,
0x18072008, 0x210d55ab, 0x3968012b, 0x09b11806, 0x27781808, 0x82e18409, 0x0000220e, 0x20638402, 0x224782e2, 0x850b0003, 0x23c58265, 0x35231523,
0x0b896119, 0x2106274b, 0x7382b0ff, 0x7384ce20, 0xa3452b83, 0x21778206, 0x7c183223, 0xa082087e, 0xbb822082, 0xe2ffec24, 0xf5822800, 0x83082d42,
0x23352253, 0x212a8214, 0xe2820a14, 0xbb182882, 0x3c2008a3, 0x33202785, 0x0a3b4c18, 0x0a283c22, 0x32202182, 0x14200382, 0x096ba718, 0x4e008c21,
0x39450b2b, 0x0ec84d12, 0x6d172321, 0x0720064d, 0x0a210782, 0x074d4582, 0x0a210787, 0x21b68282, 0x2e4e0a0a, 0x0e9b4605, 0x08630819, 0xc8207d83,
0x02197782, 0x432007e7, 0x0b13ac1a, 0x57823520, 0x840c6152, 0x0d3f7e0f, 0x2008d345, 0x7fa11833, 0x20258208, 0x06325664, 0xbe208b88, 0xb8189d88,
0x9882080e, 0x968e3220, 0x2107d54a, 0xa0850a1e, 0x4206ef46, 0x0f2308f7, 0x1a001300, 0x46080313, 0xc34e054e, 0x140a2405, 0x82281e0a, 0x821420ea,
0x446e2041, 0x002407fe, 0x0a000400, 0x6e2a3b82, 0x21006400, 0x29002500, 0x3d832d00, 0x20055a4c, 0x47d88233, 0x9d180ae0, 0x37200aab, 0x82075541,
0x8350205a, 0x225b8450, 0x8350140a, 0xf6311ac2, 0x0a1e220c, 0x216f8246, 0xc5826e0a, 0x140a1e22, 0x0a220282, 0xef570a1e, 0x82aa2006, 0x00312273,
0x19d91a35, 0x9f352008, 0x1b1f8975, 0x2009171e, 0x82898307, 0x82372085, 0x20898b07, 0x084c418c, 0x082cd818, 0x0f4c5a20, 0x8a068306, 0x05504194,
0x9e829c88, 0xff030027, 0x00e2fff6, 0x209f8246, 0x05e5450b, 0x58771720, 0x82152009, 0x17152168, 0x3c220482, 0x3482280a, 0x3e825020, 0x53410285,
0x01002105, 0x82203b84, 0x7906174a, 0xbf56095d, 0x51548312, 0x15220748, 0x4d820a33, 0xd548a184, 0x1a3c2005, 0x200840e2, 0x0b70576e, 0x0a216b85,
0x20678600, 0x236782be, 0x1700003b, 0x08374518, 0x8b08b176, 0x16d7556f, 0x51847f85, 0x1e477b89, 0x20838505, 0x41838278, 0x838c05cd, 0x0a379718,
0x2209b752, 0x501f0064, 0x76180699, 0x53180876, 0x51180872, 0xb94609b0, 0x011d2405, 0x44333523, 0x0a210995, 0x08ab7828, 0x93500a20, 0x23628406,
0x50280a14, 0x081b8182, 0x82220947, 0x35503300, 0x15372105, 0x51090a50, 0xe04c1006, 0x82898809, 0xde77186e, 0x87372008, 0x8474847b, 0x0574477a,
0x14200f82, 0x21056f7a, 0xf9820a0a, 0x7c181420, 0x878208fa, 0x0c840a20, 0x22821420, 0x0a500a22, 0x28200f82, 0x26063750, 0x00140014, 0x185a003c,
0x2009cfc8, 0x265d8217, 0x0a1e1e32, 0x7a461e1e, 0x02200543, 0x0a202182, 0x6e202382, 0x5a292393, 0x00146414, 0x00020000, 0x4205821e, 0x1720056f,
0x09f54918, 0xda823520, 0x8b500720, 0x33152208, 0x06f14646, 0x0a20b884, 0x21056549, 0x14830a50, 0x03233d82, 0x19ff1e00, 0x820907eb, 0x85172045,
0x23831839, 0x51581808, 0x08e54a07, 0xed860a20, 0x46231083, 0x181e1414, 0x26073340, 0x00f6ff14, 0x19500046, 0x4115db66, 0x332006ca, 0x0bd78f18,
0x1e0a4623, 0x5202880a, 0x1d7c06ca, 0xcf8f1808, 0x24e38207, 0x3200e2ff, 0x064f4a00, 0x230c2d7d, 0x145a1464, 0x0025c282, 0x00140003, 0x197b820a,
0x72093305, 0x1726068f, 0x46152335, 0x4b821e1e, 0x06825782, 0x2f83b282, 0x28000422, 0x3c20ab82, 0x0347ab82, 0x43372008, 0x07860709, 0x8f450720,
0xe5731806, 0x8232200d, 0x82462046, 0x0a1e2203, 0x07981828, 0x1b3c2009, 0x520e4b2a, 0x275b08ff, 0x063a4808, 0xc3875387, 0x74185b8c, 0xa01809dd,
0x6143086c, 0x821e2008, 0x8c02206c, 0x426385b3, 0x352106c2, 0x06154333, 0x32243083, 0x460a140a, 0xe7830382, 0x2b7a3389, 0x4715200a, 0x14260aa3,
0x4628143c, 0x2b852814, 0xecff1e26, 0x32003c00, 0x0d63cb18, 0x831e3c21, 0x05924200, 0x00020023, 0x1b01821e, 0x201d9bc5, 0xef431a02, 0x87631908,
0x01641a20, 0x6f781808, 0x038c1808, 0x14502109, 0x0382c382, 0x8a420694, 0x05584309, 0x82084b45, 0x22cb8308, 0x42140006, 0x821806d3, 0x33200797,
0x0b136419, 0x090d5118, 0x0beb5818, 0xbc553520, 0x15332205, 0x0fa74133, 0xf6184620, 0x098909f5, 0x2008ac4b, 0x09c6410a, 0x1e249789, 0x280a320a,
0x00220382, 0x8b860500, 0xab187820, 0x21200875, 0x2006a943, 0xb8851833, 0x20718409, 0x0de76533, 0x1423cb82, 0x190a2814, 0x8208f05a, 0x0a3c2170,
0x0a227f84, 0x02820a50, 0x460a5023, 0x4fce1b0a, 0x8203200c, 0x33002161, 0x0e7d7b19, 0x0c193c20, 0x508209ec, 0x000a0a25, 0x821e0004, 0x003c2235,
0x87441846, 0x18338309, 0x2007b1aa, 0x893f8237, 0x470a2033, 0x3682057a, 0x82010021, 0x00502137, 0x2e05fb41, 0x15333700, 0x1e1e1e23, 0x00001464,
0x1b0a0002, 0x210c972c, 0x8f7c3523, 0x1e3c2906, 0x0a0a3214, 0x1e0a1e32, 0x27823e83, 0x27821e20, 0x5a005024, 0x19610500, 0x35072609, 0x14501523,
0x2224821e, 0x85281e50, 0x86032027, 0x4b1e209f, 0x9d8207c7, 0x2008a546, 0x20778227, 0x0c874507, 0x0482d484, 0x140a1423, 0x208b840a, 0x22a38200,
0x7c0d0078, 0x33200ac5, 0x2005fd54, 0x20378217, 0x84258232, 0x1e1e2331, 0x0b840a5a, 0x0022c283, 0xc8820003, 0x00460023, 0x84098278, 0x20738239,
0x05114433, 0x24054b45, 0x1e323335, 0x2062831e, 0x21cd830a, 0x43834614, 0x5a206f8a, 0x824e6fa2, 0x83462006, 0xef471869, 0x206fa30b, 0x216f8628,
0x00830005, 0x50004622, 0xb944a782, 0x1533210b, 0x2720db82, 0x07820583, 0xbd4b1720, 0x3c462406, 0x421e1e3c, 0x0a25099b, 0x14500a46, 0x20bf8214,
0x051c4414, 0x20058f54, 0x254b8250, 0x000b0007, 0x51440017, 0x82072008, 0x44fb8443, 0x502506b5, 0x0a3c3c0a, 0x83fe831e, 0x280a2585, 0x460a0a1e,
0x2b09a64f, 0x0a000100, 0x46001e00, 0x0f003c00, 0x8b834385, 0x73413520, 0x14462106, 0x2d827283, 0x21072d43, 0xcf450000, 0x003c2305, 0x7783001e,
0x82170021, 0x33352465, 0x82353315, 0x833c2007, 0x46698525, 0x2b830553, 0x5982f620, 0xef841e20, 0x07232b84, 0x42152335, 0x2820059f, 0x20057846,
0x207f8202, 0x08534d14, 0x4627c58c, 0x0a28280a, 0x840a0a32, 0x00142183, 0xff237b82, 0x826e00ba, 0x50782007, 0x72820d9b, 0x1e1e2823, 0x053c4478,
0xc4ff0226, 0xecfff6ff, 0x9f845582, 0x7b420720, 0x013b2105, 0x1e209f82, 0x820b5b59, 0x02002546, 0x0a00c4ff, 0xcb862b82, 0x2b9e2720, 0x2b865784,
0x89825795, 0x274e578b, 0x95002005, 0x222b8a57, 0x4af6ff46, 0xeb4f0673, 0x06094205, 0x815a0720, 0x4a0a2005, 0x64200521, 0x8408024a, 0x823c20b7,
0x41502033, 0x071b0583, 0x14200b9d, 0x20069562, 0x822d8446, 0xff01238c, 0x2b8300a6, 0x11007825, 0x19270000, 0x420afb0c, 0x1420051e, 0x22057d5a,
0x5a640a14, 0x00280888, 0x92ff0300, 0x1e003c00, 0x08d31a19, 0x36840020, 0x33353333, 0x23353307, 0x35331533, 0x501e8c1e, 0x1e14143c, 0x2566820a,
0x28283232, 0x93820028, 0x6e243385, 0x0f000b00, 0x29826985, 0x25054c42, 0x46331523, 0x34820a3c, 0x28283c22, 0x20066061, 0x219a821e, 0x67820600,
0x2800282b, 0x13008200, 0x29001700, 0x05154c00, 0x88070341, 0x8235203e, 0x35172375, 0xc6181523, 0x23571163, 0x35272207, 0x221d8333, 0x820a1e23,
0x961e2200, 0x21cb821e, 0x9d183214, 0x322009c9, 0x0a201684, 0x7d82eb82, 0x22064c49, 0x4b141428, 0x142007c3, 0x151b0082, 0xff21097f, 0x20fb82a6,
0x22fb820a, 0x82180014, 0x08185ec7, 0x1a051243, 0x2208a2bf, 0x540a2814, 0x0a2505da, 0x28281e14, 0x9b721946, 0x82322008, 0xff0722d9, 0x2043827e,
0x5443823c, 0x23260587, 0x33002b00, 0x4d823700, 0x5d433320, 0x8315200b, 0x0723210d, 0x37201282, 0x2320bf82, 0x1077be18, 0xf7821520, 0x37233522,
0x14237282, 0x820a500a, 0x280a28d3, 0x28460a32, 0x186e14aa, 0x44081583, 0x1e830659, 0x8a48ee89, 0x27278309, 0x05000a0a, 0x1e009cff, 0x82200182,
0x0beb8c18, 0x59183720, 0xbf430867, 0x06c94306, 0x334a9583, 0x29238507, 0x0a143315, 0x46145a14, 0xf2841e0a, 0x140a0a24, 0xf54c5a46, 0x1e5a2105,
0x80180082, 0x3c2208de, 0x84821414, 0x87433c20, 0xff032c05, 0x002800a6, 0x00820014, 0x82240015, 0x27002109, 0x944ae782, 0x82352008, 0x231521ec,
0x27200182, 0x8305415e, 0x21e7820a, 0x9482013d, 0x23502820, 0x056f6805, 0xcd5b1e20, 0x82fc8305, 0x0589440a, 0x1e2d0585, 0x000a460a, 0xff030000,
0x001e00b0, 0x2467820a, 0x0017000f, 0x08c35223, 0x84353321, 0x22cd8201, 0x83352335, 0x4137205e, 0x0e8207c0, 0x5318a282, 0x2341089a, 0x640a2505,
0x0a3c3c0a, 0x50245982, 0x32141432, 0xea828182, 0x82040021, 0x8228205b, 0x0064225b, 0x07e54c13, 0x804c2720, 0x20528206, 0x83588233, 0x18232053,
0x820c15a7, 0x181720c0, 0x200847b8, 0x205c8246, 0x06c3455a, 0x20059f41, 0x21118264, 0x0b821e0a, 0xfc4c3c20, 0x43471809, 0x19462008, 0x18085373,
0x4808974b, 0x462605e1, 0x320a0a32, 0x00821e28, 0xa6432820, 0x0b336105, 0x18005021, 0x4109a390, 0x33200556, 0x3220c484, 0x5a2ac982, 0x001e0a14,
0x00000200, 0x10191400, 0x997f0833, 0x83502008, 0x183c2000, 0x8308b35c, 0x191e2023, 0x540b5732, 0x1e2005a6, 0x4b053043, 0x531905ea, 0x94180eb7,
0x8118076b, 0xae85088e, 0xa7473520, 0x14142205, 0x5aa78214, 0x142006e8, 0x0a248a83, 0x00040000, 0x65820482, 0x0f005a27, 0x23001b00, 0x8bc81900,
0x0593440c, 0x45832720, 0x35227c85, 0x36423337, 0xc4141905, 0x833c2007, 0x280a2452, 0x18141e0a, 0x200c7d81, 0x081b4d46, 0x460a0a24, 0xac820a46,
0x22055c4e, 0x82060000, 0x820a20fb, 0x005022fb, 0x2da2180b, 0x4b60820d, 0x098409d7, 0x85332721, 0x0bbf7978, 0x0a0a5026, 0x0a0a3232, 0xf65c6d83,
0x141e2105, 0x3c220b83, 0x98490a0a, 0x82322005, 0x22898307, 0x41140a14, 0x90180548, 0x64210757, 0xef8d1800, 0x05a74f09, 0x63182320, 0x35200901,
0x91580b85, 0x71f21805, 0x82ef830c, 0x022b2303, 0x7a823335, 0xd8825482, 0x5a831e20, 0xcd1a0a20, 0xe1840c64, 0x20080544, 0x0656530a, 0x1e0a1e24,
0x8118145a, 0x434b09af, 0xcd811908, 0x9548180d, 0x82072008, 0x18462086, 0x2009fa81, 0xdc491814, 0x3232280a, 0x00000032, 0x4ef6ff03, 0x0f210813,
0x18458200, 0x200fb793, 0xa7fa1927, 0x20758208, 0x184a821e, 0x2209d49d, 0x82464646, 0x000a2e4f, 0x00000002, 0x00320046, 0x00070064, 0x790d190f,
0x33152108, 0x2205df41, 0x84142815, 0x510a2000, 0xd618084f, 0x5a200b8b, 0x08df5518, 0x21083844, 0xa6850a32, 0xf0413c20, 0x84002005, 0x0000245f,
0x481e0050, 0x33200513, 0x2406bd4a, 0x14505050, 0x188d8328, 0x2009f358, 0x200a8250, 0x2083830b, 0x09ab5317, 0x23222e82, 0x7c825015, 0x1e200282,
0x0854c618, 0x24058f6e, 0x00e2ff00, 0x1857865a, 0x2309d354, 0x0023001f, 0x8208c948, 0x271529c5, 0x013b1523, 0x27152335, 0x21051244, 0x07822315,
0x332a1382, 0x465a5a5a, 0x1e0a460a, 0x1a4f0a0a, 0x210a8306, 0x51183c1e, 0x804c0818, 0x8bc91808, 0x410a2009, 0x87180763, 0x35200fd7, 0x0c4faf1b,
0x4105c84a, 0x0a200500, 0x24052355, 0x00ecff00, 0x19ab8250, 0x82089776, 0xea4f1899, 0xab971808, 0x7da51813, 0x0a32210c, 0x5308044d, 0x66180ac4,
0x4620095b, 0x8206c16c, 0x4d2320d9, 0x3f1906f4, 0xc7580b4a, 0x0a142205, 0x82478228, 0x831e209b, 0x20dd84e2, 0x21fc8450, 0x5e18505a, 0x28200b4b,
0x44051f48, 0x35230839, 0x82171533, 0x283c2257, 0x21838228, 0x7f832828, 0x183c3c21, 0x82093b5e, 0x004622d7, 0x086b4a00, 0x0979411a, 0x830a2821,
0x830a2024, 0x215e832f, 0x57440200, 0x85142006, 0x5033202b, 0xeb840a07, 0x0a209b82, 0x4c820083, 0x085f9f18, 0x0a077719, 0x20056544, 0x22548450,
0x82140a50, 0x26558200, 0xff000002, 0x825000e2, 0xaf5a1859, 0x21ae8208, 0x51460733, 0x50502106, 0xe04db282, 0x20888707, 0x21338a05, 0xff47000d,
0x08a75305, 0x5f553985, 0x82272005, 0x24f983f5, 0x460a4650, 0x209d820a, 0x052a4f3c, 0xed491e20, 0x08544705, 0xd6188682, 0x142108d3, 0x06e55500,
0x9a502320, 0x8223200c, 0x3c4626bc, 0x0a28280a, 0x82c0820a, 0x076346bc, 0x00820020, 0x8f860620, 0x42001421, 0x00200bc3, 0x08485d18, 0x84067f41,
0x0ac54293, 0xda821420, 0x140a5022, 0x0e538c82, 0x185f8208, 0x180842a4, 0x2708f760, 0x5a00e2ff, 0x03006400, 0x1743e982, 0x1823200a, 0x200a879e,
0x180b8237, 0x220bc89f, 0x825a5a5a, 0x2002843d, 0x06b64546, 0x78821e22, 0x13826583, 0x875a1e21, 0x21ba82f8, 0xbb820500, 0x5000f623, 0xa3341900,
0x84638209, 0x05ae41a9, 0x83084544, 0x2217836f, 0x8323013d, 0x66152013, 0x0a200504, 0x3220c382, 0xb748c182, 0x83322006, 0x2304825a, 0x141e1414,
0x60820082, 0x2007df41, 0x0d9f4c00, 0x50505025, 0x441e3c0a, 0x2389063c, 0x20050342, 0x207a8533, 0x065d4317, 0x3c3c0a22, 0x3a486682, 0x2fd38405,
0x0000000a, 0xff140001, 0x004600e2, 0x0013001e, 0x0925b318, 0x09af6518, 0x4e463321, 0xc845088b, 0x086f4205, 0xecff0a22, 0x2820ef82, 0x17203782,
0x0db58a18, 0x77821520, 0xdc821520, 0x35230724, 0x88555033, 0x281e2108, 0x9541a683, 0x8b681809, 0x8232200a, 0x174f1843, 0x46352007, 0xb384066e,
0x140a3222, 0x46064949, 0x0a2705c1, 0x14141e0a, 0x82040000, 0x82f620b3, 0x003c21b3, 0x08d9cd18, 0x7c08d748, 0x7b8306fb, 0x7b823c20, 0x28281e24,
0x0382280a, 0xd1670a20, 0x0a1e2205, 0x92f48214, 0x4317203f, 0x35200683, 0x0aa1c018, 0x39824620, 0x27680283, 0x84bc8408, 0x001e27b7, 0x003c0032,
0xdf180064, 0xe9450e03, 0x20068206, 0x18a78314, 0x2007a7e8, 0x1827826e, 0x1808019f, 0x220c8a64, 0x19153335, 0x41091f43, 0x3c20055f, 0x21068952,
0xfb82140a, 0x06000024, 0x69821400, 0x6e004622, 0x0c67c118, 0x87087b4e, 0x012b28b7, 0x23373335, 0x58013b35, 0xee8306f5, 0x1908f96e, 0x23082f7c,
0x0a0a0a5a, 0x07821984, 0x000a3225, 0x841e0002, 0x06074d5d, 0x21095366, 0x5b5b3315, 0x059d4306, 0x8a834620, 0x14500a22, 0x3382fa82, 0x2205f741,
0x630f0078, 0x8f1806b1, 0x07210c4d, 0x820e8435, 0x15332140, 0x2105e043, 0xd085141e, 0x1e270684, 0x321e1e3c, 0x821e1e28, 0x214c8202, 0xb3440010,
0x05234f05, 0x180db746, 0x230bdfc3, 0x1500003f, 0x0a2df918, 0x1b8b2819, 0x0b3fd518, 0xc9180b83, 0x3222094b, 0x3b460a0a, 0x08cc4605, 0xdd821420,
0xc14b2820, 0x17961806, 0x843c2008, 0x0a142226, 0x05db4414, 0x26830782, 0x43056f47, 0x19830509, 0x13000022, 0x08632319, 0x1f001323, 0x339c1800,
0x00472707, 0x0057004f, 0xd618005f, 0x7b260931, 0x83007f00, 0xea1a8700, 0x352009cb, 0x200aa968, 0x092c4137, 0x23373322, 0x3320e382, 0x07ad6418,
0x0f190789, 0x2f820cd7, 0x7b4d1720, 0x06014a07, 0x37850720, 0x5b022b21, 0x97180509, 0x16820878, 0xee5d1a83, 0x20078207, 0x450f8323, 0x28200522,
0x6420ef82, 0x8406d144, 0xda5c18fa, 0x085c6209, 0x8909b44a, 0x053b4109, 0x4105f759, 0xcf180850, 0x14210927, 0x05e4461e, 0x134a0584, 0x06744208,
0x07824620, 0x0a203982, 0x0a840783, 0x820a3c21, 0x820a2042, 0x4d322012, 0x0022051e, 0x0083000b, 0x7800502e, 0x15000700, 0x25001d00, 0x35002d00,
0x0a350919, 0x5b050d4c, 0x46430549, 0x09294108, 0x6718e282, 0x35200a97, 0x23202185, 0x5a181f89, 0x272007e5, 0x07202582, 0x84830382, 0x14323c25,
0x82141e1e, 0xfdcd18c1, 0x1817820a, 0x4d085c9d, 0x118605df, 0x431e1e21, 0x14200552, 0x5144c384, 0x840a2005, 0x21408212, 0xf582280a, 0x05826420,
0x08000022, 0x2e08d742, 0x002f0017, 0x003f0037, 0x004f0047, 0x19570053, 0x18096f29, 0x500f96d6, 0xc3840a2f, 0x21054643, 0xd38f2335, 0x4b070d42,
0x834b07ff, 0x84232006, 0x078f46a1, 0x4b0a544f, 0xdf420789, 0x23088408, 0x500a0a1e, 0x2784f582, 0x14141422, 0x0a200e82, 0x12840683, 0x82081e43,
0x18322029, 0x2108daac, 0xdf460600, 0x00032508, 0x000b0007, 0x200a3d69, 0x05334507, 0x4407c649, 0x50200883, 0x28225382, 0x95852828, 0x20061a45,
0x08504114, 0x180a1421, 0x430ad351, 0x1f2107fb, 0x7fc31900, 0x33352114, 0x4906e74c, 0x4e190853, 0x60820ab5, 0x8705674b, 0x1e1e23da, 0xcf4d321e,
0x0a0a2b05, 0x0a000800, 0x5000e2ff, 0x83562800, 0x22b98508, 0x4d00001f, 0x07200b3b, 0x180a4f48, 0x220799a6, 0x44464650, 0x0a2005aa, 0x82068a75,
0x0a1e2107, 0xb7185d82, 0x5b48090e, 0xc7ae1805, 0x9f021a09, 0x06834910, 0x2107b16f, 0xe3475033, 0x1e0a2106, 0x1420a182, 0x08d7c219, 0x141e1426,
0x08000000, 0x087b5718, 0x736ea387, 0x5a352009, 0x63180834, 0x2b210874, 0x235d8201, 0x013b3523, 0x3720bb82, 0x3d270382, 0x17152301, 0x831d2335,
0x0a46210f, 0x8308556e, 0x861e2068, 0x22b9820d, 0x84460a0a, 0x18142002, 0x4109e48e, 0x002c05f2, 0x0a000900, 0x3c00ecff, 0x03007800, 0x830c8149,
0x4c002085, 0xf8190689, 0x37200883, 0x50180983, 0x05420ae3, 0x283c2407, 0x6b1e0a28, 0xe8830ee8, 0x1e219082, 0x20088250, 0x257d8278, 0x1e0a2814,
0x8882320a, 0x820a4621, 0x06a341f6, 0x8200be33, 0x67003b00, 0x97007f00, 0xa3009f00, 0xab00a700, 0x95a31a00, 0x2335210c, 0x33210188, 0x91018615,
0x09c56b11, 0x0b376f19, 0x08c36918, 0x41854390, 0x181c7f43, 0x18111bda, 0x2808499e, 0x35231533, 0x33152327, 0x22088217, 0x840a3c46, 0x05f74f00,
0x0d821420, 0x14200983, 0x32200e87, 0x14201c84, 0x07856418, 0x1908c867, 0x850c3a1a, 0x831b832c, 0x1414233f, 0xc24f460a, 0x05834506, 0x8205f95e,
0x0554431e, 0x28270882, 0x140a0a14, 0x680a280a, 0x3a840768, 0x15842820, 0x33842820, 0x83142821, 0x83238241, 0x22128519, 0x82140a5a, 0x82322000,
0x1b4b1961, 0x48502009, 0x738421a3, 0x6d825384, 0x20076750, 0x0697593c, 0x4600002a, 0x13005000, 0x00002100, 0x18072f4d, 0x4b08fc66, 0xf45a05b7,
0x82152009, 0x203f82c6, 0x824b821e, 0x05336ba8, 0x6f06c243, 0x1c8205e8, 0x0000282c, 0x28000b00, 0x8200e2ff, 0xb4187800, 0xa3180a49, 0x4f200999,
0x2108754a, 0x7b441533, 0x08c96d05, 0x7a8a0720, 0x43072149, 0x5f1807ed, 0xc51807f9, 0x9f18072f, 0x3d8208ad, 0x94418220, 0x82142005, 0x059f4c7f,
0x200a2f49, 0x07524414, 0xdd180a20, 0x2d860851, 0x82461421, 0x054c5e2f, 0x5a0a0a23, 0x24098232, 0x0a641450, 0x21168346, 0x0d82780a, 0x27823c20,
0x190c0021, 0x21086f12, 0x61550015, 0xcbba1805, 0x4900200f, 0xc618067f, 0x15210c6f, 0x05df4733, 0x5309d542, 0xd58b05c9, 0xf3490720, 0x06955906,
0x43013b21, 0xdf440695, 0x82a0200b, 0x060344a2, 0x93181e20, 0x1e200934, 0x21050d4a, 0xfa4f0a28, 0x82ac8206, 0x85e88427, 0x82ff8513, 0x5414200b,
0xbd4405c8, 0x832e8205, 0x1e3c22e5, 0x202a8232, 0x05095e5a, 0x4a822820, 0x000a6430, 0x28000d00, 0xa000e2ff, 0x15007800, 0xa0182100, 0x412a0a45,
0x49004500, 0x51004d00, 0x3d605500, 0x41e98f08, 0xdf8316b5, 0xcf84db83, 0x88051d47, 0x5a2720e3, 0x33200541, 0xe38c1b83, 0x82059b41, 0x820a20b9,
0x06546698, 0x082ba118, 0x45141421, 0x268307c2, 0x84059e4f, 0x202f84e1, 0x23dc875a, 0x14281428, 0x5021de84, 0x213a820a, 0xde82640a, 0x000a0023,
0x0893420a, 0x35002d25, 0x8c003900, 0x4c8782d9, 0x4b5c0949, 0x23c54108, 0x1908535b, 0x840935b0, 0x42e183d5, 0xde470d97, 0x06be4108, 0x0917c018,
0xcb470a20, 0x840a2005, 0x420582ae, 0xce180799, 0x0a210817, 0x059e421e, 0x7824d583, 0x1e0a6414, 0x3c20d482, 0x9f42d683, 0x0c5d7327, 0x5e353321,
0xf15205c1, 0xeb5b1806, 0x4d17200b, 0x372006c6, 0x2b221b82, 0x55663501, 0x21318208, 0xb3411723, 0x07a16506, 0xa0210783, 0x20b4841e, 0x20b98314,
0x4196826e, 0x0a2105be, 0x0ac04114, 0x430abd41, 0x32820581, 0x28202682, 0x20081869, 0x420a830a, 0x4e8307a1, 0x14141e24, 0x22827814, 0x14821420,
0x27052450, 0x00090000, 0x00e2ff1e, 0x09b3c818, 0xc8182d20, 0xa8180cb5, 0x9c180af7, 0xe382081b, 0x71181520, 0x17200861, 0x3724e486, 0x27352315,
0x200a7c66, 0x22d88227, 0x8215013b, 0x331522db, 0x20728282, 0x08784932, 0x83062d54, 0x1e1e229b, 0x05f1501e, 0x3225b282, 0x32280a0a, 0x84f4845a,
0x0a4623eb, 0xd6825a5a, 0x460a0a26, 0x0a3c1e1e, 0x0a201882, 0x9f08165b, 0xdde618b3, 0x8215200d, 0x059353c3, 0x67331721, 0x072105e3, 0x05184535,
0xb3822720, 0x19233721, 0x2508c774, 0x33013d33, 0x1a820715, 0xc7820720, 0x8408154e, 0x26b384b7, 0x0a281e1e, 0x86280a14, 0x4b2082b3, 0xad8405f0,
0x5a23a982, 0x835a3232, 0x220f82a6, 0x821e1e46, 0x200882be, 0x2303823c, 0x000a1e0a, 0x0a200082, 0x088bb818, 0x1f000f24, 0x054b2b00, 0x57131906,
0xed6d1907, 0x2082820c, 0x07a35015, 0x21058d51, 0xc3181533, 0x134d07af, 0x05145005, 0x085d0719, 0x0ad37318, 0x3b262782, 0x27231502, 0x06833523,
0x8408ad51, 0x092954a4, 0x1c8b0e84, 0x490a4621, 0x50200605, 0x28241a82, 0x0a281414, 0x0884ba83, 0x14141e23, 0x84f68232, 0x82502005, 0x821e200c,
0x143c2203, 0x21028214, 0xca180700, 0x412312ef, 0x83004500, 0x05a045cd, 0x820ceb52, 0x6d1520a6, 0x3720077b, 0x5c060b44, 0x401808ff, 0x9c410839,
0x15172d05, 0x0a823523, 0x0a46140a, 0x0a0a3232, 0x0582aa82, 0x20090643, 0x720a8a0a, 0xc84705f4, 0x23a88205, 0x14140a0a, 0x14201d84, 0x5042e484,
0x067b6405, 0xaf880b20, 0x1d001524, 0xb55c2100, 0x0f1f1908, 0x103e690a, 0x2b153323, 0x062c4902, 0x23153323, 0x529d8527, 0x272008bc, 0x07dea618,
0x15220784, 0xb6822733, 0x03822320, 0xb8898220, 0x82052375, 0x4e8f8294, 0x05820519, 0x820a3c21, 0x0a1e2492, 0x8a140a14, 0x4ed583b8, 0x1e23085a,
0x83640a0a, 0x0a4622f7, 0x21388250, 0xbb72000a, 0x00462205, 0x21b9826e, 0x97431700, 0x08356305, 0x9582a085, 0x1522a282, 0xd3504633, 0x08be4708,
0x6e6d1e20, 0x32270806, 0x0014140a, 0x0a001300, 0x12021400, 0x09003c00, 0x29001900, 0x3f003900, 0x51004900, 0x5d005500, 0x71006900, 0x18007500,
0x470d47dd, 0x33210589, 0x425d8215, 0x0f820c87, 0x7b422720, 0x201b8405, 0x20958235, 0x51051927, 0x208d8508, 0x22198437, 0x82352337, 0x21038207,
0x40412123, 0x82252006, 0x8425203b, 0x23152115, 0xbd4e0782, 0x82138808, 0x8505201f, 0x37232115, 0xf1820782, 0xdb4d3320, 0x5b272007, 0xdc2606a7,
0x0a1e0a14, 0xe485dc0a, 0xa00a0a22, 0x22051c67, 0x87f00a14, 0x0ac82611, 0x0ae61e14, 0x2126820a, 0x1382a2fe, 0x0a040125, 0x82c0fe0a, 0x0114220f,
0x2b228518, 0x1414fcfe, 0x7c010a0a, 0xb6fe1e1e, 0x0c821183, 0x14143c24, 0x4b820a8c, 0x0a960a22, 0x52460283, 0x28142106, 0x29193682, 0x0f840b6f,
0x82066a45, 0x2026825f, 0x467e8228, 0x14200567, 0x03829582, 0x5b831420, 0x82059345, 0x0a142417, 0x1a040000, 0x18086f71, 0x1808db67, 0x430983b1,
0x65410711, 0x15332206, 0x69e78333, 0x3c23055b, 0x8632320a, 0x0a50219f, 0x1e20f482, 0x24058253, 0x0a28281e, 0x29578532, 0x9600e2ff, 0x21006e00,
0x6d692f00, 0x013b2105, 0x180a2149, 0x19096de0, 0x180dd925, 0x200ae39f, 0x0ac84617, 0x33350723, 0x06964e15, 0x0a0a7822, 0x21055541, 0xc9836e0a,
0x8205855f, 0x49282005, 0x98840a19, 0x1284a782, 0x2005af4b, 0x055c7814, 0x0a000322, 0x78219784, 0x6dbd1800, 0x23352108, 0x0c3f8219, 0x19081e6c,
0x47084767, 0x6118053b, 0xa38409c5, 0x34820720, 0x15330728, 0x0a0a9623, 0x194b1428, 0x20078206, 0x067a4a28, 0x2105ce47, 0x0d4c143c, 0x5b1e2005,
0xd25a0916, 0x82178206, 0x0a0a2302, 0x54181e1e, 0xff38085f, 0x00f000f6, 0x0007005a, 0x001a0010, 0x002a0024, 0x00360032, 0x003e003a, 0x21075351,
0xc146022b, 0x23372206, 0x06874215, 0x09882720, 0x4405d542, 0x7f5307bb, 0xd2e6240b, 0x820a0ad2, 0x0ac82502, 0x0a14bed2, 0x96207582, 0x46230584,
0x82281e0a, 0x26bb84a5, 0x960a0a3c, 0x82500a0a, 0x50502802, 0x3c32460a, 0x8314140a, 0x321e2d04, 0x32320a0a, 0x14323c0a, 0x000a0a0a, 0x0a209982,
0xd22aa382, 0x0b006400, 0x33002700, 0x57493b00, 0x37002306, 0x90833315, 0x19333521, 0x840aef12, 0x0559410c, 0x5108e35e, 0xbd820829, 0x32820720,
0x23213482, 0x05094217, 0x072a0582, 0xc8152335, 0x280a3c0a, 0xf249aa0a, 0x07a04405, 0x41283221, 0x3c2005f0, 0x5a20ab82, 0x9c828a82, 0x14321427,
0x0a0a6428, 0x05654828, 0x820a1421, 0x1e142307, 0x3b825a14, 0x32280a23, 0xc0b01a14, 0x000a2308, 0x5b500006, 0x00822205, 0x06f1412b, 0x47004323,
0x71471900, 0x37661808, 0xa2681808, 0x00881a08, 0x21bf820c, 0x29442335, 0x21e28405, 0xa7820723, 0x20075b41, 0x059f5217, 0x7c841e20, 0xdb188082,
0x32200ad6, 0x42050c43, 0x28220818, 0xd14b0a0a, 0x82a98505, 0x551420aa, 0xdb8208f9, 0x46145a23, 0x05f65614, 0x82050021, 0x00f622af, 0x5001825a,
0xad82095f, 0x48087d60, 0x85830839, 0x71550720, 0x20078306, 0x090f530a, 0x5c4a3220, 0x0ad45a08, 0x0a3c1425, 0x82500a46, 0x00003b03, 0x000a0008,
0x00540100, 0x001f0064, 0x0043003f, 0x004f0047, 0x005b0057, 0x2f68005f, 0x08d15d05, 0x09831520, 0x4505f742, 0x23200543, 0x220a6b45, 0x84331523,
0x8323821f, 0x051f4109, 0x12822720, 0x23351723, 0x05e57715, 0x27233522, 0x3323af83, 0x82372335, 0x19332017, 0x830a2344, 0x3c3c27ac, 0xf032140a,
0x07820a14, 0x08b19e18, 0x9632142b, 0x641e501e, 0x0a1e0a0a, 0x200483f0, 0x240d823c, 0x1e1e141e, 0x20038214, 0x8214821e, 0x14142419, 0x44640a0a,
0x15830570, 0x00861420, 0x7d6d3c20, 0x362a8206, 0x00000014, 0xff0a0005, 0x009600ec, 0x000b0078, 0x0025001d, 0x5931002b, 0xc9730d01, 0x83be8507,
0x852720a6, 0x073323e9, 0xcc823335, 0x82152721, 0x4415200e, 0x2820053b, 0x2209646e, 0x4a281450, 0x858205f0, 0x09820a20, 0x9a425020, 0x14282105,
0x0a2c9382, 0x1432820a, 0x1e145a1e, 0x0200000a, 0x21068b53, 0xe759000a, 0x093f5c05, 0x089ffd18, 0x83281e21, 0x0a775db2, 0x33820120, 0x5000ec24,
0x555e0a00, 0x0c137606, 0xfe835020, 0x2006bd62, 0x098f430a, 0x3601e222, 0x3f30e382, 0x6f005d00, 0x8b007b00, 0x9f009500, 0x35370000, 0x7c436e83,
0x05aa4c05, 0xd0187484, 0x7245081b, 0xdaeb1809, 0x20f58410, 0x05104507, 0x0c72ab18, 0x2008b84f, 0x7e5d8815, 0x27200846, 0x49416f84, 0x05704b05,
0x1f84ee84, 0x40182720, 0xfd70084d, 0x82962009, 0x0a0a21c7, 0x4624fe82, 0x6464640a, 0x1420cd82, 0x4621d184, 0x24d78246, 0x1e0a1414, 0x22158314,
0x820a0a46, 0x28142409, 0x82aa140a, 0x201b8409, 0x6927848c, 0x1421053a, 0x05f14d0a, 0x3a838220, 0x08dbb618, 0xaa7f4784, 0x08df4809, 0xdc602820,
0x211e820a, 0x5d831414, 0x14211382, 0x08fc5a46, 0x82058841, 0x680a205c, 0x002e06d0, 0xff140005, 0x00dc00f6, 0x003b006e, 0xcd180053, 0xc01809a1,
0xec480898, 0x52232007, 0x40430eea, 0xaca6180a, 0x0b57410c, 0x21064f41, 0x3b823335, 0x7c055141, 0x295409be, 0x298c8407, 0x2828280a, 0x3214140a,
0x04821e0a, 0x0798a318, 0x14321423, 0x8518841e, 0x6e1421b5, 0x1e281d82, 0x141e140a, 0x14280a0a, 0x82070651, 0x82f68a07, 0x0822441a, 0x04822284,
0x21863282, 0x00232b84, 0x82040000, 0x00002203, 0x56018250, 0xa382093f, 0x3b422320, 0x07375206, 0x07637918, 0x840a3c21, 0x284a85a3, 0x32280a14,
0x28141432, 0x08e95632, 0x0300002e, 0xecff0000, 0x78004600, 0x29002500, 0x4a0d8343, 0x5c8205b1, 0x4b18f884, 0x35230d19, 0x63331523, 0xd51a07b7,
0xaf77092e, 0x460a2008, 0x0a48071a, 0x281e2106, 0x24050542, 0x14146414, 0x20258278, 0x06ff4314, 0x6e005023, 0x91861900, 0x4337200a, 0x0f1b0916,
0xbd180c2b, 0x0d5008a1, 0x07232109, 0x03839582, 0x33238984, 0x6e462315, 0x0a200b55, 0x081d4119, 0x86829285, 0x23830284, 0x00821420, 0xe5472820,
0x22278206, 0x82280a14, 0x0a502615, 0x05000000, 0x22058300, 0x59640050, 0x31200839, 0x4a088946, 0x4a4308ad, 0x42152005, 0x0584051e, 0x7b4d1183,
0x78272007, 0x768206e7, 0x0c6dfe19, 0x2006604f, 0x47858364, 0x502005d5, 0x46240682, 0x5a0a140a, 0x04827d82, 0xaf4b7e82, 0x005a2208, 0x597e1817,
0x0b8f7d0a, 0xd8180b82, 0x5a210c72, 0x82cc8228, 0x18058268, 0x2008cb40, 0xf3bc1a46, 0x05e64208, 0x32203f9c, 0x2305a941, 0x3c0a1414, 0x0b1f751b,
0x09376e18, 0x77473d88, 0x20f5820a, 0x61bb1835, 0x0a0a2209, 0x05d84e1e, 0x3c25c883, 0x14141e14, 0x1457193c, 0x261b8208, 0x14145a0a, 0x831e1e32,
0x000428df, 0x00e2ff0a, 0x82820064, 0x206186df, 0x205f8217, 0x46a78235, 0x0f8308a9, 0x37280382, 0x07231533, 0x07153335, 0x830b677b, 0x5a322060,
0x14260668, 0x1e0a640a, 0x0582280a, 0x19820383, 0x2206df6d, 0x82be000a, 0x05295e61, 0x4c82b284, 0x8208ed57, 0x3533260b, 0x0a3cbe23, 0x24398232,
0x6e0a7814, 0x204d8314, 0x20be8228, 0x204b8250, 0x20a38328, 0x83a38403, 0x00232443, 0x182d0027, 0x1908017e, 0x750c1fab, 0xb98208d1, 0x87423520,
0x82172006, 0x35332414, 0x833c1e64, 0x0a6e245a, 0x8228320a, 0x0a0a2808, 0x14461e14, 0x460a5a14, 0x65820595, 0x210af854, 0x1d823228, 0x02207383,
0x1d227388, 0x71822300, 0x09728718, 0x64820984, 0x2408194f, 0x23271523, 0x20c38515, 0x8552193c, 0x0a782108, 0x8205a345, 0x0a462270, 0x427b820a,
0x50210565, 0x97501846, 0x24cf8308, 0x0033002d, 0x465d8239, 0x5a900600, 0x81193320, 0x441809b3, 0x232008e9, 0xdb876d85, 0x28205d82, 0x14217583,
0x24e08b14, 0x0a140a3c, 0x20e18350, 0x897d890a, 0x501e23e6, 0xe7892846, 0x000a0026, 0x004600be, 0x20139f41, 0x83808335, 0x069f416f, 0x0a820a23,
0x089f415a, 0x28217683, 0x7acf8a28, 0x9f41051f, 0x8ee1180e, 0x20df870b, 0x83ef8235, 0x0b9f4155, 0x41780a21, 0x32230a9f, 0x41461414, 0x6582069f,
0x0d83b88a, 0x97431e20, 0x20b78606, 0x099d4117, 0x082c411a, 0xb9836082, 0x0a21b584, 0x213f8228, 0x04820a64, 0x0a1e2828, 0x0a323c0a, 0xb4820a28,
0x2007df41, 0x0d514246, 0x0a8b7418, 0x89147b41, 0x205684b1, 0x20b38a5a, 0x87b08314, 0x82b28961, 0x20b08316, 0x41ad8201, 0x84190567, 0x7e1808ef,
0x35200eb2, 0x2821b186, 0x05ba690a, 0xb2845a20, 0x3220f082, 0xb38d0083, 0x2f002922, 0x820f0543, 0x0694423e, 0x0add8818, 0x87060b43, 0x863220b5,
0x8f50205a, 0x906588b6, 0x840220b7, 0x006e26b7, 0x00090046, 0x818a180d, 0x05136d0b, 0x28320a27, 0x14141e5a, 0x24b48314, 0x00002832, 0x202f8700,
0x0e636664, 0x1523152c, 0x23353327, 0x50140a14, 0x31820a28, 0x500a0a24, 0x76820a1e, 0x33822820, 0x83051b41, 0x180f2063, 0x830de38a, 0x239184c9,
0x5a501414, 0x2105424a, 0x63890a28, 0x63865a20, 0x20089968, 0x06a96d15, 0x96876082, 0x82461421, 0x22978aa2, 0x180d0046, 0x200a498b, 0x055f4323,
0x0a22cb87, 0xcd86501e, 0x0a0a1e24, 0xeb19320a, 0x6e260957, 0x15006400, 0x76181b00, 0xa943097d, 0x2317220d, 0x22db8215, 0x4332501e, 0x0a2208fe,
0x8953140a, 0x826e2006, 0x43578249, 0xe78309f7, 0x4d851120, 0x23213782, 0x056c4a35, 0x1906bb41, 0x2011fb85, 0x06104d28, 0x52821420, 0x85191420,
0x37410dfb, 0x00642107, 0x490a3772, 0x232d0656, 0x14140a3c, 0x280a1e14, 0x32281432, 0x056c775a, 0x14000225, 0x83000a00, 0x07cb41cb, 0x2f827b82,
0x70272321, 0x1e2205e5, 0x3483463c, 0x320a2824, 0xfb855a0a, 0x9f7c1420, 0x08fb4106, 0x20055b42, 0x242f8235, 0x3c1e0a1e, 0x2062823c, 0x212d823c,
0x75188228, 0x5f850823, 0x08f7d01b, 0x2320de83, 0x84055443, 0x3327263a, 0x28462335, 0x209b8532, 0xf9d8180a, 0x83a08208, 0x000023df, 0xa38a0100,
0x23080d64, 0x0a282315, 0x46246e82, 0x500a4614, 0x08f36819, 0x52054741, 0x415909d3, 0x2d6c8205, 0x3c140a28, 0x0a281e0a, 0x323c0a0a, 0x07820a3c,
0x7d192820, 0x3383082b, 0x8a05c542, 0x823c2094, 0x4132208d, 0x2e830528, 0x20095f42, 0x0ac34246, 0x1520f283, 0x08837919, 0x55825a20, 0xb1821420,
0xe51a0682, 0xff22098f, 0x274300e2, 0x08284109, 0x15012b28, 0x50284633, 0x65823214, 0x0a283c25, 0x180a6428, 0x85085fbd, 0x0b8f422f, 0x4306df4f,
0x2822085b, 0x5d431e14, 0x28282207, 0x0d2b4332, 0x4f001121, 0x62410591, 0x23152906, 0x23353335, 0x32283c0a, 0x9a82f882, 0x07824620, 0x0cef491a,
0x0b209b83, 0x84082b45, 0x3c6e23cf, 0xfd821e0a, 0x2605b542, 0x00020000, 0x840a0000, 0x000d22c3, 0x2d8d1813, 0x2097820c, 0x245d8237, 0x0a0a2315,
0x212d821e, 0x60821e6e, 0x4d141421, 0x8b51058a, 0x0d8b4205, 0x20068b41, 0x06d54235, 0x58423220, 0x69cb8205, 0x002106aa, 0x09f34300, 0x55189383,
0x1528087d, 0x28143233, 0x14140a5a, 0x3220be83, 0x200cb741, 0x18bb820f, 0x220c1890, 0x820a1523, 0x413c2086, 0x0a2105e8, 0x8b998328, 0x85112057,
0x0d65452f, 0x1e323c22, 0x21050345, 0x31823214, 0x82320a21, 0x47338b00, 0xc07d06e9, 0x13b0490b, 0x8205cd53, 0xdb75187c, 0x092b6408, 0x82057d41,
0xff861805, 0x00462309, 0x50180013, 0xf355099d, 0x1507250c, 0x35331523, 0x9948f382, 0x21478206, 0x0b844614, 0x32141424, 0xa4470a32, 0xff022205,
0x065b42f6, 0x29002322, 0x083fe318, 0x7d09f544, 0xae840b86, 0x1d233523, 0x82578401, 0x83ab8286, 0x481e2002, 0x518305f9, 0x54181e20, 0x282008b6,
0x0a220e82, 0x0b481e0a, 0x2267860a, 0x8221001b, 0x0baa4d67, 0x20084641, 0x20618335, 0x05514623, 0x281e1423, 0x0f4a4632, 0x58855284, 0xfb460a20,
0x00022206, 0x2c578232, 0x005a0096, 0x001f001b, 0x35013b00, 0x4df68433, 0x232009f2, 0x2205d66c, 0x82372335, 0x833220b6, 0x21468437, 0xb5821414,
0x05825020, 0xaf5c0a20, 0x1e462705, 0x5a0a0a32, 0x0082001e, 0x32000322, 0x53830582, 0x19001522, 0x0c618d18, 0x49064343, 0x175a059e, 0x32332106,
0x20057e57, 0x20918232, 0x2150820a, 0x7f551414, 0x2c0b8205, 0x1e140a0a, 0x01001e0a, 0xecff5000, 0x234f8300, 0x17000013, 0x09528718, 0x2605be48,
0x82152335, 0x49320a14, 0x0a200567, 0x5a219083, 0x2306820a, 0x0200005a, 0x1d20878a, 0x0e9f7c19, 0x82074c50, 0x05806bd5, 0x460a3223, 0x2000820a,
0x82858428, 0x21948408, 0x85840a32, 0x1b820a20, 0x4f85d182, 0xe218a020, 0x0950082f, 0x08415e05, 0x1720d585, 0x32270f82, 0x1e285a0a, 0x833c281e,
0x8264204b, 0x0a0a2142, 0x4984c682, 0xff6a2820, 0x071f4105, 0x3720cf82, 0x93884589, 0xca823f85, 0x85831420, 0x280a1e24, 0xa37a1450, 0x415a2005,
0xcd8206ab, 0x43079367, 0xc58407c7, 0x1c412320, 0x145a2107, 0x7505a955, 0x282005ba, 0x1420cf82, 0x0a26c382, 0x14461414, 0x4b853c0a, 0x2009a341,
0x84838400, 0x050a5087, 0x3222c985, 0x574f320a, 0x830a2005, 0x28282386, 0x8788285a, 0x00004627, 0x5a008c00, 0x56bf8c00, 0x4620095f, 0x28206383,
0xbf843682, 0x0a0a4622, 0xf8827582, 0x2009c741, 0x068d4119, 0x23076f43, 0x15231533, 0x21086851, 0x79820a5a, 0x3d820a20, 0x8b411e20, 0x0a642305,
0x02821e0a, 0x83145a21, 0x000226b7, 0x00ecff28, 0x207b82b4, 0x93431829, 0x1948840b, 0x180b5cb4, 0x6a0ea294, 0x8c2005f3, 0x8205cf4e, 0x6862825a,
0x58820936, 0x84141421, 0x501420db, 0x0a21056d, 0x82128314, 0x000021b1, 0x2009f341, 0x18ed880f, 0x2108f3c2, 0xed412335, 0x41322005, 0x50200aea,
0x2209e741, 0x42140002, 0x252006b7, 0x8405194d, 0x0f5052e5, 0xc3434d85, 0x35172208, 0x82bb8423, 0x821e20fc, 0x208882a2, 0x05a94f32, 0x64200682,
0x21051043, 0x9e844614, 0x1e0a1424, 0x0982321e, 0x3c141e26, 0x005a140a, 0x2827ab83, 0xb400e2ff, 0x1a005a00, 0x21085f18, 0x0d4d1533, 0x20578208,
0x0bde4123, 0xbf836584, 0x5f826420, 0x1e141422, 0x20091b41, 0x05f07128, 0x6e280a25, 0x82320a0a, 0x5f502002, 0x5a210506, 0x2263820a, 0x82500003,
0x00962605, 0x00110078, 0xab881817, 0x20b6850b, 0x50cd8235, 0x37200565, 0x6e207982, 0x2005745e, 0x83cb830a, 0x0a5a2543, 0x460a0a46, 0x64201482,
0x4882d384, 0x190aa343, 0x410b4380, 0x2744060d, 0x0a322109, 0x1e209382, 0x44051143, 0xb0410620, 0x841e2005, 0x433c2093, 0x15200617, 0x1805c544,
0x4e0cbce6, 0x3721087c, 0x264f8223, 0x23350733, 0x86285015, 0x823c2098, 0x8298838d, 0x21998658, 0x9a855014, 0x67420320, 0x19212008, 0x41098b78,
0xed82103e, 0x820a2b56, 0x8217205f, 0x0a822311, 0xa9840a0a, 0x0a82b383, 0x14246b82, 0x0a0a3214, 0x8206c743, 0x141e216f, 0x0a281382, 0x0a321e5a,
0x46000100, 0x3323bb86, 0x18170000, 0x580b9943, 0x44181170, 0x36420c2f, 0x15332205, 0x051d4278, 0x72832820, 0x82083357, 0x0a14225e, 0x09017214,
0x08ef7c18, 0xcf558b84, 0x00462705, 0x00a00000, 0xd7420064, 0x0a444309, 0x5e823720, 0x460a4623, 0x42c78414, 0x5021050e, 0x44458250, 0x15200ebf,
0x2006c743, 0x08944533, 0x3b442320, 0x437f820a, 0x502105c1, 0x20428250, 0x203e8246, 0x20ef8200, 0x24778232, 0x006e00b4, 0x573b8221, 0x352008fd,
0x5008fb44, 0x498309dd, 0x7a42aa20, 0x23468305, 0x0a14320a, 0x6420be82, 0x0a224a82, 0x17843c0a, 0x0b834620, 0x02000024, 0x53862800, 0x25001122,
0x0db5061b, 0x35204383, 0x5609d16a, 0xca4d0a81, 0x20588305, 0x062d4164, 0x0a0a0a25, 0x433c0a50, 0x32200553, 0x22056260, 0x82461e1e, 0x00012659,
0x00ecff1e, 0x20b38296, 0x195d8337, 0x890e4796, 0x083f58c3, 0x4c08906e, 0x17840541, 0xec538220, 0x061d6409, 0xd7876282, 0x83146e21, 0x1e1e2109,
0x20069344, 0x08805b0a, 0x00230982, 0x43000100, 0x6e2105d7, 0x859a1900, 0x83152008, 0x08c15b59, 0xbb583520, 0xa7df1809, 0x08ec5608, 0x26080044,
0x0a8c2315, 0x8228140a, 0x83f08576, 0x0a584172, 0x70569f85, 0x0a142209, 0x23128232, 0x463c0a14, 0x0a223182, 0x87830050, 0x2307ab42, 0x37000027,
0x8d527d83, 0x6bb91a08, 0x8297850c, 0x33352493, 0x82782335, 0x058942cb, 0x32214682, 0x825f820a, 0x06664e7d, 0x12830984, 0xf74f1582, 0xbb891805,
0xf9c01908, 0x08894809, 0xe6820720, 0x1908717f, 0x20075bc4, 0x6bad1a0a, 0x08434e0e, 0x85881520, 0x84331521, 0x320a2139, 0x20085862, 0x8273833c,
0x574d1897, 0x00462108, 0x8605af4e, 0x82b78375, 0x08b35303, 0x53324621, 0x1421064a, 0x05c94714, 0x18054d70, 0x2109c383, 0x8c180009, 0x378708d5,
0x1e203383, 0x971b6382, 0xcc18102f, 0x87190aab, 0xab85082b, 0x18463321, 0x830811ce, 0x1414216f, 0x521aed82, 0x9f820de3, 0xc3423720, 0x087d4109,
0x0a20378d, 0x3f827282, 0xf3750020, 0x87db8308, 0x546984d9, 0x2325058d, 0x46153315, 0x06f44828, 0x0a23e084, 0x1a46500a, 0x1b10e366, 0x241cb3ca,
0x320a145a, 0x77f31a32, 0x5b0b200d, 0x69830675, 0x46280382, 0x1e1e283c, 0x1e0a3c28, 0x00200182, 0xa7419389, 0x08a95a0d, 0x82152321, 0x281e22cb,
0x06ce440a, 0x0a1e1423, 0x05a7410a, 0x09478318, 0x5f840920, 0x14205d87, 0x28205c83, 0x23895b85, 0xef670f20, 0x08bf6108, 0x820a4621, 0x2259822a,
0x8328280a, 0x1e0a212e, 0x0f838618, 0x49152321, 0x3182053d, 0x24063b42, 0x320a4633, 0x827f831e, 0x820a208e, 0x078f4103, 0x21059f52, 0xc3860046,
0x41231721, 0x152005c7, 0x15234182, 0x82352733, 0x0a3227c3, 0x1e0a0a32, 0xbf821428, 0x0a825a20, 0x411e1421, 0x80181423, 0x4620087f, 0x23056749,
0x285a2828, 0x09935718, 0x21059342, 0xb4473300, 0x35332105, 0x27830182, 0x141e0a27, 0x0a3c3c3c, 0x63811814, 0x005a210a, 0x820a7341, 0xc5c01985,
0x0a462308, 0x7341460a, 0x1964200a, 0x200a2f82, 0x20278333, 0xab431a27, 0x14142609, 0x320a3c0a, 0x18568346, 0x420eb384, 0x9f42096f, 0x0a0a2407,
0x8250500a, 0x75022029, 0x578606c7, 0x22060741, 0x84331523, 0x0a282157, 0x2505214f, 0x0a5a0a1e, 0x84186450, 0x421a0d37, 0x6941085d, 0x08686e05,
0x0a20e384, 0x20088344, 0x09ae5714, 0xa70d1741, 0x571e203f, 0xa34208ae, 0x0005210d, 0x2306195e, 0x14283c46, 0x0cb37e19, 0x42005a21, 0xd146055f,
0x46332205, 0x2183833c, 0x4741500a, 0x0050210a, 0x19064f43, 0x1a09d928, 0x20095942, 0x5bf61b32, 0x4446201f, 0x331a0729, 0x5022097b, 0x35820a14,
0x3c3c0a26, 0x3c3c3232, 0x59051f4c, 0x5a200557, 0x2007ef7e, 0x0c3c5515, 0x85333521, 0x26368431, 0x1e0a0a32, 0x420a285a, 0x3783060f, 0x46004622,
0x3582c386, 0x82083542, 0x185b845a, 0x4b0f7788, 0x33200981, 0x82052545, 0x067c434b, 0x0a0a4624, 0x3f424646, 0x0773510b, 0x3221339a, 0x060f440a,
0x59131b45, 0x46200807, 0x08732719, 0x1b0a1e21, 0x21093fd5, 0xb982e2ff, 0x0b53ad19, 0x1e272f90, 0x0a320a1e, 0x4232323c, 0xff2105d3, 0x242f82ec,
0x0011005a, 0x0a494815, 0xf7463320, 0x19cd8507, 0x46083e8e, 0x142005dd, 0x6f8bd38b, 0x571a3720, 0x0a2314cb, 0x90641e0a, 0x410f20cf, 0x29460b95,
0x8246200b, 0x20028263, 0x1bd61b0a, 0x67841910, 0x180d2009, 0x200b43cf, 0x05ed4215, 0x33821e20, 0x0a281422, 0x41086353, 0x5a2005c3, 0x4f0d9572,
0x2d4305d9, 0x05be5205, 0xb1831520, 0x0a224183, 0x00830a28, 0x0800a719, 0x41430882, 0x83f28405, 0x18142004, 0x180a178e, 0x440c4341, 0x46210bb7,
0x20ed8232, 0x4c048428, 0x14200576, 0x220c5342, 0x4507005a, 0x46260953, 0x3c141414, 0xef535050, 0x6f911807, 0x09c57f0c, 0x46331527, 0x1e280a0a,
0x20e0821e, 0x6757823c, 0xa3450517, 0x0ac77809, 0xc7861520, 0xca825682, 0x9b455882, 0x18462009, 0x85094d49, 0x84322025, 0x3c462224, 0xffbc1a3c,
0x2b5f180f, 0xbf85190a, 0x46462111, 0x0a778d18, 0x1f47b41b, 0x32218382, 0xbbd21832, 0x000b210c, 0x210d7947, 0x341a0733, 0x331a1281, 0x734509d8,
0x00502308, 0x3ba40046, 0x2824d482, 0x14463228, 0x1a0e2746, 0x4508bfb2, 0xdc4e0d27, 0x0775420b, 0x2308e75c, 0x1e1e0a28, 0x14200c82, 0x14200482,
0x89180782, 0x46220a43, 0xb4191b00, 0xc3860c87, 0x2405bb4b, 0x33153315, 0x42868246, 0x1420054b, 0x13820689, 0x478a0d83, 0xd3565a20, 0x6fa21805,
0x0186190d, 0x19322008, 0x21087f8f, 0xab640001, 0x00462205, 0x0bab6215, 0x88181520, 0x332109bd, 0x8ede1850, 0x21b58209, 0x9e18140a, 0x27420834,
0x48172009, 0xaf83084f, 0x08c5f619, 0x3c20af84, 0x0a203e83, 0xeb820585, 0x1e0a0a22, 0xf38c0584, 0xf7183fa8, 0x7f820c2b, 0x00f6ff22, 0x2006ab49,
0x10c17317, 0x46331522, 0x20085e43, 0xaa8e180a, 0x1a002009, 0x2008f367, 0x0731425a, 0x97421520, 0x998a1805, 0x88462008, 0x47142066, 0x142506f6,
0x00001414, 0xb74c1802, 0x3700210c, 0x3523e784, 0x821e3c33, 0x82322000, 0x19d28229, 0x2308e36c, 0x001b0046, 0x15202182, 0x085e9a19, 0x0d493520,
0x06594106, 0x4e183320, 0x44180e5d, 0xa3590c0a, 0x05b34306, 0x8905734f, 0x08514aa1, 0x7c1a0720, 0x142308d5, 0x83280a14, 0x823c20e0, 0x051b6404,
0xae825020, 0x0a24af82, 0x46003c00, 0x0be35118, 0x09eb7c18, 0x2f42b583, 0x47de180c, 0x05e94708, 0x15693520, 0x4d8b180a, 0x41332008, 0x20410753,
0x0da16008, 0x578f0d86, 0x8305b945, 0x75558745, 0x7341119f, 0x19481809, 0x28608c0d, 0x00010000, 0x00e2ff1e, 0x29d38432, 0x35231700, 0x14143233,
0xa818781e, 0x53180bc3, 0xd55507cb, 0x21481805, 0x086b4c09, 0x19823520, 0x07233522, 0x82053166, 0x5fd7183f, 0x051b4608, 0x280a1425, 0x825a0a0a,
0x820e8404, 0x1e28240b, 0x7f46281e, 0xdb18066e, 0x37200f5b, 0x0b41ed18, 0x24091f4f, 0x33351723, 0x21c78415, 0x4d4d0a32, 0x0a322a05, 0x3c142850,
0x28280a0a, 0x204a833c, 0x059f4114, 0x00820020, 0x5d005021, 0x002005f7, 0x08d5d018, 0x4f0a975f, 0xc5820673, 0x19053141, 0x2108b598, 0x5e821e1e,
0x21059856, 0x57820a0a, 0x27413220, 0x08627707, 0x820a0a21, 0x0500215c, 0x00210483, 0x67018250, 0xdc180bdb, 0x23210d0b, 0x26718215, 0x33152337,
0x82353327, 0x055160b9, 0x2008b763, 0x056f5328, 0x0a281422, 0x78716382, 0x201e8208, 0x82188432, 0x8206205f, 0x82002003, 0x00502161, 0x0ceb5018,
0x8808aa65, 0x06e54fbd, 0x240e0066, 0x2315013b, 0x20918207, 0x20278237, 0x22038207, 0x1a0a140a, 0x820bac8a, 0x2402820c, 0x28141432, 0x06315914,
0x82064e45, 0x08076926, 0x9c821420, 0x38822820, 0x084b4518, 0x20068f5f, 0x5be01835, 0xd0411809, 0x82372008, 0x40e918e5, 0x141e2409, 0x821e4614,
0x21048400, 0xca83320a, 0x04830320, 0x4625cf82, 0x2d002900, 0x082f6300, 0x4209397c, 0x152005c9, 0x410b4f6c, 0x332005fb, 0x1682bf83, 0x25501520,
0x20978208, 0x05b74d1e, 0x20059841, 0x19108228, 0x850b87b3, 0x221183ea, 0x8601000a, 0x185a2077, 0x420851a4, 0x4d460809, 0x15232108, 0x66062141,
0x142208c1, 0x4d5b0a3c, 0x05515b06, 0x4905df44, 0x1b200577, 0x08f39b19, 0x43083544, 0x0f8306cb, 0x69412320, 0x10e81806, 0x6d1e200a, 0x142405ac,
0x001e1e0a, 0x220a9765, 0x181f0013, 0x5a08ff8c, 0x8983089b, 0x33200382, 0x0c3b4a18, 0x1526b188, 0x15013b23, 0xcc501e23, 0x054c4205, 0x68832820,
0x41141e21, 0x058405d0, 0xba840a20, 0x6e051241, 0x77840756, 0x00e2ff27, 0x00460050, 0x2077821b, 0x45798227, 0x4f59056b, 0x23352108, 0x0dff9e18,
0x17233522, 0x2006895d, 0x051f6b35, 0x52850a20, 0xe3837683, 0x2108c572, 0x8b413232, 0x1e1e2306, 0x0c840a1e, 0x376e4620, 0x82ec2006, 0x005a226f,
0x01991919, 0x18152009, 0x410cbf40, 0xe96f06fb, 0x05d54506, 0x012b3522, 0x17200f82, 0x57478b82, 0x830a2005, 0x0626616a, 0x82140a21, 0x82848408,
0x820a2068, 0x831420f8, 0x14462110, 0x14201782, 0x0020f382, 0x2406a366, 0x005a0050, 0x05594123, 0x82331521, 0xe5b819bb, 0x0fea670d, 0x08695f19,
0xe5843720, 0xf94e5582, 0x0a0a2205, 0x20d6821e, 0x20ed8450, 0x8205843c, 0x8314208a, 0x05c37edf, 0x82640a21, 0x0a282921, 0x0a000200, 0x4600e2ff,
0x27207382, 0x00217382, 0x83718217, 0x12b74ad7, 0x08486718, 0x82071944, 0x82c08355, 0x052c4203, 0x28220f82, 0xe484280a, 0x3542f582, 0x09ff4508,
0x77190420, 0x577d085b, 0xf9581808, 0x08fc6e08, 0x7f352321, 0x3d23077b, 0x5c153301, 0x7d520515, 0x0a0a2208, 0x824e825a, 0x21d282e4, 0x65824664,
0x0f6e6e20, 0x82002005, 0x005a2400, 0x41110050, 0x312408ad, 0x00003500, 0x5505e54b, 0x152209e9, 0xd15e3723, 0x09bd4108, 0x0f2f4218, 0xc682b084,
0x1e321422, 0x3f7be284, 0x42142008, 0x1e20069a, 0x0a211783, 0xbc7e190a, 0x209d8307, 0x218b8214, 0x1d190a32, 0x53190c73, 0x17200809, 0x410c6e70,
0xa4600760, 0x05e44108, 0x09f25518, 0xaa460986, 0x15232805, 0x23023d23, 0x85332715, 0x7f1e20ba, 0x708208b6, 0x75828e82, 0x168a1184, 0x200ae542,
0x8300820a, 0x54a08224, 0xde860ac4, 0x28824620, 0x0221af82, 0x24008300, 0x005a0050, 0x0e614413, 0xc9617a82, 0x82a48309, 0x0a0a226c, 0x233e8250,
0x28323c14, 0x44064243, 0x5020055e, 0x4b851482, 0x00ecff22, 0x2107eb68, 0x65573500, 0x093d740c, 0xb35de086, 0x05ab430a, 0x55824620, 0x2009447b,
0x06a04328, 0x21076b65, 0x1b823232, 0x1e1e1e22, 0x14210582, 0x22bb821e, 0x820a5a14, 0x03002172, 0x2006cb68, 0x0b15445a, 0x41073543, 0x51180af9,
0xa1450875, 0x23152105, 0x0cd96218, 0x0a205482, 0x20057674, 0x22d8830a, 0x870a0a3c, 0x0883497e, 0x180a2821, 0x2b08df6d, 0x002f005a, 0x00370033,
0x1700003b, 0x41099371, 0xf18221d0, 0x15233724, 0xd3463733, 0x82142006, 0x41142075, 0x282012c7, 0x2005e541, 0x094f5132, 0xce412885, 0x640a230a,
0xbb431e0a, 0x001f220b, 0x01731823, 0x06535608, 0x4309e54b, 0x352205cb, 0x77820733, 0x17443220, 0x82142005, 0x24f3843e, 0x14142814, 0x1814865a,
0x2c08eb51, 0x0000000a, 0xff000007, 0x005000e2, 0x22098264, 0x86270017, 0x823f20ef, 0x05034565, 0x6d05494d, 0x2321098c, 0x41178637, 0x27200773,
0x700af545, 0x50230b1f, 0x41140a0a, 0xe186075c, 0x2408ce49, 0x0a321414, 0x258d850a, 0x0a0a143c, 0x23462878, 0x831e2006, 0x0a1e2407, 0x82140a3c,
0x83142015, 0x47a28307, 0xd15a0ad7, 0x71352008, 0x15270e3f, 0x33233533, 0x18331523, 0x82095dd5, 0x0a3c254a, 0x1e1e460a, 0x04836882, 0x0cf7ad18,
0x5b004621, 0x2b200583, 0x7e109971, 0x196b0a37, 0x18232008, 0x85080b9f, 0x4b3c205e, 0x0a200571, 0x526fa082, 0x18462006, 0x840c6b43, 0x05f254be,
0x41050021, 0x5a21065f, 0xbd461800, 0x31002109, 0xb344ad82, 0x97971805, 0x08eb4f09, 0x29083b67, 0x15372335, 0x23023d33, 0xf2463715, 0x85332005,
0x4e0a2064, 0x80830849, 0x8205ab44, 0x82142019, 0x280a2594, 0x0a281e1e, 0x14200882, 0x08460a19, 0x50141421, 0x00200727, 0x2006ff45, 0x0841421d,
0x55052345, 0x214b054f, 0x23152108, 0x82057b43, 0x255b8266, 0x1414283c, 0x11830a32, 0x3c205982, 0x0a205583, 0x09b34e18, 0x17004624, 0xa0191f00,
0xfe4409f9, 0x18dd8408, 0x20097be9, 0x84368246, 0x0a0a2486, 0x823c0a50, 0x4128209d, 0xea490546, 0x05ab4a06, 0x60077749, 0x232005e7, 0x083b9a19,
0x58064645, 0xb5820abf, 0x15233724, 0xdd712733, 0x1e142306, 0x49831e50, 0x3c501e22, 0x7905f342, 0x1e270818, 0x3c0a0a0a, 0x471e1e1e, 0xfd460c6f,
0x70352005, 0x9d1808a5, 0x324c08dc, 0x41352008, 0xbd43056d, 0x431e2007, 0x322013ba, 0x08995a18, 0x82052641, 0x0a142369, 0xf341641e, 0x00042106,
0x21056b45, 0x4e180032, 0xf01808cf, 0x352109eb, 0x088f5623, 0x0ad71d19, 0x830a1421, 0x843c2066, 0x7a142005, 0x3220055a, 0x0a204d82, 0x081ffe18,
0x000a3222, 0x2208cf4b, 0x421b0046, 0x0021084d, 0x4aca8233, 0x614b0c8d, 0x08766b08, 0x7d833320, 0x82089b43, 0x843220de, 0x0a0a235b, 0x46180a32,
0x28200a03, 0x0a963219, 0x20098844, 0x83228a1e, 0x000221d5, 0x4625db85, 0x29002500, 0x06897500, 0x09b88f19, 0x4b093849, 0x7a830614, 0x7b833520,
0xdb834620, 0x56837788, 0x7e821420, 0x46055a6d, 0x9c1a0dbc, 0xe22308e7, 0x50005000, 0xcd4b099b, 0x23cf8409, 0x0a462315, 0x2507f048, 0x1e1e0a0a,
0x00843c46, 0x000a5022, 0x086b4718, 0x1f005a22, 0x4708c145, 0xaf8405a5, 0x4e07e941, 0x0119091e, 0xdd4409e5, 0x8207200f, 0x20c282da, 0x21178223,
0x08822333, 0x06820783, 0xcc492320, 0x0a0a2205, 0x06294128, 0x0b047018, 0x820a0a21, 0x051144cf, 0x450ea447, 0x0a200800, 0xbc89ba82, 0x00820020,
0xfd180420, 0x23210e2f, 0x44ab8300, 0x7a4b0ae6, 0x17352408, 0x18353315, 0x200861a5, 0x2153831e, 0x55721e1e, 0x21558208, 0x54181446, 0x2820095c,
0x4b06c25b, 0x782008cf, 0x20083b42, 0x5cd08200, 0xa01a09ff, 0x15200c47, 0x82064775, 0x35332268, 0xbf6c1823, 0x05c65107, 0x08044218, 0xe882e583,
0x2205bb41, 0x85320a0a, 0x1414220b, 0x82db8232, 0x32282124, 0x0cdb5118, 0x50196e20, 0x00200851, 0x6f6bd484, 0x088e430c, 0x42055d46, 0x8a4308c1,
0x07eb7a05, 0x1420e983, 0x1805cb51, 0x20088342, 0x6085830a, 0x5a20052c, 0x0e830682, 0x861e1e21, 0x0a0a2113, 0x0a210a82, 0x057c5a1e, 0x1909d74d,
0x45082781, 0x8d8505df, 0x574ce983, 0x41072009, 0x3321050d, 0x06c44237, 0x7882ce82, 0x8a09bd41, 0x1a49180c, 0x06c55f0b, 0x4f001e21, 0x64270a17,
0x19001100, 0x60001d00, 0x518206a5, 0x914a3320, 0x825f820a, 0x153321dd, 0x37200782, 0xe9870482, 0x84086142, 0x22048268, 0x83500a14, 0x208184d4,
0x6ef7181e, 0x206f8208, 0x24e28246, 0x3c0a1414, 0x2172820a, 0x774b0200, 0x05434506, 0x09757d1a, 0x2008875e, 0x59171a15, 0x82372008, 0x05854585,
0x2106c242, 0xa2453c14, 0x87142005, 0x0a14225d, 0x18c88346, 0x21073f50, 0x7b48005a, 0x5d152005, 0xa48308ee, 0x08979e19, 0x2307f743, 0x15233517,
0x1442a582, 0x24528306, 0x14320a0a, 0x20a18228, 0x090d4e3c, 0x28280a2b, 0x00001414, 0x00000700, 0x057b4dff, 0x77181320, 0x33220849, 0x4b183700,
0x3a4a0911, 0x35232109, 0x240f9943, 0x23153327, 0x20d98217, 0x20078207, 0x82078327, 0x061d428f, 0x8f437d82, 0x05684808, 0x1e231182, 0x43140a0a,
0x4f18058e, 0x4e4108bb, 0x05975409, 0x2209674a, 0x84780046, 0x582720ef, 0xb7410b0f, 0x08bf7b09, 0x2006c145, 0x207b8217, 0x0609423c, 0x23081042,
0x141e1e1e, 0x3c215782, 0x458b823c, 0x0a2405c7, 0x640a6e14, 0x0a43ec18, 0x08a3531a, 0xbb7a5984, 0x214c8208, 0x77733723, 0x0a502105, 0x14233c82,
0x8228280a, 0x05ce6abc, 0x28200882, 0x21095b6d, 0x97410046, 0x4eaa1909, 0x0885450a, 0xeb443520, 0x15232505, 0x35331527, 0x395a4a82, 0x07b74406,
0x0a249f83, 0x0a1e1414, 0x06820884, 0x411e3c21, 0x0a2a05f3, 0x4600ecff, 0x23006e00, 0x7f1a2700, 0xc5540abd, 0x084d500e, 0x42069147, 0x068a064f,
0x14283c22, 0x8205c460, 0x05e9665a, 0x1a05cf61, 0x180a933e, 0x190957a9, 0x2008a1a6, 0x204f8215, 0x09ff4e17, 0x23372325, 0x82073315, 0x05314a13,
0x52841e20, 0x06820a20, 0x5d821420, 0x1e0a5a22, 0x1b520182, 0x1e6e2305, 0xf5180a32, 0x2b240a1f, 0x33002f00, 0x0b017a18, 0x200cd84e, 0x09e84935,
0x83094047, 0x82172013, 0x4e142026, 0x8a4a0ae8, 0xfe351a05, 0x0a502108, 0x39410084, 0x6341180a, 0x18002008, 0x23075ffc, 0x000d0064, 0x07bd6d19,
0xf1622120, 0x08dd7f06, 0x43231521, 0x372007e9, 0x23209085, 0x07cd7018, 0x140a1422, 0x14226c82, 0xea433c14, 0x84322008, 0x451e205b, 0x3c230572,
0x820a1e1e, 0x832820e8, 0x0000211d, 0x2205634f, 0x446e0050, 0x2d200659, 0xe088e982, 0xf7183520, 0x06420eda, 0x15172307, 0x6d823523, 0x23372324,
0x5b853315, 0x62826a87, 0x2c437b82, 0x82fc8505, 0x820a206d, 0x85462090, 0x143223f9, 0x5b41146e, 0x536e2008, 0x0d44081b, 0x575e1808, 0x20118308,
0x0c1e6615, 0x82233521, 0x55172001, 0xb8450671, 0x44e08805, 0x1e260720, 0x14280a0a, 0x6f82500a, 0x520a0a21, 0x0a250a36, 0x14142828, 0xc3701a64,
0x052b4408, 0x11511419, 0x84088e43, 0x49e382f6, 0x8d8208dd, 0x011d2326, 0x1e233533, 0x5e05fa43, 0x244a086e, 0x82322005, 0x821e2077, 0x0a1421e8,
0x77820582, 0x1e200684, 0xe7486f86, 0x00502105, 0x21052f46, 0xb746002f, 0x096b4e06, 0x8208c756, 0x07fb4fe0, 0x098fb118, 0x49231521, 0xc6410944,
0x47838205, 0xe8820523, 0x89850a20, 0xf9821884, 0x82140a21, 0x5203827d, 0x5020091b, 0x18063546, 0x4a086ba5, 0xe6850aa8, 0x08276f18, 0x4d824b82,
0x0a205a82, 0x20064551, 0x41dd8346, 0x7382055a, 0x0a1e3223, 0x0517435a, 0x5000ec22, 0x8b460182, 0x7d002005, 0x1b460659, 0x425d8606, 0xc78208a5,
0x70072321, 0xa38305d9, 0x9b821420, 0x28230783, 0x820a0a1e, 0x3214235d, 0x72841e1e, 0x0a200682, 0x13826282, 0x45057f46, 0x1b4a07cf, 0x64591805,
0x05894a08, 0x200a6573, 0x2db01823, 0x07e94408, 0x20051041, 0x536b1814, 0x84322009, 0x82d2876f, 0x18282065, 0x20089f56, 0x06374604, 0x25006e23,
0x07e54300, 0x47106c50, 0xba6006c2, 0x05fb4209, 0x21055744, 0x234f1723, 0x5b142005, 0x0a23063c, 0x83280a3c, 0x0a3c215f, 0x20067b6a, 0x09ef6546,
0x200ad745, 0x05246314, 0x741a7f87, 0x37200a8b, 0x0b5b0819, 0x02435b82, 0x20178307, 0x57831907, 0x08f55008, 0x67821420, 0x04821420, 0xf6844620,
0x0b826182, 0x1e320a28, 0x0a461e28, 0xab490a46, 0x4b1f200a, 0xb01806e7, 0x4b820989, 0x210e1758, 0x7b823533, 0xee861720, 0x50071547, 0xe745055a,
0x22d28205, 0x181e1428, 0x210810ff, 0x86826e0a, 0x32321e22, 0xdb840583, 0x09826420, 0xf7507f83, 0x6350180a, 0x465b8208, 0x3e450742, 0x6df8180e,
0x82232008, 0x1715247e, 0x83331523, 0x3c0a217b, 0x081ad986, 0x3c2108b0, 0x208b8228, 0x06136a14, 0x82061748, 0x24948270, 0x0a3c1e1e, 0x2371185a,
0x00502409, 0x190d005a, 0x5008f372, 0x15210a55, 0x05234923, 0x19051a53, 0x8208b592, 0x0a28234b, 0x00591414, 0x05cc6306, 0x0a281e26, 0x2850140a,
0x2305f34d, 0x50000000, 0x27200182, 0x52080746, 0x232008a8, 0x42079e41, 0x0984091d, 0x21822320, 0x0a4b5518, 0x821e2321, 0x860283a5, 0x057d5303,
0x14237782, 0x6f0a0a1e, 0xa25a0669, 0x0902550c, 0x180a2b5a, 0x4c09c3e0, 0x33200b70, 0x82062845, 0x23072413, 0x423c3315, 0xbd8205ed, 0x14237285,
0x49144614, 0xf6420589, 0x1e142105, 0x0520cd82, 0x2106c355, 0x1742006e, 0x18332007, 0x480e5d7c, 0x7d4f0843, 0x20e88206, 0x06e84627, 0x12831720,
0x3520df82, 0x28207882, 0x410c7271, 0x0a4606fe, 0x74282009, 0x14200562, 0x1e20ef82, 0x4620e683, 0x0a232182, 0x820a0a50, 0x01002182, 0x50248384,
0x17005000, 0x5b187b86, 0x6d820dcc, 0x50331522, 0xca833982, 0x14215282, 0x23c08214, 0x32321414, 0x41820783, 0x50000321, 0x50220587, 0x35790f00,
0x0add5c06, 0x35333526, 0x35230733, 0x0983901a, 0x14207882, 0x2005e46e, 0x82428328, 0x234d82b6, 0x0a000300, 0x50220182, 0x438b7800, 0xde823b83,
0x33224d83, 0x47842337, 0x41283321, 0x0a22054c, 0xcb82280a, 0x0a200282, 0x14204587, 0x0020cb86, 0x46204782, 0xcb884782, 0x4f050745, 0xcb84064f,
0x0a144622, 0x42062444, 0xcf8409bc, 0x0100002a, 0x28000000, 0x32005000, 0x00219182, 0x23738237, 0x28505050, 0xa75c5982, 0x83782007, 0x82172017,
0x14322b17, 0x00961e14, 0x1e000200, 0x2f84e2ff, 0x0a073619, 0x3c20ed85, 0xa384a982, 0x88323221, 0x202b829b, 0x205b8232, 0x089b5f0b, 0x1f828f84,
0x82059841, 0x8314208e, 0x841e2083, 0x00782183, 0x69182782, 0x14200c37, 0x0a24b882, 0x140a2814, 0x7b835282, 0x3220ab83, 0x7b8beb82, 0x83073321,
0x237b839d, 0x4614141e, 0x5020d682, 0x180ddb56, 0x690ae569, 0x172005af, 0x20054b5a, 0x535a183b, 0x086f7207, 0x14219382, 0x2043853c, 0x21708264,
0x5e180a0a, 0x9b830a7f, 0x19096141, 0x20101153, 0x20a98550, 0x82af821e, 0x20b08509, 0x62e68250, 0x002306df, 0x8300e2ff, 0x464182b7, 0x9d5e06b3,
0x204f820d, 0x08994332, 0x1e27ca82, 0x0a1e0a3c, 0x8232320a, 0x088b4182, 0xe3415020, 0x0aa96109, 0x2108d554, 0x82840a50, 0x3d820a20, 0x8305e965,
0x4141833b, 0x5a2009e3, 0x2005c564, 0x24bf1935, 0x8435200c, 0x825020cb, 0x2039866e, 0x05ad4314, 0x1e204482, 0x00207b84, 0x50200082, 0x0165bd82,
0x08664408, 0x35203982, 0x5020c782, 0x7f43f482, 0x281e2106, 0x8208ec46, 0x1806203b, 0x20082f58, 0xbd651807, 0x712b2008, 0x27200995, 0x82073f4f,
0x200b8b8f, 0x24928217, 0x15233527, 0x20038217, 0x8294821e, 0x829d82d7, 0x054c4402, 0x32143c22, 0x14221484, 0x75826432, 0x320a0a22, 0x3c210584,
0x050f720a, 0xaf547682, 0x05b34108, 0x21050746, 0xf3551700, 0x115c180a, 0x270b8b0b, 0x1d233507, 0x15233501, 0x20069f42, 0x20708514, 0x08ac4e0a,
0x18821e20, 0x4d07024e, 0x28210823, 0x4273980a, 0x07200bcb, 0x8a0bd166, 0x84e9820b, 0x06414273, 0xda82738d, 0x85054b42, 0x51ea856d, 0x9f4f050e,
0xe2ff2605, 0x78005000, 0x0d5f4100, 0x2105df42, 0x658b1733, 0x35220b8c, 0x5f411733, 0x0a322406, 0x4f140a14, 0xe786068d, 0x4c4d3220, 0x14462405,
0x198c3214, 0x900cb7d7, 0x006e2477, 0x1921000d, 0x18099d8a, 0x2508418b, 0x15231533, 0x6e6f3733, 0x07a4420a, 0x83410720, 0x1527210a, 0x17201583,
0x22063150, 0x5f1e0a28, 0x73820720, 0x0a281422, 0x82066641, 0x1e0a24fd, 0x820a320a, 0x599e84a6, 0x22820576, 0x14280a26, 0x28280a0a, 0xbd840682,
0x410a3221, 0x6e260a0f, 0x27001300, 0x76183300, 0x0f4108dd, 0x08f94d05, 0x82829db5, 0x08866118, 0x27439c84, 0x20a08c05, 0x5200840a, 0xa3960563,
0x8307ab58, 0x001f2ca3, 0x00290025, 0x0041002d, 0x41000055, 0xdb412d2f, 0x0527470b, 0xef413520, 0x2013870c, 0x41918446, 0x1b84164f, 0x85065f49,
0x195e410b, 0x180a6e21, 0x87097c49, 0x82002009, 0x43032000, 0xcf8306e3, 0x6f711d20, 0x23352109, 0x66510182, 0x41072008, 0xe5820881, 0x60501521,
0x282209bc, 0xde45140a, 0x08ad6105, 0x1e1e5a22, 0x14211e82, 0x435a8214, 0xcf4108c7, 0x07254b05, 0x0daf8618, 0x18153321, 0x4c0ba975, 0x15250609,
0x3d331523, 0x05cb4301, 0x23351722, 0x1e20718b, 0x1420c689, 0x5d187482, 0x6e20091e, 0x22080549, 0x4b141446, 0x83840543, 0xfff6ff26, 0x005000e2,
0x5805af41, 0x002005ff, 0x8d050f64, 0x07ba50e3, 0x0b3b5418, 0x7f8eed83, 0x20054b44, 0x237b823c, 0x1e141e14, 0x2005bc44, 0x417a8328, 0x28200560,
0x5020fd85, 0x08bb1f19, 0x25207b87, 0x0801461a, 0x6305c943, 0x35210c01, 0x05c94a33, 0x62181520, 0x1f8409a1, 0x20106d41, 0x1972820a, 0x2008ee0c,
0x20fc8914, 0x08174878, 0x00207f85, 0x08b31919, 0x03006422, 0x0eb36918, 0x6e073321, 0x71820a2d, 0x013d3322, 0x64056056, 0xb5480591, 0x50502205,
0x08205950, 0x280a3c22, 0x5a837784, 0x14823c22, 0x20063743, 0x82f58228, 0x82462080, 0x5e0020fb, 0x6f870a8b, 0x00002322, 0x68050149, 0x6b840d01,
0x21086a41, 0x67831523, 0x0c92ca19, 0x28140a24, 0x53826e3c, 0x28280a23, 0x82ec8428, 0x821e200b, 0xff08335f, 0x00e2fff6, 0x006e005a, 0x00150007,
0x00350029, 0x4f57003b, 0x23172606, 0x33352315, 0xa13e1915, 0x20d0820b, 0x24bf4427, 0x3b82f383, 0x82172321, 0x82282042, 0x320a2173, 0x4106c844,
0x78430550, 0x2213830d, 0x83140a3c, 0x21958323, 0x6e430a0a, 0x1e642914, 0x280a781e, 0x00000a0a, 0x1b22b38b, 0x4e182f00, 0x4d22083b, 0xb3910000,
0xa9097b5b, 0x07c551b9, 0xe444b988, 0x20bc9506, 0x0587453c, 0x2a43e182, 0x14ea4408, 0x4620c082, 0x835edb82, 0x006e2309, 0x46180007, 0x414f08bd,
0x0b0d4705, 0x35231527, 0x35331523, 0x20b78233, 0x05814a15, 0x4b281421, 0x28220525, 0x0084140a, 0x28246f82, 0x82141446, 0x82083844, 0x0a28210c,
0x08936718, 0x1d006e26, 0x00002300, 0x07674918, 0x12d65c18, 0x61637482, 0x08946005, 0x82140a21, 0x320a2501, 0x501e1432, 0x1e22ed85, 0x66821e1e,
0x6e247082, 0x0000323c, 0x0a9b091a, 0x1f000b22, 0xc1195d83, 0x33200a87, 0x8206ad7c, 0x4e0983b3, 0x0722055f, 0xbb703523, 0x4a528209, 0xbe820506,
0x65820a20, 0x6a3c3221, 0x462d08eb, 0xff010014, 0x005a00f6, 0x0078001e, 0x82b58205, 0x333521fd, 0x28249782, 0x000a145a, 0xe362d382, 0x4c822005,
0x23840c59, 0x69746785, 0x42be8307, 0x1e2006f9, 0x0e826182, 0x72464621, 0x032006c7, 0x20065b50, 0x08b15764, 0x19058c45, 0x84095e1f, 0x07c643b6,
0x1520b882, 0xc183d283, 0xbd4d1e20, 0x83b08208, 0x822820c5, 0x3c0a2107, 0x5b825d82, 0x28200582, 0x0a222087, 0x2b540a50, 0x82642006, 0x052954c7,
0x31002526, 0x41003900, 0x11295d18, 0x07353322, 0x63837182, 0x08785518, 0x08e97a19, 0x95823320, 0x840b9a47, 0x281521ea, 0x5024da85, 0x3c1e0a32,
0x8406c643, 0x828d8389, 0x0a0a227a, 0x269c835a, 0x3c3c140a, 0x8214461e, 0xadd11900, 0x821a840c, 0x0dc358af, 0x27001725, 0x18002f00, 0x8208c152,
0x0e615480, 0x08875718, 0x4c182320, 0xb4820a9a, 0x0720ba83, 0x24090a5c, 0x15333723, 0x05c34623, 0x8e841e20, 0x4305f865, 0x088d0813, 0x9d5c3c20,
0xc956180a, 0x0a14230c, 0xa2180300, 0x0d210807, 0x05c37e00, 0xcb45fc84, 0x07b8410b, 0x2206f173, 0x431e1e0a, 0x14210713, 0x225a8614, 0x82141450,
0x0a2822eb, 0x088b750a, 0x2005ab46, 0xf7661800, 0x7ed5820e, 0x62180dd6, 0x14200a6b, 0x46200084, 0x2008e347, 0x2053843c, 0x08bb7600, 0x6e005024,
0x49570f00, 0x05d34a05, 0x20053145, 0x20538215, 0x0df01817, 0x08155a09, 0xc749ad84, 0x23068206, 0x280a140a, 0x5d83b682, 0x0a0a3c24, 0x98193214,
0xc6180ca4, 0x6d820997, 0x67844620, 0x4205796c, 0xb3840614, 0x220cdb48, 0x821e0a3c, 0x8803839e, 0x226182b6, 0x87460a0a, 0x820320b4, 0x00002249,
0x204b8250, 0x06dd5f0b, 0x0c137419, 0x82054450, 0x61332057, 0xab4607f7, 0x44142005, 0x9e7f066d, 0x14142505, 0x5a1e1e1e, 0x1e205284, 0x52830a82,
0x1e000126, 0x3c00f6ff, 0xcf4e5982, 0x85332007, 0x423c209d, 0x82820571, 0xc3430282, 0x82f62005, 0x00502125, 0x794c7f83, 0x21298605, 0xf842012b,
0x85502009, 0x08e04f35, 0x08bc5918, 0x14206b85, 0x32206b82, 0x3b216b85, 0x08dd4501, 0x34852320, 0x2c841420, 0x0ae76a18, 0x1f005a22, 0x0c3d1519,
0x2009a365, 0x827a8635, 0x42322011, 0x1e240681, 0x280a0a28, 0x08c3bb18, 0x0a23f782, 0x570a640a, 0x1b510593, 0x003c2105, 0x54554f87, 0x18828909,
0x4308764e, 0x4e870692, 0x0a425318, 0x14244e84, 0x04000014, 0x2106bf75, 0x1119005a, 0x17200891, 0x5b06e542, 0xeb4d07c9, 0x35372407, 0x82461523,
0x82558552, 0x0a0a22e7, 0x2b97831e, 0x281e281e, 0x1e281414, 0x1e1e461e, 0x0a234f82, 0x8300e2ff, 0x724f8a9f, 0x6318080f, 0x172008c5, 0x4f834b82,
0x840a3c21, 0x0a28234d, 0x50831414, 0x4d820382, 0x3c0a0a22, 0x8f524f88, 0x204f8709, 0x09ab501f, 0x82073a41, 0x831520b0, 0x7803874d, 0x126406d1,
0x0a1e2909, 0x0a321432, 0x1414780a, 0x8306c64c, 0xd3a019fa, 0x886e2008, 0x4a5b82fb, 0x2b43063b, 0x86072008, 0x205b88a9, 0x59b2830a, 0x0a20052e,
0x1e200083, 0x0a235883, 0x8c46320a, 0x0001215c, 0x32250083, 0x07005000, 0x05796d00, 0x2315232a, 0x280a141e, 0x0a463c14, 0x22082b67, 0x7d3c0046,
0x3520057b, 0x82078b4b, 0x20708225, 0x08436c23, 0x14206883, 0x75845982, 0x85063345, 0x8246205b, 0x6213205b, 0x145909c3, 0x55678209, 0x51180820,
0x73820914, 0x73833787, 0x31629384, 0x23152409, 0x83140a14, 0x871e2035, 0x872f9331, 0x4bc21863, 0x1e0a2107, 0x28239182, 0x4a322828, 0x5f890524,
0x2f690920, 0x24cf8208, 0x0a3c2832, 0x2056823c, 0x20f78b32, 0x053f4750, 0x5c07aa42, 0x2f820844, 0x5e823720, 0x089d7418, 0x6c322821, 0x6a830531,
0x67820a20, 0x00229682, 0x00830002, 0x0322ff83, 0x69830f00, 0xc1181520, 0x35230aa5, 0x85464623, 0x229b82cb, 0x720a0a46, 0xdf6505fe, 0x005a2408,
0x83190015, 0x07624733, 0x84333521, 0x1533217b, 0x5a4c7986, 0x82142005, 0x2846216f, 0x08355f18, 0x18321421, 0x830983cc, 0x003c247b, 0x410d0050,
0x3b8408d7, 0x14231523, 0x24e48228, 0x3c141e0a, 0x41378314, 0x2b89083f, 0x83063145, 0x222a8369, 0x82320a28, 0x140a2129, 0x220c0f42, 0x850b0050,
0x2b958ad3, 0x0a331523, 0x0a0a1e14, 0x1414323c, 0x28235d83, 0x4414280a, 0x07410583, 0x09074207, 0x0c94061b, 0xfe822820, 0x38823c20, 0x97916886,
0x91833786, 0x82058142, 0x15232275, 0x82378323, 0x8214203a, 0x203d8237, 0x840a8214, 0x07b745a3, 0x5c003c21, 0x4342057b, 0x28ab8408, 0x15233723,
0x2335013b, 0x05a24815, 0x44825020, 0x1e207082, 0x0a213c82, 0x22ee8332, 0x83010000, 0x3c0023ae, 0xe1865000, 0x82090d4e, 0x20688673, 0x20e88228,
0x05c26c14, 0x2508b341, 0x00170050, 0x816b001b, 0x0ce15906, 0x6e822320, 0x82372321, 0x3b521804, 0x0a142408, 0x840a321e, 0x82458443, 0x1e1e218b,
0x200b3342, 0x05ff7a3c, 0x4309c955, 0x32250569, 0x141e3c0a, 0x82378214, 0x8b14203c, 0x41ab832f, 0xe941095d, 0xab791b06, 0x823c2008, 0x322821dd,
0x0a223882, 0x3f821e14, 0x843c0a21, 0x0727413b, 0x8505e342, 0x433320b9, 0x15200be1, 0x2207bd69, 0x41352315, 0x4782052d, 0x0a283222, 0x08a9a219,
0x0a25c582, 0x14321428, 0x06334114, 0x33414620, 0x05d94709, 0x5605a741, 0x758205b6, 0x2b831e20, 0x220e4742, 0x44170013, 0x4d42091d, 0x24bb8209,
0x28233533, 0x064b4814, 0x0b844284, 0x3221c583, 0x0d57420a, 0xc7430b20, 0x2315250b, 0x143c141e, 0x0a229783, 0xcb433c0a, 0x000d220d, 0x15cb1911,
0x8533200c, 0x830a2065, 0x460a22dc, 0x0517431e, 0xa5191420, 0xb742095b, 0x415a2005, 0xfb600dd7, 0x053a5909, 0x2006d741, 0x05904e0a, 0x19280a21,
0x2207043a, 0x82140a1e, 0x03371a58, 0x4346200c, 0x7818088f, 0x23200935, 0x32262f83, 0x28143c0a, 0x3c5c1e14, 0x44012005, 0xbb430837, 0x202b8405,
0x20ab8215, 0x822b8315, 0x143c2366, 0x3182141e, 0x0f20db8d, 0x096b4b18, 0x20084361, 0x279b8323, 0x1e1e0a0a, 0x0a0a3232, 0x90826782, 0x84501421,
0x0d3b42ec, 0x41086b44, 0x414208fd, 0x05b54209, 0x0a20cb84, 0x1421dc87, 0x21db8b14, 0x27410002, 0x00192207, 0x09ff421d, 0x95188585, 0x152009e7,
0x82828d84, 0x0d190a20, 0x2a4108f7, 0x41148207, 0x1e200c2b, 0x50265082, 0x09005000, 0xf6440000, 0x82232005, 0x141e2685, 0x500a1e1e, 0x8228823c,
0x737f1a1d, 0x06974607, 0x820ca34a, 0x332723bb, 0x974a2335, 0x82b48206, 0x240582ae, 0x141e0a0a, 0x09db7d14, 0x15215f83, 0x1b4e1800, 0x08597808,
0x23236a83, 0x820a0a1e, 0x5031822b, 0x0b8205c7, 0xc0180e84, 0x778309e7, 0x5205194b, 0x1521089d, 0x23ce8323, 0x140a140a, 0x780a9c46, 0x5024051b,
0x11003c00, 0x15206b83, 0x080f6118, 0xa7826f82, 0x870a4621, 0x820a2069, 0x283c2300, 0xa0822828, 0x0d203389, 0x089f8418, 0x2f872320, 0x28283223,
0x832a823c, 0x412b839e, 0x50200707, 0x20052f46, 0x062e4137, 0x0acf8518, 0x05427182, 0x5c282005, 0x282108e5, 0x05a24b14, 0x41075c43, 0x50210a4f,
0x837a1b00, 0x82462015, 0x202e8231, 0x0bac4614, 0x5a207b87, 0x86052347, 0x86d5827b, 0x207988e5, 0x052c5314, 0x50240683, 0x32140a0a, 0x21054c49,
0x40180a0a, 0x50200817, 0x62053744, 0x15200705, 0x35214382, 0x06a94623, 0xb7822820, 0x77825020, 0x7e820a20, 0x01000024, 0x35821400, 0x794d2f87,
0x83332009, 0x05705d33, 0x82142821, 0x141e2429, 0x193c140a, 0x200c3ba5, 0x0881410d, 0x2408d84f, 0x33152327, 0x053c4646, 0x3582d782, 0xa2825020,
0x42281421, 0xb1461523, 0x829d8609, 0x3c0a2297, 0x08447f1e, 0xa38a1420, 0x2005137f, 0x05275950, 0x82050d41, 0x0a5b4505, 0x720a3c21, 0x7682089f,
0x830a3221, 0x3c0a21dc, 0x03217882, 0x463b8500, 0x456108bb, 0x223d8505, 0x46073315, 0x322006bb, 0x3c203582, 0x04823484, 0x280a3c24, 0x4f82320a,
0x14141422, 0x420a1f41, 0xb75e086f, 0x05e75f08, 0x1e206b84, 0x2205b55d, 0x411e0a14, 0x19220c23, 0xc71a1d00, 0xc5460d29, 0x4d3d820a, 0x7a82058f,
0x84080c46, 0x827c820b, 0x4c4b837a, 0x9b4305e0, 0x7b0b2009, 0x8387077d, 0x20059743, 0x22318232, 0x8414280a, 0x057247f9, 0xc7420020, 0x7a0f2009,
0x1555058d, 0x23152105, 0x20098f71, 0x25e28228, 0x1e0a0a3c, 0x4d4d0a28, 0x07e24105, 0x089f6f1a, 0x315f5020, 0x0d6d4109, 0x27244385, 0x37331523,
0x3c211882, 0x3cd7190a, 0x20488208, 0x05c2490a, 0x4606db42, 0x002005cc, 0x2009e743, 0x0b354250, 0x20058343, 0x20938235, 0x84f08332, 0x143221fc,
0x94440b82, 0x0f8b4305, 0x510a6155, 0x27230932, 0x49233533, 0x788305bb, 0x82141421, 0x44d382ff, 0x0a220506, 0x41183214, 0x50200b53, 0x07295518,
0x2409cd43, 0x143c141e, 0x2338821e, 0x320a0a46, 0xce187e82, 0x2b8309f7, 0x09c95118, 0x6f413320, 0x85072005, 0x412c826b, 0xfd47059c, 0x14282105,
0x210aef43, 0xf341005a, 0x0d304405, 0x200a0856, 0x20ee8207, 0x42388246, 0x142205af, 0xa4820a28, 0x410a1421, 0x0b82052e, 0xc7438b82, 0x05b74206,
0xf1415020, 0x0a697708, 0x2005da61, 0x82428332, 0x3c0a21be, 0x890ae344, 0x08e96a2f, 0xe5461520, 0x222e8206, 0x90321432, 0x434118e7, 0xea751908,
0x4223200c, 0x9e82059b, 0x821e1e21, 0x82142068, 0x820a20a0, 0x3c14219b, 0xdf440983, 0x1817200c, 0x4314879c, 0xd34b06d3, 0x84e08307, 0x431420f4,
0xdb4305d6, 0x05cc4706, 0x6009f744, 0x8f5a07cf, 0x18352006, 0x410a177a, 0x3d230550, 0x19152301, 0x83088888, 0x1e142193, 0x85083a41, 0x0c1f4808,
0x50005023, 0x05cb4800, 0x08935c18, 0x1e141e27, 0x14280a1e, 0x08f7463c, 0x2582cc82, 0x73453c20, 0x0baf4705, 0x934d3520, 0x08f3460f, 0x5d0a1e21,
0x1421064e, 0x483d8314, 0xb760055f, 0x08844f06, 0x2005de4f, 0x077b4523, 0x600a0147, 0x14200631, 0x79060247, 0x9f4d089f, 0x4de48218, 0x5021119f,
0x20b38300, 0x1b1f1900, 0x05554a18, 0x00822820, 0x09477a18, 0x5020ad83, 0x07493782, 0x0a7f4306, 0x0a3c2825, 0x823c0a0a, 0x82282091, 0x4826822d,
0xd3850583, 0x5005c94a, 0xda18071d, 0x834b0861, 0x05f04307, 0x1e206e82, 0x2005ce48, 0x05155e0a, 0xb74d4782, 0x4d4b830c, 0x502114b7, 0x12b74d50,
0x4a095341, 0x5f6c0661, 0x0bc94609, 0x3c141e22, 0x41082646, 0x50200847, 0x5406954a, 0x33830abe, 0xdd842820, 0x320a1422, 0xff413184, 0x09ef4b0e,
0x8408cd46, 0x07834ddf, 0x2009854d, 0x4dd8821e, 0xf7410b87, 0x1bd5460d, 0xaf937885, 0x4d06b14b, 0x15470c8f, 0x0a0a240a, 0x4d14140a, 0xbb860a95,
0x2009974d, 0x0dbd420f, 0x4a05d741, 0x2720051f, 0x5557c183, 0x3c462105, 0x0a204882, 0x2005b655, 0x4c518328, 0xc3830867, 0x694a1320, 0x18152009,
0x2009d752, 0x059f4d23, 0x0a1e1e23, 0x82388228, 0x42fe8384, 0x1b220c1f, 0x398b1f00, 0x09575c18, 0x4d083f43, 0xc9820ba7, 0x680ba94d, 0xe6460555,
0x08f74d05, 0x4e05ab47, 0xef470865, 0x07af4d05, 0x3c0a0a22, 0x2105b14d, 0x4b821428, 0x0c4fcd19, 0x460e5b50, 0x7e8207eb, 0x23372324, 0xc9823315,
0x2005ee46, 0x08b94d1e, 0x43820a20, 0x4205bb4d, 0xcf8409ef, 0x02413720, 0x5c40180b, 0x05444408, 0x6a065365, 0x142005d3, 0x59824283, 0x08824620,
0x0f839084, 0x1e141422, 0xc3429883, 0x086f4f09, 0x0db7b91b, 0x2008f546, 0x4630823c, 0xff4e08f6, 0x6de81914, 0x0911410c, 0x8307cf4d, 0x054f448c,
0x0c828b82, 0x32218a82, 0x0d9b440a, 0xd34d0f20, 0x065b420a, 0x2306fd46, 0x0a321428, 0x8a061646, 0x0bff4c7b, 0x41081343, 0xe3830585, 0x4d500a21,
0xde5808de, 0x473b8806, 0x35210603, 0x0c514633, 0x4d0a5342, 0x14200ce1, 0x82063644, 0x200a82b2, 0x455b8314, 0x034410c3, 0x0a014705, 0x20063348,
0x4db8820a, 0x134306e9, 0x0f374406, 0x69183384, 0x09470819, 0x143c2208, 0x080a471e, 0xef48b788, 0x06774205, 0x4318bb83, 0x23520865, 0x0a0a2306,
0x71831e1e, 0x32229f82, 0xb0831414, 0x04823c20, 0x450eff4d, 0xcd4c0d33, 0x884d870a, 0x820a20fd, 0x82fc8839, 0x21fb8b4e, 0x00830002, 0x71005021,
0x4b41066f, 0x5a23200c, 0x4f880d30, 0x4e418c84, 0x0511470b, 0xb55c0a20, 0x49002005, 0x6e2808d7, 0x0b000700, 0x00001d00, 0x2006a041, 0x21a48215,
0xac5e2715, 0x8315200f, 0x1414223d, 0x85a48446, 0x06a24204, 0x8b05ba48, 0x0011244f, 0x19270015, 0x5f191b96, 0x15200e06, 0x0b259619, 0x5a853220,
0x84057253, 0x14142159, 0x0b84c884, 0x1325b38a, 0x29001700, 0xe9971900, 0x08f75609, 0x37153325, 0x91231533, 0x192820bf, 0x880bfb98, 0x0b065a66,
0x0021688b, 0x081b6b00, 0x09006e28, 0x11000d00, 0xae182300, 0x17200bd5, 0x23226383, 0x67913315, 0x99190a20, 0xc4420a23, 0x0a0a2c05, 0x320a2814,
0x140a140a, 0x5f280a1e, 0xcb8a08c2, 0x96195d87, 0x2b411257, 0x22c5820f, 0x82142814, 0x8c14204a, 0x0a1e21c2, 0x28415e83, 0x46bf8c0a, 0x2920050f,
0x20093f79, 0x058d4835, 0x0a6b9619, 0x0a216790, 0x2153820a, 0x0083141e, 0x28465c84, 0x07f84905, 0x14226e82, 0xcb93320a, 0x0d000923, 0x4fe81900,
0x4117200c, 0x5162158d, 0x21c58905, 0xc3931e1e, 0x07574418, 0x4a196e20, 0x31200849, 0x4705f341, 0x5e4606cc, 0x41372008, 0x1520068f, 0x18149341,
0x460b4b70, 0x994105f0, 0x0c004208, 0x0d822820, 0x0342d58a, 0x0943410b, 0x210cf948, 0x79873335, 0x19110942, 0x8411e399, 0x8214207b, 0x0a0a217b,
0x0a21ed82, 0x0a876714, 0x73790a20, 0x006e2308, 0x6d85000b, 0x19002b21, 0x2018f399, 0x0d4c5937, 0x9619f683, 0x0b4b0fbd, 0x068e4905, 0x14226e84,
0x7318140a, 0x49190aca, 0x03440b93, 0x441f2005, 0x63920e03, 0x1422bb82, 0x4b431414, 0x20578209, 0x726a1832, 0x05076908, 0x2607634f, 0x0011006e,
0x44290015, 0x5d921807, 0x890b0944, 0x086642be, 0x6789688d, 0x17001324, 0x0b442b00, 0x4469921a, 0x6a890c0d, 0x200c0d42, 0x3b391a46, 0x0004210d,
0x44058345, 0x2520070f, 0x41130f44, 0x11441497, 0x440a820a, 0x124406e1, 0x8a322008, 0x6b9a1966, 0x4461830d, 0xcd951113, 0x8d061544, 0x055243ca,
0x5343c78e, 0x07654209, 0x19443f20, 0x67cf9319, 0x152112a8, 0x0d2f4428, 0x0989e689, 0x2106334e, 0xe0190a0a, 0xfc890c3d, 0x240d8f42, 0x000d0009,
0x0ad34121, 0x33171525, 0x93272315, 0x064944fb, 0x4a44f989, 0x18f79807, 0x20072b44, 0x214b4433, 0x4d44ff93, 0x42e48911, 0x28200c40, 0x18055251,
0x420a076f, 0xe1430943, 0x7d971808, 0x05ef4b09, 0x93074f44, 0x0e514479, 0x210d5b41, 0x68821e0a, 0x53281421, 0x0c8207fd, 0x06000a22, 0x4408b342,
0x21220753, 0x55442500, 0x33272219, 0xe17c1835, 0x33152108, 0x100d9b19, 0x1e141e22, 0x44068f49, 0x3c22084e, 0x1282320a, 0x260a2b47, 0x000b0007,
0x44190015, 0x578c0e49, 0x20054344, 0x84bd8246, 0x0542444e, 0x48856420, 0x200cb746, 0x22498211, 0x4423001f, 0x558c1841, 0x860d4548, 0x0a3a44aa,
0x83416088, 0x00132509, 0x00210017, 0x480b6543, 0x618c0f45, 0x200c3344, 0x41be8732, 0x64870cf1, 0x48096343, 0xb519053b, 0x2320098d, 0x3d486283,
0x485f8c08, 0x6c410d39, 0x48322008, 0x50200539, 0x89072041, 0x000d23bf, 0x59850011, 0x8c112544, 0x0b354859, 0xb6835786, 0x91051e44, 0x059b42b3,
0x72051941, 0x15220a49, 0x31481523, 0x435f8d09, 0x14200dfd, 0x43071b41, 0x5a200bf2, 0x0924bf91, 0x17000d00, 0xc549c182, 0x05e54309, 0x29485b8d,
0x43b98608, 0xb78707de, 0x4309e342, 0x292207d7, 0xd9432d00, 0x0deb4221, 0x8811d343, 0x0ce041c4, 0x0d822820, 0x4745c986, 0x052f410f, 0x8c171d48,
0x0ec743d3, 0x430c2f41, 0x462007c6, 0x89072f41, 0x07c34367, 0x441ac143, 0x11480835, 0x28142316, 0xab451414, 0x140a2205, 0x060e4814, 0x0a0a1e23,
0x0c436414, 0x0b000722, 0x4210c143, 0x05480c61, 0x484e8308, 0x48850902, 0x430dff47, 0x518c19bd, 0x5f0ef947, 0xc4570544, 0x82462008, 0x475c8409,
0xb9430df3, 0x435d8c1b, 0x14200cb9, 0x4105fc61, 0x60880cd6, 0x430c7f44, 0x1f2005bb, 0x411ce747, 0xe1470567, 0x0564410d, 0x2006b743, 0x22bb9132,
0x4b11000d, 0x23210d23, 0x06b54c15, 0xd547b58f, 0x86098409, 0x140a214a, 0xb743af95, 0x47252005, 0xb58422cd, 0x4111b347, 0x1e200776, 0xa6476882,
0x0e774107, 0x0d000922, 0x8d12b143, 0x099147b7, 0x8e475083, 0x204c840b, 0x5f441800, 0x09d74b09, 0x4222b143, 0xb1430ddb, 0x410a2011, 0xe38212d8,
0x413c0a21, 0xdb410636, 0x092b410c, 0x8d16b143, 0x0eb1436d, 0x470b3e6c, 0xde840a76, 0x4667af43, 0x07220907, 0x07460b00, 0x0cc14f05, 0x230eb945,
0x33152307, 0x4506b743, 0x174107ad, 0x14322305, 0x09855014, 0x0d4f8a18, 0x2005bf4b, 0x1ac14b25, 0xc7436192, 0x47678a0c, 0x6c8b0a88, 0x200d8b47,
0x1cc54b27, 0xd7436d92, 0x436e8a0d, 0x708a0cdc, 0x450f9747, 0x9b4505b3, 0x08dd4607, 0x6b923720, 0x410b9d47, 0xa56c052e, 0x08c74b05, 0x82066642,
0x0b374e1b, 0x11000d22, 0x200e6348, 0x08ed4315, 0xa9476592, 0x053d5e09, 0x4709096d, 0xcb9405ac, 0x4105cb42, 0x538e053d, 0x93076948, 0x0fff43d1,
0x440eae41, 0x55190704, 0x0a200859, 0x200f1351, 0x12a14b1d, 0x07207f8e, 0x2820ec82, 0x8a070f44, 0x07144460, 0xc747cf8a, 0x002f2111, 0x9323a14b,
0xa4461871, 0x140a2208, 0x57481814, 0x094d410a, 0x2008205e, 0x8b098228, 0x0b9b44e1, 0x440b5741, 0x7d921725, 0x410f2b44, 0xe0470e57, 0x06184607,
0x738b7f82, 0x4f09a74b, 0xf14f21fb, 0x0a142310, 0xdd472814, 0x1e32210b, 0x2014db47, 0x0e9d4b15, 0x4408bd45, 0x4683061f, 0x2005d547, 0x4740865a,
0x1f200dd3, 0x8818914b, 0x0c074449, 0x00444f83, 0x4754860a, 0xeb4d0dcb, 0x0f854b0b, 0xef435588, 0x4356830d, 0x58860ce8, 0x470ce745, 0xc21805c3,
0x13430c91, 0x43578808, 0x44410cdb, 0x4b322005, 0x46200575, 0x4f050041, 0xaf190d97, 0x82630725, 0x4e372008, 0x15200b9b, 0x870ac343, 0x05bc43a2,
0x63429f93, 0x42fd8305, 0xa5910e49, 0x410faf43, 0x5c820756, 0x140a0a25, 0x8f500a14, 0x055f4bab, 0x880f5d4b, 0x089743f5, 0x90434883, 0x53a38907,
0x2920117b, 0x4721554b, 0x9f470935, 0x10b04112, 0xb587d182, 0x20116b53, 0x09717e21, 0x1b411520, 0x086b5305, 0x6b436589, 0x086a420f, 0x20069547,
0x0513413c, 0x072f4518, 0x220b5b53, 0x4f33002f, 0x61831909, 0x210f6354, 0x87842327, 0x190f174f, 0x2109045c, 0x91660a14, 0x136c5305, 0xe7431383,
0x0007210b, 0x2005b172, 0x118b4327, 0x9d437797, 0x08db4406, 0x80536e84, 0x41688410, 0x835309bb, 0x002d2205, 0x1bb34331, 0xc5437197, 0x53778d0c,
0x7c841594, 0x7810df49, 0xbd510713, 0x07394312, 0xf1438197, 0x43828d0d, 0xec510cfb, 0x4684860a, 0x0344094f, 0x05c57905, 0x1207ae19, 0x4b1ceb41,
0x59180cd9, 0xc0530c52, 0x23ff9113, 0x0011000d, 0x254b7987, 0x4bf9a20c, 0x778c08fd, 0x9b09b94f, 0x055744f3, 0x44077941, 0x79411a5b, 0x0dd34f18,
0x200d9079, 0x16cc530a, 0xc753ff91, 0x59252005, 0xcb530cab, 0x4c7b9808, 0xf98c0841, 0x8612d853, 0x09df4370, 0x2209db53, 0x443b0037, 0x859825af,
0x42114548, 0xec531a80, 0x4298850e, 0x8f410983, 0x174d480d, 0x08514818, 0x09b44e18, 0x44077544, 0x8a8d0fe9, 0x28411420, 0x0c005408, 0x00208585,
0x21120754, 0x5d580027, 0x219f8e1b, 0x0d542335, 0x079f4a11, 0x6c180a20, 0x142007c3, 0x07676e18, 0x54053754, 0x1b210e13, 0x0f5d5800, 0xe1446392,
0x89322005, 0x05dd445a, 0xdc865020, 0x000a1e22, 0x230cdb47, 0x00150011, 0x921b9f4c, 0x0bd14461, 0x20085141, 0x254a180a, 0x4d0a2008, 0xc186050b,
0x230b9346, 0x00170013, 0x921d9f4c, 0x0cbd446d, 0xb9446e8a, 0x4cdd8b0c, 0xbd67269f, 0xb2511805, 0x35332308, 0xb5191523, 0x40410c9b, 0x0c9d4c09,
0x9b41d688, 0x1b9f4c0a, 0x9544d195, 0x4cce8e06, 0x6587099e, 0x4c0f1f53, 0xd1931c9f, 0x890eef48, 0x0b7c44d4, 0x1b424620, 0x00092316, 0x9f4c000d,
0x44d39313, 0xd18a066d, 0x870b9e4c, 0x369f4ccf, 0x5944d994, 0x42dc8910, 0x9d4c0c1b, 0x1d534107, 0x3720d38e, 0x93060b5d, 0x0e454479, 0x4c0d5341,
0x2b420b99, 0x5c322011, 0x994c0897, 0x0e315818, 0x2f0b8a4c, 0xff010000, 0xff6e00b0, 0x007800ba, 0x27000003, 0x5024a382, 0x0a780a0a, 0xba201783,
0xc4201782, 0x46201789, 0xc4201787, 0xce201782, 0x3c201789, 0xce201787, 0xd8201782, 0x32201789, 0xd8201787, 0xe2201782, 0x7e821789, 0xe2205f85,
0xec201782, 0x1e201789, 0xec202f87, 0xf6201782, 0x14201789, 0xf6201787, 0x083baf18, 0x0a20a784, 0xb0221787, 0xbf826400, 0xbf8a6e20, 0xbf866e20,
0x82ff6421, 0x221787ab, 0x850a0a46, 0x82c42017, 0x87ab822f, 0x85bf8217, 0x82ce2017, 0x87ab8217, 0x85bf8217, 0x82d82017, 0x87ab8217, 0x85bf8217,
0x82e22017, 0x87ab8217, 0x85bf8217, 0x82ec2017, 0x41ab8317, 0xbf82064f, 0xf6251785, 0x00006400, 0x82a78800, 0x221785bf, 0x825a00b0, 0x8a6420bf,
0x866420bf, 0x825a20bf, 0x221788bf, 0x850a0a46, 0x97c01817, 0x82ce2017, 0x8aab8247, 0x202f85bf, 0x821782d8, 0x85bf8aab, 0x82e22017, 0x8aab8217,
0x201785bf, 0x831782ec, 0x85bf89ab, 0x00f62217, 0x88bf825a, 0x85bf828f, 0x00b02217, 0x18bf8250, 0x2308afbf, 0x5a0a0a50, 0x5020bf86, 0x1788bf82,
0x1785bf82, 0x2f82c420, 0x7787ab82, 0x2f873c20, 0x1782ce20, 0xbf8aab82, 0xd8202f85, 0xab821782, 0x1785bf8a, 0x1782e220, 0xbf8aab82, 0xec201785,
0xab831782, 0x1785bf89, 0x5000f622, 0x8f88bf82, 0x1785bf82, 0x4600b022, 0x5020bf82, 0x200a7f41, 0x20bf8650, 0x88bf8246, 0x85bf8217, 0x82c42017,
0x82ce202f, 0x825f864b, 0x201785bf, 0x821782ce, 0x85bf8aab, 0x82d82017, 0x8aab8217, 0x201785bf, 0x821782e2, 0x85bf8aab, 0x82ec2017, 0x89ab8317,
0x221785bf, 0x824600f6, 0x828f88bf, 0x221785bf, 0x823c00b0, 0x8a4620bf, 0x864620bf, 0x823c20bf, 0x821788bf, 0x201785bf, 0x822f82c4, 0x0a7f41ab,
0xce201785, 0xab821782, 0x32221787, 0x17850a0a, 0x1782d820, 0x7b82e220, 0x28208f86, 0xe2201787, 0xab821782, 0x2f85bf8a, 0x1782ec20, 0xbf89ab83,
0xf6221785, 0xbf823c00, 0xbf828f88, 0xb0221785, 0xbf823200, 0xbf8a3c20, 0xbf863c20, 0xbf823220, 0xbf821788, 0xc4201785, 0xab822f82, 0x1785bf8a,
0x1782ce20, 0xbf8aab82, 0xd8201785, 0xab821782, 0x850a7f41, 0x82e22017, 0x8aab8217, 0x201785bf, 0x831782ec, 0x85bf89ab, 0x00f62217, 0x88bf8232,
0x85bf828f, 0x00b02217, 0x20bf8228, 0x20bf8a32, 0x21bf8632, 0xab82ff28, 0x850a7f44, 0x82c42017, 0x8aab822f, 0x201785bf, 0x821782ce, 0x85bf8aab,
0x82d82017, 0x87ab8217, 0x0a282217, 0x2017850a, 0x821782e2, 0x85bf8aab, 0x82ec2017, 0x89ab8317, 0x221785bf, 0x822800f6, 0x20a788bf, 0x2247870a,
0x821e00b0, 0x8a2820bf, 0x862820bf, 0x821e20bf, 0x221788bf, 0x850a0a46, 0x82c42017, 0x8aab822f, 0x201785bf, 0x821782ce, 0x85bf8aab, 0x82d82017,
0x8aab8217, 0x201785bf, 0x821782e2, 0x85bf8aab, 0x82ec2017, 0x89ab8317, 0x221785bf, 0x821e00f6, 0x828f88bf, 0x221785bf, 0x821400b0, 0x8a1e20bf,
0x861e20bf, 0x821420bf, 0x821788bf, 0x201785bf, 0x822f82c4, 0x85bf8aab, 0x82ce2017, 0x8aab8217, 0x201785bf, 0x821782d8, 0x85bf8aab, 0x82e22017,
0x87ab8217, 0x0a1e2217, 0x2017850a, 0x831782ec, 0x85bf89ab, 0x00f62217, 0x88bf8214, 0x85bf828f, 0x00b02217, 0x20bf820a, 0x20bf8a14, 0x20bf8614,
0x88bf820a, 0x85bf8217, 0x82c42017, 0x82ce202f, 0x097f444b, 0xce201785, 0xab821782, 0x1785bf8a, 0x1782d820, 0xbf8aab82, 0xe2201785, 0xab821782,
0x1785bf8a, 0x1782ec20, 0xbf89ab83, 0xf6211785, 0x89968200, 0x85bf8277, 0x00b02417, 0x82baff00, 0x093f481b, 0xbf860a20, 0xbf820020, 0xff420a20,
0x2017850a, 0x822f82c4, 0x0a7f41ab, 0xce201785, 0xab821782, 0x1785bf8a, 0x1782d820, 0xbf8aab82, 0xe2201785, 0xec201782, 0x1e207789, 0x77849082,
0x1782ec20, 0xbf89ab83, 0xf6212f85, 0x88008300, 0x842e838f, 0xffb0222f, 0x20bf82f6, 0x185f8300, 0x820799c6, 0xff012228, 0x821782ba, 0x201787ab,
0x84308246, 0x82c42017, 0x87ab8217, 0x873c2017, 0x82ce2017, 0x87ab8217, 0x87322017, 0x82d82017, 0x87ab8217, 0x87282017, 0x82e22017, 0x87ab8217,
0x06144e17, 0xecff0122, 0xab831782, 0x00000327, 0x23153323, 0x212f8714, 0x1583fff6, 0xee85a788, 0xff010023, 0x823182b0, 0x194783ab, 0x2008016c,
0x20178200, 0x821782ba, 0x831787ab, 0xbfc818bf, 0xff01221a, 0x13c918ce, 0x83002008, 0x84bf8347, 0x82d8202f, 0x87ab8217, 0x84bf8347, 0x82e22017,
0x87ab8217, 0x097f4117, 0x0321c186, 0x83478400, 0x212f84bf, 0x9941fff6, 0x41178605, 0xe2210a7f, 0x8aab82ff, 0x055742bf, 0xe2ffba24, 0x3382c4ff,
0xff422f86, 0x82178209, 0x222f87ab, 0x850a0a3c, 0x82ce202f, 0x87ab8217, 0x87322017, 0x82d82017, 0x8aab8217, 0x202f85bf, 0x201782e2, 0x825f89ec,
0x201785bf, 0x831782ec, 0x85bf89ab, 0xfff62117, 0x89057142, 0x211783bf, 0xb7790007, 0x18032007, 0x250879ac, 0x001b0017, 0xa7183300, 0x33210901,
0x180b8207, 0x840e95b3, 0x6e7384fe, 0x0682069c, 0x320a1e23, 0x2303850a, 0x000e0000, 0x2405d766, 0x000f005a, 0x184f8213, 0x200783b7, 0xf3b6193b,
0x5796180c, 0x73352008, 0x5d18068d, 0x0f820711, 0x64373321, 0x73180535, 0x0720080b, 0x89870f86, 0x35012b23, 0x21278233, 0xa986013b, 0x3220a587,
0x0d854518, 0x874f0a20, 0x8cab8205, 0x55142017, 0x60180656, 0x50240802, 0x3232140a, 0x46220d82, 0x1a82281e, 0x59183c20, 0x50890ae9, 0x460a1422,
0x280aaf5a, 0x0031005a, 0x00530043, 0xa57e1857, 0x6da3850a, 0x8d6e053d, 0x05d46f09, 0x09e57118, 0x08b95118, 0x2209fd6d, 0x18373335, 0x820b7b46,
0x8217202b, 0xb9aa18dd, 0x55bb8808, 0x54180822, 0x47180ef6, 0x7650081d, 0x08e96009, 0x216c0a20, 0x14142105, 0x2009866a, 0x20c78228, 0x08a3410b,
0x11bf9c1b, 0x39003526, 0x013d0000, 0x08df8118, 0x3327a884, 0x33011d35, 0x85152735, 0x82172003, 0x830f8b07, 0x8207200b, 0x20038313, 0x84691828,
0x21848208, 0x0d820a1e, 0x8d852820, 0x06835020, 0x320a1425, 0x833c0a46, 0x84611815, 0x18322009, 0x830d1d66, 0x8803209a, 0x059b429f, 0x23330024,
0x61873335, 0x50505023, 0x203d823c, 0x825c825a, 0x08977302, 0x82005a21, 0x33352735, 0x50502315, 0x3f825a5a, 0x1b834390, 0x076f4318, 0x43874286,
0x20200f41, 0x08247b37, 0xa5593320, 0x013d2206, 0xc97f1923, 0x830f8b0c, 0x4169880b, 0xf6861810, 0x20231041, 0x080f4104, 0x76097742, 0x5518063f,
0x93740cf7, 0x1e581808, 0x675f1909, 0x5117870d, 0x072005eb, 0x080b7018, 0x617b2585, 0x190a2005, 0x420e4344, 0xc4861c77, 0x210c6043, 0x3282140a,
0x03822820, 0x77420882, 0x271b440d, 0x0fa96918, 0x18153321, 0x2008456e, 0x05414307, 0x08798118, 0x08056119, 0x17202382, 0x3b260382, 0x15231501,
0xd8181533, 0x372008b3, 0x6b181382, 0x42431149, 0x201b4407, 0x1b440a20, 0x05335628, 0x50003222, 0x0e9bab18, 0x86350021, 0xc56d1899, 0x795e190b,
0x284a1808, 0x058d4408, 0x50208f82, 0x190e4f45, 0x20099755, 0xad911803, 0x35172109, 0x08008c18, 0x82331521, 0x220e8260, 0x18505033, 0x25082977,
0x6e6e5a14, 0x5b83325a, 0x14143224, 0xb518141e, 0x78260877, 0x00000d00, 0x98181517, 0x152308ef, 0x82501523, 0x83462025, 0x23078204, 0x000a7896,
0x0a138519, 0x15000f22, 0x1469a118, 0x51004d25, 0x76370000, 0x2320058b, 0x03844282, 0x1558d182, 0x15332105, 0x19067141, 0x840a534c, 0xbcaf1813,
0x82072007, 0x1803831f, 0x8707326e, 0x0a0a212f, 0x14218685, 0x09b84528, 0x74183220, 0x2d7e08e6, 0x082e4105, 0x0a21ea82, 0x2228820a, 0x831e6e0a,
0x05046f13, 0x073c4018, 0x5a211183, 0x06c74514, 0x22056f7d, 0x180b0000, 0x23089756, 0x00170011, 0x09875a18, 0x1b003721, 0x180ba9ac, 0x1808eba0,
0x20082064, 0x07714233, 0x79421720, 0x82232009, 0x83ff84cb, 0x821720c7, 0x0b6542cf, 0x08278c18, 0x84084457, 0x820483a1, 0x20d184b5, 0x20b4820a,
0xe2c1183c, 0x21098209, 0x1b820a14, 0x2826d082, 0x3c0a5a0a, 0xda84320a, 0x02000033, 0xe2ff3200, 0x00005000, 0x0f000700, 0x013b0000, 0x236b8215,
0x33012b35, 0x23210784, 0x0d76433c, 0x0a000a22, 0x0a975318, 0x31002522, 0x0c6fb018, 0x00005123, 0x5a5e1833, 0x41418409, 0xcb7b0679, 0x82352008,
0x7f1719d3, 0x06c7410a, 0x2720f78b, 0x09cbd318, 0x3d832320, 0x200a325a, 0x20ee8428, 0x86fd8514, 0x20e68298, 0x84eb830a, 0x840c8526, 0x0a1e22f5,
0x05cf5d14, 0x28223382, 0x0582140a, 0x6e148c22, 0x64203382, 0x64222c82, 0x09828c0a, 0x09df6d18, 0x0b005a2e, 0x1b001300, 0x2f002700, 0x37003300,
0x08cd6018, 0x82092344, 0x84d98209, 0x25be18d1, 0x44352009, 0x17200821, 0x2c41b386, 0x0a3c2109, 0x3c417382, 0x200b840b, 0x22ba831e, 0x840a3c14,
0x089446c7, 0x27580e82, 0x19092005, 0x18088bd1, 0x19075b5a, 0x43096301, 0x6782050d, 0x82072b41, 0x48691987, 0x200b8b08, 0x06174b37, 0x59480a20,
0x6df28209, 0x78820605, 0xc2421e20, 0x21068205, 0x0e43780a, 0x820a2107, 0x00221f82, 0x531a0700, 0x0720084b, 0x1808bd72, 0x2008cbae, 0x47b21815,
0x2073830e, 0xa9e21b35, 0x1817200a, 0x18091161, 0x1808ca87, 0x25087d55, 0x1e1e140a, 0xa442280a, 0x28142505, 0x5a0a6e0a, 0x002b0b82, 0x000a0003,
0x003c0028, 0x840b0078, 0x3700216f, 0x2308d548, 0x33073335, 0x82058142, 0x1e232307, 0x86180a14, 0x0a200955, 0x4985b782, 0xd8820a20, 0x00820020,
0x47820620, 0x50003c22, 0x07214782, 0xc5391a00, 0x074d430b, 0x2b210785, 0x05924602, 0x83072c41, 0x09884158, 0x84089a5e, 0x826420bc, 0x83118405,
0x20088362, 0xd7601800, 0x82032009, 0x00132563, 0x15000017, 0x27224f82, 0x0f1a3335, 0x0b8208e5, 0x82071521, 0x82502013, 0x32322330, 0xb282280a,
0x6e6e1427, 0x0a140a32, 0x27038246, 0x141e1414, 0x09000014, 0x30082344, 0x00430025, 0x004f0049, 0x00570053, 0x005f005b, 0xeff61963, 0x062d4308,
0x6085ff85, 0x0987931a, 0x09417e1b, 0x23201f86, 0x0ce85018, 0x83373321, 0x0723213d, 0x2b229683, 0xe84a1502, 0x06564105, 0x14822720, 0x5f188e83,
0xeb8408b6, 0x821e0a21, 0x44ec8501, 0x63430839, 0x20108507, 0x2006820a, 0x08706778, 0xca820883, 0x458c1420, 0x46272182, 0x0a3c0a14, 0x8264140a,
0x222c834d, 0x19000000, 0x2409eb88, 0x00130007, 0xc7ad181f, 0x9fa3190a, 0x27fb830d, 0x006b0067, 0x0073006f, 0x087b9218, 0x2d791720, 0x0571700a,
0x8342e782, 0x06d9410f, 0x0715d318, 0x45072745, 0x44180b3b, 0x66180b43, 0x1387074d, 0x2b202f82, 0xc1583b83, 0x0ef1440c, 0x14140a23, 0x0a904c28,
0x46220a84, 0x02820a0a, 0x4808d65e, 0x1e2008cd, 0x2c821782, 0x140a3222, 0x46200182, 0x1e210d82, 0x057b440a, 0xc55b3220, 0x82642005, 0x0a322229,
0x203c8232, 0x8209826e, 0x0a0a221f, 0x8208825a, 0x13002132, 0x20081742, 0x55651817, 0x9dd21808, 0x5fb91909, 0x0063220d, 0xa7461867, 0x0b4b7909,
0x35233524, 0xb7181533, 0x2b440a13, 0x21e7840a, 0xb548013b, 0x20338205, 0xb3a21823, 0xa5a4180f, 0x4607200b, 0xa6440a6f, 0x0a1e2208, 0x061e591e,
0xcf82c182, 0x4e441882, 0x23058205, 0x0a3c0a0a, 0x6544ea82, 0x82268206, 0x0535411c, 0x22840b85, 0x0a240484, 0x7814140a, 0xab183d82, 0x3c2208b1,
0x4f82460a, 0x05828c20, 0x57841e20, 0x500a3c22, 0x00214682, 0x080f410c, 0x31002926, 0x3d003900, 0x0a0faf18, 0x5d005924, 0x01416100, 0x0c8d4a0d,
0xbc182320, 0x4a4b08a2, 0x06134305, 0x083da418, 0x20051d43, 0x050e4423, 0x23821720, 0x450b0b41, 0xb68a0b4b, 0x4c180a83, 0x0b43085e, 0x051b4107,
0x1805d844, 0x2009928f, 0xfa5a181e, 0x411e2009, 0x0a200804, 0x64201f84, 0x0283fd82, 0x82146e21, 0x1e0a2524, 0x14144614, 0x50201782, 0x3c20f282,
0x230c1749, 0x0019000d, 0x07f55418, 0x0907b018, 0xcf7cf789, 0x2b352208, 0x7e4a1802, 0x0210190b, 0x4ae0840d, 0xb81912d8, 0x2a490bd2, 0x48a51807,
0x4a28200b, 0xf1480529, 0x0b104307, 0x68483220, 0x05034108, 0x0a0a3c22, 0x41050742, 0x388205f0, 0xe6416420, 0x0a0a2108, 0x14220b83, 0x0f46640a,
0x201a8308, 0x20ec823c, 0x83138264, 0x0a5a220b, 0x2df6823c, 0x00000600, 0x50003200, 0x13007800, 0xf7821d00, 0x075d7c18, 0x0c6bfb19, 0x1805e742,
0x440997b4, 0x352005e7, 0x08259019, 0x490e814b, 0x0a250c19, 0x0a0a460a, 0x21c7885a, 0x1d820a1e, 0x2822dd83, 0x14821e0a, 0x00090025, 0x86f6ff00,
0xd168187f, 0x077b4307, 0x1806d148, 0x8408e856, 0x95ac1893, 0x07874a0f, 0x4a074742, 0x2b260677, 0x23153301, 0x47410a46, 0x41282008, 0x8418083c,
0x0a2108f6, 0x5a72180a, 0x08514f08, 0x92186e20, 0x0a2008b9, 0x6e22a882, 0xff7c500a, 0x43082007, 0x23260813, 0x3f003100, 0x39464f00, 0x48172009,
0x352008ab, 0x35207382, 0x200c2350, 0x231b8415, 0x23373315, 0x096b6818, 0x07231522, 0x33200d83, 0x08de221b, 0x480b915d, 0x07210a65, 0x7beb1933,
0x841e2009, 0x2b4718a1, 0x429b8307, 0x282006f9, 0x4106fa43, 0x0a200860, 0x087f5c18, 0x46253382, 0x0a1e0a0a, 0x05914f14, 0x20083f50, 0x212b8478,
0x4185461e, 0x56184620, 0x32200ac1, 0x46232d82, 0x190f000a, 0x220cdb75, 0x1823001b, 0x1a08d573, 0x200e5938, 0x06786217, 0x994e2720, 0x18152008,
0x2008f57c, 0xff971827, 0x18232009, 0x4d08e373, 0x1b82062b, 0x013b2323, 0x08634b15, 0x08917818, 0xbe431420, 0x09c04909, 0x82070446, 0x201f85a8,
0x06db4828, 0x0a25dd84, 0x0a141414, 0x26188264, 0x2864140a, 0x82500a28, 0x823220e6, 0x82462013, 0x83282007, 0x0a1e24e1, 0x82820a46, 0x47002030,
0x642d09ff, 0x3b002900, 0x57004b00, 0x63005b00, 0x05fd4600, 0x1a170021, 0x210c7b2b, 0x4b4f3315, 0x7b6a1808, 0x06054308, 0x674b2320, 0x55441807,
0x022b2108, 0x470d0245, 0x07220b32, 0x7a191523, 0x3083083e, 0x07b6e119, 0xed46b083, 0x4310840c, 0x178c05cf, 0x0283c782, 0x81181982, 0x28200f4e,
0x3584f982, 0xe7820a20, 0x46181420, 0x3d820857, 0x0a200b83, 0x2107604a, 0x1184501e, 0x6b180582, 0x03240d0b, 0x00001700, 0x20053551, 0x84ee8533,
0x353321d0, 0x1525fa82, 0x141e5050, 0x82568214, 0x5a142302, 0xa2181e6e, 0x1420080d, 0x2805ab56, 0x00e2ff00, 0x00780050, 0x27b5182d, 0x051f4508,
0x69006523, 0x05494a00, 0x0c5f0e19, 0x7a061343, 0x35200c0a, 0x18068252, 0x82094760, 0x09965284, 0x8205eb43, 0x211f828a, 0x07823733, 0x17204383,
0x0b831582, 0x37460720, 0x0a462206, 0x4ebb180a, 0x1be9840d, 0x41080b5c, 0xf050061c, 0x78af180e, 0x18782008, 0x180c947c, 0x20088a5a, 0x242f8c82,
0x14321478, 0x2232821e, 0x826e0a50, 0x0a322101, 0x1020ff83, 0x45080b44, 0x35200931, 0x084f7c19, 0x19004921, 0x1809018d, 0x4608c99c, 0x827e071c,
0x15232308, 0x1b473523, 0x33072408, 0x82172315, 0x06bb44fe, 0x20081b43, 0x83178215, 0x1dc018eb, 0x4817200b, 0x23200563, 0x08b5431a, 0x2008e244,
0x08bc6e46, 0x430a0a21, 0x314205f2, 0x18bf8206, 0x46087fc6, 0x1882055e, 0x140a1422, 0x14212f83, 0x24f88328, 0x0a641e14, 0x2410820a, 0x5a141428,
0x2622820a, 0x0a280a1e, 0x82640a50, 0x4c0a2005, 0xf78306a9, 0xf7880820, 0x6d004f26, 0x79007500, 0x08d75819, 0x8208394a, 0xeb6918e7, 0x08854e09,
0x6a181585, 0x751910d4, 0x35200ebe, 0x21095947, 0x0b870723, 0xe64b4384, 0x07414505, 0xfb4d3520, 0x05574408, 0x17281d85, 0x27233533, 0x17353315,
0x07b56a18, 0x3255cf82, 0x43fa850d, 0x64440c5c, 0x088c4306, 0x84180f84, 0x1e200ab9, 0x0a327718, 0x32213886, 0x0520410a, 0x85057641, 0x20678505,
0x05674114, 0x96431420, 0x82642006, 0x4e6e2055, 0x198505f7, 0x08fb6218, 0x4700782a, 0x55004d00, 0x5d005900, 0x850b4949, 0xb2aa18ff, 0x4323200c,
0x37420725, 0xc059180d, 0x821f8608, 0x1723210f, 0x3321fb82, 0xf7ae1835, 0x15232608, 0x35330733, 0x82d98723, 0x085049a7, 0x820a1421, 0x8546200d,
0x820b84ce, 0x8228200a, 0x05384603, 0x83055d4b, 0x057346b1, 0x0a233684, 0x82500a1e, 0x083b41d6, 0x15822820, 0x32223283, 0x78183c0a, 0x78310ad7,
0x20001c00, 0x28002400, 0x30002c00, 0x38003400, 0x05695600, 0x07765218, 0x00443520, 0x3723210d, 0x3723b282, 0x43231533, 0x1e4b05e2, 0x07785605,
0xcf4a2820, 0x4b7d8505, 0x708205b0, 0x22063b52, 0x186e0a28, 0x820975d0, 0x057f4113, 0xba831e20, 0xb7823082, 0x6b410020, 0x87721808, 0x18312009,
0x4a083fb0, 0xbd4b0699, 0x06634208, 0x35231524, 0xa1463533, 0x19172006, 0x8708991f, 0x821420f3, 0x493c2059, 0x0a22084d, 0xbb18320a, 0x21850875,
0x64200f82, 0x2826b483, 0x000a280a, 0x2b430000, 0x00642207, 0xcbb41819, 0x064d500e, 0x08a76e18, 0x2005e942, 0x217d8223, 0x88450723, 0x08074305,
0x4b076749, 0x73490923, 0x82272005, 0x0c0d4a9d, 0x8206ba41, 0x20fc8295, 0x2081820a, 0x08f3430a, 0x82053541, 0x21bf82a3, 0x5c4e3214, 0x22cb8606,
0x825a0a50, 0x8849832b, 0x007825af, 0x003b002b, 0x180b234e, 0x200d5f72, 0x082a5733, 0x8309e145, 0x35332213, 0x18d18323, 0x480b95d6, 0xb94205df,
0x08d54c05, 0x07203582, 0x85180382, 0x7a430813, 0x84b18208, 0x0698420b, 0x0878ce18, 0xc2820f82, 0x5a200e84, 0x83103447, 0x0a1422ba, 0x21028214,
0x0582280a, 0x26826e20, 0x03825020, 0x000a6422, 0x2705eb4f, 0x00780046, 0x001f000f, 0x180da55a, 0x820d89da, 0xc36818bd, 0x54b5830b, 0xeb8406cb,
0x200ac74d, 0x0b634a23, 0x52449484, 0x0a1e230c, 0x46433c0a, 0x08425b08, 0xfd4a2282, 0x23bf8408, 0x1e3c0a14, 0x96251488, 0x140a5a0a, 0x5fc6180a,
0x09495110, 0x18002721, 0x2609b7ab, 0x0043003f, 0x4e000047, 0x2320082d, 0x43055b41, 0x2d4607f3, 0x23152105, 0xc7420783, 0x53272007, 0x5f190ad1,
0x23460f69, 0x07304205, 0x0d3d8b18, 0x1247a984, 0x200d8208, 0x251f8232, 0x821e1e28, 0x90180a0a, 0x50200a27, 0x22066348, 0x821e0a32, 0x0a8222c7,
0xcf731896, 0x005a2409, 0x180b0003, 0x240b695b, 0x23352335, 0x2b968217, 0x320a5050, 0x14320a0a, 0x146e5a14, 0x3c220982, 0x71183232, 0x782108df,
0x43751800, 0x82332009, 0x0c254b2a, 0x82086d49, 0x4e352019, 0xe9820645, 0x23353322, 0x0a21c782, 0x081c4946, 0x2508a344, 0x7828500a, 0xae82961e,
0x0a23cb84, 0x82460a14, 0x0a0a25a5, 0x0d000000, 0x2208c746, 0x4237001b, 0x0b5206ed, 0x0067240b, 0x1900006b, 0x5308e71a, 0x15200817, 0x82056f41,
0x33172271, 0x1b858415, 0x830fa599, 0x423720e3, 0x2182054f, 0x17231522, 0x27572b82, 0x06d74f08, 0x2105bf48, 0x27832315, 0x180bf74a, 0x890c6c45,
0x05d04ec4, 0x321a2820, 0x08820829, 0x830a4621, 0x501882c8, 0x3c230805, 0x5b780a0a, 0x00430875, 0x82f48505, 0x0a2824f5, 0x82147814, 0x280a2232,
0x2005830a, 0x0520453c, 0x82500a21, 0x18322043, 0x2208f770, 0x4b780050, 0x002106e5, 0x9b181917, 0x08d54b09, 0x41086f46, 0x6747060b, 0x44322007,
0xad870556, 0x1e208682, 0x89849682, 0x50207982, 0x82211787, 0x207a830a, 0x456d8228, 0x78200997, 0x220ae554, 0x49333500, 0x152005fb, 0x21093f4d,
0xe3493723, 0x022b2305, 0x92823315, 0x8b423320, 0x82502008, 0x08144109, 0x6d82f582, 0x0a141424, 0x244b7864, 0x0ac74405, 0x2d002522, 0x0c53d919,
0x51830020, 0x1808d54b, 0x4f10038f, 0x834508be, 0x18232005, 0x2007cb81, 0x067b4a07, 0x08db8118, 0x21056c46, 0x264a283c, 0x2661180c, 0x0a0a220a,
0x86f88432, 0x4c9620fe, 0x504705ac, 0x201e8209, 0x22138246, 0x18280a14, 0x200dd370, 0x08f97121, 0x0c359018, 0x5d453520, 0x08eb5b08, 0x82273321,
0x82172093, 0x45078303, 0x2820072f, 0x14206f83, 0x0a205882, 0x4d05b778, 0x898405fd, 0x0a3c9622, 0x28222585, 0xbd823c0a, 0x21081b47, 0xca180078,
0x002109c7, 0x080e4737, 0x83352321, 0x096f4b5b, 0x28231527, 0x32320a1e, 0x0a134450, 0x820a7821, 0x965021bd, 0x5a20e285, 0x6f59c78d, 0x00472105,
0x0b1a5182, 0x5c4108fa, 0x071c4a08, 0x82182320, 0x9c180804, 0x33200978, 0x8205ce43, 0x2381822b, 0x17353315, 0x27200382, 0x14204282, 0x4709cc46,
0x0a20056a, 0x0382c482, 0x140a2823, 0x4b401b14, 0xea6b1808, 0x82322009, 0x433c2024, 0xb5830840, 0x320a1423, 0x20108464, 0x07174628, 0x78005022,
0x4e0cfd55, 0x03570603, 0x06e54609, 0x69493320, 0x18a08a0d, 0x4709578f, 0x801808b3, 0xe488083f, 0x45480720, 0x82c98406, 0x21d0824b, 0x07821723,
0x3720d583, 0x95411b82, 0x189c8407, 0x8b0a1ac1, 0xae6f18e6, 0x05f6550a, 0x430afa54, 0x16470614, 0x06ee4110, 0x140a0a22, 0x1e232183, 0x8332141e,
0x0a3c2434, 0x825a0a28, 0x0a28211a, 0x350a0b4f, 0x001d0078, 0x00490035, 0x005d0059, 0x00690065, 0x0071006d, 0xc5531700, 0x82f98410, 0x06535ae9,
0x08c87d18, 0x11821788, 0x61064547, 0x27200c03, 0x230eeb5d, 0x15233515, 0x49071145, 0x37240763, 0x46231533, 0x0a20d586, 0x4b0db24b, 0xa1460cac,
0x28e31812, 0x221d820a, 0x411e1428, 0x14210522, 0x4b478650, 0x0a220578, 0x28821e0a, 0x23090b52, 0x781e1e32, 0x64222e82, 0x83430a14, 0x05af7905,
0x46003c22, 0x73080b59, 0x15210959, 0x097a4b07, 0x823c3521, 0x1e1e2135, 0x21055341, 0x5383323c, 0x85320a21, 0x01002706, 0x00000a00, 0x43823200,
0x00000923, 0x25d18237, 0x33352335, 0x2b823335, 0x46219382, 0x22078246, 0x84060000, 0x19678323, 0x220bd3f6, 0x83153700, 0x3d33232e, 0x08843302,
0x38820720, 0x80822720, 0x03821720, 0x191e1e21, 0x8208578c, 0x08da62aa, 0x43281421, 0x539a0612, 0x09d39419, 0x37204883, 0xc9834c82, 0xef185883,
0xed7c08df, 0x0a322308, 0x0c821e0a, 0xd5820f84, 0x6818c882, 0x46240877, 0x11000d00, 0x7f18d182, 0x33220ac5, 0xa2822715, 0x820a4621, 0x861e2091,
0x140a2687, 0x0a28280a, 0x17441828, 0x22e38908, 0x82353700, 0x331526dd, 0x3523021d, 0x23098237, 0x1e28320a, 0x0a222a82, 0x3382281e, 0x1424d082,
0x04000014, 0x44081741, 0x3584078f, 0x82082053, 0x833a83bb, 0x05fa46bf, 0x411e1e21, 0xbb1805cc, 0x0a210ab6, 0x22478b0a, 0x86090005, 0x352321b7,
0x0720ab82, 0x33214182, 0xd1761823, 0x32282107, 0x0a203e82, 0x2306a949, 0x14141432, 0x0993b418, 0x6618b785, 0x99410885, 0x84408205, 0x33152145,
0x695a4783, 0x82322007, 0x0a28218a, 0x07468982, 0x20ce8205, 0x05824614, 0x20064a41, 0x43d79600, 0x5083051e, 0x15331522, 0x0885fe19, 0x48843220,
0x4d06cc50, 0x1e22065d, 0x9c85280a, 0x14000122, 0x28204d82, 0x03230582, 0x82370000, 0x20168235, 0x26128214, 0xff140002, 0x823200ec, 0x84ef8317,
0x23152219, 0x20eb8231, 0x8fe3181e, 0x82002008, 0x223b8223, 0x18460032, 0x860923ee, 0x830a2041, 0x82462045, 0x83198246, 0x41fb8347, 0x498a0537,
0x4d862b83, 0x2005ff4d, 0x84778550, 0x005a2453, 0x820b0007, 0x05364d91, 0x0843b418, 0x1e237c82, 0x821e0a32, 0x20258236, 0x21bb8407, 0x28190046,
0x737709d3, 0x06e14105, 0x07352326, 0x37231533, 0x1720b382, 0x8306a741, 0x1e1e210f, 0x08156e18, 0x25085d64, 0x0a461414, 0x6c410a50, 0x0a0a2105,
0x0aefda18, 0x820a3342, 0x05b94342, 0x82071521, 0x83558307, 0x0a3c2207, 0x20368414, 0x05a5421e, 0x99835a20, 0x32141422, 0x0a215083, 0x8bb61800,
0x005a2407, 0x18150009, 0x8209d16e, 0x1533213e, 0xa9559982, 0x052d5f08, 0x0a67bc18, 0x0a1e4623, 0x086a5328, 0x1e0a3224, 0xaa843228, 0x82145021,
0x206f8466, 0x206e8214, 0x2878823c, 0x00070000, 0x0000000a, 0x12034150, 0x3d23152a, 0x37153302, 0x07153335, 0x0720bb82, 0xb4840782, 0xa4430b82,
0x0a322107, 0x5a834383, 0x82142821, 0x460a255a, 0x28280a0a, 0x0a200482, 0x085b3b1b, 0xd7185783, 0x1f210711, 0x3baf1800, 0x8407200e, 0x633720c5,
0x58820739, 0x9c843c20, 0x320a0a22, 0x7246b282, 0x82b48307, 0x14282456, 0x551e3c0a, 0x0021052a, 0x24b38803, 0x000b0005, 0x20578213, 0x453c8215,
0x232005bb, 0x21073361, 0xe382323c, 0x82283221, 0x05be4232, 0x0282b482, 0x53189982, 0x5a2209df, 0x89430500, 0x0a194b08, 0x28214183, 0x2a3a880a,
0x0a1c3e0a, 0x0a0c2032, 0x82001e28, 0x8a082000, 0x05c7437b, 0x80181520, 0x43820875, 0x45233521, 0x35210693, 0x2b851937, 0x8217200a, 0x15372e9e,
0x1e283523, 0x0a1e140a, 0x1e141e1e, 0x06304632, 0x320a1422, 0x28200d82, 0x462aa682, 0x141e0a0a, 0x460a1414, 0x3f413c0a, 0x0b07490d, 0x08df491a,
0xfb453320, 0x200f8205, 0x835b8237, 0x213582b1, 0xf2820a1e, 0x03821e20, 0x4f820a20, 0x884b3220, 0x1e322105, 0x3c200082, 0xff440382, 0x00502308,
0x4760005a, 0x056b4e05, 0x0720b582, 0x23065e50, 0x1533013d, 0x28224782, 0x02820a14, 0x143c0a23, 0x258d820a, 0x1414140a, 0x8b421e1e, 0x0587430a,
0x15001124, 0x4b460000, 0x45172005, 0x2b200503, 0x2b243c82, 0x15333501, 0x2821dc82, 0x08e15a14, 0x141e5a24, 0xe5830a46, 0x82141421, 0x0a6f4282,
0x7f0dcb60, 0x152405db, 0x33311533, 0x23200482, 0x83054741, 0x411720db, 0x65820747, 0x0a21e084, 0x056e460a, 0xe0831e20, 0xaa820a82, 0x0a231782,
0x82461e1e, 0x1e0a21af, 0x0a21ad82, 0x07e3410a, 0xeb823c20, 0x5f86af85, 0x22063d4f, 0x47323c23, 0x1e2208be, 0xdf8c5014, 0x22057360, 0x181f001b,
0x220b1be5, 0x19013b15, 0x4d099b37, 0x3521051f, 0xb15d1833, 0x824a8407, 0x0a282350, 0x8084140a, 0x3c21fc83, 0x20958214, 0x43f48446, 0xcb4109c7,
0x08bb570b, 0xf6183520, 0x9d87089f, 0x22093b49, 0x530a0a32, 0x3c2105f2, 0x2000861e, 0x21ac825a, 0xaf470000, 0x09cb4106, 0x0939fc18, 0x5b153321,
0x2b2109da, 0x2f8d1801, 0x6217200a, 0x1e230501, 0x821e321e, 0x5781189a, 0x280a290b, 0x0a500a28, 0x3214280a, 0x3221b482, 0x445e820a, 0x5f8306c3,
0x11000926, 0x19001500, 0x640abd43, 0x14530605, 0x20b38205, 0x056f4423, 0x850a3221, 0x20b38257, 0x24478250, 0x0a0a0a14, 0x06c75b1e, 0xecff0a23,
0x204b8300, 0x06c54413, 0x2b002722, 0x4b05c949, 0xc55f097c, 0x61bf8408, 0x3521098c, 0x21618323, 0xb2820a3c, 0x0a141423, 0x8303820a, 0x056d4165,
0x0d822820, 0x0a206582, 0x0684b982, 0x09826420, 0x84056649, 0x43042077, 0x661a08ab, 0xe8530a9f, 0x456d8705, 0x3d45084b, 0x0a3c2106, 0x2106834e,
0x805b0a1e, 0x82688205, 0x0a1e2364, 0xd384141e, 0xd1831e20, 0x18097f44, 0x4e0a73f8, 0xd5820b1f, 0x45172321, 0x3a8206ed, 0x20071946, 0x20c38214,
0x21a88350, 0xf74a1414, 0x14142505, 0x14000300, 0x0e3b2f1a, 0x2005cb66, 0x834f8323, 0x3c1422f9, 0x06774a1e, 0xfc825a20, 0x3c1e3223, 0x1cb3451e,
0x08e58c18, 0x07408d19, 0x33350729, 0x35233315, 0x591e3233, 0x868208a6, 0x2205e665, 0x82500a0a, 0x1432219e, 0x9082dd82, 0x0847d418, 0x88071f51,
0x451520dd, 0x4c820855, 0x59862320, 0x82012b21, 0x0a3c24a9, 0x480a280a, 0x068205f0, 0x0a2ddb83, 0x1e1e325a, 0x1e460a1e, 0x141e1432, 0x82ab820a,
0x500021de, 0x19067344, 0x5709b5a7, 0x07210895, 0x05084335, 0x4105ca4a, 0x6b5f05ed, 0x2561820b, 0x0a320a0a, 0x6586140a, 0x7483bc84, 0x320a5a25,
0x820a5032, 0x8228206a, 0x833c2012, 0x50142273, 0x83c38214, 0x825a206f, 0x236b896f, 0x3700002b, 0x083a8218, 0x7182b482, 0x50152321, 0x69840540,
0xcb187a82, 0x178208c3, 0x84067d43, 0x230482cc, 0x3c140a28, 0x5c820682, 0x14208182, 0xd54c8885, 0x82462008, 0x830a2019, 0x83062071, 0x18e78404,
0x2009d76f, 0xe5c11823, 0x059e4c09, 0x55153321, 0xd544082d, 0x82232006, 0x098a448e, 0x14460a22, 0x1e216b82, 0x05c4440a, 0x2105ab57, 0x32641e3c,
0x06fb4605, 0x20092f6c, 0x5bd41805, 0x002b2210, 0x8371832f, 0x8237206b, 0x352322c7, 0x24058217, 0x1d333527, 0x82ec8202, 0x82372002, 0x54708374,
0x1e8208f0, 0x0a21e084, 0x2073830a, 0x4d0b821e, 0x4c46069d, 0x20908207, 0x8212830a, 0x5f1d83e6, 0x142005a7, 0x09f74519, 0xec181e20, 0xcb820c47,
0x37333522, 0x28200582, 0x2005b142, 0x25c78250, 0x0000000a, 0x27900002, 0x20050b4a, 0x20508328, 0x2304835a, 0x0a000400, 0x46204b82, 0x1a06af45,
0x8508ff4f, 0x058f5d4f, 0x14205983, 0x06865985, 0x64856084, 0x67853f96, 0x09853983, 0x6c831420, 0x1e207689, 0x1e237b86, 0x8300ecff, 0x08af497b,
0x2209375f, 0x42273315, 0xdc18061f, 0x36830a61, 0x14238982, 0x69142828, 0x0024074c, 0x00040000, 0x2005ab4a, 0x0899415a, 0x0ca1fe19, 0x454a1520,
0x011d2306, 0xf3413523, 0x3c0a210a, 0x50184d82, 0xa7470926, 0x82462008, 0x19092091, 0x4308173e, 0x2b200524, 0x07987318, 0x2207c65d, 0x571e0a3c,
0xc9820544, 0x0a1e1e22, 0x27459382, 0x47e28305, 0x462406b3, 0x09006400, 0x08117218, 0x20057743, 0x07d15733, 0x49231521, 0x2761077f, 0x838a8205,
0x20538249, 0x2748820a, 0x5a0a0a0a, 0x28280a14, 0x3c210e82, 0xff341a28, 0x82002009, 0x71462099, 0xcb430ab9, 0x07604208, 0x2107ef48, 0x93820a0a,
0xa1861420, 0x280a0a22, 0x2105bb43, 0xb8601e14, 0x05734e06, 0x9f825a20, 0x0d000722, 0x08fd8b18, 0x2108a14e, 0xa6833507, 0x04823720, 0x3d210983,
0x053d4301, 0x2006c853, 0x09194728, 0x3c209e82, 0x5028f882, 0x1e1e321e, 0x3c14141e, 0x200abf46, 0x19a98246, 0x4e09bf96, 0x152008f9, 0xab830982,
0x6b453120, 0x14332105, 0x324da682, 0x06f44305, 0xff834682, 0x0020a982, 0x04200082, 0x41069355, 0x44180bd7, 0x41600a87, 0x8232200b, 0x82028232,
0x248b82e8, 0x32141432, 0x265a820a, 0x6e1e461e, 0x520a640a, 0x938306db, 0xed8a0b20, 0x2008f76b, 0x05696e35, 0x49072321, 0x2321054f, 0x46078217,
0x1e26058d, 0x0a281e28, 0x0c862814, 0x28141e2a, 0x280a3c0a, 0x500a0a32, 0x6b4b5f82, 0x05e74108, 0x3320ed8b, 0x1808b36b, 0x4108f78a, 0xe98509e5,
0x4105eb44, 0x142205e4, 0xa4821414, 0x22087f42, 0x4a64003c, 0x4b610827, 0x071d5106, 0xfd823520, 0x0a140a26, 0x141e3214, 0x49829382, 0x3c250682,
0x461e0a0a, 0x85e38614, 0x084d433b, 0xd0823787, 0x2d413320, 0x223e840d, 0x821e1e32, 0x05f759cc, 0x0b831e20, 0x50148223, 0x08a34e14, 0xbf47d783,
0x09736b16, 0x3c205587, 0x0a219682, 0x848a821e, 0x05304107, 0x28230a82, 0x820a1e14, 0x141422e4, 0x21e28328, 0x5d830004, 0x03205783, 0x6f088b4f,
0x075705b7, 0x23152108, 0x0a214482, 0x05925a0a, 0x3c141428, 0x5a0a0a28, 0x9618281e, 0x17490c4f, 0x1b981807, 0x23352208, 0x0bfd5d15, 0x35012b22,
0x8305b142, 0x05514b8f, 0x90841420, 0x0a0a3224, 0xe7820a46, 0x280a2823, 0x21068228, 0x5418141e, 0xf34309b3, 0x000d2105, 0x09a16918, 0x07205382,
0x54184786, 0x998207ee, 0x3a8b4620, 0x4308e743, 0x31201893, 0x2306054a, 0x33352317, 0x20069343, 0x0540610a, 0x21079343, 0xea821e1e, 0xeb420020,
0x19878508, 0x8209c9f8, 0x49dd823f, 0x195806f7, 0x05ed5608, 0x181e0a21, 0x83085a7f, 0x1e0a2445, 0x181e0a14, 0x2209cf7c, 0x4a0f0046, 0x4957073d,
0x15232106, 0x37204d84, 0x15228b82, 0x934a2723, 0x0a0a2706, 0x2814140a, 0xb74e281e, 0x228c8305, 0x823c1e0a, 0x8214209c, 0x06ef4d92, 0xc9199383,
0x45830ae5, 0xe94a0720, 0x05ab4106, 0x3c0a0a24, 0x42821e1e, 0x4a140a21, 0x874f0576, 0x09174108, 0x2208d94f, 0x4d23011d, 0xb08208a1, 0x14280a24,
0x6f183228, 0x32210862, 0x188c820a, 0x4608ef6c, 0x13200517, 0x0dcf3419, 0x83351721, 0x153321be, 0x544f3382, 0x1e0a2405, 0x82141446, 0x0a3c2336,
0x8b181e1e, 0xb383099f, 0x2009ef51, 0x21ae8235, 0x6342013d, 0x82072006, 0x4132200d, 0x32220684, 0xb7820a0a, 0x14143c22, 0x2820be82, 0x092feb18,
0x8918b783, 0x1f4908f1, 0x07755d05, 0x7e820720, 0x8708cf4b, 0x0a1421fe, 0x1e224782, 0x8282460a, 0x281e1423, 0x060b4914, 0x85005021, 0x070f4947,
0x8808316e, 0x20cb864b, 0x83538627, 0x21498257, 0xa44e1414, 0x0a282108, 0x8206e963, 0x845e8459, 0x1e2821e5, 0x14221582, 0xe3490000, 0x1a5a2006,
0x4610af5f, 0xe36f0517, 0x6623200b, 0x15210635, 0x055b5123, 0x20065947, 0x49078207, 0x6b820852, 0x23065565, 0x28140a28, 0x14206e82, 0x8e827c85,
0x820a0f5c, 0x879d182e, 0x09274108, 0x0851c618, 0x2005e154, 0x061b5307, 0x53011d21, 0x272305e0, 0x4e231533, 0x232106ad, 0x21e2823c, 0x4682140a,
0x4a281421, 0x1e2105c4, 0x06e2480a, 0x1e200882, 0x502b0a82, 0x321e281e, 0x0a500a0a, 0x4a000800, 0x462005c3, 0x180a4747, 0x4e0d35a7, 0xa24105af,
0x4d3d2005, 0x59660773, 0x82372007, 0x1e142175, 0xa64e6982, 0x45142005, 0x80840633, 0x0a21de82, 0x83d9820a, 0x207782e2, 0x21f2820a, 0x9e183c0a,
0x7b180763, 0xe56609d3, 0x75801809, 0x20728208, 0x06ff5d15, 0x4109f75e, 0x2722066b, 0x1b843335, 0x42153521, 0x4f4a05e5, 0x63f08205, 0x71820561,
0x0b837282, 0x320a3222, 0x94831285, 0x88820384, 0x14143c23, 0x0609733c, 0x43420020, 0x005a2408, 0x6915000d, 0x00210885, 0xfb771837, 0x617d8209,
0x714608d9, 0x09317505, 0x20066747, 0x2264823c, 0x82141428, 0x1e0a2274, 0x207d831e, 0x6791820a, 0x5d42094e, 0x0a142205, 0x0b5f6a50, 0x00000025,
0x820a0008, 0x00462201, 0x0687463c, 0x2009d14b, 0x05df4a00, 0xbb42e582, 0x013b2109, 0x17209382, 0x20061c59, 0x06515537, 0x0a206d82, 0x09468718,
0x1f491e20, 0x08896505, 0x2d510882, 0x82828406, 0x4473a372, 0x352106c0, 0x06b95215, 0xd6432720, 0x29941806, 0x5c3c2007, 0xcf820879, 0x32207c83,
0x0df9b219, 0x2709fd70, 0x02000a0a, 0xe2ff1e00, 0xe383e182, 0x83000b21, 0x21c182d7, 0xbf823533, 0x36833320, 0x200eaf54, 0x7b2b860a, 0xf5840e37,
0x82070b52, 0x20918307, 0x200f8637, 0x0faf5432, 0xaf545282, 0xdf48180e, 0x185a2007, 0x180a7799, 0x410c5996, 0x50820564, 0x374a2320, 0x41232006,
0x5a56075f, 0x141e2105, 0x46059d48, 0x0a210610, 0x0502410a, 0x32271682, 0x3214140a, 0x1814321e, 0x200c5ba9, 0xe1851846, 0x0edb680c, 0x0f821520,
0x4907134e, 0x28250ba3, 0x140a1414, 0x8204841e, 0x074443d1, 0x083e8218, 0x480a1e21, 0x14220583, 0x4a180a1e, 0x5a200813, 0xc55d6788, 0x957b1806,
0x20738408, 0x06c34937, 0x2107a743, 0x4d82140a, 0x32216482, 0x43b0830a, 0x322106a5, 0x82c58228, 0x0a0a2217, 0x83618350, 0x08d34e5e, 0x4b004621,
0x9a18059f, 0x59500ca9, 0x84c18805, 0x33352169, 0x0a84c983, 0x8506436b, 0x83c883cd, 0x225f8455, 0x850a0a3c, 0x0a142402, 0x821e0a1e, 0x8515821a,
0x51d282e9, 0x822108ef, 0x093b4a00, 0x0823e018, 0x2605e644, 0x15231537, 0x86073523, 0x56dd8303, 0x28200961, 0x2908be76, 0x28280a1e, 0x1e1e5a0a,
0x5f825a14, 0x14143222, 0x50210282, 0x210b820a, 0x47480000, 0x866e2008, 0x002023d7, 0xc14c0024, 0x107b4c09, 0x3f412720, 0x82072005, 0x0e864c06,
0x4c063b41, 0x32200c8d, 0x63888184, 0x3955c783, 0x23352209, 0x84458235, 0x09c96d05, 0xc9861720, 0x23011d24, 0x4b843c35, 0x87092346, 0x05ce4dc3,
0x0982c483, 0xf347c282, 0x20c38708, 0x85c19e23, 0x8e232076, 0x852820c0, 0x48142069, 0x0a200512, 0x32200e83, 0x77531283, 0x52bf8309, 0x954509cd,
0x06874106, 0x1809774b, 0x8609edf5, 0x82c785cb, 0x90d418cc, 0x4114200a, 0x0a200a91, 0x50210082, 0x21cf8314, 0x33430a46, 0x21068306, 0xcf870046,
0x29002122, 0xa777d1a2, 0x0c1f4e0a, 0x61451e20, 0x18db8c09, 0x52082696, 0x5a22065b, 0xe6187800, 0xe946089b, 0x0aa34107, 0x82083762, 0x4c3720d5,
0x718305ad, 0x6f422320, 0x83142009, 0x05d04600, 0x83320a21, 0x06b0415d, 0x0a21d582, 0x23df8446, 0x5a0a0a28, 0x034ee282, 0x00502205, 0x06734264,
0x09f39d18, 0x6f16f14e, 0xb1530863, 0x86e18c08, 0x8b748478, 0x841e20e2, 0x058744e2, 0x17540720, 0x18822006, 0x19086ba2, 0x410c6fad, 0x068506c5,
0x57153321, 0x954d061f, 0x85e78e06, 0x0cf27456, 0x0a21e98a, 0x228e820a, 0x82141432, 0x41eb8be8, 0x252407cb, 0x2d002900, 0x6a1bcd41, 0x15200995,
0x0951a018, 0x5f0ef14f, 0x6f430a83, 0x2299850c, 0x420a0a14, 0x561809b3, 0x1b220933, 0x9b521f00, 0x82dc8205, 0x5a332064, 0xfd630c93, 0x06ab4207,
0x9c180a20, 0xa74208ea, 0x5ad58207, 0x642005a1, 0x56059452, 0x462205df, 0x0f455a00, 0x1e37440a, 0x73436383, 0x0526550f, 0x440fb441, 0x50210897,
0x43bf8b00, 0x35200c71, 0x5b06a341, 0x28210d55, 0x05074e28, 0x42089041, 0x58430578, 0x00042105, 0x89055743, 0x8fb19eb3, 0x8d5582ad, 0x076741aa,
0x8f0f3b43, 0x0c1344a9, 0x450da545, 0x1e2005f6, 0x86057a56, 0x445020b6, 0x28220811, 0x1344640a, 0x0d33430b, 0x2321bd89, 0x08415927, 0x52054243,
0xbf52072b, 0x05ac7505, 0x52055f46, 0x0a240634, 0x1e0a140a, 0x0a235c83, 0x4e140a5a, 0x282005a9, 0x23057f73, 0x00e2ff0a, 0x4505c35b, 0x252307ab,
0x62370000, 0x01460979, 0x206f8405, 0x060b4427, 0x13821720, 0x32200b83, 0xb3555282, 0x57142005, 0x0a2a0540, 0x0a0a320a, 0x28141e14, 0x11835a0a,
0x14143c26, 0x5a141432, 0x83094b54, 0x0046266b, 0x00150046, 0x0b1b581d, 0xc4853520, 0x677a2320, 0x8232200b, 0x9a8818b0, 0x83088208, 0x246585b5,
0x14460a14, 0x0543620a, 0x2305d75c, 0x00030082, 0x210b5d52, 0xc1830021, 0x0a07b519, 0x07231522, 0x200aa95b, 0x06214c37, 0x294f0720, 0x82282006,
0x06ad5b4d, 0x2508354a, 0x0a0a2828, 0xb8830a78, 0x74871e20, 0x4b460a21, 0x534205b3, 0x826e2005, 0x0da54771, 0xf34e3320, 0x069b4906, 0x07487382,
0x07914c06, 0x1e214e82, 0x0534590a, 0x8205af49, 0x4f1e2077, 0x3220079c, 0x1b821d82, 0xf5834620, 0x25190020, 0x50220837, 0xdb847800, 0x2309af5a,
0x00270023, 0x2008e14e, 0x51c91a37, 0x0741500a, 0x23151723, 0x20d98335, 0x21dd8627, 0xac191e14, 0x0e830e07, 0x82068c5c, 0x3c0a24e4, 0x6e3c1414,
0x32200565, 0x6420df8b, 0x1d58df84, 0x181f2005, 0x21095dab, 0x73832335, 0x4907b344, 0x0b540755, 0x09fc4a0e, 0x0a20e782, 0x82081254, 0x141e2516,
0x0a460a32, 0x00217682, 0x4f721908, 0x07b9411a, 0x200a155c, 0x074b4127, 0x3222d588, 0x7677320a, 0x5d0a2009, 0x7282095d, 0x5a0a1e22, 0xab431c82,
0x1a462007, 0x5808b348, 0x4d8209eb, 0x2320c985, 0x23066146, 0x35231517, 0x39510282, 0x050c4f07, 0xbc884a82, 0x32236c84, 0x8609000a, 0x079741b7,
0x410b296b, 0x8f410c97, 0x08c36b06, 0x97413720, 0x82372006, 0x0a0a2311, 0x71421e1e, 0x0a142108, 0x6a82c782, 0x290a9741, 0x4614141e, 0x640a0a0a,
0x4a413c0a, 0x00002105, 0x2106b347, 0x97410046, 0x55758905, 0x1b771097, 0x068f5e08, 0x6f862720, 0x5d140a21, 0xc36006ae, 0x83db8808, 0x50502065,
0x077e05a6, 0x09075508, 0x82066f4f, 0x084276bf, 0x2007f75e, 0x063b6107, 0x0d214718, 0x1420d983, 0xd486c183, 0x14140a25, 0x5e28280a, 0x462205fb,
0x81586e0a, 0x22d28205, 0x44000600, 0xf618070f, 0x95470dc3, 0x15232407, 0x82013d23, 0x87028262, 0x20828269, 0x06eb4d33, 0x1421ce84, 0x27bc8314,
0x0a1e1e0a, 0x0a0a5014, 0x5a220c82, 0xc7420a0a, 0x0050230a, 0x9b600078, 0x09d96b05, 0x0c557518, 0x41099f60, 0x35200b37, 0x03837182, 0x700eab60,
0x0a2208c1, 0xb2600a0a, 0x2173820b, 0x1382640a, 0x000a6422, 0x5606d742, 0xef480def, 0x61558307, 0xab500666, 0x07f35605, 0x6b06f042, 0xff560893,
0x2059820d, 0x827a820a, 0x573c20f6, 0xd4491006, 0x059b5a08, 0x11217785, 0x09075200, 0x2f467386, 0x23152405, 0x4b152335, 0x6d570885, 0x0a322807,
0x0a1e1e0a, 0x8214141e, 0x05547165, 0x68830a20, 0x0a227282, 0x13824614, 0x48087157, 0x502c0503, 0x05008200, 0x13000b00, 0x1d001900, 0x20159761,
0x5e758237, 0xa1610539, 0x0588440b, 0x22050544, 0x82320a1e, 0x485a20cf, 0x4219055b, 0x0d2109af, 0x41bb9200, 0xeb44051d, 0x15232106, 0x08f94018,
0x35231722, 0x830bd557, 0x08c352af, 0xcf840a20, 0x44058b58, 0x00220574, 0x0f480000, 0x99bf8905, 0x053541bd, 0x5f622320, 0x825f850c, 0x86322057,
0x4c1083bc, 0x6e2108eb, 0x07bf5600, 0x7f672320, 0x4415200b, 0x4f86055f, 0x33351523, 0x108f5815, 0x210cad7a, 0x2251141e, 0x280a2105, 0x1e20ca82,
0x2208f757, 0x41780050, 0xd5490673, 0x120b6305, 0x20070148, 0x8b6b8223, 0x434882b7, 0x1e2106f1, 0x21b98614, 0x77410a3c, 0x8264200d, 0x8da918bb,
0x089b5909, 0x4a097741, 0x7a830ba3, 0x63822720, 0x21104f59, 0x55821e0a, 0x83087741, 0x141e24d5, 0x67460a1e, 0x50220817, 0xc3866e00, 0x35421720,
0x41b98b19, 0xb4870518, 0x834a4882, 0x12495a09, 0x6141ad89, 0x89a59507, 0x859c84a1, 0x209b8b53, 0x209d991b, 0x0e5b4137, 0xf484f082, 0x20085941,
0x46118246, 0xa7890b77, 0x15422120, 0x0a0b4210, 0x3720a983, 0x82105341, 0x0d52415a, 0x3764b083, 0x2113420b, 0x91079348, 0x470a20b7, 0xb988053c,
0xb9825020, 0x2109474c, 0x13420046, 0x55011920, 0x061f4a08, 0xbf8c3520, 0x820b2a45, 0x066b5b59, 0x0a842820, 0x500a1e22, 0x09a38e19, 0x232e1342,
0x0a28280a, 0x42098243, 0x99822613, 0x20147943, 0x65931828, 0x219f8308, 0xb4820a3c, 0x0a1e1423, 0x4f5d1a00, 0x005a2608, 0x0013000d, 0x8f11191b,
0x7423200a, 0x2d610853, 0x82282008, 0x14282536, 0x320a1414, 0x4982dd84, 0x82141e21, 0x445a2012, 0x001b0524, 0x46210843, 0x08095100, 0x4207775e,
0x518305b1, 0x42078969, 0x498307b9, 0x9e82e682, 0x1e215782, 0x8300820a, 0x84038207, 0x06194459, 0x2007cb51, 0x0f934d50, 0x35231523, 0x885b8233,
0x08d946a1, 0x2106215a, 0xeb471e3c, 0x1e0a2205, 0x20ee821e, 0x0611570a, 0xbc82c783, 0x5a0a1426, 0x3214140a, 0x0ceb4d19, 0x1b004621, 0x180c3f20,
0x2308bb48, 0x37233523, 0x0a226c82, 0x43831e32, 0x05821e20, 0x8405584c, 0x320a2346, 0x38190a0a, 0xbf44085f, 0x054b6705, 0x09f5ad18, 0x13432d20,
0x35072107, 0x82068468, 0x0877504d, 0x49068c68, 0x28200bf9, 0x82053f4b, 0x492820b6, 0x32200518, 0x1422bd83, 0x02820a0a, 0x22056367, 0x820a0a46,
0x82642002, 0x1432211d, 0x5a20dc85, 0xb5188882, 0x462308cf, 0x4b006400, 0xcf5305b5, 0x836c820e, 0x4e2320cd, 0x914c0865, 0x08e14a06, 0x200fa75d,
0x4380853c, 0x0a210545, 0x09af5d1e, 0x18826e20, 0x32141423, 0x056e530a, 0x4a0a0021, 0x0521082f, 0x094d5c00, 0x68096b71, 0xa541084f, 0x33352308,
0x97690715, 0x06b06806, 0x85073a4a, 0x820a20fe, 0x052c4c6d, 0x6a822820, 0x1e22fb83, 0xfd850a0a, 0x0c827b83, 0x0a0a4626, 0x46141428, 0x59073f4a,
0xfb850843, 0x78097f41, 0xdc820809, 0x4e05cf57, 0x41590857, 0x5e078707, 0xb8540aa3, 0x05a85e05, 0x2505f741, 0x3c0a2814, 0x7582280a, 0x5e6e0a21,
0x6e2106af, 0x0bc34c0a, 0x68006e21, 0x7d87094f, 0x41066546, 0x3d230af9, 0x18153302, 0x4a073c9a, 0xf0410750, 0x0bed4b09, 0x6a0bea41, 0x1e240595,
0x460a1e0a, 0x06247384, 0xe2ff0000, 0x2006e761, 0x09734311, 0x41055542, 0x2b5a10e5, 0x12855f0a, 0x410a0a21, 0x50250bd8, 0x0a0a3214, 0x06d34264,
0x50206382, 0x18087768, 0x960de550, 0x352323d9, 0x125b013b, 0x06d25c07, 0x6a82dd8a, 0x0a05bf18, 0x9a82e08e, 0x14207882, 0x8506cb6b, 0x426e20df,
0x9d4b06c7, 0x00272105, 0x5212cb41, 0xf38305cd, 0xe7970720, 0x2106d765, 0x62830a1e, 0x590cc442, 0x782005c9, 0x8b66ee83, 0x0baf7308, 0x7108874e,
0xab6a05aa, 0xd13d1909, 0x0771440c, 0xa7430a20, 0x4d678405, 0xb343055b, 0x0ebf6a05, 0x0a218583, 0x206f880a, 0x06b95f82, 0x550b3342, 0x23230977,
0x5a15013b, 0x6b490d85, 0x84232005, 0x0a1e2165, 0x8d737386, 0x0be86205, 0x82781421, 0x145a2213, 0x4a7c8264, 0xef4c0913, 0x18002009, 0x27089770,
0x3d152315, 0x07152301, 0x250a6559, 0x141e0a1e, 0x5a823c0a, 0x00831e20, 0x2824ca82, 0x1e3c1e1e, 0x1a0cc760, 0x180e9f1c, 0x180bd760, 0x200b8348,
0x22ec8228, 0x7814141e, 0x4b82081f, 0x280a4622, 0x21051c41, 0x0a1b2814, 0x50210a0b, 0xcf001900, 0x14cd6b09, 0xf7823720, 0x8209d16b, 0x0bd46bdb,
0x000a5024, 0xdf700200, 0x00072208, 0x09e35e0f, 0x21051343, 0xe5612315, 0x055f590a, 0xeb4bcf83, 0x46338309, 0x7d9005bb, 0x5b517983, 0x8b352005,
0x82458283, 0x6c0a2053, 0x7825095c, 0x1e500a0a, 0x578a831e, 0x57870abb, 0x08c3ab18, 0x0b494518, 0x8b053d4c, 0x62d78299, 0x50200984, 0xbb410a82,
0x00822109, 0x9a184b83, 0x93820aed, 0x58060447, 0x15200969, 0x25410a82, 0x18142008, 0x25087cfa, 0x140a0a46, 0x0f837814, 0x2005746b, 0x062b4103,
0x20057341, 0x112d4119, 0x2007f748, 0x0a374135, 0x200d2163, 0x204d8350, 0x0ad35400, 0x9f847820, 0x41054958, 0x854d1043, 0x82332006, 0x086d69b0,
0x78054647, 0xa36d08d6, 0x835a200a, 0x725a8214, 0x642008b3, 0x17225b84, 0xa9911b00, 0x410b114c, 0x6e4c0949, 0x24b48208, 0x1e0a0a3c, 0x4b518532,
0xb36d0907, 0x4aab9409, 0x714207ab, 0x411e200c, 0x14220aec, 0x9e411e1e, 0x19a38805, 0x640b336c, 0x4d870e65, 0x4d829f8c, 0x2006e95b, 0x4a65821e,
0x9b870b2b, 0x35209990, 0x8806e349, 0x28282195, 0x20097e42, 0x0f6f1964, 0x6f3c200c, 0x8d920a1b, 0x4382898a, 0x22062441, 0x82000a3c, 0x00032100,
0x22072b55, 0x4a17000f, 0xc7490917, 0x06714109, 0x82072321, 0x8c411812, 0x20088208, 0x86468228, 0x5a0a2702, 0x320a0a14, 0x4f891e1e, 0x64003c23,
0x184f9600, 0x8208c785, 0x05855ddd, 0x306a1420, 0x05c45c05, 0x22060d4a, 0x6114461e, 0x6b41099f, 0x18152005, 0x480c59b7, 0xee8308d5, 0x8305cf6f,
0x067967a1, 0x35012b2a, 0x013b1533, 0x0a282315, 0x20058e45, 0x0697460a, 0xb9821420, 0x12833220, 0x23084f44, 0x46141e50, 0xbf83c782, 0x73821e20,
0x18000821, 0x200923bf, 0x08875d0f, 0x0cab6918, 0x190b4d66, 0x8208ed65, 0x0b21668f, 0x820a1421, 0x05424371, 0x06852820, 0x42082c66, 0x75840706,
0x460b3666, 0x78200823, 0x46085b48, 0xaf700525, 0x09234611, 0x3720e782, 0xbb70f482, 0x227b820b, 0x833c0a0a, 0x08c370e4, 0x0a0a6429, 0x14145a0a,
0x48000a64, 0x7353074b, 0x00132307, 0x31700017, 0x15332105, 0x8b06f54c, 0x20eb87c7, 0x18c48832, 0x83083c4e, 0x840a2063, 0x0a7824bf, 0x826e1450,
0x82002061, 0x42092000, 0x6345084f, 0x09194a09, 0x824a1520, 0x082b7105, 0x27207184, 0x2006294b, 0x06076127, 0x6d427f84, 0x0a0a2108, 0x47057a45,
0x7e820601, 0x3c713220, 0x211c8209, 0x9b821e1e, 0x64219d84, 0x8284820a, 0x08835382, 0x0d006422, 0x084f6e1b, 0x86067d5c, 0xdfc51880, 0x43f7850c,
0x7d8307b5, 0x18108d67, 0x2109184e, 0x93670a14, 0x0a3c2108, 0x74830b82, 0x6b447383, 0x00462405, 0x63050082, 0xbb71086d, 0x46232009, 0xcd470655,
0x05c57106, 0x5143b483, 0x0a0a2d05, 0x1e50141e, 0x320a0a46, 0x000a501e, 0x5b6fbf82, 0x00822105, 0x7007e767, 0xeb6705c7, 0x07f15a10, 0x450cf367,
0xf9670562, 0x0a1e2107, 0x82053b5c, 0xe2ff229f, 0x09577200, 0x21050773, 0x3f422315, 0x012b2105, 0x50189982, 0x9d85073d, 0x05844685, 0x1e229c83,
0x99820a28, 0x47829b84, 0x960b8368, 0x0717489b, 0x14209b8c, 0x08f8a918, 0x50825a20, 0x52826420, 0x6e096372, 0x37410917, 0x05944d07, 0x2321f585,
0x05ef4f37, 0x0a0a3c22, 0x05855184, 0x14229982, 0x00821e0a, 0xef649b86, 0x00642105, 0x1b224b89, 0x7b410000, 0x0a256908, 0xef821383, 0x823c2321,
0x0a3c2291, 0x23528514, 0x14140a0a, 0x5a220f82, 0xec820a14, 0x46283c22, 0x1e20a282, 0x03205883, 0x3b415683, 0x000b2106, 0x4105b979, 0x9b860537,
0x3c233523, 0x20d98232, 0x052e4e14, 0x95850a20, 0x17481420, 0x418f8508, 0x83820571, 0x6d693520, 0x09a75506, 0x22068d67, 0x820a141e, 0x14142542,
0x281e283c, 0x64208384, 0x220b374a, 0x540f000b, 0x0b5a069f, 0x15877305, 0xa3592320, 0x42372005, 0x9c1805e1, 0x0a200941, 0x3220a082, 0xd982dc82,
0x08820982, 0xac823c20, 0x82280284, 0x1e320a0a, 0x0a321e3c, 0x200c4761, 0xe105190d, 0xc9451808, 0x85072008, 0x206182f3, 0x695d8615, 0xd74108d9,
0x0a0a2105, 0x2007df69, 0x210a826e, 0x7b595a14, 0x06574c06, 0x0ddf0919, 0x5006db4b, 0x4118057b, 0x0b830bb7, 0x07831583, 0x7e094f74, 0x0a200c7f,
0x0783bb87, 0x1420b983, 0x09cb411a, 0x5f4b4620, 0x07954206, 0x3520a982, 0x180a8b6a, 0x46087fb9, 0x0a200518, 0x08d24518, 0x4409996a, 0x6b5f05c8,
0x111f4c07, 0x41167741, 0xa1630671, 0x0c0b7508, 0x32205382, 0x4106b842, 0x3c210b7a, 0x6201821e, 0x64200d5f, 0x9b4abf84, 0x0f7b4107, 0x17205d84,
0x4106c742, 0x5d62077d, 0x087f4109, 0x54826420, 0x57144621, 0x17610bbb, 0x002b210f, 0x500d8141, 0x03680e1b, 0x012b210a, 0x09095718, 0x00831420,
0x75054242, 0x7b8205de, 0x8f41d882, 0x82502005, 0x82282074, 0x821e20d1, 0x535a2003, 0xef5d0977, 0x082b5207, 0x4c071550, 0x59420ae9, 0x08335406,
0x1e226282, 0x6a1b1e0a, 0x0a200add, 0x46226582, 0x5e82280a, 0x50216482, 0x201a821e, 0x05d8445a, 0x13610820, 0x0f6f4608, 0x18092f6a, 0x210abde9,
0x5b182315, 0x4541086b, 0x820f8306, 0x075d76c5, 0x0a200a82, 0x0c005318, 0x62762820, 0x24d08205, 0x14321446, 0x201b821e, 0x0b535c50, 0x07006e24,
0x1f190b00, 0x335d0c6f, 0x07bf6c0a, 0x6c0d375d, 0x015908c9, 0x051f4d06, 0x21066470, 0x1e82501e, 0x141e1423, 0x2064823c, 0x21db840a, 0x0b4c0064,
0x76152005, 0x2f220a83, 0xbf413300, 0x080b4808, 0x4d473720, 0x20058405, 0x0a3f7717, 0x0e015418, 0xbd58e98a, 0x05d04106, 0x20087861, 0x23f2890a,
0x460a0a14, 0x4c5bf582, 0x5e462005, 0x5a21099f, 0x58f78500, 0x272209d9, 0x56182b00, 0xd75809eb, 0x087b4509, 0x63572320, 0x910d1907, 0x1e1e2109,
0x20051867, 0x0844590a, 0x02828882, 0x5e5d1e20, 0x05a94408, 0x141e1e25, 0x82141e14, 0x0977410b, 0x13415020, 0x10f75106, 0x4c095342, 0x0b4109d3,
0x41078707, 0x788509ed, 0x44051545, 0xfb870609, 0x0a211482, 0x51fa8250, 0x235f0983, 0x070d4f09, 0x4505ff56, 0x35200ad1, 0x57068b5a, 0xed410bad,
0x0caf5e05, 0x6b822820, 0x11836420, 0x1420ec83, 0x0dfb0919, 0x7605574d, 0xbf420d03, 0x08774a06, 0x20064b5c, 0x05b34707, 0x54182320, 0x576d07fe,
0x1e322108, 0x2005cb41, 0xc454180a, 0x0a0a2208, 0x426f840a, 0x3c2005cb, 0x28240e82, 0x5a140a14, 0x32201482, 0xeb44d682, 0x09875d05, 0x2005134a,
0x0dcf4123, 0x854dd38b, 0x820a200c, 0x0540476d, 0x82054742, 0x08c041f0, 0xdd831e20, 0x3b481682, 0x00092105, 0x00226c82, 0xe391005a, 0xcd422f20,
0x61272011, 0x17440a3f, 0x2b4a1807, 0x09c5410b, 0x3f4c0a20, 0x83668405, 0x0dc941f2, 0x0a0a4628, 0x32143c0a, 0xec823c14, 0x50535a20, 0x84082005,
0x00502187, 0x6005674e, 0x2720090f, 0x5718f18a, 0x1526084d, 0x33352723, 0x0f82011d, 0x0b055518, 0x1e22e482, 0x7885280a, 0x5a7f0a20, 0x0a322106,
0x28207d83, 0x20062c79, 0x22158314, 0x821e1432, 0x000a2278, 0x0a1b6000, 0x520d3f7c, 0xb94208e5, 0x0cfb7a08, 0xdb41f187, 0x05344410, 0x7b087361,
0x3c200a09, 0x1420f082, 0x5f5f8982, 0x185a2009, 0x200cad66, 0x1ad7411f, 0x44061345, 0x0a4509a1, 0x09924306, 0x51138b43, 0xae1809cb, 0x8b430cbd,
0x09e15c0c, 0x41069944, 0x1e2109bf, 0x9c411828, 0x0ba54208, 0x3c0a4622, 0x8d127f43, 0x092960cb, 0x200a0f59, 0x06576127, 0x2821c585, 0xd9481828,
0x059a4108, 0x14267884, 0x0000141e, 0x00830009, 0x5a005a22, 0x0d190982, 0x35201071, 0x5405474f, 0x8a4a06d6, 0x08807805, 0x180a2d4b, 0x210ab1c6,
0xb1823214, 0x8508a353, 0x08536d76, 0x7d850a20, 0x1e200682, 0x1905f669, 0x21093b27, 0x5b440006, 0x0d0f7005, 0x2105bf46, 0x13693523, 0xc15a1805,
0x4217200a, 0x3221068b, 0x052f4514, 0x59831420, 0x2008c444, 0x05ba583c, 0x4305aa46, 0x5f850577, 0x82005022, 0x181b0f4d, 0x820af7ff, 0x0d454a6b,
0x180d5d7c, 0x7c0c3a55, 0x46270b64, 0x1e500a0a, 0x183c0a3c, 0x2009fb43, 0x08274646, 0x48058f49, 0x15210e65, 0x21cb8723, 0x28410a1e, 0x05b76405,
0x0e821e20, 0x22051073, 0x4c0a0a6e, 0xc38705c1, 0xc3847820, 0x4b181b20, 0x37200759, 0x086fa218, 0xb5821520, 0xa941c389, 0x088d4906, 0xc58d1d83,
0x2007484c, 0x20798414, 0x7d668214, 0x7820082a, 0x0a211283, 0x0cc76a32, 0x480ba362, 0x65840859, 0x88058d41, 0x0ad37369, 0x5a842820, 0x0882c182,
0x3c1e1422, 0x4505b24c, 0x5023086f, 0x4b008200, 0x73720fd3, 0x7117200a, 0x27200603, 0x49058d41, 0x15830621, 0x2405f755, 0x141e140a, 0x058a411e,
0x1e241082, 0x1414500a, 0x21059c7d, 0xba820a46, 0x14640a24, 0x1d836414, 0x00820020, 0x41053b41, 0x0f20078b, 0x0845a018, 0xbc826182, 0x013d1523,
0x05476933, 0x61836984, 0x32267383, 0x280a0a14, 0x95182814, 0xc383082e, 0xee491420, 0x0a642105, 0x82056165, 0x0ab3505a, 0xbb57cb85, 0x41cb9309,
0xcd9607ff, 0x82056f70, 0x8c282064, 0x50df82ce, 0x198205bd, 0xc350cf8b, 0x08416009, 0x1523cf8c, 0x49013d23, 0xd1860afb, 0x08005e18, 0x1423d18a,
0x4b3c1414, 0xaf4c0887, 0x0b716208, 0x2306d549, 0x15172335, 0x09765a18, 0xc7823720, 0x2f640720, 0x0a516b06, 0x140a0a27, 0x14143c1e, 0x22c48846,
0x830a1414, 0x640a210e, 0x4f05a150, 0x1776058b, 0x05794407, 0x83330021, 0x061d64a9, 0x2007c952, 0x215f8627, 0xab82141e, 0x82282821, 0x4e1e20fe,
0x142305a2, 0x820a0a50, 0x21578470, 0x87410a3c, 0x08696931, 0x4205e977, 0xca840e55, 0x820a1e21, 0x41142073, 0x10820c87, 0x14640a24, 0x7a836e14,
0x202d8741, 0x078d4935, 0x15333723, 0x08874123, 0x20057a43, 0x4268840a, 0x1423065a, 0x41461414, 0x60820588, 0xf6ff0723, 0x05f75aff, 0x200d3347,
0x06457300, 0xdd411d20, 0x35072107, 0x49055165, 0xce180721, 0x43180883, 0x0a260973, 0x14321414, 0xaa475014, 0x24dc8206, 0x283c1428, 0x05434c46,
0x1a058f41, 0x5e090770, 0x135e0619, 0x06854709, 0x82012b21, 0xd7401866, 0x05687f09, 0x59835a20, 0x513c1e21, 0x0420071f, 0x087bd718, 0x09e3fe18,
0x24054946, 0x35231523, 0x077f7723, 0x7707874e, 0x1e200a87, 0x46204f84, 0x82098d77, 0x0000230f, 0x0b520005, 0x47782005, 0x431906c3, 0x4d830877,
0xd1501520, 0x087f4409, 0x14229f8e, 0xa1870a0a, 0x60845a20, 0x4e0ad759, 0x3b430513, 0x41a39205, 0xa78a0bb3, 0x8a07b541, 0x053045a9, 0x4708ef78,
0x0021074f, 0x05b55f33, 0x04199b82, 0x434108e7, 0x24898205, 0x1e281e14, 0x274b840a, 0x1e1e1e0a, 0x141e280a, 0x00200d82, 0x7d0a9f54, 0xb14809fb,
0x0bfd7d07, 0x7e0a6f55, 0x52820d01, 0x0a0a1e22, 0x2305e443, 0x280a145a, 0x1e245883, 0x321e3c1e, 0x210b077e, 0x07610050, 0x05416705, 0x14df4718,
0x4106ff47, 0x798205b5, 0x47181520, 0xb24210e7, 0x670a2006, 0x76850a37, 0x9343dd82, 0x0064210c, 0x0b5b4118, 0x1807654a, 0x180891d3, 0x680a7b47,
0x07200615, 0x20060777, 0x23cc821e, 0x0a1e1e0a, 0x1e256982, 0x1414281e, 0x0632541e, 0x0a0a6423, 0x2115823c, 0x1b82500a, 0x0a20d682, 0x6905e356,
0x3b6c08c7, 0x0b954e05, 0x76002521, 0x54180879, 0xd38408e9, 0x2105fb54, 0xdb4a3335, 0x32232106, 0x82053b41, 0x07f845c7, 0x82064d4b, 0x501e2863,
0x5a1e0a1e, 0x82320a0a, 0x143c2386, 0x43180a28, 0x0b5f0877, 0xe14b1805, 0x088d6709, 0x8b4e3720, 0x0a322310, 0xef4d0a28, 0x84098207, 0x0a2823df,
0xd1822828, 0x1e1e1422, 0x9d195483, 0x5a210833, 0x09036d00, 0x200b0f4d, 0x20cb8d2f, 0x31611815, 0x05b34808, 0x09001b19, 0x3a41d58d, 0x05714206,
0x6408c456, 0x1e24098f, 0x140a0a78, 0x25058355, 0x14321e28, 0xf059143c, 0x09d36b05, 0xd7550520, 0x09b95d06, 0x1283e792, 0x840d3b49, 0x06e94ff1,
0x8208a449, 0x1e0a2176, 0x4620f788, 0xfa827982, 0x274c0a20, 0x07275e0b, 0x200cbf6e, 0x05334215, 0x89532320, 0x08b35607, 0x35231523, 0x06f54a37,
0x0a464d1b, 0x20058f4d, 0x226c8414, 0x82820a0a, 0x6e0a257d, 0x1e321e1e, 0x1e24df82, 0x500a0a32, 0xf353e482, 0x46df830a, 0x3720068b, 0x4b13d574,
0xcf8406b7, 0x0a204a83, 0x86057d4a, 0x241183c7, 0x141e1e1e, 0x4d008200, 0x502005e7, 0x1806bf41, 0x420d7757, 0x4f7d0b87, 0xdf6c1809, 0x4907200e,
0x23210553, 0x24ba8232, 0x14140a14, 0xe2c8180a, 0x0562430a, 0x23052c45, 0x0a6e1e1e, 0xd4860085, 0x0020d183, 0x210e9742, 0x395a0011, 0x89002005,
0x0e3d64d5, 0x07208784, 0xdb840582, 0x70840a20, 0x09830584, 0xe0850a20, 0x67825a20, 0x461e1422, 0xe38d0582, 0x0fbb1e19, 0x18054360, 0x190a5d4f,
0x200be9f3, 0x4fd78217, 0x32250b3b, 0x0a0a321e, 0xb288183c, 0x20d48508, 0x06274a0a, 0x321e5029, 0x1e3c1e1e, 0x823c1e14, 0xaf4518d5, 0x052b4c0a,
0x62006421, 0x1f42057f, 0x20db8d05, 0x0fcb6e23, 0xf342d784, 0x06d04d05, 0x3c20d485, 0x20066f6c, 0x09036e28, 0x6f186e20, 0x276f0e8b, 0x06294a05,
0x4307a755, 0x4f440b63, 0x08af7907, 0x57067b45, 0x0a210aa5, 0x22ca821e, 0x430a1e3c, 0xa3410a56, 0x635a2008, 0xc78e0c47, 0x870bf74f, 0x08ba43c3,
0x1e20c287, 0x6f073a43, 0x61421c7f, 0x41172006, 0xb9830a99, 0x20076942, 0x055d4928, 0x5d821e20, 0xc0893220, 0xb9826e20, 0x3225c782, 0x1e1e141e,
0x43bd8450, 0xb78b082f, 0x4f84b586, 0x830ac954, 0x435683b1, 0x50260927, 0x2828460a, 0x7b4e1e3c, 0x070b5105, 0x5005137b, 0x6f410d85, 0x0815730a,
0x200e014e, 0x450f8237, 0x1e2406ad, 0x0a1e1e0a, 0x820b5b44, 0x450a200b, 0x3c2005b0, 0x28200782, 0x20064342, 0x7671835a, 0xbb6509b7, 0x0d77410b,
0x46086556, 0x35420815, 0x4e658205, 0x322005d4, 0x1e245582, 0x28280a28, 0x21051543, 0x2b4d141e, 0x063b4b08, 0x180a2153, 0x18080364, 0x46082f44,
0x61830b81, 0x14143222, 0x08c5d518, 0xb5526883, 0x82142008, 0x1e1429d7, 0x1e281e3c, 0x141e1e32, 0x0b9b4118, 0xc6185f85, 0x35200aab, 0x0e935b18,
0x51863220, 0x5f4a5a82, 0x24ad8206, 0x0a14281e, 0x08a34464, 0x52052b5a, 0x89180d8b, 0x4f8209ad, 0x18233521, 0x4e1ce349, 0x49180ecb, 0xe57615ef,
0xf749180a, 0x83642012, 0x05f4461e, 0x85000821, 0x0593528f, 0x8307ef46, 0x086d4e8f, 0x4a183320, 0x07200e71, 0x0af74018, 0x820b5d78, 0x14142154,
0x09724e18, 0x0a140a22, 0x08005618, 0x1805a545, 0x820a6d41, 0x6b142019, 0x40180726, 0x8220082f, 0x770c695a, 0x7b8205eb, 0x21067654, 0x01823315,
0x4607c341, 0xa81a06eb, 0x27200a47, 0x0d194a18, 0x12641420, 0x0a282305, 0xe8821446, 0x98839a82, 0x15831420, 0x461e3c27, 0x0a5a0a0a, 0x82ab831e,
0x185a2024, 0x52094758, 0x3b5e0b4f, 0x84172008, 0x1835207e, 0x1808e178, 0x6f0b1b41, 0x1720099b, 0x20065177, 0x2541183c, 0xad631810, 0x2c41180e,
0x8286820a, 0x2005822d, 0x41008200, 0x78210787, 0x05cf4800, 0x1905214a, 0x1814b9b7, 0x4208134b, 0x35230b09, 0x52271533, 0x3220068b, 0x8209425d,
0x249184fc, 0x28141428, 0x068f470a, 0x24053c54, 0x0a321e3c, 0x2928826e, 0x141e0a50, 0x500a4614, 0x67180a0a, 0xf74c0b53, 0xa5cf1809, 0x1c074108,
0x180aed4e, 0x20182f42, 0xf3571828, 0x37421808, 0x211d8214, 0x87820a5a, 0x200a0b41, 0x0ebf4a6e, 0x4c182b20, 0x0542161f, 0x29441807, 0x0e0d420a,
0x460a0a22, 0x4307425a, 0x064107f3, 0x24078207, 0x0a140a1e, 0x207a8264, 0x0a0b420a, 0x5305fb61, 0xbe180d9d, 0x43180829, 0x99421327, 0x15072307,
0x7d833523, 0x41100942, 0x24440a96, 0x1e1e2205, 0x21f0821e, 0x0682281e, 0x7a821e20, 0x20050f69, 0x22ff820d, 0x5f500000, 0x0d2006cf, 0x210a795d,
0x5d180029, 0x57180703, 0x27210a51, 0x06524f35, 0x82013d21, 0x231522fd, 0xa745181d, 0x06354907, 0x2208ad68, 0x83333523, 0x0a0a210b, 0x20059f72,
0x2182830a, 0x05842814, 0x0e831282, 0x0a0a2822, 0x4205c255, 0x72510594, 0x05ad5205, 0x9b823c20, 0x820a1421, 0x0a0a26ad, 0x00000a32, 0x22a3860a,
0x5a09006e, 0x9d7b0a81, 0x00312105, 0x08094118, 0x07233523, 0x07256335, 0x17231522, 0x18068074, 0x660dff66, 0x4318059b, 0x142008ed, 0x0a207582,
0x8505f26c, 0x820f8279, 0x0a462108, 0x3227a082, 0x64140a0a, 0x83500a0a, 0x821e20ae, 0x831e20b8, 0x0c0021ae, 0x97488b88, 0x0db14105, 0x2005af5a,
0x07125235, 0x22082d41, 0x41011d35, 0x372005a5, 0x07ae5518, 0xc94a1520, 0x06595f06, 0x840a2741, 0x20048282, 0x0500411e, 0x4b0f2441, 0x928307c9,
0x48430a20, 0x86092005, 0x615a2093, 0x74180891, 0x8c830b7f, 0x6e822320, 0x20061d41, 0x06174133, 0x210af95c, 0x35481723, 0x05451806, 0x4968820c,
0x514405b1, 0x08134105, 0x97820a20, 0x95821420, 0x1d842820, 0x43427a83, 0x00782107, 0x44091341, 0x3325094f, 0x3b003700, 0x13434200, 0x011d3524,
0xa34a3523, 0x06194108, 0x2007e146, 0x06d74227, 0x82104542, 0x18fb8476, 0x4308f55b, 0x462108e7, 0x05e8420a, 0x08820a20, 0x0282a482, 0x5a0a3c22,
0x0a210582, 0x82ae8228, 0x074742a8, 0x096f4d18, 0x4742a58b, 0x0d481810, 0x08394b0a, 0x08b55118, 0x4106b741, 0x88830c31, 0x79436e83, 0x0b4a4208,
0x19820a20, 0x32209785, 0x2821a582, 0x055b730a, 0x2006f751, 0x06215505, 0x013b0023, 0x06554415, 0x26095d4d, 0x1e140a0a, 0x79141e1e, 0x78200831,
0x3c260f83, 0x0400001e, 0xeb620000, 0x05955408, 0x33150022, 0x2007874b, 0xa1521835, 0x610a2009, 0x304706af, 0x1e782405, 0x831e3214, 0x0200293e,
0x1e000a00, 0x32004600, 0x099f3e19, 0x28203d83, 0x09b94819, 0x2200003d, 0xe2ff0a00, 0x64005802, 0x1b000d00, 0x33002700, 0x47003d00, 0x57004f00,
0x19005f00, 0x3121a1f7, 0x00ad00a9, 0x00b500b1, 0x00bd00b9, 0x00c500c1, 0x4d182500, 0x33490ce3, 0x06935106, 0x0b399a18, 0xa7510520, 0xa9cb190a,
0x81c11909, 0x48232008, 0x11190723, 0x08860853, 0x61825182, 0x03836583, 0x33350723, 0x20078715, 0x820b8223, 0x2523251d, 0x37352315, 0x05200b82,
0x8406b144, 0x200f8613, 0x27138215, 0x3b352325, 0x27231502, 0x37202f82, 0x26830e82, 0x05203283, 0x07200f82, 0x01291386, 0x0a1e1e54, 0x281e0a0a,
0x23078650, 0x0a1e146e, 0xfe210282, 0x56068498, 0x1e210590, 0x22208282, 0x82320a0a, 0x82782027, 0x0a142103, 0x64202b82, 0x01311282, 0xfe141436,
0xfa0a0ad4, 0x1efe010a, 0x6e1e641e, 0x2c1e821e, 0x141e3efe, 0x0a86011e, 0x0a0a500a, 0x231f8264, 0x30020a34, 0x0a256182, 0x0a0aeefd, 0x2a2b83e6,
0x0a0af00a, 0x0a0a1801, 0x860a20fe, 0x75c82026, 0x794808b1, 0x840a2005, 0x29808261, 0x14140a14, 0x280a141e, 0x11823228, 0x50187982, 0x28200970,
0x14223282, 0x1a822846, 0x4c425020, 0x82322005, 0x460a2493, 0x82140a0a, 0x0a3c2200, 0x05b94850, 0x3c202f82, 0x3c211e82, 0x06bd420a, 0x000a0a22,
0x08220082, 0x0582e2ff, 0x49004621, 0x22190733, 0x671809f3, 0x79601011, 0xcf6f1807, 0x23152309, 0x47183335, 0x17250b8d, 0x28231533, 0x83b78214,
0x1e1e2203, 0x8409823c, 0x8289830e, 0x0a50227e, 0x8202820a, 0x21e28597, 0x07846e0a, 0x20050e45, 0x05de5246, 0x00190027, 0x01e2ff0a, 0x298f8222,
0x001b000b, 0x0033002b, 0xf819003f, 0x6f3d09a7, 0x83007b00, 0x8f008b00, 0x9b009700, 0xab00a300, 0xb700af00, 0xbf00bb00, 0xc700c300, 0xaf781800,
0x18a98408, 0x20087056, 0x21098223, 0x1c191533, 0x17200fe9, 0xbf82ab82, 0x5b182320, 0x7f590bcd, 0x0a3f7508, 0x086d7e18, 0x18050b54, 0x2008cb70,
0xfb761837, 0x41022016, 0x5e830512, 0x8b07d44a, 0x1833200b, 0x1809527c, 0x63070079, 0x0720070f, 0x27205182, 0xbe279282, 0x14141e28, 0x471e281e,
0x1421054f, 0x0525415a, 0x820a0a27, 0x140a1432, 0xd8de19b4, 0x830d820d, 0x06d34527, 0x354b1e20, 0x853c2005, 0x1446213a, 0x2d05394b, 0x283c1414,
0x0a0a3228, 0x28281414, 0x14831428, 0x0cd71519, 0x2a825f85, 0x07b96718, 0x82052347, 0x0a3c2305, 0x06822814, 0x0a462827, 0x1e0a2828, 0x206b8232,
0x82058446, 0x0a322109, 0x39826b82, 0x37823220, 0x83281e21, 0x05774905, 0x16821e20, 0x5a0a0a22, 0x6e256482, 0x0a0a960a, 0x05195514, 0x500a1427,
0x1e142814, 0x06a34a0a, 0x00000328, 0x6e00e2ff, 0x11623200, 0x17002206, 0x051a6e23, 0x18333521, 0x5c084d63, 0x272408bd, 0x07233533, 0x46210382,
0x0809490a, 0x1e0a1e23, 0x86688228, 0x217882dd, 0xd1820a0a, 0x2822d983, 0x0082000a, 0xec205f83, 0x48185f82, 0x002107ef, 0xd9651837, 0x377c180d,
0x82352008, 0x82172057, 0x2846231b, 0xe2821e28, 0x48824583, 0xb4690683, 0x460c8408, 0x00210566, 0x83b78204, 0x005a2357, 0x61460017, 0x35002105,
0x35204b82, 0x18082556, 0x2009e183, 0x86178337, 0x1835205d, 0x82080fe0, 0x321e2155, 0x6683c784, 0x280a0a22, 0x1805c943, 0x22080b97, 0x836e0a3c,
0x820120c0, 0x820020c3, 0x6a5020bf, 0x152005d9, 0x23205f83, 0xf1186585, 0xc7840c5f, 0x5a0a6423, 0x05194150, 0x18086366, 0x220cfb63, 0x85000014,
0x0064224f, 0xfdc21850, 0x8eb18408, 0x1523224b, 0x18488c23, 0x200c596b, 0x85978314, 0x005a22ff, 0x45531864, 0x18312009, 0x201078c5, 0x20f58a27,
0x83898246, 0x1e1421e9, 0xdb56ef85, 0x0a322408, 0x18780a46, 0x200c8b95, 0x08e35f82, 0x97870020, 0x820b674f, 0x463c21e1, 0x08506718, 0x0a504623,
0x20ed826e, 0x2e41821e, 0xff140002, 0x006e00e2, 0x001d005a, 0x5600002d, 0x5a180a94, 0x4a4208e2, 0x35232405, 0x84071523, 0xa5b8180a, 0x145a2109,
0x24086d78, 0x14141e0a, 0x0bcc4a32, 0x00841420, 0x4e463c21, 0x00200a7d, 0x05200082, 0x20060342, 0x08034246, 0x42002b21, 0x93492005, 0x670a200b,
0x14210548, 0x0a094214, 0x0d426385, 0x82e38211, 0x030023e2, 0x79821e00, 0x64006e29, 0x0d000700, 0x18001100, 0x200e4950, 0x05df6637, 0xaa824620,
0x0a1e142c, 0x500a1414, 0x0a5a1446, 0x3a831e0a, 0xaf850020, 0x0d235018, 0x18062f58, 0x21088e59, 0x01821533, 0x0f156c18, 0x46825a20, 0xfd514c83,
0x069f5106, 0x23078241, 0x0a280a0a, 0x4208e85a, 0x50200517, 0xc1779f82, 0x18352009, 0x5710f8d8, 0x768207aa, 0x180b0f41, 0x210bf559, 0x3b783c46,
0x1e282109, 0x1420fd82, 0x72830382, 0x8205444c, 0x8200200c, 0x0000236b, 0x7b5e6e00, 0x18172008, 0x2309819d, 0x23152335, 0x2508d34e, 0x32231533,
0x0284320a, 0xbd833682, 0x46461422, 0x82204682, 0x00205184, 0x23061741, 0x0046006e, 0x41099b57, 0xb6831417, 0x0fdb7f18, 0x460a5023, 0x061b4146,
0x73451420, 0xe14f1806, 0xa7671808, 0x41462008, 0x02210820, 0x23008300, 0x0064006e, 0x4306f96a, 0xbf481cd1, 0x18638206, 0x210cec81, 0x8e5f1e1e,
0x08184108, 0x64140a22, 0x0963c418, 0x21077f41, 0x7b413700, 0x41cb831c, 0x4f820e73, 0x200f6d41, 0x0503613c, 0xb8821420, 0x7f18b783, 0xdc530cc5,
0x18332006, 0x180c696e, 0x8208e956, 0x5a232415, 0x820a320a, 0xa4771802, 0x5078180a, 0x46462108, 0x2005a95e, 0x069f4228, 0x43071b41, 0x4943054f,
0x103d4320, 0x200f3443, 0x8f9b1a00, 0x07eb4e0c, 0x45370021, 0x152006a7, 0x1808604a, 0x460a2bfa, 0x7556057d, 0x09236306, 0x7d6c3520, 0x08075107,
0x91414620, 0x05974207, 0xd5885a20, 0x0854341a, 0x830a1e21, 0x0a5a2314, 0x97440500, 0x6b721806, 0x8375820e, 0xedf91889, 0x2013820f, 0x22138215,
0x18272335, 0x200efd7c, 0x05ca4746, 0x0a424d19, 0x4b452820, 0x08165306, 0x28208b82, 0x08953119, 0xa1850a20, 0x4f180020, 0x60180c8b, 0x654708a3,
0x4323200a, 0x2f43058e, 0x2045820b, 0x2048821e, 0x4d4d8428, 0x1420087c, 0xd784eb85, 0x000a0a27, 0xff1e0003, 0x065b47e2, 0x840be174, 0x235f84d1,
0x37233523, 0x4e83c586, 0x0a281e22, 0x82057348, 0x820a20c9, 0x840c83c7, 0x05ab4752, 0x2007cf43, 0x08874364, 0x86056159, 0x2056824a, 0x20aa8335,
0x06975233, 0x26079d41, 0x320a326e, 0x82320a28, 0x081446ae, 0x46086871, 0x5020056b, 0xaf83c183, 0x20057b43, 0xc7691850, 0x05ed4108, 0x82080348,
0x22af8268, 0x443c2315, 0x9a84052d, 0xa9820485, 0xbc185020, 0x46200e13, 0x0720f982, 0x0801c018, 0x23066f44, 0x3c0a0a3c, 0x14220382, 0xbe475046,
0x46002005, 0x6e200793, 0x0021d384, 0x4d001917, 0x8215200c, 0xf88218ca, 0x185a2009, 0x20088ad1, 0x0768410a, 0x75821182, 0x14465a23, 0x09bb6f6e,
0x2005ef44, 0x474f8213, 0x1641051d, 0x06876f05, 0xbf843520, 0xbf843220, 0xec442820, 0x6fbe850d, 0x502305ff, 0x53008200, 0x4385058f, 0x775fbd85,
0x21c18208, 0x3d88323c, 0x820a5022, 0x5f473b87, 0x46822005, 0xcd9b06ef, 0xd58c4b88, 0x0c764018, 0xda851e20, 0x00235c86, 0x82050000, 0x00002203,
0x63018264, 0x212107d7, 0x07874500, 0x2b413320, 0x33072107, 0x5107db45, 0x642307f5, 0x821e5a0a, 0x0a1e24ac, 0x561e2832, 0x46200c20, 0x6582c383,
0x0a210684, 0x08b34900, 0x56057b45, 0xef43050b, 0x13a44609, 0x0c3f5d1a, 0x45231521, 0x3c201187, 0x09d14418, 0x08e85a18, 0x0b148b18, 0x180a5b46,
0x4a0ba950, 0x0f471a83, 0x138b4a0b, 0x6c827085, 0x49062f4a, 0x8f1908e9, 0x6e210733, 0xab6c1a00, 0x0a642114, 0x82057b7f, 0x280a262f, 0x1414141e,
0x219b8600, 0x87680064, 0x3d1f1b07, 0x50f78d09, 0x322106ad, 0x086e6432, 0x140a0a24, 0x43820a1e, 0x7c281e21, 0xc04505fb, 0x055f4805, 0x4f826e20,
0x41090b66, 0xaf6e0abf, 0x3950180c, 0x06974708, 0x584f4782, 0x82088205, 0x22058258, 0x48640a0a, 0x5d1806b8, 0xa36d09fb, 0x8d7d1807, 0x4a332007,
0x6918061f, 0x67830c7d, 0x140a3c22, 0xaa86ad86, 0x1422f682, 0xb683141e, 0x2c05ed53, 0x00000a46, 0xff1e0003, 0x006e00f6, 0x73101950, 0x09296909,
0x82233521, 0x06554347, 0x5f823720, 0x41821e20, 0x84280a21, 0x41fc85ef, 0x502008f9, 0x4f82a686, 0x21051f43, 0x31540032, 0x4e002005, 0x2d54083a,
0x1a232008, 0x2008c7b2, 0x05e44332, 0x5e282821, 0x9b82067b, 0x5d821420, 0x0982f882, 0x4b880a20, 0x4b9b4620, 0x23205682, 0x20059556, 0x82378214,
0x050d489d, 0x46204a89, 0x20077763, 0x05174bff, 0x9409c954, 0x0897539b, 0x23153322, 0xa3890b83, 0x82090246, 0x20a685b6, 0x2113835a, 0x74181e0a,
0x6e220823, 0x094d4600, 0x15372207, 0x685c1833, 0x41232008, 0x28480548, 0x07a35108, 0xc6185f84, 0x6f18089c, 0x0a2008a8, 0x14235182, 0x85281e14,
0x141e25c9, 0x280a141e, 0x0907ea18, 0xa3496420, 0x9bc41808, 0x84b5840a, 0x206a8366, 0x21bb8617, 0x5c890a1e, 0xbe843c20, 0x00821420, 0x08634b18,
0x0f445a20, 0x0b2b6508, 0x83080d45, 0x83511845, 0x3c0a2109, 0x14209f82, 0x2005f041, 0x054c4646, 0x2105db53, 0x034eff00, 0x05ef4205, 0x830e7f4a,
0x60272043, 0x32240869, 0x46320a32, 0x05824285, 0x4d464621, 0x00200898, 0x2406f744, 0x0064006e, 0xe1761819, 0x1523210a, 0x4a41d385, 0x09994206,
0x01452720, 0x423c2012, 0x0a20054d, 0x0645a782, 0x856d820f, 0x821e206b, 0x320a22ff, 0x05ad420a, 0x71096b45, 0xab43098b, 0x08134705, 0x21053a4a,
0x71453315, 0x456f8913, 0x6d8a0e74, 0x04206b88, 0x2006274d, 0x96df883c, 0x055f4b69, 0x95753520, 0x33372506, 0x0a642315, 0x754cd98f, 0x8a142008,
0x822820d5, 0x07df45d5, 0x3c006422, 0x0ea96d18, 0x8555d196, 0x83638b07, 0x206191cd, 0x255f880a, 0x6e000000, 0x76188200, 0x254c0837, 0x0974180a,
0x1b5d4a08, 0x42060d42, 0x5a220719, 0x7a18500a, 0x2f4c0cce, 0x05174b08, 0xe1840a20, 0x1e200482, 0x8908754a, 0x8482209b, 0x083b4213, 0xdf7b6e20,
0x1ce3500a, 0x460b494f, 0xdf4e0f5f, 0x052d5208, 0x20059443, 0x20fd840a, 0x7300191e, 0x006e2308, 0xa9610050, 0x1a212005, 0x5208d1b2, 0xcd4805c8,
0x07c7460c, 0x88185a20, 0x0a200891, 0x8505345d, 0x835582d5, 0x1414215e, 0x86054e43, 0x005a22c7, 0x084f5078, 0x51505d82, 0x07917315, 0x4620c983,
0x21095550, 0x58500a14, 0x4e108410, 0x012105fb, 0x05675200, 0xf7502820, 0x05fb4b05, 0x5908fd4f, 0x3523083f, 0x45321e23, 0x3c2008d8, 0x5584aa82,
0x0a826482, 0x1a140a21, 0x2208a36f, 0x7d5a006e, 0x2d2108c1, 0xe7d01900, 0x4c421809, 0x94d1180a, 0x37352108, 0x2005674c, 0x07b74a23, 0xd3189583,
0x0a21082b, 0x06354e28, 0x6b826382, 0xc6830582, 0x2005db42, 0x08794128, 0x03000022, 0xf625bf82, 0x46006e00, 0x05955500, 0x093ff918, 0x334c5683,
0x18808308, 0x18084e7f, 0x180a5d4a, 0x8208138a, 0x20ca8308, 0x0512450a, 0x1e0a0a22, 0x08efcf18, 0xe54a1985, 0x3f951807, 0x06274a09, 0x1806ff68,
0x20088146, 0x21e08237, 0x044d3c3c, 0x1e14220a, 0x443c8628, 0x6e22055b, 0xe3796400, 0x2315210d, 0x0c831519, 0xc9443f82, 0x06cb4913, 0xc6440a20,
0x4914200f, 0x142106cd, 0x08574414, 0x24075b4b, 0x001d003c, 0x69731925, 0x09ec5109, 0x67491520, 0x55078206, 0x32230760, 0x4528140a, 0x6762052b,
0x09b64d05, 0x200c9b4a, 0x245b8300, 0x006e00ec, 0x776d183c, 0x674d180b, 0x8233200a, 0x07232153, 0x50205f82, 0x5087a882, 0x0cf37d18, 0x00204f82,
0x0913d319, 0x47826e20, 0x29002522, 0x6008cf4a, 0x45820b80, 0x03822720, 0x8f0c7b48, 0x4ab58259, 0x5f5008db, 0x0a502108, 0x2005f342, 0x092f4864,
0x07443220, 0x14df4706, 0x0bcb9118, 0x410ddb47, 0x142005fc, 0x20088148, 0x216c820a, 0xb74e0100, 0x00322506, 0x3300001b, 0x086dcc18, 0x18071746,
0x18086d6d, 0x2209c761, 0x8228280a, 0x489f8249, 0x14200825, 0x48060341, 0x1b22077f, 0x4b821f00, 0x098cca18, 0x2205ac42, 0x6d152335, 0x1b490c55,
0x07944108, 0x2009d248, 0x2112825a, 0x574d1414, 0x056b4908, 0x1d24ed93, 0x23153301, 0x4389e58b, 0x6c0a0a21, 0x6e22068b, 0xcb446400, 0x41252008,
0x2b461b9b, 0x41352007, 0x32200e97, 0x20081849, 0x099e410a, 0x19496420, 0x00002308, 0x37510004, 0x08334507, 0x42055958, 0x57520f4b, 0x93372007,
0x08e85761, 0x83050f41, 0x831e2060, 0xff0022c3, 0x20c182ec, 0x082f4f5a, 0x01532720, 0x0d7e4907, 0x60071749, 0x6382084f, 0x85101f49, 0x140a2163,
0x200e2649, 0xc7b7181e, 0x226b8208, 0x4750006e, 0x6d8329c3, 0xc3471520, 0x846c8816, 0x06994808, 0x93495020, 0x82642008, 0x6d751867, 0x16c3470d,
0x32206393, 0x2009c855, 0x0548420a, 0x1e0a0a26, 0x0a320a14, 0xe2215f87, 0x20c78300, 0x29e3181b, 0x065b4e08, 0x08996018, 0x23206b83, 0x35230d83,
0x4e013b23, 0xc983076d, 0x50064f46, 0x1e22056b, 0x68871e0a, 0xc5842820, 0x140a2822, 0x6a886883, 0xdb580020, 0x433c2007, 0xef620793, 0x08394307,
0x38193320, 0x76500ca1, 0xd47a1806, 0x070b4d0c, 0x5a201482, 0x21060350, 0xbf82ecff, 0x35006e26, 0x3d003900, 0x8606b342, 0x075342ad, 0x20118b48,
0x19d38215, 0x4d08bafe, 0x5a230add, 0x460a460a, 0x758c050b, 0x14210c82, 0x05db4e14, 0xd1820a82, 0x52056744, 0xed830ce3, 0x08030119, 0x31209386,
0x15499584, 0x4e072032, 0x614f060f, 0x2171860f, 0x96471e0a, 0x830a2006, 0x130e4975, 0x56061e57, 0x502008e3, 0x4b214748, 0x47480b9f, 0x09ea4b0a,
0xe85f0a20, 0x55322006, 0x002008bd, 0x2108a748, 0x3b630082, 0x1bf3490b, 0x430c5154, 0x078507e5, 0x32233522, 0x4a0e7641, 0x5518050f, 0x8b82082a,
0x85145854, 0x097b4d36, 0x46005022, 0x08a34618, 0x20088348, 0x08084823, 0x33352323, 0x22028215, 0x470a4623, 0xa64508b0, 0x73581805, 0x185a2009,
0x480887e6, 0x25230563, 0x45170000, 0x2e6706f1, 0x06a3460b, 0x20054d42, 0x08936423, 0x3220c584, 0x84098b56, 0x05e2490f, 0x830a1421, 0x06bb42cd,
0x20051f4f, 0x063b4946, 0x4f223749, 0x2f490779, 0x2054820f, 0x102b491e, 0xef5b0020, 0x613c200a, 0x6d45076d, 0x08af4706, 0x53333521, 0xa58608df,
0x27056243, 0x03000a50, 0xecff0000, 0x0a576f18, 0x48330021, 0x074105b1, 0x0bef4805, 0x821e1421, 0x21d38690, 0x0355ff0a, 0x05df4505, 0x15203382,
0x5208b36c, 0xe76107b3, 0x080d5705, 0x320a0a22, 0x0d4b7a82, 0x08254106, 0x640a1e27, 0x0500000a, 0x204f8500, 0x0899655a, 0x00003d22, 0x20079f5e,
0x5b8f8435, 0x4d490566, 0x63941807, 0x07a7460d, 0x29821720, 0xb1822320, 0xbb822720, 0x843c1e21, 0x280a216f, 0x2006a658, 0x1807830a, 0x71081b84,
0x0a200813, 0x210ce343, 0xa282140a, 0x0a5a0a23, 0x06584350, 0xeb550420, 0xff9d1906, 0x079b5509, 0x2008d94f, 0x06336733, 0x20079753, 0x059b4b6e,
0xf4196085, 0x4f8208cd, 0x46211782, 0x82108246, 0x4a00200a, 0x6e270567, 0x17005a00, 0x53001d00, 0xfb4e09ef, 0x48e1850a, 0x1d47051f, 0x0a715905,
0x8c512820, 0x05cf410a, 0x20054f76, 0x20008200, 0x06bf4804, 0x1f478220, 0x1bb15408, 0x08859018, 0x5f0cb154, 0xb2540d62, 0x20158407, 0x07af5800,
0xe1186e20, 0xb9840c5f, 0x735aa783, 0x056d5a08, 0x420a6e21, 0x5020099f, 0x08a76b18, 0x18081f53, 0x7209a54a, 0x85570905, 0x0a185610, 0x000a5a22,
0x5a20df87, 0x0a4bfd18, 0x20053b4f, 0x07135133, 0x5e333521, 0x33200891, 0x230d5558, 0x23153317, 0x211d5158, 0x4e580a0a, 0x0a28230d, 0xff440a46,
0x006e2108, 0x4a05ef42, 0x724b05d3, 0x059a420d, 0x35173527, 0x15371523, 0x738c1833, 0x05a95208, 0x00840a20, 0x821e5021, 0x830382ca, 0x2065820c,
0x056e4232, 0x14201082, 0x20068542, 0x099b5b46, 0x00000023, 0x2001826e, 0x279b1b19, 0x05814a09, 0xe94b748c, 0x92372006, 0x082e4673, 0x0a141425,
0x89143c50, 0x05e54e75, 0x08886882, 0x2209e845, 0x860a0005, 0x05676777, 0x2f002b25, 0x86330000, 0x208c1878, 0x0656410b, 0x92271521, 0x0adc4579,
0x1c6c6282, 0x850a2006, 0x08c44beb, 0x2008744f, 0x442e8446, 0x50200ac3, 0x08cd641a, 0x21080a52, 0x05593523, 0x8307200b, 0x5903820c, 0xd0851001,
0x25061d5a, 0x0a640a1e, 0x1f7e0400, 0x07035408, 0x5214e15c, 0x372007af, 0x5a205582, 0x4409f55d, 0xae820a24, 0x08e58c18, 0x57831e20, 0x2005af44,
0x08af446e, 0x7a465784, 0x1eb3440a, 0x5023718b, 0x440a0a32, 0x224113ac, 0xb1911808, 0x0a142214, 0x82918250, 0x0b4b448b, 0x2f611b20, 0x0d2d450d,
0x616f2720, 0x0fbb5d06, 0x0c418418, 0x445a1421, 0x5a20099f, 0x08673c19, 0x82183541, 0x5f2320f1, 0xea410f27, 0x06a25706, 0x45030021, 0x2b4106db,
0x32294107, 0x25416583, 0x181e2017, 0x420eff97, 0x1422097d, 0x0c82640a, 0x20088b58, 0x066b635a, 0x2b002723, 0x09895300, 0x550a614b, 0xb54605be,
0x0b334c05, 0x140a6422, 0x1e210182, 0x1806841e, 0x520b3b6e, 0x142909b8, 0x1e1e1414, 0x5a0a0a14, 0x05384c0a, 0x51000521, 0x5a200577, 0x2008d954,
0x2108192f, 0x09b85508, 0x0a3d8418, 0x73071f56, 0x33230897, 0x56322315, 0x73861327, 0x2e568c82, 0x637b8511, 0xc34309fb, 0x83eba005, 0x4de39990,
0xdc850519, 0x82040021, 0x00ec24d7, 0x46320064, 0xdb18095b, 0x9156092d, 0x18372011, 0x220afb54, 0x830a0a14, 0x181e20cf, 0x4d08d171, 0x70470d72,
0x205f8505, 0x0817656e, 0xa9412720, 0x07494321, 0x1a65c18e, 0x895b820b, 0x206884c5, 0x4ec78607, 0x2b200b43, 0x07addf19, 0x5b0fc657, 0x3d4b0b79,
0x05a5490b, 0x6b09a441, 0x7b8808a4, 0x1d82e28b, 0x22066745, 0x85000a6e, 0x006e217f, 0x6d0b9342, 0xf8190561, 0x23561679, 0x059b4205, 0x830b2b5b,
0x60f98efd, 0x3f4408da, 0x05334208, 0x1e218c85, 0xe79c1814, 0x066f6808, 0x19094f62, 0x2008256f, 0x0a0b4e37, 0x4b295d4d, 0x152105dd, 0x4d078323,
0x334b1e61, 0x17644d08, 0xb3848220, 0x00070024, 0x6b58ff14, 0x0f837805, 0x3321a189, 0x07721815, 0x0b1b410a, 0xd1451783, 0x0b8b6105, 0x88074c45,
0x0a142182, 0x26069161, 0x0a460a3c, 0x44500a28, 0x1e2605ff, 0x6400e2ff, 0xbf525a00, 0x4c332008, 0x15200b0f, 0x0889de18, 0x97183520, 0x2542089b,
0x067e4607, 0x4c824582, 0x14286c82, 0x32140a28, 0x0a141414, 0x02820382, 0xa06a3c20, 0x07bb4506, 0x23054746, 0x000b005a, 0x08f78118, 0x67535383,
0x205d9105, 0x24378250, 0x461e1e0a, 0x2359890a, 0x3c460a0a, 0x55092149, 0x062005f7, 0x24067345, 0x00130064, 0x08b34d23, 0x0ee56d1b, 0x2005ad46,
0x06935327, 0x5b065748, 0x072006fb, 0x820a8561, 0x24be826c, 0x1e0a1e0a, 0x085b4228, 0x140a1e2a, 0x1e1e141e, 0x3214141e, 0x5505d743, 0xcc4705bf,
0x1e0a2105, 0x28219d82, 0x6395820a, 0x6e21099b, 0x058b6800, 0x571ca557, 0xf05d1099, 0x0000210c, 0x28067b4a, 0x0050005a, 0x00150011, 0x15295700,
0x4e0c1d57, 0x3b5308cc, 0x001d220a, 0x23bd5621, 0x5611b156, 0xb74811aa, 0x20938708, 0x23959719, 0x23153317, 0x820d0d68, 0x07ab7ddc, 0x000a4623,
0x076b4c00, 0x2007fb5c, 0x5fa3821f, 0xaf410ca7, 0x63441906, 0x0a99410a, 0x850a0d6a, 0x050c6a57, 0xdf4d0a20, 0x006e2107, 0x20055f64, 0x21ab6723,
0xad691720, 0x0f686416, 0x820a3c21, 0x05e746b3, 0x8b4b3c20, 0x05de6b09, 0x570f7f4b, 0x4c180ba1, 0xa1570bd9, 0x056d6711, 0x570a1421, 0x2a8210a3,
0x00200282, 0x42087f4c, 0x0120434f, 0x23089766, 0x37000035, 0x1805266d, 0x1808a681, 0x83085990, 0x09254317, 0x2009396a, 0x05e75333, 0x200a7148,
0x0d585214, 0x820be65a, 0x20d283d1, 0x06d4670a, 0x936a0020, 0x18642008, 0x5207896f, 0xf54108a9, 0x0b1f570c, 0x22050864, 0x86502315, 0x088d6572,
0x97580f86, 0x52142005, 0xea44072d, 0x246b8707, 0x0064006e, 0x55351931, 0x4f971808, 0x6b558208, 0xd9840f5f, 0x8609b341, 0x1e1e226f, 0x8371950a,
0x0d086270, 0xab430a20, 0x8200203f, 0x006e2600, 0x0041006e, 0xb9041945, 0x05da5108, 0x804f9b86, 0x08775008, 0x19077342, 0x410d4df5, 0x27240533,
0x64233533, 0x4108f950, 0xbf410da5, 0x0a282109, 0x82053350, 0x0bae4111, 0x200c0d4f, 0x09d34414, 0x9f826420, 0x20058d54, 0xf3941833, 0x0e3b410a,
0x9d4e8d82, 0x0afe6906, 0x21084d42, 0x6367013b, 0x416e8511, 0x9f6e0a69, 0x20a98908, 0x08e4410a, 0x13438e83, 0x006e2708, 0x0041003d, 0x8fa73700,
0x0ce9441b, 0x55053741, 0x841805fd, 0x78850e89, 0x930dff41, 0x0a084295, 0x04219784, 0x05c74100, 0x4c096749, 0x15201449, 0x4a060b5a, 0xa14c07fd,
0x0ac6480c, 0x2008bb47, 0x056f7414, 0x210a0b50, 0x294f0013, 0x14e34605, 0x47333721, 0x2320064f, 0x23230982, 0x46140a3c, 0x282805cf, 0x140a0a32,
0x1e1e281e, 0x20059f47, 0x05c3460a, 0x750a5021, 0x04200555, 0x20064347, 0x08e76c3c, 0x5b0dad7c, 0x5c181165, 0x1e210984, 0x05eb490a, 0x4d08844f,
0x28210713, 0x207b841e, 0x0566520a, 0x08731319, 0x5400e221, 0x1f2009cb, 0x4d08d35b, 0x2d5705af, 0x07944c09, 0x420dd054, 0x0a2006ac, 0x1808d554,
0x45081b73, 0x3b49079b, 0x08777909, 0x5b851520, 0x87071f5c, 0x23172359, 0x8f573315, 0x07804110, 0x82053154, 0x775a206e, 0xe74c081f, 0x075b6607,
0x33002f23, 0x22a35d00, 0x180a0146, 0x2108af4e, 0x374e320a, 0x62708208, 0x3220077b, 0x5d05e852, 0x80820faf, 0x0a780a23, 0xef7e180a, 0x006e220a,
0x08e37a50, 0x58056342, 0x8918051d, 0x376708d3, 0x06116609, 0x220ad665, 0x821e280a, 0x823c20dc, 0x180a204f, 0x190bc379, 0x55089b62, 0x35200711,
0x0a935318, 0x860f055e, 0x6d00203d, 0x5021089f, 0x4b5c1900, 0x6833200d, 0x284209f3, 0x099f6d09, 0x89061f51, 0x0b374f87, 0x37003323, 0x31374f00,
0x4f065b41, 0x44541739, 0x165d5006, 0x50083f6f, 0x0b50055f, 0x00192205, 0x0b2f5c1d, 0x54095f50, 0x0d5009a7, 0x06bc410a, 0x2108d741, 0xb241320a,
0x08936806, 0x0a277b18, 0x201fa172, 0x15a57235, 0x8308f36a, 0x0a0a225a, 0x0540720a, 0x7f5c0320, 0x00822806, 0x00170007, 0x5200001b, 0x272007bb,
0x200eff70, 0x23558337, 0x5a280a0a, 0x220b504b, 0x75144650, 0x0a240698, 0x03000a1e, 0x089f5618, 0x53001521, 0x0b4c05f7, 0x4c599314, 0x14200b0b,
0x0c4c618a, 0x21688a0a, 0x6b860000, 0x82006e25, 0x69001900, 0x23200fa9, 0x0dfb1619, 0x50216f93, 0x079b5b0a, 0x244c0a20, 0x8c738810, 0x207388dc,
0x20738250, 0x05516015, 0x0b119a18, 0xab6d1520, 0x206f8508, 0xab561815, 0x82db8c08, 0x3232245c, 0x820a1414, 0x08e64ce3, 0x291bd983, 0x575409ef,
0x20d78305, 0x0e0f6021, 0x6789d794, 0x6988d38e, 0xd1856b8a, 0x0ddf6218, 0x4e2c8761, 0x64220735, 0x4583500a, 0x610a1e21, 0xf7470587, 0x0a87610a,
0x2f05d449, 0x00020000, 0x005a0014, 0x00780046, 0x000f000b, 0x08f91119, 0x18231521, 0x8208d3f6, 0x821e2047, 0x0577484f, 0x000a1425, 0x86010000,
0x8d822033, 0x23352131, 0x2106675d, 0xdf820a1e, 0x82641e21, 0x83de8334, 0x860a202f, 0x86132063, 0x83431861, 0x05d75608, 0x14215f83, 0x222f8214,
0x485a1414, 0x378b081d, 0x41191720, 0xaf180807, 0xd24108bc, 0x82462007, 0x826f8236, 0x0a142102, 0x4186a385, 0xdb833f83, 0xdb843220, 0x2005f158,
0x05f24e35, 0x33823220, 0x00232d88, 0x89000200, 0x4f69839f, 0xba55080d, 0x33172309, 0x62842335, 0x2008b248, 0x20a88878, 0x0513410a, 0xe3821e20,
0x6b863c20, 0x15204182, 0x8406ff4a, 0x0a0a21db, 0x93842e85, 0x00e2ff32, 0x00f6ff3c, 0x17000003, 0x14231533, 0x140a2828, 0x0893881a, 0x5882178d,
0x22056b41, 0x836e003c, 0x8537202f, 0x856e202f, 0x206f842f, 0x20178a64, 0x08b37c64, 0x2f829620, 0x37002f27, 0x3f003b00, 0x05474900, 0x2006754a,
0x18c78235, 0x6b08e5a1, 0xf0640981, 0x051d5006, 0xc4673720, 0x82272006, 0x15072415, 0x820a3533, 0x4f0a20f3, 0x1e2005fd, 0x4621f482, 0x26058214,
0x0a144614, 0x8214500a, 0x82142019, 0x078b4608, 0x084d2820, 0x20158205, 0x22098232, 0x821e0a0a, 0x232582da, 0x0014143c, 0x20059357, 0x859782dc,
0x00432295, 0x53998247, 0x4871086c, 0x8b15200a, 0x0c075d0b, 0x5108a453, 0x352505a3, 0x3315022b, 0x22218227, 0x830a3ca0, 0x08876a85, 0x0a207583,
0x0a250d82, 0x1e320a3c, 0x82ae8314, 0x052d7b8e, 0x14464622, 0x2821a482, 0x41058514, 0xab8505cc, 0x50142823, 0x20178228, 0x2b008200, 0xff0a0007,
0x000401e2, 0x00330050, 0x0ce75f19, 0x81853720, 0x09f6fc18, 0xc0513520, 0x21058205, 0xb84b2315, 0x65d18405, 0x138208d6, 0x35219f82, 0x84c68437,
0x793720af, 0x17200606, 0xb4200782, 0x1423a483, 0x823c141e, 0x0a142107, 0x9d828683, 0x1e259e82, 0x5a1ea014, 0x4100820a, 0x9623055a, 0x5cb40a0a,
0x1e230569, 0x831e320a, 0x200483d7, 0x4e34841e, 0x13820560, 0x00831e20, 0x3c141422, 0x09f78918, 0x6e007825, 0x75000300, 0x002005c9, 0x2005177f,
0x41a89035, 0x2724056c, 0x27353315, 0x3c209082, 0x8505e658, 0x21548289, 0x04823c14, 0x146e0a23, 0x22708950, 0x82280a1e, 0x0014210c, 0x8305574a,
0x19451863, 0x1af68209, 0x4e084ecb, 0x0d4e065f, 0x2a778406, 0x15372315, 0x33013d33, 0x82072315, 0x0a0a226b, 0x06274246, 0x42144621, 0x14220556,
0xf082141e, 0x62821482, 0xdf84d782, 0x820a2821, 0x1e1e2427, 0x82281446, 0x570220d8, 0xd5830883, 0xf818d384, 0x35200bf5, 0xc5527f88, 0x500a2107,
0x3c255a84, 0x0a3c0a14, 0x23008214, 0x50141428, 0x164c5f82, 0x28282406, 0x416e4646, 0xa025092f, 0x27006e00, 0xb50a1900, 0x68c98608, 0x5d84095d,
0x4109fa41, 0x37200539, 0x1721cd82, 0x05864223, 0x95185020, 0x0a200858, 0x93426f82, 0x20d38407, 0x21c6823c, 0x6e421428, 0x8246200b, 0x6e0a23d2,
0x92822814, 0x5c082f47, 0x1320058b, 0x0d11cd19, 0x5d833720, 0x005e6582, 0x50642305, 0x32821414, 0x3c465028, 0x46460a0a, 0xbe83643c, 0x08ab9019,
0x13223f83, 0xc5451700, 0x7c352009, 0x15210589, 0x20088223, 0x260b8237, 0x140a0a32, 0x8246141e, 0x82068205, 0x46322998, 0x0a145046, 0x5a3c500a,
0x02204784, 0x08377a18, 0x0d000922, 0x093bde18, 0x37231522, 0x0a223b82, 0x14470a46, 0x82502005, 0x05374178, 0x2105db49, 0x77830078, 0x086f4c18,
0x410c8a58, 0x31660524, 0x23352309, 0x4b822735, 0xd6514620, 0x0a1e2105, 0x46210082, 0x24598214, 0x1414280a, 0x82008346, 0x0a0a2110, 0x82050050,
0x14282306, 0x93840400, 0x7800fa23, 0xb35d1900, 0x87441909, 0x4e35200c, 0x05820597, 0x43057f46, 0x23200688, 0x82224644, 0x33072147, 0x26084544,
0x280a0aaa, 0x82140a0a, 0x441e2001, 0x2083194e, 0x4d440a20, 0x83642005, 0x826420ab, 0x44c08205, 0x0a221855, 0x54442846, 0x07bb4205, 0x71185020,
0xb95008ef, 0x0eaf6405, 0x830a2821, 0x3c14227c, 0x83878314, 0x23108268, 0x0a46501e, 0x0ad36818, 0x7800b428, 0x4b004300, 0xd9454f00, 0x0deb671f,
0x42082741, 0x152106d1, 0x0ded4523, 0xe9452320, 0x05d75311, 0x92841420, 0x820bf345, 0x05194ef0, 0xf0453220, 0x41142006, 0x1420090a, 0x0e82b483,
0x0a281e22, 0x1421c282, 0x05534200, 0x6e006e26, 0x09000500, 0xcf56b183, 0x140a2607, 0x14286450, 0x20db8214, 0xbf8d186e, 0x00822309, 0xd5180078,
0x1719089d, 0xba5d0830, 0x0a2b6b09, 0x9f461d82, 0x33272406, 0x6a502335, 0x8982065a, 0x2107c441, 0xb3823214, 0x05828d82, 0x1e0a1e22, 0x1e23a28a,
0x830a1e1e, 0x01002772, 0x00000a00, 0x7382be00, 0x99832b20, 0x200ea352, 0x47a98323, 0x6d820a2f, 0x81821182, 0x78233523, 0xb063180a, 0x05154308,
0x82145021, 0x057e4852, 0x0a646422, 0x0a2ada82, 0x4646281e, 0x0a140a50, 0x0f4b461e, 0x82962007, 0x002d2467, 0x84350031, 0x0c89456b, 0x451da941,
0x5a20079d, 0x41062f45, 0x3c200f96, 0x90821082, 0x7c82e790, 0x8206ac45, 0x460920e5, 0x6e2106d3, 0xfdb61800, 0x05697a11, 0x2009244b, 0x072a5435,
0x1522a48c, 0xd7461523, 0x82332010, 0x46168214, 0x27240bd4, 0x17233533, 0xdc461382, 0x4846201b, 0x32290634, 0x0a500a0a, 0x0a0ab40a, 0x1edf4664,
0x32144629, 0x3c1e1e1e, 0x82141e1e, 0x820a2000, 0x066b63ce, 0x6e00dc24, 0xd1821f00, 0x45004124, 0x234a4900, 0x0ede4806, 0x8205ee42, 0xfd6719b9,
0x0e934407, 0x1b43af83, 0x202a8206, 0x20d18237, 0x23bd8307, 0x0a501414, 0x20053f42, 0x2207820a, 0x83141e28, 0x14aa240c, 0x8378aa0a, 0x8214200f,
0x14142404, 0x440a0a3c, 0xc88206b3, 0x82056f51, 0xc3b81810, 0x05f66b08, 0x14641422, 0x096ffc18, 0xaf82aa20, 0xaf822f20, 0xab823720, 0x08244118,
0x78096246, 0x36470860, 0x08554809, 0x5a239987, 0x82140a1e, 0x280a2201, 0x05ac440a, 0x0a828a83, 0x140a2822, 0x46206f83, 0x2005c378, 0x2106823c,
0x05823c0a, 0x32202a84, 0x85841f83, 0x07000028, 0xe2ff0a00, 0x8782b400, 0x2d001f23, 0x072b5b00, 0x19004521, 0x19096f79, 0x480aa910, 0x27410bee,
0x45a1830e, 0x172306cd, 0x82233533, 0x022b2603, 0x14963315, 0x0a354146, 0x1e140a24, 0x0f820a50, 0x2822a284, 0xa1841e14, 0x0a0a1e23, 0x05ad426e,
0x2208a554, 0x41320a1e, 0x1e20062b, 0x4626af83, 0x3c1e3214, 0x37431414, 0x006e2109, 0x095d8018, 0x210e7049, 0x1f473315, 0x64322507, 0x140a280a,
0x14220383, 0xec821450, 0x41501421, 0x4622060b, 0x27473c46, 0x05834506, 0x78008c27, 0x53004d00, 0x05f54200, 0x4209dd75, 0x62820804, 0x0583dd82,
0x53053542, 0xe1490722, 0x83352008, 0x08704617, 0x2705a141, 0x15330715, 0x3c233533, 0x82084446, 0x140a21f4, 0x1e200083, 0xde849582, 0xc2761420,
0x82188205, 0x140a23e6, 0x35451e46, 0x08fe5f09, 0x0a202382, 0x20054351, 0x8413841e, 0x09a34804, 0x6e008c24, 0x21451700, 0x44828408, 0x81820b3b,
0xf94eac82, 0x06424205, 0x1525aa82, 0x15230723, 0x05d95133, 0x73823220, 0x50141e22, 0x66830583, 0x84141421, 0x05894160, 0x460a2823, 0x0fb34250,
0x82e2ff21, 0x186e2071, 0x1808e55e, 0x4508f5b1, 0x7383099b, 0x20054946, 0x261d8235, 0x33173335, 0x82272335, 0x283c2185, 0x21057177, 0x63840a32,
0xde4d2820, 0x14142105, 0x84837c82, 0xeb848182, 0x323c0a23, 0x48008228, 0xe3830ac7, 0x084f8818, 0xff184882, 0x232008d6, 0x430ba141, 0x75820817,
0x5a20df84, 0x08da101a, 0x0a0a1422, 0x8305f45a, 0x0a462378, 0x6954460a, 0x0d0a4305, 0x2005bf4a, 0x29dd826e, 0x002f0003, 0x0045003f, 0x6c823700,
0xd8851720, 0xfd410584, 0x3335231c, 0x99830715, 0x0a6a4b19, 0xfb821282, 0x14143224, 0xf9410a3c, 0x823c2013, 0x84282097, 0x6e142199, 0x42067741,
0x0a200523, 0x03822e82, 0x8605fb7d, 0x0a142305, 0x62190014, 0x6e2008b7, 0x84080f6b, 0x889c83a3, 0x072325fe, 0x27353315, 0x0682b982, 0x22080547,
0x48321446, 0x322005c3, 0x1e224e85, 0x434b1e0a, 0x0000230a, 0xf7829600, 0x1b001722, 0xc24cf383, 0x46ca8205, 0x401809df, 0x142008b9, 0x50210082,
0x204a8314, 0x46d18246, 0x50200ad3, 0x4b0cb347, 0x4b180737, 0x42460aa1, 0x62c61905, 0x08f9510d, 0xaf832320, 0x15230724, 0xae476433, 0x20a88309,
0x00a0180a, 0x0a0a2308, 0x75190a50, 0x9e420901, 0x3c322205, 0x06c34428, 0x0a000528, 0xc800e2ff, 0x155e5000, 0x4337200b, 0x7b8208b6, 0x1f413320,
0x20838409, 0x827b8233, 0x8207201f, 0x33152517, 0x35331527, 0x2605a542, 0x14aa2335, 0x4a140a28, 0x4620056f, 0x26052e42, 0x3c146414, 0x821e2828,
0x0a1e24f9, 0x4d46460a, 0x6c4d0586, 0x461e2205, 0x220f820a, 0x481e3c14, 0x63190641, 0x47450967, 0x48ff8205, 0xa34c1343, 0x09304e15, 0x2105c141,
0xf0872335, 0x420a1e21, 0x4621051e, 0x08224d14, 0x0a207083, 0x4c0a5f48, 0xf6470ac4, 0x05944d05, 0x0000002e, 0xff0a0001, 0x008c00e2, 0x00310078,
0x0b536119, 0x4f0b0f5c, 0x984b0854, 0x0566430b, 0x3c5a0a20, 0x08f34905, 0x3b4d0a20, 0x49502008, 0x424d0ce4, 0x07a7450a, 0x7382be20, 0x3f003b24,
0x4b494300, 0x1f201917, 0x23352109, 0x20195d4d, 0x064d4d07, 0x8e4b6e20, 0x0ad74f11, 0x00820a20, 0x11413c20, 0x4b46200c, 0x644d0683, 0x4b1e200a,
0x0020057a, 0x2005e749, 0x199f8282, 0x41089f38, 0xa5420593, 0x058f5208, 0x50182320, 0x0a240863, 0x2814500a, 0x240a6f41, 0x46465050, 0x06cb4a00,
0x47828c20, 0x4a077f4e, 0x4f8e0899, 0x23153323, 0x22c78237, 0x8214140a, 0x472820a7, 0x642507a8, 0x50141450, 0x05ae4946, 0x83646421, 0x46462315,
0x5787003c, 0x5782a020, 0x27001f22, 0x82173d41, 0x246d82ab, 0x23353315, 0x05b64107, 0x4a5a1521, 0x0a240b85, 0x320a1e14, 0x954c6f82, 0x14502309,
0x5f82320a, 0xa11bca82, 0x6e20091f, 0xa742bb84, 0x35232717, 0x35231523, 0x79411e33, 0x1414210c, 0x0a245289, 0x50464646, 0x20076342, 0x204b8296,
0x19454735, 0x41094377, 0xe47b0524, 0x82352008, 0x4215200f, 0x044e0aeb, 0x82142009, 0x1e0a2100, 0x4e0b1747, 0x6849090a, 0x072b4105, 0x6b42aa20,
0x84c99506, 0x66c9187a, 0x10c14f08, 0x11821520, 0x07241d83, 0x5a331523, 0xa841eb88, 0x098a4409, 0x42320a21, 0x1e210a62, 0x071b4314, 0x440a1421,
0x28210691, 0xe3031914, 0x2293830a, 0x41390035, 0x23201711, 0x8d1ec746, 0x1a1e208d, 0x200aefa6, 0x829a831e, 0x0b184104, 0x4211d346, 0xfb430547,
0x42878906, 0xff4a1198, 0x05f6420a, 0x200a0858, 0x05194535, 0x89454620, 0x82142005, 0x28282184, 0xc347ed84, 0x0a0f420b, 0x210fc947, 0xac18461e,
0xb4240927, 0x2b007800, 0x4f06e772, 0x352014b1, 0x2113bf48, 0x8e840723, 0x2407bd48, 0x33152327, 0x09e7426e, 0x4a0c934b, 0x784d085a, 0x069b410c,
0x460a2823, 0x0578433c, 0x00141422, 0x83086343, 0x05396993, 0xfc499184, 0x145d4a10, 0xe5823220, 0x4a081950, 0x11450a63, 0x0a6a4a0a, 0xb7646b82,
0x82d22005, 0x003123ff, 0xc418003f, 0x614b0763, 0x14fd4d18, 0x15219f82, 0x15734b23, 0x35013b2a, 0x15230723, 0x2335023b, 0x550b6f4b, 0x1422057b,
0x08821e0a, 0x820d784b, 0x4b502010, 0xce451075, 0x4b1e2008, 0x35450e7e, 0x052f5a05, 0x3d20c383, 0x0799b618, 0x4312db46, 0x15200869, 0x43093941,
0xe84c106f, 0x21b58308, 0x71438233, 0x530a200e, 0xb6830616, 0x1e142822, 0x0a210e82, 0x0f75435a, 0xcb4c3c20, 0x0a0a260d, 0x2814283c, 0x06936b14,
0x7800fa28, 0x53004500, 0x79435700, 0x10894417, 0x42058943, 0x0771147e, 0x08174605, 0x2723cb82, 0x52331523, 0x1429091a, 0xaa0a0a0a, 0x0aaa0a14,
0x0d204e14, 0xb3821e20, 0xa743bb84, 0x822f820f, 0x10264e02, 0x9b423220, 0x0008260b, 0x01e2ff0a, 0x18c78422, 0x200b61be, 0x41d18861, 0x2670137a,
0x0eb44208, 0xab4f2b84, 0x4f332011, 0x384218a7, 0x148d560d, 0x0a0a4622, 0xae4f0282, 0x0c41420e, 0x4f159756, 0x04260db4, 0x00000a00, 0x01827800,
0x09cf4918, 0x200ae94e, 0x0d9e5633, 0x0e021519, 0x20072549, 0x22c78237, 0x471e1464, 0x32200553, 0x434abb82, 0x0a1e2205, 0x06ae4f28, 0x180a5021,
0x51085753, 0x0a2307f7, 0x8228140a, 0x281422a0, 0x06c3470a, 0x83869620, 0x0e83421a, 0x48053541, 0x3520069c, 0x08fc4d19, 0x15331525, 0x82013d33,
0x8278201c, 0x5179856e, 0xa6530bf6, 0x20898405, 0x09234b50, 0xa3182820, 0xf3830b47, 0x20082757, 0x51f38437, 0xeb9c0c5b, 0x910cda52, 0x06db52e7,
0x0320e38a, 0x081b7619, 0x4f004924, 0x51485300, 0x8274820a, 0x080154d6, 0x1821e64c, 0x230870d0, 0x35333523, 0xe54e3782, 0x23372305, 0xe94e3315,
0x0a1e2105, 0x211ce74e, 0x96821e0a, 0xce435020, 0x830a8206, 0x8206830f, 0x19378403, 0x8209feaa, 0x22148228, 0x82000a28, 0x19042000, 0x4508bf6e,
0x0020073d, 0x5a053341, 0x46180ca6, 0x9682083e, 0x43054e4a, 0x51410bd1, 0x201b830f, 0x223f8315, 0x82373533, 0x5a8220bd, 0xdc5a08c4, 0xbd60180d,
0x0a142808, 0x3c0a1414, 0x5a500a0a, 0xe45a08cc, 0x650f1a0e, 0x05e85408, 0xb9825020, 0x5e000221, 0x5020051f, 0x09e15a19, 0x0d453520, 0x06884708,
0x35210f82, 0x18818323, 0x20096374, 0x22698264, 0x42141432, 0x578206cb, 0x0a465024, 0x80181428, 0xfa2208e3, 0x43467800, 0x00572308, 0x6a453700,
0x0cde5605, 0x4a21315b, 0x04420ba8, 0x0af95605, 0xdc208e83, 0x411af356, 0xa1820714, 0x2405fa56, 0x500a0abe, 0x194a5b0a, 0x1b410a20, 0x28462507,
0x64141428, 0x200ad341, 0x7acb8278, 0x3d200567, 0x8a42c985, 0x09be590a, 0x41091a4d, 0x15200fc5, 0x4405a75a, 0x0a200803, 0x440a234d, 0xa64c1307,
0x0a1b5507, 0x230d0b44, 0x6e00e2ff, 0x42069755, 0x14620d63, 0x0a574205, 0x41093048, 0x8383053f, 0x5e5a5a20, 0x05384b0d, 0x820a1e21, 0x0e665a07,
0x11415020, 0x0aeb6307, 0x7782be20, 0x41070b5d, 0xa64d14d5, 0x08cc4e08, 0x8212c541, 0x82272024, 0x208d8303, 0x07c241a0, 0x410a274d, 0x0a250814,
0x0a0a3c0a, 0x0bb74182, 0x880a284d, 0x05ae419d, 0x2005c742, 0x639f825a, 0x33210529, 0x08224a15, 0x8207cf42, 0x08e34c11, 0xb8182820, 0x142108b5,
0x21648250, 0x52184650, 0x5021096a, 0x05f77c6e, 0x1807f745, 0x7408ef92, 0xcf8305fc, 0x41096e54, 0x17200557, 0x6423cd86, 0x8414640a, 0x204d8297,
0x05eb661e, 0x0a500a26, 0x3c465046, 0x21085e42, 0x5b423c0a, 0x46002008, 0xfb610557, 0x19292005, 0x430be584, 0xaf850528, 0x45152721, 0x372305d3,
0x82352335, 0x013d2166, 0x32200482, 0x23069644, 0x46140a14, 0x14200a82, 0x2007034e, 0x05914432, 0x205b0a20, 0x220c8205, 0x433c283c, 0x78200ae3,
0x08a19118, 0xee781520, 0x09607b08, 0x37205d82, 0x50205b82, 0x1542b783, 0x5b46200c, 0x0a200571, 0x14210082, 0x214e821e, 0xab450200, 0x05195808,
0x5a0ef142, 0x435b0824, 0x0529410c, 0x6f842320, 0x430f8b45, 0x78830512, 0x1e0a1422, 0x354ccc82, 0x5bd98205, 0x8e480a57, 0x41282005, 0xa020099b,
0x21088b42, 0x59443700, 0x156f5308, 0x0cda5718, 0x200ade44, 0x06b74107, 0xdf497820, 0x18f98209, 0x2908c1ca, 0x1e0a0a28, 0x0a0a460a, 0xa0820a64,
0x8312484d, 0x820a202b, 0x18282023, 0x830c43a9, 0x052f4497, 0x4a082143, 0x81411c68, 0x2091870c, 0x0f4b4d8c, 0x85071443, 0x5450208e, 0x8b861020,
0x89321421, 0xe2ff238b, 0x01827800, 0x41053b59, 0x574a0623, 0x13474d09, 0x220ed742, 0x4533011d, 0x642005f7, 0x22111655, 0x82280a0a, 0x05f551f9,
0x4d0a5021, 0xee420f53, 0x28322308, 0x13540a28, 0x4daa2006, 0x4120085b, 0x420af558, 0xe746083b, 0x08af5605, 0x8207d141, 0x115d4d07, 0x15233724,
0x574d8c33, 0x05084f0b, 0xb2191e20, 0xb1570913, 0x46462105, 0xe7581882, 0x4a142008, 0x142105d7, 0x08c84a0a, 0x63666420, 0x82b42007, 0x07bf559b,
0x840a164c, 0x4415208d, 0x1d2110c1, 0x06374201, 0xbe579620, 0x08594808, 0x79821420, 0x2009c557, 0x22738846, 0x580a643c, 0x782208c7, 0xd0182f00,
0x00210cc3, 0x12c75a37, 0x20087e4e, 0x09185435, 0x9b853320, 0x11411520, 0x5837200d, 0x634d06d7, 0x8235200a, 0x5f8c20a0, 0x624a0638, 0x25fc8306,
0x1e0a0a28, 0x834e320a, 0x83282008, 0x05654d9d, 0x500a0a22, 0x1e201a83, 0xba872c8a, 0x2b06924e, 0x140a141e, 0x14281e0a, 0x000a5014, 0x03210082,
0x23068300, 0x007800c8, 0x0705c418, 0x4d098343, 0x35442558, 0x07f9420e, 0x5a0aa021, 0x614d1026, 0x24178405, 0x0a6e0a1e, 0x22d9820a, 0x5a281446,
0x1082102e, 0x2a822820, 0xa883e883, 0x23086745, 0xf000e2ff, 0x4122a782, 0x714d4f00, 0x105a4a0f, 0x4d0d8e61, 0x37202a6d, 0x4a08714d, 0x6f4d055d,
0x0ab4221f, 0x09e4440a, 0x704d4620, 0x21ca821f, 0xdf630009, 0x18782005, 0x250c0bc7, 0x005f005b, 0x3f420063, 0x0cab4b14, 0x420f075d, 0x15231353,
0x4f333533, 0x3b2305a1, 0x56233501, 0xd883076c, 0xdc820720, 0x0a0adc22, 0x8414f563, 0x0a2826ba, 0xaa0a1e0a, 0x21c7821e, 0x5f420a14, 0x820a2005,
0x200282e0, 0x0b574250, 0x440f0164, 0x28210824, 0x2400831e, 0x1414143c, 0x203d8228, 0x06234f00, 0x50009622, 0x2106eb5b, 0xaf821700, 0x630e694d,
0xcc590da4, 0x565c1807, 0x15332408, 0x49351533, 0x64210679, 0x0cb46314, 0x183c1421, 0x21087949, 0xbe821e14, 0x28200d82, 0x56056b49, 0x3c2009a1,
0x2406ab55, 0x0a1e1e3c, 0x069f5614, 0x19208f83, 0x23197d58, 0x0a502335, 0x21097b58, 0x554d3214, 0x6e462209, 0x23d3841e, 0x82000000, 0x08cb4c18,
0x6505536c, 0xd2820c80, 0x375f2320, 0x20b38207, 0x20838232, 0x5b478246, 0xa28a0574, 0x94842820, 0x2008734c, 0x265382b4, 0x00430033, 0x824d0049,
0x2a0b5a9d, 0x1a064d44, 0x2009c11c, 0x25118215, 0x35152335, 0x1d5d1533, 0x6e232105, 0x2513145a, 0x1e0a0a64, 0x185a5a0a, 0x42782009, 0x195a07ca,
0x20108210, 0x08e06614, 0x140a1424, 0xb1191414, 0x502409d3, 0x23001d00, 0x2107b964, 0xb6852333, 0x20150559, 0x228e8207, 0x4d273533, 0x1720060d,
0x11839b82, 0x04599620, 0x7814240d, 0x821e1428, 0x05177763, 0xb8820a20, 0x84320a21, 0x461e2205, 0x61878250, 0x1e2005da, 0x73548382, 0x00782408,
0x6d270064, 0xb24806dd, 0x0b4a420a, 0x2b193520, 0x75820ce6, 0x4405a745, 0x15210517, 0x05605f50, 0x66466683, 0x07fd4206, 0x0a141423, 0x0569455a,
0x140a0a23, 0x2eb11832, 0x230a8408, 0x14502832, 0x08278382, 0xe2ff0a00, 0x5a00f000, 0x3520050f, 0x200a0f46, 0x140d4100, 0x82093d6d, 0x33352193,
0x82061341, 0x06164115, 0x85173321, 0x2007830b, 0x20138223, 0x0a2b4d33, 0x0a28f024, 0xa2829614, 0x2005ec7e, 0x2609821e, 0x1482d214, 0x820a0a78,
0x3c0a2217, 0x82a9820a, 0x64068304, 0x20820625, 0x8208414e, 0x4632220b, 0x66c28350, 0x2827050b, 0x32281414, 0x6428140a, 0xd3600622, 0x82962006,
0x5d1d20c7, 0x2f220671, 0xf34e0000, 0x13d45a09, 0x2011d15a, 0x0ccf5a6e, 0x5a501421, 0xcb5a0acd, 0x0a50210d, 0xca5a2982, 0x06cf6707, 0x53438c20,
0x821f2006, 0x6f43187f, 0x0e195c09, 0x17233528, 0x35331523, 0x90822733, 0x140a6423, 0x05656732, 0x46281429, 0x32321414, 0x4b0a141e, 0x198205b6,
0x461e0a26, 0x463c0a50, 0x1e211182, 0x05135500, 0x5f82b420, 0x25001f26, 0x39003100, 0x1805e373, 0x89085359, 0x5b5982dc, 0xdf8609b3, 0x210d9b41,
0x7f823523, 0x67012b21, 0x8c210575, 0x06336c0a, 0x1e0a3c22, 0x1424e082, 0x5a142828, 0x2005814c, 0x284f1814, 0x483c2008, 0x088508ad, 0x97823220,
0x1e140a22, 0x22058541, 0x5a140a32, 0xff230927, 0x825a00e2, 0x06a964a3, 0xf9823520, 0x84233521, 0x503c261f, 0x1e6e4646, 0x06af4b00, 0x2382a020,
0x2f002b22, 0x0c0fd318, 0x3521a384, 0x37461833, 0x08874309, 0x21059944, 0xb582013b, 0x21058764, 0x71820a28, 0x05820a20, 0xa2850a20, 0x146e0a24,
0x0b865014, 0x8505da67, 0x0a3c23a7, 0x6343003c, 0x0050240a, 0x6715000d, 0x35210ddd, 0x07d34c23, 0x820a3221, 0x141429d1, 0x140a0a32, 0x320a1414,
0x1420ad83, 0x8209fb59, 0x20b383d7, 0x4cb1912d, 0x631907be, 0xb3850ead, 0xaf843320, 0x823c1421, 0x14142252, 0x05cd5146, 0x57825582, 0x2824ad85,
0x5046461e, 0x28201682, 0x3c21af84, 0x0b6f460a, 0x23001f28, 0x00002900, 0x56192317, 0x33201267, 0x2405bc54, 0x23152315, 0x062f6437, 0x45333521,
0x48460606, 0x20518205, 0x25c98246, 0x0a323c3c, 0x6c825a14, 0x61833220, 0x6c823220, 0x280a0a25, 0x5014463c, 0xd7830a53, 0x4c002321, 0x46190725,
0x97470921, 0x1533210c, 0xad4c6682, 0x0ae05509, 0x2407bd69, 0x0a32148c, 0x55c68450, 0xc64c059a, 0x831e2008, 0x0a0a2383, 0x9f825046, 0x840a1421,
0x51282087, 0x28860509, 0x6a321421, 0xd226089b, 0x47005000, 0xf5824b00, 0x21093950, 0x0c5f2315, 0x51ab8417, 0x77470801, 0x23372414, 0x6faa3315,
0x796e051a, 0x280a2108, 0x1e24aa82, 0x82140a0a, 0x84097c47, 0x1e28219b, 0x200ee960, 0x0a9a410a, 0x2005305d, 0x096b6732, 0xab827820, 0x20066d76,
0x18104837, 0x210f7b66, 0x166c1446, 0x6c0a2008, 0x00291114, 0x00020000, 0x00e2ff00, 0x225b8296, 0x7633002f, 0xea840903, 0x1905d050, 0x4308fb4d,
0x25530a29, 0x89898308, 0x05ec6ad5, 0x0a280a23, 0x23758228, 0x145a1464, 0x3c201a82, 0x0a20c882, 0x14240482, 0x323c1e0a, 0x2307484e, 0x0028320a,
0x20077b42, 0x59d7848c, 0x615a05e5, 0x15332413, 0x63233523, 0x27200d23, 0x200e1f63, 0x645f8214, 0x6e8307b7, 0x2305f441, 0x1e6e460a, 0x21061f63,
0x6e821414, 0x2006776b, 0xdf4219dc, 0x069b5309, 0x1a09c756, 0x230c0ecd, 0x3315012b, 0xe94c7783, 0x0aa02109, 0x28216582, 0x206e8314, 0x20728246,
0x0550663c, 0xe5820a20, 0x283c1423, 0x06e34c14, 0x5f82f020, 0xe4182720, 0x495a0c0f, 0x0a364c18, 0x84253f5a, 0x0ab3658e, 0x90847820, 0x5a0eb765,
0x9e82083e, 0x840bd44c, 0x123c5aa7, 0x0a8fb718, 0xe352bb83, 0x07bf4f05, 0x20081b41, 0x12e36623, 0x7906fa45, 0xf94c05c2, 0x33172806, 0x23072335,
0x4caa3315, 0x775915ca, 0x0aaa2307, 0xf566460a, 0x050d6711, 0xbd191420, 0x052d0a27, 0xe2ff0a00, 0x50002201, 0x3b001f00, 0x056d5900, 0x08a96018,
0x68142e42, 0xcb430d37, 0x22298206, 0x82352315, 0x5b3520af, 0x27200da3, 0x20066559, 0x0d1e5ab4, 0x141e2823, 0x062a4e64, 0x220c4368, 0x68dc0a0a,
0xb3831643, 0x4206cb4c, 0x28230873, 0x4c000014, 0x402005bb, 0xed18bf82, 0x57220d95, 0x2d5a5b00, 0x0f044206, 0x87077f44, 0x1aa770b9, 0x230eb34c,
0x23353307, 0x4209ce69, 0x215a081b, 0x05b14917, 0x0a0a5a23, 0x0bd3693c, 0x7005b84a, 0x1e2616b7, 0x14141e1e, 0x0082143c, 0x84180a20, 0xbe20081f,
0x2b59db82, 0x00312207, 0x0bdf5035, 0x6317874d, 0x2b2306d1, 0x87331502, 0x28be21af, 0x210e5471, 0x99821e96, 0x8d588c82, 0x0ac04409, 0x0b820a20,
0x1e258b82, 0x1414281e, 0x06e3470a, 0x29258783, 0x00002d00, 0x14105a33, 0xe74a3520, 0x7c0d820d, 0x82210573, 0x0aba4c32, 0x0a0a1e27, 0x140a8c14,
0x6ce18478, 0x32200912, 0x0a209b82, 0x1e200083, 0x83069f4d, 0x0611496b, 0xf0493720, 0x465d8405, 0xc6500e44, 0x15232105, 0x41078f49, 0xab47070e,
0x89ce1806, 0x05b34707, 0x73845a20, 0xf84c3220, 0x20888306, 0x20fd826e, 0x20f4840a, 0x066c480a, 0x4d141e21, 0x1982090a, 0x3c209284, 0x1e202182,
0x26051f6d, 0xff0a0003, 0x50d200e2, 0x64650b97, 0x8415200c, 0x6f352090, 0x02490e6a, 0x058f5209, 0x20122354, 0x256982b4, 0x140a6e14, 0x9f66145a,
0x140a2605, 0x0a14143c, 0x200c8328, 0x06565128, 0x5021a182, 0x055d4e0a, 0x1e830a20, 0x28251782, 0x46504614, 0x843a833c, 0x140a23a8, 0x9750281e,
0x00d22a0b, 0x004b0064, 0x0061005b, 0x2cbb4d65, 0x55095b5d, 0xd0180863, 0xe7670dc9, 0x33172215, 0x15d34d35, 0xc8824620, 0x2006b161, 0x4d078214,
0x755326df, 0x840a2005, 0x19eb4d3b, 0x4807f366, 0x8e4107ed, 0x0bd8430c, 0x15331525, 0x82333533, 0x012b21d0, 0x6614f14d, 0x8c2012f7, 0x210af44d,
0xb74c4646, 0x0a142509, 0x460a461e, 0x420ff74d, 0xf74d051b, 0x003b2207, 0x05e37400, 0x95427782, 0x0b5e410e, 0xf94da183, 0x8237200f, 0x525a209f,
0x3220056b, 0x4105d741, 0x068206e2, 0x140a1e27, 0x0a320a14, 0x052a4b5a, 0x8208ff4d, 0x1414228b, 0x23058232, 0x14501e28, 0x00200082, 0x2907034e,
0x50002201, 0x2f002900, 0x21713b00, 0x00532506, 0x25000057, 0x4e152541, 0x2b410e05, 0x0d6d4c0a, 0x23353323, 0x08094e15, 0x15012b24, 0x9046023b,
0x04012205, 0x100b4e14, 0x140a4623, 0x120d4ee6, 0x820a5021, 0x6e0a21c5, 0x86094f68, 0x411682e9, 0x0a20055a, 0x480e104e, 0xa0200b5f, 0x2f21d382,
0x053b7d00, 0x6e438b82, 0x1163690f, 0x21099944, 0x234d2327, 0x0a822405, 0x430a140a, 0x0785055d, 0x423c0a21, 0xe5550568, 0x779c8205, 0x1482110f,
0x174d3220, 0x00032706, 0x0000000a, 0x076c0064, 0x54868408, 0x96820d73, 0xd2496c82, 0x8227200a, 0xe5271924, 0x843c2008, 0x08275a7d, 0x0a210883,
0x05c94346, 0x8305e468, 0x3214219f, 0x2f72f682, 0xf17f1809, 0x5323200a, 0x88180873, 0x564208f3, 0x82072006, 0x146e2171, 0x6659cc83, 0x820a2005,
0x0a3223d9, 0x85465a5a, 0x84ec8205, 0x3c0a2166, 0x2a195982, 0xdf4d0b6b, 0x214c8405, 0xd9742315, 0x0a502405, 0x47464646, 0x5e20075f, 0x5323ed82,
0x54005700, 0x67260513, 0x6f006b00, 0xc7187300, 0xd14b0905, 0x1f514706, 0x180aff44, 0x20095669, 0xe65d1833, 0x3523210c, 0x7747c183, 0x54e6201a,
0x5a20172a, 0x200f6644, 0x093354f0, 0x200b8347, 0x17347846, 0x08095018, 0x20097344, 0x0744781e, 0x49059047, 0x402c052b, 0x1f006400, 0x61005300,
0x69006500, 0x5d0a8d47, 0x824209a5, 0x59332006, 0x4945097d, 0x0ad64f08, 0x83081a44, 0x0e614527, 0x2010f365, 0x49118237, 0x32200f43, 0x45077a63,
0xaa201061, 0x49088657, 0xdc18154f, 0x65450870, 0x08bd580f, 0x174d2820, 0x0e012108, 0x9f19ef82, 0x5b630825, 0x1eb34a0d, 0x4a214946, 0xcb4a061d,
0x05944316, 0x1e280a24, 0x39460a0a, 0x82962005, 0x1ad74af1, 0x2820cd8f, 0x4c058e68, 0xc7840537, 0x4d003f25, 0x18005500, 0x1807bfe3, 0x4208c5c9,
0x195909bf, 0x500b880b, 0xa74106b8, 0x122b591f, 0x35333727, 0x140a9623, 0x0a524c1e, 0x7310a742, 0x0a200840, 0x5c0a3359, 0x254a05a8, 0x081c4505,
0x0a28d218, 0x0a0a1423, 0x06ac4114, 0x4c083c59, 0xfa220a67, 0xdf566400, 0x14834d07, 0x4d209941, 0x8220119b, 0x4d0f5f43, 0x7f4111a7, 0x783c200f,
0xff2805af, 0x00b400e2, 0x00290050, 0x2006f94c, 0x083f5f17, 0x6e133243, 0x954e091d, 0x4537200f, 0x0a2306bd, 0x71146e14, 0x1e260bbd, 0x82140a0a,
0xf3423c0a, 0x145a2306, 0x8a7e7814, 0x5a322008, 0x46220599, 0x24820a32, 0x50280a21, 0x1e2006a0, 0x20082b67, 0x0a4b46aa, 0x42082072, 0xb85205e3,
0x088e4f0b, 0x088f5a18, 0x73153321, 0x322306e1, 0x82140a14, 0x06bf5272, 0x6e206582, 0x2505aa42, 0x5a141446, 0x77820a0a, 0x994f1f82, 0x820a200c,
0x140a22bb, 0x4a828214, 0xe62006eb, 0x47208382, 0x8806bf78, 0x06145083, 0x201eed5a, 0x0b2c4123, 0x27209b8a, 0x17201882, 0x32200382, 0x82207c82,
0x20172d51, 0x50a88596, 0xa8840542, 0x30510a20, 0x08c37119, 0x1b580020, 0x41d22008, 0x6d700bd3, 0x0c655707, 0x2105b34b, 0x72763523, 0x23152408,
0x6c272315, 0x6d520c88, 0x52b42007, 0x1426106d, 0x64140a46, 0x3e410a0a, 0x323c2505, 0x46460a0a, 0x230f7052, 0x0a460a46, 0x2108996b, 0x4f411432,
0x82c82006, 0x00252497, 0x192f0029, 0x4209f170, 0x77180767, 0x51550985, 0x05556a09, 0x2005c155, 0x063276aa, 0x1e0a2822, 0x8205a573, 0x148c2383,
0x7e823c14, 0x5305014a, 0x7b820a79, 0x26077753, 0xff0a0002, 0x82aa00e2, 0x002d2277, 0x09c76331, 0x20091575, 0x17d95223, 0x27208682, 0x2006a741,
0x0a535446, 0x9a415a20, 0x08974108, 0x41095654, 0xdf51068a, 0x82a02008, 0x001d2177, 0x071af183, 0xff4c0751, 0x089e7806, 0x46422320, 0x05094405,
0x33153322, 0x0a2a7182, 0x32145a14, 0x1e140a0a, 0x05821e14, 0xef836e20, 0x566e1421, 0x142305a8, 0x4346320a, 0x0a230730, 0x4d3c500a, 0xdf830793,
0x42070d7e, 0xe2550ba7, 0x206b821a, 0x07b54315, 0x0a143223, 0x0be75514, 0x5a23e285, 0x436e1414, 0x6b820626, 0x0a3c4622, 0x43059f48, 0x3c220624,
0xe682143c, 0x66081362, 0x3f440647, 0x49df1808, 0x84e1860a, 0x143c24d9, 0x8428143c, 0x635020d7, 0x50200733, 0x1e20d188, 0x2905574f, 0xe600e2ff,
0x25005000, 0x40183100, 0x002008d1, 0x57163173, 0x15200c7f, 0x08db351a, 0x7d821520, 0x35331722, 0x5706c146, 0xc8200b81, 0x8357e782, 0x0a462c0c,
0x0a0a8c14, 0x0a140a28, 0x5f5a1428, 0x754305b6, 0x0b564c05, 0xfc4a0a20, 0x83228205, 0x140a2227, 0x0987571e, 0x0a000422, 0xbe20af82, 0x1b22af82,
0xe9411f00, 0x41ab8d05, 0x0982098e, 0x5808a250, 0xa0200591, 0x93588d83, 0x20888206, 0x08945882, 0x64207c85, 0x1e216d82, 0x06cc4246, 0x001e1422,
0x20056f4a, 0x0f72185a, 0x41372007, 0xf17e0563, 0x28142905, 0x141e5014, 0x46465014, 0x2205ef74, 0x19baff01, 0x260dff07, 0x5a323246, 0x8700000a,
0x00642d17, 0x27000005, 0x15333533, 0x0a284623, 0x14201a82, 0x1e211b95, 0x201b8f14, 0x85378609, 0x0a14223b, 0x213d830a, 0x3f840a0a, 0x6e00ce29,
0x8200d8ff, 0x82000300, 0x2315255b, 0x820a0a32, 0x02221782, 0x1782b0ff, 0x1782ec20, 0x0b000722, 0x15201982, 0x35247482, 0x013b3523, 0x14202182,
0x25827c82, 0x0a204582, 0x00219d82, 0x202b8500, 0x202b84f6, 0x822b8211, 0x7e4e1827, 0x21098309, 0x38580a28, 0x6e0a2105, 0x0a203384, 0x0897c619,
0x6400ce23, 0x836383ff, 0x05174261, 0x23152322, 0x08f96018, 0x08d34418, 0x00c4ff23, 0x22278250, 0x86070064, 0x252582c7, 0x141e0a3c, 0x4f825a14,
0x01000023, 0xc1c340ff, 0x2c2d6f41, 0xff5000d8, 0x006e00f6, 0x000f0007, 0x3e7e1800, 0x41272007, 0xdf560674, 0xaf461808, 0x00002308, 0x5b420200,
0x006e2406, 0x8211000b, 0x05e35133, 0x82352321, 0x15312101, 0x35240c82, 0x1414283c, 0x49183983, 0x142008d4, 0x2dc45741, 0xffceff01, 0xffecffe2,
0x000500f6, 0xe8830700, 0x1e322322, 0x0319e782, 0x1b83098f, 0x1b840b20, 0x82353321, 0x2315271f, 0x14462335, 0x6018140a, 0x002208f1, 0x41820100,
0xf6ffe222, 0x09a7cb19, 0x82141e21, 0x87178320, 0x8307205b, 0x203d853f, 0x823a8232, 0x430a201e, 0x7b8605b7, 0x095b1f84, 0x050a4605, 0x002f8182,
0x14000200, 0x32000000, 0x0b005a00, 0x18000f00, 0x6d088f4d, 0x63180607, 0x2a8207ff, 0x14143226, 0x3c0a0a1e, 0x4f442d83, 0x82462005, 0x001b2233,
0x09ad6b1f, 0x2005a246, 0xc1461823, 0x21c88608, 0x4e184615, 0x0a200c2e, 0x14204682, 0x031a0082, 0x1e21087c, 0x2980821e, 0x00000c00, 0x4600f6ff,
0x9d186400, 0x65650e3f, 0x002f2305, 0x7d180033, 0x1525072f, 0x1533013d, 0x20a08227, 0x20038207, 0x18d08217, 0x180855c0, 0x87071e83, 0x201b8207,
0x21b9823c, 0x72823214, 0x1e0a3c22, 0x5d600582, 0x4c138205, 0x1420067e, 0x8206a47f, 0x059d6c07, 0x1e230882, 0x450a280a, 0x921805d9, 0x3c200923,
0x08837418, 0x4f05a57d, 0x352005b7, 0x49050348, 0x3520060c, 0x0703d418, 0x77823320, 0x23011d23, 0x209b8335, 0x21e68228, 0x65830a28, 0xe4567482,
0x140a2205, 0x82608228, 0x8311836e, 0x0a322119, 0x03246882, 0xecff1400, 0x20088741, 0xddc01813, 0x1815200b, 0x82085dd4, 0x13dc1829, 0x32142408,
0x84461432, 0x900020bf, 0x1837203b, 0x22086953, 0x86073315, 0x833b868d, 0x4132203f, 0x7b830514, 0x00040027, 0x0014000a, 0x18018246, 0x180a5394,
0x820d2480, 0x021d23d7, 0x54823523, 0x821e3321, 0x50368370, 0x43680588, 0x820a2006, 0x401119e3, 0x00022208, 0xd3df181e, 0x2335220f, 0x20838217,
0x0512441e, 0x00253384, 0x00010000, 0x2005821e, 0x13e01832, 0x285a8409, 0x00050000, 0x00f6ff0a, 0x6bde183c, 0x3700210c, 0x2006ed41, 0x4bc61823,
0x28232109, 0x03827283, 0x20059a42, 0x82988328, 0x06e34e04, 0x5b821420, 0x43824620, 0x00190b20, 0xd3830993, 0xe3180382, 0x46200c0f, 0x0a0fe318,
0x28465022, 0x0a214a82, 0x18068546, 0x21080fe3, 0xe318005a, 0x5a28120f, 0x0a0a3c5a, 0x00070000, 0xa9180482, 0xbc180ee7, 0x781a0ad3, 0xb58208d6,
0x7a821720, 0x0879c418, 0x2d413220, 0x083e4105, 0x820a1421, 0x621e2088, 0x85820789, 0x42082758, 0x93180f77, 0x5b8308d1, 0x0d411720, 0x17e31806,
0x14142117, 0x28225682, 0x02831e1e, 0x520a0a21, 0xbb4306e7, 0x17e31809, 0x0a1e2920, 0x0a141414, 0x320a2828, 0x08c79818, 0x00228f8b, 0xc0453537,
0x83072005, 0x200a8287, 0x27078231, 0x1e28320a, 0x0a281e0a, 0x32206f82, 0xe282e582, 0xcf851e20, 0x3f837785, 0x18001121, 0x4708e94c, 0x3320056e,
0x23233782, 0x82233715, 0x32332106, 0x0a203182, 0x1e203182, 0x2006a043, 0x24498332, 0x0a462828, 0x20838c14, 0x1fe31805, 0x0a462625, 0x1e1e3c0a,
0x203b8d14, 0x447f820f, 0xe61805b7, 0x15210c05, 0xc9931833, 0x83d78208, 0x0a3c2193, 0x8d868983, 0x1e20cd82, 0xe34a0a84, 0x460a2105, 0x7377a183,
0x5bd78908, 0x7b1a0cd7, 0x322009f7, 0x3f832e83, 0x20055141, 0x82d7850a, 0x840a200c, 0x050b4343, 0xe2184620, 0x152009e3, 0xb8828082, 0x46141424,
0xbe831e14, 0x57431982, 0x00462105, 0xbd18fb85, 0x15200865, 0x83085d43, 0x1e14244d, 0x8214460a, 0x060021b8, 0x20089b42, 0x0a514503, 0x86370021,
0x820720db, 0xa4e5185f, 0x82332007, 0xc39018a6, 0x28e48408, 0x140a0a50, 0x50143c14, 0x237c8214, 0x04000a14, 0x0025a382, 0x5a004600, 0x39d61800,
0x62e78309, 0x9b43053a, 0x24508206, 0x1533023d, 0x2a85823c, 0x280a0a1e, 0x323c3c0a, 0x820a141e, 0x8214208b, 0x0a4621c4, 0x094f8518, 0x43073343,
0x15200b9b, 0x80418282, 0x83152009, 0x433c2099, 0x0a200524, 0x0a248a82, 0x1e1e4646, 0xb8490282, 0x4a0a2005, 0x3c2006cf, 0x0f238f82, 0x6c001300,
0xdb8609a9, 0x4d821720, 0x1e1e1425, 0x8328281e, 0x1e502130, 0x5a214882, 0x1a0e820a, 0x440a8f5d, 0xbf86125f, 0x89821720, 0x23153524, 0x31820a35,
0x2005a043, 0x23bc8546, 0x14321446, 0x08efd318, 0xaa567b89, 0x08647905, 0x33223982, 0x7d821428, 0x4620ab84, 0x5a25f582, 0x32320a0a, 0x20f4833c,
0x05a37d00, 0x0b203b83, 0x3d46b583, 0x25778205, 0x32323c15, 0x6d821e28, 0xaa825a20, 0x8a001e21, 0x84092027, 0x2c548327, 0x32152315, 0x28320a1e,
0x5a280a32, 0x2023820a, 0x08df4104, 0x08fb5418, 0x84353721, 0x44058451, 0x3224077b, 0x0a28140a, 0x0a265582, 0x280a140a, 0xcb83460a, 0x8d057757,
0x05c9418b, 0x32206784, 0x32232e84, 0x82285a28, 0x488b8302, 0x2119091f, 0x8d840a5b, 0xe2825784, 0x377e0a20, 0x05574108, 0xb5820b20, 0x83060f44,
0x23518591, 0x0a0a505a, 0xb78b7a82, 0x18057146, 0x1808d5e1, 0x8307a1d0, 0x822320bb, 0x8314208b, 0x840a2030, 0x828b8300, 0x05a6473d, 0xbf89c084,
0x6d820520, 0x3c21b984, 0x212b8232, 0xb618505a, 0x5a2209af, 0x1f420b00, 0x46ac1805, 0x82372009, 0x82352097, 0xc16c180e, 0x0a0a2408, 0x825a3232,
0x28142357, 0xdb48325a, 0x05a34109, 0x921b1320, 0x152108ff, 0x21018233, 0x26413331, 0x08b74505, 0x14280a24, 0x96825a3c, 0x27614082, 0x091f4506,
0x1808a945, 0x24075fa0, 0x1e1e0a3c, 0x23038228, 0x0a464650, 0x42058841, 0x09220ac7, 0xe9410d00, 0x8237200b, 0x1e3223cf, 0x3082280a, 0x2a05ef41,
0x001e1e1e, 0x00040000, 0x47ecff0a, 0xb018081b, 0x61830855, 0x82053b41, 0x271521d8, 0x3c20a482, 0x20054c5a, 0x82368214, 0x4646216e, 0x21069f4e,
0x3b430a5a, 0x23352111, 0xb44b6b82, 0x22e58406, 0x58283523, 0xe682056b, 0x5a208282, 0x5019b282, 0x0520076b, 0x45087342, 0xde180743, 0x418308bd,
0x1d214585, 0xb9e91801, 0x83998309, 0x0a2821cb, 0x083d8b18, 0xb947d282, 0xfda51905, 0x460a2308, 0x40190a0a, 0xfb42080e, 0x1807200a, 0x29099d4d,
0x0a14320a, 0x500a5a14, 0x67410050, 0x05d7440a, 0x8205d144, 0x820720f8, 0x820a20c7, 0x0a0a22f7, 0x2128821e, 0xe7185050, 0x93420863, 0x00072105,
0x20052b44, 0x86a58235, 0x2106822d, 0x0f823315, 0x10423584, 0x46462206, 0x82398246, 0x760a209b, 0x2b44089b, 0x23ec1b12, 0x2277820c, 0x85320a32,
0x1e0a22e0, 0x2000823c, 0x1800841e, 0x2009dbea, 0xef58185a, 0x0a374a08, 0x23053141, 0x35233523, 0x3d21b982, 0x18968902, 0x7908cc7d, 0x9d820af7,
0x0abfb518, 0x43321421, 0x1e200508, 0x083f4518, 0x530d9747, 0x1521051a, 0x82eb8727, 0x84282007, 0x2305824c, 0x28280a14, 0x05830682, 0x0021b382,
0x09d34100, 0x1113b218, 0x33219c83, 0x91de1807, 0x323c250a, 0x280a280a, 0x2208494a, 0x8232141e, 0x8a54184e, 0x08cf4208, 0x48004621, 0x3520075b,
0x49051b59, 0x3c220777, 0x00831e28, 0x3c0a2825, 0x82140a3c, 0x320a2201, 0x0d734314, 0x82070743, 0x153324b1, 0x82371523, 0x283224c9, 0x831e1e0a,
0x145a23b1, 0x0082320a, 0x470a9741, 0x0b20052f, 0x2409d941, 0x1533013d, 0x20388207, 0x0bc44537, 0x3a833c84, 0x830a0a21, 0x824a82b9, 0x107b4342,
0x210ccf46, 0x044c1e32, 0x0a322305, 0x39825a14, 0xdb872f8b, 0x08c07418, 0x21063746, 0x32820a0a, 0xd283dc82, 0x25621e20, 0x4d638a05, 0xd052055b,
0x33352105, 0x02823b82, 0x1e3c2323, 0x2400820a, 0x0a321e1e, 0x83e38528, 0x00032867, 0x00e2ff0a, 0x4846003c, 0x998308e1, 0x08b26f18, 0x09821720,
0xd1823220, 0x05823a82, 0x5a0a3223, 0x829f8214, 0x216b8a0c, 0x5d460007, 0x15332108, 0x35209d82, 0x2105ee4c, 0x2b823c3c, 0x6b693c20, 0x226a8207,
0x8464003c, 0x0ad54563, 0x2e822720, 0xe84d3c20, 0x22998205, 0x820a320a, 0x85298233, 0x82322093, 0x0c7b482f, 0x37208b83, 0x14223182, 0xf1460a1e,
0x5a462705, 0x0a0a5050, 0x32821478, 0x14bbb918, 0x44066944, 0x332205ab, 0x23463515, 0x0ae74506, 0x5a1e1e23, 0x05f54532, 0x15823220, 0xa7464783,
0x050b4709, 0x20055142, 0x22a58715, 0x47500a46, 0x4620092f, 0x20064545, 0x083b7635, 0x833c1521, 0x280a27c7, 0x323c3c3c, 0xef1b3c32, 0x5f410957,
0x33002205, 0x292a8423, 0x3c331533, 0x280a1e0a, 0x22843c0a, 0x20084b41, 0x12134f46, 0x99483082, 0x06fb7207, 0x20059342, 0x08b74101, 0x62180d20,
0x5a45089f, 0x056d6206, 0x0a0a2827, 0x1e0a3232, 0xc7721864, 0x83838508, 0x0ce1412d, 0x2406dd41, 0x640a320a, 0x087b421e, 0x2105cf4c, 0xdb410046,
0x3335230c, 0x83832315, 0x321e1e26, 0x0a0a4632, 0x22082f6a, 0x18000000, 0x2009bfee, 0xc1a11813, 0x013d2209, 0xc3d11833, 0x82322008, 0x0a282338,
0xa6183228, 0x4b410e0f, 0x195a2009, 0x4e0995c5, 0x4f18090d, 0x9e820985, 0x0a141423, 0x096b4732, 0x2105974a, 0x134a3700, 0x235a8408, 0x0a463c0a,
0x20057342, 0x43be1804, 0x82032008, 0x248b45c5, 0x32323222, 0x08cec519, 0x41084f42, 0x3f850503, 0x6f751520, 0x08c34608, 0x73183220, 0x142309e9,
0x82282814, 0x05624442, 0x20080f4b, 0xb3d41846, 0x48af820c, 0x2721091b, 0x0bd11835, 0x07332108, 0xcb835182, 0xbd460783, 0x821e2005, 0x22038259,
0x441e0a28, 0x0a2405ba, 0x1414140a, 0x07820382, 0x8205cb4f, 0x0000251f, 0x00000500, 0x8306bf43, 0x052f4be7, 0x33370025, 0x44012b15, 0x638205d3,
0x5b831720, 0x32220382, 0x4d850a0a, 0x0a281e25, 0x183c3c46, 0x2007d9f6, 0x0bab180a, 0x003c220a, 0x18518246, 0x84099d5e, 0x453720e7, 0x14201f97,
0x82062b60, 0x224c8491, 0x500a0005, 0x17220c5b, 0x354b1b00, 0x06f24c06, 0xf8823720, 0x82084951, 0x82e7820b, 0x4714203b, 0x0a2009b4, 0x2005be4c,
0x05745f1e, 0xa1821e20, 0x18000521, 0x8e0fc7e4, 0x089d4e53, 0x0348ed86, 0x0a142409, 0x82500a1e, 0x21028262, 0x2b451e3c, 0x261d8206, 0x00020000,
0x8232001e, 0x825a2001, 0x820920f3, 0x508982a1, 0x322005fb, 0x32208a84, 0x00209684, 0xa3462793, 0x0a322206, 0x63b8180a, 0x44278208, 0x5022053b,
0xef865a00, 0x0c6e6418, 0xb94b3320, 0x33352207, 0x209b8635, 0x05b14e1e, 0x94824620, 0xf0831420, 0x4c821420, 0x8f4b1e20, 0x2fa51908, 0x0a5a5608,
0x24093849, 0x0a0a0a23, 0x05796632, 0x321e1e22, 0x8205d04f, 0x2346824f, 0x00040000, 0x2005bf43, 0x63ba185a, 0x18002008, 0x230779db, 0x011d2315,
0x0282bc82, 0x1e0a1425, 0x820a281e, 0x051d4a02, 0x0a204382, 0x83091b47, 0x0013237b, 0xd3180017, 0x15200857, 0x2005c74a, 0x20078323, 0x823d8237,
0x22c4847d, 0x82281414, 0x217e8385, 0x8584320a, 0x07410a20, 0x18bf8708, 0x200a0042, 0x21458435, 0x07833315, 0x23052453, 0x1e0a3c0a, 0x2822f582,
0xb3620a1e, 0x44c28205, 0x3f830713, 0x81821520, 0x08335418, 0x0a223d8d, 0x3c890a1e, 0xcf828082, 0xc7740a20, 0x233b8308, 0x000d0009, 0x1805514b,
0x2108d543, 0xbb831533, 0x32231522, 0xbe823c82, 0xfd831e20, 0x1e247d82, 0x4646460a, 0xbf413c82, 0x056c500d, 0xb841eb82, 0x200b8208, 0x248d8215,
0x1e322335, 0x8241820a, 0x200685ab, 0x057e415a, 0x06850a20, 0x0f52bf83, 0x0cc34c09, 0x14324624, 0x70823214, 0x1906c34c, 0x4d09bfd3, 0x6b180553,
0xb1460801, 0x84142007, 0x226c82a8, 0x8246505a, 0x140a22ec, 0x068f4a14, 0x5a005025, 0x49001900, 0xf66105dd, 0x84a78405, 0x081a4be8, 0x2006d74c,
0xa9da1815, 0x75b28207, 0x14200902, 0x46205582, 0x1282be83, 0x03824620, 0x00205a82, 0x090b8a19, 0xf9410d20, 0x7bfe1808, 0x20ee8309, 0x20b9843c,
0x08974e0a, 0x11208783, 0x27428782, 0x1815200e, 0x20073151, 0x20918633, 0x08de4323, 0x85281e21, 0x641e200a, 0x23650521, 0x82142005, 0x0c3f430c,
0x07bfe418, 0x1805e55f, 0x41081147, 0x0a200989, 0xff64b282, 0x0a5a220b, 0x294a8314, 0x14141450, 0x460a0a32, 0x5b410000, 0x06bd4511, 0x20071f4d,
0x171f4d46, 0xe74f4620, 0x114d1908, 0x84232009, 0x824182d1, 0x1e3225bc, 0x1e0a1e1e, 0x8205655c, 0x500a2108, 0x22062b4d, 0x18ecff14, 0x4d08b3f2,
0x46261a2b, 0x320a280a, 0x2b4d0a14, 0x0d7f4213, 0x180dd741, 0x8308e674, 0x573c2089, 0xff4305aa, 0x05675606, 0x820a4621, 0x141e23d0, 0xff430a14,
0x000f230b, 0x7b520015, 0x5e7f1805, 0x3523290c, 0x3523011d, 0x013d1533, 0x07205683, 0x4a820982, 0x0a20da82, 0xdd199b82, 0x0a2008ed, 0x21057046,
0x6c82460a, 0x89051068, 0x780f209f, 0x97870867, 0xc1432320, 0x41308209, 0x032105d0, 0x218c8200, 0xc2185000, 0x85820abf, 0x15203082, 0x55058f6b,
0x142105a7, 0x2039820a, 0x207c831e, 0x276a821e, 0x0a50460a, 0x0a464646, 0x830ac37b, 0x05ff4d3f, 0x37840020, 0x82060345, 0x8423204a, 0x3523260f,
0x33351523, 0x08bb5815, 0x4c842820, 0x450a5a21, 0x1e240755, 0x1e1e3c1e, 0x084bd118, 0x1805a34f, 0x840969ad, 0xbbad18bf, 0x06404907, 0x35231522,
0x32204d86, 0x4e830782, 0x320a5a28, 0x32321e1e, 0x07830a32, 0x6b4d4d82, 0x209b8307, 0x030f1913, 0x0adf470a, 0x3320a685, 0xe747a682, 0x88232005,
0x180720f5, 0x470afb9b, 0x7e5209ef, 0x060b4105, 0x0a0a2822, 0x20059a45, 0x05864d0a, 0x094b4c19, 0x23063d44, 0x0a14460a, 0x870aab63, 0x471f2087,
0x42180767, 0x1523085c, 0x88331523, 0x35152379, 0xd2831533, 0x85055a48, 0x822820e3, 0x141e21df, 0x14225682, 0x52823214, 0x55822820, 0x3f460520,
0x05c54e08, 0x24082d41, 0x23152335, 0x20438217, 0x20038223, 0x06e75737, 0x0c823720, 0x2005a744, 0x203f820a, 0x2754830a, 0x0a141e5a, 0x1e140a3c,
0x08d17b18, 0x22088f7d, 0x186e0050, 0x200833f6, 0x055e4315, 0x9f823320, 0x4b823320, 0x180b1f47, 0x47077468, 0xa3830d27, 0x470a0a21, 0x22830e2d,
0x00215e82, 0x18b38606, 0x200de3a8, 0x20a58300, 0x05e94207, 0x23021d23, 0x27691835, 0x0a282209, 0x05125b1e, 0xb1500a20, 0x05745305, 0x180a6421,
0x180bafd0, 0x410baba4, 0xc54106d9, 0x56172009, 0x27200685, 0xc342bc82, 0x42a4850a, 0x53870bc9, 0xe2ff1425, 0x47004600, 0xa9180593, 0x91460ad9,
0x05c55005, 0x83056046, 0x82072011, 0x05a1475d, 0x1e209182, 0x2506c855, 0x0a464646, 0x1082461e, 0x14220282, 0xaa833214, 0x82040021, 0x843220f7,
0x00052357, 0xa74a0009, 0x08c74805, 0x09881720, 0x2f452820, 0x0ad74805, 0x821e1e21, 0x960a2045, 0x06df483f, 0xf9493320, 0x23152405, 0x830a2835,
0x0bef4883, 0x82140a21, 0x096b4440, 0x0c0ff91a, 0x2109dc4e, 0x214f3527, 0x20078305, 0x07d54932, 0x24056e42, 0x3c140a0a, 0x05f4750a, 0x4808d746,
0x1b200777, 0x09c7b818, 0x08ec9218, 0x23153323, 0x06c34537, 0x140a1e23, 0x828f8314, 0x822820ce, 0x22d5840a, 0x820a460a, 0x82322090, 0x08ff4850,
0xff484620, 0x06ed440d, 0x2206af4f, 0x82280a14, 0x821e208f, 0x320a21d8, 0x14203582, 0x0a218a83, 0x065f4700, 0x42050346, 0x7e4905f7, 0x33352109,
0x6f520b82, 0x4b32200b, 0x8082069a, 0x143c1425, 0x6f0a500a, 0x50830668, 0x02204b82, 0x50069342, 0x7756099f, 0x1d332508, 0x46352302, 0x1e207c82,
0x3c230082, 0x8232141e, 0x5d8183d0, 0x8346061f, 0x0b7d180e, 0x31171909, 0x232f8208, 0x1e1e141e, 0x0484f382, 0x0a7b7f18, 0x20055b5b, 0xf9c51817,
0x058c440c, 0x23055e42, 0x17233523, 0x35200382, 0xb7821382, 0x0a234482, 0x8232280a, 0x822820b8, 0x8228208d, 0x27c4828d, 0x0a461414, 0x0a5a1e1e,
0x2a083b6c, 0x005a0050, 0x0019000d, 0x49153700, 0xc8440b8e, 0x05bd4305, 0x2105f655, 0x53830a14, 0x41050a6d, 0x0a230590, 0x8200320a, 0x070b4100,
0x20140350, 0x13035046, 0xe2ff1424, 0x03503c00, 0x50f48217, 0x02201103, 0x20086f46, 0x20fd8419, 0x09f35215, 0x3746b58d, 0x18f48205, 0x230ad08a,
0x320a141e, 0x08d3bc19, 0x320a4622, 0x2006b061, 0x080b4501, 0x870c0f50, 0x0a4621b1, 0x21082354, 0x03430050, 0x0c0d4907, 0x35333726, 0x3315022b,
0x2005ae4b, 0x06d14446, 0x2005f642, 0x08cf4e32, 0x5f413b83, 0x21448230, 0x04820a0a, 0x500c5f41, 0xe3191643, 0x32840a23, 0x34833220, 0x18000221,
0x790ddfde, 0x674c09ce, 0x05fd4d0a, 0x1420c084, 0x1420c482, 0x1e220482, 0x06820a3c, 0xee421420, 0x0a0a2405, 0x82280a1e, 0x08b75185, 0x46004623,
0x06df4400, 0x51841720, 0x08277818, 0x2006514b, 0x05ce4227, 0x4305054d, 0x1e2105c8, 0x4851821e, 0x638205c7, 0x50825020, 0xcf415183, 0x4b4f8305,
0x9f8b05c9, 0xf94f2320, 0x822d8205, 0x053b5990, 0x0a223282, 0x9b820a28, 0x8b820a20, 0x7b430420, 0x00072108, 0x035c3d83, 0x07152109, 0x7745dd84,
0x15172305, 0x65503523, 0x28282306, 0xd64c281e, 0x79142005, 0x06820513, 0x52001421, 0xd619090f, 0x9f500835, 0x22b38322, 0x18130009, 0x210a43d7,
0x47440723, 0x83322008, 0x840a20b1, 0x464622f1, 0x21eb840a, 0x951a0a3c, 0x314115c3, 0x06a34805, 0xef483520, 0x0a46211b, 0xb883ae83, 0x28141422,
0x180ab743, 0x4b070b75, 0xf843063a, 0x82152006, 0x013d2152, 0x5006574b, 0x0a220c6f, 0x67182814, 0x142507c9, 0x28280a32, 0x20008200, 0x06574306,
0x0f004622, 0x2317eb48, 0x35333523, 0x85059569, 0xc7e818b2, 0x05ec4109, 0x2107db50, 0xe9490a32, 0x0a1e2205, 0x06e0500a, 0x22054257, 0x4b140a28,
0x1e8305d2, 0x1a090850, 0x820ae36c, 0x00052487, 0x18e2ff0a, 0x220c0f71, 0x60000023, 0x2320087b, 0x0c731919, 0x18072321, 0x830aa3d5, 0x496e83e1,
0x3c210563, 0x206b8314, 0x052b4114, 0x82321e21, 0x0a5a226d, 0x0581440a, 0x48000021, 0xbd1807fb, 0x974d0baf, 0x21fb4809, 0x93464620, 0x088e4a06,
0x9b48b782, 0xa3de1807, 0x4600200d, 0x352006cd, 0x18082960, 0x250d19b0, 0x0a0a4623, 0x00821e0a, 0x091b2419, 0x183c3c21, 0x23081f82, 0x5014140a,
0xaf880c82, 0x0b3bbf18, 0x0877e318, 0x2106eb4c, 0x8c1a013d, 0x1e2208f1, 0x86470a1e, 0x44a68205, 0x0a210608, 0x5648840a, 0x3b4f08e7, 0x099d6105,
0x0836a018, 0x8808c142, 0x0ac9424f, 0xa5830a20, 0x890ace42, 0x05f74853, 0x03004622, 0x08c7aa18, 0xeb180020, 0x5b850843, 0x99472320, 0x821e200f,
0x0a0a26d9, 0x141e0a28, 0x059f4714, 0x3c200f84, 0x50206282, 0x00241582, 0xff140001, 0x1d339819, 0x1908bc6d, 0x220c3398, 0x820a0004, 0x20df83e5,
0x717a1905, 0x35332108, 0x37208382, 0x4d05c846, 0x27200671, 0x40821282, 0x85841420, 0x14141422, 0x46287682, 0x1e143c50, 0x0a282828, 0x2348d682,
0x00502207, 0x24cb4a78, 0x23204d82, 0x1a054149, 0x82091017, 0x14c94a52, 0xbb480a20, 0x826e2008, 0x001721a1, 0x08135b18, 0x42051a42, 0xbf44052a,
0x23352105, 0x2005c160, 0x491a8207, 0x1e2005cb, 0xae820683, 0x0a0a3222, 0x07b3ff18, 0x1e240982, 0x5a0a0a14, 0x4a181083, 0x4620074b, 0x9c18b782,
0xff8409f5, 0x8b193520, 0xe2420ae9, 0x012b2406, 0x51231533, 0xbd830ca3, 0xa8510a20, 0x0a5a210b, 0x220a6b4e, 0x180d006e, 0x20083598, 0x06474d15,
0x1d23ae83, 0x89352302, 0x07f148a8, 0xa2842820, 0x860af748, 0x09b74fa1, 0x88187820, 0x004a08af, 0x15232108, 0x070c1619, 0x84084751, 0x0a462493,
0x646e460a, 0x002506d3, 0x00460000, 0x08094b6e, 0x828a3b88, 0x14143223, 0x0802581e, 0x3c0a3222, 0x434c7a88, 0xf7b51808, 0x12434c0d, 0x33012b26,
0x0a462315, 0x8206434c, 0x0b434c84, 0xc7418a84, 0x37d4180a, 0xd9d31a09, 0x1533220b, 0x20938933, 0x05f67f3c, 0x821e0a21, 0x06084a4a, 0x0a0a3224,
0x9a863232, 0xd9180520, 0x8f4d0893, 0x124b4f0b, 0xab183720, 0x534f07a1, 0x064b4509, 0x4f0a4621, 0x9f850859, 0x2b415385, 0x06af4707, 0x08870719,
0x8906ad46, 0x153723a1, 0xed433523, 0x0a282308, 0x0082140a, 0xee430a20, 0x21a78208, 0x1b430a64, 0x05b34705, 0x78005029, 0x27001f00, 0x52370000,
0x3520088d, 0x820be04d, 0x05154815, 0x0733bd18, 0x52535282, 0x08bc4308, 0xd1426420, 0x820a2007, 0x05e34208, 0x000a0a25, 0x4d070000, 0xa95608eb,
0x001f2207, 0x4c6d8523, 0xa9601579, 0x05ee4605, 0x35233123, 0x10894c33, 0x14207284, 0x180c914c, 0x2109d698, 0x73820100, 0x50000022, 0x090f6e19,
0x5408f450, 0x965205ca, 0x35332608, 0x0a281533, 0x051d4132, 0x0a142823, 0x2257821e, 0x83141e28, 0x0a1e2308, 0x60821e14, 0x3f44c882, 0x19462009,
0x6808a503, 0x152008ca, 0x18051941, 0x20081364, 0x053e4727, 0x53863520, 0x4b831420, 0x501e1e21, 0xc5420614, 0x07cd4206, 0x2108e350, 0xcb6f0078,
0x412d2005, 0x2c42097f, 0x06816406, 0x23246582, 0x23353335, 0x08bfa918, 0x3720d082, 0x55530382, 0x1e28210f, 0x20058145, 0x0542443c, 0x0a0a2822,
0x83076053, 0x820a20d9, 0x06e7582e, 0x64005025, 0x18000d00, 0x4c0bc5d3, 0x70860d27, 0x08f7c718, 0x2105915c, 0x7382012b, 0x2006374c, 0x05104928,
0x0a22e083, 0x404c0a32, 0x06254b05, 0x08f0dd18, 0x2009cf7e, 0x206f846e, 0x5b6e1819, 0x8233200a, 0x05e44b52, 0x0bf7f418, 0x35231523, 0x34501807,
0x074f410c, 0x79820720, 0x4f144621, 0x115105ac, 0x4d0c8206, 0x0a20054d, 0x5a220083, 0x1f820a0a, 0x0a20f882, 0x07831483, 0x2205f867, 0x83280a0a,
0x08002986, 0x00000a00, 0x78006e00, 0x8783f782, 0x07197218, 0x6c184320, 0x89820a41, 0xe3823520, 0x8205c241, 0x1723218a, 0xeb188b8e, 0x93830d0b,
0x8d07c143, 0x831e209b, 0x478783a9, 0x9b8206b5, 0x1e220284, 0xa7880a0a, 0x1e0a1e22, 0x2821a586, 0x832e820a, 0x0a64230b, 0x57600a78, 0x006e2209,
0xd722195a, 0x5300200a, 0x124a083b, 0x66352008, 0x15230891, 0x7d231533, 0x656d0ba1, 0x05c64107, 0x64231525, 0x820a0a0a, 0x0a1e2165, 0x2206557d,
0x83320a0a, 0x82322009, 0x21028416, 0xac821428, 0x25420d82, 0x841d8205, 0x460a2115, 0x32222f82, 0x6f5a320a, 0x0064240a, 0x820f0064, 0xc36b1895,
0x7b8b8407, 0x3720096b, 0x0c357418, 0x15233522, 0x4506a747, 0x958205d6, 0x35172324, 0x65851533, 0x434a5883, 0x56fd8205, 0x3c24086e, 0x28140a0a,
0x0a207282, 0x2108176e, 0x1f830a14, 0x0a1e1422, 0x4805734b, 0x6e200513, 0x97728782, 0x1a372005, 0x18099d37, 0x1814a980, 0x820a2940, 0x3d23241f,
0x83153301, 0x82232083, 0x836a8292, 0x056a5102, 0x82821420, 0x28206982, 0x46229c82, 0xc653500a, 0x20128405, 0x938a1928, 0x83998308, 0x0ca34185,
0x0f006424, 0xe5762300, 0x41372007, 0x74190f0f, 0x23440b67, 0x06134c05, 0x4108b05f, 0x35230521, 0x5d271533, 0x0a2006ad, 0x3221fd82, 0x7f9b8432,
0x33510809, 0x82462007, 0x061e4191, 0x1a050c4f, 0x210bcac4, 0x1e820a0a, 0x4b4d4620, 0xff0a3105, 0x006e00e2, 0x00170064, 0x003b002d, 0x1700003f,
0x18094f56, 0x82088646, 0x2735219c, 0x5f0e9a7e, 0x17200519, 0x0dd3a518, 0x3c20ac82, 0x0914a218, 0x0a142824, 0xb9411432, 0x05c94105, 0x85820a20,
0x141e1422, 0x82064741, 0x87502013, 0x22198217, 0x821e141e, 0x059c4fbd, 0x83055f56, 0x002d2797, 0x0041003d, 0x7d823700, 0x08cf4218, 0x18095f54,
0x180b4a69, 0x210ae841, 0xe141012b, 0x20a5820e, 0x08394250, 0x4105f556, 0x46200637, 0x0a22ae84, 0xb318321e, 0x65420980, 0x08f14205, 0x2a076642,
0x00000a5a, 0xff000004, 0x826400e2, 0x00192401, 0x84370029, 0x19232099, 0x190c96f4, 0x2109f320, 0x45182723, 0xbf4c0820, 0xdb491805, 0x21238308,
0xa2882723, 0x89145021, 0x08f9587b, 0x08b78018, 0x99841420, 0x22088043, 0x82280a0a, 0x1e2826bf, 0x0a0a1e0a, 0x8338843c, 0x52128209, 0x5a2006df,
0x23229b82, 0xdf762b00, 0x099a7806, 0x87080b7f, 0x18352076, 0x82086bf2, 0x231521c0, 0x84062141, 0x0a515489, 0x1e141e2a, 0x500a0a28, 0x0a141e0a,
0x4506d869, 0xe54105b3, 0x24738205, 0x00e2ff00, 0xca01825a, 0x14282273, 0x21ee8228, 0xe4830a46, 0x85059d54, 0x05b74773, 0x00237383, 0x82640000,
0x00212601, 0x0035002d, 0xe7df1a00, 0x0a534308, 0x84083c6b, 0x019919e5, 0x059a450c, 0x4e5a2321, 0x14200896, 0x0a20d983, 0x2820f483, 0x0a246e82,
0x140a0a46, 0x1e200082, 0x07821683, 0x0e830a20, 0x08821483, 0x0c03dc18, 0x13005a22, 0x0805a218, 0x43089f46, 0x23220624, 0x9d462315, 0x05f94105,
0x08fb7d18, 0x09c7c218, 0x0a821420, 0x1e0a1422, 0x5482d982, 0xfa425020, 0x83838205, 0x82688280, 0x06136e09, 0x5a009628, 0x21000b00, 0x89762b00,
0x092d510a, 0x45372321, 0x6d820cd9, 0x35217982, 0x060b4723, 0x39701520, 0x21f08205, 0x1a823335, 0x0f822720, 0x15220b82, 0x08823307, 0x46200382,
0x2105d241, 0x07840a32, 0x0a217583, 0x838f8264, 0xdf9418fd, 0x0a46210c, 0x3220fe82, 0x0f82ba89, 0x320a2822, 0x21063843, 0xab82143c, 0x320a3c23,
0x062f480a, 0xaf826e20, 0x8d461520, 0xb3e9180d, 0x062f440c, 0x33228b87, 0xb541021d, 0x0f8c4609, 0x998a5020, 0x0832a518, 0x82180a20, 0x928a08a6,
0x80821e20, 0x08077d18, 0x460a8c46, 0x1b210903, 0x07894600, 0x82082744, 0x869a878a, 0x013d2107, 0x0f629e18, 0x41150721, 0x1e20053d, 0x14218a82,
0x05805a14, 0x7d0a0a21, 0x0a25058b, 0x500a3214, 0x826d830a, 0x20028411, 0x06ce4414, 0x82281421, 0x834620a4, 0x00002112, 0x2306c741, 0x0082006e,
0x35208383, 0x081d2119, 0x20086d6c, 0xa0918333, 0x05314689, 0x23331522, 0x1720b682, 0x83060546, 0x8499959d, 0x201a828e, 0x05f74528, 0xb084a498,
0x0a0a6423, 0xe3ca1878, 0x006e250b, 0x0011005a, 0x08872e19, 0x4506e94b, 0x3522087e, 0xea623323, 0x3e491808, 0xef291908, 0x6513840a, 0xb74e05cd,
0x3c142105, 0x82071841, 0x84462096, 0x2104829a, 0x95830a5a, 0x27472820, 0x14142105, 0x49057642, 0x002005aa, 0x2405b741, 0x0064008c, 0x08a97e19,
0x200a6745, 0x077b4c35, 0x23210783, 0x1ad14127, 0x15331727, 0x2315012b, 0x22e28235, 0x4132140a, 0x1e2006b7, 0x4105e243, 0x6e2107cd, 0x42fc830a,
0xe47b0757, 0x05ed4205, 0x0a20a582, 0x3220ba82, 0xc7410782, 0x005a2409, 0x18170009, 0x200b9551, 0x08654537, 0x0b886d82, 0x52233521, 0x694508bf,
0x42ba840b, 0x15200be8, 0x20052941, 0x869e820a, 0x421e2074, 0x282106f6, 0x42108314, 0x5a2008ee, 0x3220a182, 0x8406fb72, 0x0c7d4919, 0x1e0a0a22,
0x20084772, 0x067b496e, 0x2207f748, 0x1800003b, 0x82088344, 0x4b8e836e, 0x8c8405af, 0x23352323, 0xd5971915, 0x1817200c, 0x820bb3c2, 0x07ae470b,
0x7e838982, 0x04821420, 0x0b861420, 0x8305cf41, 0x066c48a6, 0x20822b84, 0x2205af46, 0x82500a32, 0x2fdc1821, 0x23978308, 0x00250015, 0x097d5018,
0x2009104a, 0x82868435, 0x1817208a, 0x8d0c1bd0, 0x15272399, 0x9d833523, 0x5748f982, 0x20918507, 0x08154428, 0x72831e20, 0x8405f755, 0x8214207a,
0x831e2089, 0x4a282009, 0x274107d2, 0x005a240b, 0x8219000f, 0x051b4491, 0x19003921, 0x830ceb1c, 0x05a94192, 0x23207682, 0x4106b961, 0x17200cbf,
0x23200d82, 0x84084d45, 0x839a8260, 0x3214216e, 0x7c829884, 0x3c0a0a22, 0x20053d46, 0x2485825a, 0x3c14143c, 0x45ab820a, 0xaa44073d, 0x18338205,
0x220837d8, 0x8878006e, 0x092b4493, 0x99824920, 0x0e058018, 0x2d44999d, 0x45a8830f, 0x502007f7, 0x2205dd45, 0x8f3c0a14, 0x184620a9, 0x840a7346,
0x202a830b, 0x20b4820a, 0x20b38e46, 0x06484d28, 0x640a6e24, 0xbb82320a, 0x45054756, 0x274411fb, 0x1753411a, 0x4f411520, 0x44502006, 0xa8850a33,
0x8a4c4620, 0x449b840d, 0x14200537, 0x32209e8e, 0x07219483, 0x2a988200, 0x5a009600, 0x29001300, 0x18003300, 0x19111d65, 0x4c08d49a, 0x9f19078c,
0x35210ad8, 0x411d8233, 0xad490a63, 0x18332008, 0x4d08bfa1, 0x3e4a0a33, 0x05484805, 0x49470a20, 0x4414200e, 0x158305e1, 0x54685020, 0x850e8309,
0x220982bc, 0x84320a28, 0x0a0a22cd, 0x09484d50, 0x2005c751, 0x19bf825a, 0x20090d2c, 0x05595600, 0x84053247, 0x06cf4305, 0x07822320, 0x2325ad82,
0x33352315, 0x82bb8237, 0x011d21c9, 0x20062546, 0x064d5050, 0x32210685, 0x20628214, 0x43038228, 0x8368069b, 0x82088208, 0x21ac858a, 0xb7630a3c,
0x00082105, 0x24051f4c, 0x0011005a, 0x6182191b, 0x4343200a, 0x73830a29, 0x35217582, 0x15914223, 0x0815d118, 0x200a795a, 0x0f891a35, 0x06f34409,
0x8a423220, 0x4a1e200a, 0x2c520574, 0x825a2008, 0x0a5a2209, 0x4899831e, 0x2f830977, 0x41640a21, 0x3c20062d, 0x4a053f50, 0x6420058b, 0x2120ab82,
0x8606674d, 0xf54918a7, 0x096d480a, 0x61087b64, 0x864706b5, 0x822d8208, 0x07506025, 0x27821720, 0x5e441420, 0x20748206, 0x20968428, 0x053c4a28,
0x3c220585, 0xd7410a0a, 0x82088205, 0x0a1e22a6, 0x20248314, 0x209b8214, 0x82c38850, 0x82642008, 0x82002044, 0x00012a00, 0x00f6ff0a, 0x00140028,
0xe507190b, 0x209f180d, 0x0000220c, 0x20278201, 0x262784ec, 0x1700000d, 0x42333523, 0x191b0882, 0x3c4108e5, 0x84142005, 0x3200212b, 0x5a212b82,
0x05336c00, 0xa2852b92, 0x5b4d2b82, 0x057b5b05, 0x4705075f, 0x648208c4, 0x0aa77518, 0x33353722, 0x8306f56c, 0x820a20cb, 0x833c20da, 0x05bb51d8,
0x320a2822, 0x49051a5c, 0x462206f7, 0x7b826400, 0x53001721, 0x2b2005af, 0x4e06ad62, 0x735008bc, 0x07994409, 0x2407c348, 0x23153337, 0x85fa843c,
0x20d38565, 0x05b6450a, 0x4620708d, 0x0851031a, 0x2f770a20, 0x5e15200c, 0xf44b06bf, 0x05c34906, 0x7b832320, 0x46351521, 0x5d4108bf, 0x0a502109,
0x28246382, 0x5028280a, 0xa36d4683, 0x8313200c, 0x09b64db7, 0x22056d43, 0x83321533, 0x1e0a2131, 0x20056050, 0x833a830a, 0x08d7664d, 0xfb823c20,
0x91531b20, 0x183e8408, 0x4a087885, 0x2320053e, 0x8209ff4e, 0x0a142339, 0x45820a50, 0xe3823220, 0x82142821, 0x0bfb6c8b, 0xcb840f20, 0x2009554f,
0x1a498333, 0x8309fb50, 0x9dc81883, 0x823b8308, 0x0a142147, 0x1b795d82, 0xe2ff2308, 0xc3193c00, 0xd941085f, 0x6d831805, 0x1523220c, 0x19e01807,
0x5d398209, 0x0a230511, 0x823c0a32, 0x215a820c, 0xef5d0a50, 0x05d1410c, 0x094f6418, 0x45083e4e, 0xd74105da, 0x37152306, 0x9d7d3335, 0x0a1e210d,
0x82052f4e, 0x052f419a, 0x09823220, 0x49560a20, 0x00002405, 0x860a0003, 0x05057da7, 0x35170022, 0x08574718, 0x61090a52, 0x724306cf, 0x229a8205,
0x83141e0a, 0x461422ad, 0x82478232, 0x0a4623f0, 0x87746e0a, 0x00322507, 0x000f006e, 0x0e43411b, 0x50054966, 0x5d4305c6, 0x054b440c, 0x280a0a25,
0x89140a32, 0x822820ef, 0x074b7843, 0x85090a5e, 0x209e8209, 0x4a8f8207, 0x4f830917, 0x04823220, 0x780a4622, 0x64204382, 0x210b0f75, 0xe5680019,
0xea511805, 0xd5591809, 0x23152408, 0x82372335, 0x82d3890d, 0x4a4a853c, 0x188205fa, 0x93851420, 0x83000221, 0x00282199, 0x53055b5c, 0xcd8208d5,
0x6d013b21, 0x3a830859, 0x50203883, 0x210b5767, 0xcf5d006e, 0x18252005, 0x42084dc6, 0xb354074f, 0x05194108, 0x2106a542, 0x461a4623, 0xe6840ff8,
0x0a0a4622, 0x27069870, 0x14280a3c, 0x320a3c0a, 0x20062b43, 0x835f8650, 0x0b324793, 0x28205d8c, 0x43835387, 0x4d8ca682, 0x5f0d0773, 0x1520054f,
0x44070142, 0x3c20092b, 0x15443782, 0x283c2205, 0x0877440a, 0x2308cf5c, 0x0064003c, 0xfc183b83, 0x7a180e17, 0x07490b6b, 0x0769440b, 0x5e0a6744,
0x5c8b05ac, 0x0a20a682, 0x21087f41, 0xe982e2ff, 0x13004622, 0x4a05cf41, 0x504309ac, 0x4b232006, 0x5d4209f9, 0x141e210a, 0x20064647, 0x21478232,
0x0e820a28, 0x4205f77c, 0x462005f3, 0x82094361, 0xb391189b, 0x29fe840b, 0x33172315, 0x35372315, 0x45841533, 0x4309395f, 0x46220847, 0x15821e0a,
0xef415a20, 0x17b91905, 0x00192309, 0x6f423700, 0x82b18410, 0x05fb4557, 0x4d860a20, 0x4b823220, 0x22082f4b, 0x43020000, 0xdb6a088b, 0x182f4407,
0x96827982, 0x44463c21, 0x83850c2b, 0x5a003223, 0xaf8a1800, 0x20d58407, 0x438d8815, 0xd0410a33, 0x05d96705, 0x00227782, 0x1f630000, 0x471b2005,
0x944f0809, 0x89372006, 0x05b35d3e, 0xee19bc84, 0x0a220884, 0xc1830a32, 0xdc18c883, 0x50250ab7, 0x0d006400, 0x65dc1800, 0x09c46409, 0x23352322,
0x3520518d, 0x58821182, 0x18233321, 0x8b098b90, 0x460a2061, 0xe9820769, 0xcb846b8c, 0x37461420, 0x0747470a, 0x7e190020, 0x5b830967, 0x8209b145,
0x4e6a1849, 0x48142008, 0x2820052a, 0x5763bb82, 0x00002508, 0x46006400, 0x1922b782, 0x05412100, 0x05644510, 0xbf82a382, 0xad433320, 0x204f8705,
0x056e4c28, 0x82141421, 0x20568707, 0x0560590a, 0x82323221, 0x41002054, 0x9f830597, 0x57822520, 0x4605c95a, 0x0b82050f, 0x51775882, 0x06817609,
0x2005ed47, 0x0d104a14, 0x12149418, 0x08bf5d18, 0xb7825020, 0x23001b22, 0x08eb4318, 0x6608e544, 0x152009d5, 0x2106154a, 0xac542335, 0x20be8206,
0xc31f1914, 0x0a0a2109, 0x28215f83, 0x07515132, 0x20098b45, 0x0bc3443c, 0xaf494f84, 0x49372008, 0x15200908, 0x2206bb49, 0x42233523, 0x14230865,
0x851e0a1e, 0x83142057, 0x05914908, 0x14837283, 0x00201982, 0x2408b36a, 0x005a003c, 0x06cd5c13, 0x4f181520, 0x15200ae5, 0x21050f4c, 0x2919013d,
0x678208f6, 0x48057d41, 0x4d8305a9, 0x141e1e25, 0x19320a14, 0x5507111a, 0x1e200cb7, 0x0a226582, 0x531a0400, 0x1b29086f, 0x37002b00, 0x00003b00,
0x6d831817, 0x2151180e, 0x15332109, 0x520f5e57, 0x2382078b, 0xd35a3520, 0x46668308, 0x0d830d82, 0x08018818, 0x4f066a45, 0x4518050d, 0x46200af5,
0x25065741, 0x32001400, 0x101a3c00, 0x1b4e0f5b, 0x1c7b1907, 0x28142108, 0x1e23e082, 0x180a140a, 0x1a085b43, 0x71117b48, 0x07220707, 0x0d520000,
0x28232706, 0x1e1e1414, 0x2772285a, 0xc3da1a0d, 0x32232a09, 0x143c1414, 0x5a5a5050, 0x1fc11900, 0x0743460e, 0x0a220782, 0x0082283c, 0x0a5a3c23,
0x2001821e, 0x066f4600, 0x0923b919, 0x372d2182, 0x0a152335, 0x14283c3c, 0x460a5a5a, 0x08834946, 0xdb702383, 0x204d8b05, 0x82938214, 0x500a2175,
0x10534e1a, 0x64442b84, 0x35332608, 0x143c0a23, 0x832e8314, 0x0a28217a, 0x0aebbc19, 0x09005a22, 0x2008f95b, 0x84278223, 0x28322453, 0x8b28500a,
0x1807209f, 0x8208f346, 0x0795427f, 0x8283f184, 0x1e503c22, 0x1e20d682, 0x07c36e18, 0xaf83b582, 0x1521338e, 0x053d7333, 0x843c1421, 0x22338462,
0x191e1e0a, 0x200db7c1, 0x208b8907, 0x8226820a, 0x0bb77886, 0x05005a22, 0x0a251f87, 0x0a32141e, 0x116b4150, 0x2b6a3520, 0x140a2108, 0x14246982,
0x0a1e3214, 0x2372cb84, 0x830f2009, 0x89a81943, 0x41352009, 0x2824061d, 0x14143c28, 0x20059941, 0x0ccb7432, 0x6b1b2f83, 0x15210c6b, 0x85f98223,
0x2828215d, 0x1e215f83, 0x0bf34132, 0x820b8f7d, 0x068f7d52, 0x0d207f89, 0x9e447f83, 0xa7431a05, 0x24288209, 0x1e280a3c, 0x414e820a, 0x0b200d77,
0x3520ad89, 0x29064142, 0x323c3c3c, 0x5a0a1e0a, 0x1f42000a, 0x5829840c, 0x23200819, 0x2605136f, 0x0a460a28, 0x42280a28, 0x4f821593, 0x0a233527,
0x1414283c, 0x20a58228, 0x20278e1e, 0x0b4b730f, 0x3c21a988, 0x222e8228, 0x831e0a3c, 0x821e2081, 0xe34d1b81, 0x091b450e, 0x83068645, 0x05e16787,
0x2405f865, 0x28283214, 0x08877332, 0xff494620, 0x618f830c, 0x0a23066d, 0x8314143c, 0x5a3c2102, 0x0a22e982, 0xeb92461e, 0x52152321, 0x32200833,
0x28226185, 0x02825a28, 0x5f133f41, 0x0a200865, 0x3c222982, 0x27823c3c, 0xbd833220, 0x4212b741, 0xe682050f, 0x435a5a21, 0x5f410d27, 0x15232109,
0x5f42a982, 0x5c3c2005, 0x0741076c, 0xa3531b09, 0x280a220c, 0x214a8214, 0xc6822832, 0x82158341, 0x233522c3, 0x8223820a, 0x825a2002, 0x0d7b4293,
0x850f434f, 0x283224e7, 0x43280a28, 0x29840e9f, 0x2505644a, 0x35331537, 0x2a843c0a, 0x1e3c5a23, 0x4e2d821e, 0x4926084f, 0x0d005a00, 0xd9411100,
0x064d4408, 0x82333721, 0x14142583, 0x1417033c, 0x0a263783, 0x3002321e, 0x8a830a1e, 0x430aa344, 0x754805cf, 0x0b654305, 0x853c1421, 0x0a1e2133,
0x1e20e482, 0xff446a82, 0x057d4110, 0x63842320, 0x5a229683, 0x97823232, 0x0f9fc119, 0x2008a341, 0x05134115, 0x44281421, 0x322405b2, 0x0a1e0a28,
0xe36e0382, 0x0003220b, 0x055f5007, 0x43059742, 0x3c200519, 0x5a250083, 0x320a460a, 0x832b960a, 0x45172027, 0x3c250561, 0x3214283c, 0x212d8232,
0xe38c1e1e, 0x240a7141, 0x33152337, 0x8283820a, 0x82142029, 0x323c21af, 0x410dab44, 0x7f4d06e7, 0x24278206, 0x280a2814, 0x43248328, 0x69410913,
0xbf4d1805, 0x83d98b08, 0x14462430, 0x82321e0a, 0x11474333, 0x0d411520, 0x12474308, 0x1e1e5a22, 0x04836a82, 0x5e105342, 0x0a2509d4, 0x14142814,
0x21b48228, 0xa743280a, 0x20b7840d, 0x066b4315, 0x14280a28, 0x5a14143c, 0xeb420a50, 0x2023840d, 0x06e54135, 0x82140a21, 0x0a282423, 0x180a0a46,
0x46083344, 0x07200cb3, 0x1e204b82, 0x3c22ce82, 0x00755a3c, 0x44ff8905, 0x03410943, 0x05974408, 0x32249c82, 0x0a280a1e, 0x83180382, 0x8222094b,
0x82181b00, 0x5b1809f3, 0x11590c30, 0x05934c07, 0x1b843320, 0xf34e2320, 0x4982200d, 0x706405cb, 0x848d8205, 0x440a2002, 0x00230519, 0x19070000,
0x21081fe5, 0x35660003, 0x00212505, 0x00290025, 0x0997c81a, 0x23152323, 0x21598315, 0x09823523, 0x35331722, 0x08bdb61a, 0x23206d82, 0x0a260f83,
0x141e8c8c, 0xc0820a1e, 0x0a320a22, 0x3c23f082, 0x836e0a0a, 0x24048283, 0x1e508c78, 0x28d9831e, 0x145a0a0a, 0x0a780a50, 0x43038264, 0x64240607,
0x23005000, 0x4a099d61, 0xa94305a4, 0x0a3b5c05, 0x51827984, 0x0c120a22, 0x65825382, 0x2006ce4c, 0x84e58446, 0x831420cc, 0x4514207a, 0x574b083b,
0x09cb4305, 0x4f82b582, 0x82173321, 0x143c23be, 0x1d195a46, 0x54820829, 0x08afff19, 0x2505fb63, 0x001d0046, 0x9a1a0021, 0x591808f9, 0x205c0ae2,
0x3315220c, 0x09a64d64, 0x8f861e20, 0x87854a83, 0x92181b84, 0x462208af, 0xcb660f00, 0x51332008, 0x394c0b98, 0x8217830b, 0x072324a3, 0x4e233533,
0x282008a7, 0x0a225987, 0x0282280a, 0x84141e21, 0x831e20b9, 0x21fb830c, 0xf1822828, 0x83072342, 0x05df7bf3, 0x09234218, 0x22062043, 0x82071533,
0x84642009, 0x1432283c, 0x0a0a460a, 0x820a323c, 0x3c14235a, 0x43180a3c, 0x43830c3f, 0x4605817a, 0x8d52056b, 0x4d15200e, 0x3528063b, 0x15230723,
0x320a4633, 0x8d518482, 0x2fef1805, 0x83322007, 0x84538263, 0x1e1e2102, 0x8747b082, 0x215b8308, 0x776d0011, 0x214b8908, 0x3d823c28, 0x9882e982,
0x97834620, 0x483c3c21, 0x33830833, 0xa2181520, 0x6b180911, 0x97820821, 0x82233521, 0x141425c6, 0x0a0a280a, 0xcb830585, 0x46140a23, 0x110f411e,
0x2e7cab82, 0x08f95a09, 0x82283321, 0x830a20fa, 0x22c58244, 0x831e280a, 0x8332203f, 0x0a4f470a, 0x17207f83, 0x450a1779, 0x458308ad, 0xfc7b8183,
0x21fd8605, 0xe8184628, 0x37450896, 0x213f8306, 0x9418000b, 0xf38408a9, 0x23072322, 0x28218385, 0x84b9831e, 0x320a2704, 0x1e461e0a, 0x0382280a,
0x730c2f41, 0x7641069d, 0x06004108, 0x15230f82, 0x64461523, 0x14200581, 0x0a204182, 0x0a24bf82, 0x1e3c3c0a, 0xc7838982, 0x8507fb44, 0x08ad517f,
0x232c7782, 0x1e1e140a, 0x465a1432, 0x3c1e0a14, 0x08739118, 0x50006426, 0x15000b00, 0x4505ed50, 0x6482065f, 0x2405d757, 0x3b352335, 0x20b38601,
0x82b28532, 0x06714c72, 0x28320a22, 0x32217083, 0x227e8232, 0x430a0a0a, 0x462008d7, 0x97504d82, 0x183f8206, 0x230b2280, 0x0a0a5a23, 0x14217c82,
0x822e8250, 0x0a0a2508, 0x0a463c32, 0x00204d82, 0x83062f43, 0x0011218b, 0x08517b18, 0x20081c52, 0x22478233, 0x43332333, 0x37200527, 0x40830d82,
0x2f05ff54, 0x1e141446, 0x0a0a460a, 0x0a3c0a50, 0x3228280a, 0x8a05bb4f, 0x0011218b, 0xb3458b83, 0x08c34105, 0x140a2823, 0x053b423c, 0x81823c20,
0x741b3220, 0x974f09ef, 0x05b74105, 0x4e084749, 0xbf820acf, 0x1e0a1423, 0x21748332, 0x00823c0a, 0x66460a21, 0xdb450577, 0x00642405, 0x44130046,
0x33440641, 0x35232105, 0x2323ff83, 0x82323315, 0x834620ae, 0x14142472, 0x820a320a, 0xf743183b, 0x85002008, 0x59152073, 0x3383095d, 0x440a2343,
0x2543055b, 0x0a0a2405, 0x83283246, 0x08bb4a3e, 0x18075b43, 0x8208ce64, 0x83352072, 0x0a1e257c, 0x3c0a1428, 0x8305c263, 0x491420e0, 0xff22061b,
0xeb4300f6, 0x436d840c, 0x934e0aed, 0x20138208, 0x4d401927, 0x08804509, 0xe9445582, 0x75c41805, 0x82142008, 0x084b4909, 0x21338b44, 0x8b441e1e,
0x05cf4411, 0x20087f60, 0x43d28215, 0x5a2009bf, 0x0a202f82, 0x08a77718, 0x3c213d82, 0x09bf433c, 0x83056352, 0xbf8d1987, 0x08797309, 0x37231529,
0x32233533, 0x185a1e0a, 0x820873b7, 0x0a142139, 0x0c47cc19, 0x50006422, 0x092d4118, 0x23207582, 0x820d9141, 0x143c212b, 0xbb837d87, 0x7d885020,
0x44090742, 0x7342073b, 0x08574108, 0x0a3c2323, 0x227c8228, 0x820a0a3c, 0x32282202, 0x072c780a, 0xef480a20, 0x07fb4408, 0x19053950, 0x220dc6ce,
0x82146415, 0x830a207f, 0x3c282204, 0x2241823c, 0x41461e0a, 0xf7890580, 0x1b001722, 0x82092165, 0x88838244, 0x2733217d, 0x6423ff82, 0x831e0a14,
0x899218f2, 0x09cb4108, 0x57461420, 0x214b840e, 0x5e423337, 0x054b4505, 0x2309a547, 0x33152317, 0x4b8c4782, 0x840b9a47, 0x0913414c, 0x95841120,
0x0a465f18, 0x3f823520, 0x03464620, 0x08024609, 0x200abf43, 0xc7a81821, 0x068f4308, 0x8788c983, 0x15229784, 0xc8825023, 0x17411420, 0x20c98305,
0x20db840a, 0x079e770a, 0x17451284, 0xbb72180b, 0x1432270e, 0x28464614, 0x43484628, 0x000b220c, 0x0991430f, 0x35231524, 0xac823323, 0x32140a28,
0x0a460a14, 0xee453246, 0x4b1e2005, 0xf7420ad7, 0x37002105, 0x08f66c18, 0x0942da19, 0x691e4621, 0xc3670502, 0x82428205, 0x460a2002, 0x6f440bab,
0x05a94106, 0x0bb30f19, 0xd9829982, 0xdd840a20, 0x3c3c3c23, 0x1047180a, 0x0e674208, 0x42099d41, 0x878208a9, 0x14203a85, 0x1420fe84, 0xe682b182,
0x82142821, 0x0c3b4400, 0xe5861b20, 0x63472f82, 0x05e5410d, 0xe041b382, 0x82378205, 0x821e204f, 0x235082ba, 0x1e461e14, 0x53410682, 0x5e0d200b,
0x0a280f1d, 0x14281e14, 0x460a320a, 0x3220b782, 0x480ddb42, 0xcb4b050b, 0x82698708, 0x8714202f, 0x43f38331, 0x0b200c0f, 0x270d9f50, 0x32465a0a,
0x465a4632, 0x14209c82, 0x190c4b41, 0x84095b93, 0x053346d1, 0x5a331522, 0x77468e82, 0x28282505, 0x0a463c3c, 0x4605b244, 0x33200e27, 0x20083449,
0x057a4333, 0x32460a24, 0x63820a14, 0x1e143223, 0x219a821e, 0x674a3c0a, 0x05835c0d, 0xc7826788, 0x2706a346, 0x23372335, 0x1e3c3315, 0xa3827185,
0x32140a25, 0x651e1e32, 0x28200891, 0x09b74c18, 0x50006426, 0x1b001300, 0x4508e151, 0x15200889, 0x850a5d65, 0x0a1e2138, 0x82824982, 0x92821e20,
0x45460a20, 0x06f76c06, 0x52090f42, 0x234308e3, 0x23352605, 0x1e465a0a, 0x212d8214, 0x81820a46, 0x000a0a31, 0xbaff0100, 0xd8ff6400, 0x03007800,
0x82270000, 0x1e46236f, 0x9082781e, 0xb0ff0126, 0xe2ff5a00, 0x0b201782, 0x23201782, 0x2207e74c, 0x843c2315, 0x640a226c, 0x0535410a, 0xa6ff0122,
0xec223f82, 0x3f876e00, 0x46465a23, 0x2057846e, 0x241782b0, 0x008200e2, 0x183f830f, 0x820a81d1, 0x054d5d63, 0x6e20c082, 0x08f04d18, 0x47820220,
0xecff5a22, 0x03232f82, 0x84000700, 0x82372089, 0x254d8229, 0x641e1e14, 0x9282280a, 0xa620ab82, 0x23839382, 0xd0645383, 0x23152106, 0x29830182,
0x98841e20, 0x85461e21, 0x20db8399, 0x839b8602, 0x275386db, 0x15333533, 0x281e1e5a, 0xdb44e382, 0x005a230b, 0x9f490046, 0x6daf820c, 0xef53067d,
0x820a2005, 0x143c28f6, 0x28321414, 0x820a2828, 0x4e28200c, 0x642009e7, 0xff523b82, 0x092e5607, 0x14502322, 0x1e23b882, 0x84142832, 0x140a2331,
0x9f6b0032, 0x823c2008, 0x089b4f09, 0x0857fb18, 0x321e1e22, 0x14210284, 0x45338214, 0x9b830a77, 0x8205ff46, 0x089342bc, 0x0382f583, 0xc95d2720,
0x141e2805, 0x0a0a460a, 0x821e140a, 0x087d4ca2, 0x67181e20, 0x002808a3, 0x0050005a, 0x0027001d, 0x094bc319, 0x08583320, 0x53c1180c, 0x17332207,
0x05266c15, 0x27152322, 0xc85a0882, 0x280a2105, 0x82054145, 0x053e445f, 0x18500a21, 0x200c9ec5, 0x05ce4114, 0x43436e84, 0x05c5420a, 0x083d5a18,
0x4c082971, 0x23220551, 0xb0831e0a, 0xed5c1420, 0x5a282105, 0x82052f4c, 0x22028262, 0x82000a32, 0x85bd8347, 0xc5d418fb, 0xd0641809, 0x1414250a,
0x283c321e, 0x28213e82, 0x06854a14, 0x870a8344, 0x42232037, 0xf1490677, 0x27f38306, 0x0a142846, 0x143c1414, 0x99410582, 0x0a0a2205, 0x0827520a,
0x1809af48, 0x830c649a, 0x3b3522bb, 0x207d8201, 0x41708332, 0x1e2c0508, 0x0a461414, 0x140a0a32, 0x141e461e, 0x830a6f59, 0x06ab4c7b, 0x35206f83,
0x0c7b9319, 0x0a0a5027, 0x1e1e501e, 0x05ea5d50, 0x8205b242, 0x4c002042, 0x5a220627, 0xb5516400, 0x0683620a, 0x1e500a24, 0x6d841e14, 0x283c3c24,
0x2b830014, 0x18071b41, 0x261783a6, 0x320a0a32, 0x5d1e1e28, 0x3c200531, 0x02219c83, 0x52338700, 0xd94b09a3, 0x05004b0a, 0x1e141427, 0x46281e0a,
0x06d86114, 0x83051f7f, 0xf99618cf, 0x0ed95b09, 0x15333522, 0x3c23df82, 0x83141e0a, 0x0688496b, 0xdd832820, 0x42140a21, 0x6f620535, 0x055b4108,
0x5f05554e, 0x985a0c0d, 0x41372005, 0xff180527, 0x4382080b, 0x820a1e21, 0x20468200, 0x05496032, 0xd8820e83, 0x14201882, 0x02840682, 0x590a2821,
0x642809cb, 0x21005000, 0x2d002900, 0x0ab37918, 0x78182320, 0xee5a084c, 0x22b18209, 0x84073315, 0x233522b7, 0x20758227, 0x20ae8650, 0xeb31190a,
0x20788608, 0x05ac5c0a, 0x83140a21, 0x82e18220, 0x820a8308, 0x0b9f42d1, 0x33471f20, 0x63232010, 0x6584084e, 0x32231523, 0x0d20410a, 0x31430a20,
0x08224105, 0x200cef42, 0x4e4f8217, 0x352110a9, 0x21c98333, 0x6741143c, 0x821e2005, 0x4a0a2089, 0x5a820566, 0x41062759, 0x502105df, 0x211d1900,
0x0b83460a, 0x2508b879, 0x35333533, 0x4f82012b, 0xb9503c20, 0x08f07009, 0x93875020, 0x460a0a23, 0x06065f28, 0x200a8b43, 0x199b821d, 0x4b081daa,
0x4d530585, 0x82518208, 0x844982e9, 0x825b854c, 0x140a22a8, 0x09fa6246, 0x200f3741, 0x08134e23, 0x4407954a, 0x332005d7, 0x2105af65, 0x82820a46,
0x08f88c18, 0x20059f41, 0x824e881e, 0x234f831c, 0x00000032, 0x21056b53, 0x83823700, 0x14143224, 0x434e5a5a, 0x001f240b, 0x822f0027, 0x47ae88b7,
0x15200896, 0x82836c84, 0x15333522, 0x77078d4f, 0xfd820737, 0x4a057e42, 0x0a200a43, 0x0a209083, 0x6a053741, 0x0a200955, 0x5f050462, 0x0322058f,
0x8f820a00, 0x91826420, 0x09d38518, 0x1805e042, 0x820bfd6e, 0x8223208b, 0x06fc4a73, 0x82011d21, 0x822720b7, 0x8264200f, 0x86ee886b, 0x4e502008,
0x844205c4, 0x206a8305, 0x21188214, 0x9e820a28, 0x200a5b50, 0x99b0191d, 0x1856830c, 0x820b5fab, 0x233522e6, 0x05656527, 0x22089a43, 0x84140a14,
0x82de844d, 0x141e24c1, 0x820a3c3c, 0x08775011, 0xc3846e20, 0x7705f763, 0x23200af1, 0x0962281b, 0xb443c582, 0x826e2005, 0x3c142155, 0x9c830483,
0x45056b79, 0x7f5405ca, 0x0000240a, 0x41140003, 0x5364061b, 0x53998207, 0xb74a0959, 0x7d272009, 0x332505ad, 0x3315012b, 0x63da1850, 0x140a2108,
0x8208a642, 0x0a0a21fd, 0x2105f45c, 0x20833246, 0x18083350, 0x4d09eb54, 0x234705e5, 0x82372006, 0x283c210d, 0x14204082, 0x2005ae4f, 0x21fd8246,
0x0082461e, 0x00239082, 0x821e0002, 0x00502406, 0x5b05003c, 0x372009e9, 0x1e2ada82, 0x0a320a28, 0x14281e1e, 0xd35c143c, 0x20278905, 0x2b518300,
0x321e2335, 0x3c3c280a, 0x01000028, 0x17564388, 0x1e1e290c, 0x141e321e, 0x28140a1e, 0x2389fa82, 0x97630720, 0x82232008, 0x141e211d, 0x5a825f82,
0x14000226, 0x3200ecff, 0x09258782, 0x00000d00, 0x055c4117, 0x3520c182, 0x1422bd82, 0x46820a0a, 0x0a1e1e23, 0x204e820a, 0x204d8250, 0x83b78200,
0x222f8306, 0x84070003, 0x84232051, 0x21748229, 0x5382141e, 0x9782d482, 0x14205385, 0x5189d983, 0x4b844d85, 0x09975b18, 0x03001422, 0x14214585,
0x873f821e, 0x003c235f, 0x67460046, 0x47332005, 0x232108c3, 0x82918417, 0x21028345, 0x48823c14, 0x96821420, 0x20089b46, 0x6ff31950, 0x0bb34808,
0x15203382, 0x5306ad49, 0x0a2108ad, 0x42388314, 0x0a200695, 0x21054343, 0x83550004, 0x09777e07, 0x200b8d65, 0x054d7323, 0x35333523, 0x05c95523,
0x0a320a2a, 0x320a1e0a, 0x0a321414, 0x0a21ba82, 0x0557471e, 0x1e463c25, 0x1832140a, 0x20087f48, 0x2093866e, 0x85701a1b, 0x08434e08, 0x99821520,
0x23245384, 0x0a643315, 0xd8854a82, 0x14145a23, 0x0751535a, 0x0a236182, 0x193c4614, 0x220cc3c5, 0x500d0046, 0xa7610819, 0x45272008, 0x23210610,
0x82e38335, 0x421e2089, 0x0d8205b5, 0x320a0a22, 0x32230582, 0x1a003c0a, 0x270b5b73, 0x00180014, 0x013b3500, 0x46081344, 0x1720083e, 0x4605725a,
0x32210596, 0x2148820a, 0x99841e46, 0x3c0a142d, 0x00001432, 0x000a0001, 0x82500000, 0x830b20d7, 0x052346d3, 0x1422cb83, 0x7482460a, 0x0a3c1e25,
0x4d320a14, 0xff21050f, 0x252784f6, 0x0021001d, 0xae763300, 0x08244408, 0x53056e45, 0xab840862, 0x05827685, 0x72096857, 0x142008e5, 0x1f207b8a,
0x08a3b218, 0x14edce19, 0x23255a82, 0x1e0a143c, 0x0562531e, 0x09e03a19, 0x5d834c86, 0x0120a382, 0xcb85c982, 0x4f821020, 0x021a3b20, 0x33250916,
0x23353315, 0x22868228, 0x820a0a3c, 0x824620fd, 0x82322006, 0x822e83fe, 0x20d782ff, 0x19d98246, 0x42085d28, 0x8a840762, 0x8209c564, 0x6b1420f1,
0x0a200594, 0x20069c6b, 0x06db470a, 0x2009ab78, 0x83d38200, 0x82502055, 0x8211204f, 0xadcf1883, 0x21538208, 0x096b2335, 0x2c808205, 0x3c1e0a1e,
0x320a280a, 0x0a460a28, 0x8f531b14, 0x00502209, 0x08bb631e, 0x8206d544, 0x086b6c34, 0x32204084, 0x830b4a46, 0x822820cd, 0x140a228d, 0x230a8214,
0x0a32280a, 0x82063f50, 0x3c002554, 0x07004600, 0x09efe218, 0xa77c1e20, 0x413c2005, 0x46200827, 0x18201f82, 0x53461f82, 0x02cd1805, 0x05a9450b,
0x14216982, 0x06296a0a, 0x75821420, 0x0d82b282, 0x5c836a82, 0x41020021, 0xbf42086b, 0x0c466e05, 0x35332722, 0x24058b4f, 0x140a3223, 0x853b831e,
0x1828204c, 0x1b089a9d, 0x200c03e1, 0x5fde1846, 0x41152008, 0xd5460727, 0x05344f06, 0xbb843520, 0xe6834682, 0xeb733220, 0x460a2106, 0x6f415382,
0x00462209, 0x08db5719, 0x1043448a, 0x3c232106, 0x0a203d82, 0x07824683, 0x2d411e20, 0x20128405, 0x068f5b14, 0x00ecff27, 0x00460050, 0x08ad591d,
0x0d88a218, 0x15248e84, 0x3c231523, 0x2b57cd83, 0x430a2005, 0x10840593, 0x12420a20, 0x8b002005, 0x830f208f, 0x23d08b8f, 0x14322315, 0x77822782,
0x563c1e21, 0x2f420756, 0x6d462008, 0x2f8a0573, 0x46212d85, 0x412c850a, 0xa78606b7, 0x8b731120, 0x09f14308, 0x82143521, 0x21608385, 0x5d820a1e,
0x500a3222, 0x0857bd19, 0xd982ec20, 0x18071f41, 0x410e3f40, 0x152105fc, 0x483a8423, 0x3c210836, 0x08a94a0a, 0x33512820, 0x082f4208, 0x4c454285,
0x53761805, 0x140a220a, 0x05755514, 0x20053945, 0x0502660a, 0x00200583, 0x83080f48, 0x064f5043, 0x09056219, 0x0a3c0a22, 0x0a237e82, 0x8314460a,
0x866f85b8, 0x4b1920e7, 0x23210887, 0x1d651815, 0x3335240c, 0x6d322335, 0x46250c0e, 0x0a281414, 0x22848228, 0x8c141414, 0x18132043, 0x700875d7,
0x23210b3b, 0x20748328, 0x82348228, 0x500a222e, 0x86ae830a, 0x24ad8237, 0x00460050, 0x06434424, 0x660f1a54, 0x828208f7, 0x94823520, 0x04423a83,
0x6b088608, 0x2442080a, 0xaf521806, 0x050b470d, 0xbb699782, 0x82152007, 0x5f6b1add, 0x0a322515, 0x3c0a320a, 0x24064361, 0xff0a0002, 0x219982f6,
0xcb4f0046, 0x11046205, 0x23333525, 0x83143315, 0x831420da, 0x70de82d6, 0x5b180856, 0x4b1808bb, 0x112307d3, 0x66001500, 0xd518054b, 0x27200c48,
0x3c205582, 0x0941f618, 0x500a1422, 0x0955bc18, 0x22087346, 0x865a0050, 0x108b6683, 0x27153326, 0x3c233533, 0x2205b94d, 0x8214143c, 0x832820c1,
0x820a2000, 0x43028353, 0x5a200a23, 0x1807b343, 0x200ae251, 0x051a4a23, 0x33208482, 0x8208d141, 0x0a282380, 0x4a840a46, 0x7d323221, 0x7f4405db,
0x005a2107, 0x3720c784, 0x0eeb8e18, 0x83352321, 0x14322285, 0x233b8214, 0x0a280a32, 0x1e220882, 0x83822828, 0x0a0a5024, 0xc78c1e28, 0x85851520,
0x09529418, 0x47058343, 0xc98205cf, 0x14226f82, 0x05823c0a, 0x28141e25, 0x82320a0a, 0x25438200, 0x3c140a0a, 0x4782143c, 0x09f7d718, 0xe5190d20,
0x61510901, 0x21858309, 0x45873307, 0x8e834620, 0x44871e20, 0x1a3c5a21, 0x47082b75, 0x64230583, 0x19001700, 0x4a093701, 0x3520067b, 0x22051141,
0x5d141e23, 0x428305a9, 0x825a1421, 0x05984f7f, 0xf7468383, 0x185a2007, 0x1809fd6c, 0x450f2d7c, 0x23200512, 0x2821d482, 0x2049820a, 0x05c3780a,
0x1e0a1422, 0x14200d84, 0x2005fd42, 0x43998232, 0x96270903, 0x23006400, 0x48370000, 0x596f0512, 0x20908509, 0x05204515, 0x23052347, 0x0a321482,
0x9b830283, 0x51820a20, 0x3c21e282, 0x055a5646, 0x2408ea68, 0x0100003c, 0x83e78300, 0x821b2057, 0x1bc11857, 0x08636b0b, 0x15225683, 0x4d866423,
0x280a2824, 0x58821428, 0x0a5a5025, 0x84503c3c, 0x661420f3, 0xff220533, 0x478300e2, 0x47841720, 0x8409ff57, 0x05c941e6, 0x140a1426, 0x1e320a14,
0x41830582, 0x1e203e83, 0x5a214482, 0x05cb6678, 0xdf833f86, 0x15203d84, 0x7b850582, 0xd2443520, 0x09735205, 0xcf820982, 0x49831420, 0x480a3221,
0x0a210784, 0x8258825a, 0x21e5824f, 0x58830a5a, 0x20059f45, 0x8a57860a, 0x188d83df, 0x830abe74, 0x782321e9, 0x4183ca84, 0xa6822820, 0x320a1e22,
0xe1849682, 0x5d3c1e21, 0x282b0547, 0x6e000000, 0x07008200, 0x88000f00, 0x231521e3, 0x0f49b918, 0x0a0a4625, 0x181e2828, 0x2009d8b8, 0xcfb81850,
0x05936d0d, 0x32006e22, 0x2005ab43, 0x18c98233, 0x470d17c6, 0xbe1806e8, 0x4f820c73, 0xc7411420, 0x02002705, 0xe2ff0000, 0x3f824600, 0x87820b20,
0x4a079942, 0xd118055a, 0x0a200edd, 0x2f860082, 0x28006e22, 0x13202d82, 0x09878818, 0x20074f43, 0x49d21807, 0x0a142116, 0x084b6618, 0x4c18ab83,
0xc7180959, 0x3f830ea9, 0x09b3c918, 0x0282fb82, 0x09f3ea18, 0xba898082, 0x68190a20, 0x322008e3, 0x086d6a18, 0xe818bf88, 0x152509a5, 0x3c3c3c23,
0x2243830a, 0x820a0a28, 0x1e1422f4, 0x18fa8628, 0x200867bc, 0x8bbd1828, 0x18172015, 0x230a77c0, 0x32320a3c, 0xad4e0283, 0x82142009, 0x05354500,
0x08c3cc18, 0x17003227, 0x1f001b00, 0xefd21800, 0x05c0450c, 0x19056159, 0x83090d40, 0x82da8389, 0xc1c01807, 0x85da8a08, 0x00e222db, 0x0697415a,
0x35441320, 0x1523210a, 0x18061377, 0x83082b40, 0x859887df, 0x229885e1, 0x18000a1e, 0x41086fd7, 0x172005af, 0x0d6d7118, 0xab721520, 0x82372006,
0x06565c51, 0x91822820, 0x03820283, 0x0020e188, 0x2008076d, 0x47bf186e, 0x37002108, 0x830eb941, 0x2099838d, 0x05c56764, 0x320a0a22, 0x0a208485,
0x5020d684, 0x0937ce18, 0x70184620, 0xad4108d7, 0x82352008, 0x2003837f, 0x26c9853c, 0x1e140a0a, 0x830a3c28, 0x450020be, 0x6e20057b, 0x0b207782,
0x84057142, 0x054b4477, 0x73832320, 0x9d413784, 0x20668208, 0x84b7830a, 0x0005213d, 0x20051f4e, 0x18398450, 0x4309ef4c, 0x6d420c23, 0xf9e01807,
0x06754209, 0x82052e42, 0x84c7848b, 0x205583c5, 0xd7e5180a, 0x00002208, 0x27e31800, 0x09d7450b, 0x37209784, 0x0a53ce1a, 0x1420d787, 0xde869e84,
0x33484883, 0x1bde1805, 0x42502007, 0xb9190887, 0xcf4809f9, 0x06894205, 0xe6183520, 0xa0861221, 0x5389f485, 0x2205d75d, 0x825a006e, 0x411f20fb,
0xce1809f5, 0xdd1807c5, 0xb5410f5b, 0x54dd1809, 0x1af3860a, 0x82098f2e, 0x820020f1, 0x00642251, 0x0b8f4207, 0x5e489583, 0x87ed840b, 0x1e142246,
0x057d4328, 0xcf47ea82, 0x21938305, 0xe18e000b, 0x6f438f8f, 0x868d8907, 0x0a1e21e0, 0x08f36218, 0x00000023, 0x7801826e, 0x89820a49, 0xf26f3320,
0x0829460a, 0x5a193720, 0x2320097b, 0x23210b82, 0xc3c81817, 0x05e94116, 0x0e74f218, 0xff842820, 0xe1186c82, 0x4a192b8f, 0xc9180a8f, 0x63840ed7,
0x2405b456, 0x320a0a32, 0x425e860a, 0x6e210703, 0x13e91800, 0x18618c26, 0x85119ff3, 0x18678266, 0x880912e9, 0x830620c8, 0x0e3b41cc, 0xc9182f20,
0x372021f9, 0x20068542, 0x06854215, 0x26054d51, 0x1e14140a, 0x823c0a32, 0x841e206f, 0xe70f196d, 0x0a1e2108, 0x850a2e60, 0x0a1e227b, 0x207b8500,
0xd3e2185a, 0x1825200c, 0x8f1715cb, 0x21cb1871, 0x416b8a0a, 0x6682104c, 0x6e206786, 0x4f41e582, 0x662b2009, 0x237b094d, 0x4227200b, 0x6d90061d,
0x8b0e5541, 0x12584172, 0x3e1a7583, 0x502209cb, 0x98183100, 0x15200819, 0x82066848, 0x18332074, 0x180d54f2, 0x85088f42, 0x05f45221, 0x37153325,
0x18333523, 0x2207d94a, 0x820a3250, 0x51282000, 0x66180815, 0x0984096c, 0x180a1e21, 0x500cfa41, 0x6b4409a6, 0x431e2006, 0xff200577, 0x19054b46,
0x8e08cd7a, 0x20788386, 0x228c8323, 0x87463232, 0x08294e69, 0x8805d141, 0x006e2247, 0x07e54632, 0x1375d918, 0x8d05e946, 0x8214204b, 0x45458785,
0x0f460602, 0x05337e05, 0x2d004627, 0x35003100, 0xd3d91800, 0x41ad822b, 0x1e2207af, 0x23410a3c, 0x1414210e, 0x82079b42, 0x32491866, 0x091e410b,
0x27064644, 0x00000300, 0x5a00ecff, 0x44063f49, 0xb94a0995, 0x05674605, 0x35073322, 0x1805cc45, 0x500abdc4, 0x14200567, 0x0a205084, 0x4b867f85,
0x4b826e20, 0x0d51f018, 0x15204b8c, 0x07484a82, 0xc9c81807, 0x0d6f460c, 0x18087441, 0x21082781, 0x2741006e, 0x41392007, 0x05452c29, 0x37332105,
0x33230782, 0x41333523, 0xde18172d, 0xaf410c45, 0xdade1805, 0x840d820d, 0x0d2f418b, 0x42075b46, 0x7f490ed8, 0x0a35410b, 0x6e183c20, 0x3a4109f7,
0x05435407, 0x49088b49, 0x2b760743, 0x41578e07, 0xda180b3d, 0x322010f7, 0x540a9d49, 0x08850882, 0x00060022, 0x43056b42, 0x41220997, 0x1b4f4500,
0x18232007, 0x62083cd9, 0x9b430ad0, 0x15332317, 0x9e43022b, 0x33272309, 0xa2432315, 0x2081821e, 0x06c34a28, 0x53084c79, 0x14200ae1, 0x1e21b586,
0x181d820a, 0x1808274b, 0x2008fbf9, 0x052b6033, 0x0b82988b, 0x1905ff4c, 0x2008471f, 0x08b54328, 0x5f415888, 0x4a078707, 0x32270a0b, 0x21001d00,
0x49002500, 0x9d42057f, 0x05064e10, 0x09b33419, 0x5d882820, 0x1805c743, 0x200f3cd5, 0x8262860a, 0xff1421bb, 0x091fe618, 0x0c0bc818, 0x0a874718,
0xe34b2320, 0x25e61807, 0x078c500b, 0x490a6345, 0x032a051b, 0x00001400, 0x50006e00, 0xe3691500, 0x05094106, 0x460b8b54, 0xe4180697, 0x70491225,
0x820a2008, 0x50142100, 0x18083758, 0x202e7fe4, 0x8b618227, 0x0af756ad, 0x6420b088, 0xb2825c82, 0xaf860220, 0xaf826e20, 0xe5182520, 0x31491b3d,
0x485b8c0b, 0x0a200af2, 0x83055a41, 0x441e20b8, 0x042206b0, 0xee181400, 0x00200eb7, 0x1751ef18, 0x18078343, 0x830befe5, 0x21b28445, 0xee181414,
0x00200bb1, 0x08ffd218, 0x13006424, 0xe6182300, 0x8f5f188d, 0x49578a0c, 0x0a2008ed, 0x46205787, 0x21058a4a, 0x0082000a, 0x03820120, 0x6e000025,
0x41006400, 0x51590711, 0x49232005, 0x352105ab, 0x0e7e5333, 0x23153322, 0x1121d618, 0x58085c5f, 0xfb180a66, 0x502008bb, 0x735e5b82, 0x424b8f05,
0x32200a2d, 0xe852fc83, 0x500a2209, 0x08ba580a, 0xad821420, 0x0b07d118, 0xb9412120, 0x123d680d, 0xe318a382, 0x1e200f97, 0x9305c442, 0x826e209f,
0x4b3520fd, 0x7b500c85, 0x29e3180b, 0x140b411b, 0xbe82c485, 0x0a21b782, 0x05ff481e, 0x0e82dc88, 0x1b410b83, 0x606e200a, 0x332006eb, 0x480e0058,
0x4042076e, 0x42938a07, 0x304105e1, 0x180e820e, 0x201479e3, 0x086f580a, 0x3120e783, 0x410c3b41, 0xe39e07e9, 0x870f4b41, 0x0a534179, 0x820ed145,
0x05bb50df, 0x39227383, 0x7b193d00, 0xc9830ccb, 0xfb85718e, 0xe5181520, 0xad480ef3, 0x1e282309, 0xc8520a0a, 0x24f88908, 0x14140a0a, 0x201a820a,
0x1867410a, 0xdd192b84, 0xcb480a4f, 0x8e372006, 0x6c798c7f, 0x958208a1, 0xab43ab84, 0x18352005, 0x221051f9, 0x8a1e0a1e, 0x0f7d4194, 0x0a209c82,
0x64249c82, 0x000a640a, 0x08239a18, 0x20056b42, 0x09dd4539, 0x420bf541, 0x25481801, 0x05114205, 0x32322322, 0x20140941, 0x08c6491e, 0x420b1f48,
0x0741076f, 0x87898208, 0x8be71883, 0x07db5038, 0x42110744, 0x14200806, 0x08e38118, 0x20170143, 0x08ef456e, 0x00259282, 0x006e0050, 0xdb4f1829,
0x1e9d4108, 0x2008fa5c, 0x73dd1833, 0x119d4109, 0x183c4621, 0x210a064b, 0x9e410a0a, 0xcc08190f, 0x0a1e2108, 0x2008c750, 0xd34c1878, 0x03e71808,
0x07e2590c, 0x181b9f41, 0x410affd2, 0x1682169e, 0x1b1ef118, 0xbf6a7820, 0xecff2709, 0x28006e00, 0x37591500, 0x0a666208, 0x15331524, 0xd24a5a23,
0x82322005, 0x20518431, 0x05a05e28, 0x02000024, 0x3b840a00, 0xdf465a20, 0x52172005, 0x3d8e0505, 0x8b0fcd4f, 0x4628204d, 0x335f09df, 0x141e2205,
0x08215014, 0x0917d618, 0x20836350, 0x06cb4704, 0x3d197820, 0x002208e1, 0xcc4d3337, 0x09325e05, 0x2305f372, 0x23353315, 0x46211b83, 0x05c64b28,
0x280a1e26, 0x1e1e140a, 0x20059a56, 0xf4e5180a, 0x0a322e08, 0x00000a46, 0xff1e0001, 0x006e00f6, 0x063d7a28, 0x44081957, 0x1e20058d, 0x0b55f718,
0x3c830a20, 0x087fd919, 0x32004622, 0x21058158, 0x93462333, 0x06435808, 0x15233725, 0x5e323233, 0x14200a3a, 0x2005965d, 0x0bfb6614, 0x50006e25,
0x19001b00, 0x5f0af1ab, 0x511805e3, 0x35230c24, 0x82271523, 0x82372003, 0x0a0645d2, 0x4e821420, 0xda461420, 0x21ce8206, 0x10820a0a, 0x4205b867,
0xe01909db, 0x4e4b08e7, 0x21588f08, 0x59863723, 0x117fe418, 0x11fbe318, 0x4b010021, 0x142606b3, 0x00000b00, 0x8d183317, 0x2327087d, 0x0a505014,
0x825a5a0a, 0x0a1e217f, 0x25053768, 0x6e00e2ff, 0x27823c00, 0x15001122, 0x35202b8d, 0x23218383, 0x883d8237, 0x82348235, 0x820a20cd, 0x0a322106,
0x00210582, 0x08e74107, 0x09637c18, 0x5405036b, 0xe7420fe3, 0x4c4d8405, 0x5d830be1, 0xff185a20, 0x784b0fd3, 0x05454108, 0x460a1425, 0x823c1446,
0x0a32220b, 0x20018228, 0x0546541e, 0x00040022, 0x20059b44, 0x06934b82, 0x19002921, 0x56229f00, 0x00190799, 0xaf4311a7, 0x48282005, 0x14210983,
0x4487820a, 0x6b860598, 0x82006e22, 0x0d1be718, 0x09a20419, 0x20138949, 0x0a6d5627, 0x210fa547, 0x094b1e1e, 0x2276890d, 0x8482140a, 0xb7dc18f6,
0x006e2208, 0x2d6d1913, 0x6652180c, 0x1823200d, 0x190f67de, 0x2009ad76, 0x05c95f14, 0x54836986, 0x851e1421, 0x05554367, 0x60050a7f, 0x2821057f,
0x186f880a, 0x190a3bd4, 0x4a088fd9, 0xb5430abd, 0x23352105, 0x2008b743, 0x8367880a, 0x186e185c, 0x20628707, 0x2408825a, 0x143c0a32, 0xdfff1800,
0x225f8308, 0x181b0017, 0x201d85dd, 0x8e558a46, 0x0a1424b4, 0x82001e3c, 0x18052000, 0x201043ea, 0x081f6223, 0x09dc9618, 0x00192320, 0x5c1a0933,
0x1e2309bb, 0x19281e0a, 0x180a3b00, 0x8308ba7d, 0x48af82c9, 0x002107ce, 0x09235a00, 0x21001d22, 0x7b41b182, 0x5f152006, 0x0b820be4, 0x2005a148,
0x181d8237, 0x20083046, 0x2363840a, 0x1e1e1e32, 0x62825084, 0x840a1e21, 0x59322072, 0x1e2905cf, 0x6e00e2ff, 0x13005000, 0x05855500, 0x0adb4618,
0x59424d83, 0x18372005, 0x190e6560, 0x190df500, 0x840e2420, 0x0555420e, 0x21086b5a, 0x4c190046, 0x8c60098f, 0x324e180a, 0xcfe91808, 0x065f510d,
0x82092369, 0x05944552, 0x0a0a0a22, 0x84083348, 0x82d58267, 0x33b218cf, 0x05a74c08, 0x32004622, 0x07f9f61a, 0x22089358, 0x4c281e14, 0x28220ac7,
0xe34a0b00, 0x15332108, 0x200bf15a, 0x2e008214, 0x00090000, 0x00e2ff0a, 0x00780064, 0x183f0035, 0x200e0bad, 0xcb491800, 0x0521450e, 0x08094e18,
0xe7444d82, 0x058b4b05, 0x86081764, 0x24278235, 0x33152307, 0x20f18227, 0x209c8237, 0x84078207, 0x20138203, 0xe52b1a17, 0x08b7450a, 0xde851420,
0x09820f83, 0x8205c441, 0x53282008, 0x8e7b0984, 0x841e2005, 0x18142027, 0x850885e9, 0x0a14211f, 0x14212883, 0x5905193c, 0x211f8208, 0xdf9f0a1e,
0x8205cd46, 0xe6ab18a9, 0x46352009, 0xc05f0666, 0x4ebb180b, 0x08ff430c, 0x83231521, 0x823720c7, 0x352724cf, 0x82171523, 0x86372007, 0x20f783db,
0x42d88846, 0x1189088f, 0x2005ee46, 0x06e95b0a, 0x2109db4d, 0xb6823c0a, 0x860ba44a, 0x20f383e6, 0x20178314, 0x884c8264, 0x053b561f, 0x45059b6b,
0x55180527, 0x35210af1, 0x053f5933, 0x7d503520, 0x05b94109, 0x2305ad41, 0x15333733, 0x7146c983, 0x07c54408, 0x20100a46, 0x20c9820a, 0x63ba8632,
0x3222054a, 0x754b280a, 0x23e48506, 0x5a5a3214, 0x32279d82, 0x460a5014, 0x18000014, 0x27084be1, 0x000f006e, 0x002b001f, 0x5f06af57, 0x818208a2,
0x087d7319, 0x5606594a, 0xb81805d7, 0x6f8509d6, 0xec611e20, 0x8c5c8206, 0x645a2796, 0x0a140a0a, 0x05833c32, 0x14466e22, 0x14219582, 0x089f790a,
0xa7694620, 0x2317231b, 0x2e833335, 0x22062e42, 0x46141414, 0x1e200997, 0x1351bb83, 0x091f6a05, 0x0c01e019, 0x3c333522, 0x08765219, 0x2005cb61,
0x6833833c, 0x1f2209b3, 0xe0430000, 0x08da6905, 0x5e055664, 0x0b840572, 0x9118c884, 0xd984086c, 0x14201284, 0xc7845984, 0x0a204f83, 0x3c20c582,
0x8608bb43, 0x8246204e, 0x200282af, 0x2635831e, 0x01000014, 0x1b000a00, 0x82094bc0, 0x3c462323, 0xa41a1e3c, 0x1b200cbf, 0xbc508f85, 0x0ebc6717,
0x18089f42, 0x82080752, 0x21878264, 0x47840046, 0x08c3c318, 0x0b277c18, 0x82231521, 0x0c564d01, 0x0a20458c, 0x20079741, 0x21478214, 0xd36b0032,
0x20a98205, 0x22ad8515, 0x48283c3c, 0xcb82065b, 0x82ecff21, 0x005a2223, 0x0e1d4f23, 0x0c37c218, 0x2109d469, 0xe0650a1e, 0xc2ca1805, 0x62858309,
0x1b820639, 0x0f631782, 0x0046260b, 0x00240020, 0xa3a01828, 0x02811808, 0x05f74508, 0x33300582, 0x3b353315, 0x07231501, 0x17233533, 0x46331523,
0x1e21c883, 0x20db8514, 0x05b8631e, 0x081ac718, 0x8408ba54, 0x20688285, 0x08b76a03, 0x63000f21, 0x131905c1, 0x35200c45, 0xdb6bef82, 0x321e2207,
0x054c5b3c, 0x1d480a20, 0x320a2205, 0x2157830a, 0xd2820a0a, 0x18040021, 0x2008a765, 0x06095e07, 0x82055142, 0xb55319f8, 0x0a28270f, 0x0a50460a,
0xa283140a, 0x0a200b82, 0x70066d61, 0x8b5405e1, 0x19822007, 0x8207670c, 0xe55918d5, 0x670c190a, 0x825a2007, 0x83418283, 0x8378203b, 0x0c934880,
0x47001921, 0xe3180583, 0x5f180cc5, 0xdf8208fb, 0x4c149148, 0x494c074a, 0x14142106, 0x2824a382, 0x000a3c0a, 0x08130319, 0xfb4a5a20, 0x6d451a07,
0x0889440c, 0x820a3221, 0x873c2000, 0x460a2299, 0x2049833c, 0x05974e0a, 0xfd18ff20, 0x27220743, 0xdf182b00, 0xf284239f, 0x82372321, 0x825382ab,
0x0aa94258, 0x1e205682, 0xdf18fa82, 0x46210f90, 0x4f6a830a, 0x335f0603, 0x000d2105, 0x2006d77b, 0x05bd5535, 0x2006535c, 0x0501603c, 0x821e1421,
0x1e142245, 0x60388528, 0x11220b03, 0x7b471500, 0x5bde180d, 0xa1081909, 0x203d8408, 0x2041830a, 0x18408514, 0x2408fb8f, 0x005a006e, 0x20e38207,
0x05c84b35, 0x0a0a2826, 0x46500a46, 0x4e05a344, 0x322005d7, 0x180a6560, 0x200a7287, 0x5f9f8207, 0x11600923, 0x068b4309, 0xecff0023, 0x05374800,
0x41410b20, 0x20d58305, 0x093f6315, 0x1424ca82, 0x0002000a, 0x6e212783, 0x056f6200, 0x47054161, 0x3763062d, 0x9c88180f, 0x2bfb1808, 0x18f98309,
0x6b082f54, 0x352009d0, 0x67464182, 0x0e814e07, 0x274b1e20, 0x190a2005, 0x22087f1f, 0x5b320a28, 0x00250677, 0x006e0000, 0x016f183c, 0x0fe74c08,
0x20059341, 0x49f18823, 0x1260083f, 0x820a2007, 0x08cf4140, 0x7f634620, 0x054f5806, 0x0a135e18, 0x600af760, 0x2b4e0507, 0x603c2009, 0x054106eb,
0x060b420c, 0x6d632320, 0x61142008, 0x891809cf, 0x8362085b, 0x07ad5b09, 0x0ecbe118, 0x09afdd18, 0x8306c961, 0x0cc761f4, 0x56835020, 0x7b4d0a20,
0x37711808, 0x0c916209, 0x95624787, 0x630a2008, 0x3d86055c, 0x24cbe118, 0xa1624388, 0x86d5880b, 0x00022149, 0x180b075d, 0x212dc9e1, 0x805a012b,
0x13045d06, 0x0aa2f218, 0x8209084a, 0x208082fb, 0x20008200, 0x0cfb5c02, 0x147be518, 0xbf5bbf83, 0x0a384a0a, 0x280a0a22, 0x42058746, 0x322405d3,
0x1c001800, 0x5a089943, 0x01460d53, 0x23152105, 0x220aee5c, 0x181e0a0a, 0x200c9af1, 0x2092830a, 0x0a074101, 0x212d0541, 0xf3185023, 0xef821925,
0x0c735118, 0x6b820a20, 0x01000023, 0x24008300, 0x0032005a, 0x8ab59513, 0x073b42f5, 0x830be756, 0x143141ef, 0xed831520, 0x3f89e98d, 0x83140a21,
0x07ef4175, 0x2d005a23, 0x062d5700, 0x0c775c18, 0x7f081448, 0x6e1808db, 0x9f75080b, 0x41ed9705, 0x502019ef, 0x8206ab41, 0x09277c7e, 0x89088346,
0x33272367, 0xef412315, 0x2243821f, 0x4146006e, 0x325b1eef, 0x94f81805, 0x11ef4108, 0x000a4623, 0x06775101, 0xd3453c20, 0x09594b0a, 0x195bf384,
0x0add5d0b, 0xd3740020, 0x006e2206, 0x8b021950, 0x14b75b1b, 0x21086852, 0xc9820a50, 0xff238382, 0x426e00e2, 0x495b0507, 0x09e55a13, 0x092b0119,
0x02203782, 0x2406875b, 0x00130046, 0x192f5b17, 0x890c7b5b, 0x84fc8240, 0x8600207b, 0x181f207b, 0x2021fff3, 0xeff31832, 0x120a1910, 0x07d3420e,
0xcb826420, 0xf3189182, 0x1e201779, 0x83050d4d, 0x181e204d, 0x850b81f2, 0x2005828f, 0x453f826e, 0x09190859, 0xfd4c0d6f, 0x23152205, 0x20438464,
0x194a861e, 0x210c2401, 0xab4c141e, 0x185a2009, 0x4d0ce35d, 0x2320063c, 0x099f4418, 0x84058547, 0x19372005, 0x8f0a4721, 0x084d4ce9, 0x12d6f418,
0x7c821e20, 0x2006c745, 0x5b6f1964, 0x090b190a, 0x66678318, 0x09410701, 0x5832200b, 0x0b190956, 0x46210911, 0x535e840a, 0x5a200837, 0x18063b55,
0x581e77f4, 0x29410931, 0x18668810, 0x860d74f3, 0x00022168, 0x20050f42, 0x2167823c, 0xcd7e0021, 0x08a37205, 0x2a08847a, 0x35331533, 0x35013b23,
0x19231523, 0x41127b01, 0x2826052c, 0x0a0a140a, 0x9a1b141e, 0x64240c9b, 0x15003c00, 0x60087767, 0x3520084f, 0x07206186, 0x0a195582, 0x32210d5b,
0x205f8428, 0x09ae4b0a, 0x20088f76, 0x214b826e, 0xfb610019, 0x6f4b9007, 0x4f8d0757, 0x0936e518, 0x08825188, 0x03205382, 0x5020f786, 0x2520f784,
0x9018f9a3, 0xa28208b0, 0x76703220, 0x851e2005, 0x0f0041ae, 0x73483220, 0x00642207, 0x98ff8450, 0x050141b5, 0x0f610b19, 0x0a390319, 0x0a20b688,
0xb7855482, 0x6e200582, 0x08ff0319, 0x41050f46, 0x5b8f1a0d, 0x21091141, 0x66410a0a, 0x85668209, 0x4c02205f, 0x5a2206b7, 0xbf701300, 0x43332008,
0x05830546, 0x180b6541, 0x260e99e6, 0x0a324614, 0x731e0a0a, 0xc7750526, 0x00642406, 0x450f005a, 0x516f0a69, 0x19f78508, 0x210c3112, 0x41870a0a,
0x20093746, 0xa03f826e, 0xa9081987, 0x4145890c, 0x8f6b07e7, 0x62cf8505, 0xdb6f091f, 0x3327250c, 0x23152335, 0x8e052941, 0x8ad282d5, 0x0b8341d8,
0x1920db87, 0x1b1b1319, 0x4d8ae18e, 0xa80ecf41, 0x93ed8e9f, 0x0927469f, 0xfd602120, 0x744b1807, 0x0995560e, 0x23153324, 0xff832335, 0x16194620,
0x285513d5, 0x201d8409, 0x051f6d14, 0x2005c748, 0x0cc74850, 0x0c7b4118, 0x0c2fff18, 0x5f06c142, 0x3c230aaf, 0x18001700, 0x1808a7b5, 0x200a027a,
0x18448315, 0x180c43fd, 0x8208866e, 0x0b774ee6, 0x2920d783, 0xa1057741, 0x183720d9, 0x921a61ff, 0x822820e0, 0xa3061aa9, 0x8413200b, 0x066143ad,
0x42091a75, 0xe98c052f, 0x21095043, 0xc342460a, 0x0050240b, 0x181b0003, 0x200893da, 0x514a8535, 0x2320053c, 0x322bbe86, 0x323c0a0a, 0x0a28320a,
0x821e0a32, 0x0a502246, 0x5dfa8d32, 0x5a2008cb, 0x1f218d82, 0x33f51800, 0x6c372022, 0xf518166f, 0xee820f33, 0x4a000321, 0x64210597, 0x05ef4d00,
0xf6180020, 0x0d1915c5, 0xd34b0ee7, 0x08495405, 0x4785f082, 0x2205b343, 0x6a1f001b, 0xf71821f9, 0x40410f5d, 0x45142006, 0x0d82055c, 0x64058b41,
0x4620077f, 0x2409af5a, 0x35233517, 0x154c5833, 0x35231526, 0x23353337, 0x079d0e19, 0x0a20a082, 0x08414d18, 0x1e200982, 0x18052850, 0x831138f7,
0x079f4d28, 0x41005a21, 0x1d20070b, 0x8217276c, 0x3323217e, 0x1f6c0482, 0x05ad520a, 0x656dbc83, 0x870a2006, 0x0913414f, 0x15412320, 0x07616d1d,
0x18111941, 0x82082669, 0x21aa84a7, 0x7d180a28, 0x5f830907, 0x7107475c, 0x2a411125, 0x20058305, 0x055b4d23, 0x13091c19, 0x20082b5c, 0x0aab4c1e,
0x4707e364, 0x326505b0, 0x07c7420e, 0x5c0e115c, 0xe3640f08, 0x07936657, 0x19001721, 0x20184d04, 0x06844d5a, 0x460a1e21, 0x0a2309e9, 0x64465a0a,
0x462008a7, 0x83059b51, 0x821520de, 0x0a3c25ce, 0x46143c0a, 0x2006a34b, 0x20008200, 0x211f826e, 0xd949000b, 0x05444a06, 0x320a3222, 0x14220282,
0xd04e4646, 0x5b022005, 0x3224064b, 0x19001500, 0x0e096918, 0x18153321, 0x210acdf4, 0x30430a28, 0x0a1e2606, 0x1e14141e, 0x08f75828, 0x6f441420,
0x066b5f0c, 0x4d057041, 0x152609a1, 0x35333723, 0x34841e23, 0x28204082, 0x8405ab51, 0x213f8b0e, 0x8786006e, 0x83873f8a, 0x4388df82, 0x43821e20,
0x191e0a21, 0x18089894, 0x690d3762, 0x00200a4f, 0x61196b61, 0x5a4a0c5f, 0x06b06105, 0xfb443c20, 0x00462109, 0x5005a751, 0x6f530ce3, 0x1b282008,
0x21087be8, 0x9b51006e, 0x0c995105, 0xe55a2720, 0x7161820b, 0x4118058d, 0x6e2308c7, 0x19005000, 0x200aff4a, 0x08e15735, 0x07333525, 0x61233533,
0x1e210a15, 0x0a8d521e, 0xa7443f82, 0x695a2005, 0x09570adf, 0x098f4d0a, 0x52821720, 0x33153723, 0x07404b35, 0x0a1e5027, 0x0a1e1414, 0x23051932,
0x5c528210, 0x3c250837, 0x21001b00, 0x97f51800, 0x0c551808, 0x0721470a, 0x6c822320, 0x33152327, 0x280a1446, 0x224a8328, 0x430a0a14, 0x5e850532,
0x11821282, 0xb74feb82, 0x05ef5c07, 0x5e066b77, 0xed821557, 0x200cf55d, 0x08b35514, 0x820a1421, 0x0001289c, 0x00f6ff00, 0x833c006e, 0x0dfb1899,
0x11615521, 0x4b0f5b55, 0x53830a3f, 0x29002522, 0x6023c355, 0x5f920741, 0xb0840a20, 0x0e021319, 0x0a222782, 0xbb820300, 0x5000ec23, 0x076f7700,
0x53106d77, 0x14200def, 0x54056b54, 0x6b510bf3, 0x08d15009, 0x530c5942, 0x6f840819, 0x80180420, 0x152008f3, 0x096fed18, 0xa5683520, 0x0d6d4808,
0x48050d4b, 0x5b520509, 0x21438305, 0xcc57280a, 0x18142009, 0x200964ff, 0x221b846e, 0x58000a14, 0x19200a1b, 0x08fb0e19, 0x860e9965, 0x0adb5b67,
0x18098965, 0x2308e775, 0x321e1e0a, 0x09826a89, 0xae796c87, 0x29108305, 0x14000300, 0x50000000, 0x874c8200, 0x05ac5708, 0x085e4318, 0x5605d445,
0xc78e09d1, 0x53831e20, 0x7820c489, 0x20055557, 0x20578600, 0x1857826e, 0x20080f94, 0x6b7a1815, 0x437d180d, 0x185b8908, 0x570d39f3, 0xb78c06b8,
0x1e225f8a, 0xb782e2ff, 0x17005a23, 0x19441800, 0x4158820e, 0x15210986, 0x210e8307, 0x7c823723, 0x0a20b98a, 0xf5435482, 0x83142005, 0x463c2100,
0xb9831082, 0x45000a21, 0x5a2007af, 0x23205582, 0x41084b7a, 0x33450fdf, 0x85332005, 0x5950205b, 0x438306de, 0x1e215483, 0x05a95c0a, 0x14235a84,
0x5514463c, 0x471805d9, 0x5a230967, 0x19001500, 0x890cc58e, 0x20a38aae, 0x0a1b4228, 0x6e213b87, 0x06bb7e00, 0x41174b41, 0x3a410d41, 0x1800200c,
0x2208075f, 0x4a0b0046, 0xe94b08b3, 0x35072106, 0x08509618, 0x0a461524, 0x02820a28, 0x2308037a, 0x320a0a32, 0x20055448, 0x18878300, 0x2007e343,
0x1f581809, 0x33352309, 0x2e83143c, 0x20057248, 0xd7691800, 0x7033200c, 0xd15308c8, 0x15232108, 0x33220183, 0x9c423c46, 0x21358205, 0xed820a14,
0x4408f146, 0x40180593, 0x1b200773, 0x2008bb7a, 0x05916833, 0x0b433520, 0x820d8205, 0x33291a47, 0x82808208, 0x830a2048, 0x871e2000, 0x83af8449,
0x00502447, 0x7a110046, 0x23200c67, 0x41824b82, 0x140a5023, 0x842d8228, 0x141422bd, 0x8bab1a28, 0xef401808, 0x07377b08, 0x09f19518, 0x46210982,
0x2234820a, 0x433c2814, 0x1e200669, 0x975e0d82, 0x0050210b, 0x6709134c, 0x71820913, 0x07331524, 0x5f412335, 0x1e0a2305, 0xa7820a14, 0xec441420,
0x21b58405, 0xaf881e1e, 0xaf894620, 0x0d5eb918, 0x24484620, 0x280a2505, 0x140a323c, 0x20050163, 0x1b901800, 0x53778508, 0x4f760827, 0x2079850b,
0x827d8837, 0x0a0a21c0, 0x20062448, 0x0565461e, 0x1e1e1e22, 0x091ba918, 0x1720ff88, 0x08714818, 0x1a052f61, 0x850ca929, 0x4d4b82c4, 0xd28207c3,
0x47820a20, 0x200ca35f, 0x495a180f, 0x05ff4107, 0x15333522, 0x07240182, 0x46152335, 0x84827f82, 0x32208785, 0x4518d882, 0x635d07e3, 0x00462105,
0x0aaf4218, 0xfc723b83, 0x85398305, 0x833220c7, 0x20c38533, 0x82c28246, 0x181e2009, 0x830bd3a5, 0x4113203f, 0x99180cf3, 0x462008e5, 0x8406e142,
0x820a2080, 0x14142146, 0x0bb36418, 0x7b069348, 0x394105d5, 0x0a462105, 0xe5836d82, 0x281a0883, 0xa3830b4b, 0x0ca36c1b, 0x3c3c4626, 0x281e1e28,
0x44189184, 0x09200c7f, 0x3e488b84, 0x82462006, 0x3c142523, 0x1e0a143c, 0x0aab6718, 0x13735b18, 0x23353325, 0x82463335, 0x0a2822a2, 0x207f8214,
0x22ad831e, 0x47320a0a, 0x0a2006b7, 0x27416182, 0x1a838305, 0x220f4f2a, 0x42461e1e, 0xb3430653, 0x272a1a07, 0x905e8216, 0x82fd84d3, 0x9b251a7b,
0x1414210d, 0x084f4118, 0x17207783, 0x099d5918, 0x82080352, 0x33152485, 0x4c463315, 0x0a220890, 0xe7830a0a, 0x4106ed42, 0x05200c13, 0x2d833f84,
0x28143c22, 0x0a1fe518, 0x0a37251a, 0x8305ed43, 0x23172251, 0x258f8235, 0x0a323335, 0x5c82140a, 0x03821e20, 0x141e1429, 0x0a0a4632, 0x180a3232,
0x8309b769, 0x1813203b, 0x41084f47, 0x61450613, 0x82502005, 0x843b8432, 0x82282004, 0x1e0a2139, 0x180cab42, 0x4311fbaf, 0x28200731, 0x90183284,
0x7b410ca3, 0x1f2d1a06, 0x05a34208, 0x31840720, 0x30829782, 0x1e0a2823, 0x06d44246, 0x4305a36c, 0x152005d7, 0x6208ff49, 0x1522083e, 0x37832733,
0xed181420, 0xe18308ed, 0x14236d84, 0x8c323214, 0x5e0d20a3, 0xd98706a5, 0x3b872320, 0x0a212982, 0x206e820a, 0x8374831e, 0x45368208, 0x995c0a8b,
0x064b410d, 0x08734418, 0x22064745, 0x830a0a1e, 0x180682e9, 0x8209ba4e, 0x8a002093, 0x43072047, 0x46240953, 0x3c141414, 0x47180082, 0x87660cab,
0x103b4207, 0x478b2882, 0x59440f20, 0x08fb7e08, 0x0e444620, 0x207d8308, 0x20f88332, 0x086f6101, 0x1808cb43, 0x2409d942, 0x33353315, 0x209e8250,
0x82038214, 0x1414213a, 0x32220482, 0x69181e32, 0xd3620baf, 0x08fb5b05, 0x09444418, 0x20058346, 0xf3261a15, 0x33281a27, 0x0a28231d, 0xf8441e1e,
0x43af8505, 0xa182091b, 0x39453520, 0x84332005, 0x08f94671, 0x280a0a23, 0x20e5833c, 0x79b48228, 0x3f830a58, 0x96001422, 0x43052f59, 0x33830683,
0x83089153, 0x1496264d, 0x140a1432, 0x71058514, 0x45820800, 0x376c0020, 0x00e62406, 0x5f03005a, 0x1b250601, 0x33002700, 0x21e41b00, 0x78152008,
0x1720052b, 0x8206b468, 0x0723224e, 0x18651833, 0x1c93180c, 0xd2142308, 0x548264d2, 0x0a320a2b, 0x140a780a, 0x140a1e0a, 0x18048296, 0x24074977,
0x5a5a280a, 0x481e823c, 0x282105b2, 0x09e56628, 0x00000a2c, 0x00000300, 0x5000f6ff, 0xef186400, 0x708308cf, 0x081b5418, 0x33217084, 0x230f8207,
0x23153327, 0x20054f47, 0x8463820a, 0x505022d5, 0x55a21850, 0x14282308, 0x4e826e64, 0x00010029, 0x0028000a, 0x83320096, 0x23372659, 0x8c963335,
0x05fd518c, 0x03831d83, 0x04821820, 0x03823020, 0x0000b424, 0x03823401, 0x03824c20, 0x03826420, 0x03827c20, 0x03829420, 0x0382ac20, 0x0382c420,
0x0382dc20, 0x0000f424, 0x03820c02, 0x03822420, 0x03823c20, 0x0382b820, 0x0382d020, 0x8300e821, 0x0300215e, 0x03204b82, 0x03214b82, 0x200f8248,
0x200382c8, 0x280382e0, 0x040000f8, 0x04000010, 0x20038228, 0x20038240, 0x20038258, 0x20038270, 0x83038288, 0x2503821b, 0x00002c05, 0x03825005,
0x0000a424, 0x03820c06, 0x03829820, 0x07206b82, 0x07240b82, 0x07000044, 0x07208b82, 0x07258382, 0x080000ec, 0x82038210, 0x8208204b, 0x7808214b,
0xbc200b82, 0x67820382, 0x43820920, 0x00740925, 0x82a80900, 0x240f8203, 0x0000240a, 0x216b820a, 0x0782b00a, 0x0b244b82, 0x0b000018, 0x0b219782,
0x820782a0, 0x1c0c254b, 0x600c0000, 0x2f820382, 0x00e40c24, 0x2f820d00, 0x825c0d21, 0x217b8207, 0x0782c00d, 0x0e201382, 0x0e202382, 0x0e257f82,
0x0e00006c, 0x20038294, 0x240382d4, 0x0f0000f0, 0x82038228, 0x820f203b, 0x820f2013, 0x0410284b, 0x40100000, 0x82100000, 0xb810213b, 0x7f820782,
0xa7821120, 0x6f821120, 0x13821120, 0x00c81125, 0x82081200, 0x20378203, 0x21378212, 0x0b828012, 0x12209782, 0xd3821783, 0x7b821320, 0x00541325,
0x828c1300, 0x20cf8203, 0x20af8213, 0x20138214, 0x258f8214, 0x00008414, 0x0382b414, 0x15208f82, 0x15241382, 0x15000048, 0x1520e782, 0x15215782,
0x240b82cc, 0x160000fc, 0x2403822c, 0x16000058, 0x82038290, 0x821620bb, 0x1417252b, 0x4c170000, 0xa3820382, 0x00d01724, 0x8f821800, 0x82581821,
0x82702007, 0x24a38203, 0x0000f818, 0x20138219, 0x21938219, 0x0b824019, 0x19201b82, 0x19211b82, 0x200b8288, 0x820382a0, 0x82192023, 0xe8192537,
0x001a0000, 0x18200382, 0x30200382, 0x7f820382, 0x82601a21, 0x82782007, 0x216f8203, 0x0782a81a, 0x1a248782, 0x1b0000f0, 0x1b21e382, 0x20078220,
0x20038238, 0x20038250, 0x82038268, 0x821b20eb, 0x821b20ab, 0x821b20ef, 0xe01b21ef, 0x7b821382, 0x7b821c20, 0x7b821c20, 0x5c240384, 0xa41c0000,
0x6b820382, 0x003c1d24, 0xf3821d00, 0x57821d20, 0xc3821e20, 0x4b821e20, 0x00ac1e28, 0x00ec1e00, 0x53821f00, 0x826c1f21, 0x201f8207, 0x240f821f,
0x00000420, 0x201f8220, 0x20138220, 0x21b38220, 0x0f82d820, 0x0000fc23, 0x20138221, 0x217b8221, 0x0b828021, 0x21204782, 0x22207782, 0x22209b82,
0x22202782, 0x23206382, 0x23246f82, 0x240000f4, 0x24212782, 0x82078284, 0x822520e7, 0x8c2528db, 0xdc250000, 0x82260000, 0x82262083, 0x8226203b,
0x0c272417, 0x82270000, 0x942721f3, 0x0f820782, 0x0f822820, 0x00442825, 0x82902800, 0x25f78203, 0x00001829, 0x03827029, 0x0000b824, 0x0382002a,
0x03825820, 0x2a20eb82, 0x2b20e382, 0x2b20af82, 0x2b202782, 0x2c202782, 0x2c247f82, 0x2c000054, 0x2c240f82, 0x2d0000d4, 0x2d210f82, 0x82078240,
0x822d2073, 0x822e20b7, 0x882e247f, 0x822e0000, 0x822f201b, 0x822f200b, 0x822f200b, 0x24302417, 0x82300000, 0x8230205f, 0x82312043, 0x8231206b,
0x82312043, 0x82312033, 0x8232208b, 0x60322543, 0xa8320000, 0xcf820382, 0x4f823320, 0x00983328, 0x00f03300, 0xdb823400, 0x82643421, 0x82a42007,
0x00e02303, 0x3b823500, 0xf7823520, 0xc7823520, 0x00e83525, 0x821c3600, 0x826c2003, 0x82b02003, 0x202f8203, 0x20d38237, 0x201b8237, 0x252b8237,
0x00002838, 0x03827438, 0x0000c424, 0x03822039, 0x03827c20, 0x0000c024, 0x0382043a, 0x3a246f82, 0x3b0000bc, 0x3b203f82, 0x3b218b82, 0x240b82a0,
0x3c0000e0, 0x82038210, 0x823c20ef, 0x823c20df, 0x143d250f, 0x583d0000, 0x0f820382, 0x0f823d20, 0x53823e20, 0x00803e29, 0x00d83e00, 0x82343f00,
0x82842003, 0x200b8203, 0x20478240, 0x29538240, 0x0000ac40, 0x0000f440, 0x03823c41, 0x41251b82, 0x420000c8, 0x20038200, 0x8203824c, 0xc4422143,
0x1f820782, 0xd7824320, 0x9b824320, 0x2f824320, 0x00ec4324, 0x9f824400, 0xbb824420, 0x82784421, 0x2033820b, 0x20778245, 0x20e78245, 0x20d78245,
0x20af8246, 0x201b8246, 0x202f8246, 0x242f8246, 0x0000dc46, 0x211f8247, 0x07824847, 0x47216382, 0x820782a8, 0x0c482483, 0x82480000, 0x9c4821bb,
0xd4230782, 0x82490000, 0x82492053, 0x824920bb, 0x82492043, 0x2c4a2473, 0x824a0000, 0x824a200f, 0x824a2033, 0x824b2087, 0x824b2057, 0xa44b28fb,
0xfc4b0000, 0x824c0000, 0x8c4c210b, 0x5f820782, 0xe7824d20, 0x006c4d25, 0x82b84d00, 0x00f82303, 0x1b824e00, 0x27824e20, 0x00104f24, 0xe7824f00,
0x23824f20, 0xc3825020, 0x7b825020, 0x1f825020, 0x9b825120, 0x00d05124, 0xeb825200, 0xab825220, 0x82885221, 0x200f820b, 0x240f8253, 0x00004053,
0x20578253, 0x25938253, 0x00000854, 0x03823454, 0x5424e782, 0x550000b4, 0x55201f82, 0x5521c782, 0x240b8298, 0x560000e0, 0x20038218, 0x8203824c,
0x825720e7, 0x825720cf, 0xc057256b, 0x04580000, 0xbb820382, 0x17825820, 0x6f825820, 0x63825920, 0x8f825920, 0x17825a20, 0xd7825a20, 0xab825a20,
0xab825a20, 0x00ec5a24, 0xf7825b00, 0x2b825b20, 0x82945b21, 0x00cc230b, 0xb3825c00, 0x82505c21, 0x829c2007, 0x201f8203, 0x201f825d, 0x20cf825d,
0x241f825d, 0x0000bc5d, 0x20fb825d, 0x244f825e, 0x0000705e, 0x25cf825e, 0x0000e85e, 0x03823c5f, 0x5f20d382, 0x5f203382, 0x6025b782, 0x6000001c,
0x82038264, 0xe46024a7, 0x82610000, 0x82612053, 0x82612053, 0x82612023, 0xf46124c7, 0x82620000, 0x686221d7, 0xa0200782, 0x23820382, 0x67826320,
0x0f826320, 0xbf826320, 0xb3826320, 0x00386424, 0x2f826400, 0xa7826420, 0xeb826420, 0xeb826520, 0x00406525, 0x82786500, 0x82b02003, 0x00f02403,
0x82286600, 0x20f38203, 0x20db8266, 0x24438266, 0x00002467, 0x20778267, 0x200f8267, 0x201f8267, 0x24a78268, 0x00009068, 0x24d78268, 0x00000069,
0x213f8269, 0x07827c69, 0x6920cb82, 0x69205782, 0x6a202382, 0x6a243382, 0x6a00008c, 0x6b209382, 0x6b204b82, 0x6b200b82, 0x6c242f82, 0x6c000014,
0x6c20f782, 0x6c204b82, 0x6d20e382, 0x6d204b82, 0x6d20df82, 0x6e250b82, 0x6e00002c, 0x82038280, 0x826f20eb, 0x826f20b7, 0xac6f2473, 0x826f0000,
0x8270204f, 0x82702063, 0x82702073, 0x4c71244f, 0x82710000, 0x82712033, 0x82722033, 0x82722027, 0x827220bb, 0x1c73245b, 0x82730000, 0xb47324eb,
0x82740000, 0x827420d7, 0xa8742577, 0x04750000, 0x5c200382, 0xc0230382, 0x82760000, 0x82762097, 0x82762023, 0xfc762457, 0x82770000, 0x8277204b,
0x827820f7, 0x82782047, 0xd8782517, 0x48790000, 0x37820382, 0x6b827920, 0x9f827a20, 0xdb827a20, 0xd7827a20, 0x47827b20, 0x87827b20, 0x7b827b20,
0x00087c24, 0x53827c00, 0x77827c20, 0x77827d20, 0x00707d28, 0x00d07d00, 0xc3827e00, 0xc3827e20, 0x0b827e20, 0x17827f20, 0x9b827f20, 0x3b827f20,
0x2f828020, 0xf7828020, 0x3b828020, 0x00e08024, 0x1b828100, 0x82748121, 0x203f8207, 0x240b8282, 0x00006c82, 0x200b8282, 0x20878283, 0x24178283,
0x0000bc83, 0x21338284, 0x07825084, 0x03829420, 0x85254f82, 0x8500003c, 0x82038288, 0x0086241b, 0x82860000, 0x988621bb, 0xe4240782, 0x30870000,
0x5f820382, 0xb7828720, 0x00ec8724, 0x0f828800, 0xb7828820, 0x00c88825, 0x820c8900, 0x212b8203, 0x07828c89, 0x0000dc23, 0x211b828a, 0x0782848a,
0x8b208782, 0x8b20cf82, 0x8b24af82, 0x8c0000c0, 0x8c206f82, 0x8c216f82, 0x230b828c, 0x8d0000d4, 0x8d219782, 0x82078268, 0x828d206f, 0x248e242b,
0x828e0000, 0xb48e240f, 0x828f0000, 0x828f202b, 0x828f202b, 0x828f2063, 0x8290201f, 0x82902063, 0x8290201b, 0x829020df, 0x2c91253b, 0x70910000,
0xa0200382, 0x73820382, 0x00149224, 0x83829200, 0x5b829220, 0x82c49221, 0x00fc230b, 0x7b829300, 0x7b829320, 0xf7829320, 0x5b829420, 0x005c9425,
0x82909400, 0x201f8203, 0x241f8294, 0x00003495, 0x20ef8295, 0x200f8295, 0x200f8295, 0x280f8296, 0x00006c96, 0x0000b896, 0x21ff8297, 0x07824897,
0x97205f82, 0x9824ff82, 0x98000018, 0x98213f82, 0x82078294, 0x2099244f, 0x82990000, 0xa899215b, 0xd8240782, 0x109a0000, 0xaf820382, 0xaf829a20,
0x82a49a21, 0x00f0240b, 0x82389b00, 0x21338203, 0x0782ac9b, 0x9c202382, 0x9c24d382, 0x9c00003c, 0x9c20c782, 0x9c204782, 0x9d204782, 0x9d25d782,
0x9d000044, 0x23038284, 0x9e0000d0, 0x9e217782, 0x82078230, 0x989e2123, 0x13830782, 0x0000f823, 0x216f829f, 0x0782589f, 0x9f20bf82, 0x9f20ff82,
0xa020af82, 0xa020af82, 0xa0205f82, 0xa0208382, 0xa1205f82, 0xa1205f82, 0xa120b382, 0xa120d382, 0xa124c382, 0xa20000e8, 0xa221f782, 0x82078260,
0xdca22437, 0x82a30000, 0x82a3207f, 0x82a3201f, 0x82a4201b, 0x82a42053, 0x82a42053, 0xc8a4241b, 0x82a50000, 0x82a5203f, 0x8ca5213f, 0x9b820b82,
0x00f4a524, 0x0f82a600, 0x2f82a620, 0xd382a620, 0x00e0a625, 0x8228a700, 0x82702003, 0x255f8203, 0x000014a8, 0x03826ca8, 0x0000b423, 0x21b782a9,
0x078264a9, 0xa920eb82, 0xaa203782, 0xaa209b82, 0xaa20bf82, 0xaa204782, 0xab20ab82, 0xab200f82, 0xab20ab82, 0xab29f782, 0xab0000c4, 0xac0000f0,
0x2003821c, 0x82038250, 0x82ac205f, 0x82ac2013, 0x82ad20e7, 0x78ad255f, 0x9cad0000, 0xc0200382, 0xe4240382, 0x0cae0000, 0x3f820382, 0x6b82ae20,
0x8782ae20, 0xc782ae20, 0x7b82af20, 0x0044af25, 0x8274af00, 0x202b8203, 0x203f82af, 0x821783af, 0x82b0207b, 0x54b024f3, 0x82b00000, 0x84b0212f,
0x9f820782, 0x4782b020, 0x0018b125, 0x8238b100, 0x82602003, 0x21738203, 0x0782a8b1, 0xb120f782, 0xb2248b82, 0xb2000010, 0xb2201b82, 0xb2208f82,
0xb2203382, 0xb2256782, 0xb30000d4, 0x82038208, 0x7cb32167, 0x8f820782, 0x4782b320, 0xb782b420, 0x5f82b420, 0x008cb424, 0x4382b400, 0x4382b420,
0x00e8b424, 0x2b82b500, 0x7b82b520, 0x8240b521, 0x2163820b, 0x078290b5, 0xb5207b82, 0xb6245f82, 0xb6000020, 0xb6205b82, 0xb6207782, 0xb6204782,
0xb720a782, 0xb7202b82, 0xb720bf82, 0xb824bb82, 0xb8000004, 0xb820fb82, 0xb8206b82, 0xb8203b82, 0xb8216f82, 0x20138298, 0x820382b8, 0x0cb92587,
0x3cb90000, 0x17820382, 0x8294b921, 0x82ac2007, 0x23178303, 0xba0000ec, 0xba20bb82, 0xba213782, 0x820b8278, 0x82ba206f, 0xfcba24a3, 0x82bb0000,
0x82bb2073, 0x82bb20a7, 0x82bb20cf, 0xd0bb212f, 0x77821382, 0x0018bc24, 0x4b82bc00, 0x825cbc21, 0x214f8207, 0x07829cbc, 0x0382bc20, 0x0382d820,
0x0000f823, 0x203782bd, 0x20c382bd, 0x208782bd, 0x20af82bd, 0x20e382bd, 0x20e382bd, 0x24e382bd, 0x000000be, 0x21b782be, 0x078258be, 0xbe213b82,
0x820782a4, 0xdcbe21bf, 0x73820782, 0x002cbf24, 0x7382bf00, 0x1b82bf20, 0x1b82bf20, 0x82ccbf21, 0x2417820f, 0x000014c0, 0x211b82c0, 0x078250c0,
0x03829020, 0xc0245382, 0xc10000c0, 0xc1208b82, 0xc1201382, 0xc120bb82, 0xc121ef82, 0x821382bc, 0x28c22467, 0x82c20000, 0x74c22117, 0xef820782,
0xd782c220, 0xbb82c220, 0x2f82c320, 0x0048c325, 0x8268c300, 0x209b8203, 0x20d782c3, 0x25d782c3, 0x0000ecc3, 0x038230c4, 0xc4201382, 0xc5208b82,
0xc5206f82, 0x0384e382, 0x00006424, 0x03828cc5, 0xc5205b82, 0xc6208b82, 0xc624bf82, 0xc600004c, 0xc6206f82, 0xc7248382, 0xc7000008, 0xc720b382,
0xc7202382, 0xc720b382, 0xc8242782, 0xc8000004, 0xc8203f82, 0xc8213b82, 0x820b8284, 0xc8c82117, 0x67820782, 0x0010c924, 0x6b82c900, 0x8258c921,
0x82802007, 0x21cb8203, 0x0782c4c9, 0x0000f024, 0x03821cca, 0x03825c20, 0xca211782, 0x820782a0, 0x82ca204b, 0x82cb2033, 0x34cb244f, 0x82cb0000,
0x82cb20e7, 0x82cb20ff, 0x82cb2077, 0x82cc202f, 0x82cc208b, 0x9ccc2863, 0xe4cc0000, 0x82cd0000, 0x6ccd2157, 0xd7820782, 0x82c8cd21, 0x20af8207,
0x202382ce, 0x202382ce, 0x289f82ce, 0x0000ccce, 0x0000f4ce, 0x204b82cf, 0x201382cf, 0x246382cf, 0x0000d8cf, 0x21ef82d0, 0x078248d0, 0x03826820,
0xd020d782, 0xf8241383, 0x28d10000, 0x74200382, 0x4b820382, 0x0000d225, 0x8240d200, 0x827c2003, 0x257f8203, 0x00000cd3, 0x038260d3, 0xd3208f82,
0xd4241f82, 0xd4000018, 0xd420d382, 0xd4203f82, 0xd5250f82, 0xd5000008, 0x82038250, 0x82d5209b, 0x82d6202f, 0x2cd6243f, 0x82d60000, 0xa4d6219f,
0xe0240782, 0x10d70000, 0xef820382, 0x4382d720, 0x82b0d721, 0x20c3820b, 0x20af82d8, 0x204782d8, 0x28eb82d8, 0x0000a8d8, 0x0000e8d8, 0x20d782d9,
0x219b82d9, 0x0b82b4d9, 0xda249782, 0xda00003c, 0xda248782, 0xdb0000b8, 0xdb214382, 0x82078254, 0x82db2053, 0x82dc203f, 0x84dc2863, 0xd0dc0000,
0x82dd0000, 0x82dd201b, 0x82dd2037, 0x82dd201b, 0x82de206f, 0x82de205b, 0x88de29f7, 0xacde0000, 0x04df0000, 0xf7820382, 0xaf82df20, 0x0020e024,
0xcf82e000, 0x82a0e021, 0x20ff8207, 0x20bf82e1, 0x208782e1, 0x256382e1, 0x000014e2, 0x038270e2, 0xe3205382, 0xe3208b82, 0xe3205f82, 0xe4203382,
0xe4241782, 0xe4000040, 0xe4244f82, 0xe50000cc, 0xe5213382, 0x82078238, 0xbce524bb, 0x82e60000, 0x34e621f3, 0x83820782, 0x8382e620, 0x00dce624,
0x3382e700, 0x8250e721, 0x828c2007, 0x82c42003, 0x00f42303, 0x2382e800, 0x0f82e820, 0xdf82e820, 0x00f0e825, 0x8218e900, 0x217b8203, 0x078294e9,
0xea202382, 0xea20b782, 0xea207f82, 0xea207382, 0xeb201f82, 0xeb20e382, 0xeb20ab82, 0xeb20ab82, 0xeb206782, 0xec254382, 0xec00001c, 0x82038274,
0x82ec200f, 0x82ed200f, 0x82ed20d7, 0xc0ed283f, 0xfced0000, 0x82ee0000, 0x82ee2043, 0x82ee2053, 0xa8ee219b, 0xe0230f82, 0x82ef0000, 0x3cef219f,
0xbf820782, 0x9b82ef20, 0x0004f024, 0x5b82f000, 0x8254f021, 0x82802007, 0x248f8203, 0x0000ecf0, 0x215b82f1, 0x07825cf1, 0xf1206f82, 0xf2202782,
0xf220c382, 0xf2244b82, 0xf2000098, 0xf2202382, 0xf3202382, 0xf3205f82, 0xf325c382, 0xf40000d4, 0x8203820c, 0xacf4219f, 0xd8230782, 0x82f50000,
0x82f5202f, 0x82f52067, 0x90f521c3, 0x93820f82, 0x00f8f524, 0xe782f600, 0x6b82f620, 0x5782f620, 0x00e8f625, 0x8210f700, 0x82382003, 0x203b8203,
0x204b82f7, 0x202782f7, 0x252782f7, 0x000028f8, 0x038268f8, 0xf820b782, 0xf920b782, 0xf920a382, 0xf924c782, 0xf90000b8, 0xfa207b82, 0xfa240f82,
0xfa000064, 0xfa21ef82, 0x820782cc, 0x82fb20ef, 0x82fb206f, 0xb0fb2423, 0x82fc0000, 0x82fc207f, 0xbcfc211f, 0xe4240b82, 0x74fd0000, 0x17820382,
0x00f4fd24, 0x6f82fe00, 0xff82fe20, 0xa782fe20, 0xc382ff20, 0xa382ff20, 0x00c8ff25, 0x82200001, 0x82742003, 0x00c02403, 0x821c0101, 0x82702003,
0x00e82403, 0x82680201, 0x82a42003, 0x00dc2403, 0x82240301, 0x826c2003, 0x00bc2403, 0x820c0401, 0x00802403, 0x82000501, 0x008c2403, 0x82180601,
0x242b8203, 0x0100b806, 0x25278207, 0x01009007, 0x03824408, 0x08253b82, 0x090100d8, 0x20038210, 0x20038278, 0x200382a0, 0x230382d0, 0x0a0100f0,
0x0b251382, 0x0b010014, 0x24038298, 0x0c0100fc, 0x82038260, 0xe00c241f, 0x820d0100, 0x820d2043, 0x880d214f, 0xa8200b82, 0xd4230382, 0x820e0100,
0x340e216b, 0x17820782, 0xa7820e20, 0x23820f20, 0x007c0f28, 0x00d40f01, 0xbf821001, 0x9b821020, 0x82b41021, 0x284b820b, 0x01005c11, 0x0100b011,
0x21338212, 0x07825012, 0x1220ab82, 0xc7820f83, 0x00081325, 0x82401301, 0x208f8203, 0x248b8213, 0x01002814, 0x20ef8214, 0x20bb8214, 0x207b8214,
0x241f8215, 0x01003815, 0x20678215, 0x247b8215, 0x0100e815, 0x21cb8216, 0x07829416, 0x0382c420, 0x0100f423, 0x217b8217, 0x07825417, 0x03828c20,
0x17241382, 0x180100ec, 0x1820cb82, 0x18258382, 0x190100bc, 0x82038230, 0x821920d7, 0x821a20a7, 0x821a20b3, 0x821b205b, 0x821b2057, 0x821b2033,
0x821b2033, 0x821b2033, 0x821c2047, 0x821c207b, 0x821c20f7, 0xc81c282b, 0xf81c0100, 0x821d0100, 0x901d216b, 0xe4230782, 0x821e0100, 0x841e213b,
0xa7820782, 0x5f821f20, 0x5f821f20, 0xc7821f20, 0x00042024, 0x27822001, 0xff822020, 0x1b822020, 0x001c2124, 0x57822101, 0x000c2224, 0x23822201,
0x00cc2224, 0x0b822301, 0x82582321, 0x829c2007, 0x24d78203, 0x01002c24, 0x202f8224, 0x207b8224, 0x241b8225, 0x01004c25, 0x20338225, 0x201b8225,
0x20678226, 0x200b8226, 0x20738226, 0x24278227, 0x01007427, 0x208f8227, 0x20578228, 0x24338228, 0x0100e828, 0x20f38229, 0x21ab8229, 0x0b82ac29,
0x2a20a782, 0x2a20bb82, 0x2a245f82, 0x2a010094, 0x2b208382, 0x2b242b82, 0x2b010068, 0x2b241f82, 0x2c0100f0, 0x2c201f82, 0x2c202f82, 0x2c20db82,
0x2d201f82, 0x2d257382, 0x2d010048, 0x20038278, 0x240382a8, 0x2e0100d8, 0x82038208, 0x822e20c7, 0xa42e216f, 0x57820b82, 0x67822f20, 0x00502f24,
0x57822f01, 0x37822f20, 0x13822f20, 0xfb823020, 0x3b823020, 0x00843024, 0x5f823001, 0x13823020, 0x0f823120, 0x37823120, 0x00b83124, 0xb7823101,
0xb7823220, 0x8f823220, 0x47823220, 0xff823220, 0x33823320, 0x5b823320, 0x0f823320, 0x00d43328, 0x00fc3301, 0x93823401, 0x82703421, 0x24938207,
0x0100ec34, 0x20b38235, 0x20b38235, 0x25538235, 0x0100e035, 0x03823436, 0x03825c20, 0x36206782, 0x3620a382, 0x36247f82, 0x370100f4, 0x37203782,
0x37219382, 0x820b827c, 0xdc372417, 0x82380100, 0x823820bb, 0x6438212f, 0x88200b82, 0xb0200382, 0x2b820382, 0x00303924, 0x87823901, 0xe7823920,
0x82a83921, 0x2013820b, 0x2067823a, 0x258b823a, 0x01008c3a, 0x0382b43a, 0x3b208b82, 0x3b245382, 0x3b01004c, 0x3b212782, 0x820782c8, 0x3c3c258f,
0x6c3c0100, 0xc0200382, 0xf0230382, 0x823d0100, 0x403d21c3, 0xb3820782, 0x82943d21, 0x20c78207, 0x204f823d, 0x20eb823e, 0x2527823e, 0x0100a03e,
0x0382043f, 0x3f200f82, 0x3f209f82, 0x3f214b82, 0x820f82b8, 0x824020cb, 0x8240203b, 0x6040259f, 0x80400100, 0x8b820382, 0x82cc4021, 0x207b8207,
0x208f8241, 0x206b8241, 0x24bb8241, 0x01009841, 0x246f8241, 0x0100e841, 0x20d38242, 0x204b8242, 0x20338242, 0x20d38242, 0x20ab8242, 0x20178242,
0x242f8243, 0x01005443, 0x20138243, 0x20478243, 0x245f8243, 0x01001044, 0x20d38244, 0x21738244, 0x0b82ac44, 0x44209b82, 0x45205b82, 0x45243f82,
0x4501005c, 0x45249b82, 0x460100d0, 0x46202782, 0x46212782, 0x820b829c, 0x204725e7, 0x38470100, 0xbf820382, 0x5f824720, 0xe7824720, 0x0f824820,
0x00a44824, 0xcb824901, 0xeb824920, 0x0b834920, 0x0100e424, 0x03820c4a, 0x4a25ff82, 0x4b010090, 0x20038200, 0x82038258, 0xf84b24df, 0x824c0100,
0x824c2053, 0x824d2053, 0x184d2417, 0x824d0100, 0x824d204f, 0x824e206f, 0x824e205f, 0x944e2827, 0xd84e0100, 0x824f0100, 0x4c4f2143, 0x8c200782,
0x53820382, 0xcb825020, 0x3b825020, 0x00685024, 0x57825001, 0x82b05021, 0x00dc2307, 0x43825101, 0xe3825120, 0x82985121, 0x82c0200b, 0x25638203,
0x01003052, 0x03826452, 0x0100f423, 0x20378253, 0x21378253, 0x0b828053, 0x0382a820, 0x54201f82, 0x5420b782, 0x54280f82, 0x540100c4, 0x550100ec,
0x55247b82, 0x56010078, 0x56219382, 0x8207825c, 0x82562027, 0x82572073, 0x7c57243b, 0x82570100, 0x82582027, 0x6058298f, 0xac580100, 0x28590100,
0x9c240382, 0x145a0100, 0xaf820382, 0x07825b20, 0x07825b20, 0x17825c20, 0x57825c20, 0x00d45c24, 0x13825d01, 0x82745d21, 0x20938207, 0x203b825e,
0x243b825e, 0x0100b45e, 0x2017825f, 0x210b825f, 0x0b82a45f, 0x0100e024, 0x03821060, 0x6020bf82, 0x6024d382, 0x610100cc, 0x61201f82, 0x6124bb82,
0x620100c8, 0x6220a782, 0x63240782, 0x63010034, 0x64207782, 0x64244782, 0x64010084, 0x65202782, 0x6520b382, 0x65209b82, 0x6624a782, 0x6601004c,
0x67206782, 0x6724af82, 0x6701008c, 0x68245782, 0x68010030, 0x68256382, 0x690100fc, 0x2303826c, 0x6a0100dc, 0x6a206782, 0x6b20ef82, 0x6c28eb82,
0x6c010004, 0x6d010088, 0x6d204782, 0x6d240f82, 0x6e0100bc, 0x6e207b82, 0x6e217b82, 0x240b82b0, 0x6f0100e8, 0x20038244, 0x230382a0, 0x700100f8,
0x70256382, 0x710100d8, 0x82038224, 0x82712023, 0x0872246f, 0x82720100, 0xb872240b, 0x82730100, 0x8273203b, 0x827320fb, 0x2874249b, 0x82740100,
0x8274209b, 0x82752073, 0x82752093, 0x827520ef, 0x8276205f, 0x5876242f, 0x82760100, 0xf076242f, 0x82770100, 0x5c77215f, 0xfb820782, 0x13827720,
0x5f827720, 0x97827820, 0x00407824, 0x3f827801, 0x00d07824, 0x57827901, 0x7b827920, 0xf7827920, 0x23827920, 0x00347a24, 0x93827a01, 0x000c7b24,
0xcf827b01, 0xe3827b20, 0x00187c24, 0xef827c01, 0x8b827c20, 0x829c7c21, 0x82c4200b, 0x20f78203, 0x20ab827d, 0x2023827d, 0x203b827d, 0x203b827d,
0x205f827d, 0x252b827e, 0x0100507e, 0x0382987e, 0x7e259382, 0x7f0100ec, 0x8203822c, 0x747f2113, 0x4f820782, 0x9b827f20, 0x00208025, 0x826c8001,
0x82ac2003, 0x204b8203, 0x20c38281, 0x24478281, 0x0100a881, 0x20338281, 0x201f8282, 0x246f8282, 0x01009482, 0x206f8282, 0x24578283, 0x01006883,
0x253f8283, 0x0100e083, 0x03822884, 0x84201f82, 0x8420c782, 0x84202382, 0x84204782, 0x84202782, 0x85203b82, 0x8524ab82, 0x85010058, 0x85208382,
0x8624e382, 0x86010000, 0x8620d782, 0x86207f82, 0x86205f82, 0x8620a782, 0x87207382, 0x87246382, 0x87010044, 0x87204782, 0x87207b82, 0x8724af82,
0x880100f8, 0x88212b82, 0x2007824c, 0x20038280, 0x820382b0, 0x0c89246f, 0x82890100, 0x82892057, 0xa08921b3, 0x13820b82, 0x00048a24, 0x87828a01,
0x6b828a20, 0x82888a21, 0x82b8200b, 0x203f8203, 0x2057828b, 0x20ab828b, 0x2597828b, 0x0100c88b, 0x0382148c, 0x03823c20, 0x03827820, 0x8c249382,
0x8d0100cc, 0x8d211382, 0x20078238, 0x2003825c, 0x23038290, 0x8e0100d4, 0x8e203782, 0x8e201382, 0x8e203b82, 0x8e207b82, 0x8e207b82, 0x8f24ab82,
0x8f010008, 0x8f217b82, 0x82078248, 0x828f207f, 0x828f2057, 0x829020ab, 0x8290207f, 0x8c90242b, 0x82900100, 0x8290207b, 0xe89024eb, 0x82910100,
0x409121ab, 0xc0230782, 0x82920100, 0x82922037, 0x82932083, 0xdc9324b3, 0x82940100, 0x829420af, 0x8295203b, 0x82952053, 0x009624f7, 0x82960100,
0x829720bb, 0x82982017, 0x82982013, 0xa4982813, 0xf0980100, 0x82990100, 0x829a2017, 0x829a20a7, 0x829a2043, 0x829b205b, 0x829b20c3, 0x829c2013,
0x829c2033, 0x549c25ab, 0x909c0100, 0xc4230382, 0x829d0100, 0x829d200f, 0x829d2087, 0x829e2037, 0x829e2017, 0x829f207b, 0x829f209f, 0x82a0204b,
0x82a0201b, 0x82a02023, 0x70a12c9b, 0xf8a10100, 0x74a20100, 0x82a30100, 0x7ca32117, 0x17820782, 0x1782a420, 0x5f82a520, 0x0018a624, 0x1782a701,
0x5782a720, 0x0050a828, 0x00b4a801, 0x9782a901, 0x9782a920, 0x82b0a921, 0x00ec240b, 0x8238aa01, 0x20c38203, 0x20b382ab, 0x244782ab, 0x0100e4ab,
0x202b82ac, 0x20e382ac, 0x20e382ac, 0x244b82ad, 0x0100d8ad, 0x202782ae, 0x24bb82af, 0x010080af, 0x209782af, 0x241382b0, 0x010060b1, 0x240782b1,
0x010010b2, 0x20a782b2, 0x203382b2, 0x247f82b2, 0x010044b3, 0x206b82b3, 0x24b382b4, 0x010058b4, 0x20af82b4, 0x208b82b5, 0x205f82b5, 0x202f82b5,
0x291f82b6, 0x01009cb6, 0x0100fcb6, 0x03826cb7, 0x0100c824, 0x03822cb8, 0xb820df82, 0xb9209382, 0xb920bb82, 0xb920ff82, 0xba258b82, 0xba010024,
0x23038288, 0xbb0100cc, 0xbb206782, 0xbb24bb82, 0xbc0100b8, 0xbc20c782, 0xbc245b82, 0xbd0100a8, 0xbd200b82, 0xbd217f82, 0x820b8298, 0x40be247f,
0x82be0100, 0xd0be24f3, 0x82bf0100, 0x82bf20ff, 0xe0bf24b3, 0x82c00100, 0xacc02517, 0x00c10100, 0x5c200382, 0x6f820382, 0x8382c120, 0x9b82c220,
0x1b82c220, 0x9f82c220, 0x7782c220, 0x5382c220, 0xb382c220, 0x4b82c220, 0xc382c320, 0x9b82c320, 0xb382c320, 0x0090c329, 0x00c0c301, 0x8214c401,
0x207b8203, 0x208782c4, 0x247b82c5, 0x010030c5, 0x203b82c5, 0x203782c5, 0x201f82c5, 0x20c382c5, 0x24b782c6, 0x01004cc6, 0x21df82c6, 0x0782a0c6,
0xc724f782, 0xc7010034, 0xc724cb82, 0xc80100f0, 0xc8254f82, 0xc90100bc, 0x2003821c, 0x82038294, 0x60ca2413, 0x82ca0100, 0x82cb203f, 0x82cb203b,
0x0ccc244f, 0x82cc0100, 0x78cc2197, 0x23820782, 0x00e4cc24, 0x4382cd01, 0xcf82cd20, 0x00c8cd24, 0x3b82ce01, 0x6382ce20, 0x1b82ce20, 0x82ccce21,
0x00f8230f, 0xef82cf01, 0x8264cf21, 0x82842007, 0x82b02003, 0x20c38203, 0x209f82d0, 0x202782d0, 0x203782d0, 0x207382d0, 0x20f382d0, 0x206382d1,
0x249b82d1, 0x010098d1, 0x20eb82d1, 0x203b82d1, 0x243b82d2, 0x010054d2, 0x241382d2, 0x0100dcd2, 0x207f82d3, 0x216f82d3, 0x0b825cd3, 0xd3206382,
0xd424ef82, 0xd4010000, 0xd420bb82, 0xd4204b82, 0xd520d382, 0xd5200f82, 0xd5241f82, 0xd501008c, 0xd5205b82, 0xd625c782, 0xd6010018, 0x20038248,
0x820382ac, 0x38d724b3, 0x82d70100, 0x82d720f7, 0x14d82453, 0x82d80100, 0x82d820e7, 0x82d8201b, 0x82d9202b, 0x58d9242b, 0x82d90100, 0x04da24f7,
0x82da0100, 0x7cda21ef, 0x93820782, 0x0008db24, 0x5b82db01, 0x7b82db20, 0x6b82db20, 0xef82dc20, 0x1b82dc20, 0x00b4dc24, 0x7782dd01, 0x5782dd20,
0xe782dd20, 0x00c8dd25, 0x8210de01, 0x24978203, 0x01009cde, 0x20b782df, 0x204782df, 0x230b83df, 0xe00100f4, 0xe0205f82, 0xe0200b82, 0xe1247f82,
0xe101002c, 0xe124ab82, 0xe20100ec, 0xe2202f82, 0xe2244f82, 0xe30100cc, 0xe3207b82, 0xe321eb82, 0x820b8270, 0x82e320ff, 0x82e32053, 0x82e4203b,
0x82e42073, 0x82e42083, 0xd4e42483, 0x82e50100, 0x82e520bf, 0x82e5204f, 0x82e5204f, 0x82e6204f, 0x82e62033, 0x82e6204f, 0x82e7204f, 0x6ce7240b,
0x82e70100, 0xe8e725db, 0x20e80100, 0x4f820382, 0x82b0e821, 0x240f8207, 0x010028e9, 0x241f82e9, 0x0100b8e9, 0x216f82ea, 0x078248ea, 0x0382a420,
0xeb256782, 0xeb01003c, 0x23038288, 0xec0100c0, 0xec20db82, 0xec214b82, 0x820b8264, 0x82ec204b, 0x82ed2067, 0x54ed2487, 0x82ed0100, 0x82ed204f,
0x82ed209f, 0xf0ed2427, 0x82ee0100, 0x82ee2053, 0x84ee2147, 0x57820b82, 0x00e8ee24, 0x7782ef01, 0x2b82ef20, 0x1382ef20, 0xdb82ef20, 0x00fcef24,
0xf782f001, 0x4f82f020, 0xb782f020, 0x4f82f020, 0x0018f125, 0x8250f101, 0x82a02003, 0x00d82403, 0x8210f201, 0x200f8203, 0x201f82f2, 0x245782f2,
0x010040f3, 0x201b82f3, 0x208b82f4, 0x20ef82f4, 0x246f82f4, 0x010030f5, 0x24eb82f5, 0x0100e4f5, 0x207382f6, 0x201f82f6, 0x20bb82f6, 0x203782f7,
0x20a782f7, 0x294382f8, 0x010078f8, 0x0100d4f8, 0x038244f9, 0xfa253382, 0xfa010024, 0x24038280, 0xfb0100ec, 0x2003824c, 0x82038274, 0xd0fb21f3,
0xf8240782, 0x38fc0100, 0x68200382, 0x90200382, 0x2f820382, 0x4f82fc20, 0x6782fd20, 0x1382fd20, 0x8b82fd20, 0xcf82fd20, 0x4382fe20, 0x8382fe20,
0x0094fe25, 0x82bcfe01, 0x204b8203, 0x20bf82ff, 0x207782ff, 0x253782ff, 0x0200c0ff, 0x03820400, 0x03823420, 0x03826420, 0x03829c20, 0x0200d024,
0x03821001, 0x03825820, 0x03829020, 0x0200dc24, 0x03821402, 0x03824c20, 0x03828820, 0x0200c423, 0x21338203, 0x07825003, 0x03251f82, 0x040200e0,
0x20038238, 0x82038280, 0x8205204f, 0x8205203b, 0x8205203b, 0xbc05292b, 0xf0050200, 0x24060200, 0x68200382, 0xa4200382, 0xec240382, 0x28070200,
0x60200382, 0x6f820382, 0x00d80725, 0x821c0802, 0x241f8203, 0x0200b808, 0x213f8209, 0x07825c09, 0x0382a020, 0x0200e424, 0x03822c0a, 0x03827020,
0x0200cc23, 0x2047820b, 0x2127820b, 0x0b82b40b, 0x0c201b82, 0x0c203782, 0x0c208782, 0x0c257b82, 0x0d0200c8, 0x82038208, 0x8c0d218b, 0xd4230782,
0x820e0200, 0x820e204b, 0x820e204b, 0x820e2077, 0x820f20c7, 0x820f202f, 0x820f209b, 0x820f20b7, 0x821020b7, 0x82102087, 0x82102087, 0x821120a7,
0x4811243b, 0x82110200, 0xe8112493, 0x82120200, 0x8212201b, 0x8212206b, 0xfc12246b, 0x82130200, 0x82132037, 0x82132093, 0x821420cf, 0x82142087,
0x82142037, 0x8214200f, 0x82152057, 0x821520a3, 0x8215202b, 0x82152067, 0x821520a7, 0x8216202f, 0x8216203f, 0x8216209b, 0x8216206b, 0x8216209b,
0x20172437, 0x82170200, 0x82172027, 0x041825e7, 0x4c180200, 0xac240382, 0x00190200, 0x7b820382, 0x82981921, 0x00d02307, 0xb7821a02, 0xb7821a20,
0x8b821a20, 0x4b821a20, 0x1b821b20, 0xd3821b20, 0x1b821b20, 0x00181c24, 0x1b821c02, 0x1b821c20, 0x00f41c25, 0x82401d02, 0x20ff8203, 0x2563821d,
0x0200141e, 0x0382641e, 0x0382b020, 0x0200f824, 0x0382541f, 0x0382a820, 0x20207b82, 0x20282782, 0x20020094, 0x210200ec, 0x21200b82, 0x21209782,
0x22203f82, 0x22208382, 0x22204b82, 0x23200b82, 0x23257782, 0x23020034, 0x8203826c, 0xe023248b, 0x82240200, 0x3c24216f, 0x7c200782, 0xab820382,
0x83822420, 0x001c2524, 0x37822502, 0x82782521, 0x20138207, 0x253b8225, 0x02003026, 0x03828826, 0x27251f82, 0x27020008, 0x20038238, 0x20038270,
0x230382a4, 0x280200d4, 0x28203382, 0x28218f82, 0x240b8284, 0x290200bc, 0x82038220, 0x822920d3, 0x582a243b, 0x822a0200, 0x822b2023, 0xa02b2567,
0x0c2c0200, 0x13820382, 0x5b822c20, 0xff822c20, 0xff822d20, 0xc7822d20, 0xd3822d20, 0x00442e24, 0x9b822e02, 0x00dc2e25, 0x82282f02, 0x24638203,
0x0200b42f, 0x20338230, 0x20338230, 0x25cb8230, 0x0200e830, 0x03822431, 0x03826820, 0x0382b020, 0x32246382, 0x32020050, 0x3224ff82, 0x330200d8,
0x33202b82, 0x33200f82, 0x33257f82, 0x340200c8, 0x82038214, 0x8234209b, 0xec342463, 0x82350200, 0x3435211f, 0x4f820782, 0xd3823520, 0x82c03521,
0x2453820b, 0x02001836, 0x208b8236, 0x25f78236, 0x0200cc36, 0x03821037, 0x37212782, 0x8207826c, 0x82372077, 0x043825c3, 0x30380200, 0x5c200382,
0x7b820382, 0xb3823820, 0x0b823920, 0x6b823920, 0x1f823920, 0x97823a20, 0x00803a24, 0x3f823a02, 0x00083b24, 0x87823b02, 0x827c3b21, 0x200f8207,
0x255f823c, 0x0200643c, 0x0382a03c, 0x0200e423, 0x205b823d, 0x20df823d, 0x207f823d, 0x206b823e, 0x2543823e, 0x0200a43e, 0x0382c43e, 0x3f24a782,
0x3f02001c, 0x3f20b782, 0x3f21d782, 0x230b82b4, 0x400200dc, 0x4021bb82, 0x20078244, 0x23038284, 0x410200bc, 0x41285382, 0x42020098, 0x4302003c,
0x43206f82, 0x43219b82, 0x820b8268, 0x8244209b, 0x8244200f, 0x8244205f, 0x824520db, 0x8245202f, 0x2c462543, 0x28470200, 0x4c200382, 0x6b820382,
0x00fc4724, 0xbf824802, 0x73824820, 0x00f04824, 0x93824902, 0xef824920, 0x82a84921, 0x2083820b, 0x2057824a, 0x24cf824a, 0x0200c84a, 0x20a3824b,
0x218f824b, 0x0b82ac4b, 0x4c24bf82, 0x4c020020, 0x4c205782, 0x4d20f782, 0x4d20ab82, 0x4d241b82, 0x4d020088, 0x4e25cf82, 0x4e020000, 0x82038240,
0xf84e25bb, 0x384f0200, 0x97820382, 0x3b824f20, 0x73824f20, 0x00245024, 0x77825002, 0x3f825020, 0xc7825020, 0x43825020, 0x17825020, 0x00605128,
0x00d05102, 0x6b825202, 0x7b825220, 0x827c5221, 0x00c0230b, 0x0f825302, 0x3f825320, 0x829c5321, 0x24c7820b, 0x0200dc53, 0x20fb8254, 0x20738254,
0x20438254, 0x20bf8254, 0x20538255, 0x203f8255, 0x201f8255, 0x244b8255, 0x02003056, 0x20ff8256, 0x200f8256, 0x252f8256, 0x02000857, 0x03824457,
0x02009824, 0x03822c58, 0x5824e782, 0x590200e0, 0x59213782, 0x82078274, 0x825a2087, 0x825a2023, 0x0c5b25fb, 0x505b0200, 0x73820382, 0xfb825b20,
0x17825c20, 0xaf825c20, 0x27825c20, 0x3f825c20, 0x37825c20, 0x37825d20, 0x00905d24, 0x5b825d02, 0x2f825e20, 0x1f825e20, 0x0f825e20, 0x00e85e25,
0x82345f02, 0x247b8203, 0x0200cc5f, 0x210b8260, 0x07827860, 0x6120fb82, 0x61252782, 0x61020048, 0x240382b0, 0x620200f4, 0x82038258, 0x04632417,
0x82630200, 0x8263200b, 0x8263203f, 0xf063241b, 0x82640200, 0x826420df, 0x826420af, 0x82642047, 0xb8642417, 0x82650200, 0x82652027, 0x826520d7,
0xa465219b, 0x7b820f82, 0x00206624, 0xf7826602, 0x82a06621, 0x207b8207, 0x20978267, 0x24b78267, 0x0200c067, 0x21b78268, 0x07824068, 0x6820eb82,
0x6824d782, 0x690200d0, 0x69205782, 0x69208382, 0x69205782, 0x69246b82, 0x6a0200e4, 0x6a204382, 0x6a217f82, 0x200b828c, 0x230382c4, 0x6b0200f8,
0x6b206782, 0x6b202382, 0x6b247782, 0x6c0200fc, 0x6c215782, 0x2007824c, 0x8203827c, 0x826c2013, 0x146d25bf, 0x3c6d0200, 0x7f820382, 0x82986d21,
0x203b8207, 0x2517826d, 0x02002c6e, 0x0382746e, 0x0200b423, 0x21f3826f, 0x0782546f, 0x6f204b82, 0x6f20a382, 0x6f209782, 0x7020df82, 0x70202382,
0x70201782, 0x7020db82, 0x71208382, 0x7124d382, 0x7102009c, 0x72206b82, 0x72201782, 0x72240b82, 0x730200d8, 0x73219b82, 0x8207825c, 0xe07325ef,
0x44740200, 0xac200382, 0x67820382, 0x43827520, 0x67827520, 0x0f827520, 0x0f827520, 0x0f827620, 0x00807628, 0x00c87602, 0x37827702, 0x82687721,
0x25f78207, 0x02000078, 0x03824078, 0x7820a382, 0x79245382, 0x79020028, 0x79243782, 0x7a0200d0, 0x7a200b82, 0x7a208382, 0x7a209782, 0x7b207b82,
0x7b20cf82, 0x7b204382, 0x7b25bb82, 0x7c0200e8, 0x8203821c, 0x8c7c219b, 0x57820782, 0x00087d25, 0x82487d02, 0x82882003, 0x250f8203, 0x0200147e,
0x0382647e, 0x7f202f82, 0x7f206782, 0x7f20bb82, 0x7f207382, 0x80208f82, 0x80207382, 0x80202782, 0x80246782, 0x810200f8, 0x81216b82, 0x82078258,
0x8281206f, 0x8281202f, 0x828220cf, 0x8282203f, 0xa082285f, 0xe4820200, 0x82830200, 0x828320c3, 0xac83214f, 0x0f820b82, 0x33828420, 0x33828420,
0x009c8429, 0x00cc8402, 0x820c8502, 0x82382003, 0x208f8203, 0x207f8285, 0x242f8286, 0x02009486, 0x217b8287, 0x07826c87, 0x0200bc23, 0x21238288,
0x07825c88, 0x88244382, 0x890200f0, 0x89212f82, 0x20078274, 0x820382b0, 0x828a2097, 0x708a2433, 0x828a0200, 0x828a20a7, 0x828b2097, 0x828b20f3,
0xb88b24f3, 0x828c0200, 0x608c21ef, 0xc4230782, 0x828d0200, 0x7c8d21eb, 0xd8230782, 0x828e0200, 0x828e2083, 0x248f241f, 0x828f0200, 0x828f203b,
0x828f208f, 0x04902417, 0x82900200, 0x829020e7, 0xa490217b, 0xd3820b82, 0xb3829120, 0x00689124, 0xd3829102, 0x00ec9125, 0x82349202, 0x82782003,
0x20f38203, 0x209b8293, 0x20df8293, 0x209b8293, 0x248b8293, 0x02004894, 0x240b8294, 0x0200e894, 0x205b8295, 0x20a78295, 0x24d78295, 0x02001896,
0x20538296, 0x20cf8296, 0x24338297, 0x02005497, 0x24738297, 0x0200e497, 0x20bf8298, 0x20ff8298, 0x246b8298, 0x02004c99, 0x20c78299, 0x20178299,
0x2817829a, 0x0200849a, 0x0200dc9a, 0x2083829b, 0x204b829b, 0x203f829b, 0x20a3829c, 0x2083829c, 0x2083829c, 0x25b3829c, 0x0200389d, 0x0382889d,
0x9d208f82, 0x9e20ff82, 0x9e200f82, 0x9e204f82, 0x9f208382, 0x9f20e782, 0xa029fb82, 0xa0020030, 0xa1020098, 0x20038208, 0x8203827c, 0x82a220ab,
0x82a220f7, 0x3ca3243f, 0x82a30200, 0x00a424db, 0x82a40200, 0x82a420cb, 0x82a5202f, 0x82a5205f, 0x82a62013, 0x82a6202f, 0x82a6202f, 0x82a72083,
0x82a72057, 0xb0a724c3, 0x82a70200, 0x82a82067, 0x82a820c3, 0x82a92023, 0x68a928cf, 0xd4a90200, 0x82aa0200, 0x9caa2167, 0x1f820782, 0x2b82ab20,
0x00ccab25, 0x8248ac02, 0x20138203, 0x205f82ad, 0x240b82ad, 0x020090ad, 0x246382ad, 0x0200fcad, 0x207b82ae, 0x205f82ae, 0x242782ae, 0x020024af,
0x20b782af, 0x209b82af, 0x24b782b0, 0x0200c0b0, 0x20f782b1, 0x20b782b1, 0x20f382b2, 0x20ef82b2, 0x20af82b2, 0x208782b3, 0x20ef82b3, 0x259382b3,
0x02002cb4, 0x038284b4, 0x0200ec24, 0x03824cb5, 0x0200ac23, 0x208f82b6, 0x213f82b6, 0x0b82a4b6, 0xb7202f82, 0xb724c382, 0xb7020050, 0xb7244782,
0xb80200e0, 0xb8215382, 0x82078274, 0x82b92083, 0x80b9240b, 0x82b90200, 0x82ba2027, 0x70ba254b, 0xb4ba0200, 0xbf820382, 0x4f82bb20, 0x6782bb20,
0x9b82bb20, 0x001cbc24, 0x2782bc02, 0xe382bc20, 0x0044bd24, 0xcf82bd02, 0xa782bd20, 0x0064be24, 0x1382be02, 0x9382bf20, 0x1382bf20, 0xa782c020,
0x4382c020, 0x5b82c020, 0x0014c124, 0xdb82c102, 0x7382c120, 0xf782c220, 0x9b82c220, 0x4782c320, 0xaf82c320, 0x00e4c324, 0x4782c402, 0x00bcc425,
0x8234c502, 0x00a02303, 0xb782c602, 0x7382c620, 0x1f82c620, 0x5382c620, 0x0020c724, 0x4b82c702, 0x2382c720, 0x8f82c720, 0x2782c820, 0x8f82c820,
0xf782c820, 0x0024c925, 0x826cc902, 0x201b8203, 0x203782ca, 0x203782ca, 0x203782ca, 0x203782ca, 0x203782cb, 0x203782cb, 0x201b82cb, 0x208382cc,
0x28a382cc, 0x0200a8cc, 0x0200eccc, 0x218782cd, 0x0782a4cd, 0xce20bb82, 0xce207f82, 0xce20b382, 0xcf200b82, 0xcf295b82, 0xcf020074, 0xd00200c8,
0x82038218, 0x82d0205b, 0x82d1203f, 0x82d1200b, 0x82d1204b, 0x08d2250b, 0x68d20200, 0x23820382, 0xc782d320, 0x1782d320, 0x1782d320, 0xf382d420,
0x6382d420, 0x00c0d424, 0x7b82d502, 0xf382d520, 0xff82d520, 0x9782d620, 0x4782d620, 0x00ccd624, 0x1782d702, 0x5f82d720, 0x00d0d725, 0x822cd802,
0x20178203, 0x202f82d8, 0x209f82d9, 0x204782d9, 0x29b782d9, 0x020038da, 0x0200b0da, 0x038228db, 0x02009424, 0x038200dc, 0x03827820, 0x0200f023,
0x20ab82dd, 0x251382dd, 0x0200fcdd, 0x03825cde, 0xdf245f82, 0xdf020024, 0xdf201382, 0xe0281382, 0xe0020054, 0xe10200a0, 0xe1203382, 0xe1210b82,
0x820b8290, 0x82e2205f, 0x3ce2259b, 0x88e20200, 0xb7820382, 0x0010e325, 0x824ce302, 0x20678203, 0x20cf82e4, 0x208782e4, 0x209382e4, 0x201382e5,
0x201f82e5, 0x248382e6, 0x0200a8e6, 0x24af82e7, 0x02009ce7, 0x202f82e8, 0x20cf82e8, 0x204782e9, 0x204382e9, 0x200f82ea, 0x207382ea, 0x287b82eb,
0x0200aceb, 0x0200f8eb, 0x249b82ec, 0x0200a4ec, 0x212382ed, 0x078258ed, 0xee201782, 0xee20fb82, 0xee205b82, 0xef205382, 0xef204b82, 0xef208f82,
0xf0242b82, 0xf0020068, 0xf1286f82, 0xf1020048, 0xf20200b8, 0xf224eb82, 0xf3020098, 0xf3202382, 0xf4207782, 0xf4205782, 0xf520c782, 0xf5200782,
0xf6280f82, 0xf6020018, 0xf7020084, 0xf720ab82, 0xf8207f82, 0xf8245782, 0xf902008c, 0xf9201782, 0xf9202782, 0xfa20fb82, 0xfa204b82, 0xfa207382,
0xfb200b82, 0xfb247f82, 0xfc0200b4, 0xfc214f82, 0x82078274, 0x82fd2063, 0x82fd2097, 0x82fd2023, 0xc4fd292f, 0xf0fd0200, 0x14fe0200, 0x3c200382,
0x23820382, 0x82c0fe21, 0x00f42407, 0x8234ff02, 0x82742003, 0x250f8203, 0x0300f8ff, 0x03822800, 0x03826020, 0x03829020, 0x0300d824, 0x03821401,
0x03824420, 0x03827c20, 0x0382c420, 0x0300fc24, 0x03825402, 0x0382a020, 0x0300e824, 0x03824003, 0x03828420, 0x0382b820, 0x0300f024, 0x03822404,
0x04203f82, 0x04243f82, 0x050300c8, 0x05213f82, 0x20078250, 0x820382ac, 0x4806243b, 0x82060300, 0xdc06251b, 0x38070300, 0x3b820382, 0x00c00728,
0x00000803, 0x0f820803, 0x82780821, 0x82b42007, 0x00e42403, 0x82080903, 0x240f8203, 0x0300d409, 0x201b820a, 0x2073820a, 0x254f820b, 0x0300580b,
0x0382980b, 0x0c202382, 0x0c20af82, 0x0c244382, 0x0c03009c, 0x03b04782, 0x0d24e382, 0x0d03003c, 0x0d21df82, 0x820782bc, 0xec0d256b, 0x040e0300,
0x1c200382, 0x34200382, 0x4c200382, 0x70200382, 0xb7820382, 0x9b820e20, 0x33820e20, 0xcb820e20, 0x00200f25, 0x825c0f03, 0x208b8203, 0x2437820f,
0x03001010, 0x20a78210, 0x202b8210, 0x20138210, 0x24ff8210, 0x0300e010, 0x214b8211, 0x07823011, 0x1120fb82, 0x12245b82, 0x120300ac, 0x12241b82,
0x130300f4, 0x13201782, 0x13205f82, 0x1320e782, 0x13205b82, 0x1420d382, 0x14247782, 0x14030054, 0x15203b82, 0x15244f82, 0x15030088, 0x1520fb82,
0x15253382, 0x160300f0, 0x24038224, 0x170300e8, 0x82038200, 0x82172053, 0xa817253b, 0x18180300, 0x74200382, 0xd0200382, 0xf8240382, 0x28190300,
0x47820382, 0x82801921, 0x203b8207, 0x20138219, 0x24eb821a, 0x0300c01a, 0x21ab821b, 0x0782501b, 0x1b213b82, 0x820782b0, 0x821c2057, 0x821c20cf,
0x821c208b, 0x821c206f, 0x821c20a3, 0x821d20e3, 0x601d247f, 0x821d0300, 0x9c1d2127, 0xc4200782, 0xc3820382, 0x3f821e20, 0x3f821e20, 0xeb821e20,
0x00a41e29, 0x00dc1e03, 0x820c1f03, 0x212f8203, 0x0782741f, 0x1f20ff82, 0x2020a382, 0x20205382, 0x2020a382, 0x20244382, 0x20030084, 0x20245782,
0x210300d4, 0x2120e382, 0x21259782, 0x220300cc, 0x20038208, 0x8203825c, 0x82232047, 0x7c23240b, 0x82230300, 0x82242023, 0x822420ab, 0x8224200b,
0x822520bb, 0x68252447, 0x82250300, 0x402625e7, 0x8c260300, 0xf4240382, 0x58270300, 0xa0200382, 0xe4240382, 0x34280300, 0x2f820382, 0x27822920,
0x1b822920, 0x5f822a20, 0x47822a20, 0x17822b20, 0x2f822b20, 0x00242c24, 0x3f822c03, 0xbf822c20, 0x37822d20, 0x37822d20, 0xf7822d20, 0x77822e20,
0x23822f20, 0xcb822f20, 0xdf822f20, 0x6b823020, 0xc3823020, 0xd3823020, 0x83823120, 0x47823120, 0x0b823120, 0xdb823220, 0x00903228, 0x00d83203,
0xbf823303, 0xff823320, 0x2f823320, 0x002c3425, 0x826c3403, 0x20cb8203, 0x25378235, 0x0300b435, 0x03821836, 0x37243b82, 0x37030000, 0x37201b82,
0x37202782, 0x38247782, 0x38030030, 0x38203782, 0x39207782, 0x3920a782, 0x3a24db82, 0x3a030004, 0x3a242b82, 0x3b0300d0, 0x3b21ff82, 0x82078224,
0x823b20e3, 0xb83b218f, 0xf8240b82, 0x443c0300, 0xc3820382, 0x23823c20, 0x00143d24, 0x1b823d03, 0x82983d21, 0x20738207, 0x2433823e, 0x0300543e,
0x240f823e, 0x0300e43e, 0x204b823f, 0x24db823f, 0x03000c40, 0x20278240, 0x25af8240, 0x03004c41, 0x03827841, 0x0300c023, 0x216f8242, 0x07824842,
0x42200f82, 0x43207f82, 0x43202f82, 0x4320d782, 0x44201b82, 0x44255b82, 0x45030088, 0x83038220, 0x206f8207, 0x20f78246, 0x24bf8246, 0x0300e846,
0x20178247, 0x21bf8247, 0x0b827c47, 0x48245782, 0x48030034, 0x49201b82, 0x49206b82, 0x4924a382, 0x49030080, 0x4924b382, 0x4a0300f4, 0x4a217382,
0x820782a8, 0x284b2437, 0x824b0300, 0x824b20ef, 0x824b200f, 0x824c20fb, 0x824c2053, 0xe04c24cf, 0x824d0300, 0x944d210b, 0xec230782, 0x824e0300,
0x824e2097, 0x824e20bb, 0x824f20f3, 0x824f2017, 0xbc4f2567, 0x00500300, 0x3f820382, 0x82b05021, 0x201b8207, 0x20ef8251, 0x240b8251, 0x03001052,
0x20c78252, 0x20838252, 0x24238253, 0x03003c53, 0x210f8253, 0x0782b453, 0x54248382, 0x54030030, 0x54204382, 0x5520e782, 0x5520db82, 0x55241f82,
0x55030064, 0x55207b82, 0x5520a782, 0x56247f82, 0x56030008, 0x5621c782, 0x2307825c, 0x570300c0, 0x5720ab82, 0x57201f82, 0x5824a782, 0x58030058,
0x59247f82, 0x59030024, 0x59257f82, 0x5a0300ac, 0x20038204, 0x82038260, 0x825b203f, 0x825b207f, 0x825b204f, 0x825b20d7, 0x825c20bf, 0x825c205f,
0x825c209b, 0x825c2073, 0x205d2483, 0x825d0300, 0x845d21d3, 0xd8240782, 0x185e0300, 0x44200382, 0x88200382, 0xcc230382, 0x825f0300, 0x825f2073,
0xd05f246b, 0x82600300, 0x5060214b, 0x9c200782, 0x7b820382, 0x37826120, 0x5b826120, 0x00806124, 0x13826103, 0x6f826120, 0x82dc6121, 0x00fc240b,
0x821c6203, 0x82402003, 0x213f8203, 0x0782a462, 0x0300e423, 0x206b8263, 0x204b8263, 0x20eb8263, 0x20b78264, 0x24ab8264, 0x03004c65, 0x24b78265,
0x0300d465, 0x202f8266, 0x212f8266, 0x0b827866, 0x03829420, 0x0382b020, 0x67249382, 0x67030000, 0x67201b82, 0x67206782, 0x68202782, 0x68288782,
0x68030090, 0x690300f4, 0x6a207382, 0x6a200f82, 0x6a204382, 0x6b28df82, 0x6b030098, 0x6c0300f8, 0x6c206782, 0x6d201b82, 0x6d248782, 0x6d03006c,
0x6e203782, 0x6e202382, 0x6f259f82, 0x6f030034, 0x2003825c, 0x82038274, 0xc46f21b7, 0x17820782, 0x00047024, 0xa3827003, 0x82387021, 0x82542007,
0x82702003, 0x82882003, 0x20bf8203, 0x20238270, 0x20d78270, 0x204f8271, 0x203f8271, 0x201f8271, 0x20638271, 0x24c38271, 0x03002472, 0x20af8272,
0x203f8273, 0x20538273, 0x24b38273, 0x03008474, 0x82078374, 0x8275208b, 0x82752013, 0xe075248b, 0x82760300, 0x2c762123, 0x3f820782, 0x3f827620,
0x23827620, 0x13827720, 0x53827720, 0x00647724, 0x47827703, 0x00e87724, 0xd3827803, 0x82507821, 0x250f8207, 0x0300d078, 0x03820879, 0x79210f82,
0x82078280, 0x827a2033, 0x7c7a24a7, 0x827a0300, 0x827b2057, 0x607b241b, 0x827b0300, 0x827b208b, 0x827c206f, 0x827c2027, 0x007d2537, 0x587d0300,
0xc8230382, 0x827e0300, 0x827f20e7, 0x44802587, 0x18810300, 0x43820382, 0x23828220, 0x73828320, 0xbf828420, 0x00e48424, 0xe7828503, 0x53828620,
0x00308724, 0x3b828803, 0x77828820, 0x37828920, 0x23828a20, 0x003c8b24, 0x93828c03, 0x17828d20, 0x73828d20, 0x00788e28, 0x00408f03, 0x13829003,
0x73829020, 0x00c0912c, 0x00989203, 0x00689303, 0x3f829403, 0x27829520, 0x77829520, 0x13829620, 0x9b829720, 0x13829820, 0x00f09824, 0x3b829903,
0xc3829a20, 0x97829b20, 0x00149c24, 0x87829c03, 0x87829d20, 0x23829e20, 0x00289f24, 0x23829f03, 0x00b4a02c, 0x0084a103, 0x004ca203, 0xdb82a303,
0x00d0a328, 0x00a0a403, 0x3782a503, 0x0054a625, 0x822ca703, 0x21c78203, 0x07825ca7, 0xa721d382, 0x2007828c, 0x230382bc, 0xa80300ec, 0xa820db82,
0xa8211b82, 0x820b827c, 0x82a82047, 0x82a92013, 0x82a920df, 0x82a920ab, 0x82a9202f, 0x82a920b7, 0xb0a9256f, 0xcca90300, 0xe8280382, 0x04aa0300,
0x20aa0300, 0xe3820382, 0x9782aa20, 0x5382aa20, 0x8290aa21, 0x82ac200f, 0x24c38203, 0x0300e4aa, 0x202382ab, 0x214782ab, 0x0b8248ab, 0x03826c20,
0xab207382, 0xab214382, 0x230b82d4, 0xac0300f4, 0xac21cb82, 0x82078234, 0x82ac209f, 0x82ac203f, 0x82ac2063, 0x82ac207f, 0x82ac201f, 0x82ad201f,
0x82ad201f, 0x82ad201f, 0x82ad201f, 0x82ad201f, 0x82ad201f, 0x82ad201f, 0x82ad201f, 0x82ae201f, 0x38ae241f, 0x82ae0300, 0x82ae20a3, 0x9cae21bb,
0xc0200b82, 0x7b820382, 0x7b82af20, 0xf382af20, 0x3b82af20, 0x1b82af20, 0x00a4af24, 0xbb82af03, 0x3782af20, 0x001cb024, 0xef82b003, 0x8270b021,
0x82982007, 0x20338203, 0x24d382b0, 0x030010b1, 0x214f82b1, 0x078260b1, 0x03828820, 0xb121cb82, 0x820782d0, 0x18b22433, 0x82b20300, 0x82b220eb,
0x84b2211b, 0xa8200b82, 0x87820382, 0x00f8b224, 0x4f82b303, 0xe382b320, 0xe382b320, 0x8290b321, 0x82bc200f, 0x00e02303, 0x8382b403, 0x8230b421,
0x82582007, 0x21338203, 0x0782b8b4, 0xb5251782, 0xb503000c, 0x82038240, 0x82b5202f, 0xc8b521d3, 0x63820b82, 0x4782b620, 0x0050b624, 0x2b82b603,
0x2b82b620, 0x0000b724, 0x8f82b703, 0x8268b721, 0x82a02007, 0x248b8203, 0x030020b8, 0x20b782b8, 0x25af82b8, 0x030008b9, 0x038228b9, 0xb9207b82,
0xb9202382, 0xb920b382, 0xb9209782, 0xb9204f82, 0xba201f82, 0xba207f82, 0xba202f82, 0xba20b782, 0xba208382, 0xba203782, 0xba202382, 0xba204b82,
0xba205f82, 0xba204f82, 0xbb202782, 0xbb206782, 0xbb20df82, 0xbb20ab82, 0xbb204b82, 0xbb24e382, 0xbb030078, 0xbb20cb82, 0xbb214f82, 0x200b82c0,
0x230382d8, 0xbd0300f0, 0xbf208f82, 0xc0202382, 0xc025a382, 0xc003009c, 0x200382b4, 0x200382cc, 0x230382e4, 0xc10300fc, 0xc1204782, 0xc1212382,
0x820b8254, 0x82c1206f, 0xacc1216f, 0x93820b82, 0xfb82c120, 0x0024c228, 0x0064c203, 0xb782c303, 0x0098c424, 0x7382c603, 0x006cc724, 0x4f82c703,
0x6b82c720, 0x6b82c720, 0x4b82c720, 0x005cc828, 0x00dcc803, 0x4b82c903, 0x6782c920, 0x7b82c920, 0x4f82ca20, 0x2382ca20, 0x00f4ca25, 0x8240cb03,
0x828c2003, 0x25978203, 0x030034cc, 0x03827ccc, 0x0382a420, 0xcd208b82, 0xcd20cf82, 0xcd205782, 0xcd20c782, 0xce257b82, 0xce030050, 0x82038294,
0x82cf20eb, 0xbccf2837, 0xf8cf0300, 0x82d00300, 0x82d0200b, 0x82d020e3, 0x82d1206f, 0x82d12097, 0x82d120f3, 0x10d2243f, 0x82d20300, 0x82d2206b,
0x82d3200b, 0x82d3207f, 0x82d3208b, 0x08d429e7, 0x80d40300, 0x44d50300, 0x83820382, 0x004cd624, 0xdf82d603, 0x0020d724, 0x4782d703, 0x8b82d720,
0x4782d820, 0x6b82d820, 0x2b82d920, 0x2b82d920, 0xb782d920, 0x00d4da25, 0x821cdb03, 0x00d02303, 0xd382dc03, 0x0782dd20, 0x0f82de20, 0x0064de28,
0x00c8de03, 0xaf82df03, 0x4b82df20, 0x00a0df28, 0x0098e003, 0x3f82e103, 0xab82e120, 0x0054e225, 0x82b8e203, 0x209f8203, 0x202f82e3, 0x200f82e3,
0x201f82e3, 0x253f82e3, 0x030014e4, 0x038258e4, 0x0300a823, 0x250782e5, 0x0300e0e5, 0x038268e6, 0xe7286b82, 0xe7030084, 0xe80300ec, 0xe8212f82,
0x240782b0, 0xe90300fc, 0x82038250, 0x82e9200b, 0x2cea2417, 0x82ea0300, 0x82ea20b7, 0x30eb2447, 0x82eb0300, 0xaceb2137, 0x9b820782, 0xdb82ec20,
0x00a4ec25, 0x8204ed03, 0x82482003, 0x206f8203, 0x247f82ed, 0x030034ee, 0x206b82ee, 0x28ab82ef, 0x030060ef, 0x0300b4ef, 0x219382f0, 0x07827cf0,
0xf120e382, 0xf120cb82, 0xf1201f82, 0xf2252b82, 0xf2030028, 0x24038274, 0xf30300c4, 0x82038210, 0xccf3252f, 0x24f40300, 0x77820382, 0x000cf524,
0x9b82f503, 0x008cf525, 0x8208f603, 0x251b8203, 0x0300f4f6, 0x03823cf7, 0xf720bb82, 0xf8208782, 0xf8202382, 0xf8207f82, 0xf9249782, 0xf9030020,
0xfb205b82, 0xfb24f382, 0xfc0300b0, 0xfc205f82, 0xfc20b382, 0xfd241382, 0xfd030018, 0xfd205382, 0xfe208382, 0xfe246782, 0xff0300e0, 0xff250782,
0x000400e0, 0x2003820c, 0x20038238, 0x20038264, 0x24038290, 0x010400e8, 0x24038240, 0x020400e4, 0x82038288, 0x4803240f, 0x82030400, 0x82042007,
0x8205200f, 0x7005292b, 0xa8050400, 0x00060400, 0x4c200382, 0x98240382, 0x08070400, 0x27820382, 0x23820720, 0x00dc0725, 0x82300804, 0x00d42303,
0x57820904, 0x3b820920, 0x006c0a24, 0x53820a04, 0x00680b24, 0x77820b04, 0x00580c28, 0x00c80c04, 0x3f820d04, 0x00c40d25, 0x823c0e04, 0x00ac2403,
0x82240f04, 0x00942403, 0x82041004, 0x242b8203, 0x0400ec10, 0x20438211, 0x20538211, 0x202b8212, 0x282b8212, 0x04003413, 0x0400a413, 0x21738214,
0x07828014, 0x0400f024, 0x03826015, 0x0400c023, 0x20778216, 0x253f8216, 0x0400f816, 0x03825017, 0x18208382, 0x18203782, 0x19203782, 0x19203782,
0x1a256382, 0x1a04001c, 0x8203828c, 0x821b2037, 0xd81b2463, 0x821c0400, 0x821c20bb, 0x821d201b, 0x7c1d241b, 0x821d0400, 0x821e20a3, 0xb01e25eb,
0x201f0400, 0x90200382, 0xf4230382, 0x82200400, 0x8220208b, 0x282124b7, 0x82210400, 0x8221207b, 0x54222943, 0xb8220400, 0x10230400, 0x74200382,
0xcc230382, 0x82240400, 0x822420c7, 0x8224200b, 0x8224203f, 0x82252037, 0x8225207b, 0x8225200f, 0x82262027, 0x822620db, 0x8226209b, 0x8226203f,
0x8226201f, 0x402725ab, 0x88270400, 0xd0230382, 0x82280400, 0x8228201f, 0x842821b3, 0x6b820b82, 0x000c2924, 0xdf822904, 0x83822920, 0x2f822920,
0x00ec2924, 0x9b822a04, 0x82702a21, 0x200f8207, 0x24bf822a, 0x0400082b, 0x2013822b, 0x2043822b, 0x200f822b, 0x209f822c, 0x206f822c, 0x20d3822c,
0x255f822c, 0x0400442d, 0x03829c2d, 0x2e255f82, 0x2e040014, 0x2003826c, 0x820382bc, 0x3c2f249b, 0x822f0400, 0xd42f2537, 0x18300400, 0x7b820382,
0x828c3021, 0x200f8207, 0x201b8231, 0x292b8231, 0x0400a431, 0x0400dc31, 0x03822032, 0x3220ef82, 0x32258b82, 0x330400e8, 0x82038230, 0x823320a7,
0x82342087, 0x6834253b, 0x94340400, 0xb7820382, 0x00fc3424, 0x87823504, 0x5b823520, 0x6b823520, 0x0f823520, 0xf7823620, 0x87823620, 0x3b823620,
0x00343725, 0x82643704, 0x212f8203, 0x0782c437, 0x3820d782, 0x38249b82, 0x38040078, 0x38204f82, 0x3920b782, 0x39203f82, 0x3920e782, 0x3920c782,
0x3a203382, 0x3a207f82, 0x3a203382, 0x3a209f82, 0x3b208f82, 0x3b242f82, 0x3b040058, 0x3b256382, 0x3c0400e0, 0x82038208, 0x823c2063, 0x823c20af,
0x823c20bf, 0x0c3d24df, 0x823d0400, 0x823d20ff, 0xb43d249b, 0x823e0400, 0x403e210f, 0x80200782, 0xa8200382, 0x27820382, 0xbb823f20, 0x47823f20,
0x00983f24, 0x33823f04, 0x001c4024, 0x67824004, 0xc7824020, 0x00004124, 0xab824104, 0xf7824120, 0x87824120, 0x00044224, 0xf7824204, 0x2b824220,
0x82b84221, 0x20b7820b, 0x24778243, 0x04002443, 0x217b8243, 0x07827c43, 0x4320bf82, 0x4424ef82, 0x44040084, 0x45290782, 0x45040074, 0x460400d8,
0x23038238, 0x470400bc, 0x47207f82, 0x47253f82, 0x480400f0, 0x8203825c, 0x82492067, 0x824920db, 0x824920fb, 0x824a20f7, 0xe44a2407, 0x824b0400,
0x824b204f, 0x824c201b, 0x824c202f, 0x824d207b, 0x944d24a7, 0x824e0400, 0x824e2007, 0x824e2023, 0x824f2053, 0x824f2023, 0x2850256f, 0x8c500400,
0x3f820382, 0xbb825120, 0x00c45124, 0x93825204, 0x009c5225, 0x82145304, 0x242f8203, 0x0400dc53, 0x24c78254, 0x0400cc54, 0x218b8255, 0x0782a455,
0x56209f82, 0x56204382, 0x57206782, 0x57206782, 0x58206782, 0x58205f82, 0x5820c782, 0x59202f82, 0x59202f82, 0x5a291b82, 0x5a040034, 0x5b0400a0,
0x8203820c, 0x825b204b, 0x3c5c287b, 0xa85c0400, 0x825d0400, 0x825d205f, 0xe85d25e3, 0x585e0400, 0x7b820382, 0x0b825e20, 0x2b825f20, 0x0f825f20,
0x37825f20, 0x00ec5f25, 0x82306004, 0x205f8203, 0x282f8261, 0x04009061, 0x0400f461, 0x21738262, 0x07828462, 0x0400d424, 0x03821c63, 0x03829820,
0x64209382, 0x64256382, 0x650400e0, 0x2303825c, 0x660400c0, 0x66206b82, 0x66244782, 0x670400f0, 0x67218b82, 0x82078280, 0x82682067, 0x826820f7,
0x82682017, 0x8269204b, 0xb86924ab, 0x826a0400, 0xb06a2547, 0x446b0400, 0x4f820382, 0x00f86b25, 0x82486c04, 0x82942003, 0x207f8203, 0x2037826c,
0x20db826c, 0x2953826d, 0x0400886d, 0x0400d06d, 0x0382206e, 0x03826820, 0x0400e424, 0x03824c6f, 0x7020f382, 0x7020af82, 0x70246782, 0x710400cc,
0x71205382, 0x71201f82, 0x71204f82, 0x71203f82, 0x7220df82, 0x7224df82, 0x72040024, 0x72204782, 0x72201b82, 0x72207382, 0x73245782, 0x73040018,
0x73207b82, 0x7321d782, 0x200b829c, 0x820382b4, 0x007424df, 0x82740400, 0x8274201b, 0x7874212f, 0xdf820b82, 0x00147524, 0x9b827504, 0x82647521,
0x259b8207, 0x0400d875, 0x03820476, 0x03822c20, 0x7620cf82, 0x77247b82, 0x77040070, 0x78201b82, 0x7828a382, 0x780400c0, 0x790400fc, 0x79252f82,
0x7a0400ec, 0x82038250, 0x827b208b, 0x827b208b, 0x747b28af, 0xbc7b0400, 0x827c0400, 0x387c2157, 0x97820782, 0x97827c20, 0xbf827d20, 0x2b827d20,
0x007c7d25, 0x82a07d04, 0x20c38203, 0x2077827e, 0x2497827e, 0x0400347f, 0x204f827f, 0x20ab827f, 0x20ab827f, 0x20c3827f, 0x24838280, 0x04004080,
0x20a78280, 0x243f8280, 0x0400e880, 0x217f8281, 0x07826c81, 0x81252382, 0x820400e4, 0x82038210, 0x6082213b, 0xeb820782, 0x27828220, 0x3b828220,
0x00088324, 0x17828304, 0x7b828320, 0x82948321, 0x82c8200b, 0x20b38203, 0x209f8284, 0x20778284, 0x241f8285, 0x04009885, 0x20b38286, 0x25af8286,
0x0400d086, 0x03823887, 0x8720e782, 0x87201782, 0x8720bf82, 0x88245f82, 0x88040024, 0x89203f82, 0x89248b82, 0x8904008c, 0x8a202782, 0x8a20d782,
0x8a20b782, 0x8a203782, 0x8a242b82, 0x8b0400cc, 0x8b203b82, 0x8b20a782, 0x8c201f82, 0x8c20e782, 0x8c25e782, 0x8c04007c, 0x820382a8, 0x828d2013,
0x588d243f, 0x828d0400, 0xf08d244b, 0x828e0400, 0x828e201f, 0x828e20ab, 0x828f20fb, 0x828f208b, 0x828f20e7, 0x828f20bf, 0x828f2077, 0x3c9025a7,
0x64900400, 0x3f820382, 0x3b829120, 0x5f829120, 0x1f829120, 0x27829220, 0x43829320, 0x005c9424, 0xcb829504, 0x13829520, 0x00e89525, 0x824c9604,
0x20178203, 0x209b8297, 0x20a78297, 0x20538299, 0x24138299, 0x0400a499, 0x20d3829a, 0x207b829b, 0x3143829c, 0x0400109d, 0x0400f89d, 0x0400ac9e,
0x0400609f, 0x038234a0, 0xa128e782, 0xa10400a0, 0xa30400ec, 0xa3207382, 0xa4248382, 0xa4040054, 0xa5250f82, 0xa6040090, 0x23038244, 0xa70400f4,
0xa8204382, 0xa8209782, 0xa8201f82, 0xa929c382, 0xaa040020, 0xab040080, 0x23038274, 0xac0400c4, 0xac201b82, 0xad20eb82, 0xad20db82, 0xad203782,
0xae200b82, 0xae20a382, 0xae200b82, 0xaf24e782, 0xaf040048, 0xb0208f82, 0xb0201382, 0xb0203382, 0xb125b782, 0xb1040028, 0x23038298, 0xb20400dc,
0xb2203782, 0xb2214f82, 0x820b82b4, 0x18b32493, 0x82b30400, 0x9cb32113, 0x8b820782, 0x001cb424, 0xd382b404, 0x827cb421, 0x82c02007, 0x20238203,
0x202382b5, 0x259f82b5, 0x040078b5, 0x0382a8b5, 0x0400e024, 0x038214b6, 0xb6208b82, 0xb6201382, 0xb6201382, 0xb7248782, 0xb7040000, 0xb721eb82,
0x8207828c, 0x82b8208b, 0x94b8241f, 0x82b80400, 0x38b92583, 0x70b90400, 0x53820382, 0x0008ba25, 0x8240ba04, 0x24278203, 0x0400c8ba, 0x203782bb,
0x205f82bb, 0x209382bb, 0x24f382bb, 0x040060bc, 0x20eb82bc, 0x286382bd, 0x040058bd, 0x0400acbd, 0x200b82be, 0x202f82be, 0x242f82be, 0x040004bf,
0x241782bf, 0x0400b8bf, 0x205782c0, 0x255382c0, 0x040020c1, 0x03825cc1, 0xc1206f82, 0xc2208b82, 0xc2205382, 0xc2201b82, 0xc2207382, 0xc2203f82,
0xc320fb82, 0xc3203782, 0xc3209382, 0xc3245f82, 0xc3040090, 0xc4204b82, 0xc4252782, 0xc4040028, 0x82038250, 0x82c420cb, 0x82c420cb, 0x82c5203f,
0x82c52017, 0x80c525a3, 0x9cc50400, 0x63820382, 0x00fcc524, 0x2b82c604, 0x3f82c620, 0x8284c621, 0x257f820b, 0x0400ecc6, 0x03821cc7, 0x03824c20,
0xc7219f82, 0x240782bc, 0xc80400f8, 0x20038224, 0x2003827c, 0x230382b4, 0xc90400d4, 0xc9217b82, 0x8207822c, 0x82c92067, 0xb0c92153, 0x3b820b82,
0x4f82ca20, 0x7782ca20, 0x5f82ca20, 0xfb82ca20, 0x2382cb20, 0x006ccb24, 0xb382cb04, 0x00e4cb24, 0x5b82cc04, 0x8782cc20, 0x8288cc21, 0x82cc200b,
0x25238203, 0x040048cd, 0x0382a0cd, 0x0400b823, 0x20f782ce, 0x202f82ce, 0x24b382ce, 0x040034cf, 0x204782cf, 0x206b82d0, 0x257b82d0, 0x0400c4d0,
0x03820cd1, 0xd125ab82, 0xd20400f4, 0x23038268, 0xd30400dc, 0xd3203f82, 0xd4203f82, 0xd4206b82, 0xd5200f82, 0xd5208382, 0xd625e382, 0xd6040008,
0x82038298, 0x82d7202b, 0x82d72007, 0x54d8247f, 0x82d80400, 0x82d92023, 0x82d92023, 0xd8d92453, 0x82da0400, 0x82da203f, 0x82db203f, 0x82db20e3,
0xc8db24f3, 0x82dc0400, 0x82dc201b, 0x82dd2027, 0x82dd202f, 0x4cde2407, 0x82de0400, 0x14df288b, 0x70df0400, 0x82e00400, 0x68e02193, 0xd7820782,
0x6782e120, 0xb382e120, 0x9f82e120, 0xdb82e220, 0x1382e220, 0xc782e320, 0x8382e320, 0xaf82e420, 0xaf82e420, 0x4382e420, 0x1b82e520, 0x00a8e524,
0x7b82e604, 0xff82e620, 0x0000e725, 0x8278e704, 0x00cc2303, 0x5f82e804, 0x8382e820, 0x8382e920, 0x0064e924, 0x2782e904, 0x00f0e925, 0x8230ea04,
0x219f8203, 0x078260ea, 0xea219b82, 0x820782b4, 0x82eb204b, 0x50eb2573, 0x94eb0400, 0xd4230382, 0x82ec0400, 0x82ec2097, 0x82ec200f, 0x82ed2023,
0x82ed209b, 0xeced2457, 0x82ee0400, 0xfcee244b, 0x82ef0400, 0x82f0205b, 0x82f020b7, 0x82f1206b, 0x82f12027, 0x82f22007, 0xb8f22557, 0x18f30400,
0x0f820382, 0x3b82f420, 0x3382f420, 0x1782f520, 0x00a4f524, 0xef82f504, 0x4b82f620, 0xdb82f620, 0x0010f724, 0xd782f704, 0x4b82f720, 0x3f82f820,
0x3782f820, 0x1b82f920, 0x005cf924, 0xdf82f904, 0x82c8f921, 0x20af8207, 0x28e382fa, 0x040090fa, 0x0400e0fa, 0x20bb82fb, 0x245382fb, 0x0400e8fb,
0x21af82fc, 0x078244fc, 0x03827c20, 0xfc204782, 0xfd20c382, 0xfd20ff82, 0xfd201382, 0xfd20ab82, 0xfd206b82, 0xfe207b82, 0xfe248b82, 0xfe04004c,
0xfe215382, 0x820782bc, 0x2cff246f, 0x82ff0400, 0xa8ff2123, 0xe4240782, 0x30000500, 0x60200382, 0xa4200382, 0xcc240382, 0x04010500, 0x50200382,
0x7c200382, 0xa8200382, 0x23820382, 0x002c0224, 0x0f820205, 0x82a00221, 0x00dc2407, 0x82180305, 0x82482003, 0x20138203, 0x25238203, 0x0500f003,
0x03822404, 0x03826820, 0x03829820, 0x0500c824, 0x03820005, 0x03823c20, 0x03827820, 0x0382b820, 0x0500ec23, 0x210f8206, 0x07827006, 0x0500ac23,
0x211f8207, 0x07823407, 0x07214382, 0x230782a8, 0x080500e0, 0x08208b82, 0x08218b82, 0x240b8290, 0x090500d0, 0x8203821c, 0x8209202f, 0x82092053,
0x820a2077, 0x4c0a250f, 0x840a0500, 0xb0200382, 0xfc230382, 0x820b0500, 0x640b2133, 0x23820782, 0x00d40b25, 0x82140c05, 0x82542003, 0x200f8203,
0x2043820c, 0x2497820d, 0x05005c0d, 0x24bb820d, 0x0500f40d, 0x20cb820e, 0x2093820e, 0x2073820e, 0x20db820e, 0x2083820f, 0x24b7820f, 0x05009c0f,
0x200f820f, 0x204f8210, 0x205f8210, 0x294b8210, 0x05003811, 0x0500a411, 0x03820412, 0x12206382, 0x13244f82, 0x13050028, 0x14203b82, 0x14246782,
0x14050088, 0x15299782, 0x15050044, 0x160500b4, 0x23038218, 0x1705007c, 0x17210782, 0x23078274, 0x180500f8, 0x18205b82, 0x19203782, 0x1920bb82,
0x19201b82, 0x1a25e782, 0x1a05003c, 0x82038294, 0x821b20bf, 0xc41b24cf, 0x821c0500, 0x821c2097, 0x821c2013, 0x821d204f, 0x821d2077, 0x821d208f,
0x821e20af, 0x821e201f, 0x001f24eb, 0x821f0500, 0x821f20b7, 0x8220201f, 0x8220206f, 0x0821241f, 0x82210500, 0x82212013, 0x82222053, 0xb8222413,
0x82230500, 0x82232097, 0x1024251b, 0x70240500, 0x3b820382, 0xbf822520, 0x00602524, 0x0b822505, 0x47822620, 0x005c2624, 0xd7822605, 0x2b822720,
0x23822720, 0xa7822720, 0x1f822820, 0x47822820, 0xe7822920, 0x07822920, 0x00582a24, 0x07822a05, 0x00502b28, 0x00e82b05, 0x27822c05, 0x00e42c24,
0xbb822d05, 0xff822d20, 0xe3822e20, 0x00802e24, 0x13822e05, 0x2b822f20, 0xff822f20, 0xb7823020, 0x00ac3024, 0xb7823005, 0x000c3125, 0x82243105,
0x212f8203, 0x07825431, 0x03826c20, 0x03828420, 0x31209b82, 0x31212b82, 0x820b82cc, 0xfc31243b, 0x82320500, 0x82322087, 0x823220ff, 0x823220c3,
0x7432219b, 0x8c201382, 0xa3820382, 0x82bc3221, 0x82d42007, 0x00ec2303, 0xc7823305, 0x821c3321, 0x82342007, 0x824c2003, 0x21ab8203, 0x07827c33,
0x03829420, 0x33217782, 0x200782c4, 0x820382dc, 0x8234207f, 0x8234207f, 0x8234207f, 0x8234207f, 0x8234207f, 0x8234207f, 0x8234207f, 0x8234207f,
0x8234207f, 0x8234207f, 0x8234207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f, 0x8235207f,
0x8235207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f, 0x8236207f,
0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8237207f, 0x8238207f,
0x8238207f, 0x8238207f, 0x8238207f, 0x8238207f, 0x8238207f, 0x8238207f, 0x8238207f, 0xd438247f, 0x82380500, 0x8239207f, 0x8239207f, 0x8239207f,
0x8239207f, 0x8239207f, 0x8239207f, 0x8239207f, 0x8239207f, 0x8239207f, 0x8239207f, 0x8239207f, 0x823a207f, 0x823a207f, 0x823a207f, 0x823a207f,
0x823a207f, 0x823a207f, 0x823a207f, 0x823a207f, 0x823a207f, 0x823a207f, 0x823a207f, 0x823b207f, 0x823b207f, 0x823b207f, 0x823b207f, 0x823b207f,
0x823b207f, 0x823b207f, 0x823b207f, 0x823b207f, 0x823b207f, 0x823c207f, 0x823c207f, 0x823c207f, 0x823c207f, 0x683d251f, 0x303e0500, 0xd0200382,
0x47820382, 0x47823f20, 0x00403f2c, 0x00e03f05, 0x00a84005, 0x6f824105, 0x8f824120, 0x00204224, 0xaf824205, 0x8f824320, 0x00d84325, 0x82084405,
0x20538203, 0x20bf8245, 0x20838245, 0x209f8246, 0x28978246, 0x05000047, 0x05004847, 0x285f8248, 0x05006049, 0x0500704a, 0x2023824b, 0x2093824c,
0x2047824c, 0x204f824d, 0x2013824e, 0x2023824f, 0x244f8250, 0x05009050, 0x2c038251, 0x05008852, 0x0500c853, 0x0500a054, 0x203b8255, 0x20df8255,
0x20378256, 0x200b8257, 0x245f8257, 0x0500ac58, 0x24938258, 0x05005059, 0x204b825a, 0x20fb825a, 0x20ef825b, 0x2053825b, 0x2013825c, 0x20e7825c,
0x204f825d, 0x2087825e, 0x2077825f, 0x200f825f, 0x204f825f, 0x24eb8260, 0x05007460, 0x203f8260, 0x243f8260, 0x05002861, 0x24578261, 0x0500b861,
0x21ab8262, 0x07821862, 0x03823c20, 0x62203382, 0x62258782, 0x630500bc, 0x82038214, 0xc0632463, 0x82640500, 0x8264201f, 0x8264203f, 0xf064258f,
0x58650500, 0x4b820382, 0x00e86525, 0x82306605, 0x82982003, 0x25678203, 0x05002467, 0x03827867, 0x0500d823, 0x210b8268, 0x07829c68, 0x0500f424,
0x03824069, 0x69203f82, 0x6a24af82, 0x6a050020, 0x6b256382, 0x6b050008, 0x23038270, 0x6c0500fc, 0x6c212b82, 0x82078248, 0xc46c25ff, 0x0c6d0500,
0xc3820382, 0x3f826d20, 0x00f06d24, 0x9b826e05, 0x63826e20, 0x00e46e24, 0xef826f05, 0x82846f21, 0x00d42407, 0x82107005, 0x20a38203, 0x20978270,
0x20278270, 0x20438271, 0x241b8271, 0x0500d071, 0x20b38272, 0x20e38272, 0x24438272, 0x0500dc72, 0x200f8273, 0x20538273, 0x250f8273, 0x05000474,
0x03827c74, 0x75204f82, 0x7524cb82, 0x760500e0, 0x76204782, 0x77203782, 0x7724ab82, 0x7705006c, 0x78208782, 0x78246b82, 0x78050094, 0x7924c382,
0x79050068, 0x7a20bf82, 0x7a20ef82, 0x7a20bf82, 0x7b246f82, 0x7b050060, 0x7c203382, 0x7c203382, 0x7d208382, 0x7d242f82, 0x7e0500a4, 0x7e205f82,
0x7e247b82, 0x7f0500b8, 0x7f20cb82, 0x7f20fb82, 0x80208382, 0x80209f82, 0x8120c782, 0x81201382, 0x81241382, 0x820500ec, 0x82209382, 0x83202782,
0x83201382, 0x8320bb82, 0x84201382, 0x84209382, 0x85204f82, 0x85204f82, 0x86244f82, 0x86050008, 0x86256b82, 0x870500c8, 0x8203821c, 0xd88724bb,
0x82880500, 0x88882177, 0x5b820782, 0x97828920, 0x97828920, 0x3f828920, 0x53828a20, 0xe7828a20, 0xa3828a20, 0x003c8b24, 0x73828b05, 0x00f88b24,
0x0b828c05, 0xd7828c20, 0x07828d20, 0x00c08d25, 0x82388e05, 0x00ac2403, 0x82108f05, 0x008c2403, 0x82009005, 0x82702003, 0x254f8203, 0x05002491,
0x03827891, 0x91202782, 0x9224ff82, 0x9205004c, 0x92204782, 0x93205f82, 0x93283782, 0x93050094, 0x940500e4, 0x94210b82, 0x82078280, 0x8295209b,
0x829520a7, 0x829520bb, 0x189624b3, 0x82960500, 0x82962023, 0x82972077, 0x82972013, 0x50982453, 0x82980500, 0x82982097, 0x82992097, 0x82992037,
0xd49924bb, 0x829a0500, 0x649a21e7, 0xa8240782, 0x149b0500, 0x68200382, 0xd0240382, 0x209c0500, 0xd3820382, 0x00e89c24, 0x1f829d05, 0x63829d20,
0xf3829e20, 0x5f829e20, 0x3f829f20, 0x00b89f24, 0xf782a005, 0x2382a020, 0x000ca125, 0x8274a105, 0x00fc2303, 0xc382a205, 0x9b82a220, 0x0044a329,
0x00b0a305, 0x8204a405, 0x20df8203, 0x24bb82a4, 0x050060a5, 0x251382a5, 0x050028a6, 0x03827ca6, 0xa7281382, 0xa7050048, 0xa80500bc, 0xa820b382,
0xa8201382, 0xa9207b82, 0xa9203b82, 0xaa206782, 0xaa205782, 0xaa20bf82, 0xaa209b82, 0xab255b82, 0xab050054, 0x82038298, 0x82ac20d7, 0x82ac2093,
0x82ad20bf, 0x82ad202b, 0x82ae20d7, 0x82ae2053, 0x08af251b, 0x5caf0500, 0xf3820382, 0xaf82b020, 0xa782b020, 0x0010b125, 0x8280b105, 0x202f8203,
0x20bb82b2, 0x200b82b2, 0x204382b2, 0x254f82b3, 0x0500b4b3, 0x038200b4, 0xb520c782, 0xb524ff82, 0xb6050094, 0xb6258b82, 0xb705009c, 0x24038224,
0xb80500a0, 0x24038220, 0xb90500c4, 0x82038250, 0x82ba20db, 0x82bb207b, 0x82bb209b, 0x82bb2023, 0x1cbc2467, 0x82bc0500, 0x82be206b, 0xd8be24cb,
0x82c00500, 0x82c120cf, 0x74c12413, 0x82c10500, 0x2cc2241f, 0x82c20500, 0xc8c2240b, 0x82c30500, 0x78c3219f, 0xfb820782, 0xb382c420, 0x008cc424,
0x8b82c405, 0x3f82c520, 0x00acc524, 0x5782c605, 0x5f82c620, 0x2b82c620, 0x4382c720, 0x7f82c720, 0x7f82c820, 0x3382c820, 0x1382c820, 0x3382c920,
0x0070c924, 0x7b82c905, 0x00e8c924, 0x5b82ca05, 0x8268ca21, 0x201b8207, 0x201b82cb, 0x201782cb, 0x206382cc, 0x28e782cc, 0x050088cc, 0x0500e0cc,
0x200b82cd, 0x200b82cd, 0x20ff82cd, 0x204b82ce, 0x20ff82ce, 0x20c782ce, 0x201782cf, 0x255782cf, 0x0500c0cf, 0x038234d0, 0xd1206b82, 0xd1203b82,
0xd1244f82, 0xd20500fc, 0xd2200782, 0xd325f782, 0xd3050024, 0x8203826c, 0x54d42533, 0x90d40500, 0xb3820382, 0x0b82d520, 0x6f82d520, 0x0004d625,
0x8258d605, 0x243f8203, 0x0500f4d6, 0x204b82d7, 0x201782d7, 0x202382d7, 0x24cb82d8, 0x0500ccd8, 0x21a782d9, 0x078298d9, 0xda20f782, 0xdb207f82,
0xdb20e782, 0xdb205382, 0xdc286782, 0xdc050048, 0xdd0500a8, 0xdd201382, 0xdd210b82, 0x820b827c, 0x82de2033, 0xbcde253b, 0x18df0500, 0xa7820382,
0x82acdf21, 0x20538207, 0x243782e0, 0x0500dce0, 0x257f82e1, 0x0500d0e1, 0x038224e2, 0xe3203382, 0xe324bb82, 0xe305005c, 0xe4244b82, 0xe4050028,
0xe5208382, 0xe5243b82, 0xe5050074, 0xe624fb82, 0xe605003c, 0xe7204f82, 0xe7206382, 0xe820cb82, 0xe8202b82, 0xe924df82, 0xe905001c, 0xe9203382,
0xea25bb82, 0xea050030, 0x82038288, 0x82eb2057, 0x84eb2443, 0x82eb0500, 0x44ec2873, 0xc0ec0500, 0x82ed0500, 0x82ed20c7, 0x82ed20e7, 0x82ee207f,
0x82ef2073, 0xa4ef25b3, 0x04f00500, 0x60200382, 0xc8240382, 0x20f10500, 0x37820382, 0x8f82f220, 0x0058f224, 0xf782f205, 0x00e0f225, 0x8268f305,
0x207f8203, 0x206f82f4, 0x200b82f4, 0x209382f4, 0x208b82f5, 0x20d782f5, 0x25a782f6, 0x050080f6, 0x0382b4f6, 0xf7209b82, 0xf7202382, 0xf7209f82,
0xf7204782, 0xf7245382, 0xf80500f0, 0xf8204f82, 0xf8215b82, 0x200b8238, 0x28038250, 0xf90500e8, 0xfa050094, 0x23038254, 0xfb0500b8, 0xfb209b82,
0xfc202f82, 0xfc208b82, 0xfc24af82, 0xfc05008c, 0xfd206f82, 0xfd203382, 0xfe202b82, 0xfe201f82, 0xff208782, 0xff204782, 0xff29bb82, 0x000600e4,
0x01060068, 0x28038238, 0x020600e8, 0x03060070, 0x2403821c, 0x0406006c, 0x24038228, 0x0506009c, 0x2303820c, 0x06060078, 0x06201782, 0x06251f82,
0x070600bc, 0x82038234, 0x50082907, 0xc4080600, 0x64090600, 0xac240382, 0x040a0600, 0x4f820382, 0x00b40a25, 0x82300b06, 0x281b8203, 0x06004c0c,
0x0600d40c, 0x2017820d, 0x2807820d, 0x0600980e, 0x06003c0f, 0x242b8210, 0x0600ec10, 0x29538211, 0x0600e011, 0x06005412, 0x03821413, 0x0600cc23,
0x206b8214, 0x298f8214, 0x06007c15, 0x0600f415, 0x03829416, 0x1729ab82, 0x17060044, 0x180600b0, 0x24038200, 0x19060080, 0x23038218, 0x1a0600a4,
0x1a206b82, 0x1b203782, 0x1c20c782, 0x1c205782, 0x1d258b82, 0x1e060074, 0x23038260, 0x1f0600f0, 0x1f24af82, 0x20060088, 0x20247782, 0x210600c0,
0x22204782, 0x2220d782, 0x22201382, 0x23246782, 0x2306008c, 0x24245782, 0x24060024, 0x2424cb82, 0x250600d0, 0x25242b82, 0x260600c8, 0x26204782,
0x27200f82, 0x2720c782, 0x2820f382, 0x28249b82, 0x290600d8, 0x2a20b782, 0x2b207782, 0x2b204782, 0x2c209f82, 0x2c249382, 0x2d06009c, 0x2e2c5b82,
0x2e060028, 0x2f0600b8, 0x30060048, 0x30202f82, 0x3125a382, 0x31060010, 0x2303826c, 0x32060090, 0x33202782, 0x34207382, 0x3524f382, 0x35060040,
0x36285f82, 0x36060068, 0x370600ec, 0x38202b82, 0x38257b82, 0x390600b4, 0x8203822c, 0x143a245b, 0x823a0600, 0x823b2097, 0x823b2007, 0x823b20f7,
0xc43b25df, 0xe03b0600, 0xfc240382, 0x203c0600, 0xfb820382, 0x23823c20, 0x5b823c20, 0x1b823c20, 0x82e43c21, 0x201b8213, 0x248b823d, 0x0600603d,
0x21eb823d, 0x0782a83d, 0x0600d424, 0x0382083e, 0x3e206382, 0x3e207f82, 0x3e204f82, 0x3e20ab82, 0x3f204b82, 0x3f20c382, 0x3f20af82, 0x3f25c382,
0x3f06005c, 0x8203827c, 0x823f204f, 0x2440249f, 0x82400600, 0x824120ff, 0x82412007, 0x8241204f, 0x82412017, 0x824220af, 0x82422093, 0x704224a7,
0x82420600, 0xd84225b3, 0x34430600, 0xdf820382, 0x87824320, 0x00044425, 0x82484406, 0x82842003, 0x00dc2303, 0xab824506, 0x5f824520, 0x82744521,
0x00c0240b, 0x820c4606, 0x82502003, 0x242f8203, 0x0600cc46, 0x219b8247, 0x07823047, 0x47209b82, 0x4720fb82, 0x47207382, 0x4820cb82, 0x48202782,
0x48201382, 0x48206782, 0x4820ff82, 0x49241382, 0x49060018, 0x49205b82, 0x49243b82, 0x4a0600c8, 0x4a218782, 0x2007824c, 0x82038278, 0xf84a24d3,
0x824b0600, 0x824b20c7, 0xe84b24ab, 0x824c0600, 0x824c207b, 0x824c206b, 0x824c2057, 0x824c209b, 0x824d201f, 0x644d2533, 0x904d0600, 0x8f820382,
0x00f44d25, 0x823c4e06, 0x20e38203, 0x2157824e, 0x0b82b04e, 0x4f256b82, 0x4f060010, 0x20038240, 0x8203826c, 0x824f207f, 0x825020cb, 0x825020db,
0x825020cb, 0xec5024db, 0x82510600, 0x805121f7, 0xd4240782, 0x28520600, 0x6b820382, 0x8b825220, 0x57825220, 0x00005324, 0x57825306, 0x1f825320,
0x0f835320, 0x0600fc24, 0x03823854, 0x54210f82, 0x820782a8, 0x8255204f, 0x8255200f, 0x8255208b, 0x045624bb, 0x82560600, 0x7456210f, 0x0f820782,
0x3f825720, 0x00585725, 0x82885706, 0x24eb8203, 0x06001458, 0x202b8258, 0x20778258, 0x20978259, 0x20d38259, 0x20bb8259, 0x200b825a, 0x200b825a,
0x2017825a, 0x20db825b, 0x24af825b, 0x0600b45b, 0x213f825c, 0x07823c5c, 0x5c213f82, 0x820782bc, 0x4c5d24fb, 0x825d0600, 0xc45d212b, 0x0f820782,
0x0f825e20, 0x00705e24, 0xdf825e06, 0x4b825e20, 0xc3825f20, 0xbf825f20, 0x6f825f20, 0x8f826020, 0x1f826020, 0x007c6024, 0x8f826006, 0x0f826120,
0xdf826120, 0x00d86124, 0x57826206, 0x82906221, 0x20738207, 0x29b38263, 0x06008c63, 0x0600e063, 0x03821864, 0x03826020, 0x65206f82, 0x65200b82,
0x65208b82, 0x6b820b83, 0x27826620, 0x00846629, 0x00d06606, 0x82246706, 0x20578203, 0x20338267, 0x24538268, 0x0600a068, 0x20238268, 0x242f8269,
0x0600dc69, 0x28e7826a, 0x0600106b, 0x0600a46b, 0x20d3826c, 0x20cf826c, 0x2927826d, 0x0600e86d, 0x0600806e, 0x03821c6f, 0x70207f82, 0x70209382,
0x70205382, 0x71258782, 0x7206009c, 0x82038230, 0x8273202b, 0x82732083, 0x8274202b, 0x20752463, 0x82750600, 0x487624bf, 0x82760600, 0x9877245b,
0x82780600, 0x82782053, 0x82792033, 0x827a20fb, 0xc47a244b, 0x827a0600, 0x827b200f, 0x447b29b3, 0x947b0600, 0x0c7c0600, 0x54200382, 0x67820382,
0xf3827c20, 0x47827d20, 0x00687d29, 0x00c87d06, 0x82147e06, 0x82582003, 0x20738203, 0x2037827e, 0x201b827f, 0x2597827f, 0x0600cc7f, 0x03820880,
0x8020c782, 0x8120f782, 0x8120c382, 0x81204382, 0x81204f82, 0x82201b82, 0x82285f82, 0x8206008c, 0x830600d0, 0x83218382, 0x23078288, 0x840600e4,
0x84259b82, 0x850600ac, 0x8203823c, 0x82852093, 0xa8852117, 0x6b820b82, 0x00f08524, 0x6f828606, 0x82408621, 0x20578207, 0x208f8286, 0x24af8286,
0x0600f886, 0x214f8287, 0x07823487, 0x03825c20, 0x87205782, 0x87207382, 0x8820e382, 0x88208382, 0x88201782, 0x88251782, 0x88060084, 0x820382b4,
0x828920a7, 0x828920a7, 0x7489246b, 0x82890600, 0x82892093, 0xe089242f, 0x828a0600, 0x308a212f, 0x2f820782, 0x17828a20, 0x77828a20, 0x77828a20,
0x2f828b20, 0x004c8b25, 0x82788b06, 0x82a42003, 0x24178203, 0x0600fc8b, 0x205b828c, 0x202b828c, 0x20f3828c, 0x2017828c, 0x2017828c, 0x208f828c,
0x2013828d, 0x25db828d, 0x0600288e, 0x0382608e, 0x8f247782, 0x8f06001c, 0x8f200b82, 0x8f206b82, 0x90205382, 0x9020f782, 0x9024e382, 0x900600b0,
0x91209382, 0x91247782, 0x91060058, 0x9124ef82, 0x920600e4, 0x92215b82, 0x82078268, 0x82922057, 0x829320cb, 0x829320e3, 0x82932083, 0x8293201f,
0x8294202f, 0x6c94252f, 0xac940600, 0x0f820382, 0x6b829520, 0xcf829520, 0x00c09528, 0x00f49506, 0xdf829606, 0x1f829620, 0x82a09621, 0x00d8240b,
0x82149706, 0x82542003, 0x829c2003, 0x25a78203, 0x0600fc97, 0x03822498, 0x9821ab82, 0x82078290, 0x82992023, 0x5099240f, 0x82990600, 0x82992077,
0x82992013, 0x8399206b, 0x202b8217, 0x20af829a, 0x241b829a, 0x06008c9a, 0x20c3829a, 0x2073829a, 0x2083829b, 0x255f829b, 0x0600e89b, 0x0382209c,
0x9c20bf82, 0x9c205f82, 0x9d253382, 0x9d060004, 0x82038238, 0x829d2083, 0x829e20ff, 0x889e247f, 0x829e0600, 0x829f201b, 0x829f20cb, 0x829f20ab,
0x10a024ab, 0x82a00600, 0x82a020bb, 0x0ca12547, 0x64a10600, 0x5f820382, 0x2382a220, 0xaf82a220, 0x007ca225, 0x8298a206, 0x23138303, 0xa30600dc,
0xa3202382, 0xa3207782, 0xa3201b82, 0xa3205b82, 0xa3253782, 0xa40600e4, 0x20038234, 0x82038284, 0x82a520db, 0x82a52023, 0x82a5200f, 0x82a5206f,
0x82a6206f, 0x82a6200f, 0x82a620e7, 0xe0a625d3, 0x00a70600, 0x44200382, 0x1f820382, 0x00cca724, 0x8382a806, 0x1f82a820, 0xdb82a820, 0x82b8a821,
0x20db820f, 0x206382a9, 0x20a382a9, 0x205f82a9, 0x255f82a9, 0x06001caa, 0x038278aa, 0xaa251f82, 0xab0600fc, 0x2003823c, 0x23038280, 0xac0600c4,
0xac21eb82, 0x8207824c, 0xd0ac255f, 0x20ad0600, 0x2b820382, 0xdf82ad20, 0x6b82ae20, 0x0058ae24, 0x4782ae06, 0x00e8ae24, 0xeb82af06, 0x0f82af20,
0x8294af21, 0x2457820b, 0x060024b0, 0x20c782b0, 0x252b82b0, 0x060008b1, 0x038250b1, 0xb1201b82, 0xb220c782, 0xb2285782, 0xb2060060, 0xb30600ac,
0xb3204782, 0xb320f382, 0xb3201b82, 0xb420c382, 0xb4240b82, 0xb50600b0, 0xb5249782, 0xb6060098, 0xb6201f82, 0xb7207382, 0xb720eb82, 0xb7241b82,
0xb80600a4, 0xb8206b82, 0xb820c382, 0xb920e382, 0xb9207382, 0xba202f82, 0xba20eb82, 0xbb24c382, 0xbb060014, 0xbb201b82, 0xbc206782, 0xbc204382,
0xbc243b82, 0xbd0600d8, 0xbd21f782, 0x8207828c, 0x34be28ab, 0x88be0600, 0x82bf0600, 0x70bf2187, 0xaf820782, 0x0782c020, 0x00f4c024, 0x2f82c106,
0x6b82c220, 0xf382c220, 0x3f82c320, 0x5f82c320, 0x5782c320, 0x00f8c325, 0x8244c406, 0x829c2003, 0x00d02303, 0x6f82c506, 0xdf82c520, 0x82c4c521,
0x00ec240b, 0x822cc606, 0x00a82303, 0x7f82c706, 0x5b82c720, 0x2f82c720, 0x3b82c820, 0x1382c820, 0x4f82c920, 0x0064c924, 0x2b82c906, 0x7b82ca20,
0xc782ca20, 0x007cca29, 0x005ccb06, 0x823ccc06, 0x244f8203, 0x060048cd, 0x249f82cd, 0x0600c0cd, 0x215b82ce, 0x078238ce, 0x03825020, 0x03829820,
0x0600e023, 0x20ab82cf, 0x202f82cf, 0x204382cf, 0x204f82d0, 0x204382d0, 0x202f82d0, 0x25cf82d0, 0x060028d1, 0x038294d1, 0x0600cc23, 0x203b82d2,
0x20eb82d2, 0x209b82d2, 0x241382d2, 0x0600c8d2, 0x20c782d3, 0x207f82d3, 0x254b82d3, 0x0600d4d3, 0x038224d4, 0xd4240f82, 0xd50600ac, 0xd5210b82,
0x24078268, 0xd60600b4, 0x82038220, 0x82d620b3, 0x82d720e3, 0x82d720c7, 0xa4d7240b, 0x82d70600, 0x82d8207f, 0x60d82463, 0x82d80600, 0xf4d8240f,
0x82d90600, 0x82d920c7, 0x82d920c3, 0x4cda24fb, 0x82da0600, 0x82db203f, 0x82db2097, 0x82db2033, 0x82dc2057, 0x82dc200b, 0x82dc2063, 0x82dd20af,
0x82dd200b, 0x82dd2023, 0x82dd208f, 0x82de20af, 0x88de243b, 0x82de0600, 0x82df200b, 0x82df2073, 0x82df2057, 0x82e020bb, 0x82e020bb, 0xb8e025e3,
0x00e10600, 0x4b820382, 0x3f82e120, 0x8b82e220, 0x0074e224, 0x2382e206, 0x0018e324, 0xdb82e306, 0x6382e320, 0x0f83e320, 0xe4248b82, 0xe406003c,
0xe4208b82, 0xe5202b82, 0xe5206b82, 0xe5205f82, 0xe529d382, 0xe50600a8, 0xe60600fc, 0x82038254, 0x82e620fb, 0x82e720ab, 0x82e7200b, 0x82e7207b,
0x82e8202b, 0x82e820d3, 0x82e82093, 0x82e92017, 0x82e9209f, 0x82ea20db, 0x82ea2077, 0x80ea244f, 0x82ea0600, 0x82ea2023, 0x2ceb24a3, 0x82eb0600,
0x82eb207f, 0xe0eb254f, 0x24ec0600, 0x9b820382, 0x0f82ec20, 0x3b82ec20, 0x4782ed20, 0x6f82ed20, 0x00a0ed24, 0x9382ed06, 0x9382ed20, 0xa782ee20,
0x0050ee25, 0x8278ee06, 0x25178203, 0x0600c8ee, 0x038208ef, 0xef203b82, 0xef20ef82, 0xef208f82, 0xef202b82, 0xf0209f82, 0xf0206f82, 0xf0295f82,
0xf00600bc, 0xf10600dc, 0x82038204, 0x82f120c3, 0xb4f121e7, 0xe4230b82, 0x82f20600, 0x64f22137, 0x6f820782, 0x2f82f320, 0x0054f329, 0x01150000,
0x82010002, 0x82002007, 0x82172005, 0x240b8507, 0x00070002, 0x24178617, 0x002e0003, 0x200b861e, 0x20158204, 0x240b864c, 0x00120005, 0x240b8663,
0x00150006, 0x240b8675, 0x00100008, 0x200b868a, 0x200b8209, 0x240b869a, 0x0021000b, 0x200b86aa, 0x200b820c, 0x200b86cb, 0x26538212, 0x000300ec,
0x82090401, 0x012e2211, 0x240b8603, 0x010e0002, 0x240b8631, 0x015c0003, 0x240b863f, 0x012e0004, 0x240b869b, 0x01240005, 0x240b86c9, 0x012a0006,
0x240b86ed, 0x02200008, 0x200b8617, 0x200b8209, 0x240b8637, 0x0242000b, 0x200b8657, 0x080b820c, 0x6946992f, 0x73646578, 0x45207379, 0x6c656378,
0x726f6973, 0x302e3320, 0x67655231, 0x72616c75, 0x69726144, 0x61566e65, 0x746e656c, 0x3a656e69, 0x252e9620, 0x3032203a, 0x1c963730, 0x72655622,
0x6e205782, 0x30205784, 0x7388288c, 0x49494923, 0x206b8562, 0x8f6c8820, 0x74682b0f, 0x2f3a7074, 0x7777772f, 0xb486662e, 0xb3876520, 0x6f632e24,
0x20a02f6d, 0x002d9f96, 0x00690046, 0x00650078, 0x00730064, 0x22038279, 0x82450020, 0x8263200f, 0x826c2011, 0x0069300d, 0x0072006f, 0x00330020,
0x0030002e, 0x82520031, 0x00672617, 0x006c0075, 0x20178261, 0x20058444, 0x22138269, 0x8256006e, 0x846c200b, 0x82742009, 0x826e2051, 0x823a2009,
0x835dad37, 0x82322031, 0x00302267, 0x2097ae37, 0x206f8256, 0x20af8672, 0x20af8a6e, 0x970b8230, 0x21e79151, 0x01830049, 0x8b006221, 0x922020d7,
0x221f9fd9, 0x82740068, 0x00702401, 0x822f003a, 0x00772101, 0x2e220183, 0x69416600, 0x4165200e, 0x2e261067, 0x6f006300, 0x33826d00, 0x002441c1,
0x00020000, 0xff230084, 0x840a00f1, 0x08048e08, 0x00691751, 0x01020100, 0x01040103, 0x01060105, 0x01080107, 0x010a0109, 0x010c010b, 0x010e010d,
0x0110010f, 0x01120111, 0x01140113, 0x01160115, 0x01180117, 0x011a0119, 0x011c011b, 0x011e011d, 0x0120011f, 0x00030021, 0x00050004, 0x00070006,
0x82090008, 0x832e0767, 0x000c000b, 0x000e000d, 0x0010000f, 0x00120011, 0x00140013, 0x00160015, 0x00180017, 0x001a0019, 0x001c001b, 0x001e001d,
0x0020001f, 0x00220021, 0x00240023, 0x00260025, 0x00280027, 0x002a0029, 0x002c002b, 0x002e002d, 0x0030002f, 0x00320031, 0x00340033, 0x00360035,
0x00380037, 0x003a0039, 0x003c003b, 0x003e003d, 0x0040003f, 0x00420041, 0x00440043, 0x00460045, 0x00480047, 0x004a0049, 0x004c004b, 0x004e004d,
0x0050004f, 0x00520051, 0x00540053, 0x00560055, 0x00580057, 0x005a0059, 0x005c005b, 0x005e005d, 0x0060005f, 0x01220161, 0x01240123, 0x01260125,
0x01280127, 0x012a0129, 0x012c012b, 0x012e012d, 0x0130012f, 0x01320131, 0x01340133, 0x01360135, 0x01380137, 0x013a0139, 0x013c013b, 0x013e013d,
0x0140013f, 0x00420141, 0x00a300ac, 0x00850084, 0x009600bd, 0x008600e8, 0x008b008e, 0x00a9009d, 0x004301a4, 0x00da008a, 0x00930083, 0x00f300f2,
0x0044018d, 0x00c30088, 0x00f100de, 0x00aa009e, 0x00f400f5, 0x00a200f6, 0x00c900ad, 0x00ae00c7, 0x00630062, 0x00640090, 0x006500cb, 0x00ca00c8,
0x00cc00cf, 0x00ce00cd, 0x006600e9, 0x00d000d3, 0x00af00d1, 0x00f00067, 0x00d60091, 0x00d500d4, 0x00eb0068, 0x008900ed, 0x0069006a, 0x006d006b,
0x006e006c, 0x006f00a0, 0x00700071, 0x00730072, 0x00740075, 0x00770076, 0x007800ea, 0x0079007a, 0x007d007b, 0x00b8007c, 0x007f00a1, 0x0080007e,
0x00ec0081, 0x01ba00ee, 0x01460145, 0x01480147, 0x004a0149, 0x01fe00fd, 0x014c014b, 0x004e014d, 0x010001ff, 0x0150014f, 0x01520151, 0x01540153,
0x01560155, 0x01580157, 0x015a0159, 0x015c015b, 0x005e015d, 0x01f900f8, 0x0160015f, 0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169,
0x016c016b, 0x016e016d, 0x01d7006f, 0x01710170, 0x01730172, 0x01750174, 0x01770176, 0x01790178, 0x017b017a, 0x017d017c, 0x00e2007e, 0x017f01e3,
0x01810180, 0x01830182, 0x01850184, 0x01870186, 0x01890188, 0x018b018a, 0x008d018c, 0x01b100b0, 0x018f018e, 0x01910190, 0x01930192, 0x01950194,
0x00970196, 0x00fc00fb, 0x01e500e4, 0x01990198, 0x019b019a, 0x019d019c, 0x019f019e, 0x01a101a0, 0x01a301a2, 0x01a501a4, 0x01a701a6, 0x01a901a8,
0x01ab01aa, 0x00ad01ac, 0x01ae01bb, 0x01b001af, 0x00e600b1, 0x01b201e7, 0x01b401b3, 0x01b601b5, 0x01b801b7, 0x01ba01b9, 0x01bc01bb, 0x01be01bd,
0x01c001bf, 0x01c201c1, 0x00c401c3, 0x01c501a6, 0x01c701c6, 0x01c901c8, 0x01cb01ca, 0x01cd01cc, 0x01cf01ce, 0x01d101d0, 0x01d301d2, 0x01d501d4,
0x01d701d6, 0x01d901d8, 0x01db01da, 0x01dd01dc, 0x01df01de, 0x01e101e0, 0x01e301e2, 0x01e501e4, 0x01e701e6, 0x01e901e8, 0x01eb01ea, 0x01ed01ec,
0x01ef01ee, 0x01f101f0, 0x01f301f2, 0x01f501f4, 0x01f701f6, 0x01f901f8, 0x01fb01fa, 0x01fd01fc, 0x02ff01fe, 0x02010200, 0x02030202, 0x02050204,
0x02070206, 0x02090208, 0x020b020a, 0x020d020c, 0x020f020e, 0x02110210, 0x02130212, 0x02150214, 0x02170216, 0x02190218, 0x021b021a, 0x021d021c,
0x021f021e, 0x02210220, 0x02230222, 0x02250224, 0x02270226, 0x02290228, 0x022b022a, 0x022d022c, 0x022f022e, 0x02310230, 0x02330232, 0x02350234,
0x02370236, 0x02390238, 0x023b023a, 0x023d023c, 0x023f023e, 0x02410240, 0x02430242, 0x02450244, 0x02470246, 0x02490248, 0x024b024a, 0x024d024c,
0x024f024e, 0x02510250, 0x02530252, 0x02550254, 0x02570256, 0x02590258, 0x025b025a, 0x025d025c, 0x025f025e, 0x02610260, 0x02630262, 0x02650264,
0x02670266, 0x02690268, 0x026b026a, 0x026d026c, 0x026f026e, 0x02710270, 0x02730272, 0x02750274, 0x02770276, 0x02790278, 0x027b027a, 0x027d027c,
0x027f027e, 0x02810280, 0x02830282, 0x02850284, 0x02870286, 0x02890288, 0x028b028a, 0x028d028c, 0x028f028e, 0x02910290, 0x02930292, 0x02950294,
0x02970296, 0x02990298, 0x029b029a, 0x029d029c, 0x029f029e, 0x02a102a0, 0x02a302a2, 0x02a502a4, 0x02a702a6, 0x02a902a8, 0x02ab02aa, 0x02ad02ac,
0x02af02ae, 0x02b102b0, 0x02b302b2, 0x02b502b4, 0x02b702b6, 0x02b902b8, 0x02bb02ba, 0x02bd02bc, 0x02bf02be, 0x02c102c0, 0x02c302c2, 0x02c502c4,
0x02c702c6, 0x02c902c8, 0x02cb02ca, 0x02cd02cc, 0x02cf02ce, 0x02d102d0, 0x02d302d2, 0x02d502d4, 0x02d702d6, 0x02d902d8, 0x02db02da, 0x02dd02dc,
0x02df02de, 0x02e102e0, 0x02e302e2, 0x02e502e4, 0x02e702e6, 0x02e902e8, 0x02eb02ea, 0x02ed02ec, 0x02ef02ee, 0x02f102f0, 0x02f302f2, 0x02f502f4,
0x00f702f6, 0x02e100d8, 0x02f902f8, 0x02fb02fa, 0x02fd02fc, 0x03ff02fe, 0x03010300, 0x03030302, 0x03050304, 0x00070306, 0x00dc00db, 0x00e000dd,
0x03df00d9, 0x03090308, 0x030b030a, 0x030d030c, 0x030f030e, 0x03110310, 0x03130312, 0x03150314, 0x03170316, 0x03190318, 0x031b031a, 0x031d031c,
0x031f031e, 0x03210320, 0x03230322, 0x03250324, 0x03270326, 0x03290328, 0x032b032a, 0x032d032c, 0x032f032e, 0x03310330, 0x03330332, 0x03350334,
0x03370336, 0x03390338, 0x033b033a, 0x033d033c, 0x033f033e, 0x03410340, 0x03430342, 0x03450344, 0x03470346, 0x03490348, 0x034b034a, 0x034d034c,
0x034f034e, 0x03510350, 0x03530352, 0x03550354, 0x03570356, 0x03590358, 0x035b035a, 0x035d035c, 0x035f035e, 0x03610360, 0x03630362, 0x03650364,
0x03670366, 0x03690368, 0x036b036a, 0x036d036c, 0x036f036e, 0x03710370, 0x03730372, 0x03750374, 0x03770376, 0x03790378, 0x037b037a, 0x037d037c,
0x037f037e, 0x03810380, 0x03830382, 0x03850384, 0x03870386, 0x03890388, 0x038b038a, 0x038d038c, 0x038f038e, 0x03910390, 0x03930392, 0x03950394,
0x03970396, 0x03990398, 0x039b039a, 0x039d039c, 0x039f039e, 0x03a103a0, 0x03a303a2, 0x03a503a4, 0x03a703a6, 0x03a903a8, 0x03ab03aa, 0x03ad03ac,
0x03af03ae, 0x03b103b0, 0x03b303b2, 0x03b503b4, 0x03b703b6, 0x03b903b8, 0x03bb03ba, 0x03bd03bc, 0x03bf03be, 0x03c103c0, 0x03c303c2, 0x03c503c4,
0x03c703c6, 0x03c903c8, 0x03cb03ca, 0x03cd03cc, 0x03cf03ce, 0x00d103d0, 0x03d2039b, 0x03d403d3, 0x03d603d5, 0x03d803d7, 0x03da03d9, 0x03dc03db,
0x03de03dd, 0x03e003df, 0x03e203e1, 0x03e403e3, 0x03e603e5, 0x03e803e7, 0x03ea03e9, 0x03ec03eb, 0x03ee03ed, 0x03f003ef, 0x03f203f1, 0x03f403f3,
0x03f603f5, 0x03f803f7, 0x03fa03f9, 0x03fc03fb, 0x03fe03fd, 0x040004ff, 0x04020401, 0x04040403, 0x04060405, 0x04080407, 0x040a0409, 0x040c040b,
0x040e040d, 0x0410040f, 0x04120411, 0x04140413, 0x04160415, 0x04180417, 0x041a0419, 0x041c041b, 0x041e041d, 0x0420041f, 0x04220421, 0x04240423,
0x04260425, 0x04280427, 0x042a0429, 0x042c042b, 0x042e042d, 0x0430042f, 0x04320431, 0x04340433, 0x04360435, 0x04380437, 0x043a0439, 0x043c043b,
0x043e043d, 0x0440043f, 0x04420441, 0x04440443, 0x04460445, 0x04480447, 0x044a0449, 0x044c044b, 0x044e044d, 0x0450044f, 0x04520451, 0x04540453,
0x04560455, 0x04580457, 0x045a0459, 0x045c045b, 0x045e045d, 0x0460045f, 0x04620461, 0x04640463, 0x04660465, 0x04680467, 0x046a0469, 0x046c046b,
0x046e046d, 0x0470046f, 0x04720471, 0x04740473, 0x04760475, 0x04780477, 0x047a0479, 0x047c047b, 0x047e047d, 0x0480047f, 0x04820481, 0x04840483,
0x04860485, 0x04880487, 0x048a0489, 0x048c048b, 0x048e048d, 0x0490048f, 0x04920491, 0x04940493, 0x04960495, 0x04980497, 0x049a0499, 0x049c049b,
0x049e049d, 0x04a0049f, 0x04a204a1, 0x04a404a3, 0x04a604a5, 0x04a804a7, 0x04aa04a9, 0x04ac04ab, 0x04ae04ad, 0x04b004af, 0x04b204b1, 0x04b404b3,
0x04b604b5, 0x04b804b7, 0x04ba04b9, 0x04bc04bb, 0x04be04bd, 0x04c004bf, 0x04c204c1, 0x04c404c3, 0x04c604c5, 0x04c804c7, 0x04ca04c9, 0x04cc04cb,
0x04ce04cd, 0x04d004cf, 0x04d204d1, 0x04d404d3, 0x04d604d5, 0x04d804d7, 0x04da04d9, 0x04dc04db, 0x04de04dd, 0x04e004df, 0x04e204e1, 0x04e404e3,
0x04e604e5, 0x04e804e7, 0x04ea04e9, 0x04ec04eb, 0x04ee04ed, 0x04f004ef, 0x04f204f1, 0x04f404f3, 0x04f604f5, 0x04f804f7, 0x04fa04f9, 0x04fc04fb,
0x04fe04fd, 0x050005ff, 0x05020501, 0x05040503, 0x05060505, 0x05080507, 0x050a0509, 0x050c050b, 0x050e050d, 0x0510050f, 0x05120511, 0x05140513,
0x05160515, 0x05180517, 0x051a0519, 0x051c051b, 0x051e051d, 0x0520051f, 0x05220521, 0x05240523, 0x05260525, 0x05280527, 0x052a0529, 0x052c052b,
0x052e052d, 0x0530052f, 0x05320531, 0x05340533, 0x05360535, 0x05380537, 0x053a0539, 0x053c053b, 0x053e053d, 0x0540053f, 0x05420541, 0x05440543,
0x05460545, 0x05480547, 0x054a0549, 0x054c054b, 0x054e054d, 0x0550054f, 0x05520551, 0x05540553, 0x05560555, 0x05580557, 0x055a0559, 0x055c055b,
0x055e055d, 0x0560055f, 0x05620561, 0x05640563, 0x05660565, 0x05680567, 0x056a0569, 0x056c056b, 0x056e056d, 0x0570056f, 0x05720571, 0x05740573,
0x05760575, 0x05780577, 0x057a0579, 0x057c057b, 0x057e057d, 0x0580057f, 0x05820581, 0x05840583, 0x05860585, 0x05880587, 0x058a0589, 0x058c058b,
0x058e058d, 0x0590058f, 0x05920591, 0x05940593, 0x05960595, 0x05980597, 0x059a0599, 0x059c059b, 0x059e059d, 0x05a0059f, 0x05a205a1, 0x05a405a3,
0x05a605a5, 0x05a805a7, 0x05aa05a9, 0x05ac05ab, 0x05ae05ad, 0x05b005af, 0x05b205b1, 0x05b405b3, 0x05b605b5, 0x05b805b7, 0x05ba05b9, 0x05bc05bb,
0x05be05bd, 0x05c005bf, 0x05c205c1, 0x05c405c3, 0x05c605c5, 0x05c805c7, 0x05ca05c9, 0x05cc05cb, 0x05ce05cd, 0x05d005cf, 0x05d205d1, 0x05d405d3,
0x05d605d5, 0x05d805d7, 0x05da05d9, 0x05dc05db, 0x05de05dd, 0x05e005df, 0x05e205e1, 0x05e405e3, 0x05e605e5, 0x05e805e7, 0x05ea05e9, 0x05ec05eb,
0x05ee05ed, 0x05f005ef, 0x05f205f1, 0x05f405f3, 0x05f605f5, 0x05f805f7, 0x05fa05f9, 0x05fc05fb, 0x05fe05fd, 0x060006ff, 0x06020601, 0x06040603,
0x06060605, 0x06080607, 0x060a0609, 0x060c060b, 0x060e060d, 0x0610060f, 0x06120611, 0x06140613, 0x06160615, 0x06180617, 0x061a0619, 0x061c061b,
0x061e061d, 0x0620061f, 0x06220621, 0x06240623, 0x06260625, 0x06280627, 0x062a0629, 0x062c062b, 0x062e062d, 0x0630062f, 0x06320631, 0x06340633,
0x06360635, 0x06380637, 0x063a0639, 0x063c063b, 0x063e063d, 0x0640063f, 0x06420641, 0x06440643, 0x06460645, 0x06480647, 0x064a0649, 0x064c064b,
0x064e064d, 0x0650064f, 0x06520651, 0x06540653, 0x06560655, 0x06580657, 0x065a0659, 0x065c065b, 0x065e065d, 0x0660065f, 0x06620661, 0x06640663,
0x06660665, 0x06680667, 0x066a0669, 0x066c066b, 0x066e066d, 0x0670066f, 0x06720671, 0x06740673, 0x06760675, 0x06780677, 0x067a0679, 0x067c067b,
0x067e067d, 0x0680067f, 0x06820681, 0x06840683, 0x06860685, 0x06880687, 0x068a0689, 0x068c068b, 0x068e068d, 0x0690068f, 0x06920691, 0x06940693,
0x06960695, 0x06980697, 0x069a0699, 0x069c069b, 0x069e069d, 0x06a0069f, 0x06a206a1, 0x06a406a3, 0x06a606a5, 0x06a806a7, 0x06aa06a9, 0x06ac06ab,
0x06ae06ad, 0x06b006af, 0x06b206b1, 0x06b406b3, 0x06b606b5, 0x06b806b7, 0x06ba06b9, 0x06bc06bb, 0x06be06bd, 0x06c006bf, 0x06c206c1, 0x06c406c3,
0x06c606c5, 0x06c806c7, 0x06ca06c9, 0x06cc06cb, 0x06ce06cd, 0x06d006cf, 0x06d206d1, 0x06d406d3, 0x06d606d5, 0x06d806d7, 0x06da06d9, 0x06dc06db,
0x06de06dd, 0x06e006df, 0x06e206e1, 0x06e406e3, 0x06e606e5, 0x06e806e7, 0x06ea06e9, 0x06ec06eb, 0x06ee06ed, 0x06f006ef, 0x06f206f1, 0x06f406f3,
0x06f606f5, 0x06f806f7, 0x06fa06f9, 0x06fc06fb, 0x06fe06fd, 0x070007ff, 0x07020701, 0x07040703, 0x07060705, 0x07080707, 0x070a0709, 0x070c070b,
0x070e070d, 0x0710070f, 0x07120711, 0x07140713, 0x07160715, 0x07180717, 0x071a0719, 0x071c071b, 0x071e071d, 0x0720071f, 0x07220721, 0x07240723,
0x07260725, 0x07280727, 0x072a0729, 0x072c072b, 0x072e072d, 0x0730072f, 0x07320731, 0x07340733, 0x07360735, 0x07380737, 0x073a0739, 0x073c073b,
0x073e073d, 0x0740073f, 0x07420741, 0x07440743, 0x07460745, 0x07480747, 0x074a0749, 0x074c074b, 0x074e074d, 0x0750074f, 0x07520751, 0x07540753,
0x07560755, 0x07580757, 0x075a0759, 0x075c075b, 0x075e075d, 0x0760075f, 0x07620761, 0x07640763, 0x07660765, 0x07680767, 0x076a0769, 0x076c076b,
0x076e076d, 0x0770076f, 0x07720771, 0x07740773, 0x07760775, 0x07780777, 0x077a0779, 0x077c077b, 0x077e077d, 0x0780077f, 0x07820781, 0x07840783,
0x07860785, 0x07880787, 0x078a0789, 0x078c078b, 0x078e078d, 0x0790078f, 0x07920791, 0x07940793, 0x07960795, 0x07980797, 0x079a0799, 0x079c079b,
0x079e079d, 0x07a0079f, 0x07a207a1, 0x07a407a3, 0x07a607a5, 0x07a807a7, 0x07aa07a9, 0x07ac07ab, 0x07ae07ad, 0x07b007af, 0x07b207b1, 0x07b407b3,
0x07b607b5, 0x07b807b7, 0x07ba07b9, 0x07bc07bb, 0x07be07bd, 0x07c007bf, 0x07c207c1, 0x07c407c3, 0x07c607c5, 0x07c807c7, 0x07ca07c9, 0x07cc07cb,
0x07ce07cd, 0x07d007cf, 0x07d207d1, 0x07d407d3, 0x07d607d5, 0x07d807d7, 0x07da07d9, 0x07dc07db, 0x07de07dd, 0x07e007df, 0x07e207e1, 0x07e407e3,
0x07e607e5, 0x07e807e7, 0x07ea07e9, 0x07ec07eb, 0x07ee07ed, 0x07f007ef, 0x07f207f1, 0x07f407f3, 0x07f607f5, 0x07f807f7, 0x07fa07f9, 0x07fc07fb,
0x07fe07fd, 0x080008ff, 0x08020801, 0x08040803, 0x08060805, 0x08080807, 0x080a0809, 0x080c080b, 0x080e080d, 0x0810080f, 0x08120811, 0x08140813,
0x08160815, 0x08180817, 0x081a0819, 0x081c081b, 0x081e081d, 0x0820081f, 0x08220821, 0x08240823, 0x08260825, 0x08280827, 0x082a0829, 0x082c082b,
0x082e082d, 0x0830082f, 0x08320831, 0x08340833, 0x08360835, 0x08380837, 0x083a0839, 0x083c083b, 0x083e083d, 0x0840083f, 0x08420841, 0x08440843,
0x08460845, 0x08480847, 0x084a0849, 0x084c084b, 0x084e084d, 0x0850084f, 0x08520851, 0x08540853, 0x08560855, 0x08580857, 0x085a0859, 0x085c085b,
0x085e085d, 0x0860085f, 0x08620861, 0x08640863, 0x08660865, 0x08680867, 0x086a0869, 0x086c086b, 0x086e086d, 0x0870086f, 0x08720871, 0x08740873,
0x08760875, 0x08780877, 0x087a0879, 0x087c087b, 0x087e087d, 0x0880087f, 0x08820881, 0x08840883, 0x08860885, 0x08880887, 0x088a0889, 0x088c088b,
0x088e088d, 0x0890088f, 0x08920891, 0x08940893, 0x08960895, 0x08980897, 0x089a0899, 0x089c089b, 0x089e089d, 0x08a0089f, 0x08a208a1, 0x08a408a3,
0x08a608a5, 0x08a808a7, 0x08aa08a9, 0x08ac08ab, 0x08ae08ad, 0x08b008af, 0x08b208b1, 0x08b408b3, 0x08b608b5, 0x08b808b7, 0x08ba08b9, 0x08bc08bb,
0x08be08bd, 0x08c008bf, 0x08c208c1, 0x08c408c3, 0x08c608c5, 0x08c808c7, 0x08ca08c9, 0x08cc08cb, 0x08ce08cd, 0x08d008cf, 0x08d208d1, 0x08d408d3,
0x08d608d5, 0x08d808d7, 0x08da08d9, 0x08dc08db, 0x08de08dd, 0x08e008df, 0x08e208e1, 0x08e408e3, 0x08e608e5, 0x08e808e7, 0x08ea08e9, 0x08ec08eb,
0x08ee08ed, 0x08f008ef, 0x08f208f1, 0x08f408f3, 0x08f608f5, 0x08f808f7, 0x08fa08f9, 0x08fc08fb, 0x08fe08fd, 0x090009ff, 0x09020901, 0x09040903,
0x09060905, 0x09080907, 0x090a0909, 0x090c090b, 0x090e090d, 0x0910090f, 0x09120911, 0x09140913, 0x09160915, 0x09180917, 0x091a0919, 0x091c091b,
0x091e091d, 0x0920091f, 0x09220921, 0x09240923, 0x09260925, 0x09280927, 0x092a0929, 0x092c092b, 0x092e092d, 0x0930092f, 0x09320931, 0x09340933,
0x09360935, 0x09380937, 0x093a0939, 0x093c093b, 0x093e093d, 0x0940093f, 0x09420941, 0x09440943, 0x09460945, 0x09480947, 0x094a0949, 0x094c094b,
0x094e094d, 0x0950094f, 0x09520951, 0x09540953, 0x09560955, 0x09580957, 0x095a0959, 0x095c095b, 0x095e095d, 0x0960095f, 0x09620961, 0x09640963,
0x09660965, 0x09680967, 0x096a0969, 0x096c096b, 0x096e096d, 0x0970096f, 0x09720971, 0x09740973, 0x09760975, 0x09780977, 0x097a0979, 0x097c097b,
0x097e097d, 0x0980097f, 0x09820981, 0x09840983, 0x09860985, 0x09880987, 0x098a0989, 0x098c098b, 0x098e098d, 0x0990098f, 0x09920991, 0x09940993,
0x09960995, 0x09980997, 0x099a0999, 0x099c099b, 0x099e099d, 0x09a0099f, 0x09a209a1, 0x09a409a3, 0x09a609a5, 0x09a809a7, 0x09aa09a9, 0x09ac09ab,
0x09ae09ad, 0x09b009af, 0x09b209b1, 0x09b409b3, 0x09b609b5, 0x09b809b7, 0x09ba09b9, 0x09bc09bb, 0x09be09bd, 0x09c009bf, 0x09c209c1, 0x09c409c3,
0x09c609c5, 0x09c809c7, 0x09ca09c9, 0x09cc09cb, 0x09ce09cd, 0x09d009cf, 0x09d209d1, 0x09d409d3, 0x09d609d5, 0x09d809d7, 0x09da09d9, 0x09dc09db,
0x09de09dd, 0x09e009df, 0x09e209e1, 0x09e409e3, 0x09e609e5, 0x09e809e7, 0x09ea09e9, 0x09ec09eb, 0x09ee09ed, 0x09f009ef, 0x09f209f1, 0x09f409f3,
0x09f609f5, 0x09f809f7, 0x09fa09f9, 0x09fc09fb, 0x09fe09fd, 0x0a000aff, 0x0a020a01, 0x0a040a03, 0x0a060a05, 0x0a080a07, 0x0a0a0a09, 0x0a0c0a0b,
0x0a0e0a0d, 0x0a100a0f, 0x0a120a11, 0x0a140a13, 0x0a160a15, 0x0a180a17, 0x0a1a0a19, 0x0a1c0a1b, 0x0a1e0a1d, 0x0a200a1f, 0x0a220a21, 0x0a240a23,
0x0a260a25, 0x0a280a27, 0x0a2a0a29, 0x0a2c0a2b, 0x0a2e0a2d, 0x0a300a2f, 0x0a320a31, 0x0a340a33, 0x0a360a35, 0x0a380a37, 0x0a3a0a39, 0x0a3c0a3b,
0x0a3e0a3d, 0x0a400a3f, 0x0a420a41, 0x0a440a43, 0x0a460a45, 0x0a480a47, 0x0a4a0a49, 0x0a4c0a4b, 0x0a4e0a4d, 0x0a500a4f, 0x0a520a51, 0x0a540a53,
0x0a560a55, 0x0a580a57, 0x0a5a0a59, 0x0a5c0a5b, 0x0a5e0a5d, 0x0a600a5f, 0x0a620a61, 0x0a640a63, 0x0a660a65, 0x0a680a67, 0x0a6a0a69, 0x0a6c0a6b,
0x0a6e0a6d, 0x0a700a6f, 0x0a720a71, 0x0a740a73, 0x0a760a75, 0x0a780a77, 0x0a7a0a79, 0x0a7c0a7b, 0x0a7e0a7d, 0x0a800a7f, 0x0a820a81, 0x0a840a83,
0x0a860a85, 0x0a880a87, 0x0a8a0a89, 0x0a8c0a8b, 0x0a8e0a8d, 0x0a900a8f, 0x0a920a91, 0x0a940a93, 0x0a960a95, 0x0a980a97, 0x0a9a0a99, 0x0a9c0a9b,
0x0a9e0a9d, 0x0aa00a9f, 0x0aa20aa1, 0x0aa40aa3, 0x0aa60aa5, 0x0aa80aa7, 0x0aaa0aa9, 0x0aac0aab, 0x0aae0aad, 0x0ab00aaf, 0x0ab20ab1, 0x0ab40ab3,
0x0ab60ab5, 0x0ab80ab7, 0x0aba0ab9, 0x0abc0abb, 0x0abe0abd, 0x0ac00abf, 0x0ac20ac1, 0x0ac40ac3, 0x0ac60ac5, 0x0ac80ac7, 0x0aca0ac9, 0x0acc0acb,
0x0ace0acd, 0x0ad00acf, 0x0ad20ad1, 0x0ad40ad3, 0x0ad60ad5, 0x0ad80ad7, 0x0ada0ad9, 0x0adc0adb, 0x0ade0add, 0x0ae00adf, 0x0ae20ae1, 0x0ae40ae3,
0x0ae60ae5, 0x0ae80ae7, 0x0aea0ae9, 0x0aec0aeb, 0x0aee0aed, 0x0af00aef, 0x0af20af1, 0x0af40af3, 0x0af60af5, 0x0af80af7, 0x0afa0af9, 0x0afc0afb,
0x0afe0afd, 0x0b000bff, 0x0b020b01, 0x0b040b03, 0x0b060b05, 0x0b080b07, 0x0b0a0b09, 0x0b0c0b0b, 0x0b0e0b0d, 0x0b100b0f, 0x0b120b11, 0x0b140b13,
0x0b160b15, 0x0b180b17, 0x0b1a0b19, 0x0b1c0b1b, 0x0b1e0b1d, 0x0b200b1f, 0x0b220b21, 0x0b240b23, 0x0b260b25, 0x0b280b27, 0x0b2a0b29, 0x0b2c0b2b,
0x0b2e0b2d, 0x0b300b2f, 0x0b320b31, 0x0b340b33, 0x0b360b35, 0x0b380b37, 0x0b3a0b39, 0x0b3c0b3b, 0x0b3e0b3d, 0x0b400b3f, 0x0b420b41, 0x0b440b43,
0x0b460b45, 0x0b480b47, 0x0b4a0b49, 0x0b4c0b4b, 0x0b4e0b4d, 0x0b500b4f, 0x0b520b51, 0x0b540b53, 0x0b560b55, 0x0b580b57, 0x0b5a0b59, 0x0b5c0b5b,
0x0b5e0b5d, 0x0b600b5f, 0x0b620b61, 0x0b640b63, 0x0b660b65, 0x0b680b67, 0x0b6a0b69, 0x0b6c0b6b, 0x0b6e0b6d, 0x0b700b6f, 0x0b720b71, 0x0b740b73,
0x0b760b75, 0x0b780b77, 0x0b7a0b79, 0x0b7c0b7b, 0x0b7e0b7d, 0x0b800b7f, 0x0b820b81, 0x0b840b83, 0x0b860b85, 0x0b880b87, 0x0b8a0b89, 0x0b8c0b8b,
0x0b8e0b8d, 0x0b900b8f, 0x0b920b91, 0x0b940b93, 0x0b960b95, 0x0b980b97, 0x0b9a0b99, 0x0b9c0b9b, 0x0b9e0b9d, 0x0ba00b9f, 0x0ba20ba1, 0x0ba40ba3,
0x0ba60ba5, 0x0ba80ba7, 0x0baa0ba9, 0x00b200ab, 0x0bac0bb3, 0x00ae0bad, 0x00b700b6, 0x00af0bc4, 0x00b500b4, 0x00b00bc5, 0x00c20082, 0x0bb10b87,
0x00b30bb2, 0x00b40bab, 0x0bb50bc6, 0x0bb70bb6, 0x0bb90bb8, 0x0bbb0bba, 0x00be00bc, 0x0bbd0bbf, 0x0bbf0bbe, 0x0bc10bc0, 0x0bc30bc2, 0x00c50bc4,
0x0bc60bbc, 0x0bc80bc7, 0x0bca0bc9, 0x0bcc0bcb, 0x0bce0bcd, 0x0bd00bcf, 0x0bd20bd1, 0x0bd40bd3, 0x0bd60bd5, 0x0bd80bd7, 0x0bda0bd9, 0x0bdc0bdb,
0x0bde0bdd, 0x0be00bdf, 0x0be20be1, 0x0be40be3, 0x0be60be5, 0x0be80be7, 0x0bea0be9, 0x0bec0beb, 0x0bee0bed, 0x0bf00bef, 0x0bf20bf1, 0x0bf40bf3,
0x0bf700f5, 0x0bf70bf6, 0x0bf90bf8, 0x0bfb0bfa, 0x0bfd0bfc, 0x0cff0bfe, 0x0c010c00, 0x0c030c02, 0x0c050c04, 0x0c070c06, 0x0c090c08, 0x0c0b0c0a,
0x0c0d0c0c, 0x0c0f0c0e, 0x0c110c10, 0x0c130c12, 0x0c150c14, 0x0c170c16, 0x0c190c18, 0x0c1b0c1a, 0x0c1d0c1c, 0x0c1f0c1e, 0x0c210c20, 0x0c8c0022,
0x0c240c23, 0x0c260c25, 0x0c280c27, 0x0c2a0c29, 0x0c2c0c2b, 0x0c2e0c2d, 0x0c300c2f, 0x0c320c31, 0x0c340c33, 0x0c360c35, 0x0c380c37, 0x0c3a0c39,
0x0c3c0c3b, 0x0c3e0c3d, 0x0c400c3f, 0x0c420c41, 0x0c440c43, 0x0c460c45, 0x0c480c47, 0x0c4a0c49, 0x0c4c0c4b, 0x0c4e0c4d, 0x0c500c4f, 0x0c520c51,
0x0c540c53, 0x0c560c55, 0x0c580c57, 0x0c5a0c59, 0x0c5c0c5b, 0x0c5e0c5d, 0x0c600c5f, 0x0c620c61, 0x0c640c63, 0x0c660c65, 0x0c680c67, 0x0c6a0c69,
0x0c6c0c6b, 0x0c6e0c6d, 0x0c700c6f, 0x0c720c71, 0x0c740c73, 0x0c760c75, 0x0c780c77, 0x0c7a0c79, 0x0c7c0c7b, 0x0c7e0c7d, 0x0c800c7f, 0x0c820c81,
0x0c840c83, 0x0c860c85, 0x0c880c87, 0x0c8a0c89, 0x0c8c0c8b, 0x0c8e0c8d, 0x0c900c8f, 0x0c920c91, 0x0c940c93, 0x0c960c95, 0x0c980c97, 0x0c9a0c99,
0x0c9c0c9b, 0x0c9e0c9d, 0x0ca00c9f, 0x0ca20ca1, 0x0c9800a3, 0x00a50ca4, 0x0cef0099, 0x00a500a6, 0x0ca70c92, 0x00a700a8, 0x00a90c8f, 0x0c950094,
0x0cab0caa, 0x0cad0cac, 0x0caf0cae, 0x0cb10cb0, 0x0cb30cb2, 0x0cb50cb4, 0x0cb70cb6, 0x0cb90cb8, 0x0cbb0cba, 0x0cbd0cbc, 0x0cbf0cbe, 0x0cc10cc0,
0x0cc30cc2, 0x0cc50cc4, 0x0cc70cc6, 0x0cc90cc8, 0x0ccb0cca, 0x0ccd0ccc, 0x0ccf0cce, 0x0cd10cd0, 0x0cd30cd2, 0x0cd50cd4, 0x0cd70cd6, 0x0cd90cd8,
0x0cdb0cda, 0x0cdd0cdc, 0x0cdf0cde, 0x0ce10ce0, 0x0ce30ce2, 0x0ce50ce4, 0x0ce70ce6, 0x0ce90ce8, 0x0ceb0cea, 0x0ced0cec, 0x0cef0cee, 0x0cf10cf0,
0x0cf30cf2, 0x0cf50cf4, 0x0cf70cf6, 0x0cf90cf8, 0x0cfb0cfa, 0x0cfd0cfc, 0x0dff0cfe, 0x0d010d00, 0x0d030d02, 0x0d050d04, 0x0d070d06, 0x0d090d08,
0x0d0b0d0a, 0x0d0d0d0c, 0x0d0f0d0e, 0x0d110d10, 0x0d130d12, 0x0d150d14, 0x0d170d16, 0x0d190d18, 0x0d1b0d1a, 0x0d1d0d1c, 0x0d1f0d1e, 0x0d210d20,
0x0d230d22, 0x0d250d24, 0x0d270d26, 0x0d290d28, 0x0d2b0d2a, 0x0d2d0d2c, 0x0d2f0d2e, 0x0d310d30, 0x0d330d32, 0x0d350d34, 0x0d370d36, 0x0d390d38,
0x0d3b0d3a, 0x0d3d0d3c, 0x0d3f0d3e, 0x0d410d40, 0x0d430d42, 0x0d450d44, 0x0d470d46, 0x0d490d48, 0x0d4b0d4a, 0x0d4d0d4c, 0x0d4f0d4e, 0x0d510d50,
0x0d530d52, 0x0d550d54, 0x0d570d56, 0x0d590d58, 0x0d5b0d5a, 0x0d5d0d5c, 0x0d5f0d5e, 0x0d610d60, 0x0d630d62, 0x0d650d64, 0x0d670d66, 0x0d690d68,
0x0d6b0d6a, 0x0d6d0d6c, 0x0d6f0d6e, 0x0d710d70, 0x0d730d72, 0x0d750d74, 0x0d770d76, 0x0d790d78, 0x0d7b0d7a, 0x0d7d0d7c, 0x0d7f0d7e, 0x0d810d80,
0x0d830d82, 0x0d850d84, 0x0d870d86, 0x0d890d88, 0x0d8b0d8a, 0x0d8d0d8c, 0x0d8f0d8e, 0x0d910d90, 0x0d930d92, 0x0d950d94, 0x0d970d96, 0x0d990d98,
0x0d9b0d9a, 0x0d9d0d9c, 0x0d9f0d9e, 0x0da10da0, 0x0da30da2, 0x0da50da4, 0x0da70da6, 0x0da90da8, 0x0dab0daa, 0x0dad0dac, 0x0daf0dae, 0x0db10db0,
0x0db30db2, 0x0db50db4, 0x0db70db6, 0x0db90db8, 0x0dbb0dba, 0x0dbd0dbc, 0x0dbf0dbe, 0x0dc10dc0, 0x0dc30dc2, 0x0dc50dc4, 0x0dc70dc6, 0x0dc90dc8,
0x0dcb0dca, 0x0dcd0dcc, 0x0dcf0dce, 0x0dd10dd0, 0x0dd30dd2, 0x0dd50dd4, 0x0dd70dd6, 0x0dd90dd8, 0x0ddb0dda, 0x0ddd0ddc, 0x0ddf0dde, 0x0de10de0,
0x0de30de2, 0x0de50de4, 0x0de70de6, 0x0de90de8, 0x0deb0dea, 0x0ded0dec, 0x0def0dee, 0x0df10df0, 0x0df30df2, 0x0df50df4, 0x0df70df6, 0x0df90df8,
0x00fb0dfa, 0x0dfc0db9, 0x0dfe0dfd, 0x0e000eff, 0x0e020e01, 0x0e040e03, 0x0e060e05, 0x0e080e07, 0x0e0a0e09, 0x0e0c0e0b, 0x0e0e0e0d, 0x0e100e0f,
0x0e120e11, 0x0e140e13, 0x0e160e15, 0x0e180e17, 0x0e1a0e19, 0x0e1c0e1b, 0x0e1e0e1d, 0x0e200e1f, 0x0e220e21, 0x0e240e23, 0x0e260e25, 0x0e280e27,
0x0e2a0e29, 0x0e2c0e2b, 0x0e2e0e2d, 0x0e300e2f, 0x0e320e31, 0x0e340e33, 0x0e360e35, 0x0e380e37, 0x0e3a0e39, 0x0e3c0e3b, 0x0e3e0e3d, 0x0e400e3f,
0x0e420e41, 0x0e440e43, 0x0e460e45, 0x0e480e47, 0x0e4a0e49, 0x0e4c0e4b, 0x0e4e0e4d, 0x0e500e4f, 0x0e520e51, 0x0e540e53, 0x0e560e55, 0x0e580e57,
0x0e5a0e59, 0x0e5c0e5b, 0x0e5e0e5d, 0x0e600e5f, 0x0e620e61, 0x0e640e63, 0x0e660e65, 0x0e680e67, 0x0e6a0e69, 0x0e6c0e6b, 0x0e6e0e6d, 0x0e700e6f,
0x0e720e71, 0x0e740e73, 0x0e760e75, 0x0e780e77, 0x0e7a0e79, 0x0e7c0e7b, 0x0e7e0e7d, 0x0e800e7f, 0x0e820e81, 0x0e840e83, 0x0e860e85, 0x0e880e87,
0x0e8a0e89, 0x0e8c0e8b, 0x0e8e0e8d, 0x0e900e8f, 0x0e920e91, 0x0e940e93, 0x0e960e95, 0x0e980e97, 0x0e9a0e99, 0x0e9c0e9b, 0x0e9e0e9d, 0x0ea00e9f,
0x0ea20ea1, 0x0ea40ea3, 0x0ea60ea5, 0x0ea80ea7, 0x0eaa0ea9, 0x0eac0eab, 0x0eae0ead, 0x0eb00eaf, 0x0eb20eb1, 0x0eb40eb3, 0x0eb60eb5, 0x0eb80eb7,
0x0eba0eb9, 0x0ebc0ebb, 0x0ebe0ebd, 0x0ec00ebf, 0x0ec20ec1, 0x0ec40ec3, 0x0ec60ec5, 0x0ec80ec7, 0x0eca0ec9, 0x0ecc0ecb, 0x0ece0ecd, 0x0ed00ecf,
0x0ed20ed1, 0x0ed40ed3, 0x0ed60ed5, 0x0ed80ed7, 0x0eda0ed9, 0x0edc0edb, 0x0ede0edd, 0x0ee00edf, 0x0ee20ee1, 0x0ee40ee3, 0x0ee60ee5, 0x0ee80ee7,
0x0eea0ee9, 0x0eec0eeb, 0x0eee0eed, 0x0ef00eef, 0x0ef20ef1, 0x0ef40ef3, 0x0ef60ef5, 0x0ef80ef7, 0x0efa0ef9, 0x0efc0efb, 0x0efe0efd, 0x0f000fff,
0x0f020f01, 0x0f040f03, 0x0f060f05, 0x0f080f07, 0x0f0a0f09, 0x0f0c0f0b, 0x0f0e0f0d, 0x0f100f0f, 0x0f120f11, 0x0f140f13, 0x0f160f15, 0x0f180f17,
0x0f1a0f19, 0x0f1c0f1b, 0x0f1e0f1d, 0x0f200f1f, 0x0f220f21, 0x0f240f23, 0x0f260f25, 0x0f280f27, 0x0f2a0f29, 0x0f2c0f2b, 0x0f2e0f2d, 0x0f300f2f,
0x0f320f31, 0x0f340f33, 0x0f360f35, 0x0f380f37, 0x0f3a0f39, 0x0f3c0f3b, 0x0f3e0f3d, 0x0f400f3f, 0x0f420f41, 0x0f440f43, 0x0f460f45, 0x0f480f47,
0x0f4a0f49, 0x0f4c0f4b, 0x0f4e0f4d, 0x0f500f4f, 0x0f520f51, 0x0f540f53, 0x0f560f55, 0x0f580f57, 0x0f5a0f59, 0x0f5c0f5b, 0x0f5e0f5d, 0x0f600f5f,
0x0f620f61, 0x0f640f63, 0x0f660f65, 0x0f680f67, 0x0f6a0f69, 0x0f6c0f6b, 0x0f6e0f6d, 0x0f700f6f, 0x0f720f71, 0x0f740f73, 0x0f760f75, 0x0f780f77,
0x0f7a0f79, 0x0f7c0f7b, 0x0f7e0f7d, 0x0f800f7f, 0x0f820f81, 0x0f840f83, 0x0f860f85, 0x0f880f87, 0x0f8a0f89, 0x0f8c0f8b, 0x0f8e0f8d, 0x0f900f8f,
0x0f920f91, 0x0f940f93, 0x0f960f95, 0x0f980f97, 0x0f9a0f99, 0x0f9c0f9b, 0x0f9e0f9d, 0x0fa00f9f, 0x0fa20fa1, 0x0fa40fa3, 0x0fa60fa5, 0x0fa80fa7,
0x0faa0fa9, 0x0fac0fab, 0x0fae0fad, 0x0fb00faf, 0x0fb20fb1, 0x0fb40fb3, 0x0fb60fb5, 0x0fb80fb7, 0x0fba0fb9, 0x0fbc0fbb, 0x0fbe0fbd, 0x0fc00fbf,
0x0fc20fc1, 0x0fc40fc3, 0x0fc60fc5, 0x0fc80fc7, 0x0fca0fc9, 0x0fcc0fcb, 0x0fce0fcd, 0x0fd00fcf, 0x0fd20fd1, 0x0fd40fd3, 0x0fd60fd5, 0x0fd80fd7,
0x0fda0fd9, 0x0fdc0fdb, 0x0fde0fdd, 0x0fe00fdf, 0x0fe20fe1, 0x0fe40fe3, 0x0fe60fe5, 0x0fe80fe7, 0x0fea0fe9, 0x0fec0feb, 0x0fee0fed, 0x0ff00fef,
0x0ff20ff1, 0x0ff40ff3, 0x0ff60ff5, 0x0ff80ff7, 0x0ffa0ff9, 0x0ffc0ffb, 0x0ffe0ffd, 0x100010ff, 0x10021001, 0x10041003, 0x10061005, 0x10081007,
0x100a1009, 0x100c100b, 0x100e100d, 0x1010100f, 0x10121011, 0x10141013, 0x10161015, 0x10181017, 0x101a1019, 0x101c101b, 0x101e101d, 0x1020101f,
0x10221021, 0x10241023, 0x10261025, 0x10281027, 0x102a1029, 0x102c102b, 0x102e102d, 0x1030102f, 0x10321031, 0x10341033, 0x10361035, 0x10381037,
0x103a1039, 0x103c103b, 0x103e103d, 0x1040103f, 0x10421041, 0x10441043, 0x10461045, 0x10481047, 0x104a1049, 0x104c104b, 0x104e104d, 0x1050104f,
0x10521051, 0x10541053, 0x10561055, 0x10581057, 0x105a1059, 0x105c105b, 0x105e105d, 0x1060105f, 0x10621061, 0x10641063, 0x10661065, 0x10681067,
0x106a1069, 0x106c106b, 0x106e106d, 0x1070106f, 0x10721071, 0x10741073, 0x10761075, 0x10781077, 0x107a1079, 0x107c107b, 0x107e107d, 0x10d2007f,
0x10811080, 0x10831082, 0x10851084, 0x10871086, 0x10891088, 0x108b108a, 0x108d108c, 0x108f108e, 0x10911090, 0x10931092, 0x10951094, 0x10971096,
0x10991098, 0x109b109a, 0x109d109c, 0x109f109e, 0x10a110a0, 0x10a310a2, 0x10a510a4, 0x10a710a6, 0x10a910a8, 0x10ab10aa, 0x10ad10ac, 0x10af10ae,
0x10b110b0, 0x10b310b2, 0x10b510b4, 0x10b710b6, 0x10b910b8, 0x10bb10ba, 0x10bd10bc, 0x10bf10be, 0x10c110c0, 0x10c310c2, 0x10c510c4, 0x10c710c6,
0x10c910c8, 0x10cb10ca, 0x10cd10cc, 0x10cf10ce, 0x10d110d0, 0x10d310d2, 0x10d510d4, 0x10d710d6, 0x10d910d8, 0x10db10da, 0x10dd10dc, 0x10df10de,
0x10e110e0, 0x10e310e2, 0x10e510e4, 0x10e710e6, 0x10e910e8, 0x10eb10ea, 0x10ed10ec, 0x10ef10ee, 0x10f110f0, 0x10f310f2, 0x10f510f4, 0x10f710f6,
0x10f910f8, 0x10fb10fa, 0x10fd10fc, 0x11ff10fe, 0x11011100, 0x11031102, 0x11051104, 0x11071106, 0x11091108, 0x110b110a, 0x110d110c, 0x110f110e,
0x11111110, 0x11131112, 0x11151114, 0x11171116, 0x11191118, 0x111b111a, 0x111d111c, 0x111f111e, 0x11211120, 0x11231122, 0x11251124, 0x11271126,
0x11291128, 0x112b112a, 0x112d112c, 0x112f112e, 0x11311130, 0x11331132, 0x11351134, 0x11371136, 0x11391138, 0x113b113a, 0x113d113c, 0x113f113e,
0x11411140, 0x11431142, 0x11451144, 0x11471146, 0x11491148, 0x114b114a, 0x114d114c, 0x114f114e, 0x11511150, 0x11531152, 0x11551154, 0x11571156,
0x11591158, 0x115b115a, 0x115d115c, 0x115f115e, 0x11611160, 0x11631162, 0x11651164, 0x11671166, 0x11691168, 0x116b116a, 0x116d116c, 0x116f116e,
0x11711170, 0x11731172, 0x11751174, 0x11771176, 0x11791178, 0x117b117a, 0x117d117c, 0x117f117e, 0x11811180, 0x11831182, 0x11851184, 0x11871186,
0x11891188, 0x118b118a, 0x118d118c, 0x118f118e, 0x11911190, 0x11931192, 0x11951194, 0x11971196, 0x11991198, 0x119b119a, 0x119d119c, 0x119f119e,
0x11a111a0, 0x11a311a2, 0x11a511a4, 0x11a711a6, 0x11a911a8, 0x11ab11aa, 0x11ad11ac, 0x11af11ae, 0x11b111b0, 0x11b311b2, 0x11b511b4, 0x11b711b6,
0x11b911b8, 0x11bb11ba, 0x11bd11bc, 0x11bf11be, 0x11c111c0, 0x11c311c2, 0x11c511c4, 0x11c711c6, 0x11c911c8, 0x11cb11ca, 0x11cd11cc, 0x11cf11ce,
0x11d111d0, 0x11d311d2, 0x11d511d4, 0x11d711d6, 0x11d911d8, 0x11db11da, 0x11dd11dc, 0x11df11de, 0x11e111e0, 0x11e311e2, 0x11e511e4, 0x11e711e6,
0x11e911e8, 0x11eb11ea, 0x11ed11ec, 0x11ef11ee, 0x11f111f0, 0x11f311f2, 0x11f511f4, 0x11f711f6, 0x11f911f8, 0x11fb11fa, 0x11fd11fc, 0x12ff11fe,
0x12011200, 0x12031202, 0x12051204, 0x12071206, 0x12091208, 0x120b120a, 0x120d120c, 0x120f120e, 0x12111210, 0x12131212, 0x12151214, 0x12171216,
0x12191218, 0x121b121a, 0x121d121c, 0x121f121e, 0x12211220, 0x12231222, 0x12251224, 0x12271226, 0x12291228, 0x122b122a, 0x122d122c, 0x122f122e,
0x12311230, 0x12331232, 0x12351234, 0x12371236, 0x12391238, 0x123b123a, 0x123d123c, 0x123f123e, 0x12411240, 0x12431242, 0x12451244, 0x12471246,
0x12491248, 0x124b124a, 0x124d124c, 0x124f124e, 0x12511250, 0x12531252, 0x12551254, 0x12571256, 0x12591258, 0x125b125a, 0x125d125c, 0x125f125e,
0x12611260, 0x12631262, 0x12651264, 0x12671266, 0x12691268, 0x126b126a, 0x126d126c, 0x126f126e, 0x12711270, 0x12731272, 0x12751274, 0x12771276,
0x12791278, 0x127b127a, 0x127d127c, 0x127f127e, 0x12811280, 0x12831282, 0x12851284, 0x12871286, 0x12891288, 0x128b128a, 0x128d128c, 0x128f128e,
0x12911290, 0x12931292, 0x12951294, 0x12971296, 0x12991298, 0x129b129a, 0x129d129c, 0x129f129e, 0x12a112a0, 0x12a312a2, 0x12a512a4, 0x12a712a6,
0x12a912a8, 0x12ab12aa, 0x12ad12ac, 0x12af12ae, 0x12b112b0, 0x12b312b2, 0x12b512b4, 0x12b712b6, 0x12b912b8, 0x12bb12ba, 0x12bd12bc, 0x12bf12be,
0x12c112c0, 0x12c312c2, 0x12c512c4, 0x12c712c6, 0x12c912c8, 0x12cb12ca, 0x12cd12cc, 0x12cf12ce, 0x12d112d0, 0x12d312d2, 0x12d512d4, 0x12d712d6,
0x12d912d8, 0x12db12da, 0x12dd12dc, 0x12df12de, 0x12e112e0, 0x12e312e2, 0x12e512e4, 0x12e712e6, 0x12e912e8, 0x12eb12ea, 0x12ed12ec, 0x12ef12ee,
0x12f112f0, 0x12f312f2, 0x12f512f4, 0x12f712f6, 0x12f912f8, 0x12fb12fa, 0x12fd12fc, 0x13ff12fe, 0x13011300, 0x13031302, 0x13051304, 0x13071306,
0x13091308, 0x130b130a, 0x130d130c, 0x130f130e, 0x13111310, 0x13131312, 0x13151314, 0x13171316, 0x13191318, 0x131b131a, 0x131d131c, 0x131f131e,
0x13211320, 0x13231322, 0x13251324, 0x13271326, 0x13291328, 0x132b132a, 0x132d132c, 0x132f132e, 0x13311330, 0x13331332, 0x13351334, 0x13371336,
0x13391338, 0x133b133a, 0x133d133c, 0x133f133e, 0x13411340, 0x13431342, 0x13451344, 0x13471346, 0x13491348, 0x134b134a, 0x134d134c, 0x134f134e,
0x13511350, 0x13531352, 0x13551354, 0x13571356, 0x13591358, 0x135b135a, 0x135d135c, 0x135f135e, 0x13611360, 0x13631362, 0x13651364, 0x13671366,
0x13691368, 0x136b136a, 0x136d136c, 0x136f136e, 0x13711370, 0x13731372, 0x13751374, 0x13771376, 0x13791378, 0x137b137a, 0x137d137c, 0x137f137e,
0x13811380, 0x13831382, 0x13851384, 0x13871386, 0x13891388, 0x138b138a, 0x138d138c, 0x138f138e, 0x13911390, 0x13931392, 0x13951394, 0x13971396,
0x13991398, 0x139b139a, 0x139d139c, 0x139f139e, 0x13a113a0, 0x13a313a2, 0x13a513a4, 0x13a713a6, 0x13a913a8, 0x13ab13aa, 0x13ad13ac, 0x13af13ae,
0x13b113b0, 0x13b313b2, 0x13b513b4, 0x13b713b6, 0x13b913b8, 0x13bb13ba, 0x13bd13bc, 0x13bf13be, 0x13c113c0, 0x13c313c2, 0x13c513c4, 0x13c713c6,
0x13c913c8, 0x13cb13ca, 0x13cd13cc, 0x13cf13ce, 0x13d113d0, 0x13d313d2, 0x13d513d4, 0x13d713d6, 0x13d913d8, 0x13db13da, 0x13dd13dc, 0x13df13de,
0x13e113e0, 0x13e313e2, 0x13e513e4, 0x13e713e6, 0x13e913e8, 0x13eb13ea, 0x13ed13ec, 0x13ef13ee, 0x13f113f0, 0x13f313f2, 0x13f513f4, 0x13f713f6,
0x13f913f8, 0x13fb13fa, 0x13fd13fc, 0x14ff13fe, 0x14011400, 0x14031402, 0x14051404, 0x14071406, 0x14091408, 0x140b140a, 0x140d140c, 0x140f140e,
0x14111410, 0x14131412, 0x14151414, 0x14171416, 0x14191418, 0x141b141a, 0x141d141c, 0x141f141e, 0x14211420, 0x14231422, 0x14251424, 0x14271426,
0x14291428, 0x142b142a, 0x142d142c, 0x142f142e, 0x14311430, 0x14331432, 0x14351434, 0x14371436, 0x14391438, 0x143b143a, 0x143d143c, 0x143f143e,
0x14411440, 0x14431442, 0x14451444, 0x14471446, 0x14491448, 0x144b144a, 0x144d144c, 0x144f144e, 0x14511450, 0x14531452, 0x14551454, 0x14571456,
0x14591458, 0x145b145a, 0x145d145c, 0x145f145e, 0x14611460, 0x14631462, 0x14651464, 0x14671466, 0x14691468, 0x146b146a, 0x146d146c, 0x146f146e,
0x14711470, 0x14731472, 0x14751474, 0x14771476, 0x14791478, 0x147b147a, 0x147d147c, 0x147f147e, 0x14811480, 0x14831482, 0x14851484, 0x14871486,
0x14891488, 0x148b148a, 0x148d148c, 0x148f148e, 0x14911490, 0x14931492, 0x14951494, 0x14971496, 0x14991498, 0x149b149a, 0x149d149c, 0x149f149e,
0x14a114a0, 0x14a314a2, 0x14a514a4, 0x14a714a6, 0x14a914a8, 0x14ab14aa, 0x14ad14ac, 0x14af14ae, 0x14b114b0, 0x14b314b2, 0x14b514b4, 0x14b714b6,
0x14b914b8, 0x14bb14ba, 0x14bd14bc, 0x14bf14be, 0x14c114c0, 0x14c314c2, 0x14c514c4, 0x14c714c6, 0x14c914c8, 0x14cb14ca, 0x14cd14cc, 0x14cf14ce,
0x14d114d0, 0x14d314d2, 0x14d514d4, 0x14d714d6, 0x14d914d8, 0x14db14da, 0x14dd14dc, 0x14df14de, 0x14e114e0, 0x14e314e2, 0x14e514e4, 0x14e714e6,
0x14e914e8, 0x14eb14ea, 0x14ed14ec, 0x14ef14ee, 0x14f114f0, 0x14f314f2, 0x14f514f4, 0x14f714f6, 0x14f914f8, 0x14fb14fa, 0x14fd14fc, 0x15ff14fe,
0x15011500, 0x15031502, 0x15051504, 0x15071506, 0x15091508, 0x150b150a, 0x150d150c, 0x150f150e, 0x15111510, 0x15131512, 0x15151514, 0x15171516,
0x15191518, 0x151b151a, 0x151d151c, 0x151f151e, 0x15211520, 0x15231522, 0x15251524, 0x15271526, 0x15291528, 0x152b152a, 0x152d152c, 0x152f152e,
0x15311530, 0x15331532, 0x15351534, 0x15371536, 0x15391538, 0x153b153a, 0x153d153c, 0x153f153e, 0x15411540, 0x15431542, 0x15451544, 0x15471546,
0x15491548, 0x154b154a, 0x154d154c, 0x154f154e, 0x15511550, 0x15531552, 0x15551554, 0x15571556, 0x15591558, 0x155b155a, 0x155d155c, 0x155f155e,
0x15611560, 0x15631562, 0x15651564, 0x15671566, 0x15691568, 0x156b156a, 0x156d156c, 0x156f156e, 0x15711570, 0x15731572, 0x15751574, 0x15771576,
0x15791578, 0x157b157a, 0x157d157c, 0x157f157e, 0x15811580, 0x15831582, 0x15851584, 0x15871586, 0x15891588, 0x158b158a, 0x158d158c, 0x158f158e,
0x15911590, 0x15931592, 0x15951594, 0x15971596, 0x15991598, 0x159b159a, 0x159d159c, 0x159f159e, 0x15a115a0, 0x15a315a2, 0x15a515a4, 0x15a715a6,
0x15a915a8, 0x15ab15aa, 0x15ad15ac, 0x15af15ae, 0x15b115b0, 0x15b315b2, 0x15b515b4, 0x15b715b6, 0x15b915b8, 0x15bb15ba, 0x15bd15bc, 0x15bf15be,
0x15c115c0, 0x15c315c2, 0x15c515c4, 0x15c715c6, 0x15c915c8, 0x15cb15ca, 0x15cd15cc, 0x15cf15ce, 0x15d115d0, 0x15d315d2, 0x15d515d4, 0x15d715d6,
0x15d915d8, 0x15db15da, 0x15dd15dc, 0x15df15de, 0x15e115e0, 0x15e315e2, 0x15e515e4, 0x15e715e6, 0x15e915e8, 0x15eb15ea, 0x15ed15ec, 0x15ef15ee,
0x15f115f0, 0x15f315f2, 0x15f515f4, 0x15f715f6, 0x15f915f8, 0x15fb15fa, 0x15fd15fc, 0x16ff15fe, 0x16011600, 0x16031602, 0x16051604, 0x16071606,
0x16091608, 0x160b160a, 0x160d160c, 0x160f160e, 0x16111610, 0x16131612, 0x16151614, 0x16171616, 0x16191618, 0x161b161a, 0x161d161c, 0x161f161e,
0x16211620, 0x16231622, 0x16251624, 0x16271626, 0x16291628, 0x162b162a, 0x162d162c, 0x162f162e, 0x16311630, 0x16331632, 0x16351634, 0x16371636,
0x16391638, 0x163b163a, 0x163d163c, 0x163f163e, 0x16411640, 0x16431642, 0x16451644, 0x16471646, 0x16491648, 0x164b164a, 0x164d164c, 0x164f164e,
0x16511650, 0x16531652, 0x16551654, 0x16571656, 0x16591658, 0x165b165a, 0x165d165c, 0x165f165e, 0x16611660, 0x16631662, 0x16651664, 0x16671666,
0x16691668, 0x166b166a, 0x166d166c, 0x166f166e, 0x16711670, 0x16731672, 0x16751674, 0x16771676, 0x16791678, 0x167b167a, 0x167d167c, 0x167f167e,
0x16811680, 0x16831682, 0x16851684, 0x16871686, 0x16891688, 0x00c0008a, 0x168b16c1, 0x168d168c, 0x168f168e, 0x16911690, 0x16931692, 0x16951694,
0x16971696, 0x16991698, 0x169b169a, 0x169d169c, 0x169f169e, 0x16a116a0, 0x16a316a2, 0x16a516a4, 0x16a716a6, 0x16a916a8, 0x16ab16aa, 0x16ad16ac,
0x16af16ae, 0x16b116b0, 0x16b316b2, 0x16b516b4, 0x16b716b6, 0x16b916b8, 0x16bb16ba, 0x16bd16bc, 0x16bf16be, 0x16c116c0, 0x16c316c2, 0x16c516c4,
0x16c716c6, 0x16c916c8, 0x16cb16ca, 0x16cd16cc, 0x16cf16ce, 0x16d116d0, 0x16d316d2, 0x16d516d4, 0x16d716d6, 0x16d916d8, 0x16db16da, 0x16dd16dc,
0x16df16de, 0x16e116e0, 0x16e316e2, 0x16e516e4, 0x16e716e6, 0x16e916e8, 0x16eb16ea, 0x16ed16ec, 0x16ef16ee, 0x16f116f0, 0x16f316f2, 0x16f516f4,
0x16f716f6, 0x16f916f8, 0x16fb16fa, 0x16fd16fc, 0x17ff16fe, 0x17011700, 0x17031702, 0x17051704, 0x17071706, 0x17091708, 0x170b170a, 0x170d170c,
0x170f170e, 0x17111710, 0x17131712, 0x17151714, 0x17171716, 0x17191718, 0x171b171a, 0x171d171c, 0x171f171e, 0x17211720, 0x17231722, 0x17251724,
0x17271726, 0x17291728, 0x172b172a, 0x172d172c, 0x172f172e, 0x17311730, 0x17331732, 0x17351734, 0x17371736, 0x17391738, 0x173b173a, 0x173d173c,
0x173f173e, 0x17411740, 0x17431742, 0x17451744, 0x17471746, 0x17491748, 0x174b174a, 0x174d174c, 0x174f174e, 0x17511750, 0x17531752, 0x17551754,
0x17571756, 0x17591758, 0x175b175a, 0x175d175c, 0x175f175e, 0x17611760, 0x17631762, 0x17651764, 0x17671766, 0x17691768, 0x176b176a, 0x176d176c,
0x176f176e, 0x07711770, 0x30696e75, 0x07860082, 0x07863120, 0x07863220, 0x07863320, 0x07863420, 0x07863520, 0x07863620, 0x07863720, 0x07863820,
0x07863920, 0x07864120, 0x07864220, 0x07864320, 0x07864420, 0x07864520, 0x07854620, 0x86303121, 0x86312007, 0x207f8607, 0x207f8631, 0x207f8631,
0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x207f8631, 0x21078637,
0x7f853038, 0x86313821, 0x20878607, 0x20878638, 0x20878638, 0x20878638, 0x20878638, 0x20878638, 0x20878638, 0x20878638, 0x20878638, 0x20878638,
0x20878638, 0x20878638, 0x20878638, 0x217f8638, 0x77853039, 0x86313921, 0x207f8607, 0x207f8639, 0x207f8639, 0x207f8639, 0x207f8639, 0x207f8639,
0x207f8639, 0x207f8639, 0x207f8639, 0x207f8639, 0x207f8639, 0x207f8639, 0x397f8639, 0x73094639, 0x79687466, 0x6e656870, 0x31756d03, 0x616d4107,
0x6e6f7263, 0x07856107, 0x62410628, 0x65766572, 0x06846106, 0x6f410729, 0x656e6f67, 0x8561076b, 0x430b2d07, 0x63726963, 0x6c666d75, 0x630b7865,
0x0a2c0b89, 0x746f6443, 0x65636361, 0x630a746e, 0x06230a88, 0x82616344, 0x6406215a, 0x44250685, 0x616f7263, 0x830d8274, 0x45072106, 0x07216f85,
0x21078565, 0x70844506, 0x84650621, 0x450a2106, 0x0a214488, 0x210a8865, 0x85854507, 0x85650721, 0x45062107, 0x65205885, 0x0b210684, 0x218f8947,
0x0b89670b, 0x89470a21, 0x8867204b, 0x470c260a, 0x6d6d6f63, 0x21b38561, 0x0c8a670c, 0x89480b21, 0x680b213b, 0x04260b89, 0x72616248, 0x04826804,
0x74490628, 0x65646c69, 0x06846906, 0x6e750729, 0x32313069, 0x86690741, 0x844920c9, 0x221686c2, 0x85490744, 0x690721ac, 0x0a210785, 0x27838849,
0x024a4902, 0x4a0b6a69, 0x0b216389, 0x210b896a, 0x948a4b0c, 0x8c6b0c21, 0x7267330c, 0x6c6e6565, 0x69646e61, 0x614c0663, 0x65747563, 0x06846c06,
0x8b4c0c21, 0x8a6c2027, 0x4c06280c, 0x6f726163, 0x846c066e, 0x4c042106, 0x04218582, 0x2104826c, 0x3f854e06, 0x3f856e20, 0x328a4e20, 0x8a6e0c21,
0x4e06210c, 0x06213884, 0x3506846e, 0x70616e0b, 0x7274736f, 0x6568706f, 0x676e4503, 0x676e6503, 0x00414f07, 0x6f072105, 0x06280785, 0x6572624f,
0x6f066576, 0x0d2f0684, 0x6e75684f, 0x75726167, 0x75616c6d, 0x8b6f0d74, 0x5206210d, 0x06217c84, 0x21068472, 0x768a520c, 0x8a720c21, 0x5206210c,
0x06217c84, 0x20068572, 0x212e8453, 0x06847306, 0x41530b21, 0x0b21093a, 0x210b8973, 0x408a540c, 0x8a740c21, 0x5406210c, 0x74204685, 0x04260684,
0x72616254, 0x04827404, 0x74550628, 0x65646c69, 0x06847506, 0x85550721, 0x750721cd, 0x06210785, 0x21ce8455, 0x06847506, 0x72550527, 0x05676e69,
0x21058375, 0xe18c550d, 0x0d8b7520, 0x41550721, 0x072105fd, 0x21078575, 0xa189570b, 0x8a770b21, 0x8a59200b, 0x8979200b, 0x5a06210b, 0x0621e484,
0x2106847a, 0x43425a0a, 0x7a0a2108, 0x05250a88, 0x676e6f6c, 0x05774273, 0x2006de44, 0x06de4431, 0x44383121, 0x3120055e, 0x2006de44, 0x06de4431,
0xde443120, 0x44312006, 0x312006de, 0x2006de44, 0x06de4431, 0xde443120, 0x44312006, 0x312006de, 0x2006de44, 0x06de4431, 0xde443120, 0x44312006,
0x312006de, 0x2006de44, 0x06de4431, 0xde443120, 0x44312006, 0x312006d6, 0x2006d644, 0x06d64431, 0xd6443120, 0x44312006, 0x312006d6, 0x2006d644,
0x06d64431, 0xd6443120, 0x44312006, 0x312006d6, 0x2006d644, 0x06d64431, 0xd6443120, 0x39312a06, 0x684f0546, 0x056e726f, 0x4105836f, 0x41200503,
0x4120f386, 0x21055245, 0x52454131, 0x41312105, 0x21055245, 0x52454131, 0x41312105, 0x21055245, 0x52454131, 0x41312105, 0x21055245, 0x52454131,
0x41312105, 0x21055245, 0x52454131, 0x41312105, 0x24055245, 0x05454131, 0x20738455, 0x21738975, 0x7b853142, 0x7b864220, 0x7b864220, 0x7b864220,
0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0x7b864220, 0xce454220, 0x42312205, 0x216f8546,
0x07863043, 0x07863120, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86, 0x43207f86,
0x43207f86, 0x43207f86, 0x43207f86, 0x44217f86, 0x21778530, 0x07863144, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86,
0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x44207f86, 0x45217f86, 0x21778530, 0x07863145, 0x45207f86, 0x45207f86,
0x45237f86, 0x46470635, 0x67200534, 0x2d860684, 0x45207d86, 0x45207d86, 0x45207d86, 0x45207d86, 0x45217d86, 0x862f8644, 0x8645207d, 0x3046217d,
0x46211785, 0x86078631, 0x8646207d, 0x8646207d, 0x8646207d, 0x864620fd, 0x864620fd, 0x864620fd, 0x3946277f, 0x6972410a, 0xe443676e, 0x88612005,
0x4107220a, 0x22128445, 0x84656107, 0x4f0b2607, 0x73616c73, 0x200b8568, 0x840b896f, 0x3032227d, 0x85078630, 0x3032218d, 0x32218d85, 0x218d8530,
0x8d853032, 0x85303221, 0x3032218d, 0x32218d85, 0x218d8530, 0x8d853032, 0x41303221, 0x3221050d, 0x050d4130, 0x41303221, 0x3221050d, 0x050d4130,
0x41303221, 0x3221050d, 0x050d4130, 0x41303221, 0x3220050d, 0x2206e249, 0x85313132, 0x86312087, 0x06e2497f, 0xe2493220, 0x49322006, 0x322006e2,
0x2406e249, 0x0c373132, 0x0a9e4553, 0x8a730c21, 0x8649860c, 0x86312089, 0x86312089, 0x06ec4989, 0xec493220, 0x49322006, 0x322206ec, 0x37853032,
0x89863220, 0x89863220, 0x09413220, 0x41322006, 0x32200609, 0x20060941, 0x06094132, 0x09413220, 0x41322006, 0x32200609, 0x20060941, 0x207f8632,
0x207f8632, 0x207f8632, 0x06094132, 0x09413220, 0x41322006, 0x33210609, 0x217f8530, 0x07863133, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86,
0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x33207f86, 0x34217f86, 0x21778530, 0x07863134,
0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86, 0x34207f86,
0x34207f86, 0x35217f86, 0x21778530, 0x07863135, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86,
0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x35207f86, 0x36217f86, 0x21778530, 0x07863136, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86,
0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x36207f86, 0x37217f86, 0x21778530, 0x07863137,
0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86, 0x37207f86,
0xe44c7f86, 0x48322006, 0x32200605, 0x20060548, 0x06054832, 0x05483220, 0x48322006, 0x32200605, 0x20060548, 0x06054832, 0x05483220, 0x48322006,
0x32200605, 0x20060548, 0x06054832, 0x05483220, 0x48322006, 0x32200605, 0x20060548, 0x06054832, 0x05483220, 0x48322006, 0x32220605, 0xff853139,
0xff863920, 0x20060d48, 0x060d4832, 0x86393221, 0x060d48ff, 0x0d483220, 0x48322006, 0x3220060d, 0x20060d48, 0x060d4832, 0x0d483220, 0x48322006,
0x3220060d, 0x21060d48, 0xff863932, 0x7f413920, 0x30412106, 0x41207785, 0x11487f86, 0x48322006, 0x32200611, 0x20061148, 0x06114832, 0x11483220,
0x48322006, 0x32200611, 0x20061148, 0x06114832, 0x11483220, 0x48322006, 0x32200611, 0x20061148, 0x06114832, 0x86413221, 0x8641207f, 0x8642207f,
0x0615487f, 0x15483220, 0x48322006, 0x32200615, 0x20061548, 0x06154832, 0x15483220, 0x48322006, 0x32200615, 0x20061548, 0x06154832, 0x15483220,
0x48322006, 0x32200615, 0x20061548, 0x06154832, 0x15483220, 0x48322006, 0x32200615, 0x21061548, 0xff864332, 0x7f414320, 0x06154806, 0x15483220,
0x48322006, 0x32200615, 0x20060548, 0x06054832, 0x05483220, 0x48322006, 0x32200605, 0x20060548, 0x06054832, 0x05483220, 0x48322006, 0x32200605,
0x20060548, 0x06054832, 0x86443221, 0x4244206f, 0x054806ef, 0x48322006, 0x32200605, 0x21060548, 0xef424432, 0x06d54706, 0xd5473220, 0x47322006,
0x322006d5, 0x2106d547, 0x4f864532, 0x2006d547, 0x06d54732, 0x42453221, 0x4520063f, 0x20063f43, 0x204f8645, 0x063f4345, 0x2006d747, 0x06d74732,
0xd7473220, 0x47322006, 0x322006d7, 0x2106d747, 0xbf414532, 0x06d74706, 0xd7473220, 0x46322106, 0x20063f41, 0x477f8646, 0x322006d7, 0x2106d747,
0x7f864632, 0x2006d747, 0x06d74732, 0xd7473220, 0x46322106, 0x2006bf43, 0x06bf4346, 0xbf434620, 0x43462006, 0x462006bf, 0x2006bf43, 0x207f8646,
0x053f4246, 0x32303333, 0x6c697409, 0x6f636564, 0x7507626d, 0x3330696e, 0x05314430, 0x85303321, 0x30332171, 0x3321f185, 0x2bf18530, 0x0d383033,
0x6b6f6f68, 0x766f6261, 0x7785358b, 0x85303321, 0x30332177, 0x33217785, 0x21778530, 0x77853033, 0x86303321, 0x30312177, 0x31206d85, 0x3320f785,
0x2106c147, 0xc7413133, 0x31332105, 0x31208586, 0x31208586, 0x31208586, 0x31208586, 0x21057741, 0xf7853133, 0x86313321, 0x8631207f, 0x8631207f,
0x8631207f, 0x8631207f, 0x8631207f, 0x06b7477f, 0xb7473320, 0x32332b06, 0x6f640c32, 0x6c656274, 0x0a41776f, 0x06bc4709, 0xbc473320, 0x47332006,
0x332106bc, 0x47848632, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006,
0x332006bc, 0x2106bc47, 0xfc413333, 0x47332005, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733,
0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733, 0x86343321, 0x06bc477f,
0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006,
0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006, 0x332106bc, 0x477f8635, 0x332006bc, 0x2006bc47, 0x06bc4733, 0xbc473320, 0x47332006,
0x332006bc, 0x2006b447, 0x06b44733, 0xa4473320, 0x35332106, 0x4706ec41, 0x332006a4, 0x2006a447, 0x06a44733, 0x86363321, 0x06a44767, 0xa4473320,
0x47332006, 0x332006a4, 0x2006a447, 0x06a44733, 0xa4473320, 0x47332006, 0x332006a4, 0x2006a447, 0x06a44733, 0xa4473320, 0x47332006, 0x332006a4,
0x2006a447, 0x06a44733, 0x84473320, 0x47332006, 0x33200684, 0x31066447, 0x05453733, 0x6f6e6f74, 0x69640d73, 0x73657265, 0x0d847369, 0x6c410a25,
0x84616870, 0x6109310a, 0x65746f6e, 0x6169656c, 0x7370450c, 0x6e6f6c69, 0x08221684, 0x1f867445, 0x866f4921, 0x4f0c2509, 0x7263696d, 0x0c211f86,
0x242c8a55, 0x656d4f0a, 0x212e8567, 0x2e826911, 0x05206b8c, 0x042a6b84, 0x61746542, 0x6d614705, 0x9543616d, 0x34392205, 0x216f8607, 0x1a825a04,
0x6f820320, 0x68540522, 0x04200982, 0x05367083, 0x7070614b, 0x614c0661, 0x6164626d, 0x02754d02, 0x5802754e, 0x81860769, 0x69500231, 0x6f685203,
0x67695305, 0x5403616d, 0x86077561, 0x5003258d, 0x43036968, 0x50220382, 0x66856973, 0x0c394122, 0x91874f83, 0x28860f20, 0x0a210f87, 0x08084161,
0x8a650c21, 0x820820d1, 0x6f742588, 0x09736f6e, 0x0984cf83, 0x85751421, 0x84dc8d1f, 0x6204213f, 0x05212e82, 0x26dc8367, 0x6c656405, 0x86076174,
0x7a04214b, 0x03201882, 0x05210382, 0x83da8474, 0x6b05214c, 0x6c20da84, 0xa485da84, 0x02434229, 0x7802756e, 0x416f0769, 0x03250561, 0x066f6872,
0x21dc8373, 0x06840531, 0x82740321, 0x217f86e3, 0xdf827003, 0x03826320, 0x05268e82, 0x67656d6f, 0x73410c61, 0x8e0f200b, 0x860c20a6, 0x20c38453,
0x841c860c, 0x840a200c, 0x850a843c, 0x30442286, 0x22a68406, 0x85550831, 0x863120ea, 0x05fe4e17, 0x34443323, 0x217b8204, 0x37840631, 0xa7441b87,
0x06fa4e06, 0xfa4e3320, 0x4e332006, 0x332006fa, 0x2006fa4e, 0x06fa4e33, 0xfa4e3320, 0x47332006, 0x33200624, 0x20062447, 0x06244733, 0x24473320,
0x47332006, 0x33200624, 0x20062447, 0x06244733, 0x24473320, 0x47332006, 0x33200624, 0x20062447, 0x06244733, 0x24473320, 0x47332006, 0x33200624,
0x20062447, 0x06244733, 0x24473320, 0x47332006, 0x33200624, 0x20062447, 0x06244733, 0x24473320, 0x47332006, 0x33200624, 0x20062447, 0x06244733,
0x24473320, 0x47332006, 0x33200624, 0x20062447, 0x06244733, 0x46463321, 0x4620062c, 0x47062c46, 0x34210624, 0x05ce4e30, 0x41303421, 0x34210537,
0x051f4430, 0x41303421, 0x3420055b, 0x20061247, 0x06124734, 0x12473420, 0x47342006, 0x34210612, 0x058c4630, 0x85303421, 0x3034215f, 0x34205f85,
0x20060c47, 0x060c4734, 0x0c473420, 0x47342006, 0x3420060c, 0x20060c47, 0x060c4734, 0x0c473420, 0x47342006, 0x3420060c, 0x20060c47, 0x060c4734,
0x0c473420, 0x47342006, 0x3420060c, 0x20060c47, 0x060c4734, 0x0c473420, 0x31342106, 0x0c477f86, 0x47342006, 0x3420060c, 0x20060c47, 0x060c4734,
0x0c473420, 0x47342006, 0x3420060c, 0x20060c47, 0x06c44e34, 0x86323421, 0x060747ff, 0x47323421, 0x3420058c, 0x20060747, 0x06074734, 0x07473420,
0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x33342106, 0x2005c44e,
0x06074734, 0x86333421, 0x0607477f, 0x86333421, 0x0607477f, 0x07473420, 0x47342006, 0x34200607, 0x21060747, 0xff863334, 0x20060747, 0x06074734,
0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006,
0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747,
0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06074734, 0x07473420, 0x47342006, 0x34200607, 0x20060747, 0x06c44e34, 0x0f473420,
0x47342006, 0x3420060f, 0x2006c44e, 0x06c44e34, 0x1f473420, 0x47342006, 0x3420061f, 0x20061f47, 0x061f4734, 0x1f473420, 0x47342006, 0x3420061f,
0x20061f47, 0x061f4734, 0x1f473420, 0x36342106, 0x20058c49, 0x061f4734, 0x1f473420, 0x47342006, 0x3420061f, 0x20061f47, 0x061f4734, 0x1f473420,
0x47342006, 0x3420061f, 0x20061f47, 0x061f4734, 0xc44e3420, 0x4e342006, 0x342106c4, 0x067f4337, 0x2006c44e, 0x063f4734, 0x3f473420, 0x4e342006,
0x342006c4, 0x2006c44e, 0x06c44e34, 0xc44e3420, 0x47342006, 0x3420065f, 0x2006c44e, 0x06c44e34, 0xc44e3420, 0x4e342006, 0x342006c4, 0x2006c44e,
0x06c44e34, 0xc44e3420, 0x38342106, 0xc44e7f86, 0x38342806, 0x6e750734, 0x4e343069, 0x342006c4, 0x2006c44e, 0x06bc4e34, 0xbc4e3420, 0x4e342006,
0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x39342106, 0x39207786, 0x2006f742,
0x4e778639, 0x342106bc, 0x06774139, 0xd7453920, 0x4e342005, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e,
0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342106bc, 0x06774341, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34,
0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006,
0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e,
0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420, 0x4e342006, 0x342006bc, 0x2006bc4e, 0x06bc4e34, 0xbc4e3420,
0x4e342006, 0x342106bc, 0x067f4143, 0x2006d256, 0x06cc4e34, 0xcc4e3420, 0x4e342006, 0x342006cc, 0x2006cc4e, 0x06cc4e34, 0xcc4e3420, 0x4e342006,
0x342006cc, 0x2006c44e, 0x06c44e34, 0xc44e3420, 0x4e342006, 0x342006c4, 0x2006c44e, 0x06c44e34, 0x86443421, 0x06c44e77, 0xcf473420, 0x47342006,
0x342006cf, 0x2006cf47, 0x06cf4734, 0xcf473420, 0x47342006, 0x342006cf, 0x2006cf47, 0x06cf4734, 0xcf473420, 0x47342006, 0x342006cf, 0x2006cf47,
0x06cf4734, 0xcf473420, 0x47342006, 0x342006cf, 0x2006cf47, 0x06cf4734, 0xcf473420, 0x47342006, 0x342006cf, 0x2006cf47, 0x06cf4734, 0xcf473420,
0x47342006, 0x342006cf, 0x2006cf47, 0x06cf4734, 0xcf473420, 0x46342106, 0x47067742, 0x342006cf, 0x2006cf47, 0x06cf4734, 0x45463421, 0xbf4706ef,
0x46342106, 0x29055f47, 0x07303035, 0x30696e75, 0x3f853035, 0x43303521, 0x35210537, 0x05374330, 0x43303521, 0x35210537, 0x213f8530, 0x3f413035,
0x47352005, 0x352106af, 0x05af4730, 0x87303521, 0x052f464f, 0x4e303521, 0x3521053c, 0x053c4e30, 0x4e303521, 0x3521053c, 0x054f4c30, 0x4e303521,
0x3520053c, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746,
0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520,
0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7,
0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635, 0xa7463520, 0x46352006, 0x352006a7, 0x2006a746, 0x06a74635,
0x97463520, 0x46352006, 0x35200697, 0x20069746, 0x06974635, 0x97463520, 0x46352006, 0x35200697, 0x20069746, 0x068f4635, 0x8f463520, 0x46352006,
0x3520068f, 0x21068f46, 0xdf413635, 0x068f4606, 0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635, 0x8f463520, 0x46352006, 0x3520068f,
0x20068f46, 0x068f4635, 0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635, 0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635,
0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635, 0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635, 0x8f463520, 0x46352006,
0x3520068f, 0x20068f46, 0x068f4635, 0x8f463520, 0x46352006, 0x3520068f, 0x20068f46, 0x068f4635, 0x54553520, 0x46352006, 0x3520068f, 0x20068f46,
0x066f4435, 0x6f443520, 0x44352006, 0x3520066f, 0x20066f44, 0x066f4435, 0x6f443520, 0x44352006, 0x3520066f, 0x20066f44, 0x066f4435, 0x6f443520,
0x44352006, 0x3520066f, 0x20066f44, 0x066f4435, 0x6f443520, 0x44352006, 0x3520066f, 0x20066f44, 0x066f4435, 0x6f443520, 0x44352006, 0x3520066f,
0x20066f44, 0x066f4435, 0x6f443520, 0x44352006, 0x3520066f, 0x20066f44, 0x066f4435, 0x6f443520, 0x44352006, 0x3520066f, 0x22064744, 0x44314635,
0x4629050f, 0x66610932, 0x37356969, 0x06994733, 0x44303622, 0xcb4b1186, 0x31362207, 0x47118845, 0x36200545, 0x2006f54a, 0x06f54a36, 0x44323621,
0x36200545, 0x2006f54a, 0x06f54a36, 0xf54a3620, 0x32362106, 0x45443787, 0x4a362005, 0x362006f5, 0x2006f54a, 0x06f54a36, 0xf54a3620, 0x4a362006,
0x362006f5, 0x2006f54a, 0x06f54a36, 0xf54a3620, 0x44362006, 0x3620064d, 0x20064d44, 0x064d4436, 0x4d443620, 0x44362006, 0x3620064d, 0x20064d44,
0x064d4436, 0x4d443620, 0x44362006, 0x3620064d, 0x20064d44, 0x06254436, 0x25443620, 0x44362006, 0x36200625, 0x20062544, 0x06254436, 0x25443620,
0x44362006, 0x36200625, 0x20062544, 0x06254436, 0x25443620, 0x44362006, 0x36200625, 0x2006e543, 0x06e54336, 0x35353622, 0x21064941, 0x77413933,
0x33392108, 0x34201388, 0x27890988, 0x13883620, 0x09883720, 0x09883820, 0x99413920, 0x88302008, 0x41312009, 0xe34108d1, 0x43362005, 0x362206c3,
0x19844336, 0x31333622, 0x2006f543, 0x06c54336, 0xc5433620, 0x43362006, 0x362006bd, 0x2006bd43, 0x06bd4336, 0xbd433620, 0x43362006, 0x362006bd,
0x2006bd43, 0x06bd4336, 0xbd433620, 0x43362006, 0x362006bd, 0x2006bd43, 0x06bd4336, 0xbd433620, 0x37362706, 0x6e750644, 0xbc433069, 0x43362006,
0x362006bc, 0x2006bc43, 0x06bc4336, 0xbc433620, 0x43362006, 0x362006bc, 0x2006bc43, 0x06bc4336, 0xbc433620, 0x43362006, 0x362006bc, 0x4307ba42,
0x362006c4, 0x2006c443, 0x06544a36, 0x544a3620, 0x38362106, 0x20059c46, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36,
0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006,
0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a,
0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620,
0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654,
0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36,
0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006, 0x36200654, 0x2006544a, 0x06544a36, 0x544a3620, 0x4a362006,
0x36200654, 0x2006544a, 0x06544a36, 0x21593620, 0x45362006, 0x362006ec, 0x2006ec45, 0x06ec4536, 0xec453620, 0x45362006, 0x362006ec, 0x2006ec45,
0x06444536, 0x44453620, 0x49362006, 0x3620068c, 0x20068c49, 0x068c4936, 0x47463621, 0x3620056c, 0x20065c51, 0x065c5136, 0x9c493620, 0x46362106,
0x21054c49, 0x4c494636, 0x51362005, 0x3620065c, 0x20068158, 0x06815836, 0x81583620, 0x58362006, 0x37200681, 0x20062f43, 0x062f4337, 0x2f433720,
0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f,
0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337,
0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006,
0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43,
0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0x2f433720, 0x43372006, 0x3720062f, 0x20062f43, 0x062f4337, 0xbf423720,
0x42372006, 0x372006bf, 0x2006bf42, 0x06bf4237, 0xbf423720, 0x42372006, 0x372006bf, 0x2106bf42, 0x16474337, 0x42372005, 0x372006bf, 0x2006bf42,
0x06bf4237, 0xbf423720, 0x42372006, 0x372006bf, 0x2006bf42, 0x06bf4237, 0xbf423720, 0x42372006, 0x372006bf, 0x2006bf42, 0x06bf4237, 0xbf423720,
0x42372006, 0x372006bf, 0x2006bf42, 0x06ac4837, 0x86443721, 0x06ac487f, 0xac483720, 0x48372006, 0x372006ac, 0x2006ac48, 0x06ac4837, 0xac483720,
0x48372006, 0x372006ac, 0x2006ac48, 0x06ac4837, 0xac483720, 0x48372006, 0x372006ac, 0x2006ac48, 0x06ac4837, 0xac483720, 0x48372006, 0x372006ac,
0x2006ac48, 0x06044d37, 0x044d3720, 0x4d372006, 0x37200604, 0x2006044d, 0x06044d37, 0x30463728, 0x696e7507, 0x77433730, 0x43372006, 0x37200677,
0x20067743, 0x06774337, 0x77433720, 0x43372006, 0x37210677, 0x43e78646, 0x37200677, 0x20067743, 0x06774337, 0x1c4b3920, 0x4b392006, 0x4220061c,
0x2b064f43, 0x09333842, 0x656c6d74, 0x72657474, 0x2005a143, 0x06494342, 0x49434220, 0x43422006, 0x42200649, 0x20064943, 0x06494342, 0x31434220,
0x43422006, 0x42200631, 0x20063143, 0x06294342, 0x29434220, 0x43422006, 0x42200629, 0x20062943, 0x06114342, 0x11434220, 0x43422006, 0x42200609,
0x20060143, 0x06014342, 0xe9424220, 0x42422006, 0x422006e9, 0x2006d142, 0x06d14242, 0xd1424220, 0x42422006, 0x422006b9, 0x2006b942, 0x06b94242,
0xb9424220, 0x45422006, 0x422106e9, 0x05c04942, 0xe9454220, 0x45422006, 0x422006e9, 0x2006e945, 0x06e94542, 0xe9454220, 0x45422006, 0x422006e9,
0x2006c945, 0x06c94542, 0x09434220, 0x43422006, 0x42200609, 0x20060943, 0x06f14242, 0xf1424220, 0x42422006, 0x422006f1, 0x2006e942, 0x06e94242,
0xe9424220, 0x42422006, 0x422006e9, 0x2006d942, 0x06a94242, 0x39424220, 0x42422006, 0x42200639, 0x2006e64a, 0x06e64a42, 0xe64a4220, 0x42422006,
0x42200651, 0x20065142, 0x06514242, 0x51424220, 0x42422006, 0x42200651, 0x20065142, 0x06514242, 0x51424220, 0x42422006, 0x42200651, 0x20065142,
0x06514242, 0x51424220, 0x42422006, 0x42200651, 0x20065142, 0x06514242, 0x51424220, 0x30452906, 0x6e750731, 0x30453069, 0x2105664f, 0x5f413045,
0x30452105, 0x2105664f, 0x19463045, 0x30452105, 0x2105664f, 0xa1423045, 0x30452105, 0x2105204b, 0x19463045, 0x30452105, 0x21057742, 0x664f3045,
0x30452105, 0x2105664f, 0xc9483045, 0x30452105, 0x2105664f, 0x664f3045, 0x31452205, 0x21778530, 0x07863131, 0x31207f86, 0x31207f86, 0x31207f86,
0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x31207f86, 0x16577f86, 0x4c452006,
0x45200620, 0x2106204c, 0x7f863245, 0x2006204c, 0x06204c45, 0x204c4520, 0x32452106, 0x16577f86, 0x4c452006, 0x45200620, 0x2006204c, 0x06204c45,
0x86324521, 0x06204c7f, 0x204c4520, 0x4c452006, 0x45200620, 0x2006204c, 0x06204c45, 0x204c4520, 0x4c452006, 0x45200620, 0x2006204c, 0x06204c45,
0x204c4520, 0x4c452006, 0x45200620, 0x2006204c, 0x06204c45, 0x204c4520, 0x50452006, 0x4520064e, 0x2006284c, 0x06284c45, 0x284c4520, 0x4c452006,
0x45200628, 0x2006284c, 0x06284c45, 0x284c4520, 0x4c452006, 0x45200628, 0x2006284c, 0x06284c45, 0x284c4520, 0x50452006, 0x4520064e, 0x20064e50,
0x064e5045, 0x4e504520, 0x50452006, 0x4520064e, 0x20064e50, 0x064e5045, 0x4e504520, 0x4c452006, 0x45200668, 0x2006684c, 0x064e5045, 0x4e504520,
0x56452006, 0x452006f6, 0x2006f656, 0x065e5045, 0x5e504520, 0x50452006, 0x3121055e, 0x82df8530, 0x07312407, 0x82696e75, 0x86322007, 0x86332007,
0x86342007, 0x86352007, 0x86362007, 0x86372007, 0x86382007, 0x85392007, 0x05a94707, 0x47303121, 0x078205a9, 0xbf444f86, 0x860f8205, 0x05a9474f,
0x4f860f82, 0x8205a947, 0x444f860f, 0x0f8205d7, 0x57864120, 0x07864220, 0x07864320, 0x07864420, 0x07864520, 0x07854620, 0x2105ef44, 0xef443031,
0x86078205, 0x05ef447f, 0x7f860f82, 0x8205ef44, 0x447f860f, 0x0f8205ef, 0xef447f86, 0x860f8205, 0x05d94a7f, 0x7f860f82, 0x8205d94a, 0x457f860f,
0x3121050f, 0x050f4530, 0x31200782, 0x0f458f85, 0x410f8205, 0x1948064f, 0x410f8205, 0xef44064f, 0x30312105, 0x8205c947, 0x47af8607, 0x0f8205c9,
0xc947af86, 0x860f8205, 0x051f45af, 0xaf860f82, 0x8205c947, 0x47af860f, 0x0f8205c9, 0xc947af86, 0x860f8205, 0x05c947af, 0x47303121, 0x078205c9,
0xc947af86, 0x860f8205, 0x05c947af, 0xaf860f82, 0x82058f45, 0x06ff410f, 0x82058f45, 0x06ff410f, 0x82058f45, 0x06af410f, 0x82058f45, 0x06af410f,
0x82058f45, 0x06af410f, 0x23058f45, 0x31463031, 0x45052f41, 0x0f82058f, 0x8f457f86, 0x860f8205, 0x058f457f, 0x7f860f82, 0x82058f45, 0x457f860f,
0x0f82058f, 0x594b7f86, 0x6b312005, 0x0782068d, 0x67843120, 0xa7453220, 0x850f8205, 0x45322067, 0x0f8205a7, 0x32206785, 0x8205a745, 0x055f410f,
0x9f453220, 0x410f8205, 0x856b055f, 0x410f8206, 0x3220055f, 0x82059f45, 0x055f410f, 0x9f453220, 0x6b312005, 0x07820685, 0x31207786, 0x2005df41,
0x059f4532, 0xdf411782, 0x06856b05, 0xdf410f82, 0x45322005, 0x0f82059f, 0x9f457f86, 0x860f8205, 0x059f457f, 0x7f860f82, 0x82059f45, 0x457f860f,
0x3120059f, 0x82067b6b, 0x457f8607, 0x0f82059f, 0x9f45f786, 0x860f8205, 0x059f45f7, 0x5f410f82, 0x45322005, 0x0f82059f, 0x20055f41, 0x059f4532,
0x5f410f82, 0x45322005, 0x0f82059f, 0x2005df41, 0x059f4532, 0xdf410f82, 0x45322005, 0x3121059f, 0x059f4532, 0xff860782, 0x82059f45, 0x45ff860f,
0x0f82059f, 0x9f45ff86, 0x860f8205, 0x059f45ff, 0xff860f82, 0x82050e56, 0x20ff860f, 0x567f8633, 0x1782050e, 0xdf447f86, 0x45322006, 0x312105bf,
0x05bf4532, 0xff860782, 0x8205bf45, 0x45ff860f, 0x0f8205bf, 0xaf457786, 0x860f8205, 0x05af45ef, 0x6f860f82, 0x21059f45, 0x9f453231, 0x86078205,
0x059f45df, 0xdf860f82, 0x82059f45, 0x45df860f, 0x0f820597, 0x8f45cf86, 0x55322006, 0x178205ee, 0x36215f86, 0x05af4230, 0x86313621, 0x555f8607,
0x312105e6, 0x05c94a32, 0xbf860782, 0x8205e655, 0x06bf410f, 0x8205e655, 0x06bf410f, 0x8205e655, 0x55cf860f, 0x0f8205e6, 0x3f426f87, 0x05205206,
0x55323121, 0x078205e6, 0x28527f86, 0x410f8205, 0x2852063f, 0x860f8205, 0x0528527f, 0x7f860f82, 0x82052852, 0x527f860f, 0x0f820528, 0x28527f86,
0x860f8205, 0x0529527f, 0xbf410f82, 0x05f94e06, 0x4e323121, 0x078205f9, 0xf94eff86, 0x410f8205, 0x3820065f, 0xaf4b7f86, 0x41178205, 0x9f4b06bf,
0x860f8205, 0x05e94e6f, 0x6f860f82, 0x2105a74b, 0xd94e3231, 0x86078205, 0x05af4b5f, 0x5f860f82, 0x8205af4b, 0x06bf410f, 0x8205d94e, 0x4b67860f,
0x0f8205c7, 0x4e06cf41, 0x0f8205d9, 0x20069f42, 0x416f8739, 0xd74b065f, 0x32312105, 0x20062f47, 0x062f4732, 0xd94e3220, 0x41178205, 0xef4b065f,
0x860f8205, 0x05d94edf, 0x5f410f82, 0x05074c06, 0x5f410f82, 0x05074c06, 0xef860f82, 0x8205d94e, 0x4c7f860f, 0x3121051f, 0x06274732, 0x0f4c3220,
0x860f8205, 0x050f4c6f, 0x6f860f82, 0x8205ff4b, 0x515f860f, 0x0f8205e9, 0xe9515f86, 0x860f8205, 0x051f4c5f, 0x47323121, 0x32200607, 0x2006ff46,
0x05194f32, 0x4f411782, 0x05194f06, 0x3f410f82, 0x05094f06, 0x3f410f82, 0x051f4c06, 0x3f410f82, 0x051f4c06, 0x3f410f82, 0x06374706, 0x37473220,
0x4f322006, 0x31210501, 0x06374732, 0x014f3220, 0x860f8205, 0x05014fc7, 0x6f860f82, 0x20062f47, 0x05f94e32, 0xcf861782, 0x8205f94e, 0x4ecf860f,
0x0f8205f9, 0x47068f42, 0x3220062f, 0x2105f94e, 0x2f473231, 0x4e322006, 0x0f8205f9, 0xf94edf86, 0x420f8205, 0xbf4c062f, 0x860f8205, 0x05bf4c7f,
0xef860f82, 0x8205bf4c, 0x4cef860f, 0x0f8205bf, 0x2747ef86, 0x46322206, 0x05074431, 0x20062747, 0x05b74c32, 0x47323121, 0x32210627, 0x47ef8646,
0x32200627, 0x8205b74c, 0x2077861f, 0x06c74146, 0x77864620, 0x82058152, 0x5277861f, 0x0f820581, 0xf7857787, 0x30303322, 0x33217784, 0x207f8530,
0x063f4733, 0x42303321, 0x33200537, 0x21063f47, 0x7f853033, 0x85303321, 0x4c3320f7, 0x312105e7, 0x05e74c33, 0x7f850782, 0x85303321, 0x060b6b7f,
0x7f851782, 0x47473320, 0x060b6b06, 0x31333122, 0x37477786, 0x06fb6a06, 0x67411782, 0x31332105, 0xc74c6f86, 0x86178205, 0x05c74c5f, 0xd7410f82,
0x4c332005, 0x0f8205c7, 0x2005d741, 0x05c74c33, 0x4c333121, 0x078205bf, 0xdf853120, 0x20061f47, 0x05bf4c33, 0x67861782, 0x8205bf4c, 0x4cd7860f,
0x0f8205bf, 0x6a055741, 0x0f8206de, 0xbf4cd786, 0x860f8205, 0x05bf4cd7, 0x57410f82, 0x06de6a05, 0x47333121, 0x3320061f, 0x20061f47, 0x05bf4c33,
0x57411782, 0x05bf4c06, 0xe7860f82, 0x8205bf4c, 0x05ff430f, 0x8206de6a, 0x4cf7860f, 0x0f8205bf, 0x2e5df786, 0x860f8205, 0x061f47f7, 0xdf4c3320,
0x6a312005, 0x078206de, 0xff853120, 0x20061f47, 0x05df4c33, 0xff861782, 0x8205df4c, 0x4cff860f, 0x0f8205d7, 0x27477786, 0x06d66a06, 0xf7861782,
0x8205d74c, 0x4cf7860f, 0x312005d7, 0x8206d66a, 0x4c778607, 0x0f8205d7, 0xd74cf786, 0x860f8205, 0x05d74cf7, 0xf7860f82, 0x20063f47, 0x05d74c33,
0x77411782, 0x06274706, 0x2106be6a, 0x27473331, 0x47332006, 0x33200627, 0x8205f151, 0x20c78617, 0x474f8636, 0xbe6a0627, 0x871f8206, 0x0647414f,
0x20062747, 0x050e5d33, 0xcf861f82, 0x20062747, 0x06274733, 0x50593320, 0x33312105, 0x20062747, 0x05505933, 0x47410f82, 0x05505906, 0x7f860f82,
0x82055059, 0x0647420f, 0x82055059, 0x597f860f, 0x0f820550, 0x20054f41, 0x060f4736, 0x20063959, 0x06395931, 0x37410782, 0x06395905, 0x37410f82,
0x47362005, 0x3959060f, 0x85178206, 0x52362067, 0x0f8205bf, 0x39596785, 0x870f8206, 0x052f4267, 0x82063959, 0x05074417, 0x2f473620, 0x06395906,
0x39593120, 0x86078206, 0x05df527f, 0x7f860f82, 0x82050956, 0x0567410f, 0x09563620, 0x420f8205, 0x39590537, 0x410f8206, 0x39590567, 0x36312106,
0x20061747, 0x06174736, 0x82062159, 0x47678617, 0x21590617, 0x41178206, 0x3620054f, 0x5906474e, 0x17820621, 0x17476786, 0x06215906, 0xe7861782,
0x8205f155, 0x05cf410f, 0x21062159, 0x1f473631, 0x42362606, 0x6e750731, 0x480f8269, 0x36200517, 0x2006474e, 0x06274736, 0x474e3620, 0x53362006,
0x27820537, 0x3747e786, 0x42362106, 0x37477f86, 0x06215906, 0x7f862782, 0x5906474e, 0x17820621, 0x47066741, 0x3620063f, 0x21055753, 0x47473631,
0x47362006, 0x36200647, 0x2006474e, 0x06474736, 0x82062159, 0x537f8627, 0x0f82056f, 0x77537f86, 0x410f8205, 0x77530667, 0x410f8205, 0x615606e7,
0x860f8205, 0x065f477f, 0x5f473620, 0x47362006, 0x3620065f, 0x59065f47, 0x31200621, 0x82062159, 0x067f4107, 0x2106974e, 0x67424436, 0x06674706,
0x67473620, 0x4e362006, 0x36200697, 0x20066747, 0x06974e36, 0x67473620, 0x4e362006, 0x36200697, 0x20066747, 0x06674736, 0x67473620, 0x47362006,
0x36200667, 0x2006974e, 0x06674736, 0x974e3620, 0x47362006, 0x36200667, 0x2006974e, 0x06674736, 0x974e3620, 0x47362006, 0x36200667, 0x2006974e,
0x06674736, 0x974e3620, 0x54362006, 0x31210527, 0x066f4736, 0xdf4b3920, 0x4b392006, 0x392006df, 0x2006a744, 0x06df4b39, 0xa7443920, 0x4b392006,
0x392006df, 0x2006a744, 0x057f5139, 0x44393121, 0x392006a7, 0x2006a744, 0x057f5139, 0x87411782, 0x4b392005, 0x392006ef, 0x8205de61, 0x05874217,
0xde613920, 0x39312105, 0x2006ff4b, 0x06d74439, 0xe6613920, 0x43178205, 0xc9560507, 0x430f8206, 0x3920056f, 0x2006ff4b, 0x06d74439, 0xd7443920,
0x61392006, 0x278205e6, 0x2005ef43, 0x05225e39, 0x87420f82, 0x44392005, 0x392006d7, 0x2006c744, 0x06c74439, 0xc7443920, 0x44392006, 0x392006c7,
0x2806ef4b, 0x07303044, 0x31696e75, 0x060f4844, 0x0f484420, 0x48442006, 0x4420060f, 0x20060f48, 0x060f4844, 0x0f484420, 0x48442006, 0x4420060f,
0x21060f48, 0x9f423044, 0x48442005, 0x4420060f, 0x8205f754, 0x20978557, 0x060f4844, 0xf7544420, 0x42178205, 0x4421059f, 0x217f8631, 0x87853131,
0x21061f48, 0x17413144, 0x31442105, 0x20056f45, 0x061f4844, 0x42314421, 0x4421059f, 0x051f4331, 0x2f484420, 0x31442106, 0x2f487f86, 0x31442106,
0x20059741, 0x062f4844, 0x43314421, 0x4420051f, 0x21062f48, 0x7f863144, 0x7f863220, 0x2105f754, 0x37484431, 0x32442106, 0x574f7f86, 0x48442006,
0x44200637, 0x2006574f, 0x06374844, 0x574f4420, 0x54442006, 0x3f8205f7, 0x20059741, 0x06374844, 0x9f414420, 0x46442006, 0x4420060f, 0x2006374d,
0x05415f44, 0x41453121, 0x4520067f, 0x20067f41, 0x067f4145, 0x7f414520, 0x06775606, 0x17422782, 0x06775605, 0xff850f82, 0x82067756, 0x20ff850f,
0x067f4145, 0x82067756, 0x057f4117, 0x82067756, 0x0597420f, 0xd7504520, 0x06775606, 0x41453121, 0x4520067f, 0x20067f41, 0x067f4145, 0x7f414520,
0x41452006, 0x4520067f, 0x20067f41, 0x067f4145, 0x7f414520, 0x41452006, 0x4520067f, 0x20067f41, 0x067f4145, 0x7f414520, 0x41452006, 0x4520067f,
0x20067f41, 0x067f4145, 0x41324521, 0x4528057f, 0x75073132, 0x4531696e, 0x20067f41, 0x067f4145, 0x7f414520, 0x06775606, 0xff411f82, 0x06775605,
0x9f440f82, 0x06775605, 0x7f410f82, 0x06775605, 0xff860f82, 0x5606b749, 0x17820677, 0x2005ff41, 0x06b74945, 0xb7494520, 0x49452006, 0x452106b7,
0x05ff4133, 0x20067756, 0x06775631, 0x7f860782, 0x5606d750, 0x17820677, 0x49067f41, 0x452006b7, 0x2006d750, 0x06b74945, 0xd7504520, 0x49452006,
0x975606b7, 0x56312006, 0x07820697, 0xff853120, 0x5606b749, 0x17820697, 0x2005ff42, 0x06b74945, 0x82069756, 0x06ff4117, 0x5606bf49, 0x17820697,
0x9756ff86, 0x860f8205, 0x06bf49ff, 0x82069756, 0x45ff8617, 0x45200617, 0x20061745, 0x06174545, 0x17454520, 0x45452006, 0x45200617, 0x20061745,
0x06174545, 0x20069756, 0x06975631, 0xff860782, 0x56061745, 0x45200797, 0x20061745, 0x06174545, 0xf6664520, 0x862f8205, 0x0617457f, 0x17454520,
0x45452006, 0x45200617, 0x2006ef49, 0x06ef4945, 0xef494520, 0x45452006, 0x45200617, 0x20061745, 0x06174545, 0x17454520, 0x51452006, 0x45200617,
0x20067743, 0x06ef4945, 0x17454520, 0x63452006, 0x31210538, 0x06ef4945, 0x27454520, 0x45452006, 0x45200627, 0x20062745, 0x06274545, 0x27454520,
0x49452006, 0x452006ef, 0x20061751, 0x06ef4945, 0x17514520, 0x43452006, 0x452006df, 0x2006df43, 0x06ef4945, 0x17514520, 0x66452006, 0x312105fe,
0x06175145, 0x4637452b, 0x72675706, 0x06657661, 0x24068577, 0x75636157, 0x840d8274, 0x57092106, 0x2107dc73, 0x09877709, 0x4a051f42, 0x45200607,
0x2105c75c, 0xc75c4531, 0x41078205, 0x2751067f, 0x60452006, 0x17820511, 0x2006ff41, 0x05ff4438, 0xdf5c4520, 0x41178205, 0x074a067f, 0x51452006,
0x45210637, 0x051f4939, 0x37514520, 0x4a452006, 0x45200607, 0x20063751, 0x06074a45, 0x37514520, 0x4a452006, 0x45200607, 0x20063751, 0x05ff5c45,
0x39453122, 0x20057f45, 0x06ff4945, 0xff494520, 0x51452006, 0x45200617, 0x20064758, 0x06ff4945, 0x47584520, 0x51452006, 0x45200617, 0x2006ff49,
0x06175145, 0x47584520, 0x49452006, 0x452006ff, 0x2105f15f, 0x17514531, 0x49452006, 0x452006ff, 0x20061751, 0x05375d45, 0x49453121, 0x452106ff,
0x065f4342, 0x20062751, 0x06ff4945, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06475845, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49,
0x06475845, 0x37514520, 0x49452006, 0x452006ff, 0x20063751, 0x06475845, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520,
0x49452006, 0x452006ff, 0x21056f5d, 0x6f5d4531, 0x44078205, 0x575106df, 0x49452006, 0x452006ff, 0x20065751, 0x06ff4945, 0x57514520, 0x49452006,
0x452006ff, 0x21056160, 0xff494531, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0x5f514520, 0x58452006, 0x45200697, 0x20065f51, 0x06ff4945,
0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520, 0x49452006,
0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49,
0x06ff4945, 0xff494520, 0x49452006, 0x452006ff, 0x2006ff49, 0x06ff4945, 0xff494520, 0x46452406, 0x43590631, 0x79200568, 0x4d430684, 0x066d5105,
0x35464522, 0x36200f86, 0x5d450786, 0x06955806, 0x43464521, 0x4620055d, 0x2006ad47, 0x06ad4746, 0xad474620, 0x47462006, 0x462006ad, 0x20062d49,
0x062d4946, 0x85304621, 0x3046214f, 0x46214f85, 0x05cd4130, 0x2d494620, 0x47462006, 0x462106ad, 0x052d4330, 0x43304621, 0x462105ad, 0x05ad4330,
0x2d494620, 0x47462006, 0x462206ad, 0x9f843031, 0x42314621, 0x462105cd, 0x05ad4331, 0x46314621, 0x462005ad, 0x2006ad47, 0x06ad4746, 0x9d474620,
0x47462006, 0x4621069d, 0x051d4631, 0x86314621, 0x069d476f, 0x9d474620, 0x47462006, 0x4620068d, 0x20068d47, 0x068d4746, 0x8d474620, 0x32462106,
0x21058d46, 0x2f413246, 0x49462005, 0x4620060d, 0x20060d49, 0x060d4946, 0x0d494620, 0x32462106, 0x0d496f86, 0x58462006, 0x46200665, 0x20068d47,
0x06655846, 0x055e4620, 0x46312105, 0x21068d47, 0xdf863346, 0x20068d47, 0x068d4746, 0x45514620, 0x58462006, 0x46200665, 0x20064551, 0x068d4746,
0x055e4620, 0x41478205, 0x8d4706af, 0x47462006, 0x4620068d, 0x20068d47, 0x068d4746, 0x8d474620, 0x51462006, 0x46200645, 0x20066558, 0x06655846,
0x8d474620, 0x34462106, 0x58065f41, 0x46200665, 0x20068d47, 0x067d4746, 0x155e4620, 0x46312105, 0x20063d51, 0x067d4746, 0x65584620, 0x47462006,
0x4620067d, 0x20066d47, 0x066d4746, 0x6d474620, 0x47462006, 0x4620066d, 0x20066d47, 0x066d4746, 0x6d474620, 0x4c462006, 0x46200685, 0x20067d4c,
0x06655846, 0x55474620, 0x4c462006, 0x46200665, 0x20064d47, 0x064d4746, 0x4d474620, 0x36462106, 0x4d47bf86, 0x47462006, 0x4620064d, 0x20064d47,
0x064d4746, 0x4d474620, 0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620,
0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620064d,
0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620064d, 0x20064551, 0x06555846, 0x43384621, 0x5558060f, 0x67462006, 0x3121054f, 0x06555846,
0x3d474620, 0x47462006, 0x4620063d, 0x20063d47, 0x06455146, 0x42384621, 0x3d4706af, 0x38462106, 0x47068f43, 0x4621063d, 0x053d4b38, 0x1d644620,
0x46312105, 0x20063d47, 0x063d4746, 0x3d474620, 0x47462006, 0x4620063d, 0x20063d47, 0x063d4746, 0x3d474620, 0x47462006, 0x4620063d, 0x20063d47,
0x063d4746, 0x3d474620, 0x47462006, 0x4620063d, 0x82054564, 0x060f4467, 0x7f863920, 0x20067558, 0x065d4746, 0x5d474620, 0x47462006, 0x4620065d,
0x20065d47, 0x065d4746, 0x5d474620, 0x47462006, 0x4620065d, 0x20065d47, 0x065d4746, 0x5d474620, 0x47462006, 0x4620065d, 0x20065d47, 0x065d4746,
0x5d474620, 0x47462006, 0x4620065d, 0x20065d47, 0x065d4746, 0x31424622, 0x47059744, 0x4620065d, 0x20065d47, 0x065d4746, 0x55474620, 0x47462006,
0x46200655, 0x20065547, 0x06554746, 0x55474620, 0x47462006, 0x46200655, 0x20065547, 0x06554746, 0x55474620, 0x47462006, 0x46200655, 0x20065547,
0x06554746, 0x55474620, 0x47462006, 0x46200655, 0x20065547, 0x064d4746, 0x4d474620, 0x51462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620,
0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620064d, 0x20064d47, 0x064d4746, 0x4d474620, 0x47462006, 0x4620063d,
0x20063d47, 0x063d4746, 0x3d474620, 0x47462006, 0x4620063d, 0x20063d47, 0x06354746, 0x35474620, 0x47462006, 0x46200635, 0x20063547, 0x06354746,
0x35474620, 0x47462006, 0x46200635, 0x20063547, 0x06354746, 0x35474620, 0x47462006, 0x46200635, 0x20063547, 0x06354746, 0x35474620, 0x47462006,
0x46200635, 0x20063547, 0x06354746, 0x35474620, 0x47462006, 0x46200635, 0x21069558, 0x37444646, 0x06274706, 0x8d584620, 0x46462106, 0x4706cf46,
0x4621061f, 0x066f4546, 0x3f434620, 0x068d5806, 0xb55f4620, 0x58462006, 0x4620068d, 0x2b050f6b, 0x30303032, 0x696e7507, 0x31303032, 0x32200786,
0x6f840786, 0x34201782, 0x35200f86, 0x36200786, 0x77840786, 0x38201f82, 0x77840f86, 0x77840f82, 0x42200782, 0x43201786, 0x44200786, 0x45200786,
0x46200786, 0x31210785, 0x2b078630, 0x69660a31, 0x65727567, 0x68736164, 0x72861286, 0x0d36312a, 0x65646e75, 0x6f637372, 0x622a1e82, 0x75710d6c,
0x7265746f, 0x12827665, 0x86646521, 0x264e862b, 0x6f0e3332, 0x8264656e, 0x6c6e231f, 0x34826165, 0x77740e23, 0x850e8a6f, 0x0524472d, 0x33303230,
0x696d0631, 0x6574756e, 0x63657306, 0x4b866e6f, 0x8205da46, 0x467f861d, 0x0f8205da, 0xda46f286, 0x2a0f8205, 0x78650942, 0x6d616c63, 0x856c6264,
0x05cc4657, 0xe4861982, 0x2005cc46, 0x06126432, 0x31200782, 0xcc462785, 0x410f8205, 0xc4460664, 0x410f8205, 0xea64065c, 0x410f8205, 0xd446065c,
0x410f8205, 0xd446065c, 0x410f8205, 0xd446065c, 0x860f8205, 0x05125877, 0x46303221, 0x078205e4, 0xe4467786, 0x860f8205, 0x05e44677, 0xd9860f82,
0x21053446, 0x1c463032, 0x41078205, 0x1c460601, 0x870f8205, 0x46978627, 0x1782051c, 0x1c469786, 0x860f8205, 0x051c4697, 0x97860f82, 0x21056a51,
0x2c463032, 0x86078205, 0x052c4697, 0x97860f82, 0x82052c46, 0x467f860f, 0x0f82052c, 0x2c467f86, 0x420f8205, 0x2c460674, 0x420f8205, 0x2c460674,
0x420f8205, 0x2c460674, 0x30323105, 0x630d3041, 0x6e6f6c6f, 0x656e6f6d, 0x79726174, 0x26058d41, 0x6c043241, 0x86617269, 0x2572860c, 0x70063641,
0x25827365, 0xf1861686, 0x82059e45, 0x04412a49, 0x676e6f64, 0x72754504, 0x8621866f, 0x0598456b, 0x91422182, 0x05984506, 0x3e653220, 0x43078206,
0x98450660, 0x430f8205, 0xf64c0660, 0x420f8205, 0x78440603, 0x31322105, 0x2006a043, 0x06a04331, 0x85303121, 0x3031213f, 0x21052b41, 0x3f853031,
0x85303121, 0x303121b8, 0x31213f85, 0x052b4130, 0x85303121, 0x303121b9, 0x21052b41, 0xab413031, 0x30312105, 0x21052b41, 0xab413031, 0x30312105,
0x3121bf85, 0x05ab4130, 0x85303121, 0x313121bf, 0x31205786, 0x31205786, 0xc84a5786, 0x31322205, 0x344f8631, 0x700c4431, 0x63736572, 0x74706972,
0x076e6f69, 0x32696e75, 0x05c54a31, 0x31200782, 0xac860f86, 0x8205b54a, 0x4a3c8617, 0x0f820595, 0x65094328, 0x6d697473, 0xd8437461, 0x4a312006,
0x3221058f, 0x057f4a31, 0xf6860782, 0x05343326, 0x70656c61, 0x20052a44, 0x06a24331, 0x86333121, 0x06a2439c, 0xe3623120, 0x86358205, 0x06a043ec,
0x6d4a3120, 0x86178205, 0x056d4ae4, 0x4a313221, 0x0782056d, 0x20066441, 0x4a6d8634, 0x1782056d, 0x62060c41, 0x0f8205d3, 0x7d4a6f86, 0x410f8205,
0x34200664, 0xa843d786, 0x4a312006, 0x3221050d, 0x050d4a31, 0x5f860782, 0x5f863620, 0x82050d4a, 0x4a5f8617, 0x0f82050d, 0x0d4a5f86, 0x860f8205,
0x050d4a5f, 0xd7860f82, 0x82050d4a, 0x06c4410f, 0x82050d4a, 0x43df860f, 0x312006d8, 0x21050d4a, 0x0d4a3132, 0x86078205, 0x06f0437f, 0x0d4a3120,
0x41178205, 0x0d4a06ec, 0x420f8205, 0xf0430644, 0x4a312006, 0x1782050d, 0x0d4a7f86, 0x860f8205, 0x055b517f, 0x7f860f82, 0x2006f043, 0x051d4a31,
0x43313221, 0x312d06f0, 0x61093338, 0x776f7272, 0x7466656c, 0x22098407, 0x840a7075, 0x69722407, 0x85746867, 0x6f64231c, 0x09856e77, 0x746f6223,
0x22098568, 0x42647075, 0xc8490662, 0x31322105, 0x8205c849, 0x49aa8607, 0x0f8205c8, 0x49068a41, 0x0f8205c8, 0x2006ef42, 0x49aa8639, 0x178205c8,
0xc849aa86, 0x31322105, 0x8205c849, 0x06aa4107, 0x8205c849, 0x06c2420f, 0x8205c849, 0x062a410f, 0x0c374122, 0x9983b884, 0x65736222, 0x4405ef42,
0x3120062e, 0x8205cd49, 0x062f412c, 0x8205cd49, 0x4484860f, 0x31200634, 0x2105cd49, 0x34443132, 0x42312206, 0x49478531, 0x178205cd, 0x2306af41,
0x630e3442, 0x69286d82, 0x72656761, 0x72757465, 0x49060b41, 0x268205dc, 0x49063642, 0x0f8205dc, 0xc449f386, 0x430f8205, 0xc44906e3, 0x31322105,
0x8205c449, 0x496e8607, 0x0f8205c4, 0xc4496e86, 0x420f8205, 0xcc49069e, 0x860f8205, 0x05cc4967, 0x9e420f82, 0x05cc4906, 0xee860f82, 0x2105cc49,
0xd3443132, 0x054c4907, 0x5b410f82, 0x33453006, 0x6c654405, 0x67086174, 0x69646172, 0x84746e65, 0x31322bf5, 0x6e690c39, 0x73726574, 0x52446365,
0x34322d08, 0x71650b33, 0x61766975, 0x636e656c, 0x22056641, 0x84303033, 0x30332630, 0x6f680531, 0x067c4175, 0x21064861, 0x21453332, 0x45332006,
0x33200621, 0x20062145, 0x06214533, 0x21453320, 0x45332006, 0x48610621, 0x85378206, 0x453320bd, 0x48610621, 0x41178206, 0x332f053d, 0x720d4630,
0x6f6c7665, 0x61636967, 0x856f6e6c, 0x313322b4, 0x208b8531, 0x61db8531, 0x3222065e, 0x37423133, 0x065e6105, 0x37420f82, 0x31332105, 0x21054341,
0xb7423133, 0x31332105, 0x20054341, 0x06574533, 0x86313321, 0x41312085, 0x332105c3, 0x05324231, 0x82066e61, 0x0a462b47, 0x65746e69, 0x6c617267,
0x0a887074, 0x8d866220, 0x85863220, 0xc9413220, 0x50332005, 0x32210536, 0x06804533, 0x36503320, 0x860f8205, 0x38322c85, 0x676e6109, 0x656c656c,
0x840a7466, 0x69722309, 0x4c876867, 0x3b508a86, 0x86348205, 0x4132208a, 0xab450610, 0x43332006, 0x332006ed, 0x2006ed43, 0x06ed4333, 0x0b4e3320,
0x33322105, 0x20069e47, 0x06a24333, 0x9a433320, 0x4d332006, 0x32210563, 0x069a4333, 0x9a433320, 0x4d332006, 0x32210563, 0x069a4333, 0x9a433320,
0x4d332006, 0x17820563, 0x634ddc86, 0x420f8205, 0x332005a6, 0x8205634d, 0x4ddc860f, 0x0f820563, 0x43066241, 0x33200695, 0x8205634d, 0x06624117,
0x2105634d, 0x56423432, 0x42342006, 0x34200620, 0x20062247, 0x06924134, 0xdd463420, 0x51342006, 0x322105a3, 0x066c4134, 0x6c413420, 0x41342006,
0x34200664, 0x20066441, 0x06654634, 0x65463420, 0x4a342006, 0x34200606, 0x20066546, 0x06654634, 0x0e4a3420, 0x46342006, 0x34200665, 0x20060e4a,
0x06654634, 0x0e4a3420, 0x46342006, 0x34210665, 0x053a4238, 0x3b4f3420, 0x34322105, 0x20060e49, 0x053b4f34, 0xd7850f82, 0x3b4f3420, 0x410f8205,
0x342005af, 0x21053b4f, 0x3b4f3432, 0x24078205, 0x6e750731, 0x42078269, 0x34200534, 0x82053b4f, 0x05ba420f, 0x3b4f3420, 0x420f8205, 0x342105ba,
0x05574139, 0x3b4f3420, 0x41178205, 0x34200557, 0x82053b4f, 0x052f420f, 0x96443420, 0x4e342006, 0x32210573, 0x06964434, 0x734e3420, 0x450f8205,
0x342005a2, 0x8205734e, 0x44af860f, 0x342006ae, 0x8205734e, 0x05a24517, 0xae443420, 0x4e342006, 0x32210573, 0x06ae4434, 0x734e3420, 0x860f8205,
0x05c955af, 0xaf860f82, 0x82057b4e, 0x062f410f, 0x82057b4e, 0x4e7f860f, 0x0f82057b, 0x7b4e7f86, 0x410f8205, 0x7b4e062f, 0x34322105, 0x82057b4e,
0x062f4107, 0x2f414420, 0x057b4e06, 0x7f861782, 0x8205c955, 0x4e7f860f, 0x0f82058b, 0x8b4e7f86, 0x860f8205, 0x058b4e7f, 0x7f860f82, 0x8205934e,
0x4e7f860f, 0x32210593, 0x06464534, 0x46453420, 0x4e342006, 0x17820593, 0x20050743, 0x05934e34, 0x07430f82, 0x4e342005, 0x0f820593, 0x4e06af41,
0x0f820593, 0x53083925, 0x83303146, 0x75072700, 0x3532696e, 0x10833130, 0x10861184, 0x35205185, 0x20064245, 0x06424535, 0x42453520, 0x45352006,
0x35200642, 0x20062143, 0x06424535, 0x644a3520, 0x30352206, 0x20508242, 0x44508b30, 0x35200532, 0x2206654a, 0x83463035, 0x89332020, 0x063e4582,
0x3e453520, 0x31352206, 0x20208333, 0x85208a32, 0x313521d4, 0x22055441, 0x83373135, 0x8a342020, 0x05854220, 0x40453520, 0x31352106, 0x38208384,
0x8386208a, 0x56413120, 0x31352105, 0x20055642, 0x06ce4335, 0xce433520, 0x43352006, 0x352106ce, 0x20828432, 0x43408939, 0x352006d7, 0x2006d743,
0x064e4e35, 0x73553520, 0x35322105, 0x82057355, 0x05d74107, 0x84323521, 0x8a362081, 0x45818640, 0x35200638, 0x20063845, 0x05745535, 0x55353221,
0x07820574, 0x21055842, 0x81843335, 0x40893720, 0x82057555, 0x06044120, 0x2006f74a, 0x06f74a35, 0xf74a3520, 0x33352106, 0x33208186, 0x35208184,
0x8186408a, 0x2106084b, 0x03413335, 0x06a24406, 0xa2443520, 0x44352006, 0x352006a2, 0x2006a244, 0x06a24435, 0xa2443520, 0x44352006, 0x352006a2,
0x2006a244, 0x06a24435, 0xa2443520, 0x44352006, 0x352006a2, 0x2006084b, 0x05865535, 0x4e353221, 0x352106b1, 0x06834134, 0x08463426, 0x33344653,
0x0882a083, 0x86343221, 0x31352108, 0x32200887, 0x33210886, 0x20088639, 0x20118732, 0x20238732, 0x82df8432, 0x2007843e, 0x20088230, 0x212c8734,
0x35873833, 0x37200888, 0x36201187, 0x33200886, 0x1a870888, 0x62873420, 0x74883120, 0x2c863020, 0xaa873220, 0x2c883420, 0x34215987, 0x20238631,
0x83878434, 0x84598786, 0x209883d6, 0x88e08835, 0x0ac14247, 0x2105d355, 0xc54b3532, 0x36352106, 0x4b069c41, 0x352006c5, 0x2006c54b, 0x06c54b35,
0xd3553520, 0x35322105, 0x2006c54b, 0x06c54b35, 0xb64f3520, 0x4b352006, 0x352006c5, 0x8205d355, 0x06214327, 0x2006c54b, 0x06b64f35, 0xc54b3520,
0x4f352006, 0x352006b6, 0x2106c54b, 0x7f823735, 0x6c627025, 0x446b636f, 0xd7470515, 0x47352006, 0x352506d7, 0x64073338, 0x431f8b6e, 0xb64f06a2,
0x38352306, 0x1d8b0537, 0xa5467d86, 0x38352506, 0x666c0742, 0x9a421f8b, 0x06b44f06, 0x46383525, 0x85747207, 0x746c271f, 0x64616873, 0x05840565,
0x6b640722, 0x75250785, 0x3532696e, 0x05734539, 0xa3463520, 0x4c352006, 0x35200616, 0x2006a346, 0x06a34635, 0x73483520, 0x46352006, 0x352006a3,
0x20067b48, 0x067b4835, 0x7b483520, 0x48352006, 0x352c067b, 0x66094639, 0x656c6c69, 0x786f6264, 0x6548fd85, 0x4c352006, 0x35200600, 0x20066548,
0x05c95535, 0x48353221, 0x35290665, 0x48063941, 0x34353831, 0x22068433, 0x850a3135, 0x65722247, 0x054e4963, 0x66483520, 0x43352806, 0x69630639,
0x4a6c6372, 0x352005cc, 0x20062c4b, 0x067d4635, 0x45433522, 0x78594084, 0x35322105, 0x20067c46, 0x05f85435, 0x23440f82, 0x067c4606, 0x465c3520,
0x41178205, 0x44200684, 0x27062244, 0x69093744, 0x7562766e, 0x7f86cb82, 0x27062646, 0x0a354535, 0x6e65706f, 0x36201a8a, 0x2206f948, 0x84313036,
0x303621f3, 0x36216485, 0x050f4630, 0x0f463620, 0x46362006, 0x3621060f, 0x20648530, 0x060f4636, 0x0f463620, 0x46362006, 0x3620060f, 0x21060f46,
0x11483036, 0x30362105, 0x2105e146, 0xeb413036, 0x30362105, 0x21050644, 0xe9423036, 0x31362205, 0x46778530, 0x3620060d, 0x21060d46, 0x7f863136,
0x21064c4b, 0xe4853136, 0x0c463620, 0x31362106, 0x2205e146, 0x86383136, 0x056b423f, 0x45313621, 0x36200507, 0x2006b949, 0x064c4b36, 0x4c4b3620,
0x31362106, 0x31267f86, 0x6b730546, 0xce536c75, 0x46362005, 0x36200608, 0x21060846, 0x7d863236, 0x2006444b, 0x06074636, 0x07463620, 0x46362006,
0x36200607, 0x20060746, 0x06074636, 0x7b5b3620, 0x36322105, 0x2006e550, 0x063f4b36, 0x86323621, 0x060646fd, 0x06463620, 0x46362006, 0x36200606,
0x20060646, 0x06fb5036, 0x02423620, 0x54362006, 0x362106a0, 0x50fd8633, 0x362006fd, 0x20060546, 0x06054636, 0x39333630, 0x696d7309, 0x6166656c,
0x690c6563, 0x0c88766e, 0x75730322, 0x2005314e, 0x06105136, 0x07463620, 0x33362706, 0x65660646, 0x8b42616d, 0x34362306, 0x0c8a0431, 0x0346fe86,
0x46362006, 0x36200603, 0x20060346, 0x06034636, 0x03463620, 0x46362006, 0x36200603, 0x20060346, 0x06034636, 0x03463620, 0x46362006, 0x36200603,
0x21060346, 0xfc413436, 0x06b55406, 0x9a5b3620, 0x36322105, 0x2106b554, 0x7f863536, 0x2006b554, 0x059a5b36, 0x7c421f82, 0x059a5b06, 0xfc410f82,
0x05a25b06, 0xfc410f82, 0x05aa5b06, 0x7c420f82, 0x05b25b06, 0xfc410f82, 0x46352606, 0x61707305, 0x05864364, 0xaa513620, 0x36362706, 0x6c630432,
0x4f426275, 0x34362c05, 0x61656805, 0x64077472, 0x566d6169, 0x36210730, 0x06754236, 0x2606a551, 0x0b393636, 0x4e73756d, 0x65210615, 0x560b8a0e,
0x36200729, 0x2006b051, 0x06ea4536, 0xea453620, 0x45362006, 0x362006ea, 0x2006ea45, 0x06ea4536, 0xea453620, 0x55362006, 0x37200641, 0x21058e5c,
0xd3863732, 0xdc633720, 0x420f8205, 0x37230552, 0x84064535, 0x05b743a8, 0x314a3720, 0x4a372006, 0x37200631, 0x2006314a, 0x05c55837, 0x44373221,
0x3720060a, 0x8205c558, 0x0552410f, 0xc5583720, 0x410f8205, 0x37200552, 0x8205c558, 0x0552410f, 0xc5583720, 0x37322105, 0x8205db5f, 0x07312407,
0x82696e75, 0x58778607, 0x0f8205b5, 0x6c09342f, 0x61746665, 0x776f7272, 0x6769720a, 0x200a8568, 0x8914830e, 0x863b860e, 0x4346206b, 0x372005bb,
0x8205c958, 0x053b4443, 0xc9583720, 0x860f8205, 0x06c958ea, 0x42463721, 0x3820053e, 0x2006bb44, 0x06bb4438, 0xbb443820, 0x44382006, 0x382006bb,
0x2006bb44, 0x06bb4438, 0x85303821, 0x443820eb, 0x382006bb, 0x2006bb44, 0x06bb4438, 0xbb443820, 0x44382006, 0x382006bb, 0x2006bb44, 0x06bb4438,
0xbb443820, 0x30382106, 0xbb447f86, 0x44382006, 0x382006bb, 0x2006bb44, 0x06bb4438, 0xbb443820, 0x44382006, 0x382006bb, 0x2006bb44, 0x06bb4438,
0xbb443820, 0x31382106, 0x3820ff85, 0x2006bb44, 0x06bb4438, 0xbb443820, 0x44382006, 0x382006bb, 0x2006bb44, 0x06c64a38, 0xc64a3820, 0x44382006,
0x382006bd, 0x2006bd44, 0x06bd4438, 0xbd443820, 0x44382006, 0x382006bd, 0x2006bd44, 0x06bd4438, 0xbd443820, 0x44382006, 0x382006bd, 0x2006bd44,
0x06bd4438, 0xbd443820, 0x44382006, 0x382006bd, 0x2006bd44, 0x06bd4438, 0xbd443820, 0x33382106, 0x20050b42, 0x06bd4438, 0xbd443820, 0x44382006,
0x382106bd, 0x05bd4433, 0xbd443820, 0x44382006, 0x382006bd, 0x2006bd44, 0x06c34a38, 0xc34a3820, 0x60382006, 0x32210539, 0x05396038, 0xff410782,
0x44382005, 0x382106ba, 0x057f4133, 0x6b554320, 0x43432006, 0x432006c0, 0x2105795f, 0x6b554332, 0x55432006, 0x4320066b, 0x8205795f, 0x05ff4117,
0xc5434320, 0x43432006, 0x432106c5, 0x057f4136, 0x42364321, 0x432005eb, 0x8205795f, 0x053e442f, 0xba434320, 0x43432006, 0x432006ba, 0x2006aa43,
0x06aa4343, 0x95494320, 0x49432006, 0x43200695, 0x21069549, 0x6f863743, 0x20069549, 0x06954943, 0x5b554320, 0x49432006, 0x43200695, 0x20069549,
0x06954943, 0x95494320, 0x42442006, 0x442006df, 0x2006df42, 0x06df4244, 0xdf424420, 0x42442006, 0x442006df, 0x2006df42, 0x06df4244, 0xdf424420,
0x06276c06, 0x276c3220, 0x85078206, 0x424420df, 0x442006df, 0x6c06df42, 0x1f820627, 0x20051e45, 0x06df4244, 0xdf424420, 0x42442006, 0x442006df,
0x2006df42, 0x06df4244, 0xdf424420, 0x42442006, 0x442006df, 0x6c06df42, 0x32200627, 0x8206276c, 0x055f4107, 0xdf424420, 0x42442006, 0x442006df,
0x2006df42, 0x06df4244, 0x8206276c, 0x05df412f, 0xdf424420, 0x42442006, 0x442006df, 0x2006df42, 0x06df4244, 0xdf424420, 0x42442006, 0x442006df,
0x20068f42, 0x068f4244, 0x8f424420, 0x42442006, 0x4420068f, 0x20068f42, 0x068f4244, 0x8f424420, 0x42442006, 0x4420068f, 0x20068f42, 0x068f4244,
0x8f424420, 0x42442006, 0x4420068f, 0x20068f42, 0x064a4744, 0x8f424420, 0x42442006, 0x4420068f, 0x2006524d, 0x06524d44, 0x524d4420, 0x4d442006,
0x44200652, 0x20064e47, 0x064e4744, 0x4e474420, 0x47442006, 0x4420064e, 0x20064e47, 0x064e4744, 0x4e474420, 0x47442006, 0x4420064e, 0x20064e47,
0x064e4744, 0x4e474420, 0x34442106, 0x47062f41, 0x4420064e, 0x20064e47, 0x064e4744, 0x4e474420, 0x47442006, 0x4420064e, 0x20064e47, 0x065a4644,
0x4e474420, 0x6f442006, 0x3221056f, 0x064e4744, 0x42354421, 0x7a46062f, 0x46442006, 0x4420067a, 0x20064e47, 0x05576a44, 0x7f862f82, 0x20068f43,
0x068f4344, 0x8f434420, 0x43442006, 0x4420068f, 0x20068f43, 0x068f4344, 0x02474420, 0x30332105, 0x8205d742, 0x07432407, 0x82696e75, 0x86442007,
0x86452007, 0x215f8407, 0xdf413033, 0x44342105, 0x82051552, 0x83312007, 0x2007821f, 0x20078632, 0x20078633, 0x20078634, 0x20078635, 0x20078636,
0x20078637, 0x20078638, 0x84078639, 0x204782e7, 0x840f8642, 0x840f8287, 0x84078287, 0x84078287, 0x44342187, 0x8205984b, 0x85312007, 0x0515522f,
0x7f860f82, 0x8205984b, 0x4b7f860f, 0x0f820598, 0xa1607f86, 0x860f8205, 0x05a1607f, 0x7f860f82, 0x8205df67, 0x207f860f, 0x207f8644, 0x477f8644,
0x342105e3, 0x05e34744, 0xff860782, 0x8205e347, 0x47ff860f, 0x0f8205e3, 0xe347ff86, 0x860f8205, 0x05e347ff, 0xff860f82, 0x8205e347, 0x60ff860f,
0x0f8205a9, 0xa9607f86, 0x44342105, 0x82050348, 0x85312007, 0x05b960ff, 0xff860f82, 0x7f864620, 0xff864620, 0x8205c160, 0x60ff861f, 0x0f8205c1,
0x4620ff86, 0x46207f86, 0x4620ff86, 0x46207f86, 0x4620ff86, 0xf7477f86, 0x37412105, 0x82051744, 0x0b312b07, 0x45696e75, 0x2e303030, 0x0b873030,
0x0b8a3120, 0x0b833220, 0x2382a383, 0x2b863320, 0x1f8a3420, 0x1f8a3520, 0x27863620, 0x2f82a384, 0x2f863820, 0x238a3920, 0x13864120, 0x438a4220,
0x0b8a4320, 0x2b8a4420, 0x4782b384, 0x57854620, 0x85303121, 0x8a31203b, 0x8431209f, 0x2017869f, 0x453b8933, 0x45210557, 0x05574530, 0x9b860782,
0x82053748, 0x8638200f, 0x86392053, 0x86412007, 0x86422007, 0x86432007, 0x86442007, 0x488b8607, 0x45210537, 0x053f4130, 0x31200782, 0x57451f85,
0x200f8205, 0x200f8633, 0x20078634, 0x86078635, 0x0537487f, 0x7f862782, 0x82053748, 0x487f860f, 0x0f820537, 0x37487f86, 0x860f8205, 0x0537487f,
0xc7434520, 0x86078206, 0x05a7457f, 0x7f860f82, 0x21054745, 0x47453045, 0x20078205, 0x45878532, 0x0f820547, 0x47459f86, 0x860f8205, 0x0547459f,
0x9f860f82, 0x82054745, 0x459f860f, 0x0f820547, 0x47459f86, 0x860f8205, 0x0547459f, 0x4c614520, 0x86078206, 0x0547459f, 0x9f860f82, 0x82054745,
0x061f410f, 0x82054745, 0x063b420f, 0x82054745, 0x4577860f, 0x0f820537, 0xeb414420, 0x42362005, 0x36200a97, 0x20069742, 0x0a974236, 0x97423620,
0x3636210a, 0x37203386, 0x20091f42, 0x069b4236, 0x42393621, 0x3621097b, 0x200b8a41, 0x212b8942, 0x3b413039, 0x86392005, 0x052d67cb, 0x39304522,
0x4d51cb86, 0x860f8205, 0x054d51cb, 0xcb860f82, 0x82054d51, 0x066b420f, 0x82054d51, 0x066b420f, 0x82054d51, 0x066b420f, 0x82054d51, 0x06f7420f,
0x21052b45, 0xc4503045, 0x41078205, 0x442006cb, 0x2b457f86, 0x86178205, 0x052b457f, 0x7f860f82, 0x82052b45, 0x457f860f, 0x0f82052b, 0x2b457f86,
0x860f8205, 0x052b457f, 0x7f860f82, 0x21052b45, 0x4b493145, 0x24078205, 0x6e750731, 0x85078269, 0x49312087, 0x0f82054b, 0x20055342, 0x054b4931,
0x53420f82, 0x49312005, 0x0f82054b, 0x20055342, 0x052b4c31, 0xdb410f82, 0x49312005, 0x0f82054b, 0x20055342, 0x052b4c31, 0x53420f82, 0x49312005,
0x4523054b, 0x85303131, 0x86312077, 0x8631207f, 0x4131207f, 0x31200507, 0x2006f343, 0x06f34331, 0x86313121, 0x06f3437f, 0x86313121, 0x3931287f,
0x6f726406, 0x85316c6f, 0x0a322b06, 0x74636572, 0x6c676e61, 0x0a893165, 0x74073239, 0x68746f6f, 0x6d0f3179, 0x6973756f, 0x6962676e, 0x61666472,
0x860b6563, 0x706f290f, 0x62056e65, 0x31657469, 0x32210584, 0x24178611, 0x6c696d73, 0x8c048465, 0x72662511, 0x0c6e776f, 0x66202386, 0x73206d82,
0x44275887, 0x70736564, 0x86726961, 0x87322070, 0x6a442360, 0x1386796f, 0x62843320, 0x0d863320, 0x73173428, 0x6c6c6168, 0x4d86776f, 0x0f20be88,
0x6f24178d, 0x74657009, 0x74222382, 0x09883168, 0x09883220, 0x6c0c3332, 0x77746665, 0x6b736968, 0x0d737265, 0x68676972, 0x06260d88, 0x61657773,
0x06853174, 0x04322308, 0x70616e73, 0x72757308, 0x73697270, 0x6f620465, 0x6509746c, 0x6f6c7078, 0x6e6f6973, 0x6f6f7005, 0x05843170, 0x05843220,
0x82103321, 0x797225dc, 0x696e696d, 0x0e209f86, 0x6f2a1088, 0x65636166, 0x6f6c6209, 0x09836b63, 0x616e0b26, 0x776f7272, 0x73291585, 0x74656469,
0x68746565, 0x393a830c, 0x666e6f63, 0x64657375, 0x73756d0c, 0x6f6f7268, 0x6165686d, 0x67650364, 0x03820867, 0x61726328, 0x79076b63, 0x02826b61,
0x07863120, 0x07863220, 0x07863320, 0x07863420, 0x07863520, 0x07863620, 0x07863720, 0x74033832, 0x63066165, 0x6566666f, 0x75670665, 0x72617469,
0x69055d42, 0x452c05c3, 0x07314431, 0x73617265, 0x06657275, 0x6e28f782, 0x70046563, 0x08706c75, 0x2108f382, 0x69737875, 0x656e0965, 0x75616275,
0x076e6574, 0x73697267, 0x04656c74, 0x61626261, 0x74616b08, 0xb3826265, 0x61770525, 0x84316576, 0x0a322505, 0x65746e65, 0x08053d41, 0x6f760727,
0x65676179, 0x6f740572, 0x08747361, 0x72656863, 0x73656972, 0x65636908, 0x61657263, 0x6c4b056d, 0x05676e6f, 0x2b05846b, 0x6c612e67, 0x2e480874,
0x69796c66, 0x62271482, 0x75632e72, 0x837a6205, 0x84662005, 0x8466200b, 0x846f200b, 0x846f200b, 0x8476200b, 0x8476200b, 0x8477200b, 0x8377200b,
0x6104210b, 0x04213482, 0x20048362, 0x20048363, 0x20048364, 0x20048365, 0x20048366, 0x20048367, 0x20048368, 0x20048369, 0x2004836a, 0x2004836b,
0x2004836c, 0x2004836d, 0x2004836e, 0x2004836f, 0x20048370, 0x84048371, 0x2204835f, 0x83730432, 0x8374200f, 0x83752004, 0x83762004, 0x83772004,
0x83782004, 0x83792004, 0x827a2004, 0x83052004, 0x04322204, 0x210a8241, 0x04834204, 0x04834320, 0x04834420, 0x04824520, 0x6e750725, 0x4d324569,
0x078205fb, 0x2405bf43, 0x04373732, 0x20308349, 0x2004834a, 0x2004834b, 0x2004834c, 0x2004834d, 0x2004834e, 0x2004834f, 0x20048350, 0x20048351,
0x20048352, 0x20048353, 0x20048354, 0x20048355, 0x20048356, 0x20048357, 0x20048358, 0x20048359, 0x2704825a, 0x722e4105, 0x61057665, 0x42200584,
0x62200584, 0x43200584, 0x63200584, 0x44200584, 0x64200584, 0x45200584, 0x65200584, 0x46200584, 0x66200584, 0x47200584, 0x67200584, 0x48200584,
0x68200584, 0x49200584, 0x69200584, 0x4a200584, 0x6a200584, 0x4b200584, 0x6b200584, 0x4c200584, 0x6c200584, 0x4d200584, 0x6d200584, 0x4e200584,
0x6e200584, 0x4f200584, 0x6f200584, 0x50200584, 0x70200584, 0x51200584, 0x71200584, 0x52200584, 0x72200584, 0x53200584, 0x73200584, 0x54200584,
0x74200584, 0x55200584, 0x75200584, 0x56200584, 0x76200584, 0x57200584, 0x77200584, 0x58200584, 0x78200584, 0x59200584, 0x79200584, 0x5a200584,
0x7a200584, 0x0c2d0583, 0x6b636162, 0x73616c73, 0x6e662e68, 0x24088808, 0x6f6c6f63, 0x2811826e, 0x7473610b, 0x73697265, 0x2b0b826b, 0x6575710f,
0x6f697473, 0x72616d6e, 0x112e0f83, 0x61727473, 0x74686769, 0x746f7571, 0x21827365, 0x656c0723, 0x24078373, 0x6572670a, 0x83378261, 0x69702312,
0x07836570, 0x696e7524, 0x01473245, 0x47322006, 0x32210601, 0x05f94544, 0x01473220, 0x47322006, 0x32200601, 0x8205435e, 0x0639422f, 0x8205435e,
0x05f9450f, 0x435e3220, 0x460f8205, 0x32200579, 0x8205435e, 0x0579460f, 0x435e3220, 0x200f8205, 0x05894245, 0x01474420, 0x47322005, 0x32200601,
0x21052d4c, 0x11543245, 0x46078205, 0x32200579, 0x82051154, 0x8535200f, 0x05435e37, 0x37200f82, 0x7f860f86, 0x82052d4c, 0x4c7f8617, 0x0f82052d,
0x2d4c7f86, 0x860f8205, 0x052d4c7f, 0x4c324521, 0x0782052d, 0x2005f946, 0x052d4c32, 0x7f860f82, 0x82052d4c, 0x207f860f, 0x6cff8646, 0x178205ef,
0x46207f86, 0x21050148, 0x7f864632, 0x82052d4c, 0x4c7f861f, 0x0f82052d, 0x2d4c7f86, 0x64452005, 0x07820632, 0x2005f947, 0x056d4e33, 0x7f850f82,
0x82063464, 0x207f850f, 0x05455133, 0xff850f82, 0x82063464, 0x207f850f, 0x05255433, 0x81480f82, 0x51332005, 0x0f820545, 0x20058148, 0x05255433,
0x46270f82, 0x6c636705, 0x4c076665, 0x078606a3, 0x07863120, 0xd7493220, 0x4b302005, 0xcf510af7, 0x30452305, 0x1b863530, 0xd3493620, 0x37302109,
0x38200b8a, 0x2109df49, 0x2b863930, 0x138a4120, 0x30209985, 0x30219986, 0x06774a30, 0x8a453021, 0x89462043, 0x3031210b, 0x9f483b89, 0x48302006,
0x3026069f, 0x43033331, 0x03823544, 0x43310782, 0x65730944, 0x696e6576, 0x0968636e, 0x68676965, 0x21098374, 0x11857407, 0x77740a26, 0x65766c65,
0x0d321283, 0x69647561, 0x7361636f, 0x74746573, 0x69760d65, 0x0d886564, 0x56440424, 0x04833544, 0x04332408, 0x79706f63, 0x76696c04, 0x6e750765,
0x776f6e6b, 0x736e0c6e, 0x67697370, 0x6966696e, 0x700a7265, 0x5a657069, 0x042705aa, 0x6661656c, 0x82617205, 0x740a2654, 0x76656c65, 0x05bd4769,
0x73756c25, 0x82700561, 0x06632205, 0x208e8372, 0x200c8472, 0x20058473, 0x05674177, 0xd5413820, 0x5c302005, 0x452105a1, 0x05857230, 0x55420782,
0x63302005, 0x0f820549, 0x21055542, 0x3b413830, 0x05b96406, 0xd5411782, 0x57342005, 0x452105a6, 0x05fb5334, 0xc5430782, 0x53342005, 0x0f8205fb,
0x20053f4a, 0x06ff4534, 0x42373421, 0x342005c5, 0x8205fb53, 0x216f851f, 0x45423734, 0x37342105, 0x34206f85, 0x8205fb53, 0x05c5421f, 0xfb533420,
0x420f8205, 0x342105c5, 0x05c54337, 0x69653420, 0x34452105, 0x8205915d, 0x207f8607, 0x05c54238, 0x486d3420, 0x85178205, 0x863420ef, 0x863420ef,
0x643420ef, 0x1f820539, 0x935d7f86, 0x850f8205, 0x863420ef, 0x063964ef, 0x4c344521, 0x34200637, 0x2006374c, 0x06374c34, 0x82062964, 0x20ef861f,
0x4c6f8639, 0x29640637, 0x861f8206, 0x863920ef, 0x06374c6f, 0x855d3420, 0x861f8205, 0x05855def, 0xef860f82, 0x27050166, 0x30413445, 0x696e7507,
0x31200782, 0xef860786, 0x82059c69, 0x5d7f8617, 0x0f82059b, 0x20066f41, 0x05b54341, 0x9b5d3420, 0x86178205, 0x0501667f, 0xef860f82, 0x82059769,
0x06df410f, 0x22058769, 0x86423445, 0x0587696f, 0x5f410f82, 0x05557306, 0xef860f82, 0x8205e964, 0x206f860f, 0x73678642, 0x17820555, 0x91496786,
0x64342006, 0x178205e1, 0x4220e786, 0x5206d741, 0x452005cb, 0x8206e164, 0x64e78607, 0x0f8205e1, 0xe164e786, 0x860f8205, 0x05e164e7, 0x67410f82,
0x05e16406, 0x57420f82, 0x05e16406, 0x67410f82, 0x05635e06, 0x86394521, 0x863920e7, 0x863920e7, 0x6e3920e7, 0x1f8205a4, 0x39216f85, 0x20e78542,
0x20e78639, 0x05d16539, 0x6f851f82, 0xef863920, 0xef863920, 0xd1653920, 0x851f8205, 0x8639206f, 0x653920ef, 0x178205d1, 0x3920ef85, 0x3920ef86,
0x2105d165, 0xd1653945, 0x41078205, 0x39200567, 0x8205806a, 0x6a7f860f, 0x0f820580, 0x20056741, 0x05806a39, 0x6f410f82, 0x6a392005, 0x0f820580,
0x20056f41, 0x05535f39, 0xd7410f82, 0x74392005, 0x0f82054d, 0x8d477f86, 0x47392006, 0x3920068d, 0x20068d47, 0x068d4739, 0x8d473920, 0x47392006,
0x3920068d, 0x20068f4e, 0x068d4739, 0x8f4e3920, 0x47392006, 0x3920068d, 0x20068f4e, 0x068d4739, 0x8f4e3920, 0x47392006, 0x3920068d, 0x20068f4e,
0x068d4739, 0x8d473920, 0x47392006, 0x3920068d, 0x20068d47, 0x05bb5339, 0x47394521, 0x3920068d, 0x8205bb53, 0x05ef410f, 0xbb533920, 0x410f8205,
0x8d47067f, 0x74392006, 0x17820565, 0x6574ff86, 0x860f8205, 0x056574ff, 0xff860f82, 0x28068d47, 0x07314639, 0x45696e75, 0x068d4739, 0x41463921,
0x8d47067f, 0x53392006, 0x1f8205bb, 0x46207f86, 0x20067f41, 0x477f8646, 0x3920068d, 0x20068d47, 0x068d4739, 0xbb533920, 0x86378205, 0x05bb537f,
0x7f850f82, 0x874f4120, 0x30412106, 0x41207f85, 0x20068d47, 0x06874f41, 0x03474120, 0x4f412006, 0x41200687, 0x20068d47, 0x06874f41, 0x85304121,
0x4f41207f, 0x41200687, 0x21068d47, 0xff853041, 0x42304121, 0x4120057f, 0x2006874f, 0x068d4741, 0x874f4120, 0x4f412006, 0x41200687, 0x2006e746,
0x06e74641, 0x874f4120, 0x4f412006, 0x41200687, 0x2006874f, 0x06874f41, 0x874f4120, 0x4f412006, 0x41210687, 0x057f4231, 0x43314121, 0x4121056f,
0x207f8631, 0x207f8631, 0x21ff8531, 0xef433141, 0x31412105, 0x7b53ff86, 0x58412006, 0x452105d3, 0x067b5341, 0xd3584120, 0x430f8205, 0x4120057f,
0x8205d358, 0x057f410f, 0x7b534120, 0x5b412006, 0x178205b3, 0xb35b7f86, 0x860f8205, 0x8632207f, 0x067b537f, 0xb35b4120, 0x861f8205, 0x3033287f,
0x696e7507, 0x41334145, 0x7b53067f, 0x33412106, 0x2005ff41, 0x05235941, 0x7f431f82, 0x59412005, 0x0f820523, 0x2005ff41, 0x05235941, 0x7f860f82,
0xff863320, 0x82052359, 0x597f8617, 0x0f820523, 0x2359ff86, 0x41452105, 0x2006db53, 0x06db5341, 0x23594120, 0x86178205, 0x0523597f, 0x7f860f82,
0x82052359, 0x597f860f, 0x0f820523, 0x23597f86, 0x860f8205, 0x052359ff, 0x7f410f82, 0x05235906, 0xff860f82, 0xff863520, 0x21052359, 0xdb534145,
0x59412006, 0x0f820523, 0x59067f41, 0x0f820523, 0x59067f41, 0x0f820523, 0x59067f42, 0x0f820523, 0x2359ff86, 0x860f8205, 0x863520ff, 0x0523597f,
0x7f861782, 0x21052359, 0x23594145, 0x45078205, 0x412105ef, 0x59ff8636, 0x17820523, 0x1f72ff86, 0x860f8205, 0x05b35cff, 0xff860f82, 0x8205b35c,
0x60ff860f, 0x0f82056e, 0xb35c7f86, 0x860f8205, 0x06c7487f, 0xc7484120, 0x5c412006, 0x452105c3, 0x06c74841, 0xc35c4120, 0x860f8205, 0x06c7487f,
0xc7484120, 0x48412006, 0x41200687, 0x21068748, 0xbf863841, 0x20068748, 0x06874841, 0x77494120, 0x48412006, 0x41200687, 0x20068748, 0x06874841,
0x77494120, 0x48412006, 0x41200687, 0x2006f747, 0x06f74741, 0xf96d4120, 0x41452105, 0x8205f96d, 0x061f4107, 0x82059365, 0x209f860f, 0x069f4141,
0x2006f747, 0x06f74741, 0x8f714120, 0x41278205, 0xf96d069f, 0x410f8205, 0x9265069f, 0x420f8205, 0x8f71069f, 0x41452105, 0x20061f47, 0x061f4741,
0x1f474120, 0x47412006, 0x4120061f, 0x20060748, 0x061f4741, 0x1f474120, 0x47412006, 0x4120061f, 0x8205f16c, 0x069f4147, 0x20061f47, 0x061f4741,
0x0f484120, 0x47412006, 0x4120061f, 0x20061f47, 0x060f4841, 0x1f474120, 0x47412006, 0x4120061f, 0x20061f47, 0x060f4841, 0x1f474120, 0x48412006,
0x4120060f, 0x20061f47, 0x060f4841, 0x1f474120, 0x48412006, 0x4120060f, 0x21051f47, 0xf7463446, 0x24078205, 0x6e750731, 0x20078269, 0x20078632,
0x20078633, 0x20078634, 0x20078635, 0x20078636, 0x20078637, 0x84078638, 0x203f82d7, 0x200f8641, 0x20078642, 0x20078643, 0x20078644, 0x20078645,
0x46078546, 0x462005f7, 0x8206c96c, 0x467f8607, 0x0f8205f7, 0xf7467f86, 0x860f8205, 0x05f7467f, 0x7f860f82, 0x8205f746, 0x4e7f860f, 0x0f820585,
0x854e7f86, 0x860f8205, 0x05854e7f, 0x46344621, 0x078205f7, 0x8f853120, 0x8205f746, 0x46ff860f, 0x0f8205f7, 0x854eff86, 0x860f8205, 0x05f746ff,
0xff860f82, 0x8205f746, 0x46ff860f, 0x0f8205f7, 0xf746ff86, 0x850f8205, 0x303522ff, 0x22778430, 0x86313035, 0x21ff8507, 0x7f853035, 0xf7463520,
0x35462205, 0x207f8530, 0x05f74635, 0x7f850f82, 0x85303521, 0x463520ff, 0x178205f7, 0x3520ff85, 0x8205f746, 0x20ff850f, 0x05f74635, 0xff850f82,
0xf7463520, 0x35462105, 0x8205f746, 0x467f8607, 0x0f8205f7, 0xf7467f86, 0x860f8205, 0x05f7467f, 0x7f860f82, 0x8205f746, 0x6dff850f, 0x0f820673,
0x3520ff85, 0x8205f746, 0x20ff850f, 0x05f74635, 0xff860f82, 0x2105f746, 0xf7463546, 0x86078205, 0x05f746ff, 0xff410f82, 0x46352005, 0x0f8205f7,
0x6d05ff41, 0x0f820671, 0x735aff86, 0x860f8205, 0x05735aff, 0xff860f82, 0x8205f746, 0x5aff860f, 0x46200573, 0x8206706d, 0x41312007, 0x0745057f,
0x35462105, 0x21050745, 0x37453546, 0x86078205, 0x32372abf, 0x696e750b, 0x33373546, 0x065b5c2e, 0xa3590b82, 0x200b8208, 0x20178a35, 0x073f4f36,
0x2f411782, 0x05eb6106, 0x2f410f82, 0x05674706, 0x6f417f82, 0x05ff4d06, 0x3f411f82, 0x05f74d06, 0x07411f82, 0x05a36006, 0x07410f82, 0x05a36006,
0x07410f82, 0x05a36006, 0x43203f82, 0x3420a785, 0x8208ff4f, 0x061b4123, 0x82059347, 0x060b4123, 0x82054b4e, 0x5f6386e3, 0x0f820587, 0x8f5f1f86,
0x35462105, 0x20063344, 0x05434c35, 0x4e354621, 0x0782050b, 0x3b413120, 0x41392005, 0x435a06bb, 0x86178205, 0x050b4e4f, 0xb3860f82, 0x0b413920,
0x05435a06, 0x0b411782, 0x050b4e06, 0xfb860f82, 0x82055761, 0x067b41b7, 0x82055761, 0x063b420f, 0x20053348, 0x06aa6e46, 0x7f860782, 0x82050f5c,
0x5c7f860f, 0xcf82050f, 0xe7637f86, 0x42678205, 0x6b4e061b, 0x860f8205, 0x057346ef, 0x46354621, 0x07820573, 0x0b47df86, 0x35462105, 0x82050b47,
0x06134307, 0x82050b47, 0x4e7f8627, 0x4622058b, 0x83414335, 0x41372006, 0xa7460a83, 0x862b8205, 0x3042213b, 0x2105a741, 0x2b423142, 0x055b4609,
0x46354621, 0x0782055b, 0x5b46c786, 0x41d78205, 0xc75c06eb, 0x410f8205, 0xc75c06d7, 0x862f8205, 0x057b46e7, 0xe7861f82, 0x8205d75c, 0x5ce7860f,
0x462105d7, 0x05fb4835, 0xe7860782, 0x8205fb48, 0x0693420f, 0x21055b48, 0x0f653546, 0x35462105, 0x8205e75c, 0x86c38707, 0x05fb4d8f, 0x41207f82,
0x6f5cd386, 0x86138208, 0x05df4683, 0x83860f82, 0x85464221, 0x5f43202b, 0x462208ab, 0x0b414335, 0x05e7460a, 0x8b861382, 0x8205af4e, 0x0613410f,
0x86354321, 0x0813533f, 0x37201b82, 0x20094b41, 0x060b4135, 0x8205a749, 0x5e0f86fb, 0xc3820513, 0xb749bb86, 0x35462105, 0x8205ff4f, 0x06734207,
0x8205eb62, 0x85422027, 0x53422067, 0xc3820813, 0x86072f41, 0x05db49db, 0xdb862b82, 0xa7423520, 0x058b4906, 0x36354622, 0x38204387, 0x20092344,
0x08ab5d42, 0x27424f82, 0x8742200a, 0x0847602b, 0x47601f82, 0x204b8208, 0x05734330, 0x82052f4a, 0x480f86f3, 0x1f82051f, 0x21068b42, 0xb7853336,
0xa3444320, 0x5e43200a, 0x37820847, 0x48060f41, 0x0f820527, 0x21060f41, 0x37863943, 0x82083f5e, 0x08df601b, 0x97840b82, 0x63072c08, 0x65627461,
0x6f116665, 0x7568656e, 0x6572646e, 0x72657064, 0x746e6563, 0x776f6e0c, 0x65726f6d, 0x73696f6d, 0x6e750c74, 0x82363069, 0x69662382, 0x0c85616e,
0x2e324126, 0x6964656d, 0x33210c86, 0x20198a2e, 0x24198b41, 0x6e692e41, 0x21408669, 0x0c8a3341, 0x84374221, 0x8414200c, 0x3434225a, 0x2007845f,
0x20488c37, 0x20558a35, 0x210c8b37, 0x488a4642, 0x8d454121, 0x82968955, 0x210c8926, 0x968b4341, 0x338a4320, 0xbd8a1982, 0x748a3120, 0x8b324221,
0x8a302026, 0x30412119, 0x4321198a, 0x89198d46, 0x45432174, 0x4221748a, 0x82338a36, 0x2174890c, 0x268b3542, 0x268b3520, 0x3920f68b, 0x6789f68e,
0x408b4120, 0x8a453621, 0x3837218e, 0x0c824d8a, 0x43203389, 0x0c82dc8b, 0x39218e89, 0x21408a36, 0x0c8b3739, 0x0c8b3920, 0x0c8d4120, 0x2009e841,
0x82748b42, 0x2074890c, 0x0b104139, 0x33890c82, 0x41443921, 0x0c820a03, 0x42211989, 0x21198a34, 0x0c8a3841, 0x8a444221, 0x89198281, 0x8e432033,
0x20dc8919, 0x0b1d4143, 0x33890c82, 0x8a463921, 0x8b38205a, 0x8b3820e9, 0x423821e9, 0x3920748a, 0x420c9f41, 0x39210bbd, 0x20268b32, 0x420c8b34,
0x38200b48, 0x200b3b42, 0x0b2d4346, 0x8a424621, 0x890c828e, 0x890c82a8, 0x424220cf, 0x42200bd7, 0x0c82748b, 0x410c2142, 0x0c8a0c51, 0x820b0b43,
0x205a894d, 0x0bfa4141, 0x8a394221, 0x8a0c828e, 0x0b2a4140, 0xcf8b4220, 0x8a384221, 0x313821f6, 0x5a8c408b, 0x198a3620, 0x8e8b4620, 0x8e890c82,
0xfe424620, 0x890c820b, 0x8a0c82dc, 0x0b104126, 0x4c433820, 0x890c820b, 0x44382026, 0x0c820bc0, 0x0c82cf89, 0x46202689, 0x820bcd44, 0x2019890c,
0x21198b39, 0x66434239, 0x890c820a, 0x8b39209b, 0x890c82cf, 0x42422019, 0x41200b14, 0x20059642, 0x0e0e450f, 0x45055f45, 0x37200c16, 0x200b3a41,
0x0bb34236, 0xc5890c82, 0xad450c82, 0x2019890c, 0x0bcd4243, 0x31424120, 0x4444200b, 0x41200bfc, 0x200baf41, 0x0bf44241, 0x4d890c82, 0xd2890c82,
0x19893382, 0xe7424220, 0x8c0c820b, 0x20338919, 0x0bbb4438, 0x7a443720, 0x4337210b, 0x820a3e42, 0x8240890c, 0x2040890c, 0x0b654237, 0xf8433720,
0x8a0c820b, 0x0b604433, 0xe98b3820, 0xa4460c82, 0x415a8a0c, 0x9541051d, 0x4632200e, 0x24940eb4, 0x248e3120, 0x3920708b, 0x29052443, 0x696e7509,
0x46423730, 0x09867073, 0x09884520, 0x09884420, 0x09884320, 0x09884220, 0x09884120, 0x09883920, 0x09883820, 0x09883720, 0x09883620, 0x70733523,
0x2a6d820e, 0x34423345, 0x7269765f, 0x86616d61, 0x8636200e, 0x7511260e, 0x35394230, 0x2105825f, 0x05834443, 0x86374221, 0x8d302020, 0x8d37202f,
0x8d38200e, 0x8d39200e, 0x8d42200e, 0x8d43200e, 0x8d44200e, 0x8645200e, 0x8409200e, 0x364423a7, 0x0986695f, 0x09883520, 0x695f3422, 0x35209586,
0x32202c8d, 0x31202288, 0x30200988, 0x43202c87, 0x4320b38d, 0x4a85f287, 0x4a874320, 0x1f410e86, 0x3343210d, 0x3320688d, 0x32205488, 0x4321bd8c,
0x410e8d31, 0x45870e35, 0x42206385, 0x42203b8d, 0x42213b8d, 0x2a4a8646, 0x696e750a, 0x37333445, 0x4175755f, 0x37200609, 0x3820dc88, 0x39200988,
0x41200988, 0x42200988, 0x43200988, 0x44200988, 0x45200988, 0x46200988, 0x45210987, 0x41098830, 0x45200840, 0x21085441, 0x1d883345, 0x09883420,
0x20089541, 0x08a94145, 0x5f374523, 0x24b48469, 0x5f304633, 0x200a8769, 0x200a8931, 0x200a8932, 0x200a8933, 0x200a8934, 0x200a8935, 0x200a8936,
0x820a8937, 0x825787f7, 0x200a87f8, 0x82208941, 0x201587fa, 0x20158943, 0x820a8944, 0x202087fd, 0x21158746, 0xaf883034, 0x88303421, 0x303421af,
0x3421af88, 0x21af8830, 0xaf883034, 0x88303421, 0x303421af, 0x3422af88, 0x57823730, 0x6e750928, 0x31344569, 0xbb415f30, 0x31342205, 0x20098831,
0x20098832, 0x20098833, 0x20098834, 0x20098835, 0x20098836, 0x20098837, 0x20098838, 0x20098839, 0x20098841, 0x20098842, 0x20098843, 0x20098844,
0x20098845, 0x24098746, 0x755f3032, 0x23a98207, 0x42433646, 0x3220b185, 0x3220a788, 0x3220a788, 0x3220a788, 0x3220a788, 0x3220a788, 0x3224a788,
0x0a755f37, 0x3323f784, 0x87755f30, 0x8931200a, 0x8232200a, 0x7303220a, 0x057f4172, 0x33333422, 0x34201989, 0x35200a89, 0x36200a89, 0x0e200a82,
0x35285084, 0x6f6e5f33, 0x63726963, 0x32200e86, 0x31200e8d, 0x30200e8d, 0x8c850e86, 0x88373421, 0x83342051, 0x89158651, 0x89342067, 0x8934207d,
0x83342093, 0x892b86ad, 0x8a3420c3, 0x884620d9, 0x45332157, 0x44200a89, 0x43200a89, 0x42200a89, 0x41200a89, 0x39200a89, 0x38200a89, 0x3322eb87,
0x00444142, 0x75072506, 0x3746696e, 0x21065954, 0x114e3037, 0x54372005, 0x37200659, 0x20065954, 0x06595437, 0x59543720, 0x30372106, 0x20059d51,
0x06595437, 0x59543720, 0x30372106, 0x20056550, 0x06595437, 0x4e303721, 0x372105f5, 0x05294f30, 0x515b3720, 0x37462105, 0x21065154, 0x1d4f3137,
0x31372105, 0x31207786, 0x2005c14f, 0x06515437, 0x50313721, 0x3720053d, 0x21065154, 0x77863137, 0x20065154, 0x05495b37, 0x77864f82, 0x23064954,
0x0c443137, 0x3426d784, 0x616e5f30, 0x0c857272, 0x8a463721, 0x4333210c, 0x35210c8a, 0x200c8a44, 0x21338b36, 0x198b3136, 0x0c8a3220, 0x198b3320,
0x338b3320, 0x4d8b3320, 0x338c3320, 0x408b3320, 0x0c8b3420, 0x0c8b3520, 0x0c8b3620, 0x0c8b3720, 0x0c8b3820, 0x0c8b3920, 0x0c8b4120, 0x0c8b4220,
0x0c8b4520, 0x200b0341, 0x20c28b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34, 0x20a88b34,
0x20a88b34, 0x0b924134, 0x44413420, 0x8b34200b, 0x8b3420c2, 0x413520c2, 0x35200b78, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b,
0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3520cf8b, 0x3620cf8b, 0x3620818b, 0x3620818b, 0x3620818b, 0x3620818b, 0x3620818b,
0x3620818b, 0x3620818b, 0x3620818b, 0x3620818b, 0xe442818c, 0x0b51410c, 0x51413620, 0x4337200b, 0x51410c32, 0x4137200b, 0x37200b51, 0x3720cf8b,
0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3720cf8b, 0x3520cf8b, 0xdc850c8c,
0x2e410426, 0x42046673, 0x43200483, 0x44200483, 0x45200483, 0x46200483, 0x47200483, 0x48200483, 0x49200483, 0x4a200483, 0x4b200483, 0x4c200483,
0x4d200483, 0x4e200483, 0x4f200483, 0x50200483, 0x51200483, 0x52200483, 0x53200483, 0x54200483, 0x55200483, 0x56200483, 0x57200483, 0x58200483,
0x59200483, 0x5a200483, 0x0d2a0482, 0x61696441, 0x73657265, 0x0d837369, 0x0d8c4f20, 0x0d8b5520, 0x63430b28, 0x6c696465, 0x2783616c, 0x66656c22,
0x2307306a, 0x720e6673, 0x820a3f6a, 0x212183cf, 0x26826204, 0x83630421, 0x83642004, 0x83652004, 0x83662004, 0x83672004, 0x83682004, 0x83692004,
0x836a2004, 0x836b2004, 0x836c2004, 0x836d2004, 0x836e2004, 0x836f2004, 0x83702004, 0x83712004, 0x83722004, 0x83732004, 0x83742004, 0x83752004,
0x83762004, 0x83772004, 0x83782004, 0x83792004, 0x827a2004, 0x610d2104, 0x6f20c68c, 0x75200d8c, 0x6320d48c, 0x446bd489, 0x6673230a, 0x6b837305,
0x61410926, 0x65747563, 0x09215282, 0x20098861, 0x20098845, 0x20098865, 0x20098849, 0x20098869, 0x2009884f, 0x2009886f, 0x20098855, 0x25098775,
0x69724108, 0x6282676e, 0x87610821, 0x45412408, 0x84484353, 0x73652311, 0x08826863, 0x744e0925, 0x84646c69, 0x876e2087, 0x41042c09, 0x0a6b662e,
0x6c6d7541, 0x82747561, 0x4204210a, 0x43200483, 0x44200483, 0x45200483, 0x46200483, 0x47200483, 0x48200483, 0x49200483, 0x4a200483, 0x4b200483,
0x4c200483, 0x4d200483, 0x4e200483, 0x4f200483, 0x0a210482, 0x2050894f, 0x210f8250, 0x04835104, 0x04835220, 0x04835320, 0x04835420, 0x04825520,
0x89550a21, 0x82562028, 0x5704210f, 0x58200483, 0x59200483, 0x5a200483, 0x09260482, 0x69726570, 0x0982646f, 0x6f630825, 0x82616d6d, 0x180d2008,
0x8209a2a8, 0x8304200d, 0x610a2112, 0x62204989, 0x63201483, 0x35830483, 0x83650421, 0x83662009, 0x83672004, 0x83682004, 0x83692004, 0x836a2004,
0x836b2004, 0x836c2004, 0x836d2004, 0x836e2004, 0x826f2004, 0x6f0a2104, 0x70205089, 0x04210f82, 0x20048371, 0x25048272, 0x6e6f6c08, 0x08827367,
0x83740421, 0x82752004, 0x750a2104, 0x76202c89, 0x04210f82, 0x20048377, 0x20048378, 0x20048379, 0x2504827a, 0x6f687309, 0x37837472, 0x83730521,
0x68092505, 0x65687079, 0x07276f83, 0x46696e75, 0x86303038, 0x86312007, 0x05384807, 0x8206b67f, 0x05f2571f, 0xb0483820, 0x48382006, 0x382006b0,
0x2006b048, 0x06b04838, 0xb0483820, 0x48382006, 0xb67f06b0, 0x483f8206, 0xb67f05b0, 0x570f8206, 0x382105a6, 0x05a65730, 0xb8483820, 0x48382006,
0xb67f06b8, 0x38462106, 0x2006b848, 0x06b84838, 0xb8483820, 0x48382006, 0x382006b8, 0x2006b848, 0x06b84838, 0xb8483820, 0x06b67f06, 0xce5a3f82,
0x06b67f05, 0x30490f82, 0x5d382005, 0x3821060a, 0x207f8631, 0x5dff8632, 0xb67f060a, 0x7f462006, 0x078206b6, 0x0a5dff86, 0x7f382006, 0x178205b6,
0x20053849, 0x05026438, 0x4e5b0f82, 0x64382005, 0x0f820502, 0x02647f86, 0x2d0f8205, 0x72740844, 0x726f6669, 0x63096563, 0x4718696f, 0x462009b7,
0x8206b97f, 0x06824107, 0x7f069d5c, 0x178206b9, 0x855c8286, 0x64382006, 0x17820505, 0x05648286, 0x860f8205, 0x05056482, 0x82860f82, 0x2006d15b,
0x05056438, 0x82411782, 0x41332006, 0xd15b0602, 0x34382106, 0x05647f86, 0x38462105, 0x2106d15b, 0x7f863438, 0x2106d15b, 0xbd583438, 0x59382005,
0x382006cd, 0x82050564, 0x647f862f, 0x0f820505, 0x34207f86, 0x5b060242, 0x38210609, 0x5b7f8634, 0x38200609, 0x2006095b, 0x05056438, 0x5b384621,
0x38200609, 0x82050564, 0x647f860f, 0x0f820505, 0x35207f86, 0xe177ff86, 0x86178205, 0x063d5a7f, 0x05643820, 0x86178205, 0x06295a7f, 0x05643820,
0x86178205, 0x423620ff, 0xd5590602, 0x7d382006, 0x46220529, 0x3b4b3638, 0x64382005, 0x0f820505, 0x20053b4b, 0x05056438, 0x7f860f82, 0x2006a95b,
0x06a95b38, 0x795a3820, 0x36382106, 0x3620ff86, 0x36207f86, 0x64068242, 0x3f820505, 0x37207f86, 0xfd5e7f86, 0x64382006, 0x46210505, 0x06f95c38,
0xf95c3820, 0x6c382006, 0x178205cd, 0x3720ff86, 0xdd5e7f86, 0x6c382006, 0x1f8205cd, 0x2005bb4b, 0x05cd6c38, 0x7f860f82, 0x2106d55e, 0x7f413738,
0x06815e06, 0x86383821, 0x0545647f, 0x64384621, 0x07820545, 0x4564ff86, 0x5a0f8205, 0x382005a5, 0x82052d64, 0x2067860f, 0x6ce78638, 0x178205b5,
0x3820e786, 0x382c6786, 0x6e750a46, 0x45384669, 0x6f675f30, 0x31200a86, 0x32200a89, 0x33200a89, 0x34200a89, 0x35200a89, 0x36200a89, 0x37200a89,
0x38200a89, 0x39200a89, 0x41200a89, 0x42200a89, 0x43200a89, 0x44200a89, 0x45200a89, 0x46200a89, 0x46200a88, 0x4620af89, 0x4620af89, 0x4620af89,
0x4620af89, 0x4620af89, 0x4620af89, 0x4620af89, 0x4620af89, 0x4620af89, 0x4621af89, 0x24788241, 0x665f6603, 0x21038205, 0x0584695f, 0x6c076c29,
0x73676e6f, 0x8203745f, 0x75072503, 0x4246696e, 0x20061745, 0x06174542, 0x17454220, 0x45422006, 0x42220617, 0x7d563731, 0x0bba5406, 0x08563720,
0x550c820b, 0x0c820938, 0x64656d24, 0x5b820b69, 0x56373021, 0x0b8705cd, 0x0b872483, 0x20095c55, 0x0c075938, 0x820b505b, 0x20268919, 0x0bae5637,
0x718a0c82, 0x200b8157, 0x0b785837, 0x268a0c82, 0x200b2357, 0x0bac5837, 0x268a0c82, 0x200be058, 0x0c9b5741, 0xdc573420, 0x8919820a, 0x5641209b,
0x0c820bae, 0x0c824d89, 0x38202689, 0x0c824d8b, 0x0c822689, 0x3f5a268a, 0x5d38200b, 0x0c820b2c, 0x748b268a, 0x545c3820, 0x8a0c820b, 0x0b275826,
0x6d5d3820, 0x05d04105, 0x268a0c82, 0x200b3057, 0x0b715738, 0x295b3820, 0x5738200b, 0x39200b64, 0x34580c8c, 0x0b5e410c, 0x41394121, 0x5e410b37,
0x0c9e5b0c, 0x268b4420, 0x200ba557, 0x0b104142, 0x37410c82, 0x890c8209, 0x5d4220c2, 0x31200cb3, 0x19824d8a, 0x4842268a, 0x4242200b, 0x0c820bc7,
0x775b5a8a, 0x4243200b, 0x43200ba3, 0x0c82678b, 0x2a41338a, 0x5c42200b, 0x44200be3, 0x5e0c5f59, 0x355e0cde, 0x0cda5d0c, 0x200bb042, 0x0bc64143,
0xfa414320, 0x4143200b, 0x43200b85, 0x4320cf8b, 0x200b955c, 0x0b924143, 0xcf8b4420, 0x9f413420, 0x290c820b, 0x6964656d, 0x696e7507, 0xa9634446,
0x47442006, 0x442006d7, 0x20065567, 0x060d6744, 0x95614520, 0x47452006, 0x45200637, 0x2006f746, 0x06ef4645, 0xef464520, 0x46452006, 0x452006ef,
0x20069164, 0x06ef4645, 0xdf464520, 0x46452006, 0x452206df, 0x99424236, 0x41322005, 0x32200b2d, 0x200b2d41, 0x0b424332, 0xdf8b3220, 0x13413220,
0x410c820b, 0x0c820995, 0x2009fd41, 0x0b474132, 0x3a413220, 0x8a0c820b, 0x0b5f5e33, 0x3a413220, 0x4232200b, 0x0c820b3e, 0x8744338a, 0x4132200b,
0x0c820b88, 0x5842268a, 0x4332200b, 0x0c820b69, 0xbf5c268a, 0x4332200b, 0x0c820b28, 0x2843268a, 0x4232200b, 0x0c820b7f, 0x8c42268a, 0x4232200b,
0x33200b72, 0x200b0a42, 0x0bda4233, 0x85413320, 0x4133200b, 0x0c820b85, 0x0c825a89, 0x20095e41, 0x0b9f4133, 0x268a0c82, 0x200bbe5f, 0x0bb94133,
0x268a0c82, 0x200b065c, 0x0bd34133, 0x268a0c82, 0x200b2b5e, 0x0bd34133, 0x268a0c82, 0x525e3720, 0x4133200a, 0x0c820bed, 0xed41268a, 0x4133200b,
0x0c820bed, 0xbb44268a, 0x4233200b, 0x0c820b07, 0x0742268a, 0x4134200b, 0x0c820b51, 0x0c822689, 0x20093741, 0x0b6b4134, 0x268a0c82, 0x200ba05e,
0x0b854134, 0x268a0c82, 0xe98a3320, 0x85413420, 0x8a0c820b, 0x0b854126, 0x85413420, 0x8a0c820b, 0x0b854126, 0x85413420, 0x8a0c820b, 0x0b854126,
0x85413420, 0x8a0c820b, 0x0b854126, 0x85413420, 0x4134200b, 0x34200b6b, 0x820b5141, 0x41408a0c, 0x7f5d0551, 0x5d32200d, 0x34440e7f, 0x20248e06,
0x0d7f5d33, 0x8e064c44, 0x8e352024, 0x05174124, 0x3720248e, 0xee85248e, 0x6e750725, 0x4e464669, 0x46200673, 0x2006734e, 0x062c5746, 0x5b494620,
0x49462006, 0x4620065b, 0x20065b49, 0x065b4946, 0x734e4620, 0x4e462006, 0x46200673, 0x2006734e, 0x063b4e46, 0x3e724620, 0x46462105, 0x2106466b,
0xb84c3246, 0x4e462005, 0x4620063b, 0x20063b4e, 0x053e7246, 0x504b2782, 0x6b462005, 0x46200646, 0x20063b4e, 0x06466b46, 0x3b4e4620, 0x6b462006,
0x46200646, 0x82053e72, 0x05384c37, 0x4b334621, 0x462005b8, 0x21053e72, 0x384e4646, 0x72462006, 0x0f82053e, 0x384e7f86, 0x4e462006, 0x46200638,
0x2006be6a, 0x06384e46, 0xbe6a4620, 0x4e462006, 0x46200638, 0x2006204d, 0x06384646, 0x4446462e, 0x7572740a, 0x646d6565, 0x00687361, 0x032c0082,
0x02000800, 0x00001000, 0x0300ffff, 0x00240982, 0x0a000a0b, 0x02931782, 0x83080b21, 0x3c18251a, 0x7e666666, 0x2a820382, 0x820aff21, 0x00303027,
0x007b0030, 0x00368036, 0x80360037, 0x821b803e, 0x0e092313, 0x54820801, 0x61c06029, 0x7f3063e0, 0x83d86638, 0x00002301, 0x5c85140e, 0x00003c2d,
0x61000063, 0x98616098, 0x848c61c0, 0x808d2702, 0x0f808731, 0x85820007, 0x00060024, 0x44820c00, 0x140c0025, 0x82000800, 0x183c2400, 0x9b186360,
0x0c0e2328, 0x27820d00, 0x0c80072c, 0x186018c0, 0x08600060, 0x05822260, 0x03824120, 0x0b822220, 0x86000021, 0xc0032620, 0xc00d6007, 0x222a820c,
0x82220008, 0x82412005, 0x84222003, 0x21db8f63, 0x16840a09, 0x31001e25, 0x83806100, 0x00232201, 0x822c821e, 0x00022102, 0x02240083, 0x68000000,
0x14200382, 0x01200382, 0x02980382, 0x06a30626, 0x010c0ca3, 0x7c202383, 0x94202482, 0xe4820382, 0x02970582, 0xbb0f4226, 0x01011010, 0x22823783,
0x03000823, 0x203b8300, 0x220b8204, 0x8242001b, 0x00002601, 0x02a90238, 0x240f82a9, 0x044d0444, 0x2407824d, 0x045c0450, 0x2407825d, 0x06a2065c,
0x240782a3, 0x0bef0b6c, 0x240782ef, 0x0fbb0f7c, 0x200782bb, 0x20438688, 0x200b821f, 0x200b8610, 0x854f842f, 0x824a205b, 0x8617200b, 0x82612017,
0x002f220b, 0x85058258, 0x82b9201b, 0x84212009, 0x200f8575, 0x214389fb, 0x37840b01, 0x0c219d83, 0x33a48400, 0x28000200, 0x26020000, 0x3e020100,
0x01002e05, 0x87056305, 0x88280582, 0x03008a05, 0xfd059905, 0xff280b82, 0x0100ff05, 0x0c060a06, 0x10220582, 0x05823506, 0x40063628, 0x41060300,
0x0b824106, 0x69064c22, 0x6a220582, 0x11827206, 0xed06ed22, 0xf4220b82, 0x0b82f406, 0xfd06f728, 0x06070300, 0x05820d07, 0x1a070e2e, 0x67070100,
0x01005009, 0x76095209, 0x88220582, 0x05828f09, 0xd60e9228, 0x500f0100, 0x0582950f, 0x6210f228, 0x65100100, 0x05826810, 0x77106d22, 0x793a0582,
0x01006b11, 0xc113c511, 0x52140100, 0x03005c14, 0xdb145d14, 0xdc140200, 0x0b82f614, 0x9615f728, 0x07160100, 0x05823416, 0x3b163528, 0x64160300,
0x0b827e16, 0x8a167f28, 0xd9160200, 0x0b82da16, 0xe016dd22, 0xe2220582, 0x0582e716, 0x8216ed21, 0x4117229b, 0x225f8217, 0x85000400, 0x820120fc,
0x0a240807, 0x6c005e00, 0x72610500, 0x20006261, 0x6e74616c, 0x6b6e2a00, 0x3400206f, 0x6c6d6174, 0x68743e00, 0x48006161, 0x00223184, 0x2f82ffff,
0x03820420, 0x012009a1, 0x01262582, 0x6b72616d, 0x6b880800, 0x02000424, 0x01820100, 0x03820820, 0x15848020, 0x58002722, 0x5a20019a, 0x37951b9a,
0x09000028, 0xf6ff3606, 0x03823706, 0x03823a20, 0x03823b20, 0x03823c20, 0x03823d20, 0x03823e20, 0x03823f20, 0xf6ff4022, 0x022d8782, 0x35061006,
0x41060000, 0x26004106, 0x05074100, 0x3e017a22, 0x320c0741, 0x6f6b6e34, 0x74400020, 0x006c6d61, 0x61687452, 0x41660061, 0x05220807, 0xd9820600,
0x0e000b22, 0x04204b82, 0x22061141, 0x880a0001, 0x0004281f, 0x00090007, 0x8803000c, 0x82052011, 0x00012225, 0x200f8205, 0x3413880d, 0x610f0000,
0x00737662, 0x686b615c, 0x6664006e, 0x00616e69, 0x2605846a, 0x6c616872, 0x82780066, 0x006e2805, 0x696e697e, 0x84840074, 0x698c2605, 0x006c6f73,
0x2c058492, 0x67696c9c, 0x6da20061, 0x00696465, 0x270584a8, 0x747370b0, 0x72b60073, 0x00211882, 0x266f82bc, 0x00010002, 0x84000002, 0x820020df,
0x82082009, 0x200d8393, 0x20138409, 0x22058804, 0x82060002, 0x000022af, 0x20058401, 0x20c78203, 0x83bb820b, 0x840c200f, 0x82052023, 0x00022405,
0x840e000d, 0x2005850d, 0x08138403, 0x10000f26, 0x24001100, 0x34002c00, 0x44003c00, 0x54004c00, 0x64005c00, 0x74006c00, 0x84007c00, 0x94008c00,
0xa4009c00, 0x0122f184, 0x07868800, 0x07869a20, 0x0785ae20, 0x85dc0121, 0x8a042107, 0x05230785, 0x830100b8, 0x0a082101, 0x09210785, 0x2007864e,
0x21078592, 0x0785d60a, 0x851a0b21, 0x5e0c2107, 0x6c200786, 0xb0200786, 0x0d210785, 0x824f82f4, 0x380e2149, 0x0f210785, 0x201782c6, 0x06814214,
0x5f140428, 0xac060300, 0x0f829e06, 0x8a060122, 0x16200582, 0xc2221988, 0x19820400, 0xa3069722, 0x35081b84, 0x0101009d, 0x00180026, 0x003a0036,
0x0042003e, 0x004a0046, 0x0052004e, 0x005a0056, 0x0062005e, 0x006a0066, 0x0072006e, 0x007a0076, 0x0082007e, 0x008a0086, 0xab83008e, 0x3f826020,
0x03826220, 0x03826420, 0x03826620, 0x03826820, 0x03826a20, 0x6e20a783, 0x70200782, 0x72200382, 0x74200382, 0x76200382, 0x78200382, 0x7a200382,
0x7c200382, 0x7e200382, 0x80200382, 0x82200382, 0x84200382, 0x86200382, 0x88200382, 0x8a200382, 0x8c200382, 0x8e280382, 0x02008e14, 0x8f14a306,
0x90200584, 0x91200584, 0x92200584, 0x93200584, 0x94200584, 0x95200584, 0x96200584, 0x97200584, 0x98200584, 0x99200584, 0x9a200584, 0x9b200584,
0x9c200584, 0x9d200584, 0x9e200584, 0x9f200584, 0xa0200584, 0xa1200584, 0xa2200584, 0xa3200584, 0xa4200584, 0xa5200584, 0x00210583, 0x08058202,
0xa0068a48, 0x5f140000, 0x17005f14, 0xa6020100, 0x36001800, 0x46003e00, 0x56004e00, 0x66005e00, 0x76006e00, 0x86007e00, 0x96008e00, 0xa6009e00,
0xb600ae00, 0xc600be00, 0xd600ce00, 0xe600de00, 0x0300ee00, 0x5001c000, 0x0782e001, 0x4e01be24, 0x0782de01, 0x4c01bc24, 0x0782dc01, 0x4a01ba24,
0x0782da01, 0x4801b824, 0x0782d801, 0x4601b624, 0x0782d601, 0x4401b424, 0x0782d401, 0x4201b224, 0x0782d201, 0x4001b024, 0x0782d001, 0x3e01ae24,
0x0782ce01, 0x3c01ac24, 0x0782cc01, 0x3a01aa24, 0x0782ca01, 0x3801a82c, 0x0300c801, 0x3601a600, 0x0782c601, 0x3401a424, 0x0782c401, 0x3201a224,
0x0782c201, 0x3001a024, 0x0782c001, 0x2e019e24, 0x0782be01, 0x2c019c24, 0x0782bc01, 0x2a019a24, 0x0782ba01, 0x28019824, 0x0782b801, 0x26019624,
0x0782b601, 0x24019424, 0x0782b401, 0x2201922c, 0x6e14b201, 0xa2060200, 0x05846d14, 0x05846c20, 0x05847420, 0x05846a20, 0x05846920, 0x05846820,
0x05847d20, 0x05847e20, 0x05847f20, 0x05848020, 0x05848120, 0x05848220, 0x05848320, 0x05848420, 0x05848520, 0x05848620, 0x05848720, 0x05848820,
0x05848920, 0x05848a20, 0x05848b20, 0x05848c20, 0x05848d20, 0x0582a620, 0xa714a422, 0xa8200584, 0xa9200584, 0xaa200584, 0xab200584, 0xac200584,
0xad200584, 0xae200584, 0xaf200584, 0xb0200584, 0xb1200584, 0xb2200584, 0xb3200584, 0xb4200584, 0xb5200584, 0xb6200584, 0xb8200584, 0xb9200584,
0xba200584, 0xbb200584, 0xbc200584, 0xbd200584, 0xbe200584, 0xbf200584, 0xa5220582, 0x0584c014, 0x0584c120, 0x0584c320, 0x0584c420, 0x0584c520,
0x0584c620, 0x05847c20, 0x0584da20, 0x0584d920, 0x0584d820, 0x0584d720, 0x0584d620, 0x0584d520, 0x0584d420, 0x0584d320, 0x0584d220, 0x0584d120,
0x0584d020, 0x0584cf20, 0x0584ce20, 0x0584cd20, 0x0584cc20, 0x0583cb20, 0x4311b542, 0x602094eb, 0xac22ab82, 0x05847a14, 0x05847920, 0x05847820,
0x05845d20, 0x05846b20, 0x05845e20, 0x05846120, 0x05846220, 0x05846320, 0x0584db20, 0x05846420, 0x05846520, 0x05846620, 0x05846720, 0x05847b20,
0x05847720, 0x05847620, 0x05847520, 0x05847320, 0x05847220, 0x05847120, 0x05847020, 0x05836f20, 0x35113541, 0x06003802, 0x18001200, 0x22001e00,
0x2a002600, 0x62010200, 0x05826801, 0x70016824, 0x03840100, 0x07827c20, 0x14009222, 0x30081b82, 0x005c0044, 0x008a0074, 0x00b400a0, 0x00dc00c8,
0x010001ee, 0x01200110, 0x013c012e, 0x01c201b2, 0x01e801d8, 0x006f10fe, 0x007b000c, 0x006f0066, 0x26058275, 0x00710073, 0x826a0073, 0x16662437,
0x820b0006, 0x00642219, 0x240f8270, 0x0063006f, 0x2409826d, 0x106c0064, 0x20178469, 0x202d826f, 0x22158276, 0x84760062, 0x106f2439, 0x820a006c,
0x006c222f, 0x200f8462, 0x24178263, 0x16690074, 0x20158405, 0x20558475, 0x28418267, 0x00640073, 0x00651066, 0x20758409, 0x202d8273, 0x20298274,
0x20138273, 0x2013846a, 0x20298468, 0x20438274, 0x2013826d, 0x20138470, 0x20378277, 0x2029827a, 0x24738268, 0x00621073, 0x203b8208, 0x20358268,
0x2425826a, 0x10730062, 0x85118466, 0x836f20b9, 0x7a0e235f, 0x23820700, 0x2f826920, 0x00231f82, 0x84210e75, 0x0074220f, 0x2635826c, 0x106d006d,
0x8206006b, 0x8262201f, 0x006324bf, 0x844c1062, 0x8271200d, 0x00702465, 0x86671071, 0x8276200d, 0x177128f1, 0x00020068, 0x828d0e2e, 0x0e3f2a05,
0x0003008e, 0x0e3f002e, 0x220d828c, 0x82c1132e, 0x82622053, 0x82632081, 0x00662665, 0x00c31367, 0x2241820c, 0x846e0078, 0x846620e5, 0x006a2a07,
0x13750074, 0x001100c2, 0x2025826f, 0x237d8269, 0x0065006f, 0x0582ed82, 0x11827120, 0xad837320, 0x75201b82, 0xb1836182, 0x1b826220, 0x3f827320,
0x73107824, 0xa1820a00, 0x1f846a20, 0x31846420, 0x6e006224, 0xc7847110, 0x21827520, 0x59836220, 0x84721021, 0x00642225, 0x224b8469, 0x826a0073,
0x10742207, 0x22258474, 0x82710062, 0x826d2001, 0x00022211, 0x24b78205, 0x0000002e, 0x2201823d, 0x82440001, 0x82022001, 0x82702075, 0x827b20cf,
0x057c0865, 0x1e010200, 0x64058c00, 0x66056505, 0xed166705, 0xf1166905, 0xf5166b05, 0xfb16f816, 0x0117fe16, 0x72057105, 0x74057305, 0x0b170817,
0x11170e17, 0x17171417, 0x1d171a17, 0x23172017, 0x29172617, 0x2f172c17, 0x85053217, 0x3717d716, 0x3214d716, 0x9c059b05, 0x9f059d05, 0xa105a005,
0x9c16e513, 0x8d169616, 0x47144314, 0x99169016, 0x4a149316, 0xa8162314, 0x2014a516, 0xae16ab16, 0x2321f018, 0xed135308, 0x2a142814, 0xf113f313,
0xd813e113, 0x34143c14, 0x9f16c913, 0xa2160d14, 0xf7132017, 0xc813b716, 0xd3133a14, 0xcf13ba16, 0x3e14ce16, 0xd613c016, 0x0e14bd16, 0xdc13df13,
0xee13ca13, 0xe4051314, 0x0f14c416, 0x3217f816, 0xea05ce13, 0xe713c816, 0xf0186b05, 0x2f080f21, 0xf7053717, 0xf905fb13, 0x90168d16, 0xfd05fc05,
0x0614ff05, 0x1a140814, 0x02001c14, 0x64050700, 0x00007c05, 0x87057e05, 0x99051900, 0x23009d05, 0xfd34dd82, 0xff052800, 0x8700ff05, 0x0c060a06,
0x0f068800, 0x8b000f06, 0x42232d82, 0x18111e00, 0x823a49d9, 0x06012641, 0x0069064c, 0x05974100, 0x0a99ce18, 0xf016ef2e, 0xf416f316, 0xfa16f716,
0x0017fd16, 0x0a7dce18, 0x170a7608, 0x1710170d, 0x17161713, 0x171c1719, 0x1722171f, 0x17281725, 0x172e172b, 0x17341731, 0x13361735, 0x163314e4,
0x144c148b, 0x14cd132f, 0x14301441, 0x169b1645, 0x148c1695, 0x16461442, 0x1698168f, 0x14491492, 0x16a71624, 0x162114a4, 0x16ad16aa, 0x13fd13b3,
0x16ff13fe, 0x16b016b1, 0x140514b2, 0x14b51604, 0x14011402, 0x13001403, 0x16ea13e9, 0x13eb13b4, 0xb9f118ec, 0x14730807, 0x13d71351, 0x133614d5,
0x139e16c6, 0x14a116cc, 0x16f91311, 0x14d405b6, 0x16d41339, 0x162d14b9, 0x163d14cd, 0x160b14bf, 0x132c14bc, 0x14dd13e0, 0x14161418, 0x16c21614,
0x131014c3, 0x14c916f6, 0x16c61615, 0x05e813c7, 0x16c413ed, 0x16d116d4, 0x16d216d0, 0x163514d5, 0x133517d3, 0x13fa13f8, 0x14d616d9, 0x16cb1637,
0x143117cc, 0x14091426, 0x411e141b, 0xda183497, 0x97413aa5, 0x77f3180f, 0x75f31832, 0x05992213, 0x0b2f439a, 0xb851f318, 0x0a06ff28, 0x0c060b06,
0x97410f06, 0x000c2830, 0x05840503, 0x826b05ea, 0x05012639, 0x00ed05eb, 0x05454300, 0xf3180620, 0xad413a09, 0x0845430f, 0xef16ee2e, 0xf316f216,
0xf916f616, 0xff16fc16, 0x0ac3d118, 0x17092608, 0x170f170c, 0x17151712, 0x171b1718, 0x1721171e, 0x17271724, 0x172d172a, 0x17331730, 0x17d81634,
0x14d81638, 0x0b454331, 0x16e6133f, 0x1697169d, 0x1444148e, 0x16911648, 0x1494169a, 0x16221417, 0x14a616a9, 0x16ac1640, 0x234543af, 0x27144508,
0x2b142914, 0xf013f213, 0xda13fc13, 0xc5133814, 0xa0164b14, 0xa316e313, 0xf5132117, 0xc713b816, 0xd2133b14, 0xe213bb16, 0x3f14cf16, 0x0c14c116,
0xf413be16, 0x1914de13, 0xef13d013, 0xc2161214, 0x0a14c516, 0xca28cd82, 0xc616d113, 0xec05eb05, 0x28124543, 0x13f81338, 0x16d913db, 0x43a5828e,
0x25260545, 0x1f140714, 0xad411d14, 0x00422230, 0xafdd181e, 0x11742210, 0xb1dd18b0, 0x0a974127, 0x01012a08, 0x0012003e, 0x0034002a, 0x003e0038,
0x00480044, 0x0050004c, 0x00580054, 0x0060005c, 0x006e0064, 0x00780072, 0x0084007e, 0x220f8204, 0x826c0066, 0x8201200f, 0x00022415, 0x82760070,
0x00762247, 0x20c74d7c, 0x8c000428, 0x98009200, 0x29829e00, 0x33829a20, 0xa2009c22, 0xa2220582, 0x0582a800, 0xae00a822, 0xae2a0582, 0x6405b400,
0x88050200, 0x05826505, 0x67058922, 0x8a220582, 0x05829f05, 0xea059e22, 0x66201184, 0xa0200584, 0x68201184, 0xa2200b84, 0xec200b84, 0xa1200b84,
0xfd200b84, 0x2f840b84, 0x83e81321, 0xe713210b, 0x16210583, 0x210583cc, 0x05823014, 0x83169e21, 0x16882217, 0x201784e9, 0x220582eb, 0x84cd138a,
0x84c62017, 0x213b8411, 0x11844114, 0x14215984, 0x200b8445, 0x204d84ed, 0x200b84e5, 0x200b84ee, 0x200582e6, 0x08b9829e, 0x69050e58, 0x00006905,
0x85058405, 0x87050100, 0x03008705, 0xeb05eb05, 0xf1050400, 0x0500f105, 0xfc05fc05, 0xff050600, 0x0700ff05, 0xc816c716, 0xcb160800, 0x0a00cb16,
0xd016d016, 0xef160b00, 0x0c00ef16, 0x31173117, 0x34170d00, 0x0e003417, 0x38173617, 0x01000f00, 0x5b827e00, 0x1a000a2c, 0x20000700, 0x2c002600,
0x9f413200, 0x07220806, 0x40003a00, 0x4c004600, 0x58005200, 0x3f175e00, 0xcd130200, 0x02002e14, 0x4f142f14, 0x8b160200, 0x05823917, 0x3b17e822,
0xe9220582, 0x05823d17, 0x2383eb20, 0x17ef1623, 0x21298340, 0x2984cb13, 0x29845020, 0x29843a20, 0x29843c20, 0x29843e20, 0x91822382, 0x02000127,
0x2a172917, 0x20008300, 0x838b8202, 0x00142207, 0x26098303, 0x00001a01, 0x86000601, 0x25078214, 0x00000202, 0x008d0002, 0x00019808, 0x23222100,
0x27262524, 0x2b2a2928, 0x2f2e2d2c, 0x33323130, 0x37363534, 0x3b3a3938, 0x3f3e3d3c, 0x43424140, 0x47464544, 0x4b4a4948, 0x4f4e4d4c, 0x53525150,
0x57565554, 0x5b5a5958, 0x5f5e5d5c, 0x63626160, 0x67666564, 0x6b6a6968, 0x6f6e6d6c, 0x73727170, 0x77767574, 0x7b7a7978, 0x7f7e7d7c, 0xc8c6c500,
0xddd7d2ca, 0xe5e3e1e2, 0xeae8e6e4, 0xeeecebe9, 0xf2f0efed, 0xf7f5f3f4, 0xfcfafbf6, 0xa3b100fd, 0xb700a8a4, 0x00aaafe0, 0xc700a9b5, 0x00b200d9,
0x84b6a600, 0xbbab27a6, 0xc0f9e700, 0x0c83ada2, 0x00bcac26, 0xd6c4c1a1, 0x03830a83, 0x0483f820, 0xb8200385, 0xc32f0682, 0xc9ccc2cb, 0xcdd0cfce,
0xd300d5d4, 0x82dadcdb, 0x82b02012, 0x82b92003, 0x04002303, 0xf882d009, 0x0270770a, 0x00080000, 0x03ff0270, 0x035a0357, 0x0375036f, 0x037e037a,
0x038c038a, 0x03ce03a1, 0x048604fb, 0x04f504ce, 0x050f05f9, 0x055f0556, 0x058a0587, 0x06f205ea, 0x061b060d, 0x063a061f, 0x0655064a, 0x06d5066f,
0x07b107ff, 0x09fa07e7, 0x0b830b65, 0x0b900b8a, 0x0b9a0b95, 0x0b9f0b9c, 0x0baa0ba4, 0x0bc20bb9, 0x0bcd0bc8, 0x0bd70bd0, 0x0e3a0efa, 0x1049105b,
0x12fc10c5, 0x12461206, 0x124d1248, 0x12581256, 0x1286125d, 0x128d1288, 0x12b012ae, 0x12be12b5, 0x12c512c0, 0x12d612ce, 0x130e13ee, 0x13151310,
0x1346131e, 0x167c135a, 0x19f0169c, 0x1d74196d, 0x1d6b1d2b, 0x1e7f1d7a, 0x1ff91e9b, 0x1f1d1f15, 0x1f4d1f45, 0x1f591f57, 0x1f5d1f5b, 0x1fb41f7d,
0x1fd31fc4, 0x1fef1fdb, 0x20fe1ff4, 0x20542027, 0x20702057, 0x20b6208e, 0x210f21e0, 0x211a2117, 0x2122211e, 0x212c2125, 0x2139212f, 0x214b213b,
0x21b82183, 0x22e321cc, 0x22072202, 0x221a2212, 0x2229221e, 0x22482243, 0x23652261, 0x2383232f, 0x2399238c, 0x240024ad, 0x240d2408, 0x2423241b,
0x244a2426, 0x25e9249b, 0x25ad25a0, 0x26e625d8, 0x277f2672, 0x275e2756, 0x28eb2764, 0x2c6e2c3f, 0x2d252d7d, 0x306f2d65, 0x300f3002, 0xa7ff4d30,
0xe033e021, 0xe05ae058, 0xe06be05d, 0xe1e0e09f, 0xe141e119, 0xe18ae164, 0xe1bbe196, 0xe1d1e1c0, 0xe2f1e1e7, 0xe213e201, 0xe231e221, 0xe26be249,
0xe28ae281, 0xe3c4e2c3, 0xe353e310, 0xe373e36d, 0xe48de48d, 0xe4b7e4ad, 0xea77eacd, 0xf6caea8a, 0xf66af65d, 0xf70ef7ef, 0xf81df71a, 0xfbaaf884,
0xfb17fb06, 0xfb55fb51, 0xfb5dfb59, 0xfb65fb61, 0xfb6dfb69, 0xfb75fb71, 0xfb7dfb79, 0xfb83fb81, 0xfb87fb85, 0xfb8bfb89, 0xfb91fb8d, 0xfb99fb95,
0xfb9ffb9d, 0xfba5fba3, 0xfbabfba8, 0xfbaffbad, 0xfbd6fbb1, 0xfbdafbd8, 0xfbdffbdc, 0xfbe3fbe1, 0xfde9fbe5, 0xfdf2fd3f, 0xfe57fefc, 0xfe66fe60,
0xfe82fe6b, 0xfe86fe84, 0xfe8cfe88, 0xfe92fe8e, 0xfe98fe94, 0xfea0fe9c, 0xfea8fea4, 0xfeacfeaa, 0xfeb0feae, 0xfeb8feb4, 0xfec0febc, 0xfec8fec4,
0xfed0fecc, 0xfed8fed4, 0xfee0fedc, 0xfee8fee4, 0xfeeefeec, 0xfffcfef0, 0xff3aff19, 0xfffdff5e, 0x008200ff, 0x0203c108, 0x5d035903, 0x7a037403,
0x84037e03, 0x8e038c03, 0xd003a303, 0x88040004, 0xf804d004, 0x31050005, 0x61055905, 0xd0058905, 0x0c06f005, 0x1e061b06, 0x40062106, 0x60065306,
0xf0067106, 0xc0078007, 0x6409eb07, 0x850b820b, 0x920b8e0b, 0x9c0b990b, 0xa30b9e0b, 0xae0ba80b, 0xc60bbe0b, 0xd00bca0b, 0xe60bd70b, 0x3f0e010e,
0xa0104010, 0x0012d010, 0x48120812, 0x50124a12, 0x5a125812, 0x88126012, 0x90128a12, 0xb212b012, 0xc012b812, 0xc812c212, 0xd812d012, 0x1013f012,
0x18131213, 0x48132013, 0x80166113, 0x5019a016, 0x001d7019, 0x791d6b1d, 0x001e7f1d, 0x001fa01e, 0x201f181f, 0x501f481f, 0x08067142, 0x801f5f42,
0xc61fb61f, 0xdd1fd61f, 0xf61ff21f, 0x30200020, 0x70205720, 0xa0207420, 0x0021e020, 0x19211521, 0x20211d21, 0x2a212421, 0x32212e21, 0x3d213b21,
0x90216021, 0xe021bc21, 0x06220222, 0x19221122, 0x2c087142, 0x23642260, 0x23802300, 0x2399238c, 0x0871429b, 0x2420ae08, 0x24402425, 0x25b62488,
0x25a42500, 0x26e425c9, 0x277f2600, 0x275b2756, 0x27e02764, 0x2c602cf0, 0x2d002d71, 0x306f2d30, 0x300c3002, 0xa7c04d30, 0xe000e020, 0xe05ae040,
0xe062e05c, 0xe1d0e090, 0xe140e100, 0xe180e150, 0xe1b0e190, 0xe1d0e1c0, 0xe2f0e1e0, 0xe210e200, 0xe230e220, 0xe250e240, 0xe283e270, 0xe2c4e290,
0xe340e3c7, 0xe36fe360, 0xe470e480, 0xe4b0e490, 0xeab0e9b9, 0xf49fea80, 0xf660f6d0, 0xf701f771, 0xf71cf710, 0xfb88f820, 0xfb13fb00, 0xfb53fb51,
0xfb5bfb57, 0xfb63fb5f, 0xfb6bfb67, 0xfb73fb6f, 0xfb7bfb77, 0x0c71427f, 0x93fb8f2e, 0x9bfb97fb, 0xa1fb9ffb, 0xa7fba5fb, 0x20087142, 0x0e7142d4,
0x3efde82e, 0xfcfdf2fd, 0x60fe56fe, 0x69fe62fe, 0x30087142, 0xfe8efe8a, 0xfe94fe90, 0xfe9afe96, 0xfea2fe9e, 0x087142a6, 0xfeb23208, 0xfebafeb6,
0xfec2febe, 0xfecafec6, 0xfed2fece, 0xfedafed6, 0xfee2fede, 0xfeeafee6, 0xfef0feee, 0xff10fff2, 0xff5eff21, 0x00fffffc, 0xffffff01, 0x080982fe,
0xf4fff838, 0xecfff1ff, 0xeaffebff, 0xe8ffe9ff, 0xe3ffe4ff, 0xe0ffe2ff, 0xb9ffdaff, 0xb6ffb7ff, 0x70ffb5ff, 0x52ff6bff, 0x43ff45ff, 0x3dff42ff,
0x2bff35ff, 0x10ff2aff, 0x918290fe, 0xfd7f2b0a, 0xfafafa16, 0xfaf6faf9, 0xfaf2faf5, 0xfaf0faf1, 0xfaeafaed, 0xfae3fae7, 0xfadffae0, 0xfad7fadd,
0xf8c3f8c9, 0xf6dbf6bf, 0xf57bf685, 0xf577f578, 0xf575f576, 0xf572f573, 0xf56ff571, 0xf56df56e, 0xf56af56b, 0xf567f569, 0xf565f566, 0xf562f563,
0xf560f561, 0xf55ef55f, 0xf55bf55c, 0xf254f55a, 0xef4ef251, 0xecedefef, 0xec23ec62, 0xeb12ec16, 0xeb8eeb92, 0xeb86eb88, 0xeb82eb84, 0xeb7feb80,
0xeb7deb7e, 0xeb7aeb7c, 0xeb78eb79, 0xeb75eb76, 0xeb72eb73, 0xeb69eb71, 0xeb4feb67, 0xeb3beb4c, 0xeaf3ea12, 0xeaedeaee, 0xeaeaeaeb, 0xeae5eae9,
0xeae2eae4, 0xeae0eae1, 0xeac0eacc, 0xeaaaeabd, 0xea89ea8c, 0xea7aea80, 0xea6dea77, 0xea50ea54, 0xe937ea39, 0xe94de99d, 0xe939e945, 0xe8e6e838,
0xe8dbe8df, 0xe8cae8ce, 0xe8b0e8c9, 0xe859e873, 0xe840e843, 0xe81ae825, 0xe7f5e701, 0xe71be71f, 0xe69be616, 0xe277e297, 0xe1f3e175, 0xdfe0e1e9,
0xdf45df4e, 0x6896c125, 0x2f982f76, 0x2f8b2f8c, 0x2f862f8a, 0x2f322f62, 0x2eed2e13, 0x2ec42edf, 0x2ea62ebf, 0x2e932ea2, 0x2e7d2e85, 0x2e612e6f,
0x2e472e55, 0x2e332e39, 0x2e2e2e2f, 0x2ea43429, 0x2df72d26, 0x2dea2deb, 0x2cfc2cde, 0x2cf82cfa, 0x281528f7, 0x1df9270d, 0x1df21df4, 0x1ddb1dec,
0x1dd91dda, 0x1bd41dd7, 0x1b731b7f, 0x1b391b3a, 0x1b371b38, 0x1b351b36, 0x1b331b34, 0x1b311b32, 0x1b2f1b30, 0x1b2d1b2e, 0x1b2b1b2c, 0x1b291b2a,
0x1b271b28, 0x1b251b26, 0x1b231b24, 0x1b211b22, 0x1b1e1b20, 0x1b1c1b1d, 0x1af91a1b, 0x1af71af8, 0x1af41af6, 0x1af21af3, 0x19ef1af1, 0x18e9189b,
0x188718e0, 0x187e187f, 0x1866187c, 0x18641865, 0x18621863, 0x18601861, 0x185e185f, 0x185c185d, 0x185a185b, 0x18581859, 0x18561857, 0x18541855,
0x18521853, 0x18501851, 0x184e184f, 0x184c184d, 0x184a184b, 0x18481849, 0x18461847, 0x18441845, 0x182a1831, 0x006a1707, 0x00100001, 0x05700200,
0x39aeb5fa, 0x00000045,
};
/*
This font has been released into the public domain by Darien Valentine
*/
|
the_stack_data/105851.c | // autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <arpa/inet.h>
#include <endian.h>
#include <fcntl.h>
#include <net/if.h>
#include <netinet/in.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#include <sched.h>
#include <linux/genetlink.h>
#include <linux/if_addr.h>
#include <linux/if_link.h>
#include <linux/in6.h>
#include <linux/neighbour.h>
#include <linux/net.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <linux/veth.h>
struct nlmsg {
char* pos;
int nesting;
struct nlattr* nested[8];
char buf[1024];
};
static struct nlmsg nlmsg;
static void netlink_init(struct nlmsg* nlmsg, int typ, int flags,
const void* data, int size)
{
memset(nlmsg, 0, sizeof(*nlmsg));
struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf;
hdr->nlmsg_type = typ;
hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags;
memcpy(hdr + 1, data, size);
nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size);
}
static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data,
int size)
{
struct nlattr* attr = (struct nlattr*)nlmsg->pos;
attr->nla_len = sizeof(*attr) + size;
attr->nla_type = typ;
memcpy(attr + 1, data, size);
nlmsg->pos += NLMSG_ALIGN(attr->nla_len);
}
static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type,
int* reply_len)
{
if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting)
exit(1);
struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf;
hdr->nlmsg_len = nlmsg->pos - nlmsg->buf;
struct sockaddr_nl addr;
memset(&addr, 0, sizeof(addr));
addr.nl_family = AF_NETLINK;
unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0,
(struct sockaddr*)&addr, sizeof(addr));
if (n != hdr->nlmsg_len)
exit(1);
n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0);
if (hdr->nlmsg_type == NLMSG_DONE) {
*reply_len = 0;
return 0;
}
if (n < sizeof(struct nlmsghdr))
exit(1);
if (reply_len && hdr->nlmsg_type == reply_type) {
*reply_len = n;
return 0;
}
if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))
exit(1);
if (hdr->nlmsg_type != NLMSG_ERROR)
exit(1);
return -((struct nlmsgerr*)(hdr + 1))->error;
}
static int netlink_send(struct nlmsg* nlmsg, int sock)
{
return netlink_send_ext(nlmsg, sock, 0, NULL);
}
static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset,
unsigned int total_len)
{
struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset);
if (offset == total_len || offset + hdr->nlmsg_len > total_len)
return -1;
return hdr->nlmsg_len;
}
static void netlink_device_change(struct nlmsg* nlmsg, int sock,
const char* name, bool up, const char* master,
const void* mac, int macsize,
const char* new_name)
{
struct ifinfomsg hdr;
memset(&hdr, 0, sizeof(hdr));
if (up)
hdr.ifi_flags = hdr.ifi_change = IFF_UP;
hdr.ifi_index = if_nametoindex(name);
netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr));
if (new_name)
netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name));
if (master) {
int ifindex = if_nametoindex(master);
netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex));
}
if (macsize)
netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize);
int err = netlink_send(nlmsg, sock);
(void)err;
}
const int kInitNetNsFd = 239;
#define DEVLINK_FAMILY_NAME "devlink"
#define DEVLINK_CMD_PORT_GET 5
#define DEVLINK_CMD_RELOAD 37
#define DEVLINK_ATTR_BUS_NAME 1
#define DEVLINK_ATTR_DEV_NAME 2
#define DEVLINK_ATTR_NETDEV_NAME 7
#define DEVLINK_ATTR_NETNS_FD 138
static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock)
{
struct genlmsghdr genlhdr;
struct nlattr* attr;
int err, n;
uint16_t id = 0;
memset(&genlhdr, 0, sizeof(genlhdr));
genlhdr.cmd = CTRL_CMD_GETFAMILY;
netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr));
netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, DEVLINK_FAMILY_NAME,
strlen(DEVLINK_FAMILY_NAME) + 1);
err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n);
if (err) {
return -1;
}
attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN +
NLMSG_ALIGN(sizeof(genlhdr)));
for (; (char*)attr < nlmsg->buf + n;
attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) {
if (attr->nla_type == CTRL_ATTR_FAMILY_ID) {
id = *(uint16_t*)(attr + 1);
break;
}
}
if (!id) {
return -1;
}
recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */
return id;
}
static void netlink_devlink_netns_move(const char* bus_name,
const char* dev_name, int netns_fd)
{
struct genlmsghdr genlhdr;
int sock;
int id, err;
sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC);
if (sock == -1)
exit(1);
id = netlink_devlink_id_get(&nlmsg, sock);
if (id == -1)
goto error;
memset(&genlhdr, 0, sizeof(genlhdr));
genlhdr.cmd = DEVLINK_CMD_RELOAD;
netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr));
netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1);
netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1);
netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd));
err = netlink_send(&nlmsg, sock);
if (err) {
}
error:
close(sock);
}
static struct nlmsg nlmsg2;
static void initialize_devlink_ports(const char* bus_name, const char* dev_name,
const char* netdev_prefix)
{
struct genlmsghdr genlhdr;
int len, total_len, id, err, offset;
uint16_t netdev_index;
int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC);
if (sock == -1)
exit(1);
int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
if (rtsock == -1)
exit(1);
id = netlink_devlink_id_get(&nlmsg, sock);
if (id == -1)
goto error;
memset(&genlhdr, 0, sizeof(genlhdr));
genlhdr.cmd = DEVLINK_CMD_PORT_GET;
netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr));
netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1);
netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1);
err = netlink_send_ext(&nlmsg, sock, id, &total_len);
if (err) {
goto error;
}
offset = 0;
netdev_index = 0;
while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) {
struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN +
NLMSG_ALIGN(sizeof(genlhdr)));
for (; (char*)attr < nlmsg.buf + offset + len;
attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) {
if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) {
char* port_name;
char netdev_name[IFNAMSIZ];
port_name = (char*)(attr + 1);
snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix,
netdev_index);
netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0,
netdev_name);
break;
}
}
offset += len;
netdev_index++;
}
error:
close(rtsock);
close(sock);
}
static void initialize_devlink_pci(void)
{
int netns = open("/proc/self/ns/net", O_RDONLY);
if (netns == -1)
exit(1);
int ret = setns(kInitNetNsFd, 0);
if (ret == -1)
exit(1);
netlink_devlink_netns_move("pci", "0000:00:10.0", netns);
ret = setns(netns, 0);
if (ret == -1)
exit(1);
close(netns);
initialize_devlink_ports("pci", "0000:00:10.0", "netpci");
}
uint64_t r[1] = {0xffffffffffffffff};
int main(void)
{
syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0);
intptr_t res = 0;
memcpy((void*)0x20000040, "/dev/ttyS3\000", 11);
res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000040ul, 0ul, 0ul);
if (res != -1)
r[0] = res;
*(uint32_t*)0x20001240 = 0x55;
*(uint32_t*)0x20001244 = 1;
*(uint32_t*)0x20001248 = 0;
*(uint32_t*)0x2000124c = 3;
*(uint32_t*)0x20001250 = 0xe07;
*(uint32_t*)0x20001254 = 4;
*(uint32_t*)0x20001258 = 0xc6;
*(uint32_t*)0x2000125c = 0x30000000;
*(uint32_t*)0x20001260 = 0x7fffffff;
*(uint8_t*)0x20001264 = -1;
*(uint8_t*)0x20001265 = 6;
*(uint32_t*)0x20001268 = 0x1ff;
*(uint16_t*)0x2000126c = 6;
*(uint16_t*)0x2000126e = 9;
*(uint64_t*)0x20001270 = 0;
*(uint16_t*)0x20001278 = 0;
*(uint32_t*)0x2000127c = 7;
*(uint64_t*)0x20001280 = 0x7fff;
syscall(__NR_ioctl, r[0], 0x541ful, 0x20001240ul);
return 0;
}
|
the_stack_data/70449643.c | #include <stdio.h>
#include <string.h>
#include "elf.h"
//#define ENABLE_DUMP
#if defined(ENABLE_DUMP)
static void dump_phdr(const Elf32_Phdr* phdr) {
printf("%08x(p_type)\n", phdr->p_type);
printf("%08x(p_offset)\n", phdr->p_offset);
printf("%08x(p_vaddr)\n", phdr->p_vaddr);
printf("%08x(p_paddr)\n", phdr->p_paddr);
printf("%08x(p_filesz)\n", phdr->p_filesz);
printf("%08x(p_memsz)\n", phdr->p_memsz);
printf("%08x(p_flags)\n", phdr->p_flags);
printf("%08x(p_align)\n", phdr->p_align);
}
static void dump_ehdr(const Elf32_Ehdr* ehdr) {
printf("%02x%02x%02x%02x(e_ident)\n", ehdr->e_ident[0],
ehdr->e_ident[1],
ehdr->e_ident[2],
ehdr->e_ident[3]);
printf("%04x(e_type)\n", ehdr->e_type);
printf("%04x(e_machine)\n", ehdr->e_machine);
printf("%08x(e_version)\n", ehdr->e_version);
printf("%08x(e_entry)\n", ehdr->e_entry);
printf("%08x(e_phoff)\n", ehdr->e_phoff);
printf("%08x(e_shoff)\n", ehdr->e_shoff);
printf("%08x(e_flags)\n", ehdr->e_flags);
printf("%04x(e_ehsize)\n", ehdr->e_ehsize);
printf("%04x(e_phentsize)\n", ehdr->e_phentsize);
printf("%04x(e_phnum)\n", ehdr->e_phnum);
printf("%04x(e_shentsize)\n", ehdr->e_shentsize);
printf("%04x(e_shnum)\n", ehdr->e_shnum);
printf("%04x(e_shstrndx)\n", ehdr->e_shstrndx);
}
static void dump_elf(const Elf32_Ehdr* ehdr, const Elf32_Phdr* phdr) {
dump_ehdr(ehdr);
for (int i = 0; i < ehdr->e_phnum; i ++) {
printf("phdr %d----------\n", i);
dump_phdr(phdr + i);
}
}
#endif
static int check_ehdr(const Elf32_Ehdr* ehdr) {
if (ehdr->e_ident[EI_CLASS] != ELFCLASS32) {
printf("error: e_ident[EI_CLASS] %x\n", ehdr->e_ident[EI_CLASS]);
return -1;
}
if (ehdr->e_type != ET_EXEC) {
printf("error: e_type %x\n", ehdr->e_type);
return -1;
}
if (ehdr->e_machine != EM_RISCV) {
printf("error: e_machine %x\n", ehdr->e_machine);
return -1;
}
return 0;
}
void* load_elf(uintptr_t dst_offset, const void *src) {
const Elf32_Ehdr* ehdr = src;
const Elf32_Phdr* phdr = (const Elf32_Phdr*)(ehdr + 1);
#if defined(ENABLE_DUMP)
dump_elf(ehdr, phdr);
#endif
if (check_ehdr(ehdr) < 0) {
return -1;
}
for (int i = 0; i < ehdr->e_phnum; i ++) {
if (phdr[i].p_type == PT_LOAD && phdr[i].p_filesz) {
const void* from = src + phdr[i].p_offset;
void* to = phdr[i].p_vaddr + dst_offset;
printf("copying (%dth) %p --> %p (sz:%x)\n", i, from, to, phdr[i].p_filesz);
// FIXME:
// make sure from and to addresses is not illegal.
// make sure both W & E flags are not set.
memcpy(to, from, phdr[i].p_filesz);
}
}
return ehdr->e_entry;
}
|
the_stack_data/9511650.c | /*
BSD 3-Clause License
Copyright (c) 2018, Bernhard Vacarescu
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#define NO_ERROR 255
#define ERROR 0
#define FILE_OPEN_ERROR 1
#define FILE_WRITE_ERROR 2 // Did only check this after every complete line
#define MEMORY_ALLOCATION_ERROR 3
#define ENABLE 1
#define DISABLE 0
#define MAX_SELECT_LINES 4
#define MAX_BUS_SIZE 16 // int has at least 16 bit, using INT_MAX
#define MAX_ITERATION_NUMBER 10000
#define LINE_SIZE 32 // Max. string length: LINE_SIZE - 1 ('0' byte).
// In program max. length of LINE_SIZE - 2 used.
// Length of LINE_SIZE - 1 used to check if too long.
#define PRINT_OUTPUT ENABLE // Enable/Disable if the question appears if the
// file output also should be printed to the
// console (formatted differently).
int power2(int exponent);
void printNumber(int number, int bit_size, FILE* fp);
// Returns 2**exponent, only for unsigned values!
int power2(int exponent)
{
if(exponent == 0)
{
return 1;
}
else
{
return 1 << exponent;
}
}
// Writes one integer number in binary into a text-file.
// No check if write worked.
void printNumber(int number, int bit_size, FILE* fp)
{
int mask = 1;
int counter = 0;
for(counter = 0; counter < bit_size; counter++)
{
if((number & (mask << (bit_size - 1 - counter))) == 0)
{
fputc('0', fp);
}
else
{
fputc('1', fp);
}
}
}
int main()
{
int select_size = 0;
int bus_size = 0;
int iteration_number = MAX_ITERATION_NUMBER + 1;
char filename[LINE_SIZE - 1];
char line[LINE_SIZE];
int print_output = DISABLE;
// Get arguments from stdin
while(select_size == 0 || select_size > MAX_SELECT_LINES)
{
printf("Enter number of select lines (1-%d): ", MAX_SELECT_LINES);
fgets(line, sizeof(line), stdin);
sscanf(line, "%d", &select_size); //sscanf not reads \n left from fgets
if(line[strlen(line) - 1] != '\n')
{
// flush stdin
// never considers EOF
while(getchar() != '\n');
}
}
while(bus_size == 0 || bus_size > MAX_BUS_SIZE)
{
printf("Enter bus size (1-%d): ", MAX_BUS_SIZE);
fgets(line, sizeof(line), stdin);
sscanf(line, "%d", &bus_size);
if(line[strlen(line) - 1] != '\n')
{
while(getchar() != '\n');
}
}
while(iteration_number > MAX_ITERATION_NUMBER || iteration_number < 0)
{
printf("Enter random iteration number (0-%d): ", MAX_ITERATION_NUMBER);
fgets(line, sizeof(line), stdin);
sscanf(line, "%d", &iteration_number);
if(line[strlen(line) - 1] != '\n')
{
while(getchar() != '\n');
}
}
do
{
printf("Enter text-file name (max. 30 characters): ");
fgets(line, sizeof(line), stdin);
sscanf(line, "%s", filename);
if(line[strlen(line) - 1] != '\n')
{
while(getchar() != '\n');
}
}while(strlen(filename) > (LINE_SIZE - 2));
if(PRINT_OUTPUT == ENABLE)
{
while(1)
{
printf("Should output be printed to console? (Y/N): ");
fgets(line, sizeof(line), stdin); //fgets also inserts newline!
if((strlen(line) == 2) && (line[0] == 'Y'))
{
print_output = ENABLE;
break;
}
else if((strlen(line) == 2) && (line[0] == 'N'))
{
break;
}
else
{
if(line[strlen(line) - 1] != '\n')
{
while(getchar() != '\n');
}
}
}
}
FILE* fp;
fp = fopen(filename, "w");
if(fp == NULL)
{
printf("Could not open file!");
getchar();
return FILE_OPEN_ERROR;
}
int *inputs = malloc((unsigned)power2(select_size) * sizeof(int));
if(inputs == NULL)
{
printf("Memory allocation error");
fclose(fp);
free(inputs);
getchar();
return MEMORY_ALLOCATION_ERROR;
}
printf("Building MUX test file...\n");
if(print_output == ENABLE)
{
printf("\nDisplayed: 'Inputs' SEL: 'Selected input', 'Output'\n");
}
int number_inputs = power2(select_size);
int number_select = power2(select_size);
// At beginning of file: select size and bus size as integers
fprintf(fp, "%d %d\n", select_size, bus_size);
int counter = 0;
int sel_counter = 0;
int inp_counter = 0;
// Fix tests
// See README for description
if((power2(bus_size) - 1) < (power2(select_size) - 1))
{
printf("Bus not long enough for fixed check, "
"performing only random check!\n");
}
else
{
for(counter = 0; counter < number_inputs; counter++)
{
inputs[counter] = counter;
}
for(sel_counter = 0; sel_counter < number_select; sel_counter++)
{
for(inp_counter = 0; inp_counter < number_inputs; inp_counter++)
{
printNumber(inputs[inp_counter], bus_size, fp); // print inputs
fputc(' ', fp);
if(print_output == ENABLE)
{
printf("%3d ",inputs[inp_counter]);
}
}
printNumber(sel_counter, select_size, fp); // print select line
fputc(' ', fp);
printNumber(inputs[sel_counter], bus_size, fp); // print corresponding
fputc('\n', fp); // output
if(print_output == ENABLE)
{
printf(" SEL: %2d, ",sel_counter);
printf("%3d\n",inputs[sel_counter]);
}
if(ferror(fp))
{
printf("Error writing file!");
fclose(fp);
free(inputs);
getchar();
return FILE_WRITE_ERROR;
}
}
}
// Random checks
// Different inputs and a random select are chosen.
// See README for description
srand((unsigned)time(NULL)); // randomize seed, that every call of the program
// result in different output files
int sel = 0;
for(counter = 0; counter < iteration_number; counter++)
{
for(inp_counter = 0; inp_counter < number_inputs; inp_counter++)
{ // gets ranges of 0 to 2^bus_size
inputs[inp_counter] = rand() % power2(bus_size);
printNumber(inputs[inp_counter], bus_size, fp); // write inputs
fputc(' ', fp);
if(print_output == ENABLE)
{
printf("%3d ", inputs[inp_counter]);
}
}
sel = rand() % number_select;
if(print_output == ENABLE)
{
printf(" SEL: %2d, ", sel);
printf("%3d\n", inputs[sel]);
}
// signed conversion suppresses warning, but printNumber only performs
// on the bits so it does not change anything
printNumber(sel, select_size, fp); // write select line to file
fputc(' ', fp);
printNumber(inputs[sel], bus_size, fp); // write corresponding output
fputc('\n', fp);
if(ferror(fp))
{
printf("Error writing file!");
fclose(fp);
free(inputs);
getchar();
return FILE_WRITE_ERROR;
}
}
fclose(fp);
free(inputs);
if(print_output == ENABLE)
{
printf("\n");
}
printf("FINISHED!");
getchar();
return 0;
}
|
the_stack_data/90764981.c | /*
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* $XFree86: xc/programs/glxgears/glxgears.c,v 1.2 2001/04/03 15:56:26 dawes Exp $ */
/*
* This is a port of the infamous "gears" demo to straight GLX (i.e. no GLUT)
* Port by Brian Paul 23 March 2001
*
* Command line options:
* -info print GL implementation information
*
*/
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <GL/gl.h>
#include <GL/glx.h>
#define BENCHMARK
#ifdef BENCHMARK
/* XXX this probably isn't very portable */
#include <sys/time.h>
#include <unistd.h>
/* return current time (in seconds) */
static int
current_time(void)
{
struct timeval tv;
struct timezone tz;
(void) gettimeofday(&tv, &tz);
return (int) tv.tv_sec;
}
#else /*BENCHMARK*/
/* dummy */
static int
current_time(void)
{
return 0;
}
#endif /*BENCHMARK*/
#ifndef M_PI
#define M_PI 3.14159265
#endif
static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
static GLint gear1, gear2, gear3;
static GLfloat angle = 0.0;
/*
*
* Draw a gear wheel. You'll probably want to call this function when
* building a display list since we do a lot of trig here.
*
* Input: inner_radius - radius of hole at center
* outer_radius - radius at center of teeth
* width - width of gear
* teeth - number of teeth
* tooth_depth - depth of tooth
*/
static void
gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
GLint teeth, GLfloat tooth_depth)
{
GLint i;
GLfloat r0, r1, r2;
GLfloat angle, da;
GLfloat u, v, len;
r0 = inner_radius;
r1 = outer_radius - tooth_depth / 2.0;
r2 = outer_radius + tooth_depth / 2.0;
da = 2.0 * M_PI / teeth / 4.0;
glShadeModel(GL_FLAT);
glNormal3f(0.0, 0.0, 1.0);
/* draw front face */
glBegin(GL_QUAD_STRIP);
for (i = 0; i <= teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
if (i < teeth) {
glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
width * 0.5);
}
}
glEnd();
/* draw front sides of teeth */
glBegin(GL_QUADS);
da = 2.0 * M_PI / teeth / 4.0;
for (i = 0; i < teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
width * 0.5);
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
width * 0.5);
}
glEnd();
glNormal3f(0.0, 0.0, -1.0);
/* draw back face */
glBegin(GL_QUAD_STRIP);
for (i = 0; i <= teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
if (i < teeth) {
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
-width * 0.5);
glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
}
}
glEnd();
/* draw back sides of teeth */
glBegin(GL_QUADS);
da = 2.0 * M_PI / teeth / 4.0;
for (i = 0; i < teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
-width * 0.5);
glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
-width * 0.5);
glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
}
glEnd();
/* draw outward faces of teeth */
glBegin(GL_QUAD_STRIP);
for (i = 0; i < teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
u = r2 * cos(angle + da) - r1 * cos(angle);
v = r2 * sin(angle + da) - r1 * sin(angle);
len = sqrt(u * u + v * v);
u /= len;
v /= len;
glNormal3f(v, -u, 0.0);
glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
glNormal3f(cos(angle), sin(angle), 0.0);
glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
width * 0.5);
glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
-width * 0.5);
u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
glNormal3f(v, -u, 0.0);
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
width * 0.5);
glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
-width * 0.5);
glNormal3f(cos(angle), sin(angle), 0.0);
}
glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
glEnd();
glShadeModel(GL_SMOOTH);
/* draw inside radius cylinder */
glBegin(GL_QUAD_STRIP);
for (i = 0; i <= teeth; i++) {
angle = i * 2.0 * M_PI / teeth;
glNormal3f(-cos(angle), -sin(angle), 0.0);
glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
}
glEnd();
}
static void
draw(void)
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glPushMatrix();
glRotatef(view_rotx, 1.0, 0.0, 0.0);
glRotatef(view_roty, 0.0, 1.0, 0.0);
glRotatef(view_rotz, 0.0, 0.0, 1.0);
glPushMatrix();
glTranslatef(-3.0, -2.0, 0.0);
glRotatef(angle, 0.0, 0.0, 1.0);
glCallList(gear1);
glPopMatrix();
glPushMatrix();
glTranslatef(3.1, -2.0, 0.0);
glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
glCallList(gear2);
glPopMatrix();
glPushMatrix();
glTranslatef(-3.1, 4.2, 0.0);
glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
glCallList(gear3);
glPopMatrix();
glPopMatrix();
}
/* new window size or exposure */
static void
reshape(int width, int height)
{
GLfloat h = (GLfloat) height / (GLfloat) width;
glViewport(0, 0, (GLint) width, (GLint) height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glTranslatef(0.0, 0.0, -40.0);
}
static void
init(void)
{
static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
glLightfv(GL_LIGHT0, GL_POSITION, pos);
glEnable(GL_CULL_FACE);
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_DEPTH_TEST);
/* make the gears */
gear1 = glGenLists(1);
glNewList(gear1, GL_COMPILE);
glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
gear(1.0, 4.0, 1.0, 20, 0.7);
glEndList();
gear2 = glGenLists(1);
glNewList(gear2, GL_COMPILE);
glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
gear(0.5, 2.0, 2.0, 10, 0.7);
glEndList();
gear3 = glGenLists(1);
glNewList(gear3, GL_COMPILE);
glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
gear(1.3, 2.0, 0.5, 10, 0.7);
glEndList();
glEnable(GL_NORMALIZE);
}
/*
* Create an RGB, double-buffered window.
* Return the window and context handles.
*/
static void
make_window( Display *dpy, const char *name,
int x, int y, int width, int height,
Window *winRet, GLXContext *ctxRet)
{
int attrib[] = { GLX_RGBA,
GLX_RED_SIZE, 1,
GLX_GREEN_SIZE, 1,
GLX_BLUE_SIZE, 1,
GLX_DOUBLEBUFFER,
GLX_DEPTH_SIZE, 1,
None };
int scrnum;
XSetWindowAttributes attr;
unsigned long mask;
Window root;
Window win;
GLXContext ctx;
XVisualInfo *visinfo;
scrnum = DefaultScreen( dpy );
root = RootWindow( dpy, scrnum );
visinfo = glXChooseVisual( dpy, scrnum, attrib );
if (!visinfo) {
printf("Error: couldn't get an RGB, Double-buffered visual\n");
exit(1);
}
/* window attributes */
attr.background_pixel = 0;
attr.border_pixel = 0;
attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
win = XCreateWindow( dpy, root, 0, 0, width, height,
0, visinfo->depth, InputOutput,
visinfo->visual, mask, &attr );
/* set hints and properties */
{
XSizeHints sizehints;
sizehints.x = x;
sizehints.y = y;
sizehints.width = width;
sizehints.height = height;
sizehints.flags = USSize | USPosition;
XSetNormalHints(dpy, win, &sizehints);
XSetStandardProperties(dpy, win, name, name,
None, (char **)NULL, 0, &sizehints);
}
ctx = glXCreateContext( dpy, visinfo, NULL, True );
if (!ctx) {
printf("Error: glXCreateContext failed\n");
exit(1);
}
XFree(visinfo);
*winRet = win;
*ctxRet = ctx;
}
static void
event_loop(Display *dpy, Window win)
{
while (1) {
while (XPending(dpy) > 0) {
XEvent event;
XNextEvent(dpy, &event);
switch (event.type) {
case Expose:
/* we'll redraw below */
break;
case ConfigureNotify:
reshape(event.xconfigure.width, event.xconfigure.height);
break;
case KeyPress:
{
char buffer[10];
int r, code;
code = XLookupKeysym(&event.xkey, 0);
if (code == XK_Left) {
view_roty += 5.0;
}
else if (code == XK_Right) {
view_roty -= 5.0;
}
else if (code == XK_Up) {
view_rotx += 5.0;
}
else if (code == XK_Down) {
view_rotx -= 5.0;
}
else {
r = XLookupString(&event.xkey, buffer, sizeof(buffer),
NULL, NULL);
if (buffer[0] == 27) {
/* escape */
return;
}
}
}
}
}
/* next frame */
angle += 2.0;
draw();
glXSwapBuffers(dpy, win);
/* calc framerate */
{
static int t0 = -1;
static int frames = 0;
int t = current_time();
if (t0 < 0)
t0 = t;
frames++;
if (t - t0 >= 5.0) {
GLfloat seconds = t - t0;
GLfloat fps = frames / seconds;
printf("%d frames in %3.1f seconds = %6.3f FPS\n", frames, seconds,
fps);
t0 = t;
frames = 0;
}
}
}
}
int
main(int argc, char *argv[])
{
Display *dpy;
Window win;
GLXContext ctx;
char *dpyName = NULL;
GLboolean printInfo = GL_FALSE;
int i;
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-display") == 0) {
dpyName = argv[i+1];
i++;
}
else if (strcmp(argv[i], "-info") == 0) {
printInfo = GL_TRUE;
}
}
dpy = XOpenDisplay(dpyName);
if (!dpy) {
printf("Error: couldn't open display %s\n", dpyName);
return -1;
}
make_window(dpy, "glxgears", 0, 0, 300, 300, &win, &ctx);
XMapWindow(dpy, win);
glXMakeCurrent(dpy, win, ctx);
reshape(300, 300);
if (printInfo) {
printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
}
init();
event_loop(dpy, win);
glXDestroyContext(dpy, ctx);
XDestroyWindow(dpy, win);
XCloseDisplay(dpy);
return 0;
}
|
the_stack_data/4327.c | //
// main.c
// c-only-program
//
// not finished and not going to
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>
#define MAX_SOL_TO_PRINT_wx 50
#define START_A_B_wx 2
#define MAXBASE 64
int base_wx;
int width_wx;
// int vis_wx[10];
//int *vis_wx; // if use dynamics; see below for both malloc, memset (which set only within base not maxbase) and free
// http://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int no checking of neg no. or the more efficient integer power func
int ipow(int base, int exp)
{
int result = 1;
while (exp)
{
if (exp & 1)
result *= base;
exp >>= 1;
base *= base;
}
return result;
}
int vis_wx[MAXBASE]; // static if we fix the maximum base
int valid_wx(int wxyz) {
int z = wxyz % base_wx;
int wxy = wxyz / base_wx;
int y = wxy % base_wx;
int wx = wxy / base_wx;
int x = wx % base_wx;
int w = wx / base_wx;
int bw = ipow(base_wx, (width_wx - 1)); // 0xxx
return wxyz >= bw // not 0xxx
&& wxyz < (base_wx*bw) // not 1xxxx
&& !(w == x || // w, x, y, z all unique
w == y ||
w == z ||
x == y ||
x == z ||
y == z ||
vis_wx[w] || // and not used
vis_wx[x] ||
vis_wx[y] ||
vis_wx[z] );
// x >= base_wx <-- cannot: a/c/e/g cannot be 0
// x < base_wx * base_wx <-- cannot: a/c/e/g > 10 (i.e. a/c/e/g is 1 ... 9)
// !(w == x || ... <-- all combination of digits have to be different
// vis[x] || ... <-- and not already in
}
int use_wx(int wxyz) {
int z = wxyz % base_wx;
int wxy = wxyz / base_wx;
int y = wxy % base_wx;
int wx = wxy / base_wx;
int x = wx % base_wx;
int w = wx / base_wx;
return valid_wx(wxyz)
&& (vis_wx[w] = 1)
&& (vis_wx[x] = 1)
&& (vis_wx[y] = 1)
&& (vis_wx[z] = 1); //seperate = =
// implicit if valid
// update 2 pos
}
void unuse_wx(int wxyz) {
int z = wxyz % base_wx;
int wxy = wxyz / base_wx;
int y = wxy % base_wx;
int wx = wxy / base_wx;
int x = wx % base_wx;
int w = wx / base_wx;
vis_wx[w] = 0; //seperate = =
vis_wx[x] = 0;
vis_wx[y] = 0;
vis_wx[z] = 0;
}
void test_vis_wx(int i)
{
printf("\nvis_wx[%d] is %d with base_wx %d \n", i, vis_wx[i], base_wx);
}
void reset_wx() {
memset(vis_wx, 0, (sizeof(int*) * base_wx)); // sizeof(vis_wx)); memset only those affected; outside not count
//w=4 but the uniqueness require array size still based on base
vis_wx[1] = 1; // ?? v meant but 1 is used whatever the base
// test_vis_wx(1);
// test_vis_wx(0);
// test_vis_wx(base_wx - 1);
}
// display formula
char *digit_g_wx = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/";
void printInt_wx(int x){
// quick hack, not work for x = 0
if( x == 0 ) return;
int t = x%base_wx;
printInt_wx(x/base_wx);
printf("%c", digit_g_wx[t]);
}
void print_wx(int a, int b, int c, int d){
int e = a - b + d; // a - b (= c) + d
printInt_wx(a); printf("-"); printInt_wx(b); printf("="); printInt_wx(c); printf(", ");
printInt_wx(c); printf("+"); printInt_wx(d); printf("="); printInt_wx(e); printf(" => "); // not line break
}
void printInt2_wx(int wxyz){
// quick hack, not work for x = 0
if( wxyz == 0 ) return;
int z = wxyz % base_wx;
int wxy = wxyz / base_wx;
int y = wxy % base_wx;
int wx = wxy / base_wx;
int x = wx % base_wx;
int w = wx / base_wx;
printf("%2d~%2d~%2d~%2d", w, x, y, z); // %*d then 2, w ...
}
void print2_wx(int a, int b, int c, int d){
printInt2_wx(a); printf(" - "); printInt2_wx(b); printf(" = "); printInt2_wx(c); printf(", ");
printInt2_wx(c); printf(" + "); printInt2_wx(d); printf(" (base 10) ="); // not line break
}
int main_wx(int base_wx_in, int width_wx_in) {
// printf("\nbase_wx_in_wx is %d \n", base_wx_in_wx);
if (base_wx_in > MAXBASE) {
printf("\nbase input is %d and exceed maximum base %d allowed \n", base_wx_in, MAXBASE);
return 1;
}
base_wx = base_wx_in;
// printf("\nbase_wx is %d \n", base_wx);
// see http://stackoverflow.com/questions/6792235/declaring-global-variable-array-inside-a-function-in-c
// http://forum.codecall.net/topic/51010-dynamic-arrays-using-malloc-and-realloc/
/* no need unless use dynamic array
vis_wx = (int *)malloc(sizeof(int*) * base_wx);
// seems need (int *); should not be under c99
// side same different width ...
if (vis_wx ==NULL) {
printf("Error allocating memory!\n"); //print an error message
return 1; //return with failure
}
*/
/*
vis_wx[0] = 90;
vis_wx[base_wx - 1] = 99;
test_vis_wx(0);
test_vis_wx(base_wx - 1);
vis_wx[0] = 0;
vis_wx[base_wx - 1] = 0;
test_vis_wx(0);
test_vis_wx(base_wx - 1);
*/
clock_t tick_l;
int cnt_l = 0;
int a_wx, b_wx, c_wx, d_wx;
int base11111 = (1 * ( base_wx * base_wx * base_wx * base_wx
+ base_wx * base_wx * base_wx
+ base_wx * base_wx
+ base_wx
+ 1));
tick_l = clock();
reset_wx();
for (a_wx = START_A_B_wx * base_wx * base_wx * base_wx;
a_wx < (base_wx * base_wx * base_wx * base_wx );
a_wx++)
// a cannot be 0xxx, 1xxx and 1xxxx, start from 2 * base ** (width - 1)
if (use_wx(a_wx)) { //try to use a
for (b_wx = START_A_B_wx * base_wx * base_wx * base_wx;
b_wx < a_wx;
b_wx++) // a > b to avoid c < 0 and b go into a
if (use_wx(b_wx)) {
c_wx = a_wx - b_wx; // you do not need to loop over c and d
d_wx = base11111
- c_wx; //??? need a loop
// a - b = c + d = p = 11111 (base at width 4)
// fixed a, b then c, d is fixed by logic
if (use_wx(c_wx)) {
if (use_wx(d_wx)) {
if (cnt_l < MAX_SOL_TO_PRINT_wx) {
printf("%*d: ", 2, cnt_l + 1);
print_wx(a_wx,b_wx,c_wx,d_wx);
print2_wx(a_wx,b_wx,c_wx,d_wx);
printInt_wx(base11111);
printf(" (%d) \n",
base_wx); //??? need a better print one
}
cnt_l++; // need that for those time you cannot print all
unuse_wx(d_wx);
}
unuse_wx(c_wx);
}
unuse_wx(b_wx);
}
unuse_wx(a_wx); // if used(ab) unuse it
}
tick_l = clock()-tick_l;
printf("time used: %f\n", ((double)tick_l)/CLOCKS_PER_SEC);
// printf("MAX_SOL_TO_PRINT: %d\n\n", MAX_SOL_TO_PRINT_wx);
printf("number of solutions: %d\n\n", cnt_l);
// free(vis_wx); dynamic array only
return 0;
}
|
the_stack_data/154791.c | #include <stdio.h>
int main() {
float s,t,e;
scanf("%f",&s);
if(s<=2000) printf("Isento\n");
else if(s>2000)
{
if(s-2000<=1000) t=(s-2000)*8/100.00;
else if(s-2000>1000&&s-2000<=1500) t=8*1000/100.00+(s-3000)*18/100.00;
else if(s-2000>1500) t=8*1000/100.00+1500*18/100.00+(s-4500)*28/100.00;
printf("R$ %.2f\n",t);
}
return 0;
}
|
the_stack_data/68886524.c | /*
* Test R5900-specific three-operand MULT and MULT1.
*/
#include <stdio.h>
#include <inttypes.h>
#include <assert.h>
static int64_t mult(int32_t rs, int32_t rt)
{
int32_t rd, lo, hi;
int64_t r;
__asm__ __volatile__ (
" mult %0, %3, %4\n"
" mflo %1\n"
" mfhi %2\n"
: "=r" (rd), "=r" (lo), "=r" (hi)
: "r" (rs), "r" (rt));
r = ((int64_t)hi << 32) | (uint32_t)lo;
assert((int64_t)rs * rt == r);
assert(rd == lo);
return r;
}
static int64_t mult1(int32_t rs, int32_t rt)
{
int32_t rd, lo, hi;
int64_t r;
__asm__ __volatile__ (
" mult1 %0, %3, %4\n"
" mflo1 %1\n"
" mfhi1 %2\n"
: "=r" (rd), "=r" (lo), "=r" (hi)
: "r" (rs), "r" (rt));
r = ((int64_t)hi << 32) | (uint32_t)lo;
assert((int64_t)rs * rt == r);
assert(rd == lo);
return r;
}
static int64_t mult_variants(int32_t rs, int32_t rt)
{
int64_t rd = mult(rs, rt);
int64_t rd1 = mult1(rs, rt);
assert(rd == rd1);
return rd;
}
static void verify_mult_negations(int32_t rs, int32_t rt, int64_t expected)
{
assert(mult_variants(rs, rt) == expected);
assert(mult_variants(-rs, rt) == -expected);
assert(mult_variants(rs, -rt) == -expected);
assert(mult_variants(-rs, -rt) == expected);
}
int main()
{
verify_mult_negations(17, 19, 323);
verify_mult_negations(77773, 99991, 7776600043);
verify_mult_negations(12207031, 305175781, 3725290219116211);
assert(mult_variants(-0x80000000, 0x7FFFFFFF) == -0x3FFFFFFF80000000);
assert(mult_variants(-0x80000000, -0x7FFFFFFF) == 0x3FFFFFFF80000000);
assert(mult_variants(-0x80000000, -0x80000000) == 0x4000000000000000);
return 0;
}
|
the_stack_data/155419.c | /*
** my_strcpy.c for in /home/habi/Piscine1/C/Jour04/my_strcpy
**
** Made by HABI Acal
** Login <[email protected]>
**
** Started on Thu Sep 28 10:03:47 2017 HABI Acal
** Last update Thu Sep 28 10:03:49 2017 HABI Acal
*/
char *my_strcpy(char *dest, char *src)
{
int i;
i = 0;
while (*(src + i) != '\0')
{
*(dest + i) = *(src + i);
++i;
}
*(dest + i) = '\0';
return (dest);
}
|
the_stack_data/72013273.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define INITIAL_BUFFER 16
struct StringBuilder {
char* buffer;
size_t buffer_length;
size_t position;
};
struct StringBuilder* make_sb(void)
{
struct StringBuilder* this = (struct StringBuilder*)malloc(sizeof(struct StringBuilder));
this->buffer_length = INITIAL_BUFFER;
this->buffer = malloc(this->buffer_length);
this->buffer[0] = '\0';
this->position = 0;
return this;
}
static void sb_ensure_size(struct StringBuilder* this, size_t length)
{
size_t size = this->position + length + 1;
if (this->buffer_length > size) {
return;
}
char* old_buffer = this->buffer;
while (this->buffer_length < size) {
this->buffer_length *= 2;
}
this->buffer = malloc(this->buffer_length);
memcpy(this->buffer, old_buffer, this->position + 1);
free(old_buffer);
}
void sb_append(struct StringBuilder* this, const char* s)
{
size_t length = strlen(s);
sb_ensure_size(this, length);
memcpy(this->buffer + this->position, s, length + 1);
this->position += length;
}
void sb_append_long(struct StringBuilder* this, long l)
{
sb_ensure_size(this, 10);
int written = sprintf(this->buffer + this->position, "%lu", l);
this->position += written;
}
void sb_append_double(struct StringBuilder* this, double d)
{
sb_ensure_size(this, 24);
int written = sprintf(this->buffer + this->position, "%f", d);
this->position += written;
}
const char* sb_string(struct StringBuilder* this)
{
const char* s = this->buffer;
free(this);
return s;
}
|
the_stack_data/43888681.c | #include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
char *v[3];
char *command;
if (argc < 2)
{
printf("Please type a file name.\n");
return 1;
}
v[0] = "/bin/cat";
v[1] = argv[1];
v[2] = NULL;
command = malloc(strlen(v[0]) + strlen(v[1]) + 2);
sprintf(command, "%s %s", v[0], v[1]);
// Use only one of the followings.
execve(v[0], v, NULL);
return 0;
}
|
the_stack_data/34862.c | //
// main.c
// P1
//
// Created by Breezewish on 13-10-31.
// Copyright (c) 2013年 Breezewish. All rights reserved.
//
#include <stdio.h>
#define PI 3.1415927
int main(int argc, const char * argv[])
{
float r = 0.0, h = 0.0;
printf("Please input R and H:\n");
printf("r=");
scanf("%f", &r);
printf("h=");
scanf("%f", &h);
printf("\nCalculate result:\n");
printf("C(circle)=%.2f\n", 2*PI*r);
printf("S(circle)=%.2f\n", PI*r*r);
printf("S(sphere)=%.2f\n", 4*PI*r*r);
printf("V(sphere)=%.2f\n", PI*r*r*r/3.0);
printf("V(cylinder)=%.2f\n", PI*r*r*h);
return 0;
}
|
the_stack_data/242330298.c | #include <stdio.h>
#include <stdlib.h>
#include <sqlite3.h>
static int callback(void *data, int argc, char **argv, char **azColName){
int i;
fprintf(stderr, "%s: ", (const char*)data);
for(i = 0; i<argc; i++) {
printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
}
printf("\n");
return 0;
}
int main(int argc, char* argv[]) {
sqlite3 *db;
char *zErrMsg = 0;
int rc;
char *sql;
const char* data = "Callback function called";
/* Open database */
rc = sqlite3_open("test.db", &db);
if( rc ) {
fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db));
return(0);
} else {
fprintf(stderr, "Opened database successfully\n");
}
/* Create merged SQL statement */
sql = "UPDATE COMPANY set SALARY = 25000.00 where ID=1; " \
"SELECT * from COMPANY";
/* Execute SQL statement */
rc = sqlite3_exec(db, sql, callback, (void*)data, &zErrMsg);
if( rc != SQLITE_OK ) {
fprintf(stderr, "SQL error: %s\n", zErrMsg);
sqlite3_free(zErrMsg);
} else {
fprintf(stdout, "Operation done successfully\n");
}
sqlite3_close(db);
return 0;
}
|
the_stack_data/457117.c | #include<stdio.h>
void main()
{
char c;
printf("Enter a Roman letter to convert to decimal value:\n");
scanf("%c", &c);
switch(c)
{
case 'I': printf("One or 1.\n");
break;
case 'V': printf("Five or 5.\n");
break;
case 'L': printf("Fifty or 50.\n");
break;
case 'X': printf("Ten or 10.\n");
break;
case 'C': printf("Hundered or 100.\n");
break;
case 'D': printf("Five hundered or 500.\n");
break;
case 'M': printf("Thousand or 1000.\n");
break;
default: printf("Invalid Roman letter.\n");
break;
}
}
|
the_stack_data/79835.c | #include <stdio.h>
#include <stdlib.h>
void max(long int x,long int* arr)
{
if(arr[x/2]==-1)
max(x/2,arr);
if(arr[x/4]==-1)
max(x/4,arr);
if(arr[x/3]==-1)
max(x/3,arr);
arr[x]=x>arr[x/2]+arr[x/3]+arr[x/4]?x:arr[x/2]+arr[x/3]+arr[x/4];
}
int main(void) {
// your code goes here
long int num;
while(scanf("%ld", &num) != EOF){
long int* arr=(long int*)malloc(sizeof(long int)*(num+1));
max(num,arr);
printf("%ld\n",arr[num]);
}
return 0;
} |
the_stack_data/159516612.c | /* GIMP RGBA C-Source image dump (phase_225.c) */
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[80 * 80 * 2 + 1];
} phase_225 = {
80, 80, 2,
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\201\20\0"
"\0\3!\242\20$!d)\6B\250Z\0\0$!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\3!HJ\15\204.\204\20\2451\255\320\234N\214\217\224-\204N\214\360\234"
"\314{N\214\3069\311Z\3059\3059\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2051\254s\320\234\223"
"\265r\2651\255\222\265\222\265r\2551\255R\2551\245\320\234Q\255n\214o\224"
"*k\213s\314\203\3059\212{\2051\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\10\210R\320\234\223\265\364\305\323\275"
"\262\275\262\275\222\275q\265\221\275\263\275r\2651\255\20\245\222\265r\265"
"n\224\360\244-\214\317\234m\224)kJs\351b&J\2!\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\10N\214\24\306U\316\24\316\363\315\23\316"
"\362\305\322\305\261\305\322\305\322\305\262\305\17\255/\255p\265\17\255"
"q\2650\265\256\234\20\255\256\234\216\234\314\203\253{js\212s)k&J\2459\3"
"!\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0n\2245\316u\326\225\336"
"t\326\322\305S\326\261\305\322\305q\275P\265P\265\17\255\17\255\357\244\357"
"\254\357\254\216\234\216\234\256\234m\224\317\244\216\234M\224-\224\354\203"
"\313\203\212{JsgRgRD)\342\30\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\10gR\221"
"\275\225\336t\336\224\3363\3263\326\362\315\261\305\322\305\322\305p\265"
"P\2650\2550\255\357\254\357\244\17\255\357\244\256\234\256\234\256\234\216"
"\234M\224\216\234-\214\14\214\354\203\253{\253{Js\11k\250Z\207Rd)\302\30"
"\40\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0\317\244p\265S\326t\3363\326\261\275\261\275"
"\221\275\221\275P\265\362\315\362\315\221\275\322\305\221\275P\265\261\305"
"\221\275\221\275\17\255/\255\357\244\317\244\256\244\256\234\216\234m\224"
"\14\214\14\214\354\203\313\203*k\11k\250ZgR\6J\2459\201\20#!\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\3059\20\255\221\275\322\305\362\315\262\305\221\275\362\315\362\315\22"
"\3163\326T\336\362\315\362\315\362\305\261\305\322\315T\3263\326p\265P\265"
"p\265p\275\221\2750\265\317\244\357\244n\234\256\244M\224,\214M\224\313\203"
"\253{js\11c\250Z\210ZGR\2041\342\40\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0)k\221\275\262\275\262\275"
"\262\305q\265q\265\221\275S\326t\336\224\346\22\316\22\316\22\316\362\315"
"\362\315\221\275q\265\222\275\322\305q\275\20\255q\275\321\305\262\305P\265"
"q\275\20\255\256\244\256\234\216\234\216\234\317\244\14\214\253{\213{js\310"
"Z\350b\310Z\345A\2041\0\0\0\0\0\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\40\0\360\244Q\265\262\275\262\275\322\305\262\275"
"\322\305\362\305t\326\224\336\264\346\325\346S\3263\326S\326\221\275q\275"
"q\265Q\265P\265\221\275Q\265\20\2550\265\261\275\221\275q\275\221\2750\265"
"\357\244\316\244\357\244\316\244\216\234,\214M\214\313\203\313\203Jk\11c"
")k\310b\6B\346A\2041\6B\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\40\0M\224\222\275q\275\222\275\322\305\362\315\322\305S\326\224"
"\336\224\336\325\346\23\326\323\315\322\305\262\305\262\3051\265Q\265Q\265"
"Q\2651\265Q\265Q\265\20\2550\2550\265P\265\221\275\221\275\261\305P\265\17"
"\255\20\255\357\244q\265\256\244\216\234\354\203\313\203\253{Js)k\350b\207"
"R\311b\3!\3!\40\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0"
"\213{\222\275Q\265r\275\262\305\222\275\262\275\322\305s\326\224\336\224"
"\336\224\336\222\305\222\275\222\275\222\275Q\2550\2550\255Q\265Q\2651\265"
"1\265Q\265\360\2540\2650\2550\255\23\316q\275\261\305\221\275P\2750\255\317"
"\244\17\255\357\254\256\244\14\214\354\213\314\203jsJk)k\250Z\207RC)\302"
"\30\40\10\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)kQ\265r\275"
"r\275\222\275\222\305\222\305\262\2753\326S\326S\326\224\336\363\315\262"
"\275q\265q\265\221\275q\265P\255Q\265Q\265Q\265Q\265Q\2651\265\20\2551\265"
"Q\265Q\265\221\2750\265\221\275\221\275\261\305\357\2540\265\17\255\17\255"
"\256\244M\224-\214\313\203\212{\14\214\212s\350b&J\2041C)\40\0\40\10\40\0"
"\40\0\40\0\0\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0gRq\275q\275r\275\262\275\222\275\262"
"\305\222\275\363\305t\336S\3263\3263\326\262\305\262\275Q\2651\265Q\265Q"
"\265Q\265q\265Q\265Q\265r\275q\2651\2651\265Q\265q\265q\265p\265P\265\221"
"\275p\265\221\275\261\275\256\244\17\255\17\255\317\244\216\234-\214\313"
"\203\253{\313\203jsJk\250Z\6B\2441`\10\40\0\40\0\40\0\40\0\40\0\40\0\40\0"
"\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0#)q\275\262\275\222\275\222\305\262\305\262\275\323\305\263\305"
"3\316T\3263\3263\326\323\305\262\305\322\275\221\2751\2651\255Q\265q\265"
"\221\265Q\265q\275r\275q\2751\265Q\265q\265\221\275\221\275q\265q\265\221"
"\265\221\275\23\316\322\305\316\244\317\244\317\244\357\244\216\234-\214"
"\314\203\313{\213{jsJs\310ZGJgR\241\30\342\40\241\20\40\0\40\10\40\0\40\0"
"\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\302\30\360\254q\275\222\275\323\305\262\305\323\305\323\305"
"\323\305\363\305\23\316\23\3164\326\363\305\322\305\322\305\323\305\262\275"
"\222\275q\265Q\265\221\265\221\275\221\275r\275r\275Q\2751\265Q\265\221\275"
"q\275q\275q\275q\265P\265\221\275\362\3150\265\317\244\216\234n\224\216\234"
"n\234M\214\14\214\314\203\213s\213{\250Z\351b\210Z\207Rd1\201\20\3!\40\10"
"\40\10\40\0\40\10\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0n\224\222\275\262\305\262\305\323\305\323\305"
"\363\305\363\315\363\315\363\305\363\315\363\315\363\315\322\275\363\305"
"\323\305\322\305\262\275\322\275\222\275\221\265q\265\222\275\222\275r\275"
"Q\275R\265Q\265Q\265\221\275q\275\221\275\261\275q\2750\265P\265\221\275"
"\17\255\217\234n\234N\224M\224M\224-\214\354\203\354\203\253{\213{\253{\11"
"c\351b\345A\345Ac)\241\20@\10\40\10\40\10\40\10\40\0\40\0\40\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\310Z\221\275\322"
"\305\322\305\262\275\363\305\363\305\363\315\363\315\363\315\363\315\323"
"\315\363\315\363\305\363\305\23\316\323\305\322\275\262\275\262\275\221\275"
"\262\275\221\275\262\275\262\275\221\275r\275Q\265Q\265Q\265Q\265\221\275"
"\262\275\322\305\221\275Q\2650\255P\265\20\255\217\234\216\234N\224N\224"
"\15\214\15\214\354\203\314\203\213{\314\203\14\214\213{*k\212{\2041\3059"
"\342\30\0\0@\10@\10@\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\10Q\265q\265\363\305\262\275\262\305\363"
"\305\23\316\24\316\364\315\363\315\363\315\364\315\23\316\363\315\363\315"
"\363\315\363\305\322\305\322\305\262\275\262\275\262\275\222\275\322\275"
"\262\275\222\275\222\275q\265Q\265Q\265q\275\221\275\262\305\322\305\222"
"\275q\2650\265\20\255\317\244\257\234\216\224n\224N\224\15\214\355\203\355"
"\213\314{\213{\354\203\14\214,\214Js\354\203gR\212s\3459\2041@\10\40\10\40"
"\10\40\10\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0Jk\363\315\323\305\322\305\262\275\323\305\23\3163\316\363\315"
"4\326\23\316\363\315\363\315\24\316\24\316\363\315\23\316\363\305\363\305"
"\363\305\322\305\322\305\262\275\262\275\363\305\262\275\222\275r\275r\275"
"\222\275\322\305\262\275\221\275\262\305\322\305\262\305q\265P\265\20\255"
"\257\234\317\234\216\234n\224N\224\15\214\15\214\355\213\314\203\253{\213"
"s\314\203\354\203Jsjs\213{\14\214\250Zd)@\10@\10@\10@\10\40\10\40\0\40\0"
"\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\10\322\305\24"
"\316\23\316\322\305\262\305\363\3053\3164\316T\336T\3264\326\24\316\23\316"
"4\3164\316\24\316\23\316\363\305\23\316\363\315\363\305\363\305\322\305\322"
"\275\363\305\262\275\363\315\262\305\222\275\322\305\23\316\322\305\262\305"
"\262\275\261\275\262\305\261\275q\275\20\255\317\244\317\234\257\234n\224"
"n\224.\224\15\214\355\213\354\203\253{\213sksks\354\203js\213{\11c\310Z\204"
"1@\10@\10@\10\40\10\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\351b\363\315\23\316\322\305\363\305\322\305\23\3164"
"\316T\326\325\346T\326u\336T\3264\3164\3163\316\23\316\23\316\323\305\363"
"\305\23\316\363\305\322\305\322\305\322\305\363\305\262\305\23\316\323\305"
"\322\305\23\3163\326\23\326\362\305\262\275q\265q\265\362\305\261\275\20"
"\255\317\244\317\234\257\234n\224n\224N\224.\224\15\214\354\203\314{\253"
"{ksJsM\224\253{\213s\250Z\207Z\6B\201\20@\10@\10\40\0\40\0\40\0\40\0\40\0"
"\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\20\322\305T\326\363\305"
"\323\305\323\305\263\3054\316T\326\366\356\26\357\225\336u\3364\3264\316"
"4\316\23\316\363\305\24\316\363\305\363\305\23\316\363\315\363\305\323\305"
"\363\305\323\305\262\305\263\305\262\305\322\275\23\316\23\3163\326\22\316"
"\363\315\322\305q\265\362\305\261\3050\265\357\244\257\234\256\234\216\234"
"\216\224N\224N\224-\214\354\203\314{\253{ks\213{\213{\212s\313\203\350b\250"
"Z\6B\241\20\40\0\40\10\40\0\40\10\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\314{3\326T\326\363\305\363\305\263\305\363\305"
"4\316\225\3367\367\26\357\225\336T\3264\3263\3163\316\23\316\24\316T\326"
"4\326\23\316\23\316\363\315\363\315\323\315\323\305\263\305\262\305\263\305"
"\262\305\262\275\262\275\322\305\363\3153\3163\326\23\316\362\315\22\316"
"\262\275\20\255\357\244\317\234\216\224\257\234\216\234N\224n\224-\214\354"
"\203\314{\253{ks\314{\253{Js)k\207Z\310Z\207Z\40\0\241\20\40\10\40\10\40"
"\10\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3"
"\326\23\3164\3164\316\263\305\323\305\23\316T\316\265\346u\336T\336u\336"
"T\3264\316T\316T\3164\316T\326t\336T\336\24\316\24\316\323\315\24\316\363"
"\315\323\305\323\305\263\305\263\305\322\305\262\275\262\275\222\275\222"
"\2753\326S\326\322\305S\326\362\315\221\2750\265\256\234\317\234\257\234"
"\257\234\216\224n\224n\224-\214\354\203\314\203\253{\213sks\14\214\212{\351"
"b\310ZGJ\310Z\0\0\2459\0\0@\10\40\0\40\0\0\0\0\0\0\0\40\0\40\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0'J\225\336\363\305\23\316\363\305\262\275\323\3054"
"\3164\316T\326T\326T\326U\326t\3264\326T\3263\316T\326T\326T\336T\326\24"
"\326\24\326\363\3154\326\363\315\323\315\323\315\323\315\323\305\323\305"
"\262\305\222\275\222\275\322\3053\3163\326\23\316\362\315\262\305Q\265Q\265"
"\317\244\257\234\357\244\216\234n\224\216\234N\224-\214\14\204\354\203\314"
"{\213sJs\213{\354\203Js\311bgR\310ZD)\6B#)@\10\40\0\40\0\40\0\40\0\0\0\0"
"\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\316\225\336\323\305\363\315\222"
"\275\262\275\323\305\24\316\24\316T\3264\326T\326t\326u\336T\3264\3164\326"
"T\3264\3264\3264\326T\336T\336\24\326\363\315\363\315\23\316\24\316\363\315"
"\363\315\23\316\323\305\362\305\363\3153\3263\3263\316\322\305\262\305\262"
"\2751\265\360\254\360\254\257\244\317\244\216\234\216\234\216\234N\224M\214"
"\14\204\354\203\314{\213s\213{\253{\313{\11k\310Z\210ZC)&J\2041\345A@\10"
"\40\0\40\0\40\0\40\0\0\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\366\356"
"4\326\363\305\323\305\262\275\262\305\323\305\363\315\24\3164\3164\326\24"
"\326t\326\225\336t\336T\326T\326t\326u\336\225\336\225\336\265\346\265\336"
"4\3264\3264\326T\326t\326T\326T\326\23\316\363\3153\326S\326\23\316S\326"
"\23\316\322\305q\275\222\275Q\2651\265\360\244\360\254\20\255\216\234\357"
"\244\317\244n\224n\224\14\214\354\203\354\203\253{ksks*k\311Z\250ZhR\6J\245"
"9\2459\3!@\10\40\10\40\0\0\0\40\0\0\0\0\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0"
"\0D)6\3674\326\363\305\323\305\323\305\263\305\263\305\23\316\363\3054\316"
"T\3264\326u\336u\336\265\346T\326\24\316T\336\265\3466\367\325\346\325\346"
"\325\346\325\346\265\346\265\346\225\336\225\336\225\336T\326\23\316\23\316"
"\363\315\23\3163\316\363\315\322\305Q\2651\2651\2550\2551\255q\265q\265\20"
"\255\317\2440\255\357\254\317\244\216\234M\224\15\214\354\203\253{ks*k*k"
"Jk\210R\210RgR'J\2449#)\302\30@\10\40\0\40\0\40\0\40\0\0\0\0\0\40\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\213{\325\356T\326\363\315\363\305\323\305\263\305\263"
"\305\323\305\363\305T\326T\326T\326\225\336u\336\265\346T\326T\326\225\336"
"\265\346\26\357\365\356\265\346\25\357\26\367\26\357\325\356\264\336\225"
"\336\265\3463\3263\326\323\315\262\305\23\316\262\275\262\275\262\275Q\265"
"Q\265Q\265\20\2550\255\262\275\322\305\20\245\357\244\20\255\357\244\217"
"\234n\224M\214\15\204\354\203\213{\213s*k*k\351b\351bGJ\6BGJ\201\20\201\20"
"\2041@\10\40\0\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\362"
"\305\366\356u\336\24\316\363\305\263\305\263\305\323\305\363\315\363\315"
"T\326T\326t\326u\336\225\346\225\336\225\336T\3264\326\366\356\26\3676\367"
"\25\357\366\3566\367w\377\365\356\325\346\265\346u\336t\336T\326\363\315"
"\323\305r\275\20\255Q\265\222\275q\275Q\265Q\2550\255\20\255\20\255\20\255"
"\20\255P\265Q\265\357\254\216\224M\224-\214\15\214\354\203\213{\213sJsJk"
"\311b\250Z\210R\346A\3059\342\30a\10#)@\10\40\10\40\0\0\0\0\0\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\365\3567\367\225\336\23\316\323\305\323\305\323"
"\305\323\305\363\315\23\316\363\315\323\315u\326u\336\26\357\326\346\326"
"\346T\326T\326\265\346\26\367W\367\26\357\26\367\331\377\372\377\365\356"
"\325\346\265\336\225\336t\3263\316\363\305\363\305\222\275Q\265\222\275\363"
"\305\262\305q\2651\255\20\255\320\244\360\244\360\244\20\255q\265P\265\357"
"\244n\224M\224N\224-\214\254{\314{\314{Js\351b\351b\250ZgR\3069\345A\3!\343"
"\40\40\10@\10\40\10\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\343"
"\30w\377w\377\365\356\23\316\363\305\363\315\363\315\323\305\363\305\363"
"\315\363\315\364\315\225\326\366\346W\3676\357\366\356u\326u\336\265\346"
"\326\346\366\356\26\357\270\377\372\377\371\3776\367\265\346\225\336t\336"
"T\3264\326\363\305\363\305\222\275\323\305\23\316\363\315S\326\322\305q\275"
"Q\265\20\255\360\254\360\254q\275\221\275\317\244\317\244\257\244n\224M\214"
"\14\204\314{\214{\254{Jk*k\351b\250Z\210RGJD)d1\0\0\342\30@\10\40\10@\10"
"\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\2451\331\377\227\377\26\357"
"T\326\23\316T\326\23\316\24\316\23\316\363\315\363\315T\326\225\336\26\357"
"w\377v\377\366\356\225\336u\336\225\336\265\336\325\346\366\356\365\356\26"
"\367\366\356\265\336\225\3364\326T\326T\3364\326\262\275\322\305\363\305"
"\23\316t\3363\326\23\316\362\315\322\305\222\275q\275Q\2650\255\221\275\261"
"\275\221\2750\255\317\244\257\234M\214\14\204\354\203\254{ks*k\12k\11c\251"
"Z\210R'J&B\3059\40\10\40\0\40\0\40\10@\10\40\10\40\0\40\0\40\0\0\0\40\0\0"
"\0\0\0\0\0\0\0gR\372\377\227\3777\367u\326\363\305T\326\364\315\24\316\23"
"\3164\3164\326t\326\225\336\366\356\26\367V\367\326\346\225\346\226\346\225"
"\336\326\356\366\356\366\356\326\346\325\346\225\336\225\3364\326\363\315"
"\24\3164\316\323\305\222\275\262\275\322\3053\326\325\346S\326S\326\23\316"
"\23\316\362\315\222\275\221\275\322\305\322\305\322\305\221\275q\275\317"
"\244\217\234.\224N\224\354\203\254{ksJsJk\12k\311Z\250Z'JGJ\3!a\10\40\0\40"
"\0\40\0\40\10\40\0\40\10\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\14\204\330\377"
"\270\377w\377\265\346\363\315\363\305\363\315\23\316\363\305\23\316\363\305"
"4\326u\336\225\346\366\3567\367t\336\225\336\265\346\325\346\326\356\326"
"\346\366\356\366\356\225\336\225\336t\3364\326\323\305\363\315\24\316\363"
"\305\262\275\322\305\263\305\24\326\363\315S\326\363\315\22\316\224\336t"
"\3362\316t\336S\3263\326\362\315\221\275P\265\317\244n\234-\214\15\214\354"
"\203\213{ksksJk\12k\351b\250ZgR\2459\2041\201\20\40\10\40\0\40\0\40\0\40"
"\0\40\0\40\0\40\0\0\0\40\0\40\0\0\0\0\0\0\0\221\265\371\377\270\377\330\377"
"\265\336\363\315\323\305\323\305\363\315\363\315T\326\23\316\23\316u\326"
"\225\336\225\336\366\346u\336u\336\225\336u\336\265\346\326\346\326\356\366"
"\356\325\346\225\336\225\336\363\3154\326\24\326\23\316\23\316\262\275\322"
"\305\262\305\323\305\23\3163\3163\3263\326S\3263\326\23\316t\336\26\357\265"
"\336\362\315\261\305P\265\20\255n\224\15\214\15\204\254{\254{\253{ksJsjs"
"\11c\351b\210Rd1d1\201\20\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\216\234\330\377\330\377\270\377u\3364\316\323\305\323"
"\305\363\315\364\315\363\315\363\315\363\315T\326\265\336\325\346\225\336"
"T\326U\336U\336u\336\265\346\265\346\325\346\365\356\366\356\265\346u\336"
"4\326\24\316\363\315\363\315\363\315\323\305\363\305\323\315\262\305\262"
"\305\262\305\363\305\23\316S\326\224\346t\336\265\346\365\356\325\3463\326"
"\362\315\17\255\221\275\357\244-\214\354\203\354\203\354\203\213s\213sks"
"jsJs\351bGJ\6J\2459d1\40\0\40\0\40\0\40\0\0\0\40\0\40\0\40\0\40\0\40\0\0"
"\0\0\0\0\0\0\0P\265\331\377\330\377\230\377u\336\23\316\323\305\363\305\23"
"\316\24\316\363\315\363\315\24\316\24\316T\326T\326U\336U\3364\326U\336u"
"\336t\336\225\336\265\346\326\356\225\346\366\356\265\346t\326\363\315\363"
"\315\363\315\363\315\363\315T\3263\3163\316\322\305\222\305\363\305\23\316"
"t\336\265\346\224\346t\336S\326t\336\23\326\362\315\221\305P\265\357\244"
"n\224-\214\15\204\354\203\254{\253{ks\313\203\313\203\351b\11c\6J\346A\342"
"\30\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0q\265"
"\227\377\372\377w\377\225\3364\316\24\316\323\305\323\305\363\315\363\315"
"\363\305\323\305\363\315\24\3164\316T\326\225\336T\326t\326U\326u\336u\336"
"u\336\225\336U\336u\336\265\336t\336T\3264\326\363\3153\3164\326\224\336"
"\224\336t\336\23\316\322\305\23\316S\326\264\3463\326S\326\224\346\23\326"
"3\3263\326\363\315\23\326\221\275p\265P\265\216\234-\224\15\214\313{\253"
"{\213{\14\214Jk\253{\11c\3059\2459a\10\40\0\40\0\40\0\40\0\40\0\40\0\40\0"
"\40\0\40\0\40\0\0\0\0\0\0\0\0\0P\2656\367\270\377\230\377\265\346T\326\323"
"\305\323\305\363\3154\326\363\315\364\315\323\305\24\3164\326\363\315\24"
"\316U\326U\326\225\336t\336\225\336u\3364\3264\3264\326T\336\265\336\225"
"\336t\336t\336T\326t\326t\336\224\336\265\346\224\336t\336t\3263\326S\326"
"S\336\224\346\224\336\264\3463\3263\326\23\326\23\326\322\315\261\305\221"
"\275\222\2750\265\256\244M\224\314\203\213{\314\203\14\214\212{js\207RgR"
"\2041\302\30\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0"
"\0\0\0\221\265\227\377\330\377\366\356W\367\225\336\323\305\323\3054\316"
"t\326\363\315\363\315\24\3164\3164\316\363\315\23\316T\326t\326T\336u\326"
"T\3365\3264\3264\326u\336t\336\265\346\265\346t\336T\336\224\336\26\3676"
"\357\264\346\365\356\264\336T\336\224\346t\326t\3363\326S\336t\336S\326S"
"\326\22\3163\326S\336\362\315\261\305\22\316\221\275P\265\316\244M\224\354"
"\203\14\214\14\204js\313\203)k\351bFJ\3459@\10\40\0\40\0\40\0\40\0\40\0\0"
"\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0-\204\270\377w\377u\336V\367\265\346"
"T\326\323\305\363\315T\326\23\3164\326\24\316\24\316\23\316\24\3164\326t"
"\326t\326t\326\225\346u\3364\326U\3264\326\265\346\265\336\265\346\265\336"
"T\3264\326T\326\365\3566\367\325\356\265\346\325\356\265\346\224\336\265"
"\346\224\336\224\336t\336t\326\264\346S\3363\326\22\316\261\3053\326\22\316"
"\363\305Q\265P\265\256\234-\224\14\214M\224m\224Ik)k\351b\310Z\310Z\345A"
"\40\10\40\0\40\0\40\0\40\0\40\0\40\0\0\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\305"
"9\267\377\270\377t\326\371\377\326\356u\336\24\316\323\3054\316\24\316\363"
"\315\363\315\24\316T\326t\3264\326u\326t\326u\336\365\346\26\357T\3264\316"
"u\326\225\336\265\336\325\346\325\346u\3364\3164\316\265\336\325\346\365"
"\346\365\356\365\346\224\346\265\346\224\346t\336t\336\264\346\365\356T\326"
"\325\346\23\326S\326\221\305\362\315T\326\363\305q\265\20\255\317\244m\224"
"M\224M\224M\224\354\203Js\11k\212{\2041\2041\302\30\40\0\40\0\40\0\40\0\40"
"\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\302\30\371\377w\377W\377\370"
"\377V\367\266\346T\326\23\316\363\3053\3164\316\363\315\24\316T\326T\326"
"T\326T\326u\336\225\346\326\346\265\346T\326\24\316T\326T\326t\336\325\346"
"\26\357t\326\363\305\363\305\23\326\224\336\325\346\264\346\224\336t\336"
"\224\336t\336\365\356S\3363\326\325\346t\326t\336\22\316\261\305\23\326\362"
"\3153\326T\3260\255P\2650\255\17\255\216\234M\224\14\214\253\203\253{Js\207"
"RFJ\3059\201\20\40\0\40\0\40\0\40\0\40\0\40\0\40\10\40\0\40\0\40\0\0\0\0"
"\0\0\0\0\0\302\30\330\377\227\377w\377\227\377W\377\366\356T\3264\3264\326"
"4\3264\3164\3164\316T\326t\326T\326\24\316U\326\225\336\325\346u\3364\316"
"4\3164\326\24\326\24\326t\336\265\346u\336\363\315\363\305\363\315T\326\265"
"\346\366\356\264\346S\326T\326t\336\261\305\23\316t\336S\326S\336\224\336"
"S\326S\326\23\3163\3263\326T\326q\265Q\265\221\265\20\255\317\244-\214\313"
"\203\213{)kJs\250Z\213{gR@\10\40\0\40\0\40\0\40\0\40\0\40\0@\10\40\0\40\0"
"\40\0\0\0\0\0\0\0\0\0\0\0\330\377W\377\270\377\270\377\230\377W\367u\336"
"T\326\366\346T\326u\326T\3264\326\326\346t\326T\326\364\3154\3164\326u\336"
"4\326T\3264\3164\316\24\326\24\316\24\326\225\336\265\336S\326\23\316\363"
"\315\225\336\264\346\264\346\264\346\224\336\224\336\224\336\23\3163\326"
"t\336\23\326S\326t\336S\326\22\316\23\316T\3263\316T\326r\265\322\3050\255"
"\20\255P\265,\214\14\214\213s\11k)k\310b\11cD)\0\0\40\0\40\0\40\0\40\0\40"
"\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0""0\255\227\377\230\377\270"
"\377\227\377\372\377\26\357u\336\26\357\225\336\225\336\265\346u\336\326"
"\346\225\346T\3264\3164\3163\316T\3264\326\24\316\24\316T\3264\326\24\316"
"4\3264\326\265\346T\326\363\315\323\3154\326\224\336\264\336\224\336\224"
"\336\224\336S\326t\336s\326\325\346S\3363\326S\336\22\3263\326T\326\363\315"
"\322\305\362\305\222\275Q\265\222\275\20\245\17\255,\214\313\203js)k\310"
"b\310Z\310b\2!\3!\40\10\40\0\40\0\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\310Z\227\377\330\377\270\377w\377\372\377W\377\26\357\366"
"\356\225\336\26\357\365\356\366\356\366\356\26\357\265\346\225\336\24\316"
"\363\305\23\3164\326t\336\325\346\265\3464\3264\326t\336\24\316t\336\23\316"
"\263\305\363\315T\3263\326\264\336\224\336\224\336\265\346s\336S\326\224"
"\336t\336S\3263\326t\336\23\326\363\3153\326\322\305q\275\221\275\262\275"
"\320\234\222\275\257\234\317\244,\214\313{Js\11c\310ZGJ\310bC)\2459@\10\40"
"\10\40\0\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D)\267\377\270"
"\377W\367W\377\227\377w\3776\3676\367\266\346\326\346\366\356\326\356\26"
"\357w\377\225\336\366\3464\316T\3264\316T\326\265\346\365\356\265\346\24"
"\326\24\3264\326\363\315\23\316\363\315\262\305\323\305\363\315\23\316\224"
"\336\265\346\264\346\325\356\224\336\23\326t\336\362\3153\326\224\336t\336"
"3\316\261\305\322\305\221\275\17\255\362\315\262\275\221\275\20\255\20\245"
"\256\234-\214\253{js\351b\250Z\310Z&Jd1C)@\10\40\10\40\0\40\0\40\0\40\0\40"
"\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3\316w\377V\377w\377\270\377w\377"
"V\3676\367\26\357\366\356\26\367\26\357V\367w\377\325\346\265\336u\336u\326"
"T\326\24\316\326\346\365\346T\336\24\326\364\3154\326\363\315\363\315\323"
"\315\323\305\322\305\262\305t\336\224\336\325\356S\336\366\356t\336\265\346"
"\325\346S\336S\326t\336t\336\23\326\322\315\322\305P\265\261\305\261\275"
"P\265Q\265Q\265\360\234\317\244\14\214\213{js\351b\250ZgR'Jd1C)\40\10\40"
"\0\40\0\40\0\40\0\40\0\40\0\0\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\354{\227"
"\377\227\377\370\377\370\377\270\377w\377v\3677\367V\367\330\377W\377\325"
"\346\325\346t\3364\3164\326u\326\225\336\265\346\325\346\325\346T\3264\326"
"\24\316\24\326\363\315\323\315\323\305\323\305\363\315\323\305\325\346\265"
"\346\265\346\365\356W\377t\336S\336\325\356\264\3463\3263\326\23\3163\326"
"\322\315\221\275\261\305\363\3150\265\20\255q\265\262\305Q\255\317\244,\214"
"\213{*k\311bGR\310Z&J\241\30\241\30\40\10\40\0\40\0\40\0\40\0\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2051\330\377\371\377\371\377\371\377\371"
"\377w\377V\3676\367W\377\371\377W\367T\3364\316\363\315\363\305\23\316\225"
"\336\26\357\225\346\325\346\265\336\225\336\326\346\24\326\24\316\363\315"
"\323\305\323\305\262\305\323\305\23\316\265\346\325\346\365\356\325\356\325"
"\356S\326\23\326T\336\265\346\362\315\362\315\23\316\22\316\23\326\221\275"
"\262\305\261\305\17\255\321\305\17\255q\275\17\255m\224n\224\212{)k\11c\207"
"RgR&Jd1\40\0\40\0\40\0\40\0\40\10\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0X\357\371\377\372\377\374\377\372\377\331\377\230\377W\367"
"\227\377\227\377\26\3574\326\363\305\363\305\323\305\23\316t\336\366\356"
"u\336t\336\225\336t\336\325\346T\326\363\315\23\316\363\315\363\305\323\305"
"\322\305\23\316t\336\224\3366\367\325\356t\336\264\346S\326S\326S\336\23"
"\316\22\316S\336\221\275S\326\23\316\322\3050\265\17\255q\275p\275\357\244"
"\316\244\257\234\253{\253{\354\203)k\250Z\2041C)\2!\0\0\40\0\40\0\40\0@\10"
"\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0kk\270\377\371\377"
"\374\377\374\377\373\377\371\377\330\377\227\377\270\377\366\356T\326\24"
"\316\24\316\263\305\323\305\23\316\225\336\225\3364\326\24\326\265\336t\326"
"4\326\323\305\363\305\363\305\322\305\323\305\323\305\363\3153\326T\336\365"
"\356\325\356\264\346\264\346\325\346t\3363\326S\326\326\346s\336\362\315"
"\23\316\362\305\261\3050\2650\265\216\234\363\305\317\2341\255\256\234\212"
"{\354\203\213{)k\207Z\207R\242\30\40\0\2459\40\10\40\10\40\10\40\0\40\0\40"
"\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\343\30\366\356\227\377\372"
"\377\375\377\373\377\372\377\330\377\327\377w\377W\367t\3364\326\24\316\363"
"\305\363\3153\3164\316t\336\225\336\24\326\224\336T\3264\326\323\305\363"
"\305\322\305\262\305\262\305\322\305\323\305\23\316\325\346\325\346\224\346"
"\325\356\266\346\366\356s\336S\326\325\346\326\346\224\3363\316\362\305\262"
"\305\322\305P\265\17\255\357\254\262\275\21\255\257\234\317\244\14\214\14"
"\204Js\11k\3059\207RD)@\10C)\40\10\40\10\40\10\40\0\40\0\40\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0\216\224\270\377\330\377\373\377\372"
"\377\270\377\330\377\372\377\270\377W\367\265\3464\3264\316\23\316\23\316"
"4\326\225\336u\336\265\3464\3264\326t\3364\326\23\316\363\305\262\305\322"
"\305\263\305\363\305\363\315\22\316\365\356\366\356\26\357\26\357\367\356"
"\366\346\325\346\325\346\265\346\266\346\326\346\23\316\362\305\322\305q"
"\275p\265\256\244\262\275\20\245\360\244m\224m\224n\224\14\204\313\203\351"
"b\3!\213s\3059@\10\0\0@\10\40\10\40\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3069\331\377\227\377\270\377\371\377\330\377"
"\227\377\372\377\372\377w\3776\367\265\346t\336\363\3154\3264\326\325\346"
"\325\346\225\336T\336\24\316t\336\265\3464\326\363\315\23\3163\316\23\316"
"3\326T\336\224\336W\367X\3676\357X\367x\367\326\346\27\357\224\336t\326\326"
"\3464\316\23\316\322\305p\265\261\275\323\305\222\2750\255P\265\357\254M"
"\224\354\203\216\224jsjs\6B\250Z\311bC)@\10@\10@\10@\10@\10\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0N\214w\377V\377\270"
"\377\230\377\227\377\371\377\372\377\332\377\227\3776\367\326\346T\326\225"
"\346\224\336\325\3566\3574\326\225\346\225\336\224\3466\367\365\356\325\346"
"\224\336\264\3363\326\224\346\26\3577\367\231\377X\367\366\356y\3678\357"
"\326\346\266\336\326\346\224\336\23\316\362\315\322\305\221\275\357\254\362"
"\305\262\275\262\275\317\244q\265\317\244M\214\14\204,\214js\354\203\346"
"AgR\0\0\0\0@\10@\10@\10@\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0A\10\366\346W\377W\377V\377\267\377w\367\331\377"
"\373\377\372\377W\377\26\357\265\346\325\346\325\356\26\357\325\346\23\316"
"t\336\265\346\224\3366\367\230\377\230\377\25\357\365\356\265\3466\367\230"
"\377\231\377y\367Y\367X\3678\357\266\3368\357\326\346\27\357t\3363\316s\326"
"\221\275q\275P\265\23\306\20\255\20\255\257\234\357\244\216\234\216\234\314"
"\203\354\203\313\203\314\203\351b\40\0\0\0@\10@\10@\10@\10\40\10\40\0\40"
"\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*k\230"
"\3776\367\227\377W\377\26\367w\377\270\377\271\3776\367\365\346\365\356\325"
"\346\365\3566\367\224\336\23\316T\326t\336t\336\25\357\230\377\331\377w\377"
"W\377w\377\230\377\231\377\231\367\272\367\232\367\232\367\367\346\326\346"
"X\367\326\336\326\346\225\336t\336t\326\362\305\322\305\262\2754\316\357"
"\2440\265\256\234\357\244n\224\216\234,\214\313\203jsFJ\250Z\241\20\3059"
"@\10@\10@\10@\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\262\275w\377V\3676\367w\367V\3776\377\25\367V"
"\377\325\346\264\336\325\346\325\346\365\356\325\346\265\346\325\356\264"
"\336\25\357W\3776\367\230\377\231\377\270\377\270\377\231\377Y\357y\367\272"
"\367y\367\232\367\327\346\266\336\367\346\326\336\225\336\265\336T\3264\316"
"4\326\322\305\221\275\322\305\357\2440\255\316\244\357\254\14\214M\224\14"
"\214\350b\351b&J\345A\301\30\6B@\10@\10@\10\40\10\40\0\40\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\302\30""6\367"
"\365\356w\367V\367\270\377W\377\26\3576\367\325\346\225\336\265\346\365\356"
"\26\3576\367w\377\26\3676\367w\377\230\3777\367W\367\231\377\271\377\231"
"\367\272\3778\357Y\357Y\357Y\357y\367\327\336\266\336\225\336\326\346T\326"
"u\326U\326\363\305\363\305\221\275p\265P\265\357\254\357\244m\224\17\255"
"-\214-\214\253{\310ZJk\207R\6B\40\0\0\0@\10\40\10\40\10\40\0\40\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\14\214\265\346w\3776\367\271\377\26\357\365\356\325\346\325\346\26\357\325"
"\356\26\3576\367W\377V\367\26\3576\3676\357w\367w\377\230\377W\367\272\377"
"\231\367\272\377\231\367\231\367Y\357\367\346Y\3578\357\27\347\266\336U\326"
"T\3264\326\23\316\362\305\261\305\221\275\222\2750\2550\265\317\244\216\234"
"\216\234\354\203M\224\313{)k\213{FJ\2459\40\10@\10\40\10\40\0\40\0\40\0\40"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\253{\366\356\26\367w\3776\367\325\346\325\346\325\346\26\357"
"\26\367\365\356\366\356W\3676\367w\367\325\346\325\3466\367w\377\230\377"
"X\367\232\377y\367y\367X\357\231\3678\357\367\346Y\357y\357X\357\266\336"
"U\326\24\316T\326\261\275\362\305\322\305Q\265Q\2650\255\221\275\20\255\217"
"\234\213{js\14\214Jk\346A)ka\10\0\0@\10\40\10\40\0\40\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\40\0\216\224w\377w\377\26\367\365\356T\326\325\356\265\346\366\356"
"\325\356\26\367w\377V\367\270\3776\3676\367W\367\230\3777\367\231\377y\367"
"8\357X\3678\3578\357X\357\30\347y\3578\357\30\347u\326u\326u\326U\326Q\265"
"\262\2754\316\360\244\17\255\20\255Q\265\256\234M\224\314\203\313\203JsJ"
"k\6B\210R\40\0@\10\40\10\40\0\40\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0\221"
"\265\227\377\366\356\366\356\225\346\224\336\265\346\325\346\224\336\265"
"\346\365\356\26\357w\377\26\357\366\356\366\3566\3576\367\231\377\231\367"
"y\3678\357Y\357X\357\326\346\327\336\30\347\266\336\266\336\266\336U\316"
"\226\326u\326q\265\322\305\322\305q\265\20\255\256\234\257\234\354\203\15"
"\214-\214M\224\346A&JD)*k\40\10\40\10\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\40\0m\2247\367\365\3566\367\325\356\224\336\224\346t\336"
"s\326t\336t\336W\377\365\356\26\357\365\356\26\3676\357x\367X\367y\367\231"
"\367\367\346\27\347\266\336\327\336\226\326\266\336U\316\266\336\364\305"
"\226\326\363\305\17\2550\265\216\234p\265\357\244\256\234M\224\313{\15\214"
"N\214\213s\3!\3059'J\210R\40\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\15\214\366\356\366\356\325\346\365\356\325\3563\326"
"S\3263\326t\336\224\336\26\357\26\357\366\356\26\357T\326\325\346\366\346"
"8\357\30\347X\3578\347U\316\225\326\370\346\266\3264\316U\316\24\3065\316"
"3\316\20\245\221\275\317\244\17\255\357\244\216\234\354\203\216\234Js\314"
"{js\2051hJ\302\30\0\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\11c3\316\224\346\265\346T\336\264\346\22\316s\336t\336"
"\224\336\265\346\265\346\325\346t\336\265\346\26\357X\357\27\347\326\336"
"8\347v\326\267\336\327\336\30\347U\316\263\275\364\3054\3161\255\363\305"
"\222\2650\255\256\234\317\234M\224M\224\14\204\257\234js\350b\310Z#)\342"
"\40\0\0\40\0\40\0\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0#)\23\316t\336t\336\265\3463\326\23\326\322\305\225\346\264"
"\346\264\346t\336\224\336\366\346\230\377\27\357\225\336\266\336\27\347\266"
"\326\226\326\367\346\226\326\222\265\363\305v\326\323\305q\2651\2550\255"
"\17\255\360\244\20\245\317\244M\214\254{\320\234\354\203&BC)\0\0\0\0\40\0"
"\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\242\20\316\244t\326\265\346s\326\224\336S\326\362\315\224\3363\326"
"\224\336\224\336\366\346\367\356\326\346u\336U\326\327\336u\326u\326\23\316"
"\364\305\323\275q\2654\316\24\316\262\275Q\255\257\234M\224\20\255\355\203"
"\257\234\15\214*kJs\15\204d)\3059\40\10\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\354\203"
"T\326\265\336\26\357\266\346\265\336\265\3363\316t\326t\3263\326\226\336"
"\225\336\323\3055\316u\3165\3164\316U\316\222\2751\255\323\275\363\305\222"
"\275r\265\360\244\20\245n\224-\214\354\203,\214js\310Z\302\30\310Z\0\0\0"
"\0\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D)R\255\363\305\225\336\226\336\266"
"\336\367\346u\326\265\336T\326T\326u\3264\316\226\336\266\326u\3165\306\323"
"\275r\265\222\2751\255Q\265\364\305\257\234r\265\217\224\257\234-\214\314"
"{Jk\351bd)\351b\2041\40\0\40\0\40\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\3059\15\214\363\305U\326\225\336\323\305\363\305\23\3164\316T\326\364\305"
"\364\305\226\3265\306\226\326\263\265\263\275\222\265\223\265Q\255\21\255"
"1\255Q\265-\214\314{\257\234*k\11c\2041GJ\311Z\0\0\40\0\40\0\40\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\342\40\354\203\263\275\323\275u\326"
"\266\336\363\305\222\275\323\305\222\265q\265\223\275r\265r\255\323\2751"
"\255\320\234\21\245Q\255n\214.\214n\224.\204\257\234*k\351bGJ\251R\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\343\40"
"\311Z\217\224\262\275\221\275\222\275\363\305\20\255\263\275\323\2751\255"
"\20\2451\255\263\275\256\2341\245o\224N\214KkKk\6B\251Z'J\352b\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\2051\14\204\355\203-\214\322\275\317\234\15\204\360\234\15"
"\204\314{\20\245kso\224\351b\354\203\2051\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\242\20\3!\3!\2459d)\2451\210RJs#!\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
};
|
the_stack_data/579624.c | /* { dg-do compile { target { powerpc*-*-* && lp64 } } } */
/* { dg-options "-O1 -mcpu=power8 -mlra" } */
typedef __int128_t __attribute__((__vector_size__(16))) vector_128_t;
typedef unsigned long long scalar_64_t;
vector_128_t
foo (void)
{
union {
scalar_64_t i64[2];
vector_128_t v128;
} u;
u.i64[0] = 1;
u.i64[1] = 2;
return u.v128;
}
|
the_stack_data/11277.c | /*
Este programa serve para ilustrar algumas funcionalidades da biblioteca ncurses, que é uma versão para Linux mais poderosa que a coino do windows.
Ela serve para criar displays que podem servir, mais adiante, para criação d jogos simples. Será utilizada no trabalho final da cadeira de Algoritmos e Programação.
No momento de compilar, usar: gcc tela.c -o tela -lncurses -lm, para poder acessar as funções da biblioteca - aqui,tanto a curses como a math.
*/
#include <stdio.h>
#include <ncurses.h>
#include <curses.h>
#include <math.h>
#define SAIDA 0
int main(){
char entrada = 'a';
int x, y, i;
initscr(); //Cria uma tela.
//raw();
//keypad(stdscr, TRUE);
cbreak(); //Permite sair da tela com ctrl+z, o que ajuda muito enquanto estiver testando coisas
//printw("Teste");
//getch(); //Serve para ler um caracter do teclado, mas, também serve para que o programa não rode antes de o usuário clicar qualquer coisa.
//if(getch() == KEY_UP) printw("UP");
//Abaixo, eu fiz uma idiotice para mostrar como é possível animar coisas utilizando essa biblioteca. Certamente existem outras formas, mas essa eu criei agora e funciona.
//Bola 1________________________________________________________________________________________
for(int j = 0; j < 50; j++){
for(i = 0; i < 100; i++) mvprintw(11 + 8*sin(i), 11 + 8*cos(i) + j, "."); //Cria um desenho
getch();
for(i = 0; i < 100; i++){ //Cria o mesmo desenho, pr cima do anterior, ma invisível.
attron(A_INVIS);
mvprintw(11 + 8*sin(i), 11 + 8*cos(i) + j, ".");
attroff(A_INVIS);
}
getch();
for(i = 0; i < 100; i++) mvprintw(11 + 8*sin(i), 11 + 8*cos(i) + j+1, "."); //Cria o mesmo desenho, visível, um pixel adiante.
}
//Repete a ação acima, só pra fazer um desenho idiota.
//Bola 2________________________________________________________________________________________
for(int j = 0; j < 50; j++){
for(i = 0; i < 100; i++) mvprintw(31 + 8*sin(i), 11 + 8*cos(i) + j, ".");
getch();
for(i = 0; i < 100; i++){
attron(A_INVIS);
mvprintw(31 + 8*sin(i), 11 + 8*cos(i) + j, ".");
attroff(A_INVIS);
}
getch();
for(i = 0; i < 100; i++) mvprintw(31 + 8*sin(i), 11 + 8*cos(i) + j+1, ".");
}
//move(10, 20); //Isso apenas moveria o cursor para essa posição.
getch();
for (i = 0; i < 50; i++){
mvprintw(15, 67+i, ".");
getch();
/*attron(A_STANDOUT);
mvprintw(15, 65+i, ".");
attroff(A_STANDOUT);
//getch();
mvprintw(15, 65+i, ".");
//getch();*/
}
for (i = 0; i < 50; i++){
mvprintw(24, 65+i, ".");
//getch();
}
for (i = 0; i < 1000; i++){
mvprintw(20 + 4*sin(i/200.),120 + 4*cos(i/100.), ".");
//getch();
}
for(i = 0; i < 5; i++)
getch();
endwin(); //Sempre fechar a janela que criou!
return 0;
}
|
the_stack_data/36531.c |
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#define NUMBER64_1 11400714785074694791ULL
#define NUMBER64_2 14029467366897019727ULL
#define NUMBER64_3 1609587929392839161ULL
#define NUMBER64_4 9650029242287828579ULL
#define NUMBER64_5 2870177450012600261ULL
#define hash_get64bits(x) hash_read64_align(x, align)
#define hash_get32bits(x) hash_read32_align(x, align)
#define shifting_hash(x, r) ((x << r) | (x >> (64 - r)))
#define TO64(x) (((U64_INT *)(x))->v)
#define TO32(x) (((U32_INT *)(x))->v)
typedef struct U64_INT
{
uint64_t v;
} U64_INT;
typedef struct U32_INT
{
uint32_t v;
} U32_INT;
uint64_t hash_read64_align(const void *ptr, uint32_t align)
{
if (align == 0)
{
return TO64(ptr);
}
return *(uint64_t *)ptr;
}
uint32_t hash_read32_align(const void *ptr, uint32_t align)
{
if (align == 0)
{
return TO32(ptr);
}
return *(uint32_t *)ptr;
}
uint64_t hash_compute(const void *input, uint64_t length, uint64_t seed,
uint32_t align)
{
const uint8_t *p = (const uint8_t *)input;
const uint8_t *end = p + length;
uint64_t hash;
if (length >= 32)
{
const uint8_t *const limitation = end - 32;
uint64_t v1 = seed + NUMBER64_1 + NUMBER64_2;
uint64_t v2 = seed + NUMBER64_2;
uint64_t v3 = seed + 0;
uint64_t v4 = seed - NUMBER64_1;
do
{
v1 += hash_get64bits(p) * NUMBER64_2;
p += 8;
v1 = shifting_hash(v1, 31);
v1 *= NUMBER64_1;
v2 += hash_get64bits(p) * NUMBER64_2;
p += 8;
v2 = shifting_hash(v2, 31);
v2 *= NUMBER64_1;
v3 += hash_get64bits(p) * NUMBER64_2;
p += 8;
v3 = shifting_hash(v3, 31);
v3 *= NUMBER64_1;
v4 += hash_get64bits(p) * NUMBER64_2;
p += 8;
v4 = shifting_hash(v4, 31);
v4 *= NUMBER64_1;
} while (p <= limitation);
hash = shifting_hash(v1, 1) + shifting_hash(v2, 7) + shifting_hash(v3, 12) +
shifting_hash(v4, 18);
v1 *= NUMBER64_2;
v1 = shifting_hash(v1, 31);
v1 *= NUMBER64_1;
hash ^= v1;
hash = hash * NUMBER64_1 + NUMBER64_4;
v2 *= NUMBER64_2;
v2 = shifting_hash(v2, 31);
v2 *= NUMBER64_1;
hash ^= v2;
hash = hash * NUMBER64_1 + NUMBER64_4;
v3 *= NUMBER64_2;
v3 = shifting_hash(v3, 31);
v3 *= NUMBER64_1;
hash ^= v3;
hash = hash * NUMBER64_1 + NUMBER64_4;
v4 *= NUMBER64_2;
v4 = shifting_hash(v4, 31);
v4 *= NUMBER64_1;
hash ^= v4;
hash = hash * NUMBER64_1 + NUMBER64_4;
}
else
{
hash = seed + NUMBER64_5;
}
hash += (uint64_t)length;
while (p + 8 <= end)
{
uint64_t k1 = hash_get64bits(p);
k1 *= NUMBER64_2;
k1 = shifting_hash(k1, 31);
k1 *= NUMBER64_1;
hash ^= k1;
hash = shifting_hash(hash, 27) * NUMBER64_1 + NUMBER64_4;
p += 8;
}
if (p + 4 <= end)
{
hash ^= (uint64_t)(hash_get32bits(p)) * NUMBER64_1;
hash = shifting_hash(hash, 23) * NUMBER64_2 + NUMBER64_3;
p += 4;
}
while (p < end)
{
hash ^= (*p) * NUMBER64_5;
hash = shifting_hash(hash, 11) * NUMBER64_1;
p++;
}
hash ^= hash >> 33;
hash *= NUMBER64_2;
hash ^= hash >> 29;
hash *= NUMBER64_3;
hash ^= hash >> 32;
return hash;
}
uint64_t xxhash(const void *data, size_t length, size_t seed)
{
if ((((uint64_t)data) & 7) == 0)
{
return hash_compute(data, length, seed, 1);
}
return hash_compute(data, length, seed, 0);
}
int main()
{
char buf[128];
// while (scanf("%s", buf))
// {
// printf("%p:%lu %lu %lu\n", buf, (uint64_t)buf, TO64(buf), *(uint64_t *)buf);
// char *ptr = buf;
// memset(ptr + 64, 1, 64);
// ptr += 1;
// buf[1] = 1;
// printf("%p:%lu %lu %lu\n", ptr, (uint64_t)(ptr), TO64(ptr), *(uint64_t *)ptr);
// }
buf[0] = 1;
char *ptr = 1;
TO64(ptr);
*(uint64_t *)ptr;
// int c = buf[0] / (1 - 1);
printf("%d\n", *(int *)ptr);
} |
the_stack_data/359594.c | /*
* Copyright (c) 2012-2013 by Farsight Security, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static const char *ok_path = "/.rsync-server-wrapper-ok";
static const char *rsync_server_path = "/bin/rsync";
int
main(int argc, char **argv)
{
if (argc != 3)
exit (EXIT_FAILURE);
/* require permission to run the rsync server */
struct stat statbuf;
if (stat(ok_path, &statbuf) < 0 || statbuf.st_uid != 0) {
puts("rsync-server-wrapper: no access");
exit(EXIT_FAILURE);
}
/* count the number of arguments in the command string */
char *arg_str = argv[2];
char *p = arg_str;
int arg_count = 1;
while (*p != '\0')
if (*p++ == ' ')
arg_count++;
/* convert the command string into the new argument vector */
int new_argv_idx = 0;
char *new_argv[arg_count + 1];
char *tok = strtok(arg_str, " ");
do
new_argv[new_argv_idx++] = tok;
while ((tok = strtok(NULL, " ")) != NULL);
new_argv[new_argv_idx] = NULL;
/* require that "--server" appear as the first argument */
if (arg_count < 2 || strcmp(new_argv[1], "--server") != 0)
exit(EXIT_FAILURE);
/* execute the server */
if (execve(rsync_server_path, new_argv, NULL) < 0) {
perror("execve");
exit(EXIT_FAILURE);
}
return (EXIT_SUCCESS);
}
|
the_stack_data/242331110.c | /***************************************************************************
*
* Copyright (C) 2010 by Willem van Straten
* Licensed under the Academic Free License version 2.1
*
***************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
int main ()
{
mode_t dirmode = S_ISUID | S_ISGID /* set user and group id */
| S_IRWXU | S_IRWXG | S_IRWXO; /* read write exec all */
/* get the user's home directory */
char* home = getenv ("HOME");
/* get the user's mask */
mode_t old_mask = umask (0);
/* put it back */
umask (old_mask);
/* mask out the bits */
dirmode &= ~old_mask;
if (!home)
{
fprintf (stderr, "$HOME undefined\n");
return -1;
}
if (mkdir (home, dirmode) != 0)
{
fprintf (stderr, "mkdir (%s) error: %s\n", home, strerror(errno));
if (errno != EEXIST)
return -1;
}
fprintf (stderr, "mkdir ($HOME) works as expected\n");
if (mkdir ("/tmp", dirmode) != 0)
{
fprintf (stderr, "mkdir (/tmp) error: %s\n", strerror(errno));
if (errno != EEXIST)
return -1;
}
fprintf (stderr, "mkdir (/tmp) works as expected\n");
return 0;
}
|
the_stack_data/140765733.c | x(){signed char c=-1;return c<0;}main(){if(x()!=1)abort();exit(0);}
|
the_stack_data/66979.c | // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/* INTERNAL API
* implementation of generic interface to MMU memory protection features
*/
#include <stdbool.h>
bool esp_memprot_is_assoc_intr_any()
{
return true;
}
|
the_stack_data/107502.c | #include <stdint.h>
//#include <avr/pgmspace.h>
//#include <avr/pgmspace.h>
extern void printhex(uint16_t val);
extern void out_ram();
//extern void serout(uint8_t value);
//extern void slow(uint16_t value);
extern void writeSid(uint8_t reg,uint8_t val);
//extern void RAMwrite(uint16_t address,uint8_t val);
//extern uint8_t RAMread(uint16_t address);
#define NULL (void *) 0
// Maximum available ram is 20480 bytes on the STM32F103C8T6, so lets see how much we can actually use....
// "Global variables use 20,264 bytes of dynamic memory" << If we declare any more, then the device locks up and/or the serial port doesn't enumerate.
// Could this be due to a misdeclaration of ram, some being taken up by init, but not accounted for,
//6502 defines
//#define UNDOCUMENTED //when this is defined, undocumented opcodes are handled.
//otherwise, they're simply treated as NOPs.
//#define USE_TIMING //slower, but allows you to specify number of cycles to run for exec6502
//rather than simply a number of instructions. also uses a little more
//program memory when enabled.
#define FLAG_CARRY 0x01
#define FLAG_ZERO 0x02
#define FLAG_INTERRUPT 0x04
#define FLAG_DECIMAL 0x08
#define FLAG_BREAK 0x10
#define FLAG_CONSTANT 0x20
#define FLAG_OVERFLOW 0x40
#define FLAG_SIGN 0x80
#define BASE_STACK 0x100
#define saveaccum(n) a = (uint8_t)((n) & 0x00FF)
//flag modifier macros
#define setcarry() cpustatus |= FLAG_CARRY
#define clearcarry() cpustatus &= (~FLAG_CARRY)
#define setzero() cpustatus |= FLAG_ZERO
#define clearzero() cpustatus &= (~FLAG_ZERO)
#define setinterrupt() cpustatus |= FLAG_INTERRUPT
#define clearinterrupt() cpustatus &= (~FLAG_INTERRUPT)
#define setdecimal() cpustatus |= FLAG_DECIMAL
#define cleardecimal() cpustatus &= (~FLAG_DECIMAL)
#define setoverflow() cpustatus |= FLAG_OVERFLOW
#define clearoverflow() cpustatus &= (~FLAG_OVERFLOW)
#define setsign() cpustatus |= FLAG_SIGN
#define clearsign() cpustatus &= (~FLAG_SIGN)
//flag calculation macros
#define zerocalc(n) { if ((n) & 0x00FF) clearzero(); else setzero(); }
#define signcalc(n) { if ((n) & 0x0080) setsign(); else clearsign(); }
#define carrycalc(n) { if ((n) & 0xFF00) setcarry(); else clearcarry(); }
#define overflowcalc(n, m, o) { if (((n) ^ (uint16_t)(m)) & ((n) ^ (o)) & 0x0080) setoverflow(); else clearoverflow(); }
//6502 CPU registers
uint16_t pc;
uint8_t sp, a, x, y, cpustatus,mem_ok;
uint8_t RAM[13192];
uint8_t ZERO[0x01ff];
//helper variables
uint32_t instructions = 0; //keep track of total instructions executed
int32_t clockticks6502 = 0, clockgoal6502 = 0;
uint16_t oldpc, ea, reladdr, value, result,load,sidsize;
uint8_t opcode, oldcpustatus, useaccum;
//**************************************************************************************************
//**************************************************************************************************
uint8_t read6502(uint16_t address) {
uint8_t tempval = 0;
if (address<0x0200) {tempval=ZERO[address];}
if ((address>=load)&&(address<=load+sidsize)){tempval=RAM[address-load];}
if (address>0x1ff){
if (( address<load) || ( address>load+sidsize)){ mem_ok=0;}
}
if (address==0xDC0E) {tempval=1;}
return(tempval);
}
void write6502(uint16_t address, uint8_t valu)
{
//printhex(address);printhex(valu);
if ((address>=0xD400)&(address<=0xD41C)){writeSid(address-0xd400,valu);}
if ((address>=0xD41c)&(address<=0xD7ff)){printhex(0);}
if (address<0x0200) {ZERO[address]=valu;}
if ((address>=load)&&(address<=load+sidsize)){RAM[address-load]=valu;}
if ((address>0x1ff) &&( ( address<load) || ( address>load+sidsize))){mem_ok=1; }
}
//a few general functions used by various other functions
void push16(uint16_t pushval) {
write6502(BASE_STACK + sp, (pushval >> 8) & 0xFF);
write6502(BASE_STACK + ((sp - 1) & 0xFF), pushval & 0xFF);
sp -= 2;
}
void push8(uint8_t pushval) {
write6502(BASE_STACK + sp--, pushval);
}
uint16_t pull16() {
uint16_t temp16;
temp16 = read6502(BASE_STACK + ((sp + 1) & 0xFF)) | ((uint16_t)read6502(BASE_STACK + ((sp + 2) & 0xFF)) << 8);
sp += 2;
return(temp16);
}
uint8_t pull8() {
return (read6502(BASE_STACK + ++sp));
}
void reset6502() {
pc = 0x0200;
write6502(0xFFFE,00);
write6502(0xFFFF,0x02);
a = 0;
x = 0;
y = 0;
sp = 0xFD;
cpustatus |= FLAG_CONSTANT;
instructions = 0;
}
//addressing mode functions, calculates effective addresses
void imp() { //implied
}
void acc() { //accumulator
useaccum = 1;
}
void imm() { //immediate
ea = pc++;
}
void zp() { //zero-page
ea = (uint16_t)read6502((uint16_t)pc++);
}
void zpx() { //zero-page,X
ea = ((uint16_t)read6502((uint16_t)pc++) + (uint16_t)x) & 0xFF; //zero-page wraparound
}
void zpy() { //zero-page,Y
ea = ((uint16_t)read6502((uint16_t)pc++) + (uint16_t)y) & 0xFF; //zero-page wraparound
}
void rel() { //relative for branch ops (8-bit immediate value, sign-extended)
reladdr = (uint16_t)read6502(pc++);
if (reladdr & 0x80) reladdr |= 0xFF00;
}
void abso() { //absolute
ea = (uint16_t)read6502(pc) | ((uint16_t)read6502(pc+1) << 8);
pc += 2;
}
void absx() { //absolute,X
uint16_t startpage;
ea = ((uint16_t)read6502(pc) | ((uint16_t)read6502(pc+1) << 8));
startpage = ea & 0xFF00;
ea += (uint16_t)x;
pc += 2;
}
void absy() { //absolute,Y
uint16_t startpage;
ea = ((uint16_t)read6502(pc) | ((uint16_t)read6502(pc+1) << 8));
startpage = ea & 0xFF00;
ea += (uint16_t)y;
pc += 2;
}
void ind() { //indirect
uint16_t eahelp, eahelp2;
eahelp = (uint16_t)read6502(pc) | (uint16_t)((uint16_t)read6502(pc+1) << 8);
eahelp2 = (eahelp & 0xFF00) | ((eahelp + 1) & 0x00FF); //replicate 6502 page-boundary wraparound bug
ea = (uint16_t)read6502(eahelp) | ((uint16_t)read6502(eahelp2) << 8);
pc += 2;
}
void indx() { // (indirect,X)
uint16_t eahelp;
eahelp = (uint16_t)(((uint16_t)read6502(pc++) + (uint16_t)x) & 0xFF); //zero-page wraparound for table pointer
ea = (uint16_t)read6502(eahelp & 0x00FF) | ((uint16_t)read6502((eahelp+1) & 0x00FF) << 8);
}
void indy() { // (indirect),Y
uint16_t eahelp, eahelp2, startpage;
eahelp = (uint16_t)read6502(pc++);
eahelp2 = (eahelp & 0xFF00) | ((eahelp + 1) & 0x00FF); //zero-page wraparound
ea = (uint16_t)read6502(eahelp) | ((uint16_t)read6502(eahelp2) << 8);
startpage = ea & 0xFF00;
ea += (uint16_t)y;
}
static uint16_t getvalue() {
if (useaccum) return((uint16_t)a);
else return((uint16_t)read6502(ea));
}
static uint16_t getvalue16() {
return((uint16_t)read6502(ea) | ((uint16_t)read6502(ea+1) << 8));
}
void putvalue(uint16_t saveval) {
if (useaccum) a = (uint8_t)(saveval & 0x00FF);
else write6502(ea, (saveval & 0x00FF));
}
//instruction handler functions
void adc() {
value = getvalue();
result = (uint16_t)a + value + (uint16_t)(cpustatus & FLAG_CARRY);
carrycalc(result);
zerocalc(result);
overflowcalc(result, a, value);
signcalc(result);
#ifndef NES_CPU
if (cpustatus & FLAG_DECIMAL) {
clearcarry();
if ((a & 0x0F) > 0x09) {
a += 0x06;
}
if ((a & 0xF0) > 0x90) {
a += 0x60;
setcarry();
}
clockticks6502++;
}
#endif
saveaccum(result);
}
void op_and() {
value = getvalue();
result = (uint16_t)a & value;
zerocalc(result);
signcalc(result);
saveaccum(result);
}
void asl() {
value = getvalue();
result = value << 1;
carrycalc(result);
zerocalc(result);
signcalc(result);
putvalue(result);
}
void bcc() {
if ((cpustatus & FLAG_CARRY) == 0) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void bcs() {
if ((cpustatus & FLAG_CARRY) == FLAG_CARRY) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void beq() {
if ((cpustatus & FLAG_ZERO) == FLAG_ZERO) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void op_bit() {
value = getvalue();
result = (uint16_t)a & value;
zerocalc(result);
cpustatus = (cpustatus & 0x3F) | (uint8_t)(value & 0xC0);
}
void bmi() {
if ((cpustatus & FLAG_SIGN) == FLAG_SIGN) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void bne() {
if ((cpustatus & FLAG_ZERO) == 0) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void bpl() {
if ((cpustatus & FLAG_SIGN) == 0) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void brk() {
/* pc++;
push16(pc); //push next instruction address onto stack
push8(cpustatus | FLAG_BREAK); //push CPU cpustatus to stack
setinterrupt(); //set interrupt flag
pc = (uint16_t)read6502(0xFFFE) | ((uint16_t)read6502(0xFFFF) << 8);
*/
pc=0xFFFF;
}
void bvc() {
if ((cpustatus & FLAG_OVERFLOW) == 0) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void bvs() {
if ((cpustatus & FLAG_OVERFLOW) == FLAG_OVERFLOW) {
oldpc = pc;
pc += reladdr;
if ((oldpc & 0xFF00) != (pc & 0xFF00)) clockticks6502 += 2; //check if jump crossed a page boundary
else clockticks6502++;
}
}
void clc() {
clearcarry();
}
void cld() {
cleardecimal();
}
void cli() {
clearinterrupt();
}
void clv() {
clearoverflow();
}
void cmp() {
value = getvalue();
result = (uint16_t)a - value;
if (a >= (uint8_t)(value & 0x00FF)) setcarry();
else clearcarry();
if (a == (uint8_t)(value & 0x00FF)) setzero();
else clearzero();
signcalc(result);
}
void cpx() {
value = getvalue();
result = (uint16_t)x - value;
if (x >= (uint8_t)(value & 0x00FF)) setcarry();
else clearcarry();
if (x == (uint8_t)(value & 0x00FF)) setzero();
else clearzero();
signcalc(result);
}
void cpy() {
value = getvalue();
result = (uint16_t)y - value;
if (y >= (uint8_t)(value & 0x00FF)) setcarry();
else clearcarry();
if (y == (uint8_t)(value & 0x00FF)) setzero();
else clearzero();
signcalc(result);
}
void dec() {
value = getvalue();
result = value - 1;
zerocalc(result);
signcalc(result);
putvalue(result);
}
void dex() {
x--;
zerocalc(x);
signcalc(x);
}
void dey() {
y--;
zerocalc(y);
signcalc(y);
}
void eor() {
value = getvalue();
result = (uint16_t)a ^ value;
zerocalc(result);
signcalc(result);
saveaccum(result);
}
void inc() {
value = getvalue();
result = value + 1;
zerocalc(result);
signcalc(result);
putvalue(result);
}
void inx() {
x++;
zerocalc(x);
signcalc(x);
}
void iny() {
y++;
zerocalc(y);
signcalc(y);
}
void jmp() {
pc = ea;
}
void jsr() {
push16(pc - 1);
pc = ea;
}
void lda() {
value = getvalue();
a = (uint8_t)(value & 0x00FF);
zerocalc(a);
signcalc(a);
}
void ldx() {
value = getvalue();
x = (uint8_t)(value & 0x00FF);
zerocalc(x);
signcalc(x);
}
void ldy() {
value = getvalue();
y = (uint8_t)(value & 0x00FF);
zerocalc(y);
signcalc(y);
}
void lsr() {
value = getvalue();
result = value >> 1;
if (value & 1) setcarry();
else clearcarry();
zerocalc(result);
signcalc(result);
putvalue(result);
}
void nop() {
}
void ora() {
value = getvalue();
result = (uint16_t)a | value;
zerocalc(result);
signcalc(result);
saveaccum(result);
}
void pha() {
push8(a);
}
void php() {
push8(cpustatus | FLAG_BREAK);
}
void pla() {
a = pull8();
zerocalc(a);
signcalc(a);
}
void plp() {
cpustatus = pull8() | FLAG_CONSTANT;
}
void rol() {
value = getvalue();
result = (value << 1) | (cpustatus & FLAG_CARRY);
carrycalc(result);
zerocalc(result);
signcalc(result);
putvalue(result);
}
void ror() {
value = getvalue();
result = (value >> 1) | ((cpustatus & FLAG_CARRY) << 7);
if (value & 1) setcarry();
else clearcarry();
zerocalc(result);
signcalc(result);
putvalue(result);
}
void rti() {
cpustatus = pull8();
value = pull16();
pc = value;
}
void rts() {
value = pull16();
pc = value + 1;
}
void sbc() {
value = getvalue() ^ 0x00FF;
result = (uint16_t)a + value + (uint16_t)(cpustatus & FLAG_CARRY);
carrycalc(result);
zerocalc(result);
overflowcalc(result, a, value);
signcalc(result);
#ifndef NES_CPU
if (cpustatus & FLAG_DECIMAL) {
clearcarry();
a -= 0x66;
if ((a & 0x0F) > 0x09) {
a += 0x06;
}
if ((a & 0xF0) > 0x90) {
a += 0x60;
setcarry();
}
clockticks6502++;
}
#endif
saveaccum(result);
}
void sec() {
setcarry();
}
void sed() {
setdecimal();
}
void sei() {
setinterrupt();
}
void sta() {
putvalue(a);
}
void stx() {
putvalue(x);
}
void sty() {
putvalue(y);
}
void tax() {
x = a;
zerocalc(x);
signcalc(x);
}
void tay() {
y = a;
zerocalc(y);
signcalc(y);
}
void tsx() {
x = sp;
zerocalc(x);
signcalc(x);
}
void txa() {
a = x;
zerocalc(a);
signcalc(a);
}
void txs() {
sp = x;
}
void tya() {
a = y;
zerocalc(a);
signcalc(a);
}
//undocumented instructions
#ifdef UNDOCUMENTED
void lax() {
lda();
ldx();
}
void sax() {
sta();
stx();
putvalue(a & x);
}
void dcp() {
dec();
cmp();
}
void isb() {
inc();
sbc();
}
void slo() {
asl();
ora();
}
void rla() {
rol();
op_and();
}
void sre() {
lsr();
eor();
}
void rra() {
ror();
adc();
}
#else
#define lax nop
#define sax nop
#define dcp nop
#define isb nop
#define slo nop
#define rla nop
#define sre nop
#define rra nop
#endif
void nmi6502() {
push16(pc);
push8(cpustatus);
cpustatus |= FLAG_INTERRUPT;
pc = (uint16_t)read6502(0xFFFA) | ((uint16_t)read6502(0xFFFB) << 8);
}
void irq6502() {
push16(pc);
push8(cpustatus);
cpustatus |= FLAG_INTERRUPT;
pc = (uint16_t)read6502(0xFFFE) | ((uint16_t)read6502(0xFFFF) << 8);
}
void exec6502(int32_t tickcount) {
#ifdef USE_TIMING
clockgoal6502 += tickcount;
while (clockgoal6502 > 0) {
#else
while (tickcount--) {
#endif
//printhex(pc);
// printhex(sp);
opcode = read6502(pc++);
cpustatus |= FLAG_CONSTANT;
useaccum = 0;
switch (opcode) {
case 0x0:
imp();
brk();
break;
case 0x1:
indx();
ora();
break;
case 0x5:
zp();
ora();
break;
case 0x6:
zp();
asl();
break;
case 0x8:
imp();
php();
break;
case 0x9:
imm();
ora();
break;
case 0xA:
acc();
asl();
break;
case 0xD:
abso();
ora();
break;
case 0xE:
abso();
asl();
break;
case 0x10:
rel();
bpl();
break;
case 0x11:
indy();
ora();
break;
case 0x15:
zpx();
ora();
break;
case 0x16:
zpx();
asl();
break;
case 0x18:
imp();
clc();
break;
case 0x19:
absy();
ora();
break;
case 0x1D:
absx();
ora();
break;
case 0x1E:
absx();
asl();
break;
case 0x20:
abso();
jsr();
break;
case 0x21:
indx();
op_and();
break;
case 0x24:
zp();
op_bit();
break;
case 0x25:
zp();
op_and();
break;
case 0x26:
zp();
rol();
break;
case 0x28:
imp();
plp();
break;
case 0x29:
imm();
op_and();
break;
case 0x2A:
acc();
rol();
break;
case 0x2C:
abso();
op_bit();
break;
case 0x2D:
abso();
op_and();
break;
case 0x2E:
abso();
rol();
break;
case 0x30:
rel();
bmi();
break;
case 0x31:
indy();
op_and();
break;
case 0x35:
zpx();
op_and();
break;
case 0x36:
zpx();
rol();
break;
case 0x38:
imp();
sec();
break;
case 0x39:
absy();
op_and();
break;
case 0x3D:
absx();
op_and();
break;
case 0x3E:
absx();
rol();
break;
case 0x40:
imp();
rti();
break;
case 0x41:
indx();
eor();
break;
case 0x45:
zp();
eor();
break;
case 0x46:
zp();
lsr();
break;
case 0x48:
imp();
pha();
break;
case 0x49:
imm();
eor();
break;
case 0x4A:
acc();
lsr();
break;
case 0x4C:
abso();
jmp();
break;
case 0x4D:
abso();
eor();
break;
case 0x4E:
abso();
lsr();
break;
case 0x50:
rel();
bvc();
break;
case 0x51:
indy();
eor();
break;
case 0x55:
zpx();
eor();
break;
case 0x56:
zpx();
lsr();
break;
case 0x58:
imp();
cli();
break;
case 0x59:
absy();
eor();
break;
case 0x5D:
absx();
eor();
break;
case 0x5E:
absx();
lsr();
break;
case 0x60:
imp();
rts();
break;
case 0x61:
indx();
adc();
break;
case 0x65:
zp();
adc();
break;
case 0x66:
zp();
ror();
break;
case 0x68:
imp();
pla();
break;
case 0x69:
imm();
adc();
break;
case 0x6A:
acc();
ror();
break;
case 0x6C:
ind();
jmp();
break;
case 0x6D:
abso();
adc();
break;
case 0x6E:
abso();
ror();
break;
case 0x70:
rel();
bvs();
break;
case 0x71:
indy();
adc();
break;
case 0x75:
zpx();
adc();
break;
case 0x76:
zpx();
ror();
break;
case 0x78:
imp();
sei();
break;
case 0x79:
absy();
adc();
break;
case 0x7D:
absx();
adc();
break;
case 0x7E:
absx();
ror();
break;
case 0x81:
indx();
sta();
break;
case 0x84:
zp();
sty();
break;
case 0x85:
zp();
sta();
break;
case 0x86:
zp();
stx();
break;
case 0x88:
imp();
dey();
break;
case 0x8A:
imp();
txa();
break;
case 0x8C:
abso();
sty();
break;
case 0x8D:
abso();
sta();
break;
case 0x8E:
abso();
stx();
break;
case 0x90:
rel();
bcc();
break;
case 0x91:
indy();
sta();
break;
case 0x94:
zpx();
sty();
break;
case 0x95:
zpx();
sta();
break;
case 0x96:
zpy();
stx();
break;
case 0x98:
imp();
tya();
break;
case 0x99:
absy();
sta();
break;
case 0x9A:
imp();
txs();
break;
case 0x9D:
absx();
sta();
break;
case 0xA0:
imm();
ldy();
break;
case 0xA1:
indx();
lda();
break;
case 0xA2:
imm();
ldx();
break;
case 0xA4:
zp();
ldy();
break;
case 0xA5:
zp();
lda();
break;
case 0xA6:
zp();
ldx();
break;
case 0xA8:
imp();
tay();
break;
case 0xA9:
imm();
lda();
break;
case 0xAA:
imp();
tax();
break;
case 0xAC:
abso();
ldy();
break;
case 0xAD:
abso();
lda();
break;
case 0xAE:
abso();
ldx();
break;
case 0xB0:
rel();
bcs();
break;
case 0xB1:
indy();
lda();
break;
case 0xB4:
zpx();
ldy();
break;
case 0xB5:
zpx();
lda();
break;
case 0xB6:
zpy();
ldx();
break;
case 0xB8:
imp();
clv();
break;
case 0xB9:
absy();
lda();
break;
case 0xBA:
imp();
tsx();
break;
case 0xBC:
absx();
ldy();
break;
case 0xBD:
absx();
lda();
break;
case 0xBE:
absy();
ldx();
break;
case 0xC0:
imm();
cpy();
break;
case 0xC1:
indx();
cmp();
break;
case 0xC4:
zp();
cpy();
break;
case 0xC5:
zp();
cmp();
break;
case 0xC6:
zp();
dec();
break;
case 0xC8:
imp();
iny();
break;
case 0xC9:
imm();
cmp();
break;
case 0xCA:
imp();
dex();
break;
case 0xCC:
abso();
cpy();
break;
case 0xCD:
abso();
cmp();
break;
case 0xCE:
abso();
dec();
break;
case 0xD0:
rel();
bne();
break;
case 0xD1:
indy();
cmp();
break;
case 0xD5:
zpx();
cmp();
break;
case 0xD6:
zpx();
dec();
break;
case 0xD8:
imp();
cld();
break;
case 0xD9:
absy();
cmp();
break;
case 0xDD:
absx();
cmp();
break;
case 0xDE:
absx();
dec();
break;
case 0xE0:
imm();
cpx();
break;
case 0xE1:
indx();
sbc();
break;
case 0xE4:
zp();
cpx();
break;
case 0xE5:
zp();
sbc();
break;
case 0xE6:
zp();
inc();
break;
case 0xE8:
imp();
inx();
break;
case 0xE9:
imm();
sbc();
break;
case 0xEB:
imm();
sbc();
break;
case 0xEC:
abso();
cpx();
break;
case 0xED:
abso();
sbc();
break;
case 0xEE:
abso();
inc();
break;
case 0xF0:
rel();
beq();
break;
case 0xF1:
indy();
sbc();
break;
case 0xF5:
zpx();
sbc();
break;
case 0xF6:
zpx();
inc();
break;
case 0xF8:
imp();
sed();
break;
case 0xF9:
absy();
sbc();
break;
case 0xFD:
absx();
sbc();
break;
case 0xFE:
absx();
inc();
break;
}
#ifdef USE_TIMING
clockgoal6502 -= (int32_t)pgm_read_byte_near(ticktable + opcode);
#endif
instructions++;
}
}
uint16_t getpc() {
return(pc);
}
uint8_t getop() {
return(opcode);
}
uint32_t gosub(uint16_t adress,uint8_t akum,uint8_t xind,uint8_t yind) {
// reset6502();
mem_ok=1;
push16(0xFFFE);
pc=adress;
a=akum;
x=xind;
y=yind;
while (pc<0xFFFF)
{
exec6502(1);
// printhex(pc);
//slow(100);
}
return(mem_ok);
}
void poke(uint16_t adress,uint8_t val){
write6502(adress,val);
}
void setup6502(uint16_t loadr,uint16_t sizer){
load=loadr;sidsize=sizer;
// printhex(load);
// printhex(sizer);
}
|
the_stack_data/608209.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* function_pointers.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lpaulo-m <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/02 03:07:18 by lpaulo-m #+# #+# */
/* Updated: 2021/04/02 03:17:12 by lpaulo-m ### ########.fr */
/* */
/* ************************************************************************** */
typedef int (*Operation)(int a, int b);
typedef struct _str
{
int result; // to sotre the resut
Operation opt; // funtion pointer
} STR;
int Add(int a, int b)
{
return a + b;
}
int Multi(int a, int b)
{
return a * b;
}
int main(int argc, char **argv)
{
STR str_obj;
str_obj.opt = Add; //the function pointer variable point to Add function
str_obj.result = str_obj.opt(5, 3);
printf(" the result is %d\n", str_obj.result);
str_obj.opt = Multi; //the function pointer variable point to Multi function
str_obj.result = str_obj.opt(5, 3);
printf(" the result is %d\n", str_obj.result);
return 0;
}
|
the_stack_data/120244.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* wdmatch.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lprior <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/01/23 14:04:57 by lprior #+# #+# */
/* Updated: 2018/01/23 14:14:48 by lprior ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
int wdmatch(char *str, char *str2)
{
int i;
int l;
i = 0;
l = 0;
while(str[i] && str2[l])
{
if (str2[l] == str[i])
i++;
l++;
}
if (str[i] == '\0')
write(1, str, i);
write(1, "\n", 1);
return (0);
}
int main(int argc, char **argv)
{
if (argc == 3)
wdmatch(argv[1], argv[2]);
else
write(1, "\n", 1);
return (0);
}
|
the_stack_data/168893879.c | #include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
struct ListNode {
int dest;
struct ListnNode *next;
};
struct AdjList {
struct ListNode *head;
};
struct graph {
int V;
struct AdjList *list;
};
struct graph * create_graph(int V) {
struct graph *G = (struct graph *) malloc(sizeof(struct graph));
G->V = V;
G->list = (struct AdjList *) malloc(sizeof(struct AdjList) * V);
for(int i=0; i<V; i++) {
G->list[i].head = NULL;
}
return G;
}
void add_edge(struct graph *G, int src, int dest) {
struct ListNode *node = (struct ListNode *) malloc(sizeof(struct ListNode));
node->dest = dest;
if(G->list[src].head == NULL) {
G->list[src].head = node;
return;
}
node->next = G->list[src].head;
G->list[src].head = node;
return;
}
bool dfs(struct graph *G, int v, bool visited[], bool rec_stack[]) {
visited[v] = true;
rec_stack[v] = true;
struct ListNode *node = G->list[v].head;
while(node != NULL) {
if(visited[node->dest] == false) {
if(dfs(G, node->dest, visited, rec_stack) == true) {
return true;
}
} else if(rec_stack[node->dest] == true) {
return true;
}
node = node->next;
}
rec_stack[v] = false;
return false;
}
bool detect_cycle(struct graph *G) {
bool visited[G->V];
bool rec_stack[G->V];
for(int i=0; i<G->V; i++) {
visited[i] = false;
rec_stack[i] = false;
}
for(int i=0; i<G->V; i++) {
if(visited[i] == false) {
if(dfs(G, i, visited, rec_stack) == true) {
return true;
}
}
}
return false;
}
void main() {
struct graph *G = create_graph(5);
add_edge(G, 1, 3);
add_edge(G, 1, 5);
add_edge(G, 2, 3);
add_edge(G, 4, 5);
add_edge(G, 5, 2);
add_edge(G, 2, 1);
if(detect_cycle(G)) {
printf("Cycle present");
} else {
printf("Cycle not present");
}
}
|
the_stack_data/165764854.c | #include <stdio.h>
#include <math.h>
int binaryResult[40],input[32];
int decimalConvert(int start,int stop)
{
int i;
int res=0;
int n = stop - start;
int j = 0;
for(i=start;i<stop;i++)
{
double temp = pow(2,(n-j-1));
res=res+(input[i]*(int)temp);
j++;
}
return res;
}
int binaryConvert(int n)
{
int i=0;
while((n/2)>=2)
{
binaryResult[i]=n%2;
n/=2; i++;
}
i++;
binaryResult[i]=1;
return i;
}
void displayBinRes(int n,int min_l)
{
int i;
if(min_l > (n+1))
{
for(i=0;i<(min_l-n-1);i++)
{
printf("%d",0);
}
}
for(i=n;i>=0;i--)
{
printf("%d",binaryResult[i]);
}
}
int bitCalc(int processSize)
{
int bits = 1;
while((processSize / 2) >= 2)
{
bits++;
processSize = processSize/2;
}
return bits;
}
void main()
{
int processSize, pageSize, pMemorySize,frameNo,pageNo;
int pageTable[5][3];
int i;
int pTableBits,lBits,pb,lb;
int pageBits;
printf("Please enter the Process Size in KB: ");
scanf("%d",&processSize);
printf("Please enter Page Size in bytes: ");
scanf("%d",&pageSize);
pageBits = bitCalc(pageSize*1024);
printf("Please enter Physical Memory Size in MB: ");
scanf("%d",&pMemorySize);
for(i=0;i<5;i++)
{
printf("Please enter data for Page Table entry %d\n",(i+1));
printf("Page No: ");
scanf("%d",&pageTable[i][0]);
printf("Frame No: ");
scanf("%d",&pageTable[i][1]);
printf("Valid/Invalid Bit: ");
scanf("%d",&pageTable[i][2]);
}
frameNo=pMemorySize/pageSize;
printf("The Total number of Frames in the Physical Memory are: %d\n",frameNo);
pageNo=processSize/pageSize;
printf("The Total number of entries in the Page Table are: %d\n",pageNo);
pTableBits = bitCalc(pMemorySize);
printf("The number of bits in the Physical Address are: %d\n",(pTableBits+pageBits));
printf("The distribution is %d:%d\n",pTableBits,pageBits);
pb=pTableBits+pageBits;
lBits = bitCalc(processSize);
printf("The number of bits in the Logical Address are: %d\n",(lBits+pageBits));
printf("The distribution is %d:%d\n",lBits,pageBits);
lb=lBits+pageBits;
while(1)
{
printf("Please enter the logical address:\n");
for(i = 0; i < lb; i++) {
int temp;
scanf("%d",&temp);
if(temp == 2)
{
i = -1;
break;
}
input[i] = temp;
}
if(i == -1)
break;
printf("\n");
int page_no = decimalConvert(0,lBits);
int pos = -1;
for(i=0;i<5;i++)
{
if(page_no == pageTable[i][0])
pos = i;
}
if(pos != -1)
{
if(pageTable[pos][2] == 1)
{
printf("The generated Physical Address is: ");
int p_addr = pageTable[pos][1];
p_addr = p_addr * pageSize * 1024;
p_addr += decimalConvert(lBits,lb);
int start = binaryConvert(p_addr);
displayBinRes(start,pb);
printf("\n"); printf("Page hit!\n");
}
else
printf("Page Fault!\n");
}
else
printf("Page not found!\n");
i = 0;
}
}
|
the_stack_data/31388687.c | /*
***************************************************************************
* MediaTek Inc.
*
* All rights reserved. source code is an unpublished work and the
* use of a copyright notice does not imply otherwise. This source code
* contains confidential trade secret material of MediaTek. Any attemp
* or participation in deciphering, decoding, reverse engineering or in any
* way altering the source code is stricitly prohibited, unless the prior
* written consent of MediaTek, Inc. is obtained.
***************************************************************************
Module Name:
multi_profile.c
*/
#ifdef MULTI_PROFILE
#include "rt_config.h"
/*Local definition*/
#define FIRST_AP_2G_PROFILE_PATH "/etc/Wireless/RT2860/RT2860_2G.dat"
#define FIRST_AP_5G_PROFILE_PATH "/etc/Wireless/RT2860/RT2860_5G.dat"
#define FIRST_AP_MERGE_PROFILE_PATH ""
#if defined(BB_SOC) && !defined(MULTI_INF_SUPPORT)
#define FIRST_AP_5G_DEVNAME "rai0"
#define FIRST_MBSSID_5G_DEVNAME "rai"
#define FIRST_APCLI_5G_DEVNAME "apclii"
#else
#define FIRST_AP_5G_DEVNAME "rax0"
#define FIRST_MBSSID_5G_DEVNAME "rax"
#define FIRST_APCLI_5G_DEVNAME "apclix"
#endif
#define SECOND_AP_2G_PROFILE_PATH "/etc/Wireless/iNIC/iNIC_ap_2G.dat"
#define SECOND_AP_5G_PROFILE_PATH "/etc/Wireless/iNIC/iNIC_ap_5G.dat"
#define SECOND_AP_MERGE_PROFILE_PATH ""
#if defined(BB_SOC) && !defined(MULTI_INF_SUPPORT)
#define SECOND_AP_5G_DEVNAME "ra0"
#define SECOND_MBSSID_5G_DEVNAME "ra"
#define SECOND_APCLI_5G_DEVNAME "apcli"
#else
#define SECOND_AP_5G_DEVNAME "ray0"
#define SECOND_MBSSID_5G_DEVNAME "ray"
#define SECOND_APCLI_5G_DEVNAME "apcliiy"
#endif
#define THIRD_AP_2G_PROFILE_PATH "/etc/Wireless/WIFI3/RT2870AP_2G.dat"
#define THIRD_AP_5G_PROFILE_PATH "/etc/Wireless/WIFI3/RT2870AP_5G.dat"
#define THIRD_AP_MERGE_PROFILE_PATH ""
#define THIRD_AP_5G_DEVNAME "raz0"
#define THIRD_MBSSID_5G_DEVNAME "raz"
#define THIRD_APCLI_5G_DEVNAME "apcliez"
#define TEMP_STR_SIZE 128
/* A:B:C:D -> 4 (Channel group A, B, C, D) + 3 ':' */
#define LEN_BITMAP_CHGRP 7
struct mpf_data {
UCHAR enable;
UCHAR specific_dname;
UCHAR pf1_num;
UCHAR pf2_num;
UCHAR total_num;
};
struct mpf_table {
UCHAR profile_2g[L2PROFILE_PATH_LEN];
UCHAR profile_5g[L2PROFILE_PATH_LEN];
UCHAR merge[L2PROFILE_PATH_LEN];
struct dev_type_name_map_t dev_name_map[MAX_INT_TYPES+1];
};
static struct mpf_table mtb[] = {
{ FIRST_AP_2G_PROFILE_PATH, FIRST_AP_5G_PROFILE_PATH, FIRST_AP_MERGE_PROFILE_PATH,
{{INT_MAIN, FIRST_AP_5G_DEVNAME}, {INT_MBSSID, FIRST_MBSSID_5G_DEVNAME},
{INT_WDS, FIRST_AP_5G_DEVNAME}, {INT_APCLI, FIRST_APCLI_5G_DEVNAME},
{INT_MESH, FIRST_AP_5G_DEVNAME}, {INT_P2P, FIRST_AP_5G_DEVNAME},
{INT_MONITOR, FIRST_AP_5G_DEVNAME}, {INT_MSTA, FIRST_AP_5G_DEVNAME}, {0} } },
{ SECOND_AP_2G_PROFILE_PATH, SECOND_AP_5G_PROFILE_PATH, SECOND_AP_MERGE_PROFILE_PATH,
{{INT_MAIN, SECOND_AP_5G_DEVNAME}, {INT_MBSSID, SECOND_MBSSID_5G_DEVNAME},
{INT_WDS, SECOND_AP_5G_DEVNAME}, {INT_APCLI, SECOND_APCLI_5G_DEVNAME},
{INT_MESH, SECOND_AP_5G_DEVNAME}, {INT_P2P, SECOND_AP_5G_DEVNAME},
{INT_MONITOR, SECOND_AP_5G_DEVNAME}, {INT_MSTA, SECOND_AP_5G_DEVNAME}, {0} } },
{ THIRD_AP_2G_PROFILE_PATH, THIRD_AP_5G_PROFILE_PATH, THIRD_AP_MERGE_PROFILE_PATH,
{{INT_MAIN, THIRD_AP_5G_DEVNAME}, {INT_MBSSID, THIRD_MBSSID_5G_DEVNAME},
{INT_WDS, THIRD_AP_5G_DEVNAME}, {INT_APCLI, THIRD_APCLI_5G_DEVNAME},
{INT_MESH, THIRD_AP_5G_DEVNAME}, {INT_P2P, THIRD_AP_5G_DEVNAME},
{INT_MONITOR, THIRD_AP_5G_DEVNAME}, {INT_MSTA, THIRD_AP_5G_DEVNAME}, {0} } },
};
#ifdef CONFIG_AP_SUPPORT
#ifdef MBSS_SUPPORT
static INT multi_profile_merge_wsc(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final);
#endif /*MBSS_SUPPORT*/
#endif /*CONFIG_AP_SUPPORT*/
static UCHAR *get_dbdcdev_name_prefix(RTMP_ADAPTER *pAd, INT dev_type)
{
struct dev_type_name_map_t *map;
INT type_idx = 0, dev_idx = get_dev_config_idx(pAd);
if (dev_idx < 0 || dev_idx >= MAX_NUM_OF_INF) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE, ("%s(): invalid dev_idx(%d)!\n",
__func__, dev_idx));
return NULL;
}
do {
map = &(mtb[dev_idx].dev_name_map[type_idx]);
if (map->type == dev_type) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("%s(): dev_idx = %d, dev_name_prefix=%s\n", __func__, dev_idx, map->prefix));
return map->prefix;
}
type_idx++;
} while (mtb[dev_idx].dev_name_map[type_idx].type != 0);
return NULL;
}
NDIS_STATUS update_mtb_value(struct _RTMP_ADAPTER *pAd, UCHAR profile_id, UINT_32 extra, RTMP_STRING *value)
{
INT retVal = NDIS_STATUS_SUCCESS;
INT dev_idx = get_dev_config_idx(pAd);
switch (profile_id) {
case MTB_2G_PROFILE:
if (strcmp(value, mtb[dev_idx].profile_2g)) {
strncpy(mtb[dev_idx].profile_2g, value, L2PROFILE_PATH_LEN - 1);
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].profile_2g updated as %s!\n", dev_idx, mtb[dev_idx].profile_2g));
} else {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].profile_2g remain %s!\n", dev_idx, mtb[dev_idx].profile_2g));
}
break;
case MTB_5G_PROFILE:
if (strcmp(value, mtb[dev_idx].profile_5g)) {
strncpy(mtb[dev_idx].profile_5g, value, L2PROFILE_PATH_LEN - 1);
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].profile_5g updated as %s!\n", dev_idx, mtb[dev_idx].profile_5g));
} else {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].profile_2g remain %s!\n", dev_idx, mtb[dev_idx].profile_2g));
}
break;
case MTB_DEV_PREFIX:
{
RTMP_STRING *prefix = get_dbdcdev_name_prefix(pAd, extra);
if (prefix == NULL) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR,
("%s: MTB_DEV_PREFIX, get_dbdcdev_name_prefix is NULL\n", __func__));
return NDIS_STATUS_FAILURE;
}
if (strcmp(prefix, value)) {
strncpy(prefix, value, IFNAMSIZ);
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].prefix updated as %s!\n", dev_idx, prefix));
} else {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_TRACE,
("mtb[%d].prefix remain %s!\n", dev_idx, prefix));
}
}
break;
default:
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Uknown profile_id(%d)\n", profile_id));
break;
}
return retVal;
}
static UINT32 count_depth(UCHAR *path)
{
UINT32 length = 0;
UCHAR *slash = strstr(path, "/");
if (slash) {
length = slash - path;
length += (count_depth(slash+1)+1);
}
return length;
}
/*Local function body*/
/*
*
*/
static UCHAR *multi_profile_fname_get(struct _RTMP_ADAPTER *pAd, UCHAR profile_id)
{
UCHAR *src = NULL;
INT card_idx = 0;
#if defined(CONFIG_RT_FIRST_CARD) || defined(CONFIG_RT_SECOND_CARD) || defined(CONFIG_RT_THIRD_CARD)
card_idx = get_dev_config_idx(pAd);
#endif /* CONFIG_RT_FIRST_CARD || CONFIG_RT_SECOND_CARD */
if (profile_id == MTB_MERGE_PROFILE) {
src = mtb[card_idx].merge;
if (strlen(src) == 0) {
strncat(src, mtb[card_idx].profile_2g, count_depth(mtb[card_idx].profile_2g));
snprintf(src, L2PROFILE_PATH_LEN, "%sDBDC_card%d.dat", src, card_idx);
}
MTWF_LOG(DBG_CAT_ALL, DBG_SUBCAT_ALL, DBG_LVL_OFF,
("Open file \"%s\" to store DBDC cfg! (%d)\n",
src, count_depth(mtb[card_idx].profile_2g)));
} else
src = (profile_id == MTB_2G_PROFILE) ? mtb[card_idx].profile_2g : mtb[card_idx].profile_5g;
return src;
}
/*
* open & read profile
*/
static INT multi_profile_read(CHAR *fname, CHAR *buf)
{
INT retval = NDIS_STATUS_FAILURE;
RTMP_OS_FD_EXT srcf;
if (!fname)
return retval;
srcf = os_file_open(fname, O_RDONLY, 0);
if (srcf.Status) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Open file \"%s\" failed!\n", fname));
return retval;
}
if (buf) {
os_zero_mem(buf, MAX_INI_BUFFER_SIZE);
retval = os_file_read(srcf, buf, MAX_INI_BUFFER_SIZE - 1);
if (retval > 0)
retval = NDIS_STATUS_SUCCESS;
else
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Read file \"%s\" failed(errCode=%d)!\n", fname, retval));
} else
retval = NDIS_STATUS_FAILURE;
if (os_file_close(srcf) != 0) {
retval = NDIS_STATUS_FAILURE;
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Close file \"%s\" failed(errCode=%d)!\n", fname, retval));
}
return retval;
}
/*
* write merge profile for check
*/
static INT multi_profile_write(CHAR *fname, CHAR *buf)
{
INT retval = NDIS_STATUS_FAILURE;
RTMP_OS_FD_EXT srcf;
if (!fname)
return retval;
srcf = os_file_open(fname, O_WRONLY | O_CREAT, 0);
if (srcf.Status) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Open file \"%s\" failed!\n", fname));
return retval;
}
if (buf) {
retval = os_file_write(srcf, buf, strlen(buf));
if (retval > 0)
retval = NDIS_STATUS_SUCCESS;
else
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Write file \"%s\" failed(errCode=%d)!\n", fname, retval));
} else
retval = NDIS_STATUS_FAILURE;
if (os_file_close(srcf) != 0) {
retval = NDIS_STATUS_FAILURE;
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR, ("Close file \"%s\" failed(errCode=%d)!\n", fname, retval));
}
return retval;
}
/*
* replace function
*/
INT multi_profile_replace(CHAR *cha, CHAR *rep, CHAR *value)
{
CHAR *token = NULL;
while ((token = strstr(value, cha)) != NULL)
strncpy(token, rep, strlen(rep));
return NDIS_STATUS_SUCCESS;
}
/*
* Separate
*/
static INT multi_profile_merge_separate(
UCHAR *parm,
UCHAR *buf1,
UCHAR *buf2,
UCHAR *final)
{
CHAR tmpbuf[TEMP_STR_SIZE] = "";
CHAR tmpbuf2[TEMP_STR_SIZE] = "";
CHAR value[TEMP_STR_SIZE] = "";
if (!buf1 || !buf2)
return NDIS_STATUS_FAILURE;
if (RTMPGetKeyParameter(parm, tmpbuf, TEMP_STR_SIZE, buf1, TRUE) != TRUE)
return NDIS_STATUS_SUCCESS;
if (RTMPGetKeyParameter(parm, tmpbuf2, TEMP_STR_SIZE, buf2, TRUE) != TRUE)
return NDIS_STATUS_SUCCESS;
snprintf(value, sizeof(value), "%s;%s", tmpbuf, tmpbuf2);
RTMPSetKeyParameter(parm, value, TEMP_STR_SIZE, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
/*
*perband
*/
static INT multi_profile_merge_perband(
struct mpf_data *data,
UCHAR *parm,
UCHAR *buf1,
UCHAR *buf2,
UCHAR *final)
{
CHAR tmpbuf1[TEMP_STR_SIZE] = "";
CHAR tmpbuf2[TEMP_STR_SIZE] = "";
CHAR value[TEMP_STR_SIZE] = "";
UCHAR i, j;
CHAR *tmpbuf;
CHAR *macptr;
if (!buf1 || !buf2)
return NDIS_STATUS_FAILURE;
if (RTMPGetKeyParameter(parm, tmpbuf1, TEMP_STR_SIZE, buf1, TRUE) != TRUE)
return NDIS_STATUS_SUCCESS;
if (RTMPGetKeyParameter(parm, tmpbuf2, TEMP_STR_SIZE, buf2, TRUE) != TRUE)
return NDIS_STATUS_SUCCESS;
os_zero_mem(value, sizeof(value));
/*check number of perband parameter mode*/
for (i = 0, macptr = rstrtok(tmpbuf1, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
/*do nothing*/
for (j = 0, macptr = rstrtok(tmpbuf2, ";"); macptr; macptr = rstrtok(NULL, ";"), j++)
/*do nothing*/
if (i > 1 || j > 1) {
multi_profile_merge_separate(parm, buf1, buf2, final);
} else {
for (i = 0; i < data->total_num; i++) {
tmpbuf = (i < data->pf1_num) ? tmpbuf1 : tmpbuf2;
snprintf(value, sizeof(value), "%s%s;", value, tmpbuf);
}
RTMPSetKeyParameter(parm, value, TEMP_STR_SIZE, final, TRUE);
}
return NDIS_STATUS_SUCCESS;
}
#ifdef CONFIG_AP_SUPPORT
#ifdef MBSS_SUPPORT
/*
* MACAddress(Idx)
*/
static INT multi_profile_merge_mac_address(
struct mpf_data *mpf,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
CHAR tmpbuf[25] = "";
CHAR tok_str[25] = "";
UCHAR i = 0;
UCHAR j = 0;
/* set file parameter to portcfg*/
if (RTMPGetKeyParameter("MacAddress", tmpbuf, 25, buf2, TRUE)) {
snprintf(tok_str, sizeof(tok_str), "MacAddress%d", mpf->pf1_num);
RTMPAddKeyParameter(tok_str, tmpbuf, 25, final);
}
for (i = 1; i <= mpf->pf2_num ; i++) {
snprintf(tok_str, sizeof(tok_str), "MacAddress%d", i);
if (RTMPGetKeyParameter(tok_str, tmpbuf, 25, buf2, TRUE)) {
j = i + mpf->pf1_num;
snprintf(tok_str, sizeof(tok_str), "MacAddress%d", j);
RTMPAddKeyParameter(tok_str, tmpbuf, 25, final);
}
}
return NDIS_STATUS_SUCCESS;
}
/*
* For increase from 1
*/
static INT multi_profile_merge_increase(
struct mpf_data *mpf,
UCHAR start_idx,
CHAR *parm,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
CHAR tmpbuf[TEMP_STR_SIZE] = "";
CHAR tok_str[25] = "";
UCHAR i = 0;
UCHAR j = 0;
UCHAR k = 0;
/* set file parameter to portcfg*/
for (i = 0; i < mpf->pf2_num; i++) {
k = start_idx + i;
snprintf(tok_str, sizeof(tok_str), "%s%d", parm, k);
if (RTMPGetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, buf2, FALSE)) {
j = k + mpf->pf1_num;
snprintf(tok_str, sizeof(tok_str), "%s%d", parm, j);
RTMPSetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, final, TRUE);
}
}
return NDIS_STATUS_SUCCESS;
}
/*
* Key%dType & Key%dStr%
*/
static INT multi_profile_merge_keytype(
struct mpf_data *mpf,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
CHAR tmpbuf[TEMP_STR_SIZE] = "";
CHAR tok_str[25] = "";
UCHAR i = 0;
UCHAR j = 0;
UCHAR k = 0;
for (k = 1; k <= 4; k++) {
snprintf(tok_str, sizeof(tok_str), "Key%dType", k);
multi_profile_merge_separate(tok_str, buf1, buf2, final);
}
/* set file parameter to keytype*/
for (i = 1; i <= mpf->pf2_num; i++) {
j = i + mpf->pf1_num;
for (k = 1; k <= 4; k++) {
snprintf(tok_str, sizeof(tok_str), "Key%dStr%d", k, i);
if (RTMPGetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, buf2, TRUE)) {
snprintf(tok_str, sizeof(tok_str), "Key%dStr%d", k, j);
RTMPSetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, final, TRUE);
}
}
}
return NDIS_STATUS_SUCCESS;
}
/*
* Security
*/
static INT multi_profile_merge_security(
struct mpf_data *mpf,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*IEEE8021X*/
multi_profile_merge_separate("IEEE8021X", buf1, buf2, final);
/*PreAuth*/
multi_profile_merge_separate("PreAuth", buf1, buf2, final);
/*AuthMode*/
multi_profile_merge_separate("AuthMode", buf1, buf2, final);
/*EncrypType*/
multi_profile_merge_separate("EncrypType", buf1, buf2, final);
/*RekeyMethod*/
multi_profile_merge_separate("RekeyMethod", buf1, buf2, final);
/*RekeyInterval*/
multi_profile_merge_separate("RekeyInterval", buf1, buf2, final);
/*PMKCachePeriod*/
multi_profile_merge_separate("PMKCachePeriod", buf1, buf2, final);
/*WPAPSK*/
multi_profile_merge_increase(mpf, 1, "WPAPSK", buf1, buf2, final);
/*DefaultKeyID*/
multi_profile_merge_separate("DefaultKeyID", buf1, buf2, final);
/*KeyType & KeyStr*/
multi_profile_merge_keytype(mpf, buf1, buf2, final);
/*AccessPolicy */
multi_profile_merge_increase(mpf, 0, "AccessPolicy", buf1, buf2, final);
/*AccessControlList*/
multi_profile_merge_increase(mpf, 0, "AccessControlList", buf1, buf2, final);
/*RADIUS_Server*/
multi_profile_merge_separate("RADIUS_Server", buf1, buf2, final);
/*RADIUS_Port*/
multi_profile_merge_separate("RADIUS_Port", buf1, buf2, final);
/*RADIUS_Key*/
multi_profile_merge_separate("RADIUS_Key", buf1, buf2, final);
/*RADIUS Key%d*/
multi_profile_merge_increase(mpf, 1, "RADIUS_Key", buf1, buf2, final);
/*EAPifname*/
multi_profile_merge_separate("EAPifname", buf1, buf2, final);
/*PreAuthifname*/
multi_profile_merge_separate("PreAuthifname", buf1, buf2, final);
/*PMFMFPC*/
multi_profile_merge_separate("PMFMFPC", buf1, buf2, final);
/*PMFMFPR*/
multi_profile_merge_separate("PMFMFPR", buf1, buf2, final);
/*PMFSHA256*/
multi_profile_merge_separate("PMFSHA256", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
/*
*
*/
/* TODO: related to multi_profile_merge_apedca */
static INT multi_profile_merge_default_edca(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR i;
CHAR aifs[32] = "";
CHAR cwmin[32] = "";
CHAR cwmax[32] = "";
CHAR txop[32] = "";
CHAR acm[32] = "";
CHAR *buf = NULL;
CHAR value[256] = "";
UCHAR idx;
CHAR tok_str[25] = "";
for (i = 0; i < 2; i++) {
buf = (i == 0) ? buf1 : buf2;
os_zero_mem(value, sizeof(value));
/*APAifsn*/
if (RTMPGetKeyParameter("APAifsn", aifs, sizeof(aifs), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", aifs);
/*APCwmin*/
if (RTMPGetKeyParameter("APCwmin", cwmin, sizeof(cwmin), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", cwmin);
/*APCwmax*/
if (RTMPGetKeyParameter("APCwmax", cwmax, sizeof(cwmax), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", cwmax);
/*APTxop*/
if (RTMPGetKeyParameter("APTxop", txop, sizeof(txop), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", txop);
/*APACM*/
if (RTMPGetKeyParameter("APACM", acm, sizeof(acm), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", acm);
/*merge*/
snprintf(value, sizeof(value), "1;%s;%s;%s;%s;%s", aifs, cwmin, cwmax, txop, acm);
/*set*/
snprintf(tok_str, sizeof(tok_str), "APEdca%d", i);
RTMPSetKeyParameter(tok_str, value, sizeof(value), final, TRUE);
}
os_zero_mem(value, sizeof(value));
for (i = 0; i < data->total_num; i++) {
idx = (i < data->pf1_num) ? 0 : 1;
snprintf(value, sizeof(value), "%s%d;", value, idx);
}
RTMPSetKeyParameter("EdcaIdx", value, sizeof(value), final, TRUE);
return NDIS_STATUS_SUCCESS;
}
/*
* apedca
*/
static INT multi_profile_merge_apedca(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
CHAR tmpbuf[256] = "";
CHAR tmpbuf2[256] = "";
UCHAR edca_idx = 0;
CHAR *macptr;
UCHAR i;
UCHAR j;
UCHAR edca_own[4] = { 0, 0, 0, 0 };
CHAR tok_str[25] = "";
/*for seach 2.4G band EdcaIdx*/
if (RTMPGetKeyParameter("EdcaIdx", tmpbuf, 256, buf1, FALSE) != TRUE)
/*default EDCA parameters*/
return multi_profile_merge_default_edca(data, buf1, buf2, final);
for (i = 0, macptr = rstrtok(tmpbuf, ";"); macptr; macptr = rstrtok(NULL, ";"), i++) {
edca_idx = simple_strtol(macptr, 0, 10);
if (edca_idx < 4)
edca_own[edca_idx] = (0x10 | edca_idx);
}
/*for seach 5G band EdcaIdx*/
if (RTMPGetKeyParameter("EdcaIdx", tmpbuf2, 256, buf2, FALSE) != TRUE)
return NDIS_STATUS_SUCCESS;
for (i = 0, macptr = rstrtok(tmpbuf2, ";"); macptr; macptr = rstrtok(NULL, ";"), i++) {
edca_idx = simple_strtol(macptr, 0, 10);
if (edca_idx >= 4) {
snprintf(tmpbuf, sizeof(tmpbuf), "%s;%d", tmpbuf, 0);
continue;
}
for (j = 0; j < 4; j++) {
if (edca_own[j] == 0)
break;
}
if (j < 4)
edca_own[j] = (0x20 | edca_idx);
snprintf(tmpbuf, sizeof(tmpbuf), "%s;%d", tmpbuf, j);
}
RTMPSetKeyParameter("EdcaIdx", tmpbuf, 256, final, TRUE);
/*merge ApEdca%*/
for (i = 0; i < 4; i++) {
if (edca_own[i] & 0x10)
macptr = buf1;
else if (edca_own[i] & 0x20)
macptr = buf2;
else
continue;
j = (edca_own[i] & 0x3);
snprintf(tok_str, sizeof(tok_str), "APEdca%d", j);
if (RTMPGetKeyParameter(tok_str, tmpbuf, 256, macptr, TRUE)) {
snprintf(tok_str, sizeof(tok_str), "APEdca%d", i);
RTMPSetKeyParameter(tok_str, tmpbuf, 256, final, TRUE);
}
}
return NDIS_STATUS_SUCCESS;
}
/*
* bssedca
*/
static INT multi_profile_merge_bssedca(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR i;
CHAR aifs[32] = "";
CHAR cwmin[32] = "";
CHAR cwmax[32] = "";
CHAR txop[32] = "";
CHAR acm[32] = "";
CHAR *buf = NULL;
CHAR value[256] = "";
CHAR tok_str[25] = "";
for (i = 0; i < data->total_num; i++) {
buf = (i < data->pf1_num) ? buf1 : buf2;
os_zero_mem(value, sizeof(value));
/*BSSAifsn*/
if (RTMPGetKeyParameter("BSSAifsn", aifs, sizeof(aifs), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", aifs);
/*BSSCwmin*/
if (RTMPGetKeyParameter("BSSCwmin", cwmin, sizeof(cwmin), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", cwmin);
/*BSSCwmax*/
if (RTMPGetKeyParameter("BSSCwmax", cwmax, sizeof(cwmax), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", cwmax);
/*BSSTxop*/
if (RTMPGetKeyParameter("BSSTxop", txop, sizeof(txop), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", txop);
/*BSSACM*/
if (RTMPGetKeyParameter("BSSACM", acm, sizeof(acm), buf, FALSE) != TRUE)
return NDIS_STATUS_FAILURE;
multi_profile_replace(";", ",", acm);
/*merge*/
snprintf(value, sizeof(value), "%s;%s;%s;%s;%s", aifs, cwmin, cwmax, txop, acm);
/*set*/
snprintf(tok_str, sizeof(tok_str), "BSSEdca%d", i);
RTMPSetKeyParameter(tok_str, value, sizeof(value), final, TRUE);
}
return NDIS_STATUS_SUCCESS;
}
/*
* Channel
*/
static INT multi_profile_merge_channel(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR ch1[32] = "";
UCHAR ch2[32] = "";
UCHAR value[256] = "";
UCHAR i;
UCHAR *ch;
if (RTMPGetKeyParameter("Channel", ch1, sizeof(ch1), buf1, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
if (RTMPGetKeyParameter("Channel", ch2, sizeof(ch2), buf2, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
os_zero_mem(value, sizeof(value));
for (i = 0; i < data->total_num; i++) {
ch = (i < data->pf1_num) ? ch1 : ch2;
snprintf(value, sizeof(value), "%s%s;", value, ch);
}
RTMPSetKeyParameter("Channel", value, sizeof(value), final, TRUE);
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_chgrp(
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR chgrp1[TEMP_STR_SIZE] = "";
UCHAR chgrp2[TEMP_STR_SIZE] = "";
UCHAR value[TEMP_STR_SIZE] = "";
if (RTMPGetKeyParameter("ChannelGrp", chgrp1, TEMP_STR_SIZE, buf1, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
if (strlen(chgrp1) < LEN_BITMAP_CHGRP) {
snprintf(chgrp1, sizeof(chgrp1), "0:0:0:0");
}
if (RTMPGetKeyParameter("ChannelGrp", chgrp2, TEMP_STR_SIZE, buf2, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
if (strlen(chgrp2) < LEN_BITMAP_CHGRP) {
snprintf(chgrp2, sizeof(chgrp2), "0:0:0:0");
}
os_zero_mem(value, sizeof(value));
snprintf(value, sizeof(value), "%s;%s", chgrp1, chgrp2);
RTMPSetKeyParameter("ChannelGrp", value, TEMP_STR_SIZE, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
/*
* WirelessMode
*/
static INT multi_profile_merge_wireless_mode(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR wmode1[32] = "";
UCHAR wmode2[32] = "";
UCHAR value[256] = "";
CHAR *macptr;
UCHAR i;
UCHAR *ch;
if (RTMPGetKeyParameter("WirelessMode", wmode1, sizeof(wmode1), buf1, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
/*check number of wireless mode*/
for (i = 0, macptr = rstrtok(wmode1, ";") ; macptr ; macptr = rstrtok(NULL, ";"), i++)
/*do nothing*/
if (i > 1) {
multi_profile_merge_separate("WirelessMode", buf1, buf2, final);
} else {
if (RTMPGetKeyParameter("WirelessMode", wmode2, sizeof(wmode2), buf2, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
os_zero_mem(value, sizeof(value));
for (i = 0 ; i < data->total_num ; i++) {
ch = (i < data->pf1_num) ? wmode1 : wmode2;
snprintf(value, sizeof(value), "%s%s;", value, ch);
}
RTMPSetKeyParameter("WirelessMode", value, sizeof(value), final, TRUE);
}
return NDIS_STATUS_SUCCESS;
}
/*
* VOW_BW_Ctrl
*/
static INT multi_profile_merge_vow_bw_ctrl(
struct mpf_data *data,
CHAR *parm,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR group1[128] = "";
UCHAR group2[128] = "";
UCHAR value[128] = "";
UCHAR i;
UCHAR *ptok = NULL;
if (RTMPGetKeyParameter(parm, group1, sizeof(group1), buf1, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
if (RTMPGetKeyParameter(parm, group2, sizeof(group2), buf2, TRUE) != TRUE)
return NDIS_STATUS_FAILURE;
os_zero_mem(value, sizeof(value));
for (i = 0, ptok = rstrtok(group1, ";"); ptok; ptok = rstrtok(NULL, ";"), i++) {
if (i >= data->pf1_num)
break;
snprintf(value, sizeof(value), "%s%s;", value, ptok);
}
for (i = 0, ptok = rstrtok(group2, ";"); ptok; ptok = rstrtok(NULL, ";"), i++) {
if (i >= data->pf2_num)
break;
snprintf(value, sizeof(value), "%s%s;", value, ptok);
}
RTMPSetKeyParameter(parm, value, sizeof(value), final, TRUE);
return NDIS_STATUS_SUCCESS;
}
/*
*
*/
static INT multi_profile_merge_ack_policy(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
UCHAR i;
UCHAR idx;
CHAR tmpbuf[32];
CHAR tok_str[25] = "";
/*read 2.4G profile*/
if (RTMPGetKeyParameter("AckPolicy", tmpbuf, 32, buf1, TRUE)) {
for (i = 0 ; i < data->pf1_num ; i++) {
snprintf(tok_str, sizeof(tok_str), "APAckPolicy%d", i);
RTMPSetKeyParameter(tok_str, tmpbuf, sizeof(tmpbuf), final, TRUE);
}
}
/*read 5G profile*/
if (RTMPGetKeyParameter("AckPolicy", tmpbuf, 32, buf2, TRUE)) {
for (i = 0 ; i < data->pf2_num ; i++) {
idx = i + data->pf1_num;
snprintf(tok_str, sizeof(tok_str), "APAckPolicy%d", idx);
RTMPSetKeyParameter(tok_str, tmpbuf, sizeof(tmpbuf), final, TRUE);
}
}
return NDIS_STATUS_SUCCESS;
}
/*
* Country Region
*/
static INT multi_profile_merge_country_region(
struct mpf_data *data,
CHAR *parm,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
INT Status = FALSE;
CHAR value[TEMP_STR_SIZE] = "";
CHAR tmpbuf[TEMP_STR_SIZE] = "";
#ifdef DEFAULT_5G_PROFILE
Status = RTMPGetKeyParameter(parm, tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
#else
Status = RTMPGetKeyParameter(parm, tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
#endif
if (Status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter(parm, value, TEMP_STR_SIZE, final, TRUE);
}
return NDIS_STATUS_SUCCESS;
}
/*
* mbss related merge function
*/
static INT multi_profile_merge_mbss(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*merge MACAddress*/
multi_profile_merge_mac_address(data, buf1, buf2, final);
/*merge SSID*/
multi_profile_merge_increase(data, 1, "SSID", buf1, buf2, final);
/*merge FragThreshold*/
multi_profile_merge_perband(data, "FragThreshold", buf1, buf2, final);
/*merge DLSCapable*/
multi_profile_merge_separate("DLSCapable", buf1, buf2, final);
/* MAP config */
#ifdef CONFIG_MAP_SUPPORT
multi_profile_merge_separate("MapEnable", buf1, buf2, final);
multi_profile_merge_separate("MAP_Turnkey", buf1, buf2, final);
multi_profile_merge_separate("MAP_Ext", buf1, buf2, final);
#endif
/*merge WirelessMode*/
multi_profile_merge_wireless_mode(data, buf1, buf2, final);
/*merge Channel*/
multi_profile_merge_channel(data, buf1, buf2, final);
/*merge ChannelGrp*/
multi_profile_merge_chgrp(buf1, buf2, final);
/*merge AutoChannelSkipList*/
multi_profile_merge_separate("AutoChannelSkipList", buf1, buf2, final);
/*merge ACSCheckTime*/
multi_profile_merge_separate("ACSCheckTime", buf1, buf2, final);
/*merge security*/
multi_profile_merge_security(data, buf1, buf2, final);
/*merge WmmCapable*/
multi_profile_merge_separate("WmmCapable", buf1, buf2, final);
/*merge NoForwarding*/
multi_profile_merge_separate("NoForwarding", buf1, buf2, final);
/*merge StationKeepAlive*/
multi_profile_merge_perband(data, "StationKeepAlive", buf1, buf2, final);
/*merge HideSSID*/
multi_profile_merge_separate("HideSSID", buf1, buf2, final);
/*merge HT_EXTCHA*/
multi_profile_merge_perband(data, "HT_EXTCHA", buf1, buf2, final);
/*merge HT_TxStream*/
multi_profile_merge_perband(data, "HT_TxStream", buf1, buf2, final);
/*merge HT_RxStream*/
multi_profile_merge_perband(data, "HT_RxStream", buf1, buf2, final);
/*merge HT_MCS*/
multi_profile_merge_separate("HT_MCS", buf1, buf2, final);
/*merge HT_BW*/
multi_profile_merge_perband(data, "HT_BW", buf1, buf2, final);
/*merge HT_STBC*/
multi_profile_merge_perband(data, "HT_STBC", buf1, buf2, final);
/*merge HT_LDPC*/
multi_profile_merge_perband(data, "HT_LDPC", buf1, buf2, final);
/*merge HT_AMSDU*/
multi_profile_merge_perband(data, "HT_AMSDU", buf1, buf2, final);
/*merge VHT_STBC*/
multi_profile_merge_separate("VHT_STBC", buf1, buf2, final);
/*merge VHT_LDPC*/
multi_profile_merge_separate("VHT_LDPC", buf1, buf2, final);
/*merge MbssMaxStaNum*/
multi_profile_merge_separate("MbssMaxStaNum", buf1, buf2, final);
/*merge APSDCapable*/
multi_profile_merge_separate("APSDCapable", buf1, buf2, final);
/*merge DscpQosMapping*/
#ifdef DSCP_QOS_MAP_SUPPORT
multi_profile_merge_separate("DscpQosMapEnable", buf1, buf2, final);
multi_profile_merge_separate("DscpQosMap", buf1, buf2, final);
#endif
/*merge APEdcaIdx*/
multi_profile_merge_apedca(data, buf1, buf2, final);
/*merge BSSEdcaIdx*/
multi_profile_merge_bssedca(data, buf1, buf2, final);
/*merge AckPolicy*/
multi_profile_merge_ack_policy(data, buf1, buf2, final);
/*merge CountryRegionABand*/
multi_profile_merge_country_region(data, "CountryRegionABand", buf1, buf2, final);
/*merge VOW BW_Ctrl related profile*/
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Min_Rate", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Max_Rate", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Min_Ratio", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Max_Ratio", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Airtime_Ctrl_En", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Rate_Ctrl_En", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Min_Rate_Bucket_Size", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Max_Rate_Bucket_Size", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Min_Airtime_Bucket_Size", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Max_Airtime_Bucket_Size", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Backlog", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_Max_Wait_Time", buf1, buf2, final);
multi_profile_merge_vow_bw_ctrl(data, "VOW_Group_DWRR_Quantum", buf1, buf2, final);
multi_profile_merge_wsc(data, buf1, buf2, final);
#ifdef TXBF_SUPPORT
/*merge ETxBfEnCond*/
multi_profile_merge_perband(data, "ETxBfEnCond", buf1, buf2, final);
/*merge ITxBfEn*/
multi_profile_merge_perband(data, "ITxBfEn", buf1, buf2, final);
#endif /* TXBF_SUPPORT */
return NDIS_STATUS_SUCCESS;
}
/*
* wsc related merge function
*/
static INT multi_profile_merge_wsc(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
#if defined(WSC_V2_SUPPORT) || defined(WSC_AP_SUPPORT)
UCHAR WscConMode[32] = "";
UCHAR WscConMode2[32] = "";
UCHAR value[256] = "";
INT i;
CHAR *macptr;
#endif
#ifdef WSC_V2_SUPPORT
/*merge WscV2Support*/
{
/*merge WscConfMode*/
if (RTMPGetKeyParameter("WscV2Support", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_wsc_v2_done;
for (i = 0, macptr = rstrtok(WscConMode, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscV2Support", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_wsc_v2_done;
if (data->pf1_num > i) {/* need to append default value */
INT append_cnt = data->pf1_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode, sizeof(WscConMode), "%s; ", WscConMode);
append_cnt--;
loop_cnt++;
}
} else if (data->pf1_num < i)
goto label_wsc_v2_done;
if (RTMPGetKeyParameter("WscV2Support", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_wsc_v2_done;
for (i = 0, macptr = rstrtok(WscConMode2, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscV2Support", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_wsc_v2_done;
if (data->pf2_num > i) {/* need to append default value */
INT append_cnt = data->pf2_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode2, sizeof(WscConMode2), "%s; ", WscConMode2);
append_cnt--;
loop_cnt++;
}
} else if (data->pf2_num < i)
goto label_wsc_v2_done;
snprintf(value, sizeof(value), "%s;%s", WscConMode, WscConMode2);
RTMPSetKeyParameter("WscV2Support", value, sizeof(value), final, TRUE);
}
label_wsc_v2_done:
#endif /*WSC_V2_SUPPORT*/
#ifdef WSC_AP_SUPPORT
{
/*merge WscConfMode*/
if (RTMPGetKeyParameter("WscConfMode", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_WscConfMode_done;
for (i = 0, macptr = rstrtok(WscConMode, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscConfMode", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_WscConfMode_done;
if (data->pf1_num > i) {/* need to append default value */
INT append_cnt = data->pf1_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode, sizeof(WscConMode), "%s; ", WscConMode);
append_cnt--;
loop_cnt++;
}
} else if (data->pf1_num < i)
goto label_WscConfMode_done;
if (RTMPGetKeyParameter("WscConfMode", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_WscConfMode_done;
for (i = 0, macptr = rstrtok(WscConMode2, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscConfMode", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_WscConfMode_done;
if (data->pf2_num > i) {/* need to append default value */
INT append_cnt = data->pf2_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode2, sizeof(WscConMode2), "%s; ", WscConMode2);
append_cnt--;
loop_cnt++;
}
} else if (data->pf2_num < i)
goto label_WscConfMode_done;
snprintf(value, sizeof(value), "%s;%s", WscConMode, WscConMode2);
RTMPSetKeyParameter("WscConfMode", value, sizeof(value), final, TRUE);
label_WscConfMode_done:
/*merge WscConfStatus*/
if (RTMPGetKeyParameter("WscConfStatus", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_WscConfStatus_done;
for (i = 0, macptr = rstrtok(WscConMode, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscConfStatus", WscConMode, sizeof(WscConMode), buf1, TRUE) != TRUE)
goto label_WscConfStatus_done;
if (data->pf1_num > i) {/* need to append default value */
INT append_cnt = data->pf1_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode, sizeof(WscConMode), "%s; ", WscConMode);
append_cnt--;
loop_cnt++;
}
} else if (data->pf1_num < i)
goto label_WscConfStatus_done;
if (RTMPGetKeyParameter("WscConfStatus", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_WscConfStatus_done;
for (i = 0, macptr = rstrtok(WscConMode2, ";"); macptr; macptr = rstrtok(NULL, ";"), i++)
;/*do nothing*/
if (RTMPGetKeyParameter("WscConfStatus", WscConMode2, sizeof(WscConMode2), buf2, TRUE) != TRUE)
goto label_WscConfStatus_done;
if (data->pf2_num > i) {/* need to append default value */
INT append_cnt = data->pf2_num - i;
INT loop_cnt = 0;
while (append_cnt) {
snprintf(WscConMode2, sizeof(WscConMode2), "%s; ", WscConMode2);
append_cnt--;
loop_cnt++;
}
} else if (data->pf2_num < i)
goto label_WscConfStatus_done;
snprintf(value, sizeof(value), "%s;%s", WscConMode, WscConMode2);
RTMPSetKeyParameter("WscConfStatus", value, sizeof(value), final, TRUE);
}
label_WscConfStatus_done:
#endif /*WSC_AP_SUPPORT*/
return NDIS_STATUS_SUCCESS;
}
#endif /*MBSS_SUPPORT*/
#ifdef APCLI_SUPPORT
/*
* apcli related merge function
*/
static INT multi_profile_merge_apcli(
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
INT status = FALSE;
CHAR tmpbuf[TEMP_STR_SIZE] = "";
CHAR value[TEMP_STR_SIZE] = "";
#ifdef MAC_REPEATER_SUPPORT
/*MACRepeaterEn, use profile 1*/
status = RTMPGetKeyParameter("MACRepeaterEn", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("MACRepeaterEn", value, TEMP_STR_SIZE, final, TRUE);
}
/*MACRepeaterOuiMode, use profile 1*/
status = RTMPGetKeyParameter("MACRepeaterOuiMode", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("MACRepeaterOuiMode", value, TEMP_STR_SIZE, final, TRUE);
}
#endif
/*merge ApCliEnable*/
multi_profile_merge_separate("ApCliEnable", buf1, buf2, final);
/*merge ApCliSsid*/
/*multi_profile_merge_separate("ApCliSsid", buf1, buf2, final);*/
/*read SSID with space allowed*/
{
if (RTMPGetKeyParameter("ApCliSsid", tmpbuf, TEMP_STR_SIZE, buf1, FALSE) == TRUE)
snprintf(value, sizeof(value), "%s", tmpbuf);
else
snprintf(value, sizeof(value), "%s", "");
if (RTMPGetKeyParameter("ApCliSsid", tmpbuf, TEMP_STR_SIZE, buf2, FALSE) == TRUE)
snprintf(value, sizeof(value), "%s;%s", value, tmpbuf);
RTMPSetKeyParameter("ApCliSsid", value, TEMP_STR_SIZE, final, FALSE);
}
/*merge ApCliWirelessMode*/
multi_profile_merge_separate("ApCliWirelessMode", buf1, buf2, final);
/*merge ApCliBssid*/
multi_profile_merge_separate("ApCliBssid", buf1, buf2, final);
/*merge ApCliAuthMode*/
multi_profile_merge_separate("ApCliAuthMode", buf1, buf2, final);
/*merge ApCliEncrypType*/
multi_profile_merge_separate("ApCliEncrypType", buf1, buf2, final);
{
/*merge apcli0 ApCliWPAPSK*/
status = RTMPGetKeyParameter("ApCliWPAPSK", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliWPAPSK", value, TEMP_STR_SIZE, final, TRUE);
}
/*tansfer apcli1 ApCliWPAPSK to ApCliWPAPSK1*/
status = RTMPGetKeyParameter("ApCliWPAPSK", tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliWPAPSK1", value, TEMP_STR_SIZE, final, TRUE);
}
}
/*merge ApCliDefaultKeyID*/
multi_profile_merge_separate("ApCliDefaultKeyID", buf1, buf2, final);
/*merge ApCliKey1Type*/
multi_profile_merge_separate("ApCliKey1Type", buf1, buf2, final);
/*merge ApCliKey2Type*/
multi_profile_merge_separate("ApCliKey2Type", buf1, buf2, final);
/*merge ApCliKey3Type*/
multi_profile_merge_separate("ApCliKey3Type", buf1, buf2, final);
/*merge ApCliKey4Type*/
multi_profile_merge_separate("ApCliKey4Type", buf1, buf2, final);
{
/*merge apcli0 ApCliKey1Str*/
status = RTMPGetKeyParameter("ApCliKey1Str", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey1Str", value, TEMP_STR_SIZE, final, TRUE);
}
/*tansfer apcli1 ApCliKey1Str to ApCliKey1Str1*/
status = RTMPGetKeyParameter("ApCliKey1Str", tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey1Str1", value, TEMP_STR_SIZE, final, TRUE);
}
/*merge apcli0 ApCliKey2Str*/
status = RTMPGetKeyParameter("ApCliKey2Str", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey2Str", value, TEMP_STR_SIZE, final, TRUE);
}
/*tansfer apcli1 ApCliKey2Str to ApCliKey2Str1*/
status = RTMPGetKeyParameter("ApCliKey2Str", tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey2Str1", value, TEMP_STR_SIZE, final, TRUE);
}
/*merge apcli0 ApCliKey3Str*/
status = RTMPGetKeyParameter("ApCliKey3Str", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey3Str", value, TEMP_STR_SIZE, final, TRUE);
}
/*tansfer apcli1 ApCliKey3Str to ApCliKey3Str1*/
status = RTMPGetKeyParameter("ApCliKey3Str", tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey3Str1", value, TEMP_STR_SIZE, final, TRUE);
}
/*merge apcli0 ApCliKey4Str*/
status = RTMPGetKeyParameter("ApCliKey4Str", tmpbuf, TEMP_STR_SIZE, buf1, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey4Str", value, TEMP_STR_SIZE, final, TRUE);
}
/*tansfer apcli1 ApCliKey4Str to ApCliKey4Str1*/
status = RTMPGetKeyParameter("ApCliKey4Str", tmpbuf, TEMP_STR_SIZE, buf2, TRUE);
if (status == TRUE) {
snprintf(value, sizeof(value), "%s", tmpbuf);
RTMPSetKeyParameter("ApCliKey4Str1", value, TEMP_STR_SIZE, final, TRUE);
}
}
/*merge ApCliTxMode*/
multi_profile_merge_separate("ApCliTxMode", buf1, buf2, final);
/*merge ApCliTxMcs*/
multi_profile_merge_separate("ApCliTxMcs", buf1, buf2, final);
#ifdef WSC_AP_SUPPORT
/*merge ApCli_Wsc4digitPinCode*/
multi_profile_merge_separate("ApCli_Wsc4digitPinCode", buf1, buf2, final);
/*merge ApCliWscScanMode*/
multi_profile_merge_separate("ApCliWscScanMode", buf1, buf2, final);
#endif /*WSC_AP_SUPPORT*/
#ifdef UAPSD_SUPPORT
/*merge ApCliAPSDCapable*/
multi_profile_merge_separate("ApCliAPSDCapable", buf1, buf2, final);
#endif /*UAPSD_SUPPORT*/
/*merge ApCliPMFMFPC*/
multi_profile_merge_separate("ApCliPMFMFPC", buf1, buf2, final);
/*merge ApCliPMFMFPR*/
multi_profile_merge_separate("ApCliPMFMFPR", buf1, buf2, final);
/*merge ApCliPMFSHA256*/
multi_profile_merge_separate("ApCliPMFSHA256", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif /*APCLI_SUPPORT*/
#ifdef BAND_STEERING
static INT multi_profile_merge_bandsteering(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/* multi_profile_merge_separate("BndStrgBssIdx",buf1,buf2,final); */
/* return NDIS_STATUS_SUCCESS; */
CHAR tmpbuf[TEMP_STR_SIZE] = "";
CHAR tmpbuf2[TEMP_STR_SIZE] = "";
CHAR value[TEMP_STR_SIZE] = "";
RTMP_STRING *macptr = NULL;
int i = 0;
if (!buf1 || !buf2)
return NDIS_STATUS_FAILURE;
if (RTMPGetKeyParameter("BndStrgBssIdx", tmpbuf, TEMP_STR_SIZE, buf1, TRUE)) {
for (i = 0, macptr = rstrtok(tmpbuf, ";"); macptr; macptr = rstrtok(NULL, ";"), i++) {
if (i == data->pf1_num)
break;
if (i == 0)
snprintf((value + strlen(value)), sizeof(value), "%s", macptr);
else
snprintf((value + strlen(value)), sizeof(value), ";%s", macptr);
}
if (i < data->pf1_num) {
for (; i < data->pf1_num; i++) {
if (i == 0)
snprintf((value + strlen(value)), sizeof(value), "%s", "1");
else
snprintf((value + strlen(value)), sizeof(value), ";%s", "0");
}
}
} else{
for (i = 0; i < data->pf1_num; i++) {
if (i == 0)
snprintf((value + strlen(value)), sizeof(value), "%s", "1");
else
snprintf((value + strlen(value)), sizeof(value), ";%s", "0");
}
}
if (RTMPGetKeyParameter("BndStrgBssIdx", tmpbuf2, TEMP_STR_SIZE, buf2, TRUE)) {
for (i = 0, macptr = rstrtok(tmpbuf2, ";"); macptr; macptr = rstrtok(NULL, ";"), i++) {
if (i == data->pf2_num)
break;
snprintf((value + strlen(value)), sizeof(value), ";%s", macptr);
}
if (i < data->pf2_num) {
for (; i < data->pf2_num; i++) {
if (i == 0)
snprintf((value + strlen(value)), sizeof(value), ";%s", "1");
else
snprintf((value + strlen(value)), sizeof(value), ";%s", "0");
}
}
} else{
for (i = 0; i < data->pf2_num; i++) {
if (i == 0)
snprintf((value + strlen(value)), sizeof(value), ";%s", "1");
else
snprintf((value + strlen(value)), sizeof(value), ";%s", "0");
}
}
RTMPSetKeyParameter("BndStrgBssIdx", value, TEMP_STR_SIZE, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
#endif
/*
* BssidNum
*/
static INT multi_profile_merge_bssidnum(struct mpf_data *data, CHAR *buf1, CHAR *buf2, CHAR *final)
{
CHAR tmpbuf[25] = "";
UCHAR num1 = 0;
UCHAR num2 = 0;
UCHAR total;
if (RTMPGetKeyParameter("BssidNum", tmpbuf, 25, buf1, TRUE))
num1 = (UCHAR) simple_strtol(tmpbuf, 0, 10);
if (RTMPGetKeyParameter("BssidNum", tmpbuf, 25, buf2, TRUE))
num2 = (UCHAR) simple_strtol(tmpbuf, 0, 10);
total = num1 + num2;
snprintf(tmpbuf, sizeof(tmpbuf), "%d", total);
RTMPSetKeyParameter("BssidNum", tmpbuf, 25, final, TRUE);
/*assign bss number*/
data->pf1_num = num1;
data->pf2_num = num2;
data->total_num = total;
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_edcca(CHAR *buf1, CHAR *buf2, CHAR *final)
{
/*merge EDCCA*/
multi_profile_merge_separate("EDCCAEnable", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif /*CONFIG_AP_SUPPORT*/
/*
* protections: including HT_PROTECT / RTS_THRESHOLD
*/
static INT multi_profile_merge_protection(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*RTSPktThreshold*/
multi_profile_merge_perband(data, "RTSPktThreshold", buf1, buf2, final);
/*RTSThreshold*/
multi_profile_merge_perband(data, "RTSThreshold", buf1, buf2, final);
/*HT_PRORTECT*/
multi_profile_merge_perband(data, "HT_PROTECT", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_frag(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*Fragment Threshold*/
multi_profile_merge_perband(data, "FragThreshold", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_gi(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*HT_GI*/
multi_profile_merge_perband(data, "HT_GI", buf1, buf2, final);
/*VHT_SGI*/
/*multi_profile_merge_separate(data, "VHT_SGI", buf1, buf2, final);*/
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_mpdu_density(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*HT_MpduDensity*/
multi_profile_merge_perband(data, "HT_MpduDensity", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
static INT multi_profile_merge_ht_mode(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*HT_OpMode*/
multi_profile_merge_perband(data, "HT_OpMode", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
/*
* merge 5G only related
*/
static INT multi_profile_merge_5g_only(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
CHAR tmpbuf[64] = "";
CHAR *buf_mu = buf2;
UCHAR len = sizeof(tmpbuf);
#ifndef DEFAULT_5G_PROFILE
UCHAR tmpbuf_dbdc[25] = "";
UCHAR dbdc_mode = 0;
#endif /* n DEFAULT_5G_PROFILE*/
/*merge VHT_BW*/
if (multi_profile_merge_perband(data, "VHT_BW", buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return NDIS_STATUS_FAILURE;
/*merge VHT_SGI*/
if (multi_profile_merge_perband(data, "VHT_SGI", buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return NDIS_STATUS_FAILURE;
/*merge VHT_BW_SIGNAL*/
if (multi_profile_merge_perband(data, "VHT_BW_SIGNAL", buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return NDIS_STATUS_FAILURE;
/*merge VHT_Sec80_Channel*/
if (multi_profile_merge_perband(data, "VHT_Sec80_Channel", buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return NDIS_STATUS_FAILURE;
#ifndef DEFAULT_5G_PROFILE
/*check dbdc mode is enable*/
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf_dbdc, 25, buf1, TRUE)) {
dbdc_mode = (UCHAR) simple_strtol(tmpbuf_dbdc, 0, 10);
if (dbdc_mode == ENUM_DBDC_5G5G)
buf_mu = buf1; /* 5G+5G, use 1st profile's MUTxRxEnable */
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_OFF,
("[%s] DBDC_MODE=%d\n", __func__, dbdc_mode));
}
#endif /* n DEFAULT_5G_PROFILE*/
/*MUTxRxEnable*/
if (RTMPGetKeyParameter("MUTxRxEnable", tmpbuf, len, buf_mu, TRUE) == TRUE)
RTMPSetKeyParameter("MUTxRxEnable", tmpbuf, len, final, TRUE);
#ifdef DEFAULT_5G_PROFILE
buf_mu = buf1;
#endif
/*IEEE80211H*/
if (RTMPGetKeyParameter("IEEE80211H", tmpbuf, len, buf_mu, TRUE) == TRUE)
RTMPSetKeyParameter("IEEE80211H", tmpbuf, len, final, TRUE);
/*DFS related params is 5G only, use profile 2*/
#ifdef MT_DFS_SUPPORT
/*DfsEnable*/
if (RTMPGetKeyParameter("DfsEnable", tmpbuf, len, buf_mu, TRUE) == TRUE)
RTMPSetKeyParameter("DfsEnable", tmpbuf, len, final, TRUE);
#endif
/*RDRegion*/
if (RTMPGetKeyParameter("RDRegion", tmpbuf, len, buf_mu, TRUE) == TRUE)
RTMPSetKeyParameter("RDRegion", tmpbuf, len, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
#ifdef DEFAULT_5G_PROFILE
/*
* merge 2G only related
*/
static INT multi_profile_merge_2g_only(CHAR *buf1, CHAR *buf2, CHAR *final)
{
CHAR tmpbuf[64] = "";
UCHAR len = sizeof(tmpbuf);
/*merge CountryRegion*/
if (RTMPGetKeyParameter("CountryRegion", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("CountryRegion", tmpbuf, len, final, TRUE);
/*merge DisableOLBC*/
if (RTMPGetKeyParameter("DisableOLBC", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("DisableOLBC", tmpbuf, len, final, TRUE);
/*merge G_BAND_256QAM*/
if (RTMPGetKeyParameter("G_BAND_256QAM", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("G_BAND_256QAM", tmpbuf, len, final, TRUE);
/*merge HT_BSSCoexistence*/
if (RTMPGetKeyParameter("HT_BSSCoexistence", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("HT_BSSCoexistence", tmpbuf, len, final, TRUE);
/*BGProtection*/
if (RTMPGetKeyParameter("BGProtection", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("BGProtection", tmpbuf, len, final, TRUE);
/*TxPreamble*/
if (RTMPGetKeyParameter("TxPreamble", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("TxPreamble", tmpbuf, len, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
/*
* merge global setting only related
*/
static INT multi_profile_merge_global_setting_only(CHAR *buf1, CHAR *buf2, CHAR *final)
{
CHAR tmpbuf[64] = "";
UCHAR len = sizeof(tmpbuf);
/*merge CountryCode*/
if (RTMPGetKeyParameter("CountryCode", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("CountryCode", tmpbuf, len, final, TRUE);
/*merge NoForwardingBTNBSSID*/
if (RTMPGetKeyParameter("NoForwardingBTNBSSID", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("NoForwardingBTNBSSID", tmpbuf, len, final, TRUE);
/*merge GreenAP*/
if (RTMPGetKeyParameter("GreenAP", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("GreenAP", tmpbuf, len, final, TRUE);
/*merge PcieAspm*/
if (RTMPGetKeyParameter("PcieAspm", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("PcieAspm", tmpbuf, len, final, TRUE);
/*DBDC_MODE*/
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("DBDC_MODE", tmpbuf, len, final, TRUE);
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf, len, buf1, TRUE) == TRUE)
RTMPSetKeyParameter("DBDC_MODE", tmpbuf, len, final, TRUE);
/*IcapMode*/
if (RTMPGetKeyParameter("IcapMode", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("IcapMode", tmpbuf, len, final, TRUE);
/*CarrierDetect*/
if (RTMPGetKeyParameter("CarrierDetect", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("CarrierDetect", tmpbuf, len, final, TRUE);
/*DebugFlags*/
if (RTMPGetKeyParameter("DebugFlags", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("DebugFlags", tmpbuf, len, final, TRUE);
/*E2pAccessMode*/
if (RTMPGetKeyParameter("E2pAccessMode", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("E2pAccessMode", tmpbuf, len, final, TRUE);
/*EfuseBufferMode*/
if (RTMPGetKeyParameter("EfuseBufferMode", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("EfuseBufferMode", tmpbuf, len, final, TRUE);
/*WCNTest*/
if (RTMPGetKeyParameter("WCNTest", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("WCNTest", tmpbuf, len, final, TRUE);
/*AutoChannelSelect*/
if (RTMPGetKeyParameter("AutoChannelSelect", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("AutoChannelSelect", tmpbuf, len, final, TRUE);
/*HT_RDG*/
if (RTMPGetKeyParameter("HT_RDG", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("HT_RDG", tmpbuf, len, final, TRUE);
/*HT_BADecline*/
if (RTMPGetKeyParameter("HT_BADecline", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("HT_BADecline", tmpbuf, len, final, TRUE);
/*HT_AutoBA*/
if (RTMPGetKeyParameter("HT_AutoBA", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("HT_AutoBA", tmpbuf, len, final, TRUE);
/*HT_BAWinSize*/
if (RTMPGetKeyParameter("HT_BAWinSize", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("HT_BAWinSize", tmpbuf, len, final, TRUE);
/*BeaconPeriod*/
if (RTMPGetKeyParameter("BeaconPeriod", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("BeaconPeriod", tmpbuf, len, final, TRUE);
/*DtimPeriod*/
if (RTMPGetKeyParameter("DtimPeriod", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("DtimPeriod", tmpbuf, len, final, TRUE);
/*TxBurst*/
if (RTMPGetKeyParameter("TxBurst", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("TxBurst", tmpbuf, len, final, TRUE);
/*PktAggregate*/
if (RTMPGetKeyParameter("PktAggregate", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("PktAggregate", tmpbuf, len, final, TRUE);
/*VOW_WATF_Enable*/
if (RTMPGetKeyParameter("VOW_WATF_Enable", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_WATF_Enable", tmpbuf, len, final, TRUE);
/*VOW_WATF_MAC_LV1*/
if (RTMPGetKeyParameter("VOW_WATF_MAC_LV1", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_WATF_MAC_LV1", tmpbuf, len, final, TRUE);
/*VOW_WATF_MAC_LV2*/
if (RTMPGetKeyParameter("VOW_WATF_MAC_LV2", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_WATF_MAC_LV2", tmpbuf, len, final, TRUE);
/*VOW_WATF_MAC_LV3*/
if (RTMPGetKeyParameter("VOW_WATF_MAC_LV3", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_WATF_MAC_LV3", tmpbuf, len, final, TRUE);
/*VOW_WATF_MAC_LV4*/
if (RTMPGetKeyParameter("VOW_WATF_MAC_LV4", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_WATF_MAC_LV4", tmpbuf, len, final, TRUE);
/*VOW_Airtime_Fairness_En*/
if (RTMPGetKeyParameter("VOW_Airtime_Fairness_En", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_Airtime_Fairness_En", tmpbuf, len, final, TRUE);
/*VOW_BW_Ctrl*/
if (RTMPGetKeyParameter("VOW_BW_Ctrl", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_BW_Ctrl", tmpbuf, len, final, TRUE);
/* VOW_RX_En */
if (RTMPGetKeyParameter("VOW_RX_En", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("VOW_RX_En", tmpbuf, len, final, TRUE);
/*RED_Enable*/
if (RTMPGetKeyParameter("RED_Enable", tmpbuf, len, buf2, TRUE) == TRUE)
RTMPSetKeyParameter("RED_Enable", tmpbuf, len, final, TRUE);
return NDIS_STATUS_SUCCESS;
}
#endif
#ifdef IGMP_SNOOP_SUPPORT
/*
* merge igmp related
*/
static INT multi_profile_merge_igmp(CHAR *buf1, CHAR *buf2, CHAR *final)
{
/*merge VHT_BW*/
multi_profile_merge_separate("IgmpSnEnable", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif /* IGMP_SNOOP_SUPPORT */
/*
*
*/
static INT multi_profile_merge_dbdc_mode(CHAR *buf1, CHAR *buf2, CHAR *final)
{
#ifdef DEFAULT_5G_PROFILE
UCHAR tmpbuf[25] = "";
UCHAR dbdc_mode = 0;
/*check dbdc mode is enable*/
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf, 25, buf1, TRUE)) {
dbdc_mode = (UCHAR) simple_strtol(tmpbuf, 0, 10);
if (!dbdc_mode) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR,
("DBDC_MODE is not enable! Not need to merge.\n"));
goto buf2_check;
}
return NDIS_STATUS_SUCCESS;
}
buf2_check:
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf, 25, buf2, TRUE)) {
dbdc_mode = (UCHAR) simple_strtol(tmpbuf, 0, 10);
if (!dbdc_mode) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR,
("DBDC_MODE is not enable! Not need to merge.\n"));
return NDIS_STATUS_FAILURE;
}
}
return NDIS_STATUS_SUCCESS;
#else
UCHAR tmpbuf[25] = "";
UCHAR dbdc_mode = 0;
/*check dbdc mode is enable*/
if (RTMPGetKeyParameter("DBDC_MODE", tmpbuf, 25, buf1, TRUE)) {
dbdc_mode = (UCHAR) simple_strtol(tmpbuf, 0, 10);
if (!dbdc_mode) {
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_ERROR,
("DBDC_MODE is not enable! Not need to merge.\n"));
return NDIS_STATUS_FAILURE;
}
}
return NDIS_STATUS_SUCCESS;
#endif
}
/*
* TXPOWER merge function for multiple profile mode
*/
static INT multi_profile_merge_txpwr(
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
#ifdef SINGLE_SKU_V2
/*merge SKUenable*/
multi_profile_merge_separate("SKUenable", buf1, buf2, final);
#endif /* SINGLE_SKU_V2 */
/*merge PERCENTAGEenable*/
multi_profile_merge_separate("PERCENTAGEenable", buf1, buf2, final);
/*merge BFBACKOFFenable*/
multi_profile_merge_separate("BFBACKOFFenable", buf1, buf2, final);
/*merge TxPower*/
multi_profile_merge_separate("TxPower", buf1, buf2, final);
#ifdef TX_POWER_CONTROL_SUPPORT
/*merge Tx Power Boost Table*/
multi_profile_merge_separate("PowerUpCckOfdm", buf1, buf2, final);
multi_profile_merge_separate("PowerUpHT20", buf1, buf2, final);
multi_profile_merge_separate("PowerUpHT40", buf1, buf2, final);
multi_profile_merge_separate("PowerUpVHT20", buf1, buf2, final);
multi_profile_merge_separate("PowerUpVHT40", buf1, buf2, final);
multi_profile_merge_separate("PowerUpVHT80", buf1, buf2, final);
multi_profile_merge_separate("PowerUpVHT160", buf1, buf2, final);
#endif /* TX_POWER_CONTROL_SUPPORT */
return NDIS_STATUS_SUCCESS;
}
#ifndef MBSS_SUPPORT
#ifdef TXBF_SUPPORT
/*
* TXBF merge function for multiple profile mode
*/
static INT multi_profile_merge_txbf(
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/* merge ETxBfEnCond*/
multi_profile_merge_separate("ETxBfEnCond", buf1, buf2, final);
/* merge ITxBfEn */
multi_profile_merge_separate("ITxBfEn", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif /* TXBF_SUPPORT */
#endif /* n MBSS_SUPPORT */
#ifdef CONFIG_AP_SUPPORT
#ifdef DOT11R_FT_SUPPORT
static INT multi_profile_merge_ft(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*merge FtMdId*/
multi_profile_merge_increase(data, 1, "FtMdId", buf1, buf2, final);
/*merge FtSupport */
multi_profile_merge_separate("FtSupport", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif
#endif
#ifdef DOT11K_RRM_SUPPORT
static INT multi_profile_merge_rrm(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*merge FtSupport */
multi_profile_merge_separate("RRMEnable", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif
#ifdef CONFIG_DOT11V_WNM
static INT multi_profile_merge_wnm(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
/*merge WNMEnable */
multi_profile_merge_separate("WNMEnable", buf1, buf2, final);
return NDIS_STATUS_SUCCESS;
}
#endif
#ifdef DSCP_PRI_SUPPORT
INT multi_profile_merge_dscp_pri(
struct mpf_data *data,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
INT8 i = 0;
CHAR tok_str[TEMP_STR_SIZE] = "";
CHAR tmpbuf[TEMP_STR_SIZE] = "";
if (!buf2)
return NDIS_STATUS_FAILURE;
for (i = 0; i < data->pf2_num; i++) {
snprintf(tok_str, sizeof(tok_str), "DscpPriMapBss%d", i);
if (RTMPGetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, buf2, TRUE)) {
snprintf(tok_str, sizeof(tok_str), "DscpPriMapBss%d", (data->pf1_num + i));
RTMPSetKeyParameter(tok_str, tmpbuf, TEMP_STR_SIZE, final, TRUE);
} else {
snprintf(tok_str, sizeof(tok_str), "DscpPriMapBss%d", (data->pf1_num + i));
RTMPSetKeyParameter(tok_str, "", TEMP_STR_SIZE, final, TRUE);
}
}
return NDIS_STATUS_SUCCESS;
}
#endif
/*
* set second profile and merge it.
*/
static INT multi_profile_merge(
struct _RTMP_ADAPTER *ad,
CHAR *buf1,
CHAR *buf2,
CHAR *final)
{
INT retval = NDIS_STATUS_FAILURE;
struct mpf_data *data = NULL;
if (multi_profile_merge_dbdc_mode(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
/*create mpf_data*/
os_alloc_mem(ad, (UCHAR **)&data, sizeof(struct mpf_data));
if (!data)
return retval;
ad->multi_pf_ctrl = data;
/*first copy buf1 to final*/
os_move_mem(final, buf1, MAX_INI_BUFFER_SIZE);
#ifdef CONFIG_AP_SUPPORT
IF_DEV_CONFIG_OPMODE_ON_AP(ad) {
/*merge BssidNum*/
if (multi_profile_merge_bssidnum(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#ifdef MBSS_SUPPORT
if (multi_profile_merge_mbss(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif /*MBSS_SUPPORT*/
if (multi_profile_merge_edcca(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#ifdef APCLI_SUPPORT
if (multi_profile_merge_apcli(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif /*APCLI_SUPPORT*/
#ifdef BAND_STEERING
if (multi_profile_merge_bandsteering(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif /* BAND_STEERING */
}
#endif /*CONFIG_AP_SUPPORT*/
if (multi_profile_merge_gi(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
if (multi_profile_merge_protection(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
if (multi_profile_merge_frag(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
if (multi_profile_merge_mpdu_density(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
if (multi_profile_merge_ht_mode(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
if (multi_profile_merge_5g_only(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#ifdef DEFAULT_5G_PROFILE
if (multi_profile_merge_2g_only(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
/* will remove global setting from 2G profile after UI 5G default is ready */
if (multi_profile_merge_global_setting_only(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif
#ifdef IGMP_SNOOP_SUPPORT
if (multi_profile_merge_igmp(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif /* IGMP_SNOOP_SUPPORT */
if (multi_profile_merge_txpwr(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#ifndef MBSS_SUPPORT
#ifdef TXBF_SUPPORT
if (multi_profile_merge_txbf(buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif /* TXBF_SUPPORT */
#endif
#ifdef CONFIG_AP_SUPPORT
#ifdef DOT11R_FT_SUPPORT
if (multi_profile_merge_ft(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif
#endif
#ifdef DOT11K_RRM_SUPPORT
if (multi_profile_merge_rrm(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif
#ifdef CONFIG_DOT11V_WNM
if (multi_profile_merge_wnm(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif
#ifdef DSCP_PRI_SUPPORT
if (multi_profile_merge_dscp_pri(data, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
return retval;
#endif
data->enable = TRUE;
/*adjust specific device name*/
data->specific_dname = TRUE;
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_OFF, (
"multi-profile merge success, en:%d,pf1_num:%d,pf2_num:%d,total:%d\n",
data->enable,
data->pf1_num,
data->pf2_num,
data->total_num));
return NDIS_STATUS_SUCCESS;
}
/*Global function body*/
INT multi_profile_check(struct _RTMP_ADAPTER *ad, CHAR *final)
{
ULONG buf_size = MAX_INI_BUFFER_SIZE;
CHAR *buf1 = NULL;
CHAR *buf2 = NULL;
INT retval = NDIS_STATUS_FAILURE;
UCHAR *fname = NULL;
/*open first profile file*/
os_alloc_mem(ad, (UCHAR **)&buf1, buf_size);
if (!buf1)
goto end;
#ifdef DEFAULT_5G_PROFILE
fname = multi_profile_fname_get(ad, MTB_5G_PROFILE);
#else
fname = multi_profile_fname_get(ad, MTB_2G_PROFILE);
#endif
if (multi_profile_read(fname, buf1) != NDIS_STATUS_SUCCESS)
goto end1;
/*open second profile file*/
os_alloc_mem(ad, (UCHAR **)&buf2, buf_size);
if (!buf2)
goto end1;
#ifdef DEFAULT_5G_PROFILE
fname = multi_profile_fname_get(ad, MTB_2G_PROFILE);
#else
fname = multi_profile_fname_get(ad, MTB_5G_PROFILE);
#endif
if (multi_profile_read(fname, buf2) != NDIS_STATUS_SUCCESS)
goto end2;
/*merge it*/
if (multi_profile_merge(ad, buf1, buf2, final) != NDIS_STATUS_SUCCESS)
goto end2;
fname = multi_profile_fname_get(ad, MTB_MERGE_PROFILE);
multi_profile_write(fname, final);
retval = NDIS_STATUS_SUCCESS;
end2:
os_free_mem(buf2);
end1:
os_free_mem(buf1);
end:
return retval;
}
/*
*
*/
INT multi_profile_devname_req(struct _RTMP_ADAPTER *ad, UCHAR *final_name, UCHAR *ifidx)
{
UCHAR *dev_name;
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return NDIS_STATUS_SUCCESS;
data = (struct mpf_data *) ad->multi_pf_ctrl;
if (!data->enable || !data->specific_dname)
return NDIS_STATUS_SUCCESS;
if (*ifidx >= data->pf1_num) {
if (*ifidx == data->pf1_num)
dev_name = get_dbdcdev_name_prefix(ad, INT_MAIN);
else
dev_name = get_dbdcdev_name_prefix(ad, INT_MBSSID);
snprintf(final_name, IFNAMSIZ, "%s", dev_name);
*ifidx -= data->pf1_num;
}
return NDIS_STATUS_SUCCESS;
}
INT multi_profile_apcli_devname_req(struct _RTMP_ADAPTER *ad, UCHAR *final_name, INT *ifidx)
{
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return NDIS_STATUS_SUCCESS;
data = (struct mpf_data *) ad->multi_pf_ctrl;
if (!data->enable || !data->specific_dname)
return NDIS_STATUS_SUCCESS;
if (*ifidx == 1) {
/* apcli1 is 2.4G, name is apclix0*/
snprintf(final_name, IFNAMSIZ, "%s", get_dbdcdev_name_prefix(ad, INT_APCLI));
}
return NDIS_STATUS_SUCCESS;
}
#ifdef DSCP_QOS_MAP_SUPPORT
INT multi_profile_get_bss_num(struct _RTMP_ADAPTER *ad, UINT8 profile_num)
{
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return 0;
data = (struct mpf_data *) ad->multi_pf_ctrl;
MTWF_LOG(DBG_CAT_CFG, DBG_SUBCAT_ALL, DBG_LVL_OFF,
("MultiProfile profile1 BssNum %d for profile2 BssNum %d \n",
data->pf1_num, data->pf2_num));
if (profile_num == 1)
return data->pf1_num;
else
return data->pf2_num;
}
#endif
/*
*
*/
VOID multi_profile_exit(struct _RTMP_ADAPTER *ad)
{
if (ad->multi_pf_ctrl)
os_free_mem(ad->multi_pf_ctrl);
ad->multi_pf_ctrl = NULL;
}
/*
*
*/
UCHAR is_multi_profile_enable(struct _RTMP_ADAPTER *ad)
{
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return FALSE;
data = (struct mpf_data *) ad->multi_pf_ctrl;
return data->enable;
}
/*
*
*/
UCHAR multi_profile_get_pf1_num(struct _RTMP_ADAPTER *ad)
{
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return 0;
data = (struct mpf_data *) ad->multi_pf_ctrl;
return data->pf1_num;
}
/*
*
*/
UCHAR multi_profile_get_pf2_num(struct _RTMP_ADAPTER *ad)
{
struct mpf_data *data;
if (!ad->multi_pf_ctrl)
return 0;
data = (struct mpf_data *) ad->multi_pf_ctrl;
return data->pf2_num;
}
#endif /*MULTI_PROFILE*/
|
the_stack_data/148806.c | /** @file */
/*
* Copyright (c) 2019, Cisco Systems, Inc.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://github.com/cisco/libacvp/LICENSE
*/
//
// Created by edaw on 2019-01-07.
//
#ifdef ACVP_NO_RUNTIME
#include "ut_common.h"
#include "acvp_lcl.h"
ACVP_CTX *ctx;
ACVP_TEST_CASE *test_case;
ACVP_KAS_ECC_TC *kas_ecc_tc;
ACVP_RESULT rv;
void free_kas_ecc_tc(ACVP_KAS_ECC_TC *stc) {
if (stc->chash) free(stc->chash);
if (stc->psx) free(stc->psx);
if (stc->psy) free(stc->psy);
if (stc->pix) free(stc->pix);
if (stc->piy) free(stc->piy);
if (stc->d) free(stc->d);
if (stc->z) free(stc->z);
free(stc);
}
int initialize_kas_ecc_cdh_tc(ACVP_KAS_ECC_TC *stc,
ACVP_KAS_ECC_TEST_TYPE test_type,
ACVP_EC_CURVE curve,
const char *psx,
const char *psy,
int corrupt) {
ACVP_RESULT rv;
stc->mode = ACVP_KAS_ECC_MODE_CDH;
stc->curve = curve;
stc->test_type = test_type;
if (psx) {
stc->psx = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->psx) { goto err; }
rv = acvp_hexstr_to_bin(psx, stc->psx, ACVP_KAS_ECC_BYTE_MAX, &(stc->psxlen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (psx)");
goto err;
}
}
if (psy) {
stc->psy = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->psy) { goto err; }
rv = acvp_hexstr_to_bin(psy, stc->psy, ACVP_KAS_ECC_BYTE_MAX, &(stc->psylen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (psy)");
goto err;
}
}
if (!corrupt) {
stc->pix = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->pix) { goto err; }
stc->piy = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->piy) { goto err; }
stc->z = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->z) { goto err; }
stc->d = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->d) { goto err; }
stc->chash = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->chash) { goto err; }
}
return 1;
err:
free_kas_ecc_tc(stc);
return 0;
}
int initialize_kas_ecc_comp_tc(ACVP_KAS_ECC_TC *stc,
ACVP_KAS_ECC_TEST_TYPE test_type,
ACVP_EC_CURVE curve,
ACVP_HASH_ALG hash,
const char *psx,
const char *psy,
const char *d,
const char *pix,
const char *piy,
const char *z,
int corrupt) {
ACVP_RESULT rv;
stc->mode = ACVP_KAS_ECC_MODE_COMPONENT;
stc->curve = curve;
stc->md = hash;
stc->test_type = test_type;
if (psx) {
stc->psx = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->psx) { goto err; }
rv = acvp_hexstr_to_bin(psx, stc->psx, ACVP_KAS_ECC_BYTE_MAX, &(stc->psxlen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (psx)");
goto err;
}
}
if (psy) {
stc->psy = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->psy) { goto err; }
rv = acvp_hexstr_to_bin(psy, stc->psy, ACVP_KAS_ECC_BYTE_MAX, &(stc->psylen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (psy)");
goto err;
}
}
if (!corrupt) {
stc->chash = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->chash) { goto err; }
}
if (stc->test_type == ACVP_KAS_ECC_TT_VAL) {
if (pix) {
stc->pix = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->pix) { goto err; }
rv = acvp_hexstr_to_bin(pix, stc->pix, ACVP_KAS_ECC_BYTE_MAX, &(stc->pixlen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (pix)");
goto err;
}
}
if (piy) {
stc->piy = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->piy) { goto err; }
rv = acvp_hexstr_to_bin(piy, stc->piy, ACVP_KAS_ECC_BYTE_MAX, &(stc->piylen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (piy)");
goto err;
}
}
if (d) {
stc->d = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->d) { goto err; }
rv = acvp_hexstr_to_bin(d, stc->d, ACVP_KAS_ECC_BYTE_MAX, &(stc->dlen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (d)");
goto err;
}
}
if (z) {
stc->z = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->z) { goto err; }
rv = acvp_hexstr_to_bin(z, stc->z, ACVP_KAS_ECC_BYTE_MAX, &(stc->zlen));
if (rv != ACVP_SUCCESS) {
ACVP_LOG_ERR("Hex conversion failure (z)");
goto err;
}
}
} else if (!corrupt) {
stc->pix = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->pix) { goto err; }
stc->piy = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->piy) { goto err; }
stc->d = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->d) { goto err; }
stc->z = calloc(1, ACVP_KAS_ECC_BYTE_MAX);
if (!stc->z) { goto err; }
}
return 1;
err:
free_kas_ecc_tc(stc);
return 0;
}
/*
* invalid curve kas ecc handler
* this code is shared in the handler between the two
* modes, so no need to test both initializers
*/
Test(APP_KAS_ECC_HANDLER, invalid_curve) {
int corrupt = 0;
int curve = 0;
char *psx = "aa";
char *psy = "aa";
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_cdh_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_VAL, curve,
psx, psy, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
/*
* invalid hash alg kas ecc comp handler
*/
Test(APP_KAS_ECC_HANDLER, invalid_hash_ecc_comp) {
int corrupt = 0;
int curve = ACVP_EC_CURVE_B283;
char *psx = "aa";
char *psy = "aa";
char *d = "aa";
char *pix = "aa";
char *piy = "aa";
char *z = "aa";
int hash_alg = 0;
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_comp_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_VAL, curve, hash_alg,
psx, psy, d, pix, piy, z, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
/*
* missing_psx kas ecc handler
* this code is shared in the handler between the two
* modes, so no need to test both initializers
*/
Test(APP_KAS_ECC_HANDLER, missing_psx) {
int corrupt = 0;
int curve = ACVP_EC_CURVE_B571;
char *psx = NULL;
char *psy = "aa";
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_cdh_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_VAL, curve,
psx, psy, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
/*
* missing_psy kas ecc handler
* this code is shared in the handler between the two
* modes, so no need to test both initializers
*/
Test(APP_KAS_ECC_HANDLER, missing_psy) {
int corrupt = 0;
int curve = ACVP_EC_CURVE_B571;
char *psx = "aa";
char *psy = NULL;
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_cdh_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_AFT, curve,
psx, psy, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
/*
* missing pix kas ecc comp handler
*/
Test(APP_KAS_ECC_HANDLER, missing_pix) {
int corrupt = 0;
int curve = ACVP_EC_CURVE_B283;
char *psx = "aa";
char *psy = "aa";
char *d = "aa";
char *pix = NULL;
char *piy = "aa";
char *z = "aa";
int hash_alg = ACVP_SHA256;
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_comp_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_VAL, curve, hash_alg,
psx, psy, d, pix, piy, z, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
/*
* missing piy kas ecc comp handler
*/
Test(APP_KAS_ECC_HANDLER, missing_piy) {
int corrupt = 0;
int curve = ACVP_EC_CURVE_B283;
char *psx = "aa";
char *psy = "aa";
char *d = "aa";
char *pix = "aa";
char *piy = NULL;
char *z = "aa";
int hash_alg = ACVP_SHA256;
kas_ecc_tc = calloc(1, sizeof(ACVP_KAS_ECC_TC));
if (!initialize_kas_ecc_comp_tc(kas_ecc_tc, ACVP_KAS_ECC_TT_VAL, curve, hash_alg,
psx, psy, d, pix, piy, z, corrupt)) {
cr_assert_fail("kas ecc init tc failure");
}
test_case = calloc(1, sizeof(ACVP_TEST_CASE));
test_case->tc.kas_ecc = kas_ecc_tc;
rv = app_kas_ecc_handler(test_case);
cr_assert_neq(rv, 0);
free_kas_ecc_tc(kas_ecc_tc);
free(test_case);
}
#endif // ACVP_NO_RUNTIME
|
the_stack_data/173579226.c | /* Copyright (C) 2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
extern void foo (void);
int
main (void)
{
foo ();
return 0;
}
|
the_stack_data/82951303.c | #include <math.h>
void cbdm(double *a, double *b, double *r, int num_rows, int num_cols)
{
double _r;
#pragma omp parallel for reduction (+:_r)
for(int i = 0; i < num_rows; i++)
{
for(int j = 0; j < num_rows ; j++)
{
_r = 0.0;
for(int k = 0; k < num_cols ; k++)
{
_r += fabs(a[i * num_cols + k] - b[j * num_cols + k]);
}
r[i * num_rows + j] = _r;
}
}
}
|
the_stack_data/145454369.c |
/* Converting from Decimal to Hex */
void main()
{
int i, text_len=0;
char text[200] = "Mohannad Atiyah Mohammad Al-Harthi";
//char hex[300];
char hex_digits[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
while (text[text_len] != 0)
text_len++;
for (i = 0; i < text_len+1; i++)
{
char shift, lower, higher;
// extracting 4 lower bits
lower = text[i] && 15; // text[i] & 00001111
// shifting 4 higher bits to the right
// using division by 2 4 times instead of shift
higher = text[i];
for (shift=0; shift < 4; shift++)
higher = higher / 2;
printChar(hex_digits[higher]);
printChar(hex_digits[lower]);
printChar(' ');
}
}
|
the_stack_data/153267675.c | #include <stdio.h>
int main(){
int **ptr_ptr_num1, *ptr_num1, num1;
ptr_num1 = &num1;
ptr_ptr_num1 = &ptr_num1;
printf("Escribe un numero: ");
scanf("%d", &num1);
printf("\tvariable\t|\t\tcontenido\t|\t\tdireccion de memoria\n");
printf("------------------------|-------------------------------|----------------------------------------\n");
printf("\tnum1\t\t|\t\t%d\t\t|\t\t%p\n", num1, &num1);
printf("------------------------|-------------------------------|----------------------------------------\n");
printf("\tptr_num1\t|\t%p\t\t|\t\t%p\n", ptr_num1, &ptr_num1);
printf("------------------------|-------------------------------|----------------------------------------\n");
printf("\tptr_ptr_num1\t|\t%p\t\t|\t\t%p\n", ptr_ptr_num1, &ptr_ptr_num1);
printf("------------------------|-------------------------------|----------------------------------------\n");
}
|
the_stack_data/147810.c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
printf("Je suis file_2.c dans Module_4 dans Projet_2");
return;
}
|
the_stack_data/31387691.c | /*
* POSIX implementation of threading.
*
* Copyright (C) 2013 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup pthread
* @{
* @file
* @brief Singletons features / single-shot execution.
* @author Christian Mehlis <[email protected]>
* @author René Kijewski <[email protected]>
* @}
*/
#include "pthread.h"
int pthread_once(pthread_once_t *once_control, void (*init_routine)(void))
{
if (*once_control == PTHREAD_ONCE_INIT) {
init_routine();
}
*once_control = PTHREAD_ONCE_INIT + 1;
return 0;
}
|
the_stack_data/1138849.c | // possible deadlock in fifo_open
// https://syzkaller.appspot.com/bug?id=bfc3f972760618caea8f21371b32d8071ce0a56a
// status:dup
// autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <endian.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff};
int main(void)
{
syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0);
long res = 0;
res = syscall(__NR_pipe, 0x20000c40);
if (res != -1) {
r[0] = *(uint32_t*)0x20000c40;
r[1] = *(uint32_t*)0x20000c44;
}
res = syscall(__NR_socket, 2, 2, 0);
if (res != -1)
r[2] = res;
syscall(__NR_close, r[2]);
memcpy((void*)0x20000000, "/proc/thread-self/attr/exec\000", 28);
syscall(__NR_openat, 0xffffffffffffff9c, 0x20000000, 2, 0);
*(uint32_t*)0x20000040 = r[2];
*(uint16_t*)0x20000044 = -1;
sprintf((char*)0x20000046, "%020llu", (long long)-1);
sprintf((char*)0x2000005a, "%020llu", (long long)-1);
syscall(__NR_write, r[1], 0x20000040, 0x2e);
syscall(__NR_splice, r[0], 0, r[2], 0, 0x10005, 0);
memcpy((void*)0x20000200, "./file0\000", 8);
syscall(__NR_mknod, 0x20000200, 0x1041, 0x4000);
memcpy((void*)0x20000480, "./file0\000", 8);
syscall(__NR_execve, 0x20000480, 0, 0);
return 0;
}
|
the_stack_data/153268663.c | /*
* Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
* The President and Fellows of Harvard College.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <err.h>
/*
* ln - hardlink or symlink files
*
* Usage: ln oldfile newfile
* ln -s symlinkcontents symlinkfile
*/
/*
* Create a symlink with filename PATH that contains text TEXT.
* When fed to ls -l, this produces something that looks like
*
* lrwxrwxrwx [stuff] PATH -> TEXT
*/
static
void
dosymlink(const char *text, const char *path)
{
if (symlink(text, path)) {
err(1, "%s", path);
}
}
/*
* Create a hard link such that NEWFILE names the same file as
* OLDFILE. Since it's a hard link, the two names for the file
* are equal; both are the "real" file.
*/
static
void
dohardlink(const char *oldfile, const char *newfile)
{
if (link(oldfile, newfile)) {
err(1, "%s or %s", oldfile, newfile);
exit(1);
}
}
int
main(int argc, char *argv[])
{
/*
* Just do whatever was asked for.
*
* We don't allow the Unix model where you can do
* ln [-s] file1 file2 file3 destination-directory
*/
if (argc==4 && !strcmp(argv[1], "-s")) {
dosymlink(argv[2], argv[3]);
}
else if (argc==3) {
dohardlink(argv[1], argv[2]);
}
else {
warnx("Usage: ln oldfile newfile");
errx(1, " ln -s symlinkcontents symlinkfile\n");
}
return 0;
}
|
the_stack_data/248581314.c | /*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file
* \ingroup bmesh
*
* Create a convex hull using bullet physics library.
*/
#ifdef WITH_BULLET
# include "MEM_guardedalloc.h"
# include "BLI_array.h"
# include "BLI_listbase.h"
# include "BLI_math.h"
# include "RBI_hull_api.h"
/* XXX: using 128 for totelem and pchunk of mempool, no idea what good
* values would be though */
# include "bmesh.h"
# include "intern/bmesh_operators_private.h" /* own include */
/* Internal operator flags */
typedef enum {
HULL_FLAG_INPUT = (1 << 0),
HULL_FLAG_INTERIOR_ELE = (1 << 1),
HULL_FLAG_OUTPUT_GEOM = (1 << 2),
HULL_FLAG_DEL = (1 << 3),
HULL_FLAG_HOLE = (1 << 4),
} HullFlags;
/* Store hull triangles separate from BMesh faces until the end; this
* way we don't have to worry about cleaning up extraneous edges or
* incorrectly deleting existing geometry. */
typedef struct HullTriangle {
BMVert *v[3];
float no[3];
int skip;
} HullTriangle;
/*************************** Hull Triangles ***************************/
static void hull_add_triangle(
BMesh *bm, BLI_mempool *hull_triangles, BMVert *v1, BMVert *v2, BMVert *v3)
{
HullTriangle *t;
int i;
t = BLI_mempool_calloc(hull_triangles);
t->v[0] = v1;
t->v[1] = v2;
t->v[2] = v3;
/* Mark triangles vertices as not interior */
for (i = 0; i < 3; i++) {
BMO_vert_flag_disable(bm, t->v[i], HULL_FLAG_INTERIOR_ELE);
}
normal_tri_v3(t->no, v1->co, v2->co, v3->co);
}
static BMFace *hull_find_example_face(BMesh *bm, BMEdge *e)
{
BMIter iter;
BMFace *f;
BM_ITER_ELEM (f, &iter, e, BM_FACES_OF_EDGE) {
if (BMO_face_flag_test(bm, f, HULL_FLAG_INPUT) ||
BMO_face_flag_test(bm, f, HULL_FLAG_OUTPUT_GEOM) == false) {
return f;
}
}
return NULL;
}
static void hull_output_triangles(BMesh *bm, BLI_mempool *hull_triangles)
{
BLI_mempool_iter iter;
BLI_mempool_iternew(hull_triangles, &iter);
HullTriangle *t;
while ((t = BLI_mempool_iterstep(&iter))) {
int i;
if (!t->skip) {
BMEdge *edges[3] = {
BM_edge_create(bm, t->v[0], t->v[1], NULL, BM_CREATE_NO_DOUBLE),
BM_edge_create(bm, t->v[1], t->v[2], NULL, BM_CREATE_NO_DOUBLE),
BM_edge_create(bm, t->v[2], t->v[0], NULL, BM_CREATE_NO_DOUBLE),
};
BMFace *f, *example = NULL;
f = BM_face_exists(t->v, 3);
if (f != NULL) {
/* If the operator is run with "use_existing_faces"
* disabled, but an output face in the hull is the
* same as a face in the existing mesh, it should not
* be marked as unused or interior. */
BMO_face_flag_enable(bm, f, HULL_FLAG_OUTPUT_GEOM);
BMO_face_flag_disable(bm, f, HULL_FLAG_HOLE);
BMO_face_flag_disable(bm, f, HULL_FLAG_INTERIOR_ELE);
}
else {
/* Look for an adjacent face that existed before the hull */
for (i = 0; i < 3; i++) {
if (!example) {
example = hull_find_example_face(bm, edges[i]);
}
}
/* Create new hull face */
f = BM_face_create_verts(bm, t->v, 3, example, BM_CREATE_NO_DOUBLE, true);
BM_face_copy_shared(bm, f, NULL, NULL);
}
/* Mark face for 'geom.out' slot and select */
BMO_face_flag_enable(bm, f, HULL_FLAG_OUTPUT_GEOM);
BM_face_select_set(bm, f, true);
/* Mark edges for 'geom.out' slot */
for (i = 0; i < 3; i++) {
BMO_edge_flag_enable(bm, edges[i], HULL_FLAG_OUTPUT_GEOM);
}
}
else {
/* Mark input edges for 'geom.out' slot */
for (i = 0; i < 3; i++) {
const int next = (i == 2 ? 0 : i + 1);
BMEdge *e = BM_edge_exists(t->v[i], t->v[next]);
if (e && BMO_edge_flag_test(bm, e, HULL_FLAG_INPUT) &&
!BMO_edge_flag_test(bm, e, HULL_FLAG_HOLE)) {
BMO_edge_flag_enable(bm, e, HULL_FLAG_OUTPUT_GEOM);
}
}
}
/* Mark verts for 'geom.out' slot */
for (i = 0; i < 3; i++) {
BMO_vert_flag_enable(bm, t->v[i], HULL_FLAG_OUTPUT_GEOM);
}
}
}
/***************************** Final Edges ****************************/
typedef struct {
GHash *edges;
BLI_mempool *base_pool, *link_pool;
} HullFinalEdges;
static LinkData *final_edges_find_link(ListBase *adj, BMVert *v)
{
LinkData *link;
for (link = adj->first; link; link = link->next) {
if (link->data == v) {
return link;
}
}
return NULL;
}
static int hull_final_edges_lookup(HullFinalEdges *final_edges, BMVert *v1, BMVert *v2)
{
ListBase *adj;
/* Use lower vertex pointer for hash key */
if (v1 > v2) {
SWAP(BMVert *, v1, v2);
}
adj = BLI_ghash_lookup(final_edges->edges, v1);
if (!adj) {
return false;
}
return !!final_edges_find_link(adj, v2);
}
/* Used for checking whether a pre-existing edge lies on the hull */
static HullFinalEdges *hull_final_edges(BLI_mempool *hull_triangles)
{
HullFinalEdges *final_edges;
final_edges = MEM_callocN(sizeof(HullFinalEdges), "HullFinalEdges");
final_edges->edges = BLI_ghash_ptr_new("final edges ghash");
final_edges->base_pool = BLI_mempool_create(sizeof(ListBase), 0, 128, BLI_MEMPOOL_NOP);
final_edges->link_pool = BLI_mempool_create(sizeof(LinkData), 0, 128, BLI_MEMPOOL_NOP);
BLI_mempool_iter iter;
BLI_mempool_iternew(hull_triangles, &iter);
HullTriangle *t;
while ((t = BLI_mempool_iterstep(&iter))) {
LinkData *link;
int i;
for (i = 0; i < 3; i++) {
BMVert *v1 = t->v[i];
BMVert *v2 = t->v[(i + 1) % 3];
ListBase *adj;
/* Use lower vertex pointer for hash key */
if (v1 > v2) {
SWAP(BMVert *, v1, v2);
}
adj = BLI_ghash_lookup(final_edges->edges, v1);
if (!adj) {
adj = BLI_mempool_calloc(final_edges->base_pool);
BLI_ghash_insert(final_edges->edges, v1, adj);
}
if (!final_edges_find_link(adj, v2)) {
link = BLI_mempool_calloc(final_edges->link_pool);
link->data = v2;
BLI_addtail(adj, link);
}
}
}
return final_edges;
}
static void hull_final_edges_free(HullFinalEdges *final_edges)
{
BLI_ghash_free(final_edges->edges, NULL, NULL);
BLI_mempool_destroy(final_edges->base_pool);
BLI_mempool_destroy(final_edges->link_pool);
MEM_freeN(final_edges);
}
/**************************** Final Output ****************************/
static void hull_remove_overlapping(BMesh *bm,
BLI_mempool *hull_triangles,
HullFinalEdges *final_edges)
{
BLI_mempool_iter iter;
BLI_mempool_iternew(hull_triangles, &iter);
HullTriangle *t;
while ((t = BLI_mempool_iterstep(&iter))) {
BMIter bm_iter1, bm_iter2;
BMFace *f;
bool f_on_hull;
BM_ITER_ELEM (f, &bm_iter1, t->v[0], BM_FACES_OF_VERT) {
BMEdge *e;
/* Check that all the face's edges are on the hull,
* otherwise can't reuse it */
f_on_hull = true;
BM_ITER_ELEM (e, &bm_iter2, f, BM_EDGES_OF_FACE) {
if (!hull_final_edges_lookup(final_edges, e->v1, e->v2)) {
f_on_hull = false;
break;
}
}
/* Note: can't change ghash while iterating, so mark
* with 'skip' flag rather than deleting triangles */
if (BM_vert_in_face(t->v[1], f) && BM_vert_in_face(t->v[2], f) && f_on_hull) {
t->skip = true;
BMO_face_flag_disable(bm, f, HULL_FLAG_INTERIOR_ELE);
BMO_face_flag_enable(bm, f, HULL_FLAG_HOLE);
}
}
}
}
static void hull_mark_interior_elements(BMesh *bm, BMOperator *op, HullFinalEdges *final_edges)
{
BMEdge *e;
BMFace *f;
BMOIter oiter;
/* Check for interior edges too */
BMO_ITER (e, &oiter, op->slots_in, "input", BM_EDGE) {
if (!hull_final_edges_lookup(final_edges, e->v1, e->v2)) {
BMO_edge_flag_enable(bm, e, HULL_FLAG_INTERIOR_ELE);
}
}
/* Mark all input faces as interior, some may be unmarked in
* hull_remove_overlapping() */
BMO_ITER (f, &oiter, op->slots_in, "input", BM_FACE) {
BMO_face_flag_enable(bm, f, HULL_FLAG_INTERIOR_ELE);
}
}
static void hull_tag_unused(BMesh *bm, BMOperator *op)
{
BMIter iter;
BMOIter oiter;
BMVert *v;
BMEdge *e;
BMFace *f;
/* Mark vertices, edges, and faces that are already marked
* interior (i.e. were already part of the input, but not part of
* the hull), but that aren't also used by elements outside the
* input set */
BMO_ITER (v, &oiter, op->slots_in, "input", BM_VERT) {
if (BMO_vert_flag_test(bm, v, HULL_FLAG_INTERIOR_ELE)) {
bool del = true;
BM_ITER_ELEM (e, &iter, v, BM_EDGES_OF_VERT) {
if (!BMO_edge_flag_test(bm, e, HULL_FLAG_INPUT)) {
del = false;
break;
}
}
BM_ITER_ELEM (f, &iter, v, BM_FACES_OF_VERT) {
if (!BMO_face_flag_test(bm, f, HULL_FLAG_INPUT)) {
del = false;
break;
}
}
if (del) {
BMO_vert_flag_enable(bm, v, HULL_FLAG_DEL);
}
}
}
BMO_ITER (e, &oiter, op->slots_in, "input", BM_EDGE) {
if (BMO_edge_flag_test(bm, e, HULL_FLAG_INTERIOR_ELE)) {
bool del = true;
BM_ITER_ELEM (f, &iter, e, BM_FACES_OF_EDGE) {
if (!BMO_face_flag_test(bm, f, HULL_FLAG_INPUT)) {
del = false;
break;
}
}
if (del) {
BMO_edge_flag_enable(bm, e, HULL_FLAG_DEL);
}
}
}
BMO_ITER (f, &oiter, op->slots_in, "input", BM_FACE) {
if (BMO_face_flag_test(bm, f, HULL_FLAG_INTERIOR_ELE)) {
BMO_face_flag_enable(bm, f, HULL_FLAG_DEL);
}
}
}
static void hull_tag_holes(BMesh *bm, BMOperator *op)
{
BMIter iter;
BMOIter oiter;
BMFace *f;
BMEdge *e;
/* Unmark any hole faces if they are isolated or part of a
* border */
BMO_ITER (f, &oiter, op->slots_in, "input", BM_FACE) {
if (BMO_face_flag_test(bm, f, HULL_FLAG_HOLE)) {
BM_ITER_ELEM (e, &iter, f, BM_EDGES_OF_FACE) {
if (BM_edge_is_boundary(e)) {
BMO_face_flag_disable(bm, f, HULL_FLAG_HOLE);
break;
}
}
}
}
/* Mark edges too if all adjacent faces are holes and the edge is
* not already isolated */
BMO_ITER (e, &oiter, op->slots_in, "input", BM_EDGE) {
bool hole = true;
bool any_faces = false;
BM_ITER_ELEM (f, &iter, e, BM_FACES_OF_EDGE) {
any_faces = true;
if (!BMO_face_flag_test(bm, f, HULL_FLAG_HOLE)) {
hole = false;
break;
}
}
if (hole && any_faces) {
BMO_edge_flag_enable(bm, e, HULL_FLAG_HOLE);
}
}
}
static int hull_input_vert_count(BMOperator *op)
{
BMOIter oiter;
BMVert *v;
int count = 0;
BMO_ITER (v, &oiter, op->slots_in, "input", BM_VERT) {
count++;
}
return count;
}
static BMVert **hull_input_verts_copy(BMOperator *op, const int num_input_verts)
{
BMOIter oiter;
BMVert *v;
BMVert **input_verts = MEM_callocN(sizeof(*input_verts) * num_input_verts, AT);
int i = 0;
BMO_ITER (v, &oiter, op->slots_in, "input", BM_VERT) {
input_verts[i++] = v;
}
return input_verts;
}
static float (*hull_verts_for_bullet(BMVert **input_verts, const int num_input_verts))[3]
{
float(*coords)[3] = MEM_callocN(sizeof(*coords) * num_input_verts, __func__);
int i;
for (i = 0; i < num_input_verts; i++) {
copy_v3_v3(coords[i], input_verts[i]->co);
}
return coords;
}
static BMVert **hull_verts_from_bullet(plConvexHull hull,
BMVert **input_verts,
const int num_input_verts)
{
const int num_verts = plConvexHullNumVertices(hull);
BMVert **hull_verts = MEM_mallocN(sizeof(*hull_verts) * num_verts, AT);
int i;
for (i = 0; i < num_verts; i++) {
float co[3];
int original_index;
plConvexHullGetVertex(hull, i, co, &original_index);
if (original_index >= 0 && original_index < num_input_verts) {
hull_verts[i] = input_verts[original_index];
}
else {
BLI_assert(!"Unexpected new vertex in hull output");
}
}
return hull_verts;
}
static void hull_from_bullet(BMesh *bm, BMOperator *op, BLI_mempool *hull_triangles)
{
int *fvi = NULL;
BLI_array_declare(fvi);
BMVert **input_verts;
float(*coords)[3];
BMVert **hull_verts;
plConvexHull hull;
int i, count = 0;
const int num_input_verts = hull_input_vert_count(op);
input_verts = hull_input_verts_copy(op, num_input_verts);
coords = hull_verts_for_bullet(input_verts, num_input_verts);
hull = plConvexHullCompute(coords, num_input_verts);
hull_verts = hull_verts_from_bullet(hull, input_verts, num_input_verts);
count = plConvexHullNumFaces(hull);
for (i = 0; i < count; i++) {
const int len = plConvexHullGetFaceSize(hull, i);
if (len > 2) {
BMVert *fv[3];
int j;
/* Get face vertex indices */
BLI_array_clear(fvi);
BLI_array_grow_items(fvi, len);
plConvexHullGetFaceVertices(hull, i, fvi);
/* Note: here we throw away any NGons from Bullet and turn
* them into triangle fans. Would be nice to use these
* directly, but will have to wait until HullTriangle goes
* away (TODO) */
fv[0] = hull_verts[fvi[0]];
for (j = 2; j < len; j++) {
fv[1] = hull_verts[fvi[j - 1]];
fv[2] = hull_verts[fvi[j]];
hull_add_triangle(bm, hull_triangles, fv[0], fv[1], fv[2]);
}
}
}
BLI_array_free(fvi);
plConvexHullDelete(hull);
MEM_freeN(hull_verts);
MEM_freeN(coords);
MEM_freeN(input_verts);
}
/* Check that there are at least three vertices in the input */
static bool hull_num_input_verts_is_ok(BMOperator *op)
{
BMOIter oiter;
BMVert *v;
int partial_num_verts = 0;
BMO_ITER (v, &oiter, op->slots_in, "input", BM_VERT) {
partial_num_verts++;
if (partial_num_verts >= 3) {
break;
}
}
return (partial_num_verts >= 3);
}
void bmo_convex_hull_exec(BMesh *bm, BMOperator *op)
{
HullFinalEdges *final_edges;
BLI_mempool *hull_triangles;
BMElemF *ele;
BMOIter oiter;
/* Verify that at least three verts in the input */
if (!hull_num_input_verts_is_ok(op)) {
BMO_error_raise(bm, op, BMERR_CONVEX_HULL_FAILED, "Requires at least three vertices");
return;
}
/* Tag input elements */
BMO_ITER (ele, &oiter, op->slots_in, "input", BM_ALL) {
/* Mark all vertices as interior to begin with */
if (ele->head.htype == BM_VERT) {
BMO_vert_flag_enable(bm, (BMVert *)ele, HULL_FLAG_INPUT | HULL_FLAG_INTERIOR_ELE);
}
else if (ele->head.htype == BM_EDGE) {
BMO_edge_flag_enable(bm, (BMEdge *)ele, HULL_FLAG_INPUT);
}
else {
BMO_face_flag_enable(bm, (BMFace *)ele, HULL_FLAG_INPUT);
}
}
hull_triangles = BLI_mempool_create(sizeof(HullTriangle), 0, 128, BLI_MEMPOOL_ALLOW_ITER);
hull_from_bullet(bm, op, hull_triangles);
final_edges = hull_final_edges(hull_triangles);
hull_mark_interior_elements(bm, op, final_edges);
/* Remove hull triangles covered by an existing face */
if (BMO_slot_bool_get(op->slots_in, "use_existing_faces")) {
hull_remove_overlapping(bm, hull_triangles, final_edges);
hull_tag_holes(bm, op);
}
/* Done with edges */
hull_final_edges_free(final_edges);
/* Convert hull triangles to BMesh faces */
hull_output_triangles(bm, hull_triangles);
BLI_mempool_destroy(hull_triangles);
hull_tag_unused(bm, op);
/* Output slot of input elements that ended up inside the hull
* rather than part of it */
BMO_slot_buffer_from_enabled_flag(
bm, op, op->slots_out, "geom_interior.out", BM_ALL_NOLOOP, HULL_FLAG_INTERIOR_ELE);
/* Output slot of input elements that ended up inside the hull and
* are are unused by other geometry. */
BMO_slot_buffer_from_enabled_flag(
bm, op, op->slots_out, "geom_unused.out", BM_ALL_NOLOOP, HULL_FLAG_DEL);
/* Output slot of faces and edges that were in the input and on
* the hull (useful for cases like bridging where you want to
* delete some input geometry) */
BMO_slot_buffer_from_enabled_flag(
bm, op, op->slots_out, "geom_holes.out", BM_ALL_NOLOOP, HULL_FLAG_HOLE);
/* Output slot of all hull vertices, faces, and edges */
BMO_slot_buffer_from_enabled_flag(
bm, op, op->slots_out, "geom.out", BM_ALL_NOLOOP, HULL_FLAG_OUTPUT_GEOM);
}
#endif /* WITH_BULLET */
|
the_stack_data/20450815.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_uppercase.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ade-agui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/14 17:42:44 by ade-agui #+# #+# */
/* Updated: 2021/04/14 17:42:46 by ade-agui ### ########.fr */
/* */
/* ************************************************************************** */
int ft_str_is_uppercase(char *str)
{
int i;
int c;
i = 0;
c = 0;
while (str[i] != '\0')
{
if (str[i] >= 'A' && str[i] <= 'Z')
c++;
i++;
}
if (i == c)
return (1);
else
return (0);
}
|
the_stack_data/108514.c | void main(void)
{
int array_a[20];
array_a[1]=8;
array_a[0]=2;
array_a[2]=array_a[1] / array_a[0];
return;
}
|
the_stack_data/31386519.c | /* This testcase is part of GDB, the GNU debugger.
Copyright 2014-2016 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
extern int shlib_1_func (void);
int
main ()
{
/* We need a reference to shlib_1_func to make sure its shlib is
not discarded from the link. This happens on windows. */
int x = shlib_1_func ();
return 0;
}
|
the_stack_data/25137779.c | /******************************************************************************
Problem statement - Given a number N <=200, construct a array of N number of elements
Find the smallest possible result of { A[i]+A[j]+j-i }
where -> 1 <= i <= j <= N
*******************************************************************************/
#include <stdio.h>
#include <limits.h>
#include <stdbool.h>
typedef struct {
int *A;
int size;
}Array_t;
/*
test case1 = 5,4,3,2,1
smallest pair should be A[0]+A[1]+1-0 = 1+2+1-0 = 4
test case 2 = 10,12,13,14,15,16,17
smallest pair should be A[0]+A[1]+1-0 = 10+12+1-0 = 23
*/
int smallestPair(Array_t Arr)
{
int min = INT_MAX;
int flag = 1;
//Idea is simple nested for loops -brute force approach
for(int i=0 ; i<Arr.size ; i++)
{
for(int j=i+1 ; j<Arr.size ; j++)
{
int temp = (Arr.A[i] + Arr.A[j] + j - i);
if(flag==true || temp<min)
{
min = temp;
flag = false;
}
}
}
return min;
}
//Get the array from the user
void GetArray(Array_t *Arr)
{
int n=0;
printf("Enter the number of elements you want to enter in the array\n");
scanf("%d", &n);
Arr->size = n;
for(int i=0 ; i<Arr->size ; i++)
{
printf("Enter number at array index %d - ", i);
scanf("%d", &Arr->A[i]);
}
//Display the entered array to the user once
printf("The array you entered is - ");
for(int i=0 ; i<Arr->size ; i++)
{
printf("%d ", Arr->A[i]);
}
}
int main(void)
{
Array_t Arr;
GetArray(&Arr);
int res = smallestPair(Arr);
printf("smallest pair is - %d", res);
return 0;
}
|
the_stack_data/86075563.c | #include <stdio.h>
#include <stdlib.h>
int main ()
{
FILE * pFile;
//int n;
//char name [100];
int a,b;
printf("Podaj liczbe na start ");
scanf ("%d", &a);
printf("Podaj liczbe iteracji ");
scanf ("%d", &b);
pFile = fopen ("myfile.txt","w");
//printf ("Podaj Imie i Nazwisko ");
//gets (name);
for (int i=a; i<=b; i++)
{
fprintf (pFile, "%d \n",i); //%s jesli string
}
fclose (pFile);
return 0;
}
|
the_stack_data/39527.c | // Developed by Dileepa Bandara
#include<stdio.h>
int totalCost;
int choice, c=1, cost[9];
void china_city ( )
{
int ChinaChoice;
printf("\n Enter your destination and find the total expence\n\t1 - Shanghai City - $800/=\n\t2 - Diseney Land - $1000/=\n\t3 - Beijing City - $900/=\n\tPress any other number to exit\n");
scanf("%d", &ChinaChoice);
cost[0]=800;
cost[1]=1000;
cost[2]=900;
switch(ChinaChoice)
{
case 1:
{
int num;
printf("\n\tYou chose Shanghai City with $800/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=800;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 2:
{
int num;
printf("\n\tYou chose Diseney Land with $1000/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=1000;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 3:
{
int num;
printf("\n\tYou chose Beijing City with $900/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=900;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
default:
{
printf("\nExit from Chaina\n");
break;
}
}
}
void india_city()
{
int IndiaChoice;
printf("\n Enter your destination and find the total expence\n\t1 - Taj Mahal - $800/=\n\t2 - Agra City - $700/=\n\t3 - Chennai - $600/=\n\tPress any other number to exit\n");
scanf("%d",&IndiaChoice);
cost[3]=800;
cost[4]=700;
cost[5]=600;
switch(IndiaChoice)
{
case 1:
{
int num;
printf("\n\tYou chose Taj Mahal for $800/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=800;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 2:
{
int num;
printf("\n\tYou chose Agra City for $700/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=700;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 3:
{
int num;
printf("\n\tYou chose Chennai for $600/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=600;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
default:
{
printf("\nExit from India\n");
break;
}
}
}
void sri_lanka_city()
{
int Sri_LankaChoice;
printf("\n Enter your destination and find the total expence\n\t1 - Nuawara Eliya - $300/=\n\t2 - Polonnawaruwa - $400/=\n\t3 - Mirissa Beachl - $500/=\n\tPress any other number to exit\n");
scanf("%d",&Sri_LankaChoice);
cost[6]=300;
cost[7]=400;
cost[8]=500;
switch(Sri_LankaChoice)
{
case 1:
{
int num;
printf("\n\tYou chose Nuawara Eliya for $300/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=300;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 2:
{
int num;
printf("\n\tYou chose Polonnawaruwa for $400/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=400;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
case 3:
{
int num;
printf("\n\tYou chose Mirissa Beach for $500/=\n\tAre you sure to confirm? If 'Yes' Enter 1 else any number\n");
scanf("%d",&num);
if(num==1)
{
totalCost+=500;
}
printf("\n\tYour Cost in Cart is $%d/=\n",totalCost);
break;
}
default:
{
printf("\nExit from Sri Lanka\n");
break;
}
}
}
void to_buy()
{
printf(" Your total cost here, press 1 for buy and exit, press 2 for view & press any other key for buy another\n");
int buy_Choice;
scanf("%d",&buy_Choice);
switch(buy_Choice)
{
case 1:
{
printf("\a\a\a\a\n\t\t\t\t<<>> Your final cost is $%d/=\n",totalCost);
printf("\n\n################################################################################");
printf("\n\tThank you and visit us again.!!\n");
printf("\n\tDPUL Tourism Service\n\n\tColombo Road\n\n\tKurunegala\n");
printf("\n################################################################################\n\n\n\n\n\n\n\n\n");
break;
}
case 2:
{
printf("\n\t\t\t\tYour final cost is $%d/= and if you want to buy more?\n",totalCost);
break;
}
default:
{
printf("\nIf you want to buy another?\n");
break;
}
}
}
void main()
{
char str[100];
char items[9][100] = {
"Shanghai City",
"Disney land",
"Beijing City",
"Taj Mahal",
"Agra City",
"Chennai",
"Nuawara Eliya",
"Polonnawaruwa",
"Mirissa Beach"
};
printf("\n Hi there, What is your name? ");
gets(str);
printf("\n###################################################################################################################################################################################################################");
printf("\n\n\t\t Hello %s, Welcome to 'DPUL Tourism Service' to find the best tourist attractions in Asia! \n",str);
printf("\n###################################################################################################################################################################################################################");
do{
if(c==1)
{
printf("\n >> Select the Country here :-\n ~ Press 1 for China\n ~ Press 2 for India\n ~ Press 3 for Sri Lanka\n ~ Press 4 to buy\n");
scanf("%d",&choice);
switch(choice)
{
case 1:
{
china_city();
break;
}
case 2:
{
india_city();
break;
}
case 3:
{
sri_lanka_city();
break;
}
case 4:
{
to_buy();
break;
}
default:
{
printf("\nEnter valid country choice\n");
break;
}
}
}
else if(c==2)
{
printf("Thanks");
}
}
while(c==1 || c==2);
printf("\a\a\a\a\a\a\n\t\t\t\t<<>> Your final cost is $%d/=\n",totalCost);
printf("\n\n################################################################################");
printf("\n\tThank you '%s' and visit us again.!!\n",str);
printf("\n\tDPUL Industries\n\n\tColombo Road\n\n\tKurunegala\n",str);
printf("\n################################################################################\n\n\n\n\n\n\n\n\n");
} |
the_stack_data/131096.c | /*
* "Optimize" a list of dependencies as spit out by gcc -MD
* for the kernel build
* ===========================================================================
*
* Author Kai Germaschewski
* Copyright 2002 by Kai Germaschewski <[email protected]>
*
* This software may be used and distributed according to the terms
* of the GNU General Public License, incorporated herein by reference.
*
*
* Introduction:
*
* gcc produces a very nice and correct list of dependencies which
* tells make when to remake a file.
*
* To use this list as-is however has the drawback that virtually
* every file in the kernel includes autoconf.h.
*
* If the user re-runs make *config, autoconf.h will be
* regenerated. make notices that and will rebuild every file which
* includes autoconf.h, i.e. basically all files. This is extremely
* annoying if the user just changed CONFIG_HIS_DRIVER from n to m.
*
* So we play the same trick that "mkdep" played before. We replace
* the dependency on autoconf.h by a dependency on every config
* option which is mentioned in any of the listed prequisites.
*
* kconfig populates a tree in include/config/ with an empty file
* for each config symbol and when the configuration is updated
* the files representing changed config options are touched
* which then let make pick up the changes and the files that use
* the config symbols are rebuilt.
*
* So if the user changes his CONFIG_HIS_DRIVER option, only the objects
* which depend on "include/linux/config/his/driver.h" will be rebuilt,
* so most likely only his driver ;-)
*
* The idea above dates, by the way, back to Michael E Chastain, AFAIK.
*
* So to get dependencies right, there are two issues:
* o if any of the files the compiler read changed, we need to rebuild
* o if the command line given to the compile the file changed, we
* better rebuild as well.
*
* The former is handled by using the -MD output, the later by saving
* the command line used to compile the old object and comparing it
* to the one we would now use.
*
* Again, also this idea is pretty old and has been discussed on
* kbuild-devel a long time ago. I don't have a sensibly working
* internet connection right now, so I rather don't mention names
* without double checking.
*
* This code here has been based partially based on mkdep.c, which
* says the following about its history:
*
* Copyright abandoned, Michael Chastain, <mailto:[email protected]>.
* This is a C version of syncdep.pl by Werner Almesberger.
*
*
* It is invoked as
*
* fixdep <depfile> <target> <cmdline>
*
* and will read the dependency file <depfile>
*
* The transformed dependency snipped is written to stdout.
*
* It first generates a line
*
* cmd_<target> = <cmdline>
*
* and then basically copies the .<target>.d file to stdout, in the
* process filtering out the dependency on autoconf.h and adding
* dependencies on include/config/my/option.h for every
* CONFIG_MY_OPTION encountered in any of the prequisites.
*
* It will also filter out all the dependencies on *.ver. We need
* to make sure that the generated version checksum are globally up
* to date before even starting the recursive build, so it's too late
* at this point anyway.
*
* The algorithm to grep for "CONFIG_..." is bit unusual, but should
* be fast ;-) We don't even try to really parse the header files, but
* merely grep, i.e. if CONFIG_FOO is mentioned in a comment, it will
* be picked up as well. It's not a problem with respect to
* correctness, since that can only give too many dependencies, thus
* we cannot miss a rebuild. Since people tend to not mention totally
* unrelated CONFIG_ options all over the place, it's not an
* efficiency problem either.
*
* (Note: it'd be easy to port over the complete mkdep state machine,
* but I don't think the added complexity is worth it)
*/
/*
* Note 2: if somebody writes HELLO_CONFIG_BOOM in a file, it will depend onto
* CONFIG_BOOM. This could seem a bug (not too hard to fix), but please do not
* fix it! Some UserModeLinux files (look at arch/um/) call CONFIG_BOOM as
* UML_CONFIG_BOOM, to avoid conflicts with /usr/include/linux/autoconf.h,
* through arch/um/include/uml-config.h; this fixdep "bug" makes sure that
* those files will have correct dependencies.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <ctype.h>
#include <arpa/inet.h>
#define INT_CONF ntohl(0x434f4e46)
#define INT_ONFI ntohl(0x4f4e4649)
#define INT_NFIG ntohl(0x4e464947)
#define INT_FIG_ ntohl(0x4649475f)
char *target;
char *depfile;
char *cmdline;
static void usage(void)
{
fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");
exit(1);
}
/*
* Print out the commandline prefixed with cmd_<target filename> :=
*/
static void print_cmdline(void)
{
printf("cmd_%s := %s\n\n", target, cmdline);
}
struct item {
struct item *next;
unsigned int len;
unsigned int hash;
char name[0];
};
#define HASHSZ 256
static struct item *hashtab[HASHSZ];
static unsigned int strhash(const char *str, unsigned int sz)
{
/* fnv32 hash */
unsigned int i, hash = 2166136261U;
for (i = 0; i < sz; i++)
hash = (hash ^ str[i]) * 0x01000193;
return hash;
}
/*
* Lookup a value in the configuration string.
*/
static int is_defined_config(const char *name, int len, unsigned int hash)
{
struct item *aux;
for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) {
if (aux->hash == hash && aux->len == len &&
memcmp(aux->name, name, len) == 0)
return 1;
}
return 0;
}
/*
* Add a new value to the configuration string.
*/
static void define_config(const char *name, int len, unsigned int hash)
{
struct item *aux = malloc(sizeof(*aux) + len);
if (!aux) {
perror("fixdep:malloc");
exit(1);
}
memcpy(aux->name, name, len);
aux->len = len;
aux->hash = hash;
aux->next = hashtab[hash % HASHSZ];
hashtab[hash % HASHSZ] = aux;
}
/*
* Clear the set of configuration strings.
*/
static void clear_config(void)
{
struct item *aux, *next;
unsigned int i;
for (i = 0; i < HASHSZ; i++) {
for (aux = hashtab[i]; aux; aux = next) {
next = aux->next;
free(aux);
}
hashtab[i] = NULL;
}
}
/*
* Record the use of a CONFIG_* word.
*/
static void use_config(const char *m, int slen)
{
unsigned int hash = strhash(m, slen);
int c, i;
if (is_defined_config(m, slen, hash))
return;
define_config(m, slen, hash);
printf(" $(wildcard include/config/");
for (i = 0; i < slen; i++) {
c = m[i];
if (c == '_')
c = '/';
else
c = tolower(c);
putchar(c);
}
printf(".h) \\\n");
}
static void parse_config_file(const char *map, size_t len)
{
const int *end = (const int *) (map + len);
/* start at +1, so that p can never be < map */
const int *m = (const int *) map + 1;
const char *p, *q;
for (; m < end; m++) {
if (*m == INT_CONF) { p = (char *) m ; goto conf; }
if (*m == INT_ONFI) { p = (char *) m-1; goto conf; }
if (*m == INT_NFIG) { p = (char *) m-2; goto conf; }
if (*m == INT_FIG_) { p = (char *) m-3; goto conf; }
continue;
conf:
if (p > map + len - 7)
continue;
if (memcmp(p, "CONFIG_", 7))
continue;
for (q = p + 7; q < map + len; q++) {
if (!(isalnum(*q) || *q == '_'))
goto found;
}
continue;
found:
if (!memcmp(q - 7, "_MODULE", 7))
q -= 7;
if( (q-p-7) < 0 )
continue;
use_config(p+7, q-p-7);
}
}
/* test is s ends in sub */
static int strrcmp(char *s, char *sub)
{
int slen = strlen(s);
int sublen = strlen(sub);
if (sublen > slen)
return 1;
return memcmp(s + slen - sublen, sub, sublen);
}
static void do_config_file(const char *filename)
{
struct stat st;
int fd;
void *map;
fd = open(filename, O_RDONLY);
if (fd < 0) {
fprintf(stderr, "fixdep: error opening config file: ");
perror(filename);
exit(2);
}
fstat(fd, &st);
if (st.st_size == 0) {
close(fd);
return;
}
map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
if ((long) map == -1) {
perror("fixdep: mmap");
close(fd);
return;
}
parse_config_file(map, st.st_size);
munmap(map, st.st_size);
close(fd);
}
/*
* Important: The below generated source_foo.o and deps_foo.o variable
* assignments are parsed not only by make, but also by the rather simple
* parser in scripts/mod/sumversion.c.
*/
static void parse_dep_file(void *map, size_t len)
{
char *m = map;
char *end = m + len;
char *p;
char s[PATH_MAX];
int first;
p = strchr(m, ':');
if (!p) {
fprintf(stderr, "fixdep: parse error\n");
exit(1);
}
memcpy(s, m, p-m); s[p-m] = 0;
m = p+1;
clear_config();
first = 1;
while (m < end) {
while (m < end && (*m == ' ' || *m == '\\' || *m == '\n'))
m++;
p = m;
while (p < end && *p != ' ') p++;
if (p == end) {
do p--; while (!isalnum(*p));
p++;
}
memcpy(s, m, p-m); s[p-m] = 0;
if (strrcmp(s, "include/generated/autoconf.h") &&
strrcmp(s, "arch/um/include/uml-config.h") &&
strrcmp(s, "include/linux/kconfig.h") &&
strrcmp(s, ".ver")) {
/*
* Do not list the source file as dependency, so that
* kbuild is not confused if a .c file is rewritten
* into .S or vice versa. Storing it in source_* is
* needed for modpost to compute srcversions.
*/
if (first) {
printf("source_%s := %s\n\n", target, s);
printf("deps_%s := \\\n", target);
} else
printf(" %s \\\n", s);
do_config_file(s);
}
first = 0;
m = p + 1;
}
printf("\n%s: $(deps_%s)\n\n", target, target);
printf("$(deps_%s):\n", target);
}
static void print_deps(void)
{
struct stat st;
int fd;
void *map;
fd = open(depfile, O_RDONLY);
if (fd < 0) {
fprintf(stderr, "fixdep: error opening depfile: ");
perror(depfile);
exit(2);
}
if (fstat(fd, &st) < 0) {
fprintf(stderr, "fixdep: error fstat'ing depfile: ");
perror(depfile);
exit(2);
}
if (st.st_size == 0) {
fprintf(stderr,"fixdep: %s is empty\n",depfile);
close(fd);
return;
}
map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
if ((long) map == -1) {
perror("fixdep: mmap");
close(fd);
return;
}
parse_dep_file(map, st.st_size);
munmap(map, st.st_size);
close(fd);
}
static void traps(void)
{
static char test[] __attribute__((aligned(sizeof(int)))) = "CONF";
int *p = (int *)test;
if (*p != INT_CONF) {
fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianess? %#x\n",
*p);
exit(2);
}
}
int main(int argc, char *argv[])
{
traps();
if (argc != 4)
usage();
depfile = argv[1];
target = argv[2];
cmdline = argv[3];
print_cmdline();
print_deps();
return 0;
}
|
the_stack_data/59511746.c | #include <stdio.h>
int main()
{
int t = 10;
do
{
t--;
} while (t >= 0);
printf("%d", t);
return 0;
}
|
the_stack_data/1081132.c | #include<stdio.h>
// Number of vertices in the graph
#define V 4
/* Define Infinite as a large enough value. This value will be used
for vertices not connected to each other */
#define INF 99999
// A function to print the solution matrix
void printSolution(int dist[][V]);
// Solves the all-pairs shortest path problem using Floyd Warshall algorithm
void floydWarshall (int graph[][V])
{
/* dist[][] will be the output matrix that will finally have the shortest
distances between every pair of vertices */
int dist[V][V], i, j, k;
/* Initialize the solution matrix same as input graph matrix. Or
we can say the initial values of shortest distances are based
on shortest paths considering no intermediate vertex. */
for (i = 0; i < V; i++)
for (j = 0; j < V; j++)
dist[i][j] = graph[i][j];
/* Add all vertices one by one to the set of intermediate vertices.
---> Before start of an iteration, we have shortest distances between all
pairs of vertices such that the shortest distances consider only the
vertices in set {0, 1, 2, .. k-1} as intermediate vertices.
----> After the end of an iteration, vertex no. k is added to the set of
intermediate vertices and the set becomes {0, 1, 2, .. k} */
for (k = 0; k < V; k++)
{
// Pick all vertices as source one by one
for (i = 0; i < V; i++)
{
// Pick all vertices as destination for the
// above picked source
for (j = 0; j < V; j++)
{
// If vertex k is on the shortest path from
// i to j, then update the value of dist[i][j]
if (dist[i][k] + dist[k][j] < dist[i][j])
dist[i][j] = dist[i][k] + dist[k][j];
}
}
}
// Print the shortest distance matrix
printSolution(dist);
}
/* A utility function to print solution */
void printSolution(int dist[][V])
{
printf ("The following matrix shows the shortest distances"
" between every pair of vertices \n");
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
if (dist[i][j] == INF)
printf("%7s", "INF");
else
printf ("%7d", dist[i][j]);
}
printf("\n");
}
}
// driver program to test above function
int main()
{
/* Let us create the following weighted graph
10
(0)------->(3)
| /|\
5 | |
| | 1
\|/ |
(1)------->(2)
3 */
int graph[V][V] = { {0, 5, INF, 10},
{INF, 0, 3, INF},
{INF, INF, 0, 1},
{INF, INF, INF, 0}
};
// Print the solution
floydWarshall(graph);
return 0;
}
|
the_stack_data/150143385.c | /* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003
Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <features.h>
#ifdef __UCLIBC__
# undef _LIBC
# define HAVE_STRING_H 1
# define STDC_HEADERS
# define HAVE___STRCHRNUL 1
# ifdef __UCLIBC_HAS_WCHAR__
# define HAVE_WCHAR_H 1
# define HAVE_WCTYPE_H 1
# ifdef __UCLIBC_HAS_LOCALE__
# define HAVE_MBSTATE_T 1
# define HAVE_MBSRTOWCS 1
# endif
# endif
#endif
#include <assert.h>
#include <errno.h>
#include <fnmatch.h>
#include <ctype.h>
#if HAVE_STRING_H || defined _LIBC
# include <string.h>
#else
# include <strings.h>
#endif
#if defined STDC_HEADERS || defined _LIBC
# include <stdlib.h>
#endif
#ifdef __UCLIBC__
#define __memset memset
libc_hidden_proto(memchr)
libc_hidden_proto(memset)
libc_hidden_proto(mempcpy)
libc_hidden_proto(strcat)
libc_hidden_proto(strcmp)
/*libc_hidden_proto(strchr)*/
/*libc_hidden_proto(strchrnul)*/
libc_hidden_proto(strlen)
libc_hidden_proto(strcoll)
#ifdef __UCLIBC_HAS_XLOCALE__
libc_hidden_proto(__ctype_b_loc)
libc_hidden_proto(__ctype_tolower_loc)
#elif __UCLIBC_HAS_CTYPE_TABLES__
libc_hidden_proto(__ctype_b)
libc_hidden_proto(__ctype_tolower)
#endif
libc_hidden_proto(tolower)
libc_hidden_proto(fnmatch)
libc_hidden_proto(getenv)
#endif
/* For platform which support the ISO C amendement 1 functionality we
support user defined character classes. */
#if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
/* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */
# include <wchar.h>
# include <wctype.h>
# ifdef __UCLIBC__
libc_hidden_proto(wctype)
libc_hidden_proto(iswctype)
libc_hidden_proto(btowc)
# ifdef __UCLIBC_HAS_LOCALE__
libc_hidden_proto(wmemchr)
libc_hidden_proto(wmempcpy)
libc_hidden_proto(wcscat)
/*libc_hidden_proto(wcschr)*/
/*libc_hidden_proto(wcschrnul)*/
libc_hidden_proto(wcslen)
libc_hidden_proto(wcscoll)
libc_hidden_proto(towlower)
libc_hidden_proto(mbsrtowcs)
# endif
# endif
#endif
/* We need some of the locale data (the collation sequence information)
but there is no interface to get this information in general. Therefore
we support a correct implementation only in glibc. */
#ifdef _LIBC
# include "../locale/localeinfo.h"
# include "../locale/elem-hash.h"
# include "../locale/coll-lookup.h"
# include <shlib-compat.h>
# define CONCAT(a,b) __CONCAT(a,b)
# define mbsrtowcs __mbsrtowcs
# define fnmatch __fnmatch
extern int fnmatch (const char *pattern, const char *string, int flags);
#endif
/* We often have to test for FNM_FILE_NAME and FNM_PERIOD being both set. */
#define NO_LEADING_PERIOD(flags) \
((flags & (FNM_FILE_NAME | FNM_PERIOD)) == (FNM_FILE_NAME | FNM_PERIOD))
/* Comment out all this code if we are using the GNU C Library, and are not
actually compiling the library itself. This code is part of the GNU C
Library, but also included in many other GNU distributions. Compiling
and linking in this code is a waste when using the GNU C library
(especially if it is a shared library). Rather than having every GNU
program understand `configure --with-gnu-libc' and omit the object files,
it is simpler to just do this in the source for each such file. */
#if defined _LIBC || !defined __GNU_LIBRARY__
# if defined STDC_HEADERS || !defined isascii
# define ISASCII(c) 1
# else
# define ISASCII(c) isascii(c)
# endif
# ifdef isblank
# define ISBLANK(c) (ISASCII (c) && isblank (c))
# else
# define ISBLANK(c) ((c) == ' ' || (c) == '\t')
# endif
# ifdef isgraph
# define ISGRAPH(c) (ISASCII (c) && isgraph (c))
# else
# define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
# endif
# define ISPRINT(c) (ISASCII (c) && isprint (c))
# define ISDIGIT(c) (ISASCII (c) && isdigit (c))
# define ISALNUM(c) (ISASCII (c) && isalnum (c))
# define ISALPHA(c) (ISASCII (c) && isalpha (c))
# define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
# define ISLOWER(c) (ISASCII (c) && islower (c))
# define ISPUNCT(c) (ISASCII (c) && ispunct (c))
# define ISSPACE(c) (ISASCII (c) && isspace (c))
# define ISUPPER(c) (ISASCII (c) && isupper (c))
# define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
# define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
# if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
/* The GNU C library provides support for user-defined character classes
and the functions from ISO C amendement 1. */
# ifdef CHARCLASS_NAME_MAX
# define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
# else
/* This shouldn't happen but some implementation might still have this
problem. Use a reasonable default value. */
# define CHAR_CLASS_MAX_LENGTH 256
# endif
# ifdef _LIBC
# define IS_CHAR_CLASS(string) __wctype (string)
# else
# define IS_CHAR_CLASS(string) wctype (string)
# endif
# ifdef _LIBC
# define ISWCTYPE(WC, WT) __iswctype (WC, WT)
# else
# define ISWCTYPE(WC, WT) iswctype (WC, WT)
# endif
# if (HAVE_MBSTATE_T && HAVE_MBSRTOWCS) || _LIBC
/* In this case we are implementing the multibyte character handling. */
# define HANDLE_MULTIBYTE 1
# endif
# else
# define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
# define IS_CHAR_CLASS(string) \
(STREQ (string, "alpha") || STREQ (string, "upper") \
|| STREQ (string, "lower") || STREQ (string, "digit") \
|| STREQ (string, "alnum") || STREQ (string, "xdigit") \
|| STREQ (string, "space") || STREQ (string, "print") \
|| STREQ (string, "punct") || STREQ (string, "graph") \
|| STREQ (string, "cntrl") || STREQ (string, "blank"))
# endif
/* Avoid depending on library functions or files
whose names are inconsistent. */
# if !defined _LIBC && !defined getenv && !defined __UCLIBC__
extern char *getenv ();
# endif
# ifndef errno
extern int errno;
# endif
/* Global variable. */
static int posixly_correct;
/* This function doesn't exist on most systems. */
# if !defined HAVE___STRCHRNUL && !defined _LIBC
static char *
__strchrnul (s, c)
const char *s;
int c;
{
char *result = strchr (s, c);
if (result == NULL)
result = strchr (s, '\0');
return result;
}
# endif
# if HANDLE_MULTIBYTE && !defined HAVE___STRCHRNUL && !defined _LIBC
static wchar_t *
__wcschrnul (s, c)
const wchar_t *s;
wint_t c;
{
wchar_t *result = wcschr (s, c);
if (result == NULL)
result = wcschr (s, '\0');
return result;
}
# endif
# ifndef internal_function
/* Inside GNU libc we mark some function in a special way. In other
environments simply ignore the marking. */
# define internal_function
# endif
/* Note that this evaluates C many times. */
# ifdef _LIBC
# define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
# else
# define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
# endif
# define CHAR char
# define UCHAR unsigned char
# define INT int
# define FCT internal_fnmatch
# define EXT ext_match
# define END end_pattern
# define L(CS) CS
# ifdef _LIBC
# define BTOWC(C) __btowc (C)
# else
# define BTOWC(C) btowc (C)
# endif
# define STRLEN(S) strlen (S)
# define STRCAT(D, S) strcat (D, S)
# define MEMPCPY(D, S, N) mempcpy (D, S, N)
# define MEMCHR(S, C, N) memchr (S, C, N)
# define STRCOLL(S1, S2) strcoll (S1, S2)
# include "fnmatch_loop.c"
# if HANDLE_MULTIBYTE
/* Note that this evaluates C many times. */
# ifdef _LIBC
# define FOLD(c) ((flags & FNM_CASEFOLD) ? towlower (c) : (c))
# else
# define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? towlower (c) : (c))
# endif
# define CHAR wchar_t
# define UCHAR wint_t
# define INT wint_t
# define FCT internal_fnwmatch
# define EXT ext_wmatch
# define END end_wpattern
# define L(CS) L##CS
# define BTOWC(C) (C)
# define STRLEN(S) wcslen (S)
# define STRCAT(D, S) wcscat (D, S)
# define MEMPCPY(D, S, N) wmempcpy (D, S, N)
# define MEMCHR(S, C, N) wmemchr (S, C, N)
# define STRCOLL(S1, S2) wcscoll (S1, S2)
# ifndef __UCLIBC__
# define WIDE_CHAR_VERSION 1
# endif
# undef IS_CHAR_CLASS
/* We have to convert the wide character string in a multibyte string. But
we know that the character class names consist of alphanumeric characters
from the portable character set, and since the wide character encoding
for a member of the portable character set is the same code point as
its single-byte encoding, we can use a simplified method to convert the
string to a multibyte character string. */
static wctype_t
is_char_class (const wchar_t *wcs)
{
char s[CHAR_CLASS_MAX_LENGTH + 1];
char *cp = s;
do
{
/* Test for a printable character from the portable character set. */
# if defined _LIBC || defined __UCLIBC__
if (*wcs < 0x20 || *wcs > 0x7e
|| *wcs == 0x24 || *wcs == 0x40 || *wcs == 0x60)
return (wctype_t) 0;
# else
switch (*wcs)
{
case L' ': case L'!': case L'"': case L'#': case L'%':
case L'&': case L'\'': case L'(': case L')': case L'*':
case L'+': case L',': case L'-': case L'.': case L'/':
case L'0': case L'1': case L'2': case L'3': case L'4':
case L'5': case L'6': case L'7': case L'8': case L'9':
case L':': case L';': case L'<': case L'=': case L'>':
case L'?':
case L'A': case L'B': case L'C': case L'D': case L'E':
case L'F': case L'G': case L'H': case L'I': case L'J':
case L'K': case L'L': case L'M': case L'N': case L'O':
case L'P': case L'Q': case L'R': case L'S': case L'T':
case L'U': case L'V': case L'W': case L'X': case L'Y':
case L'Z':
case L'[': case L'\\': case L']': case L'^': case L'_':
case L'a': case L'b': case L'c': case L'd': case L'e':
case L'f': case L'g': case L'h': case L'i': case L'j':
case L'k': case L'l': case L'm': case L'n': case L'o':
case L'p': case L'q': case L'r': case L's': case L't':
case L'u': case L'v': case L'w': case L'x': case L'y':
case L'z': case L'{': case L'|': case L'}': case L'~':
break;
default:
return (wctype_t) 0;
}
# endif
/* Avoid overrunning the buffer. */
if (cp == s + CHAR_CLASS_MAX_LENGTH)
return (wctype_t) 0;
*cp++ = (char) *wcs++;
}
while (*wcs != L'\0');
*cp = '\0';
# ifdef _LIBC
return __wctype (s);
# else
return wctype (s);
# endif
}
# define IS_CHAR_CLASS(string) is_char_class (string)
# include "fnmatch_loop.c"
# endif
#ifdef __UCLIBC_HAS_WCHAR__
libc_hidden_proto(_stdlib_mb_cur_max)
#else
#undef MB_CUR_MAX
#define MB_CUR_MAX 1
#endif
int
fnmatch (const char *pattern, const char *string, int flags)
{
# if HANDLE_MULTIBYTE
if (__builtin_expect (MB_CUR_MAX, 1) != 1)
{
mbstate_t ps;
size_t n;
const char *p;
wchar_t *wpattern = NULL;
wchar_t *wstring = NULL;
/* Convert the strings into wide characters. */
__memset (&ps, '\0', sizeof (ps));
p = pattern;
#ifdef _LIBC
n = strnlen (pattern, 1024);
#else
n = strlen (pattern);
#endif
if (__builtin_expect (n < 1024, 1))
{
wpattern = (wchar_t *) alloca ((n + 1) * sizeof (wchar_t));
n = mbsrtowcs (wpattern, &p, n + 1, &ps);
if (__builtin_expect (n == (size_t) -1, 0))
/* Something wrong.
XXX Do we have to set `errno' to something which mbsrtows hasn't
already done? */
return -1;
if (p)
__memset (&ps, '\0', sizeof (ps));
}
if (__builtin_expect (p != NULL, 0))
{
n = mbsrtowcs (NULL, &pattern, 0, &ps);
if (__builtin_expect (n == (size_t) -1, 0))
/* Something wrong.
XXX Do we have to set `errno' to something which mbsrtows hasn't
already done? */
return -1;
wpattern = (wchar_t *) alloca ((n + 1) * sizeof (wchar_t));
assert (mbsinit (&ps));
(void) mbsrtowcs (wpattern, &pattern, n + 1, &ps);
}
assert (mbsinit (&ps));
#ifdef _LIBC
n = strnlen (string, 1024);
#else
n = strlen (string);
#endif
p = string;
if (__builtin_expect (n < 1024, 1))
{
wstring = (wchar_t *) alloca ((n + 1) * sizeof (wchar_t));
n = mbsrtowcs (wstring, &p, n + 1, &ps);
if (__builtin_expect (n == (size_t) -1, 0))
/* Something wrong.
XXX Do we have to set `errno' to something which mbsrtows hasn't
already done? */
return -1;
if (p)
__memset (&ps, '\0', sizeof (ps));
}
if (__builtin_expect (p != NULL, 0))
{
n = mbsrtowcs (NULL, &string, 0, &ps);
if (__builtin_expect (n == (size_t) -1, 0))
/* Something wrong.
XXX Do we have to set `errno' to something which mbsrtows hasn't
already done? */
return -1;
wstring = (wchar_t *) alloca ((n + 1) * sizeof (wchar_t));
assert (mbsinit (&ps));
(void) mbsrtowcs (wstring, &string, n + 1, &ps);
}
return internal_fnwmatch (wpattern, wstring, wstring + n,
flags & FNM_PERIOD, flags);
}
# endif /* mbstate_t and mbsrtowcs or _LIBC. */
return internal_fnmatch (pattern, string, string + strlen (string),
flags & FNM_PERIOD, flags);
}
# ifdef _LIBC
# undef fnmatch
versioned_symbol (libc, __fnmatch, fnmatch, GLIBC_2_2_3);
# if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_3)
strong_alias (__fnmatch, __fnmatch_old)
compat_symbol (libc, __fnmatch_old, fnmatch, GLIBC_2_0);
# endif
libc_hidden_ver (__fnmatch, fnmatch)
# else
libc_hidden_def(fnmatch)
# endif
#endif /* _LIBC or not __GNU_LIBRARY__. */
|
the_stack_data/779964.c | #include <stdio.h>
/* print Celsius-Fahrenheit table
for Celsius = 0, 20, ..., 300; floating-point version */
main()
{
float fahr, celsius;
float lower, upper, step;
lower = 0; /* lower limit of temperatuire scale */
upper = 300; /* upper limit */
step = 20; /* step size */
printf("Celsius Fahrenheit\n");
celsius = lower;
while (celsius <= upper) {
fahr = (9.0 / 5.0) * (celsius + 32.0);
printf("%7.0f %10.1f\n", celsius, fahr);
celsius = celsius + step;
}
} |
the_stack_data/212643382.c | #include <stdio.h>
int main(void) {
int n, la, lb;
scanf("%d", &n);
scanf("%d %d", &la, &lb);
if (la <= n && n <= lb) {
scanf("%d %d", &la, &lb);
if (la <= n && n <= lb)
printf("possivel");
else printf("impossivel");
}
else {
scanf("%d %d", &la, &lb);
printf("impossivel");
}
printf("\n");
return 0;
}
|
the_stack_data/117458.c | /* $OpenBSD: cat.c,v 1.25 2016/07/01 22:40:44 schwarze Exp $ */
/* $NetBSD: cat.c,v 1.11 1995/09/07 06:12:54 jtc Exp $ */
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Kevin Fall.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define MAXIMUM(a, b) (((a) > (b)) ? (a) : (b))
extern char *__progname;
int bflag, eflag, nflag, sflag, tflag, vflag;
int rval;
char *filename;
void cook_args(char *argv[]);
void cook_buf(FILE *);
void raw_args(char *argv[]);
void raw_cat(int);
int
main(int argc, char *argv[])
{
int ch;
setlocale(LC_ALL, "");
if (pledge("stdio rpath", NULL) == -1)
err(1, "pledge");
while ((ch = getopt(argc, argv, "benstuv")) != -1)
switch (ch) {
case 'b':
bflag = nflag = 1; /* -b implies -n */
break;
case 'e':
eflag = vflag = 1; /* -e implies -v */
break;
case 'n':
nflag = 1;
break;
case 's':
sflag = 1;
break;
case 't':
tflag = vflag = 1; /* -t implies -v */
break;
case 'u':
setvbuf(stdout, NULL, _IONBF, 0);
break;
case 'v':
vflag = 1;
break;
default:
(void)fprintf(stderr,
"usage: %s [-benstuv] [file ...]\n", __progname);
exit(1);
/* NOTREACHED */
}
argv += optind;
if (bflag || eflag || nflag || sflag || tflag || vflag)
cook_args(argv);
else
raw_args(argv);
if (fclose(stdout))
err(1, "stdout");
exit(rval);
/* NOTREACHED */
}
void
cook_args(char **argv)
{
FILE *fp;
fp = stdin;
filename = "stdin";
do {
if (*argv) {
if (!strcmp(*argv, "-"))
fp = stdin;
else if ((fp = fopen(*argv, "r")) == NULL) {
warn("%s", *argv);
rval = 1;
++argv;
continue;
}
filename = *argv++;
}
cook_buf(fp);
if (fp == stdin)
clearerr(fp);
else
(void)fclose(fp);
} while (*argv);
}
void
cook_buf(FILE *fp)
{
int ch, gobble, line, prev;
line = gobble = 0;
for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
if (prev == '\n') {
if (sflag) {
if (ch == '\n') {
if (gobble)
continue;
gobble = 1;
} else
gobble = 0;
}
if (nflag) {
if (!bflag || ch != '\n') {
(void)fprintf(stdout, "%6d\t", ++line);
if (ferror(stdout))
break;
} else if (eflag) {
(void)fprintf(stdout, "%6s\t", "");
if (ferror(stdout))
break;
}
}
}
if (ch == '\n') {
if (eflag && putchar('$') == EOF)
break;
} else if (ch == '\t') {
if (tflag) {
if (putchar('^') == EOF || putchar('I') == EOF)
break;
continue;
}
} else if (vflag) {
if (!isascii(ch)) {
if (putchar('M') == EOF || putchar('-') == EOF)
break;
ch = toascii(ch);
}
if (iscntrl(ch)) {
if (putchar('^') == EOF ||
putchar(ch == '\177' ? '?' :
ch | 0100) == EOF)
break;
continue;
}
}
if (putchar(ch) == EOF)
break;
}
if (ferror(fp)) {
warn("%s", filename);
rval = 1;
clearerr(fp);
}
if (ferror(stdout))
err(1, "stdout");
}
void
raw_args(char **argv)
{
int fd;
fd = fileno(stdin);
filename = "stdin";
do {
if (*argv) {
if (!strcmp(*argv, "-"))
fd = fileno(stdin);
else if ((fd = open(*argv, O_RDONLY, 0)) < 0) {
warn("%s", *argv);
rval = 1;
++argv;
continue;
}
filename = *argv++;
}
raw_cat(fd);
if (fd != fileno(stdin))
(void)close(fd);
} while (*argv);
}
void
raw_cat(int rfd)
{
int wfd;
ssize_t nr, nw, off;
static size_t bsize;
static char *buf = NULL;
struct stat sbuf;
wfd = fileno(stdout);
if (buf == NULL) {
if (fstat(wfd, &sbuf))
err(1, "stdout");
bsize = MAXIMUM(sbuf.st_blksize, BUFSIZ);
if ((buf = malloc(bsize)) == NULL)
err(1, "malloc");
}
while ((nr = read(rfd, buf, bsize)) != -1 && nr != 0)
for (off = 0; nr; nr -= nw, off += nw)
if ((nw = write(wfd, buf + off, (size_t)nr)) == 0 ||
nw == -1)
err(1, "stdout");
if (nr < 0) {
warn("%s", filename);
rval = 1;
}
}
|
the_stack_data/170452880.c | #include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
struct image_header_t {
uint8_t magic[16]; /* magic */
uint32_t load_addr; /* physical load addr */
uint32_t load_size; /* size in bytes */
uint32_t crc32; /* crc32 */
uint32_t hash_len; /* 20 or 32 , 0 is no hash*/
uint8_t hash[32]; /* sha */
uint8_t reserved[1024 - 32 - 32];
uint32_t signtag; /* 0x4E474953 */
uint32_t signlen; /* maybe 128 or 256 */
uint8_t rsahash[256]; /* maybe 128 or 256, using max size 256 */
uint8_t reserved2[2048 - 1024 - 256 - 8];
};
struct sha256_ctx_t {
uint64_t count;
uint8_t buf[64];
uint32_t state[8];
};
#define SHA256_DIGEST_SIZE (32)
#define ror(value, bits) (((value) >> (bits)) | ((value) << (32 - (bits))))
#define shr(value, bits) ((value) >> (bits))
static const uint32_t K[64] =
{
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
};
static void sha256_transform(struct sha256_ctx_t * ctx)
{
uint32_t W[64];
uint32_t A, B, C, D, E, F, G, H;
uint8_t * p = ctx->buf;
int t;
for(t = 0; t < 16; ++t)
{
uint32_t tmp = *p++ << 24;
tmp |= *p++ << 16;
tmp |= *p++ << 8;
tmp |= *p++;
W[t] = tmp;
}
for(; t < 64; t++)
{
uint32_t s0 = ror(W[t-15], 7) ^ ror(W[t-15], 18) ^ shr(W[t-15], 3);
uint32_t s1 = ror(W[t-2], 17) ^ ror(W[t-2], 19) ^ shr(W[t-2], 10);
W[t] = W[t-16] + s0 + W[t-7] + s1;
}
A = ctx->state[0];
B = ctx->state[1];
C = ctx->state[2];
D = ctx->state[3];
E = ctx->state[4];
F = ctx->state[5];
G = ctx->state[6];
H = ctx->state[7];
for(t = 0; t < 64; t++)
{
uint32_t s0 = ror(A, 2) ^ ror(A, 13) ^ ror(A, 22);
uint32_t maj = (A & B) ^ (A & C) ^ (B & C);
uint32_t t2 = s0 + maj;
uint32_t s1 = ror(E, 6) ^ ror(E, 11) ^ ror(E, 25);
uint32_t ch = (E & F) ^ ((~E) & G);
uint32_t t1 = H + s1 + ch + K[t] + W[t];
H = G;
G = F;
F = E;
E = D + t1;
D = C;
C = B;
B = A;
A = t1 + t2;
}
ctx->state[0] += A;
ctx->state[1] += B;
ctx->state[2] += C;
ctx->state[3] += D;
ctx->state[4] += E;
ctx->state[5] += F;
ctx->state[6] += G;
ctx->state[7] += H;
}
void sha256_init(struct sha256_ctx_t * ctx)
{
ctx->state[0] = 0x6a09e667;
ctx->state[1] = 0xbb67ae85;
ctx->state[2] = 0x3c6ef372;
ctx->state[3] = 0xa54ff53a;
ctx->state[4] = 0x510e527f;
ctx->state[5] = 0x9b05688c;
ctx->state[6] = 0x1f83d9ab;
ctx->state[7] = 0x5be0cd19;
ctx->count = 0;
}
static void sha256_update(struct sha256_ctx_t * ctx, const void * data, int len)
{
int i = (int)(ctx->count & 63);
const uint8_t * p = (const uint8_t *)data;
ctx->count += len;
while(len--)
{
ctx->buf[i++] = *p++;
if(i == 64)
{
sha256_transform(ctx);
i = 0;
}
}
}
static const uint8_t * sha256_final(struct sha256_ctx_t * ctx)
{
uint8_t * p = ctx->buf;
uint64_t cnt = ctx->count * 8;
int i;
sha256_update(ctx, (uint8_t *)"\x80", 1);
while ((ctx->count & 63) != 56)
{
sha256_update(ctx, (uint8_t *)"\0", 1);
}
for(i = 0; i < 8; ++i)
{
uint8_t tmp = (uint8_t)(cnt >> ((7 - i) * 8));
sha256_update(ctx, &tmp, 1);
}
for(i = 0; i < 8; i++)
{
uint32_t tmp = ctx->state[i];
*p++ = tmp >> 24;
*p++ = tmp >> 16;
*p++ = tmp >> 8;
*p++ = tmp >> 0;
}
return ctx->buf;
}
static const uint32_t crc_table[256] = {
0x00000000, 0x04c10db7, 0x09821b6e, 0x0d4316d9,
0x130436dc, 0x17c53b6b, 0x1a862db2, 0x1e472005,
0x26086db8, 0x22c9600f, 0x2f8a76d6, 0x2b4b7b61,
0x350c5b64, 0x31cd56d3, 0x3c8e400a, 0x384f4dbd,
0x4c10db70, 0x48d1d6c7, 0x4592c01e, 0x4153cda9,
0x5f14edac, 0x5bd5e01b, 0x5696f6c2, 0x5257fb75,
0x6a18b6c8, 0x6ed9bb7f, 0x639aada6, 0x675ba011,
0x791c8014, 0x7ddd8da3, 0x709e9b7a, 0x745f96cd,
0x9821b6e0, 0x9ce0bb57, 0x91a3ad8e, 0x9562a039,
0x8b25803c, 0x8fe48d8b, 0x82a79b52, 0x866696e5,
0xbe29db58, 0xbae8d6ef, 0xb7abc036, 0xb36acd81,
0xad2ded84, 0xa9ece033, 0xa4aff6ea, 0xa06efb5d,
0xd4316d90, 0xd0f06027, 0xddb376fe, 0xd9727b49,
0xc7355b4c, 0xc3f456fb, 0xceb74022, 0xca764d95,
0xf2390028, 0xf6f80d9f, 0xfbbb1b46, 0xff7a16f1,
0xe13d36f4, 0xe5fc3b43, 0xe8bf2d9a, 0xec7e202d,
0x34826077, 0x30436dc0, 0x3d007b19, 0x39c176ae,
0x278656ab, 0x23475b1c, 0x2e044dc5, 0x2ac54072,
0x128a0dcf, 0x164b0078, 0x1b0816a1, 0x1fc91b16,
0x018e3b13, 0x054f36a4, 0x080c207d, 0x0ccd2dca,
0x7892bb07, 0x7c53b6b0, 0x7110a069, 0x75d1adde,
0x6b968ddb, 0x6f57806c, 0x621496b5, 0x66d59b02,
0x5e9ad6bf, 0x5a5bdb08, 0x5718cdd1, 0x53d9c066,
0x4d9ee063, 0x495fedd4, 0x441cfb0d, 0x40ddf6ba,
0xaca3d697, 0xa862db20, 0xa521cdf9, 0xa1e0c04e,
0xbfa7e04b, 0xbb66edfc, 0xb625fb25, 0xb2e4f692,
0x8aabbb2f, 0x8e6ab698, 0x8329a041, 0x87e8adf6,
0x99af8df3, 0x9d6e8044, 0x902d969d, 0x94ec9b2a,
0xe0b30de7, 0xe4720050, 0xe9311689, 0xedf01b3e,
0xf3b73b3b, 0xf776368c, 0xfa352055, 0xfef42de2,
0xc6bb605f, 0xc27a6de8, 0xcf397b31, 0xcbf87686,
0xd5bf5683, 0xd17e5b34, 0xdc3d4ded, 0xd8fc405a,
0x6904c0ee, 0x6dc5cd59, 0x6086db80, 0x6447d637,
0x7a00f632, 0x7ec1fb85, 0x7382ed5c, 0x7743e0eb,
0x4f0cad56, 0x4bcda0e1, 0x468eb638, 0x424fbb8f,
0x5c089b8a, 0x58c9963d, 0x558a80e4, 0x514b8d53,
0x25141b9e, 0x21d51629, 0x2c9600f0, 0x28570d47,
0x36102d42, 0x32d120f5, 0x3f92362c, 0x3b533b9b,
0x031c7626, 0x07dd7b91, 0x0a9e6d48, 0x0e5f60ff,
0x101840fa, 0x14d94d4d, 0x199a5b94, 0x1d5b5623,
0xf125760e, 0xf5e47bb9, 0xf8a76d60, 0xfc6660d7,
0xe22140d2, 0xe6e04d65, 0xeba35bbc, 0xef62560b,
0xd72d1bb6, 0xd3ec1601, 0xdeaf00d8, 0xda6e0d6f,
0xc4292d6a, 0xc0e820dd, 0xcdab3604, 0xc96a3bb3,
0xbd35ad7e, 0xb9f4a0c9, 0xb4b7b610, 0xb076bba7,
0xae319ba2, 0xaaf09615, 0xa7b380cc, 0xa3728d7b,
0x9b3dc0c6, 0x9ffccd71, 0x92bfdba8, 0x967ed61f,
0x8839f61a, 0x8cf8fbad, 0x81bbed74, 0x857ae0c3,
0x5d86a099, 0x5947ad2e, 0x5404bbf7, 0x50c5b640,
0x4e829645, 0x4a439bf2, 0x47008d2b, 0x43c1809c,
0x7b8ecd21, 0x7f4fc096, 0x720cd64f, 0x76cddbf8,
0x688afbfd, 0x6c4bf64a, 0x6108e093, 0x65c9ed24,
0x11967be9, 0x1557765e, 0x18146087, 0x1cd56d30,
0x02924d35, 0x06534082, 0x0b10565b, 0x0fd15bec,
0x379e1651, 0x335f1be6, 0x3e1c0d3f, 0x3add0088,
0x249a208d, 0x205b2d3a, 0x2d183be3, 0x29d93654,
0xc5a71679, 0xc1661bce, 0xcc250d17, 0xc8e400a0,
0xd6a320a5, 0xd2622d12, 0xdf213bcb, 0xdbe0367c,
0xe3af7bc1, 0xe76e7676, 0xea2d60af, 0xeeec6d18,
0xf0ab4d1d, 0xf46a40aa, 0xf9295673, 0xfde85bc4,
0x89b7cd09, 0x8d76c0be, 0x8035d667, 0x84f4dbd0,
0x9ab3fbd5, 0x9e72f662, 0x9331e0bb, 0x97f0ed0c,
0xafbfa0b1, 0xab7ead06, 0xa63dbbdf, 0xa2fcb668,
0xbcbb966d, 0xb87a9bda, 0xb5398d03, 0xb1f880b4,
};
static uint32_t crc32(uint32_t crc, const uint8_t * buf, size_t len)
{
do {
crc = crc_table[((crc >> 24) ^ (*buf++)) & 255] ^ (crc << 8);
} while (--len);
return crc;
}
int main(int argc, char *argv[])
{
struct image_header_t hdr;
struct sha256_ctx_t ctx;
FILE * fi, * fo;
char * buffer;
int buflen = 64 * 1024 * 1024;
int ilen;
if(argc != 3)
{
printf("Usage: mk3399 <input file> <output file>\n");
return -1;
}
buffer = malloc(buflen);
memset(buffer, 0, buflen);
fi = fopen(argv[1], "r+b");
if(!fi)
{
printf("Open file '%s' error\n", argv[1]);
free(buffer);
return -1;
}
fo = fopen(argv[2], "w+b");
if(!fo)
{
printf("Open file '%s' error\n", argv[2]);
free(buffer);
close(fi);
return -1;
}
fseek(fi, 0, SEEK_END);
ilen = ftell(fi);
fseek(fi, 0, SEEK_SET);
if(ilen > buflen - sizeof(struct image_header_t))
{
printf("The input file too large\n");
close(fi);
close(fo);
free(buffer);
return -1;
}
memset(&hdr, 0, sizeof(struct image_header_t));
strcpy((char *)hdr.magic, "LOADER ");
hdr.load_addr = 0x00200000;
if(fread(buffer + sizeof(struct image_header_t), 1, ilen, fi) != ilen)
{
printf("Read input file error\n");
close(fi);
close(fo);
free(buffer);
return -1;
}
/* Aligned size to 4-byte, rockchip hardware crypto need 4-byte align */
ilen = (((ilen + 3) >> 2 ) << 2);
hdr.load_size = ilen;
hdr.crc32 = crc32(0, (const uint8_t *)buffer + sizeof(struct image_header_t), ilen);
hdr.hash_len = SHA256_DIGEST_SIZE;
sha256_init(&ctx);
sha256_update(&ctx, (void *)buffer + sizeof(struct image_header_t), ilen);
sha256_update(&ctx, (void *)&hdr.load_addr, sizeof(hdr.load_addr));
sha256_update(&ctx, (void *)&hdr.load_size, sizeof(hdr.load_size));
sha256_update(&ctx, (void *)&hdr.hash_len, sizeof(hdr.hash_len));
memcpy(hdr.hash, sha256_final(&ctx), SHA256_DIGEST_SIZE);
memcpy(buffer, &hdr, sizeof(struct image_header_t));
if(fwrite(buffer, ilen + sizeof(struct image_header_t), 1, fo) != 1)
{
printf("Write output file error\n");
close(fi);
close(fo);
free(buffer);
return -1;
}
close(fi);
close(fo);
free(buffer);
printf("Generate output file '%s' successed\n", argv[2]);
return 0;
}
|
the_stack_data/76823.c | int func1_in_obj();
int func2_in_obj();
int main(int argc, char **argv) {
return func1_in_obj() + func2_in_obj();
}
|
the_stack_data/7949252.c | /*
Fontname: -Efont-Fixed-Medium-R-Normal--16-160-75-75-C-160-ISO10646-1
Copyright: (c) Copyright 2000-2003 /efont/ The Electronic Font Open Laboratory.
Glyphs: 1191/21635
BBX Build Mode: 0
*/
#ifdef U8G2_USE_LARGE_FONTS
const uint8_t u8g2_font_f16_t_japanese1[46447] U8G2_FONT_SECTION("u8g2_font_f16_t_japanese1") =
"\247\0\4\2\5\5\5\5\6\20\20\0\376\0\0\0\0\0\0\0\0\0#\134!\20B\7C\36\221G"
"\344\21yD\36\221G\344\21yD\36\221G\344\21yD\36\221G\344\21\1\0\0\60A\36\212\315\7"
"O\62!\32\4#\261\201H\222\210$j$\211\214D$\11ED\71\15\0\60B!\355\311\7S\270"
"D\65\230\206#\311\301,\23\11iJ\22\221\224\244J#\223$R\21\231R\4\60C\23*\321\7G"
"\62\25\311%r\211\240I*Q\230\3\60D\27mI\10G\70\27\12F\242\211h\42k\233\210\344\22"
"\221\250\22\60E\22\207\325\7KN\217\31$D\261\252X*\244\1\60F\24\352\315\7\217T\217\35H"
"V\321da\62X'\223\1\60G\23\212M\7O\324z\60\10\266S\244\62\241\322A\0\60H\26\354"
"\311\7S\70\254\307\14\6\322N\207\231X(U\224\13\17\60I\33j\315\7O\62\24\32D\6\252L"
"r \22E\22)IJ\22\212h$\0\60J\42\356\311\7S\272H\67\310D\6\272T\60\224\36\350"
"F\242H,\222\211E\62\261HYH%\225\1\60K\33\315\311\7O\270*V\62\30\204j\32\225\204"
"JB\25\251X\252Y\244T\7\60L\42\355\311\7O\70\226\310\304\22\231T$\23\213\14\6\241\232F"
"%\241\222PE*\226j\26)\325\1\60M\33\353\311\7W\264b\62\230F\7\7\212l\64\65Pd"
"R\222hV;\310\0\60N!\355\311\7WY&\222J\14\22\211\301&\30\36H\6\213t\70\67P"
"\244R\242pZ=H\1\60O\16\346\325\7WQ\257b]\305R\1\60P\25\352\325\7W\62\230\11"
"E\32%\252\42\311h\227\321d\10\60Q!\355\311\7g(\27\312\205r\241\334@\63\330\4\63\301L"
"\60\23\314$b\241\134(\227\215\252\0\60R$\356\311\7g\244N\222\310%\332%\62\271A\42\63\30"
"\5C\301P\60\24\14%b\251\134*\27\316\312\0\60S\22\213M\10\313v\240g\33\255\15F\6\3"
"\5\0\60T\26\254M\10g\42\62J\244\6\212<\7\331\342`f\60\220\0\60U\31\352\321\7S\262"
"fp\220\213&\243\241\201\42\222R$\243Q\351 \2\60V\34\354\315\7S\252&\22\252\30\34\350\302"
"\331pl\240\10\245\64\331pX<\10\1\60W\17\311\321\7C\260\377N\26\311\210F\0\60X\26\311"
"\321\7C\60\226\10ET\11U$\330;Y$#\32\1\60Y\32\15J\7_\70<x \256T\4"
"#\302L\60\23\214(\25\341\332\250\16\60Z\37\16J\7_(\30\251\33(\6\67\311tT\221\214("
"\63\311L\62\42U\244\213\263B\0\60[\35\256E\10g\60\24\14\5C\3\321`\64\20\5C\301P"
"\60\24\314$\343\361\301\4\60\134\42\257E\10g&\25JDB%\211Ph\20\33\254\6\242d(\31"
"J\206\222\231h\36\220\7\334\0\60]\22\314\311\7\317`\220\214v\64x\332\266\70\274\1\60^\32\355"
"\311\7oh\60\210\344\42\211X&\227-\32$\6\3m\343\352\364\10\60_\31\355\311\7O\270D\65"
"\230f\303\261Mf\226\15\327\246b\251Xl\60\60`\37\355\311\7O\70\27\212(\42\203A(\221\211"
"\205\302\261Mf\226\15\327\246b\251Xl\60\60a\33\354\311\7S\266np\20\213fK\6\241\204("
"\243\213\4\263\321\244l\20\2\60b\37\355\311\7S,\25\212\204R\211\301\263l\270d\220J\210B\272"
"L\60\234\215\352\6)\0\60c\17\351\320\7\317@\261\12\326\305T\42\0\60d\21N\305\10\337p#"
"\31\4\343\351\342Z\345\12\60e\30\257\305\10w\70\22N\344&\261\215f\20\314\3\342\325\305\322\31\0"
"\60f\23\256E\10\357j\260\31\210\302\325\341t\363\362\11\0\60g\33\257E\10\357l\60\32\210\62\311"
"H](\221\13\5\343\355\1y@\36\260\1\60h\25\312\321\7G\62\232\214\206\64\21\231.\330\62\32"
"\35\14\4\60i\32\314\315\7G\60\22\213\224%\42\261TH\25\21*\243m\303\341\301@\2\60j\42"
"\355\311\7O\70<\210\15R\252\134&\225\211\244b\251\262T,\224\13\16t\241U(\222\32\244\0\60"
"k\27\314\311\7G\266l\222\31e{\223\313\344B\252Dh\240\210\2\60l&\316\305\7_\60\24\14"
"\5#\203\325$\23j\23J%Jb\211\222\230F\247\11-$\211H&\242\312D\27\1\60m$\356"
"\305\7O\272Zs\220\251\212\244B\211XH\27\12f\204\31\325 \222\10e\22\221PF\223ZE\1"
"\60n\35\215I\10\327 \247\210\244\62\215JB\25\241\230(\246\211%\42\271\210.\33\25\1\60o&"
"\355\311\7g(\27\312\205r\241\334@\63\330\4\63\301L\60\23\314\4\63\241\201&Q\64)\212$\62"
"\203\20\0\60p'\356\311\7g*\227h\227h\227h\67\210D\6\243`(\30\12\206\202\241`(\64"
"\20%\212\66\221P\244f\220\2\60q*\356\311\7gB\222\223$r\222D.!\311\15\42\221\301("
"\30\12\206\202\241`(\30\12\15D\211\242M$\24\251\31\244\0\60r \316\305\7[t\220\233\204r"
"\251XL\224\23\345\22\221`$\21\14\5C\271X]F\271\3\60s#\317\305\7[\321 \24\31D"
"B\211\242T\42\25S\345T\271D&\30)L\5S\271\262`F:\4\60t$\357\305\7\263.\24"
"\311\14B\221A$\224P\325\305T\71U.\221\11F\12S\301T\256,\230\221\16\1\60u\35\317\305"
"\7W\36\60O\227\347\1\231TM(\25\212\344B\211\134H\230\314dw\0\60v\42\317\305\7W,"
"\270\210$#\211`&\31\317\3\62\251\232P*\24\311\205\22\271\220\60\231\311\356\0\60w\42\357\305\7"
"\257.\24\311-\42\311\210\62\35\317\3\62\251\232P*\24\311\205\22\271\220\60\231\311\356\0\60x\20\356"
"\304\11\223\66\222\14\345b\251`\334\0\60y\24.\305\11oIJ\224\10E\62\251P.\226\12\306\15"
"\60z\25NE\11\253\66\22\215\244D\252H\62\224\213\245\202q\3\60{&\315\311\7Gd\60\220\344"
"B\271P.\23\134d\6\233`&\230\11f\202\231\320@\223(\232\24E\22\231A\10\60|)\356\311"
"\7s$\62\30D\22\271D\273D&\27\12N\62\203Q\60\24\14\5C\301Ph J\24m\42\241"
"H\315 \5\60}*\356\311\7\257$\62\30D\22\71I\42\227\220\344B\301If\60\12\206\202\241`"
"(\30\12\15D\211\242M$\24\251\31\244\0\60~\35\353\315\7[\64\64\70\220E\243\203\304`\20m"
"\66P\205&\251\310 \24\33\244\0\60\37\256\305\7\313`]\34\12\206\202\241\330`\21R\204&\231"
"PD\223\312DR)Y\70\5\60\200\42\355\311\7O\270r\60\310\244r\241\134d(\11JR\231H"
",\222\310et\241\134(\26\33\214\0\60\201(\316\305\7c.\225K\345\62\3UB\221\11iB\31"
"M(\222\210\304\22\221DL\224\23\305\22\21E*\42\314j\0\60\202\35\354\311\7S\266p\60\10f"
"\243\31\315`\20\314\346\62\271L.\224\212e\202\33\0\60\203\26k\311\7\233\252(\33\31\204F\21\331"
"$\224\212\350\242U\0\60\204\36\16F\7c<\226K\345b\351\320@\225Pev\203D\60\25\253\31"
"\246\343\351\62\0\60\205\33\212M\7W\250\315 R\21I\224d\66\231MF\222\210$\62\203\134\260\14"
"\60\206\42\315\311\7[\253\324@\222Qd\22\221LH\21\12\255B\253\220&\222I\204\22\221\252A\64"
"[\7\60\207\24i\315\7S\260p\220\12V\15B\231I&\242X\1\60\210\31\354\311\7[\266\215l"
"\20\314v\67P\211\66\251\210\42\224J\14r\0\60\211\25\352\321\7O\64\252Iv\63\210$D\11\235"
"\260\235j\5\60\212\26\350\321\7[$\225H%R\62/B\211T,\27\253\22\1\60\213\32\314\311\7"
"\317`\332\351`\245\312\4\23\321lH\225\211dB\231\331 \4\60\214#\357\305\7S\274\311P\221\11"
"-D\301T\60\25L\345T\71U,\221\312$\42\251H\42\23\223E\1\60\215\25\313\315\7\313`\232"
"l\71\30\251\42Ae\64Y\250S\1\60\216\30\212M\7K\262R\61Yd\62\252H,!S\244\62"
"\31Q\62\7\60\217\37\356\305\7O\272z\272Td\6\261\204(\245\13%#\312Da\42\22\14\305T"
"!]\24\60\220\37\316\305\7\317@\335\355`\246\10\325\244\42\231\234(\247\311L$\231\214D\224I\4"
"\67\0\60\221\36\315\305\7\313`\220\215J\7\272T]L\224\212\224E\22\301A\62;\331\330$\222\3"
"\60\222\37\355\311\7W\70<H\15\264\341\230f\20\21\205T!U(\221\214\4\63\301tz\60\1\60"
"\223\34\356\311\7[:\234\16\247\213\23RIP\23\14\345R\25\251P\42\27)\324\0\60\224\27\355\315"
"\7\213,\221\31%R{\212\301\261\270\255\324r\67\10\2\60\231\13\204l\15K\42\222h\2\60\232\14"
"\204\354\14\207\42\42I(\0\60\233\13\204D\15K\42\222h\2\60\234\14\204\300\14\207\42\42I(\0"
"\60\235\15\10Q\11\203P\330l\24\13\1\60\236\22IQ\11_,\62JD$\261d\335*\227\2\60"
"\241\21\11\315\7\303\243L(\222J\304\202\271\62\0\60\242\27\215\305\7\303\7\341X*\26\312e\202\11"
"e\70\33\316F\225\0\60\243\15H\321\7_\254\325F\222\353\6\60\244\20\312\311\7ga\273\225$#"
"J\366\15\0\60\245\22i\321\7S\260hp\220\63\13\346b*\25\0\60\246\21\313\315\7W\264j\360"
"\322ei\262P'\3\60\247\15\351\314\7\307`\220\12v\64\70\60\250\17.\305\10\313\340 \231\356\263"
"\301\3\1\60\251\23I\321\7W\260fp$K\244\42\241LQN\3\60\252\31\314\315\7_\266h\360"
".\252L$\23\301H.\23\13\205T\331\344\10\60\253\35\313\311\7W\264jp\240\12\245B\251P*"
"T\25Jeb\221\134\42\227\210I\0\60\254 \316\311\7W\254(\222\252\30<\310\205\202\241`(\30"
"\312\245r\251XU.\224\13\305T\0\60\255\32\355I\7W\270F\67H\15\22\341\232\331 \247H\15"
"\62\341\352p\21\0\60\256\36\355I\7WY&\222\312(R\203Df\220\10\327\314\6\71Ej\220\11"
"W\207\213\0\60\257\30\313\315\7W\64\71\30\204R\231T&\26\211Er\311\16uJ\0\60\260\33\356"
"\311\7s,\24IU\204\6\213X(\227\212\245bU\261t\270\255T\14\60\261\30\315\311\7O\270x"
"p\220\11\305R\261TY(\227\15gK\205\0\60\262\34\316\311\7O\60\24\213dr\211\314\340*\224"
"K\345R\261\252\134\70\35\256U\2\60\263\15kI\10\303\3i?\35<\15\60\264\24\316I\10s\66"
"\222M\14\36\204\323\375fp\240\316\0\60\265\35\316\305\7S*\227\312\245r\251\314\340\201(\225K\345"
"R\271T.\224\16\327\352\0\60\266 \357\305\7w*%\11\245\22E\251D,\25\32<P\25\246\202"
"\251`*\30\212\247\213\205\0\60\267\22\254\315\7\207\70O\261\214\344\262\321\226B\335\22\60\270\27\314\315"
"\7kD\25\311\244\22\311\364\62\222\313F[\12uK\0\60\271\25\215\305\7\313` \256\15g\303\322"
"H\60\24\253\21N\3\60\272\35\316\305\7s\66\22\31\14\24\225\211l\70\35Nk#\311P.\26\22"
"&\244\11\0\60\273\31\255I\10S\270\321 \64\320\14f\251\262P.\23\14\247\323\203\5\0\60\274\37"
"\316I\10s\252$\24K\204bE\203\324@\223\30\310\252r\241`&\231\216\307\7\23\0\60\275\25\253"
"\315\7\253\62\21\214\344\42\261L,\31M\66\324\11\1\60\276\27\315\311\7o\64\242L\24\206r\241X"
"*\226\15g\233*\245\0\60\277\31\314\311\7W\66;\30\204b\231X&\227\220h\202\212h\227\272%"
"\0\60\300\33\356\311\7s,\24IU\244\6\203XU,\225\313H\64QE\270[\345\26\60\301\24\315"
"\305\7kr\65\30\267\32<\310\205k\303\331\250\20\60\302\31\356\305\7s\66\222[\224\14\66\311t\331"
"\340A\60]\234\16g\225\0\60\303\22)\315\7O*S\21\311$b\271`\256L\4\60\304\30\254\311"
"\7S.\224JdR\211L*\21\314F\263\321\226B!\0\60\305\32\356\311\7s\66\22\212%D\251"
"LQM\250\60\234\16\247\303\265R)\0\60\306\23\215\311\7\313\340\236v\360 \27\256\15g\243B\0"
"\60\307\30\315\311\7o\64\22\31\14\22\245y\364\340A.\134\33\316F\205\0\60\310\21\347Y\7C\254"
"g\243\210$\224H\311:\3\60\311\30\351Y\7C,\21\212\250\22\252H\60\70\213\210jR\221`\207"
"\0\60\312\22\315\311\7_\270\325\340A.\334m\70\252T\2\60\313\16\16E\11\313\340 \317\333\301\3"
"\1\60\314\27\214\311\7\313\340\66\232Mi\202\212hE\60\23KetS\0\60\315\27\355\311\7[\270"
"np\20\316\66U\310\24\31\305&\25\13\67\3\60\316\17\313\311\7k\227\321d\64\331\241N\11\60\317"
"\31nE\10S&\31\12\246r\251X.\225K\5\63\311L\64\221\25\7\60\320\36\256E\10s\66\22"
"\312D\22\241\212X*\227\212\345R\271T\60\223\314D\23Yq\0\60\321\36\316E\10\257\66\22\215\204"
"\62\21U(\230\312\245b\271T.\25\314$\63\321DV\34\60\322\22\252M\10C\262\63E\346 \226"
"l\32\35\14\4\60\323\31\254M\10C\62\221\213\10\23\302HL\223Y\15\202\331\306\341\301@\2\60\324"
"\31\255I\10CR\21\214\10#JEL\224\231\15\222\341\326\351\301@\3\60\325\20\214\311\7\303\267\245"
"\331h\66\332R(\4\60\326\24\355\311\7o\64\22M\14\36\327\206\263\341lS\245\24\60\327\24\316\311"
"\7\257\66\62x\22\335\206\323\341t\270\255T\13\60\330\21\16E\11\227\66\222\14\345b\251`&\32/"
"\60\331\27NE\11s\66\222\22%B\221L*\224\213\245\202\231h\274\0\60\332\27nE\11\253\66\22"
"\215\304\64\262H\62\224\213\245\202\231h\274\0\60\333\35\315\311\7[\270l\360 \26NF\312\42\231T"
"$\224)\312T%B)UV\6\60\334\42\316\311\7[*\227\211\304B\211\301\203`:\32\251\213d"
"b\221PM\250&\25\11\245\22\251\260\16\60\335\42\316\311\7[H\227\211\304\62\221\301\3]:\32\251"
"\213db\221PM\250&\25\11\245\22\251\260\16\60\336\23mI\10\303\7\331p\266J\24Td\323\305"
"!\0\60\337\17\351M\7\213\322\62\253TV$]\26\60\340\25\314\311\7W\266\323l&\27J\65\313"
"D\6\213\201,[\60\341\26\313\315\7g\264\215(&\11&\222Qa$\26*\324)\1\60\342\23\215"
"E\10\313\340.\334n\360 \25n\235\36(\0\60\343\24jM\7O\62\32\31M\42\233\204\244.\31"
"M\326\0\60\344\32\315\311\7O\70\235\32E&\231A(\261H\345\62\301H\64\134\35\256\2\60\345\14"
"\313H\10\313`\332\315\340@\60\346\16.\305\10\313`\240\356G\203\7\2\60\347\20'\325\7\303A\254"
"l\60\220\225\15\6\2\60\350\21\252\315\7\303\203d\313\301\201\262\313\301\201\62\60\351\24\254\311\7\307\340"
" O\67x[\232\215&\205\272\35\0\60\352\17\310\321\7C\314\237\345b\271X\225\10\60\353\37\316\311"
"\7_:\231If\222\231d&\225\251\312\24\325\204j\212JR\241D*\245J\3\60\354\22\311\325\7"
"C\260\337\231%R\221P&\42\232\1\60\355\15kM\10\303\227\376r\360 \31\60\356\16)\321\7\303"
"\203\234]a\256L\4\60\357\20\213\311\7\303\227.\243\311h\262P'\3\60\360\30\316\305\7c\272l"
"\360\250\60\24\14\5C\301Pj\360@\230n\5\60\361\21M\305\10\313\340 [\231\210\206;\33<\10"
"\60\362\21\212Q\10\303\203d\213\301a\62\330N\265\3\60\363\21\214\315\7\203\270.\33\315F[\12u"
"K\0\60\364\34\355\315\7W\70\25\313DR\241\304\340I\62\222\214$#\311l\70[\252\24\2\60\365"
"\27i\315\7S\260hp\224\11eB\231\242L(\222J\204\24\0\60\366\23k\315\7O\264rp\22"
"\252\312\244\242\311B\35\0\60\367\30\316I\10o\42\233\210\17\236D#\321H\64,\16kM\227C\0"
"\60\370\35\357\305\7s\42\230I\4\343\271\301\253P\62\224\14%C\311Pl\360@\31o\6\60\371\26"
"\257\305\10s\42\234\310#\6\257\305\312\210\64\336\341\340\201\2\60\372\26\315M\10k\42\232H\17\16\304"
"%\203\3mV\352r\270\4\60\373\10B\334\12\303 \60\374\12MD\13Cz\360\0\60\375\12\310\320"
"\11\203P\330\1\60\376\16(\321\11[*\222JlB\302\16N\0\12OD\13wb\360\1N\1\15"
"\317E\7\303\357\342\375\257u\0N\3\30\356\305\7S\272;Qf\20\33\304\6\352\356R\271X\335`"
"\220\0N\7\35\356E\7\303\7\262t\365`\30\12\206r\251\134*\227\212u\225\13\345B\61\21\0N"
"\11\20\257E\10\313\340@\317\253\301=o\6\37N\12\17\357\305\7_\274\347\203e\274\357\6\37N\13"
"\25\357E\7\303\357\342\345\352D\70\222\315D\63\321x\357\0N\15\33\357E\7\303\17\343\351\270X\241"
"Ldr\221PH\223J\250b\271xw\0N\26\36\317\305\7O\263LY\246,S\63\370\246Y\246"
",S\226)\313\14d\361\362\301\201\2N!\35\357E\7\303\357\342\205\203\7\221TI\377\377O\6\203"
"H\253Hm$\33\211*\0N&'\357\305\7O\256,\30Jfb\203\7\261L\64\23\313t\222i"
"\222\211\244\22\231H*\221I\4\63\321Lj\360\1N-\31\15J\7[\270l\360@\225R\245T)"
"UJ\225\32<\220\205{\6N\70\42\16F\7W\272\341\340@\30\12\206b\211PN\24\14\345\22\231"
"\134\244,\23i\27I\4#\322\1N;\26\357\305\7[\36\20\17\16\36\4\343-\7\7\312xw\203"
"\17NE\37\17F\7[<>P\206\222\241`(\230\312\245\342iu\42\33\211\206\202\261\224\60\242\25"
"NW%\17F\7kn\60\10\7\7\17B\231\262L\315\340\233f\231\242\301\203\334\66Q\31)\323d"
"$\252\224.\7N] \356E\7W\272pp\220\314$\63\311L\62\23\14\5C\301P.\225\211\304"
"\62\211\340@\15Nq+\17F\7[$\251\211\255\202\251`*\230J\15\6\212`*\230\12\246b\203"
"I,\24\211\205\42\241D(\22J\14&\241\350@Ns+\17F\7_\42\71I\15\62\211X\244\42"
"\227(\311E\62\261\301 \221\215D\63\311Pr\260\32\210\222\241d\250U&#\33\4N\210\33\356E"
"\7\313\340 \234\323D\23\341\330\340\201.\225\13\5\63\311t\307\62\0N\211!\17F\7[|\20\315"
"$\63AMrp\20\315D\63\231\301w\231h&\65\70\210\306\253u\0N\213!\17F\7_<\67"
"\370.:\70\313\224\15N\223\203\3e(\62\370.\24\32\34(\343i\35\0N\214\16\217E\10\313\340"
"@\317\62\370\0N\224\35\317\305\7\307\340A\60\336rp\220\14%C\311P\62\24L\5S\301T"
"f\360\1N\241\23\357\305\7_\274n\360M\274\277\7\344\1\7\22\0N\244#\17F\7_\274n\360"
"Qe*\227J\304\22\231D*\222\211dB\211L\60\221\256\310f\202*\315rN\254\37\17F\7_"
"\274n\360=fp\226\213\345b\271\330\340\64\33I\350\62U\241\22U\235\16N\272\30\17F\7_\274"
"\257\23\341D\66\23\315$S\271\252d&\233H\7N\301\27\17F\7S\274:\62\30\244\322iq\42"
"\336\27\203\3I<\14N\312\34\17F\7_<\235\310f\222\251\134Ud \211h\365\230\301@\236\216"
"\247\33\2N\317%\17F\7Se(\31\12\246\202\251\134,\227\312\251b\211T\42\226\212\244B\375*"
"S\62\320$\6\252H\66N\325&\17F\7Se(\31\12\246\202\251\134,\227\30\34(d\251D,"
"\27\313\305r\261\134,\27\313E\6\67a\0N\326\61\17F\7S*\230\12F\352\62\221\242Ld\220"
"\321\14\42\31\305\244E&R\21\311D\212\62\221\242Ld\225\211\344\62\261LY&\224\312\244\6\3N"
"\330&\17F\7Wa*\230\312\305r\211\301M.\226H\245$\241\212L\223LY\246,\27\313\305r"
"\261\134,\246\1N\343(\17F\7SE.\24\211\205\62\241T\60\225S\15&\212\201,\221*\211\345"
"b\271X\256,\27\311\4\23\231\244&\32N\344 \17F\7_<\235\310f\222\251\230N\42\31\14\42"
"z\212\301\313P\62\224\14%#\322x\16N\345'\357E\7K\60\25L\5S\221TM(\25\312\244"
"B\231T\60\25L\345T\231\212PBS#\252P\305R\272\0N\356\62\17F\7S<\61\70Jd"
"#\331H\64\63\30\204\62\242\214&\221\211$\62\211H*\23I\244\42\31Y$\24K\204\22\251D\246"
"H\242\312$\204\1N\362(\16F\7Sa(\30\312\245r\211\301\211\42S\242\310T\264\311H\22\231"
"\26\203\233T.\225K\345R\271T.\25\2N\366,\17F\7Se\42\222LD\202\221\302\310`\240"
"\211dr\221LL\21J%b\271\310\340 \22\313\305r\261\134,\27\313\305R\0N\373&\17F\7"
"S.\226\322e\204\211E\60\225S\345T\261\304\340A$\25L\5S\301T\60\25L\14\216\342Y\0"
"O\21,\17F\7O(\31J\206\222\241`bp\220\11\355B\63M\242(\221I\224EZEjB"
"\211L(#JER\301T\60\25\3O\32$\17F\7_<\235\310f\222\251\230N\42\31\14\42z"
"\212\301\203\134<\22\15\5\63\212\320`\20\212G\0O\35(\17F\7S\274b\60H\305\323\361\304\340"
"@\241\212%R\301T\42\26\312\244BmR\241Ld\240I\14D\231h\2O<\62\17F\7S."
"\226H\305\22\251\22Q*\222\310\204\62\221\242L\244F\223\212$\62\251P&\25\312\244B\231DD\224"
"\321$\62\21M$\63*I\25OM'\17F\7Se(\31\12\246\202\211\301\215\60$\314$\42\251"
"HMY\246,S\226\211\344\62\221\134*\70x\223\5ON/\17F\7S.\226\322%\6\272H&"
"\27\311\304\62e\231\301\205\246(\221)\313\204R\231P*\63I%d\241d\42\222\30\14\42\222l\0"
"OO'\17F\7S&\32J\206\202\211\301Q*\27\313\305b\262T\42\62\270\211\345b\271X.\226"
"\213\345\22\203\3I\30OS,\17F\7O*\230\12\246\202\251\134bp I\315R+Q\242&\21"
"JTe\42E\221L\213\310`\21\211\345b\271X.\226\2OU-\17F\7S<>\70\320\4S"
"\301Pd \11E\62\221\214$\23\251\210d\42\241H&\22\212\14$\241d(\31J\206\222\241\240\4"
"OY#\17F\7_<\235\310f\222\251\230N\42\31\14\24\272xp\360 \230\215\24F\62\261L\250"
"C\35\0O\134*\17F\7S$\33\311F\242\231\301@\23\251\223\324)\62\261\204h\240\210\244\202\251"
"`*\230\32\210R\301T\60\25L\245\0O*\17F\7Se(\71\70\320\244\202\251\134dp\23"
"\311\224H\62\25%\231&\203\233P\42\227\12\246t\241H,\42\22\15\5O\213\63\16F\7O\62\63"
"\30H\62\221L\244\246\244\246\244f\21IH*\42\11IED\21Q\224TD\24\221\210&\322(\25"
"\311\304\42\231X\244.\222\310\11O\233*\17F\7S$\223\213dr\221L,S\226\30\334h\252\64"
"E\211L\223L\331\340M<S\226\11\245\42\251\212\134H\230\0O\241\64\17F\7S<>\70\320\204"
"\22\271P\42\226J\304\42\203\23IE$QR\21\311D*\42\231HE$\23\251\210d\42\25\221L"
"\244\42\222\211\14n\302\0O\277/\17F\7S|p *\214\14\6\242HMFR\223\221\14\6\222"
"D\244&\21i\23\212\14\6\242L\42\30J\206\204\231H.!R\11\5O\302\60\16F\7SN\24"
"\232\15\204\241H*S\24\321\244B\211\224*R\21\252I\14\16\42\261L$\23I\204\62\221\232H\246"
"$\21\312Db!\0O\335-\17F\7S<\61\30\304\22\251\222TI*\224\31\14B\261\230,\225"
"H\14\16$\251Y(Q\225\211\24E\62-B%\261\134,\5O\341)\17F\7O<\62\230\305\7"
"O\342\221\301@\243\26'\42\203\201(\36\31\14D\221X(\22\13Eb\241\310` \12\3O\356\62"
"\17F\7S&\232\211f\6\203L\263\210&\225\220$b\211\220J\21\61I$\66\21I\42#\11%"
"\22\22U\42\243\251H\210*R\252\224.\262\3O\363\61\17F\7S\244\60R\30\251\33H\6\241L"
"$\26\212\304B\221\224b\20\31$\212\42\261P$\26\231\304&\221\201$S\226)\213\204b\211T\10"
"O\365-\17F\7Se(\71\70\10\245\202\211\301M,\27\213)\6/B\211\134&R\24\321$B"
"\211\32U&\224\312\244B\231Q&!\14P\11'\357\305\7_<\235\310f\222\203AL'\221\14\6"
"\21Q*\70\30\4S\301\301 \27\37\134%b\241\310`\240\1P\13\60\16F\7Szp\20\322\264"
"\310\264\310\224D\6'\65\25\222LF\21I\14\24\221\212L\42R\221ID*\6\212H]\244.\22"
"\31\234d\1P\15)\17F\7Se(\71\70\10ER\65\241\66\251P&\244\30\274\210\327\14\6\241"
"L*\224I\205\62\251Pf\60\10\205\1P\31\63\17F\7O<\62\230\345R\211X*\61\70\220$"
"\42AE$\250H\14\6\212Nr\11M.\61\70\220$B\262D&\21KD\62\251L*\24\311\11"
"P\37\62\17F\7S$\223\213dr\221L,\61\70\312T\205\62\251\304\340@!Nd\6\203P&"
"\25\312\244B\231\301 \224I\205\62\251Pf\60\10\205\1P$\63\17F\7S*\230\12\16\16\64\261"
"\134\42\61\30E\22\241\222D(#I\14&\211H\42T\222\30\214\42\211PI\42T\222\30\214\42\331"
"\310\340 \22\6P\134%\16J\7O(\30\12\16\16$\351\310`\220\251\312d\6\203\210:\61\70P"
"T&*\6\203DY\245\2Pe<\17F\7O.\66P\14D\231\212P$\224\310T\14\6\221"
"\252DD\61\310$\42\242\304@Q\222\310\244\42\211\304@\23IdR\231\304`\20\311\204R\221D&"
"\225\310\350d\3\1Pt;\16F\7O\62\63XD\62\232D\244\42\223\210T\14\24\221\204\42\223\210"
"$\24\231DDQ\223\210T\14\24\221\212L\42R\221ID*\6\212H\213T\244Q$\221\11E\204"
"\2P\231\70\17F\7S$\223\213dr\203\203P\246,S\25\31\34DJ%\211\301 Q\222\210\324"
"D\22\203A&\222\210\324D\22\221\232Dd\60\310$\42m\64\221\232PH\1P\267\62\17F\7S"
"$\33\31\14R\211ld\60K\324\244\22\221\201*\224\11\211\6\232D<\61\70\220\204\222\231\301@\223"
"\220Td\62\222\232\204\246\221D\2P\315<\16F\7OF\222\32\204R\221Pj\60H\204\62\231A"
"$\61XT(J\22\25\212\301\42\241h\222(I\14\26%\231P\42\222\30H\22\221LDR\263\210"
"D\6\231\222TD\1P\317\62\17F\7S&\232\31\344\42\231XB\223S\14\6\232\222L\223LD"
"\63\30(\212\64\241\304\244(\244P%&\253\212\242\214\244&!\312DR*\0Q\4\64\17F\7S"
"e(\71\70\10ER\65U\211\301\201$\255\31\14\42\211L*\224\31\14B\231T(\63\30\204\42\211"
"\232\222D$\23IDB\211Hj \1Q*\64\17F\7S|p *\214\14\6\251H*\224\31"
"\14B\231TF\61xQ\222\210$\42\25\221\232Hd\240\210$\42\231H\211\242,&\13ID\211\231"
"\0QC\36\357E\7\317\340\236\233\301W\231h&\232\211f\222\241d(\230\12Er\231Dr\20Q"
"D#\355I\7\313\340(\27\312\205r\241\134(\27\32\234E\222\221d$\230\11fB\221PE,#"
"\34\4QF*\17F\7W$\33\311F\62M\62\241H\263D$\221\214d#Q\311L\21\211\330D"
"B\251L\64\223\14\245\42\261\320p QH$\17F\7_\66\222\215d\7W\231h&\31\312\15>"
"\213d#\331H\64\23\315$C\65\261LB\70\10QI$\17F\7_<\232\251\213dr\221\302H"
"\42\234\33|\26\311F\262\221h&\232I\206jb\231\204p\20QP.\17F\7K<\63\30\204\62"
"\251P&\25\312\244B\231\301 \224I\205\62\251P&\25\312\14\6\241Hm$\33\211fR\21Qj"
"\67\30QZ(\16F\7_\62S\26\311\304\42\65\203\217%\203\201D\22\213db\261\301@\30\211F"
"\242\221PM(\242\312\14\7\1Qe\30\17F\7\327\274\257\23\341D\66\23\315$S\271\252d&\233"
"H\7Qh\34\357\305\7_<\235\310f\222\251\230N\242\30\134\350\342\225\203\203h\274n\360\1Qk"
"\36\357E\7\327@^\31J\206\222\241d(\231\12\246\202\251\134Y.\225\314d\23\351\0Ql&\17"
"F\7\333 \31J\206\222\251\134,W\225IeB\261D*\27Kd\63\321P\60\226K\14F\3Y"
"<\2Qm\30\357\305\7_\274\335\340{F\225\251`\254.\26\14%\63\321\10\0Qq!\17F\7"
"Se(\31J\206b\203g\241d(\31J\206R\203\357A\225\251\134U\62\23\215\0Qu \17F"
"\7kv\71\216\17\16R\205\251`*\230\12\246B\203\357Q\231dJ\26\314H\23\0Qw%\357E"
"\7\317`\240\213\345b\271\301@\27\313\305r\203\201.\226\213\345\6\3=h\360QF'\323H#\0"
"Qx\60\17F\7W&\232\211fr\203\3Q$\23\11E\62\221P$\23\11\15\16D\221L$\24"
"\311DB\221L$\62\370\36\244\221\351$\332\4\0Q\205\35\15J\7[\270l\360@\225R\245D\211"
"\220(\21\322\324HR\21E.\241\365TQ\206\26\354I\7\303\7\241\224(%J\211R\242\324\340\201"
"\324_\12Q\212\71\357E\7\313\340@\24\311DB\221L$\24\311DB\221L$\24\311D\42\203O"
"j\42\241H&\22\212d\42\241H&\22\212d\42\241H&\22\212d\42\241H&!\1Q\215\42\357"
"E\7\307\340A\60\36\35\234e\312\62e\203\263LY\246,S\63\370&\27\313\305r\261\230\6Q\231"
"\32\356E\7\303\217\65A\315`\20\11\245\323\203u\321\340\201\62]\34\235\1Q\254!\17F\7[<"
">\30\246r\242\230D\221\256\210jr\12\215d\25R&\365\0=@\17\10\1Q\267(\17F\7c"
".\246\13%r\241H,\23J\16\6\271\252d$\62\30\210R\231P*S\226)Khr\261\134<"
"\6Q\346.\17F\7O<\65H\225\244\6\221\252H\243L\244(\23\251I\324D\62\211\232HM\263"
"LE&Q\224\310Db\222P\60\246J\16\4Q\372 \355\311\7[\70\27*\11\225\204JB%\203"
"\3]\70\226J\251R\252\224*\245J\15\36\10R\0\36\255\311\7\303\7\261T,\25K\305R\261T"
"Y*\226\212\205r\231`$\30\311I\0R\6%\17F\7\327@\236\14%S\271X\256*\231I\14"
"\6\222D*S\226\211f\222\241d(\230\312\305\252T\0R\7-\16F\7K:\63\30Hb\231H"
",\23\211H\62\221Qf\20\313Db\231H,\23\211e\42\215\42\215\62\213T\254*\26RI\0R"
"\12&\16F\7wb\60HdB\65\241\232PM\250fp\240\11\325\204jB\65\241\232P\60\24\14"
"\5C\301PNR\27)\16F\7\367\340@S\225\251\312Te\62\203H&\222\211d\42\231H&Q"
"RcS\225)\12\206\202\231d$\232\210\12R\35*\16F\7O\272d\360@S\225)\252\11%\42"
"\231\222\232\314\246D\221\251(\251\221T\204\62\241\232\252L$\226I\244\24\0R$-\16F\7S\60"
"\24i\21\351E\244\213\232H(\25\31\34$\42\241T$\224\212\204R\221\301A\42\22JEB\301P"
"\60\24\14\345\4R%\61\16F\7wb\60Hd\22\251D&\221Jd\22\251D&\61\30$\62U"
"\231\252Lf\240\310\264\310\264\310\264\212\204R\221P*\21\212id\2R).\16F\7_*%\311"
"$\6\241L\250&T\23\252\31\134d\62\242LfS\222(\311D\22\221D&\21\251\310h\202\241`"
"(\30\312\11R\66/\16F\7W.R\24i\24\211\14\6\211H\42\23\212$\62\241\310\340I*\24"
"\211\14\6\211H\27\221.\42]D:\212DV\221\272TLR\67\61\17B\7{d\60\210\264\212\264"
"\212\224\14\6\221\256\42\255\42\221\301 R\242\210\64QDZ\64i\321\244D\222\210\244\62\211\204*\223"
"\10\246r\2R\70&\17F\7O\273H&\27)\33<L'b\203\257\62\311Tlp \21e\42"
"\262L\62\224\14\5S\61\221\12R;+\16F\7S\60T\63\70\320\204jB\65\211IME\246H"
"S\24IdZd\42\231H&\221\221\205\42\251L\250$\25\232\12RG\66\16F\7wb\60\311$"
"B\221L\42\24\311$\6\223L\42\24\311$B\221L\42\24\311$\6\223L\42\24\311$B\221Lb"
"\60\311DjJ\62\261D(\246\25RM*\17F\7O,\230\12\206R\203\357\21\3I\246I\246I"
"&\63\220d\232d\232d\62\3I\246I\246Y\246,\23QI\0Ro/\16F\7\367\340 \21\211"
"F\42\3M\244\246\244\246$\62\320D\242\221\304`\20\251\210t\21\351b\60\210TD\252\22\221\252\304"
"`\220\12\13Rr\60\16F\7Spp\220\210\350\22\21ME$\61\30D\212R\221\304`\20)J"
"E\6\7\211H\64\22\31L\32E\32\245\42\241Td\260\12\13Ru/\16F\7W.\25\212\204\22"
"\231H\246\244d\240(I\344$\212\301\244Q\244d\60i\24)\31L\332E\22\211\201*Q\223\222\14"
"Ta\1R\207\70\16F\7S\60\64\210\24\245\42\211\301@\21ID\22M\22\3Q$\21\351\42\63"
"\251\30\14\24\221DD\24I,\42\211H\42\222(J\134%\42\211\42\205\244&$\23R\233\37\15F"
"\7[\270\331\340A,\25K\305Re\251X*\26\312\205r\231`$\30\311I\0R\237&\16F\7"
"g\272h\260\311E\6\3M*S\225\251\312Te\252\62\231I(\42\12\315B\271T,\25\13I\0"
"R\240)\16F\7O\272j\240Ie\6\27\231\26\231\26\231\26\231\26\231\26\231\26\231\26\231H(\221"
"\211\204\22\3E*\26\322\1R\251.\16F\7gj\240Ie\252\62U\231\301\305@S\221i\221i"
"\61\320TdZd\42\241DF\21JD$\241\304&\65J\305B\22\0R\252+\16F\7S:\71"
"x\20\212$\62\241H\42\323$\221\31\210r\211\204\42\244\11\15R\301\301A\62\23\14\345R)YF"
"\246\1R\264$\16F\7K&\25\312\204j\252\62\221\314\340cU\254pp \14\5C\271T.\25"
"+\322Et\32\0R\271\60\16F\7S*\227\312\245\62\203\201$\25\211\14&\231\222\232\222D\211\244"
"\242QD#\212\244\62E\211H\246$\21\212\244B\211TJ\25R\0R\307$\355E\7\313\340L\22"
"\325\15\16\62E\231\301A\246(S\224\31\34\344b\203\7\261TYF\67\210-\0R\311,\17F\7"
"O,\27\213\15B\261H(\25I\205\6\17$\375\377d\60\210\24%\62E\211L\223\232P$\21\221"
"$B\71\331` R\325\61\16F\7\233$\65\10\345R\231\301E.\63\230\14&-\42M\6\223\26"
"\221.\42M\6\223\242T$\61\230dB\11E&\63\11\15B\31\5\0R\331\65\17F\7cn\260"
"\310F\6\203H\42\22JE\22\231TEf\60\310\344\22\21\205*\261\310HF\71\311`\220I\244\42"
"\231D*\322(\223\312\204B\222\214\6R\335:\17F\7gl\220\210\324D*\212\42\241X$\61\30"
"H\6\241X$\244\212\14\16\24\221L$\64\210$\42\231Hb\60\220D\64\221DI(\222\211d\232"
"\24E\42\212\214\6R\342\61\17F\7S*\65\330\4S\241\301\203P\242&\21J$\26\65\203I\233"
"HB\21[D\24\3\211(\21\213)\6\7\312P\60\25\223\205d\42\0R\344\61\16F\7K\246*"
"S\63\270Hej\7\213\301 R\21\351\42\322\305`\20)JE\22\203A\244\250&\61\30$\62\241"
"\232\320\42\64\320d\24\0S\5#\16F\7S:=\70\12\206\202\231\301@R\27I\4#\321Hh"
"\60H\244R\262te(\230\32\34S\26,\17F\7W$\33\311FB\251L(\225\251\12eR\241"
"HJ\224H%B\252H(\31J\206\222\241T&\224\312\244B\231\330@S\27(\16F\7S&\231"
"If\222\231\252L\305@\23\211e\22\271\214\60\223\314\4\65\271D&\64\311\204\332\204R\203P\22S"
":$\316\311\7\303\7\211d&\231If\202\241\304\250H\221\212U%R\241L(\223\312Db\231D"
"v\360@S;&\315\311\7\303\7\242\134(\227\31\14\24\221L*\21J\15\36\250\22\241T$\23*"
"\311\304\22\221\134\242t\360 SA\17\17F\7_\274w\203\357\342\375\35\0SC\23\17F\7oX"
"\66\30\244\343\355\6\337\305\373\35\0SH\30\17F\7S<>\270\312D\63\311P\60\25\317\15\276\213"
"\367\35\0SJ\31\17F\7_<\324U\246.R\30\11\16\36\4\343u\203\357\342\335\1SR\33\17"
"F\7_<\70x\220*L\5E\262H\243\220(\222\312\15\276\213\367\16ST,\17F\7K*\230"
"\12F\6\3Q*\23Je\42\3I\250&\243\212\244JR\251\301\203H\377\221\211\264\310$\62\21"
"\213\210\2SW#\17F\7_<\67\370.\236\34\34\210\42\231H(\223\310\204\22\203A\42\324G\203"
"\3Q\377\33\11\0SX'\17F\7O$\224\213dr\221\272\301A*\23JeB\251\301A*\23"
"JeB\251\301A\62\236\33|\27\257\3SZ\63\17F\7K,\221\212EB\211\301\201$\226\313\14"
"\6\232\222Lb\240\30\14\64%\231\232\301@\23L%\6\7\222L(\25\312\244B\231T\60\225\323\0"
"Sp\42\15J\7WT\70\32\14b!YH\26\32\14\22!YH\26\222\205d\241\301 \221\30\206"
"[\1Sq)\16F\7Sz\60\210\245b\251\330\340\201\42]\62\30\204\42\251P$\25\212\244B\221"
"\214(\223Kdr\252Xn\60\10Su\62\16F\7W\70\253\32H\62\221L$\23\311D\62\221L"
"D\22\221T\224$J\22%\211\222L$\23\311D\62\221\201$\263\251\220e\202\241\134*\4S\232'"
"\357E\7\313\340M<\62\30\244\42\251\222\301 \25I\225\14\6\251xb\60P\305r\251\134b\360\42"
"V\227\226\1S\237+\357E\7\313\340A$\25\14%#\203A*\222*\31\14R\221TI\252d\60"
"H\25F\32e\42\231\222L(\21\11\25\312\0S\263<\17F\7OQ,\23I\15\36Dr\261\304"
"@\21\313\224\15\6\211\201$\21IDB\211A\42\22JD\24E\211A$\21JD\62\241HD\22"
"\212\14\42\211Hb\222\310\4U\1S\273\35\17F\7_\274rp\240\214\267\33|\26\217DC\311T"
".\62\20\15V\361\10\0S\302&\17F\7[<!\15\251\6\3I\60\70\370*\223\314$b\22\215"
"D\261\311\10\303\232\324 \24\326*\7I\0S\313\42\17F\7[\274p\360Y<=X\206\222\232`"
"\42\222\214$\202\241`(\21\13eB\31\225H)S\315$\357E\7\313\340M\274|p\220\212\244J"
"R\65e\231\262P\42\227\12\206\22\261P&\25QI\22J\1S\316-\20B\7W\36\20\216\14\216"
"\42E%E%E%E%\231H*\222\211\244\42!YD#\33\204\22\31MI\60\22\312%b\225"
"\1S\326,\357E\7\303\201\62\223\30lJ\62M\62\231\201$\323$\323Eh\240I\204\62\31U&"
"\224\312T\204\6\222\22Q\42\224S\345\12S\327#\16F\7ot\63\30hB\221TI&\26)\32"
"|\254\30\234\204R\301L\64\21\316*t*\311RS\343\16\254\311\7\303\7Q\377\351\340\201\64S\344"
"\32\357\305\7_\274n\360]\274\351\340,\27\313\305r\261\134,\27\33\334\0S\345!\16F\7S\272"
"xp\240IF\242\211\310`\243\11eB\65\241\232PMh\260I\27g%\0S\357\35\317E\7\303"
"o\343\261\301$\26\212\304B\221X(\22\13Eb\203I\274k\15\0S\360#\356\305\7[:\234I"
"\206r\261Tf\260\30\14R\361tdp\20\12\206\202\241`(\30\32\34D\0S\362\37\16J\7["
"\272pp\240\11\325\204jB\65\241\232\301\201\60\32\311\252\265\21\235J\243\34S\363\36\356\305\7[\272"
"n\360@\225.N\17\6*Y(\21\313Db\221L\254\331` \1S\367\36\357E\7\317`\240\213"
"\345b\271Xn\60\320\203\6\37\305\343\203A.\26\257\16\313\0S\370 \355E\7\303\7\341\212\301I"
"\270d\60\310DR\231H*\23Ie\42\203A&\134\33\225\0T\4%\357\305\7W<=\30\350R"
"\271D&\227I\344RZI\62\25\323I\24\203\13M.\226\213\345b\203\33\0T\10 \357\305\7_"
"<\235\310f\222\251\230N\42\31\14\42z\232\301Y.\226\213\345b\271\330\340\6T\14\36\355I\7\303"
"\7Z\213\301\205\326d\60\210HR\21I*\42IE$\203AD\353TT\15\42\356\305\7[:="
"\330\245b\251X\42\23\313$b\251pvp\20Q\344\66\271T.\225K\15\16T\16!\357\305\7s"
"v\66X\306\343\203\67\361\26\203\201*\21\13Eb\241H,S\26\11\15\6\22\0T\21\36\15J\7"
"W\70[\71x\240\65\31\14\42\222TD\222\212HR\21\311`\20\321:\25T\33$\317\305\7\313\340"
" \31J\206\62\203\317B\311Pjp\20\214\247\7W\272P\42\227\211\344\42\231\301\11\0T& \317"
"\305\7\303\17\323[\211N\21\12iR\11U,\27\35\234\345b\271X.\226\213\15n\0T\70\64\357"
"E\7\333`\63\220d\232\24e\42E\231Hb\20\311D\64\221LD\23\311D\22\221\232D$\221\31"
"(\42\211d&\231I\4#\231X$\25\212\344\2TJ\37\357\305\7_\64\23\315D\7\7\241\312P"
"\60\225\33|O\63\70\313\305r\261\134lp\3Th*\356E\7\313\340I*\24I\205\42\211\301@"
"\21I\205\42\251Pd\360$\32\211\14&\215\42\215\42\215\42\211\314`\222\310\32Ts)\17F\7g"
"<\65H\225$\6\27\221TI\252$U\62x\20\11\215\42\241Q$\223\250\31D\332e\252B\225\361"
"\24\0T|*\17F\7\263t\63P\14R\231P&\221ID\62\211L$\21\251\211$j\212R\231"
"\301\233P*\23J\15D\361\326*\0T}(\17F\7_<\235\310f\222\251\230b\240\220h\365\220"
"Ad \212\324\204\42\65\241HM(R\23\32D\22\332x\14T\214*\16F\7[V\71\310\14F"
"\231PM\250&\64\70\10e\64\241\314$\24I\64\212$\42\242D$\23\322d\6\243t%\0T\301"
"&\315\311\7\317`\20K\305R\261T,\25\33\14\362\360\301b\60\10%B\242DH\224\10\211\22\241"
"\301 \61\30T\341$\355I\7\313\340(\27\312\205\6\367\210\301\201$\31\31\34H\222\221\301\201$\31"
"\31\34\250\62*\231B\32U\61*\316\305\7\337`\30J\14$\241D&\62Xd\42\241D&\22J"
"d\42\203E&\231I\14\36$b\261\301@\326\331` UF+\17F\7_<\67\370(\225\314\304"
"\6\17\42\231&\231\22I\325 \222H\14\64\21I\246$\323$\63\320D\262\221l$\252\0UO+"
"\356E\7\303\311`\20\212\204\6\203\310`\20\212\204D\221\320`\20\31\14\302\66\203\215&\224\321\204\62"
"\232PF\63\330\210\265\2U\204#\357\305\7S,\30J\15\36\4\223\203\3ep\360 \224\251\213\24"
"\15\276\307\14\316r\261\134lp\3U\234%\360\301\7_r\360@\30\35\274\207\15\16b\301\330\340 "
"\27K\206R\203\17\362\240\301A,\30\33\34d\0U\266&\16F\7KUI(\25\311d\6\37K"
"\6\3I&\326l\60P\206\243\203\203P\60\24\14\5C\203\203\10\0Vh.\317\305\7\313@\61\20"
"e\22\231P&\221\11\15\24\3e<\67\370,\21\325\310t\222\301 \61\30D\62\211L(\223\310\204"
"\6\212\201\4V\333\33\216E\10\303o\212\64E\232\42M\221\246f\22\312LR\203Et+\36|V"
"\336\33\315\311\7\303\7Z\67\3\215\246FS\243\251\321\324h\6\32\255\355\340\201\0V\340!\315\311\7"
"\303\7ZUJ\225R\245\6\37%B\242DHS\243\251\221\244\42\212\134B;x V\343 \315\311"
"\7\303\7\272\214.\243\313(\6\357\62\222PFS\243\251\321et\31\231F;x V\360#\315\311"
"\7\303\7\252\224*\245J\15>\32\211F\232D\215&Q#i\242\310T\214B\253\324\340\201\0V\362"
"\42\315\311\7\303\7ZM\215\246F\61\270\320\324hj\64\65\203oj\64\65\222PF\221\312\14\36\10"
"V\363#\315\311\7\303\7ZQ\205\42S!i\42IEt\31\305$d%J\204$\232\314 \26\321"
"\16\36\10V\372%\315\311\7\303\7\252\224*\245J\15\276J\251R\222\301 \42IE$\251\210$\25"
"\221\14\6\21\355\340\201\0V\375$\315\311\7\303\7Z\305\340B\225R\245T)\311`\20Q\245T\211"
"\214*\22QE\42\212\301\205v\360@W\22*\355I\7\303\7\252\224d\60\210\250R\203o%\203A"
"D\222\212H\6\203\210F\21IH\22\21\311 \222\31\210b\203o\3W\37\20\357\305\7_\274\227\203"
"\3e\274\357\6\37W' \257E\10\313\340M<\25L\5S\301T\60\61\70\310\244\202\251`*\27"
"\313\305*\6\17\2W(\42\17F\7[\274p\360U&\232\11\212\202\242`bp\243\212%R%\251"
"`*\230\12\16\336d\1W\60\60\17F\7O,\227\211\344\62\221\134&R\61XD\6\241\314 \22"
"JL\212\62\221\242L\244(\23)J\224\254$e\241\234*\26L%\7\3WB\60\17F\7O<"
"\62\270\211d#\301\301 \33\31\14R\221D&\25IdR\221D&\25\251\210m\22)E(\244\11"
"\351B\221TF\24\323\5WG'\16F\7cQ\60\24\314\14\36$R\231H,\223H\210\62\251L"
"e&\227\310\214\42\21\221f\244J\207\243\23\0W\202\37\357\305\7\253t\67\230\7\7\17B\231\262L"
"\315\340\233f\231\262L\321\340A\60\236\33|W\213\60\356\305\7sb\60PD\62\221L$\23\311D"
"\62\221L$\61\70\210d\42\231H&\222\211d\42\261H&\221Q\304\202\203\203d:\66x W\316"
"\67\17F\7K.\21\312E\62\271H&\62\370 \24\213\204\42\231\310 \21\311D*\42\231H\211("
"!\211\210\24\221\32M$\241\313$\32%\24\221D&\24\222d\3W\337\65\17F\7K.\226K\204"
"r\221Ldp\20\311\205\6\27\221L\244\42\222\211TD\62\221\212\242\310 \42\212\224\210\22\232DJ"
"#Ql\64\211\32QF\230\12W\372(\357\305\7S*\230J\15\36\244\12\7\203`*\70\30\4S"
"\241\301G\221\272LUb\60HDT)]p\360 \1X\2!\356\305\7K\246,\222\211E\212\6"
"\37K\6\3I&\326l\60P\246\223\203\203`:\67x X\61/\17F\7O<\64\230\14\26\241"
">\221\14\6\211\134&\62\330D\42\232\212\214&\61\270\250\12%\252B\221\320`\21\211\205\22U!M"
"\250*X\64-\357E\7Kh\60\352h\60j\62X\14F\361\304\340@\22J\206\6\203L\242I\42"
"\243\210TdB\221\12Q&\22\313TF$\0Xi\61\357\305\7[\64\23\315\14\6\232H\66\62\30"
"d\6\212P*Q\224\312\14V\361\310` J(\42\211\220\242$\21\321$\42\211\134\42\222H\15\36"
"X\203.\17F\7g.\226K\14\16\62E\251P$\64\370$\236\31\14B\231T(\63\30\204\22U"
"!\311`\20\221%\262\221LJS#\33\4X\223#\357\305\7W&\65\370*\23\34\234\345b\203\263"
"\134lp\31\34|\225(\34\334\214B\273\340\340A\2X\227+\356\305\7[*\23\312\204\42\203\223\232"
"\222\232\314\340\223\232\222\310\340$\235\31\14\62\211\252\214d\60H\210R\271Tn\60H\0X\353\21\357"
"\305\7_\274w\203\357\342}\70x\220\0X\360\34\17F\7_<\67\370.\36\34<\310c\6\7\242"
">\32\34\210\342\351x:\16X\362#\17F\7_<\67\370.\236\34\34\350!\203\17\322\242L(\225"
"\211f\222\241`*\24\211\205\206\3\1Y\11+\17F\7_<\67\370*\223\213d\22\251H&\22\212"
"d\42\231HF\223\210$r\261\301\60\24LDr\32\365r#\32\16\2Y\17#\356E\7\307\340A"
".\71\270\312\245\6W\271\324\340*\227\32\334\205\7\3U\42\223\322,%\233AnY\25\34\14J\7"
"W\66;\30\244\212b\241X&\226I\244\42\31I\62\21m)\64\5Y\26,\17F\7Se(\71"
"H\4\63\211`&\221\13%r\222\210*\222\210$$!I&\226\11\245\62\311P\62\24L\345bu"
")\0Y\32\42\15J\7Wx\240\13\305B\261D$\245\321F\202\231\201D\23\32U)\42!\333\250"
"R\67H\2Y\34*\17F\7_<\67\370*\222\215D\63\3Y\246*\243\11i\22E\211\210M$"
"\21I\344R\301T\60\224\310E\64\252\235\0Y\42$\16F\7Sa(\64x *\33\34\204\42\215"
"\6\7y\304\340\253\230h\60\311lR\232DV\252\234\2Y'\32\17F\7_\274\273\301w\361t\42"
"\234\310f\242\231d*W\225\214h\5Y)\31\357E\7\303\357\342\15\7/\343\351D\70\221\315$S"
"\271\252dD+Y* \17F\7_\274\273\301g\211p\42\34\211f\242\241`\42\23\214db\241L"
"(\25J\210\3Y+\33\17F\7_\274\345\340@\31\257\33|\227N\204\23\331L\62\25\323I\264\2"
"Y.\33\17F\7_\274rp \352\377d\360]:\21Nd\63\311TL'\321\12Y\61\42\17F"
"\7_\64\23\315D\63\321\301A\250\62\24L\345\6\337\245\23\341D\66\223L\305t\22\255\0YO'"
"\17F\7_<\70x\20L\16\16\204\211\330\340\253L\62\25S\14\24\22UJ\62\70\20&\262\231\240"
"J\244T\0Yn)\17F\7_n\360U&\250\250\320,\6\203\304F\23L\14\6\301Ltp\26"
"\36\34\210\32\15\16D\215\6\7\242d\4Ys%\20B\7_\36\220\7\344\1\301\301\7\261P\64\24"
"\15%C\321Pp\240H\206\324\221l((K)#\0Y}*\17F\7O<\64\30%C\301\310"
"`\20JER%\241Xdp\20)JeB\251A\252D\224\213db\271\220\60-\2Y\271/\17"
"F\7O,\27\313\305r\231\301 \61\30db\221P,\22\212E\6\7\211Lf\24\11m\6\232D"
"Y&Q\225(\251i\63\214\207\0Y\273&\17F\7_<\70x\240\213\16\16\222\241\310\340\273Pj"
"p\220\314\15>\313$C\271\301 +Q\15b\21\0Y\311/\17F\7O,\27\313\305r\221\301\7"
"\231X$\24\213$\6\203L$\21i\223\210\224\14\42-\62\221V\212HQ\242d\224\13\11\343!\0"
"Y\313/\357\305\7O,\27\313\305r\251Hd\60\210dJ\212\62\221\222A$\62\330$\62\301\304 "
"\232\311\14V\222PE$\224I\205\22\262\301\2Y\324%\17F\7\253j\60\20\347\6\237m\23\205\222"
"\210f\24\232\5\7_\205\222\241\340 \21\14\205\25\252\201J\2Y\377(\17F\7[\62\24\315\14\6"
"\232HM.R\246\221i$\232\310L\27\34|\25\12\246b\203Ex\252\21\15r\21\0Zf\61\17"
"F\7O<\63X\5S\231\301d\60\13E\22\203Q$\33\31\34$\62\232\212H\42\223\31L\6\203"
"\224\42R\224(\251\11E&\252H<\4[P\23\357E\7\313\340 \236\356<\67\370.\336k\35\0"
"[W\32\17F\7_<\67x\240\10'\302\241\301@\35V\347\6\337\305\273\326\1[X$\17F\7"
"[\274p\360U:\234H\14\6!]*\227\222\245\22\211\301\201$\226\213\345b\271X.\245\2[]"
"\37\17F\7_<\24\32\34(\63\321Hh\360\235V;\30\210f\351\334\340A\60^\255\3[c\37"
"\17F\7oX\66\30\244s\203\317\266\211BID\63\12\35\14\302\351\334\340\273xZ\7[f\35\16"
"F\7K&\224\312Te\42\231\301\307\342\310\340\70\253\315\15\36\310\322\215u\0[k/\17F\7s"
"d\60\22\16\224\241`(\223\212Lb)\235(\221\22e\42\212\304`\220\10\245B\231\212\262L\42\222"
"\212\324\204\22\231\32U\12[\205\34\16F\7[:\67\370X\31\321i\42\203m:u\260\31\254\233\345"
"R\301\301\2[\207\30\16F\7[:\67\370X\234\31\14\224\351\272\301\3Y\272c\35\0[\210\33\16"
"F\7[:\67\370X\230I\246C\203\7\312\134*\30\12\206\322\215E\0[\211!\16F\7[:\67"
"\370('\312\245\322\301\301\3Q&\231\11\206\202\223\254\66\242S\205\204\21\0[\214 \16F\7[:"
"\67\370X\34\31\34\344\11>PE\242\221h$\231\11eB%\261\314p\20[\227\37\16F\7[:"
"\67\370\330d\60\220\344\321\203\7\262d\246*\23\312\204R\211T]X\7[\230\37\356\305\7[:\67"
"\370X\62\30H\62\261f\203\201,\235\36\134\345R\271T.\65\70\1[\231$\356\305\7[:\67\370"
"*\246\212U\16\16B\231PM\250&\24\32\34\204\62\241\232PM(\64\70\210\0[\232!\16F\7"
"[:\67\370X\34\31\34\4\323\321H\64\62XE\242\221d\242\62\42\14\311r\203\1[\235\35\356\305"
"\7[:\67\370\330bp\220\210\245+\7\7\301t&\31\12\206\42\203\7\2[\237\36\16F\7[:"
"\67\370X\25K\14\16\204\351\344\340\62\235\33<PE\222\241\230\211T[\242$\356\305\7[:\67\370"
"('\32hBu\211HL\243\215$C\261\301AD\21Khb\315\6\3\15\0[\243\36\356\305\7"
"[:\67\370X\61\70H\344!\203\201\254\263\301@\326\331`\240\207\14\36\10[\244!\357\305\7[<"
"\70x\240\10'\302\221\301\273H\64\244\32\14$\311T\60:\70H\306\203\203\17[\256!\356\305\7["
":\67\370X\62\30H\62\261f\203\201\62\34\35\34\204\202\241`(\30\32\34D\0[\263\42\356\305\7"
"[:\67\370*\246\212%\6\357\222\203\203`n\360@\217\30\34\204\202\241`hp\20\1[\266'\16"
"F\7[:\67\370X\34\31\34\306B\212\232\210f\222K$d\222DJ#\11&\62)I(\61J"
"\245t\0[\271#\356\305\7[:\67\370\246H\23\312\224dR\31I(\23I\206b&\212\301@\241"
"\211\365l\60\320\0[\277)\16F\7[:\67\370X\23\14\15\216\12\63\301\310`\220\221\244\42\211H"
"*\24\31\14B\221T(\222\12E\6\203P\26[\304%\16F\7[:\67\370*\246\30\34$b\332"
"HP\244\31<\220\246\6\223T(\222\12ER\203I:\254\1[\306*\356\305\7[:\67\370*\246"
"\211$\62\221D$\21Kd\42\231H\213\42M$\262\30Hb\301PM\250&T\63\70\220\0[\314"
"%\356\305\7[:\67\370X\61\70H\344!\203\201\254l\60\320\203\6\7\241L(\64\70\10eB\241"
"\301A\4[\322\42\16F\7[:\67\370XS\24\31\34\304\62\271\301A,\223\32<\20\225I\234e"
"\64\203\370<\3[\337*\16F\7[:\67\370&(\31\34H\62\211HDQ\243\313$R\22MD"
"\62\230\350\1_%\22\62IF\42J\305t\0[\370\27\16J\7g\272\321\340\201\62\35\253K\5C"
"\301P\272c\21\0[\372\35\17F\7_<\71\70P\306\353\6\237\306S\203\7\241X\60\225\14%C"
"\361\264\10[\376+\17F\7S.\226\213\345\42\203\233`b\60\210\245B\231TE$\23\323Dr\241"
"D,\221I\244\42\251\232P\67\321HT\2\134\2&\17F\7_n\360@\230\34\34\244B\231\324\340"
" \25\312\244B\231\324\340 \234\32|T\232\211f\342i\25\0\134\4\60\17F\7W\254.\64P\205"
"\62\251Pfp\62P\205\62\251\320@!\11e$\211\320@\223\210lR\71U,\221\12IR\21Q"
"*'\222\0\134\6\61\17F\7O\60\225\332D\22\203P$\221\312D\22\221L\42\223\310D\22\251L"
"Y.\245\30\34$JB\25\231&\231\262\134,\27\313\305b\32\0\134\12)\16F\7O,\27\12\15"
"\36\250\42\271\301A(\322(\221\211\204\6\7\241`hp\220\15\15\36hR\301P\60\24\26\1\134\16"
".\17F\7_&\24\31\34HR\301\314`\20LE\6\221\301 \25I\225\14\6\251H*\224Xe"
"B\203\203hf\360Q,\230Jk\0\134\17\33\15F\7[\270\313HY$\223\212\204\62E\231\252D"
"(\245*\13\327\312\0\134\21 \16F\7_\272\64R\27\311\244\62\241\232P&\224ITe\22\262H"
"R\22\256\225*\247\0\134\61\65\17F\7S*\21KER%\211\301@\22\36\14\22\203M*\224I"
"\205\62\242\301F\27J\244\22%\211T\42\222\250JD\22E\221L$\242)\251\221\204\6\134: \357"
"E\7\323\340,\27\313\305r\261\134lp\26\311F\262\221h(\31J\246rUIIX\134@&\356"
"E\7\313\340@\223\314$\63\203\3M:=x\22\215D\6\223F\221F\221\222\301$\221MD\23I"
"\11\0\134E(\317\305\7\313\340@\224\14%C\203\3Q*\230\12\16\36DR\301T\60\61\70J\344"
"\62\221\134&\222\213d\6'\0\134J-\316\305\7\313\340I\64\22\215\14\236\244r\251\134bp\20I"
"dB\221D&\24IdB\221\304\340 \21\311\204\22\221LH\63\70\10\134K&\317\305\7\313\340@"
"\224\14%C\203\3Q|\360&\224\220ED\242\301A\42\223\12&\6\67\261\134\254b\360 \134U'"
"\357E\7\313\340M\64\23\315\14\336\64\313\224%\6\7\231f\231\262\301\203HE\250\244Q&\243\312l"
"$\21\241\0\134^,\356E\7\313\340@\223\314\14\16\64\301Ib\60H\325%\6\67\211L\213\301M"
"*\67xQ\224\210$\212\24\11Ib\223\310\4\5\134d*\356E\7\313\340I\64\62x\222\251J\14"
"n\22\231\26\203\233D\246\305\340&\35\31\14\62U\231\314`\20\11\245r\203A\4\134q\33\355\311\7"
"[\270\263TJ\225R\245T)UJ\225R\245T)Uj\360@\134\251\36\357\305\7_\62\324\37\15"
"\16\364$\203\257\322\351\301U\42\226\221\304r\261\334`\240\1\134\270\42\17F\7_\62\324\243\301\201\36"
"\64x\20\211'\6G\251`*\70x\20I\345b\271X]<\6\134\366#\16J\7W\70;\30\310"
"\312\6\3Y\331` K\17\236\244\7\7\252\134\42\323\42\323bp\23\235\0]\335!\15F\7s$"
"\31\11\225\204JB%\241\222PI\250$T\22*\11\225\204*\242\211\250\66\34]\336)\15F\7O"
"\60S\224)\312\24e\212\22\11I\42\222\350$\321\223DO\22\222L(S\24\11\225\204JB\25Q"
"m\0]\343'\16F\7O$\24\213db\221\262\301U\246jp\225\251\312T\15.c\203\7\262i"
"\242N\22\321\210B\272\30\0]\345\16\217E\10\307\340A\60\336\277\33|]\346\33\357\305\7[\274p"
"\360@\227\216W\17\316\62\311P\60\225\213\325\5\7\17\2]\356 \17F\7S*\231\311\15\36\306\243"
"\203\323xn\360Q|p\25J\206\202\251\134b\360 \16]\361\25\314\311\7\303\3m'\203\203H\266"
"\313D\62\22\314\14\16]\373&\17F\7O\273H&\27)\33<L'b\203\257\62\311\301 &\233"
"\10#\242\301 \30\217\345b\301\301 \3^\2\26\17F\7_\274n\360]<\71\70\20\365\377O\244"
"\361:\0^\3\42\17F\7[\274p\360U$\33\211f\242\203+MQ\42\323$S\222i\226)\313"
"$\264\361\30\0^\14*\17F\7\223,(\321J\27\252A$\223\14\16\276\212D\63\311\301\201&\221"
"\11EjB\211LQ*\23Je\42\322\30\0^+\61\16J\7O\70\62x \252\11\325$\6\203"
"D&\21\251\30(\42\25\251HE*R\61PD*\62\211HE&\21\251\310$\42\7\212H\272\10"
"^-&\17F\7c<\70x\20\311\224e\312\6o\232e\312\62\3Y*\230\30\34%\62M\62M"
"\62%\231\12m\14^/&\17F\7O\263L\315\340\233f\231\262\301=f\360@\21K%\42\203\213"
"P\246,S\226)\313$t\231x\16^\60\64\17F\7O<\62\30\244\202\231Df\260I\4\63\211"
"\310`\220I\204\23\211\301A\242MH\222\310\204\62\221\301 \25i\25i\224\211\24e\42\11M.\5"
"^\63\64\17F\7K<\65\330\244b\203\311@\222\210\224%\42\221\201$\21)KD\312\22\221\301\201"
"\42R\21ITH\22%\211T$U\222J-B!Q\246.^\70*\16F\7K&\224\212\204R"
"\221Lf\360\261d\60\220Hb\221L,\66\30(\223\203\203P&T\23\252\11\325D\224\71\0^U"
"+\17F\7W(\64\370*\24\34\14t\261\334`\240\213\345\6\3ep\360Q\244np\20JD\62"
"\211A\244&\27Ihs\0^r\21\357E\7\313\340@\31\357n\360]\274\337\1^s\32\357E\7"
"\313\340@\31\315\324E\62\271Ha$\21\316\15\276\213\367\35\0^t\37\17F\7S<=\70\20\25"
"\246r\261\222\301A*\224\14%C\311Pl\360a\274\31\0^x\36\17F\7_<\71\70P\306s"
"\203\217R\311P\62\23\33<\10\306\223\203\3e\274\16^y\61\17F\7O,\27\13\15\6\221D,"
"\225\10\15$\231\26\251HF\61P$\6\242T&\224\312\204R\203\7\232Xh\60\310\344b\271X."
"\26\2^|,\16F\7Sa(\30\312\245r\211\304`\20\251\311l\232$B\231\214(\23\322\264\310"
"\64I\204\42\21E(\62I\215R\261\220\4^\201\37\17F\7c<\70x\20\211\267\30\34db\271"
"X.\226\213\345bu\261\134*\230V\1^\203%\17F\7c\274p\360 \22\17%C\311P\62\224"
"\14%\63e\231P*\223\312\224\14\64\211\201*\21N\0^\217%\17F\7c<\70x\20\211'\6"
"\3U.\226Q\344R\301\301\233T&\224\212\244*R\261\134\254.-\3^\225*\17F\7c<\70"
"x\20I\206r\252\310@\27\311\344\42\231\134dp\20)\212EB\261\310&\224\220\205\242\11\315`#"
"\17^\227'\17F\7c<\70x\20\211\247\202\251`j\260I\5S\301T\60\61\70J\344B\211\134"
"&\222\313D\6'q\0^\234+\17F\7c<\70x\23\317\204R\231P*\63\70\251*IdR"
"\11I\225\42R\25I\205\62\251P&\225\11\245\202!\15\0^\246%\16F\7c:\67x\222\251\312"
"T\15\236d\252\62\3U:\61\30\210\62\241&\251\224\252\42\225\61I\354\4^\247#\357\305\7_<"
"\71x\20\211GZEZEZ%z\224\350\221fS\61\270\211\345bu\301\301\203\0^\253(\17F"
"\7cp\360 \222\12\246\202\203\67\251`bp\224\310\24%\6G\211LQ\42\323dp\23\313\15\276"
"\213\307\0^\255,\17F\7c<\70x\20\211G\63\3\305@\224\11\245\42\251\212\203A$\23J%"
"\212R\211\242\232\314@R\21\214d\204\261\301\0^\267/\17F\7c<\70x\20I\5\23\203\243T"
"&\64x\20IeB\211\301Q\42\23\312DjB\221\304\42TQ\25\221D$\11QH'\3^\366"
"+\17F\7sd\240\322%\6\272X.V\24I\15\42\221A*R\25i\226\210\224%\42u\231H"
"n\360\244\64\244\313\15\6\1^\372\62\17F\7gj\240\30\14b\241H\252$\24\31\34$r\221\314"
" \61\30\304B\251Lb\60\310DB\71U\60\61\270I\204r\21I,%\13\16\6_\1#\17F"
"\7[<\22\15%\63\273\201&\63\310\25%C\241\301W\241d(\31\12\246\202\251\134\254.\4_\17"
"#\17F\7g<\21\216d#\221\301\227\361\330`\220H\246\202\251`*\30\313%&\65\263\304 *"
"\17_\23\24\353I\7\303\203h\223\301I\264tp\20\355\62\67\1_\25%\15F\7\363\340(\27\312"
"\205r\241\304`\20JD\23\321D\64\61\30\204r\241\134(\27\312\205b\251\314,_\37(\15F\7"
"O*\27\312eR\203\3](\27\212\14\16$\241\134(\67x\221Q\245T\241D*\42\11%D\21"
"a\14_\61&\356E\7\307`\61\230u\62\220\14$\261f\3\311@V\241IhJ\62\221\320\211$"
"\42\31\215R\261\220J\2_\65/\357E\7\303@\62\30\244\42\331\310`\26\311\15$\203I,\27\313"
"\15>\212$\62\251H\42\22\213\24F\62\261L\42\22\12\211\22\32]\0_\67\63\17F\7cl\240"
"I\4#\31\331`\240H\205*\6\241Xh\60\310\204\42\65\203D\244,\21)K\14\6\261P$\26"
"\312\244B\3Qb\220Jh\3_S\34\354\311\7W.\23\312DB\25\231T\42\22\214\15\336\266\30"
"\34hk\7\17\2_b.\17F\7sf\60\320\244\42\241X$\24\213d\42\241HMbp\223\212"
"\244JB\221L$\323\244\246Y\246*\224\11\265\11\245\42)\0_y/\17F\7O<\63P\205\62"
"\251P&\222\210\324D\64\221L$\23Im\22\331\304\340FT\222\10eR\25\261\224.\225\210e\214"
"\22:\1_\200)\17F\7O(\231\312\305r\221\301IQ*\23\12\246\202\251\134f\60\310\310R\211"
"X.\226\213\345b\271\310\340 \22\6_\204,\17F\7O<\61\30\210\62\251PM(\222I\204\62"
"!]F\242\32\304$\261\134,&\31\134\224\345b\271X.\61\70\220\204\1_\205+\17F\7Se"
"(\30\31\14D\251\134$\23\313T&\6G\271T\60\244\30\34$jB\221\242L*\224I\5S\301"
"TN\2_\213\60\17F\7O*\230\312E\6\3Q,\222\211\204\42\65\203\3M*\222*\11E\6"
"\3Q,&\31\14$\211X.\226K\14\16$\261\134,\5_\214.\17F\7O(\31\212\244B\231"
"TD\223\212D\24\241L(\222\12\265\30\14\24\221TIh\260\261\251HH\252b\262\324,c\224\320"
"\11_\222/\17F\7O*\230\312e\6\3M\254$\224\312\14\16\64\251`*\227\211\344\62\221\201D"
"\23I%\62\212\134&\241\213dr\221\220*\221\33_\223\60\17F\7O$U\23j\223\312\245\42\203"
"\203D$\25L\345\62\221\134&\62\220h\42\251D&\222\313Dr\221D]$\242K\204d\272A\0"
"_\227\62\17F\7O<\62\30\204\62\251Pf\60\310D\22\251H&\221*\31\14R\351\304\340@!"
"\314$\22\203\3I&\224\12eR\241L*\230\312i\0_\251\60\17F\7Oi&\31\32\14$\211"
"\312Hb\60\210d\24\241Tf\260\312\204B\232\301&\221*\11\15T\231P*\222P\304\352B\12U"
"b%_\263\67\17F\7O(\31\12&\6\7\222T.\62\70\311(\42\211T\242$\221J\224$B"
"\221\301@\243\212%b\221P$QS\222\210E\22\221L$\242\251J\15\62\0_\303&\357\305\7W"
"\36\220\7\344\1\331H\266$U\22\13Er\231H.\222IE\22\231TD\224J\206\242\3\15\0_"
"\305)\17F\7[\36\220\311F\202\221\302P\62\24\213d\42\241H\246IQ$\223\210%\62:Q,"
"\27\253H\205\64\203\211\32_\327\42\17F\7_\274n\360]\274rp\240\14G\202\221L$\24\311\64"
"\11&\62\251\210*\24\35h\0_\330 \17F\7_\274n\360Q\274=\340@YR\30\311DB\221"
"LI&\25\21\245\42\261\301\6_\334.\17F\7c<\70x\20\11%S\301X.\24\211\205\42\261"
"D$T\21Ie\22\221X\42R\226\250\211%jB\221D*\223\35D\0_\340)\17F\7[<"
":\70HeB\251L(\225\11\245\6\7\311xE\60\222\211\204\42\231\222LQ\42\223\212\250B\321\201"
"\6_\353\61\17F\7O*\230\12\246\202\221\301 \223\20E\62\211\232H&Q\23\311$R\221\26\203"
"\203L*\30J\344B\211\134\246,S\26IU\344\22\0_\365&\17F\7_<\235\310f\222\251\230"
"b\240\220h\65\203\201\272\60\222HFZE\62\221L\213V\241Dp\240\1`\35#\357E\7\313\340"
"@\324G\203\3Q\377hp\240,)\214d\42\241H\246$\223\212\250B\221\334@\3`%%\17F"
"\7[z\240\314$\63\301\301\201\274lp\236\32\34D\223\221\232P\244(\222\211\224\210R\221\330`\3"
"`'/\17F\7O*\230I\4\63\211`&\21\214\14\6\222\204\42\22K$$\261DM*\222\12"
"F\6\203Ta*\230\12\246\202\211\301A&\13`i*\357E\7\313\340@\324G\203\3Q&\221\11"
"E\62\212\320L\64\70P\226\24F\62\221P$S\222IET\241Hn\240\1`o+\17F\7["
":<\30\350b\271\301@\27\313\305r\203\201.\226\213\345\6\3U\244(\23\311\204\42\65\221\210(\25"
"\211\15\66\0`\252)\356E\7\307\340A*\22\215\344\6\7\241H\243H\243\301A.\222\32<\320\5"
"#\215\42\65\221L(\42*\211\15\64\0`\262+\17F\7W&\232I\15\66\203U&\66\320\14d"
"\231\340&\65\311\14V\231d(\230IFZEjZ%\252B\211\340@\3`\305\61\17F\7O*"
"\230\12&\6G\251\240b\60\310$jb\211\304\340 Q\234\310\14&\65\241Tf\260\312\204R\231\301"
"*\23JeB\251LF\2`\363\62\17F\7S<\63X\14\216R\231\301H\23\12MB\231D\305"
"`R\23Jd\212R\221\301 \26\11F\62\221P$S\222IET\241Hn\240\1a\17*\17F"
"\7_p\360 U\231I\15\276\7\15\6\272Xn\60\320\305r\203\201*\222HF\212\42\231H\211("
"\25\211\15\66\0a\33-\16F\7\347 \63\30DB\231P*\23\311\14\276\211\244\24\65\221P\42\225"
"\210d\6\23Q.\64\330\211R\22EV*\331\14r\3a\37\62\17F\7c$\233\11\15\36DR"
"\301\301\42\22\212EB\211AD\225\210\224%\6\211&\261\214\42\226\312DjB\221\242H&\25Q\205"
"\42\271\201\6aK\65\17F\7O*\230\310D\64%\233\301@\21\212d$\3\311@\222\313D\42\232"
"\201d\225\211\204\42\21\315@\227\214\324\204\42E\221L*\242\12Er\3\15\0ac\63\17F\7O"
"<\63\30\204\62\221\242\304\340 \23i\223P\14\6\231Di\42\61\30HZ\225\14\6\251H\252d\60"
"HER%\203A*\24Q%V\2a\262*\16F\7[n\360UL\61\70H\304\242\203\201\62\67"
"x\240G\14\16B\221F\203\203L\244\246$S\221IER\203I\0b\20.\17F\7g$\233\211"
"f\62\203\7\221X.\226\213EB\3IQ\246\42\224\251\10e\62\252LF\225\211$\42\211\210$\223"
"\250J\255\3b\21,\17F\7[\42\33I\344\64\221\220\42S\226\211fb\203\217Jb\241Hl\222"
"\210\251\64\213T\60\224\210\204\62\25\241\204J\243\14b&\63\17F\7OI*\322\42\224\250\211d\42"
"\241Hd\60\210\14\24\221\310 \25\351d\60\210\364\223\301 \222\210\305d\65\203\23E(\225(\252\21"
"eR\1b\70\31\356E\7\303\7z\202\7\232d&\231If\6\7\232t\343t\70\15b@,\17"
"F\7wd\60\310H\307\301\201\42\230I\14\6\221L\42\23\312$\62\241\201\42\23JeB\251L\250"
"oB\251LY$\33\1bK\27\17F\7oX\67X\307\13\7\17\202\361\272\301w\361\326:\0b"
"M\33\16F\7c\272\325\340\201\60\35\211&\262\266\211\244$'J\311\322a\25\0bS$\17F\7"
"O\274dp\223\313\14V\261\134,\27\313\305r\261Uf\220\213\345b\271X.\226K\311\64\0by"
"\64\17F\7KM.\222\311E\62\271H&\65\330DB\221L$\24\31(R\221\214l\220IM\62"
"\271H&\27\311\344\42\231P\244b\24\211h\6\212A\24b#\357E\7\317`\240nR\61\310D"
"\212\6\3E*S\66\70\313T\205\212\6\7\232TE\254.\255\3b\200)\17F\7K,\27\313\305"
"r\221\301G\271X.\226\213\14\6\242F\223Lf\25I\305d\61Y*\222\312\210\62\12\235\0b\225"
"+\17F\7K<\64P\205\62\251P&\63\220d\42\65\241HMjR\273\30lF\231T(\223\252"
"\210\325\245\22\261P\306D&b\230*\17F\7O\60\25\223e\206\231\334`\21\315\14\6\232f\231\262"
"E&\63\310\224e\312\62e\221P,\22\212%R)]\6b\305.\17F\7K<\63\30\204\62\251"
"P&\25\31(R\241L*\224\31\14B\231Th\221\212lR\241L*\224\31\14B\361\212\301\201B"
"\14b\333.\16F\7K:\61\70\210\244B\221Th\260\11EB\251H(\25\311\204\64\203\340\42\61"
"\30d\252\62U\231\252LU&\63\30D\264\0b\335+\17F\7K<\62\70\210\304r\261\324@\61"
"\30hb\271X.\63\30hF\251Y.\226\213\14\16\42\261\134,\27\213\311R\0b\341-\17F\7"
"K.\226\213\345b\231\301\3E\64S\226)\313\224e\312\26\231\320&R\24\311DB\221\242L\244b"
"\220I$\6\241\304\64b\376\61\17F\7K,\27\313\245\22\261T\42\64\220dR\231T(\222\30("
"\62\211dd\272\31\14B\231T(\223\12eR\241L*\224\31\14\62b\0c\1+\17F\7O*"
"\230\12F\6\3Q*\65\330\4S\301\304\340 \23L\5S\203\17\62\241T(\223\12eR\301T\60"
"\244\223\0c\7\60\17F\7Oi&$\312\14d\231\334` \313\224eB\203A&\276\30\14\22\203"
"L*\224I\205\62\203A(\223\12eR\241\314`\220\321\2c\31%\17F\7O$\25\213\204b\221"
"Lf\360U&\31\222i$\26\3\225.\71\70P\306\203\203\7\301xZ\7ch\60\17F\7K,"
"\27\313\245\22\241\201$\223\312D\212\22\232\214$\63\30\204b\271Qj\62\70\210\304\63\203A(\223\12"
"eR\241\314`\220\21\3c\210.\17F\7K\62\224SE\6\222P&R\62\220dR\221\301M$"
"\227\211\344\62\221\301 \65\311dV\221TE\254.\225\210e\134\350\4c\241\60\17F\7KR\23["
"E\6\241L\244(\61PD\212\62\221\242L$\221\212\345F\251\311\340 \222\232\205\22U\231HQB"
"\323,\224\220\245\0c\242\60\17F\7K<\62\270\211TD\62\221\212Hb )\13Ej\212\66\221"
"L.\226\33|\220R\244B\211H(\23\311\224dB\221XL\226\2c\245/\17F\7K,\27\313"
"E\6\67E\231\201$\223\12Eb\211\301\201$\25L\5\7\37\204\62\251P&\25\31$b\61YH"
"\242Q\314\22\0c\250\62\17F\7O\263LY$\223\213\14\6\212\301 \223\213dr\221L.\62\30"
"\210\24\231\230$\23RD\6\3Q$\223\213dr\221L.\62\70\321\2c\320+\17F\7K<\64"
"\30u\64\230\14$\241\36\15F\361\310\340 \62Jm\42\271Ld\240\311(r\231\204.\222Q)b"
"\203\0c\356\62\17F\7K<\62\270\211d\232d*\6\212\301@\23\313e\6\203P&R\264\30\14"
"\42\233HQ&R\224\31\14B\261\134bp \211\305d)\0d\15\61\16F\7K:\62\30h\42"
"\261L$\226\30<\310\244#\203\201&\22\313\14\16\24\223X&\62\30h\42\261Ld\60\320\204\62\241"
"\210*\62\10\6d\315\60\16F\7K:\64\20\325\204j\42\3\311@\24\31$\6\221\26\221.\42\221"
"\301 \61\30\304*\6\7\221\324*\224(\312Dj\22\232\12Y\10e/\34\17F\7_\274n\360]"
"<\71\70L\5S\311L\66\221\256\310f\202*\315re\71.\17F\7c<\66\230d#\203A*"
"\222\311E\62\221\301\242\244(QR\25Id\202\211L\62T\244\11e\22\241\201$\223L\305t\1e"
">\60\17F\7O*\230\12\246R\203\201\42\30\32\14\62\241Lj\220\310\244\42\212H*\322*\222I"
"\244\42\31U&\224\312TdB\221V\243\224\60e?\61\17F\7g<\65\30(\222\241\301(S\226"
")JD\64\241\304\42\23J\204\22\251D(\221J\244b\211\204$\226\320$R\242LD\244J\11\3"
"eE\62\17F\7O(\31J\206b\203Ab\60\310\204\62\251L(\225\321\244\42\211Lf\240I\204"
"\62\25\241L(\225\11\211\62\25\241\201B\223\223\345\1\1eQ\62\17F\7S\42\222\214$\222\241\324"
"`\240\30\214Jj\42\211H&\222\250)I\324\244\26%\251M\42\225\250Q%jR\221\212\232\316\42"
"\251\220\42\27eW\63\17F\7cn \311e\42\271Ld\60H\14$\231&\231\26\232\314@Q\222"
"\311H\22\241LE(\23J\15D\252D(\221\212\324\264H%R\271\0eY\63\17F\7Se$"
"\21\33\14\22\311H\42\231\210\14>\310\304\62%\203\205&\24I\64\212$\42\211\210$\226\33d\62\3"
"U\42\26\212\304\42\242\320 \27ec\63\17F\7KM.\222I\15\6\221\134$\63\230\324D\42\203"
"\233h&\63P\224d\232d\6\232D(\23\22\15D\251LE(\23\311\264HE\42\273\0el\71"
"\17F\7KM.\222I\15\6\212\134$\63\230\324DB\251Lh\60\310\24Ej\6\211H\42#I"
"dD\221D&\25ID\22\241A\42\222H&\62\271D*\244\310\5ep\70\17F\7S$\21\213"
"T\344\22%\271D\311\340\201\42\222\232dB\211\204\42\222\211TDjR\211\310` \221EB\251L"
"F\64\20%b\232HH\222\10%T\261\0et-\357\305\7S\325`\240H\206\6\213\301B\222\211"
"$\272\31\14\42\211\324\252\242D\21\221DD\251ddp\240\214f\6\262Ln\360\1eu:\17F"
"\7S*\230\12\15.b\231\314@\223\310D\62\203A\42\222\211D\24\65\221\26\231\301 \222\310Dj"
"B\211E&\224h\222\310$\232$\62\211EM$%\212\204d\1e\207\36\17F\7_\274n\360Q"
"*\230\12\246\222\231h&\233H\307\323\211l&\250\322,\7e\231\62\17F\7O\60\322\42S\21i"
"\223(J\244T\211\310` J\205\62)Q$\244\310DB\222\324\242$\62\310$\62\232Ha*\230"
"\12\246\202\21\0e\255\66\17F\7S\60\221\211I$\211\304(\321Y\42!\211e\312\6\203\304`\240"
"i\22\231d\42\21EM$\321MD\222)\311DB\221L$\24\31\14R\361\10\0e\260\61\17F"
"\7S\60\25\223\14\6\211U&\22\214\24&\62\203\17\62\251P&\25\312D\6\203D&\245)RD"
"\62!\211(\223\310\204\42\255\12#\0e\271\34\17F\7_\274n\360Y\274|\260\14%C\301T\60"
"\225\213\345bu\251\324\10e\305\64\17F\7O(\31J\206b\203Ab\60\310\224\344\62\221\242HM"
"h\20Q\244\42\211E*\242(\213T\244\62\221\242L\244&\24\311$R\221PH\223\2e\317\61\17"
"F\7O(\31J\206\6\17\24e\241H,\224\30h\6\222D*\322*\222\310\244\42\211\301@RU"
"\22Jd\212\22\231&E\221PH\22\13e\327\64\17F\7O(\31J\206\6\17\22\311L\42\23\212"
"\14\16\42\251Lh\20\31\210\42\65\241Hd \212\324\204\42\203\203D&\25\312\224\24EB!\205*"
"\1e\345\21\311\321\7\303\203\234w\203\3\235\357\6\7\1e\347\42\14J\7C\66\63\270\211ib\232"
"\230&\246\211i\6\67\61ML\23\323\304\64\61ML\63\270\5e\351\32\357E\7\317\340,\27\313\305"
"\6g\271X.\66\70\215\347\6\337\305\273\3f\16-\355I\7\303@\62\30d\42!M$\244\211\204"
"\64\221\301\201$\244\211\204\64\221\220&\62\30d\42\241\301$\24K\305Re\241\230\0f\23'\355E"
"\7\317`\240\212\245b\251\301@\25K\305R\203\201.;\70\321D\22\243L\42\244\211DD\231\230&"
"*\1f\24#\357\305\7W&\232\311\15\16t\231h&\232I\15\276\307\14\316r\261\134lp\226\213"
"\345b\203\33\0f\37 \317\305\7\317\340,\27\33\234\345b\271\330\340.\222\215D\7\7\241\302\304\340"
" \31\317\15>f &\17F\7g<\65H\225D\6\203H\377\311 \322?\31<\210\244JB\211"
"\320 \224\10E\62\225\251\134\221\62f%&\357\305\7_<\70x\20L\16\16\204\211\330\340\253L\62"
"\25\33\34H$\251\210h\60\10\246\202\251\340`\20\2f(*\16J\7_:\66\220\304\62\221\301@"
"\23I\204\62\211H(\223\210\204\6\233A\42\23\252\11\325\204jB\203\304@\224n\4f-)\316\305"
"\7\327\340\201(\243\11e\64E\232\42M$\65X\204\24\31a&\62\30h\42)M$\65\230\244r"
"\251\334`\20f<&\316\305\7\317\340*\227\312\245\6W\261T.\225\30,\62\221P\42\23\31L\22"
"\231P&T\70\330c\6\17\4fB+\17F\7g<\65P\14\6\212L(\225\11\245\62\241Tf"
"\360A.\222\311E\62\203\67\211T$\23\11E\6\222P\274Z\2fi\63\17F\7cl\240\31d"
"J\62-\62\241\214&\225I\14\6\221\201\42\322&\21i\223\210\264I\14\6\221LEh\240Id#"
"\321LU(\23\212\15\2fo\42\357E\7\317\340,\27\33\234\345b\203\323\334\340{\314\340,\27\33"
"\34&\22:I\306(\225\323\1ft,\16J\7c:\65H\14\6\212H(\25I\14\6\221\242\324"
"\340\223h$\62\230\64\212\224\14&\203H(\70\30\206\202\241`F\2f\221(\357E\7\317\340,\27"
"\33\234\345\22\241\301E\60\24\32\34D#\241\301g\341\301@\65\313H\6\3],\67\30h\0f\226"
"\61\16J\7oV\221\30$\6\231D$\24\351E\244&\241\211$\6\3\305 \23\213\14\236db\221"
"\314@\322\42\22\31D\42\302L\60\242\320\251\4f\227,\357\305\7g<\65x\240\310D\62\235dZ"
"\204\62\203\17\242\231\310`\222\211\204\42\231H(\222\211\14&\3I(\31J\16&\0f\256(\17F"
"\7W&\65\370*\23\34\234\345b\203\263\134lp\31\34|\25\212\15\16$\222TD\64\30\4S\301"
"\301 \4f\264)\357E\7\317\340,\27\33\234\345b\203\303Lnp\240\313\244\6\37E\62)M$"
"a\222\30\204B\212\204j\223\331\351\0f\334\67\317\305\7\327 \61H\14B\25\221\304 \61HDB"
"\25\221\304 \61HD\62\65\203L$\24\211\14\6\212HB\23\212(\6\203H\233\320 \62\30\4\63"
"\321\301\1f\362#\355\311\7S&\230\11f\202\231\320\340\201\246FS\243\251\321\324\14\276\251\321\324h"
"j\64\65\203\7\2f\370#\357\305\7_rp\240\14E\6\337\205B\203\3erp\240\314\15\276\31"
"\234\345b\203\263\134lp\3g\0(\357E\7\317\340,\27\33\234\345b\203{\314\340\223Lt\240\30"
"\210\62\211Lh I\244\62\31\325@R\42\32\345\12g\10 \354E\7\317\340&\227\311er\231\301"
"M.\223\313\344\62\203\233\134&\27\11F\202\211\244pg\11%\17F\7[<\70\370*\236\36\14d"
"\262\230,\225\30\14D\221X\246,\67\30\350b\271X.\226Ki\0g\15;\357E\7\307@\61\30"
"D\62\211T$\223HE\62\211\214f\240\10f\22\301Lb\60\210d\22\65\221\201\242$S\21Id"
"*\42\242L\42\23\312$\42\211LEM\42\243P\5g\27\66\16F\7O:\65P\14&\231D("
"\222I\204\42\231\304`\62P\204\42\231D(\222I\14&\231Dn\240\210\204\62\211L\213L$\224H"
"(\212\22\242\324(%g\33'\357\305\7O<\65P\14\6\212L\331@\23\313\224\15\64\261Lh\220"
"\10\5C\231\301\203`rp\240\214\347\6\37g\35\61\16F\7O:\65x\220\310Te\22\203I&"
"\21\212\14\24\241H&\61\230d\22\241H&\21\212\14\24\203I\246*\63\270\310\24\325\204j\212\4g"
"\37\67\16F\7K&\231\211\14\276\211d\42\231H&\222\211\14$\3I&\222\211d\42\231\310@\222"
"\211d\42\3I&\222\31\34h\42\65%\231D(\21J\204d!\1g(\34\17F\7_\274\335\340"
"\263\361\66Q\232\250\214\324e\252B\65\251\212X]<\7g*\34\17F\7_\274rp\240\214\327\15"
">\333&*#e\232\214D\225\322\305\353\0g+\35\17F\7_\274n\360]\274rp\240Lo\23"
"\225\221\62MF\242J\351\342\71\0g,\36\17F\7_\274\335\340\263m\242\64Q\31\251\313T\205j"
"\42\203A$\21\253\213\327\1g-*\16F\7O(\30\12\206R\203A\42\30\12\206r\233\234\42\222"
"\223$b\211P,\21JEB\65\241\232T\246l\220\211\2g:\62\17F\7O<\64\210\205\42\231"
"\301 \21\211\205\42\261P$\265\211\244\24\221*E\244(\21\212\204\22\231&\231\262H(\26\11E\62"
"\211T$\243\33gP,\17F\7O.\226\213\345\62\203or\261\230je\221I\244$\25\241D$"
"\21\11%B\221L$S\26\11\305r\261\134,\246\1gQ)\17F\7O\60\25L\5#\203o\202"
"\251`h\22\12)\42\231\220\244M\42\322&\21\214\24\246\202\251`*\230\312I\0g_\37\17F\7"
"_<\67\370.\236\34\34\210\372G\203\3\341\66Q\31)\323d$\252\224.\7ga&\17F\7_"
"<=\30\206r\212HL\244\225\4%\21\315(\64\31\34\10\267\211\312H\231&#Q\245t\71\0g"
"e#\17F\7_<\70x\20\314\304\62u\221\302H\42\65\370.\275MTF\312\64\31\211*\245\213"
"\347\0gq\42\17F\7_<\67\370.\71\70\20\365\321\340@\324hp \334&*#e\232\214D"
"\225\322\345\0g~\63\17F\7Oj\226\213\205\42\231\301 \21\211\205\62\251P\242h\322FQR#"
"\311T\264\211%R\211L$\25I\205\62\251\320 \21J\14B\225\11\0g\62\17F\7O<\63"
"\30h\352\6\3i&\232\31\14B\222D&\243h\223Q\64\11i\42\211L\42\23\21%\62M\62\221"
"D*\322*\222\10U\224\5g\227*\17F\7O,\27\313\305B\203ob\271Xl\264RdV\222"
"D\233D(Q\223\310D*\42\65\315r\261\134,\27\13\1g\232/\17F\7O(\31J\206\222\241"
"\330\340\233\242TF\23Z\324\204\24\231DJR\21JD\62\251D,\24I%b\241L*\223\12%"
"t\1g\234'\356E\7\313\340 \224\11\325\204B\203\203P&T\23\12\15\16\202\271\301\3\325\64Q"
"\30)\313d$\242\224,\7g\235.\17F\7O,\27\313\305B\203ob\271Xl\61\30\204\66E"
"\212H\246\242&\21J\324$\62\221X.\225\210\205\62\251L*\224\320\5g\323*\17F\7cP\24"
"M\14\66\262H\252$\33\311E\62\211\214$\224Hhb\302\334\340\253De\244L\223\221\250R\272\34"
"\0g\361,\17F\7O(\231\12\246R\203qd\60\20\245r\243\234\42\223Sdb\211\310`\220I"
"\244JR\301T\60\25L\14\16\62Y\0g\373\42\357\305\7_<\67\370l\233\250\214\224i\62\22\305"
"\340B\223\213\15\316r\261\301Y.\226\313\14>h\4%\16F\7G&\25\312\204R\231H,\223\10"
"\15>V\305\352\6\17T\323Da\244,\223\221\210R\262t\16h!.\17F\7O,\27\313\305B"
"\203oB\231T(\23\332\204\62\212&\211\210\244E\223\212P\42\26\212\304r\251D,\224IeR\241"
"\204.h*\65\17F\7O,\227\211\344\62\221\320`\21\311E\6\3Q$\23[db\212PL\61"
"\70HT\251\22\241\204&\22J\310\62\221D*\222\211\204\22\241LY\10h\71\63\17F\7O<\63"
"XeB\221\301@\224\312\204R\231\301h\22\12)\212B\212\304`\20It\23Id\42\211HMD"
"\226)\313$\42\251\214\250B\27h<\64\17F\7O(\31J\206\6\222\301@\224\312Hb\231D\325"
"\42\42Sd\22)E$S\221IE\22\221\301 !I\24\245\62\241T&\224\312\14VY\0hH"
"'\17F\7_<\67x\240H\305\22\211\301A\42\226\11n\262S\315J\23\212\14>\333&\12%\21"
"\315($\314\1h\134\64\17F\7O*\23\212d\42\241L\244b\260\210$R\231P*\227\32\345\24"
"\231\234dpQ\25\311$B\231HQ$\226\31\310R\211XF\223J\310\22\0h\205\60\17F\7O"
"(\31J\206\6\17\22\321L\64\62\30\204&\211HH\321$\244ID\62\211\304\340 Q\322_%\6"
"\7\231D,\225\213\245D\0h\260\70\17F\7O,\27K\244b\221\304\340\233X.\222(\311H\22"
"%\231E\223\214b\260\310$\42\211\66\211H\42\42i\21\211%\42\11E(\221\211\210\64\31Q&\225"
"\0h\322/\17F\7O*\230\12&\6\27\203M\60\62\30\244B\211\330\340ADQ\223\222\264I\324"
"d\24%\203A\244*\230\30\34\245\202\251`*\5h\356*\17F\7_<\71\70\20n\23\225\221\62"
"MF\26)L\205\6\337\250r\233U\242D\221\211d\22\221D&R\23J\205\0i\15\63\17F\7"
"O,\27\313e\6\337\344B\3U$\221\11-jB\12\305@\244Pd*\42\211\201&\21Id\42"
"-\62\251Hb\240\212d#\203\233,\0i\34\61\17F\7O*\230\12\206\22\241\301\42\23\213\244*"
"\6\67\252Pd\61\30\204\24\222\232D\244M\42\62\30D\252t)](\22\213\210R\273\4\0im"
"'\17F\7[$\30i\226\210$\62\203\217b\301Pj\360@\227\34<\314\15\276JTF\312\64\31"
"\211*\245\313\1iu/\17F\7K<\62\270I\305\6\223`h\27\33h\24\213LD\241\350D\222"
"(\251\210,\42\25\221D\67\61M$$\214'\6\7\222\60\0i}*\17F\7c.U\23\31h"
"B\211L$\225\310$\202\3i&\21\333DL\6\242\134n\360\331\66Q(\211hF\241]\16i\313"
"\60\17F\7O(\22\13Eb\221\301'e\221\301@T\222R\14\16\42\243\234b\60\320$\42m\22"
"\221\301 \322\253\301\233H\252$U\22\222\0i\330\62\17F\7OQ*\24\211E\6\3\305`\224\213"
"\14\6\251Xl\25S\14\16\42\212P\244\42\23\331$B\11M$\264He\42E\11M\263\134J\4"
"j\31\61\17F\7O<\62\270I%\62\203\7\242L\242Q&\321f\62\30d\24YEb\260I\204"
"\23\211\301\201$\224\310\205\22U\231HQ$\323J\4j!\62\17F\7O(\22\13Eb\211\301\7"
"\221\262P$\226\31\214&\241\220\42\61\30)\212\62\211\314`\223H\225$\6\7\231T\60\224\310e\62"
"\252\204Lj)\66\17F\7Oi&\232\31\14\22\203A$\30)L\14\16\42\242Hj\223\210)\22"
"\203A$\221\211\244\22\221\301@\21I\224\344\62\203A(\23\311e\6\3M\26j*\60\17F\7O"
"\263LYbp\61Xdb\231\262\304\340 \62\312)\6\3\221\244M\42\62\30d\22\221\376*\62\30"
"\244\62\221\134$\244\332%\0j\71\65\17F\7K\250O\6\222\310@\22\252\30\34H\222\231\305 \223"
"QH$\31\205$Q\222\210\14\22%\211T&\24\251\11e\24\212Pf\23J\254BA\11\0jK"
"\67\17F\7ON\25\31\350R\251\301\67\241H,\63\30I\22\221\204d\63\10%J\23\211\301E\244"
",\24I\14\22\241H\42\222\10E\22\203D(\22\13ER\12\0j_=\17F\7OE$\225I"
"DR\11\305 \63\220$\42\251L\242Q$\61PD\24\3Ih\224\311(\6\7\211\232H\42\223\310"
"D\22\221\32I,R\21\311D\62\211\232D&c\223\12k \17F\7S\274:>x\22Je"
"B\65\251LY:\21Nd\63\321P\60\226\22F\264\2k!'\17F\7[<\31J\206\242\231\301"
"I&\22Je\312\62\221P\42\224\213\265H\305\22\241X\246\252$\243\313H\3k\62\61\17F\7O"
"\42\23Ld\202\221\272Ld\60It\322&Q\225(\221%B\261LUI(\61\220$R\231H\42"
"\225\211\24e\22\231\320`\225+kL\64\17F\7clp\33\311-\42\203A\242I\42RQ\222\250"
"Y\224\4\25\221\320`\220I\206R\213L\42\224\250I\204\22%\231\314\42\222\311%R\251]\0kb"
"\35\357\305\7_\274i&\232\211f\6\253L\64\23\315D\63\321L\64\23\315\344\6\37kc\35\317\305"
"\7\307\340A\60\336\64\23\315\14V\231h&\232\211f\242\231h&\67\370\0kf-\17F\7g$"
"\64Xd\242\231hj\360U&\232\311E\62\271\310@\27\11\305\42\241X$\24\213\14\42\211\314 \225"
"H,\345\11\0ki#\17F\7_\64\23\315\14V\231h&\67\370.\33)\214db\231P\233D"
"$$)\15k\245S\0ko+\357\305\7_\64\23\315\14V\231h&\67\370$\21\251\10E\22%"
"\241F\203\3Qf\23\212$JB\211HE\250\321\340@\2kt/\317\305\7\313\340A$\23Je"
"B\251\301\203Hd#J\264Pd$\25\221\232P*\223\210\244\42\205\221\310`\222\211\344\62\221Xb"
"\360 k{+\357E\7\303oB\311Pr\220\310\244\42\211L(\223\210\244\62\211\252D\211*#\211"
"f\242\231d\250&\25\212\344\6\212\70\0k\213.\17F\7gj\60\210\24\305\62e\231\232\301\311 "
"\223\213$\6\203H\246L\222IE\24\203\243T$\224S\305$e\221D\225h\244\13k\265\60\17F"
"\7W:\62\20m\212R\231P*\223\210\14\42\231D$\224\222d\242\203\304`\224\312\204R\231\320@"
"\222\10\351b\25\251\220F\23\321\11k\272\63\17F\7W\64\223\30\250\22\221L,S\225\210d\22\11"
"M\42\223\10ER\242Dr\360,\24Im\42)E&\21J\24\225\244\22\261\214&\225\220\11k\315"
"'\357E\7\323`\240\213\345\22\241\134$\223\213dr\261\314\340\233H(\226)\13Eb\241Hj\360"
"&\27\17\253\0k\316%\17F\7O<>\70\320\304\23\203\201(R\323$\223\213d\62\203o\232e"
"\312\62U\203\3Q\60\35V\1k\322#\17F\7_rp\240\214\16Ns\203\357A\203\201.\222\311"
"E\62\231\301\67\315\62U\203\67\271\260\12k\324*\17F\7K*\230\12\246\202\251L(\225\11\245\42"
"\251\201\242,\245K\5S\301T\60\25\314$\202\11I*\242\12\15\7\2k\333 \17F\7kX\67"
"X\307kv\3\331 \21/\32\204\6\203\320 \22/\13\246\222\203\5\0l\17%\17F\7ov\67"
"X\206\222\241d(\31J\14B\203A\60\224L\5S\301X\256$\223\30%\42\303A\70l\21'\357"
"E\7\313\340@\224\14%C\311\320\340@T\31J\16\36DR\301T\60\226\213\345\42\232Hf\226H"
"H\25\0l\27'\17F\7O<>\70\320\304\23\203\201(\235G\14\16\262\221\230&\22Ld\222\232"
"`$\223\10\225$\42\312A\70l\64&\17F\7_\274(\31Jf\62\203\205\42\231\230&\244\221D"
"\62\222\10f\42\261P&\224\12Eb)]Z\7l\67%\17F\7_<\31J\205\62\251\222PR"
"\222\31,\24\311De$\221\214\324e\252B\65\251\212X]Z\7l\70&\17F\7\227\36\220\7D"
"\7\361P\62\224\31($\301\204\42\231\250\214$\222\221\272LU\250D\225\322\245u\0lB)\17F"
"\7_$\233\211f\62\203\357\222\241\252\214&\26\321\304\42\211\322D\245$\231\310\344\42\241\220&\225P"
"\305b:\0l`+\17F\7K\256&\222\313D\262\221\302\310 \21\33DJ\6\221V\221\242L\244"
"(\23\251\11EF%\251\302TL\227\22\16\6lz(\17F\7K*\31J\206\242\203\223\134\246,"
"S\226\211fR\203\67\241`(\221\13%b\241L*\223\312\324E*\5l}#\17F\7K&\33"
"\311F\6\3Y<\61\320\324\306#\203\201<\226K\5S\301P\64Q\232\20\257\3l\263+\17F\7"
"K\36\220\30\34d\202\361Hh \311\64\311\64\311e\42\251D&\222J\14$\241d(\231\211f\242"
"\221l$*\1l\271&\16F\7K,\227\312\245\322\241\320\340\42\323\42\323*\323\42\323bpRS"
"RS\221i\221\251\21\15\16\322\0l\273,\16F\7K*\30\12\206\302\221h&\222*\11E\6\221"
"\310@\224If\42\203A\246*S\25\11\245\42\241T\42\65\30$\322\0l\277-\17F\7Kj\20"
"\313\305\62\245\231\262P&\224\312\204b\205\31\305`\220\212\244B\231T(\223\312\204R\231P*\222\32"
"\14\42q\0l\311&\17F\7c::\70\313\305r\261\301Y.\226\213\15.\202\251\310@\241\311%"
"\332E\312\64\31\211*%\323\1l\325(\17F\7K,\230\12\246\242\203\213`,\27\313%\7\7\232"
"P\62\24LER\241\232Td\23\31l\22\341D\70\1l\342.\17F\7K,\230\12\246\242\203\213"
"P\246$S\222i:\30\250\22\261T\242&\25IdR\221\212T\246,\222I\204\62\221\214\244B&"
"l\343&\17F\7K,\27\13\246\202\211\301E\64\223\12\365*\23\315\304\62U\241H,\24I\225\244"
"r\251\314\340\71\0l\350#\17F\7K*\231\12\246\362\320\301E\60\226\213\345\202\251`d\60\10\305"
"r\261\272X.\225\31<\7l\363/\17F\7KH\231\12\306\362\240\324 \23\311e\42\271Hl\220"
"P$\23\323\204,\23I\244\62\221D(S\222\211\204\62\211H*\244S\1m\13)\17F\7K&"
"U\23Je\312\22\203\213`,\27\313\305B\203A\252\60\225\213\345\22\203\3E.\226K\5S\301\24"
"\0m\27,\17F\7K,\30)\214\324\16\6\212T$\226)\213\204\222\203\3a\42\27J\304R\211"
"X(\222*I\205\62\31Q*\242\311\15m;)\17F\7K\62\25\223E\6\361\252`,\62\70P"
"\344\202\251`*\227\31\14B\231T&\224\312\204R\221\324`\20\211\3m>\60\16F\7K\60\225\222"
"%\6\321X\42\24\322\224\250\62\221L,\222\11%\42\212T\42\42\213T\244\42\25\241H&\222\211d"
"*\42\241\220.\5mA\61\17F\7K,\230\12\16\36&\302\221L,\224\311\14\6\211H\66\24I"
"Db\221D$\225IDR\231D$\224\211\24e\42%\232XD\22\34mE+\16F\7K*\222"
"\12eB\241\201l\220\312\305b\3If\20\317\245\6\232\304@\222\211E\62\71M\60\222\210)\22\242"
"\343\0mt\60\17F\7K(\23\313\204R\221T\60\222I\204\62%\261D*\226\310fb\221T\305"
"\340&Q\225\210dR\231P*\23JER\203A$\16mw.\17F\7K(\232\211f\6\203\134"
"\60\225\314\14\6\232HE$\231\210\244\6o\42\215\62\221\242L\244&\63\70Hdb\221h&(\2"
"m\210\61\16F\7K,\227\310\64\251\311%\42\211X\242&\64\30DB\251\134*\24\31\14B\221T"
"\246*\223\31\14\42\241T$\224J\244*R!\5\0m\262.\17F\7K,\230\12\16\336EB\261"
"H*\224\331\204\42u\22EJ\221\260\212$\32e\64\251LFT\223\310\204\42\255\22\241DJ\26m"
"\361/\17F\7K\36\220\30\34d\22\221D&\25Idd\221V\231IF\22O\16\16\64\251`h"
"\26JTe\42\65\21MF\221K\5S\0m\367\60\16F\7K<\61\30\244\22\251\134*\67\30D"
"B\251LU&\63\30\244\22\231\134\42\23\311D\62\211Pd\60\312TejD\213\214d\64\10n\5"
"/\17F\7K,\230\12&\6\247\331\301 \22\214E\6\7\212<\42\62\30\244\42\251Pf\60\10e"
"R\231\320`\220\11\245\42\251\222TH\2n\10*\17F\7K,\230\12\16\236\205\62\261H*&K"
")\242!\325 \224\320D\6\263H(\225\31\254\62\241\336\244\62e\31\0n\33\66\17F\7K.\221"
"\212EB\261Hlp \252\312\14&\65\241Hl\220\210\204\22\212V\11Eb\24QDR\221AB"
"\24ID*J\62\25\222Lj\221\311\5n)\61\17F\7K\36\20\31\14R\221Tp\60\210\244j"
"B\251Lh\60\310\243\342\211\301M\244\42\222\211TDj\42\211HM$\21ID\6\17\342\0n,"
"=\16F\7G\66\222\30(\42\25\231D$\224ID\64\25\221Dd\240\210$\42\231D$\224ID"
"*\6\212HE&\21\251\310$\42\211\310@\21Id\22\221\210(\22\322\24I\202\2n/-\17F"
"\7K(\23\313\224%\6\207\231h\246fp\240HeBU%\203A*\221Jd\22\261H\315`T"
"\31JER%\261\301\4nV\71\16F\7G(\231\311\14\42\231\222X&\222\31\14$\252\314 \21"
"\312D\22\241L$\64PD*\62\211A$\221ID\22\221L\42\222\210\14\24\221D\60\42\314\350\62"
"\2no\60\17F\7K\36\20\31\14R\221Tp\60\10\246\42\251\232\320`\220\311#\6oJ#\203"
"\201&\322\42\223\210d\22\221P&R\323\42\27\221\0n\200\62\17F\7_&\25\312\304\22\203\243L"
"i\246fp\240\310\305\62\203\243D\246(\321\233H\242\233H\242\223Lb\240\210d\22\231DQ.\21"
"\212)\0n\220\62\16F\7K<\61\270I\204\202\231P\305`\222I\204\42\231D(\226\30\214\22E"
"\25\211\301&\222\211E\22m\42\25\221\26\221\214$\221\311\350D\0n\226+\17F\7K(\23\313D"
"B\221\310` \311Hb\231\301@\226\210$\23\203A*R\227\211\304B\203\201\60\236\33|\27\257\3"
"o\1\60\17F\7K*\31Jf\6\312LP\223J\15\6\231P\244&\24\251\212\14\6\251H\243L"
"\244(\63\30dJ\63\211HE\246$\42\11E\12o\24*\17F\7K,\230\12\16\36%C\203\203"
"D\60\226\31\234d\232e\232\14n\42\231\222L\223\314\340$\225\221\244b\211\214\60o\42+\17F\7"
"K(\23\313\224\15\336e\352\1\231\301I\246Y\246(\61\70J\345\42\203\201(V\62\70P\304\22\241"
"\224F\222\321\11oT\64\17F\7G(\232\30(\6\231\242Dj I\344\62\221DJ\221\211D$"
"\21M.\30\231\304B\11U,\242I\14.\212\42\211PI\243LE&\224\2on=\16F\7G"
"(\231\311\14\42\203\223X&\242\31(\42\211H&\61HD\62\211Hh\240\210\204\62\211HE&\61"
"\210$\6\212H\42\224\211$\22\203\201$\21\312DT\221\214*\221\21o\300\71\17F\7G(\23\213"
"\204b\211A$\30\211\14D\203H\42\222\211$\42\231\310 \21\311\204\22\255\6\213\242HH\25\331\244"
"\42\211L(\322\42\23i\21\251\220d\22U\5pk#\17F\7_\274(\31JeB\251LY\246"
",\23\211\205\202\241D\70\221\315DC\301XJ\30\321\12po+\17F\7S\274d\60\20E\62\251"
"D$\223J\24\245\22E%\261\134,\247\212EB\261H(\25\312\244B\231P\62\223\324\0pp*"
"\357E\7\313\340M<\25LeB\221\232P\244&\24i\225\310$b\211L\60\224\310\205\22\261P&"
"\225Ie\42\272\214Tp}#\17F\7O\250\67\241\232PU\250*\324\303P*\23Je\312\42\211"
"\262L\42\233I\246r\71\311Tp\255(\17F\7_\62\324\243\301\201\36\64x\20\211\247\62\241HM"
"(\322*R\21Kdr\251D,\224\11eT\42\245\0p\271!\16F\7_\272z\60\310\245\223\203"
"\253\134*\227\312\245\6\367\230`(R\23\11E\62\252H&q!\64\17F\7O<>\70\320H\22"
"\221\224$\21\11%\42\211Hf\360@\24IDb\221D$\26ID\62\203\357!]E\62\221L("
"\23I\244\62\221\4\0q\66\61\17F\7S*\230J\244\6\222\242L\244&\63\270\210$\62\241D$"
"\223\210%\62\211\134\246H\223JhtyHW\231HM(\222I\204\23\0q<\62\17F\7O,"
"\27\313e\6\203P\42\224J\224$j\22%\231\12\305\340\242(\23)\312\244\342\212\301M\42\223HE"
"\62\211TIE*\23Q\245\6qg\62\357E\7\307\340A$\323$\323$\23\11E\6\212\214&\243"
"\314$\6\203H&\221\212d\22\251\310@\221\12\16\6\231x$\23\311\204\62\221D*Sq\237\66\17"
"F\7S*\64\30Hb\203P,\222\30\214\6\241D\62\222\310\14$\211\262D\244j\23I\14\22\231"
"D\243H\211F\221\213$C\211L(\222)\22eB\1q\261\70\17F\7S*\230J\15\6\221`"
"f \31\14$\211P$\224\310D\22\211E$\61\230$b\241\204l\240I\14\64)=$\21\311\244"
"\42\65E\221L\42\25\311$\0q\303\70\17F\7O$\24\213\204\22\241\310\244&\222\30\14\22%\211"
"H(Q!\11%\26\31M\42\42ID\332DB\211L\221&\225Id#\212\222LEIM\244D"
"SRr\66#\17F\7W&\32\12\306rU\301P\42\25IHR\311P\62\223\215d\23\351\212l"
"&\250\322,\7rG\37\16F\7O(\30\12\206\202\241\340\340@\223\256\36\14d]\345R\271P\60"
"\223Lg\0rH\60\17F\7Km$\62\30D\32F\12#\205\203\67)M\225&\63\210$\42\231"
"HEQ\244\242(\322*R\242\251\210$\62\25\65\211\220\42\25r[\33\17F\7_\66\222\215d#"
"\321\301A*\223\14\5S\361\334\340\273x\357\0rg\60\17F\7S&\230\310\4\23\231`\42\63\30"
"D\6\212LI\246$\23\11\305\42\241\330$\221\32%\62\222T\60\25\14%r\231\262H\252\42\27r"
"i\63\16F\7S&\227\310\344\22\231\134\42\63\230\14\26\235TtRQ\241ID\22E\211\222DH"
"\222\210$\6\221F\211H&T\23\312\204\352R)\11\0ry,\17F\7S\252$U\222\30\14$"
"U\251\301&\25I\225\14\336\344b\262\320bp \311\224\205\42\261P$\226\213\345b\61\11\0r\254"
" \17F\7_<\222\315DC\311Pd\360]<\235\10'\262\231h&\231\312U%#Z\1r\257"
"-\17F\7S\64\23\31l\22\231P\277IdB\221\232PJ\22\252\210DT\211H\60R\227\211d"
"#\261P$\226Pd\6\203L\26r\266-\17F\7Se(\222\211\204\62\221\242LE(\227\30\34"
"\210*CAM\42\226\310$b\211L\42\25\251i\222\311%R\61]*\31r\354\61\16F\7S\233"
"P*\221\212E\6\3M$\23\251\250\211$\42\211L$\224\310D\62\212\301@\243\252H\205\42\251D"
"\252$\224\32H\22\3\321\66s\207\42\17F\7_<\70x\220\11U%$\211\134\242:\222SD\22"
"\32\311`\22\214\204\6\337\305\273\3s\211\30\317\305\7\307\340A\60\336\345\340@\31/\311f\242\231h"
"n\360\1s\213\23\317\305\7\307\340A\60\336\345\340@\31\357\335\340\3s\355-\17F\7cl\240\31"
"\14\42]EZEZE\332\14&U\221\310`\23i\25iU\222Jd\42)MU(\223\21E\6"
"\253$\0s\376\62\357E\7\333`\20\31(R\241L*\224\31\14B\231Td\240\30\14B\231T("
"\223\12e\6\203P*\21\333$B\252H\64S$\312Dt\203\0t\3\62\17F\7g$\233I\14"
"D\231\222\301A$\226\213d:\221$\6\222\204\42T\241\10\305\22\251HD\221JD\22\221\220\244&"
"!\321\204\222i\25\0t\6,\317\305\7\333`\240\30\14\42\231&\231\232\301@S\222I\14\24\221L"
"\223L\315`\240\211\345\22\241\234d\60P\350\342\311\301\201\0u\37\35\357\305\7_\64\23\315D\63\321"
"\301\201&\224\14\5S\271Xrp\240\214\267\33|u#%\17F\7_<\70x\220\252\14%\63\271"
"\301\203H\303Habp\224\310\4E\271\310\340&V\27\34<\10u('\355E\7\313\340@\22*"
"\11\225\204J\6\7\222PI\250$T\62\70\220\204JB%\241\212T(\221\12\311\62\2u\60\37\315"
"\311\7\303\7\252\224*\245J\251R\252\324\340\253\224*\245J\251R\252\224*\65x u\61\36\354\311"
"\7W\266\331\340A(%J\211R\203\7\242\224(%J\211R\242\324\340A\0u\63\31\13N\7W"
"\264j\360($\12\211B\203\7\241\220(\64x\25\355\12u\67\42\355E\7\313\340 S\224)\312\14"
"\16\62E\231\242\314\340 \27\316\15\236\245\312B\271\210p\250\0u:\42\356I\7\303A.\22\31\234"
"\324\224\324d\6\203LIMIMIMIMf\60\310\244;\326\0u;\36\317\305\7\303\357\342\301"
"\310`\20\351\377\237\14\6\221\376\377\311`\20\251\215\14\36$\0uL#\357E\7\313\340@\324G\203"
"\3Q\37\15\16\204\211\250F\246\10M\64\241\210(\25L\345bu!\0uQ/\16F\7O:\63"
"\30dJj\22%\65\211\222\212N*\22\222\26\65\203A\242&\22\221d\42\65\222\66\211\222\66\222F"
"\221\212\324`\240\6uY/\356\305\7\223r\63\30$\202\221D$\25IdB\221DDS\61I\204"
"V\31\315\340 \224\11\325\204B\203\203P&T\23\12\15\16\42\0ue\63\357\305\7c<\66\320\14"
"$\211\222P$Q\222\251\350Q\42\241\21\15\64\221L\242$\24I\64KT(\6\13EI(\222("
"\11E\6\222Pr\60\1uj$\357\305\7ov\66\30\245\62u\221\242\301W\211\312H\231&#Q"
"\14.\64\315\6g\231\262L\331\340\6up\42\357E\7\313\340@\324G\203\3Q\37\15\16t\231\334"
"\340@\227\211fR\203\257\62:\231F\232\0u\221\63\17F\7G<\23\31L\6\241H&\224\21\265"
"\32<\210\344\42\231\201&\221\211d\22\241L\305 \62\30(\202\231D.\21\331E$\261PF\23\212"
"\11u\305.\17F\7c<\71x\20\11'\302\211\301\233T\60\225S\14N\22\65\25\221DDSR"
"\21\311D\22\231D$#J\24\345b\61\5\0u\333/\17F\7c<\71x\20\11'\22\203\201&"
"\221)\13%r\211\301\215\42S\222H\14.\42\211L\223L\223\301I\246E(S\226\211(\0vz"
",\17F\7\317 R\30)\314\250\42\241LE*\22\212%B\203\203P$S\241)JeR\203\257"
"\62\321L\62T\242\12\15\7\2v{*\357\305\7gp\20)\314\210\62\241L$\21K\204\6\7\241"
"hB\62\30HB\261\134,\67\30\10C\321L\64\22\33<\20v}\23\352\315\7S\62\30\33\34\10"
"\35\16\36z\70\70\20v~!\316\305\7\303\7\262t\70:\70\10\5C\301P\60\64\70\10\5C\301"
"P\60\24\14\15\16\42\0v\204*\15J\7K(\27\212\245R\3\311`\220\211\204\64\211\224&!\322"
"H\62\203QD\23\212hr\232\234&\67\330e\243\22\0v\207\36\357\305\7_:;\70\313\305\6g"
"\271\330\340\36\64x\20\214'\7\7\312xn\360\1v\256%\16F\7_\272p\360$\224\212\204jB"
"\301\301A(\22JEB\251L$\26\222\245d\241H(#\62\24v\277/\217E\10\313\340@\24\311"
"DB\221L$\24\311DB\221L$\24\311DB\221L$\24\311DB\221L$\24\311DB\221L"
"$\62\370\0v\312+\357\305\7O,\230Jf\242\221\330\340\243T\60\225\253Jf\22\203\213\222\212H"
",\222\210\304\42\211H,\222\210d\6\17\24\0v\333(\356\305\7g\42\33\311\14\236\304b\3IM"
"\215(S\222\10E\22M\24\232qdp\20\212\64\212\64\212\64\31<\20v\337\64\317\305\7\307@\62"
"\230d\42\241H&\62\230\14$\241H&\62\230d\42\241\310@\22\212d\22\251\134J\63\70\20E\62"
"\221P$\23\11E\62\221\310\340\3v\356\23\312\315\7\303\3\241\341\340\241\341\340\241\303\301\201\0v\364"
")\357\305\7_<\67\370.;\30\210\42\261P$\26\212\14\6\242H,\24\31\14D\221X(\22\13"
"E\6\3Q|\360@v\370-\16F\7O:\63\30d\252\6W\231\252Lf\60\210LR\21EU"
"\304*Q\63\30$jR\222L*S\225\251\312d\6\203L\24w\1%\357\305\7_<\22\214dD"
"\232H\205H\21\312)\7\67\203\134,\27\33\234\345b\203\263\134,\27\33\334\0w\13$\357\305\7o"
"v\67\220'\7\7\302\340\340\253\364` K\244J\6\203P&\25\34\14\202\251\340`\220\1w\14."
"\357E\7\323` \212\304B\221X(\62\30\210\42\261Pd\60\20Eb\241H,\24\31\14D\361\301"
"\3Q$!\323d$\252\302\34\0w\37\42\16F\7[:\70x\27\35\14de\203\201\254l\60\220"
"\225\15\6z\310\340\201(#\63\221&\0w<.\356I\7\303 \62\230\64\212\64\212\224\14&\203H"
"(\322(R\62\30$\6\221\26\221\26\221.\42m\62\203H&\231P\4E\251Y\0w@&\357\305"
"\7S*\231\211\15\36\4\223\203\3en\360Q|\60\220\311b\203\253D,\24\31\14\64e\271\301@"
"\3w\342\42\17F\7S<>\70\10e\242\231d(\230\312\15>K\204\23\331L\64\223L\345\252\222"
"\21\255\0w\345*\16F\7K\272z\360\42\222\11%\42\231\220\246\250&\64\70\10\325\204\62\211H("
"\23I\204\42\231\304`\22\312\245bi\0w\355+\356E\7Kf\60\220\244\7\302Df\60IdB"
"\211H&T\23J\14\36\204\202\241L(\223\310DB\221\66EE\203k\0w\363\37\317\305\7\307\340"
"\201,^\35O\17\316r)]J\27J\344\62\221\134$\223\213\15N\0x\2\61\17F\7kh\60"
"\310\344b\271PB\26JT\205\22\221\314 \21\251\211$\42\231\204D\223\250\220\204\22\221D$\263\212"
"\244R\203P:\254\25\2x\24.\357E\7\303\7\242\232T(\223\12eR\241L(\225\11\15\36D"
"\332d$\65\221D\244&\24\251\11EjB\203D(\31\12\246\42\0x\64\66\17F\7kh\60\310"
"\344b\271\314`\240)\251\11E\22\241A\42\222\222$\6\203\210$\241\211$\42\11M(\222(\11E"
"\22\255\6\211H\64\243\214\324EB\2x\272\61\357\305\7gj\60\210\4#\203\233HQ&\322\42\23"
"\212\244\6\221\301 R!\11I\24\221\220$\62X\224\264\212D\6\233H\253A\244v\60\10x\301\62"
"\17F\7_(\232\211\14&U\221\301A$\224I\205\62\251H\242\321 \21\221t\321B\22\261\211d"
"\232\324\204\42\21\233A\42\42I\15\16\244\231\0y:\36\317E\7\313\340@\317d\360]\66R\30\311"
"\304\62\241T&\324*\222\252\210\245u\0y<(\16F\7O(\30\12\206R\203I\64\222\314$\63"
"\301PP\223SDb\211H\42\25\11\325\204jB\65\251\201&\12y>)\17F\7O,\27\313\305"
"B\203Q\62\24\214\14\6\251\272XN\25S\204R\211H&\24\211\345b\271X.\62\270\311\2yV"
"\60\17F\7O<\63XeB\221\301\42\224K\204b\221\301,\22JeB\241I(\223\250\30LJ"
"D\251L(\225\11\245\62\241Tdp\223\5y]\61\17F\7O<\63\30\204\62\251\304`\221\212%"
"R%\251\222\301 \224J\244F\211P\242&\221\211\264\210\205\42\261P$\226)\311\64\311DR\3y"
"^$\16F\7O\254\67\203\7\252D\244(\322(\62\30dJJ&-:\211H\42\203\201&\222\211"
"\365\67\0yh&\357E\7\303\257\62\271\301\201(\222\211\204\42\231Hhp\240G\15\356\61\203\357\262"
"\221\204L\223\221\250\352t\0ym)\17F\7S|p\225\11U\224$\62\23M.\21Q\344\42\241"
"\220b\60\31\344\321\203\357\262\221\204L\223\221\250\352t\0y\201'\17F\7S*\230\12\15\276\21\315"
"\66\212P\242\67\221.\62\251Lfp\217\31|\227\215$d\232\214DU\247\3y\217-\16F\7O"
":\63\30d\242\203\311@\26\311\244\62U\231\201(<\31\14\22\235D$\21IMf\60\310\224\324\224"
"\324d\6\203L\24y\301\62\17F\7[&(J\15R\301T\60\25L\205\6\3IP\23TD\22"
"\61I\42\22JD\22\221P\42\23\212\324$\6\211Lb\220I%C\311\0y\313\60\17F\7W&"
"(J\15R\221T&\21Ie\22\221T&Q\63X\64\313$\202\221\272M\42\246\210$R\211\66\241"
"D\246IUE.\244\14y\321\63\17F\7[*&\311d\6\241H,\225\210\245\22\261H(\62\30"
"$\62\261P$\265\211\244\24\251I\42\222\30\204\22\211MI.\222\311\305r\261\134\4y\322\61\16F"
"\7W&'\12\15R\271L\242*\223\210\204\62\211Hb\260\250)\251\311\210\42\26\231HF\222Pd"
"\22\271L\42\226\211\244r\31aB\7y\330\63\17F\7[$)J\315r\241DU(\23\31\14\22"
"\231T(\22\213$\42\211\314\242MD\241\250I\224$D\211\26\262HE\250\42S\244\32\204\262\0y"
"\373\60\17F\7[$\251\31HF\231T&\224\212$\24\231\301(\227\12f$\251\331 \242\10e\22"
"%\65\221DF\241(\11\246r\261\224.\62\3z\13,\17F\7WX\62\230\14\62\241T&\224\312"
"\204\42\203\7\251xz\62\30d\24\241T\242(\225\310\14&e\271X.\62\270\311\2z\16\64\17F"
"\7W,%\11eF\221X(\221\313\14&\203\201(\225\11\245\62\241\320d\60Rd\22\241D\244\42"
"\224H%\62\221P$\26\212\324\64\311DR\3z./\17F\7W,e\63\210\14\202\251`bp"
"\220I\245\6\17R\221F\213\301 \244\220\324$\42\203A&\221*\211\14\6\242Tp\360&\13z@"
"\63\17F\7O<\65\210\14\6\221\252\222Db\240\211$\202\241\301A.\223\30\14\42\203H\253\222\310"
"`\220I\244\134\244B\211H&\21)\322\204\42\262\0zM\61\17F\7W&\250\30\14\24\203T\60"
"\62\30\244\252\6\337\304\63\203\321$\24R$\6\233D\243L\42\63\230\324\204R\231\301*\24QET"
"\11\0zt\34\16F\7[\272n\360\261\321@\223\14\206\202\241`(\27k\25\314D\23\341\0zv"
"#\16F\7[:\67\370\246HSTS\224\32d\12C\311\301@\32If\222\231\242\232\252LB\67"
"\10zz\34\356\305\7[:\67\370\246HSTSTS\66\210\304\7\7\301t\273\301\3\1z\223,"
"\16F\7[:\67\370\246HS\224\211D\6\222LN\23\21\246D\203\201$\27\213TdB\221\232H"
"&R!J%b\203\11\0z\313\35\357\305\7_\274p\360 \233\213\345b\301T\60\25\14E\63\321"
"L\64\22\217\15>z\340 \17F\7_<\70x\220\252\314\244\6\337c\6g\271\330\340,\27\33\234"
"\346\6\337\305s\0z\345 \357\305\7_p\360 U\231I\15\276\307\14\316\62e\203\263L\331\340\64"
"\71\70P\346\6\37z\366\66\17F\7S*\230J\15\36d*\62\251D&\221\31|\17\31(\6\242"
"L\42\23\312$\62\241\201b\240Jd\22\261D&\221\212$\232$\62\212HD\224\10\15z\371(\17"
"F\7O*\230\12\246\202\203'\211L$\225\310DB\221\232f\271X.\226\213\345b\271X.\226\213"
"\345R\32\0{\21&\17F\7O*\230\12\16\22\203A$\221\211\204\62\211P$\31\326\15\346u\203"
"\317\22\331L\62\25\323I\264\2{\33/\357\305\7K,\27\313\15\26\203I\42\223He\22\231PF"
"\224IE\7\7\251L(\225\11\245\6\7\251L(\225\11\245\62\241\324\340 \3{,+\17F\7K"
",\27\313\15\26\203E$\223\10UdB\203\227\241d(\64\70\20U\16\336\251b\211TH\22\212\214"
"\42\322\34\0{F*\17F\7K,\27\313\15\24\203I\42\23\11e\42\231\324\340 \232\311\14\276\313"
"\244\6\7\321\344\340 \232\33<\20\306s\0{I%\17F\7K,\27\313\15\24\203A\242\246\223P"
"hp\240\214\7\7\17\262\361\320\340\243T\62\224\14\245E\0{K\66\17F\7K,\27\313\15$\203"
"E$\23\11e\42\231H,\221\33dr\221\304`\220\211dj\6\231&\231&\231\232A$\24\311D"
"B\221L\42\225\310\214$\0{T(\357\305\7O*\230\12\16\42\203I\42\223He\22\231\252D\66"
"\223L\305\6\7\22\255\36\63\70\313\305r\261\301\15\0{V,\17F\7O,\27\213\15\26\203I\42"
"\224\10e\42\231H,\67\370.\71\70\20u\263\11E\22\25\262H\231&#Q\245t\71\0{\227("
"\17F\7K,\27\313\15\24\203A\42\322*\223\312D\6g\271\330\340,\27\33\234\345b\203\303Lj"
"\360Qa*\5{\241-\17F\7O,\27\213\15\26\203E$\23\311\204\22\241\310\340\201\42\234\210\14"
"\6\222P,\27\313\15\6\272\370\340,\27\313\305\6\67\0{\261\64\17F\7O*\230\312\15\24\203A"
"$\221\211\204\62\211P$\23\317\14\26\203A\42\24\322\204B\223\301&\321(R\62\30DjB\211L"
"Q*\63XE\1{\300\64\16F\7K*\227\212\15\26\203EM\42\224Id\362\230\301b \11%"
"\62\221\301\42\23\11%\62\221\301\42\23\251)\311D\62\221A\242B\42J\244S\0{\311.\17F\7"
"K,\27\213\15\26\203A\42\322\250*\64X\14T\241L*$I\15\22-\6\241HD\227\33<\320"
"-\27\211\315(\264\313\1|!\70\17F\7K,\67X\14\26\221L\42T\221\11\15\26\203I(\21"
"\212\14\26\203I(\21\212\14\26\203I\66\22\31l\42E\231Hd\260\211\24e\42\221\301&\22U\0"
"|s\42\17F\7_\62\224\211e\352\42\205\221D\70\67\370l\233(MTF\352\62U\241\232Ta"
"<\7|\211\70\17F\7O(\222\211$\42E\211\222\242DIQB\22JeB\221\301 \26J$"
"\6\213\310(\22Rd\42\231DM$\223\250\211\64\312\244B\231T\246,\22\21\1|\276\61\17F\7"
"O\252$\221\211%\22\203\223DM,!\31\254\252\6\337\244'\203\221\242(\223\250\30l\22\231P\244"
"f\260\312\204R\231P*\223\221\0|\326:\17F\7O*\230\310\244\42\211\301A\42\241\310\244\22\221"
"\304`\24\311D\22\203o\42\231HF\222\211d\26\211\301$\221P&\42\211\301\42\222\210\204*\42\241"
"\220f\60\312\2|\370%\16F\7[\272$\231\211m\222\212p$\31\222\14\16\24\271X&R\27\311"
"\304\42\231T&\224\11\25\346\0|\373'\16F\7\257p\220\31\14\302\231d$\267\211&\302\221dH"
"\62\70P\344b\241D$\27\311\210\62\251\204(V\7}\0/\17F\7O<\64\30%r\211I."
"\223\10\206\222!\315`\23)\33(*#\211\134\42\224K\224\344\22\221D*QR$\211\15\64Y\0"
"}\4/\16F\7O(\30\12&\42\251Id\60IDR\231\252\214\42\26i\64XD\62%\231H"
"\242,\222h\227(\211%Jb\222`(&\1}\5,\17F\7O\274\42\61\30$&\241X\42\225"
"\213\345T\261H(\64Pdr\221L*\241\252(J%\212R\211\304\340@\22\317\2}\15+\16F"
"\7O\254\213Pf\222\30\14\42\211H\233\222\32I/Z\14\26\212\66\21E\27\22\215\242\253DW\211"
"\256$\231T\246H}\24\66\17F\7O,\27\213H\212&\232\301,\221\312\205\22\221\220&\21\311D"
"*\42\211\201\242I(\222(\251\10\15&\211\242T\42\222I%\42\231\214$\226\251\33\4}\31\65\17"
"F\7O\62\224S%\42\203\314\244U\42\23\211\205\42\61M$\25\211\14^\224\304\42\211H(\21\212"
"\204\22%\231\212H\42S\21I\264\220\204\64\232\210,}\32\64\17F\7O<\62\30\244\22\221Ld"
"\322*\221\211\304B\211AH\243)\211h\22\3EW\241DMB\22\21%\332\204\22M\22\231D\244"
"\27\221PM,} %\17F\7_p\360 \30\35\234\346\6\337\205%AMB\70\312\14\16\24\301"
"l$!\323d$\252\302\34\0}\60.\16F\7O:\63\30d\22%\221A$\21i\21iSR"
"#\351\305\340\205\244\246\244\42!i\321IE'\25\235D$\231\301 \23\5}B\63\17F\7O*"
"\230\312E\62\203\210&\222\11%\62\221X&Q\246\310\250\42\231Hd\240(*\221%\252F\211\262L"
"\42\222LD\22\243HN\225L\0}D\64\17F\7O<\64P%\42\231\310\244&\224\310T\205\6"
"*MQ\244&\62P\324\244\42\211\201&\21\312T\224d*\42\211LE$\221\211\224\14n\262\0}"
"L\65\17F\7O<\63X%\42\231\310$\23\11%B\211X\314(\22\212$D\203A\42\223\213d"
"R\211\314`\20I\24\245\22\221L*\21\311\204\42\221\301M\26}P\64\17F\7O,\27+\11\205"
"$\211\301I\42\225\213\345T\261Hb\60H\14\24\331H\62\21\32L\22%\241H\42\222\10E\22\221"
"D(\21\11\15FY\0}f\64\17F\7O,\27\313%\62\211\314$\223H%\62U\231TH\221"
"\30(\42\225\3E\66\222\30h\22\241LEI\246\42\222\310TD\22\231H\321@\225\5}q\65\17"
"F\7O*\230\12&\6\27\223L.\221\211\304\62\221\225b\220)\311$*\6\212H\42\226J\204\22"
"\232H(QR\224h\23J\264\211H\212\42\231Dl}u\64\17F\7O,\27\313%\62\211\314$"
"\223H%\62U\231TH\221\30(\42\225\203qd\60\220$D\261DM\42\224(\311T\224$&%"
"\203L(\231\0}v\62\17F\7O*\230\32\244\22\221\232I\253D\244.\62\30\210$m\42\211H"
"\305@!)\312\14\6\221\204$\230h\230h\226h\222\222\244\6\233,\0}y\63\16F\7O:\64"
"\330$\42\241A\244(\222\310\14\66\351Dd\60i\64\30(B\231Hb\260HhB\211&\241D\223"
"\301\242$\21\222\204jB\31\1}\232\66\17F\7O,\27\313%\6\17\42\241X\42\225\313\14\6!"
"q$\61x\220\220e\42\212\222DU\42\224\250I\204\22\221D$\224\210$\42\21I\246$\23I\15"
"}\277-\16F\7O\254*\227\210\14\24\223\232\212\314@T\23\322\64\211\14\24\3E&\226\31\14\22"
"\11I\213N*:\251\350d\21\211\265\1}\317\67\17F\7Oj\220\12\246\22\221LdR\21\311$"
"\42\215\42\25\221\214\246(\222\30L\6\212L$\224\13%$\211\242D\237$:J\224\264\220$\62\221"
"D&\66\1}\321\63\17F\7O<\63X%b\221Ib\60J\344R\301\224bpR\24\32($"
"E\221DI\205&\261I\324\214\22%\211\232D&R\21IhZ\211\0}\332\65\17F\7O,\227"
"\12&\22\203\311$\21\252\210\14V\231PJ\22*I\14&\3E&\27\213T(\6\203L\242$!"
"J\224$j\22M*\42\65\255D\0}\350\66\17F\7O<\62\270I$'\211\301 \223\210\244B"
"\231TH\62\30d\42\211\334@\61\270\311(\272\220(\372b\60P\224$\372$\321B\222\210$\332\204"
"B\2}\364\66\17F\7O,\27+\31<\210\204b\211\310`\20\312D\212$\203A&\222\210T\14"
"\24\222\242\314`\20I\210F\211\222DM\242$Q\223hR\21\251i\26\2~&?\17F\7O*"
"\23\252\210\204\22\221D\311$\21I\204\22\221\301@\23\11\305\64\221T\42\243\310\14\22\235e\22\211I"
"B\21I\204\22\11I\42\224\210$\22\242D$\21\311D\42\242T$&~.\64\16F\7O\254\213"
"\304\340 \222HE\22\21Q&\64\330$\42E\221D$\63\30(\6\232\210\42\223\250Id\22\11I"
"b\240\350\215$\321\246\305@S\6~>\70\17F\7O,\27\31\334$B\241Ib\60\310$R\271"
"\310\340F\34\211\14$\3EM*\222\30h\22\241LE\311@\223\210$\62\25\221\304@R\24QE"
"T\11\0~T=\17F\7K(\223\12eD\211\301@\221\220h\22%\211HE*\223\210\244\24\203"
"\203D$\226H\14\24\203DM\242$Qr\20\311(J\22\32EI\302\42\63P\224\344\42\222X("
"j'\357E\7\307\340A$\323$\323d\360 Z\23\33h\6\262Ll\240\31\310\62\301Mj\21"
"\32\214\12S\271X\12n(\317\305\7\307\340MI&\63x\231\33|\27\214\14\6\251H\252d\60"
"HER%\203A*\222*\31\14R\203\7\2r(\317\305\7\313\340@\24\311DB\203\3e&"
"\65\70PFB\203\317\264\203\201L\26R\14\6\272X.\226\33\14\64\0\212\32\17F\7S*\31"
"Jfb\203\7\301x\345\340@\31\257\33|\27o\7\216\42\17F\7S*\31Jfb\203\7\272"
"\350\340 \31O\16\36\306\203\203\7\262D\66\23Ti\226\3\244\60\17F\7g&\62\330DB\221"
"L\42\25I\14\276\211EB\261H(\64\230\14D\271T\60\65\20\205\64\203\13M(\223\310\204R\3"
"Q<\3\251-\17F\7S*\231\211\15\36\4\223\203\3en\360\225$\21\32\204\42\261Pj\360"
"Q*\222\32D\22\221\201,\22\12)j$\42\1\275\42\356E\7\307`\61\230u\222\211dJ\62"
"\221L$\23\211U\31%B\211\210$\42\31\215b}e\314&\317\305\7\303\7\232\222L(\222\211"
"\304T\252D(\221\221D$\261\221\60\71\70\220\245\222\241d&\232I\15>\322)\316\305\7\303\7"
"\212P\42\24\311D\62\221\210$\42Jd\24\21IB\263\12\311\242\203\253\134jp\225K\345R\203\23"
"\0\200\1\42\17F\7_<\24\32\34(\63\321H\66\221\32|\247\16\213b\33\321d\220\215\307\202\251"
"\344`\2\200\3 \17F\7_<\24\32\34(\63\321Hh\360a:<\30\250\226\223\370`\20L\305"
"\213E\0\200\5%\357\305\7_<\24\32\34D#\331DX\66\370,=\30\344T)E*\243\31\14"
"\202\251`*\70\30d\0\200\25\64\17F\7O*\222*\211\14\6\221\252\314`\240IE\62\3M$"
"U\222*\211\14\6\221\252\314` \31EB\212L$\223\210\364(\223\12eR\231P\4\200\63#\357"
"E\7\303\217R\301Tp\60\10\246\202\251`*\70\30\4S\301T\60\65\20\15\6\241A,^\4\200"
"V&\317\305\7\303\7\232\222Lf \311\64\311d\6\222L\223Lf \31(\66\361\344\340A\60\71"
"\70\210\346\6\37\200^\61\356E\7\303\311`\20\212\204\6\203\310`\20\212\204\6\203\310`\20V\14\16"
"\22\232PF\63\330hB\31\315`\243\11e\64\203\215b\224\21F\4\200w>\17F\7_&\63X"
"d\64\221\301@\21\211h\22%\25\221Dh\220(\11E\6\7\212H,\21\31$\6\211\222\212H\242"
"\244b\20\311D&\11\315 \21IH$\211\201\242(\25\21\65\200\211)\15J\7[\70\66x\240J"
"\251R\242DH\24\311h\22\221\210\244\211\42\223\22%B\242HF\23\212HR\21ER*\200\245\64"
"\356E\7\307@\61\230d\22%\65\211\222\232DId\240(\251I\224\324$\6\223L\42\67P\344\62"
"\211\134&\221\313$R\211L\42\225\310D\6\203\214\20\200\262$\17F\7_<\67\370*\223L\311\6"
"\203Hd\32\32\234\345b\271\330\340,\27\33\234\345b\271XL\3\200\272\71\17F\7gl\20\212E"
"B\261\310\340@\21\11\305\6\241X$\61\30H*\42\231HE$\23\31$\42\231HE$\23\251\210"
"d\42\25\221\204&\22\212EB\251\210(\5\200\303$\354I\7\303\7\241\224(\65x J\15\36\244"
"\7\7\221`dp\20\11F\6\7\221`$\30\311)\0\200\314+\17F\7W$\33\311(\6\223A"
"\60\222\215\244\62\223\324 \222\31\254\302\203\201.\226\33\14t\261\334`\240\213\345b\271\224\10\200\370;"
"\16F\7_n\20\311E\352\42\221\301 \21Id\42\211ABR\21Y(\232$\42\211&\211\12E"
"b\220\250P\224$\64\211\222D(Q\222\30,J\202\211H.\21QI\0\200\375\64\17F\7O*"
"\230\312E\62\21M\311f\260(N\204\22\203I(\21\312\14\24\241Hl\60\211\205\42\21I(\62\32"
"Lb\241H(\21\212\204\22\31\315@\201\10\66\17F\7sf\220\22E\42\233H\243L\244b\64\210"
"$\62\221\26\231H\13E&R\241\310\14\42\211Q\244\242(RQ\24IDj\42\211HMDS\21"
"\21\25\201\63\65\16F\7g&\61Hd\42\211H\27\221\26\221F\221A,\23)RD\42\222DI"
"E\213A\244E\244DQR\321IED\21\211\210\22\221\310` Q\2\201x\66\357E\7\307 \62"
"\330D\212\62\221\310`\23)\312\14\42\241L$\62\330D\262\221\301\201b\20\11F\22\203\201$\42I"
"D\372\213H&R\23JD$\31\11\0\201y\63\17F\7cn \311e\42\203A\42\223\10f\22"
"\203\315`\221i\62\320\224d\232\14\64\3M,\23\31h*\64\65\222D(\23\22e\42\222\232AJ"
"\201\323;\17F\7_&\264\30\34$j\212\22\231\212H\42\27I\34\34$Z\205\22\25\3Ed\321"
"\223D\305@\21I\64Id\22\25\203D&\321I\242\213\201B\221PE\26\252P\0\201\343\42\315\311"
"\7\303\7\252X*\226\212\15\16$\311H\62\222\214\14\16$\251X*\226\212\245b\203\7\1\201\350\70"
"\356\305\7cj\60IE\62\203\201$\23\213D\6\223\301\42\23\11%\62\221Pb \31\14#\321H"
"b\220\30H\22\221DD\222\210$\42\203A$\21I\15\22\203\0\201\352\26\353\315\7S\64\231\33\274"
"\264\34<H*\7\17\222\226\203\7\201\363\34\317\305\7\303\317\42\331L\62\225\313\14R\203Q<\31O"
"\16\16\224\361\272\301\7\202\10\60\17F\7S:\254\30\34D\252\42%\203A$\62H\15\42\25\213H"
"\213&\221A\242b\20\251XDZ\64i\25I\14>\12\311t\22m\2\202\14\31\357\305\7\253t\67"
"\230\267\33|\27/\35\234\345b\271X.\66\270\1\202\16!\357\305\7_<\235\310f\222\221\62MF"
"\242\30\134\350\342\271\301\367\230\301Y.\226\213\15n\0\202*\62\17F\7W(\230\212\15\64\261\314\340"
"D\22M\224\14B\211\222\242\310\42\22ZDJ\66\221\42I\243DIQ\242\244&\224\310$\212\22\231"
"\204h%\202\71\64\17F\7Sh\220\12\206\6\222\242L\244H\322(\321&\224h\224\211\254\62\213\304"
"@\61\310$\62!I\42\23J\264\11%\332\24%\62E\211\201$$\4\202o&\17F\7[<;"
"\30\350b\271Xn\60\320\305r\261\334`\240HER\65e\241D.\25Lhr\62\311T\202r#"
"\16F\7Wz\260\13\345B\271Pl\360(\23\252\11\325\204B\203\203P\272\64\22\215D\63\203\3\1"
"\202\261)\17F\7Se(\65x\240\12%\65\321H\64S\226\251\12ER\242D*\21REB\311"
"P\62\224\312\204R\231\324`\202\270\42\17F\7W(\31\12\15\276\12%Cy\330\340@O\62\370,"
"\36\211\206\202\221\201h\260\212G\0\202\275#\17F\7W&\232I\15\276\312\344q\203\3Y(\31J"
"\206R\203\17\305\211\250$(J\315\322*\0\202\345$\356\305\7O\254\315\340\201&V\222I\246s\203"
"\7\252pz\60P\311B\211X&\22\213d\6\3\11\0\202\346\37\357\305\7S*\230\12\15>J\5"
"#\265\271\301w\361\322\301Y.\226\213\345b\203\33\0\202\361 \17F\7S*\230\12\15>J\5#"
"\265\311\301\201\250\62\370,\221\315$S\61\235D+\203\66(\17F\7S*\230\12\15>\212\24F"
"J\23\331L\62\25\323d$\212\301\205.\234\250\214Dd\231PF\224\12\346\0\203I\37\17F\7W"
"(\31\12\15\276\12\345q\203\263\134lp\226\213\15N\343\271\301w\361:\0\203w(\17F\7W("
"\31\12\15\276\12%C\301\370\340@\23LE\6\221\220\244M\42\322_E\6\221T\60\25L\345$\0"
"\203\334'\17F\7W(\31\12\15\276\12%C\252\301@\222\14\245B\221\134&\221\315\15>\333&\12"
"%\21\315(\264\313\1\204=*\17F\7W&\232I\15\276J\324\205\242\231\301*\323*Q\225)K"
")d\221Tj\360$\223\12eR\231\320`\220I\3\204I%\17F\7W(\64\370*\24\214T\15"
"\36\244\42\205\221A\60>\270\314\15>\333&\12%\21\315(\264\313\1\204W&\356\305\7S*\227\312"
"\14\36\210\42\245\221\324\340 \231\10\15\36\350\242\203\201J\226Q\14\6\262\316\6\3\11\0\204\270)\17"
"F\7W(\64\370*\224\307\15\6\212l$\63\220\24&\22\302H\231&#\21\251\364\200\237\324D\62"
"\232\222D*S\205\65\63\17F\7W(\31\12\15\276\12%\302\221\314\340A$\27K\14\6\221L\42"
"\322&\61\30$B\211PB\224\30,R\211HE\223\301 \321.\263K\5\205\254,\17F\7W("
"\64\370*\224ME$\203I(\21J\304\6\3Y\42\224\220H\6\233\134n\360U\242\62R\246\311H"
"T)]\16\206k#\16F\7[\272rp\20\312\204jB\65\241\232Php\20Lg\222\241`d"
"\220\32h\22\203d:\206\225#\356E\7\303\7\262tp\360N\33\11*\42\232Mh\62\270\312Te"
"\252\6\227\31\341@\221\30\354\2\210@'\317E\10[<\235\35\34\210\42\65\241HM(R\23\212\324"
"\204\42\65\241HM(R\23\212\324\204\42\65\221\301\7\210F'\17F\7_::\70\20E\62\221P"
"$\23\211\14\276\254\251\212\210\62\12E\323H\60\222\211eB\255\6\251x\16\210L%\17F\7S<"
"\62\30\204\342\351H\64\223N\14\216bu)](\221\313Dr\261\134,\27\313\305b\32\0\210S\66"
"\17F\7OiF\61\310\204\22\271D$\21\213\324e\6\7\232\242TF\23\212$J\62\222DIE"
"$\21I\204\42\211H\42\24ID\22\241D$\324\67\22\0\210W/\17F\7O$\33\311\14\62\211"
"\301.\223\14\5#\265\203'\231T(\223\312(\6\223\212L*\224I\205\62\11I(\62\12\355BA"
"\11\0\210[:\17F\7O$\233\30(\66%\271L$\26\31\14B\231tbp\220Id\42\241\310"
"@\222Qe\42\211\304`\220\10e\22\231P&\221\11%\6\203D(\225\11\245\42\22\0\210c!\17"
"F\7_\274\335\340\63q\42\224\213db\231Hjd\22J\246\202\261\134b\223\332E\264\1\210h#"
"\17F\7_<\70x\20\214'\7\7\312xn\360U\42\224\322D\62\213L\42\30J\246\202#\315R"
"\210\301\65\17F\7Se(\222\31\14\22\231T(\223\12\245\6\37U\15\6\212L(\26\311$\42\25"
"\31EM\42\222\210\244j\62\212L\42\222\210hD\31\211(\225\0\210\305*\17F\7SY$\224K"
"\14\16\62\211P\62\224\33\245$\211\301 \26\211\347\6_E\312\64\221\314\42$L\5\7\31\315R\210"
"\317&\17F\7_p\360 \17\32\234e\312\6g\231\262\301irp\240\314\15\276\212\204\22\3Q$"
"\66\210\250v\3\210\334\64\17F\7O,\221\212EB\221\301G\311P\60\62\30\244\42\215\42\222\32E"
"b\60\210$$-\42\211\222\242\310` \312D\212\62\221\242L\244(\23R\0\210\375\65\17F\7K"
"\42\27\32,\42\231H(\222\31\14\22\221\232P$\63\30$\42\231HE$\23Ihd\221\334\340\253"
"D&\246I\204\26\241d*\67\10i\244\2\211\7\60\17F\7O(\31J\206\6\17\22a\305@\226"
")\313\14T\221D&\225\210\14D\243X\242d \251\321\244\22\222D,&\13IR\21\225\0\211"
"&\317\305\7\303\257\62\321L\64\23\33<\210d\232d\232d\232\24e\42U\203H\42\31\221F\262\221"
"\301\203\4\0\211\201%\357E\7\303\7\262H\66\22\34\34\244\42\255\42\255\6\7\311\340\340\253L\62\24"
"\34$\322S\215h\220\213\0\211\213'\357E\7\323`\240\213\345b\271\301@\27\313\305r\203\201.\226"
"\213\345\6\3e$\33\211fB\31Qh\220\33\10\211\217\60\17F\7O<\63XeB\231\301 \224"
"\312\14V\231P*\23\212\14\36\244\62\241\224$T\21\31\214\42\25\261HE\252$\223\10\225hd\3"
"\211\226\61\17F\7O<\63XeB\221\301\42\224K\14f\221P,\22Je\6+I(\244(\312"
"$\42\203A\244*\21K%b\241HM\223L$\65\211\232-\17F\7K&\24\313\224e\42\241\301"
"\3E\70\21\31\14$\241Xn\60\320\305r\203\201.\226\33\14\224\221h&\25\21\245v\203\1\211\247"
"-\17F\7\307`\20IER\3\305`\22\13%r\203\311@R;\70\220\345b\203\263\134lp\226"
"\213\15\16\63\241\214(\64\310\15\4\211\252\66\17F\7O<\64X\14\6\211P$\23\11e\42\221\301"
"&\221\11%\6\203D\250h\60j\61\30$B\231\203\215\42\223\10%\42\25\231H(R\323$\223P"
"\15\211\263\70\17F\7K<\65\230\14\26\241H\42T\21\11\15\26\203\243L\244(\223\310\14&\203E"
"(!\311\204\42\203\305`R\224\10\15&\211P$\23\251\30\14\62\221D(\65\211\322$\15F\7W"
"x\240\13\245D\241\301\203H\250$T\62\70\220\204JB%\203\3I\62\222LD\23Q\3\211\343\70"
"\17F\7O|\61\30d\42\241H\253Hb\60\210d\42\211H\42\242ID$\251\301\242*\21I\14"
"&\211\210$\65\330\244B\203\213P&\25\312\244B\231PH\23\2\212\0\35\317\305\7\323`\220\7\15"
"\276\307\14\356\311\6\367\260\301Y.\226\213\345b\203\33\0\212\10(\17F\7kj\260\211\207\6\3I"
"<\65\330d\7\3ij\260\211\247\6\233T(\223\12eR\241Lj\260\211\207\0\212\16(\17F\7"
"sf \213G\6\203Tr\60P\14d\361d(\63\220d\242\231\314@\226)\313\224e\312\62\3Y"
"Z\2\212\23:\16F\7wb \11\5\23\221\301@Q\22LD\22\3I\42\22LD\202\211Hb"
" ID\202\211Hb ID\22\231H\42\222\310D\22\221D&\221J\14\24\251X\1\212\30'\317"
"\305\7\307@\62\230'\6\3U<\62\230%\7\223\301\42^\67X\344B\211\134(\221J\204\42\241\304"
"`\63\20\212*+\17F\7kj \212\207\6_\306\6\232xl\240\31H\63\321Ld\240)\311D"
"B\221L$\24\311$R\221\301*\27\322\0\212-/\357E\7\307@\62\220f\42\203A\42\23\315$"
"\22\3E(\21\213)\6z\300A\64\223\31H\212\62\25\241L(\225\251\10\15\24\232\234L\212\61,"
"\17F\7cn \211\307\6\203\304`\30I\15\24\221h&\65\20%\7\7\321\324@\224\312\204R\231"
"P*\23J\15D\361\20\0\212\63/\357E\7\307@\62X\206\22\203A\42\224\14E\6\222Pr\260"
"L\244\6\222D\70\221\32H\212\62\221\242L\42\224\251\10e\6\212T\256\0\212<.\317\305\7\307@"
"\61\30dC\203A&\236\32(\42\331H\66\62\210\14\24\221l$\65PDR\231D$\225IDR"
"\231D$\65x \212U-\357E\7\307@\61\30d#\211\301@R\30Id\6\222DiB\233H"
"\15\36HS\3Q*\23JeB\251L(\65\20\305C\0\212^.\356E\7\307@\61\30\244\7\3"
"Yn\240H\14t\351\334 \222\30(\42u\221\212\201\42R\221I\14\42\211L.\221\311%\6\272\254"
"\2\212f,\17F\7oh\240R'\22\203A(:\30(\6\252xr\60\32Hj#\241\201\244("
"\23I\324\224H\22\65\243Db\240\223\7\212i)\17F\7kj \312\16\6\211\301 \23O\15D"
"\321\301qf \13\16.\6\212P\246$\323$\323,\63\220\245%\0\212q-\357\305\7sf \222"
"\16B\203A&\236\32\210\242\203\213\201(^\65P\14\6\221L\42\25\311$R\221L\42\25\31(\6"
"\203\4\0\212\214-\17F\7kj \212\207\6\237\246\6\242xv\60\210\14Dy@h\240h\224I"
"\324D\62\211\242D&Q\222H\14&u\241\11\0\212\215\64\357E\7\307@\61\30d#\211\301 Q"
"\22\315D\6\32I\62\21\311i\64\3M\36\220\32h\22\241L\242\223L\242(\221I\224$\22\203I"
"E*\64\1\212\225\64\17F\7{b\220\330(\23\223\301$\223\14e\6\211L\42\67H$\206\211\232"
"A&Q\27I\324\14\22\335DZd\42\221\301@\21IDb\3\221.\67\212\236/\317\305\7\307@"
"\61\30dC\203A&;\330\14\64\221l$\63\320D\202\203{\304@\62\230d\42\241H&\22\212d"
"\42\241\310@\62X\0\212\240\62\17F\7oh\240J\204#\203\17r\231\320@\221\211.\12\23M\6"
"\212\16\23\11\315@Q\222\251(\311T,\24\65\211H\242b\60\311\250\42\251\0\212\244\62\357E\7\307"
"@\221\30$\23\221\310`\240\210$\23\221\314@\221\30$\343\301\201b\60\317\14d\231\314\340 \221I"
"\205\62\221Lf \11\5S\11\0\212\254\60\17F\7_(\264)\315D\6\203H\42:\330\14\24\241"
"d(\63P\204\222\203m\42\64\320$B\231\212P&R\224\211\264\30(\62\221Xj\212\255.\17F"
"\7kj \212\16>\212\247\6\212\301 \17\34\14\24\3E,\227(I\14\64\211P\246\42\224\211\24"
"e\42-\6\212L$\245\32\212\262\60\357E\7\307@\61\30\4#\25\203\201\244p\60\210\14\24\221\302"
"H\341`\20\31\210\242\203\213\201f\224\211$jJ\22\65\25\221\222\301\246\64\4\212\277\60\356E\7\307"
"@\61\30\344\42\221\301I\335`\220\30(\42u\221\272\301 \61P\244r\211Eb\240\350M\242\67\211"
"\304\242F\226\30\314R\61\1\212\307\63\17F\7kj ID\222\211Hb\60H\264L\24\15\64\211"
"l&\63PDj\63\301D$\62\220$\42\65\211\310\246E(\23\311d\6\212TL\27\212\326\63\17"
"F\7gl\20J'B\203I\42\233\11\15\22\203A\256\36\220\30$\6\203`\242\315 \321M$\61"
"\30d\42\211n\42\211n\6\211n\42\211\220\4\212\370-\357\305\7gl\240\211$\7\223\301 R\233"
"\10\15\64\211\344\340\62\66\220\14\244\231\314@\241\251Q\14\64%\231&\231\314@\62\220\0\213\33\61\17"
"F\7c$\64\310D\222\203OJ\7\203\310 \23\11\16\16\242\251Ad\60\10FJ\6\221\301 \322"
"'\203\3E\244*\62\210\244\202!\5\0\213\35\70\17F\7c(\62\210\244r\203Lb\60\210dr"
"\221\301b\220\30dr\221Ln \211\14\22\221D]$Q\62\270\211\324h\42-\62\221\212H&\62"
"\320TJ\24\0\213X;\17F\7_&\64\210dt\203A\42\61PD\22\205\211\242A$Q\70\70"
"\310\206\6\211A\242.\222(\31$\6\11M$\21\251\211$\42\11EIb\220H(\6\251\210\62\24"
"\213f/\17F\7KMj\60P\344\42\221\301 \62\30d\62\203D$\221I\264\211-\22f\203\224"
"\36\360\201\36\65\330\3\7\3],\67\30\210\0\213p\66\17F\7c&\63\10%\242\203Ab\60\312"
"\16\66\203Trp\220Lh\6\211I\42\31\11\15\22\203\213H&\222\210\324(J*\66\211\304 \23"
"I\350\24\231\0\213w\62\17F\7c$\64P\14\6\311Hf\60H\14\206\221\324@\61\30J\262\203"
"\315@\21\311\16\6\221\201\64\63\30h*$\241LF\65\220(\202\243\1\214\67#\357\305\7S*\30"
"\253\213eB\335\204\22\331L\62\25\323I\24\203\13M.\226\213\345b\271\330\340\6\214F\35\317\305\7"
"\307\340A\236hp\226\213\345b\271\330\340\36\227J\206\222\231tl\360\1\214J'\357\305\7W&\67"
"\70\20E\62\221\320\340@\24\311DB\203\3=d\360=fp\226\213\15\356R\311Lj\360\1\214a"
"*\17F\7W|\240\314\4\65\271\301\253P&\25\312\244\6\7\301\134*Q\223\231,t\212\262\211$"
"\250\310H\6\231\224L\7\214\235!\354I\7\313\340&\227\311er\231\301M.\223\313\344\62\203\233\134"
"&\227\31\134eD\262\204\62\214\240#\14J\7Sv\260\12\245B\251\301A\242.\223\313\14nr\231"
"\301M.\223\313\14\256\62\42YB\31\214\241\61\17F\7oh\240\12eR\241L*\64x\240\310\244"
"B\231\220h \22e*B\231\212P&R\64PdR\211\242T$\25\312\244\62I\15\0\214\247&"
"\17F\7W&\231\212\15\16\62\242Lb\25\312idz\300\263\134lp\226\213\15\316r\261\301]J"
"\64T\0\214\250'\16F\7W$\231)\322\14B\211LJ\222\11\25\15\64\203\253\134jp\225K\15"
"\256r\251\134jpe\243L\0\214\254$\17F\7_r\360\60:\70H\346\6\337\203\6\3],\67"
"\30\350b\271\301@\27\313\15\6\302\214\354\2\214\257\63\17F\7kj Je\22\203A$\223HE"
"\6\212T$\23\315$\6\3\305@\224\312\204R\231P*\23J\15D\261D*\26\11\245\62\241B\21"
"\0\214\264&\16F\7_r\60\220e\42\261\301@\32\33<\320C\6\3Y\331` +\33\14de"
"\203\201N\244\31&\0\214\267!\355I\7\303\7\232\32M\315\340\201\36\360(\27\32\34\345B\203\243\134"
"hp\226Q\311\24\322\0\214\270+\17F\7S&\222\313T%\6\7\21U,\21\213$\42\271Dh"
"p \312\305\6g\271\330\340,\27\33\34ft\62\215\64\1\214\273(\15J\7S&\64x\225\211$"
"\6/\62E\203\7\231P&\62\70H\354B\203\243\134hp\224\13\15\256\64\223\241\0\214\277(\16F"
"\7[r\20\31Lr\221F\221\232H&\62P\204\6\31\243\301U.\65\270\312\245\6W\271\324\340L"
"\244\31\12\214\300*\16F\7O:\64x\220\10e\42\211P&\222\10E\62\211\301\42\42\214\14\256r"
"\251\301U.\65\270\312\245\6g\42\315P\214\303*\17F\7SJ\26\31\344b\251\305\340@\22\313E"
"\6\3Q|p\27\313\15\6\272Xn\60\320\305r\203\201\60\244\332I\0\214\307)\16F\7G*\250"
"\31\14b\221LH\23\311Xd\214D\203\213L.\65\270\312\245\6W\271\324\340.#\223e\224\11\0"
"\214\333+\17F\7S*\65X\14VE\203o\22\231D*\223\310D\24\203\13M.\66\70\313\305\6"
"g\271\330\340\60\243\223i\244\11\0\214\336#\16F\7K\246,R\64\370X\63\330\204\352\6\3Y\331"
"` +\33\14d\235\15\6:\215h\247\0\214\352-\17F\7W,\63\310\14B\261\334`\61\30$"
"\42\231H(RS\62\70\253\33\14t\261\334`\240\213\345\6\3eD\250\22)#\0\215d\42\17F"
"\7_<:\70\215\327\15>\213\4#\25\261H\253H\243L$\23\311\64\313$C\301\220\12\215p\42"
"\17F\7_<\71\70P\306\353\6\337E\63\321L\64\63Xe\222\211H\62\222\10\206f\301\201\2\215"
"w,\17F\7S<\64\220\14\6\251\302T\60\25L\14\36\250B\271D(\227\30$r\211P\311*"
"\23I\304\6\211\210\64\64\13\16\6\215\263#\357E\7\317\340,\27\313\305r\261\134lp\232\14%C"
"\311\320`\244I&\42\301\314\60%\13\16\6\215\357\64\17F\7cn \311e\42\3MI\246\205$"
"\64P\64\213dR\211T\42\224\10e*\26\251H\42\222\30(\32e*\42\211L\305$\223\31\15$"
"j\0\216\253)\17F\7_:;\30\350b\271Xn\60\320\305\62\231\301@\22\212%R\61\331` "
"\32\244\264\212\244&\65H\245E\0\216\312\37\17F\7_<\70x\20\214\16\316\62e\231\262\301Y\246"
",S\66\70\315\15\276\213\327\1\216\315!\357E\7\307\340A$U\222\252\31\34(\223\203\3Q\243\301"
"\201\250\217\6\7\312\334\340\273x\16\216\342\60\17F\7S<\64P\14N\263\203e$\221\214$\6\27"
"\203M*\222\310\244\42\211Lj\60)\13E\42\203\201\42\223\312DV\211\201&\224\14\216\375\63\17F"
"\7O<\63\30$\6\203D\250*\222\31h\22\241DQ*Q\242\320\14\6)E\243T\242(\65P"
"\14\6\241Xh\60\310\344b\271\310\340&\13\217*\70\17F\7O,\27\13\15\6\221D,\25\311\14"
"$\241H\242b\260h\241\34(\6\203H\242O\22}\62P\14\6\241L\242\305`\240h\224I\64\312"
"$\32eB\12\0\217\70:\17F\7O,\27\13\15\6\221D,\224\311\14\24\203A$\221\320%Z"
",J\6\212N\22}\222\250X\224\14\24\35e\22-\6\7\211\242L\242Q&\221\11e\22\21\5\0"
"\217\236\63\17F\7W(\247\12\15\42\203\201(\23J\205\62\251P&\62\30$\42\261\310\340&\226\32"
"\210R\231\304`\20\311\204R\231P*\23J\15D\361\20\0\217\262-\17F\7W&\67\70\20E\62"
"\221\320\340@\24\311DB\203\3=h\360&\236\30\34\305\7\17\22\221\232P$\223\10e&\262\203\0"
"\217\272)\357E\7G\36\20\31\334\244B\311P\62\224\14%\6\241\66\251P&\25\212\304B\211\134H"
"\27J\244D\31al\60\20\217\321*\17F\7s&\250\312\14r\231x|\60\320eB\203H&\27"
"\311\344\42\231\134\42\224K\204r\252X\42U#\214\15\6\2\217\324-\357E\7Ghp\222\211f\342"
"\361\301 \230\310D\6\221D&\25\251\210E\62\262D(\227\210(b\12QE\60\222\21\306\6\3\1"
"\217\360+\17F\7g\42\224\213\204b\221P,\71\70P\306S\203HE,\322*\322*R\23Jd"
"\212D\271D(\226\21\306\6\3\1\217\367*\17F\7g,\24)\252\210\204*\212\223\203\3\341h\20"
"\332e\22e\231DY\244U\42S\224\312%B\261\214\60\66\30\10\217\375*\17F\7g\254\60\63X"
"eB\311P\62\224\34l\6\221ld\60HER%\251\222TJ\61\30\204\22\331\214\60\66\30\10\220"
"\0-\357E\7Gh\260\312\204R\231Pr\260\14%C\231Ad\260\10EZE*b\221L.\62"
"\211\15R\241D\60\222\21\306\6\3\1\220\1(\17F\7[\250*\223\12Eb\245\203\323xj\220\12"
"\16\336\244t\241H,\23J)b\231D\60\222\21\306\6\3\1\220\6*\17F\7[\250*\223\12E"
"b\211\301\201\62\33)\214\224\14\42\255\42\255\42\203A*\322\252P\23LD\202\31al\60\20\220\32"
"\62\357E\7Gf\60\20\325\244*\242\203\201.\222\311E\62\211Ad\60\20EjB\221\232Pd\60"
"\20EjB\212H\246\242$\42\311\10c\203\201\0\220\37*\17F\7g,W\61\70\220\304\342\321\301"
"Y\246b\220\310\24%\6G\241]&Q\26i\265\311H\22\241XF\30\33\14\4\220 *\17F\7"
"g,\24\311e\42\271\314` \313D\63\311\301\347\221\301 \25I\225\244JR)\305`\20Jd\63"
"\302\330` \220#,\17F\7g,W\61\70\220\304\262\203A\60R\30)\31D\6\203T\244U\244"
"Ud\60H\25\16\236$B\261\214$\25\33\14\4\220\61\65\357E\7Gh\60\320\224d\232dr\203"
"E.\222\311\15\6\212A$\26\212$\6\211P$\21I\204\42\211H\42\224\210\14\22!a&\221\223"
"d\204\261\301@\220\62\61\17F\7_&\224\312\244\62e\231\301@\246\11&\62\321\301 \63\311\344\42"
"\231\134d\60HE\62\271H&\226H\14\6\232\210\62\244\313\15\6\1\220J\61\17F\7[(\31\352"
"*\61\70\220dJ#\3\335(\61\210$\62\251H\42\22KD\6\203L\42R\246\211\304B\221T\42"
"!\21e\204\261\301@\220K\62\357E\7Gdp\220I\204\62\25\241Ll\60\320F\7\3\311 \221"
"\211\244\22\203\201*\221\211\244\22\203\201\252.\61\70\310D\62\261\220.\67\30\4\220N\64\357E\7G"
"h\60\10eR\241Ld\20\214\24F\352\6\27\203D.\224H\14\24\241DM\42\224\250I\204\22\211"
"\201\42\224\310e\22\71IF\30\33\14\4\220S.\17F\7[*\223\312\244\22\203\3I*\235\36\14"
"\202\251\310 \62\30\244\42\251\222\301 \25I\225\244R\212\301 \224\310f\204\261\301@\220T+\17F"
"\7g,W\63\30\204b\311\301\201.\223M\204\6\211\301Q*\30\31\14R\205\211\301\221(\227\10\305"
"\62\222Tl\60\20\220`\61\17F\7c.\26\214\14\6\242Ttp\220\207\15\6\222A\42\226J\14"
"\6\252\214&\25I(b\211H\42\247\211\210\22\231\220\42#\214\15\6\2\220i\64\17F\7g,W"
"\62\70\210\204J#\311\301@\27\311$\6\221\301@\24\251\11E\22\203D(\222\210$B\221\304 \221"
"I\224e\42*IH\227\33\14\2\220x.\357E\7Gd\220\30\204\272\30$\6\261P\62\243\211\15"
"\22\203\304\246,\61\70\312\224e\312\6oB\211X\42\241\21Ed\221\324\340\0\220z/\17F\7g"
",\64Xe\42\211Tf\60N\16\16\362\210Ad\60\213\204b\221\301,\22\212E\6\63E(\225H"
"\14F\31U$\66\30\10\220\341\61\356E\7\307`\62\10E\32EZ\14\6\212\252HD\26\251\310\14"
"&E\251H&\226\211\14$\231\204&\222Ih\42\26\231HB\63\220\244C\0\220\350\67\20B\7S"
"\36\220\32H\6\3E\246(\222\11E\62\221T$\23I%B\211\314\340\42\22\316d\63\231\301$\24"
"\11E\64\221P$\21)\212D\64\203I\36\220\2\220\365\65\16F\7_V\62\210\14B\221T(\22"
"\31\134\204\22\221\204*\21I\224\14\16\42\231D$\221\211$\42\211Lbp\23\12IB\25\252\204\42"
"\267I\311B\0\220\367;\17F\7O<\61H\14\62\221\212H&!ID\22\222\201\242H\21I\310"
"\22\221D\325`\21\311$D\231DD\21\311\14\24\221D\246\42\222\220\264H\330D\254\42\242\312\20\0"
"\220\375\65\17F\7S<\22\31D\6\203HU\244U\42\223\210%\62\211\310\340]*\221\32H\212\62"
"\221LD\23\311$\22\3IF\222\211H\62%\11\321@\22\17\1\221M\63\357E\7\303\7\242D."
"\224\310E\6\203T$\321*\222h\61\220$:\223,b\242D,\225\210\15\6\211X*\21J\244\22"
"\241\304`\20\311d\7\1\221R\61\17F\7K\36\360M(\21N\204B\203\223L$\21\251\211$\42"
"\261H\42\22J\224\24%j\66\21Y&\62\70\311\344\42\231\134\42\64\270\210\3\221x\65\17F\7k"
"h\60\220\310D\21\221d\260H\14&\211PB\21I\224$\24\65\22EB\21SL\6\31M\42S"
"\224h\63\30DD\275Id\6\223LP\25\221\314\33\317\305\7\313\340@\324G\203\3Q\377hp\240"
"\214'\7\7\312xn\360\1\221\315 \357\305\7\253j\60\20\347\6\337E\7g\231\262\301Y\246,S"
"\66\70M\16\16\224\271\301\7\221\316\60\357E\7\307\340A$\21Ie\22\221D$\64\230\250\22\221L"
"*\21\31\134\14\66\221P,\221\212i\6\203L.\226\213\345\6\231\320.-\2\221\317!\357E\7\317"
"\340,\27\33\234\345\62\203\357\61\203\263L\331\340,S\66\70M\16\16\224\271\301\7\221\321#\357\305\7"
"_<\235\310f\222\251\230N\42\31\14\42\272xr\360\60\232\251\213dr\221\252\301\203\4\0\221\335-"
"\17F\7S*\230\312\251r\211P,S\65\30DB\231\310` J\205\6\3I\60U\222\310\304\22"
"\242X\42\25\334\304V!a\10\222D\63\17F\7O,\27J\304\22\231D,\22\31LB\222\320`"
"\21\311E\62\271\314\340\233\134,\24I\204D\11Q\42\224HER\223LH\223Jht\1\222q\66"
"\17F\7O,\27\253H\305\42\221\301 \21J\304\6\223\262P$\26\212d\6\203D$\26\212d\42"
"\211H\42\225\320$j\22\21I\321\242b#Il\66\301\0\222\200\61\17F\7S<\63Pi\252\22"
"\221L(\223\30h\6\3M$\323,\63\220\14\6\211\222T&\21i\321QBR\225\310Dr\213F"
"\66\11\221,\222\205.\16F\7O:\63\30D\22\221T\244\42\225H\15\36$R\231\252L\305\301E"
"\233\212\12I\242\261\250\220\244\62\213TD\223Z\205\4\222\255\64\17F\7O*\21KEB\211P"
".\222\31HB\203\324`\63\20E\6\301Tbp\220Q\244\42\203H\213\220(\241\252\210d\24\241M"
"\242\306\205F\226\0\222\374\67\16F\7O:\63\30D\22\221T\244B\222(RT\14\6\211HMf"
"\60\310\224D\6'\65\31Eb\222H(\22\212\204d\60H\224\250\62\213TD\223Z\205\4\223\62\64"
"\17F\7S<\62X\351R\211\304`\224Ie\6\253H&\62\30\210R\221\304` \251\312$\66\221"
"Dd\225\320(B\211\210\42\222\332\224\310B:\21\0\223\341\60\17F\7O,\27\253H\14\6\232H"
"\42\224\211E\62\203o\342\231\301d\60\20\245\62\203IEQ&!\31l\22\251Dl\322DS\262Q"
"\15\225w#\357E\7\323\340,>\30\350\342\203\201.\36\35|\224\10\345\42\231\134&\21\14%\23\222"
"\334J#\25\225\200\36\356E\7\303\311`\20\212\204\6\203\310`\20\212\204D\221\320`\20\31\14\302\376"
"\255\0\225\211,\356E\7\303\311`\20\212\204\6\203\310`\20\212\204D\221\320`\20\31\14b)YJ"
"\62\30HTF\211\224&\222RhRn\5\225\213/\356E\7\303\311`\20\212\204\6\203\310`\20\212"
"\204D\221\320`\20\31\14\302\222\301@\42\212\204D\221\320\340AB\24\11i\212$\241\220V\225\223-"
"\356E\7\303\311`\20\212\204\6\203\310`\20\212\204D\221\320`\20\31\14\302\232\301F\23\312h\6\33"
"M(\243\11e\64\203\215X+\225\242\62\356E\7\303\311`\20\212\204\6\203\310`\20\212\204\6\203\310"
"`\220\11eD\221\220d\60\220\250b\252\230bp\220P%B\242LF\223\212H\202\2\225\243.\356"
"E\7\303\311`\20\212\204\6\203\310`\20\212\204\6\203\310`\220\212\211\6\32\311$\244\262\221h\24\62"
"\205f\260\321\204\62\232\301F+\226\62\62\16J\7cj\20JEB\251\310\340E*%K%R%"
"\241\201\42\23\11%\62\221P\42\23\11%\62\211Tb\20I%B\261D&\26\251\322\0\226M\61\16"
"J\7cj\20JE\62\3I\211&\222HH\22\31\231(\221\221H\22\11Md\222\12E\22\203\201"
"\42\322(\322h\61\70\20\206\202\241`\10\226P\65\356I\7\303 \62\230\64\212\64\212$\62\203\211\250"
"$\221\11EJ\6\203D&Q\223\310$\42\211H&\21ID$\211L\205$S\225\210T\211\22\31"
"]\0\226[\62\16J\7W&\64HdB\221D&\222\210$\6\203H\42\222\11i\212\22\221LF"
"\21\71\220\14#\241T$\224\212$\6\203\310\252.\25\31\274\6\226b/\16J\7gh\220\12E\22"
"\203\203H\42\247\210\344F\203A\242\66\22\215\14\236d\42\231H&\222Qd\42\231D\246U&\42*"
"\321\304\6\226d\63\16J\7cj\20JE\62\211P$\223\10%\62\65\232T$Q\61P\264\12I"
"B\251\310\340 \21\11\245\42\25\65\233D\244(\222IdZ\304T\0\226x\60\16J\7cj\20J"
"E\22\203A\244(\25\11\245\22\211\301\243H(\221\211TD\22\221\304\42S\225\251\312\14.\6\241T"
".\225\31\34\250\1\226z\60\16J\7cj\20JE\62\211P\244\246\42\222\212H\6\27U!Ed"
"\60\210TD\272\210t\61\30D\212R\243D(\225)JE\42:\1\226}\66\356I\7\303 \61\330"
"D\22\241L$\61\330$\42\241\214&\224ID\6\233H\64\62xR\27I\14\6\212\210$\21Il"
"\42\25\241H&\21\313DR\21\15\0\226\212.\16J\7W(\63\210dJ\32E\6/B\61Q\42"
"\223\250\220$:JL\232h\42\23E\244&Q\322\213\205&#\14\345R)\31\0\226\216\67\16J\7"
"W&\64Hd\42\211Hb\60\210TdB\211H&\244\251QD\16$\223T$\62\30$\42U\211"
"HU\42\22\31\14\22\233T\42U\221\32\14\22i\0\226\233\62\16J\7[n\20\31\14\22\221D$"
"\223\210$,\42\211\222\32E\13M\42\223\210\264\30,J\204\222hdp\220X\25E\22\231P\244M"
"\213\230\12\226\234\62\16J\7cj\20JE\22\203\201\42R\24I\204\42\31\305\340E\66\21\31\14\42"
"\25\251H\305`\20\251HE*\6\203\310\252fp\240K\345R\0\226\306)\17F\7O*\30J\16"
"\16\64\242\340\340@\223\10\305\42\203\203T(\71\70\20\346\6\237m\23\205\222\210f\24\332\345\0\226\321"
"\67\17F\7O*\222*\211\14\66\211X\42\62\30d\22\221\252HB\222\312LB\211\320`T\222\31"
"\234\304\64\203\215\42R%IDB\211P$\23\11\15\6\231,\0\226\343:\17F\7KM$\62\30"
"(\42\241H&\221\212D\6\203\304`\21\11E\22\223P$Q\22\32,\6\253L$\64\30Hr\231"
"\301bp\22KD\312\42\211H*\64\70H\3\226\350\42\357E\7\303\357\342\301\301\203H\252$\221I"
"d\42\375\257J\22\231D&\322\377\252$U\22U\0\226\352 \316\305\7\307\340al\360YJ\61I"
",d\251\310$\261\307\14\16\322\251\301u\321\340 \2\226\362'\356E\7\307\340]n\360UL\261H"
"\14\22\252Xd\221\30\344\61\203\203<b\360@\25I\206D\203\201$\236\0\226\373-\357E\7\307\340"
"en\360@\21K%\22\203\304@Q\226\312\14\22\3=jp\220\12eR\203\203T(\223\32\34D"
"r\261\340`\20\227R#\17F\7_<\71x\230\34\34(s\203\357A\203\201.\226\33\14t\261\334"
"`\240\213\345b\271\224\6\227Y\61\17F\7O*\230\332\14\6\211H,\23I\15&\301\314`\62\30"
"Dj#\231\301\3E\246$\63\320D\62\25\203\315@\23\313\224e\312\42V\0\227^(\17F\7W"
"&\232\211fb\3\315@\226\211f\242\231\330@\63\220e\242\231\340&\65\311\14F\225\241`*\27K"
"\1\227b$\317\305\7\303\317\342\351\350\340A$\323$\323$\63\320D\62M\62\3M$\323$\323$"
"\323d\360 \1\227i \17F\7W&\232\211\15\36\304\62\321Lt \216\16\316\62e\231\262\301i"
"n\360]\274\16\227\363#\357\305\7_<\70x\220\252\14%\63\251\301\367\240\301 \230\12\246\202\203A"
"\60\25L\5\7\203\20\0\230\2/\357E\7\327\340\203L.\25\314\14\6\241L*\224I\205\62\203A"
"(\223\12e\6\203P&\25\312\244B\231\301 \224\212\204\64\242\230.\1\230\6\70\357E\7G\305\340"
" \321(\225\250\211%J\6\223DI(\222(\11E\22%\203I\242$\24I\224\14&\211\222P$"
"Q\22\212$J\6\223L\205\246B\224\10\351\2\230\20)\357E\7\303\257B)E(\30\32\214Z\14"
"\6\211PIb\60JDB!\315`\324\217\6\243X\42\25\322d$\262\0\230\30\64\17F\7O<"
"\63\30H\22\251X$\23\13%\6\213\304 \22J\16\226\241\304`\22\312D\42\203M\244(\23)\312"
"D\42\203M\42\24\11\245B\231\214,\230-\60\356E\7\303\7\312pl\240\30L\62\211P$\223\10"
"E\62\211\301d\240\10\305\22\203I&\21\312$\42\241L\42\61\30\204&%\243\62Y\0\230L\63\357"
"E\7\307\340\201\42\23J\15\64\261Ld\60\311DB\221\201d\260\14%\6\17DM\22\241\222\304 "
"\61\230\314\22\231D*\23\211HB\211\324\340\0\230M\64\17F\7O<\63\370&\224\212\244\42\25\203"
"\315 \22\212d\42\241D\233\301H\23\252\210\14\66\25\241\310@!J\224D\6\233H&\22\32$D"
"\231\210.\230T\65\17F\7O<\63\370&\225\251Kd\6\223\301\42\24\311DB\221\232\301$\21I"
"\204\42\231\310`R\23\212$\62\242H(\61X\204\62\221\224&\24\321\310\2\230X=\357E\7\307\340"
"\201\42\223\12ER\25\3\305@\222\310$\62\221\304@\221\211$\62\211\201$\221Id\42\211\201b "
"\311\64I$$\231H\242\305@\21ID\22%\211H\246J\241\12\230^\65\17F\7O\66\22\31\134"
"\224dR\211\232\324`\220\30l\66\241\214\42\22\212$J\6\213H\250\321`\61\30$B\335$\62\203"
"M$\23\311\224\204\22)Y\0\230\250\63\357E\7\313\340 \25K\244B\222\324@\224\312\204R\211\301"
"\42\225(I\244\22%\211Tb\260HeB\251L\42\222\312D*\212\6\212\212\201(\262\16\230\333\61"
"\357E\7\313\340$\227\331i\22)E(\21\231\204\22\241HJ\61\70\220\204\42\231H(\222I\244\42"
"\31U\246\42\224\11%\42\241\22UE,&\230\337)\17F\7_<\235\310f\222\221\262\301\201D\222"
"\212\210\6\203`*\230\12\16\6\211X$\223\313$\202\241\344 \42\32\16\230\357;\17F\7O<\64"
"\30D\22\231`\244.\21I\304\6\223\301$\23\11E\6\222D\244&\222\210\324D\22\221\310@\222\250"
"I\204\42\232H&\22\212(\42\211\314\242MB\224H\5\230\362\67\17F\7O*\230\312%B\71E"
"&\226\210$\6\17\42\211L\42\23ID\42\3E$\221\311hR\231Pj\240I\204\22\251D(\222"
"i\42\311d\26U\11Q.\230\374\66\16F\7O:\63\30D\22\301H]\242d\260\30\14r\211L"
".\61P\14\42\211L\42R\221ID*\6\212HE\315 \222\210\4\23\21]b\221\33\205\24\0\231"
"\12+\17F\7S*\231\211\15\36\4\223\203\3en\360U\242r\60\210\255&\222\301 \42J\5\7"
"\203D,\23\311\15\22\252\335 \231(\63\17F\7O,\27\253\210\14\6\222\212X\242D\66\30D\6"
"\232\222Lf \311\64\31hJr\3I.\222\31L\62\221P$\42\11E&\211\301B\15\231\226$"
"\356\305\7K.V\27\12\15\36\310\302\321\301A(\30\12\206\6\7\241`hp\20\12\206\202\241\301A"
"\4\231\254&\356E\7\317\340 \224If\222\203\253L\62\223\34\134e\222\231\344\340@\231\211$\42}"
"\21Id\42!\251\2\231\305\66\357E\7\307`\220\30H\212\62\221\242Ld\60\311D\212\62\221\301d"
" )REB\211\320`\220\250JD\22E\211\36%:\311$\62\232H*\21J)b\1\232\23\70"
"\17F\7kj\60\210\244\42\241D(\22\212d\6\213\301\244\233\304`\61\230\324$\42m\22\221\310`"
"\61X%\62\251DB#J$$\211P\42\322U\42\224R\304\2\232\250!\356E\7\317` k\62"
"\220E\62\231\301\307\222\301@\222\211\305\6\3Y\331` \353W\32\0\232\330(\17F\7_<\67\370"
"\36\64\30\4S\301\301 \217\32<\210d#\221\301 \322*\322*R\62\30Dj#Q\5\0\233Z"
"%\16F\7W:=\330\205b\242\224bp\225\251\312T\15\256\62U\231\252\301Q\60\224\310\224dj"
"D\231\2\234\345(\17F\7_:;\30\350b\271\301@\27\313\15\6\272\370\340M|p\240\211e*"
"\42m\42\25\221\232H(\21\225\0\234\364\61\17F\7g:\66\210\14\66\221\242L$\62\330D\212\62"
"\221\310`\23)\214D\6\7\221\302Ad\60PD*Jb\211\316\22]EB\251\230\6\236\246!\17"
"F\7_<\70x\20L\16\16\224\271\301g\361\201\62\224\333\304\64\211\360\66\23Ti\226\3\236\304%"
"\17F\7W&\232\311\15\16t\231h&\65\370.:\70\313\224e\312\6g\231\262L\331\340.%\32"
"*\0\236\322$\357E\7\317\340,S\226)\33\234e\312\62e\203\323\344\340@\231\33|\17\251\211d"
"B\231H\42\225)\237;'\17F\7[x\60\10\246\202\203A\60\25\34\14\202\251\330\340@\324hp"
" j\64\70\320\205B\203\217R\271X\10\0";
#endif /* U8G2_USE_LARGE_FONTS */
|
the_stack_data/1046332.c | #include<stdio.h>
int a[100001]={0};
int main(void)
{
int n,i,k;
int x;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&x);
a[x]++;
}
scanf("%d",&k);
i=100001;
for(;k!=0;k--)
{
for(i--;i>=0;i--)
{
if(a[i]==0)
{
continue;
}
else
{
break;
}
}
}
printf("%d %d",i,a[i]);
} |
the_stack_data/40762667.c | // INFO: task hung in rwsem_down_read_failed
// https://syzkaller.appspot.com/bug?id=2c3e370f4b05d93d4267f52b320348f6111220f9
// status:open
// autogenerated by syzkaller (http://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
__attribute__((noreturn)) static void doexit(int status)
{
volatile unsigned i;
syscall(__NR_exit_group, status);
for (i = 0;; i++) {
}
}
#include <stdint.h>
#include <string.h>
const int kFailStatus = 67;
const int kRetryStatus = 69;
static void fail(const char* msg, ...)
{
int e = errno;
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
fprintf(stderr, " (errno %d)\n", e);
doexit((e == ENOMEM || e == EAGAIN) ? kRetryStatus : kFailStatus);
}
static uint64_t current_time_ms()
{
struct timespec ts;
if (clock_gettime(CLOCK_MONOTONIC, &ts))
fail("clock_gettime failed");
return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}
static uintptr_t syz_open_dev(uintptr_t a0, uintptr_t a1, uintptr_t a2)
{
if (a0 == 0xc || a0 == 0xb) {
char buf[128];
sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1,
(uint8_t)a2);
return open(buf, O_RDWR, 0);
} else {
char buf[1024];
char* hash;
strncpy(buf, (char*)a0, sizeof(buf));
buf[sizeof(buf) - 1] = 0;
while ((hash = strchr(buf, '#'))) {
*hash = '0' + (char)(a1 % 10);
a1 /= 10;
}
return open(buf, a2, 0);
}
}
static void test();
void loop()
{
int iter;
for (iter = 0;; iter++) {
int pid = fork();
if (pid < 0)
fail("loop fork failed");
if (pid == 0) {
prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
setpgrp();
test();
doexit(0);
}
int status = 0;
uint64_t start = current_time_ms();
for (;;) {
int res = waitpid(-1, &status, __WALL | WNOHANG);
if (res == pid)
break;
usleep(1000);
if (current_time_ms() - start > 5 * 1000) {
kill(-pid, SIGKILL);
kill(pid, SIGKILL);
while (waitpid(-1, &status, __WALL) != pid) {
}
break;
}
}
}
}
long r[1];
uint64_t procid;
void test()
{
memset(r, -1, sizeof(r));
syscall(__NR_mmap, 0x20000000, 0xfff000, 3, 0x32, -1, 0);
memcpy((void*)0x2091c000, "/dev/sequencer2", 16);
syscall(__NR_openat, 0xffffffffffffff9c, 0x2091c000, 0x80003, 0);
memcpy((void*)0x20539000, "/dev/snd/seq", 13);
r[0] = syz_open_dev(0x20539000, 0, 0);
*(uint8_t*)0x20a10000 = 0xe;
*(uint8_t*)0x20a10001 = 0;
*(uint8_t*)0x20a10002 = 0xe;
*(uint8_t*)0x20a10003 = 0;
*(uint32_t*)0x20a10004 = 0x100;
*(uint32_t*)0x20a10008 = 0x4000;
*(uint8_t*)0x20a1000c = 0;
*(uint8_t*)0x20a1000d = 0;
*(uint8_t*)0x20a1000e = 0;
*(uint8_t*)0x20a1000f = 0;
*(uint8_t*)0x20a10010 = 0;
*(uint8_t*)0x20a10011 = 0;
*(uint8_t*)0x20a10012 = 0;
*(uint8_t*)0x20a10013 = 0;
*(uint8_t*)0x20a10014 = 0;
*(uint8_t*)0x20a10015 = 0;
*(uint8_t*)0x20a10016 = 0;
*(uint8_t*)0x20a10017 = 0;
*(uint8_t*)0x20a10018 = 0;
*(uint8_t*)0x20a10019 = 0;
*(uint8_t*)0x20a1001a = 0;
*(uint8_t*)0x20a1001b = 0;
*(uint8_t*)0x20a1001c = 0;
*(uint8_t*)0x20a1001d = 0;
*(uint8_t*)0x20a1001e = 0;
*(uint8_t*)0x20a1001f = 0;
*(uint8_t*)0x20a10020 = 0;
*(uint8_t*)0x20a10021 = 0;
*(uint8_t*)0x20a10022 = 0;
*(uint8_t*)0x20a10023 = 0;
*(uint8_t*)0x20a10024 = 0;
*(uint8_t*)0x20a10025 = 0;
*(uint8_t*)0x20a10026 = 0;
*(uint8_t*)0x20a10027 = 0;
*(uint8_t*)0x20a10028 = 0;
*(uint8_t*)0x20a10029 = 0;
*(uint8_t*)0x20a1002a = 0;
*(uint8_t*)0x20a1002b = 0;
*(uint8_t*)0x20a1002c = 0;
*(uint8_t*)0x20a1002d = 0;
*(uint8_t*)0x20a1002e = 0;
*(uint8_t*)0x20a1002f = 0;
*(uint8_t*)0x20a10030 = 0;
*(uint8_t*)0x20a10031 = 0;
*(uint8_t*)0x20a10032 = 0;
*(uint8_t*)0x20a10033 = 0;
*(uint8_t*)0x20a10034 = 0;
*(uint8_t*)0x20a10035 = 0;
*(uint8_t*)0x20a10036 = 0;
*(uint8_t*)0x20a10037 = 0;
*(uint8_t*)0x20a10038 = 0;
*(uint8_t*)0x20a10039 = 0;
*(uint8_t*)0x20a1003a = 0;
*(uint8_t*)0x20a1003b = 0;
*(uint8_t*)0x20a1003c = 0;
*(uint8_t*)0x20a1003d = 0;
*(uint8_t*)0x20a1003e = 0;
*(uint8_t*)0x20a1003f = 0;
*(uint8_t*)0x20a10040 = 0;
*(uint8_t*)0x20a10041 = 0;
*(uint8_t*)0x20a10042 = 0;
*(uint8_t*)0x20a10043 = 0;
*(uint8_t*)0x20a10044 = 0;
*(uint8_t*)0x20a10045 = 0;
*(uint8_t*)0x20a10046 = 0;
*(uint8_t*)0x20a10047 = 0;
*(uint8_t*)0x20a10048 = 0;
*(uint8_t*)0x20a10049 = 0;
*(uint8_t*)0x20a1004a = 0;
*(uint8_t*)0x20a1004b = 0;
*(uint8_t*)0x20a1004c = 0;
*(uint8_t*)0x20a1004d = 0;
*(uint8_t*)0x20a1004e = 0;
*(uint8_t*)0x20a1004f = 0;
syscall(__NR_ioctl, r[0], 0x40505330, 0x20a10000);
}
int main()
{
for (procid = 0; procid < 8; procid++) {
if (fork() == 0) {
for (;;) {
loop();
}
}
}
sleep(1000000);
return 0;
}
|
the_stack_data/711326.c | #include<stdio.h>
int main(void)
{
//declaring arrays
int rain[2][3];
int maxRain[2] = {0};
//declaring variables
int i, j;
//taking input from the user
for (i = 0 ; i < 2 ; i++)
{
printf("Enter details about ");
if (i == 0)
{
printf("Colombo\n");
}
else
{
printf("Kandy\n");
}
for (j = 0 ; j < 3 ; j++)
{
printf("Enter the Rainfall in the ");
if (j == 0)
{
printf("Morning : ");
}
else if (j == 1)
{
printf("Noon : ");
}
else
{
printf("Evening : ");
}
scanf("%d" , &rain[i][j]);
}
}
//printing user entered data for checking purpose
/*for (i = 0 ; i < 2 ; i++)
{
for (j = 0 ; j < 3 ; j++)
{
printf("%d " , rain[i][j]);
}
printf("\n");
}*/
printf("\n");
//calculate and print the maximum rainfall of each town
for (i = 0 ; i < 2 ; i++)
{
for (j = 0 ; j < 3 ; j++)
{
if (maxRain[i] < rain[i][j])
{
maxRain[i] = rain[i][j];
}
}
printf("Maximum Rainfall in ");
if (i == 0)
{
printf("Colombo : ");
}
else
{
printf("Kandy : ");
}
printf("%d\n" , maxRain[i]);
}
return 0;
}
|
the_stack_data/94036.c | /* NOCW */
/* demos/bio/saccept.c */
/* A minimal program to server an SSL connection.
* It uses blocking.
* saccept host:port
* host is the interface IP to use. If any interface, use *:port
* The default it *:4433
*
* cc -I../../include saccept.c -L../.. -lssl -lcrypto
*/
#include <stdio.h>
#include <signal.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
#define CERT_FILE "server.pem"
BIO *in=NULL;
void close_up()
{
if (in != NULL)
BIO_free(in);
}
int main(argc,argv)
int argc;
char *argv[];
{
char *port=NULL;
BIO *ssl_bio,*tmp;
SSL_CTX *ctx;
SSL *ssl;
char buf[512];
int ret=1,i;
if (argc <= 1)
port="*:4433";
else
port=argv[1];
signal(SIGINT,close_up);
SSL_load_error_strings();
#ifdef WATT32
dbug_init();
sock_init();
#endif
/* Add ciphers and message digests */
OpenSSL_add_ssl_algorithms();
ctx=SSL_CTX_new(SSLv23_server_method());
if (!SSL_CTX_use_certificate_file(ctx,CERT_FILE,SSL_FILETYPE_PEM))
goto err;
if (!SSL_CTX_use_PrivateKey_file(ctx,CERT_FILE,SSL_FILETYPE_PEM))
goto err;
if (!SSL_CTX_check_private_key(ctx))
goto err;
/* Setup server side SSL bio */
ssl=SSL_new(ctx);
ssl_bio=BIO_new_ssl(ctx,0);
if ((in=BIO_new_accept(port)) == NULL) goto err;
/* This means that when a new connection is acceptede on 'in',
* The ssl_bio will be 'dupilcated' and have the new socket
* BIO push into it. Basically it means the SSL BIO will be
* automatically setup */
BIO_set_accept_bios(in,ssl_bio);
again:
/* The first call will setup the accept socket, and the second
* will get a socket. In this loop, the first actual accept
* will occur in the BIO_read() function. */
if (BIO_do_accept(in) <= 0) goto err;
for (;;)
{
i=BIO_read(in,buf,512);
if (i == 0)
{
/* If we have finished, remove the underlying
* BIO stack so the next time we call any function
* for this BIO, it will attempt to do an
* accept */
printf("Done\n");
tmp=BIO_pop(in);
BIO_free_all(tmp);
goto again;
}
if (i < 0) goto err;
fwrite(buf,1,i,stdout);
fflush(stdout);
}
ret=0;
err:
if (ret)
{
ERR_print_errors_fp(stderr);
}
if (in != NULL) BIO_free(in);
exit(ret);
return(!ret);
}
|
the_stack_data/432610.c | /*-
* Public Domain 2014-2018 MongoDB, Inc.
* Public Domain 2008-2014 WiredTiger, Inc.
*
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* Slicing-by-8 algorithm by Michael E. Kounavis and Frank L. Berry, described
* in "Novel Table Lookup-Based Algorithms for High-Performance CRC Generation",
* IEEE Transactions on Computers, Volume 57 Issue 11, November 2008.
*
* See also Peter Kanowski's posting:
* http://www.strchr.com/crc32_popcnt
*
* The big endian version calculates the same result at each step, except the
* value of the crc is byte reversed from what it would be at that step for
* little endian.
*/
#include <inttypes.h>
#include <stddef.h>
/*
* The CRC slicing tables.
*/
static const uint32_t g_crc_slicing[8][256] = {
#ifdef WORDS_BIGENDIAN
/*
* Big endian tables have entries that are byte reversed from little
* endian tables.
*/
{
0x00000000, 0x03836bf2, 0xf7703be1, 0xf4f35013,
0x1f979ac7, 0x1c14f135, 0xe8e7a126, 0xeb64cad4,
0xcf58d98a, 0xccdbb278, 0x3828e26b, 0x3bab8999,
0xd0cf434d, 0xd34c28bf, 0x27bf78ac, 0x243c135e,
0x6fc75e10, 0x6c4435e2, 0x98b765f1, 0x9b340e03,
0x7050c4d7, 0x73d3af25, 0x8720ff36, 0x84a394c4,
0xa09f879a, 0xa31cec68, 0x57efbc7b, 0x546cd789,
0xbf081d5d, 0xbc8b76af, 0x487826bc, 0x4bfb4d4e,
0xde8ebd20, 0xdd0dd6d2, 0x29fe86c1, 0x2a7ded33,
0xc11927e7, 0xc29a4c15, 0x36691c06, 0x35ea77f4,
0x11d664aa, 0x12550f58, 0xe6a65f4b, 0xe52534b9,
0x0e41fe6d, 0x0dc2959f, 0xf931c58c, 0xfab2ae7e,
0xb149e330, 0xb2ca88c2, 0x4639d8d1, 0x45bab323,
0xaede79f7, 0xad5d1205, 0x59ae4216, 0x5a2d29e4,
0x7e113aba, 0x7d925148, 0x8961015b, 0x8ae26aa9,
0x6186a07d, 0x6205cb8f, 0x96f69b9c, 0x9575f06e,
0xbc1d7b41, 0xbf9e10b3, 0x4b6d40a0, 0x48ee2b52,
0xa38ae186, 0xa0098a74, 0x54fada67, 0x5779b195,
0x7345a2cb, 0x70c6c939, 0x8435992a, 0x87b6f2d8,
0x6cd2380c, 0x6f5153fe, 0x9ba203ed, 0x9821681f,
0xd3da2551, 0xd0594ea3, 0x24aa1eb0, 0x27297542,
0xcc4dbf96, 0xcfced464, 0x3b3d8477, 0x38beef85,
0x1c82fcdb, 0x1f019729, 0xebf2c73a, 0xe871acc8,
0x0315661c, 0x00960dee, 0xf4655dfd, 0xf7e6360f,
0x6293c661, 0x6110ad93, 0x95e3fd80, 0x96609672,
0x7d045ca6, 0x7e873754, 0x8a746747, 0x89f70cb5,
0xadcb1feb, 0xae487419, 0x5abb240a, 0x59384ff8,
0xb25c852c, 0xb1dfeede, 0x452cbecd, 0x46afd53f,
0x0d549871, 0x0ed7f383, 0xfa24a390, 0xf9a7c862,
0x12c302b6, 0x11406944, 0xe5b33957, 0xe63052a5,
0xc20c41fb, 0xc18f2a09, 0x357c7a1a, 0x36ff11e8,
0xdd9bdb3c, 0xde18b0ce, 0x2aebe0dd, 0x29688b2f,
0x783bf682, 0x7bb89d70, 0x8f4bcd63, 0x8cc8a691,
0x67ac6c45, 0x642f07b7, 0x90dc57a4, 0x935f3c56,
0xb7632f08, 0xb4e044fa, 0x401314e9, 0x43907f1b,
0xa8f4b5cf, 0xab77de3d, 0x5f848e2e, 0x5c07e5dc,
0x17fca892, 0x147fc360, 0xe08c9373, 0xe30ff881,
0x086b3255, 0x0be859a7, 0xff1b09b4, 0xfc986246,
0xd8a47118, 0xdb271aea, 0x2fd44af9, 0x2c57210b,
0xc733ebdf, 0xc4b0802d, 0x3043d03e, 0x33c0bbcc,
0xa6b54ba2, 0xa5362050, 0x51c57043, 0x52461bb1,
0xb922d165, 0xbaa1ba97, 0x4e52ea84, 0x4dd18176,
0x69ed9228, 0x6a6ef9da, 0x9e9da9c9, 0x9d1ec23b,
0x767a08ef, 0x75f9631d, 0x810a330e, 0x828958fc,
0xc97215b2, 0xcaf17e40, 0x3e022e53, 0x3d8145a1,
0xd6e58f75, 0xd566e487, 0x2195b494, 0x2216df66,
0x062acc38, 0x05a9a7ca, 0xf15af7d9, 0xf2d99c2b,
0x19bd56ff, 0x1a3e3d0d, 0xeecd6d1e, 0xed4e06ec,
0xc4268dc3, 0xc7a5e631, 0x3356b622, 0x30d5ddd0,
0xdbb11704, 0xd8327cf6, 0x2cc12ce5, 0x2f424717,
0x0b7e5449, 0x08fd3fbb, 0xfc0e6fa8, 0xff8d045a,
0x14e9ce8e, 0x176aa57c, 0xe399f56f, 0xe01a9e9d,
0xabe1d3d3, 0xa862b821, 0x5c91e832, 0x5f1283c0,
0xb4764914, 0xb7f522e6, 0x430672f5, 0x40851907,
0x64b90a59, 0x673a61ab, 0x93c931b8, 0x904a5a4a,
0x7b2e909e, 0x78adfb6c, 0x8c5eab7f, 0x8fddc08d,
0x1aa830e3, 0x192b5b11, 0xedd80b02, 0xee5b60f0,
0x053faa24, 0x06bcc1d6, 0xf24f91c5, 0xf1ccfa37,
0xd5f0e969, 0xd673829b, 0x2280d288, 0x2103b97a,
0xca6773ae, 0xc9e4185c, 0x3d17484f, 0x3e9423bd,
0x756f6ef3, 0x76ec0501, 0x821f5512, 0x819c3ee0,
0x6af8f434, 0x697b9fc6, 0x9d88cfd5, 0x9e0ba427,
0xba37b779, 0xb9b4dc8b, 0x4d478c98, 0x4ec4e76a,
0xa5a02dbe, 0xa623464c, 0x52d0165f, 0x51537dad
},{
0x00000000, 0x7798a213, 0xee304527, 0x99a8e734,
0xdc618a4e, 0xabf9285d, 0x3251cf69, 0x45c96d7a,
0xb8c3149d, 0xcf5bb68e, 0x56f351ba, 0x216bf3a9,
0x64a29ed3, 0x133a3cc0, 0x8a92dbf4, 0xfd0a79e7,
0x81f1c53f, 0xf669672c, 0x6fc18018, 0x1859220b,
0x5d904f71, 0x2a08ed62, 0xb3a00a56, 0xc438a845,
0x3932d1a2, 0x4eaa73b1, 0xd7029485, 0xa09a3696,
0xe5535bec, 0x92cbf9ff, 0x0b631ecb, 0x7cfbbcd8,
0x02e38b7f, 0x757b296c, 0xecd3ce58, 0x9b4b6c4b,
0xde820131, 0xa91aa322, 0x30b24416, 0x472ae605,
0xba209fe2, 0xcdb83df1, 0x5410dac5, 0x238878d6,
0x664115ac, 0x11d9b7bf, 0x8871508b, 0xffe9f298,
0x83124e40, 0xf48aec53, 0x6d220b67, 0x1abaa974,
0x5f73c40e, 0x28eb661d, 0xb1438129, 0xc6db233a,
0x3bd15add, 0x4c49f8ce, 0xd5e11ffa, 0xa279bde9,
0xe7b0d093, 0x90287280, 0x098095b4, 0x7e1837a7,
0x04c617ff, 0x735eb5ec, 0xeaf652d8, 0x9d6ef0cb,
0xd8a79db1, 0xaf3f3fa2, 0x3697d896, 0x410f7a85,
0xbc050362, 0xcb9da171, 0x52354645, 0x25ade456,
0x6064892c, 0x17fc2b3f, 0x8e54cc0b, 0xf9cc6e18,
0x8537d2c0, 0xf2af70d3, 0x6b0797e7, 0x1c9f35f4,
0x5956588e, 0x2ecefa9d, 0xb7661da9, 0xc0febfba,
0x3df4c65d, 0x4a6c644e, 0xd3c4837a, 0xa45c2169,
0xe1954c13, 0x960dee00, 0x0fa50934, 0x783dab27,
0x06259c80, 0x71bd3e93, 0xe815d9a7, 0x9f8d7bb4,
0xda4416ce, 0xaddcb4dd, 0x347453e9, 0x43ecf1fa,
0xbee6881d, 0xc97e2a0e, 0x50d6cd3a, 0x274e6f29,
0x62870253, 0x151fa040, 0x8cb74774, 0xfb2fe567,
0x87d459bf, 0xf04cfbac, 0x69e41c98, 0x1e7cbe8b,
0x5bb5d3f1, 0x2c2d71e2, 0xb58596d6, 0xc21d34c5,
0x3f174d22, 0x488fef31, 0xd1270805, 0xa6bfaa16,
0xe376c76c, 0x94ee657f, 0x0d46824b, 0x7ade2058,
0xf9fac3fb, 0x8e6261e8, 0x17ca86dc, 0x605224cf,
0x259b49b5, 0x5203eba6, 0xcbab0c92, 0xbc33ae81,
0x4139d766, 0x36a17575, 0xaf099241, 0xd8913052,
0x9d585d28, 0xeac0ff3b, 0x7368180f, 0x04f0ba1c,
0x780b06c4, 0x0f93a4d7, 0x963b43e3, 0xe1a3e1f0,
0xa46a8c8a, 0xd3f22e99, 0x4a5ac9ad, 0x3dc26bbe,
0xc0c81259, 0xb750b04a, 0x2ef8577e, 0x5960f56d,
0x1ca99817, 0x6b313a04, 0xf299dd30, 0x85017f23,
0xfb194884, 0x8c81ea97, 0x15290da3, 0x62b1afb0,
0x2778c2ca, 0x50e060d9, 0xc94887ed, 0xbed025fe,
0x43da5c19, 0x3442fe0a, 0xadea193e, 0xda72bb2d,
0x9fbbd657, 0xe8237444, 0x718b9370, 0x06133163,
0x7ae88dbb, 0x0d702fa8, 0x94d8c89c, 0xe3406a8f,
0xa68907f5, 0xd111a5e6, 0x48b942d2, 0x3f21e0c1,
0xc22b9926, 0xb5b33b35, 0x2c1bdc01, 0x5b837e12,
0x1e4a1368, 0x69d2b17b, 0xf07a564f, 0x87e2f45c,
0xfd3cd404, 0x8aa47617, 0x130c9123, 0x64943330,
0x215d5e4a, 0x56c5fc59, 0xcf6d1b6d, 0xb8f5b97e,
0x45ffc099, 0x3267628a, 0xabcf85be, 0xdc5727ad,
0x999e4ad7, 0xee06e8c4, 0x77ae0ff0, 0x0036ade3,
0x7ccd113b, 0x0b55b328, 0x92fd541c, 0xe565f60f,
0xa0ac9b75, 0xd7343966, 0x4e9cde52, 0x39047c41,
0xc40e05a6, 0xb396a7b5, 0x2a3e4081, 0x5da6e292,
0x186f8fe8, 0x6ff72dfb, 0xf65fcacf, 0x81c768dc,
0xffdf5f7b, 0x8847fd68, 0x11ef1a5c, 0x6677b84f,
0x23bed535, 0x54267726, 0xcd8e9012, 0xba163201,
0x471c4be6, 0x3084e9f5, 0xa92c0ec1, 0xdeb4acd2,
0x9b7dc1a8, 0xece563bb, 0x754d848f, 0x02d5269c,
0x7e2e9a44, 0x09b63857, 0x901edf63, 0xe7867d70,
0xa24f100a, 0xd5d7b219, 0x4c7f552d, 0x3be7f73e,
0xc6ed8ed9, 0xb1752cca, 0x28ddcbfe, 0x5f4569ed,
0x1a8c0497, 0x6d14a684, 0xf4bc41b0, 0x8324e3a3
},{
0x00000000, 0x7e9241a5, 0x0d526f4f, 0x73c02eea,
0x1aa4de9e, 0x64369f3b, 0x17f6b1d1, 0x6964f074,
0xc53e5138, 0xbbac109d, 0xc86c3e77, 0xb6fe7fd2,
0xdf9a8fa6, 0xa108ce03, 0xd2c8e0e9, 0xac5aa14c,
0x8a7da270, 0xf4efe3d5, 0x872fcd3f, 0xf9bd8c9a,
0x90d97cee, 0xee4b3d4b, 0x9d8b13a1, 0xe3195204,
0x4f43f348, 0x31d1b2ed, 0x42119c07, 0x3c83dda2,
0x55e72dd6, 0x2b756c73, 0x58b54299, 0x2627033c,
0x14fb44e1, 0x6a690544, 0x19a92bae, 0x673b6a0b,
0x0e5f9a7f, 0x70cddbda, 0x030df530, 0x7d9fb495,
0xd1c515d9, 0xaf57547c, 0xdc977a96, 0xa2053b33,
0xcb61cb47, 0xb5f38ae2, 0xc633a408, 0xb8a1e5ad,
0x9e86e691, 0xe014a734, 0x93d489de, 0xed46c87b,
0x8422380f, 0xfab079aa, 0x89705740, 0xf7e216e5,
0x5bb8b7a9, 0x252af60c, 0x56ead8e6, 0x28789943,
0x411c6937, 0x3f8e2892, 0x4c4e0678, 0x32dc47dd,
0xd98065c7, 0xa7122462, 0xd4d20a88, 0xaa404b2d,
0xc324bb59, 0xbdb6fafc, 0xce76d416, 0xb0e495b3,
0x1cbe34ff, 0x622c755a, 0x11ec5bb0, 0x6f7e1a15,
0x061aea61, 0x7888abc4, 0x0b48852e, 0x75dac48b,
0x53fdc7b7, 0x2d6f8612, 0x5eafa8f8, 0x203de95d,
0x49591929, 0x37cb588c, 0x440b7666, 0x3a9937c3,
0x96c3968f, 0xe851d72a, 0x9b91f9c0, 0xe503b865,
0x8c674811, 0xf2f509b4, 0x8135275e, 0xffa766fb,
0xcd7b2126, 0xb3e96083, 0xc0294e69, 0xbebb0fcc,
0xd7dfffb8, 0xa94dbe1d, 0xda8d90f7, 0xa41fd152,
0x0845701e, 0x76d731bb, 0x05171f51, 0x7b855ef4,
0x12e1ae80, 0x6c73ef25, 0x1fb3c1cf, 0x6121806a,
0x47068356, 0x3994c2f3, 0x4a54ec19, 0x34c6adbc,
0x5da25dc8, 0x23301c6d, 0x50f03287, 0x2e627322,
0x8238d26e, 0xfcaa93cb, 0x8f6abd21, 0xf1f8fc84,
0x989c0cf0, 0xe60e4d55, 0x95ce63bf, 0xeb5c221a,
0x4377278b, 0x3de5662e, 0x4e2548c4, 0x30b70961,
0x59d3f915, 0x2741b8b0, 0x5481965a, 0x2a13d7ff,
0x864976b3, 0xf8db3716, 0x8b1b19fc, 0xf5895859,
0x9ceda82d, 0xe27fe988, 0x91bfc762, 0xef2d86c7,
0xc90a85fb, 0xb798c45e, 0xc458eab4, 0xbacaab11,
0xd3ae5b65, 0xad3c1ac0, 0xdefc342a, 0xa06e758f,
0x0c34d4c3, 0x72a69566, 0x0166bb8c, 0x7ff4fa29,
0x16900a5d, 0x68024bf8, 0x1bc26512, 0x655024b7,
0x578c636a, 0x291e22cf, 0x5ade0c25, 0x244c4d80,
0x4d28bdf4, 0x33bafc51, 0x407ad2bb, 0x3ee8931e,
0x92b23252, 0xec2073f7, 0x9fe05d1d, 0xe1721cb8,
0x8816eccc, 0xf684ad69, 0x85448383, 0xfbd6c226,
0xddf1c11a, 0xa36380bf, 0xd0a3ae55, 0xae31eff0,
0xc7551f84, 0xb9c75e21, 0xca0770cb, 0xb495316e,
0x18cf9022, 0x665dd187, 0x159dff6d, 0x6b0fbec8,
0x026b4ebc, 0x7cf90f19, 0x0f3921f3, 0x71ab6056,
0x9af7424c, 0xe46503e9, 0x97a52d03, 0xe9376ca6,
0x80539cd2, 0xfec1dd77, 0x8d01f39d, 0xf393b238,
0x5fc91374, 0x215b52d1, 0x529b7c3b, 0x2c093d9e,
0x456dcdea, 0x3bff8c4f, 0x483fa2a5, 0x36ade300,
0x108ae03c, 0x6e18a199, 0x1dd88f73, 0x634aced6,
0x0a2e3ea2, 0x74bc7f07, 0x077c51ed, 0x79ee1048,
0xd5b4b104, 0xab26f0a1, 0xd8e6de4b, 0xa6749fee,
0xcf106f9a, 0xb1822e3f, 0xc24200d5, 0xbcd04170,
0x8e0c06ad, 0xf09e4708, 0x835e69e2, 0xfdcc2847,
0x94a8d833, 0xea3a9996, 0x99fab77c, 0xe768f6d9,
0x4b325795, 0x35a01630, 0x466038da, 0x38f2797f,
0x5196890b, 0x2f04c8ae, 0x5cc4e644, 0x2256a7e1,
0x0471a4dd, 0x7ae3e578, 0x0923cb92, 0x77b18a37,
0x1ed57a43, 0x60473be6, 0x1387150c, 0x6d1554a9,
0xc14ff5e5, 0xbfddb440, 0xcc1d9aaa, 0xb28fdb0f,
0xdbeb2b7b, 0xa5796ade, 0xd6b94434, 0xa82b0591
},{
0x00000000, 0xb8aa45dd, 0x812367bf, 0x39892262,
0xf331227b, 0x4b9b67a6, 0x721245c4, 0xcab80019,
0xe66344f6, 0x5ec9012b, 0x67402349, 0xdfea6694,
0x1552668d, 0xadf82350, 0x94710132, 0x2cdb44ef,
0x3db164e9, 0x851b2134, 0xbc920356, 0x0438468b,
0xce804692, 0x762a034f, 0x4fa3212d, 0xf70964f0,
0xdbd2201f, 0x637865c2, 0x5af147a0, 0xe25b027d,
0x28e30264, 0x904947b9, 0xa9c065db, 0x116a2006,
0x8b1425d7, 0x33be600a, 0x0a374268, 0xb29d07b5,
0x782507ac, 0xc08f4271, 0xf9066013, 0x41ac25ce,
0x6d776121, 0xd5dd24fc, 0xec54069e, 0x54fe4343,
0x9e46435a, 0x26ec0687, 0x1f6524e5, 0xa7cf6138,
0xb6a5413e, 0x0e0f04e3, 0x37862681, 0x8f2c635c,
0x45946345, 0xfd3e2698, 0xc4b704fa, 0x7c1d4127,
0x50c605c8, 0xe86c4015, 0xd1e56277, 0x694f27aa,
0xa3f727b3, 0x1b5d626e, 0x22d4400c, 0x9a7e05d1,
0xe75fa6ab, 0x5ff5e376, 0x667cc114, 0xded684c9,
0x146e84d0, 0xacc4c10d, 0x954de36f, 0x2de7a6b2,
0x013ce25d, 0xb996a780, 0x801f85e2, 0x38b5c03f,
0xf20dc026, 0x4aa785fb, 0x732ea799, 0xcb84e244,
0xdaeec242, 0x6244879f, 0x5bcda5fd, 0xe367e020,
0x29dfe039, 0x9175a5e4, 0xa8fc8786, 0x1056c25b,
0x3c8d86b4, 0x8427c369, 0xbdaee10b, 0x0504a4d6,
0xcfbca4cf, 0x7716e112, 0x4e9fc370, 0xf63586ad,
0x6c4b837c, 0xd4e1c6a1, 0xed68e4c3, 0x55c2a11e,
0x9f7aa107, 0x27d0e4da, 0x1e59c6b8, 0xa6f38365,
0x8a28c78a, 0x32828257, 0x0b0ba035, 0xb3a1e5e8,
0x7919e5f1, 0xc1b3a02c, 0xf83a824e, 0x4090c793,
0x51fae795, 0xe950a248, 0xd0d9802a, 0x6873c5f7,
0xa2cbc5ee, 0x1a618033, 0x23e8a251, 0x9b42e78c,
0xb799a363, 0x0f33e6be, 0x36bac4dc, 0x8e108101,
0x44a88118, 0xfc02c4c5, 0xc58be6a7, 0x7d21a37a,
0x3fc9a052, 0x8763e58f, 0xbeeac7ed, 0x06408230,
0xccf88229, 0x7452c7f4, 0x4ddbe596, 0xf571a04b,
0xd9aae4a4, 0x6100a179, 0x5889831b, 0xe023c6c6,
0x2a9bc6df, 0x92318302, 0xabb8a160, 0x1312e4bd,
0x0278c4bb, 0xbad28166, 0x835ba304, 0x3bf1e6d9,
0xf149e6c0, 0x49e3a31d, 0x706a817f, 0xc8c0c4a2,
0xe41b804d, 0x5cb1c590, 0x6538e7f2, 0xdd92a22f,
0x172aa236, 0xaf80e7eb, 0x9609c589, 0x2ea38054,
0xb4dd8585, 0x0c77c058, 0x35fee23a, 0x8d54a7e7,
0x47eca7fe, 0xff46e223, 0xc6cfc041, 0x7e65859c,
0x52bec173, 0xea1484ae, 0xd39da6cc, 0x6b37e311,
0xa18fe308, 0x1925a6d5, 0x20ac84b7, 0x9806c16a,
0x896ce16c, 0x31c6a4b1, 0x084f86d3, 0xb0e5c30e,
0x7a5dc317, 0xc2f786ca, 0xfb7ea4a8, 0x43d4e175,
0x6f0fa59a, 0xd7a5e047, 0xee2cc225, 0x568687f8,
0x9c3e87e1, 0x2494c23c, 0x1d1de05e, 0xa5b7a583,
0xd89606f9, 0x603c4324, 0x59b56146, 0xe11f249b,
0x2ba72482, 0x930d615f, 0xaa84433d, 0x122e06e0,
0x3ef5420f, 0x865f07d2, 0xbfd625b0, 0x077c606d,
0xcdc46074, 0x756e25a9, 0x4ce707cb, 0xf44d4216,
0xe5276210, 0x5d8d27cd, 0x640405af, 0xdcae4072,
0x1616406b, 0xaebc05b6, 0x973527d4, 0x2f9f6209,
0x034426e6, 0xbbee633b, 0x82674159, 0x3acd0484,
0xf075049d, 0x48df4140, 0x71566322, 0xc9fc26ff,
0x5382232e, 0xeb2866f3, 0xd2a14491, 0x6a0b014c,
0xa0b30155, 0x18194488, 0x219066ea, 0x993a2337,
0xb5e167d8, 0x0d4b2205, 0x34c20067, 0x8c6845ba,
0x46d045a3, 0xfe7a007e, 0xc7f3221c, 0x7f5967c1,
0x6e3347c7, 0xd699021a, 0xef102078, 0x57ba65a5,
0x9d0265bc, 0x25a82061, 0x1c210203, 0xa48b47de,
0x88500331, 0x30fa46ec, 0x0973648e, 0xb1d92153,
0x7b61214a, 0xc3cb6497, 0xfa4246f5, 0x42e80328
},{
0x00000000, 0xac6f1138, 0x58df2270, 0xf4b03348,
0xb0be45e0, 0x1cd154d8, 0xe8616790, 0x440e76a8,
0x910b67c5, 0x3d6476fd, 0xc9d445b5, 0x65bb548d,
0x21b52225, 0x8dda331d, 0x796a0055, 0xd505116d,
0xd361228f, 0x7f0e33b7, 0x8bbe00ff, 0x27d111c7,
0x63df676f, 0xcfb07657, 0x3b00451f, 0x976f5427,
0x426a454a, 0xee055472, 0x1ab5673a, 0xb6da7602,
0xf2d400aa, 0x5ebb1192, 0xaa0b22da, 0x066433e2,
0x57b5a81b, 0xfbdab923, 0x0f6a8a6b, 0xa3059b53,
0xe70bedfb, 0x4b64fcc3, 0xbfd4cf8b, 0x13bbdeb3,
0xc6becfde, 0x6ad1dee6, 0x9e61edae, 0x320efc96,
0x76008a3e, 0xda6f9b06, 0x2edfa84e, 0x82b0b976,
0x84d48a94, 0x28bb9bac, 0xdc0ba8e4, 0x7064b9dc,
0x346acf74, 0x9805de4c, 0x6cb5ed04, 0xc0dafc3c,
0x15dfed51, 0xb9b0fc69, 0x4d00cf21, 0xe16fde19,
0xa561a8b1, 0x090eb989, 0xfdbe8ac1, 0x51d19bf9,
0xae6a5137, 0x0205400f, 0xf6b57347, 0x5ada627f,
0x1ed414d7, 0xb2bb05ef, 0x460b36a7, 0xea64279f,
0x3f6136f2, 0x930e27ca, 0x67be1482, 0xcbd105ba,
0x8fdf7312, 0x23b0622a, 0xd7005162, 0x7b6f405a,
0x7d0b73b8, 0xd1646280, 0x25d451c8, 0x89bb40f0,
0xcdb53658, 0x61da2760, 0x956a1428, 0x39050510,
0xec00147d, 0x406f0545, 0xb4df360d, 0x18b02735,
0x5cbe519d, 0xf0d140a5, 0x046173ed, 0xa80e62d5,
0xf9dff92c, 0x55b0e814, 0xa100db5c, 0x0d6fca64,
0x4961bccc, 0xe50eadf4, 0x11be9ebc, 0xbdd18f84,
0x68d49ee9, 0xc4bb8fd1, 0x300bbc99, 0x9c64ada1,
0xd86adb09, 0x7405ca31, 0x80b5f979, 0x2cdae841,
0x2abedba3, 0x86d1ca9b, 0x7261f9d3, 0xde0ee8eb,
0x9a009e43, 0x366f8f7b, 0xc2dfbc33, 0x6eb0ad0b,
0xbbb5bc66, 0x17daad5e, 0xe36a9e16, 0x4f058f2e,
0x0b0bf986, 0xa764e8be, 0x53d4dbf6, 0xffbbcace,
0x5cd5a26e, 0xf0bab356, 0x040a801e, 0xa8659126,
0xec6be78e, 0x4004f6b6, 0xb4b4c5fe, 0x18dbd4c6,
0xcddec5ab, 0x61b1d493, 0x9501e7db, 0x396ef6e3,
0x7d60804b, 0xd10f9173, 0x25bfa23b, 0x89d0b303,
0x8fb480e1, 0x23db91d9, 0xd76ba291, 0x7b04b3a9,
0x3f0ac501, 0x9365d439, 0x67d5e771, 0xcbbaf649,
0x1ebfe724, 0xb2d0f61c, 0x4660c554, 0xea0fd46c,
0xae01a2c4, 0x026eb3fc, 0xf6de80b4, 0x5ab1918c,
0x0b600a75, 0xa70f1b4d, 0x53bf2805, 0xffd0393d,
0xbbde4f95, 0x17b15ead, 0xe3016de5, 0x4f6e7cdd,
0x9a6b6db0, 0x36047c88, 0xc2b44fc0, 0x6edb5ef8,
0x2ad52850, 0x86ba3968, 0x720a0a20, 0xde651b18,
0xd80128fa, 0x746e39c2, 0x80de0a8a, 0x2cb11bb2,
0x68bf6d1a, 0xc4d07c22, 0x30604f6a, 0x9c0f5e52,
0x490a4f3f, 0xe5655e07, 0x11d56d4f, 0xbdba7c77,
0xf9b40adf, 0x55db1be7, 0xa16b28af, 0x0d043997,
0xf2bff359, 0x5ed0e261, 0xaa60d129, 0x060fc011,
0x4201b6b9, 0xee6ea781, 0x1ade94c9, 0xb6b185f1,
0x63b4949c, 0xcfdb85a4, 0x3b6bb6ec, 0x9704a7d4,
0xd30ad17c, 0x7f65c044, 0x8bd5f30c, 0x27bae234,
0x21ded1d6, 0x8db1c0ee, 0x7901f3a6, 0xd56ee29e,
0x91609436, 0x3d0f850e, 0xc9bfb646, 0x65d0a77e,
0xb0d5b613, 0x1cbaa72b, 0xe80a9463, 0x4465855b,
0x006bf3f3, 0xac04e2cb, 0x58b4d183, 0xf4dbc0bb,
0xa50a5b42, 0x09654a7a, 0xfdd57932, 0x51ba680a,
0x15b41ea2, 0xb9db0f9a, 0x4d6b3cd2, 0xe1042dea,
0x34013c87, 0x986e2dbf, 0x6cde1ef7, 0xc0b10fcf,
0x84bf7967, 0x28d0685f, 0xdc605b17, 0x700f4a2f,
0x766b79cd, 0xda0468f5, 0x2eb45bbd, 0x82db4a85,
0xc6d53c2d, 0x6aba2d15, 0x9e0a1e5d, 0x32650f65,
0xe7601e08, 0x4b0f0f30, 0xbfbf3c78, 0x13d02d40,
0x57de5be8, 0xfbb14ad0, 0x0f017998, 0xa36e68a0
},{
0x00000000, 0x196b30ef, 0xc3a08cdb, 0xdacbbc34,
0x7737f5b2, 0x6e5cc55d, 0xb4977969, 0xadfc4986,
0x1f180660, 0x0673368f, 0xdcb88abb, 0xc5d3ba54,
0x682ff3d2, 0x7144c33d, 0xab8f7f09, 0xb2e44fe6,
0x3e300cc0, 0x275b3c2f, 0xfd90801b, 0xe4fbb0f4,
0x4907f972, 0x506cc99d, 0x8aa775a9, 0x93cc4546,
0x21280aa0, 0x38433a4f, 0xe288867b, 0xfbe3b694,
0x561fff12, 0x4f74cffd, 0x95bf73c9, 0x8cd44326,
0x8d16f485, 0x947dc46a, 0x4eb6785e, 0x57dd48b1,
0xfa210137, 0xe34a31d8, 0x39818dec, 0x20eabd03,
0x920ef2e5, 0x8b65c20a, 0x51ae7e3e, 0x48c54ed1,
0xe5390757, 0xfc5237b8, 0x26998b8c, 0x3ff2bb63,
0xb326f845, 0xaa4dc8aa, 0x7086749e, 0x69ed4471,
0xc4110df7, 0xdd7a3d18, 0x07b1812c, 0x1edab1c3,
0xac3efe25, 0xb555ceca, 0x6f9e72fe, 0x76f54211,
0xdb090b97, 0xc2623b78, 0x18a9874c, 0x01c2b7a3,
0xeb5b040e, 0xf23034e1, 0x28fb88d5, 0x3190b83a,
0x9c6cf1bc, 0x8507c153, 0x5fcc7d67, 0x46a74d88,
0xf443026e, 0xed283281, 0x37e38eb5, 0x2e88be5a,
0x8374f7dc, 0x9a1fc733, 0x40d47b07, 0x59bf4be8,
0xd56b08ce, 0xcc003821, 0x16cb8415, 0x0fa0b4fa,
0xa25cfd7c, 0xbb37cd93, 0x61fc71a7, 0x78974148,
0xca730eae, 0xd3183e41, 0x09d38275, 0x10b8b29a,
0xbd44fb1c, 0xa42fcbf3, 0x7ee477c7, 0x678f4728,
0x664df08b, 0x7f26c064, 0xa5ed7c50, 0xbc864cbf,
0x117a0539, 0x081135d6, 0xd2da89e2, 0xcbb1b90d,
0x7955f6eb, 0x603ec604, 0xbaf57a30, 0xa39e4adf,
0x0e620359, 0x170933b6, 0xcdc28f82, 0xd4a9bf6d,
0x587dfc4b, 0x4116cca4, 0x9bdd7090, 0x82b6407f,
0x2f4a09f9, 0x36213916, 0xecea8522, 0xf581b5cd,
0x4765fa2b, 0x5e0ecac4, 0x84c576f0, 0x9dae461f,
0x30520f99, 0x29393f76, 0xf3f28342, 0xea99b3ad,
0xd6b7081c, 0xcfdc38f3, 0x151784c7, 0x0c7cb428,
0xa180fdae, 0xb8ebcd41, 0x62207175, 0x7b4b419a,
0xc9af0e7c, 0xd0c43e93, 0x0a0f82a7, 0x1364b248,
0xbe98fbce, 0xa7f3cb21, 0x7d387715, 0x645347fa,
0xe88704dc, 0xf1ec3433, 0x2b278807, 0x324cb8e8,
0x9fb0f16e, 0x86dbc181, 0x5c107db5, 0x457b4d5a,
0xf79f02bc, 0xeef43253, 0x343f8e67, 0x2d54be88,
0x80a8f70e, 0x99c3c7e1, 0x43087bd5, 0x5a634b3a,
0x5ba1fc99, 0x42cacc76, 0x98017042, 0x816a40ad,
0x2c96092b, 0x35fd39c4, 0xef3685f0, 0xf65db51f,
0x44b9faf9, 0x5dd2ca16, 0x87197622, 0x9e7246cd,
0x338e0f4b, 0x2ae53fa4, 0xf02e8390, 0xe945b37f,
0x6591f059, 0x7cfac0b6, 0xa6317c82, 0xbf5a4c6d,
0x12a605eb, 0x0bcd3504, 0xd1068930, 0xc86db9df,
0x7a89f639, 0x63e2c6d6, 0xb9297ae2, 0xa0424a0d,
0x0dbe038b, 0x14d53364, 0xce1e8f50, 0xd775bfbf,
0x3dec0c12, 0x24873cfd, 0xfe4c80c9, 0xe727b026,
0x4adbf9a0, 0x53b0c94f, 0x897b757b, 0x90104594,
0x22f40a72, 0x3b9f3a9d, 0xe15486a9, 0xf83fb646,
0x55c3ffc0, 0x4ca8cf2f, 0x9663731b, 0x8f0843f4,
0x03dc00d2, 0x1ab7303d, 0xc07c8c09, 0xd917bce6,
0x74ebf560, 0x6d80c58f, 0xb74b79bb, 0xae204954,
0x1cc406b2, 0x05af365d, 0xdf648a69, 0xc60fba86,
0x6bf3f300, 0x7298c3ef, 0xa8537fdb, 0xb1384f34,
0xb0faf897, 0xa991c878, 0x735a744c, 0x6a3144a3,
0xc7cd0d25, 0xdea63dca, 0x046d81fe, 0x1d06b111,
0xafe2fef7, 0xb689ce18, 0x6c42722c, 0x752942c3,
0xd8d50b45, 0xc1be3baa, 0x1b75879e, 0x021eb771,
0x8ecaf457, 0x97a1c4b8, 0x4d6a788c, 0x54014863,
0xf9fd01e5, 0xe096310a, 0x3a5d8d3e, 0x2336bdd1,
0x91d2f237, 0x88b9c2d8, 0x52727eec, 0x4b194e03,
0xe6e50785, 0xff8e376a, 0x25458b5e, 0x3c2ebbb1
},{
0x00000000, 0xc82c0368, 0x905906d0, 0x587505b8,
0xd1c5e0a5, 0x19e9e3cd, 0x419ce675, 0x89b0e51d,
0x53fd2d4e, 0x9bd12e26, 0xc3a42b9e, 0x0b8828f6,
0x8238cdeb, 0x4a14ce83, 0x1261cb3b, 0xda4dc853,
0xa6fa5b9c, 0x6ed658f4, 0x36a35d4c, 0xfe8f5e24,
0x773fbb39, 0xbf13b851, 0xe766bde9, 0x2f4abe81,
0xf50776d2, 0x3d2b75ba, 0x655e7002, 0xad72736a,
0x24c29677, 0xecee951f, 0xb49b90a7, 0x7cb793cf,
0xbd835b3d, 0x75af5855, 0x2dda5ded, 0xe5f65e85,
0x6c46bb98, 0xa46ab8f0, 0xfc1fbd48, 0x3433be20,
0xee7e7673, 0x2652751b, 0x7e2770a3, 0xb60b73cb,
0x3fbb96d6, 0xf79795be, 0xafe29006, 0x67ce936e,
0x1b7900a1, 0xd35503c9, 0x8b200671, 0x430c0519,
0xcabce004, 0x0290e36c, 0x5ae5e6d4, 0x92c9e5bc,
0x48842def, 0x80a82e87, 0xd8dd2b3f, 0x10f12857,
0x9941cd4a, 0x516dce22, 0x0918cb9a, 0xc134c8f2,
0x7a07b77a, 0xb22bb412, 0xea5eb1aa, 0x2272b2c2,
0xabc257df, 0x63ee54b7, 0x3b9b510f, 0xf3b75267,
0x29fa9a34, 0xe1d6995c, 0xb9a39ce4, 0x718f9f8c,
0xf83f7a91, 0x301379f9, 0x68667c41, 0xa04a7f29,
0xdcfdece6, 0x14d1ef8e, 0x4ca4ea36, 0x8488e95e,
0x0d380c43, 0xc5140f2b, 0x9d610a93, 0x554d09fb,
0x8f00c1a8, 0x472cc2c0, 0x1f59c778, 0xd775c410,
0x5ec5210d, 0x96e92265, 0xce9c27dd, 0x06b024b5,
0xc784ec47, 0x0fa8ef2f, 0x57ddea97, 0x9ff1e9ff,
0x16410ce2, 0xde6d0f8a, 0x86180a32, 0x4e34095a,
0x9479c109, 0x5c55c261, 0x0420c7d9, 0xcc0cc4b1,
0x45bc21ac, 0x8d9022c4, 0xd5e5277c, 0x1dc92414,
0x617eb7db, 0xa952b4b3, 0xf127b10b, 0x390bb263,
0xb0bb577e, 0x78975416, 0x20e251ae, 0xe8ce52c6,
0x32839a95, 0xfaaf99fd, 0xa2da9c45, 0x6af69f2d,
0xe3467a30, 0x2b6a7958, 0x731f7ce0, 0xbb337f88,
0xf40e6ef5, 0x3c226d9d, 0x64576825, 0xac7b6b4d,
0x25cb8e50, 0xede78d38, 0xb5928880, 0x7dbe8be8,
0xa7f343bb, 0x6fdf40d3, 0x37aa456b, 0xff864603,
0x7636a31e, 0xbe1aa076, 0xe66fa5ce, 0x2e43a6a6,
0x52f43569, 0x9ad83601, 0xc2ad33b9, 0x0a8130d1,
0x8331d5cc, 0x4b1dd6a4, 0x1368d31c, 0xdb44d074,
0x01091827, 0xc9251b4f, 0x91501ef7, 0x597c1d9f,
0xd0ccf882, 0x18e0fbea, 0x4095fe52, 0x88b9fd3a,
0x498d35c8, 0x81a136a0, 0xd9d43318, 0x11f83070,
0x9848d56d, 0x5064d605, 0x0811d3bd, 0xc03dd0d5,
0x1a701886, 0xd25c1bee, 0x8a291e56, 0x42051d3e,
0xcbb5f823, 0x0399fb4b, 0x5becfef3, 0x93c0fd9b,
0xef776e54, 0x275b6d3c, 0x7f2e6884, 0xb7026bec,
0x3eb28ef1, 0xf69e8d99, 0xaeeb8821, 0x66c78b49,
0xbc8a431a, 0x74a64072, 0x2cd345ca, 0xe4ff46a2,
0x6d4fa3bf, 0xa563a0d7, 0xfd16a56f, 0x353aa607,
0x8e09d98f, 0x4625dae7, 0x1e50df5f, 0xd67cdc37,
0x5fcc392a, 0x97e03a42, 0xcf953ffa, 0x07b93c92,
0xddf4f4c1, 0x15d8f7a9, 0x4dadf211, 0x8581f179,
0x0c311464, 0xc41d170c, 0x9c6812b4, 0x544411dc,
0x28f38213, 0xe0df817b, 0xb8aa84c3, 0x708687ab,
0xf93662b6, 0x311a61de, 0x696f6466, 0xa143670e,
0x7b0eaf5d, 0xb322ac35, 0xeb57a98d, 0x237baae5,
0xaacb4ff8, 0x62e74c90, 0x3a924928, 0xf2be4a40,
0x338a82b2, 0xfba681da, 0xa3d38462, 0x6bff870a,
0xe24f6217, 0x2a63617f, 0x721664c7, 0xba3a67af,
0x6077affc, 0xa85bac94, 0xf02ea92c, 0x3802aa44,
0xb1b24f59, 0x799e4c31, 0x21eb4989, 0xe9c74ae1,
0x9570d92e, 0x5d5cda46, 0x0529dffe, 0xcd05dc96,
0x44b5398b, 0x8c993ae3, 0xd4ec3f5b, 0x1cc03c33,
0xc68df460, 0x0ea1f708, 0x56d4f2b0, 0x9ef8f1d8,
0x174814c5, 0xdf6417ad, 0x87111215, 0x4f3d117d
},{
0x00000000, 0x277d3c49, 0x4efa7892, 0x698744db,
0x6d821d21, 0x4aff2168, 0x237865b3, 0x040559fa,
0xda043b42, 0xfd79070b, 0x94fe43d0, 0xb3837f99,
0xb7862663, 0x90fb1a2a, 0xf97c5ef1, 0xde0162b8,
0xb4097684, 0x93744acd, 0xfaf30e16, 0xdd8e325f,
0xd98b6ba5, 0xfef657ec, 0x97711337, 0xb00c2f7e,
0x6e0d4dc6, 0x4970718f, 0x20f73554, 0x078a091d,
0x038f50e7, 0x24f26cae, 0x4d752875, 0x6a08143c,
0x9965000d, 0xbe183c44, 0xd79f789f, 0xf0e244d6,
0xf4e71d2c, 0xd39a2165, 0xba1d65be, 0x9d6059f7,
0x43613b4f, 0x641c0706, 0x0d9b43dd, 0x2ae67f94,
0x2ee3266e, 0x099e1a27, 0x60195efc, 0x476462b5,
0x2d6c7689, 0x0a114ac0, 0x63960e1b, 0x44eb3252,
0x40ee6ba8, 0x679357e1, 0x0e14133a, 0x29692f73,
0xf7684dcb, 0xd0157182, 0xb9923559, 0x9eef0910,
0x9aea50ea, 0xbd976ca3, 0xd4102878, 0xf36d1431,
0x32cb001a, 0x15b63c53, 0x7c317888, 0x5b4c44c1,
0x5f491d3b, 0x78342172, 0x11b365a9, 0x36ce59e0,
0xe8cf3b58, 0xcfb20711, 0xa63543ca, 0x81487f83,
0x854d2679, 0xa2301a30, 0xcbb75eeb, 0xecca62a2,
0x86c2769e, 0xa1bf4ad7, 0xc8380e0c, 0xef453245,
0xeb406bbf, 0xcc3d57f6, 0xa5ba132d, 0x82c72f64,
0x5cc64ddc, 0x7bbb7195, 0x123c354e, 0x35410907,
0x314450fd, 0x16396cb4, 0x7fbe286f, 0x58c31426,
0xabae0017, 0x8cd33c5e, 0xe5547885, 0xc22944cc,
0xc62c1d36, 0xe151217f, 0x88d665a4, 0xafab59ed,
0x71aa3b55, 0x56d7071c, 0x3f5043c7, 0x182d7f8e,
0x1c282674, 0x3b551a3d, 0x52d25ee6, 0x75af62af,
0x1fa77693, 0x38da4ada, 0x515d0e01, 0x76203248,
0x72256bb2, 0x555857fb, 0x3cdf1320, 0x1ba22f69,
0xc5a34dd1, 0xe2de7198, 0x8b593543, 0xac24090a,
0xa82150f0, 0x8f5c6cb9, 0xe6db2862, 0xc1a6142b,
0x64960134, 0x43eb3d7d, 0x2a6c79a6, 0x0d1145ef,
0x09141c15, 0x2e69205c, 0x47ee6487, 0x609358ce,
0xbe923a76, 0x99ef063f, 0xf06842e4, 0xd7157ead,
0xd3102757, 0xf46d1b1e, 0x9dea5fc5, 0xba97638c,
0xd09f77b0, 0xf7e24bf9, 0x9e650f22, 0xb918336b,
0xbd1d6a91, 0x9a6056d8, 0xf3e71203, 0xd49a2e4a,
0x0a9b4cf2, 0x2de670bb, 0x44613460, 0x631c0829,
0x671951d3, 0x40646d9a, 0x29e32941, 0x0e9e1508,
0xfdf30139, 0xda8e3d70, 0xb30979ab, 0x947445e2,
0x90711c18, 0xb70c2051, 0xde8b648a, 0xf9f658c3,
0x27f73a7b, 0x008a0632, 0x690d42e9, 0x4e707ea0,
0x4a75275a, 0x6d081b13, 0x048f5fc8, 0x23f26381,
0x49fa77bd, 0x6e874bf4, 0x07000f2f, 0x207d3366,
0x24786a9c, 0x030556d5, 0x6a82120e, 0x4dff2e47,
0x93fe4cff, 0xb48370b6, 0xdd04346d, 0xfa790824,
0xfe7c51de, 0xd9016d97, 0xb086294c, 0x97fb1505,
0x565d012e, 0x71203d67, 0x18a779bc, 0x3fda45f5,
0x3bdf1c0f, 0x1ca22046, 0x7525649d, 0x525858d4,
0x8c593a6c, 0xab240625, 0xc2a342fe, 0xe5de7eb7,
0xe1db274d, 0xc6a61b04, 0xaf215fdf, 0x885c6396,
0xe25477aa, 0xc5294be3, 0xacae0f38, 0x8bd33371,
0x8fd66a8b, 0xa8ab56c2, 0xc12c1219, 0xe6512e50,
0x38504ce8, 0x1f2d70a1, 0x76aa347a, 0x51d70833,
0x55d251c9, 0x72af6d80, 0x1b28295b, 0x3c551512,
0xcf380123, 0xe8453d6a, 0x81c279b1, 0xa6bf45f8,
0xa2ba1c02, 0x85c7204b, 0xec406490, 0xcb3d58d9,
0x153c3a61, 0x32410628, 0x5bc642f3, 0x7cbb7eba,
0x78be2740, 0x5fc31b09, 0x36445fd2, 0x1139639b,
0x7b3177a7, 0x5c4c4bee, 0x35cb0f35, 0x12b6337c,
0x16b36a86, 0x31ce56cf, 0x58491214, 0x7f342e5d,
0xa1354ce5, 0x864870ac, 0xefcf3477, 0xc8b2083e,
0xccb751c4, 0xebca6d8d, 0x824d2956, 0xa530151f
}
#else
{
0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4,
0xc79a971f, 0x35f1141c, 0x26a1e7e8, 0xd4ca64eb,
0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b,
0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24,
0x105ec76f, 0xe235446c, 0xf165b798, 0x030e349b,
0xd7c45070, 0x25afd373, 0x36ff2087, 0xc494a384,
0x9a879fa0, 0x68ec1ca3, 0x7bbcef57, 0x89d76c54,
0x5d1d08bf, 0xaf768bbc, 0xbc267848, 0x4e4dfb4b,
0x20bd8ede, 0xd2d60ddd, 0xc186fe29, 0x33ed7d2a,
0xe72719c1, 0x154c9ac2, 0x061c6936, 0xf477ea35,
0xaa64d611, 0x580f5512, 0x4b5fa6e6, 0xb93425e5,
0x6dfe410e, 0x9f95c20d, 0x8cc531f9, 0x7eaeb2fa,
0x30e349b1, 0xc288cab2, 0xd1d83946, 0x23b3ba45,
0xf779deae, 0x05125dad, 0x1642ae59, 0xe4292d5a,
0xba3a117e, 0x4851927d, 0x5b016189, 0xa96ae28a,
0x7da08661, 0x8fcb0562, 0x9c9bf696, 0x6ef07595,
0x417b1dbc, 0xb3109ebf, 0xa0406d4b, 0x522bee48,
0x86e18aa3, 0x748a09a0, 0x67dafa54, 0x95b17957,
0xcba24573, 0x39c9c670, 0x2a993584, 0xd8f2b687,
0x0c38d26c, 0xfe53516f, 0xed03a29b, 0x1f682198,
0x5125dad3, 0xa34e59d0, 0xb01eaa24, 0x42752927,
0x96bf4dcc, 0x64d4cecf, 0x77843d3b, 0x85efbe38,
0xdbfc821c, 0x2997011f, 0x3ac7f2eb, 0xc8ac71e8,
0x1c661503, 0xee0d9600, 0xfd5d65f4, 0x0f36e6f7,
0x61c69362, 0x93ad1061, 0x80fde395, 0x72966096,
0xa65c047d, 0x5437877e, 0x4767748a, 0xb50cf789,
0xeb1fcbad, 0x197448ae, 0x0a24bb5a, 0xf84f3859,
0x2c855cb2, 0xdeeedfb1, 0xcdbe2c45, 0x3fd5af46,
0x7198540d, 0x83f3d70e, 0x90a324fa, 0x62c8a7f9,
0xb602c312, 0x44694011, 0x5739b3e5, 0xa55230e6,
0xfb410cc2, 0x092a8fc1, 0x1a7a7c35, 0xe811ff36,
0x3cdb9bdd, 0xceb018de, 0xdde0eb2a, 0x2f8b6829,
0x82f63b78, 0x709db87b, 0x63cd4b8f, 0x91a6c88c,
0x456cac67, 0xb7072f64, 0xa457dc90, 0x563c5f93,
0x082f63b7, 0xfa44e0b4, 0xe9141340, 0x1b7f9043,
0xcfb5f4a8, 0x3dde77ab, 0x2e8e845f, 0xdce5075c,
0x92a8fc17, 0x60c37f14, 0x73938ce0, 0x81f80fe3,
0x55326b08, 0xa759e80b, 0xb4091bff, 0x466298fc,
0x1871a4d8, 0xea1a27db, 0xf94ad42f, 0x0b21572c,
0xdfeb33c7, 0x2d80b0c4, 0x3ed04330, 0xccbbc033,
0xa24bb5a6, 0x502036a5, 0x4370c551, 0xb11b4652,
0x65d122b9, 0x97baa1ba, 0x84ea524e, 0x7681d14d,
0x2892ed69, 0xdaf96e6a, 0xc9a99d9e, 0x3bc21e9d,
0xef087a76, 0x1d63f975, 0x0e330a81, 0xfc588982,
0xb21572c9, 0x407ef1ca, 0x532e023e, 0xa145813d,
0x758fe5d6, 0x87e466d5, 0x94b49521, 0x66df1622,
0x38cc2a06, 0xcaa7a905, 0xd9f75af1, 0x2b9cd9f2,
0xff56bd19, 0x0d3d3e1a, 0x1e6dcdee, 0xec064eed,
0xc38d26c4, 0x31e6a5c7, 0x22b65633, 0xd0ddd530,
0x0417b1db, 0xf67c32d8, 0xe52cc12c, 0x1747422f,
0x49547e0b, 0xbb3ffd08, 0xa86f0efc, 0x5a048dff,
0x8ecee914, 0x7ca56a17, 0x6ff599e3, 0x9d9e1ae0,
0xd3d3e1ab, 0x21b862a8, 0x32e8915c, 0xc083125f,
0x144976b4, 0xe622f5b7, 0xf5720643, 0x07198540,
0x590ab964, 0xab613a67, 0xb831c993, 0x4a5a4a90,
0x9e902e7b, 0x6cfbad78, 0x7fab5e8c, 0x8dc0dd8f,
0xe330a81a, 0x115b2b19, 0x020bd8ed, 0xf0605bee,
0x24aa3f05, 0xd6c1bc06, 0xc5914ff2, 0x37faccf1,
0x69e9f0d5, 0x9b8273d6, 0x88d28022, 0x7ab90321,
0xae7367ca, 0x5c18e4c9, 0x4f48173d, 0xbd23943e,
0xf36e6f75, 0x0105ec76, 0x12551f82, 0xe03e9c81,
0x34f4f86a, 0xc69f7b69, 0xd5cf889d, 0x27a40b9e,
0x79b737ba, 0x8bdcb4b9, 0x988c474d, 0x6ae7c44e,
0xbe2da0a5, 0x4c4623a6, 0x5f16d052, 0xad7d5351
},{
0x00000000, 0x13a29877, 0x274530ee, 0x34e7a899,
0x4e8a61dc, 0x5d28f9ab, 0x69cf5132, 0x7a6dc945,
0x9d14c3b8, 0x8eb65bcf, 0xba51f356, 0xa9f36b21,
0xd39ea264, 0xc03c3a13, 0xf4db928a, 0xe7790afd,
0x3fc5f181, 0x2c6769f6, 0x1880c16f, 0x0b225918,
0x714f905d, 0x62ed082a, 0x560aa0b3, 0x45a838c4,
0xa2d13239, 0xb173aa4e, 0x859402d7, 0x96369aa0,
0xec5b53e5, 0xfff9cb92, 0xcb1e630b, 0xd8bcfb7c,
0x7f8be302, 0x6c297b75, 0x58ced3ec, 0x4b6c4b9b,
0x310182de, 0x22a31aa9, 0x1644b230, 0x05e62a47,
0xe29f20ba, 0xf13db8cd, 0xc5da1054, 0xd6788823,
0xac154166, 0xbfb7d911, 0x8b507188, 0x98f2e9ff,
0x404e1283, 0x53ec8af4, 0x670b226d, 0x74a9ba1a,
0x0ec4735f, 0x1d66eb28, 0x298143b1, 0x3a23dbc6,
0xdd5ad13b, 0xcef8494c, 0xfa1fe1d5, 0xe9bd79a2,
0x93d0b0e7, 0x80722890, 0xb4958009, 0xa737187e,
0xff17c604, 0xecb55e73, 0xd852f6ea, 0xcbf06e9d,
0xb19da7d8, 0xa23f3faf, 0x96d89736, 0x857a0f41,
0x620305bc, 0x71a19dcb, 0x45463552, 0x56e4ad25,
0x2c896460, 0x3f2bfc17, 0x0bcc548e, 0x186eccf9,
0xc0d23785, 0xd370aff2, 0xe797076b, 0xf4359f1c,
0x8e585659, 0x9dface2e, 0xa91d66b7, 0xbabffec0,
0x5dc6f43d, 0x4e646c4a, 0x7a83c4d3, 0x69215ca4,
0x134c95e1, 0x00ee0d96, 0x3409a50f, 0x27ab3d78,
0x809c2506, 0x933ebd71, 0xa7d915e8, 0xb47b8d9f,
0xce1644da, 0xddb4dcad, 0xe9537434, 0xfaf1ec43,
0x1d88e6be, 0x0e2a7ec9, 0x3acdd650, 0x296f4e27,
0x53028762, 0x40a01f15, 0x7447b78c, 0x67e52ffb,
0xbf59d487, 0xacfb4cf0, 0x981ce469, 0x8bbe7c1e,
0xf1d3b55b, 0xe2712d2c, 0xd69685b5, 0xc5341dc2,
0x224d173f, 0x31ef8f48, 0x050827d1, 0x16aabfa6,
0x6cc776e3, 0x7f65ee94, 0x4b82460d, 0x5820de7a,
0xfbc3faf9, 0xe861628e, 0xdc86ca17, 0xcf245260,
0xb5499b25, 0xa6eb0352, 0x920cabcb, 0x81ae33bc,
0x66d73941, 0x7575a136, 0x419209af, 0x523091d8,
0x285d589d, 0x3bffc0ea, 0x0f186873, 0x1cbaf004,
0xc4060b78, 0xd7a4930f, 0xe3433b96, 0xf0e1a3e1,
0x8a8c6aa4, 0x992ef2d3, 0xadc95a4a, 0xbe6bc23d,
0x5912c8c0, 0x4ab050b7, 0x7e57f82e, 0x6df56059,
0x1798a91c, 0x043a316b, 0x30dd99f2, 0x237f0185,
0x844819fb, 0x97ea818c, 0xa30d2915, 0xb0afb162,
0xcac27827, 0xd960e050, 0xed8748c9, 0xfe25d0be,
0x195cda43, 0x0afe4234, 0x3e19eaad, 0x2dbb72da,
0x57d6bb9f, 0x447423e8, 0x70938b71, 0x63311306,
0xbb8de87a, 0xa82f700d, 0x9cc8d894, 0x8f6a40e3,
0xf50789a6, 0xe6a511d1, 0xd242b948, 0xc1e0213f,
0x26992bc2, 0x353bb3b5, 0x01dc1b2c, 0x127e835b,
0x68134a1e, 0x7bb1d269, 0x4f567af0, 0x5cf4e287,
0x04d43cfd, 0x1776a48a, 0x23910c13, 0x30339464,
0x4a5e5d21, 0x59fcc556, 0x6d1b6dcf, 0x7eb9f5b8,
0x99c0ff45, 0x8a626732, 0xbe85cfab, 0xad2757dc,
0xd74a9e99, 0xc4e806ee, 0xf00fae77, 0xe3ad3600,
0x3b11cd7c, 0x28b3550b, 0x1c54fd92, 0x0ff665e5,
0x759baca0, 0x663934d7, 0x52de9c4e, 0x417c0439,
0xa6050ec4, 0xb5a796b3, 0x81403e2a, 0x92e2a65d,
0xe88f6f18, 0xfb2df76f, 0xcfca5ff6, 0xdc68c781,
0x7b5fdfff, 0x68fd4788, 0x5c1aef11, 0x4fb87766,
0x35d5be23, 0x26772654, 0x12908ecd, 0x013216ba,
0xe64b1c47, 0xf5e98430, 0xc10e2ca9, 0xd2acb4de,
0xa8c17d9b, 0xbb63e5ec, 0x8f844d75, 0x9c26d502,
0x449a2e7e, 0x5738b609, 0x63df1e90, 0x707d86e7,
0x0a104fa2, 0x19b2d7d5, 0x2d557f4c, 0x3ef7e73b,
0xd98eedc6, 0xca2c75b1, 0xfecbdd28, 0xed69455f,
0x97048c1a, 0x84a6146d, 0xb041bcf4, 0xa3e32483
},{
0x00000000, 0xa541927e, 0x4f6f520d, 0xea2ec073,
0x9edea41a, 0x3b9f3664, 0xd1b1f617, 0x74f06469,
0x38513ec5, 0x9d10acbb, 0x773e6cc8, 0xd27ffeb6,
0xa68f9adf, 0x03ce08a1, 0xe9e0c8d2, 0x4ca15aac,
0x70a27d8a, 0xd5e3eff4, 0x3fcd2f87, 0x9a8cbdf9,
0xee7cd990, 0x4b3d4bee, 0xa1138b9d, 0x045219e3,
0x48f3434f, 0xedb2d131, 0x079c1142, 0xa2dd833c,
0xd62de755, 0x736c752b, 0x9942b558, 0x3c032726,
0xe144fb14, 0x4405696a, 0xae2ba919, 0x0b6a3b67,
0x7f9a5f0e, 0xdadbcd70, 0x30f50d03, 0x95b49f7d,
0xd915c5d1, 0x7c5457af, 0x967a97dc, 0x333b05a2,
0x47cb61cb, 0xe28af3b5, 0x08a433c6, 0xade5a1b8,
0x91e6869e, 0x34a714e0, 0xde89d493, 0x7bc846ed,
0x0f382284, 0xaa79b0fa, 0x40577089, 0xe516e2f7,
0xa9b7b85b, 0x0cf62a25, 0xe6d8ea56, 0x43997828,
0x37691c41, 0x92288e3f, 0x78064e4c, 0xdd47dc32,
0xc76580d9, 0x622412a7, 0x880ad2d4, 0x2d4b40aa,
0x59bb24c3, 0xfcfab6bd, 0x16d476ce, 0xb395e4b0,
0xff34be1c, 0x5a752c62, 0xb05bec11, 0x151a7e6f,
0x61ea1a06, 0xc4ab8878, 0x2e85480b, 0x8bc4da75,
0xb7c7fd53, 0x12866f2d, 0xf8a8af5e, 0x5de93d20,
0x29195949, 0x8c58cb37, 0x66760b44, 0xc337993a,
0x8f96c396, 0x2ad751e8, 0xc0f9919b, 0x65b803e5,
0x1148678c, 0xb409f5f2, 0x5e273581, 0xfb66a7ff,
0x26217bcd, 0x8360e9b3, 0x694e29c0, 0xcc0fbbbe,
0xb8ffdfd7, 0x1dbe4da9, 0xf7908dda, 0x52d11fa4,
0x1e704508, 0xbb31d776, 0x511f1705, 0xf45e857b,
0x80aee112, 0x25ef736c, 0xcfc1b31f, 0x6a802161,
0x56830647, 0xf3c29439, 0x19ec544a, 0xbcadc634,
0xc85da25d, 0x6d1c3023, 0x8732f050, 0x2273622e,
0x6ed23882, 0xcb93aafc, 0x21bd6a8f, 0x84fcf8f1,
0xf00c9c98, 0x554d0ee6, 0xbf63ce95, 0x1a225ceb,
0x8b277743, 0x2e66e53d, 0xc448254e, 0x6109b730,
0x15f9d359, 0xb0b84127, 0x5a968154, 0xffd7132a,
0xb3764986, 0x1637dbf8, 0xfc191b8b, 0x595889f5,
0x2da8ed9c, 0x88e97fe2, 0x62c7bf91, 0xc7862def,
0xfb850ac9, 0x5ec498b7, 0xb4ea58c4, 0x11abcaba,
0x655baed3, 0xc01a3cad, 0x2a34fcde, 0x8f756ea0,
0xc3d4340c, 0x6695a672, 0x8cbb6601, 0x29faf47f,
0x5d0a9016, 0xf84b0268, 0x1265c21b, 0xb7245065,
0x6a638c57, 0xcf221e29, 0x250cde5a, 0x804d4c24,
0xf4bd284d, 0x51fcba33, 0xbbd27a40, 0x1e93e83e,
0x5232b292, 0xf77320ec, 0x1d5de09f, 0xb81c72e1,
0xccec1688, 0x69ad84f6, 0x83834485, 0x26c2d6fb,
0x1ac1f1dd, 0xbf8063a3, 0x55aea3d0, 0xf0ef31ae,
0x841f55c7, 0x215ec7b9, 0xcb7007ca, 0x6e3195b4,
0x2290cf18, 0x87d15d66, 0x6dff9d15, 0xc8be0f6b,
0xbc4e6b02, 0x190ff97c, 0xf321390f, 0x5660ab71,
0x4c42f79a, 0xe90365e4, 0x032da597, 0xa66c37e9,
0xd29c5380, 0x77ddc1fe, 0x9df3018d, 0x38b293f3,
0x7413c95f, 0xd1525b21, 0x3b7c9b52, 0x9e3d092c,
0xeacd6d45, 0x4f8cff3b, 0xa5a23f48, 0x00e3ad36,
0x3ce08a10, 0x99a1186e, 0x738fd81d, 0xd6ce4a63,
0xa23e2e0a, 0x077fbc74, 0xed517c07, 0x4810ee79,
0x04b1b4d5, 0xa1f026ab, 0x4bdee6d8, 0xee9f74a6,
0x9a6f10cf, 0x3f2e82b1, 0xd50042c2, 0x7041d0bc,
0xad060c8e, 0x08479ef0, 0xe2695e83, 0x4728ccfd,
0x33d8a894, 0x96993aea, 0x7cb7fa99, 0xd9f668e7,
0x9557324b, 0x3016a035, 0xda386046, 0x7f79f238,
0x0b899651, 0xaec8042f, 0x44e6c45c, 0xe1a75622,
0xdda47104, 0x78e5e37a, 0x92cb2309, 0x378ab177,
0x437ad51e, 0xe63b4760, 0x0c158713, 0xa954156d,
0xe5f54fc1, 0x40b4ddbf, 0xaa9a1dcc, 0x0fdb8fb2,
0x7b2bebdb, 0xde6a79a5, 0x3444b9d6, 0x91052ba8
},{
0x00000000, 0xdd45aab8, 0xbf672381, 0x62228939,
0x7b2231f3, 0xa6679b4b, 0xc4451272, 0x1900b8ca,
0xf64463e6, 0x2b01c95e, 0x49234067, 0x9466eadf,
0x8d665215, 0x5023f8ad, 0x32017194, 0xef44db2c,
0xe964b13d, 0x34211b85, 0x560392bc, 0x8b463804,
0x924680ce, 0x4f032a76, 0x2d21a34f, 0xf06409f7,
0x1f20d2db, 0xc2657863, 0xa047f15a, 0x7d025be2,
0x6402e328, 0xb9474990, 0xdb65c0a9, 0x06206a11,
0xd725148b, 0x0a60be33, 0x6842370a, 0xb5079db2,
0xac072578, 0x71428fc0, 0x136006f9, 0xce25ac41,
0x2161776d, 0xfc24ddd5, 0x9e0654ec, 0x4343fe54,
0x5a43469e, 0x8706ec26, 0xe524651f, 0x3861cfa7,
0x3e41a5b6, 0xe3040f0e, 0x81268637, 0x5c632c8f,
0x45639445, 0x98263efd, 0xfa04b7c4, 0x27411d7c,
0xc805c650, 0x15406ce8, 0x7762e5d1, 0xaa274f69,
0xb327f7a3, 0x6e625d1b, 0x0c40d422, 0xd1057e9a,
0xaba65fe7, 0x76e3f55f, 0x14c17c66, 0xc984d6de,
0xd0846e14, 0x0dc1c4ac, 0x6fe34d95, 0xb2a6e72d,
0x5de23c01, 0x80a796b9, 0xe2851f80, 0x3fc0b538,
0x26c00df2, 0xfb85a74a, 0x99a72e73, 0x44e284cb,
0x42c2eeda, 0x9f874462, 0xfda5cd5b, 0x20e067e3,
0x39e0df29, 0xe4a57591, 0x8687fca8, 0x5bc25610,
0xb4868d3c, 0x69c32784, 0x0be1aebd, 0xd6a40405,
0xcfa4bccf, 0x12e11677, 0x70c39f4e, 0xad8635f6,
0x7c834b6c, 0xa1c6e1d4, 0xc3e468ed, 0x1ea1c255,
0x07a17a9f, 0xdae4d027, 0xb8c6591e, 0x6583f3a6,
0x8ac7288a, 0x57828232, 0x35a00b0b, 0xe8e5a1b3,
0xf1e51979, 0x2ca0b3c1, 0x4e823af8, 0x93c79040,
0x95e7fa51, 0x48a250e9, 0x2a80d9d0, 0xf7c57368,
0xeec5cba2, 0x3380611a, 0x51a2e823, 0x8ce7429b,
0x63a399b7, 0xbee6330f, 0xdcc4ba36, 0x0181108e,
0x1881a844, 0xc5c402fc, 0xa7e68bc5, 0x7aa3217d,
0x52a0c93f, 0x8fe56387, 0xedc7eabe, 0x30824006,
0x2982f8cc, 0xf4c75274, 0x96e5db4d, 0x4ba071f5,
0xa4e4aad9, 0x79a10061, 0x1b838958, 0xc6c623e0,
0xdfc69b2a, 0x02833192, 0x60a1b8ab, 0xbde41213,
0xbbc47802, 0x6681d2ba, 0x04a35b83, 0xd9e6f13b,
0xc0e649f1, 0x1da3e349, 0x7f816a70, 0xa2c4c0c8,
0x4d801be4, 0x90c5b15c, 0xf2e73865, 0x2fa292dd,
0x36a22a17, 0xebe780af, 0x89c50996, 0x5480a32e,
0x8585ddb4, 0x58c0770c, 0x3ae2fe35, 0xe7a7548d,
0xfea7ec47, 0x23e246ff, 0x41c0cfc6, 0x9c85657e,
0x73c1be52, 0xae8414ea, 0xcca69dd3, 0x11e3376b,
0x08e38fa1, 0xd5a62519, 0xb784ac20, 0x6ac10698,
0x6ce16c89, 0xb1a4c631, 0xd3864f08, 0x0ec3e5b0,
0x17c35d7a, 0xca86f7c2, 0xa8a47efb, 0x75e1d443,
0x9aa50f6f, 0x47e0a5d7, 0x25c22cee, 0xf8878656,
0xe1873e9c, 0x3cc29424, 0x5ee01d1d, 0x83a5b7a5,
0xf90696d8, 0x24433c60, 0x4661b559, 0x9b241fe1,
0x8224a72b, 0x5f610d93, 0x3d4384aa, 0xe0062e12,
0x0f42f53e, 0xd2075f86, 0xb025d6bf, 0x6d607c07,
0x7460c4cd, 0xa9256e75, 0xcb07e74c, 0x16424df4,
0x106227e5, 0xcd278d5d, 0xaf050464, 0x7240aedc,
0x6b401616, 0xb605bcae, 0xd4273597, 0x09629f2f,
0xe6264403, 0x3b63eebb, 0x59416782, 0x8404cd3a,
0x9d0475f0, 0x4041df48, 0x22635671, 0xff26fcc9,
0x2e238253, 0xf36628eb, 0x9144a1d2, 0x4c010b6a,
0x5501b3a0, 0x88441918, 0xea669021, 0x37233a99,
0xd867e1b5, 0x05224b0d, 0x6700c234, 0xba45688c,
0xa345d046, 0x7e007afe, 0x1c22f3c7, 0xc167597f,
0xc747336e, 0x1a0299d6, 0x782010ef, 0xa565ba57,
0xbc65029d, 0x6120a825, 0x0302211c, 0xde478ba4,
0x31035088, 0xec46fa30, 0x8e647309, 0x5321d9b1,
0x4a21617b, 0x9764cbc3, 0xf54642fa, 0x2803e842
},{
0x00000000, 0x38116fac, 0x7022df58, 0x4833b0f4,
0xe045beb0, 0xd854d11c, 0x906761e8, 0xa8760e44,
0xc5670b91, 0xfd76643d, 0xb545d4c9, 0x8d54bb65,
0x2522b521, 0x1d33da8d, 0x55006a79, 0x6d1105d5,
0x8f2261d3, 0xb7330e7f, 0xff00be8b, 0xc711d127,
0x6f67df63, 0x5776b0cf, 0x1f45003b, 0x27546f97,
0x4a456a42, 0x725405ee, 0x3a67b51a, 0x0276dab6,
0xaa00d4f2, 0x9211bb5e, 0xda220baa, 0xe2336406,
0x1ba8b557, 0x23b9dafb, 0x6b8a6a0f, 0x539b05a3,
0xfbed0be7, 0xc3fc644b, 0x8bcfd4bf, 0xb3debb13,
0xdecfbec6, 0xe6ded16a, 0xaeed619e, 0x96fc0e32,
0x3e8a0076, 0x069b6fda, 0x4ea8df2e, 0x76b9b082,
0x948ad484, 0xac9bbb28, 0xe4a80bdc, 0xdcb96470,
0x74cf6a34, 0x4cde0598, 0x04edb56c, 0x3cfcdac0,
0x51eddf15, 0x69fcb0b9, 0x21cf004d, 0x19de6fe1,
0xb1a861a5, 0x89b90e09, 0xc18abefd, 0xf99bd151,
0x37516aae, 0x0f400502, 0x4773b5f6, 0x7f62da5a,
0xd714d41e, 0xef05bbb2, 0xa7360b46, 0x9f2764ea,
0xf236613f, 0xca270e93, 0x8214be67, 0xba05d1cb,
0x1273df8f, 0x2a62b023, 0x625100d7, 0x5a406f7b,
0xb8730b7d, 0x806264d1, 0xc851d425, 0xf040bb89,
0x5836b5cd, 0x6027da61, 0x28146a95, 0x10050539,
0x7d1400ec, 0x45056f40, 0x0d36dfb4, 0x3527b018,
0x9d51be5c, 0xa540d1f0, 0xed736104, 0xd5620ea8,
0x2cf9dff9, 0x14e8b055, 0x5cdb00a1, 0x64ca6f0d,
0xccbc6149, 0xf4ad0ee5, 0xbc9ebe11, 0x848fd1bd,
0xe99ed468, 0xd18fbbc4, 0x99bc0b30, 0xa1ad649c,
0x09db6ad8, 0x31ca0574, 0x79f9b580, 0x41e8da2c,
0xa3dbbe2a, 0x9bcad186, 0xd3f96172, 0xebe80ede,
0x439e009a, 0x7b8f6f36, 0x33bcdfc2, 0x0badb06e,
0x66bcb5bb, 0x5eadda17, 0x169e6ae3, 0x2e8f054f,
0x86f90b0b, 0xbee864a7, 0xf6dbd453, 0xcecabbff,
0x6ea2d55c, 0x56b3baf0, 0x1e800a04, 0x269165a8,
0x8ee76bec, 0xb6f60440, 0xfec5b4b4, 0xc6d4db18,
0xabc5decd, 0x93d4b161, 0xdbe70195, 0xe3f66e39,
0x4b80607d, 0x73910fd1, 0x3ba2bf25, 0x03b3d089,
0xe180b48f, 0xd991db23, 0x91a26bd7, 0xa9b3047b,
0x01c50a3f, 0x39d46593, 0x71e7d567, 0x49f6bacb,
0x24e7bf1e, 0x1cf6d0b2, 0x54c56046, 0x6cd40fea,
0xc4a201ae, 0xfcb36e02, 0xb480def6, 0x8c91b15a,
0x750a600b, 0x4d1b0fa7, 0x0528bf53, 0x3d39d0ff,
0x954fdebb, 0xad5eb117, 0xe56d01e3, 0xdd7c6e4f,
0xb06d6b9a, 0x887c0436, 0xc04fb4c2, 0xf85edb6e,
0x5028d52a, 0x6839ba86, 0x200a0a72, 0x181b65de,
0xfa2801d8, 0xc2396e74, 0x8a0ade80, 0xb21bb12c,
0x1a6dbf68, 0x227cd0c4, 0x6a4f6030, 0x525e0f9c,
0x3f4f0a49, 0x075e65e5, 0x4f6dd511, 0x777cbabd,
0xdf0ab4f9, 0xe71bdb55, 0xaf286ba1, 0x9739040d,
0x59f3bff2, 0x61e2d05e, 0x29d160aa, 0x11c00f06,
0xb9b60142, 0x81a76eee, 0xc994de1a, 0xf185b1b6,
0x9c94b463, 0xa485dbcf, 0xecb66b3b, 0xd4a70497,
0x7cd10ad3, 0x44c0657f, 0x0cf3d58b, 0x34e2ba27,
0xd6d1de21, 0xeec0b18d, 0xa6f30179, 0x9ee26ed5,
0x36946091, 0x0e850f3d, 0x46b6bfc9, 0x7ea7d065,
0x13b6d5b0, 0x2ba7ba1c, 0x63940ae8, 0x5b856544,
0xf3f36b00, 0xcbe204ac, 0x83d1b458, 0xbbc0dbf4,
0x425b0aa5, 0x7a4a6509, 0x3279d5fd, 0x0a68ba51,
0xa21eb415, 0x9a0fdbb9, 0xd23c6b4d, 0xea2d04e1,
0x873c0134, 0xbf2d6e98, 0xf71ede6c, 0xcf0fb1c0,
0x6779bf84, 0x5f68d028, 0x175b60dc, 0x2f4a0f70,
0xcd796b76, 0xf56804da, 0xbd5bb42e, 0x854adb82,
0x2d3cd5c6, 0x152dba6a, 0x5d1e0a9e, 0x650f6532,
0x081e60e7, 0x300f0f4b, 0x783cbfbf, 0x402dd013,
0xe85bde57, 0xd04ab1fb, 0x9879010f, 0xa0686ea3
},{
0x00000000, 0xef306b19, 0xdb8ca0c3, 0x34bccbda,
0xb2f53777, 0x5dc55c6e, 0x697997b4, 0x8649fcad,
0x6006181f, 0x8f367306, 0xbb8ab8dc, 0x54bad3c5,
0xd2f32f68, 0x3dc34471, 0x097f8fab, 0xe64fe4b2,
0xc00c303e, 0x2f3c5b27, 0x1b8090fd, 0xf4b0fbe4,
0x72f90749, 0x9dc96c50, 0xa975a78a, 0x4645cc93,
0xa00a2821, 0x4f3a4338, 0x7b8688e2, 0x94b6e3fb,
0x12ff1f56, 0xfdcf744f, 0xc973bf95, 0x2643d48c,
0x85f4168d, 0x6ac47d94, 0x5e78b64e, 0xb148dd57,
0x370121fa, 0xd8314ae3, 0xec8d8139, 0x03bdea20,
0xe5f20e92, 0x0ac2658b, 0x3e7eae51, 0xd14ec548,
0x570739e5, 0xb83752fc, 0x8c8b9926, 0x63bbf23f,
0x45f826b3, 0xaac84daa, 0x9e748670, 0x7144ed69,
0xf70d11c4, 0x183d7add, 0x2c81b107, 0xc3b1da1e,
0x25fe3eac, 0xcace55b5, 0xfe729e6f, 0x1142f576,
0x970b09db, 0x783b62c2, 0x4c87a918, 0xa3b7c201,
0x0e045beb, 0xe13430f2, 0xd588fb28, 0x3ab89031,
0xbcf16c9c, 0x53c10785, 0x677dcc5f, 0x884da746,
0x6e0243f4, 0x813228ed, 0xb58ee337, 0x5abe882e,
0xdcf77483, 0x33c71f9a, 0x077bd440, 0xe84bbf59,
0xce086bd5, 0x213800cc, 0x1584cb16, 0xfab4a00f,
0x7cfd5ca2, 0x93cd37bb, 0xa771fc61, 0x48419778,
0xae0e73ca, 0x413e18d3, 0x7582d309, 0x9ab2b810,
0x1cfb44bd, 0xf3cb2fa4, 0xc777e47e, 0x28478f67,
0x8bf04d66, 0x64c0267f, 0x507ceda5, 0xbf4c86bc,
0x39057a11, 0xd6351108, 0xe289dad2, 0x0db9b1cb,
0xebf65579, 0x04c63e60, 0x307af5ba, 0xdf4a9ea3,
0x5903620e, 0xb6330917, 0x828fc2cd, 0x6dbfa9d4,
0x4bfc7d58, 0xa4cc1641, 0x9070dd9b, 0x7f40b682,
0xf9094a2f, 0x16392136, 0x2285eaec, 0xcdb581f5,
0x2bfa6547, 0xc4ca0e5e, 0xf076c584, 0x1f46ae9d,
0x990f5230, 0x763f3929, 0x4283f2f3, 0xadb399ea,
0x1c08b7d6, 0xf338dccf, 0xc7841715, 0x28b47c0c,
0xaefd80a1, 0x41cdebb8, 0x75712062, 0x9a414b7b,
0x7c0eafc9, 0x933ec4d0, 0xa7820f0a, 0x48b26413,
0xcefb98be, 0x21cbf3a7, 0x1577387d, 0xfa475364,
0xdc0487e8, 0x3334ecf1, 0x0788272b, 0xe8b84c32,
0x6ef1b09f, 0x81c1db86, 0xb57d105c, 0x5a4d7b45,
0xbc029ff7, 0x5332f4ee, 0x678e3f34, 0x88be542d,
0x0ef7a880, 0xe1c7c399, 0xd57b0843, 0x3a4b635a,
0x99fca15b, 0x76ccca42, 0x42700198, 0xad406a81,
0x2b09962c, 0xc439fd35, 0xf08536ef, 0x1fb55df6,
0xf9fab944, 0x16cad25d, 0x22761987, 0xcd46729e,
0x4b0f8e33, 0xa43fe52a, 0x90832ef0, 0x7fb345e9,
0x59f09165, 0xb6c0fa7c, 0x827c31a6, 0x6d4c5abf,
0xeb05a612, 0x0435cd0b, 0x308906d1, 0xdfb96dc8,
0x39f6897a, 0xd6c6e263, 0xe27a29b9, 0x0d4a42a0,
0x8b03be0d, 0x6433d514, 0x508f1ece, 0xbfbf75d7,
0x120cec3d, 0xfd3c8724, 0xc9804cfe, 0x26b027e7,
0xa0f9db4a, 0x4fc9b053, 0x7b757b89, 0x94451090,
0x720af422, 0x9d3a9f3b, 0xa98654e1, 0x46b63ff8,
0xc0ffc355, 0x2fcfa84c, 0x1b736396, 0xf443088f,
0xd200dc03, 0x3d30b71a, 0x098c7cc0, 0xe6bc17d9,
0x60f5eb74, 0x8fc5806d, 0xbb794bb7, 0x544920ae,
0xb206c41c, 0x5d36af05, 0x698a64df, 0x86ba0fc6,
0x00f3f36b, 0xefc39872, 0xdb7f53a8, 0x344f38b1,
0x97f8fab0, 0x78c891a9, 0x4c745a73, 0xa344316a,
0x250dcdc7, 0xca3da6de, 0xfe816d04, 0x11b1061d,
0xf7fee2af, 0x18ce89b6, 0x2c72426c, 0xc3422975,
0x450bd5d8, 0xaa3bbec1, 0x9e87751b, 0x71b71e02,
0x57f4ca8e, 0xb8c4a197, 0x8c786a4d, 0x63480154,
0xe501fdf9, 0x0a3196e0, 0x3e8d5d3a, 0xd1bd3623,
0x37f2d291, 0xd8c2b988, 0xec7e7252, 0x034e194b,
0x8507e5e6, 0x6a378eff, 0x5e8b4525, 0xb1bb2e3c
},{
0x00000000, 0x68032cc8, 0xd0065990, 0xb8057558,
0xa5e0c5d1, 0xcde3e919, 0x75e69c41, 0x1de5b089,
0x4e2dfd53, 0x262ed19b, 0x9e2ba4c3, 0xf628880b,
0xebcd3882, 0x83ce144a, 0x3bcb6112, 0x53c84dda,
0x9c5bfaa6, 0xf458d66e, 0x4c5da336, 0x245e8ffe,
0x39bb3f77, 0x51b813bf, 0xe9bd66e7, 0x81be4a2f,
0xd27607f5, 0xba752b3d, 0x02705e65, 0x6a7372ad,
0x7796c224, 0x1f95eeec, 0xa7909bb4, 0xcf93b77c,
0x3d5b83bd, 0x5558af75, 0xed5dda2d, 0x855ef6e5,
0x98bb466c, 0xf0b86aa4, 0x48bd1ffc, 0x20be3334,
0x73767eee, 0x1b755226, 0xa370277e, 0xcb730bb6,
0xd696bb3f, 0xbe9597f7, 0x0690e2af, 0x6e93ce67,
0xa100791b, 0xc90355d3, 0x7106208b, 0x19050c43,
0x04e0bcca, 0x6ce39002, 0xd4e6e55a, 0xbce5c992,
0xef2d8448, 0x872ea880, 0x3f2bddd8, 0x5728f110,
0x4acd4199, 0x22ce6d51, 0x9acb1809, 0xf2c834c1,
0x7ab7077a, 0x12b42bb2, 0xaab15eea, 0xc2b27222,
0xdf57c2ab, 0xb754ee63, 0x0f519b3b, 0x6752b7f3,
0x349afa29, 0x5c99d6e1, 0xe49ca3b9, 0x8c9f8f71,
0x917a3ff8, 0xf9791330, 0x417c6668, 0x297f4aa0,
0xe6ecfddc, 0x8eefd114, 0x36eaa44c, 0x5ee98884,
0x430c380d, 0x2b0f14c5, 0x930a619d, 0xfb094d55,
0xa8c1008f, 0xc0c22c47, 0x78c7591f, 0x10c475d7,
0x0d21c55e, 0x6522e996, 0xdd279cce, 0xb524b006,
0x47ec84c7, 0x2fefa80f, 0x97eadd57, 0xffe9f19f,
0xe20c4116, 0x8a0f6dde, 0x320a1886, 0x5a09344e,
0x09c17994, 0x61c2555c, 0xd9c72004, 0xb1c40ccc,
0xac21bc45, 0xc422908d, 0x7c27e5d5, 0x1424c91d,
0xdbb77e61, 0xb3b452a9, 0x0bb127f1, 0x63b20b39,
0x7e57bbb0, 0x16549778, 0xae51e220, 0xc652cee8,
0x959a8332, 0xfd99affa, 0x459cdaa2, 0x2d9ff66a,
0x307a46e3, 0x58796a2b, 0xe07c1f73, 0x887f33bb,
0xf56e0ef4, 0x9d6d223c, 0x25685764, 0x4d6b7bac,
0x508ecb25, 0x388de7ed, 0x808892b5, 0xe88bbe7d,
0xbb43f3a7, 0xd340df6f, 0x6b45aa37, 0x034686ff,
0x1ea33676, 0x76a01abe, 0xcea56fe6, 0xa6a6432e,
0x6935f452, 0x0136d89a, 0xb933adc2, 0xd130810a,
0xccd53183, 0xa4d61d4b, 0x1cd36813, 0x74d044db,
0x27180901, 0x4f1b25c9, 0xf71e5091, 0x9f1d7c59,
0x82f8ccd0, 0xeafbe018, 0x52fe9540, 0x3afdb988,
0xc8358d49, 0xa036a181, 0x1833d4d9, 0x7030f811,
0x6dd54898, 0x05d66450, 0xbdd31108, 0xd5d03dc0,
0x8618701a, 0xee1b5cd2, 0x561e298a, 0x3e1d0542,
0x23f8b5cb, 0x4bfb9903, 0xf3feec5b, 0x9bfdc093,
0x546e77ef, 0x3c6d5b27, 0x84682e7f, 0xec6b02b7,
0xf18eb23e, 0x998d9ef6, 0x2188ebae, 0x498bc766,
0x1a438abc, 0x7240a674, 0xca45d32c, 0xa246ffe4,
0xbfa34f6d, 0xd7a063a5, 0x6fa516fd, 0x07a63a35,
0x8fd9098e, 0xe7da2546, 0x5fdf501e, 0x37dc7cd6,
0x2a39cc5f, 0x423ae097, 0xfa3f95cf, 0x923cb907,
0xc1f4f4dd, 0xa9f7d815, 0x11f2ad4d, 0x79f18185,
0x6414310c, 0x0c171dc4, 0xb412689c, 0xdc114454,
0x1382f328, 0x7b81dfe0, 0xc384aab8, 0xab878670,
0xb66236f9, 0xde611a31, 0x66646f69, 0x0e6743a1,
0x5daf0e7b, 0x35ac22b3, 0x8da957eb, 0xe5aa7b23,
0xf84fcbaa, 0x904ce762, 0x2849923a, 0x404abef2,
0xb2828a33, 0xda81a6fb, 0x6284d3a3, 0x0a87ff6b,
0x17624fe2, 0x7f61632a, 0xc7641672, 0xaf673aba,
0xfcaf7760, 0x94ac5ba8, 0x2ca92ef0, 0x44aa0238,
0x594fb2b1, 0x314c9e79, 0x8949eb21, 0xe14ac7e9,
0x2ed97095, 0x46da5c5d, 0xfedf2905, 0x96dc05cd,
0x8b39b544, 0xe33a998c, 0x5b3fecd4, 0x333cc01c,
0x60f48dc6, 0x08f7a10e, 0xb0f2d456, 0xd8f1f89e,
0xc5144817, 0xad1764df, 0x15121187, 0x7d113d4f
},{
0x00000000, 0x493c7d27, 0x9278fa4e, 0xdb448769,
0x211d826d, 0x6821ff4a, 0xb3657823, 0xfa590504,
0x423b04da, 0x0b0779fd, 0xd043fe94, 0x997f83b3,
0x632686b7, 0x2a1afb90, 0xf15e7cf9, 0xb86201de,
0x847609b4, 0xcd4a7493, 0x160ef3fa, 0x5f328edd,
0xa56b8bd9, 0xec57f6fe, 0x37137197, 0x7e2f0cb0,
0xc64d0d6e, 0x8f717049, 0x5435f720, 0x1d098a07,
0xe7508f03, 0xae6cf224, 0x7528754d, 0x3c14086a,
0x0d006599, 0x443c18be, 0x9f789fd7, 0xd644e2f0,
0x2c1de7f4, 0x65219ad3, 0xbe651dba, 0xf759609d,
0x4f3b6143, 0x06071c64, 0xdd439b0d, 0x947fe62a,
0x6e26e32e, 0x271a9e09, 0xfc5e1960, 0xb5626447,
0x89766c2d, 0xc04a110a, 0x1b0e9663, 0x5232eb44,
0xa86bee40, 0xe1579367, 0x3a13140e, 0x732f6929,
0xcb4d68f7, 0x827115d0, 0x593592b9, 0x1009ef9e,
0xea50ea9a, 0xa36c97bd, 0x782810d4, 0x31146df3,
0x1a00cb32, 0x533cb615, 0x8878317c, 0xc1444c5b,
0x3b1d495f, 0x72213478, 0xa965b311, 0xe059ce36,
0x583bcfe8, 0x1107b2cf, 0xca4335a6, 0x837f4881,
0x79264d85, 0x301a30a2, 0xeb5eb7cb, 0xa262caec,
0x9e76c286, 0xd74abfa1, 0x0c0e38c8, 0x453245ef,
0xbf6b40eb, 0xf6573dcc, 0x2d13baa5, 0x642fc782,
0xdc4dc65c, 0x9571bb7b, 0x4e353c12, 0x07094135,
0xfd504431, 0xb46c3916, 0x6f28be7f, 0x2614c358,
0x1700aeab, 0x5e3cd38c, 0x857854e5, 0xcc4429c2,
0x361d2cc6, 0x7f2151e1, 0xa465d688, 0xed59abaf,
0x553baa71, 0x1c07d756, 0xc743503f, 0x8e7f2d18,
0x7426281c, 0x3d1a553b, 0xe65ed252, 0xaf62af75,
0x9376a71f, 0xda4ada38, 0x010e5d51, 0x48322076,
0xb26b2572, 0xfb575855, 0x2013df3c, 0x692fa21b,
0xd14da3c5, 0x9871dee2, 0x4335598b, 0x0a0924ac,
0xf05021a8, 0xb96c5c8f, 0x6228dbe6, 0x2b14a6c1,
0x34019664, 0x7d3deb43, 0xa6796c2a, 0xef45110d,
0x151c1409, 0x5c20692e, 0x8764ee47, 0xce589360,
0x763a92be, 0x3f06ef99, 0xe44268f0, 0xad7e15d7,
0x572710d3, 0x1e1b6df4, 0xc55fea9d, 0x8c6397ba,
0xb0779fd0, 0xf94be2f7, 0x220f659e, 0x6b3318b9,
0x916a1dbd, 0xd856609a, 0x0312e7f3, 0x4a2e9ad4,
0xf24c9b0a, 0xbb70e62d, 0x60346144, 0x29081c63,
0xd3511967, 0x9a6d6440, 0x4129e329, 0x08159e0e,
0x3901f3fd, 0x703d8eda, 0xab7909b3, 0xe2457494,
0x181c7190, 0x51200cb7, 0x8a648bde, 0xc358f6f9,
0x7b3af727, 0x32068a00, 0xe9420d69, 0xa07e704e,
0x5a27754a, 0x131b086d, 0xc85f8f04, 0x8163f223,
0xbd77fa49, 0xf44b876e, 0x2f0f0007, 0x66337d20,
0x9c6a7824, 0xd5560503, 0x0e12826a, 0x472eff4d,
0xff4cfe93, 0xb67083b4, 0x6d3404dd, 0x240879fa,
0xde517cfe, 0x976d01d9, 0x4c2986b0, 0x0515fb97,
0x2e015d56, 0x673d2071, 0xbc79a718, 0xf545da3f,
0x0f1cdf3b, 0x4620a21c, 0x9d642575, 0xd4585852,
0x6c3a598c, 0x250624ab, 0xfe42a3c2, 0xb77edee5,
0x4d27dbe1, 0x041ba6c6, 0xdf5f21af, 0x96635c88,
0xaa7754e2, 0xe34b29c5, 0x380faeac, 0x7133d38b,
0x8b6ad68f, 0xc256aba8, 0x19122cc1, 0x502e51e6,
0xe84c5038, 0xa1702d1f, 0x7a34aa76, 0x3308d751,
0xc951d255, 0x806daf72, 0x5b29281b, 0x1215553c,
0x230138cf, 0x6a3d45e8, 0xb179c281, 0xf845bfa6,
0x021cbaa2, 0x4b20c785, 0x906440ec, 0xd9583dcb,
0x613a3c15, 0x28064132, 0xf342c65b, 0xba7ebb7c,
0x4027be78, 0x091bc35f, 0xd25f4436, 0x9b633911,
0xa777317b, 0xee4b4c5c, 0x350fcb35, 0x7c33b612,
0x866ab316, 0xcf56ce31, 0x14124958, 0x5d2e347f,
0xe54c35a1, 0xac704886, 0x7734cfef, 0x3e08b2c8,
0xc451b7cc, 0x8d6dcaeb, 0x56294d82, 0x1f1530a5
}
#endif
};
extern uint32_t __wt_checksum_sw(const void *chunk, size_t len);
/*
* __wt_checksum_sw --
* Return a checksum for a chunk of memory, computed in software.
*/
uint32_t
__wt_checksum_sw(const void *chunk, size_t len)
{
uint32_t crc, next;
size_t nqwords;
const uint8_t *p;
crc = 0xffffffff;
/* Checksum one byte at a time to the first 4B boundary. */
for (p = chunk;
((uintptr_t)p & (sizeof(uint32_t) - 1)) != 0 &&
len > 0; ++p, --len)
#ifdef WORDS_BIGENDIAN
crc = g_crc_slicing[0][((crc >> 24) ^ *p) & 0xFF] ^ (crc << 8);
#else
crc = g_crc_slicing[0][(crc ^ *p) & 0xFF] ^ (crc >> 8);
#endif
/* Checksum in 8B chunks. */
for (nqwords = len / sizeof(uint64_t); nqwords; nqwords--) {
crc ^= *(uint32_t *)p;
p += sizeof(uint32_t);
next = *(uint32_t *)p;
p += sizeof(uint32_t);
crc =
#ifdef WORDS_BIGENDIAN
g_crc_slicing[4][(crc ) & 0xFF] ^
g_crc_slicing[5][(crc >> 8) & 0xFF] ^
g_crc_slicing[6][(crc >> 16) & 0xFF] ^
g_crc_slicing[7][(crc >> 24)] ^
g_crc_slicing[0][(next ) & 0xFF] ^
g_crc_slicing[1][(next >> 8) & 0xFF] ^
g_crc_slicing[2][(next >> 16) & 0xFF] ^
g_crc_slicing[3][(next >> 24)];
#else
g_crc_slicing[7][(crc ) & 0xFF] ^
g_crc_slicing[6][(crc >> 8) & 0xFF] ^
g_crc_slicing[5][(crc >> 16) & 0xFF] ^
g_crc_slicing[4][(crc >> 24)] ^
g_crc_slicing[3][(next ) & 0xFF] ^
g_crc_slicing[2][(next >> 8) & 0xFF] ^
g_crc_slicing[1][(next >> 16) & 0xFF] ^
g_crc_slicing[0][(next >> 24)];
#endif
}
/* Checksum trailing bytes one byte at a time. */
#ifdef WORDS_BIGENDIAN
for (len &= 0x7; len > 0; ++p, len--)
crc = g_crc_slicing[0][((crc >> 24) ^ *p) & 0xFF] ^ (crc << 8);
/* Do final byte swap to produce a result identical to little endian */
crc =
((crc << 24) & 0xFF000000) |
((crc << 8) & 0x00FF0000) |
((crc >> 8) & 0x0000FF00) |
((crc >> 24) & 0x000000FF);
#else
for (len &= 0x7; len > 0; ++p, len--)
crc = g_crc_slicing[0][(crc ^ *p) & 0xFF] ^ (crc >> 8);
#endif
return (~crc);
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.