file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/15762096.c
/* ecc.c */ int checkEcc(); /* eccT0 - log2 eccT1 - alog2 eccT2 - mpy by 02 eccT3 - mpy by c0 eccT4 - mpy by c3 */ extern unsigned char eccT0[]; /* ecc tables */ extern unsigned char eccT1[]; extern unsigned char eccT2[]; extern unsigned char eccT3[]; extern unsigned char eccT4[]; static unsigned char mpy(); /* declare functions */ static unsigned char dvd(); static unsigned char * pbfr; /* adr buffer */ static int nbfr; /* num of bfrs in block */ static unsigned char s0, s1, s2; /* syndromes */ static int l0, l1, l2; /* locations */ static unsigned char L0, L1, L2; /* 2** locations */ static unsigned char M0, M1, M2; /* c3** locations */ static unsigned char m00, m01, m02; /* inverse matrix */ static unsigned char m10, m11, m12; static unsigned char m20, m21, m22; static unsigned char det; static unsigned char n00, n01, n10, n11; /* 2nd inverse matrix */ static unsigned char e0, e1, e2; /* error values */ static unsigned char c0, c1; /* check error values */ /************************************************************************/ /* multiply */ /************************************************************************/ static unsigned char mpy( m0, m1 ) unsigned char m0; unsigned char m1; { register int m2; if ( m0 == 0 || m1 == 0 ) return( 0 ); m2 = eccT0[ m0 ] + eccT0[ m1 ]; if ( m2 >= 255 ) m2 -= 255; return( eccT1[ m2 ] ); } /************************************************************************/ /* divide */ /************************************************************************/ static unsigned char dvd( m0, m1 ) unsigned char m0; unsigned char m1; { register int m2; if( m0 == 0 ) return( 0 ); m2 = eccT0[ m0 ] - eccT0[ m1 ]; if( m2 < 0 ) m2 += 255; return( eccT1[ m2 ] ); } /************************************************************************/ /* 3 error case */ /************************************************************************/ /* */ /* syndrome equations */ /* */ /* | 1 1 1| |e0| |s0| */ /* |L0 L1 L2| |e1| = |s1| */ /* |M0 M1 M2| |e2| |s2| */ /* */ /* inversing matrix gives error equations */ /* */ /* |e0| |L1*M2+M1*L2 M1+M2 L1+L2| |s0| */ /* |e1| = |L0*M2+M0*M2 M0+M2 L0+L2| |s1| */ /* |e2| |L0*M1+M0*L1 M0+M1 L0+L1| |s2| */ /* ----------------------------------- */ /* L0*M1+L0*M2+L1*M0+L1*M2+L2*M0+L2*M1 */ /************************************************************************/ static unsigned char ae, af, bd, bf, cd, ce; /* temps */ static unsigned char aebd, afcd, bfce; static int fix3() /* 3 error case */ { unsigned char * p0; int d0; int d1; L0 = eccT1[ 31 - l0 ]; /* generate powers of 2 (Lx) */ M0 = eccT1[ 224 + l0 ]; /* and C3 (Mx) [ C3 = 1/2 ] */ L1 = eccT1[ 31 - l1 ]; M1 = eccT1[ 224 + l1 ]; L2 = eccT1[ 31 - l2 ]; M2 = eccT1[ 224 + l2 ]; ae = mpy( L0, M1 ); /* generate inverse matrix */ af = mpy( L0, M2 ); bd = mpy( L1, M0 ); bf = mpy( L1, M2 ); cd = mpy( L2, M0 ); ce = mpy( L2, M1 ); aebd = ae ^ bd; afcd = af ^ cd; bfce = bf ^ ce; det = aebd ^ afcd ^ bfce; m00 = dvd( bfce, det ); m01 = dvd( M1 ^ M2, det ); m02 = dvd( L1 ^ L2, det ); m10 = dvd( afcd, det ); m11 = dvd( M0 ^ M2, det ); m12 = dvd( L0 ^ L2, det ); m20 = dvd( aebd, det ); m21 = dvd( M0 ^ M1, det ); m22 = dvd( L0 ^ L1, det ); for ( d1 = 0; d1 < 1024; ++d1 ){ p0 = pbfr; /* generate syndromes */ s2 = s1 = s0 = 0; for ( d0 = 0; d0 < nbfr; ++d0 ){ s0 ^= *p0; s1 = eccT2[ s1 ] ^ *p0; s2 = eccT4[ s2 ] ^ *p0; p0 += 1024; } /* generate error values */ e0 = mpy( m00, s0 ) ^ mpy( m01, s1 ) ^ mpy( m02, s2 ); e1 = mpy( m10, s0 ) ^ mpy( m11, s1 ) ^ mpy( m12, s2 ); e2 = mpy( m20, s0 ) ^ mpy( m21, s1 ) ^ mpy( m22, s2 ); /* correct errors */ *( pbfr + l0 * 1024 ) ^= e0; *( pbfr + l1 * 1024 ) ^= e1; *( pbfr + l2 * 1024 ) ^= e2; pbfr++; /* bump to next column */ } /* indicate ok */ return( 1 ); } /************************************************************************/ /* 2 error case */ /************************************************************************/ /* */ /* syndrome equations */ /* */ /* | 1 1| |e0| |s0| */ /* |L0 L1| |e1| = |s1| */ /* |M0 M1| |s2| */ /* */ /* using 2 of the 3 possible inverses: */ /* */ /* |e0| |L1 1| |s0| |M1 1| |s0| */ /* |e1| = |L0 1| |s1| = |M0 1| |s2| */ /* ------------- ------------- */ /* L0+L1 M0+M1 */ /************************************************************************/ static int fix2() { unsigned char * p0; int d0; int d1; L0 = eccT1[ 31 - l0 ]; /* generate powers of 2 (Lx) & */ M0 = eccT1[ 224 + l0 ]; /* and C3 (Mx) [C3 = 1/2] */ L1 = eccT1[ 31 - l1 ]; M1 = eccT1[ 224 + l1 ]; det = L0 ^ L1; /* generate inverse matrix */ m00 = dvd( L1, det ); m01 = dvd( 1, det ); m10 = dvd( L0, det ); m11 = m01; det = M0 ^ M1; /* generate check inv matrix */ n00 = dvd( M1, det ); n01 = dvd( 1, det ); n10 = dvd( M0, det ); n11 = n01; for( d1 = 0; d1 < 1024; ++d1 ){ /* generate syndromes */ p0 = pbfr; s2 = s1 = s0 = 0; for( d0 = 0; d0 < nbfr; ++d0 ){ s0 ^= *p0; s1 = eccT2[ s1 ] ^ *p0; s2 = eccT4[ s2 ] ^ *p0; p0 += 1024; } /* generate error values */ e0 = mpy( m00, s0) ^ mpy( m01, s1 ); e1 = mpy( m10, s0) ^ mpy( m11, s1 ); /* generate check values */ c0 = mpy( n00, s0) ^ mpy( n01, s2 ); c1 = mpy( n10, s0) ^ mpy( n11, s2 ); /* exit if uncorrectable */ if ( e0 != c0 || e1 != c1 ) return( 0 ); /* correct errors */ *( pbfr + l0 * 1024 ) ^= e0; *( pbfr + l1 * 1024 ) ^= e1; pbfr++; /* bump to next column */ } /* indicate ok */ return( 1 ); } /************************************************************************/ /* 1 error case */ /* also could be 2 errors, 1 known location */ /************************************************************************/ /* */ /* syndrome equations */ /* */ /* | 1| |s0| */ /* |L0| |e0| = |s1| */ /* |M0| |s2| */ /* */ /* e0 = s0 = s1/L0 = s2/M0 */ /************************************************************************/ static unsigned char a, b, c; /* temps */ static int fix1() { unsigned char * p0; int d0; int d1; /* generate powers of 2 (Lx) and */ L0 = eccT1[ 31 - l0 ]; /* and C3 (Mx) [C3 = 1/2] */ M0 = eccT1[ 224 + l0 ]; for( d1 = 0; d1 < 1024; ++d1 ){ /* generate syndromes */ p0 = pbfr; s2 = s1 = s0 = 0; for( d0 = 0; d0 < nbfr; ++d0 ){ s0 ^= *p0; s1 = eccT2[ s1 ] ^ *p0; s2 = eccT4[ s2 ] ^ *p0; p0 += 1024; } /* generate error value */ e0 = s0; /* generate check values */ c0 = dvd( s1, L0 ); c1 = dvd( s2, M0 ); /* if not 1 error case */ if( e0 != c0 || e0 != c1 ){ /* test for 2 error case */ a = mpy( M0, s0 ) ^ s2; /* and generate l1 */ b = mpy( M0, s1 ) ^ mpy( L0, s2 ); c = mpy( L0, s0 ) ^ s1; if( !a ) return( 0 ); L1 = dvd( b, a ) ^ L0; L2 = dvd( dvd( c, a ), L0 ); if( L1 != L2 ) return( 0 ); l1 = eccT0[ L1 ]; if( l1 > 31 ) return( 0 ); l1 = 31 - l1; /* handle as 2 error case */ return( fix2() ); } /* correct error */ *( pbfr + l0 * 1024 ) ^= e0; /* bump to next column */ pbfr++; } /* indicate ok */ return( 1 ); } /************************************************************************/ /* 1 error case, location unknown */ /************************************************************************/ /* */ /* syndrome equations */ /* */ /* | 1| |s0| */ /* |L0| |e0| = |s1| */ /* |M0| |s2| */ /* */ /* location equations */ /* */ /* L0 = s1/s0 = s0/s2 */ /* l0 = log2[L0] */ /* */ /* error equation */ /* */ /* e0 = s0 */ /************************************************************************/ static int fix0() { unsigned char * p0; int d0; int d1; for ( d1 = 0; d1 < 1024; ++d1 ){ /* generate syndromes */ p0 = pbfr; s2 = s1 = s0 = 0; for( d0 = 0; d0 < nbfr; ++d0 ){ s0 ^= *p0; s1 = eccT2[ s1 ] ^ *p0; s2 = eccT4[ s2 ] ^ *p0; p0 += 1024; } /* br if no error */ if( ( s0 | s1 | s2 ) ){ /* generate l0 or fail */ L0 = dvd( s1, s0 ); L1 = dvd( s0, s2 ); if ( L0 != L1 ) return( 0 ); l0 = eccT0[ L0 ]; if( l0 > 31 ) return( 0 ); l0 = 31 - l0; /* generate error value */ e0 = s0; /* correct error */ *( pbfr + l0 * 1024 ) ^= e0; } /* bump to next column */ pbfr++; } /* indicate ok */ return( 1 ); } /************************************************************************/ /* decodeEcc correct a block */ /************************************************************************/ int decodeEcc( adr, nb, errc, err0, err1, err2 ) unsigned char * adr; /* adr of bfr */ unsigned char nb; /* # blocks in bfr */ unsigned char errc; /* error count */ unsigned char err0; /* location of errors */ unsigned char err1; /* location of errors */ unsigned char err2; /* location of errors */ { unsigned char * p0; int d0; /* globalize inputs */ pbfr = adr; nbfr = (int)nb; l0 = (int)err0; l1 = (int)err1; l2 = (int)err2; switch(errc){ case 0: if( !checkEcc( adr, nb ) ) return( 1 ); return( fix0() ); case 1: return( fix1() ); case 2: return( fix2() ); case 3: return( fix3() ); default: break; } return( 0 ); }
the_stack_data/225143573.c
// REQUIRES: hexagon-registered-target // RUN: %clang_cc1 -triple hexagon-unknown-elf -target-cpu hexagonv65 -target-feature +hvxv65 -target-feature +hvx-length128b -emit-llvm %s -o - | FileCheck %s void test() { int q128 __attribute__((__vector_size__(128))); int v128 __attribute__((__vector_size__(128))); int v256 __attribute__((__vector_size__(256))); // These are special and ugly: they take an HVX vector in place of // the HVX vector predicate. // CHECK: @llvm.hexagon.V6.vmaskedstorenq.128B __builtin_HEXAGON_V6_vmaskedstorenq_128B(q128, 0, v128); // CHECK: @llvm.hexagon.V6.vmaskedstorentnq.128B __builtin_HEXAGON_V6_vmaskedstorentnq_128B(q128, 0, v128); // CHECK: @llvm.hexagon.V6.vmaskedstorentq.128B __builtin_HEXAGON_V6_vmaskedstorentq_128B(q128, 0, v128); // CHECK: @llvm.hexagon.V6.vmaskedstoreq.128B __builtin_HEXAGON_V6_vmaskedstoreq_128B(q128, 0, v128); // CHECK: @llvm.hexagon.V6.extractw.128B __builtin_HEXAGON_V6_extractw_128B(v128, 0); // CHECK: @llvm.hexagon.V6.hi.128B __builtin_HEXAGON_V6_hi_128B(v256); // CHECK: @llvm.hexagon.V6.lo.128B __builtin_HEXAGON_V6_lo_128B(v256); // CHECK: @llvm.hexagon.V6.lvsplatb.128B __builtin_HEXAGON_V6_lvsplatb_128B(0); // CHECK: @llvm.hexagon.V6.lvsplath.128B __builtin_HEXAGON_V6_lvsplath_128B(0); // CHECK: @llvm.hexagon.V6.lvsplatw.128B __builtin_HEXAGON_V6_lvsplatw_128B(0); // CHECK: @llvm.hexagon.V6.pred.and.128B __builtin_HEXAGON_V6_pred_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.pred.and.n.128B __builtin_HEXAGON_V6_pred_and_n_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.pred.not.128B __builtin_HEXAGON_V6_pred_not_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.pred.or.128B __builtin_HEXAGON_V6_pred_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.pred.or.n.128B __builtin_HEXAGON_V6_pred_or_n_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.pred.scalar2.128B __builtin_HEXAGON_V6_pred_scalar2_128B(0); // CHECK: @llvm.hexagon.V6.pred.scalar2v2.128B __builtin_HEXAGON_V6_pred_scalar2v2_128B(0); // CHECK: @llvm.hexagon.V6.pred.xor.128B __builtin_HEXAGON_V6_pred_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.shuffeqh.128B __builtin_HEXAGON_V6_shuffeqh_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.shuffeqw.128B __builtin_HEXAGON_V6_shuffeqw_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), __builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.vS32b.nqpred.ai.128B __builtin_HEXAGON_V6_vS32b_nqpred_ai_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, v128); // CHECK: @llvm.hexagon.V6.vS32b.nt.nqpred.ai.128B __builtin_HEXAGON_V6_vS32b_nt_nqpred_ai_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, v128); // CHECK: @llvm.hexagon.V6.vS32b.nt.qpred.ai.128B __builtin_HEXAGON_V6_vS32b_nt_qpred_ai_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, v128); // CHECK: @llvm.hexagon.V6.vS32b.qpred.ai.128B __builtin_HEXAGON_V6_vS32b_qpred_ai_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, v128); // CHECK: @llvm.hexagon.V6.vabsb.128B __builtin_HEXAGON_V6_vabsb_128B(v128); // CHECK: @llvm.hexagon.V6.vabsb.sat.128B __builtin_HEXAGON_V6_vabsb_sat_128B(v128); // CHECK: @llvm.hexagon.V6.vabsdiffh.128B __builtin_HEXAGON_V6_vabsdiffh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vabsdiffub.128B __builtin_HEXAGON_V6_vabsdiffub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vabsdiffuh.128B __builtin_HEXAGON_V6_vabsdiffuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vabsdiffw.128B __builtin_HEXAGON_V6_vabsdiffw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vabsh.128B __builtin_HEXAGON_V6_vabsh_128B(v128); // CHECK: @llvm.hexagon.V6.vabsh.sat.128B __builtin_HEXAGON_V6_vabsh_sat_128B(v128); // CHECK: @llvm.hexagon.V6.vabsw.128B __builtin_HEXAGON_V6_vabsw_128B(v128); // CHECK: @llvm.hexagon.V6.vabsw.sat.128B __builtin_HEXAGON_V6_vabsw_sat_128B(v128); // CHECK: @llvm.hexagon.V6.vaddb.128B __builtin_HEXAGON_V6_vaddb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddb.dv.128B __builtin_HEXAGON_V6_vaddb_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddbnq.128B __builtin_HEXAGON_V6_vaddbnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddbq.128B __builtin_HEXAGON_V6_vaddbq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddbsat.128B __builtin_HEXAGON_V6_vaddbsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddbsat.dv.128B __builtin_HEXAGON_V6_vaddbsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddcarry.128B __builtin_HEXAGON_V6_vaddcarry_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vaddclbh.128B __builtin_HEXAGON_V6_vaddclbh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddclbw.128B __builtin_HEXAGON_V6_vaddclbw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddh.128B __builtin_HEXAGON_V6_vaddh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddh.dv.128B __builtin_HEXAGON_V6_vaddh_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddhnq.128B __builtin_HEXAGON_V6_vaddhnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddhq.128B __builtin_HEXAGON_V6_vaddhq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddhsat.128B __builtin_HEXAGON_V6_vaddhsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddhsat.dv.128B __builtin_HEXAGON_V6_vaddhsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddhw.128B __builtin_HEXAGON_V6_vaddhw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddhw.acc.128B __builtin_HEXAGON_V6_vaddhw_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vaddubh.128B __builtin_HEXAGON_V6_vaddubh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddubh.acc.128B __builtin_HEXAGON_V6_vaddubh_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vaddubsat.128B __builtin_HEXAGON_V6_vaddubsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddubsat.dv.128B __builtin_HEXAGON_V6_vaddubsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddububb.sat.128B __builtin_HEXAGON_V6_vaddububb_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vadduhsat.128B __builtin_HEXAGON_V6_vadduhsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vadduhsat.dv.128B __builtin_HEXAGON_V6_vadduhsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vadduhw.128B __builtin_HEXAGON_V6_vadduhw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vadduhw.acc.128B __builtin_HEXAGON_V6_vadduhw_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vadduwsat.128B __builtin_HEXAGON_V6_vadduwsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vadduwsat.dv.128B __builtin_HEXAGON_V6_vadduwsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddw.128B __builtin_HEXAGON_V6_vaddw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddw.dv.128B __builtin_HEXAGON_V6_vaddw_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vaddwnq.128B __builtin_HEXAGON_V6_vaddwnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddwq.128B __builtin_HEXAGON_V6_vaddwq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vaddwsat.128B __builtin_HEXAGON_V6_vaddwsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaddwsat.dv.128B __builtin_HEXAGON_V6_vaddwsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.valignb.128B __builtin_HEXAGON_V6_valignb_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.valignbi.128B __builtin_HEXAGON_V6_valignbi_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vand.128B __builtin_HEXAGON_V6_vand_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vandnqrt.128B __builtin_HEXAGON_V6_vandnqrt_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0); // CHECK: @llvm.hexagon.V6.vandnqrt.acc.128B __builtin_HEXAGON_V6_vandnqrt_acc_128B(v128, __builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0); // CHECK: @llvm.hexagon.V6.vandqrt.128B __builtin_HEXAGON_V6_vandqrt_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0); // CHECK: @llvm.hexagon.V6.vandqrt.acc.128B __builtin_HEXAGON_V6_vandqrt_acc_128B(v128, __builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0); // CHECK: @llvm.hexagon.V6.vandvnqv.128B __builtin_HEXAGON_V6_vandvnqv_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128); // CHECK: @llvm.hexagon.V6.vandvqv.128B __builtin_HEXAGON_V6_vandvqv_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128); // CHECK: @llvm.hexagon.V6.vandvrt.128B __builtin_HEXAGON_V6_vandvrt_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vandvrt.acc.128B __builtin_HEXAGON_V6_vandvrt_acc_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, 0); // CHECK: @llvm.hexagon.V6.vaslh.128B __builtin_HEXAGON_V6_vaslh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vaslh.acc.128B __builtin_HEXAGON_V6_vaslh_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vaslhv.128B __builtin_HEXAGON_V6_vaslhv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vaslw.128B __builtin_HEXAGON_V6_vaslw_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vaslw.acc.128B __builtin_HEXAGON_V6_vaslw_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vaslwv.128B __builtin_HEXAGON_V6_vaslwv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vasrh.128B __builtin_HEXAGON_V6_vasrh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vasrh.acc.128B __builtin_HEXAGON_V6_vasrh_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrhbrndsat.128B __builtin_HEXAGON_V6_vasrhbrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrhbsat.128B __builtin_HEXAGON_V6_vasrhbsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrhubrndsat.128B __builtin_HEXAGON_V6_vasrhubrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrhubsat.128B __builtin_HEXAGON_V6_vasrhubsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrhv.128B __builtin_HEXAGON_V6_vasrhv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vasruhubrndsat.128B __builtin_HEXAGON_V6_vasruhubrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasruhubsat.128B __builtin_HEXAGON_V6_vasruhubsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasruwuhrndsat.128B __builtin_HEXAGON_V6_vasruwuhrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasruwuhsat.128B __builtin_HEXAGON_V6_vasruwuhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrw.128B __builtin_HEXAGON_V6_vasrw_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vasrw.acc.128B __builtin_HEXAGON_V6_vasrw_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwh.128B __builtin_HEXAGON_V6_vasrwh_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwhrndsat.128B __builtin_HEXAGON_V6_vasrwhrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwhsat.128B __builtin_HEXAGON_V6_vasrwhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwuhrndsat.128B __builtin_HEXAGON_V6_vasrwuhrndsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwuhsat.128B __builtin_HEXAGON_V6_vasrwuhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vasrwv.128B __builtin_HEXAGON_V6_vasrwv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vassign.128B __builtin_HEXAGON_V6_vassign_128B(v128); // CHECK: @llvm.hexagon.V6.vassignp.128B __builtin_HEXAGON_V6_vassignp_128B(v256); // CHECK: @llvm.hexagon.V6.vavgb.128B __builtin_HEXAGON_V6_vavgb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgbrnd.128B __builtin_HEXAGON_V6_vavgbrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgh.128B __builtin_HEXAGON_V6_vavgh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavghrnd.128B __builtin_HEXAGON_V6_vavghrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgub.128B __builtin_HEXAGON_V6_vavgub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgubrnd.128B __builtin_HEXAGON_V6_vavgubrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavguh.128B __builtin_HEXAGON_V6_vavguh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavguhrnd.128B __builtin_HEXAGON_V6_vavguhrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavguw.128B __builtin_HEXAGON_V6_vavguw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavguwrnd.128B __builtin_HEXAGON_V6_vavguwrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgw.128B __builtin_HEXAGON_V6_vavgw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vavgwrnd.128B __builtin_HEXAGON_V6_vavgwrnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vcl0h.128B __builtin_HEXAGON_V6_vcl0h_128B(v128); // CHECK: @llvm.hexagon.V6.vcl0w.128B __builtin_HEXAGON_V6_vcl0w_128B(v128); // CHECK: @llvm.hexagon.V6.vcombine.128B __builtin_HEXAGON_V6_vcombine_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vd0.128B __builtin_HEXAGON_V6_vd0_128B(); // CHECK: @llvm.hexagon.V6.vdd0.128B __builtin_HEXAGON_V6_vdd0_128B(); // CHECK: @llvm.hexagon.V6.vdealb.128B __builtin_HEXAGON_V6_vdealb_128B(v128); // CHECK: @llvm.hexagon.V6.vdealb4w.128B __builtin_HEXAGON_V6_vdealb4w_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vdealh.128B __builtin_HEXAGON_V6_vdealh_128B(v128); // CHECK: @llvm.hexagon.V6.vdealvdd.128B __builtin_HEXAGON_V6_vdealvdd_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vdelta.128B __builtin_HEXAGON_V6_vdelta_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vdmpybus.128B __builtin_HEXAGON_V6_vdmpybus_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vdmpybus.acc.128B __builtin_HEXAGON_V6_vdmpybus_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vdmpybus.dv.128B __builtin_HEXAGON_V6_vdmpybus_dv_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vdmpybus.dv.acc.128B __builtin_HEXAGON_V6_vdmpybus_dv_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhb.128B __builtin_HEXAGON_V6_vdmpyhb_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhb.acc.128B __builtin_HEXAGON_V6_vdmpyhb_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhb.dv.128B __builtin_HEXAGON_V6_vdmpyhb_dv_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhb.dv.acc.128B __builtin_HEXAGON_V6_vdmpyhb_dv_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhisat.128B __builtin_HEXAGON_V6_vdmpyhisat_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhisat.acc.128B __builtin_HEXAGON_V6_vdmpyhisat_acc_128B(v128, v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsat.128B __builtin_HEXAGON_V6_vdmpyhsat_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsat.acc.128B __builtin_HEXAGON_V6_vdmpyhsat_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsuisat.128B __builtin_HEXAGON_V6_vdmpyhsuisat_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsuisat.acc.128B __builtin_HEXAGON_V6_vdmpyhsuisat_acc_128B(v128, v256, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsusat.128B __builtin_HEXAGON_V6_vdmpyhsusat_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhsusat.acc.128B __builtin_HEXAGON_V6_vdmpyhsusat_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vdmpyhvsat.128B __builtin_HEXAGON_V6_vdmpyhvsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vdmpyhvsat.acc.128B __builtin_HEXAGON_V6_vdmpyhvsat_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vdsaduh.128B __builtin_HEXAGON_V6_vdsaduh_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vdsaduh.acc.128B __builtin_HEXAGON_V6_vdsaduh_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.veqb.128B __builtin_HEXAGON_V6_veqb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.veqb.and.128B __builtin_HEXAGON_V6_veqb_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqb.or.128B __builtin_HEXAGON_V6_veqb_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqb.xor.128B __builtin_HEXAGON_V6_veqb_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqh.128B __builtin_HEXAGON_V6_veqh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.veqh.and.128B __builtin_HEXAGON_V6_veqh_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqh.or.128B __builtin_HEXAGON_V6_veqh_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqh.xor.128B __builtin_HEXAGON_V6_veqh_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqw.128B __builtin_HEXAGON_V6_veqw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.veqw.and.128B __builtin_HEXAGON_V6_veqw_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqw.or.128B __builtin_HEXAGON_V6_veqw_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.veqw.xor.128B __builtin_HEXAGON_V6_veqw_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgathermh.128B __builtin_HEXAGON_V6_vgathermh_128B(0, 0, 0, v128); // CHECK: @llvm.hexagon.V6.vgathermhq.128B __builtin_HEXAGON_V6_vgathermhq_128B(0, __builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v128); // CHECK: @llvm.hexagon.V6.vgathermhw.128B __builtin_HEXAGON_V6_vgathermhw_128B(0, 0, 0, v256); // CHECK: @llvm.hexagon.V6.vgathermhwq.128B __builtin_HEXAGON_V6_vgathermhwq_128B(0, __builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v256); // CHECK: @llvm.hexagon.V6.vgathermw.128B __builtin_HEXAGON_V6_vgathermw_128B(0, 0, 0, v128); // CHECK: @llvm.hexagon.V6.vgathermwq.128B __builtin_HEXAGON_V6_vgathermwq_128B(0, __builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v128); // CHECK: @llvm.hexagon.V6.vgtb.128B __builtin_HEXAGON_V6_vgtb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgtb.and.128B __builtin_HEXAGON_V6_vgtb_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtb.or.128B __builtin_HEXAGON_V6_vgtb_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtb.xor.128B __builtin_HEXAGON_V6_vgtb_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgth.128B __builtin_HEXAGON_V6_vgth_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgth.and.128B __builtin_HEXAGON_V6_vgth_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgth.or.128B __builtin_HEXAGON_V6_vgth_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgth.xor.128B __builtin_HEXAGON_V6_vgth_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtub.128B __builtin_HEXAGON_V6_vgtub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgtub.and.128B __builtin_HEXAGON_V6_vgtub_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtub.or.128B __builtin_HEXAGON_V6_vgtub_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtub.xor.128B __builtin_HEXAGON_V6_vgtub_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuh.128B __builtin_HEXAGON_V6_vgtuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgtuh.and.128B __builtin_HEXAGON_V6_vgtuh_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuh.or.128B __builtin_HEXAGON_V6_vgtuh_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuh.xor.128B __builtin_HEXAGON_V6_vgtuh_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuw.128B __builtin_HEXAGON_V6_vgtuw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgtuw.and.128B __builtin_HEXAGON_V6_vgtuw_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuw.or.128B __builtin_HEXAGON_V6_vgtuw_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtuw.xor.128B __builtin_HEXAGON_V6_vgtuw_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtw.128B __builtin_HEXAGON_V6_vgtw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vgtw.and.128B __builtin_HEXAGON_V6_vgtw_and_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtw.or.128B __builtin_HEXAGON_V6_vgtw_or_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vgtw.xor.128B __builtin_HEXAGON_V6_vgtw_xor_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vinsertwr.128B __builtin_HEXAGON_V6_vinsertwr_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vlalignb.128B __builtin_HEXAGON_V6_vlalignb_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlalignbi.128B __builtin_HEXAGON_V6_vlalignbi_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlsrb.128B __builtin_HEXAGON_V6_vlsrb_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vlsrh.128B __builtin_HEXAGON_V6_vlsrh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vlsrhv.128B __builtin_HEXAGON_V6_vlsrhv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vlsrw.128B __builtin_HEXAGON_V6_vlsrw_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vlsrwv.128B __builtin_HEXAGON_V6_vlsrwv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vlut4.128B __builtin_HEXAGON_V6_vlut4_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vlutvvb.128B __builtin_HEXAGON_V6_vlutvvb_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvvb.nm.128B __builtin_HEXAGON_V6_vlutvvb_nm_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvvb.oracc.128B __builtin_HEXAGON_V6_vlutvvb_oracc_128B(v128, v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvvb.oracci.128B __builtin_HEXAGON_V6_vlutvvb_oracci_128B(v128, v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvvbi.128B __builtin_HEXAGON_V6_vlutvvbi_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvwh.128B __builtin_HEXAGON_V6_vlutvwh_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvwh.nm.128B __builtin_HEXAGON_V6_vlutvwh_nm_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvwh.oracc.128B __builtin_HEXAGON_V6_vlutvwh_oracc_128B(v256, v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvwh.oracci.128B __builtin_HEXAGON_V6_vlutvwh_oracci_128B(v256, v128, v128, 0); // CHECK: @llvm.hexagon.V6.vlutvwhi.128B __builtin_HEXAGON_V6_vlutvwhi_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmaxb.128B __builtin_HEXAGON_V6_vmaxb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmaxh.128B __builtin_HEXAGON_V6_vmaxh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmaxub.128B __builtin_HEXAGON_V6_vmaxub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmaxuh.128B __builtin_HEXAGON_V6_vmaxuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmaxw.128B __builtin_HEXAGON_V6_vmaxw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vminb.128B __builtin_HEXAGON_V6_vminb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vminh.128B __builtin_HEXAGON_V6_vminh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vminub.128B __builtin_HEXAGON_V6_vminub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vminuh.128B __builtin_HEXAGON_V6_vminuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vminw.128B __builtin_HEXAGON_V6_vminw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpabus.128B __builtin_HEXAGON_V6_vmpabus_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vmpabus.acc.128B __builtin_HEXAGON_V6_vmpabus_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vmpabusv.128B __builtin_HEXAGON_V6_vmpabusv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vmpabuu.128B __builtin_HEXAGON_V6_vmpabuu_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vmpabuu.acc.128B __builtin_HEXAGON_V6_vmpabuu_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vmpabuuv.128B __builtin_HEXAGON_V6_vmpabuuv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vmpahb.128B __builtin_HEXAGON_V6_vmpahb_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vmpahb.acc.128B __builtin_HEXAGON_V6_vmpahb_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vmpahhsat.128B __builtin_HEXAGON_V6_vmpahhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpauhb.128B __builtin_HEXAGON_V6_vmpauhb_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vmpauhb.acc.128B __builtin_HEXAGON_V6_vmpauhb_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vmpauhuhsat.128B __builtin_HEXAGON_V6_vmpauhuhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpsuhuhsat.128B __builtin_HEXAGON_V6_vmpsuhuhsat_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpybus.128B __builtin_HEXAGON_V6_vmpybus_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpybus.acc.128B __builtin_HEXAGON_V6_vmpybus_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vmpybusv.128B __builtin_HEXAGON_V6_vmpybusv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpybusv.acc.128B __builtin_HEXAGON_V6_vmpybusv_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpybv.128B __builtin_HEXAGON_V6_vmpybv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpybv.acc.128B __builtin_HEXAGON_V6_vmpybv_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyewuh.128B __builtin_HEXAGON_V6_vmpyewuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyewuh.64.128B __builtin_HEXAGON_V6_vmpyewuh_64_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyh.128B __builtin_HEXAGON_V6_vmpyh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyh.acc.128B __builtin_HEXAGON_V6_vmpyh_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyhsat.acc.128B __builtin_HEXAGON_V6_vmpyhsat_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyhsrs.128B __builtin_HEXAGON_V6_vmpyhsrs_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyhss.128B __builtin_HEXAGON_V6_vmpyhss_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyhus.128B __builtin_HEXAGON_V6_vmpyhus_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyhus.acc.128B __builtin_HEXAGON_V6_vmpyhus_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyhv.128B __builtin_HEXAGON_V6_vmpyhv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyhv.acc.128B __builtin_HEXAGON_V6_vmpyhv_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyhvsrs.128B __builtin_HEXAGON_V6_vmpyhvsrs_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyieoh.128B __builtin_HEXAGON_V6_vmpyieoh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyiewh.acc.128B __builtin_HEXAGON_V6_vmpyiewh_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyiewuh.128B __builtin_HEXAGON_V6_vmpyiewuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyiewuh.acc.128B __builtin_HEXAGON_V6_vmpyiewuh_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyih.128B __builtin_HEXAGON_V6_vmpyih_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyih.acc.128B __builtin_HEXAGON_V6_vmpyih_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyihb.128B __builtin_HEXAGON_V6_vmpyihb_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyihb.acc.128B __builtin_HEXAGON_V6_vmpyihb_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiowh.128B __builtin_HEXAGON_V6_vmpyiowh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyiwb.128B __builtin_HEXAGON_V6_vmpyiwb_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiwb.acc.128B __builtin_HEXAGON_V6_vmpyiwb_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiwh.128B __builtin_HEXAGON_V6_vmpyiwh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiwh.acc.128B __builtin_HEXAGON_V6_vmpyiwh_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiwub.128B __builtin_HEXAGON_V6_vmpyiwub_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyiwub.acc.128B __builtin_HEXAGON_V6_vmpyiwub_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyowh.128B __builtin_HEXAGON_V6_vmpyowh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyowh.64.acc.128B __builtin_HEXAGON_V6_vmpyowh_64_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyowh.rnd.128B __builtin_HEXAGON_V6_vmpyowh_rnd_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyowh.rnd.sacc.128B __builtin_HEXAGON_V6_vmpyowh_rnd_sacc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyowh.sacc.128B __builtin_HEXAGON_V6_vmpyowh_sacc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyub.128B __builtin_HEXAGON_V6_vmpyub_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyub.acc.128B __builtin_HEXAGON_V6_vmpyub_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyubv.128B __builtin_HEXAGON_V6_vmpyubv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyubv.acc.128B __builtin_HEXAGON_V6_vmpyubv_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmpyuh.128B __builtin_HEXAGON_V6_vmpyuh_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyuh.acc.128B __builtin_HEXAGON_V6_vmpyuh_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyuhe.128B __builtin_HEXAGON_V6_vmpyuhe_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vmpyuhe.acc.128B __builtin_HEXAGON_V6_vmpyuhe_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vmpyuhv.128B __builtin_HEXAGON_V6_vmpyuhv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vmpyuhv.acc.128B __builtin_HEXAGON_V6_vmpyuhv_acc_128B(v256, v128, v128); // CHECK: @llvm.hexagon.V6.vmux.128B __builtin_HEXAGON_V6_vmux_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vnavgb.128B __builtin_HEXAGON_V6_vnavgb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vnavgh.128B __builtin_HEXAGON_V6_vnavgh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vnavgub.128B __builtin_HEXAGON_V6_vnavgub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vnavgw.128B __builtin_HEXAGON_V6_vnavgw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vnormamth.128B __builtin_HEXAGON_V6_vnormamth_128B(v128); // CHECK: @llvm.hexagon.V6.vnormamtw.128B __builtin_HEXAGON_V6_vnormamtw_128B(v128); // CHECK: @llvm.hexagon.V6.vnot.128B __builtin_HEXAGON_V6_vnot_128B(v128); // CHECK: @llvm.hexagon.V6.vor.128B __builtin_HEXAGON_V6_vor_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackeb.128B __builtin_HEXAGON_V6_vpackeb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackeh.128B __builtin_HEXAGON_V6_vpackeh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackhb.sat.128B __builtin_HEXAGON_V6_vpackhb_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackhub.sat.128B __builtin_HEXAGON_V6_vpackhub_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackob.128B __builtin_HEXAGON_V6_vpackob_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackoh.128B __builtin_HEXAGON_V6_vpackoh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackwh.sat.128B __builtin_HEXAGON_V6_vpackwh_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpackwuh.sat.128B __builtin_HEXAGON_V6_vpackwuh_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vpopcounth.128B __builtin_HEXAGON_V6_vpopcounth_128B(v128); // CHECK: @llvm.hexagon.V6.vprefixqb.128B __builtin_HEXAGON_V6_vprefixqb_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.vprefixqh.128B __builtin_HEXAGON_V6_vprefixqh_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.vprefixqw.128B __builtin_HEXAGON_V6_vprefixqw_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1)); // CHECK: @llvm.hexagon.V6.vrdelta.128B __builtin_HEXAGON_V6_vrdelta_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrmpybub.rtt.128B __builtin_HEXAGON_V6_vrmpybub_rtt_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vrmpybub.rtt.acc.128B __builtin_HEXAGON_V6_vrmpybub_rtt_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vrmpybus.128B __builtin_HEXAGON_V6_vrmpybus_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vrmpybus.acc.128B __builtin_HEXAGON_V6_vrmpybus_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vrmpybusi.128B __builtin_HEXAGON_V6_vrmpybusi_128B(v256, 0, 0); // CHECK: @llvm.hexagon.V6.vrmpybusi.acc.128B __builtin_HEXAGON_V6_vrmpybusi_acc_128B(v256, v256, 0, 0); // CHECK: @llvm.hexagon.V6.vrmpybusv.128B __builtin_HEXAGON_V6_vrmpybusv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrmpybusv.acc.128B __builtin_HEXAGON_V6_vrmpybusv_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vrmpybv.128B __builtin_HEXAGON_V6_vrmpybv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrmpybv.acc.128B __builtin_HEXAGON_V6_vrmpybv_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vrmpyub.128B __builtin_HEXAGON_V6_vrmpyub_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vrmpyub.acc.128B __builtin_HEXAGON_V6_vrmpyub_acc_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vrmpyub.rtt.128B __builtin_HEXAGON_V6_vrmpyub_rtt_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vrmpyub.rtt.acc.128B __builtin_HEXAGON_V6_vrmpyub_rtt_acc_128B(v256, v128, 0); // CHECK: @llvm.hexagon.V6.vrmpyubi.128B __builtin_HEXAGON_V6_vrmpyubi_128B(v256, 0, 0); // CHECK: @llvm.hexagon.V6.vrmpyubi.acc.128B __builtin_HEXAGON_V6_vrmpyubi_acc_128B(v256, v256, 0, 0); // CHECK: @llvm.hexagon.V6.vrmpyubv.128B __builtin_HEXAGON_V6_vrmpyubv_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrmpyubv.acc.128B __builtin_HEXAGON_V6_vrmpyubv_acc_128B(v128, v128, v128); // CHECK: @llvm.hexagon.V6.vror.128B __builtin_HEXAGON_V6_vror_128B(v128, 0); // CHECK: @llvm.hexagon.V6.vroundhb.128B __builtin_HEXAGON_V6_vroundhb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vroundhub.128B __builtin_HEXAGON_V6_vroundhub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrounduhub.128B __builtin_HEXAGON_V6_vrounduhub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrounduwuh.128B __builtin_HEXAGON_V6_vrounduwuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vroundwh.128B __builtin_HEXAGON_V6_vroundwh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vroundwuh.128B __builtin_HEXAGON_V6_vroundwuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vrsadubi.128B __builtin_HEXAGON_V6_vrsadubi_128B(v256, 0, 0); // CHECK: @llvm.hexagon.V6.vrsadubi.acc.128B __builtin_HEXAGON_V6_vrsadubi_acc_128B(v256, v256, 0, 0); // CHECK: @llvm.hexagon.V6.vsathub.128B __builtin_HEXAGON_V6_vsathub_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsatuwuh.128B __builtin_HEXAGON_V6_vsatuwuh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsatwh.128B __builtin_HEXAGON_V6_vsatwh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsb.128B __builtin_HEXAGON_V6_vsb_128B(v128); // CHECK: @llvm.hexagon.V6.vscattermh.128B __builtin_HEXAGON_V6_vscattermh_128B(0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vscattermh.add.128B __builtin_HEXAGON_V6_vscattermh_add_128B(0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vscattermhq.128B __builtin_HEXAGON_V6_vscattermhq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vscattermhw.128B __builtin_HEXAGON_V6_vscattermhw_128B(0, 0, v256, v128); // CHECK: @llvm.hexagon.V6.vscattermhw.add.128B __builtin_HEXAGON_V6_vscattermhw_add_128B(0, 0, v256, v128); // CHECK: @llvm.hexagon.V6.vscattermhwq.128B __builtin_HEXAGON_V6_vscattermhwq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v256, v128); // CHECK: @llvm.hexagon.V6.vscattermw.128B __builtin_HEXAGON_V6_vscattermw_128B(0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vscattermw.add.128B __builtin_HEXAGON_V6_vscattermw_add_128B(0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vscattermwq.128B __builtin_HEXAGON_V6_vscattermwq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), 0, 0, v128, v128); // CHECK: @llvm.hexagon.V6.vsh.128B __builtin_HEXAGON_V6_vsh_128B(v128); // CHECK: @llvm.hexagon.V6.vshufeh.128B __builtin_HEXAGON_V6_vshufeh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vshuffb.128B __builtin_HEXAGON_V6_vshuffb_128B(v128); // CHECK: @llvm.hexagon.V6.vshuffeb.128B __builtin_HEXAGON_V6_vshuffeb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vshuffh.128B __builtin_HEXAGON_V6_vshuffh_128B(v128); // CHECK: @llvm.hexagon.V6.vshuffob.128B __builtin_HEXAGON_V6_vshuffob_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vshuffvdd.128B __builtin_HEXAGON_V6_vshuffvdd_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vshufoeb.128B __builtin_HEXAGON_V6_vshufoeb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vshufoeh.128B __builtin_HEXAGON_V6_vshufoeh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vshufoh.128B __builtin_HEXAGON_V6_vshufoh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubb.128B __builtin_HEXAGON_V6_vsubb_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubb.dv.128B __builtin_HEXAGON_V6_vsubb_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubbnq.128B __builtin_HEXAGON_V6_vsubbnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubbq.128B __builtin_HEXAGON_V6_vsubbq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubbsat.128B __builtin_HEXAGON_V6_vsubbsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubbsat.dv.128B __builtin_HEXAGON_V6_vsubbsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubcarry.128B __builtin_HEXAGON_V6_vsubcarry_128B(v128, v128, 0); // CHECK: @llvm.hexagon.V6.vsubh.128B __builtin_HEXAGON_V6_vsubh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubh.dv.128B __builtin_HEXAGON_V6_vsubh_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubhnq.128B __builtin_HEXAGON_V6_vsubhnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubhq.128B __builtin_HEXAGON_V6_vsubhq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubhsat.128B __builtin_HEXAGON_V6_vsubhsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubhsat.dv.128B __builtin_HEXAGON_V6_vsubhsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubhw.128B __builtin_HEXAGON_V6_vsubhw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsububh.128B __builtin_HEXAGON_V6_vsububh_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsububsat.128B __builtin_HEXAGON_V6_vsububsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsububsat.dv.128B __builtin_HEXAGON_V6_vsububsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubububb.sat.128B __builtin_HEXAGON_V6_vsubububb_sat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubuhsat.128B __builtin_HEXAGON_V6_vsubuhsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubuhsat.dv.128B __builtin_HEXAGON_V6_vsubuhsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubuhw.128B __builtin_HEXAGON_V6_vsubuhw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubuwsat.128B __builtin_HEXAGON_V6_vsubuwsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubuwsat.dv.128B __builtin_HEXAGON_V6_vsubuwsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubw.128B __builtin_HEXAGON_V6_vsubw_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubw.dv.128B __builtin_HEXAGON_V6_vsubw_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vsubwnq.128B __builtin_HEXAGON_V6_vsubwnq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubwq.128B __builtin_HEXAGON_V6_vsubwq_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vsubwsat.128B __builtin_HEXAGON_V6_vsubwsat_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vsubwsat.dv.128B __builtin_HEXAGON_V6_vsubwsat_dv_128B(v256, v256); // CHECK: @llvm.hexagon.V6.vswap.128B __builtin_HEXAGON_V6_vswap_128B(__builtin_HEXAGON_V6_vandvrt_128B(q128, -1), v128, v128); // CHECK: @llvm.hexagon.V6.vtmpyb.128B __builtin_HEXAGON_V6_vtmpyb_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vtmpyb.acc.128B __builtin_HEXAGON_V6_vtmpyb_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vtmpybus.128B __builtin_HEXAGON_V6_vtmpybus_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vtmpybus.acc.128B __builtin_HEXAGON_V6_vtmpybus_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vtmpyhb.128B __builtin_HEXAGON_V6_vtmpyhb_128B(v256, 0); // CHECK: @llvm.hexagon.V6.vtmpyhb.acc.128B __builtin_HEXAGON_V6_vtmpyhb_acc_128B(v256, v256, 0); // CHECK: @llvm.hexagon.V6.vunpackb.128B __builtin_HEXAGON_V6_vunpackb_128B(v128); // CHECK: @llvm.hexagon.V6.vunpackh.128B __builtin_HEXAGON_V6_vunpackh_128B(v128); // CHECK: @llvm.hexagon.V6.vunpackob.128B __builtin_HEXAGON_V6_vunpackob_128B(v256, v128); // CHECK: @llvm.hexagon.V6.vunpackoh.128B __builtin_HEXAGON_V6_vunpackoh_128B(v256, v128); // CHECK: @llvm.hexagon.V6.vunpackub.128B __builtin_HEXAGON_V6_vunpackub_128B(v128); // CHECK: @llvm.hexagon.V6.vunpackuh.128B __builtin_HEXAGON_V6_vunpackuh_128B(v128); // CHECK: @llvm.hexagon.V6.vxor.128B __builtin_HEXAGON_V6_vxor_128B(v128, v128); // CHECK: @llvm.hexagon.V6.vzb.128B __builtin_HEXAGON_V6_vzb_128B(v128); // CHECK: @llvm.hexagon.V6.vzh.128B __builtin_HEXAGON_V6_vzh_128B(v128); }
the_stack_data/104828375.c
/* * Broken code hidden behind cpp. */ #ifdef notyet int #endif #ifdef notyet int #endif
the_stack_data/142245.c
#include <stdio.h> int main() { unsigned int i = 0; while (++i) printf("%u\n", i); return 0; }
the_stack_data/181392932.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int fill (const char *str1, const char *str2) { int count, i; count = strlen(str1); for (i=0; count!=0; i++) { if ( strncmp(str1+i,str2,count)==0) break; count--; } return count; } int exception (int **B, int n) { int i, j, i1, j1, max=0; for (i=0; i<n; i++) { for (j=0; j<n; j++) if (B[i][j]>max) { max=B[i][j]; i1=i; j1=j; } } if (max!=0) { for (j=0; j<n; j++) B[i1][j]=0; for (i=0; i<n; i++) B[i][j1]=0; } return max; } int main() { int n; scanf("%d\n",&n); int i,j,len=0; char **A=(char**)malloc(n*sizeof(char*)); for (i=0; i<n; i++) A[i]=(char*)malloc(80); for (i=0; i<n; i++) { gets(A[i]); len+=strlen(A[i]); } int **B=(int**)malloc(n*sizeof(int*)); for (i=0; i<n; i++) B[i]=(int*)malloc(n*sizeof(int)); for (i=0; i<n; i++) { for (j=0; j<n; j++) { if (i==j) B[i][j]=0; else B[i][j]=fill(A[i],A[j]); } } int s=0; for (i=0; (i<n-1); i++) s+=exception(B,n); printf("%d",len-s); for (i=0; i<n; i++) { free(A[i]); free(B[i]); } free(A); free(B); return 0; }
the_stack_data/92328865.c
/*Exercise 4 - Functions Implement the three functions minimum(), maximum() and multiply() below the main() function. Do not change the code given in the main() function when you are implementing your solution.*/ #include <stdio.h> int minimum(int n1, int n2); int maximum(int n1, int n2); int multiply(int n1, int n2); int main() { int no1, no2; printf("Enter a value for no 1 : "); scanf("%d", &no1); printf("Enter a value for no 2 : "); scanf("%d", &no2); printf("%d ", minimum(no1, no2)); printf("%d ", maximum(no1, no2)); printf("%d ", multiply(no1, no2)); return 0; } int minimum(int n1, int n2) { int min; if ( n1 > n2) { min = n2; } else { min = n1; } return min; } int maximum(int n1, int n2) { int max; if(n1 > n2){ max = n1; } else { max = n2; } return max; } int multiply(int n1, int n2) { return n1 * n2; }
the_stack_data/50138014.c
//Chris Wells 2015 //956335 //September 22, 2014 //compare1.c //Purpose: To examine inequality and equality symbols. The if/else selection structure will be explored. #include <stdio.h> //Begin main function void main() { int x; //Declare integer variable //Request integer value from user printf("Please enter an integer: "); scanf("%d", &x); //Check if variable is greater than 5 if( x > 5 ) { printf("\nThe number you entered is greater than 5."); x = 10; } else { printf("\nThe number you entered in not greater than 5."); x = 100; } //Display the value in the variable x printf("\nThe value in the variable x is %d.", x); }
the_stack_data/182953802.c
#include <stdio.h> int main() { int A, B, C; scanf("%i %i %i", &A, &B, &C); if (A >= B && A <= C || A >= C && A <= B) { printf("%i\n", A); } else if (B >= A && B <= C || B >= C && B <= A) { printf("%i\n", B); } else { printf("%i\n", C); } return(0); }
the_stack_data/161079778.c
/* This test program is part of GDB, the GNU debugger. Copyright 2018-2019 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/>. */ int the_variable = 0x1234; int main () { }
the_stack_data/11074671.c
#include<stdio.h> int main() { int i,fact=1,number; printf("Enter a number: "); scanf("%d",&number); for(i=1;i<=number;i++){ fact=fact*i; } printf("Factorial of %d is: %d",number,fact); return 0; }
the_stack_data/978622.c
/****************************************************************************** * * Copyright (C) 2012 - 2018 Texas Instruments Incorporated - http://www.ti.com/ * * 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 Texas Instruments Incorporated 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 * OWNER 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. * * MSP432P401M Interrupt Vector Table * *****************************************************************************/ #include <stdint.h> /* Entry point for the application. */ extern int _mainCRTStartup(); /* External declaration for system initialization function */ extern void SystemInit(void); extern uint32_t __data_load__; extern uint32_t __data_start__; extern uint32_t __data_end__; extern uint32_t __StackTop; typedef void( *pFunc )( void ); /* Forward declaration of the default fault handlers. */ void Default_Handler(void); extern void Reset_Handler (void) __attribute__((weak)); /* Cortex-M4 Processor Exceptions */ extern void NMI_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void HardFault_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void MemManage_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void BusFault_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void UsageFault_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void SVC_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void DebugMon_Handler (void) __attribute__((weak, alias("Default_Handler"))); extern void PendSV_Handler (void) __attribute__((weak, alias("Default_Handler"))); /* device specific interrupt handler */ extern void SysTick_Handler (void) __attribute__((weak,alias("Default_Handler"))); extern void PSS_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void CS_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PCM_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void WDT_A_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void FPU_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void FLCTL_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void COMP_E0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void COMP_E1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA0_0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA0_N_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA1_0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA1_N_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA2_0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA2_N_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA3_0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void TA3_N_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIA0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIA1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIA2_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIA3_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIB0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIB1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIB2_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void EUSCIB3_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void ADC14_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void T32_INT1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void T32_INT2_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void T32_INTC_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void AES256_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void RTC_C_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void DMA_ERR_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void DMA_INT3_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void DMA_INT2_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void DMA_INT1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void DMA_INT0_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT1_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT2_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT3_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT4_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT5_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); extern void PORT6_IRQHandler (void) __attribute__((weak,alias("Default_Handler"))); /* Interrupt vector table. Note that the proper constructs must be placed on this to */ /* ensure that it ends up at physical address 0x0000.0000 or at the start of */ /* the program if located at a start address other than 0. */ void (* const interruptVectors[])(void) __attribute__ ((section (".intvecs"))) = { (pFunc)&__StackTop, /* The initial stack pointer */ Reset_Handler, /* The reset handler */ NMI_Handler, /* The NMI handler */ HardFault_Handler, /* The hard fault handler */ MemManage_Handler, /* The MPU fault handler */ BusFault_Handler, /* The bus fault handler */ UsageFault_Handler, /* The usage fault handler */ 0, /* Reserved */ 0, /* Reserved */ 0, /* Reserved */ 0, /* Reserved */ SVC_Handler, /* SVCall handler */ DebugMon_Handler, /* Debug monitor handler */ 0, /* Reserved */ PendSV_Handler, /* The PendSV handler */ SysTick_Handler, /* The SysTick handler */ PSS_IRQHandler, /* PSS Interrupt */ CS_IRQHandler, /* CS Interrupt */ PCM_IRQHandler, /* PCM Interrupt */ WDT_A_IRQHandler, /* WDT_A Interrupt */ FPU_IRQHandler, /* FPU Interrupt */ FLCTL_IRQHandler, /* Flash Controller Interrupt*/ COMP_E0_IRQHandler, /* COMP_E0 Interrupt */ COMP_E1_IRQHandler, /* COMP_E1 Interrupt */ TA0_0_IRQHandler, /* TA0_0 Interrupt */ TA0_N_IRQHandler, /* TA0_N Interrupt */ TA1_0_IRQHandler, /* TA1_0 Interrupt */ TA1_N_IRQHandler, /* TA1_N Interrupt */ TA2_0_IRQHandler, /* TA2_0 Interrupt */ TA2_N_IRQHandler, /* TA2_N Interrupt */ TA3_0_IRQHandler, /* TA3_0 Interrupt */ TA3_N_IRQHandler, /* TA3_N Interrupt */ EUSCIA0_IRQHandler, /* EUSCIA0 Interrupt */ EUSCIA1_IRQHandler, /* EUSCIA1 Interrupt */ EUSCIA2_IRQHandler, /* EUSCIA2 Interrupt */ EUSCIA3_IRQHandler, /* EUSCIA3 Interrupt */ EUSCIB0_IRQHandler, /* EUSCIB0 Interrupt */ EUSCIB1_IRQHandler, /* EUSCIB1 Interrupt */ EUSCIB2_IRQHandler, /* EUSCIB2 Interrupt */ EUSCIB3_IRQHandler, /* EUSCIB3 Interrupt */ ADC14_IRQHandler, /* ADC14 Interrupt */ T32_INT1_IRQHandler, /* T32_INT1 Interrupt */ T32_INT2_IRQHandler, /* T32_INT2 Interrupt */ T32_INTC_IRQHandler, /* T32_INTC Interrupt */ AES256_IRQHandler, /* AES256 Interrupt */ RTC_C_IRQHandler, /* RTC_C Interrupt */ DMA_ERR_IRQHandler, /* DMA_ERR Interrupt */ DMA_INT3_IRQHandler, /* DMA_INT3 Interrupt */ DMA_INT2_IRQHandler, /* DMA_INT2 Interrupt */ DMA_INT1_IRQHandler, /* DMA_INT1 Interrupt */ DMA_INT0_IRQHandler, /* DMA_INT0 Interrupt */ PORT1_IRQHandler, /* Port1 Interrupt */ PORT2_IRQHandler, /* Port2 Interrupt */ PORT3_IRQHandler, /* Port3 Interrupt */ PORT4_IRQHandler, /* Port4 Interrupt */ PORT5_IRQHandler, /* Port5 Interrupt */ PORT6_IRQHandler /* Port6 Interrupt */ }; /* Forward declaration of the default fault handlers. */ /* This is the code that gets called when the processor first starts execution */ /* following a reset event. Only the absolutely necessary set is performed, */ /* after which the application supplied entry() routine is called. Any fancy */ /* actions (such as making decisions based on the reset cause register, and */ /* resetting the bits in that register) are left solely in the hands of the */ /* application. */ void Reset_Handler(void) { uint32_t *pui32Src, *pui32Dest; // // Copy the data segment initializers from flash to SRAM. // pui32Src = &__data_load__; for(pui32Dest = &__data_start__; pui32Dest < &__data_end__; ) { *pui32Dest++ = *pui32Src++; } /* Call system initialization routine */ SystemInit(); /* Jump to the main initialization routine. */ _mainCRTStartup(); } /* This is the code that gets called when the processor receives an unexpected */ /* interrupt. This simply enters an infinite loop, preserving the system state */ /* for examination by a debugger. */ void Default_Handler(void) { /* Enter an infinite loop. */ while(1) { } }
the_stack_data/50137002.c
#include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <errno.h> #include <signal.h> void term_status(int status) { wait(&status); if(WIFEXITED(status)) { printf("(exit)status: 0x%x\n", WEXITSTATUS(status)); } else if(WTERMSIG(status)) { printf("(signal)status: 0x%x\n",status&0x7f); } } void my_sig(int signo) { int status; printf("signo = %d\n", signo); while(waitpid(-1, &status, WNOHANG) > 0) term_status(status); } void my_int(int signo) { printf("signo = %d\n", signo); exit(-1); } int main(void) { int i; pid_t pid; signal(SIGCHLD, my_sig); signal(SIGINT, my_int); if((pid = fork()) > 0) { for(i = 0; i < 10000; i++) { usleep(50000); printf("%d\n", i + 1); } } else if(!pid) { sleep(50); abort(); } else { perror("fork() "); exit(-1); } return 0; }
the_stack_data/73574931.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int power(int base, int p){ int result = 1; if(p){ for(int i = p; i > 0; i--){ result *= base; } return result; } else{ return result; } } int isDigit(int ch){ if(ch >= 48 && ch <= 57) return 1; return 0; } int Strlen(char *str){ int cnt = 0; while(*str != '\0'){ cnt++; str++; } return cnt; } int AtoI(const char* str){ int res = 0; char *ptr = (char*)str; while (*ptr != '\0') { if (isDigit(*ptr)) { res *= 10; res += *ptr - 48; } ptr++; } return res; } void reverse(char*str){ int len = 0; char*ptr = str; while(*ptr != '\0'){ len++; ptr++; } int i = 0, j = len-1; while(i < j){ char temp = *(str+i); *(str+i) = *(str+j); *(str+j) = temp; ++i; --j; } } void ItoA(int dec, char*dest){ int i = 0; if(dec == 0){dest[i++] = 48;} else{ while(dec){ dest[i++] = (dec%10) + 48; dec /= 10; } *(dest+i) = '\0'; reverse(dest); } } int octToDec(int n){ int dec = 0, oct = n, count = 0; while(oct){ count++; oct = oct/10; } oct = n; for(int i = 0; i <= count; i++){ dec += (oct % 10) * power(8, i); oct = oct/10; } return dec; } int hexToDec(char* h){ int dec = 0, bitshift = 0, cnt = 0; char* ptr = h; while(*ptr != '\0'){ cnt++; ptr++; } while(cnt >= 0){ --cnt; if((*(h+cnt) >=97 && *(h+cnt) <=102)) dec += (*(h+cnt)-87)*power(16, bitshift); else if((*(h+cnt) >=65 && *(h+cnt) <=70)) dec += (*(h+cnt)-55)*power(16, bitshift); else if((*(h+cnt) >=48 && *(h+cnt) <=57)) dec += (*(h+cnt)-48)*power(16, bitshift);; bitshift++; } return dec; } int binToDec(char* binary){ int i = 0, j, k; int dec = 0; while(*(binary+i) != '\0'){ ++i; } for(j = i-1, k = 0; j >= 0; --j, ++k) dec += (*(binary+k)-48)*power(2,j); return dec; } char* decToHex(int n){ unsigned int dec = n; int i = 0; char hex[100]; while(dec){ int remain = dec % 16; if (remain < 10) hex[i++] = 48 + remain; else hex[i++] = 55 + remain; dec = dec/ 16; } hex[i] = '\0'; reverse(hex); return strdup(hex); } int decToOct(int n){ int dec = n, oct = 0, count = 0; while(dec){ count++; dec = dec/10; } dec = n; for(int i = 0; i <= count; i++){ oct += (dec % 8) * power(10, i); dec = dec/8; } return oct; } char* decToBin(int n){ unsigned int dec = n; char binary[20]; int i = 0; while(dec){ int remain = dec % 2; binary[i++] = remain+48; dec = dec/2; } binary[i] = '\0'; reverse(binary); return strdup(binary); } void freeIt(char** alloc_mem) { free(*alloc_mem); *alloc_mem = NULL; }
the_stack_data/107952613.c
/* * Copyright (c) 2016 by Solar Designer. See LICENSE. */ #ifdef _MSC_VER #include <windows.h> #else #include <string.h> #endif static void memzero(void *buf, size_t len) { #ifdef _MSC_VER SecureZeroMemory(buf, len); #else memset(buf, 0, len); #endif } void (*_passwdqc_memzero)(void *, size_t) = memzero;
the_stack_data/162643811.c
// WAP that reads values of some variables from a disk file #include <stdio.h> #include <stdlib.h> int main() { unsigned long transaction_Id ; char customer_name[20]; float bill_amt ; FILE *fpnt ; // decl. of pointer to structure FILE fpnt=fopen("c:\\myfiles\\cust.txt","r"); if (fpnt==NULL) { printf("Unable to open the file ....") ; exit(0) ; // terminates the program } fscanf(fpnt,"%s%lu%f",customer_name,&transaction_Id,&bill_amt); printf("%s\t%lu\t%.2f",customer_name,transaction_Id,bill_amt); fclose(fpnt); }
the_stack_data/125811.c
/* Compare at most N wide characters of two strings without taking care for the case. Copyright (C) 1992-2016 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/>. */ #ifdef HAVE_CONFIG_H # include <config.h> #endif #include <wchar.h> #include <wctype.h> #ifndef weak_alias # define __wcsncasecmp wcsncasecmp # define TOLOWER(Ch) towlower (Ch) #else # ifdef USE_IN_EXTENDED_LOCALE_MODEL # define __wcsncasecmp __wcsncasecmp_l # define TOLOWER(Ch) __towlower_l ((Ch), loc) # else # define TOLOWER(Ch) towlower (Ch) # endif #endif #ifdef USE_IN_EXTENDED_LOCALE_MODEL # define LOCALE_PARAM , __locale_t loc #else # define LOCALE_PARAM #endif /* Compare no more than N wide characters of S1 and S2, ignoring case, returning less than, equal to or greater than zero if S1 is lexicographically less than, equal to or greater than S2. */ int __wcsncasecmp (const wchar_t *s1, const wchar_t *s2, size_t n LOCALE_PARAM) { wint_t c1, c2; if (s1 == s2 || n == 0) return 0; do { c1 = (wint_t) TOLOWER (*s1++); c2 = (wint_t) TOLOWER (*s2++); if (c1 == L'\0' || c1 != c2) return c1 - c2; } while (--n > 0); return c1 - c2; } #ifndef __wcsncasecmp weak_alias (__wcsncasecmp, wcsncasecmp) #endif
the_stack_data/92327873.c
#include <stdio.h> #include <stdlib.h> #include <libgen.h> #include <string.h> #include <getopt.h> #include <math.h> /* Compile with: gcc projection.c -Wall -o project -lm * math.h does not like to be linked directly... * Example call: ./project -x test_x.pgm -y test_y.pgm -h 400 -w 400 -r 400 -c 400 -m equirectangular --verbose * ./project -x fly360_x.pgm -y fly360_y.pgm -h 1504 -w 1504 -r 752 -c 1504 -m equirectangular --verbose * Example command: ffmpeg -i input.jpg -i test_x.pgm -i test_y.pgm -lavfi remap out.png * ffmpeg -i fly360.mp4 -i fly360_x.pgm -i fly360_y.pgm -lavfi remap out.mp4 * * # Sources * - https://trac.ffmpeg.org/wiki/RemapFilter * - https://en.wikipedia.org/wiki/Spherical_coordinate_system * - https://en.wikipedia.org/wiki/Stereographic_projection * - https://en.wikipedia.org/wiki/Equirectangular_projection * - http://paulbourke.net/geometry/transformationprojection/ */ /* Flag set by ‘--verbose’. */ static int verbose_flag; typedef struct double2 { double x; double y; } double2; typedef struct double3 { double x; double y; double z; } double3; typedef struct polar2 { double r; double theta; } polar2; typedef struct polar3 { double r; double theta; double phi; } polar3; enum CameraMode { FRONT, EQUIRECTANGULAR }; typedef struct configuration { char* xmap_filename; char* ymap_filename; int xmap_set; int ymap_set; int rows; // target int cols; // target int height; // source int width; // source int rows_set; int cols_set; int height_set; int width_set; int crop; enum CameraMode mode; double thetaAdj; } configuration; /* Store command line options in configuration */ configuration parse_options(int argc, char **argv) { int c; configuration po; // to hold parsed options po.xmap_filename = NULL; po.ymap_filename = NULL; po.xmap_set = 0; po.ymap_set = 0; po.rows = 0; po.cols = 0; po.rows_set = 0; po.cols_set = 0; po.height_set = 0; po.width_set = 0; po.mode = FRONT; // default po.thetaAdj = 0; while (1) { static struct option long_options[] = { /* These options set a flag. */ {"verbose", no_argument, &verbose_flag, 1}, {"brief", no_argument, &verbose_flag, 0}, /* These options don’t set a flag. We distinguish them by their indices. */ {"help", no_argument, 0, 'q'}, /* options with arg*/ {"xmap", required_argument, 0, 'x'}, {"ymap", required_argument, 0, 'y'}, {"rows", required_argument, 0, 'r'}, // target {"cols", required_argument, 0, 'c'}, // target {"height", required_argument, 0, 'h'}, // source {"width", required_argument, 0, 'w'}, // source {"mode", required_argument, 0, 'm'}, {"crop", required_argument, 0, 'b'}, {"thetaAdj",required_argument, 0, 't'}, {0, 0, 0, 0} }; /* getopt_long stores the option index here. */ int option_index = 0; c = getopt_long (argc, argv, "qx:y:r:c:h:w:m:b:t:", long_options, &option_index); /* Detect the end of the options. */ if (c == -1) break; switch (c) { /* If this option set a flag, do nothing else now. */ case 0: if (long_options[option_index].flag != 0) break; printf("option %s", long_options[option_index].name); if (optarg) printf (" with arg %s", optarg); printf ("\n"); break; case 'x': po.xmap_filename = optarg; po.xmap_set++; break; case 'y': po.ymap_filename = optarg; po.ymap_set++; break; case 'h': po.height = atoi(optarg); po.height_set++; break; case 'w': po.width = atoi(optarg); po.width_set++; break; case 'c': po.cols = atoi(optarg); po.cols_set++; break; case 'r': po.rows = atoi(optarg); po.rows_set++; break; case 'b': po.crop = atoi(optarg); break; case 'm': if (strcmp(optarg, "front") == 0) { po.mode = FRONT; } else if (strcmp(optarg, "equirectangular") == 0) { po.mode = EQUIRECTANGULAR; } else /* default: */ { printf("Mode %s not implemented \n",optarg); exit(1); } break; case 't': po.thetaAdj = atof(optarg); break; /* getopt_long already printed an error message. */ case '?': case 'q': printf ("Usage: %s -x|--xmap FILE_x.pgm -y|--ymap FILE_y.pgm -h|--height 300 -w|--width 400 -r|--rows 600 -c|--cols 800 \n", argv[0]); printf ("h,w is source size, r,c is targetsize \n"); exit(1); break; default: abort(); } } /* Instead of reporting ‘--verbose’ and ‘--brief’ as they are encountered, we report the final status resulting from them. */ if (verbose_flag) { switch (po.mode) { case FRONT: printf("Mode: Front proj\n"); break; case EQUIRECTANGULAR: printf("Mode: Equirectangular proj\n"); break; default: printf("Mode not in verbose, exiting\n"); exit(1); } } /* Print any remaining command line arguments (not options). */ if (optind < argc) { printf ("ERROR: non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); putchar ('\n'); exit(1); } if (po.xmap_set != 1 || po.ymap_set != 1) {printf("ERROR: Xmap and ymap are mandatory arguments and have to appear only once!\ntry --help for help\n\n ");exit(-1);} if (po.rows_set != 1 || po.cols_set != 1) {printf("ERROR: Target Rows and Cols are mandatory arguments and have to appear only once!\ntry --help for help\n\n ");exit(-1);} if (po.height_set != 1 || po.width_set != 1) {printf("ERROR: Source Height and Width are mandatory arguments and have to appear only once!\ntry --help for help\n\n ");exit(-1);} return po; } #define MAXROWS 4500 #define MAXCOLS 4500 /* Write to file */ int pgmWrite_ASCII(char* filename, int rows, int cols, int **image, char* comment_string) { FILE* file; /* pointer to the file buffer */ // int maxval; /* maximum value in the image array */ long nwritten = 0; /* counter for the number of pixels written */ long x, y; /* for loop counters */ /* return 0 if the dimensions are larger than the image array. */ if (rows > MAXROWS || cols > MAXCOLS) { printf ("ERROR: row/col specifications larger than image array:\n"); return (0); } /* open the file; write header and comments specified by the user. */ if ((file = fopen(filename, "w")) == NULL) { printf("ERROR: file open failed\n"); return(0); } fprintf(file,"P2\n"); if (comment_string != NULL) fprintf(file,"# %s \n", comment_string); /* write the dimensions of the image */ fprintf(file,"%i %i \n", cols, rows); /* NOTE: MAXIMUM VALUE IS WHITE; COLOURS ARE SCALED FROM 0 - */ /* MAXVALUE IN A .PGM FILE. */ /* WRITE MAXIMUM VALUE TO FILE */ fprintf(file, "%d\n", (int)65535); /* Write data */ for (y = 0; y < rows; y++) { for (x = 0; x < cols; x++) { fprintf(file,"%i ", image[y][x]); nwritten++; } fprintf(file, "\n"); } fprintf(file, "\n"); printf ("\nNumber of pixels total (from rows * cols): %i\n", rows * cols); printf ("Number of pixels written in file %s: %ld\n\n", filename, nwritten); fclose(file); return(1); } /* So, to get the x’,y’ position for the circular image we will have to first pass the * coordinates x,y from the rectangular output image to spherical coordinates using the * first coordinate system, then those to the second shown spherical coordinate system, * then those to the polar projection and then pass the polar system to cardinal x’,y’. */ double2 evaluatePixel_Front(double2 outPos, double2 srcSize) { double theta, phi; double3 sphericCoords; double phi2_over_pi; double theta2; double2 inCentered; // Convert outcoords to radians (180 = pi, so half a sphere) theta = (1.0 - outPos.x) * M_PI; phi = outPos.y * M_PI; // Convert outcoords to spherical (x,y,z on unisphere) sphericCoords.x = cos(theta) * sin(phi); sphericCoords.y = sin(theta) * sin(phi); sphericCoords.z = cos(phi); // Convert spherical to input coordinates... theta2 = atan2(-sphericCoords.z, sphericCoords.x); phi2_over_pi = acos(sphericCoords.y) / M_PI; inCentered.x = (phi2_over_pi * cos(theta2) + 0.5) * srcSize.x; inCentered.y = (phi2_over_pi * sin(theta2) + 0.5) * srcSize.y; return inCentered; } /* 1. Define cartesian plane * 2. Reverse equirectangular projection from cartesian plane to polar coords in sphere * 3. Stereographic projection of polar coords from sphere to plane * 4. Convert polar coords to cartesian coords in plane * 5. Center and stretch according to source size */ double2 evaluatePixel_Equirectangular(double2 outPos, double2 srcSize, double thetaAdj) { double2 cartesianCoordsPlane; polar3 polarCoordsSphere; polar2 polarCoordsPlane; double2 result; // Define cartesianCoordsPlane cartesianCoordsPlane.x = 1.0 - outPos.x; cartesianCoordsPlane.y = 1.0 - outPos.y; // Reverse equirectangular projection // Convert cartesianCoordsPlane to polarCoordsSphere polarCoordsSphere.theta = cartesianCoordsPlane.x * 2.0 * M_PI + thetaAdj * M_PI / 180.0; polarCoordsSphere.phi = cartesianCoordsPlane.y * M_PI/2.0 + M_PI/2.0; // Stereographic projection // Convert polarCoordsSphere to polar coordinates on plane polarCoordsPlane.r = sin(polarCoordsSphere.phi)/(1.0-cos(polarCoordsSphere.phi)); polarCoordsPlane.theta = polarCoordsSphere.theta; // Convert polarCoordsPlane to cartesian coordinates; center and stretch result.x = (polarCoordsPlane.r * cos(polarCoordsPlane.theta) + 1.0)/2.0 * srcSize.x; result.y = (polarCoordsPlane.r * sin(polarCoordsPlane.theta) + 1.0)/2.0 * srcSize.y; // Coordinates of pixel in input which should be mapped onto given pixel in output return result; } /* Generate maps */ void gen_maps(configuration cfg, int** image_x, int** image_y) { int x, y; for (y = 0; y < cfg.rows; y++) { for (x = 0; x < cfg.cols; x++) { double2 outPos = {(double)x / (double)cfg.cols, (double)y / (double)cfg.rows}; double2 srcSize = {cfg.width, cfg.height}; double2 o; // Map output pixel (x, y) to corresponding input pixel switch (cfg.mode) { case FRONT: o = evaluatePixel_Front(outPos, srcSize); break; case EQUIRECTANGULAR: o = evaluatePixel_Equirectangular(outPos, srcSize, cfg.thetaAdj); break; default: printf("Mode not implemented\n"); exit(1); } image_x[y][x] = (int)round(o.x); image_y[y][x] = (int)round(o.y); } } } /* Main */ int main (int argc, char **argv) { int y; int** image_x; int** image_y; configuration cfg = parse_options(argc, argv); if (cfg.xmap_filename) printf("xmapfile: %s\n", cfg.xmap_filename); if (cfg.ymap_filename) printf("ymapfile: %s\n", cfg.ymap_filename); /* Allocate memory for maps */ image_x = malloc((cfg.rows) * sizeof(*image_x)); for (y = 0 ; y < (cfg.rows); y++) image_x[y] = malloc((cfg.cols) * sizeof(*(image_x[y]))); image_y = malloc((cfg.rows) * sizeof(*image_y)); for (y = 0; y < (cfg.rows); y++) image_y[y]= malloc((cfg.cols) * sizeof(*(image_y[y]))); /* Generate the maps */ printf("Generating maps\n"); gen_maps(cfg, image_x, image_y); /* Write files */ printf("Writing files\n"); pgmWrite_ASCII(cfg.ymap_filename, cfg.rows, cfg.cols,image_y, cfg.ymap_filename); pgmWrite_ASCII(cfg.xmap_filename, cfg.rows, cfg.cols,image_x, cfg.xmap_filename); /* Free memory */ if (image_y) { for (y = 0; y < cfg.rows; y++) free(image_y[y]); free(image_y); } if (image_x) { for (y = 0; y < cfg.rows; y++) free(image_x[y]); free(image_x); } /* Exit */ exit (0); }
the_stack_data/642558.c
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <time.h> char c[80]; struct level7 { int number; char *buffer; }; void m() { time_t tloc; tloc = time((time_t *)0x0); printf("%s - %d\n", c, tloc); return; } int main(int argc, char **argv) { struct level7 *structOne, *structTwo; FILE *__stream; structOne = malloc(sizeof(struct level7)); structOne->number = 1; structOne->buffer = malloc(8); structTwo = malloc(sizeof(struct level7)); structTwo->number = 1; structTwo->buffer = malloc(8); strcpy(structOne->buffer, argv[1]); strcpy(structTwo->buffer, argv[2]); __stream = fopen("/home/user/level8/.pass", "r"); fgets(c, 4, __stream); puts("~~"); return 0; }
the_stack_data/104827363.c
#include <stdio.h> int main() { int i, j, dim, d; int depth = 3; for (i = 0, dim = 1; i < depth; i++, dim *= 3); for (i = 0; i < dim; i++) { for (j = 0; j < dim; j++) { for (d = dim / 3; d; d /= 3) if ((i % (d * 3)) / d == 1 && (j % (d * 3)) / d == 1) break; printf(d ? " " : "##"); } printf("\n"); } return 0; }
the_stack_data/29824174.c
#define _POSIX_C_SOURCE 200809L #include "stdlib.h" #include "math.h" #include "sys/time.h" #include "xmmintrin.h" #include "pmmintrin.h" #include "omp.h" #include <stdio.h> #define min(a, b) (((a) < (b)) ? (a) : (b)) #define max(a, b) (((a) > (b)) ? (a) : (b)) struct dataobj { void *restrict data; int *size; int *npsize; int *dsize; int *hsize; int *hofs; int *oofs; }; struct profiler { double section0; double section1; double section2; }; void bf0(struct dataobj *restrict damp_vec, const float dt, struct dataobj *restrict epsilon_vec, float *restrict r49_vec, float *restrict r50_vec, float *restrict r51_vec, float *restrict r52_vec, float *restrict r53_vec, struct dataobj *restrict u_vec, struct dataobj *restrict v_vec, struct dataobj *restrict vp_vec, struct dataobj *restrict nnz_sp_source_mask_vec, struct dataobj *restrict sp_source_mask_vec, struct dataobj *restrict save_src_u_vec, struct dataobj *restrict save_src_v_vec, struct dataobj *restrict source_id_vec, struct dataobj *restrict source_mask_vec, const int x0_blk0_size, const int x_size, const int y0_blk0_size, const int y_size, const int z_size, const int t0, const int t1, const int t2, const int x_M, const int x_m, const int y_M, const int y_m, const int z_M, const int z_m, const int sp_zi_m, const int nthreads, const int xb, const int yb, const int xb_size, const int yb_size, float **restrict r108_vec, float **restrict r109_vec, const int time, const int tw); int ForwardTTI(struct dataobj *restrict block_sizes_vec, struct dataobj *restrict damp_vec, struct dataobj *restrict delta_vec, const float dt, struct dataobj *restrict epsilon_vec, struct dataobj *restrict nnz_sp_source_mask_vec, struct dataobj *restrict phi_vec, struct dataobj *restrict save_src_u_vec, struct dataobj *restrict save_src_v_vec, struct dataobj *restrict source_id_vec, struct dataobj *restrict source_mask_vec, struct dataobj *restrict sp_source_mask_vec, struct dataobj *restrict theta_vec, struct dataobj *restrict u_vec, struct dataobj *restrict v_vec, struct dataobj *restrict vp_vec, const int x_size, const int y_size, const int z_size, const int sp_zi_m, const int time_M, const int time_m, struct profiler *timers, const int x_M, const int x_m, const int y_M, const int y_m, const int z_M, const int z_m, const int nthreads, const int nthreads_nonaffine) { int(*restrict block_sizes) __attribute__((aligned(64))) = (int(*))block_sizes_vec->data; float(*restrict delta)[delta_vec->size[1]][delta_vec->size[2]] __attribute__((aligned(64))) = (float(*)[delta_vec->size[1]][delta_vec->size[2]])delta_vec->data; int(*restrict nnz_sp_source_mask)[nnz_sp_source_mask_vec->size[1]] __attribute__((aligned(64))) = (int(*)[nnz_sp_source_mask_vec->size[1]])nnz_sp_source_mask_vec->data; float(*restrict phi)[phi_vec->size[1]][phi_vec->size[2]] __attribute__((aligned(64))) = (float(*)[phi_vec->size[1]][phi_vec->size[2]])phi_vec->data; float(*restrict save_src_u)[save_src_u_vec->size[1]] __attribute__((aligned(64))) = (float(*)[save_src_u_vec->size[1]])save_src_u_vec->data; float(*restrict save_src_v)[save_src_v_vec->size[1]] __attribute__((aligned(64))) = (float(*)[save_src_v_vec->size[1]])save_src_v_vec->data; int(*restrict source_id)[source_id_vec->size[1]][source_id_vec->size[2]] __attribute__((aligned(64))) = (int(*)[source_id_vec->size[1]][source_id_vec->size[2]])source_id_vec->data; int(*restrict source_mask)[source_mask_vec->size[1]][source_mask_vec->size[2]] __attribute__((aligned(64))) = (int(*)[source_mask_vec->size[1]][source_mask_vec->size[2]])source_mask_vec->data; int(*restrict sp_source_mask)[sp_source_mask_vec->size[1]][sp_source_mask_vec->size[2]] __attribute__((aligned(64))) = (int(*)[sp_source_mask_vec->size[1]][sp_source_mask_vec->size[2]])sp_source_mask_vec->data; float(*restrict theta)[theta_vec->size[1]][theta_vec->size[2]] __attribute__((aligned(64))) = (float(*)[theta_vec->size[1]][theta_vec->size[2]])theta_vec->data; float(*restrict u)[u_vec->size[1]][u_vec->size[2]][u_vec->size[3]] __attribute__((aligned(64))) = (float(*)[u_vec->size[1]][u_vec->size[2]][u_vec->size[3]])u_vec->data; float(*restrict v)[v_vec->size[1]][v_vec->size[2]][v_vec->size[3]] __attribute__((aligned(64))) = (float(*)[v_vec->size[1]][v_vec->size[2]][v_vec->size[3]])v_vec->data; float(*r49)[y_size + 2 + 2][z_size + 2 + 2]; posix_memalign((void **)&r49, 64, sizeof(float[x_size + 2 + 2][y_size + 2 + 2][z_size + 2 + 2])); float(*r50)[y_size + 2 + 2][z_size + 2 + 2]; posix_memalign((void **)&r50, 64, sizeof(float[x_size + 2 + 2][y_size + 2 + 2][z_size + 2 + 2])); float(*r51)[y_size + 2 + 2][z_size + 2 + 2]; posix_memalign((void **)&r51, 64, sizeof(float[x_size + 2 + 2][y_size + 2 + 2][z_size + 2 + 2])); float(*r52)[y_size + 2 + 2][z_size + 2 + 2]; posix_memalign((void **)&r52, 64, sizeof(float[x_size + 2 + 2][y_size + 2 + 2][z_size + 2 + 2])); float(*r53)[y_size + 2 + 2][z_size + 2 + 2]; posix_memalign((void **)&r53, 64, sizeof(float[x_size + 2 + 2][y_size + 2 + 2][z_size + 2 + 2])); float **r94; posix_memalign((void **)&r94, 64, sizeof(float *) * nthreads); float **r95; posix_memalign((void **)&r95, 64, sizeof(float *) * nthreads); int y0_blk0_size = block_sizes[3]; int x0_blk0_size = block_sizes[2]; int yb_size = block_sizes[1]; int xb_size = block_sizes[0]; int sf = 4; int t_blk_size = 2 * sf * (time_M - time_m); #pragma omp parallel num_threads(nthreads) { const int tid = omp_get_thread_num(); posix_memalign((void **)&r94[tid], 64, sizeof(float[x0_blk0_size + 2 + 2][y0_blk0_size + 2 + 2][z_size + 2 + 2])); posix_memalign((void **)&r95[tid], 64, sizeof(float[x0_blk0_size + 2 + 2][y0_blk0_size + 2 + 2][z_size + 2 + 2])); } /* Flush denormal numbers to zero in hardware */ _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON); _MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON); struct timeval start_section0, end_section0; gettimeofday(&start_section0, NULL); /* Begin section0 */ #pragma omp parallel num_threads(nthreads) { #pragma omp for collapse(2) schedule(static, 1) for (int x = x_m - 2; x <= x_M + 2; x += 1) { for (int y = y_m - 2; y <= y_M + 2; y += 1) { #pragma omp simd aligned(delta, phi, theta : 32) for (int z = z_m - 2; z <= z_M + 2; z += 1) { r49[x + 2][y + 2][z + 2] = sqrt(2 * delta[x + 8][y + 8][z + 8] + 1); r50[x + 2][y + 2][z + 2] = cos(theta[x + 8][y + 8][z + 8]); r51[x + 2][y + 2][z + 2] = cos(phi[x + 8][y + 8][z + 8]); r52[x + 2][y + 2][z + 2] = sin(theta[x + 8][y + 8][z + 8]); r53[x + 2][y + 2][z + 2] = sin(phi[x + 8][y + 8][z + 8]); } } } } /* End section0 */ gettimeofday(&end_section0, NULL); timers->section0 += (double)(end_section0.tv_sec - start_section0.tv_sec) + (double)(end_section0.tv_usec - start_section0.tv_usec) / 1000000; for (int t_blk = time_m; t_blk <= 1 + sf * (time_M - time_m); t_blk += sf * t_blk_size) // for each t block { for (int xb = x_m - 1; xb <= (x_M + sf * (time_M - time_m)); xb += xb_size) { //printf(" Change of outer xblock %d \n", xb); for (int yb = y_m - 1; yb <= (y_M + sf * (time_M - time_m)); yb += yb_size) { for (int time = t_blk, t0 = (time) % (3), t1 = (time + 2) % (3), t2 = (time + 1) % (3); time <= 2 + min(t_blk + t_blk_size - 1, sf * (time_M - time_m)); time += sf, t0 = (((time / sf) % (time_M - time_m + 1))) % (3), t1 = (((time / sf) % (time_M - time_m + 1)) + 2) % (3), t2 = (((time / sf) % (time_M - time_m + 1)) + 1) % (3)) { int tw = ((time / sf) % (time_M - time_m + 1)); struct timeval start_section1, end_section1; gettimeofday(&start_section1, NULL); /* Begin section1 */ bf0(damp_vec, dt, epsilon_vec, (float *)r49, (float *)r50, (float *)r51, (float *)r52, (float *)r53, u_vec, v_vec, vp_vec, nnz_sp_source_mask_vec, sp_source_mask_vec, save_src_u_vec, save_src_v_vec, source_id_vec, source_mask_vec, x0_blk0_size, x_size, y0_blk0_size, y_size, z_size, t0, t1, t2, x_M, x_m, y_M, y_m, z_M, z_m, sp_zi_m, nthreads, xb, yb, xb_size, yb_size, (float **)r94, (float **)r95, time, tw); // x_M - (x_M - x_m + 1)%(x0_blk0_size), x_m, y_M - (y_M - y_m + 1)%(y0_blk0_size), y_m, /* End section1 */ gettimeofday(&end_section1, NULL); timers->section1 += (double)(end_section1.tv_sec - start_section1.tv_sec) + (double)(end_section1.tv_usec - start_section1.tv_usec) / 1000000; } } } } #pragma omp parallel num_threads(nthreads) { const int tid = omp_get_thread_num(); free(r94[tid]); free(r95[tid]); } free(r49); free(r50); free(r51); free(r52); free(r53); free(r94); free(r95); return 0; } void bf0(struct dataobj *restrict damp_vec, const float dt, struct dataobj *restrict epsilon_vec, float *restrict r49_vec, float *restrict r50_vec, float *restrict r51_vec, float *restrict r52_vec, float *restrict r53_vec, struct dataobj *restrict u_vec, struct dataobj *restrict v_vec, struct dataobj *restrict vp_vec, struct dataobj *restrict nnz_sp_source_mask_vec, struct dataobj *restrict sp_source_mask_vec, struct dataobj *restrict save_src_u_vec, struct dataobj *restrict save_src_v_vec, struct dataobj *restrict source_id_vec, struct dataobj *restrict source_mask_vec, const int x0_blk0_size, const int x_size, const int y0_blk0_size, const int y_size, const int z_size, const int t0, const int t1, const int t2, const int x_M, const int x_m, const int y_M, const int y_m, const int z_M, const int z_m, const int sp_zi_m, const int nthreads, const int xb, const int yb, const int xb_size, const int yb_size, float **restrict r94_vec, float **restrict r95_vec, const int time, const int tw) { float(*restrict damp)[damp_vec->size[1]][damp_vec->size[2]] __attribute__((aligned(64))) = (float(*)[damp_vec->size[1]][damp_vec->size[2]])damp_vec->data; float(*restrict epsilon)[epsilon_vec->size[1]][epsilon_vec->size[2]] __attribute__((aligned(64))) = (float(*)[epsilon_vec->size[1]][epsilon_vec->size[2]])epsilon_vec->data; float(*restrict r49)[y_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y_size + 2 + 2][z_size + 2 + 2]) r49_vec; float(*restrict r50)[y_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y_size + 2 + 2][z_size + 2 + 2]) r50_vec; float(*restrict r51)[y_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y_size + 2 + 2][z_size + 2 + 2]) r51_vec; float(*restrict r52)[y_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y_size + 2 + 2][z_size + 2 + 2]) r52_vec; float(*restrict r53)[y_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y_size + 2 + 2][z_size + 2 + 2]) r53_vec; float(*restrict u)[u_vec->size[1]][u_vec->size[2]][u_vec->size[3]] __attribute__((aligned(64))) = (float(*)[u_vec->size[1]][u_vec->size[2]][u_vec->size[3]])u_vec->data; float(*restrict v)[v_vec->size[1]][v_vec->size[2]][v_vec->size[3]] __attribute__((aligned(64))) = (float(*)[v_vec->size[1]][v_vec->size[2]][v_vec->size[3]])v_vec->data; float(*restrict vp)[vp_vec->size[1]][vp_vec->size[2]] __attribute__((aligned(64))) = (float(*)[vp_vec->size[1]][vp_vec->size[2]])vp_vec->data; float **r94 = (float **)r94_vec; float **r95 = (float **)r95_vec; int(*restrict nnz_sp_source_mask)[nnz_sp_source_mask_vec->size[1]] __attribute__((aligned(64))) = (int(*)[nnz_sp_source_mask_vec->size[1]])nnz_sp_source_mask_vec->data; float(*restrict save_src_u)[save_src_u_vec->size[1]] __attribute__((aligned(64))) = (float(*)[save_src_u_vec->size[1]])save_src_u_vec->data; float(*restrict save_src_v)[save_src_v_vec->size[1]] __attribute__((aligned(64))) = (float(*)[save_src_v_vec->size[1]])save_src_v_vec->data; int(*restrict source_id)[source_id_vec->size[1]][source_id_vec->size[2]] __attribute__((aligned(64))) = (int(*)[source_id_vec->size[1]][source_id_vec->size[2]])source_id_vec->data; int(*restrict source_mask)[source_mask_vec->size[1]][source_mask_vec->size[2]] __attribute__((aligned(64))) = (int(*)[source_mask_vec->size[1]][source_mask_vec->size[2]])source_mask_vec->data; int(*restrict sp_source_mask)[sp_source_mask_vec->size[1]][sp_source_mask_vec->size[2]] __attribute__((aligned(64))) = (int(*)[sp_source_mask_vec->size[1]][sp_source_mask_vec->size[2]])sp_source_mask_vec->data; #pragma omp parallel num_threads(nthreads) { const int tid = omp_get_thread_num(); float(*restrict r82)[y0_blk0_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y0_blk0_size + 2 + 2][z_size + 2 + 2]) r94[tid]; float(*restrict r83)[y0_blk0_size + 2 + 2][z_size + 2 + 2] __attribute__((aligned(64))) = (float(*)[y0_blk0_size + 2 + 2][z_size + 2 + 2]) r95[tid]; #pragma omp for collapse(2) schedule(dynamic, 1) for (int x0_blk0 = max((x_m + time), xb); x0_blk0 <= min((x_M + time), (xb + xb_size)); x0_blk0 += x0_blk0_size) { for (int y0_blk0 = max((y_m + time), yb); y0_blk0 <= min((y_M + time), (yb + yb_size)); y0_blk0 += y0_blk0_size) { for (int x = x0_blk0 - 2, xs = 0; x <= min(min((x_M + time), (xb + xb_size + 1)), (x0_blk0 + x0_blk0_size + 1)); x++, xs++) { for (int y = y0_blk0 - 2, ys = 0; y <= min(min((y_M + time), (yb + yb_size + 1)), (y0_blk0 + y0_blk0_size + 1)); y++, ys++) { //printf(" bf0 Timestep tw: %d, Updating x: %d y: %d , Updating xs: %d ys: %d \n", tw, x - time + 8, y - time + 8, xs, ys); #pragma omp simd aligned(u, v : 32) for (int z = z_m - 2; z <= z_M + 2; z += 1) { r82[xs][ys][z + 2] = -(8.33333346e-3F * (u[t0][x - time + 6][y - time + 8][z + 8] - u[t0][x - time + 10][y - time + 8][z + 8]) + 6.66666677e-2F * (-u[t0][x - time + 7][y - time + 8][z + 8] + u[t0][x - time + 9][y - time + 8][z + 8])) * r51[x - time + 2][y - time + 2][z + 2] * r52[x - time + 2][y - time + 2][z + 2] - (8.33333346e-3F * (u[t0][x - time + 8][y - time + 6][z + 8] - u[t0][x - time + 8][y - time + 10][z + 8]) + 6.66666677e-2F * (-u[t0][x - time + 8][y - time + 7][z + 8] + u[t0][x - time + 8][y - time + 9][z + 8])) * r52[x - time + 2][y - time + 2][z + 2] * r53[x - time + 2][y - time + 2][z + 2] - (8.33333346e-3F * (u[t0][x - time + 8][y - time + 8][z + 6] - u[t0][x - time + 8][y - time + 8][z + 10]) + 6.66666677e-2F * (-u[t0][x - time + 8][y - time + 8][z + 7] + u[t0][x - time + 8][y - time + 8][z + 9])) * r50[x - time + 2][y - time + 2][z + 2]; r83[xs][ys][z + 2] = -(8.33333346e-3F * (v[t0][x - time + 6][y - time + 8][z + 8] - v[t0][x - time + 10][y - time + 8][z + 8]) + 6.66666677e-2F * (-v[t0][x - time + 7][y - time + 8][z + 8] + v[t0][x - time + 9][y - time + 8][z + 8])) * r51[x - time + 2][y - time + 2][z + 2] * r52[x - time + 2][y - time + 2][z + 2] - (8.33333346e-3F * (v[t0][x - time + 8][y - time + 6][z + 8] - v[t0][x - time + 8][y - time + 10][z + 8]) + 6.66666677e-2F * (-v[t0][x - time + 8][y - time + 7][z + 8] + v[t0][x - time + 8][y - time + 9][z + 8])) * r52[x - time + 2][y - time + 2][z + 2] * r53[x - time + 2][y - time + 2][z + 2] - (8.33333346e-3F * (v[t0][x - time + 8][y - time + 8][z + 6] - v[t0][x - time + 8][y - time + 8][z + 10]) + 6.66666677e-2F * (-v[t0][x - time + 8][y - time + 8][z + 7] + v[t0][x - time + 8][y - time + 8][z + 9])) * r50[x - time + 2][y - time + 2][z + 2]; } } } for (int x = x0_blk0, xs = 0; x <= min(min((x_M + time), (xb + xb_size - 1)), (x0_blk0 + x0_blk0_size - 1)); x++, xs++) { for (int y = y0_blk0, ys = 0; y <= min(min((y_M + time), (yb + yb_size - 1)), (y0_blk0 + y0_blk0_size - 1)); y++, ys++) { //printf(" bf1 Timestep tw: %d, Updating x: %d y: %d , Updating xs: %d ys: %d \n", tw, x - time + 8, y - time + 8, xs, ys); #pragma omp simd aligned(damp, epsilon, u, v, vp : 32) for (int z = z_m; z <= z_M; z += 1) { float r93 = 1.0 / dt; float r92 = 1.0 / (dt * dt); float r91 = 6.66666677e-2F * (r50[x - time + 2][y - time + 2][z + 1] * r83[xs + 2][ys + 2][z + 1] - r50[x - time + 2][y - time + 2][z + 3] * r83[xs + 2][ys + 2][z + 3] + r51[x - time + 1][y - time + 2][z + 2] * r52[x - time + 1][y - time + 2][z + 2] * r83[xs + 1][ys + 2][z + 2] - r51[x - time + 3][y - time + 2][z + 2] * r52[x - time + 3][y - time + 2][z + 2] * r83[xs + 3][ys + 2][z + 2] + r52[x - time + 2][y - time + 1][z + 2] * r53[x - time + 2][y - time + 1][z + 2] * r83[xs + 2][ys + 1][z + 2] - r52[x - time + 2][y - time + 3][z + 2] * r53[x - time + 2][y - time + 3][z + 2] * r83[xs + 2][ys + 3][z + 2]); float r90 = 8.33333346e-3F * (-r50[x - time + 2][y - time + 2][z] * r83[xs + 2][ys + 2][z] + r50[x - time + 2][y - time + 2][z + 4] * r83[xs + 2][ys + 2][z + 4] - r51[x-time][y - time + 2][z + 2] * r52[x-time][y - time + 2][z + 2] * r83[xs][ys + 2][z + 2] + r51[x - time + 4][y - time + 2][z + 2] * r52[x - time + 4][y - time + 2][z + 2] * r83[xs + 4][ys + 2][z + 2] - r52[x - time + 2][y-time][z + 2] * r53[x - time + 2][y-time][z + 2] * r83[xs + 2][ys][z + 2] + r52[x - time + 2][y - time + 4][z + 2] * r53[x - time + 2][y - time + 4][z + 2] * r83[xs + 2][ys + 4][z + 2]); float r89 = 1.0 / (vp[x - time + 8][y - time + 8][z + 8] * vp[x - time + 8][y - time + 8][z + 8]); float r88 = 1.0 / (r89 * r92 + r93 * damp[x - time + 1][y - time + 1][z + 1]); float r87 = 8.33333346e-3F * (r50[x - time + 2][y - time + 2][z] * r82[xs + 2][ys + 2][z] - r50[x - time + 2][y - time + 2][z + 4] * r82[xs + 2][ys + 2][z + 4] + r51[x-time][y - time + 2][z + 2] * r52[x-time][y - time + 2][z + 2] * r82[xs][ys + 2][z + 2] - r51[x - time + 4][y - time + 2][z + 2] * r52[x - time + 4][y - time + 2][z + 2] * r82[xs + 4][ys + 2][z + 2] + r52[x - time + 2][y-time][z + 2] * r53[x - time + 2][y-time][z + 2] * r82[xs + 2][ys][z + 2] - r52[x - time + 2][y - time + 4][z + 2] * r53[x - time + 2][y - time + 4][z + 2] * r82[xs + 2][ys + 4][z + 2]) + 6.66666677e-2F * (-r50[x - time + 2][y - time + 2][z + 1] * r82[xs + 2][ys + 2][z + 1] + r50[x - time + 2][y - time + 2][z + 3] * r82[xs + 2][ys + 2][z + 3] - r51[x - time + 1][y - time + 2][z + 2] * r52[x - time + 1][y - time + 2][z + 2] * r82[xs + 1][ys + 2][z + 2] + r51[x - time + 3][y - time + 2][z + 2] * r52[x - time + 3][y - time + 2][z + 2] * r82[xs + 3][ys + 2][z + 2] - r52[x - time + 2][y - time + 1][z + 2] * r53[x - time + 2][y - time + 1][z + 2] * r82[xs + 2][ys + 1][z + 2] + r52[x - time + 2][y - time + 3][z + 2] * r53[x - time + 2][y - time + 3][z + 2] * r82[xs + 2][ys + 3][z + 2]) - 1.78571425e-5F * (u[t0][x - time + 4][y - time + 8][z + 8] + u[t0][x - time + 8][y - time + 4][z + 8] + u[t0][x - time + 8][y - time + 8][z + 4] + u[t0][x - time + 8][y - time + 8][z + 12] + u[t0][x - time + 8][y - time + 12][z + 8] + u[t0][x - time + 12][y - time + 8][z + 8]) + 2.53968248e-4F * (u[t0][x - time + 5][y - time + 8][z + 8] + u[t0][x - time + 8][y - time + 5][z + 8] + u[t0][x - time + 8][y - time + 8][z + 5] + u[t0][x - time + 8][y - time + 8][z + 11] + u[t0][x - time + 8][y - time + 11][z + 8] + u[t0][x - time + 11][y - time + 8][z + 8]) - 1.99999996e-3F * (u[t0][x - time + 6][y - time + 8][z + 8] + u[t0][x - time + 8][y - time + 6][z + 8] + u[t0][x - time + 8][y - time + 8][z + 6] + u[t0][x - time + 8][y - time + 8][z + 10] + u[t0][x - time + 8][y - time + 10][z + 8] + u[t0][x - time + 10][y - time + 8][z + 8]) + 1.59999996e-2F * (u[t0][x - time + 7][y - time + 8][z + 8] + u[t0][x - time + 8][y - time + 7][z + 8] + u[t0][x - time + 8][y - time + 8][z + 7] + u[t0][x - time + 8][y - time + 8][z + 9] + u[t0][x - time + 8][y - time + 9][z + 8] + u[t0][x - time + 9][y - time + 8][z + 8]) - 8.54166647e-2F * u[t0][x - time + 8][y - time + 8][z + 8]; float r80 = r92 * (-2.0F * u[t0][x - time + 8][y - time + 8][z + 8] + u[t1][x - time + 8][y - time + 8][z + 8]); float r81 = r92 * (-2.0F * v[t0][x - time + 8][y - time + 8][z + 8] + v[t1][x - time + 8][y - time + 8][z + 8]); u[t2][x - time + 8][y - time + 8][z + 8] = r88 * ((-r80) * r89 + r87 * (2 * epsilon[x - time + 8][y - time + 8][z + 8] + 1) + r93 * (damp[x - time + 1][y - time + 1][z + 1] * u[t0][x - time + 8][y - time + 8][z + 8]) + (r90 + r91) * r49[x - time + 2][y - time + 2][z + 2]); v[t2][x - time + 8][y - time + 8][z + 8] = r88 * ((-r81) * r89 + r87 * r49[x - time + 2][y - time + 2][z + 2] + r90 + r91 + r93 * (damp[x - time + 1][y - time + 1][z + 1] * v[t0][x - time + 8][y - time + 8][z + 8])); } int sp_zi_M = nnz_sp_source_mask[x - time][y - time] - 1; for (int sp_zi = sp_zi_m; sp_zi <= sp_zi_M; sp_zi += 1) { int zind = sp_source_mask[x - time][y - time][sp_zi]; float r22 = save_src_u[tw][source_id[x - time][y - time][zind]] * source_mask[x - time][y - time][zind]; u[t2][x - time + 8][y - time + 8][zind + 8] += r22; float r23 = save_src_v[tw][source_id[x - time][y - time][zind]] * source_mask[x - time][y - time][zind]; v[t2][x - time + 8][y - time + 8][zind + 8] += r23; //printf("Source injection at time %d , at : x: %d, y: %d, %d, %f, %f \n", tw, x - time + 4, y - time + 4, zind + 4, r22, r23); } } } } } } }
the_stack_data/70451009.c
#include<stdio.h> int remDigit(int y){ int m=0; while(y!=0){ int rem; rem=y%10; m=m*10+rem; y=y/10; } return m; } int cntDigit(int n){ int temp, x=0, y=0; temp=n; while(temp!=0){ x=x+temp%10; temp=temp/10; if(x!=temp%10){ y=y*10+x; } x=x-x; } return remDigit(y); } int main(){ int n, a[n]; printf("Enter the number of element in the stack : "); scanf("%d",&n); printf("Enter the elements : "); for(int i=0; i<n; i++){ scanf("%d",&a[i]); } for(int i=0; i<n; i++){ printf("The element after removing repeating digits is : %d",cntDigit(a[i])); printf("\n"); } return 0; }
the_stack_data/153097.c
const char* b = "hello";
the_stack_data/34513897.c
// // Created by forgot on 2019-08-04. // /*1071 小赌怡情 (15 point(s))*/ /*常言道“小赌怡情”。这是一个很简单的小游戏:首先由计算机给出第一个整数;然后玩家下注赌第二个整数将会比第一个数大还是小; * 玩家下注 t 个筹码后,计算机给出第二个数。若玩家猜对了,则系统奖励玩家 t 个筹码;否则扣除玩家 t 个筹码。 注意:玩家下注的筹码数不能超过自己帐户上拥有的筹码数。当玩家输光了全部筹码后,游戏就结束。 输入格式: 输入在第一行给出 2 个正整数 T 和 K(≤ 100),分别是系统在初始状态下赠送给玩家的筹码数、以及需要处理的游戏次数。随后 K 行,每行对应一次游戏,顺序给出 4 个数字: n1 b t n2 其中 n1 和 n2 是计算机先后给出的两个[0, 9]内的整数,保证两个数字不相等。b 为 0 表示玩家赌小,为 1 表示玩家赌大。t 表示玩家下注的筹码数,保证在整型范围内。 输出格式: 对每一次游戏,根据下列情况对应输出(其中 t 是玩家下注量,x 是玩家当前持有的筹码量): 玩家赢,输出 Win t! Total = x.; 玩家输,输出 Lose t. Total = x.; 玩家下注超过持有的筹码量,输出 Not enough tokens. Total = x.; 玩家输光后,输出 Game Over. 并结束程序。 输入样例 1: 100 4 8 0 100 2 3 1 50 1 5 1 200 6 7 0 200 8 输出样例 1: Win 100! Total = 200. Lose 50. Total = 150. Not enough tokens. Total = 150. Not enough tokens. Total = 150. 输入样例 2: 100 4 8 0 100 2 3 1 200 1 5 1 200 6 7 0 200 8 输出样例 2: Win 100! Total = 200. Lose 200. Total = 0. Game Over.*/ #include "stdio.h" //int main() { // int T, K; // scanf("%d %d", &T, &K); // for (int i = 0; i < K; ++i) { // int n1, b, t, n2; // scanf("%d %d %d %d", &n1, &b, &t, &n2); // // if (T < t) { // printf("Not enough tokens. Total = %d.", T); // if (i != K - 1) { // printf("\n"); // } // continue; // } // // if (b) { // if (n2 > n1) { // T = T + t; // printf("Win %d! Total = %d.", t, T); // } else { // T = T - t; // printf("Lose %d. Total = %d.", t, T); // } // } else { // if (n2 < n1) { // T = T + t; // printf("Win %d! Total = %d.", t, T); // } else { // T = T - t; // printf("Lose %d. Total = %d.", t, T); // } // } // if (i != K - 1) { // printf("\n"); // } // // if (T == 0) { // printf("Game Over."); // break; // } // } // return 0; //}
the_stack_data/3421.c
char osl_vers[] = "\nAMPL/OSL Version 19970501\n";
the_stack_data/860485.c
#include<stdio.h> int main (){ float num1,num2,resultado; char operador; printf("digite o numero : "); scanf("%f",&num1); printf("digite o numero : "); scanf("%f",&num2); printf("digite o operador;\n [+]soma\n [-]subtracao\n [*]multiplicacao\n [/]divisao\ndigite sua opcao : "); scanf(" %c",&operador); switch(operador){ case '+': resultado = num1 + num2; printf("soma %.2f",resultado); break; case '-': resultado = num1 - num2; printf("subtracao %.2f",resultado); break; case '*': resultado = num1 * num2; printf("multiplicacao %.2f",resultado); break; case '/': resultado = num1 / num2; printf("divisao %.2f",resultado); break; } return 0 ; }
the_stack_data/57950686.c
#include <string.h> extern void* malloc(size_t); void* calloc(size_t num, size_t size) { void* buf = malloc(num * size); memset(buf, 0, num * size); return buf; }
the_stack_data/14822.c
#include <math.h> #if 1 typedef struct { unsigned char rgbtRed; unsigned char rgbtGreen; unsigned char rgbtBlue; } __attribute__((__packed__)) RGBTRIPLE; #endif // Blur image void blur(int height, int width, RGBTRIPLE image[height][width], RGBTRIPLE imgout[height][width]) { int wid = width - 1; int hgt = height - 1; RGBTRIPLE *pixel; // For each row.. for (int ycur = 0; ycur <= hgt; ++ycur) { int ylo = (ycur == 0) ? 0 : -1; int yhi = (ycur == hgt) ? 0 : 1; // ..and then for each pixel in that row... for (int xcur = 0; xcur <= wid; ++xcur) { int xlo = (xcur == 0) ? 0 : -1; int xhi = (xcur == wid) ? 0 : 1; int avgRed = 0; int avgGreen = 0; int avgBlue = 0; for (int yoff = ylo; yoff <= yhi; ++yoff) { for (int xoff = xlo; xoff <= xhi; ++xoff) { pixel = &image[ycur + yoff][xcur + xoff]; avgRed += pixel->rgbtRed; avgGreen += pixel->rgbtGreen; avgBlue += pixel->rgbtBlue; } } int tot = ((yhi - ylo) + 1) * ((xhi - xlo) + 1); pixel = &imgout[ycur][xcur]; pixel->rgbtRed = roundf((float) avgRed / tot); pixel->rgbtGreen = roundf((float) avgGreen / tot); pixel->rgbtBlue = roundf((float) avgBlue / tot); } } }
the_stack_data/70450381.c
/*********************************************************** Copyright IBM Corporation 1987 All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of IBM not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ /* * ARGO Project, Computer Sciences Dept., University of Wisconsin - Madison */ /* $Header: clnp_arp.c,v 4.2 88/06/29 14:58:32 hagens Exp $ */ /* $Source: /usr/argo/sys/netiso/RCS/clnp_arp.c,v $ */ #ifndef lint static char *rcsid = "$Header: clnp_arp.c,v 4.2 88/06/29 14:58:32 hagens Exp $"; #endif lint #ifdef ISO #include "types.h" #include "param.h" #include "mbuf.h" #include "domain.h" #include "protosw.h" #include "socket.h" #include "socketvar.h" #include "errno.h" #include "ioctl.h" #include "../net/if.h" #include "../net/route.h" #include "iso.h" #include "iso_var.h" #include "iso_map.h" #include "iso_snpac.h" #include "clnp.h" #include "clnp_stat.h" #include "argo_debug.h" #define MAPTAB_BSIZ 20 /* bucket size */ #define MAPTAB_NB 13 /* number of buckets */ #define MAPTAB_SIZE (MAPTAB_BSIZ * MAPTAB_NB) struct maptab iso_maptab[MAPTAB_SIZE]; int iso_maptab_size = MAPTAB_SIZE; /* for isomap command */ #define MAPTAB_HASH(addr) \ (((u_long) iso_hashchar(addr, addr->isoa_len)) % MAPTAB_NB) #define MAPTAB_LOOK(at,addr) { \ register n; \ at = &iso_maptab[MAPTAB_HASH(addr) * MAPTAB_BSIZ]; \ for (n = 0 ; n < MAPTAB_BSIZ ; n++,at++) \ if ((at->map_valid) && (iso_addrmatch1(&at->map_isoa, addr))) \ break; \ if (n >= MAPTAB_BSIZ) \ at = 0; \ } /* * FUNCTION: clnp_arpresolve * * PURPOSE: Resolve a clnp address into hardware ethernet addr. * * RETURNS: 1 if addr is resolved * 0 if addr is unknown * * SIDE EFFECTS: * * NOTES: This is a hack. If the address is local, then * the packet is put on the loopback driver. Otherwise, * if a translation is found, that ethernet address is * returned. Otherwise, the packet is dropped. Thus, * each translation must be placed (by hand) in the * tables (see isomap(8)). * TODO: should this map stuff be a critical section? */ clnp_arpresolve(ifp, m, dst, edst) struct ifnet *ifp; /* outgoing interface */ struct mbuf *m; /* pkt */ struct sockaddr_iso *dst; /* destination */ char *edst; /* RESULT: ethernet address */ { extern struct ifnet loif; /* loopback interface */ struct maptab *at; /* ptr to map table entry */ struct iso_addr *destiso; /* destination iso addr */ destiso = &dst->siso_addr; if (destiso->isoa_genaddr[0] == AFI_SNA) { /* * This is a subnetwork address. Return it immediately */ int sna_len; IFDEBUG(D_ESISOUTPUT) printf("clnp_arpresolve: return SN address\n"); ENDDEBUG sna_len = destiso->isoa_len - 1; /* subtract size of AFI */ if (sna_len != 6) { IFDEBUG(D_ESISOUTPUT) printf("clnp_arpresolve: SN len is bad (%d)\n", sna_len); ENDDEBUG return(-1); } bcopy((caddr_t)&destiso->isoa_genaddr[1], (caddr_t)edst, sna_len); return (1); } IFDEBUG(D_ETHER) printf("clnp_arpresolve: resolving %s\n", clnp_iso_addrp(destiso)); ENDDEBUG /* if for us, use software loopback driver if up */ if (clnp_ours(destiso)) { IFDEBUG(D_ETHER) printf("clnp_arpresolve: local destination\n"); ENDDEBUG if (loif.if_flags & IFF_UP) { IFDEBUG(D_ETHER) printf("clnp_arpresolve: calling looutput\n"); ENDDEBUG (void) looutput(&loif, m, (struct sockaddr *)dst); /* * The packet has already been sent and freed. */ return (0); } } IFDEBUG(D_ETHER) printf("clnp_arpresolve: NON-local destination\n"); ENDDEBUG /* * packet is not for us, check static map table for an entry * This does not need to be a critical section because the * table is not dynamically updated, except by a call to * isomap(8) */ MAPTAB_LOOK(at, destiso); if (at == 0) { /* not found */ m_freem(m); return (-1); } else { bcopy((caddr_t)at->map_enaddr, (caddr_t)edst, sizeof(at->map_enaddr)); return (1); } } /* * FUNCTION: isomap_new * * PURPOSE: create a new entry in the iso address to ethernet * address table * * RETURNS: pointer to newest entry, or NULL if none can be found * * SIDE EFFECTS: * * NOTES: TODO: timeout old entries */ struct maptab * isomap_new(isoa) struct iso_addr *isoa; /* iso address to enter into table */ { register struct maptab *at; register int n; at = &iso_maptab[MAPTAB_HASH(isoa) * MAPTAB_BSIZ]; for (n = 0 ; n < MAPTAB_BSIZ ; n++,at++) { IFDEBUG (D_IOCTL) printf("isomap_new: at x%x ", at); if (at->map_valid) { int i; printf("(valid) %s ", clnp_iso_addrp(&at->map_isoa)); for (i=0; i<6; i++) printf("%x%c", at->map_enaddr[i], i < 5 ? ':' : '\n'); } else { printf("invalid\n"); } ENDDEBUG if (!at->map_valid) /* found unused slot */ return at; } return NULL; } /* * FUNCTION: isomap_free * * PURPOSE: free an entry in the iso address map table * * RETURNS: nothing * * SIDE EFFECTS: * * NOTES: */ isomap_free(at) register struct maptab *at; /* entry to free */ { at->map_valid = 0; } /* * FUNCTION: isomap_ioctl * * PURPOSE: handle ioctls to change the iso address map * * RETURNS: unix error code * * SIDE EFFECTS: changes the maptab table declared above. * * NOTES: */ isomap_ioctl(cmd, data) int cmd; /* ioctl to process */ caddr_t data; /* data for the cmd */ { register struct arpreq_iso *ar = (struct arpreq_iso *)data; register struct maptab *at; register struct sockaddr_iso *siso; register struct iso_addr *isoa; /* * only process commands for the ISO address family */ if (ar->arp_pa.siso_family != AF_ISO) return(EAFNOSUPPORT); /* look up this address in table */ siso = (struct sockaddr_iso *)&ar->arp_pa; isoa = &siso->siso_addr; IFDEBUG (D_IOCTL) int i; printf("isomap_ioctl: "); switch(cmd) { case SIOCSISOMAP: printf("set"); break; case SIOCDISOMAP: printf("delete"); break; case SIOCGISOMAP: printf("get"); break; } printf(" %s to ", clnp_iso_addrp(isoa)); for (i=0; i<6; i++) printf("%x%c", ar->arp_ha.sa_data[i], i < 5 ? ':' : '\n'); ENDDEBUG MAPTAB_LOOK(at, isoa); if (at == NULL) { /* not found */ if (cmd != SIOCSISOMAP) return(ENXIO); /* TODO: what if setting and net is not directly attached */ } switch(cmd) { case SIOCSISOMAP: /* set entry */ if (at == NULL) { at = isomap_new(isoa); if (at == NULL) return(ENOBUFS); } bcopy((caddr_t)isoa, (caddr_t)&at->map_isoa, sizeof (struct iso_addr)); bcopy((caddr_t)ar->arp_ha.sa_data, (caddr_t)at->map_enaddr, sizeof(at->map_enaddr)); at->map_valid++; break; case SIOCDISOMAP: /* delete entry */ isomap_free(at); break; case SIOCGISOMAP: /* get entry */ bcopy((caddr_t)at->map_enaddr, (caddr_t)ar->arp_ha.sa_data, sizeof(at->map_enaddr)); } return(0); } #endif ISO
the_stack_data/95451406.c
/* Test single-stepping system call instructions in sparc. Copyright 2014-2015 Free Software Foundation, Inc. This file is part of GDB. 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 <signal.h> int global; static void handler (int sig) { } int main () { signal (SIGALRM, handler); kill (getpid (), SIGALRM); return 0; /* sparc-sysstep.exp: last */ }
the_stack_data/1972.c
/* getopt_long and getopt_long_only entry points for GNU getopt. Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98 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. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "getopt.h" #if !defined __STDC__ || !__STDC__ /* This is a separate conditional since some stdc systems reject `defined (const)'. */ #ifndef const #define const #endif #endif #include <stdio.h> /* 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. */ #define GETOPT_INTERFACE_VERSION 2 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2 #include <gnu-versions.h> #if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION #define ELIDE_CODE #endif #endif #ifndef ELIDE_CODE /* This needs to come after some library #include to get __GNU_LIBRARY__ defined. */ #ifdef __GNU_LIBRARY__ #include <stdlib.h> #endif #ifndef NULL #define NULL 0 #endif int getopt_long (argc, argv, options, long_options, opt_index) int argc; char *const *argv; const char *options; const struct option *long_options; int *opt_index; { return _getopt_internal (argc, argv, options, long_options, opt_index, 0); } /* Like getopt_long, but '-' as well as '--' can indicate a long option. If an option that starts with '-' (not '--') doesn't match a long option, but does match a short option, it is parsed as a short option instead. */ int getopt_long_only (argc, argv, options, long_options, opt_index) int argc; char *const *argv; const char *options; const struct option *long_options; int *opt_index; { return _getopt_internal (argc, argv, options, long_options, opt_index, 1); } #endif /* Not ELIDE_CODE. */ #ifdef TEST #include <stdio.h> int main (argc, argv) int argc; char **argv; { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; int option_index = 0; static struct option long_options[] = { {"add", 1, 0, 0}, {"append", 0, 0, 0}, {"delete", 1, 0, 0}, {"verbose", 0, 0, 0}, {"create", 0, 0, 0}, {"file", 1, 0, 0}, {0, 0, 0, 0} }; c = getopt_long (argc, argv, "abc:d:0123456789", long_options, &option_index); if (c == -1) break; switch (c) { case 0: printf ("option %s", long_options[option_index].name); if (optarg) printf (" with arg %s", optarg); printf ("\n"); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value `%s'\n", optarg); break; case 'd': printf ("option d with value `%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */
the_stack_data/247019088.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_16__ TYPE_4__ ; typedef struct TYPE_15__ TYPE_3__ ; typedef struct TYPE_14__ TYPE_2__ ; typedef struct TYPE_13__ TYPE_1__ ; /* Type definitions */ struct TYPE_14__ {int k; struct slist* jt; struct slist* jf; } ; struct slist {struct slist* next; TYPE_2__ s; } ; struct TYPE_15__ {int k; } ; struct block {TYPE_3__ s; struct slist* stmts; } ; typedef int /*<<< orphan*/ s ; struct TYPE_13__ {int constant_part; scalar_t__ is_variable; } ; struct TYPE_16__ {int no_optimize; int off_nl; TYPE_1__ off_linkpl; } ; typedef TYPE_4__ compiler_state_t ; /* Variables and functions */ int BPF_ABS ; int BPF_ADD ; int BPF_ALU ; int BPF_B ; int BPF_IMM ; int BPF_IND ; int BPF_JA ; int BPF_JEQ ; int BPF_JMP ; int BPF_K ; int BPF_LD ; int BPF_LDX ; int BPF_MEM ; int BPF_MISC ; int BPF_MSH ; int BPF_MUL ; int BPF_ST ; int BPF_TAX ; int BPF_TXA ; int BPF_X ; int /*<<< orphan*/ ETHERTYPE_IP ; int /*<<< orphan*/ ETHERTYPE_IPV6 ; int IPPROTO_AH ; int IPPROTO_DSTOPTS ; int IPPROTO_FRAGMENT ; int IPPROTO_HOPOPTS ; int IPPROTO_NONE ; int IPPROTO_ROUTING ; int /*<<< orphan*/ JMP (int) ; #define Q_DEFAULT 130 #define Q_IP 129 #define Q_IPV6 128 int alloc_reg (TYPE_4__*) ; int /*<<< orphan*/ bpf_error (TYPE_4__*,char*) ; int /*<<< orphan*/ free_reg (TYPE_4__*,int) ; int /*<<< orphan*/ gen_and (struct block*,struct block*) ; struct block* gen_linktype (TYPE_4__*,int /*<<< orphan*/ ) ; int /*<<< orphan*/ gen_or (struct block*,struct block*) ; struct block* gen_proto (TYPE_4__*,int,int,int) ; int /*<<< orphan*/ memset (struct slist**,int /*<<< orphan*/ ,int) ; struct block* new_block (TYPE_4__*,int /*<<< orphan*/ ) ; struct slist* new_stmt (TYPE_4__*,int) ; __attribute__((used)) static struct block * gen_protochain(compiler_state_t *cstate, int v, int proto, int dir) { #ifdef NO_PROTOCHAIN return gen_proto(cstate, v, proto, dir); #else struct block *b0, *b; struct slist *s[100]; int fix2, fix3, fix4, fix5; int ahcheck, again, end; int i, max; int reg2 = alloc_reg(cstate); memset(s, 0, sizeof(s)); fix3 = fix4 = fix5 = 0; switch (proto) { case Q_IP: case Q_IPV6: break; case Q_DEFAULT: b0 = gen_protochain(cstate, v, Q_IP, dir); b = gen_protochain(cstate, v, Q_IPV6, dir); gen_or(b0, b); return b; default: bpf_error(cstate, "bad protocol applied for 'protochain'"); /*NOTREACHED*/ } /* * We don't handle variable-length prefixes before the link-layer * header, or variable-length link-layer headers, here yet. * We might want to add BPF instructions to do the protochain * work, to simplify that and, on platforms that have a BPF * interpreter with the new instructions, let the filtering * be done in the kernel. (We already require a modified BPF * engine to do the protochain stuff, to support backward * branches, and backward branch support is unlikely to appear * in kernel BPF engines.) */ if (cstate->off_linkpl.is_variable) bpf_error(cstate, "'protochain' not supported with variable length headers"); cstate->no_optimize = 1; /* this code is not compatible with optimizer yet */ /* * s[0] is a dummy entry to protect other BPF insn from damage * by s[fix] = foo with uninitialized variable "fix". It is somewhat * hard to find interdependency made by jump table fixup. */ i = 0; s[i] = new_stmt(cstate, 0); /*dummy*/ i++; switch (proto) { case Q_IP: b0 = gen_linktype(cstate, ETHERTYPE_IP); /* A = ip->ip_p */ s[i] = new_stmt(cstate, BPF_LD|BPF_ABS|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl + 9; i++; /* X = ip->ip_hl << 2 */ s[i] = new_stmt(cstate, BPF_LDX|BPF_MSH|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl; i++; break; case Q_IPV6: b0 = gen_linktype(cstate, ETHERTYPE_IPV6); /* A = ip6->ip_nxt */ s[i] = new_stmt(cstate, BPF_LD|BPF_ABS|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl + 6; i++; /* X = sizeof(struct ip6_hdr) */ s[i] = new_stmt(cstate, BPF_LDX|BPF_IMM); s[i]->s.k = 40; i++; break; default: bpf_error(cstate, "unsupported proto to gen_protochain"); /*NOTREACHED*/ } /* again: if (A == v) goto end; else fall through; */ again = i; s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.k = v; s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*update in next stmt*/ fix5 = i; i++; #ifndef IPPROTO_NONE #define IPPROTO_NONE 59 #endif /* if (A == IPPROTO_NONE) goto end */ s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*update in next stmt*/ s[i]->s.k = IPPROTO_NONE; s[fix5]->s.jf = s[i]; fix2 = i; i++; if (proto == Q_IPV6) { int v6start, v6end, v6advance, j; v6start = i; /* if (A == IPPROTO_HOPOPTS) goto v6advance */ s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*update in next stmt*/ s[i]->s.k = IPPROTO_HOPOPTS; s[fix2]->s.jf = s[i]; i++; /* if (A == IPPROTO_DSTOPTS) goto v6advance */ s[i - 1]->s.jf = s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*update in next stmt*/ s[i]->s.k = IPPROTO_DSTOPTS; i++; /* if (A == IPPROTO_ROUTING) goto v6advance */ s[i - 1]->s.jf = s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*update in next stmt*/ s[i]->s.k = IPPROTO_ROUTING; i++; /* if (A == IPPROTO_FRAGMENT) goto v6advance; else goto ahcheck; */ s[i - 1]->s.jf = s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*later*/ s[i]->s.k = IPPROTO_FRAGMENT; fix3 = i; v6end = i; i++; /* v6advance: */ v6advance = i; /* * in short, * A = P[X + packet head]; * X = X + (P[X + packet head + 1] + 1) * 8; */ /* A = P[X + packet head] */ s[i] = new_stmt(cstate, BPF_LD|BPF_IND|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl; i++; /* MEM[reg2] = A */ s[i] = new_stmt(cstate, BPF_ST); s[i]->s.k = reg2; i++; /* A = P[X + packet head + 1]; */ s[i] = new_stmt(cstate, BPF_LD|BPF_IND|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl + 1; i++; /* A += 1 */ s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_K); s[i]->s.k = 1; i++; /* A *= 8 */ s[i] = new_stmt(cstate, BPF_ALU|BPF_MUL|BPF_K); s[i]->s.k = 8; i++; /* A += X */ s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_X); s[i]->s.k = 0; i++; /* X = A; */ s[i] = new_stmt(cstate, BPF_MISC|BPF_TAX); i++; /* A = MEM[reg2] */ s[i] = new_stmt(cstate, BPF_LD|BPF_MEM); s[i]->s.k = reg2; i++; /* goto again; (must use BPF_JA for backward jump) */ s[i] = new_stmt(cstate, BPF_JMP|BPF_JA); s[i]->s.k = again - i - 1; s[i - 1]->s.jf = s[i]; i++; /* fixup */ for (j = v6start; j <= v6end; j++) s[j]->s.jt = s[v6advance]; } else { /* nop */ s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_K); s[i]->s.k = 0; s[fix2]->s.jf = s[i]; i++; } /* ahcheck: */ ahcheck = i; /* if (A == IPPROTO_AH) then fall through; else goto end; */ s[i] = new_stmt(cstate, BPF_JMP|BPF_JEQ|BPF_K); s[i]->s.jt = NULL; /*later*/ s[i]->s.jf = NULL; /*later*/ s[i]->s.k = IPPROTO_AH; if (fix3) s[fix3]->s.jf = s[ahcheck]; fix4 = i; i++; /* * in short, * A = P[X]; * X = X + (P[X + 1] + 2) * 4; */ /* A = X */ s[i - 1]->s.jt = s[i] = new_stmt(cstate, BPF_MISC|BPF_TXA); i++; /* A = P[X + packet head]; */ s[i] = new_stmt(cstate, BPF_LD|BPF_IND|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl; i++; /* MEM[reg2] = A */ s[i] = new_stmt(cstate, BPF_ST); s[i]->s.k = reg2; i++; /* A = X */ s[i - 1]->s.jt = s[i] = new_stmt(cstate, BPF_MISC|BPF_TXA); i++; /* A += 1 */ s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_K); s[i]->s.k = 1; i++; /* X = A */ s[i] = new_stmt(cstate, BPF_MISC|BPF_TAX); i++; /* A = P[X + packet head] */ s[i] = new_stmt(cstate, BPF_LD|BPF_IND|BPF_B); s[i]->s.k = cstate->off_linkpl.constant_part + cstate->off_nl; i++; /* A += 2 */ s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_K); s[i]->s.k = 2; i++; /* A *= 4 */ s[i] = new_stmt(cstate, BPF_ALU|BPF_MUL|BPF_K); s[i]->s.k = 4; i++; /* X = A; */ s[i] = new_stmt(cstate, BPF_MISC|BPF_TAX); i++; /* A = MEM[reg2] */ s[i] = new_stmt(cstate, BPF_LD|BPF_MEM); s[i]->s.k = reg2; i++; /* goto again; (must use BPF_JA for backward jump) */ s[i] = new_stmt(cstate, BPF_JMP|BPF_JA); s[i]->s.k = again - i - 1; i++; /* end: nop */ end = i; s[i] = new_stmt(cstate, BPF_ALU|BPF_ADD|BPF_K); s[i]->s.k = 0; s[fix2]->s.jt = s[end]; s[fix4]->s.jf = s[end]; s[fix5]->s.jt = s[end]; i++; /* * make slist chain */ max = i; for (i = 0; i < max - 1; i++) s[i]->next = s[i + 1]; s[max - 1]->next = NULL; /* * emit final check */ b = new_block(cstate, JMP(BPF_JEQ)); b->stmts = s[1]; /*remember, s[0] is dummy*/ b->s.k = v; free_reg(cstate, reg2); gen_and(b0, b); return b; #endif }
the_stack_data/59875.c
extern void abort (void); typedef long fract32; int main () { fract32 t; t = __builtin_bfin_add_fr1x32 (0x40003000, 0x50002000); if (t != 0x7fffffff) abort (); return 0; }
the_stack_data/247018300.c
// // Created by Rahul on 6/21/2019. // int strlen(char s[]) { int i; i=0; while(s[i]!='\0') ++i; return i; }
the_stack_data/139786.c
#include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <stdlib.h> #include <sys/wait.h> #include <stdbool.h> #define DATA_START 11 struct Op{ int type; long long int value; }; int getLength(long long int number) { if(number==0) { return 1; } int count = (number < 0); while(number!=0) { count++; number/=10; } return count; } int main() { pid_t pid; int fd1[2]; int fd2[2]; struct Op opOut[100]; struct Op opStack[100]; long long int opValueStack[100]; pipe(fd1); pipe(fd2); pid = fork(); if(pid==0) { close(fd1[1]); close(fd2[0]); dup2(fd1[0], STDIN_FILENO); dup2(fd2[1], STDOUT_FILENO); execv("./times-up-again",(char *[]){ "./times-up-again",NULL }); } else { close(fd1[0]); close(fd2[1]); int status; char buf1[1000]; int rv1 = read(fd2[0],buf1,(size_t)1000); buf1[rv1]=0; int outId = -1; int stackId = -1; for(int i=DATA_START;i<rv1;++i) { if(buf1[i]=='\n'){ break; } switch(buf1[i]) { case ' ': { break; } case '+': case '-': case '*': case '/': { opStack[++stackId] = (struct Op){.type=1,.value=buf1[i]}; break; } case '(': { if( (buf1[i+1]>='0' && buf1[i+1]<='9') || buf1[i+1] == '-') { long long int val; sscanf((char*)(buf1+i+1),"%lld",&val); i+=getLength(val); i++; opOut[++outId] = (struct Op){.type=0,.value=val}; } else { opStack[++stackId] = (struct Op){.type=1,.value=buf1[i]}; } break; } case ')': { while(stackId>=0) { if(opStack[stackId].value != '(') { opOut[++outId] = opStack[stackId--]; } else { stackId--; break; } } break; } default: { printf("[ERROR] Unexpected character %d\n",buf1[i]); exit(1); } } } while(stackId>=0) { opOut[++outId] = opStack[stackId--]; } int valStackId = -1; for(int i=0;i<=outId;++i) { if(opOut[i].type==0) { opValueStack[++valStackId] = opOut[i].value; } else { long long int a = opValueStack[valStackId--]; long long int b = opValueStack[valStackId--]; long long int result = 0; switch(opOut[i].value) { case '+': { result = b+a; break; } case '-': { result = b-a; break; } case '*': { result = b*a; break; } case '/': { result = b/a; break; } default: { printf("[ERROR] Undefined operation\n"); exit(1); } } opValueStack[++valStackId] = result; } } if(valStackId==0) { char response[25]; int count = sprintf(response,"%lld",opValueStack[0]); write(fd1[1],response,count+1); } else { printf("[ERROR] Something went wrong\n"); exit(1); } char buf2[1000]; int rv2 = read(fd2[0],buf2,(size_t)1000); buf2[rv2] = 0; printf("%s",buf2); close(fd1[1]); close(fd2[0]); waitpid(pid, &status, 0); } return 0; }
the_stack_data/16571.c
#include<stdio.h> #define INFINITY 9999 #define MAX 10 void dijkstra(int G[MAX][MAX],int n,int startnode); int main() { int G[MAX][MAX],i,j,n,u; printf("Enter no. of vertices:"); scanf("%d",&n); printf("\nEnter the adjacency matrix:\n"); for(i=0;i<n;i++) for(j=0;j<n;j++) scanf("%d",&G[i][j]); printf("\nEnter the starting node:"); scanf("%d",&u); dijkstra(G,n,u); return 0; } void dijkstra(int G[MAX][MAX],int n,int startnode) { int cost[MAX][MAX],distance[MAX],pred[MAX]; int visited[MAX],count,mindistance,nextnode,i,j; for(i=0;i<n;i++) for(j=0;j<n;j++) if(G[i][j]==0) cost[i][j]=INFINITY; else cost[i][j]=G[i][j]; for(i=0;i<n;i++) { distance[i]=cost[startnode][i]; pred[i]=startnode; visited[i]=0; } distance[startnode]=0; visited[startnode]=1; count=1; while(count<n-1) { mindistance=INFINITY; for(i=0;i<n;i++) if(distance[i]<mindistance&&!visited[i]) { mindistance=distance[i]; nextnode=i; } visited[nextnode]=1; for(i=0;i<n;i++) if(!visited[i]) if(mindistance+cost[nextnode][i]<distance[i]) { distance[i]=mindistance+cost[nextnode][i]; pred[i]=nextnode; } count++; } for(i=0;i<n;i++) if(i!=startnode) { printf("\nDistance of node%d=%d",i,distance[i]); printf("\nPath=%d",i); j=i; do { j=pred[j]; printf("<-%d",j); }while(j!=startnode); } }
the_stack_data/31237.c
// //逆向显示非负整数 // // #include <stdio.h> int scan_unit(void){ int tmp; do { printf("input a number: "); scanf("%d", &tmp); if(tmp<0){ puts("pls not input a - number."); } }while(tmp<0); return tmp; } int rev_int(int num){ int tmp = 0; if (num > 0){ do { tmp = tmp*10 + num%10; num /= 10; }while (num > 0); } return tmp; } int main(void){ int nx = scan_unit(); printf("该整数倒转后是%d\n", rev_int(nx)); return 0 ; }
the_stack_data/82949549.c
#if HAVE_STDLIB_H #include <stdlib.h> #endif #if defined(_MSC_VER) || defined(__BORLANDC__) /* Just because of versions of these compilers might not have long long, but they */ /* always had __int64. Note that on Windows short is always 2, int is always 4, */ /* long is always 4, __int64 is always 8 */ # define ULONG_LONG __uint64 #else # define ULONG_LONG unsigned long long #endif int main() { char *p = "123"; char *endptrp; ULONG_LONG ull; ull = C_STRTOULL(p, &endptrp, 10); return 0; }
the_stack_data/32950275.c
/* Copyright (C) 1994, Digital Equipment Corporation. */ /* All rights reserved. */ /* See the file COPYRIGHT for a full description. */ long m3_test_var;
the_stack_data/100204.c
/* #include "max31855.h" */ /* int max31855_init(int sclk, int cs, int miso) { pinModeOut(cs); pinModeOut(sclk); pinModeIn(miso); pinPUD(miso, PUD_DOWN); pinPUD(sclk, PUD_OFF); pinPUD(cs, PUD_OFF); pinHigh(cs); pinLow(sclk); return 1; } static void printInt32(uint32_t d) { int i; for (i = 31; i >= 0; i--) { int v = (d >> i) & 1; printf("%d", v); } puts(""); } #define DELAY 1000 int max31855_read(float *result, int sclk, int cs, int miso) { uint32_t v=0; pinLow(cs); delayUsBusy(DELAY); { int i; for (i = 31; i >= 0; i--) { pinHigh(sclk); delayUsBusy(DELAY); if (pinRead(miso)) { v |= (1 << i); } pinLow(sclk); delayUsBusy(DELAY); } } pinHigh(cs); #ifdef MODE_DEBUG printInt32(v); #endif int error = 0; if (v & 0x20000) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: warning: bit 18 should be 0 where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif } if (v & 0x8) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: warning: bit 4 should be 0 where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif } if (v & 0x4) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: thermocouple is short-circuited to VCC where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif error = 1; } if (v & 0x2) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: thermocouple is short-circuited to GND where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif error = 1; } if (v & 0x1) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: thermocouple input is open where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif error = 1; } if (v & 0x8000) { #ifdef MODE_DEBUG fprintf(stderr, "max31855_read: fault has been found where sclk=%d and cs=%d and miso=%d\n", sclk, cs, miso); #endif error = 1; } if (error) { return 0; } if (v & 0x80000000) { v = 0xFFFFC000 | ((v >> 18) & 0x00003FFFF); } else { v >>= 18; } *result = v * 0.25; return 1; } */
the_stack_data/148579195.c
/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto ([email protected]) * * For the licensing terms see the file COPYING * ************************************************************************/ main() { int i; double d[5]; printf("\nDon't mind about error messages above. This is very slow, be patient.\n"); printf("Compiled cint interpretes cint itself and the interpreted cint interpretes\n"); printf("this simple source code 'simple.c'.\n\n"); for(i=0;i<5;i++) { d[i] = exp(i); printf("test OK d[%d]=%g\n",i,d[i]); } printf("See! Cint interpreted by cimpiled cint can interpret a simple C program.\n"); }
the_stack_data/127542.c
#include <stdio.h> #include <stdlib.h> void swap(int *a, int *b){ int aux; aux = *a; *a = *b; *b = aux; return; } int *heapify(int *arr, int n, int i){ int largest = i; int l = 2*i + 1; int r = 2*i + 2; if (l < n && arr[l] > arr[largest]) largest = 1; if (r < n && arr[r] > arr[largest]) largest = r; if (largest != i){ swap(&arr[i], &arr[largest]); arr = heapify(arr, n, largest); } return arr; } int * heapsort(int size, int *array){ int i, j; for ( i = size / 2 - 1; i >= 0; i--){ array = heapify(array, size, i); } for(i = size-1; i>=0; i--){ swap(&array[0], &array[i]); array = heapify(array, i, 0); } return array; } void printArray(int size, int *array){ int i; if(size == 0){ printf("Your array has no elements :(\n"); return; } printf("Ordered array: |"); for(i=0;i<size;i++){ printf(" %d |", array[i]); } printf("\n"); return; } int main(){ int *array; int size; int i; printf("Enter the size of the array: "); scanf("%d", &size); array = (int *) malloc(size * sizeof(int)); for(i=0;i<size;i++){ printf("Enter the element %d of the array: ", i); scanf("%d", &array[i]); } array = heapsort(size, array); printArray(size, array); return 0; }
the_stack_data/190769296.c
/* This program allows a user to input 3 Farenheit temperature readings and then displays the temperatures alongside their value in temperature Celcius. Author: Robert Eviston Date: 4th November 2013 */ #include <stdio.h> #define ARRAY 3 main () { float temps[ARRAY]; float celcius[ARRAY]; int i; printf("Please enter 3 Farenheit values\n"); for (i=0; i<3;i++) // Loops until i = 3 { scanf("%f", &temps[i]); // Reads in 3 temperatures celcius[i] = (temps[i] - 32.0) * (5.0/9.0); } // End 1st for ( ) flushall(); printf("The two versions of your temperature readings are\n"); printf("On the left are the Farenheit readings and on the right are the Celcius readings\n"); for (i=0; i<3;i++) // Loops until i = 3 { printf("%.2f = %.2f\n", temps[i], celcius[i]); } // End 2nd for ( ) getchar(); } // End main
the_stack_data/367710.c
#include <pthread.h> #include <semaphore.h> #include <stdio.h> #include <stdlib.h> #define N 20 sem_t buffer_mutex; char buffer[N+1]; sem_t empty; sem_t full; void *producer(void * th) { for (int i = 0; i < 5*N; i++) { sem_wait(&empty); sem_wait(&buffer_mutex); buffer[(i) % N] = 'a'; printf("\n %s \n",buffer); sem_post(&buffer_mutex); sem_post(&full); } } void *consumer(void * th){ for (int i = 0; i < 5*N; i++) { sem_wait(&full); sem_wait(&buffer_mutex); printf("%c ",buffer[(i) % N] ); buffer[(i) % N] = '-'; sem_post(&buffer_mutex); sem_post(&empty); } } int main(){ pthread_t tp, tc; buffer[N] = '\0'; sem_init(&buffer_mutex, 0, 1); sem_init(&empty, 0, N); sem_init(&full, 0, 0); pthread_create(&tp, NULL, producer,NULL); pthread_create(&tc, NULL, consumer,NULL); pthread_exit(NULL); }
the_stack_data/46939.c
#include <stdio.h> #include <string.h> #define MAX 101 void BubbleSort(int n, int niz[]) { int temp; for(int i = 0; i < n-1; ++i) { for(int j = 0; j < n-i-1; ++j) { if(niz[j] < niz[j+1]) { temp = niz[j]; niz[j] = niz[j+1]; niz[j+1] = temp; } } } } int FindMax(int n, int niz[], int* m){ int curr_index = 0, max_index = 0; int curr_max = 1, max = 1; for(int i = 0; i < n-1; i++) { if(niz[curr_index] == niz[i+1]) { curr_max++; } else { if(curr_max > max) { max = curr_max; curr_max = 1; max_index = curr_index; } curr_index = i+1; } } *m = max; return max_index; } int main() { int n; int A[MAX]; printf("Unesite broj elemenata niza: "); scanf("%d", &n); for(int i = 0; i < n; ++i) { printf("A[%d] = ", i); scanf("%d", &A[i]); } BubbleSort(n, A); printf("\nSortirani niz:\n"); for(int i = 0; i < n; ++i) { printf("%d ", A[i]); } printf("\n"); int max; int index = FindMax(n, A, &max); printf("Element sa najviše ponavljanja: %d\n", A[index]); printf("Pojavluje se %d puta\n", max); return 0; }
the_stack_data/73576462.c
// // #include <stdio.h> #include <math.h> int main() { int n, temp, digit; double i; printf("\nEnter an integer > "); scanf("%d", &n); printf("\n"); temp = abs(n); i = log10(temp); i = ceil(i); while(n != 0) { digit = n % 10; n = n / 10; if(i != 1) printf("%d\n", abs(digit)); if(i == 1) printf("%d\n", digit); i -= 1.00; } printf("That's all, have a nice day!\n"); return 0; }
the_stack_data/234517695.c
#include <stdio.h> #include <stdlib.h> int insertion_sort(int *flag); int selection_sort(int *flag); int bubble_sort(int *flag); //Used a flag here in-order to avoid duplicate codes (otherwise will have to have seperate code sets for each ascending and descending) int n; //number of inputs (number of elements in the set of numbers) int num[100]; //the set of numbers (Array) int main() { int opt1, opt2,i; printf("\t\t\t\tSorterPlus\n\n"); do { //Menu to select the sorting method and the sorting order printf("\n***Please select the sorting method***\n"); printf("1. Insertion Sort\n"); printf("2. Selection Sort\n"); printf("3. Bubble Sort\n"); printf("4. Exit\n"); printf("\n***Plese select the sorting order***\n"); printf("1. Ascending\n"); printf("2. Descending\n"); printf("3. Exit\n"); printf("\nPlease enter the sorting method and order seperated by a space:"); scanf("%d %d",&opt1,&opt2); switch(opt1) //switch to perform the actions according to the user's selected option(opt1) { case 1: insertion_sort(&opt2); break; case 2: selection_sort(&opt2); break; case 3: bubble_sort(&opt2); break; case 4: printf("\nThank you for using SorterPlus! Have a nice day!\n"); break; default: printf("\nInvalid option!!!\n"); } } while(opt1!=4 && opt2!=3); return 0; } /*Algorithm for insertion sort step 1 - Set the marker for the unsorted elements (Initially to the index 1 (not 0) as because array with only 1 element is already sorted step 2 - Select the first unsorted number step 3 - Swap that unsorted number with the left side until that number is in its proper place (in the sorted array) step 4 - Repeat step 2 & step 3 until there are no any unsorted elements*/ int insertion_sort(int *flag) { //int *flag=&opt2 int i,j,k; int temp; printf("\nPlease enter number of inputs you wish to add:"); scanf("%d",&n); printf("Please enter %d numbers:\n",n); for(i=0;i<n;i++) { scanf("%d",&num[i]); } printf("\nThe inserted set of numbers are:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n\nThe step by step visualization:\n"); for(i=1;i<n;i++) { temp=num[i]; if(*flag==1) //*flag=opt2=1 -> Ascending order { for(j=i;j>0 && temp<num[j-1];j--) { num[j]=num[j-1]; } } else if(*flag==2) //*flag=opt2=2 -> Descending order { for(j=i;j>0 && temp>num[j-1];j--) { num[j]=num[j-1]; } } else printf("\nInvalid option!!!"); num[j]=temp; //visualization of the sorting printf("\n\n"); printf("\tStep %d:\n\t",i); for(k=0;k<n;k++) printf("%d\t",num[k]); printf("\n"); } printf("\n\nThe sorted set of numbers:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n"); return 0; } /*Algorithm for selection sort (considering ascending order) step 1 - Set the marker MIN for the first element of the array(initially index 0) step 2 - Set the marker for the rest of the array starting at index MIN+1 step 3 - Find the minimum value of the array and swap it with the value at the marker MIN step 4 - Increment the MIN marker to the next element step 5 - Repeat step 2, step 3 & step 4 until the end of the array is reached*/ int selection_sort(int *flag) { //int *flag=&opt2 int i,j,k,minmax,temp; printf("\nPlease enter number of inputs you wish to add:"); scanf("%d",&n); printf("Please enter %d numbers:\n",n); for(i=0;i<n;i++) { scanf("%d",&num[i]); } printf("\nThe inserted set of numbers are:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n\nThe step by step visualization:\n"); for(i=0;i<n;i++) { for(j=i+1,minmax=i;j<n;j++) { if(*flag==1) //*flag=opt2=1 -> Ascending order { if(num[j]<num[minmax]) { minmax=j; } } else if(*flag==2) //*flag=opt2=2 -> Descending order { if(num[j]>num[minmax]) { minmax=j; } } else printf("\nInvalid option!!!"); } temp=num[minmax]; num[minmax]=num[i]; num[i]=temp; //visualization of the sorting printf("\n\n"); printf("\tStep %d:\n\t",i+1); for(k=0;k<n;k++) printf("%d\t",num[k]); printf("\n"); } printf("\n\nThe sorted set of numbers:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n"); return 0; } /*Algorithm for bubble sort (considering ascending order) step 1 - Set the marker to the last element of the unsorted array step 2 - Swap with the previous adjacent element if they are unsorted(not in the required order) step 3 - Decrease the marker by one index step 4 - Repeat step 2 & step 3 until the marker reached the first element of the unsorted array (now the first index of the array is sorted and the rest of the array is unsorted) step 5 - Repeat step 1, step 2, step 3 & step 4 until the array is sorted */ int bubble_sort(int *flag) { //int *flag=&opt2 int i,j,k,temp; printf("\nPlease enter number of inputs you wish to add:"); scanf("%d",&n); printf("Please enter %d numbers:\n",n); for(i=0;i<n;i++) { scanf("%d",&num[i]); } printf("\nThe inserted set of numbers are:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n\nThe step by step visualization:\n"); for(i=0;i<n;i++) { for(j=n-1;j>i;--j) { if(*flag==1) //*flag=opt2=1 -> Ascending order { if(num[j]<num[j-1]) { temp=num[j-1]; num[j-1]=num[j]; num[j]=temp; } } else if(*flag==2) //*flag=opt2=2 -> Descending order { if(num[j]>num[j-1]) { temp=num[j-1]; num[j-1]=num[j]; num[j]=temp; } } else printf("\nInvalid option!!!"); } //visualization of the sorting printf("\n\n"); printf("\tStep %d:\n\t",i+1); for(k=0;k<n;k++) printf("%d\t",num[k]); printf("\n"); } printf("\n\nThe sorted set of numbers:\n"); for(i=0;i<n;i++) { printf("%d\t",num[i]); } printf("\n\n"); return 0; }
the_stack_data/100141542.c
#include <stdio.h> int main(void) { int employee_number, worked_hours; float amount, salary; scanf("%i", &employee_number); scanf("%i", &worked_hours); scanf("%f", &amount); salary = amount * worked_hours; printf("NUMBER = %d\nSALARY = U$ %.2f\n", employee_number, salary); return 0; }
the_stack_data/366498.c
/** * Slide operator * ============== * * Smoothest C coding ever. */ #include <stdio.h> int main() { int i = 10; while (i -- \ \ \ \ \ \ \ \ \ > 0) { printf("%d ", i); } return 0; }
the_stack_data/92325520.c
const unsigned char Pods_WFEventHubClientVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Pods_WFEventHubClient PROJECT:Pods-1" "\n"; const double Pods_WFEventHubClientVersionNumber __attribute__ ((used)) = (double)1.;
the_stack_data/232956124.c
// C program to Rotate a number by a specific bits #include <stdio.h> // Left Rotate 'cnt' number of bits of the given number 'n' int left_rotate_bits(int n, int cnt) { int msb; // 32 is the total number of bits used to store an INT variable in C++ for (cnt = cnt % 31; cnt > 0; cnt--) { //Store the current MSB in a temporary variable msb = (n >> 31) & 1; //Left rotate the given number by one bit n = (n << 1); //Set the dropped MSB as the new LSB n = n | msb; } return n; } // Right Rotate 'cnt' number of bits of the given number 'n' int right_rotate_bits(int n, int cnt) { int lsb; // 32 is the total number of bits used to store an INT variable in C++ for (cnt = cnt % 31; cnt > 0; cnt--) { //Store the current LSB in a temporary variable lsb = n & 1; //Right rotate the given number by one bit and drop its LSB n = (n >> 1) & (~(1 << 31)); //Set the dropped LSB as the new MSB n = n | (lsb << 31); } return n; } int main() { int n, cnt, left, right; printf("\nEnter the number? "); scanf("%d", &n); printf("How many bits do you want to rotate? "); scanf("%d", &cnt); //Call the sort function left = left_rotate_bits(n, cnt); right = right_rotate_bits(n, cnt); printf("The Left-rotated number is: %d\n", left); printf("The Right-rotated number is: %d\n", right); return 0; } /* Time Complexity: O(n) Space Complexity: O(1) SAMPLE INPUT AND OUTPUT Enter the number? 39 How many bits do you want to rotate? 17 The Left-rotated number is: 5111808 The Right-rotated number is: 1277952 */
the_stack_data/814150.c
#include <stdio.h> int main() { int tc; scanf("%d", &tc); while( tc-- ) { int N; scanf("%d", &N); int i; int marks[1000], sum = 0; for(i=0 ; i<N ; i++) { scanf("%d", &marks[i]); sum += marks[i]; } float average = sum/(float) N; int counter = 0; for(i=0 ; i<N ; i++) { if( marks[i]>average ) counter++; } float result = (100.0*(float) counter)/(float) N; printf("%.03f%%\n", result); } return 0; }
the_stack_data/83721.c
#include <string.h> /* The strncat() function shall append not more than n bytes (a null byte and bytes that follow it are not appended) from the array pointed to by s to the end of the string pointed to by d. The initial byte of s overwrites the null byte at the end of d. A terminating null byte is always appended to the result. If copying takes place between objects that overlap, the behavior is undefined. The strncat() function shall return d; no return value shall be reserved to indicate an error. */ // default is to optimize for size #if !defined(LIBC_STRNCAT_OPTIMIZE_SIZE) && !defined(LIBC_STRNCAT_OPTIMIZE_SPEED) #define LIBC_STRNCAT_OPTIMIZE_SIZE #elif defined(LIBC_STRNCAT_OPTIMIZE_SIZE) && defined(LIBC_STRNCAT_OPTIMIZE_SPEED) #error "Only one of LIBC_STRNCAT_OPTIMIZE_SIZE or LIBC_STRNCAT_OPTIMIZE_SPEED can be defined!" #endif #if defined(LIBC_STRNCAT_OPTIMIZE_SIZE) // trivial implementation from musl // processing byte at a time char *strncat(char *restrict d, const char *restrict s, size_t n) { char *a = d; while (*d) ++d; while (n && *s) n--, *d++ = *s++; *d = 0; return a; } #elif defined(LIBC_STRNCAT_OPTIMIZE_SPEED) // speed optimized implementation #if !defined(LIBC_STRLEN_OPTIMIZE_SPEED) || !defined(LIBC_STRNCPY_OPTIMIZE_SPEED) #error "If LIBC_STRNCAT_OPTIMIZE_SPEED is defined symbols LIBC_STRLEN_OPTIMIZE_SPEED and LIBC_STRNCPY_OPTIMIZE_SPEED must also be defined!" #endif char *strncat(char *restrict d, const char *restrict s, size_t n) { char *a = d; d += strlen(d); strncpy(d, s, n); return a; } #endif // defined(LIBC_STRNCAT_OPTIMIZE_SIZE)
the_stack_data/92327938.c
// CPSC/ECE 3220 summer 2018 resource allocation code // // compile with "gcc -Wall resource.c -pthread" // run with "./a.out" or "valgrind --tool=helgrind ./a.out" // Programmer(s): Patrick Woodrum, Ben VonKeller // // In the design of this program, I/we have followed the five steps // listed in section 5.5.1 of the textbook. // // The structure of the program is consistent with the best practices // listed in section 5.5.2 of the textbook. // - Accesses to resource state variables and synchronization variables // are only made in the shared object methods, and not in the code // that uses resource objects. Although the program is written in C, // the object-oriented interface is: // * Constructor method is resource_init(). // * Destructor method is resource_reclaim(). // * Public methods are resource_allocate(), resource_release(), // and resource_print(). // - A lock is used to synchronize all accesses to the state variables, // and a condition variable is used to cause threads to wait on // resource availability. // - The lock is acquired at the beginning of methods and released // before returns. // - The lock is held whenever a condition variable operation (wait or // signal) is called. // - The wait operation on a condition variable is done inside a loop. // - sleep() is not used in the object methods for synchronization. #include <pthread.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> #define THREADS 20 #define RESOURCES 4 // --------------------- // -- resource object -- // --------------------- typedef struct resource_type_tag{ // state variables int type; // field to distinguish resource type int total_count; // total number of resources of this type int available_count; // number of currently available resources char *status; // pointer to status vector on heap; encoding: // 0 = available, 1 = in use char *owner; // pointer to owner vector on heap; encoding: // 0 to 127 are valid owner ids, // -1 is invalid owner id int signature; // signature for run-time type checking; put // after a vector to catch some overflows // synchronization variables pthread_mutex_t Mlock; //locking variable pthread_cond_t conditionVar; //condition variable // methods other than init (constructor) and reclaim (destructor) int (*allocate)( struct resource_type_tag *self, int tid ); void (*release)( struct resource_type_tag *self, int tid, int rid ); void (*print)( struct resource_type_tag *self ); } resource_t; // helper functions int resource_check( resource_t *r ){ // does not need locking operations since this is a helper function and // is called by the public methods and the destructor if( r->signature == 0x1E5041CE ) return 0; else return 1; } void resource_error( int code ){ // does not need locking operations since this is a helper function and // is called by the constructor, the public methods, and the destructor switch( code ){ case 0: printf( "**** malloc error for resource object\n" ); break; case 1: printf( "**** malloc error for status vector\n" ); break; case 2: printf( "**** malloc error for owner vector\n" ); break; case 3: printf( "**** could not initialize lock for resource\n" ); break; case 4: printf( "**** could not initialize condition for resource\n" ); break; case 5: printf( "**** reclaim argument is not a valid resource\n" ); break; case 6: printf( "**** print argument is not a valid resource\n" ); break; case 7: printf( "**** allocate signature check failed\n" ); break; case 8: printf( "**** search for resource failed\n" ); break; case 9: printf( "**** release signature check failed\n" ); break; case 10: printf( "**** release rid bounds check failed\n" ); break; case 11: printf( "**** release ownership check failed\n" ); break; default: printf( "**** unknown error code\n" ); } exit( 0 ); } // constructor // prototypes for forward referencing of public methods int resource_allocate( struct resource_type_tag *, int ); void resource_release( struct resource_type_tag *, int, int ); void resource_print( struct resource_type_tag * ); resource_t * resource_init( int type, int total ){ resource_t *r; int i, rc; // does not need locking operations since the lock is created // in this function r = malloc( sizeof( resource_t ) ); // obtain memory for struct if( r == NULL ) resource_error( 0 ); r->type = type; // set data fields r->total_count = total; r->available_count = total; r->status = malloc( total + 1 ); // obtain memory for vector if( r->status == NULL ) // extra entry allows resource_error( 1 ); // faster searching for( i = 0; i <= total; i++ ) // 0 = available, 1 = in use r->status[i] = 0; r->owner = malloc( total ); // obtain memory for vector if( r->owner == NULL ) resource_error( 2 ); for( i = 0; i < total; i++ ) // -1 = invalid owner id r->owner[i] = -1; r->signature = 0x1E5041CE; // call to pthread_mutex_init() with rc as return code // if( rc != 0 ) resource_error( 3 ); rc = pthread_mutex_init( &r->Mlock, NULL ); if( rc != 0 ) { resource_error(3); } // call to pthread_cond_init() with rc as return code // if( rc != 0 ) resource_error( 4 ); rc = pthread_cond_init( &r->conditionVar, NULL ); if( rc != 0 ){ resource_error(4); } r->print = &resource_print; // set method pointers r->allocate = &resource_allocate; r->release = &resource_release; return r; } // destructor void resource_reclaim( resource_t *r ){ // does not need locking operations since the lock is destroyed // in this function if( resource_check( r ) ) resource_error( 5 ); // call to pthread_cond_destroy() pthread_cond_destroy( &r->conditionVar ); // call to pthread_mutex_destroy() pthread_mutex_destroy( &r->Mlock ); free( r->owner ); free( r->status ); free( r ); } // public methods // need to add synchronization operations as appropriate int resource_allocate( struct resource_type_tag *self, int tid ){ pthread_mutex_lock( &self->Mlock ); // sync lock int rid; if( resource_check( self ) ) // signature check resource_error( 7 ); // assertion before allocating: self->available_count != 0 while(self -> available_count == 0) { //wait until assertion is made pthread_cond_wait( &self->conditionVar, &self->Mlock ); } rid = 0; // initialize search index self->status[self->total_count] = 0; // extra entry is always available while( self->status[rid] != 0) // search until available entry found rid++; if( rid >= self->total_count) // bounds check of result resource_error( 8 ); self->status[rid] = 1; // mark this entry as in use self->owner[rid] = tid; // record which thread has it self->available_count--; // decr count of available resources pthread_mutex_unlock( &self->Mlock ); // sync unlock return rid; } void resource_release( struct resource_type_tag *self, int tid, int rid ){ pthread_mutex_lock( &self->Mlock ); // sync lock if( resource_check( self ) ) // signature check resource_error( 9 ); if( rid >= self->total_count) // bounds check of argument resource_error( 10 ); if( self->owner[rid] != tid) // check ownership match resource_error( 11 ); self->status[rid] = 0; // mark this entry as available self->owner[rid] = -1; // reset ownership self->available_count++; // incr count of available resources pthread_cond_signal( &self->conditionVar ); // signal condition variable pthread_mutex_unlock( &self->Mlock ); // sync unlock } void resource_print( struct resource_type_tag *self ){ pthread_mutex_lock( &self->Mlock ); // sync lock int i; if( resource_check( self ) ) // signature check resource_error( 6 ); printf( "-- resource table for type %d --\n", self->type ); for(i = 0; i < self->total_count; i++){ printf(" resource #%d: %d,%d\n", i, self->status[i], self->owner[i] ); } printf("-------------------------------\n"); pthread_mutex_unlock( &self->Mlock ); // sync unlock } // ------------------- // -- end of object -- // ------------------- // argument vector for threads typedef struct{ resource_t *rp; int id; } argvec_t; // worker thread skeleton void *worker( void *ap ){ resource_t *resource = ((argvec_t *)ap)->rp; int thread_id = ((argvec_t *)ap)->id; int resource_id; resource_id = (resource->allocate)( resource, thread_id ); printf( "thread #%d uses resource #%d\n", thread_id, resource_id ); sleep(1); (resource->release)( resource, thread_id, resource_id ); return NULL; } // observer thread void *observer( void *ap ){ resource_t *resource = ((argvec_t *)ap)->rp; int i; for( i = 0; i < 2; i++ ){ sleep( 2 ); (resource->print)( resource ); } return NULL; } // -------------------------------------------- // -- test driver with one resource instance -- // -------------------------------------------- int main(int argc, char **argv){ pthread_t threads[ THREADS + 1 ]; argvec_t args[ THREADS + 1 ]; int i; resource_t *resource_1; resource_1 = resource_init( 1, RESOURCES ); (resource_1->print)( resource_1 ); for( i = 0; i < THREADS; i++ ){ args[i].rp = resource_1; args[i].id = i; if( pthread_create( &threads[i], NULL, &worker, (void *)(&args[i]) ) ){ printf("**** could not create worker thread %d\n", i); exit( 0 ); } } i = THREADS; args[i].rp = resource_1; args[i].id = i; if( pthread_create( &threads[i], NULL, &observer, (void *)(&args[i]) ) ){ printf("**** could not create observer thread\n"); exit( 0 ); } for( i = 0; i < (THREADS+1); i++ ){ if( pthread_join( threads[i], NULL ) ){ printf( "**** could not join thread %d\n", i ); exit( 0 ); } } (resource_1->print)( resource_1 ); resource_reclaim( resource_1 ); return 0; }
the_stack_data/104827228.c
/* Another Simple C program */ #include<stdio.h> int main() { printf("My Formula for Success?\nRise Early, Work Late, Strike Oil!\n"); return 0; }
the_stack_data/665355.c
/* * patest_sine_channelmaps.c * * This program uses the PortAudio Portable Audio Library. * For more information see: http://www.portaudio.com/ * Copyright (c) 1999-2000 Ross Bencina and Phil Burk * * 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. */ /* * The text above constitutes the entire PortAudio license; however, * the PortAudio community also makes the following non-binding requests: * * Any person wishing to distribute modifications to the Software is * requested to send the modifications to the original developer so that * they can be incorporated into the canonical version. It is also * requested that these non-binding requests be included along with the * license above. */ /** @file patest_sine_channelmaps.c @ingroup test_src @brief Plays sine waves using sme simple channel maps. Designed for use with CoreAudio, but should made to work with other APIs @author Bjorn Roche <[email protected]> @author Ross Bencina <[email protected]> @author Phil Burk <[email protected]> */ #include <stdio.h> #include <math.h> #include "portaudio.h" #ifdef __APPLE__ #include "pa_mac_core.h" #endif #define NUM_SECONDS (5) #define SAMPLE_RATE (44100) #define FRAMES_PER_BUFFER (64) #ifndef M_PI #define M_PI (3.14159265) #endif #define TABLE_SIZE (200) typedef struct { float sine[TABLE_SIZE]; int left_phase; int right_phase; } paTestData; /* This routine will be called by the PortAudio engine when audio is needed. ** It may called at interrupt level on some machines so don't do anything ** that could mess up the system like calling malloc() or free(). */ static int patestCallback( const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void *userData ) { paTestData *data = (paTestData*)userData; float *out = (float*)outputBuffer; unsigned long i; (void) timeInfo; /* Prevent unused variable warnings. */ (void) statusFlags; (void) inputBuffer; for( i=0; i<framesPerBuffer; i++ ) { *out++ = data->sine[data->left_phase]; /* left */ *out++ = data->sine[data->right_phase]; /* right */ data->left_phase += 1; if( data->left_phase >= TABLE_SIZE ) data->left_phase -= TABLE_SIZE; data->right_phase += 3; /* higher pitch so we can distinguish left and right. */ if( data->right_phase >= TABLE_SIZE ) data->right_phase -= TABLE_SIZE; } return paContinue; } /*******************************************************************/ int main(void); int main(void) { PaStreamParameters outputParameters; PaStream *stream; PaError err; paTestData data; #ifdef __APPLE__ PaMacCoreStreamInfo macInfo; const SInt32 channelMap[4] = { -1, -1, 0, 1 }; #endif int i; printf("PortAudio Test: output sine wave. SR = %d, BufSize = %d\n", SAMPLE_RATE, FRAMES_PER_BUFFER); printf("Output will be mapped to channels 2 and 3 instead of 0 and 1.\n"); /* initialise sinusoidal wavetable */ for( i=0; i<TABLE_SIZE; i++ ) { data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); } data.left_phase = data.right_phase = 0; err = Pa_Initialize(); if( err != paNoError ) goto error; /** setup host specific info */ #ifdef __APPLE__ PaMacCore_SetupStreamInfo( &macInfo, paMacCorePlayNice ); PaMacCore_SetupChannelMap( &macInfo, channelMap, 4 ); for( i=0; i<4; ++i ) printf( "channel %d name: %s\n", i, PaMacCore_GetChannelName( Pa_GetDefaultOutputDevice(), i, false ) ); #else printf( "Channel mapping not supported on this platform. Reverting to normal sine test.\n" ); #endif outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */ if (outputParameters.device == paNoDevice) { fprintf(stderr,"Error: No default output device.\n"); goto error; } outputParameters.channelCount = 2; /* stereo output */ outputParameters.sampleFormat = paFloat32; /* 32 bit floating point output */ outputParameters.suggestedLatency = Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency; #ifdef __APPLE__ outputParameters.hostApiSpecificStreamInfo = &macInfo; #else outputParameters.hostApiSpecificStreamInfo = NULL; #endif err = Pa_OpenStream( &stream, NULL, /* no input */ &outputParameters, SAMPLE_RATE, FRAMES_PER_BUFFER, paClipOff, /* we won't output out of range samples so don't bother clipping them */ patestCallback, &data ); if( err != paNoError ) goto error; err = Pa_StartStream( stream ); if( err != paNoError ) goto error; printf("Play for %d seconds.\n", NUM_SECONDS ); Pa_Sleep( NUM_SECONDS * 1000 ); err = Pa_StopStream( stream ); if( err != paNoError ) goto error; err = Pa_CloseStream( stream ); if( err != paNoError ) goto error; Pa_Terminate(); printf("Test finished.\n"); return err; error: Pa_Terminate(); fprintf( stderr, "An error occured while using the portaudio stream\n" ); fprintf( stderr, "Error number: %d\n", err ); fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) ); return err; }
the_stack_data/115764301.c
#include<stdio.h> int main() { int a, b; scanf("%d%d",&a,&b); printf("%d\n",a+b); return 0; }
the_stack_data/145451877.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <CL/cl.h> unsigned char *read_buffer(char *file_name, size_t *size_ptr) { FILE *f; unsigned char *buf; size_t size; /* Open file */ f = fopen(file_name, "rb"); if (!f) return NULL; /* Obtain file size */ fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); /* Allocate and read buffer */ buf = malloc(size + 1); fread(buf, 1, size, f); buf[size] = '\0'; /* Return size of buffer */ if (size_ptr) *size_ptr = size; /* Return buffer */ return buf; } void write_buffer(char *file_name, const char *buffer, size_t buffer_size) { FILE *f; /* Open file */ f = fopen(file_name, "w+"); /* Write buffer */ if(buffer) fwrite(buffer, 1, buffer_size, f); /* Close file */ fclose(f); } int main(int argc, char const *argv[]) { /* Get platform */ cl_platform_id platform; cl_uint num_platforms; cl_int ret = clGetPlatformIDs(1, &platform, &num_platforms); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformIDs' failed\n"); exit(1); } printf("Number of platforms: %d\n", num_platforms); printf("platform=%p\n", platform); /* Get platform name */ char platform_name[100]; ret = clGetPlatformInfo(platform, CL_PLATFORM_NAME, sizeof(platform_name), platform_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformInfo' failed\n"); exit(1); } printf("platform.name='%s'\n\n", platform_name); /* Get device */ cl_device_id device; cl_uint num_devices; ret = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, &num_devices); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceIDs' failed\n"); exit(1); } printf("Number of devices: %d\n", num_devices); printf("device=%p\n", device); /* Get device name */ char device_name[100]; ret = clGetDeviceInfo(device, CL_DEVICE_NAME, sizeof(device_name), device_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceInfo' failed\n"); exit(1); } printf("device.name='%s'\n", device_name); printf("\n"); /* Create a Context Object */ cl_context context; context = clCreateContext(NULL, 1, &device, NULL, NULL, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateContext' failed\n"); exit(1); } printf("context=%p\n", context); /* Create a Command Queue Object*/ cl_command_queue command_queue; command_queue = clCreateCommandQueue(context, device, 0, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateCommandQueue' failed\n"); exit(1); } printf("command_queue=%p\n", command_queue); printf("\n"); /* Program source */ unsigned char *source_code; size_t source_length; /* Read program from 'hadd_int16int16.cl' */ source_code = read_buffer("hadd_int16int16.cl", &source_length); /* Create a program */ cl_program program; program = clCreateProgramWithSource(context, 1, (const char **)&source_code, &source_length, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateProgramWithSource' failed\n"); exit(1); } printf("program=%p\n", program); /* Build program */ ret = clBuildProgram(program, 1, &device, NULL, NULL, NULL); if (ret != CL_SUCCESS ) { size_t size; char *log; /* Get log size */ clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,0, NULL, &size); /* Allocate log and print */ log = malloc(size); clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,size, log, NULL); printf("error: call to 'clBuildProgram' failed:\n%s\n", log); /* Free log and exit */ free(log); exit(1); } printf("program built\n"); printf("\n"); /* Create a Kernel Object */ cl_kernel kernel; kernel = clCreateKernel(program, "hadd_int16int16", &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateKernel' failed\n"); exit(1); } /* Create and allocate host buffers */ size_t num_elem = 10; /* Create and init host side src buffer 0 */ cl_int16 *src_0_host_buffer; src_0_host_buffer = malloc(num_elem * sizeof(cl_int16)); for (int i = 0; i < num_elem; i++) src_0_host_buffer[i] = (cl_int16){{2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}}; /* Create and init device side src buffer 0 */ cl_mem src_0_device_buffer; src_0_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_int16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_0_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_int16), src_0_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create and init host side src buffer 1 */ cl_int16 *src_1_host_buffer; src_1_host_buffer = malloc(num_elem * sizeof(cl_int16)); for (int i = 0; i < num_elem; i++) src_1_host_buffer[i] = (cl_int16){{2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}}; /* Create and init device side src buffer 1 */ cl_mem src_1_device_buffer; src_1_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_int16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_1_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_int16), src_1_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create host dst buffer */ cl_int16 *dst_host_buffer; dst_host_buffer = malloc(num_elem * sizeof(cl_int16)); memset((void *)dst_host_buffer, 1, num_elem * sizeof(cl_int16)); /* Create device dst buffer */ cl_mem dst_device_buffer; dst_device_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, num_elem *sizeof(cl_int16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create dst buffer\n"); exit(1); } /* Set kernel arguments */ ret = CL_SUCCESS; ret |= clSetKernelArg(kernel, 0, sizeof(cl_mem), &src_0_device_buffer); ret |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &src_1_device_buffer); ret |= clSetKernelArg(kernel, 2, sizeof(cl_mem), &dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clSetKernelArg' failed\n"); exit(1); } /* Launch the kernel */ size_t global_work_size = num_elem; size_t local_work_size = num_elem; ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, &global_work_size, &local_work_size, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueNDRangeKernel' failed\n"); exit(1); } /* Wait for it to finish */ clFinish(command_queue); /* Read results from GPU */ ret = clEnqueueReadBuffer(command_queue, dst_device_buffer, CL_TRUE,0, num_elem * sizeof(cl_int16), dst_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueReadBuffer' failed\n"); exit(1); } /* Dump dst buffer to file */ char dump_file[100]; sprintf((char *)&dump_file, "%s.result", argv[0]); write_buffer(dump_file, (const char *)dst_host_buffer, num_elem * sizeof(cl_int16)); printf("Result dumped to %s\n", dump_file); /* Free host dst buffer */ free(dst_host_buffer); /* Free device dst buffer */ ret = clReleaseMemObject(dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 0 */ free(src_0_host_buffer); /* Free device side src buffer 0 */ ret = clReleaseMemObject(src_0_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 1 */ free(src_1_host_buffer); /* Free device side src buffer 1 */ ret = clReleaseMemObject(src_1_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Release kernel */ ret = clReleaseKernel(kernel); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseKernel' failed\n"); exit(1); } /* Release program */ ret = clReleaseProgram(program); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseProgram' failed\n"); exit(1); } /* Release command queue */ ret = clReleaseCommandQueue(command_queue); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseCommandQueue' failed\n"); exit(1); } /* Release context */ ret = clReleaseContext(context); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseContext' failed\n"); exit(1); } return 0; }
the_stack_data/63267.c
#include "stdio.h" int main() { int row, col; for(row=1; row<10; row++){ for(col=1; col<10; col++) printf("%4d", row*col); putchar('\n'); } return 0; }
the_stack_data/44521.c
#include <stdio.h> int add(int a, int b); int sub(int a, int b); int main(void) { printf("add(10, 3): %d\n", add(10, 3)); printf("sub(10, 3): %d\n", sub(10, 3)); return 0; }
the_stack_data/107952758.c
/** * @file * @brief strxfrm() function copy no more than n symbols from src to dest in * such way that strcmp with modified strings works in the same way as strcoll. * * @date 11.07.19 * @author Nastya Nizharadze */ #include <string.h> #include <stdio.h> #include <assert.h> #define IS_NOT_ASCII (1u << 7) size_t strxfrm(char *dest, const char *src, size_t n) { size_t srclen, min_copy, buff; unsigned const char *sp = (unsigned const char *) src; srclen = strlen(src); buff = (((srclen + 1) < (n)) ? (srclen + 1) : (n)); min_copy = buff; while (!(*sp++ & (IS_NOT_ASCII)) && buff--); if ((*(--sp)) & (IS_NOT_ASCII)) { printf("strxfrm: error: not ASCII character\n"); assert(0); } if (n != 0) { strncpy(dest, src, min_copy); } return srclen; }
the_stack_data/115765089.c
/* * Date: 06/07/2015 * Created by: Ton Chanh Le ([email protected]) * Adapted from Gothenburg_true-termination.c */ typedef enum {false, true} bool; extern int __VERIFIER_nondet_int(void); int main() { int x, y, a, b; a = __VERIFIER_nondet_int(); b = __VERIFIER_nondet_int(); x = __VERIFIER_nondet_int(); y = __VERIFIER_nondet_int(); if (a == b + 1 && x < 0) { while (x >= 0 || y >= 0) { x = x + a - b - 1; y = y + b - a - 1; } } return 0; }
the_stack_data/50137149.c
#include<stdio.h> #include<math.h> int main (){ float pi=3.1418,ab; double r; int x; printf("Escolha o numero para seguinte segmento \n"); printf("1 Diametro\n"); printf("2 raio\n"); scanf("%d",&x); switch (x){ case 1 : printf("Insira o valor do diametro\n"); scanf("%lf",&r); r=r/2; ab=pi*pow(r,2); printf("O valor da base do cilindro e de %.2f\n",ab); break; case 2 : printf("Insira o valor do raio\n"); scanf("%lf",&r); ab=pi*pow(r,2); printf("O valor da base do cilindro e de %.2f\n",ab); break; default : printf("Erro\n"); } return 0; }
the_stack_data/14969.c
#include <stdio.h> typedef int hint; typedef hint *hintptr; static void do_assign(int b[1], int i) { b[i]=i; } void assign(hintptr b, int i) { do_assign(b+i,i); } float ing(int i) { int b[100]; here:if(1) { assign(b,i); } }
the_stack_data/495809.c
#define asm __asm__ int x asm("myvar") = 100; int func ( void ) asm("myfunc"); int func ( void ) { register int * foo asm("%edx") = 0; return *foo; }
the_stack_data/152254.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strncpy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dhromads <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/03/30 18:51:39 by dhromads #+# #+# */ /* Updated: 2018/03/30 18:52:35 by dhromads ### ########.fr */ /* */ /* ************************************************************************** */ #include <string.h> char *ft_strncpy(char *dst, const char *src, size_t len) { size_t i; i = -1; while (++i < len) if (*(src + i)) *(dst + i) = *(src + i); else while (i < len) *(dst + i++) = '\0'; return (dst); }
the_stack_data/193893261.c
#include<stdio.h> int main(){ // int principle=1310, rate=4, years=2; // int smpInterest = (principle* rate* years)/100; // printf("Value of Simple Interest is %d \n", smpInterest); float principle, rate, years; printf("Enter principle value \n"); scanf("%f", &principle); printf("Enter rate value \n"); scanf("%f", &rate); printf("Enter year value \n"); scanf("%f", &years); printf("Your simple interest is %f", (principle* rate* years)/100); return 0; }
the_stack_data/54824135.c
#include <stdio.h> int result[31] = {0}; int find(int *array, int len) { for (int i = 1;i < len;++i) { if (array[i] != 0) { return i; } } return -1; } int main() { unsigned int n, k = 0; int num = 0; scanf("%u %u", &n, &k); unsigned int array[31] = {0}; for (int i = 0;i < 31;++i) { array[i] = 1 << i; } for (int i = 30;i >= 0;--i) { if (n >= array[i]) { n -= array[i]; result[i] = 1; ++num; } } // printf("%d\n", num); if (num > k) { printf("NO\n"); return 0; } if (num == k) { printf("YES\n"); for (int i = 0;i < 31;++i) { for (int j = 0;j < result[i];++j) { printf("%u ", array[i]); } } printf("\n"); return 0; } // for (int i = 0;i < 31;++i) // { // printf("%d\n", result[i]); // } int res = -1; while (num < k && (res = find(result, 31)) != -1) { result[res - 1] += 2; result[res]--; num++; } if (num < k) { printf("NO\n"); } else { printf("YES\n"); for (int i = 0;i < 31;++i) { for (int j = 0;j < result[i];++j) { printf("%u ", array[i]); } } printf("\n"); } // for (int i = 0;i < 31;++i) // { // printf("%d\n", result[i]); // } return 0; }
the_stack_data/70451142.c
#include <stdlib.h> extern size_t __breakpoint__inv(size_t*); size_t zero_inc(size_t x) { if (x == 0) { __breakpoint__inv(&x); ++x; } return x; }
the_stack_data/192330936.c
#include<stdio.h> int main(void){ float a,b,c; a=2.5; b=7.9; c=3.9; printf("a=%f, b=%f, c=%f", a,b,c); return 0; }
the_stack_data/57951445.c
/* * test2_0.c and test2_1.c are not equivalent because * they access different element of b at the last line. */ void main(){ int a = 10; int b[5]; b[0] = 1; b[1] = 2; a = a + 1; a = a + b[1]; }
the_stack_data/1089769.c
struct VEC_char_base { unsigned num; unsigned alloc; short vec[1]; }; short __attribute__((noinline)) foo (struct VEC_char_base *p, int i) { short *q; p->vec[i] = 0; q = &p->vec[8]; *q = 1; return p->vec[i]; } extern void abort (void); extern void *malloc (__SIZE_TYPE__); int main() { struct VEC_char_base *p = malloc (sizeof (struct VEC_char_base) + 256); if (foo (p, 8) != 1) abort (); return 0; }
the_stack_data/82949402.c
#include <stdio.h> #include <fcntl.h> #include <unistd.h> /* Low-level I/O */ int main(void) { int n; /* number of characters read by read() */ int from, to; /* file descriptors */ char buf[1024]; /* Write. */ write(0, "stdin\n", 7); write(1, "stdout\n", 8); write(2, "stderr\n", 8); write(2, "emily\n", 7); /**************************************************************/ /* Get file descriptor for an existing textfile. */ if ( (from = open("/home/bheckel/junk.txt", O_RDONLY)) < 0 ) { perror("Can't open junk.txt"); exit(1); } else { printf("File descriptor for junk.txt is %d\n", from); } /* Append. Or create new 0640 file if not already existing. */ if ( (to = open("junkvivify.txt", O_WRONLY|O_CREAT|O_APPEND, 0640)) < 0 ) { perror("Can't append (or create) junkvivify.txt"); exit(1); } else { printf("File descriptor for junkvivify.txt is %d\n", to); } while ( (n = read(from, buf, sizeof(buf))) > 0 ) { /* Only write the number of characters read() read in, instead of always * writing the 1024 buffer characters. */ write(to, buf, n); } close(from); close(to); return 0; }
the_stack_data/97014031.c
// Last Change: 2013-09-25 08:33:53 /* * ===================================================================================== * * Filename: del_n_refresh.c * * Description: delets _viminfo, _vim_mru_files, .vimbackup, .vimswap, .vimviews * * Version: 1.0 * Created: 9/25/2013 8:31:34 AM * Revision: none * Compiler: gcc * * Organization: Iswarya Production * Author: (Pinaki Sekhar Gupta) * * ===================================================================================== */ #include <errno.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define N 6 /* number of stuffs to delete */ int main(void) { register int i, v; char del[5]="del ", star_qq[8]="\\*.*/q", removing_dir[37]; /* chunk of words to pass to system(). 37 since 5+8+24 */ for(i=0; i<37 ; i+=1) { /* filling with null terminator */ removing_dir[i]='\0'; } char removable_target[N][24]= { /* FIXME: warning: ISO C90 forbids mixed declarations and code [-pedantic] */ "_viminfo", "_vim_mru_files", "yankring_history_v2.txt", ".vimbackup", ".vimswap", ".vimviews" }; for(i=0; i<3 ; i+=1) { /* delets files */ if(remove(*(removable_target+i)) != 0) { printf("Could not remove %s\n",*(removable_target+i)); } else { printf("Removed %s\n",*(removable_target+i)); } } for(i=3; i<6 ; i+=1) { /* delets files under the specified folders */ for(v=0; v<37 ; v+=1) { removing_dir[v]='\0'; } strcat(removing_dir,del); strcat(removing_dir,*(removable_target+i)); strcat(removing_dir,star_qq); if(system(removing_dir) != 0) { printf("Could not remove %s\n",removing_dir); } else { printf("Removed %s\n",removing_dir); } } system("PAUSE"); return EXIT_SUCCESS; }
the_stack_data/138545.c
/*! * t-c.c - c test for lcdb * Copyright (c) 2022, Christopher Jeffrey (MIT License). * https://github.com/chjj/lcdb * * Parts of this software are based on google/leveldb: * Copyright (c) 2011, The LevelDB Authors. All rights reserved. * https://github.com/google/leveldb * * See LICENSE for more information. */ int ldb_test_c(void); int main(void) { return ldb_test_c(); }
the_stack_data/1839.c
// // file: main.c // author: Michael Brockus // gmail: <[email protected]> // #include <stdio.h> #include <string.h> #include <stdlib.h> // main is where program execution starts int main(void) { char x[5]; scanf("%s", x); // // Complete the code to calculate the sum of the five digits on n. printf("%d", x[0] - '0' + x[1] - '0' + x[2] - '0' + x[3] - '0' + x[4] - '0'); return EXIT_SUCCESS; } // end of function main
the_stack_data/145453524.c
#include<stdio.h> #include<stdlib.h> #include<time.h> //utility function for printing BST inorderly(ascending order) void printInorder(int* arr,int start,int end) { if(start > end) return; // print left subtree printInorder(arr, start*2 + 1, end); // print root printf("%d\t", arr[start]); // print right subtree printInorder(arr, start*2 + 2, end); } /* In order to prove that parallel programming is good over serial one we require large graph(for smaller graphs difference is not appreciable so having large graph is our first need). The idea is graph will have root node and 4 children. Each child will be a BST with say 1024 nodes. Nodes may increase as per need. now for each child BST say for 1st child , node data will be 1-1024 for 2nd child 1025-2048 for 3rd child = 2049-3072 and for 4th child 3073-4096 constructing BST is 1st challenege. buildTree function constructs a BST from values contained in array(must be sorted and withour duplicates) and returns root of BST to caller. we have called these function 4 times i.e. for every child BST with appropriate values in array 'arr'. */ void buildTree(int* arr,int start,int end,int*,int,int,int); int main(int argc, char const *argv[]) { int N = 1024; int arr[N]; int tree[N]; int i; int turns = 1; int children =4; int store[children][N]; clock_t cpu_start = clock(); for(;turns<=children;turns++) { int offset = (turns-1)*N; buildTree(arr,0,N,tree,0,offset,N); //tree[N-1]=N; /*for(i=0;i<N;i++) store[turns-1][i]=tree[i];*/ printInorder(tree,0,N-1); } clock_t cpu_finish = clock(); printf("\ntime elapsed in traversing is = %d millisecinds\n",(cpu_finish - cpu_start) ); return 0; } void buildTree(int* arr,int start,int end,int* tree,int k,int offset,int N) { if(start<=end && k<=N-1){ int mid = (end+start+1)/2; //printf(" k = %d and element = %d\n",k,arr[mid] ); tree[k] = mid+offset; buildTree(arr,start,mid-1,tree, k*2+1,offset,N); buildTree(arr,mid+1,end,tree,k*2+2,offset,N); } }
the_stack_data/100141409.c
/* Given array arr[n][n], where each arr[i][j] is either 0 or 1, find the biggest rectangle consisting of zeroes and print out its size. Input: First row consists of 3 <= n <= 100 Next n rows containt n digits each, either 0 or 1 Output: One integer - biggest rectangle area Example: Input: 5 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 Output: 9*/ #include <stdio.h> #include <stdlib.h> typedef struct coords //structure holding coordinates (was used in previous idea but I kinda liked it and it stayed) { int x; int y; } coords; /*What we are doing is basically looping through array from top-left to bottom-right and checking for biggest rectangle we can draw from current point in bot-right direction. Knowing that, we need only to check longest route we could take either horizontally or vertically from given point. When longest route from point arr[i][j] is found we move to arr[i+1][j+1] and start again, until reaching end of loop. Then shortest of found horizontal and vertical routes are multiplicated to return maximal reactangle size. T*/ int check_max_fill(int **arr, coords curr_position, int n) { coords start_pos = curr_position; coords max_position = {.x = n - 1, .y = n - 1}; int i = 0, j = 0; while (curr_position.x <= max_position.x && curr_position.y <= max_position.x) { for (i = curr_position.y; i <= max_position.y; i++) if (arr[curr_position.x][i] == 1) { max_position.y = i - 1; break; } for (j = curr_position.x; j <= max_position.x; j++) if (arr[j][curr_position.y] == 1) { max_position.x = j - 1; break; } curr_position.x++; curr_position.y++; } return (max_position.y + 1 - start_pos.y) * (max_position.x + 1 - start_pos.x); } int main() { int n = 0, max = 0, temp_max = 0; unsigned int size = 0; coords curr_pos = {0, 0}; printf("Enter n: \n"); scanf("%d", &n); size = (unsigned int)n; int **arr = (int **)malloc(size * sizeof(int *)); //allocate memory for array for (int i = 0; i < n; i++) arr[i] = (int *)malloc(size * sizeof(int)); //allocate each row printf("Enter array line by line (or anyway you like, just separate characters with whitespace): \n"); for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) scanf("%d", &arr[i][j]); //fill up array with input data printf("\n"); for (curr_pos.x = 0; curr_pos.x < n; curr_pos.x++) //driver for function for (curr_pos.y = 0; curr_pos.y < n; curr_pos.y++) { temp_max = check_max_fill(arr, curr_pos, n); if (max < temp_max) max = temp_max; } printf("Biggest rectangle found is %d units big", max); for (int i = 0; i < n; i++) //free memory { free(arr[i]); } free(arr); return 0; }
the_stack_data/242329611.c
struct numeric_resolv { int rc; }; static void numeric_step ( struct numeric_resolv *numeric ) { } // static void numeric_step ( void *numeric ) { } void ( * step ) ( void *object ) = ( ( ( ( typeof ( numeric_step ) * ) ((void *)0) ) == 0L) ? 0L : 0L );
the_stack_data/107951983.c
extern void abort (void); void foo (int *x) { int a[10], b[15], err, i; for (i = 0; i < 10; i++) a[i] = 7 * i; for (i = 0; i < 15; i++) b[i] = 8 * i; #pragma omp target map(to:x[5:10], a[0:10], b[5:10]) map(from:err) { err = 0; for (i = 0; i < 10; i++) if (x[5 + i] != 20 + 4 * i || a[i] != 7 * i || b[5 + i] != 40 + 8 * i) err = 1; } if (err) abort (); } void bar (int n, int v) { int a[n], b[n], c[n], d[n], e[n], err, i; int (*x)[n] = &c; for (i = 0; i < n; i++) { (*x)[i] = 4 * i; a[i] = 7 * i; b[i] = 8 * i; } #pragma omp target map(to:x[0][5:10], a[0:10], b[5:10]) map(from:err) { err = 0; for (i = 0; i < 10; i++) if ((*x)[5 + i] != 20 + 4 * i || a[i] != 7 * i || b[5 + i] != 40 + 8 * i) err = 1; } if (err) abort (); for (i = 0; i < n; i++) { (*x)[i] = 9 * i; a[i] = 12 * i; b[i] = 13 * i; } #pragma omp target map(to:x[0][v:v+5], a[v-5:v+5], b[v:v+5]) map(from:err) { err = 0; for (i = 0; i < 10; i++) if ((*x)[5 + i] != 45 + 9 * i || a[i] != 12 * i || b[5 + i] != 65 + 13 * i) err = 1; } if (err) abort (); } int main () { int x[15], i; for (i = 0; i < 15; i++) x[i] = 4 * i; foo (x); bar (15, 5); return 0; }
the_stack_data/148578356.c
#include <stdio.h> int main() { int n,i,a,sum; float avr; i=0; sum=0; scanf("%d", &n); do{ scanf("%d", &a); sum=a+sum; i++; }while(i<n); avr=(float)sum/n; printf("Sum: %d", sum); printf("\nAvg: %.2f", avr); return 0; }
the_stack_data/126781.c
#define BITSLICE(x, a, b) ((x) >> (b)) & ((1 << ((a)-(b)+1)) - 1) #include<stdio.h> #include<stdint.h> #include<stdlib.h> int assert_forward = 1; int action_run; int traverse_5388716 = 0; int emit_header_vlan_tag_0 = 0; int traverse_5388756 = 0; int emit_header_vlan_tag_1 = 0; int traverse_5395828 = 0; int extract_header_hdr_ipv4 = 0; int extract_header_hdr_udp = 0; int traverse_5395890 = 0; int extract_header_hdr_tcp = 0; int traverse_5395952 = 0; int extract_header_hdr_icmp = 0; int traverse_5396014 = 0; int traverse_5396061 = 0; int extract_header_hdr_ipv6 = 0; int traverse_5396117 = 0; int traverse_5396181 = 0; int traverse_5396245 = 0; int traverse_5401372 = 0; int traverse_5402860 = 0; int traverse_5403007 = 0; int traverse_5409347 = 0; int traverse_5410603 = 0; int traverse_5410626 = 0; int traverse_5413465 = 0; int traverse_5417135 = 0; uint32_t constant_l3_metadata_nexthop_index_5417135; void end_assertions(); void _set_egress_packet_vlan_untagged_5400395(); void _fib_hit_ecmp_6_5413268(); void parse_inner_ethernet(); void _egress_acl_deny_5399706(); void NoAction_160_5388044(); void rmac_5401933(); void _acl_mirror_0_5411205(); void _bd_flood_0_5417522(); void _ipv4_over_fabric_0_5407004(); void parse_ethernet(); void _multicast_route_star_g_miss_1_5413942(); void _inner_ipv4_icmp_rewrite_5395936(); void parse_tcp(); void _nop_119_5410592(); void _on_miss_11_5407407(); void NoAction_170_5388054(); void _copy_to_cpu_with_reason_5418376(); void _decap_mpls_inner_ipv6_pop2_5389978(); void _set_src_nat_rewrite_index_2_5414877(); void _ipv6_src_vtep_5407756(); void _decap_mpls_inner_ipv4_pop2_5389925(); void NoAction_152_5388036(); void _dmac_hit_5409694(); void _tunnel_0_5406440(); void _redirect_to_cpu_with_reason_5418450(); void _set_l2_rewrite_5390877(); void _multicast_route_s_g_hit_2_5414410(); void _int_set_header_0003_i12_5393219(); void _ipv4_src_vtep_5407518(); void NoAction_172_5401815(); void _nop_130_5417104(); void _compute_other_hashes_0_5415993(); void _set_mirror_bd_5388248(); void parse_gre_ipv4(); void NoAction_245_5401888(); void parse_gre_ipv6(); void _port_vlan_mapping_miss_5403652(); void NoAction_136_5388020(); void _switch_fabric_unicast_packet_0_5406707(); void _set_multicast_5409243(); void _set_valid_outer_unicast_packet_double_tagged_5402287(); void NoAction_151_5388035(); void _set_valid_outer_broadcast_packet_double_tagged_5402571(); void NoAction_150_5388034(); void _set_stp_state_5403793(); void _native_packet_over_fabric_5407284(); void NoAction_212_5401855(); void _ipv6_mtu_check_5392237(); void _nop_117_5409693(); void NoAction_253_5401896(); void NoAction_185_5401828(); void _nop_134_5417861(); void _egress_ip_acl_0_5399810(); void _set_mirror_nhop_5388230(); void NoAction_203_5401846(); void _acl_deny_5410070(); void _acl_stats_2_5416304(); void _int_reset_5392677(); void _set_nat_src_tcp_rewrite_5395039(); void _egress_copy_to_cpu_with_reason_5400857(); void _int_set_header_0407_i14_5393956(); void _egress_mirror_5400953(); void _outer_ipv4_multicast_star_g_5408569(); void _rewrite_tunnel_ipv6_dst_5395794(); void _mpls_rewrite_5391959(); void _ipv6_over_fabric_0_5407077(); void _replica_type_0_5388558(); void _tunnel_mtu_miss_5398063(); void _ipv4_dest_vtep_5407435(); void _decap_gre_inner_non_ip_5389582(); void _decap_mpls_inner_ethernet_ipv4_pop2_5390031(); void _set_multicast_and_ipv6_src_is_link_local_5409270(); void NoAction_255_5401898(); void _dmac_drop_5409830(); void _mirror_0_5388310(); void _int_sink_update_outer_0_5404780(); void _set_config_parameters_5403375(); void NoAction_158_5388042(); void _tunnel_lookup_miss_5405801(); void _int_set_header_0407_i15_5394008(); void NoAction_230_5401873(); void _multicast_bridge_star_g_hit_2_5414225(); void _adjust_lkp_fields_0_5406300(); void _fabric_multicast_rewrite_5398705(); void _nop_16_5391789(); void _racl_redirect_nexthop_5411815(); void _acl_mirror_4_5411294(); void _nop_115_5409530(); void _nop_128_5416356(); void _ipv4_multicast_route_star_g_5414065(); void NoAction_243_5401886(); void _int_source_0_5404861(); void _set_malformed_outer_ipv4_packet_0_5402843(); void NoAction_168_5388052(); void _on_miss_14_5408669(); void _ipv6_genv_rewrite_5397391(); void _set_tunnel_termination_flag_2_5407605(); void _inner_non_ip_rewrite_5396278(); void _ipv6_urpf_lpm_0_5413107(); void _egress_filter_check_5400611(); void NoAction_173_5401816(); void parse_snap_header(); void _switch_config_params_0_5403437(); void _set_nat_src_udp_rewrite_5394900(); void NoAction_149_5388033(); void _storm_control_0_5409125(); void _spanning_tree_0_5403811(); void _set_valid_outer_broadcast_packet_single_tagged_5402531(); void NoAction_188_5401831(); void _outer_ipv6_multicast_star_g_5408979(); void _tunnel_dst_rewrite_0_5399035(); void _int_src_5392542(); void _tunnel_decap_process_outer_0_5390625(); void _ipv6_multicast_bridge_star_g_5414326(); void _set_mpls_push_rewrite_l2_5391124(); void _nop_51_5408668(); void _int_set_header_0407_i6_5393630(); void _tunnel_encap_process_outer_0_5399239(); void _ipv6_multicast_rewrite_5391918(); void _set_malformed_packet_5409330(); void _int_set_header_7_bos_5392459(); void _set_egress_dst_port_range_id_5395406(); void NoAction_183_5401826(); void _ipv4_lkp_5405451(); void _acl_permit_0_5410748(); void NoAction_233_5401876(); void parse_vxlan(); void _set_ifindex_5402004(); void _ipv6_ip_rewrite_5397042(); void parse_fabric_header_multicast(); void _ipv6_erspan_t3_rewrite_5397894(); void _nop_8_5388220(); void parse_gre(); void _terminate_tunnel_inner_ethernet_ipv4_5405866(); void NoAction_199_5401842(); void _on_miss_33_5414393(); void _set_nat_src_dst_tcp_rewrite_5395121(); void _egress_acl_deny_4_5399748(); void _on_miss_35_5414773(); void _inner_ipv4_unknown_rewrite_5395998(); void parse_geneve(); void _ingress_l4_dst_port_0_5409567(); void _set_l2_rewrite_with_tunnel_5390911(); void NoAction_133_5388017(); void NoAction_206_5401849(); void _nop_26_5395724(); void NoAction_201_5401844(); void NoAction_167_5388051(); void NoAction_244_5401887(); void parse_erspan_t3(); void accept(); void NoAction_196_5401839(); void _egress_filter_drop_0_5400713(); void _int_set_header_0407_i0_5393477(); void NoAction_226_5401869(); void NoAction_186_5401829(); void _set_nexthop_details_5417237(); void _fib_hit_nexthop_5412315(); void _on_miss_34_5414763(); void _int_set_header_0003_i11_5393156(); void NoAction_216_5401859(); void _set_valid_outer_multicast_packet_single_tagged_5402389(); void _acl_redirect_nexthop_4_5410961(); void _terminate_tunnel_inner_non_ip_5405811(); void reject(); void _forward_mpls_0_5408099(); void _terminate_cpu_packet_0_5406637(); void _redirect_to_cpu_5418298(); void _non_ip_over_fabric_0_5406967(); void _int_set_header_0407_i4_5393567(); void _nop_17_5392475(); void parse_fabric_header_unicast(); void _tunnel_smac_rewrite_0_5399574(); void _decap_gre_inner_ipv4_5389488(); void _ipv6_urpf_hit_2_5412995(); void _validate_outer_ethernet_0_5402648(); void _int_inst_4_5394475(); void _smac_0_5409987(); void _egress_acl_permit_3_5399784(); void NoAction_235_5401878(); void _ipv4_multicast_bridge_5413637(); void _inner_ipv6_udp_rewrite_5396045(); void _acl_stats_update_5416282(); void parse_llc_header(); void _drop_stats_update_5418197(); void _traffic_class_0_5418071(); void _set_multicast_bridge_action_5416786(); void NoAction_204_5401847(); void _terminate_tunnel_inner_ipv6_5406203(); void _set_storm_control_meter_5409093(); void _on_miss_13_5408259(); void _set_valid_mpls_label2_0_5403137(); void _int_set_header_0407_i13_5393904(); void _fib_hit_nexthop_0_5412345(); void _nop_28_5395735(); void _ipv6_acl_0_5411538(); void _set_ingress_color_5403916(); void parse_fabric_header_mirror(); void NoAction_248_5401891(); void _sflow_pkt_to_cpu_5388266(); void rmac_hit_0_5401901(); void NoAction_225_5401868(); void parse_fabric_sflow_header(); void NoAction_174_5401817(); void _dmac_multicast_hit_5409724(); void _set_ecmp_nexthop_details_for_post_routed_flood_5417186(); void _racl_redirect_ecmp_5411885(); void _set_nat_dst_tcp_rewrite_5395080(); void NoAction_141_5388025(); void _int_set_header_0003_i1_5392733(); void _set_egress_src_port_range_id_5395424(); void _outer_multicast_bridge_s_g_hit_1_5408312(); void _set_multicast_drop_5416839(); void _rewrite_smac_5391995(); void _ingress_qos_map_dscp_0_5403994(); void _nop_20_5392487(); void NoAction_222_5401865(); void _egress_redirect_to_cpu_5400814(); void _ipv4_lkp_2_5405533(); void _acl_redirect_nexthop_0_5410875(); void _int_set_header_0003_i9_5393067(); void _set_egress_tunnel_vni_5395740(); void _lag_group_0_5417644(); void NoAction_190_5401833(); void _set_bd_flood_mc_index_5417504(); void _meter_deny_5416077(); void _ipv4_fib_0_5412421(); void NoAction_143_5388027(); void _int_set_header_4_bos_5392411(); void _smac_hit_5409862(); void _ipv6_unicast_rewrite_5391879(); void _ipv6_gre_rewrite_5396962(); void _on_miss_9_5404154(); void _set_vlan_pcp_marking_5391690(); void _set_valid_outer_multicast_packet_double_tagged_5402429(); void _nop_36_5400288(); void NoAction_153_5388037(); void _dmac_0_5409885(); void parse_gpe_int_header(); void _remove_vlan_single_tagged_5388700(); void NoAction_169_5388053(); void _non_ip_lkp_2_5405430(); void NoAction_131_5388015(); void NoAction_184_5401827(); void NoAction_182_5401825(); void _set_tunnel_vni_and_termination_flag_1_5407383(); void _terminate_vpls_0_5407874(); void _tunnel_decap_process_inner_0_5390534(); void _on_miss_12_5407645(); void NoAction_221_5401864(); void _acl_redirect_ecmp_0_5411040(); void _set_egress_packet_vlan_double_tagged_5400455(); void _set_lag_port_5417601(); void _nop_126_5414849(); void _int_set_header_0003_i10_5393114(); void _decap_mpls_inner_ethernet_ipv6_pop2_5390093(); void _int_set_header_2_bos_5392379(); void parse_ipv6(); void parse_ipv4(); void parse_inner_icmp(); void _ipv6_multicast_route_star_g_5414675(); void _int_update_total_hop_cnt_5394087(); void _ipv6_urpf_hit_5412962(); void parse_inner_tcp(); void _ipv6_fib_0_5413291(); void _nop_122_5412569(); void NoAction_142_5388026(); void _smac_miss_5409846(); void _validate_outer_ipv4_packet_5402874(); void _egress_mac_acl_0_5400060(); void NoAction_207_5401850(); void NoAction_189_5401832(); void _egress_vlan_xlate_0_5400536(); void _tunnel_mtu_0_5399424(); void _set_egress_packet_vlan_tagged_5400405(); void NoAction_251_5401894(); void _sflow_ing_pkt_to_cpu_5405109(); void _nop_124_5413603(); void _decap_mpls_inner_ethernet_non_ip_pop3_5390476(); void _nop_23_5395394(); void _sflow_ing_take_sample_0_5405174(); void _nop_37_5400747(); void _nop_114_5409520(); void _learn_notify_0_5417782(); void _nop_10_5388391(); void NoAction_215_5401858(); void _compute_ipv4_hashes_0_5415850(); void _vlan_decap_0_5388791(); void NoAction_219_5401862(); void _set_l3_rewrite_with_tunnel_5391008(); void _validate_outer_ipv6_packet_5403021(); void _nop_120_5410602(); void _outer_multicast_route_bidir_star_g_hit_2_5408801(); void NoAction_145_5388029(); void _set_racl_redirect_action_5416645(); void _int_set_header_0003_i15_5393394(); void NoAction_249_5401892(); void _set_valid_outer_ipv4_packet_0_5402809(); void _set_nat_redirect_action_5416697(); void _multicast_bridge_s_g_hit_2_5414191(); void _int_set_header_0407_i9_5393741(); void _generate_learn_notify_5417749(); void _fabric_ingress_src_lkp_5407227(); void _terminate_ipv4_over_mpls_0_5407915(); void NoAction_257_5401900(); void _int_set_header_0407_i12_5393863(); void _set_dst_nat_nexthop_index_5414775(); void _outer_replica_from_rid_5388408(); void _set_ecmp_nexthop_details_5417115(); void NoAction_165_5388049(); void _ip_acl_0_5411373(); void _multicast_route_bidir_star_g_hit_2_5414625(); void _on_miss_10_5405765(); void _int_set_header_0003_i4_5392842(); void NoAction_139_5388023(); void _acl_permit_5410142(); void parse_icmp(); void _inner_replica_from_rid_5388483(); void _compute_lkp_ipv4_hash_5415460(); void NoAction_198_5401841(); void _nat_src_0_5415172(); void _nop_22_5395299(); void _set_egress_udp_port_fields_5395470(); void _drop_packet_5400757(); void NoAction_202_5401845(); void _nop_46_5407357(); void _nop_48_5408248(); void _int_bos_0_5394108(); void NoAction_223_5401866(); void _int_set_header_0003_i7_5392972(); void _nop_49_5408258(); void _fabric_rewrite_5396299(); void _ipv4_nvgre_rewrite_5692479(); void _ipv4_genv_rewrite_5396479(); void NoAction_0_5388004(); void _nop_43_5405791(); void _set_fib_redirect_action_5416508(); void _multicast_bridge_s_g_hit_1_5413579(); void _nop_52_5409083(); void _egress_system_acl_0_5401042(); void _egress_vni_0_5398909(); void _int_set_header_0407_i11_5393815(); void _urpf_bd_miss_5413449(); void NoAction_146_5388030(); void _nop_50_5408658(); void _smac_rewrite_0_5392145(); void _set_l3_rewrite_5390961(); void _ipv6_vxlan_rewrite_5397246(); void NoAction_218_5401861(); void _set_valid_outer_ipv6_packet_0_5402956(); void NoAction_187_5401830(); void _multicast_route_sm_star_g_hit_2_5414575(); void parse_mpls_inner_ipv4(); void parse_mpls_inner_ipv6(); void _ipv6_racl_0_5412825(); void _racl_redirect_ecmp_0_5412755(); void _nop_121_5411699(); void _set_broadcast_5409303(); void _nop_42_5405243(); void _src_vtep_hit_2_5407655(); void _int_set_header_0_bos_5392347(); void _set_mpls_swap_push_rewrite_l3_5391174(); void _ipsg_miss_5404164(); void NoAction_254_5401897(); void _int_set_header_0003_i6_5392926(); void parse_arp_rarp(); void _int_set_header_0003_i3_5392795(); void _multicast_route_s_g_hit_1_5413800(); void _int_set_header_6_bos_5392443(); void _ipv6_nvgre_rewrite_5692932(); void _nop_133_5417739(); void _decap_mpls_inner_ethernet_ipv4_pop3_5390330(); void _nop_25_5395405(); void _set_fabric_lag_port_5417871(); void _drop_packet_0_5418536(); void NoAction_231_5401874(); void _ipv4_ip_rewrite_5396900(); void _ipv4_erspan_t3_rewrite_5397733(); void _negative_mirror_5418578(); void _urpf_miss_0_5413022(); void NoAction_195_5401838(); void NoAction_246_5401889(); void _decap_mpls_inner_ipv6_pop3_5390266(); void _decap_vxlan_inner_ipv4_5388981(); void _rid_0_5388627(); void NoAction_232_5401875(); void _ipv4_unicast_rewrite_5391799(); void _nop_118_5410060(); void _set_tunnel_termination_flag_1_5407367(); void _nop_30_5395737(); void _outer_ipv6_multicast_5408880(); void _set_icos_5418009(); void _int_set_src_5404399(); void _egress_l4_dst_port_0_5395517(); void _fib_hit_ecmp_5_5413238(); void _set_nexthop_details_for_post_routed_flood_5417293(); void _urpf_bd_0_5413472(); void _decap_inner_unknown_5388963(); void _on_miss_22_5413783(); void _storm_control_stats_2_5416373(); void NoAction_148_5388032(); void _sflow_ing_session_enable_5405260(); void _acl_permit_4_5410814(); void NoAction_177_5401820(); void _ipv6_lkp_5405608(); void _int_inst_6_5394673(); void _set_ip_dscp_marking_5391672(); void _nat_flow_0_5415053(); void NoAction_135_5388019(); void NoAction_211_5401854(); void _nop_39_5403884(); void _nop_127_5415382(); void parse_eompls(); void _racl_permit_5411765(); void _on_miss_16_5412304(); void _int_terminate_0_5404978(); void _set_egress_tcp_port_fields_5395442(); void _remove_vlan_double_tagged_5388740(); void _outer_ipv4_multicast_5408470(); void _set_multicast_flood_5416817(); void _ipv4_mtu_check_5392214(); void _int_meta_header_update_0_5394724(); void _set_mpls_rewrite_push1_5398239(); void _egress_nat_0_5395178(); void _decap_mpls_inner_ethernet_ipv4_pop1_5389787(); void parse_set_prio_med(); void _set_mpls_rewrite_push2_5398307(); void _nop_24_5395404(); void _mpls_ethernet_push1_rewrite_5397556(); void _ipsg_permit_special_0_5404263(); void _int_sink_update_vxlan_gpe_v4_5404334(); void NoAction_159_5388043(); void _decap_ip_inner_ipv4_5389625(); void _outer_rmac_hit_5405775(); void _set_valid_mpls_label3_0_5403171(); void _rewrite_ipv4_multicast_5687109(); void _copy_to_cpu_5418229(); void _ingress_port_mapping_0_5402096(); void NoAction_213_5401856(); void _set_src_nat_rewrite_index_5414859(); void NoAction_236_5401879(); void _ingress_l4_src_port_0_5409626(); void NoAction_229_5401872(); void parse_qinq_vlan(); void parse_set_prio_high(); void _nop_40_5404389(); void NoAction_147_5388031(); void _tunnel_mtu_check_5398040(); void NoAction_208_5401851(); void NoAction_209_5401852(); void _rewrite_ipv6_multicast_5391329(); void rmac_miss_0_5401917(); void _set_ingress_src_port_range_id_5409549(); void _validate_mpls_packet_5403205(); void _on_miss_18_5412952(); void _decap_mpls_inner_ethernet_non_ip_pop1_5389889(); void _int_set_header_0407_i10_5393778(); void _int_set_header_0407_i8_5393713(); void NoAction_228_5401871(); void parse_udp(); void _int_insert_0_5394249(); void _ipv6_multicast_route_5414460(); void NoAction_180_5401823(); void _nop_27_5395734(); void _rewrite_0_5391339(); void _nat_dst_0_5414964(); void NoAction_138_5388022(); void _multicast_bridge_star_g_hit_1_5413613(); void _set_l2_redirect_action_5416462(); void _set_mpls_rewrite_push3_5398417(); void _outer_multicast_bridge_star_g_hit_1_5408440(); void _racl_deny_0_5412579(); void _nop_41_5405099(); void _fib_hit_ecmp_0_5412398(); void _int_set_header_0003_i13_5393265(); void _mpls_5408147(); void _outer_multicast_route_bidir_star_g_hit_1_5408391(); void NoAction_140_5388024(); void _fabric_unicast_rewrite_5398569(); void NoAction_154_5388038(); void _int_sink_gpe_5404431(); void parse_qinq(); void _tunnel_dmac_rewrite_0_5398978(); void _set_valid_outer_multicast_packet_untagged_5402364(); void _set_twice_nat_nexthop_index_5414890(); void _set_valid_outer_unicast_packet_untagged_5402222(); void _src_vtep_hit_1_5407417(); void _int_set_e_bit_5394071(); void _nop_35_5399705(); void _set_multicast_route_action_5416743(); void NoAction_191_5401834(); void NoAction_163_5388047(); void _set_dst_nat_nexthop_index_2_5414815(); void _ipv6_fib_lpm_0_5413366(); void _ipv4_fib_lpm_0_5412496(); void _set_valid_outer_broadcast_packet_qinq_tagged_5402611(); void _set_twice_nat_nexthop_index_2_5414930(); void _ipv6_urpf_0_5413038(); void _nop_53_5409195(); void _on_miss_17_5412314(); void _compute_lkp_ipv6_hash_5415592(); void _decap_mpls_inner_ipv6_pop1_5389745(); void NoAction_175_5401818(); void _egress_filter_0_5400679(); void _int_inst_3_5394334(); void NoAction_166_5388050(); void _ingress_port_properties_0_5402148(); void _rewrite_tunnel_ipv4_dst_5395776(); void _nat_twice_0_5415259(); void _nop_9_5388381(); void _ipv4_urpf_hit_2_5412125(); void _tunnel_lookup_miss_2_5406557(); void _int_set_header_1_bos_5392363(); void _switch_fabric_multicast_packet_0_5406838(); void parse_fabric_header_cpu(); void _tunnel_src_rewrite_0_5399631(); void _decap_vxlan_inner_non_ip_5389093(); void _multicast_route_star_g_miss_2_5414552(); void _decap_genv_inner_ipv6_5389198(); void _validate_packet_0_5409361(); void _ipv4_multicast_route_5413850(); void _decap_gre_inner_ipv6_5389535(); void _ipv4_urpf_0_5412168(); void _outer_rmac_0_5406371(); void _ipv6_dest_vtep_5407673(); void parse_mpls(); void _int_no_sink_5404764(); void NoAction_242_5401885(); void _int_set_header_0003_i5_5392875(); void NoAction_178_5401821(); void NoAction_1_5388014(); void parse_fabric_header(); void _int_set_header_3_bos_5392395(); void _multicast_route_sm_star_g_hit_1_5413965(); void NoAction_234_5401877(); void _decap_vxlan_inner_ipv6_5389037(); void NoAction_132_5388016(); void _set_nat_src_rewrite_5394791(); void _cpu_rx_rewrite_5398079(); void NoAction_192_5401835(); void _acl_redirect_nexthop_5410208(); void _rewrite_multicast_0_5391440(); void _set_nat_dst_rewrite_5394826(); void _terminate_ipv6_over_mpls_0_5407989(); void NoAction_162_5388046(); void _outer_multicast_bridge_star_g_hit_2_5408850(); void _egress_l4_src_port_0_5395576(); void _nop_11_5388690(); void _fwd_result_0_5416861(); void _inner_ipv6_unknown_rewrite_5396229(); void NoAction_256_5401899(); void NoAction_239_5401882(); void _non_ip_lkp_5405402(); void _nop_125_5414215(); void _drop_stats_4_5418619(); void _egress_mirror_drop_5400996(); void egress_port_type_cpu_0_5388126(); void _egress_acl_deny_3_5399730(); void _decap_nvgre_inner_non_ip_5389431(); void NoAction_134_5388018(); void NoAction_220_5401863(); void _rewrite_tunnel_smac_5398855(); void _mpls_ip_push2_rewrite_5397648(); void _set_valid_outer_unicast_packet_single_tagged_5402247(); void _dmac_redirect_nexthop_5409770(); void _int_set_header_0003_i14_5393332(); void _decap_mpls_inner_ethernet_ipv6_pop1_5389838(); void NoAction_238_5401881(); void egress_port_type_fabric_0_5388096(); void _acl_mirror_5410380(); void parse_int_header(); void _int_set_header_0003_i0_5392723(); void _ingress_bd_stats_2_5416225(); void _outer_multicast_bridge_s_g_hit_2_5408722(); void _int_inst_5_5394622(); void NoAction_156_5388040(); void _set_ingress_port_properties_5402030(); void NoAction_179_5401822(); void _system_acl_0_5418657(); void _set_queue_5418027(); void _set_ingress_tc_and_color_2_5403973(); void _rewrite_tunnel_ipv4_src_5398873(); void _nop_13_5390876(); void _urpf_miss_5412152(); void _computed_one_hash_5415812(); void _nop_116_5409683(); void _set_lag_miss_5417591(); void _dmac_miss_5409748(); void _fib_hit_nexthop_6_5413215(); void _decap_genv_inner_ipv4_5389142(); void _ipv4_racl_0_5411955(); void _int_add_update_vxlan_gpe_ipv4_5400215(); void NoAction_137_5388021(); void _inner_ipv4_udp_rewrite_5395812(); void parse_inner_udp(); void _set_replica_copy_bridged_5388392(); void _int_set_header_0003_i2_5392767(); void parse_mpls_bos(); void _tunnel_rewrite_0_5399481(); void _on_miss_15_5412082(); void _int_outer_encap_0_5400298(); void _set_ingress_color_2_5403934(); void _nop_135_5417999(); void _fib_hit_ecmp_5412368(); void _drop_packet_with_reason_5418552(); void _inner_ipv6_tcp_rewrite_5396101(); void _egress_redirect_to_cpu_with_reason_5400902(); void _set_acl_redirect_action_5416599(); void NoAction_193_5401836(); void _nop_14_5391541(); void NoAction_217_5401860(); void parse_ipv6_in_ip(); void _tunnel_encap_process_inner_0_5399098(); void _inner_ipv4_tcp_rewrite_5395874(); void _outer_multicast_route_sm_star_g_hit_1_5408342(); void NoAction_171_5388055(); void _ipv6_lkp_2_5405690(); void _set_ingress_tc_5403885(); void _set_nat_src_dst_rewrite_5394859(); void _terminate_eompls_0_5407833(); void _fabric_ingress_dst_lkp_5407150(); void _ipsg_0_5404180(); void _meter_index_2_5415403(); void _l3_rewrite_0_5392013(); void _outer_multicast_route_sm_star_g_hit_2_5408752(); void _decap_mpls_inner_ipv4_pop3_5390202(); void _egress_qos_map_0_5391708(); void _nop_21_5394781(); void _terminate_pw_0_5408063(); void _on_miss_21_5413569(); void NoAction_205_5401848(); void _set_unicast_5409205(); void NoAction_164_5388048(); void _nexthop_0_5417431(); void _set_egress_bd_properties_5391551(); void parse_sflow(); void _set_malformed_outer_ipv6_packet_0_5402990(); void _acl_redirect_ecmp_4_5411126(); void _set_egress_filter_drop_5400663(); void _on_miss_19_5413174(); void _ipv4_urpf_hit_5412092(); void _set_valid_outer_multicast_packet_qinq_tagged_5402469(); void _meter_permit_5416060(); void NoAction_181_5401824(); void _set_nat_src_dst_udp_rewrite_5394982(); void NoAction_252_5401895(); void _ipv4_vxlan_rewrite_5396317(); void _egress_acl_permit_5399766(); void _mpls_ip_push1_rewrite_5397589(); void _nop_12_5390866(); void _egress_bd_map_0_5391585(); void _set_bd_properties_5403475(); void _ingress_qos_map_pcp_0_5404075(); void _set_tunnel_rewrite_details_5398189(); void _nop_136_5418219(); void _decap_mpls_inner_ipv4_pop1_5389703(); void _set_mpls_exp_marking_5391654(); void _mac_acl_0_5410469(); void _nop_44_5406626(); void _decap_inner_udp_5388872(); void _int_set_header_5_bos_5392427(); void _nop_34_5399704(); void NoAction_144_5388028(); void _racl_redirect_nexthop_0_5412685(); void NoAction_224_5401867(); void NoAction_176_5401819(); void _nop_29_5395736(); void NoAction_227_5401870(); void _int_set_no_src_5404415(); void _set_ingress_dst_port_range_id_5409531(); void _terminate_fabric_multicast_packet_0_5406863(); void _set_valid_outer_broadcast_packet_untagged_5402506(); void _dmac_redirect_ecmp_5409800(); void _egress_ipv6_acl_0_5399937(); void _int_set_header_0407_i1_5393487(); void NoAction_241_5401884(); void _port_vlan_mapping_0_5403668(); void parse_ipv4_in_ip(); void _nop_45_5406636(); void _mtu_0_5392260(); void _ipv4_multicast_rewrite_5391838(); void _set_ingress_ifindex_properties_0_5406957(); void _mpls_ip_push3_rewrite_5397707(); void _on_miss_36_5414774(); void _mpls_ethernet_push2_rewrite_5397615(); void _outer_multicast_route_s_g_hit_1_5408269(); void NoAction_155_5388039(); void _decap_inner_tcp_5388897(); void parse_int_val(); void NoAction_194_5401837(); void _decap_mpls_inner_ethernet_ipv6_pop3_5390403(); void _outer_multicast_route_s_g_hit_2_5408679(); void _meter_action_0_5416100(); void _fib_hit_nexthop_5_5413185(); void _on_miss_20_5413184(); void _nop_47_5407595(); void _acl_redirect_ecmp_5410294(); void _nop_31_5395738(); void _int_set_header_0407_i5_5393594(); void _set_ingress_tc_2_5403903(); void _set_valid_outer_unicast_packet_qinq_tagged_5402327(); void NoAction_161_5388045(); void _set_fabric_multicast_5417888(); void start(); void NoAction_247_5401890(); void _racl_deny_5411709(); void _decap_genv_inner_non_ip_5389254(); void _set_mpls_swap_push_rewrite_l2_5391063(); void NoAction_200_5401843(); void _ipv4_multicast_bridge_star_g_5413716(); void _nop_18_5392485(); void _egress_bd_stats_2_5395316(); void _set_egress_icmp_port_fields_5395498(); void _acl_deny_4_5410682(); void _ecmp_group_0_5417336(); void _sflow_ingress_0_5405298(); void _nop_129_5416452(); void _int_set_header_0407_i7_5393666(); void _nop_132_5417494(); void _nop_131_5417114(); void _ipv4_gre_rewrite_5396824(); void parse_vlan(); void _multicast_route_bidir_star_g_hit_1_5414015(); void _int_set_header_0407_i2_5393511(); void parse_fabric_payload_header(); void parse_nvgre(); void NoAction_197_5401840(); void _egress_copy_to_cpu_5400773(); void _set_nat_dst_udp_rewrite_5394941(); void _int_set_header_0407_i3_5393535(); void _inner_ipv6_icmp_rewrite_5396165(); void _compute_lkp_non_ip_hash_5415724(); void _rewrite_tunnel_dmac_5395758(); void _nop_38_5403874(); void _decap_nvgre_inner_ipv6_5389367(); void NoAction_240_5401883(); void _set_lag_remote_port_5417618(); void _terminate_fabric_unicast_packet_0_5406741(); void _compute_ipv6_hashes_0_5415899(); void _set_mpls_push_rewrite_l3_5391242(); void _int_update_vxlan_gpe_ipv4_5400163(); void _mpls_ethernet_push3_rewrite_5397674(); void NoAction_210_5401853(); void NoAction_157_5388041(); void egress_port_mapping_5388156(); void _egress_acl_permit_4_5399797(); void _set_unicast_and_ipv6_src_is_link_local_5409221(); void _rewrite_tunnel_ipv6_src_5398891(); void _decap_mpls_inner_ethernet_non_ip_pop2_5390155(); void _egress_l4port_fields_0_5395633(); void _decap_inner_icmp_5388930(); void parse_vxlan_gpe(); void _nop_15_5391644(); void NoAction_214_5401857(); void _decap_nvgre_inner_ipv4_5389303(); void parse_inner_ipv6(); void parse_inner_ipv4(); void _set_icos_and_queue_5418045(); void _ipv4_urpf_lpm_0_5412237(); void _racl_permit_0_5412635(); void _set_tunnel_vni_and_termination_flag_2_5407621(); void _set_ingress_tc_and_color_5403947(); void NoAction_237_5401880(); void _terminate_tunnel_inner_ethernet_ipv6_5406083(); void _fabric_lag_0_5417908(); void _on_miss_23_5414181(); void _mtu_miss_5392198(); void _nop_33_5399694(); void _int_set_header_0003_i8_5393039(); void _acl_deny_0_5410603(); void _nop_32_5395739(); void _compute_non_ip_hashes_0_5415946(); void _terminate_tunnel_inner_ipv4_5405986(); void _set_valid_mpls_label1_0_5403103(); void _int_transit_5392488(); void _ipv6_multicast_bridge_5414249(); void _malformed_outer_ethernet_packet_5402198(); void _nop_19_5392486(); void _computed_two_hashes_5415783(); void _nop_123_5413439(); void egress_port_type_normal_0_5388056(); void _set_cpu_redirect_action_5416560(); void _update_ingress_bd_stats_5416203(); void NoAction_250_5401893(); void _decap_ip_inner_ipv6_5389664(); typedef struct { uint32_t ingress_port : 9; uint32_t egress_spec : 9; uint32_t egress_port : 9; uint32_t clone_spec : 32; uint32_t instance_type : 32; uint8_t drop : 1; uint32_t recirculate_port : 16; uint32_t packet_length : 32; uint32_t enq_timestamp : 32; uint32_t enq_qdepth : 19; uint32_t deq_timedelta : 32; uint32_t deq_qdepth : 19; uint64_t ingress_global_timestamp : 48; uint32_t lf_field_list : 32; uint32_t mcast_grp : 16; uint8_t resubmit_flag : 1; uint32_t egress_rid : 16; } standard_metadata_t; void mark_to_drop() { assert_forward = 0; end_assertions(); exit(0); } typedef struct { uint8_t acl_deny : 1; uint8_t racl_deny : 1; uint32_t acl_nexthop : 16; uint32_t racl_nexthop : 16; uint8_t acl_nexthop_type : 2; uint8_t racl_nexthop_type : 2; uint8_t acl_redirect : 1; uint8_t racl_redirect : 1; uint32_t if_label : 16; uint32_t bd_label : 16; uint32_t acl_stats_index : 14; uint32_t egress_if_label : 16; uint32_t egress_bd_label : 16; uint8_t ingress_src_port_range_id : 8; uint8_t ingress_dst_port_range_id : 8; uint8_t egress_src_port_range_id : 8; uint8_t egress_dst_port_range_id : 8; } acl_metadata_t; typedef struct { uint32_t ifindex_check : 16; uint32_t bd : 16; uint32_t inner_bd : 16; } egress_filter_metadata_t; typedef struct { uint8_t bypass : 1; uint8_t port_type : 2; uint32_t payload_length : 16; uint32_t smac_idx : 9; uint32_t bd : 16; uint32_t outer_bd : 16; uint64_t mac_da : 48; uint8_t routed : 1; uint32_t same_bd_check : 16; uint8_t drop_reason : 8; uint32_t ifindex : 16; } egress_metadata_t; typedef struct { uint8_t packetType : 3; uint8_t fabric_header_present : 1; uint32_t reason_code : 16; uint8_t dst_device : 8; uint32_t dst_port : 16; } fabric_metadata_t; typedef struct { uint8_t enable_dod : 1; } global_config_metadata_t; typedef struct { uint32_t hash1 : 16; uint32_t hash2 : 16; uint32_t entropy_hash : 16; } hash_metadata_t; typedef struct { uint32_t ingress_tstamp : 32; uint32_t mirror_session_id : 16; } i2e_metadata_t; typedef struct { uint32_t ingress_port : 9; uint32_t ifindex : 16; uint32_t egress_ifindex : 16; uint8_t port_type : 2; uint32_t outer_bd : 16; uint32_t bd : 16; uint8_t drop_flag : 1; uint8_t drop_reason : 8; uint8_t control_frame : 1; uint32_t bypass_lookups : 16; uint32_t sflow_take_sample : 32; } ingress_metadata_t; typedef struct { uint32_t switch_id : 32; uint8_t insert_cnt : 8; uint32_t insert_byte_cnt : 16; uint32_t gpe_int_hdr_len : 16; uint8_t gpe_int_hdr_len8 : 8; uint32_t instruction_cnt : 16; } int_metadata_t; typedef struct { uint8_t sink : 1; uint8_t source : 1; } int_metadata_i2e_t; typedef struct { uint8_t resubmit_flag : 1; uint64_t ingress_global_timestamp : 48; uint32_t mcast_grp : 16; uint8_t deflection_flag : 1; uint8_t deflect_on_drop : 1; uint8_t enq_congest_stat : 2; uint8_t deq_congest_stat : 2; uint32_t mcast_hash : 13; uint32_t egress_rid : 16; uint32_t lf_field_list : 32; uint8_t priority : 3; uint8_t ingress_cos : 3; uint8_t packet_color : 2; uint8_t qid : 5; } ingress_intrinsic_metadata_t; typedef struct { uint32_t lkp_ipv4_sa : 32; uint32_t lkp_ipv4_da : 32; uint8_t ipv4_unicast_enabled : 1; uint8_t ipv4_urpf_mode : 2; } ipv4_metadata_t; typedef struct { uint64_t lkp_ipv6_sa : 64; uint64_t lkp_ipv6_da : 64; uint8_t ipv6_unicast_enabled : 1; uint8_t ipv6_src_is_link_local : 1; uint8_t ipv6_urpf_mode : 2; } ipv6_metadata_t; typedef struct { uint64_t lkp_mac_sa : 48; uint64_t lkp_mac_da : 48; uint8_t lkp_pkt_type : 3; uint32_t lkp_mac_type : 16; uint8_t lkp_pcp : 3; uint32_t l2_nexthop : 16; uint8_t l2_nexthop_type : 2; uint8_t l2_redirect : 1; uint8_t l2_src_miss : 1; uint32_t l2_src_move : 16; uint32_t stp_group : 10; uint8_t stp_state : 3; uint32_t bd_stats_idx : 16; uint8_t learning_enabled : 1; uint8_t port_vlan_mapping_miss : 1; uint32_t same_if_check : 16; } l2_metadata_t; typedef struct { uint8_t lkp_ip_type : 2; uint8_t lkp_ip_version : 4; uint8_t lkp_ip_proto : 8; uint8_t lkp_dscp : 8; uint8_t lkp_ip_ttl : 8; uint32_t lkp_l4_sport : 16; uint32_t lkp_l4_dport : 16; uint32_t lkp_outer_l4_sport : 16; uint32_t lkp_outer_l4_dport : 16; uint32_t vrf : 16; uint32_t rmac_group : 10; uint8_t rmac_hit : 1; uint8_t urpf_mode : 2; uint8_t urpf_hit : 1; uint8_t urpf_check_fail : 1; uint32_t urpf_bd_group : 16; uint8_t fib_hit : 1; uint32_t fib_nexthop : 16; uint8_t fib_nexthop_type : 2; uint32_t same_bd_check : 16; uint32_t nexthop_index : 16; uint8_t routed : 1; uint8_t outer_routed : 1; uint8_t mtu_index : 8; uint8_t l3_copy : 1; uint32_t l3_mtu_check : 16; uint32_t egress_l4_sport : 16; uint32_t egress_l4_dport : 16; } l3_metadata_t; typedef struct { uint8_t packet_color : 2; uint32_t meter_index : 16; } meter_metadata_t; typedef struct { uint8_t ipv4_mcast_key_type : 1; uint32_t ipv4_mcast_key : 16; uint8_t ipv6_mcast_key_type : 1; uint32_t ipv6_mcast_key : 16; uint8_t outer_mcast_route_hit : 1; uint8_t outer_mcast_mode : 2; uint8_t mcast_route_hit : 1; uint8_t mcast_bridge_hit : 1; uint8_t ipv4_multicast_enabled : 1; uint8_t ipv6_multicast_enabled : 1; uint8_t igmp_snooping_enabled : 1; uint8_t mld_snooping_enabled : 1; uint32_t bd_mrpf_group : 16; uint32_t mcast_rpf_group : 16; uint8_t mcast_mode : 2; uint32_t multicast_route_mc_index : 16; uint32_t multicast_bridge_mc_index : 16; uint8_t inner_replica : 1; uint8_t replica : 1; uint32_t mcast_grp : 16; } multicast_metadata_t; typedef struct { uint8_t ingress_nat_mode : 2; uint8_t egress_nat_mode : 2; uint32_t nat_nexthop : 16; uint8_t nat_nexthop_type : 2; uint8_t nat_hit : 1; uint32_t nat_rewrite_index : 14; uint8_t update_checksum : 1; uint8_t update_inner_checksum : 1; uint32_t l4_len : 16; } nat_metadata_t; typedef struct { uint8_t nexthop_type : 2; } nexthop_metadata_t; typedef struct { uint8_t ingress_qos_group : 5; uint8_t tc_qos_group : 5; uint8_t egress_qos_group : 5; uint8_t lkp_tc : 8; uint8_t trust_dscp : 1; uint8_t trust_pcp : 1; } qos_metadata_t; typedef struct { uint64_t enq_timestamp : 48; uint32_t enq_qdepth : 16; uint32_t deq_timedelta : 32; uint32_t deq_qdepth : 16; } queueing_metadata_t; typedef struct { uint8_t ipsg_enabled : 1; uint8_t ipsg_check_fail : 1; } security_metadata_t; typedef struct { uint32_t sflow_session_id : 16; } sflow_meta_t; typedef struct { uint8_t ingress_tunnel_type : 5; uint32_t tunnel_vni : 24; uint8_t mpls_enabled : 1; uint32_t mpls_label : 20; uint8_t mpls_exp : 3; uint8_t mpls_ttl : 8; uint8_t egress_tunnel_type : 5; uint32_t tunnel_index : 14; uint32_t tunnel_src_index : 9; uint32_t tunnel_smac_index : 9; uint32_t tunnel_dst_index : 14; uint32_t tunnel_dmac_index : 14; uint32_t vnid : 24; uint8_t tunnel_terminate : 1; uint8_t tunnel_if_check : 1; uint8_t egress_header_count : 4; uint8_t inner_ip_proto : 8; uint8_t skip_encap_inner : 1; } tunnel_metadata_t; typedef struct { uint8_t isValid : 1; uint8_t version : 3; uint8_t diag : 5; uint8_t state : 2; uint8_t p : 1; uint8_t f : 1; uint8_t c : 1; uint8_t a : 1; uint8_t d : 1; uint8_t m : 1; uint8_t detectMult : 8; uint8_t len : 8; uint32_t myDiscriminator : 32; uint32_t yourDiscriminator : 32; uint32_t desiredMinTxInterval : 32; uint32_t requiredMinRxInterval : 32; uint32_t requiredMinEchoRxInterval : 32; } bfd_t; typedef struct { uint8_t isValid : 1; uint8_t zero : 4; uint32_t reserved : 12; uint32_t seqNo : 16; } eompls_t; typedef struct { uint8_t isValid : 1; uint8_t version : 4; uint32_t vlan : 12; uint8_t priority : 6; uint32_t span_id : 10; uint32_t timestamp : 32; uint32_t sgt : 16; uint32_t ft_d_other : 16; } erspan_header_t3_t_0; typedef struct { uint8_t isValid : 1; uint64_t dstAddr : 48; uint64_t srcAddr : 48; uint32_t etherType : 16; } ethernet_t; typedef struct { uint8_t isValid : 1; uint8_t packetType : 3; uint8_t headerVersion : 2; uint8_t packetVersion : 2; uint8_t pad1 : 1; uint8_t fabricColor : 3; uint8_t fabricQos : 5; uint8_t dstDevice : 8; uint32_t dstPortOrGroup : 16; } fabric_header_t; typedef struct { uint8_t isValid : 1; uint8_t egressQueue : 5; uint8_t txBypass : 1; uint8_t reserved : 2; uint32_t ingressPort : 16; uint32_t ingressIfindex : 16; uint32_t ingressBd : 16; uint32_t reasonCode : 16; uint32_t mcast_grp : 16; } fabric_header_cpu_t; typedef struct { uint8_t isValid : 1; uint32_t rewriteIndex : 16; uint32_t egressPort : 10; uint8_t egressQueue : 5; uint8_t pad : 1; } fabric_header_mirror_t; typedef struct { uint8_t isValid : 1; uint8_t routed : 1; uint8_t outerRouted : 1; uint8_t tunnelTerminate : 1; uint8_t ingressTunnelType : 5; uint32_t ingressIfindex : 16; uint32_t ingressBd : 16; uint32_t mcastGrp : 16; } fabric_header_multicast_t; typedef struct { uint8_t isValid : 1; uint32_t sflow_session_id : 16; uint32_t sflow_egress_ifindex : 16; } fabric_header_sflow_t; typedef struct { uint8_t isValid : 1; uint8_t routed : 1; uint8_t outerRouted : 1; uint8_t tunnelTerminate : 1; uint8_t ingressTunnelType : 5; uint32_t nexthopIndex : 16; } fabric_header_unicast_t; typedef struct { uint8_t isValid : 1; uint32_t etherType : 16; } fabric_payload_header_t; typedef struct { uint8_t isValid : 1; uint8_t version : 4; uint8_t type_ : 4; uint8_t sof : 8; uint32_t rsvd1 : 32; uint32_t ts_upper : 32; uint32_t ts_lower : 32; uint32_t size_ : 32; uint8_t eof : 8; uint32_t rsvd2 : 24; } fcoe_header_t; typedef struct { uint8_t isValid : 1; uint8_t ver : 2; uint8_t optLen : 6; uint8_t oam : 1; uint8_t critical : 1; uint8_t reserved : 6; uint32_t protoType : 16; uint32_t vni : 24; uint8_t reserved2 : 8; } genv_t; typedef struct { uint8_t isValid : 1; uint8_t C : 1; uint8_t R : 1; uint8_t K : 1; uint8_t S : 1; uint8_t s : 1; uint8_t recurse : 3; uint8_t flags : 5; uint8_t ver : 3; uint32_t proto : 16; } gre_t; typedef struct { uint8_t isValid : 1; uint32_t typeCode : 16; uint32_t hdrChecksum : 16; } icmp_t; typedef struct { uint8_t isValid : 1; uint8_t version : 4; uint8_t ihl : 4; uint8_t diffserv : 8; uint32_t totalLen : 16; uint32_t identification : 16; uint8_t flags : 3; uint32_t fragOffset : 13; uint8_t ttl : 8; uint8_t protocol : 8; uint32_t hdrChecksum : 16; uint32_t srcAddr : 32; uint32_t dstAddr : 32; } ipv4_t; typedef struct { uint8_t isValid : 1; uint8_t version : 4; uint8_t trafficClass : 8; uint32_t flowLabel : 20; uint32_t payloadLen : 16; uint8_t nextHdr : 8; uint8_t hopLimit : 8; uint64_t srcAddr : 64; uint64_t dstAddr : 64; } ipv6_t; typedef struct { uint8_t isValid : 1; uint32_t srcPort : 16; uint32_t dstPort : 16; uint32_t verifTag : 32; uint32_t checksum : 32; } sctp_t; typedef struct { uint8_t isValid : 1; uint32_t srcPort : 16; uint32_t dstPort : 16; uint32_t seqNo : 32; uint32_t ackNo : 32; uint8_t dataOffset : 4; uint8_t res : 4; uint8_t flags : 8; uint32_t window : 16; uint32_t checksum : 16; uint32_t urgentPtr : 16; } tcp_t; typedef struct { uint8_t isValid : 1; uint32_t srcPort : 16; uint32_t dstPort : 16; uint32_t length_ : 16; uint32_t checksum : 16; } udp_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t egress_port_id : 31; } int_egress_port_id_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t egress_port_tx_utilization : 31; } int_egress_port_tx_utilization_header_t; typedef struct { uint8_t isValid : 1; uint8_t ver : 2; uint8_t rep : 2; uint8_t c : 1; uint8_t e : 1; uint8_t rsvd1 : 5; uint8_t ins_cnt : 5; uint8_t max_hop_cnt : 8; uint8_t total_hop_cnt : 8; uint8_t instruction_mask_0003 : 4; uint8_t instruction_mask_0407 : 4; uint8_t instruction_mask_0811 : 4; uint8_t instruction_mask_1215 : 4; uint32_t rsvd2 : 16; } int_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t hop_latency : 31; } int_hop_latency_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t ingress_port_id_1 : 15; uint32_t ingress_port_id_0 : 16; } int_ingress_port_id_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t ingress_tstamp : 31; } int_ingress_tstamp_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t q_congestion : 31; } int_q_congestion_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint8_t q_occupancy1 : 7; uint32_t q_occupancy0 : 24; } int_q_occupancy_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t switch_id : 31; } int_switch_id_header_t; typedef struct { uint8_t isValid : 1; uint8_t flags : 8; uint32_t nonce : 24; uint32_t lsbsInstanceId : 32; } lisp_t; typedef struct { uint8_t isValid : 1; uint8_t dsap : 8; uint8_t ssap : 8; uint8_t control_ : 8; } llc_header_t; typedef struct { uint8_t isValid : 1; uint8_t oam : 1; uint8_t context : 1; uint8_t flags : 6; uint8_t reserved : 8; uint32_t protoType : 16; uint32_t spath : 24; uint8_t sindex : 8; } nsh_t; typedef struct { uint8_t isValid : 1; uint32_t network_platform : 32; uint32_t network_shared : 32; uint32_t service_platform : 32; uint32_t service_shared : 32; } nsh_context_t; typedef struct { uint8_t isValid : 1; uint32_t tni : 24; uint8_t flow_id : 8; } nvgre_t; typedef struct { uint8_t isValid : 1; uint64_t ib_grh : 64; uint64_t ib_bth : 64; } roce_header_t; typedef struct { uint8_t isValid : 1; uint64_t ib_bth : 64; } roce_v2_header_t; typedef struct { uint8_t isValid : 1; uint32_t version : 32; uint32_t addrType : 32; uint32_t ipAddress : 32; uint32_t subAgentId : 32; uint32_t seqNumber : 32; uint32_t uptime : 32; uint32_t numSamples : 32; } sflow_hdr_t; typedef struct { uint8_t isValid : 1; uint32_t enterprise : 20; uint32_t format : 12; uint32_t flowDataLength : 32; uint32_t headerProtocol : 32; uint32_t frameLength : 32; uint32_t bytesRemoved : 32; uint32_t headerSize : 32; } sflow_raw_hdr_record_t; typedef struct { uint8_t isValid : 1; uint32_t enterprise : 20; uint32_t format : 12; uint32_t sampleLength : 32; uint32_t seqNumer : 32; uint8_t srcIdType : 8; uint32_t srcIdIndex : 24; uint32_t samplingRate : 32; uint32_t samplePool : 32; uint32_t numDrops : 32; uint32_t inputIfindex : 32; uint32_t outputIfindex : 32; uint32_t numFlowRecords : 32; } sflow_sample_t; typedef struct { uint8_t isValid : 1; uint32_t oui : 24; uint32_t type_ : 16; } snap_header_t; typedef struct { uint8_t isValid : 1; uint8_t version : 2; uint8_t reserved : 2; uint8_t multiDestination : 1; uint8_t optLength : 5; uint8_t hopCount : 6; uint32_t egressRbridge : 16; uint32_t ingressRbridge : 16; } trill_t; typedef struct { uint8_t isValid : 1; uint8_t direction : 1; uint8_t pointer : 1; uint32_t destVif : 14; uint8_t looped : 1; uint8_t reserved : 1; uint8_t version : 2; uint32_t srcVif : 12; } vntag_t; typedef struct { uint8_t isValid : 1; uint8_t flags : 8; uint32_t reserved : 24; uint32_t vni : 24; uint8_t reserved2 : 8; } vxlan_t; typedef struct { uint8_t isValid : 1; uint8_t flags : 8; uint32_t reserved : 16; uint8_t next_proto : 8; uint32_t vni : 24; uint8_t reserved2 : 8; } vxlan_gpe_t; typedef struct { uint8_t isValid : 1; uint8_t int_type : 8; uint8_t rsvd : 8; uint8_t len : 8; uint8_t next_proto : 8; } vxlan_gpe_int_header_t; typedef struct { uint8_t isValid : 1; uint8_t bos : 1; uint32_t val : 31; } int_value_t; typedef struct { uint8_t isValid : 1; uint32_t label : 20; uint8_t exp : 3; uint8_t bos : 1; uint8_t ttl : 8; } mpls_t; typedef struct { uint8_t isValid : 1; uint8_t pcp : 3; uint8_t cfi : 1; uint32_t vid : 12; uint32_t etherType : 16; } vlan_tag_t; typedef struct { acl_metadata_t acl_metadata; egress_filter_metadata_t egress_filter_metadata; egress_metadata_t egress_metadata; fabric_metadata_t fabric_metadata; global_config_metadata_t global_config_metadata; hash_metadata_t hash_metadata; i2e_metadata_t i2e_metadata; ingress_metadata_t ingress_metadata; int_metadata_t int_metadata; int_metadata_i2e_t int_metadata_i2e; ingress_intrinsic_metadata_t intrinsic_metadata; ipv4_metadata_t ipv4_metadata; ipv6_metadata_t ipv6_metadata; l2_metadata_t l2_metadata; l3_metadata_t l3_metadata; meter_metadata_t meter_metadata; multicast_metadata_t multicast_metadata; nat_metadata_t nat_metadata; nexthop_metadata_t nexthop_metadata; qos_metadata_t qos_metadata; queueing_metadata_t queueing_metadata; security_metadata_t security_metadata; sflow_meta_t sflow_metadata; tunnel_metadata_t tunnel_metadata; } metadata; typedef struct { bfd_t bfd; eompls_t eompls; erspan_header_t3_t_0 erspan_t3_header; ethernet_t ethernet; fabric_header_t fabric_header; fabric_header_cpu_t fabric_header_cpu; fabric_header_mirror_t fabric_header_mirror; fabric_header_multicast_t fabric_header_multicast; fabric_header_sflow_t fabric_header_sflow; fabric_header_unicast_t fabric_header_unicast; fabric_payload_header_t fabric_payload_header; fcoe_header_t fcoe; genv_t genv; gre_t gre; icmp_t icmp; ethernet_t inner_ethernet; icmp_t inner_icmp; ipv4_t inner_ipv4; ipv6_t inner_ipv6; sctp_t inner_sctp; tcp_t inner_tcp; udp_t inner_udp; int_egress_port_id_header_t int_egress_port_id_header; int_egress_port_tx_utilization_header_t int_egress_port_tx_utilization_header; int_header_t int_header; int_hop_latency_header_t int_hop_latency_header; int_ingress_port_id_header_t int_ingress_port_id_header; int_ingress_tstamp_header_t int_ingress_tstamp_header; int_q_congestion_header_t int_q_congestion_header; int_q_occupancy_header_t int_q_occupancy_header; int_switch_id_header_t int_switch_id_header; ipv4_t ipv4; ipv6_t ipv6; lisp_t lisp; llc_header_t llc_header; nsh_t nsh; nsh_context_t nsh_context; nvgre_t nvgre; udp_t outer_udp; roce_header_t roce; roce_v2_header_t roce_v2; sctp_t sctp; sflow_hdr_t sflow; sflow_raw_hdr_record_t sflow_raw_hdr_record; sflow_sample_t sflow_sample; snap_header_t snap_header; tcp_t tcp; trill_t trill; udp_t udp; vntag_t vntag; vxlan_t vxlan; vxlan_gpe_t vxlan_gpe; vxlan_gpe_int_header_t vxlan_gpe_int_header; int int_val_index; int_value_t int_val[24]; int mpls_index; mpls_t mpls[3]; int vlan_tag__index; vlan_tag_t vlan_tag_[2]; } headers; headers hdr; metadata meta; standard_metadata_t standard_metadata; uint8_t tmp_0; void parse_arp_rarp() { parse_set_prio_med(); } void parse_eompls() { meta.tunnel_metadata.ingress_tunnel_type = 6; parse_inner_ethernet(); } void parse_erspan_t3() { //Extract hdr.erspan_t3_header hdr.erspan_t3_header.isValid = 1; parse_inner_ethernet(); } void parse_ethernet() { //Extract hdr.ethernet hdr.ethernet.isValid = 1; klee_assume(hdr.ethernet.etherType == 2048); //if(((hdr.ethernet.etherType & 65024) == (0 & 65024))){ // parse_llc_header(); //} else if(((hdr.ethernet.etherType & 64000) == (0 & 64000))){ // parse_llc_header(); // } else if((hdr.ethernet.etherType == 36864)){ // parse_fabric_header(); // } else if((hdr.ethernet.etherType == 33024)){ // parse_vlan(); // } else if((hdr.ethernet.etherType == 37120)){ // parse_qinq(); // } else if((hdr.ethernet.etherType == 34887)){ // parse_mpls(); // } else if((hdr.ethernet.etherType == 2048)){ parse_ipv4(); // } else if((hdr.ethernet.etherType == 34525)){ // parse_ipv6(); // } else if((hdr.ethernet.etherType == 2054)){ // parse_arp_rarp(); // } else if((hdr.ethernet.etherType == 35020)){ // parse_set_prio_high(); // } else if((hdr.ethernet.etherType == 34825)){ // parse_set_prio_high(); // } else { // accept(); // } } void parse_fabric_header() { //Extract hdr.fabric_header hdr.fabric_header.isValid = 1; if((hdr.fabric_header.packetType == 1)){ parse_fabric_header_unicast(); } else if((hdr.fabric_header.packetType == 2)){ parse_fabric_header_multicast(); } else if((hdr.fabric_header.packetType == 3)){ parse_fabric_header_mirror(); } else if((hdr.fabric_header.packetType == 5)){ parse_fabric_header_cpu(); } else { accept(); } } void parse_fabric_header_cpu() { //Extract hdr.fabric_header_cpu hdr.fabric_header_cpu.isValid = 1; meta.ingress_metadata.bypass_lookups = hdr.fabric_header_cpu.reasonCode; if((hdr.fabric_header_cpu.reasonCode == 4)){ parse_fabric_sflow_header(); } else { parse_fabric_payload_header(); } } void parse_fabric_header_mirror() { //Extract hdr.fabric_header_mirror hdr.fabric_header_mirror.isValid = 1; parse_fabric_payload_header(); } void parse_fabric_header_multicast() { //Extract hdr.fabric_header_multicast hdr.fabric_header_multicast.isValid = 1; parse_fabric_payload_header(); } void parse_fabric_header_unicast() { //Extract hdr.fabric_header_unicast hdr.fabric_header_unicast.isValid = 1; parse_fabric_payload_header(); } void parse_fabric_payload_header() { //Extract hdr.fabric_payload_header hdr.fabric_payload_header.isValid = 1; if(((hdr.fabric_payload_header.etherType & 65024) == (0 & 65024))){ parse_llc_header(); } else if(((hdr.fabric_payload_header.etherType & 64000) == (0 & 64000))){ parse_llc_header(); } else if((hdr.fabric_payload_header.etherType == 33024)){ parse_vlan(); } else if((hdr.fabric_payload_header.etherType == 37120)){ parse_qinq(); } else if((hdr.fabric_payload_header.etherType == 34887)){ parse_mpls(); } else if((hdr.fabric_payload_header.etherType == 2048)){ parse_ipv4(); } else if((hdr.fabric_payload_header.etherType == 34525)){ parse_ipv6(); } else if((hdr.fabric_payload_header.etherType == 2054)){ parse_arp_rarp(); } else if((hdr.fabric_payload_header.etherType == 35020)){ parse_set_prio_high(); } else if((hdr.fabric_payload_header.etherType == 34825)){ parse_set_prio_high(); } else { accept(); } } void parse_fabric_sflow_header() { //Extract hdr.fabric_header_sflow hdr.fabric_header_sflow.isValid = 1; parse_fabric_payload_header(); } void parse_geneve() { //Extract hdr.genv hdr.genv.isValid = 1; meta.tunnel_metadata.tunnel_vni = hdr.genv.vni; meta.tunnel_metadata.ingress_tunnel_type = 4; if((hdr.genv.ver == 0) && (hdr.genv.optLen == 0) && (hdr.genv.protoType == 25944)){ parse_inner_ethernet(); } else if((hdr.genv.ver == 0) && (hdr.genv.optLen == 0) && (hdr.genv.protoType == 2048)){ parse_inner_ipv4(); } else if((hdr.genv.ver == 0) && (hdr.genv.optLen == 0) && (hdr.genv.protoType == 34525)){ parse_inner_ipv6(); } else { accept(); } } void parse_gpe_int_header() { //Extract hdr.vxlan_gpe_int_header hdr.vxlan_gpe_int_header.isValid = 1; meta.int_metadata.gpe_int_hdr_len = (uint32_t) hdr.vxlan_gpe_int_header.len; parse_int_header(); } void parse_gre() { //Extract hdr.gre hdr.gre.isValid = 1; if((hdr.gre.C == 0) && (hdr.gre.R == 0) && (hdr.gre.K == 1) && (hdr.gre.S == 0) && (hdr.gre.s == 0) && (hdr.gre.recurse == 0) && (hdr.gre.flags == 0) && (hdr.gre.ver == 0) && (hdr.gre.proto == 25944)){ parse_nvgre(); } else if((hdr.gre.C == 0) && (hdr.gre.R == 0) && (hdr.gre.K == 0) && (hdr.gre.S == 0) && (hdr.gre.s == 0) && (hdr.gre.recurse == 0) && (hdr.gre.flags == 0) && (hdr.gre.ver == 0) && (hdr.gre.proto == 2048)){ parse_gre_ipv4(); } else if((hdr.gre.C == 0) && (hdr.gre.R == 0) && (hdr.gre.K == 0) && (hdr.gre.S == 0) && (hdr.gre.s == 0) && (hdr.gre.recurse == 0) && (hdr.gre.flags == 0) && (hdr.gre.ver == 0) && (hdr.gre.proto == 34525)){ parse_gre_ipv6(); } else if((hdr.gre.C == 0) && (hdr.gre.R == 0) && (hdr.gre.K == 0) && (hdr.gre.S == 0) && (hdr.gre.s == 0) && (hdr.gre.recurse == 0) && (hdr.gre.flags == 0) && (hdr.gre.ver == 0) && (hdr.gre.proto == 8939)){ parse_erspan_t3(); } else { accept(); } } void parse_gre_ipv4() { meta.tunnel_metadata.ingress_tunnel_type = 2; parse_inner_ipv4(); } void parse_gre_ipv6() { meta.tunnel_metadata.ingress_tunnel_type = 2; parse_inner_ipv6(); } void parse_icmp() { //Extract hdr.icmp hdr.icmp.isValid = 1; extract_header_hdr_icmp = 1; meta.l3_metadata.lkp_outer_l4_sport = hdr.icmp.typeCode; if(((hdr.icmp.typeCode & 65024) == (33280 & 65024))){ parse_set_prio_med(); } else if(((hdr.icmp.typeCode & 64512) == (33792 & 64512))){ parse_set_prio_med(); } else if(((hdr.icmp.typeCode & 65280) == (34816 & 65280))){ parse_set_prio_med(); } else { accept(); } } void parse_inner_ethernet() { //Extract hdr.inner_ethernet hdr.inner_ethernet.isValid = 1; meta.l2_metadata.lkp_mac_sa = hdr.inner_ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.inner_ethernet.dstAddr; if((hdr.inner_ethernet.etherType == 2048)){ parse_inner_ipv4(); } else if((hdr.inner_ethernet.etherType == 34525)){ parse_inner_ipv6(); } else { accept(); } } void parse_inner_icmp() { //Extract hdr.inner_icmp hdr.inner_icmp.isValid = 1; meta.l3_metadata.lkp_l4_sport = hdr.inner_icmp.typeCode; accept(); } void parse_inner_ipv4() { //Extract hdr.inner_ipv4 hdr.inner_ipv4.isValid = 1; meta.ipv4_metadata.lkp_ipv4_sa = hdr.inner_ipv4.srcAddr; meta.ipv4_metadata.lkp_ipv4_da = hdr.inner_ipv4.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.inner_ipv4.protocol; meta.l3_metadata.lkp_ip_ttl = hdr.inner_ipv4.ttl; if((hdr.inner_ipv4.fragOffset == 0) && (hdr.inner_ipv4.ihl == 5) && (hdr.inner_ipv4.protocol == 1)){ parse_inner_icmp(); } else if((hdr.inner_ipv4.fragOffset == 0) && (hdr.inner_ipv4.ihl == 5) && (hdr.inner_ipv4.protocol == 6)){ parse_inner_tcp(); } else if((hdr.inner_ipv4.fragOffset == 0) && (hdr.inner_ipv4.ihl == 5) && (hdr.inner_ipv4.protocol == 17)){ parse_inner_udp(); } else { accept(); } } void parse_inner_ipv6() { //Extract hdr.inner_ipv6 hdr.inner_ipv6.isValid = 1; meta.ipv6_metadata.lkp_ipv6_sa = hdr.inner_ipv6.srcAddr; meta.ipv6_metadata.lkp_ipv6_da = hdr.inner_ipv6.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.inner_ipv6.nextHdr; meta.l3_metadata.lkp_ip_ttl = hdr.inner_ipv6.hopLimit; if((hdr.inner_ipv6.nextHdr == 58)){ parse_inner_icmp(); } else if((hdr.inner_ipv6.nextHdr == 6)){ parse_inner_tcp(); } else if((hdr.inner_ipv6.nextHdr == 17)){ parse_inner_udp(); } else { accept(); } } void parse_inner_tcp() { //Extract hdr.inner_tcp hdr.inner_tcp.isValid = 1; meta.l3_metadata.lkp_l4_sport = hdr.inner_tcp.srcPort; meta.l3_metadata.lkp_l4_dport = hdr.inner_tcp.dstPort; accept(); } void parse_inner_udp() { //Extract hdr.inner_udp hdr.inner_udp.isValid = 1; meta.l3_metadata.lkp_l4_sport = hdr.inner_udp.srcPort; meta.l3_metadata.lkp_l4_dport = hdr.inner_udp.dstPort; accept(); } void parse_int_header() { //Extract hdr.int_header hdr.int_header.isValid = 1; meta.int_metadata.instruction_cnt = (uint32_t) hdr.int_header.ins_cnt; if((hdr.int_header.rsvd1 == 0) && (hdr.int_header.total_hop_cnt == 0)){ accept(); } else if(((hdr.int_header.rsvd1 & 15) == (0 & 15)) && ((hdr.int_header.total_hop_cnt & 0) == (0 & 0))){ parse_int_val(); } else { accept(); } } void parse_int_val() { //Extract hdr.int_val.next hdr.int_val[hdr.int_val_index].isValid = 1; hdr.int_val_index++; if((hdr.int_val[hdr.int_val_index - 1].bos == 0)){ parse_int_val(); } else if((hdr.int_val[hdr.int_val_index - 1].bos == 1)){ parse_inner_ethernet(); } } void parse_ipv4() { //Extract hdr.ipv4 hdr.ipv4.isValid = 1; extract_header_hdr_ipv4 = 1; klee_assume((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 17)); //if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 1)){ // parse_icmp(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 6)){ // parse_tcp(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 17)){ parse_udp(); ////} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 47)){ // parse_gre(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 4)){ // parse_ipv4_in_ip(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 5) && (hdr.ipv4.protocol == 41)){ // parse_ipv6_in_ip(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 0) && (hdr.ipv4.protocol == 2)){ // parse_set_prio_med(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 0) && (hdr.ipv4.protocol == 88)){ // parse_set_prio_med(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 0) && (hdr.ipv4.protocol == 89)){ // parse_set_prio_med(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 0) && (hdr.ipv4.protocol == 103)){ // parse_set_prio_med(); //} else if((hdr.ipv4.fragOffset == 0) && (hdr.ipv4.ihl == 0) && (hdr.ipv4.protocol == 112)){ // parse_set_prio_med(); //} else { // accept(); //} } void parse_ipv4_in_ip() { meta.tunnel_metadata.ingress_tunnel_type = 3; parse_inner_ipv4(); } void parse_ipv6() { //Extract hdr.ipv6 hdr.ipv6.isValid = 1; extract_header_hdr_ipv6 = 1; if((hdr.ipv6.nextHdr == 58)){ parse_icmp(); } else if((hdr.ipv6.nextHdr == 6)){ parse_tcp(); } else if((hdr.ipv6.nextHdr == 4)){ parse_ipv4_in_ip(); } else if((hdr.ipv6.nextHdr == 17)){ parse_udp(); } else if((hdr.ipv6.nextHdr == 47)){ parse_gre(); } else if((hdr.ipv6.nextHdr == 41)){ parse_ipv6_in_ip(); } else if((hdr.ipv6.nextHdr == 88)){ parse_set_prio_med(); } else if((hdr.ipv6.nextHdr == 89)){ parse_set_prio_med(); } else if((hdr.ipv6.nextHdr == 103)){ parse_set_prio_med(); } else if((hdr.ipv6.nextHdr == 112)){ parse_set_prio_med(); } else { accept(); } } void parse_ipv6_in_ip() { meta.tunnel_metadata.ingress_tunnel_type = 3; parse_inner_ipv6(); } void parse_llc_header() { //Extract hdr.llc_header hdr.llc_header.isValid = 1; if((hdr.llc_header.dsap == 170) && (hdr.llc_header.ssap == 170)){ parse_snap_header(); } else if((hdr.llc_header.dsap == 254) && (hdr.llc_header.ssap == 254)){ parse_set_prio_med(); } else { accept(); } } void parse_mpls() { //Extract hdr.mpls.next hdr.mpls[hdr.mpls_index].isValid = 1; hdr.mpls_index++; if((hdr.mpls[hdr.mpls_index - 1].bos == 0)){ parse_mpls(); } else if((hdr.mpls[hdr.mpls_index - 1].bos == 1)){ parse_mpls_bos(); } else { accept(); } } void parse_mpls_bos() { klee_make_symbolic(&tmp_0, sizeof(tmp_0), "tmp_0"); if((BITSLICE(tmp_0, 3, 0) == 4)){ parse_mpls_inner_ipv4(); } else if((BITSLICE(tmp_0, 3, 0) == 6)){ parse_mpls_inner_ipv6(); } else { parse_eompls(); } } void parse_mpls_inner_ipv4() { meta.tunnel_metadata.ingress_tunnel_type = 9; parse_inner_ipv4(); } void parse_mpls_inner_ipv6() { meta.tunnel_metadata.ingress_tunnel_type = 9; parse_inner_ipv6(); } void parse_nvgre() { //Extract hdr.nvgre hdr.nvgre.isValid = 1; meta.tunnel_metadata.ingress_tunnel_type = 5; meta.tunnel_metadata.tunnel_vni = hdr.nvgre.tni; parse_inner_ethernet(); } void parse_qinq() { //Extract hdr.vlan_tag_[0] hdr.vlan_tag_[0].isValid = 1; if((hdr.vlan_tag_[0].etherType == 33024)){ parse_qinq_vlan(); } else { accept(); } } void parse_qinq_vlan() { //Extract hdr.vlan_tag_[1] hdr.vlan_tag_[1].isValid = 1; if((hdr.vlan_tag_[1].etherType == 34887)){ parse_mpls(); } else if((hdr.vlan_tag_[1].etherType == 2048)){ parse_ipv4(); } else if((hdr.vlan_tag_[1].etherType == 34525)){ parse_ipv6(); } else if((hdr.vlan_tag_[1].etherType == 2054)){ parse_arp_rarp(); } else if((hdr.vlan_tag_[1].etherType == 35020)){ parse_set_prio_high(); } else if((hdr.vlan_tag_[1].etherType == 34825)){ parse_set_prio_high(); } else { accept(); } } void parse_set_prio_high() { meta.intrinsic_metadata.priority = 5; accept(); } void parse_set_prio_med() { meta.intrinsic_metadata.priority = 3; accept(); } void parse_sflow() { //Extract hdr.sflow hdr.sflow.isValid = 1; accept(); } void parse_snap_header() { //Extract hdr.snap_header hdr.snap_header.isValid = 1; if((hdr.snap_header.type_ == 33024)){ parse_vlan(); } else if((hdr.snap_header.type_ == 37120)){ parse_qinq(); } else if((hdr.snap_header.type_ == 34887)){ parse_mpls(); } else if((hdr.snap_header.type_ == 2048)){ parse_ipv4(); } else if((hdr.snap_header.type_ == 34525)){ parse_ipv6(); } else if((hdr.snap_header.type_ == 2054)){ parse_arp_rarp(); } else if((hdr.snap_header.type_ == 35020)){ parse_set_prio_high(); } else if((hdr.snap_header.type_ == 34825)){ parse_set_prio_high(); } else { accept(); } } void parse_tcp() { //Extract hdr.tcp hdr.tcp.isValid = 1; extract_header_hdr_tcp = 1; meta.l3_metadata.lkp_outer_l4_sport = hdr.tcp.srcPort; meta.l3_metadata.lkp_outer_l4_dport = hdr.tcp.dstPort; if((hdr.tcp.dstPort == 179)){ parse_set_prio_med(); } else if((hdr.tcp.dstPort == 639)){ parse_set_prio_med(); } else { accept(); } } void parse_udp() { //Extract hdr.udp hdr.udp.isValid = 1; extract_header_hdr_udp = 1; meta.l3_metadata.lkp_outer_l4_sport = hdr.udp.srcPort; meta.l3_metadata.lkp_outer_l4_dport = hdr.udp.dstPort; klee_assume(hdr.udp.dstPort == 4789); parse_vxlan(); } void parse_vlan() { //Extract hdr.vlan_tag_[0] hdr.vlan_tag_[0].isValid = 1; if((hdr.vlan_tag_[0].etherType == 34887)){ parse_mpls(); } else if((hdr.vlan_tag_[0].etherType == 2048)){ parse_ipv4(); } else if((hdr.vlan_tag_[0].etherType == 34525)){ parse_ipv6(); } else if((hdr.vlan_tag_[0].etherType == 2054)){ parse_arp_rarp(); } else if((hdr.vlan_tag_[0].etherType == 35020)){ parse_set_prio_high(); } else if((hdr.vlan_tag_[0].etherType == 34825)){ parse_set_prio_high(); } else { accept(); } } void parse_vxlan() { //Extract hdr.vxlan hdr.vxlan.isValid = 1; meta.tunnel_metadata.ingress_tunnel_type = 1; meta.tunnel_metadata.tunnel_vni = hdr.vxlan.vni; parse_inner_ethernet(); } void parse_vxlan_gpe() { //Extract hdr.vxlan_gpe hdr.vxlan_gpe.isValid = 1; meta.tunnel_metadata.ingress_tunnel_type = 12; meta.tunnel_metadata.tunnel_vni = hdr.vxlan_gpe.vni; if(((hdr.vxlan_gpe.flags & 8) == (8 & 8)) && ((hdr.vxlan_gpe.next_proto & 255) == (5 & 255))){ parse_gpe_int_header(); } else { parse_inner_ethernet(); } } void start() { parse_ethernet(); } void accept() { } void reject() { assert_forward = 0; end_assertions(); exit(0); } void ParserImpl() { klee_make_symbolic(&hdr, sizeof(hdr), "hdr"); klee_make_symbolic(&meta, sizeof(meta), "meta"); klee_make_symbolic(&standard_metadata, sizeof(standard_metadata), "standard_metadata"); start(); } typedef struct { uint32_t field : 16; uint32_t field_0 : 16; uint32_t field_1 : 16; uint32_t field_2 : 9; } tuple_0; typedef struct { uint32_t field_3 : 32; uint32_t field_4 : 16; } tuple_1; //Control void egress() { klee_assume(meta.egress_metadata.bypass == 0); if((meta.intrinsic_metadata.deflection_flag == 0) && (meta.egress_metadata.bypass == 0)) { if((standard_metadata.instance_type != 0) && (standard_metadata.instance_type != 5)) { _mirror_0_5388310(); } else { if((meta.intrinsic_metadata.egress_rid != 0)) { _rid_0_5388627(); _replica_type_0_5388558(); } } egress_port_mapping_5388156(); if(action_run == 5388056) { if((standard_metadata.instance_type == 0) || (standard_metadata.instance_type == 5)) { _vlan_decap_0_5388791(); } if((meta.tunnel_metadata.tunnel_terminate == 1)) { if((meta.multicast_metadata.inner_replica == 1) || (meta.multicast_metadata.replica == 0)) { _tunnel_decap_process_outer_0_5390625(); _tunnel_decap_process_inner_0_5390534(); } } if((meta.egress_metadata.routed == 0) || (meta.l3_metadata.nexthop_index != 0)) { _rewrite_0_5391339(); } else { _rewrite_multicast_0_5391440(); } _egress_bd_map_0_5391585(); if((meta.ingress_metadata.bypass_lookups & 8 == 0)) { _egress_qos_map_0_5391708(); } if((meta.egress_metadata.routed == 1)) { _l3_rewrite_0_5392013(); _smac_rewrite_0_5392145(); traverse_5401372 = 1; } _mtu_0_5392260(); _int_insert_0_5394249(); if(action_run == 5392488) { if((meta.int_metadata.insert_cnt != 0)) { _int_inst_3_5394334(); _int_inst_4_5394475(); _int_inst_5_5394622(); _int_inst_6_5394673(); _int_bos_0_5394108(); } _int_meta_header_update_0_5394724(); } if((meta.nat_metadata.ingress_nat_mode != 0) && (meta.nat_metadata.ingress_nat_mode != meta.nat_metadata.egress_nat_mode)) { _egress_nat_0_5395178(); } _egress_bd_stats_2_5395316(); } _egress_l4port_fields_0_5395633(); _egress_l4_src_port_0_5395576(); _egress_l4_dst_port_0_5395517(); if((meta.fabric_metadata.fabric_header_present == 0) && (meta.tunnel_metadata.egress_tunnel_type != 0)) { _egress_vni_0_5398909(); if((meta.tunnel_metadata.egress_tunnel_type != 15) && (meta.tunnel_metadata.egress_tunnel_type != 16)) { _tunnel_encap_process_inner_0_5399098(); } _tunnel_encap_process_outer_0_5399239(); _tunnel_rewrite_0_5399481(); _tunnel_mtu_0_5399424(); _tunnel_src_rewrite_0_5399631(); _tunnel_dst_rewrite_0_5399035(); _tunnel_smac_rewrite_0_5399574(); _tunnel_dmac_rewrite_0_5398978(); } if((meta.egress_metadata.port_type == 0)) { if((hdr.ipv4.isValid == 1)) { _egress_ip_acl_0_5399810(); } else { if((hdr.ipv6.isValid == 1)) { _egress_ipv6_acl_0_5399937(); } else { _egress_mac_acl_0_5400060(); } } } if((meta.int_metadata.insert_cnt != 0)) { _int_outer_encap_0_5400298(); } if((meta.egress_metadata.port_type == 0)) { _egress_vlan_xlate_0_5400536(); } _egress_filter_0_5400679(); if((meta.multicast_metadata.inner_replica == 1)) { if((meta.tunnel_metadata.ingress_tunnel_type == 0) && (meta.tunnel_metadata.egress_tunnel_type == 0) && (meta.egress_filter_metadata.bd == 0) && (meta.egress_filter_metadata.ifindex_check == 0) || (meta.tunnel_metadata.ingress_tunnel_type != 0) && (meta.tunnel_metadata.egress_tunnel_type != 0) && (meta.egress_filter_metadata.inner_bd == 0)) { _egress_filter_drop_0_5400713(); } } } if((meta.egress_metadata.port_type == 0)) { if((meta.egress_metadata.bypass == 0)) { _egress_system_acl_0_5401042(); } } } // Action void NoAction_0_5388004() { action_run = 5388004; } // Action void NoAction_1_5388014() { action_run = 5388014; } // Action void NoAction_131_5388015() { action_run = 5388015; } // Action void NoAction_132_5388016() { action_run = 5388016; } // Action void NoAction_133_5388017() { action_run = 5388017; } // Action void NoAction_134_5388018() { action_run = 5388018; } // Action void NoAction_135_5388019() { action_run = 5388019; } // Action void NoAction_136_5388020() { action_run = 5388020; } // Action void NoAction_137_5388021() { action_run = 5388021; } // Action void NoAction_138_5388022() { action_run = 5388022; } // Action void NoAction_139_5388023() { action_run = 5388023; } // Action void NoAction_140_5388024() { action_run = 5388024; } // Action void NoAction_141_5388025() { action_run = 5388025; } // Action void NoAction_142_5388026() { action_run = 5388026; } // Action void NoAction_143_5388027() { action_run = 5388027; } // Action void NoAction_144_5388028() { action_run = 5388028; } // Action void NoAction_145_5388029() { action_run = 5388029; } // Action void NoAction_146_5388030() { action_run = 5388030; } // Action void NoAction_147_5388031() { action_run = 5388031; } // Action void NoAction_148_5388032() { action_run = 5388032; } // Action void NoAction_149_5388033() { action_run = 5388033; } // Action void NoAction_150_5388034() { action_run = 5388034; } // Action void NoAction_151_5388035() { action_run = 5388035; } // Action void NoAction_152_5388036() { action_run = 5388036; } // Action void NoAction_153_5388037() { action_run = 5388037; } // Action void NoAction_154_5388038() { action_run = 5388038; } // Action void NoAction_155_5388039() { action_run = 5388039; } // Action void NoAction_156_5388040() { action_run = 5388040; } // Action void NoAction_157_5388041() { action_run = 5388041; } // Action void NoAction_158_5388042() { action_run = 5388042; } // Action void NoAction_159_5388043() { action_run = 5388043; } // Action void NoAction_160_5388044() { action_run = 5388044; } // Action void NoAction_161_5388045() { action_run = 5388045; } // Action void NoAction_162_5388046() { action_run = 5388046; } // Action void NoAction_163_5388047() { action_run = 5388047; } // Action void NoAction_164_5388048() { action_run = 5388048; } // Action void NoAction_165_5388049() { action_run = 5388049; } // Action void NoAction_166_5388050() { action_run = 5388050; } // Action void NoAction_167_5388051() { action_run = 5388051; } // Action void NoAction_168_5388052() { action_run = 5388052; } // Action void NoAction_169_5388053() { action_run = 5388053; } // Action void NoAction_170_5388054() { action_run = 5388054; } // Action void NoAction_171_5388055() { action_run = 5388055; } // Action void egress_port_type_normal_0_5388056() { action_run = 5388056; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); uint8_t qos_group; klee_make_symbolic(&qos_group, sizeof(qos_group), "qos_group"); uint32_t if_label; klee_make_symbolic(&if_label, sizeof(if_label), "if_label"); meta.egress_metadata.port_type = 0; meta.egress_metadata.ifindex = ifindex; meta.qos_metadata.egress_qos_group = qos_group; meta.acl_metadata.egress_if_label = if_label; } // Action void egress_port_type_fabric_0_5388096() { action_run = 5388096; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.egress_metadata.port_type = 1; meta.egress_metadata.ifindex = ifindex; meta.tunnel_metadata.egress_tunnel_type = 15; } // Action void egress_port_type_cpu_0_5388126() { action_run = 5388126; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.egress_metadata.port_type = 2; meta.egress_metadata.ifindex = ifindex; meta.tunnel_metadata.egress_tunnel_type = 16; } // Action void _nop_8_5388220() { action_run = 5388220; } // Action void _set_mirror_nhop_5388230() { action_run = 5388230; uint32_t nhop_idx; klee_make_symbolic(&nhop_idx, sizeof(nhop_idx), "nhop_idx"); meta.l3_metadata.nexthop_index = nhop_idx; } // Action void _set_mirror_bd_5388248() { action_run = 5388248; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); meta.egress_metadata.bd = bd; } // Action void _sflow_pkt_to_cpu_5388266() { action_run = 5388266; uint32_t reason_code; klee_make_symbolic(&reason_code, sizeof(reason_code), "reason_code"); hdr.fabric_header_sflow.isValid = 1; hdr.fabric_header_sflow.sflow_session_id = meta.sflow_metadata.sflow_session_id; hdr.fabric_header_sflow.sflow_egress_ifindex = meta.ingress_metadata.egress_ifindex; meta.fabric_metadata.reason_code = reason_code; } // Action void _nop_9_5388381() { action_run = 5388381; } // Action void _nop_10_5388391() { action_run = 5388391; } // Action void _set_replica_copy_bridged_5388392() { action_run = 5388392; meta.egress_metadata.routed = 0; } // Action void _outer_replica_from_rid_5388408() { action_run = 5388408; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.bd = bd; meta.multicast_metadata.replica = 1; meta.multicast_metadata.inner_replica = 0; meta.egress_metadata.routed = meta.l3_metadata.outer_routed; meta.egress_metadata.same_bd_check = bd ^ meta.ingress_metadata.outer_bd; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_tunnel_type = tunnel_type; meta.tunnel_metadata.egress_header_count = header_count; } // Action void _inner_replica_from_rid_5388483() { action_run = 5388483; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.bd = bd; meta.multicast_metadata.replica = 1; meta.multicast_metadata.inner_replica = 1; meta.egress_metadata.routed = meta.l3_metadata.routed; meta.egress_metadata.same_bd_check = bd ^ meta.ingress_metadata.bd; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_tunnel_type = tunnel_type; meta.tunnel_metadata.egress_header_count = header_count; } // Action void _nop_11_5388690() { action_run = 5388690; } // Action void _remove_vlan_single_tagged_5388700() { action_run = 5388700; traverse_5388716 = 1; hdr.ethernet.etherType = hdr.vlan_tag_[0].etherType; hdr.vlan_tag_[0].isValid = 0; } // Action void _remove_vlan_double_tagged_5388740() { action_run = 5388740; traverse_5388756 = 1; hdr.ethernet.etherType = hdr.vlan_tag_[1].etherType; hdr.vlan_tag_[0].isValid = 0; hdr.vlan_tag_[1].isValid = 0; } // Action void _decap_inner_udp_5388872() { action_run = 5388872; hdr.udp = hdr.inner_udp; hdr.inner_udp.isValid = 0; } // Action void _decap_inner_tcp_5388897() { action_run = 5388897; hdr.tcp = hdr.inner_tcp; hdr.inner_tcp.isValid = 0; hdr.udp.isValid = 0; } // Action void _decap_inner_icmp_5388930() { action_run = 5388930; hdr.icmp = hdr.inner_icmp; hdr.inner_icmp.isValid = 0; hdr.udp.isValid = 0; } // Action void _decap_inner_unknown_5388963() { action_run = 5388963; hdr.udp.isValid = 0; } // Action void _decap_vxlan_inner_ipv4_5388981() { action_run = 5388981; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.vxlan.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_vxlan_inner_ipv6_5389037() { action_run = 5389037; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.vxlan.isValid = 0; hdr.ipv4.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_vxlan_inner_non_ip_5389093() { action_run = 5389093; hdr.ethernet = hdr.inner_ethernet; hdr.vxlan.isValid = 0; hdr.ipv4.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; } // Action void _decap_genv_inner_ipv4_5389142() { action_run = 5389142; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.genv.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_genv_inner_ipv6_5389198() { action_run = 5389198; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.genv.isValid = 0; hdr.ipv4.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_genv_inner_non_ip_5389254() { action_run = 5389254; hdr.ethernet = hdr.inner_ethernet; hdr.genv.isValid = 0; hdr.ipv4.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; } // Action void _decap_nvgre_inner_ipv4_5389303() { action_run = 5389303; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.nvgre.isValid = 0; hdr.gre.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_nvgre_inner_ipv6_5389367() { action_run = 5389367; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.nvgre.isValid = 0; hdr.gre.isValid = 0; hdr.ipv4.isValid = 0; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_nvgre_inner_non_ip_5389431() { action_run = 5389431; hdr.ethernet = hdr.inner_ethernet; hdr.nvgre.isValid = 0; hdr.gre.isValid = 0; hdr.ipv4.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ethernet.isValid = 0; } // Action void _decap_gre_inner_ipv4_5389488() { action_run = 5389488; hdr.ipv4 = hdr.inner_ipv4; hdr.gre.isValid = 0; hdr.ipv6.isValid = 0; hdr.inner_ipv4.isValid = 0; hdr.ethernet.etherType = 2048; } // Action void _decap_gre_inner_ipv6_5389535() { action_run = 5389535; hdr.ipv6 = hdr.inner_ipv6; hdr.gre.isValid = 0; hdr.ipv4.isValid = 0; hdr.inner_ipv6.isValid = 0; hdr.ethernet.etherType = 34525; } // Action void _decap_gre_inner_non_ip_5389582() { action_run = 5389582; hdr.ethernet.etherType = hdr.gre.proto; hdr.gre.isValid = 0; hdr.ipv4.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_ip_inner_ipv4_5389625() { action_run = 5389625; hdr.ipv4 = hdr.inner_ipv4; hdr.ipv6.isValid = 0; hdr.inner_ipv4.isValid = 0; hdr.ethernet.etherType = 2048; } // Action void _decap_ip_inner_ipv6_5389664() { action_run = 5389664; hdr.ipv6 = hdr.inner_ipv6; hdr.ipv4.isValid = 0; hdr.inner_ipv6.isValid = 0; hdr.ethernet.etherType = 34525; } // Action void _decap_mpls_inner_ipv4_pop1_5389703() { action_run = 5389703; hdr.mpls[0].isValid = 0; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ipv4.isValid = 0; hdr.ethernet.etherType = 2048; } // Action void _decap_mpls_inner_ipv6_pop1_5389745() { action_run = 5389745; hdr.mpls[0].isValid = 0; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ipv6.isValid = 0; hdr.ethernet.etherType = 34525; } // Action void _decap_mpls_inner_ethernet_ipv4_pop1_5389787() { action_run = 5389787; hdr.mpls[0].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_mpls_inner_ethernet_ipv6_pop1_5389838() { action_run = 5389838; hdr.mpls[0].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_mpls_inner_ethernet_non_ip_pop1_5389889() { action_run = 5389889; hdr.mpls[0].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.inner_ethernet.isValid = 0; } // Action void _decap_mpls_inner_ipv4_pop2_5389925() { action_run = 5389925; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ipv4.isValid = 0; hdr.ethernet.etherType = 2048; } // Action void _decap_mpls_inner_ipv6_pop2_5389978() { action_run = 5389978; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ipv6.isValid = 0; hdr.ethernet.etherType = 34525; } // Action void _decap_mpls_inner_ethernet_ipv4_pop2_5390031() { action_run = 5390031; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_mpls_inner_ethernet_ipv6_pop2_5390093() { action_run = 5390093; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_mpls_inner_ethernet_non_ip_pop2_5390155() { action_run = 5390155; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.inner_ethernet.isValid = 0; } // Action void _decap_mpls_inner_ipv4_pop3_5390202() { action_run = 5390202; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.mpls[2].isValid = 0; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ipv4.isValid = 0; hdr.ethernet.etherType = 2048; } // Action void _decap_mpls_inner_ipv6_pop3_5390266() { action_run = 5390266; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.mpls[2].isValid = 0; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ipv6.isValid = 0; hdr.ethernet.etherType = 34525; } // Action void _decap_mpls_inner_ethernet_ipv4_pop3_5390330() { action_run = 5390330; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.mpls[2].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv4 = hdr.inner_ipv4; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv4.isValid = 0; } // Action void _decap_mpls_inner_ethernet_ipv6_pop3_5390403() { action_run = 5390403; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.mpls[2].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.ipv6 = hdr.inner_ipv6; hdr.inner_ethernet.isValid = 0; hdr.inner_ipv6.isValid = 0; } // Action void _decap_mpls_inner_ethernet_non_ip_pop3_5390476() { action_run = 5390476; hdr.mpls[0].isValid = 0; hdr.mpls[1].isValid = 0; hdr.mpls[2].isValid = 0; hdr.ethernet = hdr.inner_ethernet; hdr.inner_ethernet.isValid = 0; } // Action void _nop_12_5390866() { action_run = 5390866; } // Action void _nop_13_5390876() { action_run = 5390876; } // Action void _set_l2_rewrite_5390877() { action_run = 5390877; meta.egress_metadata.routed = 0; meta.egress_metadata.bd = meta.ingress_metadata.bd; meta.egress_metadata.outer_bd = meta.ingress_metadata.bd; } // Action void _set_l2_rewrite_with_tunnel_5390911() { action_run = 5390911; uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.egress_metadata.routed = 0; meta.egress_metadata.bd = meta.ingress_metadata.bd; meta.egress_metadata.outer_bd = meta.ingress_metadata.bd; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_tunnel_type = tunnel_type; } // Action void _set_l3_rewrite_5390961() { action_run = 5390961; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint8_t mtu_index; klee_make_symbolic(&mtu_index, sizeof(mtu_index), "mtu_index"); uint64_t dmac; klee_make_symbolic(&dmac, sizeof(dmac), "dmac"); meta.egress_metadata.routed = 1; meta.egress_metadata.mac_da = dmac; meta.egress_metadata.bd = bd; meta.egress_metadata.outer_bd = bd; meta.l3_metadata.mtu_index = mtu_index; } // Action void _set_l3_rewrite_with_tunnel_5391008() { action_run = 5391008; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint64_t dmac; klee_make_symbolic(&dmac, sizeof(dmac), "dmac"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.egress_metadata.routed = 1; meta.egress_metadata.mac_da = dmac; meta.egress_metadata.bd = bd; meta.egress_metadata.outer_bd = bd; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_tunnel_type = tunnel_type; } // Action void _set_mpls_swap_push_rewrite_l2_5391063() { action_run = 5391063; uint32_t label; klee_make_symbolic(&label, sizeof(label), "label"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.routed = meta.l3_metadata.routed; meta.egress_metadata.bd = meta.ingress_metadata.bd; hdr.mpls[0].label = label; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_header_count = header_count; meta.tunnel_metadata.egress_tunnel_type = 13; } // Action void _set_mpls_push_rewrite_l2_5391124() { action_run = 5391124; uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.routed = meta.l3_metadata.routed; meta.egress_metadata.bd = meta.ingress_metadata.bd; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_header_count = header_count; meta.tunnel_metadata.egress_tunnel_type = 13; } // Action void _set_mpls_swap_push_rewrite_l3_5391174() { action_run = 5391174; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint64_t dmac; klee_make_symbolic(&dmac, sizeof(dmac), "dmac"); uint32_t label; klee_make_symbolic(&label, sizeof(label), "label"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.routed = meta.l3_metadata.routed; meta.egress_metadata.bd = bd; hdr.mpls[0].label = label; meta.egress_metadata.mac_da = dmac; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_header_count = header_count; meta.tunnel_metadata.egress_tunnel_type = 14; } // Action void _set_mpls_push_rewrite_l3_5391242() { action_run = 5391242; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint64_t dmac; klee_make_symbolic(&dmac, sizeof(dmac), "dmac"); uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); uint8_t header_count; klee_make_symbolic(&header_count, sizeof(header_count), "header_count"); meta.egress_metadata.routed = meta.l3_metadata.routed; meta.egress_metadata.bd = bd; meta.egress_metadata.mac_da = dmac; meta.tunnel_metadata.tunnel_index = tunnel_index; meta.tunnel_metadata.egress_header_count = header_count; meta.tunnel_metadata.egress_tunnel_type = 14; } // Action void _rewrite_ipv4_multicast_5687109() { action_run = 5687109; hdr.ethernet.dstAddr = hdr.ethernet.dstAddr & ~8388607 | (uint64_t) BITSLICE((uint64_t) hdr.ipv4.dstAddr, 22, 0) << 0 & 8388607; } // Action void _rewrite_ipv6_multicast_5391329() { action_run = 5391329; } // Action void _nop_14_5391541() { action_run = 5391541; } // Action void _set_egress_bd_properties_5391551() { action_run = 5391551; uint32_t smac_idx; klee_make_symbolic(&smac_idx, sizeof(smac_idx), "smac_idx"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint32_t bd_label; klee_make_symbolic(&bd_label, sizeof(bd_label), "bd_label"); //meta.egress_metadata.smac_idx = smac_idx; meta.nat_metadata.egress_nat_mode = nat_mode; meta.acl_metadata.egress_bd_label = bd_label; } // Action void _nop_15_5391644() { action_run = 5391644; } // Action void _set_mpls_exp_marking_5391654() { action_run = 5391654; uint8_t exp; klee_make_symbolic(&exp, sizeof(exp), "exp"); meta.l3_metadata.lkp_dscp = exp; } // Action void _set_ip_dscp_marking_5391672() { action_run = 5391672; uint8_t dscp; klee_make_symbolic(&dscp, sizeof(dscp), "dscp"); meta.l3_metadata.lkp_dscp = dscp; } // Action void _set_vlan_pcp_marking_5391690() { action_run = 5391690; uint8_t pcp; klee_make_symbolic(&pcp, sizeof(pcp), "pcp"); meta.l2_metadata.lkp_pcp = pcp; } // Action void _nop_16_5391789() { action_run = 5391789; } // Action void _ipv4_unicast_rewrite_5391799() { action_run = 5391799; hdr.ethernet.dstAddr = meta.egress_metadata.mac_da; hdr.ipv4.ttl = hdr.ipv4.ttl + 255; hdr.ipv4.diffserv = meta.l3_metadata.lkp_dscp; } // Action void _ipv4_multicast_rewrite_5391838() { action_run = 5391838; hdr.ethernet.dstAddr = hdr.ethernet.dstAddr | 1101088686080; hdr.ipv4.ttl = hdr.ipv4.ttl + 255; hdr.ipv4.diffserv = meta.l3_metadata.lkp_dscp; } // Action void _ipv6_unicast_rewrite_5391879() { action_run = 5391879; hdr.ethernet.dstAddr = meta.egress_metadata.mac_da; hdr.ipv6.hopLimit = hdr.ipv6.hopLimit + 255; hdr.ipv6.trafficClass = meta.l3_metadata.lkp_dscp; } // Action void _ipv6_multicast_rewrite_5391918() { action_run = 5391918; hdr.ethernet.dstAddr = hdr.ethernet.dstAddr | 56294136348672; hdr.ipv6.hopLimit = hdr.ipv6.hopLimit + 255; hdr.ipv6.trafficClass = meta.l3_metadata.lkp_dscp; } // Action void _mpls_rewrite_5391959() { action_run = 5391959; hdr.ethernet.dstAddr = meta.egress_metadata.mac_da; hdr.mpls[0].ttl = hdr.mpls[0].ttl + 255; } // Action void _rewrite_smac_5391995() { action_run = 5391995; uint64_t smac; klee_make_symbolic(&smac, sizeof(smac), "smac"); hdr.ethernet.srcAddr = smac; } // Action void _mtu_miss_5392198() { action_run = 5392198; meta.l3_metadata.l3_mtu_check = 65535; } // Action void _ipv4_mtu_check_5392214() { action_run = 5392214; uint32_t l3_mtu; klee_make_symbolic(&l3_mtu, sizeof(l3_mtu), "l3_mtu"); meta.l3_metadata.l3_mtu_check = l3_mtu - hdr.ipv4.totalLen; } // Action void _ipv6_mtu_check_5392237() { action_run = 5392237; uint32_t l3_mtu; klee_make_symbolic(&l3_mtu, sizeof(l3_mtu), "l3_mtu"); meta.l3_metadata.l3_mtu_check = l3_mtu - hdr.ipv6.payloadLen; } // Action void _int_set_header_0_bos_5392347() { action_run = 5392347; hdr.int_switch_id_header.bos = 1; } // Action void _int_set_header_1_bos_5392363() { action_run = 5392363; hdr.int_ingress_port_id_header.bos = 1; } // Action void _int_set_header_2_bos_5392379() { action_run = 5392379; hdr.int_hop_latency_header.bos = 1; } // Action void _int_set_header_3_bos_5392395() { action_run = 5392395; hdr.int_q_occupancy_header.bos = 1; } // Action void _int_set_header_4_bos_5392411() { action_run = 5392411; hdr.int_ingress_tstamp_header.bos = 1; } // Action void _int_set_header_5_bos_5392427() { action_run = 5392427; hdr.int_egress_port_id_header.bos = 1; } // Action void _int_set_header_6_bos_5392443() { action_run = 5392443; hdr.int_q_congestion_header.bos = 1; } // Action void _int_set_header_7_bos_5392459() { action_run = 5392459; hdr.int_egress_port_tx_utilization_header.bos = 1; } // Action void _nop_17_5392475() { action_run = 5392475; } // Action void _nop_18_5392485() { action_run = 5392485; } // Action void _nop_19_5392486() { action_run = 5392486; } // Action void _nop_20_5392487() { action_run = 5392487; } // Action void _int_transit_5392488() { action_run = 5392488; uint32_t switch_id; klee_make_symbolic(&switch_id, sizeof(switch_id), "switch_id"); meta.int_metadata.insert_cnt = hdr.int_header.max_hop_cnt - hdr.int_header.total_hop_cnt; meta.int_metadata.switch_id = switch_id; meta.int_metadata.insert_byte_cnt = meta.int_metadata.instruction_cnt << 2; meta.int_metadata.gpe_int_hdr_len8 = (uint8_t) hdr.int_header.ins_cnt; } // Action void _int_src_5392542() { action_run = 5392542; uint32_t switch_id; klee_make_symbolic(&switch_id, sizeof(switch_id), "switch_id"); uint8_t hop_cnt; klee_make_symbolic(&hop_cnt, sizeof(hop_cnt), "hop_cnt"); uint8_t ins_cnt; klee_make_symbolic(&ins_cnt, sizeof(ins_cnt), "ins_cnt"); uint8_t ins_mask0003; klee_make_symbolic(&ins_mask0003, sizeof(ins_mask0003), "ins_mask0003"); uint8_t ins_mask0407; klee_make_symbolic(&ins_mask0407, sizeof(ins_mask0407), "ins_mask0407"); uint32_t ins_byte_cnt; klee_make_symbolic(&ins_byte_cnt, sizeof(ins_byte_cnt), "ins_byte_cnt"); uint8_t total_words; klee_make_symbolic(&total_words, sizeof(total_words), "total_words"); meta.int_metadata.insert_cnt = hop_cnt; meta.int_metadata.switch_id = switch_id; meta.int_metadata.insert_byte_cnt = ins_byte_cnt; meta.int_metadata.gpe_int_hdr_len8 = total_words; hdr.int_header.isValid = 1; hdr.int_header.ver = 0; hdr.int_header.rep = 0; hdr.int_header.c = 0; hdr.int_header.e = 0; hdr.int_header.rsvd1 = 0; hdr.int_header.ins_cnt = ins_cnt; hdr.int_header.max_hop_cnt = hop_cnt; hdr.int_header.total_hop_cnt = 0; hdr.int_header.instruction_mask_0003 = ins_mask0003; hdr.int_header.instruction_mask_0407 = ins_mask0407; hdr.int_header.instruction_mask_0811 = 0; hdr.int_header.instruction_mask_1215 = 0; hdr.int_header.rsvd2 = 0; } // Action void _int_reset_5392677() { action_run = 5392677; meta.int_metadata.switch_id = 0; meta.int_metadata.insert_byte_cnt = 0; meta.int_metadata.insert_cnt = 0; meta.int_metadata.gpe_int_hdr_len8 = 0; meta.int_metadata.gpe_int_hdr_len = 0; meta.int_metadata.instruction_cnt = 0; } // Action void _int_set_header_0003_i0_5392723() { action_run = 5392723; } // Action void _int_set_header_0003_i1_5392733() { action_run = 5392733; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; } // Action void _int_set_header_0003_i2_5392767() { action_run = 5392767; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; } // Action void _int_set_header_0003_i3_5392795() { action_run = 5392795; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; } // Action void _int_set_header_0003_i4_5392842() { action_run = 5392842; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; } // Action void _int_set_header_0003_i5_5392875() { action_run = 5392875; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; } // Action void _int_set_header_0003_i6_5392926() { action_run = 5392926; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; } // Action void _int_set_header_0003_i7_5392972() { action_run = 5392972; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; } // Action void _int_set_header_0003_i8_5393039() { action_run = 5393039; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i9_5393067() { action_run = 5393067; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i10_5393114() { action_run = 5393114; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i11_5393156() { action_run = 5393156; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i12_5393219() { action_run = 5393219; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i13_5393265() { action_run = 5393265; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i14_5393332() { action_run = 5393332; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0003_i15_5393394() { action_run = 5393394; hdr.int_q_occupancy_header.isValid = 1; hdr.int_q_occupancy_header.q_occupancy1 = 0; hdr.int_q_occupancy_header.q_occupancy0 = (uint32_t) meta.queueing_metadata.enq_qdepth; hdr.int_hop_latency_header.isValid = 1; hdr.int_hop_latency_header.hop_latency = (uint32_t) meta.queueing_metadata.deq_timedelta; hdr.int_ingress_port_id_header.isValid = 1; hdr.int_ingress_port_id_header.ingress_port_id_1 = 0; hdr.int_ingress_port_id_header.ingress_port_id_0 = meta.ingress_metadata.ifindex; hdr.int_switch_id_header.isValid = 1; hdr.int_switch_id_header.switch_id = (uint32_t) meta.int_metadata.switch_id; } // Action void _int_set_header_0407_i0_5393477() { action_run = 5393477; } // Action void _int_set_header_0407_i1_5393487() { action_run = 5393487; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; } // Action void _int_set_header_0407_i2_5393511() { action_run = 5393511; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; } // Action void _int_set_header_0407_i3_5393535() { action_run = 5393535; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; } // Action void _int_set_header_0407_i4_5393567() { action_run = 5393567; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; } // Action void _int_set_header_0407_i5_5393594() { action_run = 5393594; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; } // Action void _int_set_header_0407_i6_5393630() { action_run = 5393630; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; } // Action void _int_set_header_0407_i7_5393666() { action_run = 5393666; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; } // Action void _int_set_header_0407_i8_5393713() { action_run = 5393713; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i9_5393741() { action_run = 5393741; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i10_5393778() { action_run = 5393778; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i11_5393815() { action_run = 5393815; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i12_5393863() { action_run = 5393863; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i13_5393904() { action_run = 5393904; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i14_5393956() { action_run = 5393956; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_header_0407_i15_5394008() { action_run = 5394008; hdr.int_egress_port_tx_utilization_header.isValid = 1; hdr.int_egress_port_tx_utilization_header.egress_port_tx_utilization = 2147483647; hdr.int_q_congestion_header.isValid = 1; hdr.int_q_congestion_header.q_congestion = 2147483647; hdr.int_egress_port_id_header.isValid = 1; hdr.int_egress_port_id_header.egress_port_id = (uint32_t) standard_metadata.egress_port; hdr.int_ingress_tstamp_header.isValid = 1; hdr.int_ingress_tstamp_header.ingress_tstamp = (uint32_t) meta.i2e_metadata.ingress_tstamp; } // Action void _int_set_e_bit_5394071() { action_run = 5394071; hdr.int_header.e = 1; } // Action void _int_update_total_hop_cnt_5394087() { action_run = 5394087; hdr.int_header.total_hop_cnt = hdr.int_header.total_hop_cnt + 1; } // Action void _nop_21_5394781() { action_run = 5394781; } // Action void _set_nat_src_rewrite_5394791() { action_run = 5394791; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); hdr.ipv4.srcAddr = src_ip; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_dst_rewrite_5394826() { action_run = 5394826; uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); hdr.ipv4.dstAddr = dst_ip; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_src_dst_rewrite_5394859() { action_run = 5394859; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); hdr.ipv4.srcAddr = src_ip; hdr.ipv4.dstAddr = dst_ip; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_src_udp_rewrite_5394900() { action_run = 5394900; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); uint32_t src_port; klee_make_symbolic(&src_port, sizeof(src_port), "src_port"); hdr.ipv4.srcAddr = src_ip; hdr.udp.srcPort = src_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_dst_udp_rewrite_5394941() { action_run = 5394941; uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); uint32_t dst_port; klee_make_symbolic(&dst_port, sizeof(dst_port), "dst_port"); hdr.ipv4.dstAddr = dst_ip; hdr.udp.dstPort = dst_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_src_dst_udp_rewrite_5394982() { action_run = 5394982; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); uint32_t src_port; klee_make_symbolic(&src_port, sizeof(src_port), "src_port"); uint32_t dst_port; klee_make_symbolic(&dst_port, sizeof(dst_port), "dst_port"); hdr.ipv4.srcAddr = src_ip; hdr.ipv4.dstAddr = dst_ip; hdr.udp.srcPort = src_port; hdr.udp.dstPort = dst_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_src_tcp_rewrite_5395039() { action_run = 5395039; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); uint32_t src_port; klee_make_symbolic(&src_port, sizeof(src_port), "src_port"); hdr.ipv4.srcAddr = src_ip; hdr.tcp.srcPort = src_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_dst_tcp_rewrite_5395080() { action_run = 5395080; uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); uint32_t dst_port; klee_make_symbolic(&dst_port, sizeof(dst_port), "dst_port"); hdr.ipv4.dstAddr = dst_ip; hdr.tcp.dstPort = dst_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _set_nat_src_dst_tcp_rewrite_5395121() { action_run = 5395121; uint32_t src_ip; klee_make_symbolic(&src_ip, sizeof(src_ip), "src_ip"); uint32_t dst_ip; klee_make_symbolic(&dst_ip, sizeof(dst_ip), "dst_ip"); uint32_t src_port; klee_make_symbolic(&src_port, sizeof(src_port), "src_port"); uint32_t dst_port; klee_make_symbolic(&dst_port, sizeof(dst_port), "dst_port"); hdr.ipv4.srcAddr = src_ip; hdr.ipv4.dstAddr = dst_ip; hdr.tcp.srcPort = src_port; hdr.tcp.dstPort = dst_port; meta.nat_metadata.update_checksum = 1; meta.nat_metadata.l4_len = hdr.ipv4.totalLen + 65516; } // Action void _nop_22_5395299() { action_run = 5395299; } // Action void _nop_23_5395394() { action_run = 5395394; } // Action void _nop_24_5395404() { action_run = 5395404; } // Action void _nop_25_5395405() { action_run = 5395405; } // Action void _set_egress_dst_port_range_id_5395406() { action_run = 5395406; uint8_t range_id; klee_make_symbolic(&range_id, sizeof(range_id), "range_id"); meta.acl_metadata.egress_dst_port_range_id = range_id; } // Action void _set_egress_src_port_range_id_5395424() { action_run = 5395424; uint8_t range_id; klee_make_symbolic(&range_id, sizeof(range_id), "range_id"); meta.acl_metadata.egress_src_port_range_id = range_id; } // Action void _set_egress_tcp_port_fields_5395442() { action_run = 5395442; meta.l3_metadata.egress_l4_sport = hdr.tcp.srcPort; meta.l3_metadata.egress_l4_dport = hdr.tcp.dstPort; } // Action void _set_egress_udp_port_fields_5395470() { action_run = 5395470; meta.l3_metadata.egress_l4_sport = hdr.udp.srcPort; meta.l3_metadata.egress_l4_dport = hdr.udp.dstPort; } // Action void _set_egress_icmp_port_fields_5395498() { action_run = 5395498; meta.l3_metadata.egress_l4_sport = hdr.icmp.typeCode; } // Action void _nop_26_5395724() { action_run = 5395724; } // Action void _nop_27_5395734() { action_run = 5395734; } // Action void _nop_28_5395735() { action_run = 5395735; } // Action void _nop_29_5395736() { action_run = 5395736; } // Action void _nop_30_5395737() { action_run = 5395737; } // Action void _nop_31_5395738() { action_run = 5395738; } // Action void _nop_32_5395739() { action_run = 5395739; } // Action void _set_egress_tunnel_vni_5395740() { action_run = 5395740; uint32_t vnid; klee_make_symbolic(&vnid, sizeof(vnid), "vnid"); meta.tunnel_metadata.vnid = vnid; } // Action void _rewrite_tunnel_dmac_5395758() { action_run = 5395758; uint64_t dmac; klee_make_symbolic(&dmac, sizeof(dmac), "dmac"); hdr.ethernet.dstAddr = dmac; } // Action void _rewrite_tunnel_ipv4_dst_5395776() { action_run = 5395776; uint32_t ip; klee_make_symbolic(&ip, sizeof(ip), "ip"); hdr.ipv4.dstAddr = ip; } // Action void _rewrite_tunnel_ipv6_dst_5395794() { action_run = 5395794; uint64_t ip; klee_make_symbolic(&ip, sizeof(ip), "ip"); hdr.ipv6.dstAddr = ip; } // Action void _inner_ipv4_udp_rewrite_5395812() { action_run = 5395812; traverse_5395828 = 1; hdr.inner_ipv4 = hdr.ipv4; hdr.inner_udp = hdr.udp; meta.egress_metadata.payload_length = hdr.ipv4.totalLen; hdr.udp.isValid = 0; hdr.ipv4.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 4; } // Action void _inner_ipv4_tcp_rewrite_5395874() { action_run = 5395874; traverse_5395890 = 1; hdr.inner_ipv4 = hdr.ipv4; hdr.inner_tcp = hdr.tcp; meta.egress_metadata.payload_length = hdr.ipv4.totalLen; hdr.tcp.isValid = 0; hdr.ipv4.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 4; } // Action void _inner_ipv4_icmp_rewrite_5395936() { action_run = 5395936; traverse_5395952 = 1; hdr.inner_ipv4 = hdr.ipv4; hdr.inner_icmp = hdr.icmp; meta.egress_metadata.payload_length = hdr.ipv4.totalLen; hdr.icmp.isValid = 0; hdr.ipv4.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 4; } // Action void _inner_ipv4_unknown_rewrite_5395998() { action_run = 5395998; traverse_5396014 = 1; hdr.inner_ipv4 = hdr.ipv4; meta.egress_metadata.payload_length = hdr.ipv4.totalLen; hdr.ipv4.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 4; } // Action void _inner_ipv6_udp_rewrite_5396045() { action_run = 5396045; traverse_5396061 = 1; hdr.inner_ipv6 = hdr.ipv6; hdr.inner_udp = hdr.udp; meta.egress_metadata.payload_length = hdr.ipv6.payloadLen + 40; hdr.ipv6.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 41; } // Action void _inner_ipv6_tcp_rewrite_5396101() { action_run = 5396101; traverse_5396117 = 1; hdr.inner_ipv6 = hdr.ipv6; hdr.inner_tcp = hdr.tcp; meta.egress_metadata.payload_length = hdr.ipv6.payloadLen + 40; hdr.tcp.isValid = 0; hdr.ipv6.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 41; } // Action void _inner_ipv6_icmp_rewrite_5396165() { action_run = 5396165; traverse_5396181 = 1; hdr.inner_ipv6 = hdr.ipv6; hdr.inner_icmp = hdr.icmp; meta.egress_metadata.payload_length = hdr.ipv6.payloadLen + 40; hdr.icmp.isValid = 0; hdr.ipv6.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 41; } // Action void _inner_ipv6_unknown_rewrite_5396229() { action_run = 5396229; traverse_5396245 = 1; hdr.inner_ipv6 = hdr.ipv6; meta.egress_metadata.payload_length = hdr.ipv6.payloadLen + 40; hdr.ipv6.isValid = 0; meta.tunnel_metadata.inner_ip_proto = 41; } // Action void _inner_non_ip_rewrite_5396278() { action_run = 5396278; meta.egress_metadata.payload_length = standard_metadata.packet_length + 65522; } // Action void _fabric_rewrite_5396299() { action_run = 5396299; uint32_t tunnel_index; klee_make_symbolic(&tunnel_index, sizeof(tunnel_index), "tunnel_index"); meta.tunnel_metadata.tunnel_index = tunnel_index; } // Action void _ipv4_vxlan_rewrite_5396317() { action_run = 5396317; hdr.inner_ethernet = hdr.ethernet; hdr.udp.isValid = 1; hdr.vxlan.isValid = 1; hdr.udp.srcPort = meta.hash_metadata.entropy_hash; hdr.udp.dstPort = 4789; meta.l3_metadata.egress_l4_sport = meta.hash_metadata.entropy_hash; meta.l3_metadata.egress_l4_dport = 4789; hdr.udp.checksum = 0; hdr.udp.length_ = meta.egress_metadata.payload_length + 30; hdr.vxlan.flags = 8; hdr.vxlan.reserved = 0; hdr.vxlan.vni = meta.tunnel_metadata.vnid; hdr.vxlan.reserved2 = 0; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = 17; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 50; hdr.ethernet.etherType = 2048; } // Action void _ipv4_genv_rewrite_5396479() { action_run = 5396479; hdr.inner_ethernet = hdr.ethernet; hdr.udp.isValid = 1; hdr.genv.isValid = 1; hdr.udp.srcPort = meta.hash_metadata.entropy_hash; hdr.udp.dstPort = 6081; meta.l3_metadata.egress_l4_sport = meta.hash_metadata.entropy_hash; meta.l3_metadata.egress_l4_dport = 6081; hdr.udp.checksum = 0; hdr.udp.length_ = meta.egress_metadata.payload_length + 30; hdr.genv.ver = 0; hdr.genv.oam = 0; hdr.genv.critical = 0; hdr.genv.optLen = 0; hdr.genv.protoType = 25944; hdr.genv.vni = meta.tunnel_metadata.vnid; hdr.genv.reserved = 0; hdr.genv.reserved2 = 0; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = 17; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 50; hdr.ethernet.etherType = 2048; } // Action void _ipv4_nvgre_rewrite_5692479() { action_run = 5692479; hdr.inner_ethernet = hdr.ethernet; hdr.gre.isValid = 1; hdr.nvgre.isValid = 1; hdr.gre.proto = 25944; hdr.gre.recurse = 0; hdr.gre.flags = 0; hdr.gre.ver = 0; hdr.gre.R = 0; hdr.gre.K = 1; hdr.gre.C = 0; hdr.gre.S = 0; hdr.gre.s = 0; hdr.nvgre.tni = meta.tunnel_metadata.vnid; hdr.nvgre.flow_id = hdr.nvgre.flow_id & ~255 | (uint8_t) BITSLICE((uint8_t) meta.hash_metadata.entropy_hash, 7, 0) << 0 & 255; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = 47; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 42; hdr.ethernet.etherType = 2048; } // Action void _ipv4_gre_rewrite_5396824() { action_run = 5396824; hdr.gre.isValid = 1; hdr.gre.proto = hdr.ethernet.etherType; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = 47; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 24; hdr.ethernet.etherType = 2048; } // Action void _ipv4_ip_rewrite_5396900() { action_run = 5396900; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = meta.tunnel_metadata.inner_ip_proto; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 20; hdr.ethernet.etherType = 2048; } // Action void _ipv6_gre_rewrite_5396962() { action_run = 5396962; hdr.gre.isValid = 1; hdr.gre.proto = hdr.ethernet.etherType; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = 47; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length + 4; hdr.ethernet.etherType = 34525; } // Action void _ipv6_ip_rewrite_5397042() { action_run = 5397042; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = meta.tunnel_metadata.inner_ip_proto; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length; hdr.ethernet.etherType = 34525; } // Action void _ipv6_nvgre_rewrite_5692932() { action_run = 5692932; hdr.inner_ethernet = hdr.ethernet; hdr.gre.isValid = 1; hdr.nvgre.isValid = 1; hdr.gre.proto = 25944; hdr.gre.recurse = 0; hdr.gre.flags = 0; hdr.gre.ver = 0; hdr.gre.R = 0; hdr.gre.K = 1; hdr.gre.C = 0; hdr.gre.S = 0; hdr.gre.s = 0; hdr.nvgre.tni = meta.tunnel_metadata.vnid; hdr.nvgre.flow_id = hdr.nvgre.flow_id & ~255 | (uint8_t) BITSLICE((uint8_t) meta.hash_metadata.entropy_hash, 7, 0) << 0 & 255; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = 47; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length + 22; hdr.ethernet.etherType = 34525; } // Action void _ipv6_vxlan_rewrite_5397246() { action_run = 5397246; hdr.inner_ethernet = hdr.ethernet; hdr.udp.isValid = 1; hdr.vxlan.isValid = 1; hdr.udp.srcPort = meta.hash_metadata.entropy_hash; hdr.udp.dstPort = 4789; meta.l3_metadata.egress_l4_sport = meta.hash_metadata.entropy_hash; meta.l3_metadata.egress_l4_dport = 4789; hdr.udp.checksum = 0; hdr.udp.length_ = meta.egress_metadata.payload_length + 30; hdr.vxlan.flags = 8; hdr.vxlan.reserved = 0; hdr.vxlan.vni = meta.tunnel_metadata.vnid; hdr.vxlan.reserved2 = 0; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = 17; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length + 30; hdr.ethernet.etherType = 34525; } // Action void _ipv6_genv_rewrite_5397391() { action_run = 5397391; hdr.inner_ethernet = hdr.ethernet; hdr.udp.isValid = 1; hdr.genv.isValid = 1; hdr.udp.srcPort = meta.hash_metadata.entropy_hash; hdr.udp.dstPort = 6081; meta.l3_metadata.egress_l4_sport = meta.hash_metadata.entropy_hash; meta.l3_metadata.egress_l4_dport = 6081; hdr.udp.checksum = 0; hdr.udp.length_ = meta.egress_metadata.payload_length + 30; hdr.genv.ver = 0; hdr.genv.oam = 0; hdr.genv.critical = 0; hdr.genv.optLen = 0; hdr.genv.protoType = 25944; hdr.genv.vni = meta.tunnel_metadata.vnid; hdr.genv.reserved = 0; hdr.genv.reserved2 = 0; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = 17; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length + 30; hdr.ethernet.etherType = 34525; } // Action void _mpls_ethernet_push1_rewrite_5397556() { action_run = 5397556; hdr.inner_ethernet = hdr.ethernet; //push_front(1) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 1) { hdr.mpls[i] = hdr.mpls[i-1]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 1; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _mpls_ip_push1_rewrite_5397589() { action_run = 5397589; //push_front(1) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 1) { hdr.mpls[i] = hdr.mpls[i-1]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 1; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _mpls_ethernet_push2_rewrite_5397615() { action_run = 5397615; hdr.inner_ethernet = hdr.ethernet; //push_front(2) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 2) { hdr.mpls[i] = hdr.mpls[i-2]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 2; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _mpls_ip_push2_rewrite_5397648() { action_run = 5397648; //push_front(2) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 2) { hdr.mpls[i] = hdr.mpls[i-2]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 2; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _mpls_ethernet_push3_rewrite_5397674() { action_run = 5397674; hdr.inner_ethernet = hdr.ethernet; //push_front(3) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 3) { hdr.mpls[i] = hdr.mpls[i-3]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 3; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _mpls_ip_push3_rewrite_5397707() { action_run = 5397707; //push_front(3) int header_stack_size = sizeof(hdr.mpls)/sizeof(hdr.mpls[0]); int i; for (i = header_stack_size - 1; i >= 0; i -= 1) { if (i >= 3) { hdr.mpls[i] = hdr.mpls[i-3]; } else { hdr.mpls[i].isValid = 0; } } hdr.mpls_index = hdr.mpls_index + 3; if (hdr.mpls_index > header_stack_size) hdr.mpls_index = header_stack_size; hdr.ethernet.etherType = 34887; } // Action void _ipv4_erspan_t3_rewrite_5397733() { action_run = 5397733; hdr.inner_ethernet = hdr.ethernet; hdr.gre.isValid = 1; hdr.erspan_t3_header.isValid = 1; hdr.gre.C = 0; hdr.gre.R = 0; hdr.gre.K = 0; hdr.gre.S = 0; hdr.gre.s = 0; hdr.gre.recurse = 0; hdr.gre.flags = 0; hdr.gre.ver = 0; hdr.gre.proto = 8939; hdr.erspan_t3_header.timestamp = meta.i2e_metadata.ingress_tstamp; hdr.erspan_t3_header.span_id = (uint32_t) meta.i2e_metadata.mirror_session_id; hdr.erspan_t3_header.version = 2; hdr.erspan_t3_header.sgt = 0; hdr.ipv4.isValid = 1; hdr.ipv4.protocol = 47; hdr.ipv4.ttl = 64; hdr.ipv4.version = 4; hdr.ipv4.ihl = 5; hdr.ipv4.identification = 0; hdr.ipv4.totalLen = meta.egress_metadata.payload_length + 50; } // Action void _ipv6_erspan_t3_rewrite_5397894() { action_run = 5397894; hdr.inner_ethernet = hdr.ethernet; hdr.gre.isValid = 1; hdr.erspan_t3_header.isValid = 1; hdr.gre.C = 0; hdr.gre.R = 0; hdr.gre.K = 0; hdr.gre.S = 0; hdr.gre.s = 0; hdr.gre.recurse = 0; hdr.gre.flags = 0; hdr.gre.ver = 0; hdr.gre.proto = 8939; hdr.erspan_t3_header.timestamp = meta.i2e_metadata.ingress_tstamp; hdr.erspan_t3_header.span_id = (uint32_t) meta.i2e_metadata.mirror_session_id; hdr.erspan_t3_header.version = 2; hdr.erspan_t3_header.sgt = 0; hdr.ipv6.isValid = 1; hdr.ipv6.version = 6; hdr.ipv6.nextHdr = 47; hdr.ipv6.hopLimit = 64; hdr.ipv6.trafficClass = 0; hdr.ipv6.flowLabel = 0; hdr.ipv6.payloadLen = meta.egress_metadata.payload_length + 26; } // Action void _tunnel_mtu_check_5398040() { action_run = 5398040; uint32_t l3_mtu; klee_make_symbolic(&l3_mtu, sizeof(l3_mtu), "l3_mtu"); meta.l3_metadata.l3_mtu_check = l3_mtu - meta.egress_metadata.payload_length; } // Action void _tunnel_mtu_miss_5398063() { action_run = 5398063; meta.l3_metadata.l3_mtu_check = 65535; } // Action void _cpu_rx_rewrite_5398079() { action_run = 5398079; hdr.fabric_header.isValid = 1; hdr.fabric_header.headerVersion = 0; hdr.fabric_header.packetVersion = 0; hdr.fabric_header.pad1 = 0; hdr.fabric_header.packetType = 5; hdr.fabric_header_cpu.isValid = 1; hdr.fabric_header_cpu.ingressPort = (uint32_t) meta.ingress_metadata.ingress_port; hdr.fabric_header_cpu.ingressIfindex = meta.ingress_metadata.ifindex; hdr.fabric_header_cpu.ingressBd = meta.ingress_metadata.bd; hdr.fabric_header_cpu.reasonCode = meta.fabric_metadata.reason_code; hdr.fabric_payload_header.isValid = 1; hdr.fabric_payload_header.etherType = hdr.ethernet.etherType; hdr.ethernet.etherType = 36864; } // Action void _set_tunnel_rewrite_details_5398189() { action_run = 5398189; uint32_t outer_bd; klee_make_symbolic(&outer_bd, sizeof(outer_bd), "outer_bd"); uint32_t smac_idx; klee_make_symbolic(&smac_idx, sizeof(smac_idx), "smac_idx"); uint32_t dmac_idx; klee_make_symbolic(&dmac_idx, sizeof(dmac_idx), "dmac_idx"); uint32_t sip_index; klee_make_symbolic(&sip_index, sizeof(sip_index), "sip_index"); uint32_t dip_index; klee_make_symbolic(&dip_index, sizeof(dip_index), "dip_index"); meta.egress_metadata.outer_bd = outer_bd; meta.tunnel_metadata.tunnel_smac_index = smac_idx; meta.tunnel_metadata.tunnel_dmac_index = dmac_idx; meta.tunnel_metadata.tunnel_src_index = sip_index; meta.tunnel_metadata.tunnel_dst_index = dip_index; } // Action void _set_mpls_rewrite_push1_5398239() { action_run = 5398239; uint32_t label1; klee_make_symbolic(&label1, sizeof(label1), "label1"); uint8_t exp1; klee_make_symbolic(&exp1, sizeof(exp1), "exp1"); uint8_t ttl1; klee_make_symbolic(&ttl1, sizeof(ttl1), "ttl1"); uint32_t smac_idx; klee_make_symbolic(&smac_idx, sizeof(smac_idx), "smac_idx"); uint32_t dmac_idx; klee_make_symbolic(&dmac_idx, sizeof(dmac_idx), "dmac_idx"); hdr.mpls[0].label = label1; hdr.mpls[0].exp = exp1; hdr.mpls[0].bos = 1; hdr.mpls[0].ttl = ttl1; meta.tunnel_metadata.tunnel_smac_index = smac_idx; meta.tunnel_metadata.tunnel_dmac_index = dmac_idx; } // Action void _set_mpls_rewrite_push2_5398307() { action_run = 5398307; uint32_t label1; klee_make_symbolic(&label1, sizeof(label1), "label1"); uint8_t exp1; klee_make_symbolic(&exp1, sizeof(exp1), "exp1"); uint8_t ttl1; klee_make_symbolic(&ttl1, sizeof(ttl1), "ttl1"); uint32_t label2; klee_make_symbolic(&label2, sizeof(label2), "label2"); uint8_t exp2; klee_make_symbolic(&exp2, sizeof(exp2), "exp2"); uint8_t ttl2; klee_make_symbolic(&ttl2, sizeof(ttl2), "ttl2"); uint32_t smac_idx; klee_make_symbolic(&smac_idx, sizeof(smac_idx), "smac_idx"); uint32_t dmac_idx; klee_make_symbolic(&dmac_idx, sizeof(dmac_idx), "dmac_idx"); hdr.mpls[0].label = label1; hdr.mpls[0].exp = exp1; hdr.mpls[0].ttl = ttl1; hdr.mpls[0].bos = 0; hdr.mpls[1].label = label2; hdr.mpls[1].exp = exp2; hdr.mpls[1].ttl = ttl2; hdr.mpls[1].bos = 1; meta.tunnel_metadata.tunnel_smac_index = smac_idx; meta.tunnel_metadata.tunnel_dmac_index = dmac_idx; } // Action void _set_mpls_rewrite_push3_5398417() { action_run = 5398417; uint32_t label1; klee_make_symbolic(&label1, sizeof(label1), "label1"); uint8_t exp1; klee_make_symbolic(&exp1, sizeof(exp1), "exp1"); uint8_t ttl1; klee_make_symbolic(&ttl1, sizeof(ttl1), "ttl1"); uint32_t label2; klee_make_symbolic(&label2, sizeof(label2), "label2"); uint8_t exp2; klee_make_symbolic(&exp2, sizeof(exp2), "exp2"); uint8_t ttl2; klee_make_symbolic(&ttl2, sizeof(ttl2), "ttl2"); uint32_t label3; klee_make_symbolic(&label3, sizeof(label3), "label3"); uint8_t exp3; klee_make_symbolic(&exp3, sizeof(exp3), "exp3"); uint8_t ttl3; klee_make_symbolic(&ttl3, sizeof(ttl3), "ttl3"); uint32_t smac_idx; klee_make_symbolic(&smac_idx, sizeof(smac_idx), "smac_idx"); uint32_t dmac_idx; klee_make_symbolic(&dmac_idx, sizeof(dmac_idx), "dmac_idx"); hdr.mpls[0].label = label1; hdr.mpls[0].exp = exp1; hdr.mpls[0].ttl = ttl1; hdr.mpls[0].bos = 0; hdr.mpls[1].label = label2; hdr.mpls[1].exp = exp2; hdr.mpls[1].ttl = ttl2; hdr.mpls[1].bos = 0; hdr.mpls[2].label = label3; hdr.mpls[2].exp = exp3; hdr.mpls[2].ttl = ttl3; hdr.mpls[2].bos = 1; meta.tunnel_metadata.tunnel_smac_index = smac_idx; meta.tunnel_metadata.tunnel_dmac_index = dmac_idx; } // Action void _fabric_unicast_rewrite_5398569() { action_run = 5398569; hdr.fabric_header.isValid = 1; hdr.fabric_header.headerVersion = 0; hdr.fabric_header.packetVersion = 0; hdr.fabric_header.pad1 = 0; hdr.fabric_header.packetType = 1; hdr.fabric_header.dstDevice = meta.fabric_metadata.dst_device; hdr.fabric_header.dstPortOrGroup = meta.fabric_metadata.dst_port; hdr.fabric_header_unicast.isValid = 1; hdr.fabric_header_unicast.tunnelTerminate = meta.tunnel_metadata.tunnel_terminate; hdr.fabric_header_unicast.routed = meta.l3_metadata.routed; hdr.fabric_header_unicast.outerRouted = meta.l3_metadata.outer_routed; hdr.fabric_header_unicast.ingressTunnelType = meta.tunnel_metadata.ingress_tunnel_type; hdr.fabric_header_unicast.nexthopIndex = meta.l3_metadata.nexthop_index; hdr.fabric_payload_header.isValid = 1; hdr.fabric_payload_header.etherType = hdr.ethernet.etherType; hdr.ethernet.etherType = 36864; } // Action void _fabric_multicast_rewrite_5398705() { action_run = 5398705; uint32_t fabric_mgid; klee_make_symbolic(&fabric_mgid, sizeof(fabric_mgid), "fabric_mgid"); hdr.fabric_header.isValid = 1; hdr.fabric_header.headerVersion = 0; hdr.fabric_header.packetVersion = 0; hdr.fabric_header.pad1 = 0; hdr.fabric_header.packetType = 2; hdr.fabric_header.dstDevice = 127; hdr.fabric_header.dstPortOrGroup = fabric_mgid; hdr.fabric_header_multicast.ingressIfindex = meta.ingress_metadata.ifindex; hdr.fabric_header_multicast.ingressBd = meta.ingress_metadata.bd; hdr.fabric_header_multicast.isValid = 1; hdr.fabric_header_multicast.tunnelTerminate = meta.tunnel_metadata.tunnel_terminate; hdr.fabric_header_multicast.routed = meta.l3_metadata.routed; hdr.fabric_header_multicast.outerRouted = meta.l3_metadata.outer_routed; hdr.fabric_header_multicast.ingressTunnelType = meta.tunnel_metadata.ingress_tunnel_type; hdr.fabric_header_multicast.mcastGrp = meta.multicast_metadata.mcast_grp; hdr.fabric_payload_header.isValid = 1; hdr.fabric_payload_header.etherType = hdr.ethernet.etherType; hdr.ethernet.etherType = 36864; } // Action void _rewrite_tunnel_smac_5398855() { action_run = 5398855; uint64_t smac; klee_make_symbolic(&smac, sizeof(smac), "smac"); hdr.ethernet.srcAddr = smac; } // Action void _rewrite_tunnel_ipv4_src_5398873() { action_run = 5398873; uint32_t ip; klee_make_symbolic(&ip, sizeof(ip), "ip"); hdr.ipv4.srcAddr = ip; } // Action void _rewrite_tunnel_ipv6_src_5398891() { action_run = 5398891; uint64_t ip; klee_make_symbolic(&ip, sizeof(ip), "ip"); hdr.ipv6.srcAddr = ip; } // Action void _nop_33_5399694() { action_run = 5399694; } // Action void _nop_34_5399704() { action_run = 5399704; } // Action void _nop_35_5399705() { action_run = 5399705; } // Action void _egress_acl_deny_5399706() { action_run = 5399706; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.acl_metadata.acl_deny = 1; meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _egress_acl_deny_3_5399730() { action_run = 5399730; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.acl_metadata.acl_deny = 1; meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _egress_acl_deny_4_5399748() { action_run = 5399748; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.acl_metadata.acl_deny = 1; meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _egress_acl_permit_5399766() { action_run = 5399766; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _egress_acl_permit_3_5399784() { action_run = 5399784; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _egress_acl_permit_4_5399797() { action_run = 5399797; uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); meta.fabric_metadata.reason_code = acl_copy_reason; } // Action void _int_update_vxlan_gpe_ipv4_5400163() { action_run = 5400163; hdr.ipv4.totalLen = hdr.ipv4.totalLen + meta.int_metadata.insert_byte_cnt; hdr.udp.length_ = hdr.udp.length_ + meta.int_metadata.insert_byte_cnt; hdr.vxlan_gpe_int_header.len = hdr.vxlan_gpe_int_header.len + meta.int_metadata.gpe_int_hdr_len8; } // Action void _int_add_update_vxlan_gpe_ipv4_5400215() { action_run = 5400215; hdr.vxlan_gpe_int_header.isValid = 1; hdr.vxlan_gpe_int_header.int_type = 1; hdr.vxlan_gpe_int_header.next_proto = 3; hdr.vxlan_gpe.next_proto = 5; hdr.vxlan_gpe_int_header.len = meta.int_metadata.gpe_int_hdr_len8; hdr.ipv4.totalLen = hdr.ipv4.totalLen + meta.int_metadata.insert_byte_cnt; hdr.udp.length_ = hdr.udp.length_ + meta.int_metadata.insert_byte_cnt; } // Action void _nop_36_5400288() { action_run = 5400288; } // Action void _set_egress_packet_vlan_untagged_5400395() { action_run = 5400395; } // Action void _set_egress_packet_vlan_tagged_5400405() { action_run = 5400405; uint32_t vlan_id; klee_make_symbolic(&vlan_id, sizeof(vlan_id), "vlan_id"); hdr.vlan_tag_[0].isValid = 1; hdr.vlan_tag_[0].etherType = hdr.ethernet.etherType; hdr.vlan_tag_[0].vid = vlan_id; hdr.ethernet.etherType = 33024; } // Action void _set_egress_packet_vlan_double_tagged_5400455() { action_run = 5400455; uint32_t s_tag; klee_make_symbolic(&s_tag, sizeof(s_tag), "s_tag"); uint32_t c_tag; klee_make_symbolic(&c_tag, sizeof(c_tag), "c_tag"); hdr.vlan_tag_[1].isValid = 1; hdr.vlan_tag_[0].isValid = 1; hdr.vlan_tag_[1].etherType = hdr.ethernet.etherType; hdr.vlan_tag_[1].vid = c_tag; hdr.vlan_tag_[0].etherType = 33024; hdr.vlan_tag_[0].vid = s_tag; hdr.ethernet.etherType = 37120; } // Action void _egress_filter_check_5400611() { action_run = 5400611; meta.egress_filter_metadata.ifindex_check = meta.ingress_metadata.ifindex ^ meta.egress_metadata.ifindex; meta.egress_filter_metadata.bd = meta.ingress_metadata.outer_bd ^ meta.egress_metadata.outer_bd; meta.egress_filter_metadata.inner_bd = meta.ingress_metadata.bd ^ meta.egress_metadata.bd; } // Action void _set_egress_filter_drop_5400663() { action_run = 5400663; mark_to_drop(); } // Action void _nop_37_5400747() { action_run = 5400747; } // Action void _drop_packet_5400757() { action_run = 5400757; mark_to_drop(); } // Action void _egress_copy_to_cpu_5400773() { action_run = 5400773; } // Action void _egress_redirect_to_cpu_5400814() { action_run = 5400814; mark_to_drop(); } // Action void _egress_copy_to_cpu_with_reason_5400857() { action_run = 5400857; uint32_t reason_code; klee_make_symbolic(&reason_code, sizeof(reason_code), "reason_code"); meta.fabric_metadata.reason_code = reason_code; } // Action void _egress_redirect_to_cpu_with_reason_5400902() { action_run = 5400902; uint32_t reason_code; klee_make_symbolic(&reason_code, sizeof(reason_code), "reason_code"); meta.fabric_metadata.reason_code = reason_code; mark_to_drop(); } // Action void _egress_mirror_5400953() { action_run = 5400953; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); meta.i2e_metadata.mirror_session_id = (uint32_t) session_id; } // Action void _egress_mirror_drop_5400996() { action_run = 5400996; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); meta.i2e_metadata.mirror_session_id = (uint32_t) session_id; mark_to_drop(); } //Table void egress_port_mapping_5388156() { // int symbol; // klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); // switch(symbol) { // egress_port_type_normal_0_5388056(); egress_port_type_fabric_0_5388096(); // case 2: egress_port_type_cpu_0_5388126(); break; // default: NoAction_0_5388004(); break; // } // keys: standard_metadata.egress_port:exact // size 288 // default_action NoAction_0(); } //Table void _mirror_0_5388310() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_8_5388220(); break; case 1: _set_mirror_nhop_5388230(); break; case 2: _set_mirror_bd_5388248(); break; case 3: _sflow_pkt_to_cpu_5388266(); break; default: NoAction_1_5388014(); break; } // keys: meta.i2e_metadata.mirror_session_id:exact // size 1024 // default_action NoAction_1(); } //Table void _replica_type_0_5388558() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_9_5388381(); break; case 1: _set_replica_copy_bridged_5388392(); break; default: NoAction_131_5388015(); break; } // keys: meta.multicast_metadata.replica:exact, meta.egress_metadata.same_bd_check:ternary // size 512 // default_action NoAction_131(); } //Table void _rid_0_5388627() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_10_5388391(); break; case 1: _outer_replica_from_rid_5388408(); break; case 2: _inner_replica_from_rid_5388483(); break; default: NoAction_132_5388016(); break; } // keys: meta.intrinsic_metadata.egress_rid:exact // size 1024 // default_action NoAction_132(); } //Table void _vlan_decap_0_5388791() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_11_5388690(); break; case 1: _remove_vlan_single_tagged_5388700(); break; case 2: _remove_vlan_double_tagged_5388740(); break; default: NoAction_133_5388017(); break; } // keys: hdr.vlan_tag_[0].$valid$:exact, hdr.vlan_tag_[1].$valid$:exact // size 1024 // default_action NoAction_133(); } //Table void _tunnel_decap_process_inner_0_5390534() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _decap_inner_udp_5388872(); break; case 1: _decap_inner_tcp_5388897(); break; case 2: _decap_inner_icmp_5388930(); break; case 3: _decap_inner_unknown_5388963(); break; default: NoAction_134_5388018(); break; } // keys: hdr.inner_tcp.$valid$:exact, hdr.inner_udp.$valid$:exact, hdr.inner_icmp.$valid$:exact // size 1024 // default_action NoAction_134(); } //Table void _tunnel_decap_process_outer_0_5390625() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _decap_vxlan_inner_ipv4_5388981(); break; case 1: _decap_vxlan_inner_ipv6_5389037(); break; case 2: _decap_vxlan_inner_non_ip_5389093(); break; case 3: _decap_genv_inner_ipv4_5389142(); break; case 4: _decap_genv_inner_ipv6_5389198(); break; case 5: _decap_genv_inner_non_ip_5389254(); break; case 6: _decap_nvgre_inner_ipv4_5389303(); break; case 7: _decap_nvgre_inner_ipv6_5389367(); break; case 8: _decap_nvgre_inner_non_ip_5389431(); break; case 9: _decap_gre_inner_ipv4_5389488(); break; case 10: _decap_gre_inner_ipv6_5389535(); break; case 11: _decap_gre_inner_non_ip_5389582(); break; case 12: _decap_ip_inner_ipv4_5389625(); break; case 13: _decap_ip_inner_ipv6_5389664(); break; case 14: _decap_mpls_inner_ipv4_pop1_5389703(); break; case 15: _decap_mpls_inner_ipv6_pop1_5389745(); break; case 16: _decap_mpls_inner_ethernet_ipv4_pop1_5389787(); break; case 17: _decap_mpls_inner_ethernet_ipv6_pop1_5389838(); break; case 18: _decap_mpls_inner_ethernet_non_ip_pop1_5389889(); break; case 19: _decap_mpls_inner_ipv4_pop2_5389925(); break; case 20: _decap_mpls_inner_ipv6_pop2_5389978(); break; case 21: _decap_mpls_inner_ethernet_ipv4_pop2_5390031(); break; case 22: _decap_mpls_inner_ethernet_ipv6_pop2_5390093(); break; case 23: _decap_mpls_inner_ethernet_non_ip_pop2_5390155(); break; case 24: _decap_mpls_inner_ipv4_pop3_5390202(); break; case 25: _decap_mpls_inner_ipv6_pop3_5390266(); break; case 26: _decap_mpls_inner_ethernet_ipv4_pop3_5390330(); break; case 27: _decap_mpls_inner_ethernet_ipv6_pop3_5390403(); break; case 28: _decap_mpls_inner_ethernet_non_ip_pop3_5390476(); break; default: NoAction_135_5388019(); break; } // keys: meta.tunnel_metadata.ingress_tunnel_type:exact, hdr.inner_ipv4.$valid$:exact, hdr.inner_ipv6.$valid$:exact // size 1024 // default_action NoAction_135(); } //Table void _rewrite_0_5391339() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_12_5390866(); break; case 1: _set_l2_rewrite_5390877(); break; case 2: _set_l2_rewrite_with_tunnel_5390911(); break; case 3: _set_l3_rewrite_5390961(); break; case 4: _set_l3_rewrite_with_tunnel_5391008(); break; case 5: _set_mpls_swap_push_rewrite_l2_5391063(); break; case 6: _set_mpls_push_rewrite_l2_5391124(); break; case 7: _set_mpls_swap_push_rewrite_l3_5391174(); break; case 8: _set_mpls_push_rewrite_l3_5391242(); break; default: NoAction_136_5388020(); break; } // keys: meta.l3_metadata.nexthop_index:exact // size 1024 // default_action NoAction_136(); } //Table void _rewrite_multicast_0_5391440() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_13_5390876(); break; case 1: _rewrite_ipv4_multicast_5687109(); break; case 2: _rewrite_ipv6_multicast_5391329(); break; default: NoAction_137_5388021(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact, BITSLICE(hdr.ipv4.dstAddr, 31, 28):ternary, BITSLICE(hdr.ipv6.dstAddr, 127, 120):ternary // default_action NoAction_137(); } //Table void _egress_bd_map_0_5391585() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_14_5391541(); break; case 1: _set_egress_bd_properties_5391551(); break; default: NoAction_138_5388022(); break; } // keys: meta.egress_metadata.bd:exact // size 1024 // default_action NoAction_138(); } //Table void _egress_qos_map_0_5391708() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_15_5391644(); break; case 1: _set_mpls_exp_marking_5391654(); break; case 2: _set_ip_dscp_marking_5391672(); break; case 3: _set_vlan_pcp_marking_5391690(); break; default: NoAction_139_5388023(); break; } // keys: meta.qos_metadata.egress_qos_group:ternary, meta.qos_metadata.lkp_tc:ternary // size 512 // default_action NoAction_139(); } //Table void _l3_rewrite_0_5392013() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_16_5391789(); break; case 1: _ipv4_unicast_rewrite_5391799(); break; case 2: _ipv4_multicast_rewrite_5391838(); break; case 3: _ipv6_unicast_rewrite_5391879(); break; case 4: _ipv6_multicast_rewrite_5391918(); break; case 5: _mpls_rewrite_5391959(); break; default: NoAction_140_5388024(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact, hdr.mpls[0].$valid$:exact, BITSLICE(hdr.ipv4.dstAddr, 31, 28):ternary, BITSLICE(hdr.ipv6.dstAddr, 127, 120):ternary // default_action NoAction_140(); } //Table void _smac_rewrite_0_5392145() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _rewrite_smac_5391995(); break; default: NoAction_141_5388025(); break; } // keys: meta.egress_metadata.smac_idx:exact // size 512 // default_action NoAction_141(); } //Table void _mtu_0_5392260() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _mtu_miss_5392198(); break; case 1: _ipv4_mtu_check_5392214(); break; case 2: _ipv6_mtu_check_5392237(); break; default: NoAction_142_5388026(); break; } // keys: meta.l3_metadata.mtu_index:exact, hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact // size 1024 // default_action NoAction_142(); } //Table void _int_bos_0_5394108() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_set_header_0_bos_5392347(); break; case 1: _int_set_header_1_bos_5392363(); break; case 2: _int_set_header_2_bos_5392379(); break; case 3: _int_set_header_3_bos_5392395(); break; case 4: _int_set_header_4_bos_5392411(); break; case 5: _int_set_header_5_bos_5392427(); break; case 6: _int_set_header_6_bos_5392443(); break; case 7: _int_set_header_7_bos_5392459(); break; case 8: _nop_17_5392475(); break; default: NoAction_143_5388027(); break; } // keys: hdr.int_header.total_hop_cnt:ternary, hdr.int_header.instruction_mask_0003:ternary, hdr.int_header.instruction_mask_0407:ternary, hdr.int_header.instruction_mask_0811:ternary, hdr.int_header.instruction_mask_1215:ternary // size 17 // default_action NoAction_143(); } //Table void _int_insert_0_5394249() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_transit_5392488(); break; case 1: _int_src_5392542(); break; case 2: _int_reset_5392677(); break; default: NoAction_144_5388028(); break; } // keys: meta.int_metadata_i2e.source:ternary, meta.int_metadata_i2e.sink:ternary, hdr.int_header.$valid$:exact // size 3 // default_action NoAction_144(); } //Table void _int_inst_3_5394334() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_set_header_0003_i0_5392723(); break; case 1: _int_set_header_0003_i1_5392733(); break; case 2: _int_set_header_0003_i2_5392767(); break; case 3: _int_set_header_0003_i3_5392795(); break; case 4: _int_set_header_0003_i4_5392842(); break; case 5: _int_set_header_0003_i5_5392875(); break; case 6: _int_set_header_0003_i6_5392926(); break; case 7: _int_set_header_0003_i7_5392972(); break; case 8: _int_set_header_0003_i8_5393039(); break; case 9: _int_set_header_0003_i9_5393067(); break; case 10: _int_set_header_0003_i10_5393114(); break; case 11: _int_set_header_0003_i11_5393156(); break; case 12: _int_set_header_0003_i12_5393219(); break; case 13: _int_set_header_0003_i13_5393265(); break; case 14: _int_set_header_0003_i14_5393332(); break; case 15: _int_set_header_0003_i15_5393394(); break; default: NoAction_145_5388029(); break; } // keys: hdr.int_header.instruction_mask_0003:exact // size 17 // default_action NoAction_145(); } //Table void _int_inst_4_5394475() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_set_header_0407_i0_5393477(); break; case 1: _int_set_header_0407_i1_5393487(); break; case 2: _int_set_header_0407_i2_5393511(); break; case 3: _int_set_header_0407_i3_5393535(); break; case 4: _int_set_header_0407_i4_5393567(); break; case 5: _int_set_header_0407_i5_5393594(); break; case 6: _int_set_header_0407_i6_5393630(); break; case 7: _int_set_header_0407_i7_5393666(); break; case 8: _int_set_header_0407_i8_5393713(); break; case 9: _int_set_header_0407_i9_5393741(); break; case 10: _int_set_header_0407_i10_5393778(); break; case 11: _int_set_header_0407_i11_5393815(); break; case 12: _int_set_header_0407_i12_5393863(); break; case 13: _int_set_header_0407_i13_5393904(); break; case 14: _int_set_header_0407_i14_5393956(); break; case 15: _int_set_header_0407_i15_5394008(); break; case 16: _nop_18_5392485(); break; default: NoAction_146_5388030(); break; } // keys: hdr.int_header.instruction_mask_0407:exact // size 17 // default_action NoAction_146(); } //Table void _int_inst_5_5394622() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_19_5392486(); break; default: NoAction_147_5388031(); break; } // keys: hdr.int_header.instruction_mask_0811:exact // size 16 // default_action NoAction_147(); } //Table void _int_inst_6_5394673() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_20_5392487(); break; default: NoAction_148_5388032(); break; } // keys: hdr.int_header.instruction_mask_1215:exact // size 17 // default_action NoAction_148(); } //Table void _int_meta_header_update_0_5394724() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_set_e_bit_5394071(); break; case 1: _int_update_total_hop_cnt_5394087(); break; default: NoAction_149_5388033(); break; } // keys: meta.int_metadata.insert_cnt:ternary // size 2 // default_action NoAction_149(); } //Table void _egress_nat_0_5395178() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_21_5394781(); break; case 1: _set_nat_src_rewrite_5394791(); break; case 2: _set_nat_dst_rewrite_5394826(); break; case 3: _set_nat_src_dst_rewrite_5394859(); break; case 4: _set_nat_src_udp_rewrite_5394900(); break; case 5: _set_nat_dst_udp_rewrite_5394941(); break; case 6: _set_nat_src_dst_udp_rewrite_5394982(); break; case 7: _set_nat_src_tcp_rewrite_5395039(); break; case 8: _set_nat_dst_tcp_rewrite_5395080(); break; case 9: _set_nat_src_dst_tcp_rewrite_5395121(); break; default: NoAction_150_5388034(); break; } // keys: meta.nat_metadata.nat_rewrite_index:exact // size 1024 // default_action NoAction_150(); } //Table void _egress_bd_stats_2_5395316() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_22_5395299(); break; default: NoAction_151_5388035(); break; } // keys: meta.egress_metadata.bd:exact, meta.l2_metadata.lkp_pkt_type:exact // size 1024 // default_action NoAction_151(); } //Table void _egress_l4_dst_port_0_5395517() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_23_5395394(); break; case 1: _set_egress_dst_port_range_id_5395406(); break; default: NoAction_152_5388036(); break; } // keys: meta.l3_metadata.egress_l4_dport:range // size 512 // default_action NoAction_152(); } //Table void _egress_l4_src_port_0_5395576() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_24_5395404(); break; case 1: _set_egress_src_port_range_id_5395424(); break; default: NoAction_153_5388037(); break; } // keys: meta.l3_metadata.egress_l4_sport:range // size 512 // default_action NoAction_153(); } //Table void _egress_l4port_fields_0_5395633() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_25_5395405(); break; case 1: _set_egress_tcp_port_fields_5395442(); break; case 2: _set_egress_udp_port_fields_5395470(); break; case 3: _set_egress_icmp_port_fields_5395498(); break; default: NoAction_154_5388038(); break; } // keys: hdr.tcp.$valid$:exact, hdr.udp.$valid$:exact, hdr.icmp.$valid$:exact // size 4 // default_action NoAction_154(); } //Table void _egress_vni_0_5398909() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_26_5395724(); break; case 1: _set_egress_tunnel_vni_5395740(); break; default: NoAction_155_5388039(); break; } // keys: meta.egress_metadata.bd:exact, meta.tunnel_metadata.egress_tunnel_type:exact // size 1024 // default_action NoAction_155(); } //Table void _tunnel_dmac_rewrite_0_5398978() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_27_5395734(); break; case 1: _rewrite_tunnel_dmac_5395758(); break; default: NoAction_156_5388040(); break; } // keys: meta.tunnel_metadata.tunnel_dmac_index:exact // size 1024 // default_action NoAction_156(); } //Table void _tunnel_dst_rewrite_0_5399035() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_28_5395735(); break; case 1: _rewrite_tunnel_ipv4_dst_5395776(); break; case 2: _rewrite_tunnel_ipv6_dst_5395794(); break; default: NoAction_157_5388041(); break; } // keys: meta.tunnel_metadata.tunnel_dst_index:exact // size 1024 // default_action NoAction_157(); } //Table void _tunnel_encap_process_inner_0_5399098() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _inner_ipv4_udp_rewrite_5395812(); break; case 1: _inner_ipv4_tcp_rewrite_5395874(); break; case 2: _inner_ipv4_icmp_rewrite_5395936(); break; case 3: _inner_ipv4_unknown_rewrite_5395998(); break; case 4: _inner_ipv6_udp_rewrite_5396045(); break; case 5: _inner_ipv6_tcp_rewrite_5396101(); break; case 6: _inner_ipv6_icmp_rewrite_5396165(); break; case 7: _inner_ipv6_unknown_rewrite_5396229(); break; case 8: _inner_non_ip_rewrite_5396278(); break; default: NoAction_158_5388042(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact, hdr.tcp.$valid$:exact, hdr.udp.$valid$:exact, hdr.icmp.$valid$:exact // size 1024 // default_action NoAction_158(); } //Table void _tunnel_encap_process_outer_0_5399239() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_29_5395736(); break; case 1: _fabric_rewrite_5396299(); break; case 2: _ipv4_vxlan_rewrite_5396317(); break; case 3: _ipv4_genv_rewrite_5396479(); break; case 4: _ipv4_nvgre_rewrite_5692479(); break; case 5: _ipv4_gre_rewrite_5396824(); break; case 6: _ipv4_ip_rewrite_5396900(); break; case 7: _ipv6_gre_rewrite_5396962(); break; case 8: _ipv6_ip_rewrite_5397042(); break; case 9: _ipv6_nvgre_rewrite_5692932(); break; case 10: _ipv6_vxlan_rewrite_5397246(); break; case 11: _ipv6_genv_rewrite_5397391(); break; case 12: _mpls_ethernet_push1_rewrite_5397556(); break; case 13: _mpls_ip_push1_rewrite_5397589(); break; case 14: _mpls_ethernet_push2_rewrite_5397615(); break; case 15: _mpls_ip_push2_rewrite_5397648(); break; case 16: _mpls_ethernet_push3_rewrite_5397674(); break; case 17: _mpls_ip_push3_rewrite_5397707(); break; case 18: _ipv4_erspan_t3_rewrite_5397733(); break; case 19: _ipv6_erspan_t3_rewrite_5397894(); break; default: NoAction_159_5388043(); break; } // keys: meta.tunnel_metadata.egress_tunnel_type:exact, meta.tunnel_metadata.egress_header_count:exact, meta.multicast_metadata.replica:exact // size 1024 // default_action NoAction_159(); } //Table void _tunnel_mtu_0_5399424() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _tunnel_mtu_check_5398040(); break; case 1: _tunnel_mtu_miss_5398063(); break; default: NoAction_160_5388044(); break; } // keys: meta.tunnel_metadata.tunnel_index:exact // size 1024 // default_action NoAction_160(); } //Table void _tunnel_rewrite_0_5399481() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_30_5395737(); break; case 1: _cpu_rx_rewrite_5398079(); break; case 2: _set_tunnel_rewrite_details_5398189(); break; case 3: _set_mpls_rewrite_push1_5398239(); break; case 4: _set_mpls_rewrite_push2_5398307(); break; case 5: _set_mpls_rewrite_push3_5398417(); break; case 6: _fabric_unicast_rewrite_5398569(); break; case 7: _fabric_multicast_rewrite_5398705(); break; default: NoAction_161_5388045(); break; } // keys: meta.tunnel_metadata.tunnel_index:exact // size 1024 // default_action NoAction_161(); } //Table void _tunnel_smac_rewrite_0_5399574() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_31_5395738(); break; case 1: _rewrite_tunnel_smac_5398855(); break; default: NoAction_162_5388046(); break; } // keys: meta.tunnel_metadata.tunnel_smac_index:exact // size 1024 // default_action NoAction_162(); } //Table void _tunnel_src_rewrite_0_5399631() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_32_5395739(); break; case 1: _rewrite_tunnel_ipv4_src_5398873(); break; case 2: _rewrite_tunnel_ipv6_src_5398891(); break; default: NoAction_163_5388047(); break; } // keys: meta.tunnel_metadata.tunnel_src_index:exact // size 1024 // default_action NoAction_163(); } //Table void _egress_ip_acl_0_5399810() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_33_5399694(); break; case 1: _egress_acl_deny_5399706(); break; case 2: _egress_acl_permit_5399766(); break; default: NoAction_164_5388048(); break; } // keys: meta.acl_metadata.egress_if_label:ternary, meta.acl_metadata.egress_bd_label:ternary, hdr.ipv4.srcAddr:ternary, hdr.ipv4.dstAddr:ternary, hdr.ipv4.protocol:ternary, meta.acl_metadata.egress_src_port_range_id:exact, meta.acl_metadata.egress_dst_port_range_id:exact // size 512 // default_action NoAction_164(); } //Table void _egress_ipv6_acl_0_5399937() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_34_5399704(); break; case 1: _egress_acl_deny_3_5399730(); break; case 2: _egress_acl_permit_3_5399784(); break; default: NoAction_165_5388049(); break; } // keys: meta.acl_metadata.egress_if_label:ternary, meta.acl_metadata.egress_bd_label:ternary, hdr.ipv6.srcAddr:ternary, hdr.ipv6.dstAddr:ternary, hdr.ipv6.nextHdr:ternary, meta.acl_metadata.egress_src_port_range_id:exact, meta.acl_metadata.egress_dst_port_range_id:exact // size 512 // default_action NoAction_165(); } //Table void _egress_mac_acl_0_5400060() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_35_5399705(); break; case 1: _egress_acl_deny_4_5399748(); break; case 2: _egress_acl_permit_4_5399797(); break; default: NoAction_166_5388050(); break; } // keys: meta.acl_metadata.egress_if_label:ternary, meta.acl_metadata.egress_bd_label:ternary, hdr.ethernet.srcAddr:ternary, hdr.ethernet.dstAddr:ternary, hdr.ethernet.etherType:ternary // size 512 // default_action NoAction_166(); } //Table void _int_outer_encap_0_5400298() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_update_vxlan_gpe_ipv4_5400163(); break; case 1: _int_add_update_vxlan_gpe_ipv4_5400215(); break; case 2: _nop_36_5400288(); break; default: NoAction_167_5388051(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.vxlan_gpe.$valid$:exact, meta.int_metadata_i2e.source:exact, meta.tunnel_metadata.egress_tunnel_type:ternary // size 8 // default_action NoAction_167(); } //Table void _egress_vlan_xlate_0_5400536() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_egress_packet_vlan_untagged_5400395(); break; case 1: _set_egress_packet_vlan_tagged_5400405(); break; case 2: _set_egress_packet_vlan_double_tagged_5400455(); break; default: NoAction_168_5388052(); break; } // keys: meta.egress_metadata.ifindex:exact, meta.egress_metadata.bd:exact // size 1024 // default_action NoAction_168(); } //Table void _egress_filter_0_5400679() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _egress_filter_check_5400611(); break; default: NoAction_169_5388053(); break; } // default_action NoAction_169(); } //Table void _egress_filter_drop_0_5400713() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_egress_filter_drop_5400663(); break; default: NoAction_170_5388054(); break; } // default_action NoAction_170(); } //Table void _egress_system_acl_0_5401042() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_37_5400747(); break; case 1: _drop_packet_5400757(); break; case 2: _egress_copy_to_cpu_5400773(); break; case 3: _egress_redirect_to_cpu_5400814(); break; case 4: _egress_copy_to_cpu_with_reason_5400857(); break; case 5: _egress_redirect_to_cpu_with_reason_5400902(); break; case 6: _egress_mirror_5400953(); break; case 7: _egress_mirror_drop_5400996(); break; default: NoAction_171_5388055(); break; } // keys: meta.fabric_metadata.reason_code:ternary, standard_metadata.egress_port:ternary, meta.intrinsic_metadata.deflection_flag:ternary, meta.l3_metadata.l3_mtu_check:ternary, meta.acl_metadata.acl_deny:ternary // size 512 // default_action NoAction_171(); } typedef struct { uint32_t bd : 16; uint64_t lkp_mac_sa : 48; uint32_t ifindex : 16; } mac_learn_digest; typedef struct { uint32_t field_5 : 32; uint32_t field_6 : 32; uint8_t field_7 : 8; uint32_t field_8 : 16; uint32_t field_9 : 16; } tuple_2; typedef struct { uint64_t field_10 : 48; uint64_t field_11 : 48; uint32_t field_12 : 32; uint32_t field_13 : 32; uint8_t field_14 : 8; uint32_t field_15 : 16; uint32_t field_16 : 16; } tuple_3; typedef struct { uint64_t field_17 : 64; uint64_t field_18 : 64; uint8_t field_19 : 8; uint32_t field_20 : 16; uint32_t field_21 : 16; } tuple_4; typedef struct { uint64_t field_22 : 48; uint64_t field_23 : 48; uint64_t field_24 : 64; uint64_t field_25 : 64; uint8_t field_26 : 8; uint32_t field_27 : 16; uint32_t field_28 : 16; } tuple_5; typedef struct { uint32_t field_29 : 16; uint64_t field_30 : 48; uint64_t field_31 : 48; uint32_t field_32 : 16; } tuple_6; typedef struct { uint8_t field_33 : 1; uint32_t field_34 : 16; } tuple_7; typedef struct { tuple_0 field_35; uint32_t field_36 : 16; uint32_t field_37 : 16; uint32_t field_38 : 16; } tuple_8; typedef struct { uint32_t field_39 : 16; uint8_t field_40 : 8; } tuple_9; //Control uint32_t _process_hashes_tmp_9; tuple_2 _process_hashes_tmp_10; uint32_t _process_hashes_tmp_11; tuple_3 _process_hashes_tmp_12; uint32_t _process_hashes_tmp_13; tuple_4 _process_hashes_tmp_14; uint32_t _process_hashes_tmp_15; tuple_5 _process_hashes_tmp_16; uint32_t _process_hashes_tmp_17; tuple_6 _process_hashes_tmp_18; void ingress() { _ingress_port_mapping_0_5402096(); _ingress_port_properties_0_5402148(); _validate_outer_ethernet_0_5402648(); if(action_run == 5402198) { } else { if((hdr.ipv4.isValid == 1)) { _validate_outer_ipv4_packet_5402874(); } else { if((hdr.ipv6.isValid == 1)) { _validate_outer_ipv6_packet_5403021(); } else { if((hdr.mpls[0].isValid == 1)) { _validate_mpls_packet_5403205(); } } } } _switch_config_params_0_5403437(); _port_vlan_mapping_0_5403668(); if((meta.ingress_metadata.port_type == 0) && (meta.l2_metadata.stp_group != 0)) { _spanning_tree_0_5403811(); } if((meta.ingress_metadata.bypass_lookups & 8 == 0)) { if((meta.qos_metadata.trust_dscp == 1)) { _ingress_qos_map_dscp_0_5403994(); } else { if((meta.qos_metadata.trust_pcp == 1)) { _ingress_qos_map_pcp_0_5404075(); } } } if((meta.ingress_metadata.port_type == 0) && (meta.security_metadata.ipsg_enabled == 1)) { _ipsg_0_5404180(); if(action_run == 5404154) { _ipsg_permit_special_0_5404263(); } } if((hdr.int_header.isValid != 1)) { _int_source_0_5404861(); } else { _int_terminate_0_5404978(); _int_sink_update_outer_0_5404780(); } _sflow_ingress_0_5405298(); _sflow_ing_take_sample_0_5405174(); if((meta.ingress_metadata.port_type != 0)) { _fabric_ingress_dst_lkp_5407150(); if((meta.ingress_metadata.port_type == 1)) { if((hdr.fabric_header_multicast.isValid == 1)) { _fabric_ingress_src_lkp_5407227(); } if((meta.tunnel_metadata.tunnel_terminate == 0)) { _native_packet_over_fabric_5407284(); } } } if((meta.tunnel_metadata.ingress_tunnel_type != 0)) { _outer_rmac_0_5406371(); if(action_run == 5405765) { if((hdr.ipv4.isValid == 1)) { _outer_ipv4_multicast_5408470(); if(action_run == 5408259) { _outer_ipv4_multicast_star_g_5408569(); } } else { if((hdr.ipv6.isValid == 1)) { _outer_ipv6_multicast_5408880(); if(action_run == 5408669) { _outer_ipv6_multicast_star_g_5408979(); } } } } else { if((hdr.ipv4.isValid == 1)) { _ipv4_src_vtep_5407518(); if(action_run == 5407417) { _ipv4_dest_vtep_5407435(); } } else { if((hdr.ipv6.isValid == 1)) { _ipv6_src_vtep_5407756(); if(action_run == 5407655) { _ipv6_dest_vtep_5407673(); } } else { if((hdr.mpls[0].isValid == 1)) { _mpls_5408147(); } } } } } if((meta.tunnel_metadata.tunnel_terminate == 1) || (meta.multicast_metadata.outer_mcast_route_hit == 1) && (meta.multicast_metadata.outer_mcast_mode == 1) && (meta.multicast_metadata.mcast_rpf_group == 0) || (meta.multicast_metadata.outer_mcast_mode == 2) && (meta.multicast_metadata.mcast_rpf_group != 0)) { _tunnel_0_5406440(); if(action_run == 5405801) { _tunnel_lookup_miss_2_5406557(); } } else { _adjust_lkp_fields_0_5406300(); } if((meta.ingress_metadata.port_type == 0)) { _storm_control_0_5409125(); } if((meta.ingress_metadata.port_type != 1)) { if(!(hdr.mpls[0].isValid == 1) && (meta.l3_metadata.fib_hit == 1)) { if((meta.ingress_metadata.bypass_lookups & 64 == 0) && (meta.ingress_metadata.drop_flag == 0)) { _validate_packet_0_5409361(); } _ingress_l4_src_port_0_5409626(); _ingress_l4_dst_port_0_5409567(); if((meta.ingress_metadata.bypass_lookups & 128 == 0) && (meta.ingress_metadata.port_type == 0)) { _smac_0_5409987(); } if((meta.ingress_metadata.bypass_lookups & 1 == 0)) { _dmac_0_5409885(); } if((meta.l3_metadata.lkp_ip_type == 0)) { if((meta.ingress_metadata.bypass_lookups & 4 == 0)) { _mac_acl_0_5410469(); } } else { if((meta.ingress_metadata.bypass_lookups & 4 == 0)) { if((meta.l3_metadata.lkp_ip_type == 1)) { _ip_acl_0_5411373(); } else { if((meta.l3_metadata.lkp_ip_type == 2)) { _ipv6_acl_0_5411538(); } } } } rmac_5401933(); if(action_run == 5401917) { if((meta.l3_metadata.lkp_ip_type == 1)) { if((meta.ingress_metadata.bypass_lookups & 1 == 0)) { _ipv4_multicast_bridge_5413637(); if(action_run == 5413569) { _ipv4_multicast_bridge_star_g_5413716(); } } if((meta.ingress_metadata.bypass_lookups & 2 == 0) && (meta.multicast_metadata.ipv4_multicast_enabled == 1)) { _ipv4_multicast_route_5413850(); if(action_run == 5413783) { _ipv4_multicast_route_star_g_5414065(); } } } else { if((meta.l3_metadata.lkp_ip_type == 2)) { if((meta.ingress_metadata.bypass_lookups & 1 == 0)) { _ipv6_multicast_bridge_5414249(); if(action_run == 5414181) { _ipv6_multicast_bridge_star_g_5414326(); } } if((meta.ingress_metadata.bypass_lookups & 2 == 0) && (meta.multicast_metadata.ipv6_multicast_enabled == 1)) { _ipv6_multicast_route_5414460(); if(action_run == 5414393) { _ipv6_multicast_route_star_g_5414675(); } } } } } else { if((meta.ingress_metadata.bypass_lookups & 2 == 0)) { if((meta.l3_metadata.lkp_ip_type == 1) && (meta.ipv4_metadata.ipv4_unicast_enabled == 1)) { _ipv4_racl_0_5411955(); if((meta.ipv4_metadata.ipv4_urpf_mode != 0)) { _ipv4_urpf_0_5412168(); if(action_run == 5412082) { _ipv4_urpf_lpm_0_5412237(); } } _ipv4_fib_0_5412421(); if(action_run == 5412304) { _ipv4_fib_lpm_0_5412496(); } } else { if((meta.l3_metadata.lkp_ip_type == 2) && (meta.ipv6_metadata.ipv6_unicast_enabled == 1)) { _ipv6_racl_0_5412825(); if((meta.ipv6_metadata.ipv6_urpf_mode != 0)) { _ipv6_urpf_0_5413038(); if(action_run == 5412952) { _ipv6_urpf_lpm_0_5413107(); } } _ipv6_fib_0_5413291(); if(action_run == 5413174) { _ipv6_fib_lpm_0_5413366(); } } } if((meta.l3_metadata.urpf_mode == 2) && (meta.l3_metadata.urpf_hit == 1)) { _urpf_bd_0_5413472(); } } } _nat_twice_0_5415259(); if(action_run == 5414774) { _nat_dst_0_5414964(); if(action_run == 5414763) { _nat_src_0_5415172(); if(action_run == 5414773) { _nat_flow_0_5415053(); } } } } } if((meta.ingress_metadata.bypass_lookups & 16 == 0)) { _meter_index_2_5415403(); } if((meta.tunnel_metadata.tunnel_terminate == 0) && (hdr.ipv4.isValid == 1) || (meta.tunnel_metadata.tunnel_terminate == 1) && (hdr.inner_ipv4.isValid == 1)) { _compute_ipv4_hashes_0_5415850(); } else { if((meta.tunnel_metadata.tunnel_terminate == 0) && (hdr.ipv6.isValid == 1) || (meta.tunnel_metadata.tunnel_terminate == 1) && (hdr.inner_ipv6.isValid == 1)) { _compute_ipv6_hashes_0_5415899(); } else { _compute_non_ip_hashes_0_5415946(); } } _compute_other_hashes_0_5415993(); if((meta.ingress_metadata.bypass_lookups & 16 == 0)) { _meter_action_0_5416100(); } if((meta.ingress_metadata.port_type != 1)) { _ingress_bd_stats_2_5416225(); _acl_stats_2_5416304(); _storm_control_stats_2_5416373(); if((meta.ingress_metadata.bypass_lookups != 65535)) { _fwd_result_0_5416861(); } if((meta.nexthop_metadata.nexthop_type == 1)) { _ecmp_group_0_5417336(); } else { _nexthop_0_5417431(); } if((meta.ingress_metadata.egress_ifindex == 65535)) { _bd_flood_0_5417522(); } else { _lag_group_0_5417644(); } if((meta.l2_metadata.learning_enabled == 1)) { _learn_notify_0_5417782(); } } _fabric_lag_0_5417908(); _traffic_class_0_5418071(); if((meta.ingress_metadata.port_type != 1)) { if((meta.ingress_metadata.bypass_lookups & 32 == 0)) { _system_acl_0_5418657(); if((meta.ingress_metadata.drop_flag == 1)) { _drop_stats_4_5418619(); } } } } // Action void NoAction_172_5401815() { action_run = 5401815; } // Action void NoAction_173_5401816() { action_run = 5401816; } // Action void NoAction_174_5401817() { action_run = 5401817; } // Action void NoAction_175_5401818() { action_run = 5401818; } // Action void NoAction_176_5401819() { action_run = 5401819; } // Action void NoAction_177_5401820() { action_run = 5401820; } // Action void NoAction_178_5401821() { action_run = 5401821; } // Action void NoAction_179_5401822() { action_run = 5401822; } // Action void NoAction_180_5401823() { action_run = 5401823; } // Action void NoAction_181_5401824() { action_run = 5401824; } // Action void NoAction_182_5401825() { action_run = 5401825; } // Action void NoAction_183_5401826() { action_run = 5401826; } // Action void NoAction_184_5401827() { action_run = 5401827; } // Action void NoAction_185_5401828() { action_run = 5401828; } // Action void NoAction_186_5401829() { action_run = 5401829; } // Action void NoAction_187_5401830() { action_run = 5401830; } // Action void NoAction_188_5401831() { action_run = 5401831; } // Action void NoAction_189_5401832() { action_run = 5401832; } // Action void NoAction_190_5401833() { action_run = 5401833; } // Action void NoAction_191_5401834() { action_run = 5401834; } // Action void NoAction_192_5401835() { action_run = 5401835; } // Action void NoAction_193_5401836() { action_run = 5401836; } // Action void NoAction_194_5401837() { action_run = 5401837; } // Action void NoAction_195_5401838() { action_run = 5401838; } // Action void NoAction_196_5401839() { action_run = 5401839; } // Action void NoAction_197_5401840() { action_run = 5401840; } // Action void NoAction_198_5401841() { action_run = 5401841; } // Action void NoAction_199_5401842() { action_run = 5401842; } // Action void NoAction_200_5401843() { action_run = 5401843; } // Action void NoAction_201_5401844() { action_run = 5401844; } // Action void NoAction_202_5401845() { action_run = 5401845; } // Action void NoAction_203_5401846() { action_run = 5401846; } // Action void NoAction_204_5401847() { action_run = 5401847; } // Action void NoAction_205_5401848() { action_run = 5401848; } // Action void NoAction_206_5401849() { action_run = 5401849; } // Action void NoAction_207_5401850() { action_run = 5401850; } // Action void NoAction_208_5401851() { action_run = 5401851; } // Action void NoAction_209_5401852() { action_run = 5401852; } // Action void NoAction_210_5401853() { action_run = 5401853; } // Action void NoAction_211_5401854() { action_run = 5401854; } // Action void NoAction_212_5401855() { action_run = 5401855; } // Action void NoAction_213_5401856() { action_run = 5401856; } // Action void NoAction_214_5401857() { action_run = 5401857; } // Action void NoAction_215_5401858() { action_run = 5401858; } // Action void NoAction_216_5401859() { action_run = 5401859; } // Action void NoAction_217_5401860() { action_run = 5401860; } // Action void NoAction_218_5401861() { action_run = 5401861; } // Action void NoAction_219_5401862() { action_run = 5401862; } // Action void NoAction_220_5401863() { action_run = 5401863; } // Action void NoAction_221_5401864() { action_run = 5401864; } // Action void NoAction_222_5401865() { action_run = 5401865; } // Action void NoAction_223_5401866() { action_run = 5401866; } // Action void NoAction_224_5401867() { action_run = 5401867; } // Action void NoAction_225_5401868() { action_run = 5401868; } // Action void NoAction_226_5401869() { action_run = 5401869; } // Action void NoAction_227_5401870() { action_run = 5401870; } // Action void NoAction_228_5401871() { action_run = 5401871; } // Action void NoAction_229_5401872() { action_run = 5401872; } // Action void NoAction_230_5401873() { action_run = 5401873; } // Action void NoAction_231_5401874() { action_run = 5401874; } // Action void NoAction_232_5401875() { action_run = 5401875; } // Action void NoAction_233_5401876() { action_run = 5401876; } // Action void NoAction_234_5401877() { action_run = 5401877; } // Action void NoAction_235_5401878() { action_run = 5401878; } // Action void NoAction_236_5401879() { action_run = 5401879; } // Action void NoAction_237_5401880() { action_run = 5401880; } // Action void NoAction_238_5401881() { action_run = 5401881; } // Action void NoAction_239_5401882() { action_run = 5401882; } // Action void NoAction_240_5401883() { action_run = 5401883; } // Action void NoAction_241_5401884() { action_run = 5401884; } // Action void NoAction_242_5401885() { action_run = 5401885; } // Action void NoAction_243_5401886() { action_run = 5401886; } // Action void NoAction_244_5401887() { action_run = 5401887; } // Action void NoAction_245_5401888() { action_run = 5401888; } // Action void NoAction_246_5401889() { action_run = 5401889; } // Action void NoAction_247_5401890() { action_run = 5401890; } // Action void NoAction_248_5401891() { action_run = 5401891; } // Action void NoAction_249_5401892() { action_run = 5401892; } // Action void NoAction_250_5401893() { action_run = 5401893; } // Action void NoAction_251_5401894() { action_run = 5401894; } // Action void NoAction_252_5401895() { action_run = 5401895; } // Action void NoAction_253_5401896() { action_run = 5401896; } // Action void NoAction_254_5401897() { action_run = 5401897; } // Action void NoAction_255_5401898() { action_run = 5401898; } // Action void NoAction_256_5401899() { action_run = 5401899; } // Action void NoAction_257_5401900() { action_run = 5401900; } // Action void rmac_hit_0_5401901() { action_run = 5401901; meta.l3_metadata.rmac_hit = 1; } // Action void rmac_miss_0_5401917() { action_run = 5401917; meta.l3_metadata.rmac_hit = 0; } // Action void _set_ifindex_5402004() { action_run = 5402004; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); uint8_t port_type; klee_make_symbolic(&port_type, sizeof(port_type), "port_type"); meta.ingress_metadata.ifindex = ifindex; meta.ingress_metadata.port_type = port_type; } // Action void _set_ingress_port_properties_5402030() { action_run = 5402030; uint8_t trust_dscp; klee_make_symbolic(&trust_dscp, sizeof(trust_dscp), "trust_dscp"); uint8_t trust_pcp; klee_make_symbolic(&trust_pcp, sizeof(trust_pcp), "trust_pcp"); meta.qos_metadata.trust_dscp = trust_dscp; meta.qos_metadata.trust_pcp = trust_pcp; } // Action void _malformed_outer_ethernet_packet_5402198() { action_run = 5402198; meta.ingress_metadata.drop_flag = 1; } // Action void _set_valid_outer_unicast_packet_untagged_5402222() { action_run = 5402222; meta.l2_metadata.lkp_pkt_type = 1; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; } // Action void _set_valid_outer_unicast_packet_single_tagged_5402247() { action_run = 5402247; meta.l2_metadata.lkp_pkt_type = 1; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[0].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_unicast_packet_double_tagged_5402287() { action_run = 5402287; meta.l2_metadata.lkp_pkt_type = 1; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[1].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_unicast_packet_qinq_tagged_5402327() { action_run = 5402327; meta.l2_metadata.lkp_pkt_type = 1; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_multicast_packet_untagged_5402364() { action_run = 5402364; meta.l2_metadata.lkp_pkt_type = 2; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; } // Action void _set_valid_outer_multicast_packet_single_tagged_5402389() { action_run = 5402389; meta.l2_metadata.lkp_pkt_type = 2; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[0].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_multicast_packet_double_tagged_5402429() { action_run = 5402429; meta.l2_metadata.lkp_pkt_type = 2; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[1].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_multicast_packet_qinq_tagged_5402469() { action_run = 5402469; meta.l2_metadata.lkp_pkt_type = 2; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_broadcast_packet_untagged_5402506() { action_run = 5402506; meta.l2_metadata.lkp_pkt_type = 4; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; } // Action void _set_valid_outer_broadcast_packet_single_tagged_5402531() { action_run = 5402531; meta.l2_metadata.lkp_pkt_type = 4; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[0].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_broadcast_packet_double_tagged_5402571() { action_run = 5402571; meta.l2_metadata.lkp_pkt_type = 4; meta.l2_metadata.lkp_mac_type = hdr.vlan_tag_[1].etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_broadcast_packet_qinq_tagged_5402611() { action_run = 5402611; meta.l2_metadata.lkp_pkt_type = 4; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; meta.l2_metadata.lkp_pcp = hdr.vlan_tag_[0].pcp; } // Action void _set_valid_outer_ipv4_packet_0_5402809() { action_run = 5402809; meta.l3_metadata.lkp_ip_type = 1; meta.l3_metadata.lkp_dscp = hdr.ipv4.diffserv; meta.l3_metadata.lkp_ip_version = hdr.ipv4.version; } // Action void _set_malformed_outer_ipv4_packet_0_5402843() { action_run = 5402843; traverse_5402860 = 1; meta.ingress_metadata.drop_flag = 1; } // Action void _set_valid_outer_ipv6_packet_0_5402956() { action_run = 5402956; meta.l3_metadata.lkp_ip_type = 2; meta.l3_metadata.lkp_dscp = hdr.ipv6.trafficClass; meta.l3_metadata.lkp_ip_version = hdr.ipv6.version; } // Action void _set_malformed_outer_ipv6_packet_0_5402990() { action_run = 5402990; traverse_5403007 = 1; meta.ingress_metadata.drop_flag = 1; } // Action void _set_valid_mpls_label1_0_5403103() { action_run = 5403103; meta.tunnel_metadata.mpls_label = hdr.mpls[0].label; meta.tunnel_metadata.mpls_exp = hdr.mpls[0].exp; } // Action void _set_valid_mpls_label2_0_5403137() { action_run = 5403137; meta.tunnel_metadata.mpls_label = hdr.mpls[1].label; meta.tunnel_metadata.mpls_exp = hdr.mpls[1].exp; } // Action void _set_valid_mpls_label3_0_5403171() { action_run = 5403171; meta.tunnel_metadata.mpls_label = hdr.mpls[2].label; meta.tunnel_metadata.mpls_exp = hdr.mpls[2].exp; } // Action void _set_config_parameters_5403375() { action_run = 5403375; uint8_t enable_dod; klee_make_symbolic(&enable_dod, sizeof(enable_dod), "enable_dod"); meta.intrinsic_metadata.deflect_on_drop = enable_dod; meta.i2e_metadata.ingress_tstamp = (uint32_t) meta.intrinsic_metadata.ingress_global_timestamp; meta.ingress_metadata.ingress_port = standard_metadata.ingress_port; meta.l2_metadata.same_if_check = meta.ingress_metadata.ifindex; standard_metadata.egress_spec = 511; //random uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.ingress_metadata.sflow_take_sample = tmp_symbolic; klee_assume(meta.ingress_metadata.sflow_take_sample > 0 && meta.ingress_metadata.sflow_take_sample < 2147483647); } // Action void _set_bd_properties_5403475() { action_run = 5403475; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint32_t stp_group; klee_make_symbolic(&stp_group, sizeof(stp_group), "stp_group"); uint8_t learning_enabled; klee_make_symbolic(&learning_enabled, sizeof(learning_enabled), "learning_enabled"); uint32_t bd_label; klee_make_symbolic(&bd_label, sizeof(bd_label), "bd_label"); uint32_t stats_idx; klee_make_symbolic(&stats_idx, sizeof(stats_idx), "stats_idx"); uint32_t rmac_group; klee_make_symbolic(&rmac_group, sizeof(rmac_group), "rmac_group"); uint8_t ipv4_unicast_enabled; klee_make_symbolic(&ipv4_unicast_enabled, sizeof(ipv4_unicast_enabled), "ipv4_unicast_enabled"); uint8_t ipv6_unicast_enabled; klee_make_symbolic(&ipv6_unicast_enabled, sizeof(ipv6_unicast_enabled), "ipv6_unicast_enabled"); uint8_t ipv4_urpf_mode; klee_make_symbolic(&ipv4_urpf_mode, sizeof(ipv4_urpf_mode), "ipv4_urpf_mode"); uint8_t ipv6_urpf_mode; klee_make_symbolic(&ipv6_urpf_mode, sizeof(ipv6_urpf_mode), "ipv6_urpf_mode"); uint8_t igmp_snooping_enabled; klee_make_symbolic(&igmp_snooping_enabled, sizeof(igmp_snooping_enabled), "igmp_snooping_enabled"); uint8_t mld_snooping_enabled; klee_make_symbolic(&mld_snooping_enabled, sizeof(mld_snooping_enabled), "mld_snooping_enabled"); uint8_t ipv4_multicast_enabled; klee_make_symbolic(&ipv4_multicast_enabled, sizeof(ipv4_multicast_enabled), "ipv4_multicast_enabled"); uint8_t ipv6_multicast_enabled; klee_make_symbolic(&ipv6_multicast_enabled, sizeof(ipv6_multicast_enabled), "ipv6_multicast_enabled"); uint32_t mrpf_group; klee_make_symbolic(&mrpf_group, sizeof(mrpf_group), "mrpf_group"); uint32_t ipv4_mcast_key; klee_make_symbolic(&ipv4_mcast_key, sizeof(ipv4_mcast_key), "ipv4_mcast_key"); uint8_t ipv4_mcast_key_type; klee_make_symbolic(&ipv4_mcast_key_type, sizeof(ipv4_mcast_key_type), "ipv4_mcast_key_type"); uint32_t ipv6_mcast_key; klee_make_symbolic(&ipv6_mcast_key, sizeof(ipv6_mcast_key), "ipv6_mcast_key"); uint8_t ipv6_mcast_key_type; klee_make_symbolic(&ipv6_mcast_key_type, sizeof(ipv6_mcast_key_type), "ipv6_mcast_key_type"); meta.ingress_metadata.bd = bd; meta.ingress_metadata.outer_bd = bd; meta.acl_metadata.bd_label = bd_label; meta.l2_metadata.stp_group = stp_group; meta.l2_metadata.bd_stats_idx = stats_idx; meta.l2_metadata.learning_enabled = learning_enabled; meta.l3_metadata.vrf = vrf; meta.ipv4_metadata.ipv4_unicast_enabled = ipv4_unicast_enabled; meta.ipv6_metadata.ipv6_unicast_enabled = ipv6_unicast_enabled; meta.ipv4_metadata.ipv4_urpf_mode = ipv4_urpf_mode; meta.ipv6_metadata.ipv6_urpf_mode = ipv6_urpf_mode; meta.l3_metadata.rmac_group = rmac_group; meta.multicast_metadata.igmp_snooping_enabled = igmp_snooping_enabled; meta.multicast_metadata.mld_snooping_enabled = mld_snooping_enabled; meta.multicast_metadata.ipv4_multicast_enabled = ipv4_multicast_enabled; meta.multicast_metadata.ipv6_multicast_enabled = ipv6_multicast_enabled; meta.multicast_metadata.bd_mrpf_group = mrpf_group; meta.multicast_metadata.ipv4_mcast_key_type = ipv4_mcast_key_type; meta.multicast_metadata.ipv4_mcast_key = ipv4_mcast_key; meta.multicast_metadata.ipv6_mcast_key_type = ipv6_mcast_key_type; meta.multicast_metadata.ipv6_mcast_key = ipv6_mcast_key; } // Action void _port_vlan_mapping_miss_5403652() { action_run = 5403652; meta.l2_metadata.port_vlan_mapping_miss = 1; } // Action void _set_stp_state_5403793() { action_run = 5403793; uint8_t stp_state; klee_make_symbolic(&stp_state, sizeof(stp_state), "stp_state"); meta.l2_metadata.stp_state = stp_state; } // Action void _nop_38_5403874() { action_run = 5403874; } // Action void _nop_39_5403884() { action_run = 5403884; } // Action void _set_ingress_tc_5403885() { action_run = 5403885; } // Action void _set_ingress_tc_2_5403903() { action_run = 5403903; } // Action void _set_ingress_color_5403916() { action_run = 5403916; } // Action void _set_ingress_color_2_5403934() { action_run = 5403934; } // Action void _set_ingress_tc_and_color_5403947() { action_run = 5403947; } // Action void _set_ingress_tc_and_color_2_5403973() { action_run = 5403973; } // Action void _on_miss_9_5404154() { action_run = 5404154; } // Action void _ipsg_miss_5404164() { action_run = 5404164; meta.security_metadata.ipsg_check_fail = 1; } // Action void _int_sink_update_vxlan_gpe_v4_5404334() { action_run = 5404334; hdr.vxlan_gpe.next_proto = hdr.vxlan_gpe_int_header.next_proto; hdr.vxlan_gpe_int_header.isValid = 0; hdr.ipv4.totalLen = hdr.ipv4.totalLen - meta.int_metadata.insert_byte_cnt; hdr.udp.length_ = hdr.udp.length_ - meta.int_metadata.insert_byte_cnt; } // Action void _nop_40_5404389() { action_run = 5404389; } // Action void _int_set_src_5404399() { action_run = 5404399; meta.int_metadata_i2e.source = 1; } // Action void _int_set_no_src_5404415() { action_run = 5404415; meta.int_metadata_i2e.source = 0; } // Action void _int_sink_gpe_5404431() { action_run = 5404431; uint32_t mirror_id; klee_make_symbolic(&mirror_id, sizeof(mirror_id), "mirror_id"); meta.int_metadata.insert_byte_cnt = meta.int_metadata.gpe_int_hdr_len << 2; meta.int_metadata_i2e.sink = 1; meta.i2e_metadata.mirror_session_id = (uint32_t) mirror_id; hdr.int_header.isValid = 0; hdr.int_val[0].isValid = 0; hdr.int_val[1].isValid = 0; hdr.int_val[2].isValid = 0; hdr.int_val[3].isValid = 0; hdr.int_val[4].isValid = 0; hdr.int_val[5].isValid = 0; hdr.int_val[6].isValid = 0; hdr.int_val[7].isValid = 0; hdr.int_val[8].isValid = 0; hdr.int_val[9].isValid = 0; hdr.int_val[10].isValid = 0; hdr.int_val[11].isValid = 0; hdr.int_val[12].isValid = 0; hdr.int_val[13].isValid = 0; hdr.int_val[14].isValid = 0; hdr.int_val[15].isValid = 0; hdr.int_val[16].isValid = 0; hdr.int_val[17].isValid = 0; hdr.int_val[18].isValid = 0; hdr.int_val[19].isValid = 0; hdr.int_val[20].isValid = 0; hdr.int_val[21].isValid = 0; hdr.int_val[22].isValid = 0; hdr.int_val[23].isValid = 0; } // Action void _int_no_sink_5404764() { action_run = 5404764; meta.int_metadata_i2e.sink = 0; } // Action void _nop_41_5405099() { action_run = 5405099; } // Action void _sflow_ing_pkt_to_cpu_5405109() { action_run = 5405109; uint32_t sflow_i2e_mirror_id; klee_make_symbolic(&sflow_i2e_mirror_id, sizeof(sflow_i2e_mirror_id), "sflow_i2e_mirror_id"); meta.i2e_metadata.mirror_session_id = (uint32_t) sflow_i2e_mirror_id; } // Action void _nop_42_5405243() { action_run = 5405243; } // Action void _sflow_ing_session_enable_5405260() { action_run = 5405260; uint32_t rate_thr; klee_make_symbolic(&rate_thr, sizeof(rate_thr), "rate_thr"); uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); meta.ingress_metadata.sflow_take_sample = rate_thr + meta.ingress_metadata.sflow_take_sample; meta.sflow_metadata.sflow_session_id = session_id; } // Action void _non_ip_lkp_5405402() { action_run = 5405402; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; } // Action void _non_ip_lkp_2_5405430() { action_run = 5405430; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; } // Action void _ipv4_lkp_5405451() { action_run = 5405451; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv4_metadata.lkp_ipv4_sa = hdr.ipv4.srcAddr; meta.ipv4_metadata.lkp_ipv4_da = hdr.ipv4.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv4.protocol; meta.l3_metadata.lkp_ip_ttl = hdr.ipv4.ttl; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _ipv4_lkp_2_5405533() { action_run = 5405533; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv4_metadata.lkp_ipv4_sa = hdr.ipv4.srcAddr; meta.ipv4_metadata.lkp_ipv4_da = hdr.ipv4.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv4.protocol; meta.l3_metadata.lkp_ip_ttl = hdr.ipv4.ttl; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _ipv6_lkp_5405608() { action_run = 5405608; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv6_metadata.lkp_ipv6_sa = hdr.ipv6.srcAddr; meta.ipv6_metadata.lkp_ipv6_da = hdr.ipv6.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv6.nextHdr; meta.l3_metadata.lkp_ip_ttl = hdr.ipv6.hopLimit; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _ipv6_lkp_2_5405690() { action_run = 5405690; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv6_metadata.lkp_ipv6_sa = hdr.ipv6.srcAddr; meta.ipv6_metadata.lkp_ipv6_da = hdr.ipv6.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv6.nextHdr; meta.l3_metadata.lkp_ip_ttl = hdr.ipv6.hopLimit; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _on_miss_10_5405765() { action_run = 5405765; } // Action void _outer_rmac_hit_5405775() { action_run = 5405775; meta.l3_metadata.rmac_hit = 1; } // Action void _nop_43_5405791() { action_run = 5405791; } // Action void _tunnel_lookup_miss_5405801() { action_run = 5405801; } // Action void _terminate_tunnel_inner_non_ip_5405811() { action_run = 5405811; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t bd_label; klee_make_symbolic(&bd_label, sizeof(bd_label), "bd_label"); uint32_t stats_idx; klee_make_symbolic(&stats_idx, sizeof(stats_idx), "stats_idx"); meta.tunnel_metadata.tunnel_terminate = 1; meta.ingress_metadata.bd = bd; meta.acl_metadata.bd_label = bd_label; meta.l2_metadata.bd_stats_idx = stats_idx; meta.l3_metadata.lkp_ip_type = 0; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; } // Action void _terminate_tunnel_inner_ethernet_ipv4_5405866() { action_run = 5405866; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint32_t rmac_group; klee_make_symbolic(&rmac_group, sizeof(rmac_group), "rmac_group"); uint32_t bd_label; klee_make_symbolic(&bd_label, sizeof(bd_label), "bd_label"); uint8_t ipv4_unicast_enabled; klee_make_symbolic(&ipv4_unicast_enabled, sizeof(ipv4_unicast_enabled), "ipv4_unicast_enabled"); uint8_t ipv4_urpf_mode; klee_make_symbolic(&ipv4_urpf_mode, sizeof(ipv4_urpf_mode), "ipv4_urpf_mode"); uint8_t igmp_snooping_enabled; klee_make_symbolic(&igmp_snooping_enabled, sizeof(igmp_snooping_enabled), "igmp_snooping_enabled"); uint32_t stats_idx; klee_make_symbolic(&stats_idx, sizeof(stats_idx), "stats_idx"); uint8_t ipv4_multicast_enabled; klee_make_symbolic(&ipv4_multicast_enabled, sizeof(ipv4_multicast_enabled), "ipv4_multicast_enabled"); uint32_t mrpf_group; klee_make_symbolic(&mrpf_group, sizeof(mrpf_group), "mrpf_group"); meta.tunnel_metadata.tunnel_terminate = 1; meta.ingress_metadata.bd = bd; meta.l3_metadata.vrf = vrf; meta.ipv4_metadata.ipv4_unicast_enabled = ipv4_unicast_enabled; meta.ipv4_metadata.ipv4_urpf_mode = ipv4_urpf_mode; meta.l3_metadata.rmac_group = rmac_group; meta.acl_metadata.bd_label = bd_label; meta.l2_metadata.bd_stats_idx = stats_idx; meta.l3_metadata.lkp_ip_type = 1; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv4.version; meta.multicast_metadata.igmp_snooping_enabled = igmp_snooping_enabled; meta.multicast_metadata.ipv4_multicast_enabled = ipv4_multicast_enabled; meta.multicast_metadata.bd_mrpf_group = mrpf_group; } // Action void _terminate_tunnel_inner_ipv4_5405986() { action_run = 5405986; uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint32_t rmac_group; klee_make_symbolic(&rmac_group, sizeof(rmac_group), "rmac_group"); uint8_t ipv4_urpf_mode; klee_make_symbolic(&ipv4_urpf_mode, sizeof(ipv4_urpf_mode), "ipv4_urpf_mode"); uint8_t ipv4_unicast_enabled; klee_make_symbolic(&ipv4_unicast_enabled, sizeof(ipv4_unicast_enabled), "ipv4_unicast_enabled"); uint8_t ipv4_multicast_enabled; klee_make_symbolic(&ipv4_multicast_enabled, sizeof(ipv4_multicast_enabled), "ipv4_multicast_enabled"); uint32_t mrpf_group; klee_make_symbolic(&mrpf_group, sizeof(mrpf_group), "mrpf_group"); meta.tunnel_metadata.tunnel_terminate = 1; meta.l3_metadata.vrf = vrf; meta.ipv4_metadata.ipv4_unicast_enabled = ipv4_unicast_enabled; meta.ipv4_metadata.ipv4_urpf_mode = ipv4_urpf_mode; meta.l3_metadata.rmac_group = rmac_group; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.l3_metadata.lkp_ip_type = 1; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv4.version; meta.multicast_metadata.bd_mrpf_group = mrpf_group; meta.multicast_metadata.ipv4_multicast_enabled = ipv4_multicast_enabled; } // Action void _terminate_tunnel_inner_ethernet_ipv6_5406083() { action_run = 5406083; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint32_t rmac_group; klee_make_symbolic(&rmac_group, sizeof(rmac_group), "rmac_group"); uint32_t bd_label; klee_make_symbolic(&bd_label, sizeof(bd_label), "bd_label"); uint8_t ipv6_unicast_enabled; klee_make_symbolic(&ipv6_unicast_enabled, sizeof(ipv6_unicast_enabled), "ipv6_unicast_enabled"); uint8_t ipv6_urpf_mode; klee_make_symbolic(&ipv6_urpf_mode, sizeof(ipv6_urpf_mode), "ipv6_urpf_mode"); uint8_t mld_snooping_enabled; klee_make_symbolic(&mld_snooping_enabled, sizeof(mld_snooping_enabled), "mld_snooping_enabled"); uint32_t stats_idx; klee_make_symbolic(&stats_idx, sizeof(stats_idx), "stats_idx"); uint8_t ipv6_multicast_enabled; klee_make_symbolic(&ipv6_multicast_enabled, sizeof(ipv6_multicast_enabled), "ipv6_multicast_enabled"); uint32_t mrpf_group; klee_make_symbolic(&mrpf_group, sizeof(mrpf_group), "mrpf_group"); meta.tunnel_metadata.tunnel_terminate = 1; meta.ingress_metadata.bd = bd; meta.l3_metadata.vrf = vrf; meta.ipv6_metadata.ipv6_unicast_enabled = ipv6_unicast_enabled; meta.ipv6_metadata.ipv6_urpf_mode = ipv6_urpf_mode; meta.l3_metadata.rmac_group = rmac_group; meta.acl_metadata.bd_label = bd_label; meta.l2_metadata.bd_stats_idx = stats_idx; meta.l3_metadata.lkp_ip_type = 2; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv6.version; meta.multicast_metadata.bd_mrpf_group = mrpf_group; meta.multicast_metadata.ipv6_multicast_enabled = ipv6_multicast_enabled; meta.multicast_metadata.mld_snooping_enabled = mld_snooping_enabled; } // Action void _terminate_tunnel_inner_ipv6_5406203() { action_run = 5406203; uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint32_t rmac_group; klee_make_symbolic(&rmac_group, sizeof(rmac_group), "rmac_group"); uint8_t ipv6_unicast_enabled; klee_make_symbolic(&ipv6_unicast_enabled, sizeof(ipv6_unicast_enabled), "ipv6_unicast_enabled"); uint8_t ipv6_urpf_mode; klee_make_symbolic(&ipv6_urpf_mode, sizeof(ipv6_urpf_mode), "ipv6_urpf_mode"); uint8_t ipv6_multicast_enabled; klee_make_symbolic(&ipv6_multicast_enabled, sizeof(ipv6_multicast_enabled), "ipv6_multicast_enabled"); uint32_t mrpf_group; klee_make_symbolic(&mrpf_group, sizeof(mrpf_group), "mrpf_group"); meta.tunnel_metadata.tunnel_terminate = 1; meta.l3_metadata.vrf = vrf; meta.ipv6_metadata.ipv6_unicast_enabled = ipv6_unicast_enabled; meta.ipv6_metadata.ipv6_urpf_mode = ipv6_urpf_mode; meta.l3_metadata.rmac_group = rmac_group; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.l3_metadata.lkp_ip_type = 2; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv6.version; meta.multicast_metadata.bd_mrpf_group = mrpf_group; meta.multicast_metadata.ipv6_multicast_enabled = ipv6_multicast_enabled; } // Action void _nop_44_5406626() { action_run = 5406626; } // Action void _nop_45_5406636() { action_run = 5406636; } // Action void _terminate_cpu_packet_0_5406637() { action_run = 5406637; standard_metadata.egress_spec = (uint32_t) hdr.fabric_header.dstPortOrGroup; meta.egress_metadata.bypass = hdr.fabric_header_cpu.txBypass; meta.intrinsic_metadata.mcast_grp = hdr.fabric_header_cpu.mcast_grp; hdr.ethernet.etherType = hdr.fabric_payload_header.etherType; hdr.fabric_header.isValid = 0; hdr.fabric_header_cpu.isValid = 0; hdr.fabric_payload_header.isValid = 0; } // Action void _switch_fabric_unicast_packet_0_5406707() { action_run = 5406707; meta.fabric_metadata.fabric_header_present = 1; meta.fabric_metadata.dst_device = hdr.fabric_header.dstDevice; meta.fabric_metadata.dst_port = hdr.fabric_header.dstPortOrGroup; } // Action void _terminate_fabric_unicast_packet_0_5406741() { action_run = 5406741; standard_metadata.egress_spec = (uint32_t) hdr.fabric_header.dstPortOrGroup; meta.tunnel_metadata.tunnel_terminate = hdr.fabric_header_unicast.tunnelTerminate; meta.tunnel_metadata.ingress_tunnel_type = hdr.fabric_header_unicast.ingressTunnelType; meta.l3_metadata.nexthop_index = hdr.fabric_header_unicast.nexthopIndex; meta.l3_metadata.routed = hdr.fabric_header_unicast.routed; meta.l3_metadata.outer_routed = hdr.fabric_header_unicast.outerRouted; hdr.ethernet.etherType = hdr.fabric_payload_header.etherType; hdr.fabric_header.isValid = 0; hdr.fabric_header_unicast.isValid = 0; hdr.fabric_payload_header.isValid = 0; } // Action void _switch_fabric_multicast_packet_0_5406838() { action_run = 5406838; meta.fabric_metadata.fabric_header_present = 1; meta.intrinsic_metadata.mcast_grp = hdr.fabric_header.dstPortOrGroup; } // Action void _terminate_fabric_multicast_packet_0_5406863() { action_run = 5406863; meta.tunnel_metadata.tunnel_terminate = hdr.fabric_header_multicast.tunnelTerminate; meta.tunnel_metadata.ingress_tunnel_type = hdr.fabric_header_multicast.ingressTunnelType; meta.l3_metadata.nexthop_index = 0; meta.l3_metadata.routed = hdr.fabric_header_multicast.routed; meta.l3_metadata.outer_routed = hdr.fabric_header_multicast.outerRouted; meta.intrinsic_metadata.mcast_grp = hdr.fabric_header_multicast.mcastGrp; hdr.ethernet.etherType = hdr.fabric_payload_header.etherType; hdr.fabric_header.isValid = 0; hdr.fabric_header_multicast.isValid = 0; hdr.fabric_payload_header.isValid = 0; } // Action void _set_ingress_ifindex_properties_0_5406957() { action_run = 5406957; } // Action void _non_ip_over_fabric_0_5406967() { action_run = 5406967; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.l2_metadata.lkp_mac_type = hdr.ethernet.etherType; } // Action void _ipv4_over_fabric_0_5407004() { action_run = 5407004; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv4_metadata.lkp_ipv4_sa = hdr.ipv4.srcAddr; meta.ipv4_metadata.lkp_ipv4_da = hdr.ipv4.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv4.protocol; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _ipv6_over_fabric_0_5407077() { action_run = 5407077; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.ipv6_metadata.lkp_ipv6_sa = hdr.ipv6.srcAddr; meta.ipv6_metadata.lkp_ipv6_da = hdr.ipv6.dstAddr; meta.l3_metadata.lkp_ip_proto = hdr.ipv6.nextHdr; meta.l3_metadata.lkp_l4_sport = meta.l3_metadata.lkp_outer_l4_sport; meta.l3_metadata.lkp_l4_dport = meta.l3_metadata.lkp_outer_l4_dport; } // Action void _nop_46_5407357() { action_run = 5407357; } // Action void _set_tunnel_termination_flag_1_5407367() { action_run = 5407367; meta.tunnel_metadata.tunnel_terminate = 1; } // Action void _set_tunnel_vni_and_termination_flag_1_5407383() { action_run = 5407383; uint32_t tunnel_vni; klee_make_symbolic(&tunnel_vni, sizeof(tunnel_vni), "tunnel_vni"); meta.tunnel_metadata.tunnel_vni = tunnel_vni; meta.tunnel_metadata.tunnel_terminate = 1; } // Action void _on_miss_11_5407407() { action_run = 5407407; } // Action void _src_vtep_hit_1_5407417() { action_run = 5407417; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.ingress_metadata.ifindex = ifindex; } // Action void _nop_47_5407595() { action_run = 5407595; } // Action void _set_tunnel_termination_flag_2_5407605() { action_run = 5407605; meta.tunnel_metadata.tunnel_terminate = 1; } // Action void _set_tunnel_vni_and_termination_flag_2_5407621() { action_run = 5407621; uint32_t tunnel_vni; klee_make_symbolic(&tunnel_vni, sizeof(tunnel_vni), "tunnel_vni"); meta.tunnel_metadata.tunnel_vni = tunnel_vni; meta.tunnel_metadata.tunnel_terminate = 1; } // Action void _on_miss_12_5407645() { action_run = 5407645; } // Action void _src_vtep_hit_2_5407655() { action_run = 5407655; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.ingress_metadata.ifindex = ifindex; } // Action void _terminate_eompls_0_5407833() { action_run = 5407833; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.tunnel_metadata.tunnel_terminate = 1; meta.tunnel_metadata.ingress_tunnel_type = tunnel_type; meta.ingress_metadata.bd = bd; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; } // Action void _terminate_vpls_0_5407874() { action_run = 5407874; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.tunnel_metadata.tunnel_terminate = 1; meta.tunnel_metadata.ingress_tunnel_type = tunnel_type; meta.ingress_metadata.bd = bd; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; } // Action void _terminate_ipv4_over_mpls_0_5407915() { action_run = 5407915; uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.tunnel_metadata.tunnel_terminate = 1; meta.tunnel_metadata.ingress_tunnel_type = tunnel_type; meta.l3_metadata.vrf = vrf; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.l3_metadata.lkp_ip_type = 1; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv4.version; } // Action void _terminate_ipv6_over_mpls_0_5407989() { action_run = 5407989; uint32_t vrf; klee_make_symbolic(&vrf, sizeof(vrf), "vrf"); uint8_t tunnel_type; klee_make_symbolic(&tunnel_type, sizeof(tunnel_type), "tunnel_type"); meta.tunnel_metadata.tunnel_terminate = 1; meta.tunnel_metadata.ingress_tunnel_type = tunnel_type; meta.l3_metadata.vrf = vrf; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; meta.l3_metadata.lkp_ip_type = 2; meta.l2_metadata.lkp_mac_type = hdr.inner_ethernet.etherType; meta.l3_metadata.lkp_ip_version = hdr.inner_ipv6.version; } // Action void _terminate_pw_0_5408063() { action_run = 5408063; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.ingress_metadata.egress_ifindex = ifindex; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; } // Action void _forward_mpls_0_5408099() { action_run = 5408099; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l3_metadata.fib_nexthop = nexthop_index; meta.l3_metadata.fib_nexthop_type = 0; meta.l3_metadata.fib_hit = 1; meta.l2_metadata.lkp_mac_sa = hdr.ethernet.srcAddr; meta.l2_metadata.lkp_mac_da = hdr.ethernet.dstAddr; } // Action void _nop_48_5408248() { action_run = 5408248; } // Action void _nop_49_5408258() { action_run = 5408258; } // Action void _on_miss_13_5408259() { action_run = 5408259; } // Action void _outer_multicast_route_s_g_hit_1_5408269() { action_run = 5408269; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_bridge_s_g_hit_1_5408312() { action_run = 5408312; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.tunnel_metadata.tunnel_terminate = 1; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_route_sm_star_g_hit_1_5408342() { action_run = 5408342; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.outer_mcast_mode = 1; meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_route_bidir_star_g_hit_1_5408391() { action_run = 5408391; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.outer_mcast_mode = 2; meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group | meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_bridge_star_g_hit_1_5408440() { action_run = 5408440; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.tunnel_metadata.tunnel_terminate = 1; meta.fabric_metadata.dst_device = 127; } // Action void _nop_50_5408658() { action_run = 5408658; } // Action void _nop_51_5408668() { action_run = 5408668; } // Action void _on_miss_14_5408669() { action_run = 5408669; } // Action void _outer_multicast_route_s_g_hit_2_5408679() { action_run = 5408679; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_bridge_s_g_hit_2_5408722() { action_run = 5408722; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.tunnel_metadata.tunnel_terminate = 1; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_route_sm_star_g_hit_2_5408752() { action_run = 5408752; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.outer_mcast_mode = 1; meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_route_bidir_star_g_hit_2_5408801() { action_run = 5408801; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.outer_mcast_mode = 2; meta.intrinsic_metadata.mcast_grp = mc_index; meta.multicast_metadata.outer_mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group | meta.multicast_metadata.bd_mrpf_group; meta.fabric_metadata.dst_device = 127; } // Action void _outer_multicast_bridge_star_g_hit_2_5408850() { action_run = 5408850; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.tunnel_metadata.tunnel_terminate = 1; meta.fabric_metadata.dst_device = 127; } // Action void _nop_52_5409083() { action_run = 5409083; } // Action void _set_storm_control_meter_5409093() { action_run = 5409093; uint32_t meter_idx; klee_make_symbolic(&meter_idx, sizeof(meter_idx), "meter_idx"); uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.meter_metadata.packet_color = tmp_symbolic; meta.meter_metadata.meter_index = (uint32_t) meter_idx; } // Action void _nop_53_5409195() { action_run = 5409195; } // Action void _set_unicast_5409205() { action_run = 5409205; meta.l2_metadata.lkp_pkt_type = 1; } // Action void _set_unicast_and_ipv6_src_is_link_local_5409221() { action_run = 5409221; meta.l2_metadata.lkp_pkt_type = 1; meta.ipv6_metadata.ipv6_src_is_link_local = 1; } // Action void _set_multicast_5409243() { action_run = 5409243; meta.l2_metadata.lkp_pkt_type = 2; meta.l2_metadata.bd_stats_idx = meta.l2_metadata.bd_stats_idx + 1; } // Action void _set_multicast_and_ipv6_src_is_link_local_5409270() { action_run = 5409270; meta.l2_metadata.lkp_pkt_type = 2; meta.ipv6_metadata.ipv6_src_is_link_local = 1; meta.l2_metadata.bd_stats_idx = meta.l2_metadata.bd_stats_idx + 1; } // Action void _set_broadcast_5409303() { action_run = 5409303; meta.l2_metadata.lkp_pkt_type = 4; meta.l2_metadata.bd_stats_idx = meta.l2_metadata.bd_stats_idx + 2; } // Action void _set_malformed_packet_5409330() { action_run = 5409330; traverse_5409347 = 1; meta.ingress_metadata.drop_flag = 1; } // Action void _nop_114_5409520() { action_run = 5409520; } // Action void _nop_115_5409530() { action_run = 5409530; } // Action void _set_ingress_dst_port_range_id_5409531() { action_run = 5409531; uint8_t range_id; klee_make_symbolic(&range_id, sizeof(range_id), "range_id"); meta.acl_metadata.ingress_dst_port_range_id = range_id; } // Action void _set_ingress_src_port_range_id_5409549() { action_run = 5409549; uint8_t range_id; klee_make_symbolic(&range_id, sizeof(range_id), "range_id"); meta.acl_metadata.ingress_src_port_range_id = range_id; } // Action void _nop_116_5409683() { action_run = 5409683; } // Action void _nop_117_5409693() { action_run = 5409693; } // Action void _dmac_hit_5409694() { action_run = 5409694; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.ingress_metadata.egress_ifindex = ifindex; meta.l2_metadata.same_if_check = meta.l2_metadata.same_if_check ^ ifindex; } // Action void _dmac_multicast_hit_5409724() { action_run = 5409724; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; meta.fabric_metadata.dst_device = 127; } // Action void _dmac_miss_5409748() { action_run = 5409748; meta.ingress_metadata.egress_ifindex = 65535; meta.fabric_metadata.dst_device = 127; } // Action void _dmac_redirect_nexthop_5409770() { action_run = 5409770; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l2_metadata.l2_redirect = 1; meta.l2_metadata.l2_nexthop = nexthop_index; meta.l2_metadata.l2_nexthop_type = 0; } // Action void _dmac_redirect_ecmp_5409800() { action_run = 5409800; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); meta.l2_metadata.l2_redirect = 1; meta.l2_metadata.l2_nexthop = ecmp_index; meta.l2_metadata.l2_nexthop_type = 1; } // Action void _dmac_drop_5409830() { action_run = 5409830; mark_to_drop(); } // Action void _smac_miss_5409846() { action_run = 5409846; meta.l2_metadata.l2_src_miss = 1; } // Action void _smac_hit_5409862() { action_run = 5409862; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); meta.l2_metadata.l2_src_move = meta.ingress_metadata.ifindex ^ ifindex; } // Action void _nop_118_5410060() { action_run = 5410060; } // Action void _acl_deny_5410070() { action_run = 5410070; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_deny = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_permit_5410142() { action_run = 5410142; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_nexthop_5410208() { action_run = 5410208; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = nexthop_index; meta.acl_metadata.acl_nexthop_type = 0; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_ecmp_5410294() { action_run = 5410294; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = ecmp_index; meta.acl_metadata.acl_nexthop_type = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_mirror_5410380() { action_run = 5410380; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.i2e_metadata.mirror_session_id = (uint32_t) session_id; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _nop_119_5410592() { action_run = 5410592; } // Action void _nop_120_5410602() { action_run = 5410602; } // Action void _acl_deny_0_5410603() { action_run = 5410603; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); traverse_5410603 = 1; meta.acl_metadata.acl_deny = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_deny_4_5410682() { action_run = 5410682; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); traverse_5410626 = 1; meta.acl_metadata.acl_deny = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_permit_0_5410748() { action_run = 5410748; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_permit_4_5410814() { action_run = 5410814; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_nexthop_0_5410875() { action_run = 5410875; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = nexthop_index; meta.acl_metadata.acl_nexthop_type = 0; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_nexthop_4_5410961() { action_run = 5410961; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = nexthop_index; meta.acl_metadata.acl_nexthop_type = 0; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_ecmp_0_5411040() { action_run = 5411040; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = ecmp_index; meta.acl_metadata.acl_nexthop_type = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_redirect_ecmp_4_5411126() { action_run = 5411126; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_redirect = 1; meta.acl_metadata.acl_nexthop = ecmp_index; meta.acl_metadata.acl_nexthop_type = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_mirror_0_5411205() { action_run = 5411205; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.i2e_metadata.mirror_session_id = (uint32_t) session_id; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _acl_mirror_4_5411294() { action_run = 5411294; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_meter_index; klee_make_symbolic(&acl_meter_index, sizeof(acl_meter_index), "acl_meter_index"); uint8_t nat_mode; klee_make_symbolic(&nat_mode, sizeof(nat_mode), "nat_mode"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.i2e_metadata.mirror_session_id = (uint32_t) session_id; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.meter_metadata.meter_index = acl_meter_index; meta.nat_metadata.ingress_nat_mode = nat_mode; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _nop_121_5411699() { action_run = 5411699; } // Action void _racl_deny_5411709() { action_run = 5411709; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_deny = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_permit_5411765() { action_run = 5411765; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_redirect_nexthop_5411815() { action_run = 5411815; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_redirect = 1; meta.acl_metadata.racl_nexthop = nexthop_index; meta.acl_metadata.racl_nexthop_type = 0; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_redirect_ecmp_5411885() { action_run = 5411885; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_redirect = 1; meta.acl_metadata.racl_nexthop = ecmp_index; meta.acl_metadata.racl_nexthop_type = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _on_miss_15_5412082() { action_run = 5412082; } // Action void _ipv4_urpf_hit_5412092() { action_run = 5412092; uint32_t urpf_bd_group; klee_make_symbolic(&urpf_bd_group, sizeof(urpf_bd_group), "urpf_bd_group"); meta.l3_metadata.urpf_hit = 1; meta.l3_metadata.urpf_bd_group = urpf_bd_group; meta.l3_metadata.urpf_mode = meta.ipv4_metadata.ipv4_urpf_mode; } // Action void _ipv4_urpf_hit_2_5412125() { action_run = 5412125; uint32_t urpf_bd_group; klee_make_symbolic(&urpf_bd_group, sizeof(urpf_bd_group), "urpf_bd_group"); meta.l3_metadata.urpf_hit = 1; meta.l3_metadata.urpf_bd_group = urpf_bd_group; meta.l3_metadata.urpf_mode = meta.ipv4_metadata.ipv4_urpf_mode; } // Action void _urpf_miss_5412152() { action_run = 5412152; meta.l3_metadata.urpf_check_fail = 1; } // Action void _on_miss_16_5412304() { action_run = 5412304; } // Action void _on_miss_17_5412314() { action_run = 5412314; } // Action void _fib_hit_nexthop_5412315() { action_run = 5412315; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = nexthop_index; meta.l3_metadata.fib_nexthop_type = 0; } // Action void _fib_hit_nexthop_0_5412345() { action_run = 5412345; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = nexthop_index; meta.l3_metadata.fib_nexthop_type = 0; } // Action void _fib_hit_ecmp_5412368() { action_run = 5412368; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = ecmp_index; meta.l3_metadata.fib_nexthop_type = 1; } // Action void _fib_hit_ecmp_0_5412398() { action_run = 5412398; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = ecmp_index; meta.l3_metadata.fib_nexthop_type = 1; } // Action void _nop_122_5412569() { action_run = 5412569; } // Action void _racl_deny_0_5412579() { action_run = 5412579; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_deny = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_permit_0_5412635() { action_run = 5412635; uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_redirect_nexthop_0_5412685() { action_run = 5412685; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_redirect = 1; meta.acl_metadata.racl_nexthop = nexthop_index; meta.acl_metadata.racl_nexthop_type = 0; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _racl_redirect_ecmp_0_5412755() { action_run = 5412755; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); uint32_t acl_stats_index; klee_make_symbolic(&acl_stats_index, sizeof(acl_stats_index), "acl_stats_index"); uint32_t acl_copy_reason; klee_make_symbolic(&acl_copy_reason, sizeof(acl_copy_reason), "acl_copy_reason"); uint8_t ingress_cos; klee_make_symbolic(&ingress_cos, sizeof(ingress_cos), "ingress_cos"); meta.acl_metadata.racl_redirect = 1; meta.acl_metadata.racl_nexthop = ecmp_index; meta.acl_metadata.racl_nexthop_type = 1; meta.acl_metadata.acl_stats_index = acl_stats_index; meta.fabric_metadata.reason_code = acl_copy_reason; meta.intrinsic_metadata.ingress_cos = ingress_cos; } // Action void _on_miss_18_5412952() { action_run = 5412952; } // Action void _ipv6_urpf_hit_5412962() { action_run = 5412962; uint32_t urpf_bd_group; klee_make_symbolic(&urpf_bd_group, sizeof(urpf_bd_group), "urpf_bd_group"); meta.l3_metadata.urpf_hit = 1; meta.l3_metadata.urpf_bd_group = urpf_bd_group; meta.l3_metadata.urpf_mode = meta.ipv6_metadata.ipv6_urpf_mode; } // Action void _ipv6_urpf_hit_2_5412995() { action_run = 5412995; uint32_t urpf_bd_group; klee_make_symbolic(&urpf_bd_group, sizeof(urpf_bd_group), "urpf_bd_group"); meta.l3_metadata.urpf_hit = 1; meta.l3_metadata.urpf_bd_group = urpf_bd_group; meta.l3_metadata.urpf_mode = meta.ipv6_metadata.ipv6_urpf_mode; } // Action void _urpf_miss_0_5413022() { action_run = 5413022; meta.l3_metadata.urpf_check_fail = 1; } // Action void _on_miss_19_5413174() { action_run = 5413174; } // Action void _on_miss_20_5413184() { action_run = 5413184; } // Action void _fib_hit_nexthop_5_5413185() { action_run = 5413185; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = nexthop_index; meta.l3_metadata.fib_nexthop_type = 0; } // Action void _fib_hit_nexthop_6_5413215() { action_run = 5413215; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = nexthop_index; meta.l3_metadata.fib_nexthop_type = 0; } // Action void _fib_hit_ecmp_5_5413238() { action_run = 5413238; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = ecmp_index; meta.l3_metadata.fib_nexthop_type = 1; } // Action void _fib_hit_ecmp_6_5413268() { action_run = 5413268; uint32_t ecmp_index; klee_make_symbolic(&ecmp_index, sizeof(ecmp_index), "ecmp_index"); meta.l3_metadata.fib_hit = 1; meta.l3_metadata.fib_nexthop = ecmp_index; meta.l3_metadata.fib_nexthop_type = 1; } // Action void _nop_123_5413439() { action_run = 5413439; } // Action void _urpf_bd_miss_5413449() { action_run = 5413449; traverse_5413465 = 1; meta.l3_metadata.urpf_check_fail = 1; } // Action void _on_miss_21_5413569() { action_run = 5413569; } // Action void _multicast_bridge_s_g_hit_1_5413579() { action_run = 5413579; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.multicast_metadata.multicast_bridge_mc_index = mc_index; meta.multicast_metadata.mcast_bridge_hit = 1; } // Action void _nop_124_5413603() { action_run = 5413603; } // Action void _multicast_bridge_star_g_hit_1_5413613() { action_run = 5413613; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.multicast_metadata.multicast_bridge_mc_index = mc_index; meta.multicast_metadata.mcast_bridge_hit = 1; } // Action void _on_miss_22_5413783() { action_run = 5413783; } // Action void _multicast_route_s_g_hit_1_5413800() { action_run = 5413800; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_mode = 1; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; } // Action void _multicast_route_star_g_miss_1_5413942() { action_run = 5413942; meta.l3_metadata.l3_copy = 1; } // Action void _multicast_route_sm_star_g_hit_1_5413965() { action_run = 5413965; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.mcast_mode = 1; meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; } // Action void _multicast_route_bidir_star_g_hit_1_5414015() { action_run = 5414015; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.mcast_mode = 2; meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group | meta.multicast_metadata.bd_mrpf_group; } // Action void _on_miss_23_5414181() { action_run = 5414181; } // Action void _multicast_bridge_s_g_hit_2_5414191() { action_run = 5414191; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.multicast_metadata.multicast_bridge_mc_index = mc_index; meta.multicast_metadata.mcast_bridge_hit = 1; } // Action void _nop_125_5414215() { action_run = 5414215; } // Action void _multicast_bridge_star_g_hit_2_5414225() { action_run = 5414225; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.multicast_metadata.multicast_bridge_mc_index = mc_index; meta.multicast_metadata.mcast_bridge_hit = 1; } // Action void _on_miss_33_5414393() { action_run = 5414393; } // Action void _multicast_route_s_g_hit_2_5414410() { action_run = 5414410; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_mode = 1; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; } // Action void _multicast_route_star_g_miss_2_5414552() { action_run = 5414552; meta.l3_metadata.l3_copy = 1; } // Action void _multicast_route_sm_star_g_hit_2_5414575() { action_run = 5414575; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.mcast_mode = 1; meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group ^ meta.multicast_metadata.bd_mrpf_group; } // Action void _multicast_route_bidir_star_g_hit_2_5414625() { action_run = 5414625; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); uint32_t mcast_rpf_group; klee_make_symbolic(&mcast_rpf_group, sizeof(mcast_rpf_group), "mcast_rpf_group"); meta.multicast_metadata.mcast_mode = 2; meta.multicast_metadata.multicast_route_mc_index = mc_index; meta.multicast_metadata.mcast_route_hit = 1; meta.multicast_metadata.mcast_rpf_group = mcast_rpf_group | meta.multicast_metadata.bd_mrpf_group; } // Action void _on_miss_34_5414763() { action_run = 5414763; } // Action void _on_miss_35_5414773() { action_run = 5414773; } // Action void _on_miss_36_5414774() { action_run = 5414774; } // Action void _set_dst_nat_nexthop_index_5414775() { action_run = 5414775; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint8_t nexthop_type; klee_make_symbolic(&nexthop_type, sizeof(nexthop_type), "nexthop_type"); uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_nexthop = nexthop_index; meta.nat_metadata.nat_nexthop_type = nexthop_type; meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; meta.nat_metadata.nat_hit = 1; } // Action void _set_dst_nat_nexthop_index_2_5414815() { action_run = 5414815; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint8_t nexthop_type; klee_make_symbolic(&nexthop_type, sizeof(nexthop_type), "nexthop_type"); uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_nexthop = nexthop_index; meta.nat_metadata.nat_nexthop_type = nexthop_type; meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; meta.nat_metadata.nat_hit = 1; } // Action void _nop_126_5414849() { action_run = 5414849; } // Action void _set_src_nat_rewrite_index_5414859() { action_run = 5414859; uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; } // Action void _set_src_nat_rewrite_index_2_5414877() { action_run = 5414877; uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; } // Action void _set_twice_nat_nexthop_index_5414890() { action_run = 5414890; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint8_t nexthop_type; klee_make_symbolic(&nexthop_type, sizeof(nexthop_type), "nexthop_type"); uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_nexthop = nexthop_index; meta.nat_metadata.nat_nexthop_type = nexthop_type; meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; meta.nat_metadata.nat_hit = 1; } // Action void _set_twice_nat_nexthop_index_2_5414930() { action_run = 5414930; uint32_t nexthop_index; klee_make_symbolic(&nexthop_index, sizeof(nexthop_index), "nexthop_index"); uint8_t nexthop_type; klee_make_symbolic(&nexthop_type, sizeof(nexthop_type), "nexthop_type"); uint32_t nat_rewrite_index; klee_make_symbolic(&nat_rewrite_index, sizeof(nat_rewrite_index), "nat_rewrite_index"); meta.nat_metadata.nat_nexthop = nexthop_index; meta.nat_metadata.nat_nexthop_type = nexthop_type; meta.nat_metadata.nat_rewrite_index = nat_rewrite_index; meta.nat_metadata.nat_hit = 1; } // Action void _nop_127_5415382() { action_run = 5415382; uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.meter_metadata.packet_color = tmp_symbolic; } // Action void _compute_lkp_ipv4_hash_5415460() { action_run = 5415460; _process_hashes_tmp_10.field_5 = meta.ipv4_metadata.lkp_ipv4_sa; _process_hashes_tmp_10.field_6 = meta.ipv4_metadata.lkp_ipv4_da; _process_hashes_tmp_10.field_7 = meta.l3_metadata.lkp_ip_proto; _process_hashes_tmp_10.field_8 = meta.l3_metadata.lkp_l4_sport; _process_hashes_tmp_10.field_9 = meta.l3_metadata.lkp_l4_dport; klee_make_symbolic(&_process_hashes_tmp_9, sizeof(_process_hashes_tmp_9), "_process_hashes_tmp_9"); meta.hash_metadata.hash1 = _process_hashes_tmp_9; _process_hashes_tmp_12.field_10 = meta.l2_metadata.lkp_mac_sa; _process_hashes_tmp_12.field_11 = meta.l2_metadata.lkp_mac_da; _process_hashes_tmp_12.field_12 = meta.ipv4_metadata.lkp_ipv4_sa; _process_hashes_tmp_12.field_13 = meta.ipv4_metadata.lkp_ipv4_da; _process_hashes_tmp_12.field_14 = meta.l3_metadata.lkp_ip_proto; _process_hashes_tmp_12.field_15 = meta.l3_metadata.lkp_l4_sport; _process_hashes_tmp_12.field_16 = meta.l3_metadata.lkp_l4_dport; klee_make_symbolic(&_process_hashes_tmp_11, sizeof(_process_hashes_tmp_11), "_process_hashes_tmp_11"); meta.hash_metadata.hash2 = _process_hashes_tmp_11; } // Action void _compute_lkp_ipv6_hash_5415592() { action_run = 5415592; _process_hashes_tmp_14.field_17 = meta.ipv6_metadata.lkp_ipv6_sa; _process_hashes_tmp_14.field_18 = meta.ipv6_metadata.lkp_ipv6_da; _process_hashes_tmp_14.field_19 = meta.l3_metadata.lkp_ip_proto; _process_hashes_tmp_14.field_20 = meta.l3_metadata.lkp_l4_sport; _process_hashes_tmp_14.field_21 = meta.l3_metadata.lkp_l4_dport; klee_make_symbolic(&_process_hashes_tmp_13, sizeof(_process_hashes_tmp_13), "_process_hashes_tmp_13"); meta.hash_metadata.hash1 = _process_hashes_tmp_13; _process_hashes_tmp_16.field_22 = meta.l2_metadata.lkp_mac_sa; _process_hashes_tmp_16.field_23 = meta.l2_metadata.lkp_mac_da; _process_hashes_tmp_16.field_24 = meta.ipv6_metadata.lkp_ipv6_sa; _process_hashes_tmp_16.field_25 = meta.ipv6_metadata.lkp_ipv6_da; _process_hashes_tmp_16.field_26 = meta.l3_metadata.lkp_ip_proto; _process_hashes_tmp_16.field_27 = meta.l3_metadata.lkp_l4_sport; _process_hashes_tmp_16.field_28 = meta.l3_metadata.lkp_l4_dport; klee_make_symbolic(&_process_hashes_tmp_15, sizeof(_process_hashes_tmp_15), "_process_hashes_tmp_15"); meta.hash_metadata.hash2 = _process_hashes_tmp_15; } // Action void _compute_lkp_non_ip_hash_5415724() { action_run = 5415724; _process_hashes_tmp_18.field_29 = meta.ingress_metadata.ifindex; _process_hashes_tmp_18.field_30 = meta.l2_metadata.lkp_mac_sa; _process_hashes_tmp_18.field_31 = meta.l2_metadata.lkp_mac_da; _process_hashes_tmp_18.field_32 = meta.l2_metadata.lkp_mac_type; klee_make_symbolic(&_process_hashes_tmp_17, sizeof(_process_hashes_tmp_17), "_process_hashes_tmp_17"); meta.hash_metadata.hash2 = _process_hashes_tmp_17; } // Action void _computed_two_hashes_5415783() { action_run = 5415783; meta.intrinsic_metadata.mcast_hash = (uint32_t) meta.hash_metadata.hash1; meta.hash_metadata.entropy_hash = meta.hash_metadata.hash2; } // Action void _computed_one_hash_5415812() { action_run = 5415812; meta.hash_metadata.hash1 = meta.hash_metadata.hash2; meta.intrinsic_metadata.mcast_hash = (uint32_t) meta.hash_metadata.hash2; meta.hash_metadata.entropy_hash = meta.hash_metadata.hash2; } // Action void _meter_permit_5416060() { action_run = 5416060; } // Action void _meter_deny_5416077() { action_run = 5416077; mark_to_drop(); } // Action void _update_ingress_bd_stats_5416203() { action_run = 5416203; } // Action void _acl_stats_update_5416282() { action_run = 5416282; } // Action void _nop_128_5416356() { action_run = 5416356; } // Action void _nop_129_5416452() { action_run = 5416452; } // Action void _set_l2_redirect_action_5416462() { action_run = 5416462; meta.l3_metadata.nexthop_index = meta.l2_metadata.l2_nexthop; meta.nexthop_metadata.nexthop_type = meta.l2_metadata.l2_nexthop_type; meta.ingress_metadata.egress_ifindex = 0; meta.intrinsic_metadata.mcast_grp = 0; meta.fabric_metadata.dst_device = 0; } // Action void _set_fib_redirect_action_5416508() { action_run = 5416508; meta.l3_metadata.nexthop_index = meta.l3_metadata.fib_nexthop; meta.nexthop_metadata.nexthop_type = meta.l3_metadata.fib_nexthop_type; meta.l3_metadata.routed = 1; meta.intrinsic_metadata.mcast_grp = 0; meta.fabric_metadata.reason_code = 535; meta.fabric_metadata.dst_device = 0; } // Action void _set_cpu_redirect_action_5416560() { action_run = 5416560; meta.l3_metadata.routed = 0; meta.intrinsic_metadata.mcast_grp = 0; standard_metadata.egress_spec = 64; meta.ingress_metadata.egress_ifindex = 0; meta.fabric_metadata.dst_device = 0; } // Action void _set_acl_redirect_action_5416599() { action_run = 5416599; meta.l3_metadata.nexthop_index = meta.acl_metadata.acl_nexthop; meta.nexthop_metadata.nexthop_type = meta.acl_metadata.acl_nexthop_type; meta.ingress_metadata.egress_ifindex = 0; meta.intrinsic_metadata.mcast_grp = 0; meta.fabric_metadata.dst_device = 0; } // Action void _set_racl_redirect_action_5416645() { action_run = 5416645; meta.l3_metadata.nexthop_index = meta.acl_metadata.racl_nexthop; meta.nexthop_metadata.nexthop_type = meta.acl_metadata.racl_nexthop_type; meta.l3_metadata.routed = 1; meta.ingress_metadata.egress_ifindex = 0; meta.intrinsic_metadata.mcast_grp = 0; meta.fabric_metadata.dst_device = 0; } // Action void _set_nat_redirect_action_5416697() { action_run = 5416697; meta.l3_metadata.nexthop_index = meta.nat_metadata.nat_nexthop; meta.nexthop_metadata.nexthop_type = meta.nat_metadata.nat_nexthop_type; meta.l3_metadata.routed = 1; meta.intrinsic_metadata.mcast_grp = 0; meta.fabric_metadata.dst_device = 0; } // Action void _set_multicast_route_action_5416743() { action_run = 5416743; meta.fabric_metadata.dst_device = 127; meta.ingress_metadata.egress_ifindex = 0; meta.intrinsic_metadata.mcast_grp = meta.multicast_metadata.multicast_route_mc_index; meta.l3_metadata.routed = 1; meta.l3_metadata.same_bd_check = 65535; } // Action void _set_multicast_bridge_action_5416786() { action_run = 5416786; meta.fabric_metadata.dst_device = 127; meta.ingress_metadata.egress_ifindex = 0; meta.intrinsic_metadata.mcast_grp = meta.multicast_metadata.multicast_bridge_mc_index; } // Action void _set_multicast_flood_5416817() { action_run = 5416817; meta.fabric_metadata.dst_device = 127; meta.ingress_metadata.egress_ifindex = 65535; } // Action void _set_multicast_drop_5416839() { action_run = 5416839; meta.ingress_metadata.drop_flag = 1; } // Action void _nop_130_5417104() { action_run = 5417104; } // Action void _nop_131_5417114() { action_run = 5417114; } // Action void _set_ecmp_nexthop_details_5417115() { action_run = 5417115; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t nhop_index; klee_make_symbolic(&nhop_index, sizeof(nhop_index), "nhop_index"); uint8_t tunnel; klee_make_symbolic(&tunnel, sizeof(tunnel), "tunnel"); traverse_5417135 = 1;constant_l3_metadata_nexthop_index_5417135 = meta.l3_metadata.nexthop_index; meta.ingress_metadata.egress_ifindex = ifindex; meta.l3_metadata.nexthop_index = nhop_index; meta.l3_metadata.same_bd_check = meta.ingress_metadata.bd ^ bd; meta.l2_metadata.same_if_check = meta.l2_metadata.same_if_check ^ ifindex; meta.tunnel_metadata.tunnel_if_check = meta.tunnel_metadata.tunnel_terminate ^ tunnel; } // Action void _set_ecmp_nexthop_details_for_post_routed_flood_5417186() { action_run = 5417186; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t uuc_mc_index; klee_make_symbolic(&uuc_mc_index, sizeof(uuc_mc_index), "uuc_mc_index"); uint32_t nhop_index; klee_make_symbolic(&nhop_index, sizeof(nhop_index), "nhop_index"); meta.intrinsic_metadata.mcast_grp = uuc_mc_index; meta.l3_metadata.nexthop_index = nhop_index; meta.ingress_metadata.egress_ifindex = 0; meta.l3_metadata.same_bd_check = meta.ingress_metadata.bd ^ bd; meta.fabric_metadata.dst_device = 127; } // Action void _set_nexthop_details_5417237() { action_run = 5417237; uint32_t ifindex; klee_make_symbolic(&ifindex, sizeof(ifindex), "ifindex"); uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint8_t tunnel; klee_make_symbolic(&tunnel, sizeof(tunnel), "tunnel"); meta.ingress_metadata.egress_ifindex = ifindex; meta.l3_metadata.same_bd_check = meta.ingress_metadata.bd ^ bd; meta.l2_metadata.same_if_check = meta.l2_metadata.same_if_check ^ ifindex; meta.tunnel_metadata.tunnel_if_check = meta.tunnel_metadata.tunnel_terminate ^ tunnel; } // Action void _set_nexthop_details_for_post_routed_flood_5417293() { action_run = 5417293; uint32_t bd; klee_make_symbolic(&bd, sizeof(bd), "bd"); uint32_t uuc_mc_index; klee_make_symbolic(&uuc_mc_index, sizeof(uuc_mc_index), "uuc_mc_index"); meta.intrinsic_metadata.mcast_grp = uuc_mc_index; meta.ingress_metadata.egress_ifindex = 0; meta.l3_metadata.same_bd_check = meta.ingress_metadata.bd ^ bd; meta.fabric_metadata.dst_device = 127; } // Action void _nop_132_5417494() { action_run = 5417494; } // Action void _set_bd_flood_mc_index_5417504() { action_run = 5417504; uint32_t mc_index; klee_make_symbolic(&mc_index, sizeof(mc_index), "mc_index"); meta.intrinsic_metadata.mcast_grp = mc_index; } // Action void _set_lag_miss_5417591() { action_run = 5417591; } // Action void _set_lag_port_5417601() { action_run = 5417601; uint32_t port; klee_make_symbolic(&port, sizeof(port), "port"); standard_metadata.egress_spec = port; } // Action void _set_lag_remote_port_5417618() { action_run = 5417618; uint8_t device; klee_make_symbolic(&device, sizeof(device), "device"); uint32_t port; klee_make_symbolic(&port, sizeof(port), "port"); meta.fabric_metadata.dst_device = device; meta.fabric_metadata.dst_port = port; } // Action void _nop_133_5417739() { action_run = 5417739; } // Action void _generate_learn_notify_5417749() { action_run = 5417749; } // Action void _nop_134_5417861() { action_run = 5417861; } // Action void _set_fabric_lag_port_5417871() { action_run = 5417871; uint32_t port; klee_make_symbolic(&port, sizeof(port), "port"); standard_metadata.egress_spec = port; } // Action void _set_fabric_multicast_5417888() { action_run = 5417888; uint8_t fabric_mgid; klee_make_symbolic(&fabric_mgid, sizeof(fabric_mgid), "fabric_mgid"); meta.multicast_metadata.mcast_grp = meta.intrinsic_metadata.mcast_grp; } // Action void _nop_135_5417999() { action_run = 5417999; } // Action void _set_icos_5418009() { action_run = 5418009; uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); meta.intrinsic_metadata.ingress_cos = icos; } // Action void _set_queue_5418027() { action_run = 5418027; uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); meta.intrinsic_metadata.qid = qid; } // Action void _set_icos_and_queue_5418045() { action_run = 5418045; uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); meta.intrinsic_metadata.ingress_cos = icos; meta.intrinsic_metadata.qid = qid; } // Action void _drop_stats_update_5418197() { action_run = 5418197; } // Action void _nop_136_5418219() { action_run = 5418219; } // Action void _copy_to_cpu_5418229() { action_run = 5418229; uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); uint32_t meter_id; klee_make_symbolic(&meter_id, sizeof(meter_id), "meter_id"); uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); meta.intrinsic_metadata.qid = qid; meta.intrinsic_metadata.ingress_cos = icos; uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.intrinsic_metadata.packet_color = tmp_symbolic; } // Action void _redirect_to_cpu_5418298() { action_run = 5418298; uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); uint32_t meter_id; klee_make_symbolic(&meter_id, sizeof(meter_id), "meter_id"); uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); meta.intrinsic_metadata.qid = qid; meta.intrinsic_metadata.ingress_cos = icos; uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.intrinsic_metadata.packet_color = tmp_symbolic; mark_to_drop(); meta.fabric_metadata.dst_device = 0; } // Action void _copy_to_cpu_with_reason_5418376() { action_run = 5418376; uint32_t reason_code; klee_make_symbolic(&reason_code, sizeof(reason_code), "reason_code"); uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); uint32_t meter_id; klee_make_symbolic(&meter_id, sizeof(meter_id), "meter_id"); uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); meta.fabric_metadata.reason_code = reason_code; meta.intrinsic_metadata.qid = qid; meta.intrinsic_metadata.ingress_cos = icos; uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.intrinsic_metadata.packet_color = tmp_symbolic; } // Action void _redirect_to_cpu_with_reason_5418450() { action_run = 5418450; uint32_t reason_code; klee_make_symbolic(&reason_code, sizeof(reason_code), "reason_code"); uint8_t qid; klee_make_symbolic(&qid, sizeof(qid), "qid"); uint32_t meter_id; klee_make_symbolic(&meter_id, sizeof(meter_id), "meter_id"); uint8_t icos; klee_make_symbolic(&icos, sizeof(icos), "icos"); meta.fabric_metadata.reason_code = reason_code; meta.intrinsic_metadata.qid = qid; meta.intrinsic_metadata.ingress_cos = icos; uint64_t tmp_symbolic; klee_make_symbolic(&tmp_symbolic, sizeof(tmp_symbolic), "tmp_symbolic"); meta.intrinsic_metadata.packet_color = tmp_symbolic; mark_to_drop(); meta.fabric_metadata.dst_device = 0; } // Action void _drop_packet_0_5418536() { action_run = 5418536; mark_to_drop(); } // Action void _drop_packet_with_reason_5418552() { action_run = 5418552; mark_to_drop(); } // Action void _negative_mirror_5418578() { action_run = 5418578; uint32_t session_id; klee_make_symbolic(&session_id, sizeof(session_id), "session_id"); mark_to_drop(); } //Table void rmac_5401933() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: rmac_hit_0_5401901(); break; case 1: rmac_miss_0_5401917(); break; default: NoAction_172_5401815(); break; } // keys: meta.l3_metadata.rmac_group:exact, meta.l2_metadata.lkp_mac_da:exact // size 1024 // default_action NoAction_172(); } //Table void _ingress_port_mapping_0_5402096() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_ifindex_5402004(); break; default: NoAction_173_5401816(); break; } // keys: standard_metadata.ingress_port:exact // size 288 // default_action NoAction_173(); } //Table void _ingress_port_properties_0_5402148() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_ingress_port_properties_5402030(); break; default: NoAction_174_5401817(); break; } // keys: standard_metadata.ingress_port:exact // size 288 // default_action NoAction_174(); } //Table void _validate_outer_ethernet_0_5402648() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _malformed_outer_ethernet_packet_5402198(); break; case 1: _set_valid_outer_unicast_packet_untagged_5402222(); break; case 2: _set_valid_outer_unicast_packet_single_tagged_5402247(); break; case 3: _set_valid_outer_unicast_packet_double_tagged_5402287(); break; case 4: _set_valid_outer_unicast_packet_qinq_tagged_5402327(); break; case 5: _set_valid_outer_multicast_packet_untagged_5402364(); break; case 6: _set_valid_outer_multicast_packet_single_tagged_5402389(); break; case 7: _set_valid_outer_multicast_packet_double_tagged_5402429(); break; case 8: _set_valid_outer_multicast_packet_qinq_tagged_5402469(); break; case 9: _set_valid_outer_broadcast_packet_untagged_5402506(); break; case 10: _set_valid_outer_broadcast_packet_single_tagged_5402531(); break; case 11: _set_valid_outer_broadcast_packet_double_tagged_5402571(); break; case 12: _set_valid_outer_broadcast_packet_qinq_tagged_5402611(); break; default: NoAction_175_5401818(); break; } // keys: hdr.ethernet.srcAddr:ternary, hdr.ethernet.dstAddr:ternary, hdr.vlan_tag_[0].$valid$:exact, hdr.vlan_tag_[1].$valid$:exact // size 512 // default_action NoAction_175(); } //Table void _validate_outer_ipv4_packet_5402874() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_valid_outer_ipv4_packet_0_5402809(); break; case 1: _set_malformed_outer_ipv4_packet_0_5402843(); break; default: NoAction_176_5401819(); break; } // keys: hdr.ipv4.version:ternary, hdr.ipv4.ttl:ternary, BITSLICE(hdr.ipv4.srcAddr, 31, 24):ternary // size 512 // default_action NoAction_176(); } //Table void _validate_outer_ipv6_packet_5403021() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_valid_outer_ipv6_packet_0_5402956(); break; case 1: _set_malformed_outer_ipv6_packet_0_5402990(); break; default: NoAction_177_5401820(); break; } // keys: hdr.ipv6.version:ternary, hdr.ipv6.hopLimit:ternary, BITSLICE(hdr.ipv6.srcAddr, 127, 112):ternary // size 512 // default_action NoAction_177(); } //Table void _validate_mpls_packet_5403205() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_valid_mpls_label1_0_5403103(); break; case 1: _set_valid_mpls_label2_0_5403137(); break; case 2: _set_valid_mpls_label3_0_5403171(); break; default: NoAction_178_5401821(); break; } // keys: hdr.mpls[0].label:ternary, hdr.mpls[0].bos:ternary, hdr.mpls[0].$valid$:exact, hdr.mpls[1].label:ternary, hdr.mpls[1].bos:ternary, hdr.mpls[1].$valid$:exact, hdr.mpls[2].label:ternary, hdr.mpls[2].bos:ternary, hdr.mpls[2].$valid$:exact // size 512 // default_action NoAction_178(); } //Table void _switch_config_params_0_5403437() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_config_parameters_5403375(); break; default: NoAction_179_5401822(); break; } // size 1 // default_action NoAction_179(); } //Table void _port_vlan_mapping_0_5403668() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_bd_properties_5403475(); break; case 1: _port_vlan_mapping_miss_5403652(); break; default: NoAction_180_5401823(); break; } // keys: meta.ingress_metadata.ifindex:exact, hdr.vlan_tag_[0].$valid$:exact, hdr.vlan_tag_[0].vid:exact, hdr.vlan_tag_[1].$valid$:exact, hdr.vlan_tag_[1].vid:exact // size 4096 // default_action NoAction_180(); } //Table void _spanning_tree_0_5403811() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_stp_state_5403793(); break; default: NoAction_181_5401824(); break; } // keys: meta.ingress_metadata.ifindex:exact, meta.l2_metadata.stp_group:exact // size 1024 // default_action NoAction_181(); } //Table void _ingress_qos_map_dscp_0_5403994() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_38_5403874(); break; case 1: _set_ingress_tc_5403885(); break; case 2: _set_ingress_color_5403916(); break; case 3: _set_ingress_tc_and_color_5403947(); break; default: NoAction_182_5401825(); break; } // keys: meta.qos_metadata.ingress_qos_group:ternary, meta.l3_metadata.lkp_dscp:ternary // size 64 // default_action NoAction_182(); } //Table void _ingress_qos_map_pcp_0_5404075() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_39_5403884(); break; case 1: _set_ingress_tc_2_5403903(); break; case 2: _set_ingress_color_2_5403934(); break; case 3: _set_ingress_tc_and_color_2_5403973(); break; default: NoAction_183_5401826(); break; } // keys: meta.qos_metadata.ingress_qos_group:ternary, meta.l2_metadata.lkp_pcp:ternary // size 64 // default_action NoAction_183(); } //Table void _ipsg_0_5404180() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_9_5404154(); break; default: NoAction_184_5401827(); break; } // keys: meta.ingress_metadata.ifindex:exact, meta.ingress_metadata.bd:exact, meta.l2_metadata.lkp_mac_sa:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact // size 1024 // default_action NoAction_184(); } //Table void _ipsg_permit_special_0_5404263() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _ipsg_miss_5404164(); break; default: NoAction_185_5401828(); break; } // keys: meta.l3_metadata.lkp_ip_proto:ternary, meta.l3_metadata.lkp_l4_dport:ternary, meta.ipv4_metadata.lkp_ipv4_da:ternary // size 512 // default_action NoAction_185(); } //Table void _int_sink_update_outer_0_5404780() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_sink_update_vxlan_gpe_v4_5404334(); break; case 1: _nop_40_5404389(); break; default: NoAction_186_5401829(); break; } // keys: hdr.vxlan_gpe_int_header.$valid$:exact, hdr.ipv4.$valid$:exact, meta.int_metadata_i2e.sink:exact // size 2 // default_action NoAction_186(); } //Table void _int_source_0_5404861() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_set_src_5404399(); break; case 1: _int_set_no_src_5404415(); break; default: NoAction_187_5401830(); break; } // keys: hdr.int_header.$valid$:exact, hdr.ipv4.$valid$:exact, meta.ipv4_metadata.lkp_ipv4_da:ternary, meta.ipv4_metadata.lkp_ipv4_sa:ternary, hdr.inner_ipv4.$valid$:exact, hdr.inner_ipv4.dstAddr:ternary, hdr.inner_ipv4.srcAddr:ternary // size 256 // default_action NoAction_187(); } //Table void _int_terminate_0_5404978() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _int_sink_gpe_5404431(); break; case 1: _int_no_sink_5404764(); break; default: NoAction_188_5401831(); break; } // keys: hdr.int_header.$valid$:exact, hdr.vxlan_gpe_int_header.$valid$:exact, hdr.ipv4.$valid$:exact, meta.ipv4_metadata.lkp_ipv4_da:ternary, hdr.inner_ipv4.$valid$:exact, hdr.inner_ipv4.dstAddr:ternary // size 256 // default_action NoAction_188(); } //Table void _sflow_ing_take_sample_0_5405174() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_41_5405099(); break; case 1: _sflow_ing_pkt_to_cpu_5405109(); break; default: NoAction_189_5401832(); break; } // keys: meta.ingress_metadata.sflow_take_sample:ternary, meta.sflow_metadata.sflow_session_id:exact // size 16 // default_action NoAction_189(); } //Table void _sflow_ingress_0_5405298() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_42_5405243(); break; case 1: _sflow_ing_session_enable_5405260(); break; default: NoAction_190_5401833(); break; } // keys: meta.ingress_metadata.ifindex:ternary, meta.ipv4_metadata.lkp_ipv4_sa:ternary, meta.ipv4_metadata.lkp_ipv4_da:ternary, hdr.sflow.$valid$:exact // size 512 // default_action NoAction_190(); } //Table void _adjust_lkp_fields_0_5406300() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _non_ip_lkp_5405402(); break; case 1: _ipv4_lkp_5405451(); break; case 2: _ipv6_lkp_5405608(); break; default: NoAction_191_5401834(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact // default_action NoAction_191(); } //Table void _outer_rmac_0_5406371() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_10_5405765(); break; case 1: _outer_rmac_hit_5405775(); break; default: NoAction_192_5401835(); break; } // keys: meta.l3_metadata.rmac_group:exact, hdr.ethernet.dstAddr:exact // size 1024 // default_action NoAction_192(); } //Table void _tunnel_0_5406440() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_43_5405791(); break; case 1: _tunnel_lookup_miss_5405801(); break; case 2: _terminate_tunnel_inner_non_ip_5405811(); break; case 3: _terminate_tunnel_inner_ethernet_ipv4_5405866(); break; case 4: _terminate_tunnel_inner_ipv4_5405986(); break; case 5: _terminate_tunnel_inner_ethernet_ipv6_5406083(); break; case 6: _terminate_tunnel_inner_ipv6_5406203(); break; default: NoAction_193_5401836(); break; } // keys: meta.tunnel_metadata.tunnel_vni:exact, meta.tunnel_metadata.ingress_tunnel_type:exact, hdr.inner_ipv4.$valid$:exact, hdr.inner_ipv6.$valid$:exact // size 1024 // default_action NoAction_193(); } //Table void _tunnel_lookup_miss_2_5406557() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _non_ip_lkp_2_5405430(); break; case 1: _ipv4_lkp_2_5405533(); break; case 2: _ipv6_lkp_2_5405690(); break; default: NoAction_194_5401837(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact // default_action NoAction_194(); } //Table void _fabric_ingress_dst_lkp_5407150() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_44_5406626(); break; case 1: _terminate_cpu_packet_0_5406637(); break; case 2: _switch_fabric_unicast_packet_0_5406707(); break; case 3: _terminate_fabric_unicast_packet_0_5406741(); break; case 4: _switch_fabric_multicast_packet_0_5406838(); break; case 5: _terminate_fabric_multicast_packet_0_5406863(); break; default: NoAction_195_5401838(); break; } // keys: hdr.fabric_header.dstDevice:exact // default_action NoAction_195(); } //Table void _fabric_ingress_src_lkp_5407227() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_45_5406636(); break; case 1: _set_ingress_ifindex_properties_0_5406957(); break; default: NoAction_196_5401839(); break; } // keys: hdr.fabric_header_multicast.ingressIfindex:exact // size 1024 // default_action NoAction_196(); } //Table void _native_packet_over_fabric_5407284() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _non_ip_over_fabric_0_5406967(); break; case 1: _ipv4_over_fabric_0_5407004(); break; case 2: _ipv6_over_fabric_0_5407077(); break; default: NoAction_197_5401840(); break; } // keys: hdr.ipv4.$valid$:exact, hdr.ipv6.$valid$:exact // size 1024 // default_action NoAction_197(); } //Table void _ipv4_dest_vtep_5407435() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_46_5407357(); break; case 1: _set_tunnel_termination_flag_1_5407367(); break; case 2: _set_tunnel_vni_and_termination_flag_1_5407383(); break; default: NoAction_198_5401841(); break; } // keys: meta.l3_metadata.vrf:exact, hdr.ipv4.dstAddr:exact, meta.tunnel_metadata.ingress_tunnel_type:exact // size 1024 // default_action NoAction_198(); } //Table void _ipv4_src_vtep_5407518() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_11_5407407(); break; case 1: _src_vtep_hit_1_5407417(); break; default: NoAction_199_5401842(); break; } // keys: meta.l3_metadata.vrf:exact, hdr.ipv4.srcAddr:exact, meta.tunnel_metadata.ingress_tunnel_type:exact // size 1024 // default_action NoAction_199(); } //Table void _ipv6_dest_vtep_5407673() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_47_5407595(); break; case 1: _set_tunnel_termination_flag_2_5407605(); break; case 2: _set_tunnel_vni_and_termination_flag_2_5407621(); break; default: NoAction_200_5401843(); break; } // keys: meta.l3_metadata.vrf:exact, hdr.ipv6.dstAddr:exact, meta.tunnel_metadata.ingress_tunnel_type:exact // size 1024 // default_action NoAction_200(); } //Table void _ipv6_src_vtep_5407756() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_12_5407645(); break; case 1: _src_vtep_hit_2_5407655(); break; default: NoAction_201_5401844(); break; } // keys: meta.l3_metadata.vrf:exact, hdr.ipv6.srcAddr:exact, meta.tunnel_metadata.ingress_tunnel_type:exact // size 1024 // default_action NoAction_201(); } //Table void _mpls_5408147() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _terminate_eompls_0_5407833(); break; case 1: _terminate_vpls_0_5407874(); break; case 2: _terminate_ipv4_over_mpls_0_5407915(); break; case 3: _terminate_ipv6_over_mpls_0_5407989(); break; case 4: _terminate_pw_0_5408063(); break; case 5: _forward_mpls_0_5408099(); break; default: NoAction_202_5401845(); break; } // keys: meta.tunnel_metadata.mpls_label:exact, hdr.inner_ipv4.$valid$:exact, hdr.inner_ipv6.$valid$:exact // size 1024 // default_action NoAction_202(); } //Table void _outer_ipv4_multicast_5408470() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_48_5408248(); break; case 1: _on_miss_13_5408259(); break; case 2: _outer_multicast_route_s_g_hit_1_5408269(); break; case 3: _outer_multicast_bridge_s_g_hit_1_5408312(); break; default: NoAction_203_5401846(); break; } // keys: meta.multicast_metadata.ipv4_mcast_key_type:exact, meta.multicast_metadata.ipv4_mcast_key:exact, hdr.ipv4.srcAddr:exact, hdr.ipv4.dstAddr:exact // size 1024 // default_action NoAction_203(); } //Table void _outer_ipv4_multicast_star_g_5408569() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_49_5408258(); break; case 1: _outer_multicast_route_sm_star_g_hit_1_5408342(); break; case 2: _outer_multicast_route_bidir_star_g_hit_1_5408391(); break; case 3: _outer_multicast_bridge_star_g_hit_1_5408440(); break; default: NoAction_204_5401847(); break; } // keys: meta.multicast_metadata.ipv4_mcast_key_type:exact, meta.multicast_metadata.ipv4_mcast_key:exact, hdr.ipv4.dstAddr:ternary // size 512 // default_action NoAction_204(); } //Table void _outer_ipv6_multicast_5408880() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_50_5408658(); break; case 1: _on_miss_14_5408669(); break; case 2: _outer_multicast_route_s_g_hit_2_5408679(); break; case 3: _outer_multicast_bridge_s_g_hit_2_5408722(); break; default: NoAction_205_5401848(); break; } // keys: meta.multicast_metadata.ipv6_mcast_key_type:exact, meta.multicast_metadata.ipv6_mcast_key:exact, hdr.ipv6.srcAddr:exact, hdr.ipv6.dstAddr:exact // size 1024 // default_action NoAction_205(); } //Table void _outer_ipv6_multicast_star_g_5408979() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_51_5408668(); break; case 1: _outer_multicast_route_sm_star_g_hit_2_5408752(); break; case 2: _outer_multicast_route_bidir_star_g_hit_2_5408801(); break; case 3: _outer_multicast_bridge_star_g_hit_2_5408850(); break; default: NoAction_206_5401849(); break; } // keys: meta.multicast_metadata.ipv6_mcast_key_type:exact, meta.multicast_metadata.ipv6_mcast_key:exact, hdr.ipv6.dstAddr:ternary // size 512 // default_action NoAction_206(); } //Table void _storm_control_0_5409125() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_52_5409083(); break; case 1: _set_storm_control_meter_5409093(); break; default: NoAction_207_5401850(); break; } // keys: standard_metadata.ingress_port:exact, meta.l2_metadata.lkp_pkt_type:ternary // size 512 // default_action NoAction_207(); } //Table void _validate_packet_0_5409361() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_53_5409195(); break; case 1: _set_unicast_5409205(); break; case 2: _set_unicast_and_ipv6_src_is_link_local_5409221(); break; case 3: _set_multicast_5409243(); break; case 4: _set_multicast_and_ipv6_src_is_link_local_5409270(); break; case 5: _set_broadcast_5409303(); break; case 6: _set_malformed_packet_5409330(); break; default: NoAction_208_5401851(); break; } // keys: meta.l2_metadata.lkp_mac_sa:ternary, meta.l2_metadata.lkp_mac_da:ternary, meta.l3_metadata.lkp_ip_type:ternary, meta.l3_metadata.lkp_ip_ttl:ternary, meta.l3_metadata.lkp_ip_version:ternary, BITSLICE(meta.ipv4_metadata.lkp_ipv4_sa, 31, 24):ternary, BITSLICE(meta.ipv6_metadata.lkp_ipv6_sa, 127, 112):ternary // size 512 // default_action NoAction_208(); } //Table void _ingress_l4_dst_port_0_5409567() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_114_5409520(); break; case 1: _set_ingress_dst_port_range_id_5409531(); break; default: NoAction_209_5401852(); break; } // keys: meta.l3_metadata.lkp_l4_dport:range // size 512 // default_action NoAction_209(); } //Table void _ingress_l4_src_port_0_5409626() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_115_5409530(); break; case 1: _set_ingress_src_port_range_id_5409549(); break; default: NoAction_210_5401853(); break; } // keys: meta.l3_metadata.lkp_l4_sport:range // size 512 // default_action NoAction_210(); } //Table void _dmac_0_5409885() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_116_5409683(); break; case 1: _dmac_hit_5409694(); break; case 2: _dmac_multicast_hit_5409724(); break; case 3: _dmac_miss_5409748(); break; case 4: _dmac_redirect_nexthop_5409770(); break; case 5: _dmac_redirect_ecmp_5409800(); break; case 6: _dmac_drop_5409830(); break; default: NoAction_211_5401854(); break; } // keys: meta.ingress_metadata.bd:exact, meta.l2_metadata.lkp_mac_da:exact // size 1024 // default_action NoAction_211(); } //Table void _smac_0_5409987() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_117_5409693(); break; case 1: _smac_miss_5409846(); break; case 2: _smac_hit_5409862(); break; default: NoAction_212_5401855(); break; } // keys: meta.ingress_metadata.bd:exact, meta.l2_metadata.lkp_mac_sa:exact // size 1024 // default_action NoAction_212(); } //Table void _mac_acl_0_5410469() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_118_5410060(); break; case 1: _acl_deny_5410070(); break; case 2: _acl_permit_5410142(); break; case 3: _acl_redirect_nexthop_5410208(); break; case 4: _acl_redirect_ecmp_5410294(); break; case 5: _acl_mirror_5410380(); break; default: NoAction_213_5401856(); break; } // keys: meta.acl_metadata.if_label:ternary, meta.acl_metadata.bd_label:ternary, meta.l2_metadata.lkp_mac_sa:ternary, meta.l2_metadata.lkp_mac_da:ternary, meta.l2_metadata.lkp_mac_type:ternary // size 512 // default_action NoAction_213(); } //Table void _ip_acl_0_5411373() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_119_5410592(); break; case 1: _acl_deny_0_5410603(); break; case 2: _acl_permit_0_5410748(); break; case 3: _acl_redirect_nexthop_0_5410875(); break; case 4: _acl_redirect_ecmp_0_5411040(); break; case 5: _acl_mirror_0_5411205(); break; default: NoAction_214_5401857(); break; } // keys: meta.acl_metadata.if_label:ternary, meta.acl_metadata.bd_label:ternary, meta.ipv4_metadata.lkp_ipv4_sa:ternary, meta.ipv4_metadata.lkp_ipv4_da:ternary, meta.l3_metadata.lkp_ip_proto:ternary, meta.acl_metadata.ingress_src_port_range_id:exact, meta.acl_metadata.ingress_dst_port_range_id:exact, hdr.tcp.flags:ternary, meta.l3_metadata.lkp_ip_ttl:ternary // size 512 // default_action NoAction_214(); } //Table void _ipv6_acl_0_5411538() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_120_5410602(); break; case 1: _acl_deny_4_5410682(); break; case 2: _acl_permit_4_5410814(); break; case 3: _acl_redirect_nexthop_4_5410961(); break; case 4: _acl_redirect_ecmp_4_5411126(); break; case 5: _acl_mirror_4_5411294(); break; default: NoAction_215_5401858(); break; } // keys: meta.acl_metadata.if_label:ternary, meta.acl_metadata.bd_label:ternary, meta.ipv6_metadata.lkp_ipv6_sa:ternary, meta.ipv6_metadata.lkp_ipv6_da:ternary, meta.l3_metadata.lkp_ip_proto:ternary, meta.acl_metadata.ingress_src_port_range_id:exact, meta.acl_metadata.ingress_dst_port_range_id:exact, hdr.tcp.flags:ternary, meta.l3_metadata.lkp_ip_ttl:ternary // size 512 // default_action NoAction_215(); } //Table void _ipv4_racl_0_5411955() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_121_5411699(); break; case 1: _racl_deny_5411709(); break; case 2: _racl_permit_5411765(); break; case 3: _racl_redirect_nexthop_5411815(); break; case 4: _racl_redirect_ecmp_5411885(); break; default: NoAction_216_5401859(); break; } // keys: meta.acl_metadata.bd_label:ternary, meta.ipv4_metadata.lkp_ipv4_sa:ternary, meta.ipv4_metadata.lkp_ipv4_da:ternary, meta.l3_metadata.lkp_ip_proto:ternary, meta.acl_metadata.ingress_src_port_range_id:exact, meta.acl_metadata.ingress_dst_port_range_id:exact // size 512 // default_action NoAction_216(); } //Table void _ipv4_urpf_0_5412168() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_15_5412082(); break; case 1: _ipv4_urpf_hit_5412092(); break; default: NoAction_217_5401860(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact // size 1024 // default_action NoAction_217(); } //Table void _ipv4_urpf_lpm_0_5412237() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _ipv4_urpf_hit_2_5412125(); break; case 1: _urpf_miss_5412152(); break; default: NoAction_218_5401861(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_sa:lpm // size 512 // default_action NoAction_218(); } //Table void _ipv4_fib_0_5412421() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_16_5412304(); break; case 1: _fib_hit_nexthop_5412315(); break; case 2: _fib_hit_ecmp_5412368(); break; default: NoAction_219_5401862(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_da:exact // size 1024 // default_action NoAction_219(); } //Table void _ipv4_fib_lpm_0_5412496() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_17_5412314(); break; case 1: _fib_hit_nexthop_0_5412345(); break; case 2: _fib_hit_ecmp_0_5412398(); break; default: NoAction_220_5401863(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_da:lpm // size 512 // default_action NoAction_220(); } //Table void _ipv6_racl_0_5412825() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_122_5412569(); break; case 1: _racl_deny_0_5412579(); break; case 2: _racl_permit_0_5412635(); break; case 3: _racl_redirect_nexthop_0_5412685(); break; case 4: _racl_redirect_ecmp_0_5412755(); break; default: NoAction_221_5401864(); break; } // keys: meta.acl_metadata.bd_label:ternary, meta.ipv6_metadata.lkp_ipv6_sa:ternary, meta.ipv6_metadata.lkp_ipv6_da:ternary, meta.l3_metadata.lkp_ip_proto:ternary, meta.acl_metadata.ingress_src_port_range_id:exact, meta.acl_metadata.ingress_dst_port_range_id:exact // size 512 // default_action NoAction_221(); } //Table void _ipv6_urpf_0_5413038() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_18_5412952(); break; case 1: _ipv6_urpf_hit_5412962(); break; default: NoAction_222_5401865(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_sa:exact // size 1024 // default_action NoAction_222(); } //Table void _ipv6_urpf_lpm_0_5413107() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _ipv6_urpf_hit_2_5412995(); break; case 1: _urpf_miss_0_5413022(); break; default: NoAction_223_5401866(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_sa:lpm // size 512 // default_action NoAction_223(); } //Table void _ipv6_fib_0_5413291() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_19_5413174(); break; case 1: _fib_hit_nexthop_5_5413185(); break; case 2: _fib_hit_ecmp_5_5413238(); break; default: NoAction_224_5401867(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_da:exact // size 1024 // default_action NoAction_224(); } //Table void _ipv6_fib_lpm_0_5413366() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_20_5413184(); break; case 1: _fib_hit_nexthop_6_5413215(); break; case 2: _fib_hit_ecmp_6_5413268(); break; default: NoAction_225_5401868(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_da:lpm // size 512 // default_action NoAction_225(); } //Table void _urpf_bd_0_5413472() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_123_5413439(); break; case 1: _urpf_bd_miss_5413449(); break; default: NoAction_226_5401869(); break; } // keys: meta.l3_metadata.urpf_bd_group:exact, meta.ingress_metadata.bd:exact // size 1024 // default_action NoAction_226(); } //Table void _ipv4_multicast_bridge_5413637() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_21_5413569(); break; case 1: _multicast_bridge_s_g_hit_1_5413579(); break; default: NoAction_227_5401870(); break; } // keys: meta.ingress_metadata.bd:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact, meta.ipv4_metadata.lkp_ipv4_da:exact // size 1024 // default_action NoAction_227(); } //Table void _ipv4_multicast_bridge_star_g_5413716() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_124_5413603(); break; case 1: _multicast_bridge_star_g_hit_1_5413613(); break; default: NoAction_228_5401871(); break; } // keys: meta.ingress_metadata.bd:exact, meta.ipv4_metadata.lkp_ipv4_da:exact // size 1024 // default_action NoAction_228(); } //Table void _ipv4_multicast_route_5413850() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_22_5413783(); break; case 1: _multicast_route_s_g_hit_1_5413800(); break; default: NoAction_229_5401872(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact, meta.ipv4_metadata.lkp_ipv4_da:exact // size 1024 // default_action NoAction_229(); } //Table void _ipv4_multicast_route_star_g_5414065() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _multicast_route_star_g_miss_1_5413942(); break; case 1: _multicast_route_sm_star_g_hit_1_5413965(); break; case 2: _multicast_route_bidir_star_g_hit_1_5414015(); break; default: NoAction_230_5401873(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_da:exact // size 1024 // default_action NoAction_230(); } //Table void _ipv6_multicast_bridge_5414249() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_23_5414181(); break; case 1: _multicast_bridge_s_g_hit_2_5414191(); break; default: NoAction_231_5401874(); break; } // keys: meta.ingress_metadata.bd:exact, meta.ipv6_metadata.lkp_ipv6_sa:exact, meta.ipv6_metadata.lkp_ipv6_da:exact // size 1024 // default_action NoAction_231(); } //Table void _ipv6_multicast_bridge_star_g_5414326() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_125_5414215(); break; case 1: _multicast_bridge_star_g_hit_2_5414225(); break; default: NoAction_232_5401875(); break; } // keys: meta.ingress_metadata.bd:exact, meta.ipv6_metadata.lkp_ipv6_da:exact // size 1024 // default_action NoAction_232(); } //Table void _ipv6_multicast_route_5414460() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_33_5414393(); break; case 1: _multicast_route_s_g_hit_2_5414410(); break; default: NoAction_233_5401876(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_sa:exact, meta.ipv6_metadata.lkp_ipv6_da:exact // size 1024 // default_action NoAction_233(); } //Table void _ipv6_multicast_route_star_g_5414675() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _multicast_route_star_g_miss_2_5414552(); break; case 1: _multicast_route_sm_star_g_hit_2_5414575(); break; case 2: _multicast_route_bidir_star_g_hit_2_5414625(); break; default: NoAction_234_5401877(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv6_metadata.lkp_ipv6_da:exact // size 1024 // default_action NoAction_234(); } //Table void _nat_dst_0_5414964() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_34_5414763(); break; case 1: _set_dst_nat_nexthop_index_5414775(); break; default: NoAction_235_5401878(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_da:exact, meta.l3_metadata.lkp_ip_proto:exact, meta.l3_metadata.lkp_l4_dport:exact // size 1024 // default_action NoAction_235(); } //Table void _nat_flow_0_5415053() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_126_5414849(); break; case 1: _set_src_nat_rewrite_index_5414859(); break; case 2: _set_dst_nat_nexthop_index_2_5414815(); break; case 3: _set_twice_nat_nexthop_index_5414890(); break; default: NoAction_236_5401879(); break; } // keys: meta.l3_metadata.vrf:ternary, meta.ipv4_metadata.lkp_ipv4_sa:ternary, meta.ipv4_metadata.lkp_ipv4_da:ternary, meta.l3_metadata.lkp_ip_proto:ternary, meta.l3_metadata.lkp_l4_sport:ternary, meta.l3_metadata.lkp_l4_dport:ternary // size 512 // default_action NoAction_236(); } //Table void _nat_src_0_5415172() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_35_5414773(); break; case 1: _set_src_nat_rewrite_index_2_5414877(); break; default: NoAction_237_5401880(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact, meta.l3_metadata.lkp_ip_proto:exact, meta.l3_metadata.lkp_l4_sport:exact // size 1024 // default_action NoAction_237(); } //Table void _nat_twice_0_5415259() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _on_miss_36_5414774(); break; case 1: _set_twice_nat_nexthop_index_2_5414930(); break; default: NoAction_238_5401881(); break; } // keys: meta.l3_metadata.vrf:exact, meta.ipv4_metadata.lkp_ipv4_sa:exact, meta.ipv4_metadata.lkp_ipv4_da:exact, meta.l3_metadata.lkp_ip_proto:exact, meta.l3_metadata.lkp_l4_sport:exact, meta.l3_metadata.lkp_l4_dport:exact // size 1024 // default_action NoAction_238(); } //Table void _meter_index_2_5415403() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_127_5415382(); break; default: NoAction_239_5401882(); break; } // keys: meta.meter_metadata.meter_index:exact // size 1024 // default_action NoAction_239(); } //Table void _compute_ipv4_hashes_0_5415850() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _compute_lkp_ipv4_hash_5415460(); break; default: NoAction_240_5401883(); break; } // keys: meta.ingress_metadata.drop_flag:exact // default_action NoAction_240(); } //Table void _compute_ipv6_hashes_0_5415899() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _compute_lkp_ipv6_hash_5415592(); break; default: NoAction_241_5401884(); break; } // keys: meta.ingress_metadata.drop_flag:exact // default_action NoAction_241(); } //Table void _compute_non_ip_hashes_0_5415946() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _compute_lkp_non_ip_hash_5415724(); break; default: NoAction_242_5401885(); break; } // keys: meta.ingress_metadata.drop_flag:exact // default_action NoAction_242(); } //Table void _compute_other_hashes_0_5415993() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _computed_two_hashes_5415783(); break; case 1: _computed_one_hash_5415812(); break; default: NoAction_243_5401886(); break; } // keys: meta.hash_metadata.hash1:exact // default_action NoAction_243(); } //Table void _meter_action_0_5416100() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _meter_permit_5416060(); break; case 1: _meter_deny_5416077(); break; default: NoAction_244_5401887(); break; } // keys: meta.meter_metadata.packet_color:exact, meta.meter_metadata.meter_index:exact // size 1024 // default_action NoAction_244(); } //Table void _ingress_bd_stats_2_5416225() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _update_ingress_bd_stats_5416203(); break; default: NoAction_245_5401888(); break; } // size 1024 // default_action NoAction_245(); } //Table void _acl_stats_2_5416304() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _acl_stats_update_5416282(); break; default: NoAction_246_5401889(); break; } // size 1024 // default_action NoAction_246(); } //Table void _storm_control_stats_2_5416373() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_128_5416356(); break; default: NoAction_247_5401890(); break; } // keys: meta.meter_metadata.packet_color:exact, standard_metadata.ingress_port:exact // size 1024 // default_action NoAction_247(); } //Table void _fwd_result_0_5416861() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_129_5416452(); break; case 1: _set_l2_redirect_action_5416462(); break; case 2: _set_fib_redirect_action_5416508(); break; case 3: _set_cpu_redirect_action_5416560(); break; case 4: _set_acl_redirect_action_5416599(); break; case 5: _set_racl_redirect_action_5416645(); break; case 6: _set_nat_redirect_action_5416697(); break; case 7: _set_multicast_route_action_5416743(); break; case 8: _set_multicast_bridge_action_5416786(); break; case 9: _set_multicast_flood_5416817(); break; case 10: _set_multicast_drop_5416839(); break; default: NoAction_248_5401891(); break; } // keys: meta.l2_metadata.l2_redirect:ternary, meta.acl_metadata.acl_redirect:ternary, meta.acl_metadata.racl_redirect:ternary, meta.l3_metadata.rmac_hit:ternary, meta.l3_metadata.fib_hit:ternary, meta.nat_metadata.nat_hit:ternary, meta.l2_metadata.lkp_pkt_type:ternary, meta.l3_metadata.lkp_ip_type:ternary, meta.multicast_metadata.igmp_snooping_enabled:ternary, meta.multicast_metadata.mld_snooping_enabled:ternary, meta.multicast_metadata.mcast_route_hit:ternary, meta.multicast_metadata.mcast_bridge_hit:ternary, meta.multicast_metadata.mcast_rpf_group:ternary, meta.multicast_metadata.mcast_mode:ternary // size 512 // default_action NoAction_248(); } //Table void _ecmp_group_0_5417336() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_130_5417104(); break; case 1: _set_ecmp_nexthop_details_5417115(); break; case 2: _set_ecmp_nexthop_details_for_post_routed_flood_5417186(); break; default: NoAction_249_5401892(); break; } // keys: meta.l3_metadata.nexthop_index:exact, meta.hash_metadata.hash1:selector // size 1024 // default_action NoAction_249(); } //Table void _nexthop_0_5417431() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_131_5417114(); break; case 1: _set_nexthop_details_5417237(); break; case 2: _set_nexthop_details_for_post_routed_flood_5417293(); break; default: NoAction_250_5401893(); break; } // keys: meta.l3_metadata.nexthop_index:exact // size 1024 // default_action NoAction_250(); } //Table void _bd_flood_0_5417522() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_132_5417494(); break; case 1: _set_bd_flood_mc_index_5417504(); break; default: NoAction_251_5401894(); break; } // keys: meta.ingress_metadata.bd:exact, meta.l2_metadata.lkp_pkt_type:exact // size 1024 // default_action NoAction_251(); } //Table void _lag_group_0_5417644() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _set_lag_miss_5417591(); break; case 1: _set_lag_port_5417601(); break; case 2: _set_lag_remote_port_5417618(); break; default: NoAction_252_5401895(); break; } // keys: meta.ingress_metadata.egress_ifindex:exact, meta.hash_metadata.hash2:selector // size 1024 // default_action NoAction_252(); } //Table void _learn_notify_0_5417782() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_133_5417739(); break; case 1: _generate_learn_notify_5417749(); break; default: NoAction_253_5401896(); break; } // keys: meta.l2_metadata.l2_src_miss:ternary, meta.l2_metadata.l2_src_move:ternary, meta.l2_metadata.stp_state:ternary // size 512 // default_action NoAction_253(); } //Table void _fabric_lag_0_5417908() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_134_5417861(); break; case 1: _set_fabric_lag_port_5417871(); break; case 2: _set_fabric_multicast_5417888(); break; default: NoAction_254_5401897(); break; } // keys: meta.fabric_metadata.dst_device:exact, meta.hash_metadata.hash2:selector // default_action NoAction_254(); } //Table void _traffic_class_0_5418071() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_135_5417999(); break; case 1: _set_icos_5418009(); break; case 2: _set_queue_5418027(); break; case 3: _set_icos_and_queue_5418045(); break; default: NoAction_255_5401898(); break; } // keys: meta.qos_metadata.tc_qos_group:ternary, meta.qos_metadata.lkp_tc:ternary // size 512 // default_action NoAction_255(); } //Table void _drop_stats_4_5418619() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _drop_stats_update_5418197(); break; default: NoAction_256_5401899(); break; } // size 1024 // default_action NoAction_256(); } //Table void _system_acl_0_5418657() { int symbol; klee_make_symbolic(&symbol, sizeof(symbol), "symbol"); switch(symbol) { case 0: _nop_136_5418219(); break; case 1: _redirect_to_cpu_5418298(); break; case 2: _redirect_to_cpu_with_reason_5418450(); break; case 3: _copy_to_cpu_5418229(); break; case 4: _copy_to_cpu_with_reason_5418376(); break; case 5: _drop_packet_0_5418536(); break; case 6: _drop_packet_with_reason_5418552(); break; case 7: _negative_mirror_5418578(); break; default: NoAction_257_5401900(); break; } // keys: meta.acl_metadata.if_label:ternary, meta.acl_metadata.bd_label:ternary, meta.ingress_metadata.ifindex:ternary, meta.l2_metadata.lkp_mac_type:ternary, meta.l2_metadata.port_vlan_mapping_miss:ternary, meta.security_metadata.ipsg_check_fail:ternary, meta.acl_metadata.acl_deny:ternary, meta.acl_metadata.racl_deny:ternary, meta.l3_metadata.urpf_check_fail:ternary, meta.ingress_metadata.drop_flag:ternary, meta.l3_metadata.l3_copy:ternary, meta.l3_metadata.rmac_hit:ternary, meta.l3_metadata.routed:ternary, meta.ipv6_metadata.ipv6_src_is_link_local:ternary, meta.l2_metadata.same_if_check:ternary, meta.tunnel_metadata.tunnel_if_check:ternary, meta.l3_metadata.same_bd_check:ternary, meta.l3_metadata.lkp_ip_ttl:ternary, meta.l2_metadata.stp_state:ternary, meta.ingress_metadata.control_frame:ternary, meta.ipv4_metadata.ipv4_unicast_enabled:ternary, meta.ipv6_metadata.ipv6_unicast_enabled:ternary, meta.ingress_metadata.egress_ifindex:ternary, meta.fabric_metadata.reason_code:ternary // size 512 // default_action NoAction_257(); } //Control void DeparserImpl() { //Emit hdr.ethernet //Emit hdr.fabric_header //Emit hdr.fabric_header_cpu //Emit hdr.fabric_header_sflow //Emit hdr.fabric_header_mirror //Emit hdr.fabric_header_multicast //Emit hdr.fabric_header_unicast //Emit hdr.fabric_payload_header //Emit hdr.llc_header //Emit hdr.snap_header //Emit hdr.vlan_tag_[0] emit_header_vlan_tag_0 = hdr.vlan_tag_[0].isValid; emit_header_vlan_tag_1 = hdr.vlan_tag_[1].isValid; //Emit hdr.vlan_tag_[1] //Emit hdr.ipv6 //Emit hdr.ipv4 //Emit hdr.gre //Emit hdr.erspan_t3_header //Emit hdr.nvgre //Emit hdr.udp //Emit hdr.sflow //Emit hdr.vxlan_gpe //Emit hdr.vxlan_gpe_int_header //Emit hdr.int_header //Emit hdr.int_switch_id_header //Emit hdr.int_ingress_port_id_header //Emit hdr.int_hop_latency_header //Emit hdr.int_q_occupancy_header //Emit hdr.int_ingress_tstamp_header //Emit hdr.int_egress_port_id_header //Emit hdr.int_q_congestion_header //Emit hdr.int_egress_port_tx_utilization_header //Emit hdr.int_val[0] //Emit hdr.int_val[1] //Emit hdr.int_val[2] //Emit hdr.int_val[3] //Emit hdr.int_val[4] //Emit hdr.int_val[5] //Emit hdr.int_val[6] //Emit hdr.int_val[7] //Emit hdr.int_val[8] //Emit hdr.int_val[9] //Emit hdr.int_val[10] //Emit hdr.int_val[11] //Emit hdr.int_val[12] //Emit hdr.int_val[13] //Emit hdr.int_val[14] //Emit hdr.int_val[15] //Emit hdr.int_val[16] //Emit hdr.int_val[17] //Emit hdr.int_val[18] //Emit hdr.int_val[19] //Emit hdr.int_val[20] //Emit hdr.int_val[21] //Emit hdr.int_val[22] //Emit hdr.int_val[23] //Emit hdr.genv //Emit hdr.vxlan //Emit hdr.tcp //Emit hdr.icmp //Emit hdr.mpls[0] //Emit hdr.mpls[1] //Emit hdr.mpls[2] //Emit hdr.inner_ethernet //Emit hdr.inner_ipv6 //Emit hdr.inner_ipv4 //Emit hdr.inner_udp //Emit hdr.inner_tcp //Emit hdr.inner_icmp } typedef struct { uint8_t field_41 : 4; uint8_t field_42 : 4; uint8_t field_43 : 8; uint32_t field_44 : 16; uint32_t field_45 : 16; uint8_t field_46 : 3; uint32_t field_47 : 13; uint8_t field_48 : 8; uint8_t field_49 : 8; uint32_t field_50 : 32; uint32_t field_51 : 32; } tuple_10; //Control uint8_t tmp_1; uint32_t tmp_2; uint8_t tmp_4; uint32_t tmp_5; void verifyChecksum() { if((hdr.inner_ipv4.ihl != 5)) { tmp_1 = 0; } else { klee_make_symbolic(&tmp_2, sizeof(tmp_2), "tmp_2"); tmp_1 = (hdr.inner_ipv4.hdrChecksum == tmp_2); } if(tmp_1) { mark_to_drop(); } if((hdr.ipv4.ihl != 5)) { tmp_4 = 0; } else { klee_make_symbolic(&tmp_5, sizeof(tmp_5), "tmp_5"); tmp_4 = (hdr.ipv4.hdrChecksum == tmp_5); } if(tmp_4) { mark_to_drop(); } } //Control uint32_t tmp_7; uint32_t tmp_8; void computeChecksum() { if((hdr.inner_ipv4.ihl == 5)) { klee_make_symbolic(&tmp_7, sizeof(tmp_7), "tmp_7"); hdr.inner_ipv4.hdrChecksum = tmp_7; } if((hdr.ipv4.ihl == 5)) { klee_make_symbolic(&tmp_8, sizeof(tmp_8), "tmp_8"); hdr.ipv4.hdrChecksum = tmp_8; } } int main() { ParserImpl(); ingress(); egress(); DeparserImpl(); end_assertions(); return 0; } void end_assertions(){ if(!(traverse_5388716 == 0) && (!emit_header_vlan_tag_0 == 1)){ klee_print_once(1, "Assert error: Failed property 1\n"); } if(!(traverse_5388756 == 0) && (!(emit_header_vlan_tag_0 == 1) || (!emit_header_vlan_tag_1 == 1))){ klee_print_once(2, "Assert error: Failed property 2\n"); } if(!(traverse_5395828 == 0) && ((extract_header_hdr_ipv4 == 0) || (extract_header_hdr_udp == 0))){ klee_print_once(4, "Assert error: Failed property 4\n"); } if(!(traverse_5395890 == 0) && ((extract_header_hdr_ipv4 == 0) || (extract_header_hdr_tcp == 0))){ klee_print_once(5, "Assert error: Failed property 5\n"); } if(!(traverse_5395952 == 0) && ((extract_header_hdr_ipv4 == 0) || (extract_header_hdr_icmp == 0))){ klee_print_once(6, "Assert error: Failed property 6\n"); } if(!(traverse_5396014 == 0) && (extract_header_hdr_ipv4 == 0)){ klee_print_once(7, "Assert error: Failed property 7\n"); } if(!(traverse_5396061 == 0) && ((extract_header_hdr_ipv6 == 0) || (extract_header_hdr_udp == 0))){ klee_print_once(8, "Assert error: Failed property 8\n"); } if(!(traverse_5396117 == 0) && ((extract_header_hdr_ipv6 == 0) || (extract_header_hdr_tcp == 0))){ klee_print_once(9, "Assert error: Failed property 9\n"); } if(!(traverse_5396181 == 0) && ((extract_header_hdr_ipv6 == 0) || (extract_header_hdr_icmp == 0))){ klee_print_once(10, "Assert error: Failed property 10\n"); } if(!(traverse_5396245 == 0) && (extract_header_hdr_ipv6 == 0)){ klee_print_once(11, "Assert error: Failed property 11\n"); } if(!(assert_forward == 0) && (traverse_5401372 == 0)){ klee_print_once(3, "Assert error: Failed property 3\n"); } if(!(traverse_5402860 == 0) && (!assert_forward == 0)){ klee_print_once(12, "Assert error: Failed property 12\n"); } if(!(traverse_5403007 == 0) && (!assert_forward == 0)){ klee_print_once(13, "Assert error: Failed property 13\n"); } if(!(traverse_5409347 == 0) && (!assert_forward == 0)){ klee_print_once(14, "Assert error: Failed property 14\n"); } if(!(traverse_5410626 == 0) && (!assert_forward == 0)){ klee_print_once(15, "Assert error: Failed property 15\n"); } if(!(traverse_5410603 == 0) && (!assert_forward == 0)){ klee_print_once(16, "Assert error: Failed property 16\n"); } // if(!(traverse_5413465 == 0) && (!assert_forward == 0)){ // printf("Assert error: Failed property 16\n"); // } // if(!(traverse_5417135 == 0) && (!constant_l3_metadata_nexthop_index_5417135 != meta.l3_metadata.nexthop_index)){ // printf("Assert error: Failed property 17\n"); // } }
the_stack_data/190768055.c
/* This file was automatically generated by CasADi. The CasADi copyright holders make no ownership claim of its contents. */ #ifdef __cplusplus extern "C" { #endif /* How to prefix internal symbols */ #ifdef CODEGEN_PREFIX #define NAMESPACE_CONCAT(NS, ID) _NAMESPACE_CONCAT(NS, ID) #define _NAMESPACE_CONCAT(NS, ID) NS ## ID #define CASADI_PREFIX(ID) NAMESPACE_CONCAT(CODEGEN_PREFIX, ID) #else #define CASADI_PREFIX(ID) chain_nm_3_external_cost_ ## ID #endif #include <math.h> #ifndef casadi_real #define casadi_real double #endif #ifndef casadi_int #define casadi_int int #endif /* Add prefix to internal symbols */ #define casadi_f0 CASADI_PREFIX(f0) #define casadi_s0 CASADI_PREFIX(s0) #define casadi_s1 CASADI_PREFIX(s1) #define casadi_s2 CASADI_PREFIX(s2) #define casadi_s3 CASADI_PREFIX(s3) /* Symbol visibility in DLLs */ #ifndef CASADI_SYMBOL_EXPORT #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) #if defined(STATIC_LINKED) #define CASADI_SYMBOL_EXPORT #else #define CASADI_SYMBOL_EXPORT __declspec(dllexport) #endif #elif defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) #define CASADI_SYMBOL_EXPORT __attribute__ ((visibility ("default"))) #else #define CASADI_SYMBOL_EXPORT #endif #endif static const casadi_int casadi_s0[16] = {12, 1, 0, 12, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}; static const casadi_int casadi_s1[7] = {3, 1, 0, 3, 0, 1, 2}; static const casadi_int casadi_s2[19] = {15, 1, 0, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}; static const casadi_int casadi_s3[33] = {15, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}; /* chain_nm_3_external_cost:(i0[12],i1[3])->(o0[15],o1[15x15,15nz]) */ static int casadi_f0(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { casadi_real a0, a1, a2; a0=5.0000000000000000e-01; a1=arg[1] ? arg[1][0] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][0]=a1; a1=arg[1] ? arg[1][1] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][1]=a1; a1=arg[1] ? arg[1][2] : 0; a1=(a1+a1); a0=(a0*a1); if (res[0]!=0) res[0][2]=a0; a0=5.0000000000000001e-03; a1=arg[0] ? arg[0][0] : 0; a2=5.0045119999999998e-01; a1=(a1-a2); a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][3]=a1; a1=arg[0] ? arg[0][1] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][4]=a1; a1=arg[0] ? arg[0][2] : 0; a2=-1.2559460000000000e-01; a1=(a1-a2); a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][5]=a1; a1=arg[0] ? arg[0][3] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][6]=a1; a1=arg[0] ? arg[0][4] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][7]=a1; a1=arg[0] ? arg[0][5] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][8]=a1; a1=arg[0] ? arg[0][6] : 0; a2=9.9977059999999995e-01; a1=(a1-a2); a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][9]=a1; a1=arg[0] ? arg[0][7] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][10]=a1; a1=arg[0] ? arg[0][8] : 0; a2=6.2792529999999999e-02; a1=(a1-a2); a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][11]=a1; a1=arg[0] ? arg[0][9] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][12]=a1; a1=arg[0] ? arg[0][10] : 0; a1=(a1+a1); a1=(a0*a1); if (res[0]!=0) res[0][13]=a1; a1=arg[0] ? arg[0][11] : 0; a1=(a1+a1); a0=(a0*a1); if (res[0]!=0) res[0][14]=a0; a0=1.; if (res[1]!=0) res[1][0]=a0; if (res[1]!=0) res[1][1]=a0; if (res[1]!=0) res[1][2]=a0; a0=1.0000000000000000e-02; if (res[1]!=0) res[1][3]=a0; if (res[1]!=0) res[1][4]=a0; if (res[1]!=0) res[1][5]=a0; if (res[1]!=0) res[1][6]=a0; if (res[1]!=0) res[1][7]=a0; if (res[1]!=0) res[1][8]=a0; if (res[1]!=0) res[1][9]=a0; if (res[1]!=0) res[1][10]=a0; if (res[1]!=0) res[1][11]=a0; if (res[1]!=0) res[1][12]=a0; if (res[1]!=0) res[1][13]=a0; if (res[1]!=0) res[1][14]=a0; return 0; } CASADI_SYMBOL_EXPORT int chain_nm_3_external_cost(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem){ return casadi_f0(arg, res, iw, w, mem); } CASADI_SYMBOL_EXPORT void chain_nm_3_external_cost_incref(void) { } CASADI_SYMBOL_EXPORT void chain_nm_3_external_cost_decref(void) { } CASADI_SYMBOL_EXPORT casadi_int chain_nm_3_external_cost_n_in(void) { return 2;} CASADI_SYMBOL_EXPORT casadi_int chain_nm_3_external_cost_n_out(void) { return 2;} CASADI_SYMBOL_EXPORT const char* chain_nm_3_external_cost_name_in(casadi_int i){ switch (i) { case 0: return "i0"; case 1: return "i1"; default: return 0; } } CASADI_SYMBOL_EXPORT const char* chain_nm_3_external_cost_name_out(casadi_int i){ switch (i) { case 0: return "o0"; case 1: return "o1"; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* chain_nm_3_external_cost_sparsity_in(casadi_int i) { switch (i) { case 0: return casadi_s0; case 1: return casadi_s1; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* chain_nm_3_external_cost_sparsity_out(casadi_int i) { switch (i) { case 0: return casadi_s2; case 1: return casadi_s3; default: return 0; } } CASADI_SYMBOL_EXPORT int chain_nm_3_external_cost_work(casadi_int *sz_arg, casadi_int* sz_res, casadi_int *sz_iw, casadi_int *sz_w) { if (sz_arg) *sz_arg = 2; if (sz_res) *sz_res = 2; if (sz_iw) *sz_iw = 0; if (sz_w) *sz_w = 0; return 0; } #ifdef __cplusplus } /* extern "C" */ #endif
the_stack_data/127409.c
/* ** init_val.c for lemin in /home/philippe/CPE_2016_Lemin ** ** Made by Philippe De Sousa ** Login <[email protected]> ** ** Started on Thu Sep 7 12:38:18 2017 Philippe De Sousa ** Last update Fri Sep 8 14:51:47 2017 Philippe De Sousa */ void init_val(int *i, int *room, int *tunnel) { *i = 0; *room = 0; *tunnel = 0; }
the_stack_data/1158450.c
/* * LineCount.c * * Created on: 13-Jul-2020 * Author: Marvelcoder */ #include<stdio.h> int main(){ int linecount,character; linecount=0; while((character=getchar())!=EOF){ if(character=='\n'){ ++linecount; } } printf("Number of line is %d",linecount); }
the_stack_data/73576529.c
#include<stdio.h> #include<stdlib.h> int mutex=1,full=0,empty=3,x=0; int main() { int n; void producer(); void consumer(); int wait(int); int signal(int); printf("\n1.Producer\n2.Consumer\n3.Exit"); while(1) { printf("\nEnter your choice:"); scanf("%d",&n); switch(n) { case 1: if((mutex==1)&&(empty!=0)) producer(); else printf("Buffer is full!!"); break; case 2: if((mutex==1)&&(full!=0)) consumer(); else printf("Buffer is empty!!"); break; case 3: exit(0); break; } } return 0; } int wait(int s) { return (--s); } int signal(int s) { return(++s); } void producer() { mutex=wait(mutex); full=signal(full); empty=wait(empty); x++; printf("\nProducer produces the item %d",x); mutex=signal(mutex); } void consumer() { mutex=wait(mutex); full=wait(full); empty=signal(empty); printf("\nConsumer consumes item %d",x); x--; mutex=signal(mutex); }
the_stack_data/468150.c
#include <stdio.h> #include <string.h> int main() { int n, i = 1, sheldon, raj; scanf("%d", &n); while (i <= n) { char jogada1[10], jogada2[10]; scanf("%s %s", &jogada1, &jogada2); if (strcmp(jogada1, "pedra") == 0) sheldon = 0; else if (strcmp(jogada1, "papel") == 0) sheldon = 1; else if (strcmp(jogada1, "tesoura") == 0) sheldon = 2; else if (strcmp(jogada1, "lagarto") == 0) sheldon = 3; else if (strcmp(jogada1, "Spock") == 0) sheldon = 4; if (strcmp(jogada2, "pedra") == 0) raj = 0; else if (strcmp(jogada2, "papel") == 0) raj = 1; else if (strcmp(jogada2, "tesoura") == 0) raj = 2; else if (strcmp(jogada2, "lagarto") == 0) raj = 3; else if (strcmp(jogada2, "Spock") == 0) raj = 4; if (sheldon == raj) printf("Caso #%d: De novo!\n", i); else { switch (sheldon) { case 0: if (raj == 2 || raj == 3) printf("Caso #%d: Bazinga!\n", i); else if (raj == 1 || raj == 4) printf("Caso #%d: Raj trapaceou!\n", i); break; case 1: if (raj == 0 || raj == 4) printf("Caso #%d: Bazinga!\n", i); else if (raj == 2 || raj == 3) printf("Caso #%d: Raj trapaceou!\n", i); break; case 2: if (raj == 1 || raj == 3) printf("Caso #%d: Bazinga!\n", i); else if (raj == 0 || raj == 4) printf("Caso #%d: Raj trapaceou!\n", i); break; case 3: if (raj == 4 || raj == 1) printf("Caso #%d: Bazinga!\n", i); else if (raj == 0 || raj == 2) printf("Caso #%d: Raj trapaceou!\n", i); break; case 4: if (raj == 2 || raj == 0) printf("Caso #%d: Bazinga!\n", i); else if (raj == 1 || raj == 3) printf("Caso #%d: Raj trapaceou!\n", i); break; } } i++; } return 0; }
the_stack_data/100140781.c
/* * Copyright 2000-2020 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 <stdio.h> #include <stdlib.h> #include <openssl/pem.h> #include <openssl/err.h> #include <openssl/pkcs12.h> /* Simple PKCS#12 file creator */ int main(int argc, char **argv) { FILE *fp; EVP_PKEY *pkey; X509 *cert; PKCS12 *p12; if (argc != 5) { fprintf(stderr, "Usage: pkwrite infile password name p12file\n"); exit(1); } OpenSSL_add_all_algorithms(); ERR_load_crypto_strings(); if ((fp = fopen(argv[1], "r")) == NULL) { fprintf(stderr, "Error opening file %s\n", argv[1]); exit(1); } cert = PEM_read_X509(fp, NULL, NULL, NULL); rewind(fp); pkey = PEM_read_PrivateKey(fp, NULL, NULL, NULL); fclose(fp); p12 = PKCS12_create(argv[2], argv[3], pkey, cert, NULL, 0, 0, 0, 0, 0); if (!p12) { fprintf(stderr, "Error creating PKCS#12 structure\n"); ERR_print_errors_fp(stderr); exit(1); } if ((fp = fopen(argv[4], "wb")) == NULL) { fprintf(stderr, "Error opening file %s\n", argv[4]); ERR_print_errors_fp(stderr); exit(1); } i2d_PKCS12_fp(fp, p12); PKCS12_free(p12); fclose(fp); return 0; }
the_stack_data/46872.c
int XXX(char * s){ char *cur = s, *head = s; int max = 0; while (*cur) { for (char *p = head; p < cur; ++p) if (*p == *cur) { head = p + 1; break; } max = cur - head + 1 > max ? cur - head + 1 : max; ++cur; } return max; }
the_stack_data/49864.c
#include <curses.h> //#include <stdio.h> void macro_getmaxyx(WINDOW *win, int *y, int *x){ getmaxyx(win,*y,*x); }
the_stack_data/7951553.c
// RUN: test.sh -p -t %t %s #include <string.h> #include <assert.h> // This is an example of the correct usage of memchr(). int main() { char c[8] = "ABCADEF"; char *pt; pt = memchr(&c[1], 'A', 4); assert(pt == &c[3]); return 0; }
the_stack_data/389083.c
#include <GL/gl.h> //Texture Count for MIP Mapping int nonSlipSteelTexCount = 8; //Texture Sizes for MIP Mapping int nonSlipSteelTexWidth[8]={ 128, 64, 32, 16, 8, 4, 2, 1, }; int nonSlipSteelTexHeight[8]={ 128, 64, 32, 16, 8, 4, 2, 1, }; //Texture Data for MIP Mapping GLubyte nonSlipSteelTexData[87380]={ 78, 84, 90, 255, 72, 78, 82, 255, 88, 92, 95, 255, 98, 102, 105, 255, 111, 115, 118, 255, 121, 125, 128, 255, 126, 130, 133, 255, 128, 133, 136, 255, 131, 136, 139, 255, 131, 136, 139, 255, 131, 136, 139, 255, 136, 141, 145, 255, 147, 152, 156, 255, 150, 153, 158, 255, 142, 147, 151, 255, 139, 144, 149, 255, 147, 152, 158, 255, 148, 153, 159, 255, 136, 141, 147, 255, 141, 146, 150, 255, 144, 149, 154, 255, 136, 141, 146, 255, 137, 142, 147, 255, 136, 141, 147, 255, 135, 140, 146, 255, 134, 139, 145, 255, 133, 138, 144, 255, 132, 137, 143, 255, 134, 139, 144, 255, 132, 138, 143, 255, 129, 136, 142, 255, 129, 136, 142, 255, 131, 138, 144, 255, 135, 140, 145, 255, 133, 140, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 149, 156, 162, 255, 217, 224, 229, 255, 223, 229, 232, 255, 153, 160, 166, 255, 90, 97, 103, 255, 77, 84, 90, 255, 75, 82, 87, 255, 78, 83, 86, 255, 91, 95, 98, 255, 103, 107, 110, 255, 115, 119, 122, 255, 123, 127, 130, 255, 126, 130, 134, 255, 130, 134, 138, 255, 131, 136, 139, 255, 131, 136, 139, 255, 131, 136, 139, 255, 139, 144, 148, 255, 151, 155, 160, 255, 148, 152, 157, 255, 140, 145, 149, 255, 141, 146, 152, 255, 148, 153, 159, 255, 144, 149, 155, 255, 137, 142, 148, 255, 143, 148, 152, 255, 140, 145, 150, 255, 137, 142, 147, 255, 137, 142, 147, 255, 136, 141, 147, 255, 135, 140, 146, 255, 134, 139, 145, 255, 133, 138, 144, 255, 132, 137, 143, 255, 135, 140, 144, 255, 130, 137, 143, 255, 135, 140, 144, 255, 130, 137, 143, 255, 132, 139, 145, 255, 133, 140, 146, 255, 132, 139, 145, 255, 129, 136, 142, 255, 133, 140, 146, 255, 172, 179, 185, 255, 224, 230, 234, 255, 202, 208, 212, 255, 128, 135, 141, 255, 84, 91, 97, 255, 78, 85, 91, 255, 73, 79, 83, 255, 83, 88, 91, 255, 94, 98, 101, 255, 107, 111, 114, 255, 118, 122, 125, 255, 125, 129, 132, 255, 127, 131, 134, 255, 131, 136, 139, 255, 131, 136, 139, 255, 131, 136, 139, 255, 133, 138, 142, 255, 143, 148, 152, 255, 151, 154, 159, 255, 145, 149, 154, 255, 139, 144, 149, 255, 144, 149, 155, 255, 148, 153, 159, 255, 140, 145, 151, 255, 139, 144, 149, 255, 144, 149, 154, 255, 137, 142, 147, 255, 137, 142, 147, 255, 137, 142, 147, 255, 136, 141, 147, 255, 134, 139, 145, 255, 133, 138, 144, 255, 132, 137, 143, 255, 133, 138, 143, 255, 134, 139, 144, 255, 129, 136, 142, 255, 129, 136, 142, 255, 130, 137, 143, 255, 133, 140, 145, 255, 134, 140, 145, 255, 131, 138, 144, 255, 128, 135, 141, 255, 138, 145, 151, 255, 196, 203, 209, 255, 231, 237, 240, 255, 180, 187, 192, 255, 103, 110, 116, 255, 78, 85, 91, 255, 89, 96, 102, 255, 93, 100, 103, 255, 113, 116, 121, 255, 118, 122, 125, 255, 125, 130, 133, 255, 126, 130, 134, 255, 130, 134, 138, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 145, 148, 153, 255, 150, 153, 158, 255, 149, 152, 157, 255, 148, 153, 158, 255, 140, 145, 151, 255, 147, 152, 158, 255, 145, 150, 156, 255, 115, 120, 126, 255, 120, 125, 130, 255, 135, 140, 145, 255, 144, 149, 154, 255, 141, 146, 151, 255, 134, 139, 145, 255, 128, 133, 139, 255, 130, 135, 141, 255, 134, 139, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 145, 255, 132, 138, 144, 255, 131, 138, 144, 255, 134, 140, 144, 255, 134, 141, 146, 255, 133, 140, 146, 255, 130, 137, 143, 255, 127, 134, 140, 255, 146, 153, 159, 255, 182, 189, 195, 255, 166, 173, 179, 255, 101, 108, 114, 255, 64, 71, 77, 255, 76, 83, 89, 255, 89, 97, 102, 255, 100, 106, 110, 255, 114, 118, 122, 255, 121, 126, 129, 255, 125, 130, 133, 255, 126, 131, 135, 255, 132, 136, 140, 255, 135, 140, 143, 255, 136, 141, 144, 255, 138, 143, 147, 255, 139, 144, 148, 255, 147, 150, 155, 255, 151, 154, 159, 255, 148, 151, 157, 255, 147, 152, 158, 255, 141, 146, 152, 255, 147, 152, 158, 255, 135, 140, 146, 255, 116, 121, 126, 255, 125, 130, 135, 255, 139, 144, 148, 255, 144, 149, 153, 255, 139, 144, 149, 255, 131, 136, 142, 255, 128, 133, 139, 255, 132, 137, 143, 255, 137, 142, 148, 255, 136, 141, 145, 255, 134, 139, 145, 255, 131, 138, 144, 255, 131, 138, 144, 255, 131, 138, 144, 255, 133, 140, 146, 255, 134, 140, 146, 255, 135, 140, 145, 255, 132, 138, 143, 255, 132, 139, 145, 255, 159, 166, 172, 255, 181, 188, 194, 255, 145, 152, 158, 255, 84, 91, 97, 255, 67, 74, 80, 255, 82, 89, 95, 255, 90, 98, 101, 255, 108, 112, 116, 255, 116, 120, 123, 255, 124, 129, 132, 255, 125, 130, 133, 255, 128, 132, 136, 255, 134, 139, 143, 255, 135, 140, 143, 255, 136, 141, 145, 255, 139, 144, 148, 255, 142, 146, 150, 255, 149, 152, 157, 255, 150, 153, 158, 255, 148, 152, 158, 255, 144, 149, 155, 255, 144, 149, 155, 255, 146, 151, 157, 255, 125, 130, 136, 255, 117, 122, 128, 255, 130, 135, 140, 255, 143, 148, 152, 255, 143, 148, 153, 255, 137, 142, 147, 255, 129, 134, 140, 255, 128, 133, 139, 255, 134, 139, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 144, 255, 131, 138, 144, 255, 133, 139, 144, 255, 135, 141, 145, 255, 133, 140, 146, 255, 131, 138, 144, 255, 128, 135, 141, 255, 138, 145, 151, 255, 173, 180, 186, 255, 179, 186, 192, 255, 123, 130, 136, 255, 68, 75, 81, 255, 69, 76, 82, 255, 120, 127, 132, 255, 119, 125, 128, 255, 124, 127, 131, 255, 128, 132, 135, 255, 131, 136, 140, 255, 131, 136, 140, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 148, 151, 156, 255, 149, 152, 157, 255, 147, 150, 155, 255, 138, 143, 148, 255, 144, 149, 155, 255, 172, 177, 183, 255, 171, 176, 181, 255, 106, 111, 117, 255, 67, 72, 78, 255, 95, 100, 105, 255, 124, 129, 134, 255, 136, 141, 145, 255, 138, 143, 148, 255, 138, 143, 148, 255, 134, 139, 145, 255, 131, 136, 142, 255, 133, 138, 143, 255, 136, 141, 147, 255, 134, 140, 145, 255, 131, 138, 144, 255, 134, 140, 144, 255, 136, 141, 145, 255, 135, 140, 145, 255, 133, 139, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 126, 133, 139, 255, 130, 137, 143, 255, 105, 111, 117, 255, 72, 79, 85, 255, 77, 84, 90, 255, 107, 114, 119, 255, 119, 126, 131, 255, 120, 125, 129, 255, 125, 128, 132, 255, 129, 133, 137, 255, 130, 135, 138, 255, 132, 137, 141, 255, 135, 140, 144, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 145, 149, 154, 255, 149, 152, 157, 255, 149, 152, 157, 255, 145, 148, 153, 255, 137, 142, 148, 255, 152, 157, 163, 255, 175, 180, 185, 255, 150, 155, 161, 255, 91, 96, 102, 255, 76, 81, 86, 255, 105, 110, 115, 255, 129, 134, 138, 255, 136, 141, 147, 255, 138, 143, 148, 255, 137, 142, 147, 255, 133, 138, 144, 255, 131, 136, 142, 255, 133, 138, 144, 255, 137, 142, 148, 255, 131, 137, 143, 255, 131, 137, 143, 255, 132, 138, 144, 255, 133, 139, 145, 255, 133, 139, 145, 255, 132, 139, 145, 255, 129, 136, 142, 255, 126, 133, 139, 255, 128, 135, 141, 255, 123, 130, 136, 255, 92, 99, 105, 255, 71, 77, 83, 255, 88, 95, 101, 255, 113, 120, 126, 255, 119, 125, 129, 255, 122, 126, 130, 255, 126, 130, 133, 255, 131, 136, 139, 255, 129, 134, 138, 255, 135, 140, 144, 255, 136, 141, 145, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 147, 150, 155, 255, 149, 152, 157, 255, 148, 151, 156, 255, 142, 145, 151, 255, 141, 146, 152, 255, 162, 167, 173, 255, 173, 178, 183, 255, 129, 134, 140, 255, 77, 82, 88, 255, 84, 89, 95, 255, 116, 121, 126, 255, 133, 138, 142, 255, 137, 142, 148, 255, 139, 144, 149, 255, 135, 140, 146, 255, 132, 137, 143, 255, 131, 136, 142, 255, 136, 141, 145, 255, 136, 141, 147, 255, 131, 138, 144, 255, 133, 139, 144, 255, 136, 141, 145, 255, 135, 140, 145, 255, 134, 140, 145, 255, 131, 138, 144, 255, 128, 135, 141, 255, 126, 133, 139, 255, 131, 138, 144, 255, 116, 123, 129, 255, 79, 86, 92, 255, 69, 76, 82, 255, 98, 105, 111, 255, 134, 140, 145, 255, 134, 139, 143, 255, 130, 134, 137, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 144, 149, 255, 146, 150, 154, 255, 147, 150, 155, 255, 145, 148, 153, 255, 139, 143, 149, 255, 156, 161, 166, 255, 195, 200, 205, 255, 201, 206, 210, 255, 143, 148, 154, 255, 93, 98, 103, 255, 77, 82, 87, 255, 81, 86, 90, 255, 115, 120, 124, 255, 128, 133, 138, 255, 137, 142, 146, 255, 134, 139, 144, 255, 125, 130, 135, 255, 127, 132, 136, 255, 134, 139, 144, 255, 134, 139, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 133, 139, 144, 255, 133, 139, 144, 255, 131, 138, 142, 255, 130, 137, 143, 255, 131, 137, 143, 255, 128, 135, 140, 255, 112, 118, 123, 255, 99, 105, 110, 255, 109, 116, 121, 255, 128, 134, 139, 255, 134, 140, 145, 255, 132, 137, 140, 255, 133, 137, 141, 255, 133, 138, 141, 255, 132, 137, 141, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 144, 147, 152, 255, 147, 150, 155, 255, 147, 150, 155, 255, 143, 146, 151, 255, 141, 146, 151, 255, 168, 173, 179, 255, 200, 205, 210, 255, 183, 188, 193, 255, 126, 131, 136, 255, 87, 92, 98, 255, 75, 80, 86, 255, 94, 99, 103, 255, 119, 124, 128, 255, 132, 137, 142, 255, 137, 142, 147, 255, 131, 136, 141, 255, 122, 127, 132, 255, 124, 129, 135, 255, 133, 138, 144, 255, 129, 135, 141, 255, 130, 136, 142, 255, 132, 137, 143, 255, 133, 138, 144, 255, 133, 139, 144, 255, 133, 139, 144, 255, 131, 137, 142, 255, 131, 137, 143, 255, 131, 137, 142, 255, 123, 130, 135, 255, 106, 112, 117, 255, 100, 107, 112, 255, 117, 123, 128, 255, 131, 137, 142, 255, 135, 140, 144, 255, 130, 134, 138, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 141, 145, 255, 146, 149, 154, 255, 147, 150, 155, 255, 146, 149, 154, 255, 141, 145, 150, 255, 148, 153, 159, 255, 182, 187, 192, 255, 201, 206, 210, 255, 164, 169, 174, 255, 109, 114, 119, 255, 82, 87, 92, 255, 74, 79, 84, 255, 106, 111, 116, 255, 123, 128, 133, 255, 137, 142, 146, 255, 137, 142, 147, 255, 128, 133, 138, 255, 122, 127, 132, 255, 134, 139, 143, 255, 135, 140, 145, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 144, 255, 133, 139, 144, 255, 132, 138, 143, 255, 131, 137, 142, 255, 131, 137, 143, 255, 130, 137, 142, 255, 118, 124, 130, 255, 100, 106, 112, 255, 102, 109, 114, 255, 124, 131, 135, 255, 138, 143, 147, 255, 127, 132, 136, 255, 137, 141, 145, 255, 134, 139, 143, 255, 137, 142, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 128, 133, 137, 255, 134, 138, 142, 255, 145, 148, 153, 255, 145, 148, 153, 255, 142, 145, 150, 255, 140, 145, 149, 255, 145, 150, 154, 255, 162, 167, 171, 255, 162, 167, 171, 255, 141, 146, 150, 255, 130, 135, 139, 255, 112, 117, 121, 255, 87, 92, 96, 255, 94, 99, 103, 255, 110, 115, 119, 255, 113, 118, 122, 255, 120, 125, 129, 255, 125, 130, 134, 255, 125, 130, 134, 255, 130, 135, 139, 255, 130, 135, 139, 255, 133, 138, 142, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 135, 140, 144, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 130, 135, 139, 255, 124, 129, 133, 255, 124, 129, 133, 255, 132, 137, 141, 255, 134, 139, 143, 255, 131, 136, 140, 255, 136, 141, 145, 255, 136, 141, 144, 255, 137, 142, 146, 255, 137, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 124, 129, 132, 255, 141, 145, 149, 255, 146, 149, 154, 255, 144, 147, 152, 255, 141, 144, 149, 255, 141, 146, 150, 255, 150, 155, 159, 255, 163, 168, 172, 255, 156, 161, 165, 255, 138, 143, 147, 255, 125, 130, 134, 255, 102, 107, 111, 255, 88, 93, 97, 255, 100, 105, 109, 255, 110, 115, 119, 255, 114, 119, 123, 255, 123, 128, 132, 255, 125, 130, 134, 255, 126, 131, 135, 255, 127, 132, 136, 255, 127, 132, 136, 255, 130, 135, 139, 255, 132, 137, 141, 255, 132, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 128, 133, 137, 255, 123, 128, 132, 255, 127, 132, 136, 255, 135, 140, 144, 255, 129, 134, 138, 255, 135, 139, 143, 255, 135, 140, 144, 255, 136, 141, 144, 255, 138, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 133, 138, 142, 255, 127, 131, 134, 255, 144, 148, 152, 255, 145, 148, 153, 255, 143, 146, 151, 255, 140, 144, 149, 255, 143, 148, 152, 255, 156, 161, 165, 255, 163, 168, 172, 255, 149, 154, 158, 255, 135, 140, 144, 255, 120, 125, 129, 255, 92, 97, 101, 255, 89, 94, 98, 255, 107, 112, 116, 255, 111, 116, 120, 255, 117, 122, 126, 255, 126, 131, 135, 255, 125, 130, 134, 255, 128, 133, 137, 255, 131, 136, 140, 255, 130, 135, 139, 255, 134, 139, 143, 255, 132, 137, 141, 255, 133, 138, 142, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 133, 138, 142, 255, 133, 138, 142, 255, 132, 137, 141, 255, 126, 131, 135, 255, 123, 128, 132, 255, 128, 133, 137, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 139, 143, 255, 136, 141, 145, 255, 136, 140, 144, 255, 136, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 139, 143, 255, 138, 143, 147, 255, 143, 147, 151, 255, 143, 146, 151, 255, 139, 142, 147, 255, 142, 147, 151, 255, 135, 140, 144, 255, 129, 134, 138, 255, 117, 122, 126, 255, 104, 109, 113, 255, 119, 124, 128, 255, 133, 138, 142, 255, 119, 124, 128, 255, 93, 98, 102, 255, 83, 88, 92, 255, 80, 85, 89, 255, 93, 98, 102, 255, 114, 119, 123, 255, 127, 132, 136, 255, 126, 131, 135, 255, 127, 132, 136, 255, 132, 137, 141, 255, 132, 137, 141, 255, 131, 136, 140, 255, 130, 135, 139, 255, 131, 136, 140, 255, 135, 140, 144, 255, 135, 140, 144, 255, 133, 138, 142, 255, 129, 134, 138, 255, 130, 135, 139, 255, 130, 135, 139, 255, 132, 137, 141, 255, 133, 138, 142, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 138, 142, 255, 141, 146, 150, 255, 143, 147, 152, 255, 142, 145, 150, 255, 139, 142, 147, 255, 142, 147, 151, 255, 132, 137, 141, 255, 125, 130, 134, 255, 112, 117, 121, 255, 108, 113, 117, 255, 125, 130, 134, 255, 130, 135, 139, 255, 110, 115, 119, 255, 90, 95, 99, 255, 80, 85, 89, 255, 82, 87, 91, 255, 100, 105, 109, 255, 121, 126, 130, 255, 128, 133, 137, 255, 125, 130, 134, 255, 128, 133, 137, 255, 130, 135, 139, 255, 131, 136, 140, 255, 130, 135, 139, 255, 130, 135, 139, 255, 132, 137, 141, 255, 135, 140, 144, 255, 134, 139, 143, 255, 132, 137, 141, 255, 129, 134, 138, 255, 129, 134, 138, 255, 131, 136, 140, 255, 133, 138, 142, 255, 137, 142, 146, 255, 139, 144, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 139, 143, 255, 142, 147, 151, 255, 143, 146, 151, 255, 140, 143, 148, 255, 140, 144, 149, 255, 138, 143, 147, 255, 130, 135, 139, 255, 121, 126, 130, 255, 108, 113, 117, 255, 113, 118, 122, 255, 130, 135, 139, 255, 127, 132, 136, 255, 100, 105, 109, 255, 87, 92, 96, 255, 77, 82, 86, 255, 86, 91, 95, 255, 108, 113, 117, 255, 126, 131, 135, 255, 128, 133, 137, 255, 125, 130, 134, 255, 130, 135, 139, 255, 133, 138, 142, 255, 131, 136, 140, 255, 130, 135, 139, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 130, 135, 139, 255, 130, 135, 139, 255, 130, 135, 139, 255, 133, 138, 142, 255, 130, 135, 139, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 145, 149, 255, 138, 141, 146, 255, 144, 149, 153, 255, 134, 139, 143, 255, 131, 136, 140, 255, 125, 130, 134, 255, 102, 107, 111, 255, 104, 109, 113, 255, 127, 132, 136, 255, 137, 142, 146, 255, 126, 131, 135, 255, 106, 111, 115, 255, 87, 92, 96, 255, 81, 86, 90, 255, 88, 93, 97, 255, 102, 107, 111, 255, 113, 118, 122, 255, 123, 128, 132, 255, 129, 134, 138, 255, 131, 136, 140, 255, 130, 135, 139, 255, 128, 133, 137, 255, 129, 134, 138, 255, 134, 139, 143, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 144, 149, 255, 138, 141, 146, 255, 144, 149, 153, 255, 131, 136, 140, 255, 129, 134, 138, 255, 117, 122, 126, 255, 102, 107, 111, 255, 112, 117, 121, 255, 132, 137, 141, 255, 134, 139, 143, 255, 120, 125, 129, 255, 99, 104, 108, 255, 83, 88, 92, 255, 82, 87, 91, 255, 92, 97, 101, 255, 107, 112, 116, 255, 115, 120, 124, 255, 127, 132, 136, 255, 130, 135, 139, 255, 131, 136, 140, 255, 130, 135, 139, 255, 128, 133, 137, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 136, 141, 145, 255, 133, 138, 142, 255, 133, 138, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 145, 149, 255, 139, 143, 148, 255, 141, 145, 149, 255, 139, 144, 148, 255, 131, 136, 140, 255, 127, 132, 136, 255, 110, 115, 119, 255, 102, 107, 111, 255, 120, 125, 129, 255, 136, 141, 145, 255, 131, 136, 140, 255, 114, 119, 123, 255, 91, 96, 100, 255, 80, 85, 89, 255, 84, 89, 93, 255, 98, 103, 107, 255, 111, 116, 120, 255, 119, 124, 128, 255, 129, 134, 138, 255, 130, 135, 139, 255, 131, 136, 140, 255, 129, 134, 138, 255, 129, 134, 138, 255, 133, 138, 142, 255, 134, 139, 143, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 138, 143, 147, 255, 134, 139, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 143, 147, 255, 137, 141, 145, 255, 130, 135, 139, 255, 133, 138, 141, 255, 132, 137, 141, 255, 112, 117, 121, 255, 101, 106, 109, 255, 111, 116, 120, 255, 126, 131, 134, 255, 139, 144, 147, 255, 129, 134, 137, 255, 113, 118, 122, 255, 97, 102, 105, 255, 87, 92, 96, 255, 86, 91, 94, 255, 88, 93, 97, 255, 103, 108, 111, 255, 118, 122, 126, 255, 127, 131, 135, 255, 129, 134, 137, 255, 130, 135, 138, 255, 133, 138, 141, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 134, 139, 143, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 144, 149, 255, 138, 142, 146, 255, 135, 140, 143, 255, 130, 135, 138, 255, 133, 138, 142, 255, 126, 131, 134, 255, 108, 113, 116, 255, 104, 109, 113, 255, 115, 120, 124, 255, 132, 137, 141, 255, 136, 141, 145, 255, 124, 129, 133, 255, 107, 112, 116, 255, 93, 98, 101, 255, 85, 90, 94, 255, 86, 91, 95, 255, 89, 94, 98, 255, 111, 115, 119, 255, 121, 126, 129, 255, 129, 134, 137, 255, 129, 134, 137, 255, 131, 136, 139, 255, 134, 139, 143, 255, 137, 142, 146, 255, 135, 140, 144, 255, 133, 138, 142, 255, 130, 135, 139, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 142, 146, 255, 133, 138, 141, 255, 131, 136, 140, 255, 133, 138, 141, 255, 119, 124, 128, 255, 104, 109, 112, 255, 107, 112, 116, 255, 120, 125, 128, 255, 138, 143, 147, 255, 133, 138, 142, 255, 119, 124, 128, 255, 101, 106, 110, 255, 89, 94, 97, 255, 85, 90, 93, 255, 87, 92, 96, 255, 96, 101, 104, 255, 115, 119, 123, 255, 124, 128, 132, 255, 129, 134, 137, 255, 130, 134, 138, 255, 132, 137, 140, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 134, 139, 143, 255, 135, 140, 144, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 129, 134, 137, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 135, 139, 143, 255, 136, 141, 144, 255, 136, 141, 144, 255, 127, 132, 135, 255, 113, 118, 121, 255, 105, 110, 113, 255, 107, 112, 115, 255, 115, 120, 123, 255, 131, 136, 139, 255, 132, 137, 140, 255, 132, 137, 140, 255, 127, 132, 135, 255, 116, 121, 124, 255, 102, 107, 110, 255, 91, 96, 99, 255, 90, 94, 97, 255, 102, 106, 109, 255, 118, 122, 125, 255, 125, 129, 132, 255, 131, 136, 139, 255, 133, 137, 141, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 146, 255, 136, 140, 144, 255, 138, 143, 147, 255, 134, 139, 143, 255, 133, 137, 141, 255, 134, 139, 143, 255, 133, 137, 141, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 144, 148, 255, 133, 138, 142, 255, 136, 141, 145, 255, 133, 138, 142, 255, 122, 127, 130, 255, 110, 115, 118, 255, 106, 111, 114, 255, 108, 113, 116, 255, 121, 126, 129, 255, 131, 136, 139, 255, 133, 138, 141, 255, 131, 136, 139, 255, 124, 129, 132, 255, 112, 117, 120, 255, 98, 103, 106, 255, 88, 93, 96, 255, 92, 96, 99, 255, 108, 112, 115, 255, 122, 126, 129, 255, 127, 132, 135, 255, 132, 137, 140, 255, 135, 139, 143, 255, 139, 144, 148, 255, 138, 142, 146, 255, 134, 139, 143, 255, 131, 136, 139, 255, 132, 137, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 131, 136, 139, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 145, 255, 135, 140, 143, 255, 136, 141, 144, 255, 130, 135, 138, 255, 118, 123, 126, 255, 108, 113, 116, 255, 106, 111, 114, 255, 110, 115, 118, 255, 128, 133, 136, 255, 132, 137, 140, 255, 133, 138, 141, 255, 130, 135, 138, 255, 121, 126, 129, 255, 107, 112, 115, 255, 94, 99, 102, 255, 88, 93, 96, 255, 97, 101, 104, 255, 113, 117, 120, 255, 124, 128, 131, 255, 129, 134, 137, 255, 133, 137, 141, 255, 137, 142, 145, 255, 139, 143, 147, 255, 137, 141, 145, 255, 138, 142, 146, 255, 136, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 130, 135, 138, 255, 138, 143, 147, 255, 130, 135, 138, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 143, 148, 152, 255, 141, 145, 150, 255, 137, 141, 145, 255, 141, 146, 150, 255, 140, 145, 149, 255, 131, 136, 139, 255, 122, 127, 130, 255, 111, 116, 119, 255, 105, 110, 113, 255, 106, 111, 114, 255, 119, 124, 127, 255, 125, 130, 133, 255, 132, 137, 140, 255, 135, 140, 143, 255, 132, 137, 140, 255, 125, 130, 133, 255, 117, 122, 125, 255, 104, 108, 111, 255, 102, 106, 109, 255, 110, 114, 117, 255, 116, 120, 123, 255, 123, 128, 131, 255, 131, 135, 139, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 146, 255, 136, 140, 144, 255, 138, 143, 147, 255, 134, 139, 143, 255, 132, 137, 141, 255, 135, 140, 144, 255, 133, 138, 142, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 143, 148, 152, 255, 140, 144, 148, 255, 137, 142, 145, 255, 142, 147, 151, 255, 137, 142, 146, 255, 128, 133, 136, 255, 118, 123, 126, 255, 109, 114, 117, 255, 104, 109, 112, 255, 111, 116, 119, 255, 121, 126, 129, 255, 128, 133, 136, 255, 134, 139, 142, 255, 135, 140, 143, 255, 130, 135, 138, 255, 122, 126, 130, 255, 115, 120, 123, 255, 98, 102, 105, 255, 105, 109, 112, 255, 112, 116, 119, 255, 118, 122, 125, 255, 126, 131, 134, 255, 133, 138, 142, 255, 137, 142, 146, 255, 138, 143, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 132, 137, 140, 255, 136, 141, 145, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 142, 147, 151, 255, 138, 142, 147, 255, 139, 144, 147, 255, 141, 146, 150, 255, 134, 139, 143, 255, 125, 130, 134, 255, 115, 120, 123, 255, 107, 112, 115, 255, 103, 108, 111, 255, 116, 121, 124, 255, 123, 128, 131, 255, 130, 135, 138, 255, 135, 140, 143, 255, 134, 139, 142, 255, 128, 133, 136, 255, 119, 124, 127, 255, 110, 114, 117, 255, 100, 104, 107, 255, 107, 111, 114, 255, 114, 118, 121, 255, 121, 125, 128, 255, 129, 133, 137, 255, 135, 139, 143, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 130, 134, 138, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 145, 150, 154, 255, 142, 147, 151, 255, 137, 141, 145, 255, 145, 150, 154, 255, 145, 150, 154, 255, 137, 142, 146, 255, 131, 136, 140, 255, 118, 123, 126, 255, 106, 111, 114, 255, 102, 107, 110, 255, 111, 116, 119, 255, 118, 123, 126, 255, 127, 132, 135, 255, 135, 140, 143, 255, 138, 143, 146, 255, 136, 141, 145, 255, 132, 137, 141, 255, 121, 125, 128, 255, 111, 115, 118, 255, 105, 109, 112, 255, 103, 107, 110, 255, 109, 113, 116, 255, 123, 127, 130, 255, 131, 135, 139, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 146, 151, 155, 255, 140, 145, 149, 255, 137, 142, 146, 255, 146, 151, 155, 255, 143, 148, 152, 255, 135, 140, 144, 255, 127, 132, 135, 255, 114, 119, 122, 255, 104, 109, 112, 255, 105, 110, 113, 255, 113, 118, 121, 255, 121, 126, 129, 255, 130, 135, 138, 255, 137, 142, 145, 255, 138, 143, 146, 255, 135, 140, 144, 255, 131, 136, 139, 255, 115, 119, 122, 255, 109, 113, 116, 255, 103, 107, 110, 255, 104, 108, 111, 255, 114, 118, 121, 255, 126, 130, 134, 255, 133, 137, 141, 255, 137, 142, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 143, 148, 152, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 141, 146, 150, 255, 146, 151, 155, 255, 140, 145, 149, 255, 134, 139, 142, 255, 123, 128, 131, 255, 110, 115, 118, 255, 101, 106, 109, 255, 108, 113, 116, 255, 115, 120, 123, 255, 124, 129, 132, 255, 133, 138, 141, 255, 138, 143, 146, 255, 138, 142, 146, 255, 134, 139, 142, 255, 126, 131, 134, 255, 113, 117, 120, 255, 107, 111, 114, 255, 103, 107, 110, 255, 107, 111, 114, 255, 118, 122, 126, 255, 128, 133, 136, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 148, 152, 255, 141, 146, 150, 255, 147, 153, 157, 255, 145, 150, 154, 255, 142, 148, 151, 255, 136, 142, 146, 255, 130, 137, 140, 255, 121, 127, 130, 255, 123, 130, 133, 255, 138, 144, 147, 255, 137, 143, 146, 255, 151, 158, 161, 255, 146, 152, 156, 255, 141, 146, 149, 255, 139, 144, 148, 255, 139, 143, 147, 255, 132, 135, 139, 255, 122, 125, 128, 255, 106, 110, 113, 255, 91, 95, 98, 255, 93, 97, 100, 255, 113, 117, 120, 255, 130, 134, 137, 255, 138, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 141, 146, 150, 255, 144, 149, 153, 255, 142, 147, 151, 255, 142, 147, 151, 255, 148, 153, 157, 255, 144, 149, 153, 255, 140, 146, 150, 255, 134, 140, 144, 255, 127, 133, 136, 255, 120, 127, 130, 255, 131, 137, 140, 255, 135, 141, 144, 255, 144, 151, 154, 255, 150, 157, 160, 255, 144, 149, 153, 255, 140, 145, 148, 255, 139, 144, 148, 255, 139, 143, 147, 255, 127, 131, 134, 255, 119, 121, 125, 255, 100, 104, 107, 255, 89, 93, 96, 255, 99, 103, 106, 255, 120, 124, 127, 255, 133, 137, 140, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 142, 147, 151, 255, 144, 149, 153, 255, 142, 147, 151, 255, 145, 150, 154, 255, 146, 152, 156, 255, 143, 148, 152, 255, 138, 144, 148, 255, 132, 139, 142, 255, 124, 130, 133, 255, 120, 126, 129, 255, 138, 144, 147, 255, 131, 137, 140, 255, 152, 159, 162, 255, 149, 155, 158, 255, 142, 147, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 139, 143, 255, 124, 128, 131, 255, 113, 116, 119, 255, 96, 100, 103, 255, 91, 95, 98, 255, 106, 110, 113, 255, 125, 129, 132, 255, 135, 140, 143, 255, 139, 144, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 148, 152, 255, 144, 150, 154, 255, 148, 153, 157, 255, 144, 149, 153, 255, 144, 150, 153, 255, 140, 146, 150, 255, 137, 144, 148, 255, 145, 154, 156, 255, 164, 173, 176, 255, 187, 195, 198, 255, 180, 188, 191, 255, 180, 188, 191, 255, 158, 165, 168, 255, 144, 149, 153, 255, 139, 144, 148, 255, 140, 144, 149, 255, 137, 140, 144, 255, 130, 131, 135, 255, 111, 114, 117, 255, 89, 93, 96, 255, 82, 86, 89, 255, 98, 102, 105, 255, 120, 124, 127, 255, 136, 140, 143, 255, 139, 144, 148, 255, 141, 146, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 144, 148, 255, 144, 150, 154, 255, 145, 151, 154, 255, 147, 153, 157, 255, 144, 149, 153, 255, 143, 149, 152, 255, 139, 145, 149, 255, 139, 147, 150, 255, 150, 159, 161, 255, 175, 183, 186, 255, 183, 190, 193, 255, 183, 191, 194, 255, 173, 181, 184, 255, 152, 158, 161, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 138, 141, 255, 126, 127, 131, 255, 102, 106, 109, 255, 84, 88, 91, 255, 85, 89, 92, 255, 106, 110, 113, 255, 126, 130, 133, 255, 137, 142, 145, 255, 140, 145, 148, 255, 141, 146, 149, 255, 139, 144, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 144, 150, 154, 255, 146, 152, 156, 255, 146, 151, 155, 255, 144, 150, 153, 255, 142, 147, 151, 255, 138, 144, 148, 255, 141, 149, 152, 255, 155, 164, 166, 255, 186, 194, 196, 255, 178, 186, 189, 255, 186, 194, 197, 255, 165, 172, 175, 255, 146, 151, 155, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 143, 147, 255, 133, 134, 138, 255, 118, 120, 124, 255, 96, 100, 103, 255, 83, 87, 90, 255, 91, 95, 98, 255, 113, 117, 120, 255, 131, 135, 138, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 142, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 142, 148, 151, 255, 139, 144, 148, 255, 147, 153, 157, 255, 148, 154, 157, 255, 146, 153, 156, 255, 141, 146, 150, 255, 138, 144, 148, 255, 145, 153, 155, 255, 174, 184, 186, 255, 210, 218, 221, 255, 201, 209, 212, 255, 184, 192, 195, 255, 161, 168, 171, 255, 146, 151, 155, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 143, 147, 255, 134, 135, 139, 255, 116, 119, 123, 255, 96, 100, 103, 255, 78, 82, 85, 255, 79, 83, 86, 255, 103, 107, 110, 255, 135, 139, 142, 255, 135, 140, 143, 255, 139, 144, 148, 255, 141, 146, 149, 255, 140, 146, 149, 255, 139, 145, 148, 255, 139, 144, 148, 255, 137, 143, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 136, 141, 145, 255, 141, 146, 150, 255, 144, 150, 153, 255, 140, 145, 149, 255, 149, 155, 159, 255, 147, 153, 157, 255, 144, 151, 154, 255, 140, 145, 149, 255, 139, 146, 149, 255, 153, 161, 164, 255, 190, 199, 201, 255, 208, 216, 219, 255, 197, 205, 208, 255, 176, 184, 187, 255, 155, 160, 164, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 144, 148, 255, 141, 142, 146, 255, 129, 130, 134, 255, 109, 113, 116, 255, 89, 93, 96, 255, 76, 80, 83, 255, 86, 90, 93, 255, 114, 118, 121, 255, 135, 139, 142, 255, 136, 141, 144, 255, 139, 144, 147, 255, 140, 145, 148, 255, 138, 144, 147, 255, 137, 145, 147, 255, 138, 144, 147, 255, 136, 142, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 141, 147, 150, 255, 143, 149, 153, 255, 148, 154, 158, 255, 147, 153, 156, 255, 143, 149, 152, 255, 138, 144, 148, 255, 141, 148, 151, 255, 161, 170, 172, 255, 205, 213, 216, 255, 205, 213, 216, 255, 192, 200, 203, 255, 167, 175, 178, 255, 149, 154, 158, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 143, 147, 255, 138, 139, 143, 255, 123, 125, 128, 255, 102, 106, 109, 255, 84, 88, 91, 255, 77, 81, 84, 255, 94, 98, 101, 255, 124, 128, 131, 255, 135, 139, 142, 255, 138, 143, 146, 255, 140, 145, 149, 255, 141, 146, 149, 255, 139, 146, 148, 255, 139, 144, 148, 255, 136, 143, 146, 255, 131, 139, 141, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 142, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 148, 153, 157, 255, 148, 154, 158, 255, 145, 152, 156, 255, 139, 146, 149, 255, 140, 146, 149, 255, 158, 166, 168, 255, 191, 199, 202, 255, 181, 189, 192, 255, 163, 171, 174, 255, 148, 155, 158, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 142, 146, 255, 135, 136, 140, 255, 124, 127, 130, 255, 110, 114, 117, 255, 86, 90, 93, 255, 68, 72, 75, 255, 88, 92, 95, 255, 127, 132, 135, 255, 134, 139, 142, 255, 138, 143, 146, 255, 139, 144, 148, 255, 139, 145, 148, 255, 139, 145, 148, 255, 138, 146, 148, 255, 134, 141, 144, 255, 134, 140, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 146, 150, 255, 149, 155, 158, 255, 147, 154, 157, 255, 143, 150, 153, 255, 139, 145, 148, 255, 144, 150, 153, 255, 172, 180, 183, 255, 189, 197, 200, 255, 175, 183, 186, 255, 156, 164, 167, 255, 145, 151, 155, 255, 143, 148, 152, 255, 141, 146, 150, 255, 138, 143, 147, 255, 141, 142, 146, 255, 131, 132, 136, 255, 120, 124, 127, 255, 103, 107, 110, 255, 78, 82, 85, 255, 72, 76, 79, 255, 102, 106, 109, 255, 130, 135, 138, 255, 135, 140, 143, 255, 138, 143, 146, 255, 139, 144, 147, 255, 137, 143, 146, 255, 138, 145, 147, 255, 137, 145, 147, 255, 132, 140, 142, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 144, 149, 153, 255, 149, 154, 158, 255, 146, 153, 157, 255, 141, 148, 151, 255, 138, 144, 147, 255, 148, 155, 157, 255, 187, 195, 198, 255, 187, 195, 198, 255, 169, 177, 180, 255, 150, 158, 161, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 143, 147, 255, 138, 139, 143, 255, 127, 130, 133, 255, 115, 119, 122, 255, 94, 98, 101, 255, 73, 77, 80, 255, 80, 84, 87, 255, 115, 119, 122, 255, 132, 137, 140, 255, 137, 142, 145, 255, 139, 144, 147, 255, 140, 145, 148, 255, 139, 144, 148, 255, 139, 146, 149, 255, 138, 143, 147, 255, 130, 137, 140, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 148, 153, 157, 255, 149, 154, 158, 255, 146, 153, 157, 255, 143, 153, 155, 255, 142, 150, 153, 255, 151, 159, 162, 255, 167, 175, 178, 255, 149, 157, 160, 255, 128, 136, 139, 255, 119, 126, 129, 255, 124, 129, 133, 255, 130, 135, 139, 255, 130, 135, 139, 255, 136, 138, 142, 255, 136, 137, 141, 255, 134, 138, 141, 255, 129, 133, 136, 255, 103, 107, 110, 255, 72, 76, 79, 255, 76, 80, 83, 255, 106, 110, 113, 255, 134, 139, 142, 255, 136, 141, 144, 255, 137, 142, 145, 255, 139, 144, 148, 255, 139, 146, 149, 255, 138, 144, 148, 255, 134, 141, 144, 255, 133, 140, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 144, 147, 255, 149, 155, 158, 255, 148, 153, 157, 255, 145, 153, 156, 255, 142, 152, 154, 255, 144, 152, 155, 255, 159, 167, 170, 255, 162, 170, 173, 255, 142, 150, 153, 255, 123, 131, 134, 255, 119, 125, 129, 255, 127, 132, 136, 255, 131, 136, 140, 255, 129, 134, 138, 255, 139, 140, 144, 255, 135, 136, 140, 255, 134, 138, 141, 255, 123, 127, 130, 255, 91, 95, 98, 255, 70, 74, 77, 255, 86, 90, 93, 255, 116, 120, 123, 255, 135, 140, 143, 255, 136, 141, 144, 255, 137, 142, 145, 255, 138, 145, 147, 255, 140, 148, 150, 255, 139, 145, 148, 255, 131, 139, 141, 255, 136, 142, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 143, 148, 152, 255, 149, 154, 158, 255, 147, 153, 157, 255, 144, 153, 156, 255, 142, 150, 153, 255, 145, 153, 156, 255, 167, 175, 178, 255, 157, 165, 168, 255, 134, 142, 145, 255, 118, 126, 129, 255, 121, 126, 130, 255, 129, 134, 138, 255, 131, 136, 140, 255, 132, 136, 140, 255, 138, 139, 143, 255, 135, 137, 140, 255, 131, 135, 138, 255, 113, 117, 120, 255, 82, 86, 89, 255, 73, 77, 80, 255, 95, 99, 102, 255, 125, 130, 133, 255, 135, 140, 143, 255, 137, 142, 145, 255, 138, 143, 147, 255, 139, 146, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 142, 148, 152, 255, 137, 142, 146, 255, 148, 154, 158, 255, 147, 153, 157, 255, 144, 152, 155, 255, 146, 156, 158, 255, 153, 162, 164, 255, 159, 167, 170, 255, 136, 144, 147, 255, 108, 116, 119, 255, 96, 102, 106, 255, 100, 105, 109, 255, 108, 113, 117, 255, 111, 116, 120, 255, 126, 128, 132, 255, 136, 137, 141, 255, 140, 143, 147, 255, 141, 145, 148, 255, 122, 126, 129, 255, 89, 93, 96, 255, 73, 77, 80, 255, 78, 82, 85, 255, 121, 126, 129, 255, 129, 134, 137, 255, 135, 140, 143, 255, 138, 144, 147, 255, 139, 146, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 135, 140, 144, 255, 139, 144, 148, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 140, 146, 149, 255, 148, 154, 158, 255, 146, 153, 156, 255, 144, 153, 156, 255, 147, 157, 159, 255, 157, 166, 169, 255, 153, 161, 164, 255, 126, 134, 137, 255, 102, 110, 113, 255, 95, 101, 105, 255, 103, 108, 112, 255, 110, 115, 119, 255, 111, 116, 120, 255, 134, 135, 139, 255, 137, 138, 142, 255, 142, 146, 149, 255, 138, 142, 145, 255, 111, 115, 118, 255, 81, 85, 88, 255, 73, 77, 80, 255, 92, 97, 100, 255, 124, 129, 132, 255, 131, 136, 139, 255, 136, 141, 144, 255, 139, 145, 148, 255, 140, 148, 150, 255, 139, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 139, 145, 148, 255, 139, 145, 149, 255, 144, 149, 153, 255, 148, 154, 158, 255, 145, 152, 156, 255, 145, 154, 156, 255, 149, 159, 161, 255, 162, 170, 173, 255, 146, 154, 157, 255, 116, 124, 127, 255, 96, 104, 107, 255, 96, 101, 105, 255, 106, 111, 115, 255, 111, 116, 120, 255, 117, 121, 125, 255, 136, 137, 141, 255, 138, 141, 144, 255, 141, 145, 148, 255, 130, 134, 137, 255, 100, 104, 107, 255, 77, 81, 84, 255, 75, 79, 82, 255, 107, 111, 114, 255, 126, 131, 134, 255, 133, 138, 141, 255, 137, 142, 145, 255, 139, 147, 149, 255, 139, 144, 148, 255, 135, 143, 145, 255, 135, 142, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 140, 145, 149, 255, 142, 148, 152, 255, 144, 151, 155, 255, 145, 151, 155, 255, 145, 152, 155, 255, 146, 156, 158, 255, 152, 161, 164, 255, 154, 162, 165, 255, 138, 146, 149, 255, 116, 124, 127, 255, 99, 106, 110, 255, 95, 100, 104, 255, 96, 101, 105, 255, 97, 102, 106, 255, 110, 113, 117, 255, 123, 124, 128, 255, 132, 135, 138, 255, 138, 142, 145, 255, 135, 139, 142, 255, 115, 119, 122, 255, 86, 90, 93, 255, 65, 69, 72, 255, 97, 102, 105, 255, 117, 122, 125, 255, 136, 141, 144, 255, 139, 145, 148, 255, 136, 144, 146, 255, 134, 142, 144, 255, 135, 143, 145, 255, 135, 141, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 141, 146, 150, 255, 143, 149, 153, 255, 144, 151, 155, 255, 145, 151, 155, 255, 145, 153, 156, 255, 148, 158, 160, 255, 154, 163, 165, 255, 150, 158, 161, 255, 131, 139, 142, 255, 109, 117, 120, 255, 97, 102, 106, 255, 95, 100, 104, 255, 97, 102, 106, 255, 96, 101, 105, 255, 118, 119, 123, 255, 126, 127, 131, 255, 135, 139, 142, 255, 139, 143, 146, 255, 129, 133, 136, 255, 105, 109, 112, 255, 77, 81, 84, 255, 75, 79, 82, 255, 103, 108, 111, 255, 124, 129, 132, 255, 137, 142, 145, 255, 138, 145, 147, 255, 135, 143, 145, 255, 134, 142, 144, 255, 135, 143, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 139, 144, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 141, 147, 151, 255, 143, 150, 154, 255, 144, 151, 155, 255, 145, 151, 155, 255, 145, 155, 157, 255, 150, 160, 162, 255, 156, 164, 167, 255, 146, 154, 157, 255, 124, 132, 135, 255, 102, 110, 113, 255, 94, 99, 103, 255, 95, 100, 104, 255, 97, 102, 106, 255, 103, 107, 111, 255, 121, 122, 126, 255, 129, 131, 134, 255, 137, 141, 144, 255, 137, 141, 144, 255, 122, 126, 129, 255, 95, 99, 102, 255, 71, 75, 78, 255, 85, 90, 93, 255, 109, 114, 117, 255, 130, 135, 138, 255, 139, 144, 147, 255, 137, 145, 147, 255, 134, 142, 144, 255, 132, 140, 142, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 140, 147, 150, 255, 145, 152, 155, 255, 137, 142, 146, 255, 146, 154, 157, 255, 146, 153, 157, 255, 149, 155, 158, 255, 147, 155, 158, 255, 147, 157, 159, 255, 148, 158, 160, 255, 142, 150, 153, 255, 144, 152, 155, 255, 136, 144, 147, 255, 120, 127, 130, 255, 107, 112, 116, 255, 99, 104, 108, 255, 95, 100, 104, 255, 96, 99, 103, 255, 104, 105, 109, 255, 114, 117, 121, 255, 127, 131, 134, 255, 141, 145, 148, 255, 139, 143, 146, 255, 108, 112, 115, 255, 70, 74, 77, 255, 73, 78, 81, 255, 105, 110, 113, 255, 136, 141, 144, 255, 141, 147, 150, 255, 132, 140, 142, 255, 129, 137, 139, 255, 134, 141, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 141, 145, 255, 142, 148, 151, 255, 142, 147, 151, 255, 135, 140, 144, 255, 137, 142, 146, 255, 144, 151, 154, 255, 135, 140, 144, 255, 139, 144, 148, 255, 147, 153, 157, 255, 148, 155, 158, 255, 147, 156, 158, 255, 148, 158, 160, 255, 145, 154, 157, 255, 143, 151, 154, 255, 142, 150, 153, 255, 131, 139, 142, 255, 115, 121, 124, 255, 103, 108, 112, 255, 97, 102, 106, 255, 94, 99, 103, 255, 98, 99, 103, 255, 108, 109, 113, 255, 118, 122, 125, 255, 132, 136, 139, 255, 142, 146, 149, 255, 130, 134, 137, 255, 94, 98, 101, 255, 69, 74, 77, 255, 83, 88, 91, 255, 116, 121, 124, 255, 139, 144, 147, 255, 138, 145, 147, 255, 130, 138, 140, 255, 130, 138, 140, 255, 136, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 144, 147, 255, 144, 151, 154, 255, 140, 146, 150, 255, 142, 149, 152, 255, 146, 154, 158, 255, 148, 154, 157, 255, 148, 155, 158, 255, 147, 156, 158, 255, 150, 160, 162, 255, 142, 151, 153, 255, 144, 152, 155, 255, 141, 149, 152, 255, 125, 132, 135, 255, 110, 115, 119, 255, 100, 105, 109, 255, 96, 101, 105, 255, 95, 99, 103, 255, 101, 102, 106, 255, 111, 113, 117, 255, 123, 127, 130, 255, 136, 140, 143, 255, 140, 144, 147, 255, 119, 123, 126, 255, 82, 86, 89, 255, 70, 75, 78, 255, 93, 98, 101, 255, 127, 132, 135, 255, 142, 147, 150, 255, 135, 143, 145, 255, 128, 136, 138, 255, 128, 136, 138, 255, 138, 143, 147, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 146, 153, 156, 255, 138, 144, 148, 255, 140, 146, 150, 255, 142, 149, 153, 255, 152, 160, 164, 255, 156, 165, 167, 255, 146, 153, 156, 255, 145, 154, 157, 255, 145, 155, 157, 255, 146, 154, 157, 255, 143, 151, 154, 255, 139, 147, 150, 255, 134, 141, 145, 255, 130, 135, 139, 255, 123, 128, 132, 255, 116, 121, 125, 255, 106, 108, 112, 255, 99, 100, 104, 255, 98, 101, 105, 255, 109, 113, 116, 255, 129, 133, 136, 255, 139, 143, 146, 255, 124, 128, 131, 255, 100, 104, 107, 255, 67, 72, 75, 255, 87, 92, 95, 255, 121, 126, 129, 255, 146, 152, 155, 255, 142, 150, 152, 255, 130, 137, 140, 255, 132, 139, 141, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 135, 140, 144, 255, 136, 142, 145, 255, 148, 156, 158, 255, 136, 141, 145, 255, 137, 143, 147, 255, 145, 152, 156, 255, 154, 162, 166, 255, 152, 161, 164, 255, 145, 153, 156, 255, 145, 154, 157, 255, 146, 155, 157, 255, 145, 153, 156, 255, 142, 150, 153, 255, 137, 145, 148, 255, 133, 139, 143, 255, 128, 133, 137, 255, 120, 125, 129, 255, 115, 120, 124, 255, 101, 102, 106, 255, 98, 100, 103, 255, 100, 104, 107, 255, 115, 119, 122, 255, 134, 138, 141, 255, 135, 139, 142, 255, 115, 119, 122, 255, 88, 92, 95, 255, 73, 78, 81, 255, 98, 103, 106, 255, 131, 136, 139, 255, 146, 153, 155, 255, 137, 145, 147, 255, 129, 136, 139, 255, 135, 141, 145, 255, 135, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 135, 140, 144, 255, 142, 148, 151, 255, 143, 150, 153, 255, 138, 144, 148, 255, 142, 148, 152, 255, 149, 156, 160, 255, 155, 164, 167, 255, 149, 157, 160, 255, 145, 153, 156, 255, 145, 155, 157, 255, 146, 155, 158, 255, 145, 153, 156, 255, 141, 149, 152, 255, 136, 143, 146, 255, 131, 136, 140, 255, 125, 130, 134, 255, 118, 123, 127, 255, 110, 114, 118, 255, 99, 100, 104, 255, 98, 100, 104, 255, 104, 108, 111, 255, 122, 126, 129, 255, 137, 141, 144, 255, 129, 133, 136, 255, 108, 112, 115, 255, 77, 81, 84, 255, 78, 83, 86, 255, 109, 114, 117, 255, 142, 147, 150, 255, 146, 154, 156, 255, 131, 139, 141, 255, 138, 143, 147, 255, 138, 146, 148, 255, 136, 141, 145, 255, 137, 143, 146, 255, 136, 143, 146, 255, 136, 143, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 148, 151, 255, 143, 148, 152, 255, 141, 147, 150, 255, 142, 148, 151, 255, 147, 153, 157, 255, 151, 160, 162, 255, 141, 150, 152, 255, 145, 155, 157, 255, 151, 160, 163, 255, 147, 155, 158, 255, 144, 152, 155, 255, 140, 148, 151, 255, 138, 145, 149, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 123, 126, 130, 255, 114, 115, 119, 255, 102, 105, 108, 255, 96, 100, 103, 255, 103, 107, 110, 255, 117, 121, 124, 255, 126, 130, 133, 255, 125, 129, 132, 255, 86, 91, 94, 255, 89, 94, 97, 255, 111, 116, 119, 255, 137, 142, 145, 255, 139, 147, 149, 255, 134, 141, 144, 255, 138, 144, 148, 255, 137, 144, 147, 255, 137, 142, 146, 255, 137, 143, 146, 255, 136, 143, 145, 255, 137, 143, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 141, 147, 150, 255, 138, 143, 147, 255, 141, 147, 150, 255, 143, 150, 153, 255, 148, 156, 159, 255, 147, 156, 159, 255, 142, 151, 154, 255, 147, 157, 159, 255, 150, 159, 161, 255, 146, 154, 157, 255, 143, 151, 154, 255, 139, 147, 150, 255, 138, 144, 148, 255, 136, 141, 145, 255, 133, 138, 142, 255, 131, 136, 140, 255, 119, 121, 125, 255, 110, 111, 115, 255, 98, 102, 105, 255, 96, 100, 103, 255, 108, 112, 115, 255, 121, 125, 128, 255, 126, 130, 133, 255, 111, 116, 119, 255, 86, 91, 94, 255, 95, 100, 103, 255, 121, 126, 129, 255, 139, 146, 148, 255, 136, 144, 146, 255, 136, 142, 145, 255, 138, 145, 148, 255, 136, 142, 145, 255, 137, 142, 146, 255, 137, 143, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 148, 151, 255, 142, 148, 151, 255, 142, 147, 151, 255, 141, 148, 151, 255, 145, 151, 155, 255, 150, 158, 161, 255, 144, 153, 155, 255, 143, 153, 155, 255, 150, 160, 162, 255, 149, 157, 160, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 146, 149, 255, 138, 143, 147, 255, 135, 140, 144, 255, 132, 137, 141, 255, 127, 131, 135, 255, 116, 117, 121, 255, 106, 108, 112, 255, 97, 101, 104, 255, 100, 104, 107, 255, 113, 117, 120, 255, 124, 128, 131, 255, 126, 130, 133, 255, 98, 103, 106, 255, 86, 91, 94, 255, 102, 107, 110, 255, 131, 136, 139, 255, 141, 149, 151, 255, 133, 141, 143, 255, 135, 143, 145, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 148, 152, 255, 146, 152, 155, 255, 144, 151, 154, 255, 143, 149, 152, 255, 149, 157, 159, 255, 149, 158, 161, 255, 139, 149, 151, 255, 141, 150, 152, 255, 148, 158, 160, 255, 145, 153, 156, 255, 144, 152, 155, 255, 140, 148, 151, 255, 137, 144, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 141, 145, 255, 136, 137, 141, 255, 123, 126, 130, 255, 105, 109, 112, 255, 95, 99, 102, 255, 99, 103, 106, 255, 111, 115, 118, 255, 119, 123, 126, 255, 100, 105, 108, 255, 95, 100, 103, 255, 107, 112, 115, 255, 129, 135, 138, 255, 137, 145, 147, 255, 136, 144, 146, 255, 137, 144, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 144, 149, 153, 255, 146, 152, 156, 255, 143, 150, 153, 255, 144, 152, 154, 255, 149, 158, 160, 255, 145, 155, 157, 255, 139, 149, 151, 255, 144, 154, 156, 255, 147, 156, 159, 255, 145, 153, 156, 255, 143, 151, 154, 255, 139, 147, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 140, 144, 255, 134, 135, 139, 255, 117, 121, 124, 255, 100, 104, 107, 255, 95, 99, 102, 255, 103, 107, 110, 255, 115, 119, 122, 255, 113, 117, 120, 255, 98, 103, 106, 255, 98, 103, 106, 255, 115, 120, 123, 255, 133, 140, 142, 255, 137, 145, 147, 255, 135, 143, 145, 255, 138, 144, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 145, 150, 154, 255, 145, 151, 155, 255, 143, 150, 153, 255, 146, 154, 157, 255, 149, 158, 161, 255, 142, 152, 154, 255, 139, 149, 151, 255, 147, 157, 159, 255, 146, 154, 157, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 145, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 142, 146, 255, 137, 138, 142, 255, 128, 131, 134, 255, 111, 115, 118, 255, 97, 101, 104, 255, 97, 101, 104, 255, 107, 111, 114, 255, 117, 121, 124, 255, 107, 111, 114, 255, 96, 101, 104, 255, 101, 106, 109, 255, 123, 128, 131, 255, 137, 144, 147, 255, 136, 144, 146, 255, 137, 145, 147, 255, 140, 148, 150, 255, 134, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 148, 156, 158, 255, 128, 137, 139, 255, 118, 129, 131, 255, 127, 137, 140, 255, 141, 150, 152, 255, 147, 156, 158, 255, 144, 154, 156, 255, 141, 149, 152, 255, 144, 153, 156, 255, 145, 153, 156, 255, 144, 152, 155, 255, 142, 150, 153, 255, 138, 145, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 141, 144, 148, 255, 145, 146, 150, 255, 143, 146, 149, 255, 130, 134, 137, 255, 115, 119, 122, 255, 105, 109, 112, 255, 101, 105, 108, 255, 99, 103, 106, 255, 102, 107, 110, 255, 102, 107, 110, 255, 114, 119, 122, 255, 133, 139, 141, 255, 139, 147, 149, 255, 138, 146, 148, 255, 139, 147, 149, 255, 138, 145, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 133, 138, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 145, 150, 154, 255, 146, 155, 157, 255, 121, 131, 133, 255, 120, 131, 133, 255, 132, 141, 144, 255, 144, 152, 155, 255, 146, 155, 158, 255, 143, 152, 154, 255, 142, 151, 153, 255, 144, 153, 156, 255, 145, 153, 156, 255, 144, 152, 155, 255, 141, 149, 152, 255, 137, 143, 146, 255, 134, 139, 143, 255, 135, 140, 144, 255, 138, 143, 147, 255, 143, 144, 148, 255, 146, 147, 151, 255, 140, 144, 147, 255, 124, 128, 131, 255, 110, 114, 117, 255, 103, 107, 110, 255, 101, 105, 108, 255, 100, 105, 108, 255, 102, 107, 110, 255, 105, 110, 113, 255, 121, 126, 129, 255, 136, 143, 145, 255, 139, 147, 149, 255, 137, 145, 147, 255, 140, 148, 150, 255, 135, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 133, 138, 142, 255, 134, 139, 143, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 146, 153, 156, 255, 137, 146, 148, 255, 120, 130, 132, 255, 124, 134, 136, 255, 137, 145, 148, 255, 146, 154, 157, 255, 145, 155, 157, 255, 141, 150, 153, 255, 143, 152, 155, 255, 145, 153, 156, 255, 145, 153, 156, 255, 143, 151, 154, 255, 139, 147, 150, 255, 136, 141, 145, 255, 134, 139, 143, 255, 136, 141, 145, 255, 140, 144, 148, 255, 144, 145, 149, 255, 144, 146, 150, 255, 135, 139, 142, 255, 120, 124, 127, 255, 108, 112, 115, 255, 102, 106, 109, 255, 100, 104, 107, 255, 101, 106, 109, 255, 101, 106, 109, 255, 109, 114, 117, 255, 128, 133, 136, 255, 139, 147, 149, 255, 138, 146, 148, 255, 135, 143, 145, 255, 138, 145, 148, 255, 132, 137, 141, 255, 138, 143, 147, 255, 139, 144, 148, 255, 134, 139, 143, 255, 131, 136, 140, 255, 131, 136, 140, 255, 132, 137, 141, 255, 135, 140, 144, 255, 138, 144, 147, 255, 141, 147, 150, 255, 136, 143, 146, 255, 115, 124, 125, 255, 90, 100, 102, 255, 79, 90, 92, 255, 89, 99, 101, 255, 120, 130, 132, 255, 145, 154, 156, 255, 149, 159, 161, 255, 146, 156, 158, 255, 145, 155, 157, 255, 144, 151, 154, 255, 145, 152, 156, 255, 143, 151, 154, 255, 140, 147, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 141, 145, 255, 142, 143, 147, 255, 144, 147, 151, 255, 142, 146, 149, 255, 137, 141, 144, 255, 127, 131, 134, 255, 114, 118, 121, 255, 102, 106, 109, 255, 106, 111, 114, 255, 113, 118, 121, 255, 127, 132, 135, 255, 139, 144, 147, 255, 139, 147, 149, 255, 136, 144, 146, 255, 136, 144, 146, 255, 135, 142, 145, 255, 134, 139, 143, 255, 139, 144, 148, 255, 138, 143, 147, 255, 133, 138, 142, 255, 130, 135, 139, 255, 131, 136, 140, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 145, 148, 255, 142, 148, 151, 255, 132, 139, 142, 255, 105, 115, 116, 255, 84, 94, 96, 255, 81, 91, 93, 255, 99, 109, 111, 255, 129, 139, 141, 255, 147, 156, 158, 255, 148, 158, 160, 255, 146, 156, 158, 255, 145, 153, 156, 255, 145, 152, 155, 255, 145, 153, 156, 255, 142, 150, 153, 255, 139, 145, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 139, 143, 255, 143, 144, 148, 255, 144, 148, 151, 255, 140, 144, 147, 255, 134, 138, 141, 255, 123, 127, 130, 255, 110, 114, 117, 255, 103, 108, 111, 255, 108, 113, 116, 255, 117, 122, 125, 255, 131, 136, 139, 255, 139, 146, 148, 255, 138, 146, 148, 255, 135, 143, 145, 255, 137, 145, 147, 255, 133, 138, 142, 255, 137, 142, 146, 255, 140, 145, 149, 255, 136, 141, 145, 255, 131, 136, 140, 255, 130, 135, 139, 255, 131, 136, 140, 255, 134, 139, 143, 255, 138, 143, 147, 255, 140, 146, 149, 255, 139, 146, 148, 255, 123, 132, 134, 255, 98, 108, 109, 255, 81, 92, 94, 255, 85, 95, 97, 255, 109, 119, 121, 255, 137, 147, 149, 255, 148, 158, 160, 255, 147, 157, 159, 255, 146, 156, 158, 255, 144, 152, 154, 255, 145, 152, 155, 255, 145, 153, 156, 255, 141, 149, 152, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 142, 146, 255, 140, 141, 145, 255, 144, 146, 149, 255, 143, 147, 150, 255, 138, 142, 145, 255, 130, 134, 137, 255, 118, 122, 125, 255, 106, 110, 113, 255, 105, 109, 112, 255, 110, 115, 118, 255, 121, 126, 129, 255, 136, 141, 144, 255, 140, 148, 150, 255, 136, 144, 146, 255, 133, 141, 143, 255, 134, 142, 144, 255, 131, 136, 140, 255, 136, 141, 145, 255, 138, 143, 147, 255, 133, 138, 142, 255, 131, 136, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 140, 143, 255, 130, 137, 140, 255, 112, 120, 122, 255, 90, 99, 100, 255, 102, 112, 114, 255, 90, 100, 102, 255, 82, 93, 95, 255, 107, 117, 119, 255, 139, 149, 151, 255, 149, 159, 161, 255, 145, 155, 157, 255, 142, 151, 154, 255, 141, 149, 152, 255, 141, 148, 152, 255, 140, 148, 151, 255, 138, 145, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 142, 146, 255, 141, 142, 146, 255, 139, 142, 146, 255, 139, 143, 146, 255, 141, 145, 148, 255, 141, 145, 148, 255, 133, 137, 140, 255, 122, 126, 129, 255, 119, 124, 127, 255, 126, 131, 134, 255, 135, 140, 143, 255, 139, 145, 147, 255, 135, 143, 145, 255, 133, 141, 143, 255, 133, 141, 143, 255, 133, 139, 142, 255, 133, 138, 142, 255, 138, 143, 147, 255, 136, 141, 145, 255, 132, 137, 141, 255, 131, 136, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 134, 141, 143, 255, 127, 135, 137, 255, 103, 111, 113, 255, 87, 97, 98, 255, 104, 114, 116, 255, 85, 96, 98, 255, 89, 99, 101, 255, 118, 128, 130, 255, 143, 153, 155, 255, 148, 158, 160, 255, 144, 154, 156, 255, 141, 150, 153, 255, 141, 149, 152, 255, 141, 148, 152, 255, 139, 147, 150, 255, 138, 144, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 141, 142, 146, 255, 141, 142, 146, 255, 138, 142, 145, 255, 139, 143, 146, 255, 142, 146, 149, 255, 139, 143, 146, 255, 129, 133, 136, 255, 121, 125, 128, 255, 121, 126, 129, 255, 129, 134, 137, 255, 137, 142, 145, 255, 138, 144, 147, 255, 134, 142, 144, 255, 133, 141, 143, 255, 134, 142, 144, 255, 131, 137, 140, 255, 135, 140, 144, 255, 139, 144, 148, 255, 135, 140, 144, 255, 130, 135, 139, 255, 131, 136, 140, 255, 133, 138, 142, 255, 134, 139, 143, 255, 133, 139, 142, 255, 132, 139, 142, 255, 119, 127, 129, 255, 96, 105, 107, 255, 94, 104, 106, 255, 97, 107, 109, 255, 84, 94, 96, 255, 98, 108, 110, 255, 128, 138, 140, 255, 146, 156, 158, 255, 146, 156, 158, 255, 143, 153, 155, 255, 141, 149, 152, 255, 141, 148, 152, 255, 140, 148, 151, 255, 138, 146, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 141, 142, 146, 255, 140, 142, 146, 255, 139, 143, 146, 255, 140, 144, 147, 255, 142, 146, 149, 255, 136, 140, 143, 255, 126, 130, 133, 255, 120, 124, 127, 255, 124, 129, 132, 255, 132, 137, 140, 255, 139, 144, 147, 255, 137, 144, 146, 255, 133, 141, 143, 255, 133, 141, 143, 255, 130, 137, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 129, 134, 138, 255, 118, 123, 127, 255, 109, 115, 118, 255, 104, 111, 113, 255, 108, 116, 118, 255, 113, 122, 123, 255, 128, 138, 140, 255, 106, 117, 119, 255, 88, 98, 100, 255, 106, 116, 118, 255, 139, 149, 151, 255, 151, 160, 163, 255, 144, 153, 156, 255, 139, 148, 150, 255, 141, 149, 152, 255, 138, 146, 149, 255, 135, 143, 146, 255, 134, 141, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 142, 146, 255, 141, 143, 146, 255, 139, 142, 145, 255, 137, 141, 144, 255, 140, 144, 147, 255, 144, 148, 151, 255, 140, 144, 147, 255, 133, 137, 140, 255, 132, 137, 140, 255, 134, 139, 142, 255, 136, 141, 144, 255, 137, 143, 146, 255, 137, 145, 147, 255, 135, 143, 145, 255, 132, 140, 142, 255, 130, 137, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 127, 132, 136, 255, 114, 119, 122, 255, 108, 115, 117, 255, 102, 110, 112, 255, 111, 119, 121, 255, 116, 125, 126, 255, 127, 137, 139, 255, 98, 108, 110, 255, 91, 101, 103, 255, 117, 127, 129, 255, 144, 153, 155, 255, 149, 158, 160, 255, 142, 151, 153, 255, 140, 149, 151, 255, 140, 148, 151, 255, 137, 145, 148, 255, 134, 142, 145, 255, 135, 141, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 142, 146, 255, 141, 143, 147, 255, 138, 142, 145, 255, 138, 142, 145, 255, 142, 146, 149, 255, 143, 147, 150, 255, 138, 142, 145, 255, 132, 137, 140, 255, 133, 138, 141, 255, 134, 139, 142, 255, 136, 141, 144, 255, 137, 144, 146, 255, 136, 144, 146, 255, 134, 142, 144, 255, 130, 138, 140, 255, 131, 137, 140, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 133, 138, 142, 255, 135, 140, 144, 255, 131, 136, 140, 255, 123, 128, 132, 255, 111, 116, 119, 255, 106, 113, 115, 255, 105, 112, 114, 255, 112, 120, 122, 255, 122, 131, 133, 255, 117, 127, 129, 255, 93, 103, 105, 255, 99, 109, 111, 255, 128, 138, 140, 255, 148, 157, 159, 255, 147, 156, 158, 255, 140, 149, 151, 255, 141, 149, 152, 255, 139, 147, 150, 255, 136, 144, 147, 255, 134, 142, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 141, 142, 146, 255, 140, 143, 146, 255, 137, 141, 144, 255, 139, 143, 146, 255, 143, 147, 150, 255, 142, 146, 149, 255, 136, 140, 143, 255, 132, 137, 140, 255, 133, 138, 141, 255, 135, 140, 143, 255, 137, 142, 145, 255, 137, 144, 147, 255, 136, 144, 146, 255, 133, 140, 143, 255, 129, 135, 138, 255, 131, 135, 139, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 130, 135, 138, 255, 120, 124, 128, 255, 106, 111, 114, 255, 96, 101, 103, 255, 99, 104, 106, 255, 112, 118, 120, 255, 133, 139, 141, 255, 139, 144, 146, 255, 122, 129, 132, 255, 96, 105, 107, 255, 85, 95, 97, 255, 110, 119, 121, 255, 143, 151, 154, 255, 152, 161, 164, 255, 146, 154, 157, 255, 143, 150, 153, 255, 145, 152, 155, 255, 140, 147, 151, 255, 136, 143, 146, 255, 135, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 140, 144, 255, 138, 142, 145, 255, 140, 144, 147, 255, 140, 145, 148, 255, 141, 146, 149, 255, 142, 147, 150, 255, 140, 144, 147, 255, 135, 139, 143, 255, 137, 142, 145, 255, 135, 140, 143, 255, 134, 139, 142, 255, 137, 142, 145, 255, 139, 146, 148, 255, 137, 144, 147, 255, 131, 139, 141, 255, 129, 135, 138, 255, 131, 136, 140, 255, 133, 138, 142, 255, 134, 139, 143, 255, 134, 138, 142, 255, 128, 132, 136, 255, 115, 120, 124, 255, 102, 107, 110, 255, 94, 98, 101, 255, 103, 108, 110, 255, 116, 123, 124, 255, 141, 147, 149, 255, 135, 141, 143, 255, 113, 121, 124, 255, 90, 100, 102, 255, 91, 101, 103, 255, 122, 131, 133, 255, 147, 155, 158, 255, 150, 159, 161, 255, 145, 152, 155, 255, 144, 151, 154, 255, 144, 151, 154, 255, 138, 145, 149, 255, 135, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 139, 143, 255, 139, 143, 146, 255, 140, 145, 148, 255, 141, 145, 148, 255, 142, 146, 150, 255, 142, 146, 150, 255, 138, 142, 146, 255, 136, 140, 144, 255, 136, 141, 145, 255, 134, 139, 143, 255, 135, 140, 143, 255, 137, 144, 146, 255, 139, 146, 148, 255, 135, 142, 145, 255, 130, 137, 139, 255, 130, 135, 139, 255, 132, 136, 140, 255, 134, 138, 142, 255, 135, 140, 143, 255, 133, 138, 141, 255, 124, 129, 132, 255, 110, 115, 119, 255, 99, 104, 106, 255, 95, 100, 102, 255, 107, 113, 115, 255, 125, 131, 133, 255, 140, 145, 147, 255, 128, 135, 138, 255, 105, 113, 116, 255, 88, 97, 99, 255, 101, 110, 112, 255, 132, 141, 143, 255, 150, 159, 161, 255, 148, 156, 159, 255, 143, 151, 153, 255, 145, 153, 156, 255, 142, 149, 153, 255, 136, 144, 147, 255, 134, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 140, 144, 255, 140, 144, 147, 255, 140, 145, 148, 255, 141, 145, 149, 255, 142, 147, 150, 255, 141, 145, 148, 255, 137, 141, 144, 255, 136, 141, 145, 255, 136, 141, 144, 255, 134, 139, 142, 255, 136, 141, 144, 255, 138, 145, 148, 255, 139, 146, 149, 255, 132, 137, 141, 255, 131, 136, 140, 255, 134, 138, 141, 255, 132, 136, 139, 255, 130, 134, 138, 255, 124, 128, 131, 255, 108, 112, 115, 255, 89, 93, 96, 255, 84, 89, 91, 255, 95, 99, 100, 255, 117, 121, 122, 255, 135, 140, 141, 255, 141, 145, 147, 255, 127, 132, 133, 255, 99, 105, 108, 255, 87, 94, 97, 255, 96, 104, 107, 255, 125, 133, 136, 255, 149, 155, 159, 255, 149, 156, 159, 255, 145, 151, 154, 255, 146, 151, 155, 255, 146, 152, 156, 255, 142, 148, 152, 255, 138, 144, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 135, 140, 144, 255, 135, 140, 143, 255, 137, 142, 146, 255, 137, 143, 146, 255, 134, 139, 143, 255, 131, 137, 141, 255, 132, 137, 140, 255, 133, 137, 141, 255, 131, 135, 139, 255, 129, 133, 137, 255, 120, 124, 127, 255, 102, 106, 109, 255, 84, 88, 91, 255, 87, 92, 93, 255, 99, 103, 104, 255, 126, 130, 132, 255, 139, 143, 145, 255, 140, 144, 146, 255, 119, 123, 125, 255, 92, 98, 101, 255, 88, 96, 99, 255, 105, 113, 116, 255, 134, 141, 144, 255, 149, 156, 159, 255, 147, 154, 158, 255, 145, 151, 154, 255, 146, 152, 156, 255, 143, 148, 152, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 135, 140, 144, 255, 136, 141, 144, 255, 138, 143, 146, 255, 136, 142, 145, 255, 133, 138, 142, 255, 131, 136, 140, 255, 134, 138, 141, 255, 132, 136, 140, 255, 131, 135, 139, 255, 128, 133, 136, 255, 115, 119, 122, 255, 95, 99, 102, 255, 82, 86, 88, 255, 91, 96, 97, 255, 107, 111, 112, 255, 132, 136, 138, 255, 140, 144, 146, 255, 134, 138, 140, 255, 109, 114, 117, 255, 89, 96, 99, 255, 92, 100, 103, 255, 115, 123, 126, 255, 142, 148, 152, 255, 149, 156, 160, 255, 146, 152, 156, 255, 145, 151, 154, 255, 147, 152, 156, 255, 144, 149, 153, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 135, 140, 143, 255, 137, 142, 145, 255, 138, 143, 147, 255, 135, 141, 144, 255, 131, 136, 140, 255, 133, 138, 142, 255, 143, 147, 150, 255, 123, 127, 130, 255, 104, 108, 111, 255, 91, 95, 98, 255, 80, 84, 87, 255, 75, 79, 81, 255, 87, 91, 92, 255, 110, 114, 115, 255, 128, 132, 133, 255, 134, 138, 140, 255, 127, 131, 133, 255, 107, 111, 112, 255, 82, 87, 90, 255, 90, 96, 100, 255, 118, 123, 127, 255, 141, 147, 151, 255, 150, 155, 159, 255, 146, 151, 155, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 131, 136, 140, 255, 131, 136, 140, 255, 138, 142, 146, 255, 137, 141, 144, 255, 117, 121, 124, 255, 100, 104, 107, 255, 87, 91, 94, 255, 77, 81, 84, 255, 75, 79, 81, 255, 96, 100, 101, 255, 116, 120, 121, 255, 134, 138, 139, 255, 134, 138, 140, 255, 122, 126, 128, 255, 98, 102, 103, 255, 79, 85, 89, 255, 99, 105, 109, 255, 127, 132, 136, 255, 145, 150, 154, 255, 149, 154, 158, 255, 145, 150, 154, 255, 144, 149, 153, 255, 145, 150, 154, 255, 142, 147, 151, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 131, 136, 140, 255, 143, 147, 150, 255, 131, 135, 138, 255, 110, 114, 117, 255, 96, 100, 103, 255, 83, 87, 90, 255, 75, 79, 81, 255, 79, 83, 84, 255, 104, 108, 109, 255, 123, 127, 128, 255, 135, 139, 140, 255, 130, 134, 136, 255, 115, 119, 120, 255, 90, 94, 97, 255, 85, 90, 94, 255, 108, 114, 118, 255, 134, 139, 143, 255, 148, 153, 157, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 146, 151, 155, 255, 144, 149, 153, 255, 141, 146, 150, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 132, 137, 141, 255, 136, 141, 145, 255, 142, 147, 151, 255, 140, 144, 147, 255, 108, 112, 115, 255, 80, 84, 87, 255, 73, 77, 80, 255, 79, 83, 86, 255, 91, 95, 97, 255, 107, 111, 112, 255, 123, 127, 128, 255, 129, 133, 134, 255, 122, 126, 127, 255, 109, 113, 115, 255, 91, 95, 97, 255, 77, 82, 85, 255, 102, 107, 111, 255, 138, 143, 147, 255, 151, 156, 160, 255, 148, 153, 157, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 145, 150, 154, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 141, 146, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 133, 138, 142, 255, 138, 143, 147, 255, 143, 148, 151, 255, 130, 134, 137, 255, 98, 102, 105, 255, 77, 81, 84, 255, 74, 78, 81, 255, 82, 86, 89, 255, 96, 100, 102, 255, 113, 117, 118, 255, 128, 132, 133, 255, 128, 132, 133, 255, 119, 123, 124, 255, 103, 107, 109, 255, 85, 89, 91, 255, 80, 85, 89, 255, 116, 121, 125, 255, 145, 150, 154, 255, 151, 156, 160, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 134, 139, 143, 255, 140, 145, 149, 255, 144, 148, 151, 255, 120, 124, 127, 255, 87, 91, 94, 255, 73, 77, 80, 255, 76, 80, 83, 255, 86, 90, 93, 255, 102, 106, 107, 255, 118, 122, 123, 255, 129, 133, 134, 255, 125, 129, 130, 255, 113, 117, 119, 255, 97, 101, 103, 255, 81, 86, 88, 255, 91, 96, 100, 255, 127, 132, 136, 255, 148, 153, 157, 255, 149, 154, 158, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 145, 150, 154, 255, 144, 149, 153, 255, 141, 146, 150, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 149, 154, 158, 255, 164, 169, 173, 255, 140, 144, 147, 255, 108, 112, 115, 255, 85, 89, 92, 255, 88, 92, 95, 255, 103, 107, 110, 255, 118, 122, 124, 255, 126, 130, 131, 255, 127, 131, 132, 255, 124, 128, 129, 255, 114, 118, 119, 255, 98, 102, 103, 255, 84, 88, 89, 255, 90, 95, 98, 255, 121, 126, 130, 255, 151, 156, 160, 255, 153, 158, 162, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 133, 138, 142, 255, 130, 135, 139, 255, 137, 142, 146, 255, 155, 160, 164, 255, 157, 161, 165, 255, 129, 133, 136, 255, 99, 103, 106, 255, 85, 89, 92, 255, 92, 96, 99, 255, 108, 112, 115, 255, 122, 126, 128, 255, 127, 131, 132, 255, 127, 131, 132, 255, 122, 126, 127, 255, 109, 113, 114, 255, 92, 96, 97, 255, 82, 87, 88, 255, 98, 103, 107, 255, 132, 137, 141, 255, 154, 159, 163, 255, 150, 155, 159, 255, 144, 149, 153, 255, 145, 150, 154, 255, 144, 149, 153, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 131, 136, 140, 255, 131, 136, 140, 255, 143, 148, 152, 255, 161, 166, 170, 255, 149, 154, 157, 255, 119, 123, 126, 255, 89, 93, 96, 255, 84, 88, 91, 255, 97, 101, 104, 255, 114, 118, 121, 255, 126, 130, 131, 255, 127, 131, 132, 255, 126, 130, 131, 255, 118, 122, 123, 255, 103, 107, 108, 255, 88, 92, 93, 255, 86, 91, 93, 255, 110, 115, 119, 255, 142, 147, 151, 255, 153, 158, 162, 255, 147, 152, 156, 255, 145, 150, 154, 255, 146, 151, 155, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 134, 139, 143, 255, 130, 135, 139, 255, 131, 136, 140, 255, 166, 171, 175, 255, 192, 197, 201, 255, 169, 173, 176, 255, 138, 142, 145, 255, 115, 119, 122, 255, 116, 120, 123, 255, 126, 130, 133, 255, 132, 136, 138, 255, 132, 136, 137, 255, 125, 129, 130, 255, 116, 120, 121, 255, 106, 110, 112, 255, 91, 95, 97, 255, 82, 86, 87, 255, 113, 118, 122, 255, 139, 144, 148, 255, 153, 158, 162, 255, 148, 153, 157, 255, 143, 148, 152, 255, 146, 151, 155, 255, 147, 152, 156, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 131, 136, 140, 255, 128, 133, 137, 255, 144, 149, 153, 255, 176, 181, 185, 255, 185, 190, 193, 255, 159, 163, 166, 255, 128, 132, 135, 255, 114, 118, 121, 255, 119, 123, 126, 255, 128, 132, 135, 255, 132, 136, 138, 255, 131, 135, 136, 255, 121, 125, 126, 255, 114, 118, 119, 255, 102, 106, 109, 255, 86, 90, 91, 255, 85, 89, 91, 255, 126, 131, 135, 255, 144, 149, 153, 255, 153, 158, 162, 255, 146, 151, 155, 255, 144, 149, 153, 255, 147, 152, 156, 255, 145, 150, 154, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 128, 133, 137, 255, 131, 136, 140, 255, 154, 159, 163, 255, 186, 191, 195, 255, 178, 182, 186, 255, 149, 153, 156, 255, 119, 123, 126, 255, 113, 117, 120, 255, 123, 127, 130, 255, 131, 135, 137, 255, 133, 137, 138, 255, 129, 133, 134, 255, 118, 122, 123, 255, 110, 114, 115, 255, 97, 101, 102, 255, 84, 88, 89, 255, 99, 104, 106, 255, 132, 137, 141, 255, 149, 154, 158, 255, 151, 156, 160, 255, 144, 149, 153, 255, 145, 150, 154, 255, 147, 152, 156, 255, 144, 149, 153, 255, 143, 148, 152, 255, 144, 149, 153, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 133, 138, 142, 255, 126, 131, 135, 255, 134, 139, 143, 255, 182, 187, 191, 255, 215, 219, 223, 255, 204, 208, 211, 255, 172, 176, 179, 255, 144, 148, 151, 255, 136, 140, 143, 255, 135, 139, 142, 255, 132, 136, 138, 255, 125, 129, 130, 255, 116, 120, 121, 255, 111, 115, 117, 255, 98, 102, 105, 255, 87, 91, 92, 255, 88, 92, 93, 255, 133, 138, 141, 255, 148, 153, 157, 255, 150, 155, 159, 255, 148, 153, 157, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 141, 146, 150, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 131, 136, 140, 255, 131, 136, 140, 255, 155, 160, 164, 255, 194, 199, 203, 255, 212, 217, 221, 255, 194, 198, 201, 255, 161, 165, 168, 255, 140, 144, 147, 255, 136, 140, 143, 255, 134, 138, 141, 255, 130, 134, 136, 255, 121, 125, 126, 255, 113, 117, 118, 255, 110, 114, 116, 255, 92, 96, 99, 255, 85, 89, 90, 255, 96, 100, 101, 255, 146, 151, 155, 255, 149, 154, 158, 255, 150, 155, 159, 255, 147, 152, 156, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 129, 134, 138, 255, 136, 141, 145, 255, 167, 172, 176, 255, 205, 210, 214, 255, 210, 215, 218, 255, 184, 188, 191, 255, 151, 155, 158, 255, 137, 141, 144, 255, 136, 140, 143, 255, 133, 137, 140, 255, 128, 132, 133, 255, 118, 122, 123, 255, 112, 116, 117, 255, 104, 108, 111, 255, 89, 93, 95, 255, 87, 91, 92, 255, 114, 119, 121, 255, 147, 152, 156, 255, 150, 155, 159, 255, 149, 154, 158, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 133, 138, 142, 255, 127, 132, 136, 255, 142, 147, 151, 255, 196, 201, 205, 255, 228, 233, 237, 255, 211, 215, 218, 255, 181, 185, 188, 255, 154, 158, 161, 255, 143, 147, 150, 255, 136, 140, 143, 255, 127, 131, 133, 255, 119, 123, 124, 255, 115, 119, 120, 255, 106, 110, 112, 255, 88, 92, 95, 255, 90, 94, 96, 255, 112, 116, 117, 255, 145, 150, 153, 255, 149, 154, 158, 255, 149, 154, 158, 255, 154, 159, 163, 255, 150, 155, 159, 255, 140, 145, 149, 255, 139, 144, 148, 255, 144, 149, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 133, 138, 142, 255, 139, 144, 148, 255, 167, 172, 176, 255, 208, 213, 217, 255, 223, 228, 231, 255, 202, 206, 209, 255, 171, 175, 178, 255, 150, 154, 157, 255, 141, 145, 148, 255, 133, 137, 140, 255, 124, 128, 129, 255, 117, 121, 122, 255, 115, 119, 120, 255, 100, 104, 107, 255, 83, 87, 90, 255, 96, 100, 101, 255, 122, 126, 128, 255, 152, 157, 161, 255, 148, 153, 157, 255, 151, 156, 160, 255, 153, 158, 162, 255, 147, 152, 156, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 133, 138, 142, 255, 146, 151, 155, 255, 181, 186, 190, 255, 219, 224, 228, 255, 219, 223, 226, 255, 192, 196, 199, 255, 161, 165, 168, 255, 146, 150, 153, 255, 138, 142, 145, 255, 130, 134, 136, 255, 121, 125, 126, 255, 115, 119, 120, 255, 111, 115, 116, 255, 94, 98, 101, 255, 86, 90, 92, 255, 104, 108, 109, 255, 134, 138, 141, 255, 150, 155, 159, 255, 149, 154, 158, 255, 152, 157, 161, 255, 152, 157, 161, 255, 143, 148, 152, 255, 138, 143, 147, 255, 142, 147, 151, 255, 144, 149, 153, 255, 138, 143, 147, 255, 143, 148, 152, 255, 142, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 133, 138, 142, 255, 133, 138, 142, 255, 152, 157, 161, 255, 211, 216, 220, 255, 224, 229, 233, 255, 195, 199, 202, 255, 169, 173, 176, 255, 147, 151, 154, 255, 138, 142, 145, 255, 130, 134, 137, 255, 121, 125, 128, 255, 116, 120, 121, 255, 110, 114, 115, 255, 94, 98, 100, 255, 83, 87, 90, 255, 101, 105, 107, 255, 136, 140, 141, 255, 151, 156, 159, 255, 148, 153, 157, 255, 150, 155, 159, 255, 154, 159, 163, 255, 150, 155, 159, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 129, 134, 138, 255, 129, 134, 138, 255, 151, 156, 160, 255, 188, 193, 197, 255, 217, 222, 226, 255, 215, 219, 223, 255, 187, 191, 194, 255, 161, 165, 168, 255, 144, 148, 151, 255, 135, 139, 142, 255, 128, 132, 135, 255, 118, 122, 124, 255, 116, 120, 121, 255, 106, 110, 111, 255, 88, 92, 95, 255, 82, 86, 89, 255, 112, 116, 117, 255, 146, 150, 152, 255, 152, 157, 161, 255, 148, 153, 157, 255, 152, 157, 161, 255, 153, 158, 162, 255, 147, 152, 156, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 138, 143, 147, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 136, 141, 145, 255, 134, 139, 143, 255, 128, 133, 137, 255, 134, 139, 143, 255, 163, 168, 172, 255, 199, 204, 208, 255, 222, 227, 231, 255, 205, 210, 213, 255, 179, 183, 186, 255, 153, 157, 160, 255, 140, 144, 147, 255, 133, 137, 140, 255, 124, 128, 131, 255, 116, 120, 121, 255, 113, 117, 118, 255, 100, 104, 105, 255, 85, 89, 92, 255, 91, 95, 98, 255, 124, 128, 129, 255, 149, 153, 155, 255, 150, 155, 159, 255, 149, 154, 158, 255, 153, 158, 162, 255, 152, 157, 161, 255, 143, 148, 152, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 144, 149, 153, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 132, 137, 141, 255, 126, 131, 135, 255, 140, 145, 149, 255, 174, 179, 183, 255, 218, 223, 227, 255, 206, 211, 215, 255, 175, 179, 182, 255, 153, 157, 160, 255, 134, 138, 141, 255, 127, 131, 134, 255, 123, 127, 130, 255, 117, 121, 123, 255, 109, 113, 114, 255, 99, 103, 104, 255, 85, 89, 91, 255, 86, 90, 93, 255, 113, 117, 118, 255, 144, 148, 149, 255, 152, 156, 160, 255, 150, 155, 159, 255, 150, 155, 159, 255, 148, 153, 157, 255, 147, 152, 156, 255, 144, 149, 153, 255, 141, 146, 150, 255, 136, 141, 145, 255, 139, 144, 148, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 127, 132, 136, 255, 130, 135, 139, 255, 166, 171, 175, 255, 206, 211, 215, 255, 215, 220, 224, 255, 196, 200, 204, 255, 168, 172, 175, 255, 146, 150, 153, 255, 131, 135, 138, 255, 126, 130, 133, 255, 121, 125, 128, 255, 114, 118, 119, 255, 107, 111, 112, 255, 94, 98, 99, 255, 81, 85, 88, 255, 90, 94, 97, 255, 125, 129, 130, 255, 152, 156, 158, 255, 151, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 146, 151, 155, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 133, 138, 142, 255, 125, 130, 134, 255, 140, 145, 149, 255, 182, 187, 191, 255, 212, 217, 221, 255, 212, 217, 221, 255, 185, 189, 193, 255, 161, 165, 168, 255, 139, 143, 146, 255, 128, 132, 135, 255, 125, 129, 132, 255, 119, 123, 126, 255, 111, 115, 116, 255, 104, 108, 109, 255, 89, 93, 94, 255, 83, 87, 90, 255, 101, 105, 108, 255, 135, 139, 140, 255, 152, 156, 159, 255, 151, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 147, 152, 156, 255, 145, 150, 154, 255, 143, 148, 152, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 142, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 130, 135, 139, 255, 123, 128, 132, 255, 149, 154, 158, 255, 197, 202, 206, 255, 204, 209, 213, 255, 185, 190, 194, 255, 155, 159, 162, 255, 139, 143, 146, 255, 126, 130, 133, 255, 121, 125, 128, 255, 116, 120, 123, 255, 108, 112, 114, 255, 101, 105, 106, 255, 90, 94, 95, 255, 79, 83, 85, 255, 91, 95, 98, 255, 121, 125, 126, 255, 149, 153, 154, 255, 152, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 146, 151, 155, 255, 144, 149, 153, 255, 142, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 146, 151, 155, 255, 179, 184, 188, 255, 203, 208, 212, 255, 198, 203, 207, 255, 175, 180, 183, 255, 150, 154, 157, 255, 134, 138, 141, 255, 124, 128, 131, 255, 120, 124, 127, 255, 114, 118, 121, 255, 105, 109, 111, 255, 99, 103, 104, 255, 84, 88, 89, 255, 78, 82, 85, 255, 98, 102, 105, 255, 133, 137, 138, 255, 155, 159, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 134, 139, 143, 255, 156, 161, 165, 255, 190, 195, 199, 255, 204, 209, 213, 255, 193, 198, 202, 255, 165, 169, 172, 255, 145, 149, 152, 255, 129, 133, 136, 255, 122, 126, 129, 255, 118, 122, 125, 255, 111, 115, 118, 255, 103, 107, 108, 255, 95, 99, 100, 255, 81, 85, 86, 255, 84, 88, 91, 255, 110, 114, 116, 255, 141, 145, 146, 255, 153, 158, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 145, 150, 154, 255, 144, 149, 153, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 141, 146, 150, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 130, 135, 139, 255, 137, 142, 146, 255, 167, 172, 176, 255, 201, 206, 210, 255, 185, 190, 194, 255, 164, 168, 172, 255, 139, 143, 146, 255, 128, 132, 135, 255, 119, 123, 126, 255, 114, 118, 121, 255, 106, 110, 113, 255, 95, 99, 101, 255, 87, 91, 92, 255, 76, 80, 81, 255, 79, 83, 84, 255, 101, 105, 108, 255, 130, 134, 136, 255, 150, 154, 155, 255, 150, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 145, 150, 154, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 128, 133, 137, 255, 135, 140, 144, 255, 162, 167, 171, 255, 190, 195, 199, 255, 195, 200, 204, 255, 178, 183, 187, 255, 155, 160, 163, 255, 135, 139, 142, 255, 124, 128, 131, 255, 117, 121, 124, 255, 112, 116, 119, 255, 102, 106, 109, 255, 92, 96, 97, 255, 85, 89, 90, 255, 72, 76, 77, 255, 84, 88, 90, 255, 110, 114, 117, 255, 140, 144, 145, 255, 153, 157, 159, 255, 148, 153, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 132, 137, 141, 255, 129, 134, 138, 255, 143, 148, 152, 255, 172, 177, 181, 255, 194, 199, 203, 255, 191, 196, 200, 255, 172, 177, 181, 255, 147, 151, 154, 255, 132, 136, 139, 255, 121, 125, 128, 255, 116, 120, 123, 255, 109, 113, 116, 255, 98, 102, 105, 255, 89, 93, 94, 255, 81, 85, 86, 255, 73, 77, 79, 255, 93, 97, 99, 255, 120, 124, 127, 255, 145, 149, 150, 255, 151, 156, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 129, 134, 138, 255, 130, 135, 139, 255, 151, 156, 160, 255, 183, 188, 192, 255, 199, 204, 208, 255, 167, 172, 176, 255, 146, 151, 155, 255, 130, 134, 137, 255, 118, 122, 125, 255, 107, 111, 114, 255, 98, 102, 105, 255, 88, 92, 95, 255, 78, 82, 84, 255, 73, 77, 79, 255, 73, 77, 79, 255, 94, 98, 100, 255, 121, 125, 128, 255, 140, 144, 146, 255, 146, 150, 152, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 142, 147, 151, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 130, 135, 139, 255, 143, 148, 152, 255, 171, 176, 180, 255, 189, 194, 198, 255, 182, 187, 191, 255, 160, 165, 169, 255, 141, 145, 149, 255, 126, 130, 133, 255, 115, 119, 122, 255, 104, 108, 111, 255, 95, 99, 102, 255, 85, 89, 92, 255, 76, 80, 81, 255, 73, 77, 79, 255, 74, 78, 79, 255, 106, 110, 113, 255, 128, 132, 135, 255, 145, 149, 151, 255, 147, 151, 153, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 131, 136, 140, 255, 133, 138, 142, 255, 152, 157, 161, 255, 179, 184, 188, 255, 189, 194, 198, 255, 175, 180, 184, 255, 153, 158, 162, 255, 135, 139, 143, 255, 123, 127, 130, 255, 111, 115, 118, 255, 101, 105, 108, 255, 92, 96, 99, 255, 81, 85, 88, 255, 73, 77, 79, 255, 73, 77, 79, 255, 82, 86, 88, 255, 115, 119, 122, 255, 134, 138, 141, 255, 146, 150, 152, 255, 147, 151, 154, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 130, 135, 139, 255, 136, 141, 145, 255, 161, 166, 170, 255, 187, 192, 196, 255, 189, 194, 198, 255, 151, 156, 160, 255, 132, 137, 141, 255, 119, 123, 126, 255, 103, 107, 110, 255, 88, 92, 95, 255, 78, 82, 85, 255, 72, 76, 79, 255, 69, 73, 75, 255, 72, 76, 77, 255, 82, 86, 87, 255, 112, 116, 118, 255, 139, 144, 147, 255, 143, 148, 151, 255, 142, 146, 149, 255, 144, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 127, 132, 136, 255, 139, 144, 148, 255, 158, 163, 167, 255, 175, 180, 184, 255, 179, 184, 188, 255, 166, 171, 175, 255, 145, 150, 154, 255, 128, 133, 136, 255, 114, 118, 121, 255, 98, 102, 105, 255, 84, 88, 91, 255, 76, 80, 83, 255, 71, 75, 78, 255, 69, 73, 75, 255, 74, 78, 79, 255, 86, 90, 91, 255, 126, 130, 133, 255, 144, 148, 151, 255, 142, 147, 150, 255, 142, 146, 149, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 131, 136, 140, 255, 130, 135, 139, 255, 145, 150, 154, 255, 164, 169, 173, 255, 178, 183, 187, 255, 177, 182, 186, 255, 159, 164, 168, 255, 138, 143, 147, 255, 124, 128, 131, 255, 109, 113, 116, 255, 92, 96, 99, 255, 81, 85, 88, 255, 74, 78, 81, 255, 69, 73, 76, 255, 70, 74, 75, 255, 78, 82, 83, 255, 98, 102, 103, 255, 135, 139, 142, 255, 144, 148, 151, 255, 142, 146, 150, 255, 143, 147, 151, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 129, 134, 138, 255, 134, 139, 143, 255, 151, 156, 160, 255, 170, 175, 179, 255, 181, 186, 190, 255, 174, 179, 183, 255, 134, 139, 143, 255, 115, 120, 124, 255, 99, 103, 106, 255, 85, 89, 92, 255, 75, 79, 82, 255, 73, 77, 80, 255, 76, 80, 83, 255, 81, 85, 87, 255, 88, 92, 93, 255, 100, 104, 105, 255, 128, 132, 135, 255, 141, 145, 149, 255, 140, 145, 149, 255, 143, 147, 150, 255, 140, 144, 148, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 124, 129, 133, 255, 156, 161, 165, 255, 180, 185, 189, 255, 179, 184, 188, 255, 167, 172, 176, 255, 149, 154, 158, 255, 128, 133, 137, 255, 110, 114, 118, 255, 95, 99, 102, 255, 81, 85, 88, 255, 73, 77, 80, 255, 73, 77, 80, 255, 77, 81, 84, 255, 83, 87, 89, 255, 90, 94, 95, 255, 105, 109, 111, 255, 140, 144, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 147, 150, 255, 139, 144, 148, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 129, 134, 138, 255, 134, 139, 143, 255, 165, 170, 174, 255, 180, 185, 189, 255, 176, 181, 185, 255, 162, 167, 171, 255, 142, 147, 151, 255, 122, 127, 131, 255, 105, 109, 112, 255, 90, 94, 97, 255, 77, 81, 84, 255, 72, 76, 79, 255, 74, 78, 81, 255, 79, 83, 86, 255, 86, 90, 91, 255, 94, 98, 99, 255, 116, 120, 122, 255, 142, 147, 150, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 149, 255, 141, 146, 150, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 125, 130, 134, 255, 144, 149, 153, 255, 174, 179, 183, 255, 181, 186, 190, 255, 172, 177, 181, 255, 157, 162, 166, 255, 110, 115, 119, 255, 87, 92, 96, 255, 79, 83, 86, 255, 75, 79, 82, 255, 78, 82, 85, 255, 89, 93, 96, 255, 100, 104, 107, 255, 108, 112, 115, 255, 115, 119, 121, 255, 122, 127, 129, 255, 133, 138, 141, 255, 135, 140, 143, 255, 138, 143, 147, 255, 144, 149, 151, 255, 141, 146, 149, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 149, 255, 138, 143, 147, 255, 136, 141, 146, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 133, 138, 143, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 133, 138, 142, 255, 184, 189, 193, 255, 208, 213, 217, 255, 185, 190, 194, 255, 151, 156, 160, 255, 126, 131, 136, 255, 102, 107, 111, 255, 85, 89, 93, 255, 77, 81, 84, 255, 75, 79, 82, 255, 81, 85, 88, 255, 93, 97, 100, 255, 103, 107, 110, 255, 111, 115, 117, 255, 117, 121, 123, 255, 125, 130, 132, 255, 137, 142, 145, 255, 134, 139, 142, 255, 141, 146, 150, 255, 145, 149, 151, 255, 140, 145, 149, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 133, 138, 142, 255, 131, 136, 141, 255, 133, 138, 142, 255, 134, 139, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 139, 143, 255, 131, 136, 140, 255, 150, 155, 159, 255, 194, 199, 203, 255, 202, 207, 211, 255, 173, 178, 182, 255, 143, 148, 152, 255, 119, 124, 128, 255, 95, 100, 104, 255, 82, 86, 89, 255, 76, 80, 83, 255, 75, 79, 82, 255, 84, 88, 91, 255, 97, 101, 104, 255, 106, 110, 113, 255, 114, 118, 120, 255, 119, 124, 126, 255, 129, 134, 137, 255, 137, 141, 145, 255, 136, 141, 144, 255, 143, 147, 151, 255, 143, 147, 150, 255, 142, 147, 151, 255, 144, 149, 153, 255, 143, 148, 152, 255, 140, 145, 150, 255, 139, 144, 148, 255, 137, 142, 146, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 146, 255, 136, 141, 146, 255, 135, 140, 144, 255, 134, 139, 144, 255, 132, 137, 141, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 133, 138, 142, 255, 130, 135, 139, 255, 167, 172, 176, 255, 204, 209, 213, 255, 196, 201, 205, 255, 162, 167, 171, 255, 135, 140, 144, 255, 87, 92, 97, 255, 70, 75, 79, 255, 76, 80, 83, 255, 82, 86, 89, 255, 95, 99, 102, 255, 110, 114, 117, 255, 120, 124, 127, 255, 126, 130, 133, 255, 131, 135, 138, 255, 131, 136, 139, 255, 131, 136, 139, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 151, 255, 146, 151, 156, 255, 145, 150, 156, 255, 139, 144, 149, 255, 141, 146, 151, 255, 139, 144, 149, 255, 132, 137, 141, 255, 136, 141, 146, 255, 137, 142, 147, 255, 136, 141, 145, 255, 134, 139, 144, 255, 133, 138, 143, 255, 134, 139, 143, 255, 136, 141, 145, 255, 134, 140, 144, 255, 133, 139, 144, 255, 134, 139, 144, 255, 134, 140, 144, 255, 135, 140, 145, 255, 135, 141, 145, 255, 132, 138, 143, 255, 129, 135, 140, 255, 145, 151, 156, 255, 209, 215, 220, 255, 226, 232, 235, 255, 175, 181, 186, 255, 121, 127, 132, 255, 97, 103, 108, 255, 81, 86, 91, 255, 72, 77, 80, 255, 78, 82, 85, 255, 86, 90, 93, 255, 100, 104, 107, 255, 114, 118, 121, 255, 122, 126, 129, 255, 129, 133, 136, 255, 131, 135, 138, 255, 132, 137, 140, 255, 131, 136, 139, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 152, 255, 146, 151, 156, 255, 143, 148, 153, 255, 139, 144, 150, 255, 141, 146, 151, 255, 135, 140, 145, 255, 134, 139, 143, 255, 137, 142, 147, 255, 136, 141, 147, 255, 135, 140, 145, 255, 133, 138, 144, 255, 132, 137, 142, 255, 135, 140, 144, 255, 132, 137, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 141, 145, 255, 135, 141, 145, 255, 135, 140, 145, 255, 133, 140, 144, 255, 131, 137, 142, 255, 133, 139, 144, 255, 167, 173, 178, 255, 219, 224, 228, 255, 211, 217, 220, 255, 155, 161, 166, 255, 112, 118, 123, 255, 92, 98, 103, 255, 75, 80, 84, 255, 74, 78, 82, 255, 79, 83, 86, 255, 90, 94, 97, 255, 105, 109, 112, 255, 119, 123, 126, 255, 124, 128, 131, 255, 131, 135, 138, 255, 131, 136, 139, 255, 131, 136, 139, 255, 133, 138, 141, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 144, 149, 154, 255, 146, 151, 156, 255, 141, 146, 151, 255, 140, 145, 150, 255, 141, 146, 151, 255, 133, 138, 142, 255, 135, 140, 145, 255, 137, 142, 147, 255, 136, 141, 146, 255, 135, 140, 144, 255, 133, 138, 143, 255, 133, 138, 142, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 139, 144, 255, 134, 139, 144, 255, 134, 139, 144, 255, 134, 140, 145, 255, 135, 141, 145, 255, 133, 139, 143, 255, 130, 136, 141, 255, 137, 143, 148, 255, 189, 194, 200, 255, 228, 234, 237, 255, 196, 202, 206, 255, 134, 141, 145, 255, 103, 109, 115, 255, 80, 87, 93, 255, 78, 85, 88, 255, 97, 100, 104, 255, 105, 109, 112, 255, 116, 120, 123, 255, 122, 127, 130, 255, 127, 131, 135, 255, 131, 135, 139, 255, 132, 137, 141, 255, 132, 137, 141, 255, 132, 137, 141, 255, 138, 143, 147, 255, 143, 147, 152, 255, 143, 147, 151, 255, 143, 148, 153, 255, 139, 144, 150, 255, 146, 151, 157, 255, 146, 151, 157, 255, 129, 134, 140, 255, 137, 142, 147, 255, 143, 148, 153, 255, 140, 145, 149, 255, 138, 143, 149, 255, 135, 140, 145, 255, 133, 138, 143, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 133, 139, 144, 255, 130, 137, 143, 255, 134, 139, 144, 255, 134, 140, 145, 255, 134, 140, 146, 255, 135, 141, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 149, 156, 162, 255, 207, 214, 219, 255, 206, 212, 216, 255, 136, 143, 149, 255, 81, 88, 94, 255, 76, 83, 89, 255, 79, 86, 91, 255, 85, 90, 94, 255, 99, 103, 106, 255, 109, 113, 116, 255, 118, 122, 125, 255, 124, 128, 131, 255, 128, 132, 136, 255, 131, 136, 139, 255, 132, 137, 141, 255, 136, 141, 145, 255, 134, 139, 142, 255, 142, 146, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 143, 148, 153, 255, 140, 145, 151, 255, 147, 152, 158, 255, 141, 146, 152, 255, 131, 136, 142, 255, 139, 144, 150, 255, 140, 145, 150, 255, 138, 143, 148, 255, 137, 142, 148, 255, 134, 139, 145, 255, 132, 137, 143, 255, 133, 138, 144, 255, 135, 140, 145, 255, 136, 141, 146, 255, 132, 137, 143, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 140, 145, 255, 132, 139, 145, 255, 130, 137, 142, 255, 133, 140, 146, 255, 169, 176, 182, 255, 211, 217, 222, 255, 184, 190, 195, 255, 113, 120, 126, 255, 77, 84, 90, 255, 78, 85, 91, 255, 78, 84, 89, 255, 91, 95, 99, 255, 101, 105, 108, 255, 113, 117, 120, 255, 120, 125, 128, 255, 126, 130, 133, 255, 129, 134, 137, 255, 132, 137, 141, 255, 132, 137, 141, 255, 132, 137, 141, 255, 135, 140, 144, 255, 142, 147, 151, 255, 143, 147, 152, 255, 143, 147, 152, 255, 141, 146, 151, 255, 143, 148, 154, 255, 147, 152, 158, 255, 135, 140, 146, 255, 134, 139, 144, 255, 142, 147, 152, 255, 140, 145, 150, 255, 139, 144, 150, 255, 136, 141, 147, 255, 133, 138, 142, 255, 135, 140, 145, 255, 134, 139, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 131, 137, 143, 255, 132, 138, 143, 255, 134, 140, 145, 255, 134, 140, 145, 255, 135, 141, 145, 255, 132, 138, 143, 255, 128, 135, 141, 255, 139, 146, 152, 255, 189, 196, 202, 255, 215, 221, 225, 255, 162, 169, 174, 255, 91, 98, 104, 255, 74, 81, 87, 255, 99, 107, 112, 255, 101, 108, 111, 255, 117, 120, 125, 255, 121, 125, 128, 255, 127, 132, 135, 255, 127, 132, 136, 255, 131, 136, 140, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 144, 148, 255, 148, 151, 156, 255, 148, 151, 156, 255, 144, 149, 155, 255, 141, 146, 152, 255, 155, 160, 166, 255, 152, 157, 163, 255, 109, 114, 120, 255, 99, 104, 110, 255, 122, 127, 132, 255, 140, 145, 149, 255, 140, 145, 150, 255, 136, 141, 147, 255, 133, 138, 144, 255, 135, 140, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 139, 144, 255, 133, 139, 144, 255, 135, 140, 145, 255, 136, 141, 145, 255, 134, 140, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 138, 145, 151, 255, 163, 170, 176, 255, 143, 150, 156, 255, 89, 96, 102, 255, 67, 74, 80, 255, 86, 93, 99, 255, 99, 107, 111, 255, 107, 112, 116, 255, 118, 121, 125, 255, 124, 128, 131, 255, 127, 132, 135, 255, 129, 134, 137, 255, 133, 138, 142, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 141, 146, 150, 255, 148, 151, 156, 255, 150, 153, 158, 255, 147, 150, 155, 255, 143, 148, 154, 255, 144, 149, 155, 255, 155, 160, 166, 255, 138, 143, 149, 255, 105, 110, 116, 255, 107, 112, 117, 255, 129, 134, 138, 255, 140, 145, 150, 255, 139, 144, 149, 255, 134, 139, 145, 255, 131, 136, 142, 255, 132, 137, 143, 255, 135, 140, 144, 255, 136, 141, 146, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 140, 146, 255, 133, 139, 145, 255, 131, 137, 142, 255, 130, 137, 143, 255, 148, 155, 161, 255, 159, 166, 172, 255, 124, 131, 137, 255, 78, 85, 91, 255, 73, 80, 86, 255, 93, 100, 106, 255, 99, 107, 111, 255, 112, 116, 121, 255, 119, 123, 126, 255, 127, 131, 134, 255, 126, 131, 135, 255, 130, 134, 138, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 145, 149, 153, 255, 149, 152, 157, 255, 146, 150, 155, 255, 142, 147, 153, 255, 149, 154, 160, 255, 154, 159, 165, 255, 124, 129, 135, 255, 101, 106, 112, 255, 114, 119, 124, 255, 136, 141, 145, 255, 141, 146, 151, 255, 138, 143, 148, 255, 133, 138, 143, 255, 135, 140, 145, 255, 135, 140, 144, 255, 134, 139, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 132, 138, 144, 255, 135, 140, 145, 255, 136, 141, 145, 255, 135, 140, 145, 255, 131, 138, 144, 255, 128, 135, 141, 255, 133, 140, 146, 255, 157, 164, 170, 255, 156, 163, 169, 255, 106, 113, 119, 255, 66, 73, 79, 255, 78, 85, 91, 255, 125, 131, 137, 255, 126, 132, 135, 255, 125, 129, 133, 255, 131, 135, 139, 255, 130, 135, 138, 255, 132, 137, 141, 255, 134, 139, 143, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 146, 150, 154, 255, 146, 149, 154, 255, 138, 143, 148, 255, 149, 154, 160, 255, 184, 189, 194, 255, 185, 190, 195, 255, 120, 125, 131, 255, 74, 79, 84, 255, 85, 90, 95, 255, 107, 112, 117, 255, 129, 134, 139, 255, 134, 139, 144, 255, 136, 141, 146, 255, 135, 140, 145, 255, 131, 136, 141, 255, 128, 133, 139, 255, 133, 138, 143, 255, 136, 141, 145, 255, 132, 138, 144, 255, 131, 138, 144, 255, 133, 139, 144, 255, 134, 140, 145, 255, 133, 139, 145, 255, 130, 137, 143, 255, 128, 135, 141, 255, 128, 135, 141, 255, 129, 135, 141, 255, 106, 112, 118, 255, 80, 87, 93, 255, 88, 95, 101, 255, 115, 122, 127, 255, 125, 132, 137, 255, 125, 130, 134, 255, 128, 132, 135, 255, 130, 135, 138, 255, 130, 135, 139, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 145, 148, 153, 255, 148, 151, 156, 255, 143, 147, 151, 255, 144, 148, 153, 255, 139, 144, 150, 255, 160, 165, 170, 255, 187, 192, 198, 255, 164, 169, 175, 255, 103, 108, 114, 255, 77, 82, 87, 255, 91, 96, 102, 255, 116, 121, 125, 255, 131, 136, 141, 255, 137, 142, 147, 255, 138, 143, 148, 255, 132, 137, 143, 255, 134, 139, 144, 255, 131, 136, 141, 255, 135, 140, 144, 255, 132, 138, 143, 255, 135, 140, 144, 255, 134, 139, 144, 255, 135, 140, 145, 255, 134, 139, 145, 255, 132, 139, 145, 255, 131, 137, 143, 255, 128, 135, 141, 255, 129, 136, 142, 255, 122, 129, 134, 255, 95, 102, 108, 255, 80, 87, 93, 255, 98, 105, 111, 255, 120, 126, 132, 255, 126, 132, 136, 255, 124, 129, 132, 255, 130, 134, 138, 255, 129, 134, 137, 255, 131, 136, 140, 255, 134, 139, 143, 255, 134, 139, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 144, 147, 152, 255, 147, 150, 155, 255, 141, 145, 151, 255, 144, 149, 155, 255, 172, 177, 182, 255, 186, 191, 196, 255, 143, 148, 154, 255, 87, 92, 98, 255, 80, 85, 90, 255, 98, 103, 108, 255, 125, 130, 134, 255, 132, 137, 143, 255, 137, 142, 146, 255, 135, 140, 145, 255, 134, 139, 144, 255, 127, 132, 138, 255, 132, 137, 142, 255, 136, 141, 145, 255, 134, 139, 144, 255, 131, 137, 143, 255, 133, 139, 144, 255, 134, 140, 145, 255, 133, 139, 145, 255, 131, 138, 144, 255, 129, 136, 142, 255, 128, 135, 141, 255, 130, 137, 143, 255, 115, 122, 128, 255, 85, 92, 98, 255, 80, 87, 93, 255, 108, 115, 121, 255, 135, 141, 146, 255, 130, 135, 139, 255, 133, 138, 141, 255, 135, 140, 144, 255, 133, 138, 141, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 143, 147, 255, 141, 145, 149, 255, 141, 145, 150, 255, 142, 146, 151, 255, 139, 144, 149, 255, 153, 158, 163, 255, 186, 191, 196, 255, 191, 196, 201, 255, 147, 152, 157, 255, 110, 115, 119, 255, 89, 94, 99, 255, 80, 85, 89, 255, 108, 113, 117, 255, 124, 129, 134, 255, 129, 134, 138, 255, 131, 136, 140, 255, 131, 136, 140, 255, 127, 132, 136, 255, 129, 134, 139, 255, 131, 136, 141, 255, 130, 136, 140, 255, 131, 137, 141, 255, 132, 138, 143, 255, 133, 139, 144, 255, 134, 140, 144, 255, 132, 138, 142, 255, 132, 138, 142, 255, 132, 138, 142, 255, 132, 137, 142, 255, 120, 126, 131, 255, 109, 114, 119, 255, 114, 120, 125, 255, 129, 135, 140, 255, 133, 139, 143, 255, 131, 136, 139, 255, 134, 139, 143, 255, 134, 139, 142, 255, 134, 139, 143, 255, 137, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 128, 133, 136, 255, 143, 146, 151, 255, 147, 150, 155, 255, 141, 144, 149, 255, 142, 146, 151, 255, 141, 146, 151, 255, 163, 168, 173, 255, 191, 196, 200, 255, 178, 183, 187, 255, 134, 139, 144, 255, 103, 108, 113, 255, 83, 88, 93, 255, 90, 95, 99, 255, 114, 119, 123, 255, 128, 133, 137, 255, 132, 137, 141, 255, 130, 135, 140, 255, 128, 133, 137, 255, 130, 135, 140, 255, 135, 140, 144, 255, 132, 138, 143, 255, 135, 140, 144, 255, 134, 139, 144, 255, 135, 140, 145, 255, 134, 140, 145, 255, 134, 140, 145, 255, 134, 140, 144, 255, 132, 138, 142, 255, 132, 138, 143, 255, 128, 134, 139, 255, 115, 121, 126, 255, 109, 115, 120, 255, 120, 126, 130, 255, 133, 138, 143, 255, 131, 136, 141, 255, 132, 136, 140, 255, 135, 140, 144, 255, 132, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 142, 146, 255, 140, 145, 149, 255, 141, 145, 150, 255, 142, 145, 150, 255, 141, 145, 150, 255, 147, 152, 157, 255, 175, 180, 184, 255, 191, 196, 200, 255, 163, 168, 173, 255, 122, 127, 132, 255, 96, 101, 106, 255, 78, 83, 87, 255, 99, 104, 108, 255, 121, 126, 130, 255, 129, 134, 138, 255, 130, 135, 139, 255, 132, 137, 141, 255, 128, 133, 138, 255, 126, 131, 136, 255, 132, 137, 141, 255, 131, 136, 140, 255, 131, 136, 141, 255, 132, 137, 142, 255, 133, 138, 143, 255, 134, 139, 144, 255, 133, 138, 143, 255, 132, 138, 142, 255, 132, 138, 142, 255, 133, 138, 143, 255, 125, 131, 135, 255, 111, 116, 121, 255, 110, 116, 120, 255, 125, 131, 136, 255, 138, 143, 147, 255, 132, 137, 141, 255, 136, 140, 144, 255, 137, 142, 146, 255, 137, 142, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 140, 144, 255, 139, 143, 147, 255, 138, 143, 147, 255, 138, 142, 147, 255, 140, 143, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 147, 152, 156, 255, 142, 147, 151, 255, 126, 131, 135, 255, 128, 133, 137, 255, 121, 126, 130, 255, 97, 102, 106, 255, 89, 94, 98, 255, 95, 100, 104, 255, 98, 103, 107, 255, 110, 115, 119, 255, 126, 131, 135, 255, 131, 136, 140, 255, 127, 132, 136, 255, 127, 132, 136, 255, 129, 134, 138, 255, 131, 136, 140, 255, 131, 136, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 140, 144, 255, 132, 137, 141, 255, 130, 135, 139, 255, 129, 134, 138, 255, 126, 131, 135, 255, 127, 132, 136, 255, 132, 137, 141, 255, 136, 141, 145, 255, 133, 138, 142, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 128, 132, 136, 255, 141, 146, 150, 255, 145, 148, 153, 255, 143, 146, 151, 255, 140, 143, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 146, 151, 155, 255, 136, 141, 145, 255, 127, 132, 136, 255, 127, 132, 136, 255, 113, 118, 122, 255, 93, 98, 102, 255, 92, 97, 101, 255, 95, 100, 104, 255, 101, 106, 110, 255, 115, 120, 124, 255, 127, 132, 136, 255, 132, 137, 141, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 131, 136, 140, 255, 130, 135, 139, 255, 128, 133, 137, 255, 126, 131, 135, 255, 129, 134, 138, 255, 136, 141, 145, 255, 134, 139, 143, 255, 135, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 141, 145, 149, 255, 137, 142, 146, 255, 140, 143, 148, 255, 140, 144, 148, 255, 140, 145, 149, 255, 144, 149, 153, 255, 144, 149, 153, 255, 131, 136, 140, 255, 127, 132, 136, 255, 126, 131, 135, 255, 104, 109, 113, 255, 89, 94, 98, 255, 94, 99, 103, 255, 95, 100, 104, 255, 105, 110, 114, 255, 122, 127, 131, 255, 133, 138, 142, 255, 128, 133, 137, 255, 127, 132, 136, 255, 128, 133, 137, 255, 130, 135, 139, 255, 131, 136, 140, 255, 132, 137, 141, 255, 133, 138, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 133, 138, 142, 255, 131, 136, 140, 255, 130, 135, 139, 255, 126, 131, 135, 255, 126, 131, 135, 255, 129, 134, 138, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 138, 143, 147, 255, 140, 144, 149, 255, 141, 144, 149, 255, 138, 141, 146, 255, 145, 149, 154, 255, 136, 141, 145, 255, 130, 135, 139, 255, 118, 123, 127, 255, 100, 105, 109, 255, 113, 118, 122, 255, 134, 139, 143, 255, 130, 135, 139, 255, 105, 110, 114, 255, 89, 94, 98, 255, 79, 84, 88, 255, 88, 93, 97, 255, 106, 111, 115, 255, 121, 126, 130, 255, 125, 130, 134, 255, 127, 132, 136, 255, 130, 135, 139, 255, 131, 136, 140, 255, 131, 136, 140, 255, 129, 134, 138, 255, 129, 134, 138, 255, 134, 139, 143, 255, 134, 139, 143, 255, 136, 141, 145, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 140, 144, 255, 138, 143, 147, 255, 142, 145, 150, 255, 142, 145, 150, 255, 138, 142, 146, 255, 145, 150, 154, 255, 133, 138, 142, 255, 126, 131, 135, 255, 111, 116, 120, 255, 104, 109, 113, 255, 121, 126, 130, 255, 134, 139, 143, 255, 121, 126, 130, 255, 100, 105, 109, 255, 84, 89, 93, 255, 80, 85, 89, 255, 93, 98, 102, 255, 113, 118, 122, 255, 124, 129, 133, 255, 128, 133, 137, 255, 135, 140, 144, 255, 132, 137, 141, 255, 133, 138, 142, 255, 132, 137, 141, 255, 129, 134, 138, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 132, 137, 141, 255, 132, 137, 141, 255, 133, 138, 142, 255, 134, 139, 143, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 140, 144, 255, 140, 145, 149, 255, 140, 144, 148, 255, 140, 143, 148, 255, 142, 145, 150, 255, 141, 146, 150, 255, 132, 137, 141, 255, 122, 127, 131, 255, 105, 110, 114, 255, 108, 113, 117, 255, 128, 133, 137, 255, 135, 140, 144, 255, 112, 117, 121, 255, 95, 100, 104, 255, 79, 84, 88, 255, 82, 87, 91, 255, 100, 105, 109, 255, 118, 123, 127, 255, 125, 130, 134, 255, 126, 131, 135, 255, 129, 134, 138, 255, 131, 136, 140, 255, 131, 136, 140, 255, 130, 135, 139, 255, 129, 134, 138, 255, 132, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 135, 140, 144, 255, 131, 136, 140, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 141, 145, 149, 255, 138, 141, 146, 255, 141, 146, 150, 255, 130, 135, 139, 255, 130, 135, 139, 255, 131, 136, 140, 255, 107, 112, 116, 255, 101, 106, 110, 255, 120, 125, 129, 255, 134, 139, 143, 255, 134, 139, 143, 255, 116, 121, 125, 255, 94, 99, 103, 255, 80, 85, 89, 255, 80, 85, 89, 255, 91, 96, 100, 255, 104, 109, 113, 255, 119, 124, 128, 255, 128, 133, 137, 255, 131, 136, 140, 255, 130, 135, 139, 255, 128, 133, 137, 255, 131, 136, 140, 255, 135, 140, 144, 255, 134, 139, 143, 255, 137, 142, 146, 255, 137, 142, 146, 255, 132, 137, 141, 255, 134, 139, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 144, 149, 255, 141, 144, 149, 255, 137, 140, 145, 255, 140, 145, 149, 255, 128, 133, 137, 255, 131, 136, 140, 255, 123, 128, 132, 255, 104, 109, 113, 255, 107, 112, 116, 255, 125, 130, 134, 255, 135, 140, 144, 255, 129, 134, 138, 255, 108, 113, 117, 255, 88, 93, 97, 255, 78, 83, 87, 255, 82, 87, 91, 255, 96, 101, 105, 255, 107, 112, 116, 255, 127, 132, 136, 255, 129, 134, 138, 255, 131, 136, 140, 255, 130, 135, 139, 255, 129, 134, 138, 255, 133, 138, 142, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 132, 137, 141, 255, 132, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 141, 145, 149, 255, 139, 143, 148, 255, 139, 143, 147, 255, 135, 140, 144, 255, 129, 134, 138, 255, 131, 136, 140, 255, 115, 120, 124, 255, 102, 107, 111, 255, 114, 119, 123, 255, 130, 135, 139, 255, 137, 142, 146, 255, 124, 129, 133, 255, 101, 106, 110, 255, 82, 87, 91, 255, 77, 82, 86, 255, 86, 91, 95, 255, 101, 106, 110, 255, 113, 118, 122, 255, 127, 132, 136, 255, 130, 135, 139, 255, 131, 136, 140, 255, 129, 134, 138, 255, 130, 135, 139, 255, 134, 139, 143, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 133, 138, 142, 255, 133, 138, 142, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 144, 148, 255, 140, 145, 149, 255, 140, 144, 148, 255, 135, 140, 143, 255, 133, 138, 141, 255, 135, 140, 144, 255, 129, 134, 138, 255, 112, 117, 120, 255, 103, 108, 111, 255, 109, 114, 117, 255, 122, 127, 130, 255, 137, 142, 145, 255, 132, 137, 140, 255, 123, 128, 132, 255, 111, 116, 119, 255, 99, 104, 107, 255, 89, 94, 97, 255, 83, 88, 91, 255, 93, 98, 101, 255, 110, 114, 117, 255, 123, 128, 131, 255, 128, 133, 136, 255, 131, 136, 139, 255, 133, 138, 141, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 144, 149, 255, 139, 143, 147, 255, 133, 138, 142, 255, 134, 139, 142, 255, 134, 139, 142, 255, 124, 129, 132, 255, 108, 113, 116, 255, 104, 109, 113, 255, 113, 118, 121, 255, 128, 133, 137, 255, 135, 140, 144, 255, 130, 135, 138, 255, 120, 125, 128, 255, 107, 112, 116, 255, 95, 100, 104, 255, 87, 92, 95, 255, 82, 87, 90, 255, 100, 104, 107, 255, 115, 119, 122, 255, 127, 131, 135, 255, 129, 134, 137, 255, 132, 137, 140, 255, 134, 139, 143, 255, 138, 143, 147, 255, 135, 140, 144, 255, 132, 136, 140, 255, 129, 134, 137, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 144, 149, 255, 137, 142, 145, 255, 133, 138, 141, 255, 135, 140, 143, 255, 132, 137, 140, 255, 118, 123, 126, 255, 105, 110, 113, 255, 106, 111, 115, 255, 116, 121, 124, 255, 135, 140, 143, 255, 134, 139, 142, 255, 127, 132, 136, 255, 115, 120, 123, 255, 103, 108, 111, 255, 92, 97, 100, 255, 85, 90, 93, 255, 86, 91, 95, 255, 105, 109, 113, 255, 119, 123, 127, 255, 128, 132, 135, 255, 130, 135, 138, 255, 132, 137, 140, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 139, 143, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 124, 129, 132, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 144, 149, 255, 135, 140, 143, 255, 136, 141, 145, 255, 135, 140, 143, 255, 127, 132, 135, 255, 115, 120, 123, 255, 107, 112, 115, 255, 106, 111, 114, 255, 112, 117, 120, 255, 127, 132, 135, 255, 131, 136, 139, 255, 133, 138, 141, 255, 130, 135, 138, 255, 122, 127, 130, 255, 110, 115, 118, 255, 99, 104, 107, 255, 93, 98, 101, 255, 101, 105, 108, 255, 115, 119, 122, 255, 124, 128, 131, 255, 131, 135, 138, 255, 133, 137, 141, 255, 139, 144, 148, 255, 140, 144, 148, 255, 138, 143, 147, 255, 137, 142, 145, 255, 134, 138, 142, 255, 138, 142, 146, 255, 131, 136, 139, 255, 128, 133, 136, 255, 132, 137, 141, 255, 130, 134, 138, 255, 139, 144, 148, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 141, 146, 150, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 143, 148, 255, 134, 139, 142, 255, 136, 141, 145, 255, 132, 137, 141, 255, 123, 128, 131, 255, 112, 117, 120, 255, 106, 111, 114, 255, 107, 112, 115, 255, 118, 123, 126, 255, 128, 133, 136, 255, 132, 137, 140, 255, 133, 138, 141, 255, 128, 133, 136, 255, 119, 124, 127, 255, 106, 111, 114, 255, 97, 102, 105, 255, 92, 96, 99, 255, 106, 110, 113, 255, 120, 124, 127, 255, 126, 130, 133, 255, 132, 137, 140, 255, 135, 139, 143, 255, 140, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 133, 138, 141, 255, 133, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 127, 132, 135, 255, 135, 140, 144, 255, 139, 144, 148, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 130, 135, 138, 255, 119, 124, 127, 255, 109, 114, 117, 255, 106, 111, 114, 255, 108, 113, 116, 255, 124, 129, 132, 255, 129, 134, 137, 255, 133, 138, 141, 255, 132, 137, 140, 255, 125, 130, 133, 255, 114, 119, 122, 255, 102, 107, 110, 255, 95, 100, 103, 255, 96, 100, 103, 255, 111, 115, 118, 255, 122, 126, 129, 255, 128, 133, 136, 255, 133, 137, 141, 255, 137, 142, 146, 255, 140, 144, 148, 255, 139, 143, 147, 255, 138, 143, 146, 255, 134, 138, 141, 255, 138, 143, 146, 255, 135, 139, 143, 255, 124, 128, 131, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 143, 148, 152, 255, 145, 150, 154, 255, 142, 146, 151, 255, 137, 142, 145, 255, 144, 149, 153, 255, 144, 149, 153, 255, 133, 138, 142, 255, 127, 132, 135, 255, 113, 118, 121, 255, 105, 110, 113, 255, 103, 108, 111, 255, 115, 120, 123, 255, 123, 128, 131, 255, 132, 137, 140, 255, 137, 142, 145, 255, 137, 142, 145, 255, 132, 136, 140, 255, 125, 130, 133, 255, 109, 114, 117, 255, 103, 107, 110, 255, 107, 111, 114, 255, 112, 116, 119, 255, 119, 123, 126, 255, 130, 134, 138, 255, 134, 139, 143, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 137, 142, 146, 255, 142, 147, 151, 255, 145, 150, 154, 255, 140, 144, 149, 255, 138, 143, 146, 255, 145, 150, 154, 255, 141, 146, 150, 255, 131, 136, 139, 255, 122, 127, 130, 255, 110, 115, 118, 255, 103, 108, 111, 255, 107, 112, 115, 255, 117, 122, 125, 255, 126, 131, 134, 255, 134, 139, 142, 255, 138, 143, 146, 255, 136, 141, 144, 255, 129, 134, 137, 255, 123, 128, 131, 255, 102, 106, 109, 255, 105, 109, 112, 255, 109, 113, 116, 255, 114, 118, 121, 255, 123, 127, 130, 255, 132, 137, 141, 255, 135, 140, 144, 255, 137, 142, 145, 255, 138, 143, 147, 255, 138, 142, 146, 255, 136, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 144, 149, 153, 255, 144, 148, 153, 255, 139, 143, 147, 255, 141, 146, 149, 255, 145, 150, 154, 255, 137, 142, 146, 255, 129, 134, 137, 255, 118, 123, 126, 255, 107, 112, 115, 255, 101, 106, 109, 255, 112, 117, 120, 255, 119, 124, 127, 255, 129, 134, 137, 255, 136, 141, 144, 255, 138, 143, 146, 255, 134, 139, 142, 255, 127, 131, 135, 255, 117, 122, 125, 255, 102, 106, 109, 255, 106, 110, 113, 255, 110, 114, 117, 255, 116, 120, 123, 255, 126, 131, 134, 255, 133, 138, 142, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 145, 150, 154, 255, 142, 147, 151, 255, 136, 141, 145, 255, 145, 150, 154, 255, 145, 150, 154, 255, 139, 144, 147, 255, 133, 138, 142, 255, 121, 126, 129, 255, 107, 112, 115, 255, 102, 107, 110, 255, 110, 115, 118, 255, 116, 121, 124, 255, 125, 130, 133, 255, 133, 138, 141, 255, 138, 143, 146, 255, 138, 143, 146, 255, 135, 140, 143, 255, 126, 130, 133, 255, 116, 120, 123, 255, 104, 108, 111, 255, 99, 103, 106, 255, 105, 109, 112, 255, 119, 123, 126, 255, 129, 133, 136, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 137, 142, 146, 255, 140, 145, 149, 255, 137, 142, 146, 255, 146, 151, 155, 255, 143, 148, 152, 255, 137, 142, 145, 255, 129, 134, 137, 255, 116, 121, 124, 255, 105, 110, 113, 255, 105, 110, 113, 255, 111, 116, 119, 255, 119, 124, 127, 255, 128, 133, 136, 255, 135, 140, 143, 255, 138, 143, 146, 255, 137, 142, 146, 255, 133, 138, 141, 255, 122, 126, 129, 255, 112, 116, 119, 255, 101, 105, 108, 255, 99, 103, 106, 255, 110, 114, 117, 255, 123, 127, 130, 255, 132, 137, 140, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 139, 144, 148, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 141, 146, 150, 255, 145, 150, 154, 255, 141, 146, 150, 255, 135, 140, 144, 255, 125, 130, 133, 255, 112, 117, 120, 255, 102, 107, 110, 255, 108, 113, 116, 255, 113, 118, 121, 255, 122, 127, 130, 255, 131, 136, 139, 255, 137, 142, 145, 255, 138, 143, 146, 255, 136, 141, 145, 255, 130, 134, 137, 255, 119, 123, 126, 255, 108, 112, 115, 255, 100, 104, 107, 255, 102, 106, 109, 255, 114, 118, 121, 255, 126, 130, 133, 255, 135, 139, 143, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 144, 149, 153, 255, 148, 154, 158, 255, 145, 150, 154, 255, 143, 149, 153, 255, 138, 144, 148, 255, 134, 142, 145, 255, 129, 136, 139, 255, 135, 142, 145, 255, 154, 161, 164, 255, 149, 156, 159, 255, 166, 174, 177, 255, 154, 160, 164, 255, 143, 148, 152, 255, 139, 144, 148, 255, 141, 145, 149, 255, 134, 137, 141, 255, 125, 127, 131, 255, 108, 111, 114, 255, 88, 92, 95, 255, 87, 91, 94, 255, 110, 114, 117, 255, 130, 134, 137, 255, 138, 142, 145, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 143, 148, 152, 255, 145, 150, 154, 255, 148, 154, 158, 255, 144, 149, 153, 255, 142, 148, 152, 255, 137, 144, 147, 255, 132, 140, 143, 255, 129, 136, 139, 255, 145, 152, 155, 255, 148, 155, 158, 255, 159, 166, 169, 255, 162, 170, 173, 255, 149, 155, 158, 255, 141, 146, 150, 255, 139, 144, 148, 255, 142, 145, 150, 255, 129, 133, 136, 255, 122, 123, 127, 255, 100, 104, 107, 255, 85, 89, 92, 255, 93, 97, 100, 255, 118, 122, 125, 255, 133, 137, 140, 255, 139, 143, 147, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 141, 146, 150, 255, 143, 148, 152, 255, 144, 149, 153, 255, 147, 152, 156, 255, 147, 152, 156, 255, 144, 149, 153, 255, 140, 146, 150, 255, 136, 143, 147, 255, 130, 137, 140, 255, 129, 136, 139, 255, 154, 161, 164, 255, 142, 148, 151, 255, 168, 176, 179, 255, 158, 166, 169, 255, 144, 149, 153, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 142, 146, 255, 127, 130, 133, 255, 115, 117, 121, 255, 94, 98, 101, 255, 86, 90, 93, 255, 102, 106, 109, 255, 124, 128, 131, 255, 136, 140, 143, 255, 140, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 142, 148, 152, 255, 144, 150, 153, 255, 147, 153, 157, 255, 144, 149, 153, 255, 145, 151, 154, 255, 141, 146, 150, 255, 138, 145, 149, 255, 151, 161, 163, 255, 178, 187, 189, 255, 203, 211, 214, 255, 195, 203, 206, 255, 185, 193, 196, 255, 160, 167, 170, 255, 144, 149, 153, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 142, 146, 255, 132, 133, 137, 255, 112, 116, 119, 255, 90, 94, 97, 255, 80, 84, 87, 255, 90, 94, 97, 255, 115, 119, 122, 255, 135, 139, 142, 255, 138, 143, 147, 255, 141, 146, 149, 255, 141, 146, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 145, 150, 154, 255, 147, 153, 157, 255, 144, 149, 153, 255, 144, 149, 153, 255, 140, 145, 149, 255, 142, 150, 153, 255, 159, 169, 171, 255, 189, 198, 200, 255, 199, 207, 210, 255, 195, 203, 206, 255, 177, 185, 188, 255, 153, 159, 163, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 140, 144, 255, 128, 129, 133, 255, 104, 108, 111, 255, 84, 88, 91, 255, 81, 85, 88, 255, 98, 102, 105, 255, 122, 126, 129, 255, 136, 141, 144, 255, 139, 144, 147, 255, 141, 146, 149, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 144, 150, 154, 255, 146, 152, 155, 255, 146, 151, 155, 255, 144, 150, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 145, 154, 157, 255, 167, 176, 179, 255, 200, 209, 211, 255, 196, 204, 207, 255, 194, 202, 205, 255, 167, 175, 178, 255, 147, 152, 156, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 143, 147, 255, 135, 136, 140, 255, 120, 122, 126, 255, 97, 101, 104, 255, 82, 86, 89, 255, 86, 90, 93, 255, 106, 110, 113, 255, 129, 133, 136, 255, 137, 142, 146, 255, 140, 145, 148, 255, 141, 146, 149, 255, 141, 146, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 141, 144, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 139, 144, 148, 255, 143, 149, 152, 255, 136, 142, 145, 255, 146, 151, 155, 255, 149, 155, 158, 255, 147, 154, 157, 255, 141, 147, 151, 255, 138, 144, 148, 255, 142, 149, 152, 255, 170, 180, 182, 255, 210, 218, 221, 255, 200, 208, 211, 255, 181, 189, 192, 255, 159, 166, 170, 255, 146, 151, 155, 255, 141, 146, 150, 255, 139, 144, 148, 255, 141, 143, 147, 255, 135, 136, 140, 255, 119, 122, 125, 255, 100, 104, 107, 255, 79, 83, 86, 255, 73, 77, 80, 255, 97, 101, 104, 255, 133, 137, 140, 255, 133, 138, 141, 255, 139, 144, 147, 255, 140, 145, 148, 255, 140, 146, 148, 255, 139, 146, 148, 255, 138, 144, 148, 255, 137, 142, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 142, 147, 151, 255, 142, 148, 151, 255, 137, 142, 146, 255, 148, 154, 158, 255, 149, 155, 158, 255, 145, 152, 155, 255, 140, 146, 150, 255, 138, 144, 148, 255, 149, 157, 160, 255, 187, 196, 199, 255, 208, 216, 219, 255, 195, 203, 206, 255, 173, 181, 184, 255, 154, 160, 163, 255, 144, 149, 153, 255, 140, 145, 149, 255, 139, 144, 148, 255, 142, 143, 147, 255, 130, 131, 135, 255, 112, 116, 119, 255, 92, 96, 99, 255, 75, 79, 82, 255, 79, 83, 86, 255, 110, 114, 117, 255, 134, 138, 141, 255, 135, 140, 143, 255, 139, 144, 147, 255, 140, 145, 148, 255, 139, 146, 148, 255, 138, 146, 148, 255, 138, 145, 148, 255, 135, 141, 144, 255, 137, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 142, 148, 151, 255, 139, 145, 148, 255, 141, 147, 151, 255, 149, 155, 158, 255, 148, 154, 157, 255, 143, 150, 153, 255, 139, 145, 149, 255, 139, 145, 148, 255, 157, 166, 168, 255, 204, 212, 215, 255, 206, 214, 217, 255, 189, 197, 200, 255, 165, 173, 176, 255, 149, 154, 158, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 143, 147, 255, 138, 139, 143, 255, 124, 126, 130, 255, 106, 110, 113, 255, 86, 90, 93, 255, 74, 78, 81, 255, 88, 92, 95, 255, 122, 126, 129, 255, 133, 138, 141, 255, 137, 142, 146, 255, 140, 145, 148, 255, 140, 145, 148, 255, 139, 146, 148, 255, 139, 144, 148, 255, 136, 143, 145, 255, 130, 138, 140, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 143, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 148, 153, 157, 255, 149, 154, 158, 255, 146, 154, 157, 255, 140, 148, 150, 255, 139, 146, 149, 255, 154, 161, 163, 255, 181, 189, 192, 255, 169, 177, 180, 255, 151, 159, 162, 255, 139, 146, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 139, 141, 145, 255, 135, 136, 140, 255, 128, 131, 134, 255, 117, 121, 124, 255, 91, 95, 98, 255, 67, 71, 74, 255, 84, 88, 91, 255, 122, 126, 129, 255, 135, 140, 143, 255, 137, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 145, 148, 255, 138, 146, 148, 255, 133, 141, 143, 255, 133, 140, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 135, 140, 144, 255, 138, 143, 147, 255, 149, 155, 158, 255, 148, 154, 158, 255, 144, 152, 155, 255, 139, 146, 149, 255, 142, 149, 152, 255, 166, 174, 176, 255, 178, 186, 189, 255, 163, 171, 174, 255, 145, 153, 156, 255, 138, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 140, 141, 145, 255, 132, 133, 137, 255, 124, 128, 131, 255, 110, 114, 117, 255, 81, 85, 88, 255, 70, 74, 77, 255, 97, 101, 104, 255, 127, 131, 134, 255, 135, 140, 143, 255, 138, 143, 146, 255, 139, 144, 147, 255, 137, 142, 146, 255, 138, 145, 148, 255, 137, 145, 147, 255, 131, 139, 141, 255, 136, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 142, 145, 255, 136, 142, 146, 255, 135, 140, 144, 255, 143, 148, 152, 255, 149, 154, 158, 255, 147, 154, 158, 255, 142, 150, 153, 255, 139, 145, 148, 255, 145, 152, 154, 255, 178, 186, 189, 255, 176, 184, 187, 255, 157, 165, 168, 255, 140, 148, 151, 255, 138, 143, 147, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 141, 145, 255, 138, 139, 143, 255, 130, 132, 135, 255, 121, 125, 128, 255, 100, 104, 107, 255, 74, 78, 81, 255, 77, 81, 84, 255, 109, 113, 116, 255, 131, 135, 138, 255, 136, 141, 144, 255, 138, 143, 147, 255, 139, 144, 147, 255, 139, 144, 148, 255, 139, 147, 149, 255, 138, 143, 147, 255, 131, 139, 141, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 148, 155, 158, 255, 138, 144, 148, 255, 136, 142, 145, 255, 145, 151, 154, 255, 148, 154, 158, 255, 147, 153, 157, 255, 144, 154, 156, 255, 143, 152, 155, 255, 151, 159, 162, 255, 162, 170, 173, 255, 142, 150, 153, 255, 119, 127, 130, 255, 109, 116, 119, 255, 115, 120, 124, 255, 123, 128, 132, 255, 124, 129, 133, 255, 133, 135, 139, 255, 137, 138, 142, 255, 137, 140, 144, 255, 134, 138, 141, 255, 110, 114, 117, 255, 77, 81, 84, 255, 74, 78, 81, 255, 96, 100, 103, 255, 131, 136, 139, 255, 134, 139, 142, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 146, 149, 255, 139, 144, 148, 255, 135, 141, 145, 255, 134, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 139, 144, 148, 255, 133, 138, 142, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 143, 146, 255, 150, 159, 161, 255, 135, 140, 144, 255, 139, 144, 148, 255, 147, 153, 156, 255, 148, 153, 157, 255, 146, 153, 156, 255, 143, 153, 155, 255, 145, 154, 156, 255, 157, 166, 169, 255, 156, 164, 167, 255, 134, 142, 145, 255, 114, 122, 125, 255, 110, 116, 120, 255, 118, 123, 127, 255, 124, 129, 133, 255, 124, 129, 133, 255, 138, 139, 143, 255, 136, 137, 141, 255, 137, 141, 144, 255, 129, 133, 136, 255, 98, 102, 105, 255, 73, 77, 80, 255, 80, 84, 87, 255, 108, 112, 115, 255, 132, 137, 140, 255, 135, 140, 143, 255, 137, 142, 145, 255, 139, 145, 148, 255, 141, 149, 151, 255, 139, 145, 149, 255, 133, 140, 142, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 142, 149, 152, 255, 144, 151, 154, 255, 136, 141, 145, 255, 142, 148, 151, 255, 148, 153, 157, 255, 147, 153, 157, 255, 145, 154, 156, 255, 143, 152, 155, 255, 146, 155, 158, 255, 164, 172, 175, 255, 151, 159, 162, 255, 125, 133, 136, 255, 109, 116, 119, 255, 112, 117, 121, 255, 121, 126, 130, 255, 125, 130, 134, 255, 128, 131, 135, 255, 138, 139, 143, 255, 136, 139, 142, 255, 136, 140, 143, 255, 119, 123, 126, 255, 87, 91, 94, 255, 73, 77, 80, 255, 88, 92, 95, 255, 119, 124, 127, 255, 133, 138, 141, 255, 136, 141, 144, 255, 138, 143, 147, 255, 139, 147, 149, 255, 139, 144, 148, 255, 137, 143, 147, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 141, 145, 255, 142, 148, 152, 255, 137, 143, 147, 255, 146, 153, 157, 255, 147, 153, 157, 255, 144, 152, 155, 255, 146, 156, 158, 255, 153, 162, 164, 255, 157, 165, 168, 255, 136, 144, 147, 255, 109, 117, 120, 255, 95, 102, 105, 255, 96, 101, 105, 255, 103, 108, 112, 255, 105, 110, 114, 255, 120, 123, 127, 255, 132, 133, 137, 255, 138, 141, 145, 255, 141, 145, 148, 255, 127, 131, 134, 255, 98, 102, 105, 255, 76, 80, 83, 255, 72, 76, 79, 255, 113, 118, 121, 255, 125, 130, 133, 255, 135, 140, 143, 255, 138, 144, 147, 255, 138, 146, 148, 255, 137, 143, 147, 255, 137, 143, 147, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 136, 141, 145, 255, 142, 148, 152, 255, 139, 145, 149, 255, 147, 153, 157, 255, 146, 152, 156, 255, 144, 153, 156, 255, 148, 158, 160, 255, 156, 165, 168, 255, 151, 159, 162, 255, 127, 135, 138, 255, 103, 111, 114, 255, 94, 100, 103, 255, 99, 104, 108, 255, 104, 109, 113, 255, 105, 110, 114, 255, 129, 130, 134, 255, 134, 135, 139, 255, 140, 144, 147, 255, 139, 143, 146, 255, 118, 122, 125, 255, 89, 93, 96, 255, 74, 78, 81, 255, 85, 90, 93, 255, 117, 122, 125, 255, 129, 134, 137, 255, 136, 141, 144, 255, 139, 145, 148, 255, 139, 147, 149, 255, 138, 144, 147, 255, 137, 143, 147, 255, 137, 143, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 145, 148, 255, 140, 146, 149, 255, 143, 149, 153, 255, 147, 153, 157, 255, 145, 152, 155, 255, 145, 155, 157, 255, 150, 160, 162, 255, 160, 168, 171, 255, 145, 153, 156, 255, 117, 125, 128, 255, 96, 104, 107, 255, 94, 99, 103, 255, 101, 106, 110, 255, 105, 110, 114, 255, 112, 116, 120, 255, 131, 132, 136, 255, 136, 138, 142, 255, 141, 145, 148, 255, 133, 137, 140, 255, 108, 112, 115, 255, 83, 87, 90, 255, 72, 76, 79, 255, 99, 104, 107, 255, 121, 126, 129, 255, 132, 137, 140, 255, 138, 143, 146, 255, 139, 146, 148, 255, 137, 143, 147, 255, 134, 142, 144, 255, 136, 143, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 144, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 148, 151, 255, 139, 145, 149, 255, 139, 144, 148, 255, 143, 150, 154, 255, 144, 151, 155, 255, 146, 152, 155, 255, 145, 153, 156, 255, 146, 156, 158, 255, 151, 160, 162, 255, 150, 158, 161, 255, 140, 148, 151, 255, 123, 131, 134, 255, 106, 113, 116, 255, 98, 103, 107, 255, 96, 101, 105, 255, 95, 100, 104, 255, 105, 108, 112, 255, 117, 118, 122, 255, 126, 129, 132, 255, 135, 139, 142, 255, 137, 141, 144, 255, 124, 128, 131, 255, 93, 97, 100, 255, 65, 69, 72, 255, 88, 93, 96, 255, 113, 118, 121, 255, 136, 141, 144, 255, 140, 146, 149, 255, 134, 142, 144, 255, 132, 140, 142, 255, 134, 142, 144, 255, 136, 142, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 141, 147, 151, 255, 140, 145, 149, 255, 143, 148, 152, 255, 138, 144, 148, 255, 140, 145, 149, 255, 144, 151, 155, 255, 145, 151, 155, 255, 146, 152, 156, 255, 146, 154, 157, 255, 148, 158, 160, 255, 151, 160, 162, 255, 147, 155, 158, 255, 135, 143, 146, 255, 117, 125, 128, 255, 103, 108, 112, 255, 97, 102, 106, 255, 96, 101, 105, 255, 95, 100, 104, 255, 111, 112, 116, 255, 119, 121, 125, 255, 129, 133, 136, 255, 137, 141, 144, 255, 134, 138, 141, 255, 114, 118, 121, 255, 83, 87, 90, 255, 72, 76, 79, 255, 96, 101, 104, 255, 121, 126, 129, 255, 138, 143, 146, 255, 138, 145, 147, 255, 133, 141, 143, 255, 133, 141, 143, 255, 135, 142, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 147, 150, 255, 138, 144, 148, 255, 142, 148, 152, 255, 144, 151, 155, 255, 145, 152, 155, 255, 146, 152, 156, 255, 146, 155, 157, 255, 150, 160, 162, 255, 151, 160, 162, 255, 145, 153, 156, 255, 130, 138, 141, 255, 110, 118, 121, 255, 99, 104, 108, 255, 96, 101, 105, 255, 96, 101, 105, 255, 100, 103, 107, 255, 114, 115, 119, 255, 123, 125, 128, 255, 132, 136, 139, 255, 137, 141, 144, 255, 129, 133, 136, 255, 104, 108, 111, 255, 74, 78, 81, 255, 79, 84, 87, 255, 104, 109, 112, 255, 129, 134, 137, 255, 140, 145, 148, 255, 136, 144, 146, 255, 132, 140, 142, 255, 130, 138, 140, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 141, 146, 150, 255, 140, 145, 149, 255, 136, 141, 145, 255, 142, 149, 152, 255, 143, 149, 153, 255, 138, 143, 147, 255, 145, 153, 156, 255, 148, 156, 160, 255, 151, 158, 161, 255, 147, 155, 158, 255, 146, 156, 158, 255, 147, 157, 159, 255, 143, 151, 154, 255, 144, 152, 155, 255, 137, 145, 148, 255, 125, 132, 135, 255, 114, 119, 123, 255, 107, 112, 116, 255, 102, 107, 111, 255, 99, 101, 105, 255, 102, 103, 107, 255, 109, 112, 115, 255, 121, 125, 128, 255, 138, 142, 145, 255, 140, 144, 147, 255, 113, 117, 120, 255, 79, 83, 86, 255, 70, 75, 78, 255, 99, 104, 107, 255, 131, 136, 139, 255, 143, 149, 152, 255, 136, 144, 146, 255, 129, 137, 139, 255, 133, 140, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 147, 150, 255, 140, 145, 149, 255, 135, 140, 144, 255, 145, 152, 155, 255, 141, 147, 151, 255, 139, 145, 149, 255, 146, 154, 158, 255, 149, 157, 160, 255, 150, 157, 160, 255, 147, 155, 158, 255, 147, 157, 159, 255, 145, 154, 157, 255, 144, 152, 155, 255, 142, 150, 153, 255, 133, 141, 144, 255, 121, 127, 131, 255, 112, 117, 121, 255, 105, 110, 114, 255, 101, 106, 110, 255, 98, 99, 103, 255, 104, 105, 109, 255, 112, 116, 119, 255, 127, 131, 134, 255, 140, 144, 147, 255, 132, 136, 139, 255, 101, 105, 108, 255, 75, 79, 82, 255, 79, 84, 87, 255, 110, 115, 118, 255, 137, 142, 145, 255, 141, 148, 150, 255, 132, 140, 142, 255, 129, 137, 139, 255, 136, 142, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 145, 148, 255, 144, 151, 154, 255, 140, 145, 149, 255, 142, 149, 152, 255, 147, 155, 159, 255, 150, 158, 161, 255, 148, 156, 159, 255, 146, 155, 158, 255, 148, 158, 160, 255, 144, 152, 155, 255, 144, 152, 155, 255, 141, 149, 152, 255, 128, 136, 139, 255, 117, 122, 126, 255, 109, 114, 118, 255, 103, 108, 112, 255, 100, 104, 108, 255, 100, 101, 105, 255, 106, 108, 112, 255, 116, 120, 123, 255, 132, 136, 139, 255, 140, 144, 147, 255, 123, 127, 130, 255, 90, 94, 97, 255, 71, 76, 79, 255, 88, 93, 96, 255, 121, 126, 129, 255, 142, 147, 150, 255, 139, 147, 149, 255, 129, 137, 139, 255, 132, 139, 141, 255, 138, 144, 148, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 143, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 144, 151, 154, 255, 140, 145, 149, 255, 140, 146, 150, 255, 142, 149, 152, 255, 150, 157, 161, 255, 154, 163, 165, 255, 144, 152, 155, 255, 145, 154, 157, 255, 147, 157, 159, 255, 147, 155, 158, 255, 143, 151, 154, 255, 139, 147, 150, 255, 136, 143, 146, 255, 132, 137, 141, 255, 127, 132, 136, 255, 121, 126, 130, 255, 111, 114, 118, 255, 103, 104, 108, 255, 99, 102, 105, 255, 104, 108, 111, 255, 120, 124, 127, 255, 132, 136, 139, 255, 125, 129, 132, 255, 109, 113, 116, 255, 73, 78, 81, 255, 87, 92, 95, 255, 118, 123, 126, 255, 143, 149, 152, 255, 141, 149, 151, 255, 131, 139, 141, 255, 134, 141, 144, 255, 137, 143, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 143, 146, 255, 138, 144, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 146, 153, 155, 255, 138, 143, 147, 255, 141, 147, 151, 255, 144, 151, 155, 255, 152, 160, 163, 255, 151, 159, 162, 255, 144, 153, 156, 255, 146, 156, 158, 255, 147, 156, 159, 255, 146, 154, 157, 255, 142, 150, 153, 255, 138, 146, 149, 255, 135, 141, 145, 255, 131, 136, 140, 255, 124, 129, 133, 255, 120, 125, 129, 255, 107, 108, 112, 255, 102, 103, 107, 255, 98, 102, 105, 255, 108, 112, 115, 255, 126, 130, 133, 255, 131, 135, 138, 255, 120, 124, 127, 255, 96, 101, 104, 255, 77, 82, 85, 255, 97, 102, 105, 255, 128, 133, 136, 255, 144, 151, 153, 255, 136, 144, 146, 255, 131, 139, 141, 255, 137, 143, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 143, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 148, 151, 255, 143, 149, 152, 255, 139, 145, 149, 255, 141, 148, 152, 255, 147, 154, 158, 255, 153, 161, 164, 255, 147, 155, 158, 255, 144, 153, 156, 255, 147, 157, 159, 255, 147, 156, 158, 255, 145, 153, 156, 255, 141, 149, 152, 255, 137, 144, 147, 255, 134, 139, 143, 255, 129, 134, 138, 255, 123, 128, 132, 255, 116, 120, 124, 255, 104, 105, 109, 255, 100, 102, 106, 255, 101, 105, 108, 255, 114, 118, 121, 255, 129, 133, 136, 255, 128, 132, 135, 255, 115, 119, 122, 255, 84, 89, 92, 255, 81, 86, 89, 255, 106, 111, 114, 255, 138, 143, 146, 255, 145, 152, 154, 255, 132, 140, 142, 255, 137, 143, 146, 255, 138, 145, 148, 255, 136, 141, 145, 255, 137, 143, 146, 255, 136, 142, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 147, 150, 255, 145, 150, 154, 255, 143, 149, 152, 255, 142, 149, 152, 255, 148, 155, 158, 255, 150, 160, 162, 255, 140, 149, 151, 255, 143, 153, 155, 255, 150, 160, 162, 255, 146, 154, 157, 255, 144, 152, 155, 255, 140, 148, 151, 255, 138, 145, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 143, 255, 129, 132, 136, 255, 121, 122, 126, 255, 108, 111, 115, 255, 97, 101, 104, 255, 99, 103, 106, 255, 110, 114, 117, 255, 121, 125, 128, 255, 124, 128, 131, 255, 91, 96, 99, 255, 91, 96, 99, 255, 109, 114, 117, 255, 134, 139, 142, 255, 138, 146, 148, 255, 134, 142, 144, 255, 137, 144, 147, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 143, 146, 255, 136, 142, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 141, 147, 150, 255, 145, 150, 154, 255, 143, 149, 152, 255, 144, 151, 154, 255, 149, 157, 160, 255, 147, 156, 158, 255, 141, 150, 152, 255, 146, 156, 158, 255, 149, 158, 160, 255, 146, 154, 157, 255, 143, 151, 154, 255, 139, 147, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 126, 128, 132, 255, 118, 119, 123, 255, 103, 107, 110, 255, 96, 100, 103, 255, 102, 106, 109, 255, 114, 118, 121, 255, 123, 127, 130, 255, 113, 117, 120, 255, 91, 96, 99, 255, 96, 101, 104, 255, 118, 123, 126, 255, 136, 143, 146, 255, 136, 144, 146, 255, 136, 142, 145, 255, 138, 144, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 143, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 147, 150, 255, 143, 148, 152, 255, 144, 150, 153, 255, 143, 149, 152, 255, 146, 153, 156, 255, 150, 158, 161, 255, 143, 152, 154, 255, 142, 151, 153, 255, 149, 159, 161, 255, 148, 156, 159, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 146, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 136, 140, 255, 124, 125, 129, 255, 113, 115, 119, 255, 100, 104, 107, 255, 97, 101, 104, 255, 106, 110, 113, 255, 118, 122, 125, 255, 124, 128, 131, 255, 102, 107, 110, 255, 90, 95, 98, 255, 101, 106, 109, 255, 127, 132, 135, 255, 139, 147, 149, 255, 134, 142, 144, 255, 136, 144, 146, 255, 140, 146, 149, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 147, 154, 157, 255, 143, 151, 154, 255, 139, 147, 150, 255, 141, 149, 152, 255, 147, 156, 158, 255, 148, 157, 160, 255, 140, 150, 152, 255, 140, 149, 152, 255, 146, 155, 158, 255, 145, 153, 156, 255, 144, 152, 155, 255, 141, 149, 152, 255, 137, 144, 147, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 143, 147, 255, 140, 141, 145, 255, 131, 134, 137, 255, 114, 118, 121, 255, 100, 104, 107, 255, 99, 103, 106, 255, 106, 110, 113, 255, 112, 116, 119, 255, 101, 106, 109, 255, 97, 102, 105, 255, 109, 114, 117, 255, 130, 136, 139, 255, 138, 146, 148, 255, 137, 145, 147, 255, 138, 145, 147, 255, 138, 144, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 149, 155, 159, 255, 141, 149, 152, 255, 139, 147, 150, 255, 143, 151, 154, 255, 148, 157, 159, 255, 146, 155, 157, 255, 140, 149, 151, 255, 142, 152, 154, 255, 146, 155, 157, 255, 145, 153, 156, 255, 143, 151, 154, 255, 139, 147, 150, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 141, 142, 146, 255, 139, 140, 144, 255, 125, 129, 132, 255, 108, 112, 115, 255, 99, 103, 106, 255, 101, 105, 108, 255, 109, 113, 116, 255, 108, 113, 116, 255, 99, 104, 107, 255, 100, 105, 108, 255, 116, 121, 124, 255, 134, 140, 143, 255, 138, 146, 148, 255, 136, 144, 146, 255, 139, 146, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 145, 151, 154, 255, 146, 153, 156, 255, 140, 148, 151, 255, 140, 148, 151, 255, 145, 153, 156, 255, 148, 157, 160, 255, 143, 152, 154, 255, 139, 148, 151, 255, 145, 154, 157, 255, 146, 154, 157, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 146, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 143, 147, 255, 141, 142, 146, 255, 135, 137, 141, 255, 120, 124, 127, 255, 104, 108, 111, 255, 99, 103, 106, 255, 104, 108, 111, 255, 110, 114, 117, 255, 105, 109, 112, 255, 98, 103, 106, 255, 103, 108, 111, 255, 124, 129, 132, 255, 137, 145, 147, 255, 137, 145, 147, 255, 137, 145, 147, 255, 140, 147, 149, 255, 134, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 134, 139, 143, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 146, 149, 255, 143, 149, 152, 255, 139, 147, 149, 255, 111, 121, 123, 255, 101, 112, 114, 255, 112, 122, 125, 255, 134, 143, 146, 255, 147, 156, 158, 255, 146, 156, 158, 255, 143, 152, 155, 255, 145, 154, 157, 255, 145, 153, 156, 255, 145, 153, 156, 255, 143, 151, 154, 255, 139, 146, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 142, 146, 255, 144, 145, 149, 255, 144, 147, 150, 255, 136, 140, 143, 255, 123, 127, 130, 255, 113, 117, 120, 255, 104, 108, 111, 255, 98, 102, 105, 255, 103, 108, 111, 255, 105, 110, 113, 255, 118, 123, 126, 255, 135, 141, 144, 255, 140, 148, 150, 255, 137, 145, 147, 255, 138, 146, 148, 255, 137, 144, 147, 255, 135, 140, 144, 255, 139, 144, 148, 255, 137, 142, 146, 255, 134, 139, 143, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 147, 150, 255, 143, 150, 153, 255, 133, 142, 144, 255, 103, 113, 115, 255, 103, 114, 116, 255, 120, 129, 132, 255, 139, 148, 151, 255, 147, 156, 159, 255, 145, 154, 157, 255, 144, 153, 155, 255, 145, 153, 156, 255, 145, 153, 156, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 140, 142, 146, 255, 145, 146, 150, 255, 143, 147, 150, 255, 131, 135, 138, 255, 119, 123, 126, 255, 109, 113, 116, 255, 102, 106, 109, 255, 99, 104, 107, 255, 103, 108, 111, 255, 109, 114, 117, 255, 125, 130, 133, 255, 138, 144, 147, 255, 139, 147, 149, 255, 137, 145, 147, 255, 139, 147, 149, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 135, 140, 144, 255, 133, 138, 142, 255, 133, 138, 142, 255, 132, 137, 141, 255, 134, 139, 143, 255, 138, 144, 147, 255, 140, 145, 149, 255, 142, 148, 151, 255, 141, 148, 151, 255, 122, 132, 133, 255, 102, 113, 115, 255, 108, 118, 120, 255, 127, 136, 139, 255, 143, 152, 155, 255, 147, 156, 159, 255, 144, 153, 155, 255, 144, 154, 156, 255, 145, 153, 156, 255, 146, 153, 156, 255, 144, 152, 155, 255, 140, 148, 151, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 143, 147, 255, 142, 143, 147, 255, 145, 147, 150, 255, 139, 143, 146, 255, 127, 131, 134, 255, 116, 120, 123, 255, 107, 111, 114, 255, 100, 104, 107, 255, 101, 106, 109, 255, 103, 108, 111, 255, 113, 118, 121, 255, 131, 136, 139, 255, 140, 148, 150, 255, 138, 146, 148, 255, 134, 142, 144, 255, 137, 145, 147, 255, 131, 136, 140, 255, 138, 143, 147, 255, 139, 144, 148, 255, 134, 139, 143, 255, 130, 135, 139, 255, 131, 136, 140, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 145, 148, 255, 141, 148, 151, 255, 128, 135, 138, 255, 101, 110, 112, 255, 90, 100, 101, 255, 79, 90, 92, 255, 84, 94, 96, 255, 113, 123, 125, 255, 142, 152, 154, 255, 149, 159, 161, 255, 146, 156, 158, 255, 145, 154, 156, 255, 143, 150, 154, 255, 144, 151, 155, 255, 143, 151, 154, 255, 140, 147, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 141, 145, 255, 141, 142, 146, 255, 142, 145, 148, 255, 141, 145, 148, 255, 139, 143, 146, 255, 133, 137, 140, 255, 121, 125, 128, 255, 109, 113, 116, 255, 110, 115, 118, 255, 118, 123, 126, 255, 130, 135, 138, 255, 139, 145, 148, 255, 137, 145, 147, 255, 134, 142, 144, 255, 135, 143, 145, 255, 134, 141, 144, 255, 134, 139, 143, 255, 139, 144, 148, 255, 138, 143, 147, 255, 132, 137, 141, 255, 130, 135, 139, 255, 131, 136, 140, 255, 134, 139, 143, 255, 136, 141, 145, 255, 141, 146, 150, 255, 141, 148, 151, 255, 120, 128, 130, 255, 93, 103, 104, 255, 87, 97, 99, 255, 79, 90, 92, 255, 93, 103, 105, 255, 124, 134, 136, 255, 145, 155, 157, 255, 148, 158, 160, 255, 146, 156, 158, 255, 144, 153, 155, 255, 143, 151, 154, 255, 144, 151, 155, 255, 142, 150, 153, 255, 139, 145, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 140, 144, 255, 142, 143, 147, 255, 142, 146, 149, 255, 141, 145, 148, 255, 138, 142, 145, 255, 129, 133, 136, 255, 117, 121, 124, 255, 109, 113, 116, 255, 112, 117, 120, 255, 122, 127, 130, 255, 134, 139, 142, 255, 139, 145, 148, 255, 136, 144, 146, 255, 134, 142, 144, 255, 136, 144, 146, 255, 132, 138, 141, 255, 136, 141, 145, 255, 140, 145, 149, 255, 136, 141, 145, 255, 130, 135, 139, 255, 130, 135, 139, 255, 132, 137, 141, 255, 135, 140, 144, 255, 137, 143, 146, 255, 141, 147, 150, 255, 135, 142, 144, 255, 110, 119, 121, 255, 91, 101, 103, 255, 83, 93, 95, 255, 81, 92, 94, 255, 103, 113, 115, 255, 133, 143, 145, 255, 147, 157, 159, 255, 147, 157, 159, 255, 145, 155, 157, 255, 143, 151, 154, 255, 144, 151, 154, 255, 144, 152, 155, 255, 141, 148, 152, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 142, 146, 255, 140, 141, 145, 255, 142, 144, 148, 255, 142, 146, 149, 255, 140, 144, 147, 255, 135, 139, 142, 255, 125, 129, 132, 255, 113, 117, 120, 255, 109, 114, 117, 255, 115, 120, 123, 255, 126, 131, 134, 255, 138, 143, 146, 255, 138, 146, 148, 255, 135, 143, 145, 255, 133, 141, 143, 255, 133, 140, 143, 255, 131, 136, 140, 255, 136, 141, 145, 255, 137, 142, 146, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 132, 137, 141, 255, 128, 134, 138, 255, 119, 127, 129, 255, 105, 113, 115, 255, 93, 103, 104, 255, 114, 124, 126, 255, 99, 110, 112, 255, 86, 97, 99, 255, 107, 117, 119, 255, 139, 149, 151, 255, 149, 159, 161, 255, 144, 154, 156, 255, 140, 149, 152, 255, 140, 148, 151, 255, 139, 147, 150, 255, 138, 146, 149, 255, 136, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 142, 146, 255, 142, 143, 147, 255, 139, 142, 145, 255, 137, 141, 144, 255, 140, 144, 147, 255, 143, 147, 150, 255, 137, 141, 144, 255, 128, 132, 135, 255, 124, 129, 132, 255, 130, 135, 138, 255, 136, 141, 144, 255, 138, 144, 147, 255, 135, 143, 145, 255, 133, 141, 143, 255, 133, 141, 143, 255, 132, 139, 141, 255, 133, 138, 142, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 131, 136, 140, 255, 127, 134, 136, 255, 115, 123, 125, 255, 100, 108, 110, 255, 94, 104, 105, 255, 117, 127, 129, 255, 93, 104, 106, 255, 91, 101, 103, 255, 118, 128, 130, 255, 143, 153, 155, 255, 147, 157, 159, 255, 142, 152, 154, 255, 140, 149, 151, 255, 140, 148, 151, 255, 139, 147, 150, 255, 137, 145, 148, 255, 136, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 142, 143, 147, 255, 142, 143, 147, 255, 137, 141, 144, 255, 138, 142, 145, 255, 141, 145, 148, 255, 141, 145, 148, 255, 134, 138, 141, 255, 126, 130, 133, 255, 126, 131, 134, 255, 132, 137, 140, 255, 137, 142, 145, 255, 137, 144, 146, 255, 134, 142, 144, 255, 133, 141, 143, 255, 133, 141, 143, 255, 131, 137, 140, 255, 134, 139, 143, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 133, 138, 142, 255, 133, 138, 142, 255, 132, 137, 141, 255, 130, 135, 139, 255, 123, 130, 133, 255, 110, 118, 120, 255, 96, 105, 107, 255, 104, 114, 116, 255, 108, 119, 121, 255, 90, 100, 102, 255, 99, 109, 111, 255, 128, 138, 140, 255, 146, 156, 158, 255, 146, 156, 158, 255, 141, 151, 153, 255, 140, 148, 151, 255, 140, 148, 151, 255, 138, 146, 149, 255, 136, 144, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 141, 145, 255, 142, 143, 147, 255, 140, 142, 146, 255, 137, 141, 144, 255, 139, 143, 146, 255, 142, 146, 149, 255, 139, 143, 146, 255, 131, 135, 138, 255, 125, 130, 133, 255, 128, 133, 136, 255, 134, 139, 142, 255, 139, 144, 147, 255, 136, 144, 146, 255, 133, 141, 143, 255, 133, 141, 143, 255, 128, 136, 138, 255, 132, 137, 141, 255, 133, 138, 142, 255, 132, 137, 141, 255, 132, 137, 141, 255, 135, 140, 144, 255, 133, 138, 142, 255, 126, 131, 135, 255, 109, 114, 118, 255, 98, 104, 106, 255, 99, 107, 109, 255, 116, 123, 125, 255, 127, 135, 137, 255, 130, 139, 141, 255, 105, 115, 117, 255, 85, 95, 97, 255, 105, 115, 117, 255, 140, 149, 151, 255, 152, 162, 164, 255, 145, 154, 157, 255, 140, 149, 151, 255, 142, 150, 153, 255, 139, 147, 150, 255, 134, 142, 145, 255, 134, 141, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 139, 142, 145, 255, 139, 143, 146, 255, 138, 142, 145, 255, 141, 145, 148, 255, 143, 147, 150, 255, 140, 144, 147, 255, 133, 137, 140, 255, 134, 139, 142, 255, 135, 140, 143, 255, 135, 140, 143, 255, 137, 142, 145, 255, 138, 146, 148, 255, 137, 145, 147, 255, 131, 139, 141, 255, 130, 136, 139, 255, 132, 137, 141, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 135, 140, 144, 255, 131, 136, 140, 255, 123, 128, 132, 255, 101, 106, 110, 255, 98, 104, 106, 255, 100, 108, 110, 255, 124, 131, 133, 255, 129, 137, 139, 255, 126, 135, 137, 255, 96, 106, 108, 255, 89, 99, 101, 255, 117, 127, 129, 255, 145, 154, 156, 255, 150, 159, 162, 255, 143, 152, 154, 255, 141, 150, 152, 255, 141, 149, 152, 255, 137, 145, 148, 255, 134, 142, 145, 255, 134, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 140, 144, 255, 140, 143, 146, 255, 139, 143, 146, 255, 139, 143, 146, 255, 142, 146, 149, 255, 143, 147, 150, 255, 138, 142, 145, 255, 134, 138, 141, 255, 135, 140, 143, 255, 135, 140, 143, 255, 135, 140, 143, 255, 137, 144, 146, 255, 138, 146, 148, 255, 135, 143, 145, 255, 129, 137, 139, 255, 131, 137, 140, 255, 133, 138, 142, 255, 133, 138, 142, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 129, 134, 138, 255, 117, 122, 126, 255, 98, 103, 106, 255, 99, 106, 108, 255, 108, 116, 118, 255, 126, 133, 135, 255, 130, 138, 140, 255, 115, 125, 127, 255, 90, 101, 103, 255, 97, 107, 109, 255, 128, 138, 140, 255, 149, 159, 161, 255, 148, 157, 159, 255, 140, 150, 152, 255, 143, 151, 154, 255, 140, 148, 151, 255, 135, 143, 146, 255, 133, 141, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 139, 141, 145, 255, 140, 143, 146, 255, 139, 143, 146, 255, 140, 144, 147, 255, 143, 147, 150, 255, 141, 145, 148, 255, 136, 140, 143, 255, 134, 139, 142, 255, 135, 140, 143, 255, 134, 139, 142, 255, 136, 141, 144, 255, 138, 145, 147, 255, 139, 147, 149, 255, 133, 140, 143, 255, 130, 136, 139, 255, 130, 134, 137, 255, 133, 137, 141, 255, 137, 141, 145, 255, 136, 140, 144, 255, 126, 131, 134, 255, 110, 114, 118, 255, 93, 98, 101, 255, 92, 97, 98, 255, 106, 111, 113, 255, 123, 128, 130, 255, 142, 146, 148, 255, 138, 144, 146, 255, 114, 121, 124, 255, 91, 100, 102, 255, 86, 96, 98, 255, 114, 123, 125, 255, 146, 153, 156, 255, 151, 160, 163, 255, 146, 153, 156, 255, 145, 151, 154, 255, 146, 152, 156, 255, 141, 148, 151, 255, 137, 143, 147, 255, 136, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 148, 255, 141, 146, 149, 255, 141, 146, 150, 255, 142, 147, 150, 255, 140, 144, 148, 255, 137, 141, 145, 255, 137, 142, 146, 255, 135, 140, 143, 255, 134, 139, 142, 255, 137, 142, 145, 255, 138, 145, 148, 255, 137, 143, 146, 255, 132, 138, 142, 255, 130, 135, 138, 255, 131, 135, 138, 255, 134, 138, 142, 255, 137, 142, 145, 255, 134, 138, 141, 255, 122, 126, 129, 255, 104, 108, 112, 255, 89, 94, 96, 255, 96, 100, 102, 255, 112, 116, 118, 255, 129, 134, 136, 255, 147, 151, 153, 255, 132, 138, 140, 255, 105, 113, 115, 255, 87, 96, 98, 255, 94, 103, 105, 255, 125, 134, 136, 255, 148, 155, 159, 255, 149, 157, 161, 255, 146, 152, 155, 255, 146, 152, 155, 255, 145, 151, 155, 255, 140, 146, 149, 255, 136, 143, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 139, 143, 255, 139, 143, 147, 255, 141, 146, 149, 255, 141, 146, 150, 255, 142, 146, 150, 255, 141, 146, 150, 255, 139, 143, 146, 255, 137, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 135, 140, 143, 255, 138, 143, 146, 255, 138, 145, 147, 255, 135, 141, 145, 255, 131, 137, 140, 255, 129, 134, 137, 255, 131, 136, 139, 255, 136, 140, 144, 255, 137, 142, 146, 255, 131, 136, 139, 255, 116, 120, 123, 255, 98, 102, 106, 255, 88, 93, 95, 255, 101, 105, 107, 255, 118, 123, 124, 255, 136, 141, 142, 255, 143, 147, 149, 255, 123, 129, 132, 255, 98, 106, 109, 255, 87, 96, 98, 255, 104, 113, 115, 255, 135, 143, 146, 255, 150, 158, 161, 255, 148, 155, 158, 255, 145, 151, 154, 255, 146, 153, 157, 255, 143, 150, 153, 255, 138, 144, 147, 255, 136, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 144, 148, 255, 141, 146, 149, 255, 141, 146, 150, 255, 142, 147, 150, 255, 141, 145, 149, 255, 138, 142, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 142, 255, 136, 141, 144, 255, 138, 145, 147, 255, 138, 145, 147, 255, 131, 136, 140, 255, 131, 136, 140, 255, 138, 142, 145, 255, 131, 135, 138, 255, 125, 129, 132, 255, 115, 119, 122, 255, 97, 101, 104, 255, 80, 84, 87, 255, 84, 88, 90, 255, 99, 103, 104, 255, 120, 124, 126, 255, 138, 142, 144, 255, 136, 141, 142, 255, 120, 124, 125, 255, 93, 98, 101, 255, 86, 93, 96, 255, 102, 109, 112, 255, 131, 137, 141, 255, 150, 156, 160, 255, 148, 154, 158, 255, 144, 149, 153, 255, 146, 151, 155, 255, 146, 151, 155, 255, 143, 148, 152, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 144, 255, 137, 142, 146, 255, 136, 142, 145, 255, 133, 138, 142, 255, 131, 136, 140, 255, 134, 139, 142, 255, 136, 140, 143, 255, 129, 133, 136, 255, 123, 127, 130, 255, 110, 114, 117, 255, 91, 95, 98, 255, 76, 80, 83, 255, 92, 96, 97, 255, 100, 104, 105, 255, 132, 136, 137, 255, 140, 144, 146, 255, 134, 138, 140, 255, 111, 115, 117, 255, 87, 92, 96, 255, 90, 97, 100, 255, 112, 118, 122, 255, 139, 145, 148, 255, 150, 155, 159, 255, 146, 152, 156, 255, 145, 150, 154, 255, 146, 151, 155, 255, 145, 150, 154, 255, 141, 147, 150, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 135, 140, 144, 255, 139, 144, 148, 255, 135, 140, 144, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 137, 141, 144, 255, 133, 137, 141, 255, 127, 131, 135, 255, 121, 125, 128, 255, 104, 108, 111, 255, 84, 88, 91, 255, 76, 80, 82, 255, 97, 102, 103, 255, 109, 113, 114, 255, 137, 141, 142, 255, 138, 142, 144, 255, 127, 131, 132, 255, 102, 107, 109, 255, 86, 93, 96, 255, 96, 103, 106, 255, 121, 128, 131, 255, 145, 150, 154, 255, 149, 155, 159, 255, 145, 150, 154, 255, 145, 150, 154, 255, 146, 152, 156, 255, 144, 149, 153, 255, 140, 145, 149, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 146, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 134, 139, 143, 255, 131, 136, 140, 255, 134, 139, 143, 255, 146, 150, 153, 255, 119, 123, 126, 255, 93, 97, 100, 255, 79, 83, 86, 255, 73, 77, 80, 255, 75, 79, 81, 255, 89, 93, 94, 255, 116, 120, 121, 255, 132, 136, 137, 255, 131, 135, 137, 255, 123, 127, 129, 255, 101, 105, 107, 255, 78, 82, 86, 255, 93, 98, 102, 255, 125, 130, 134, 255, 146, 151, 155, 255, 150, 155, 159, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 145, 150, 154, 255, 143, 148, 152, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 131, 136, 140, 255, 131, 136, 140, 255, 140, 144, 148, 255, 137, 141, 144, 255, 110, 114, 117, 255, 88, 92, 95, 255, 77, 81, 84, 255, 72, 76, 79, 255, 77, 81, 83, 255, 96, 100, 101, 255, 125, 129, 130, 255, 133, 137, 138, 255, 130, 134, 136, 255, 118, 122, 124, 255, 92, 96, 98, 255, 77, 82, 86, 255, 104, 109, 113, 255, 134, 139, 143, 255, 148, 153, 157, 255, 148, 153, 157, 255, 144, 149, 153, 255, 144, 149, 153, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 141, 146, 150, 255, 135, 140, 144, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 141, 146, 150, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 131, 136, 140, 255, 132, 137, 141, 255, 145, 150, 153, 255, 129, 133, 136, 255, 100, 104, 107, 255, 83, 87, 90, 255, 74, 78, 81, 255, 72, 76, 79, 255, 82, 86, 87, 255, 106, 110, 111, 255, 131, 135, 136, 255, 132, 136, 137, 255, 126, 130, 132, 255, 109, 113, 115, 255, 85, 89, 92, 255, 85, 90, 94, 255, 115, 120, 124, 255, 140, 145, 149, 255, 149, 154, 158, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 145, 150, 154, 255, 144, 149, 153, 255, 141, 146, 150, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 132, 137, 141, 255, 139, 144, 148, 255, 147, 152, 156, 255, 136, 140, 143, 255, 103, 107, 110, 255, 75, 79, 82, 255, 72, 76, 79, 255, 83, 87, 90, 255, 100, 104, 107, 255, 117, 121, 122, 255, 126, 130, 131, 255, 127, 131, 132, 255, 118, 122, 123, 255, 102, 106, 108, 255, 87, 91, 92, 255, 78, 83, 86, 255, 107, 112, 116, 255, 144, 149, 153, 255, 154, 159, 163, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 141, 146, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 134, 139, 143, 255, 142, 147, 151, 255, 145, 149, 153, 255, 126, 130, 133, 255, 92, 96, 99, 255, 72, 76, 79, 255, 75, 79, 82, 255, 89, 93, 96, 255, 106, 110, 112, 255, 121, 125, 126, 255, 127, 131, 132, 255, 126, 130, 131, 255, 113, 117, 118, 255, 96, 100, 102, 255, 82, 86, 88, 255, 82, 87, 91, 255, 121, 126, 130, 255, 150, 155, 159, 255, 152, 157, 161, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 132, 137, 141, 255, 136, 141, 145, 255, 145, 150, 154, 255, 143, 147, 150, 255, 115, 119, 122, 255, 82, 86, 89, 255, 70, 74, 77, 255, 78, 82, 85, 255, 95, 99, 101, 255, 112, 116, 117, 255, 125, 129, 130, 255, 127, 131, 132, 255, 122, 126, 127, 255, 107, 111, 113, 255, 91, 95, 97, 255, 80, 84, 87, 255, 95, 100, 104, 255, 133, 138, 142, 255, 152, 157, 161, 255, 149, 154, 158, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 139, 144, 148, 255, 135, 140, 144, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 132, 137, 141, 255, 155, 160, 164, 255, 174, 178, 182, 255, 143, 147, 150, 255, 113, 117, 120, 255, 92, 96, 99, 255, 97, 101, 104, 255, 113, 117, 120, 255, 127, 131, 133, 255, 130, 134, 135, 255, 127, 131, 132, 255, 123, 127, 128, 255, 112, 116, 117, 255, 96, 100, 101, 255, 83, 87, 88, 255, 98, 103, 106, 255, 128, 133, 137, 255, 154, 159, 163, 255, 152, 157, 161, 255, 143, 148, 152, 255, 146, 151, 155, 255, 146, 151, 155, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 140, 145, 149, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 131, 136, 140, 255, 129, 134, 138, 255, 139, 144, 148, 255, 163, 168, 172, 255, 164, 169, 172, 255, 133, 137, 140, 255, 104, 108, 111, 255, 92, 96, 99, 255, 102, 106, 109, 255, 118, 122, 125, 255, 130, 134, 135, 255, 129, 133, 134, 255, 127, 131, 132, 255, 120, 124, 125, 255, 108, 112, 113, 255, 90, 94, 95, 255, 83, 87, 88, 255, 108, 113, 117, 255, 138, 143, 147, 255, 155, 160, 164, 255, 149, 154, 158, 255, 144, 149, 153, 255, 146, 151, 155, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 130, 135, 139, 255, 130, 135, 139, 255, 147, 152, 156, 255, 170, 175, 179, 255, 155, 159, 162, 255, 123, 127, 130, 255, 95, 99, 102, 255, 93, 97, 100, 255, 107, 111, 114, 255, 124, 128, 130, 255, 132, 136, 137, 255, 128, 132, 133, 255, 125, 129, 130, 255, 116, 120, 121, 255, 101, 105, 106, 255, 86, 90, 91, 255, 90, 95, 97, 255, 118, 123, 127, 255, 146, 151, 155, 255, 153, 158, 162, 255, 146, 151, 155, 255, 145, 150, 154, 255, 146, 151, 155, 255, 143, 148, 152, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 135, 140, 144, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 133, 138, 142, 255, 128, 133, 137, 255, 131, 136, 140, 255, 172, 177, 181, 255, 202, 207, 210, 255, 183, 187, 190, 255, 151, 155, 158, 255, 127, 131, 134, 255, 126, 130, 133, 255, 132, 136, 139, 255, 133, 137, 139, 255, 132, 136, 137, 255, 123, 127, 128, 255, 112, 116, 118, 255, 103, 107, 109, 255, 89, 93, 95, 255, 82, 86, 87, 255, 122, 127, 130, 255, 144, 149, 153, 255, 152, 157, 161, 255, 147, 152, 156, 255, 143, 148, 152, 255, 146, 151, 155, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 131, 136, 140, 255, 128, 133, 137, 255, 148, 153, 157, 255, 183, 188, 192, 255, 196, 201, 205, 255, 173, 177, 180, 255, 142, 146, 149, 255, 125, 129, 132, 255, 128, 132, 135, 255, 133, 137, 140, 255, 133, 137, 139, 255, 131, 135, 136, 255, 117, 121, 122, 255, 111, 115, 116, 255, 99, 103, 106, 255, 84, 88, 89, 255, 87, 91, 93, 255, 135, 140, 144, 255, 147, 152, 156, 255, 151, 156, 160, 255, 145, 150, 154, 255, 144, 149, 153, 255, 147, 152, 156, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 128, 133, 137, 255, 132, 137, 141, 255, 159, 164, 168, 255, 194, 199, 203, 255, 191, 195, 199, 255, 163, 167, 170, 255, 132, 136, 139, 255, 124, 128, 131, 255, 130, 134, 137, 255, 133, 137, 140, 255, 133, 137, 138, 255, 128, 132, 133, 255, 114, 118, 119, 255, 107, 111, 113, 255, 94, 98, 100, 255, 83, 87, 88, 255, 105, 109, 111, 255, 140, 145, 149, 255, 150, 155, 159, 255, 149, 154, 158, 255, 144, 149, 153, 255, 145, 150, 154, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 134, 139, 143, 255, 126, 131, 135, 255, 136, 141, 145, 255, 187, 192, 196, 255, 221, 226, 230, 255, 212, 216, 219, 255, 179, 183, 186, 255, 151, 155, 158, 255, 140, 144, 147, 255, 136, 140, 143, 255, 130, 134, 136, 255, 121, 125, 126, 255, 114, 118, 119, 255, 110, 114, 116, 255, 95, 99, 102, 255, 87, 91, 92, 255, 94, 98, 99, 255, 138, 143, 146, 255, 149, 154, 158, 255, 149, 154, 158, 255, 150, 155, 159, 255, 147, 152, 156, 255, 143, 148, 152, 255, 143, 148, 152, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 138, 143, 147, 255, 135, 140, 144, 255, 139, 144, 148, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 132, 137, 141, 255, 133, 138, 142, 255, 159, 164, 168, 255, 199, 204, 208, 255, 219, 224, 227, 255, 201, 205, 208, 255, 169, 173, 176, 255, 147, 151, 154, 255, 139, 143, 146, 255, 135, 139, 142, 255, 128, 132, 134, 255, 118, 122, 123, 255, 113, 117, 118, 255, 108, 112, 115, 255, 88, 92, 95, 255, 87, 91, 92, 255, 103, 107, 109, 255, 150, 155, 159, 255, 149, 154, 158, 255, 150, 155, 159, 255, 149, 154, 158, 255, 146, 151, 155, 255, 143, 148, 152, 255, 143, 148, 152, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 144, 148, 255, 135, 140, 144, 255, 130, 135, 139, 255, 139, 144, 148, 255, 172, 177, 181, 255, 211, 216, 220, 255, 217, 222, 225, 255, 191, 195, 198, 255, 158, 162, 165, 255, 142, 146, 149, 255, 138, 142, 145, 255, 132, 136, 139, 255, 125, 129, 130, 255, 115, 119, 120, 255, 111, 115, 116, 255, 102, 106, 109, 255, 87, 91, 93, 255, 91, 95, 96, 255, 121, 125, 128, 255, 150, 155, 159, 255, 149, 154, 158, 255, 150, 155, 159, 255, 148, 153, 157, 255, 144, 149, 153, 255, 143, 148, 152, 255, 143, 148, 152, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 140, 145, 149, 255, 135, 140, 144, 255, 137, 142, 146, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 133, 138, 142, 255, 129, 134, 138, 255, 145, 150, 154, 255, 201, 206, 210, 255, 229, 233, 237, 255, 207, 211, 214, 255, 179, 183, 186, 255, 153, 157, 160, 255, 142, 146, 149, 255, 134, 138, 141, 255, 125, 129, 131, 255, 118, 122, 123, 255, 114, 118, 119, 255, 102, 106, 108, 255, 86, 90, 93, 255, 94, 98, 99, 255, 121, 125, 126, 255, 148, 153, 156, 255, 148, 153, 157, 255, 149, 154, 158, 255, 155, 160, 164, 255, 151, 156, 160, 255, 139, 144, 148, 255, 138, 143, 147, 255, 143, 148, 152, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 137, 142, 146, 255, 134, 139, 143, 255, 132, 137, 141, 255, 143, 148, 152, 255, 173, 178, 182, 255, 212, 217, 221, 255, 222, 227, 230, 255, 198, 202, 205, 255, 169, 173, 176, 255, 149, 153, 156, 255, 140, 144, 147, 255, 131, 135, 138, 255, 122, 126, 127, 255, 116, 120, 121, 255, 113, 117, 118, 255, 96, 100, 103, 255, 81, 85, 88, 255, 101, 105, 106, 255, 132, 136, 137, 255, 152, 157, 161, 255, 148, 153, 157, 255, 151, 156, 160, 255, 154, 159, 163, 255, 147, 152, 156, 255, 138, 143, 147, 255, 140, 145, 149, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 134, 139, 143, 255, 151, 156, 160, 255, 187, 192, 196, 255, 222, 227, 231, 255, 216, 220, 223, 255, 189, 193, 196, 255, 160, 164, 167, 255, 145, 149, 152, 255, 137, 141, 144, 255, 128, 132, 135, 255, 119, 123, 124, 255, 115, 119, 120, 255, 108, 112, 114, 255, 90, 94, 97, 255, 87, 91, 93, 255, 111, 115, 116, 255, 140, 144, 147, 255, 150, 155, 159, 255, 149, 154, 158, 255, 153, 158, 162, 255, 153, 158, 162, 255, 143, 148, 152, 255, 137, 142, 146, 255, 142, 147, 151, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 131, 136, 140, 255, 136, 141, 145, 255, 159, 164, 168, 255, 214, 219, 223, 255, 219, 223, 227, 255, 188, 192, 195, 255, 163, 167, 170, 255, 143, 147, 150, 255, 134, 138, 141, 255, 128, 132, 135, 255, 120, 124, 126, 255, 114, 118, 119, 255, 106, 110, 111, 255, 90, 94, 96, 255, 84, 88, 91, 255, 105, 109, 111, 255, 140, 144, 145, 255, 152, 156, 160, 255, 149, 154, 158, 255, 150, 155, 159, 255, 153, 158, 162, 255, 149, 154, 158, 255, 141, 146, 150, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 128, 133, 137, 255, 129, 134, 138, 255, 156, 161, 165, 255, 195, 200, 204, 255, 217, 222, 226, 255, 208, 213, 217, 255, 180, 184, 187, 255, 156, 160, 163, 255, 139, 143, 146, 255, 132, 136, 139, 255, 125, 129, 132, 255, 117, 121, 122, 255, 113, 117, 118, 255, 101, 105, 106, 255, 85, 89, 92, 255, 84, 88, 91, 255, 118, 122, 123, 255, 150, 154, 155, 255, 152, 157, 161, 255, 149, 154, 158, 255, 151, 156, 160, 255, 152, 157, 161, 255, 147, 152, 156, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 136, 141, 145, 255, 133, 138, 142, 255, 126, 131, 135, 255, 136, 141, 145, 255, 170, 175, 179, 255, 204, 209, 213, 255, 220, 225, 229, 255, 198, 203, 206, 255, 172, 176, 179, 255, 148, 152, 155, 255, 136, 140, 143, 255, 130, 134, 137, 255, 123, 127, 129, 255, 114, 118, 119, 255, 110, 114, 115, 255, 96, 100, 101, 255, 83, 87, 90, 255, 95, 99, 101, 255, 129, 133, 134, 255, 151, 155, 158, 255, 150, 155, 159, 255, 149, 154, 158, 255, 152, 157, 161, 255, 151, 156, 160, 255, 144, 149, 153, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 131, 136, 140, 255, 125, 130, 134, 255, 143, 148, 152, 255, 183, 188, 192, 255, 214, 219, 223, 255, 199, 203, 207, 255, 168, 172, 175, 255, 148, 152, 155, 255, 131, 135, 138, 255, 124, 128, 131, 255, 121, 125, 128, 255, 114, 118, 120, 255, 106, 110, 111, 255, 95, 99, 100, 255, 83, 87, 89, 255, 88, 92, 95, 255, 116, 120, 121, 255, 146, 150, 151, 255, 152, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 135, 140, 144, 255, 128, 133, 137, 255, 135, 140, 144, 255, 171, 176, 180, 255, 206, 211, 215, 255, 209, 214, 218, 255, 188, 193, 196, 255, 161, 165, 168, 255, 142, 146, 149, 255, 128, 132, 135, 255, 123, 127, 130, 255, 119, 123, 126, 255, 111, 115, 117, 255, 105, 109, 110, 255, 90, 94, 95, 255, 80, 84, 87, 255, 93, 97, 100, 255, 128, 132, 133, 255, 153, 157, 159, 255, 151, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 147, 152, 156, 255, 146, 151, 155, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 132, 137, 141, 255, 128, 133, 137, 255, 145, 150, 154, 255, 185, 190, 194, 255, 210, 215, 219, 255, 205, 210, 214, 255, 178, 182, 185, 255, 155, 159, 162, 255, 135, 139, 142, 255, 126, 130, 133, 255, 123, 127, 130, 255, 116, 120, 123, 255, 108, 112, 113, 255, 100, 104, 105, 255, 86, 90, 91, 255, 83, 87, 90, 255, 104, 108, 111, 255, 137, 141, 142, 255, 152, 157, 159, 255, 151, 156, 160, 255, 150, 155, 159, 255, 148, 153, 157, 255, 147, 152, 156, 255, 145, 150, 154, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 130, 135, 139, 255, 127, 132, 136, 255, 155, 160, 164, 255, 200, 205, 209, 255, 198, 203, 207, 255, 178, 183, 187, 255, 150, 154, 157, 255, 135, 139, 142, 255, 124, 128, 131, 255, 118, 122, 125, 255, 113, 117, 120, 255, 104, 108, 110, 255, 96, 100, 101, 255, 85, 89, 90, 255, 79, 83, 85, 255, 94, 98, 101, 255, 124, 128, 129, 255, 149, 153, 154, 255, 151, 156, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 145, 150, 154, 255, 142, 147, 151, 255, 143, 148, 152, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 131, 136, 140, 255, 132, 137, 141, 255, 151, 156, 160, 255, 183, 188, 192, 255, 201, 206, 210, 255, 192, 197, 201, 255, 168, 173, 176, 255, 145, 149, 152, 255, 131, 135, 138, 255, 122, 126, 129, 255, 117, 121, 124, 255, 110, 114, 117, 255, 101, 105, 107, 255, 95, 99, 100, 255, 80, 84, 85, 255, 79, 83, 86, 255, 102, 106, 109, 255, 135, 139, 140, 255, 155, 159, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 130, 135, 139, 255, 137, 142, 146, 255, 162, 167, 171, 255, 192, 197, 201, 255, 200, 205, 209, 255, 186, 191, 195, 255, 159, 163, 166, 255, 141, 145, 148, 255, 127, 131, 134, 255, 120, 124, 127, 255, 116, 120, 123, 255, 107, 111, 114, 255, 98, 102, 103, 255, 91, 95, 96, 255, 78, 82, 83, 255, 86, 90, 93, 255, 113, 117, 119, 255, 142, 146, 147, 255, 153, 157, 160, 255, 149, 154, 158, 255, 148, 153, 157, 255, 148, 153, 157, 255, 147, 152, 156, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 132, 137, 141, 255, 130, 135, 139, 255, 142, 147, 151, 255, 173, 178, 182, 255, 200, 205, 209, 255, 179, 184, 188, 255, 158, 163, 167, 255, 136, 140, 143, 255, 125, 129, 132, 255, 115, 119, 122, 255, 109, 113, 116, 255, 100, 104, 107, 255, 90, 94, 96, 255, 82, 86, 87, 255, 75, 79, 80, 255, 83, 87, 89, 255, 108, 112, 114, 255, 133, 137, 139, 255, 149, 153, 154, 255, 149, 153, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 142, 147, 151, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 129, 134, 138, 255, 137, 142, 146, 255, 165, 170, 174, 255, 190, 195, 199, 255, 191, 196, 200, 255, 172, 177, 181, 255, 150, 155, 159, 255, 133, 137, 140, 255, 122, 126, 129, 255, 113, 117, 120, 255, 107, 111, 114, 255, 97, 101, 104, 255, 86, 90, 92, 255, 80, 84, 86, 255, 72, 76, 77, 255, 91, 95, 97, 255, 116, 120, 123, 255, 142, 146, 147, 255, 151, 155, 157, 255, 148, 153, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 132, 137, 141, 255, 130, 135, 139, 255, 146, 151, 155, 255, 175, 180, 184, 255, 193, 198, 202, 255, 186, 191, 195, 255, 166, 171, 175, 255, 143, 147, 150, 255, 129, 133, 136, 255, 118, 122, 125, 255, 112, 116, 119, 255, 104, 108, 111, 255, 93, 97, 100, 255, 83, 87, 88, 255, 78, 82, 83, 255, 76, 80, 81, 255, 100, 104, 106, 255, 125, 129, 131, 255, 145, 149, 151, 255, 150, 154, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 142, 147, 151, 255, 144, 149, 153, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 130, 135, 139, 255, 132, 137, 141, 255, 155, 160, 164, 255, 185, 190, 194, 255, 196, 201, 205, 255, 162, 167, 171, 255, 142, 146, 150, 255, 127, 131, 134, 255, 114, 118, 121, 255, 101, 105, 108, 255, 91, 95, 98, 255, 82, 86, 89, 255, 74, 78, 81, 255, 72, 76, 77, 255, 76, 80, 81, 255, 100, 104, 106, 255, 128, 132, 135, 255, 141, 146, 148, 255, 145, 149, 151, 255, 146, 151, 154, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 131, 136, 140, 255, 133, 138, 142, 255, 147, 152, 156, 255, 172, 177, 181, 255, 186, 191, 195, 255, 177, 182, 186, 255, 155, 160, 164, 255, 137, 141, 145, 255, 123, 127, 130, 255, 109, 113, 116, 255, 98, 102, 105, 255, 88, 92, 95, 255, 79, 83, 86, 255, 73, 77, 78, 255, 73, 77, 78, 255, 77, 81, 82, 255, 112, 116, 119, 255, 134, 138, 141, 255, 144, 149, 151, 255, 145, 149, 152, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 131, 136, 140, 255, 137, 142, 146, 255, 156, 161, 165, 255, 179, 184, 188, 255, 185, 190, 194, 255, 170, 175, 179, 255, 149, 154, 158, 255, 132, 136, 140, 255, 119, 123, 126, 255, 105, 109, 112, 255, 95, 99, 102, 255, 85, 89, 92, 255, 76, 80, 83, 255, 72, 76, 77, 255, 74, 78, 79, 255, 87, 91, 93, 255, 122, 126, 129, 255, 138, 142, 145, 255, 144, 149, 151, 255, 145, 150, 153, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 141, 146, 150, 255, 164, 169, 173, 255, 185, 190, 194, 255, 184, 189, 193, 255, 146, 151, 155, 255, 127, 132, 136, 255, 113, 117, 120, 255, 97, 101, 104, 255, 82, 86, 89, 255, 75, 79, 82, 255, 71, 75, 78, 255, 72, 76, 78, 255, 76, 80, 81, 255, 87, 91, 92, 255, 118, 122, 124, 255, 141, 145, 148, 255, 142, 147, 150, 255, 142, 146, 149, 255, 142, 147, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 143, 255, 125, 130, 134, 255, 143, 148, 152, 255, 164, 169, 173, 255, 176, 181, 185, 255, 176, 181, 185, 255, 161, 166, 170, 255, 140, 145, 149, 255, 123, 127, 131, 255, 108, 112, 115, 255, 92, 96, 99, 255, 80, 84, 87, 255, 73, 77, 80, 255, 71, 75, 78, 255, 72, 76, 78, 255, 78, 82, 83, 255, 92, 96, 97, 255, 132, 136, 139, 255, 143, 148, 151, 255, 141, 146, 149, 255, 142, 146, 149, 255, 142, 147, 151, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 130, 135, 139, 255, 131, 136, 140, 255, 150, 155, 159, 255, 169, 174, 178, 255, 177, 182, 186, 255, 172, 177, 181, 255, 154, 159, 163, 255, 134, 139, 143, 255, 118, 123, 126, 255, 103, 107, 110, 255, 87, 91, 94, 255, 77, 81, 84, 255, 72, 76, 79, 255, 71, 75, 78, 255, 74, 78, 79, 255, 82, 86, 87, 255, 104, 108, 109, 255, 138, 142, 146, 255, 143, 147, 151, 255, 141, 146, 149, 255, 142, 146, 150, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 127, 132, 136, 255, 136, 141, 145, 255, 157, 162, 166, 255, 173, 178, 182, 255, 178, 183, 187, 255, 169, 174, 178, 255, 127, 132, 136, 255, 106, 111, 115, 255, 92, 96, 99, 255, 81, 85, 88, 255, 74, 78, 81, 255, 77, 81, 84, 255, 83, 87, 90, 255, 90, 94, 96, 255, 97, 101, 102, 255, 108, 112, 114, 255, 131, 135, 138, 255, 138, 143, 146, 255, 139, 144, 148, 255, 144, 149, 151, 255, 140, 145, 148, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 126, 131, 135, 255, 164, 169, 173, 255, 189, 194, 198, 255, 182, 187, 191, 255, 163, 168, 172, 255, 143, 148, 152, 255, 120, 125, 129, 255, 101, 106, 109, 255, 88, 92, 95, 255, 78, 82, 85, 255, 75, 79, 82, 255, 79, 83, 86, 255, 85, 89, 92, 255, 92, 96, 98, 255, 99, 103, 105, 255, 113, 117, 119, 255, 140, 144, 148, 255, 136, 141, 144, 255, 141, 146, 150, 255, 145, 149, 151, 255, 139, 144, 148, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 143, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 130, 135, 139, 255, 138, 143, 147, 255, 174, 179, 183, 255, 188, 193, 197, 255, 176, 181, 185, 255, 157, 162, 166, 255, 135, 140, 144, 255, 113, 118, 122, 255, 97, 101, 104, 255, 84, 88, 91, 255, 75, 79, 82, 255, 75, 79, 82, 255, 81, 85, 88, 255, 88, 92, 95, 255, 95, 99, 100, 255, 103, 107, 109, 255, 121, 126, 128, 255, 140, 145, 148, 255, 137, 142, 146, 255, 143, 147, 150, 255, 143, 147, 150, 255, 141, 146, 150, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 126, 131, 135, 255, 151, 156, 160, 255, 183, 188, 192, 255, 186, 191, 195, 255, 170, 175, 179, 255, 151, 156, 160, 255, 101, 106, 111, 255, 79, 84, 88, 255, 75, 79, 82, 255, 75, 79, 82, 255, 83, 87, 90, 255, 96, 100, 103, 255, 108, 112, 115, 255, 116, 120, 123, 255, 122, 127, 129, 255, 126, 131, 133, 255, 132, 137, 140, 255, 136, 141, 144, 255, 139, 144, 147, 255, 142, 146, 149, 255, 141, 146, 149, 255, 143, 148, 152, 255, 145, 150, 154, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 144, 148, 255, 136, 141, 146, 255, 133, 138, 142, 255, 138, 143, 147, 255, 137, 142, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 131, 136, 141, 255, 132, 137, 141, 255, 132, 137, 142, 255, 133, 138, 142, 255, 134, 139, 144, 255, 135, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 133, 139, 143, 255, 131, 136, 141, 255, 138, 143, 147, 255, 193, 198, 203, 255, 216, 221, 225, 255, 185, 190, 194, 255, 144, 149, 153, 255, 117, 122, 127, 255, 94, 99, 103, 255, 78, 82, 86, 255, 75, 79, 82, 255, 77, 81, 84, 255, 87, 91, 94, 255, 101, 105, 108, 255, 111, 115, 118, 255, 119, 123, 126, 255, 123, 128, 130, 255, 128, 132, 135, 255, 134, 139, 142, 255, 137, 142, 145, 255, 140, 145, 149, 255, 142, 147, 150, 255, 141, 146, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 149, 255, 138, 143, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 147, 255, 136, 141, 145, 255, 133, 138, 143, 255, 131, 136, 141, 255, 131, 136, 141, 255, 132, 137, 141, 255, 132, 137, 142, 255, 133, 138, 143, 255, 134, 139, 144, 255, 135, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 133, 138, 142, 255, 132, 137, 142, 255, 156, 162, 166, 255, 204, 209, 213, 255, 207, 213, 216, 255, 170, 176, 180, 255, 135, 140, 145, 255, 110, 115, 120, 255, 86, 91, 95, 255, 76, 81, 84, 255, 74, 78, 81, 255, 79, 83, 86, 255, 91, 95, 98, 255, 106, 110, 113, 255, 113, 117, 120, 255, 122, 126, 128, 255, 124, 129, 132, 255, 130, 135, 137, 255, 135, 140, 143, 255, 138, 143, 146, 255, 141, 146, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 139, 144, 149, 255, 138, 143, 147, 255, 133, 138, 142, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 142, 255, 131, 136, 141, 255, 131, 136, 141, 255, 132, 137, 142, 255, 132, 137, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 140, 144, 255, 132, 137, 142, 255, 133, 138, 142, 255, 175, 180, 184, 255, 214, 219, 223, 255, 199, 204, 208, 255, 156, 161, 165, 255, 126, 131, 136, 255, 82, 88, 94, 255, 71, 76, 80, 255, 82, 86, 89, 255, 90, 94, 97, 255, 103, 107, 110, 255, 115, 119, 122, 255, 123, 127, 130, 255, 127, 131, 134, 255, 131, 135, 138, 255, 131, 136, 139, 255, 131, 136, 139, 255, 136, 141, 144, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 150, 255, 147, 152, 157, 255, 147, 152, 158, 255, 138, 143, 148, 255, 142, 147, 152, 255, 142, 147, 153, 255, 134, 139, 143, 255, 137, 142, 147, 255, 136, 141, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 132, 138, 143, 255, 130, 136, 142, 255, 133, 139, 143, 255, 133, 139, 144, 255, 134, 141, 146, 255, 135, 141, 145, 255, 131, 137, 143, 255, 128, 135, 140, 255, 147, 154, 159, 255, 214, 220, 225, 255, 226, 232, 235, 255, 165, 172, 177, 255, 106, 113, 118, 255, 87, 94, 99, 255, 77, 84, 89, 255, 74, 79, 83, 255, 84, 88, 91, 255, 94, 98, 101, 255, 107, 111, 114, 255, 119, 123, 126, 255, 124, 128, 131, 255, 129, 134, 137, 255, 131, 135, 138, 255, 133, 138, 142, 255, 131, 136, 139, 255, 139, 144, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 152, 255, 147, 152, 158, 255, 144, 149, 155, 255, 139, 144, 150, 255, 143, 148, 153, 255, 137, 142, 147, 255, 133, 138, 144, 255, 136, 141, 147, 255, 136, 141, 147, 255, 135, 140, 146, 255, 134, 139, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 131, 136, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 141, 145, 255, 135, 141, 145, 255, 132, 139, 144, 255, 130, 136, 142, 255, 133, 139, 145, 255, 170, 176, 182, 255, 222, 228, 232, 255, 208, 214, 218, 255, 142, 149, 154, 255, 98, 105, 111, 255, 85, 91, 97, 255, 73, 79, 83, 255, 78, 82, 86, 255, 86, 90, 93, 255, 98, 102, 105, 255, 111, 115, 118, 255, 122, 126, 129, 255, 125, 129, 132, 255, 131, 135, 138, 255, 131, 136, 139, 255, 131, 136, 139, 255, 133, 138, 141, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 150, 255, 144, 149, 154, 255, 147, 152, 158, 255, 141, 146, 151, 255, 141, 146, 151, 255, 143, 148, 154, 255, 135, 140, 145, 255, 136, 141, 147, 255, 136, 141, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 133, 138, 143, 255, 130, 136, 142, 255, 132, 138, 143, 255, 134, 140, 144, 255, 133, 140, 145, 255, 135, 141, 145, 255, 132, 139, 143, 255, 129, 135, 141, 255, 137, 144, 149, 255, 193, 199, 205, 255, 231, 236, 239, 255, 189, 196, 200, 255, 120, 127, 132, 255, 91, 97, 103, 255, 83, 90, 96, 255, 85, 92, 95, 255, 105, 108, 113, 255, 112, 116, 119, 255, 121, 125, 128, 255, 124, 128, 132, 255, 128, 132, 136, 255, 133, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 141, 145, 149, 255, 147, 150, 155, 255, 146, 150, 155, 255, 146, 151, 156, 255, 140, 145, 151, 255, 145, 150, 156, 255, 144, 149, 155, 255, 122, 127, 133, 255, 131, 136, 141, 255, 141, 146, 151, 255, 143, 148, 152, 255, 140, 145, 151, 255, 134, 139, 145, 255, 132, 137, 142, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 131, 138, 143, 255, 134, 139, 144, 255, 135, 140, 145, 255, 135, 140, 145, 255, 135, 141, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 149, 156, 162, 255, 197, 204, 209, 255, 188, 195, 200, 255, 119, 126, 132, 255, 72, 79, 85, 255, 74, 81, 87, 255, 83, 90, 95, 255, 92, 98, 101, 255, 107, 110, 114, 255, 115, 119, 122, 255, 122, 126, 129, 255, 125, 129, 133, 255, 130, 134, 138, 255, 133, 138, 141, 255, 134, 139, 143, 255, 137, 142, 146, 255, 136, 141, 145, 255, 145, 148, 153, 255, 148, 151, 156, 255, 146, 150, 154, 255, 145, 150, 156, 255, 140, 145, 151, 255, 146, 151, 157, 255, 137, 142, 148, 255, 125, 130, 135, 255, 135, 140, 145, 255, 141, 146, 151, 255, 142, 147, 152, 255, 138, 143, 149, 255, 132, 137, 143, 255, 129, 134, 140, 255, 132, 137, 143, 255, 135, 140, 145, 255, 137, 142, 147, 255, 133, 138, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 140, 146, 255, 133, 139, 145, 255, 132, 138, 143, 255, 133, 140, 146, 255, 166, 173, 179, 255, 198, 205, 210, 255, 166, 173, 178, 255, 99, 106, 112, 255, 71, 78, 84, 255, 79, 86, 92, 255, 83, 90, 94, 255, 99, 103, 108, 255, 109, 112, 116, 255, 118, 123, 126, 255, 123, 127, 130, 255, 126, 130, 134, 255, 132, 136, 140, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 137, 142, 146, 255, 146, 150, 154, 255, 147, 151, 155, 255, 146, 150, 155, 255, 143, 148, 153, 255, 143, 148, 154, 255, 145, 150, 156, 255, 129, 134, 140, 255, 128, 133, 138, 255, 138, 143, 148, 255, 143, 148, 152, 255, 142, 147, 152, 255, 136, 141, 147, 255, 130, 135, 140, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 139, 144, 255, 132, 138, 144, 255, 135, 140, 145, 255, 135, 140, 145, 255, 135, 141, 145, 255, 132, 138, 143, 255, 128, 135, 141, 255, 139, 146, 152, 255, 183, 190, 196, 255, 199, 206, 211, 255, 143, 150, 156, 255, 79, 86, 92, 255, 70, 77, 83, 255, 110, 117, 123, 255, 110, 116, 120, 255, 120, 124, 128, 255, 124, 128, 131, 255, 129, 134, 137, 255, 129, 134, 138, 255, 133, 138, 142, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 146, 150, 154, 255, 148, 151, 156, 255, 141, 145, 151, 255, 141, 146, 152, 255, 162, 167, 173, 255, 159, 164, 170, 255, 104, 109, 115, 255, 79, 84, 89, 255, 109, 114, 119, 255, 135, 140, 145, 255, 139, 144, 149, 255, 138, 143, 149, 255, 136, 141, 146, 255, 135, 140, 145, 255, 134, 139, 144, 255, 134, 139, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 139, 144, 255, 132, 139, 144, 255, 135, 140, 145, 255, 136, 141, 145, 255, 133, 140, 145, 255, 130, 137, 143, 255, 127, 134, 140, 255, 131, 138, 144, 255, 144, 151, 157, 255, 120, 127, 133, 255, 77, 84, 90, 255, 70, 77, 83, 255, 96, 103, 109, 255, 109, 117, 121, 255, 113, 119, 123, 255, 121, 125, 129, 255, 126, 131, 134, 255, 129, 134, 137, 255, 131, 136, 140, 255, 135, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 143, 148, 152, 255, 149, 152, 157, 255, 150, 153, 158, 255, 146, 149, 154, 255, 139, 144, 150, 255, 147, 152, 158, 255, 163, 168, 174, 255, 141, 146, 152, 255, 94, 99, 105, 255, 88, 93, 99, 255, 119, 124, 128, 255, 137, 142, 147, 255, 139, 144, 149, 255, 137, 142, 147, 255, 134, 139, 144, 255, 133, 138, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 141, 145, 255, 135, 140, 145, 255, 132, 139, 145, 255, 130, 136, 142, 255, 128, 135, 141, 255, 136, 143, 149, 255, 138, 145, 151, 255, 104, 111, 117, 255, 71, 78, 84, 255, 79, 86, 92, 255, 103, 110, 116, 255, 109, 116, 120, 255, 117, 121, 126, 255, 122, 126, 129, 255, 129, 134, 137, 255, 128, 133, 136, 255, 132, 137, 141, 255, 135, 140, 144, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 142, 146, 151, 255, 149, 152, 157, 255, 143, 147, 153, 255, 140, 145, 151, 255, 154, 159, 165, 255, 161, 166, 172, 255, 123, 128, 134, 255, 84, 89, 95, 255, 98, 103, 108, 255, 128, 133, 138, 255, 139, 144, 148, 255, 139, 144, 150, 255, 136, 141, 146, 255, 135, 140, 145, 255, 135, 140, 144, 255, 134, 139, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 144, 255, 131, 138, 144, 255, 134, 140, 145, 255, 136, 141, 145, 255, 134, 140, 145, 255, 131, 138, 144, 255, 128, 135, 141, 255, 128, 135, 141, 255, 142, 149, 155, 255, 132, 139, 145, 255, 89, 96, 102, 255, 64, 71, 77, 255, 87, 94, 100, 255, 130, 136, 142, 255, 133, 138, 142, 255, 127, 131, 134, 255, 134, 139, 143, 255, 129, 134, 137, 255, 133, 138, 142, 255, 134, 139, 143, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 146, 150, 255, 147, 150, 155, 255, 146, 149, 154, 255, 138, 143, 149, 255, 154, 159, 165, 255, 195, 200, 205, 255, 199, 204, 209, 255, 133, 138, 144, 255, 80, 85, 90, 255, 74, 79, 85, 255, 90, 95, 100, 255, 123, 128, 132, 255, 130, 135, 140, 255, 136, 141, 145, 255, 135, 140, 145, 255, 129, 134, 139, 255, 125, 130, 135, 255, 132, 137, 142, 255, 136, 141, 145, 255, 132, 138, 143, 255, 131, 137, 143, 255, 133, 139, 144, 255, 133, 139, 145, 255, 133, 139, 145, 255, 130, 137, 143, 255, 129, 136, 142, 255, 129, 136, 142, 255, 127, 134, 139, 255, 106, 113, 119, 255, 88, 94, 100, 255, 100, 107, 112, 255, 123, 130, 135, 255, 132, 137, 143, 255, 130, 135, 138, 255, 130, 135, 138, 255, 131, 136, 140, 255, 130, 135, 139, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 145, 148, 153, 255, 148, 151, 156, 255, 138, 143, 147, 255, 144, 147, 152, 255, 140, 145, 151, 255, 167, 172, 178, 255, 200, 205, 210, 255, 178, 183, 189, 255, 114, 119, 125, 255, 77, 82, 88, 255, 78, 83, 88, 255, 103, 108, 112, 255, 125, 130, 135, 255, 136, 141, 145, 255, 140, 145, 150, 255, 132, 137, 142, 255, 134, 139, 143, 255, 129, 134, 139, 255, 135, 140, 144, 255, 130, 137, 142, 255, 135, 140, 144, 255, 133, 138, 144, 255, 135, 140, 145, 255, 133, 139, 145, 255, 133, 139, 145, 255, 133, 139, 143, 255, 129, 136, 142, 255, 129, 136, 142, 255, 121, 127, 133, 255, 99, 105, 111, 255, 90, 96, 102, 255, 109, 116, 121, 255, 126, 133, 139, 255, 133, 139, 143, 255, 127, 131, 135, 255, 134, 139, 142, 255, 128, 133, 137, 255, 132, 137, 141, 255, 135, 140, 144, 255, 133, 138, 142, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 146, 149, 154, 255, 147, 150, 155, 255, 141, 145, 150, 255, 147, 152, 158, 255, 181, 186, 192, 255, 199, 204, 210, 255, 157, 162, 167, 255, 96, 101, 107, 255, 75, 80, 86, 255, 81, 86, 91, 255, 116, 121, 125, 255, 127, 132, 137, 255, 136, 141, 145, 255, 135, 140, 145, 255, 134, 139, 143, 255, 123, 128, 134, 255, 129, 134, 140, 255, 136, 141, 146, 255, 134, 139, 144, 255, 131, 137, 143, 255, 132, 138, 144, 255, 133, 139, 145, 255, 133, 139, 145, 255, 131, 138, 143, 255, 129, 136, 142, 255, 129, 136, 142, 255, 129, 136, 142, 255, 115, 121, 127, 255, 91, 97, 103, 255, 92, 98, 104, 255, 118, 125, 130, 255, 137, 142, 146, 255, 125, 130, 134, 255, 136, 141, 145, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 141, 144, 149, 255, 140, 144, 149, 255, 150, 155, 160, 255, 177, 182, 186, 255, 182, 187, 191, 255, 152, 157, 161, 255, 126, 131, 135, 255, 101, 106, 110, 255, 79, 84, 89, 255, 100, 105, 109, 255, 122, 127, 131, 255, 126, 131, 135, 255, 129, 134, 138, 255, 132, 137, 141, 255, 129, 134, 138, 255, 127, 132, 137, 255, 129, 134, 138, 255, 129, 134, 138, 255, 131, 136, 140, 255, 132, 137, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 132, 138, 142, 255, 133, 138, 142, 255, 132, 138, 142, 255, 135, 140, 144, 255, 129, 134, 138, 255, 119, 124, 128, 255, 120, 125, 129, 255, 131, 136, 140, 255, 132, 137, 142, 255, 129, 134, 138, 255, 136, 140, 144, 255, 135, 140, 143, 255, 137, 142, 145, 255, 137, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 123, 128, 131, 255, 142, 145, 149, 255, 146, 150, 154, 255, 143, 147, 151, 255, 142, 145, 150, 255, 141, 146, 151, 255, 159, 164, 168, 255, 181, 186, 190, 255, 172, 177, 182, 255, 143, 148, 152, 255, 118, 123, 128, 255, 91, 96, 101, 255, 85, 90, 94, 255, 109, 114, 118, 255, 124, 129, 133, 255, 127, 132, 136, 255, 129, 134, 139, 255, 125, 130, 134, 255, 132, 137, 142, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 145, 255, 135, 140, 145, 255, 135, 140, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 134, 139, 143, 255, 133, 138, 143, 255, 125, 130, 134, 255, 118, 123, 127, 255, 123, 128, 133, 255, 134, 139, 144, 255, 128, 133, 137, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 141, 145, 149, 255, 137, 142, 146, 255, 139, 143, 147, 255, 141, 145, 149, 255, 146, 151, 155, 255, 168, 173, 177, 255, 181, 186, 190, 255, 162, 167, 172, 255, 135, 140, 144, 255, 111, 116, 120, 255, 82, 87, 91, 255, 91, 96, 100, 255, 118, 123, 127, 255, 125, 130, 134, 255, 127, 132, 136, 255, 131, 136, 140, 255, 132, 137, 141, 255, 126, 131, 135, 255, 129, 134, 138, 255, 129, 134, 138, 255, 130, 135, 140, 255, 132, 137, 141, 255, 133, 138, 143, 255, 135, 140, 144, 255, 133, 139, 143, 255, 133, 138, 142, 255, 132, 138, 142, 255, 135, 140, 144, 255, 132, 137, 141, 255, 121, 126, 130, 255, 117, 122, 126, 255, 127, 132, 136, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 139, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 144, 148, 255, 140, 143, 148, 255, 140, 145, 149, 255, 134, 139, 143, 255, 131, 136, 140, 255, 121, 126, 130, 255, 111, 116, 120, 255, 125, 130, 134, 255, 130, 135, 139, 255, 107, 112, 116, 255, 84, 89, 93, 255, 81, 86, 90, 255, 83, 88, 92, 255, 100, 105, 109, 255, 123, 128, 132, 255, 132, 137, 141, 255, 128, 133, 137, 255, 126, 131, 135, 255, 129, 134, 138, 255, 131, 136, 140, 255, 131, 136, 140, 255, 131, 136, 140, 255, 133, 138, 142, 255, 135, 140, 144, 255, 135, 140, 144, 255, 131, 136, 140, 255, 127, 132, 136, 255, 127, 132, 136, 255, 128, 133, 137, 255, 130, 135, 139, 255, 132, 137, 141, 255, 138, 143, 147, 255, 136, 140, 144, 255, 136, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 132, 136, 140, 255, 141, 146, 150, 255, 145, 148, 153, 255, 142, 145, 150, 255, 139, 142, 147, 255, 139, 144, 148, 255, 133, 138, 142, 255, 128, 133, 137, 255, 117, 122, 126, 255, 115, 120, 124, 255, 128, 133, 137, 255, 123, 128, 132, 255, 98, 103, 107, 255, 83, 88, 92, 255, 80, 85, 89, 255, 87, 92, 96, 255, 108, 113, 117, 255, 129, 134, 138, 255, 132, 137, 141, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 132, 137, 141, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 130, 135, 139, 255, 127, 132, 136, 255, 127, 132, 136, 255, 129, 134, 138, 255, 132, 137, 141, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 139, 143, 255, 137, 142, 146, 255, 138, 143, 146, 255, 136, 140, 144, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 141, 145, 255, 134, 139, 143, 255, 141, 145, 149, 255, 138, 142, 146, 255, 141, 144, 149, 255, 139, 143, 148, 255, 137, 142, 146, 255, 132, 137, 141, 255, 125, 130, 134, 255, 114, 119, 123, 255, 120, 125, 129, 255, 131, 136, 140, 255, 116, 121, 125, 255, 89, 94, 98, 255, 82, 87, 91, 255, 79, 84, 88, 255, 93, 98, 102, 255, 116, 121, 125, 255, 133, 138, 142, 255, 130, 135, 139, 255, 126, 131, 135, 255, 128, 133, 137, 255, 130, 135, 139, 255, 131, 136, 140, 255, 131, 136, 140, 255, 132, 137, 141, 255, 135, 140, 144, 255, 135, 140, 144, 255, 133, 138, 142, 255, 128, 133, 137, 255, 127, 132, 136, 255, 127, 132, 136, 255, 129, 134, 138, 255, 129, 134, 138, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 133, 138, 142, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 144, 149, 255, 138, 141, 146, 255, 147, 152, 156, 255, 138, 143, 147, 255, 131, 136, 140, 255, 119, 124, 128, 255, 97, 102, 106, 255, 107, 112, 116, 255, 134, 139, 143, 255, 140, 145, 149, 255, 117, 122, 126, 255, 96, 101, 105, 255, 80, 85, 89, 255, 82, 87, 91, 255, 97, 102, 106, 255, 114, 119, 123, 255, 122, 127, 131, 255, 127, 132, 136, 255, 130, 135, 139, 255, 131, 136, 140, 255, 131, 136, 140, 255, 128, 133, 137, 255, 128, 133, 137, 255, 133, 138, 142, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 134, 139, 143, 255, 136, 141, 145, 255, 134, 139, 143, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 140, 144, 149, 255, 141, 144, 149, 255, 138, 141, 146, 255, 148, 153, 156, 255, 134, 139, 143, 255, 127, 132, 136, 255, 111, 116, 120, 255, 99, 104, 108, 255, 117, 122, 126, 255, 138, 143, 147, 255, 132, 137, 141, 255, 110, 115, 119, 255, 89, 94, 98, 255, 78, 83, 87, 255, 86, 91, 95, 255, 103, 108, 112, 255, 119, 124, 128, 255, 124, 129, 133, 255, 135, 140, 144, 255, 131, 136, 140, 255, 131, 136, 140, 255, 130, 135, 139, 255, 128, 133, 137, 255, 129, 134, 138, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 139, 143, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 141, 144, 149, 255, 140, 143, 148, 255, 143, 146, 151, 255, 143, 148, 152, 255, 133, 138, 142, 255, 123, 128, 132, 255, 104, 109, 113, 255, 102, 107, 111, 255, 126, 131, 135, 255, 142, 147, 151, 255, 125, 130, 134, 255, 104, 109, 113, 255, 82, 87, 91, 255, 78, 83, 87, 255, 92, 97, 101, 255, 109, 114, 118, 255, 121, 126, 130, 255, 125, 130, 134, 255, 130, 135, 139, 255, 131, 136, 140, 255, 131, 136, 140, 255, 129, 134, 138, 255, 128, 133, 137, 255, 131, 136, 140, 255, 134, 139, 143, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 134, 139, 143, 255, 138, 143, 147, 255, 132, 137, 141, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 143, 147, 255, 140, 145, 149, 255, 138, 141, 146, 255, 138, 143, 146, 255, 127, 132, 136, 255, 130, 135, 139, 255, 135, 140, 144, 255, 112, 117, 121, 255, 99, 104, 108, 255, 113, 118, 122, 255, 130, 135, 139, 255, 141, 146, 150, 255, 125, 130, 134, 255, 103, 108, 112, 255, 82, 87, 91, 255, 75, 80, 84, 255, 82, 87, 91, 255, 94, 99, 103, 255, 113, 118, 122, 255, 126, 130, 134, 255, 130, 135, 139, 255, 130, 135, 139, 255, 129, 134, 138, 255, 133, 138, 142, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 131, 136, 140, 255, 134, 139, 143, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 144, 149, 255, 137, 140, 145, 255, 137, 142, 145, 255, 126, 131, 135, 255, 132, 137, 141, 255, 128, 133, 137, 255, 107, 112, 116, 255, 104, 109, 112, 255, 118, 123, 127, 255, 136, 141, 144, 255, 137, 142, 146, 255, 118, 123, 127, 255, 95, 100, 104, 255, 78, 83, 87, 255, 75, 80, 84, 255, 86, 91, 95, 255, 97, 102, 106, 255, 121, 126, 130, 255, 127, 132, 136, 255, 131, 136, 140, 255, 129, 134, 138, 255, 130, 135, 139, 255, 134, 139, 143, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 139, 143, 255, 131, 136, 140, 255, 131, 136, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 139, 143, 148, 255, 138, 142, 146, 255, 132, 137, 140, 255, 128, 133, 137, 255, 134, 139, 143, 255, 121, 126, 129, 255, 102, 107, 111, 255, 108, 113, 117, 255, 123, 128, 132, 255, 141, 146, 150, 255, 133, 138, 142, 255, 111, 116, 120, 255, 87, 92, 96, 255, 74, 79, 83, 255, 78, 83, 87, 255, 90, 95, 99, 255, 105, 110, 114, 255, 124, 129, 133, 255, 128, 133, 137, 255, 130, 135, 139, 255, 129, 134, 138, 255, 131, 136, 140, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 132, 137, 141, 255, 133, 138, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 139, 143, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 145, 149, 255, 134, 139, 142, 255, 136, 141, 144, 255, 137, 142, 145, 255, 127, 132, 135, 255, 112, 117, 120, 255, 104, 109, 112, 255, 107, 112, 115, 255, 117, 122, 125, 255, 134, 139, 142, 255, 134, 139, 142, 255, 131, 136, 139, 255, 123, 128, 131, 255, 111, 116, 119, 255, 95, 100, 103, 255, 82, 87, 90, 255, 87, 91, 94, 255, 103, 107, 110, 255, 120, 124, 127, 255, 127, 131, 134, 255, 132, 136, 139, 255, 133, 137, 141, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 141, 145, 255, 136, 141, 144, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 144, 148, 255, 133, 138, 141, 255, 137, 142, 145, 255, 134, 139, 142, 255, 122, 127, 130, 255, 109, 114, 117, 255, 105, 110, 113, 255, 110, 115, 118, 255, 124, 129, 132, 255, 134, 139, 142, 255, 133, 138, 141, 255, 129, 134, 137, 255, 120, 125, 128, 255, 106, 111, 114, 255, 90, 95, 98, 255, 79, 84, 87, 255, 92, 96, 99, 255, 109, 113, 116, 255, 125, 129, 132, 255, 129, 133, 136, 255, 132, 137, 140, 255, 134, 139, 143, 255, 139, 144, 148, 255, 136, 141, 145, 255, 132, 136, 140, 255, 129, 134, 137, 255, 132, 137, 140, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 145, 255, 134, 139, 142, 255, 137, 142, 145, 255, 131, 136, 139, 255, 117, 122, 125, 255, 106, 111, 114, 255, 106, 111, 114, 255, 112, 117, 120, 255, 131, 136, 139, 255, 134, 139, 142, 255, 133, 138, 141, 255, 127, 132, 135, 255, 116, 121, 124, 255, 100, 105, 108, 255, 86, 91, 94, 255, 82, 87, 90, 255, 98, 102, 105, 255, 115, 119, 122, 255, 126, 130, 133, 255, 130, 135, 138, 255, 133, 137, 141, 255, 137, 142, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 125, 129, 132, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 144, 149, 255, 136, 141, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 128, 133, 137, 255, 118, 123, 126, 255, 109, 114, 117, 255, 105, 110, 113, 255, 108, 113, 116, 255, 123, 128, 131, 255, 128, 133, 136, 255, 133, 138, 141, 255, 133, 138, 141, 255, 128, 133, 136, 255, 118, 123, 126, 255, 109, 114, 117, 255, 98, 103, 106, 255, 101, 105, 108, 255, 112, 116, 119, 255, 120, 124, 127, 255, 128, 132, 135, 255, 133, 137, 141, 255, 138, 143, 147, 255, 140, 144, 148, 255, 139, 144, 148, 255, 137, 142, 145, 255, 134, 138, 141, 255, 138, 142, 146, 255, 131, 135, 139, 255, 128, 133, 136, 255, 133, 137, 141, 255, 130, 134, 138, 255, 139, 144, 148, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 143, 148, 152, 255, 141, 146, 150, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 143, 148, 255, 135, 140, 144, 255, 138, 143, 147, 255, 134, 139, 142, 255, 125, 130, 133, 255, 115, 120, 123, 255, 107, 112, 115, 255, 105, 110, 113, 255, 114, 119, 122, 255, 125, 130, 133, 255, 130, 135, 138, 255, 134, 139, 142, 255, 132, 137, 140, 255, 125, 130, 133, 255, 115, 119, 123, 255, 107, 112, 115, 255, 94, 98, 101, 255, 105, 109, 112, 255, 116, 120, 123, 255, 123, 127, 130, 255, 130, 135, 138, 255, 134, 139, 143, 255, 139, 144, 147, 255, 139, 144, 148, 255, 139, 144, 147, 255, 135, 140, 143, 255, 134, 138, 142, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 127, 132, 135, 255, 135, 140, 144, 255, 139, 144, 148, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 142, 147, 151, 255, 143, 148, 152, 255, 141, 145, 150, 255, 138, 142, 146, 255, 137, 142, 145, 255, 137, 142, 146, 255, 131, 136, 139, 255, 121, 126, 130, 255, 112, 117, 120, 255, 106, 111, 114, 255, 105, 110, 113, 255, 120, 125, 128, 255, 126, 131, 134, 255, 132, 137, 140, 255, 135, 140, 143, 255, 130, 135, 138, 255, 122, 127, 130, 255, 111, 116, 119, 255, 103, 107, 110, 255, 97, 101, 104, 255, 109, 113, 116, 255, 118, 122, 125, 255, 125, 130, 133, 255, 131, 136, 139, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 146, 255, 134, 138, 141, 255, 138, 142, 146, 255, 135, 139, 143, 255, 124, 128, 131, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 145, 150, 154, 255, 142, 147, 151, 255, 137, 142, 145, 255, 145, 150, 154, 255, 145, 150, 154, 255, 136, 141, 144, 255, 130, 135, 138, 255, 115, 120, 123, 255, 105, 110, 113, 255, 102, 107, 110, 255, 112, 117, 120, 255, 120, 125, 128, 255, 130, 135, 138, 255, 137, 142, 145, 255, 138, 143, 146, 255, 135, 140, 143, 255, 130, 135, 138, 255, 116, 120, 123, 255, 107, 111, 114, 255, 106, 110, 113, 255, 107, 111, 114, 255, 114, 118, 121, 255, 127, 131, 135, 255, 132, 137, 141, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 142, 147, 151, 255, 144, 149, 153, 255, 140, 144, 149, 255, 138, 143, 146, 255, 147, 152, 156, 255, 143, 148, 151, 255, 133, 138, 142, 255, 125, 130, 133, 255, 112, 117, 120, 255, 103, 108, 111, 255, 106, 111, 114, 255, 114, 119, 122, 255, 123, 128, 131, 255, 132, 137, 140, 255, 138, 143, 146, 255, 138, 143, 146, 255, 134, 138, 142, 255, 129, 134, 137, 255, 109, 113, 116, 255, 107, 111, 114, 255, 105, 109, 112, 255, 108, 112, 115, 255, 118, 122, 125, 255, 130, 134, 138, 255, 134, 138, 142, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 144, 149, 153, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 144, 149, 153, 255, 144, 149, 153, 255, 139, 143, 147, 255, 142, 147, 150, 255, 146, 151, 155, 255, 139, 144, 148, 255, 132, 137, 140, 255, 121, 126, 129, 255, 109, 114, 117, 255, 101, 106, 109, 255, 109, 114, 117, 255, 117, 122, 125, 255, 127, 132, 135, 255, 135, 140, 143, 255, 139, 144, 147, 255, 137, 142, 145, 255, 132, 136, 140, 255, 122, 127, 130, 255, 107, 111, 114, 255, 106, 110, 113, 255, 106, 110, 113, 255, 111, 115, 118, 255, 122, 126, 130, 255, 131, 135, 139, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 144, 149, 153, 255, 142, 147, 151, 255, 138, 143, 147, 255, 146, 151, 155, 255, 145, 150, 154, 255, 141, 146, 150, 255, 135, 140, 144, 255, 125, 131, 134, 255, 114, 119, 122, 255, 112, 118, 121, 255, 123, 128, 131, 255, 125, 131, 134, 255, 137, 143, 146, 255, 139, 145, 148, 255, 139, 144, 147, 255, 138, 143, 147, 255, 137, 142, 145, 255, 129, 133, 137, 255, 119, 123, 126, 255, 105, 109, 112, 255, 95, 99, 102, 255, 99, 103, 106, 255, 115, 119, 122, 255, 129, 133, 136, 255, 138, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 136, 141, 145, 255, 141, 146, 150, 255, 139, 144, 148, 255, 147, 152, 156, 255, 143, 149, 152, 255, 139, 144, 148, 255, 132, 137, 141, 255, 121, 127, 130, 255, 112, 118, 121, 255, 117, 122, 125, 255, 122, 127, 130, 255, 130, 136, 139, 255, 138, 144, 147, 255, 139, 144, 148, 255, 139, 144, 147, 255, 138, 143, 147, 255, 136, 141, 144, 255, 126, 130, 133, 255, 116, 119, 122, 255, 100, 104, 107, 255, 94, 98, 101, 255, 104, 108, 111, 255, 121, 125, 128, 255, 132, 137, 140, 255, 138, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 144, 149, 153, 255, 140, 145, 149, 255, 142, 147, 151, 255, 146, 151, 155, 255, 142, 147, 151, 255, 137, 142, 146, 255, 129, 135, 138, 255, 117, 123, 126, 255, 110, 116, 119, 255, 122, 127, 130, 255, 121, 126, 129, 255, 135, 141, 144, 255, 139, 145, 148, 255, 139, 144, 147, 255, 139, 144, 147, 255, 138, 143, 146, 255, 133, 137, 141, 255, 122, 126, 129, 255, 110, 114, 117, 255, 97, 101, 104, 255, 96, 100, 103, 255, 110, 114, 117, 255, 125, 129, 132, 255, 135, 139, 143, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 143, 148, 152, 255, 144, 150, 153, 255, 148, 154, 158, 255, 145, 150, 154, 255, 144, 150, 153, 255, 139, 145, 149, 255, 136, 144, 147, 255, 137, 145, 148, 255, 150, 158, 161, 255, 172, 179, 182, 255, 165, 172, 175, 255, 174, 182, 185, 255, 156, 163, 167, 255, 143, 148, 152, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 139, 143, 255, 127, 129, 133, 255, 109, 112, 116, 255, 88, 92, 95, 255, 84, 88, 91, 255, 104, 108, 111, 255, 125, 129, 132, 255, 137, 141, 144, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 141, 146, 150, 255, 145, 151, 154, 255, 148, 154, 158, 255, 144, 149, 153, 255, 142, 148, 152, 255, 138, 145, 148, 255, 136, 144, 147, 255, 140, 148, 151, 255, 161, 168, 171, 255, 166, 173, 176, 255, 172, 180, 183, 255, 168, 176, 179, 255, 151, 157, 160, 255, 141, 146, 150, 255, 139, 144, 148, 255, 141, 145, 150, 255, 132, 135, 139, 255, 124, 125, 129, 255, 101, 105, 108, 255, 84, 88, 91, 255, 89, 93, 96, 255, 112, 116, 119, 255, 130, 134, 137, 255, 138, 143, 146, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 144, 149, 153, 255, 147, 152, 156, 255, 146, 152, 156, 255, 144, 150, 153, 255, 141, 147, 151, 255, 137, 144, 148, 255, 136, 144, 147, 255, 143, 151, 154, 255, 171, 179, 182, 255, 161, 168, 171, 255, 178, 186, 189, 255, 162, 170, 173, 255, 145, 150, 154, 255, 139, 144, 148, 255, 140, 144, 149, 255, 139, 142, 147, 255, 130, 132, 136, 255, 117, 119, 123, 255, 95, 99, 102, 255, 84, 88, 91, 255, 96, 100, 103, 255, 118, 122, 125, 255, 134, 138, 141, 255, 139, 144, 147, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 143, 148, 152, 255, 141, 147, 151, 255, 147, 153, 157, 255, 146, 152, 155, 255, 145, 152, 155, 255, 141, 146, 150, 255, 138, 144, 148, 255, 148, 157, 159, 255, 176, 185, 188, 255, 206, 214, 217, 255, 198, 206, 209, 255, 185, 193, 196, 255, 161, 167, 171, 255, 145, 150, 154, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 142, 146, 255, 133, 134, 138, 255, 114, 117, 121, 255, 93, 97, 100, 255, 79, 83, 86, 255, 84, 88, 91, 255, 109, 113, 116, 255, 135, 139, 142, 255, 136, 141, 145, 255, 140, 145, 148, 255, 141, 146, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 139, 145, 148, 255, 142, 148, 151, 255, 148, 154, 158, 255, 146, 151, 155, 255, 144, 150, 153, 255, 140, 145, 149, 255, 141, 148, 151, 255, 156, 165, 167, 255, 189, 198, 201, 255, 204, 212, 215, 255, 196, 204, 207, 255, 176, 184, 187, 255, 154, 160, 163, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 141, 145, 255, 128, 130, 134, 255, 106, 110, 113, 255, 86, 90, 93, 255, 79, 83, 86, 255, 92, 96, 99, 255, 118, 122, 125, 255, 136, 140, 143, 255, 137, 142, 145, 255, 140, 145, 148, 255, 139, 144, 147, 255, 136, 142, 145, 255, 136, 142, 145, 255, 138, 143, 147, 255, 137, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 140, 146, 150, 255, 143, 149, 152, 255, 144, 150, 154, 255, 147, 153, 156, 255, 146, 152, 155, 255, 143, 148, 152, 255, 139, 144, 148, 255, 143, 151, 154, 255, 164, 173, 175, 255, 203, 211, 214, 255, 201, 209, 212, 255, 193, 201, 204, 255, 167, 175, 178, 255, 148, 153, 157, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 143, 147, 255, 137, 138, 142, 255, 121, 123, 127, 255, 100, 104, 107, 255, 83, 87, 90, 255, 82, 86, 89, 255, 100, 104, 107, 255, 127, 131, 134, 255, 136, 141, 144, 255, 139, 144, 147, 255, 141, 146, 149, 255, 141, 146, 149, 255, 139, 145, 148, 255, 139, 144, 148, 255, 137, 143, 146, 255, 133, 140, 142, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 138, 143, 147, 255, 140, 145, 149, 255, 136, 141, 145, 255, 141, 147, 151, 255, 149, 154, 158, 255, 148, 154, 157, 255, 143, 150, 153, 255, 138, 145, 148, 255, 141, 147, 150, 255, 164, 173, 175, 255, 200, 208, 211, 255, 191, 199, 202, 255, 172, 180, 183, 255, 154, 160, 164, 255, 145, 150, 154, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 143, 147, 255, 135, 136, 140, 255, 121, 124, 128, 255, 105, 109, 112, 255, 82, 86, 89, 255, 70, 74, 77, 255, 93, 97, 100, 255, 130, 134, 137, 255, 134, 139, 142, 255, 138, 143, 147, 255, 140, 145, 148, 255, 140, 145, 148, 255, 139, 145, 148, 255, 138, 145, 148, 255, 135, 142, 145, 255, 135, 141, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 141, 146, 150, 255, 139, 145, 148, 255, 136, 141, 145, 255, 144, 150, 154, 255, 149, 155, 158, 255, 146, 153, 156, 255, 141, 148, 152, 255, 138, 145, 148, 255, 147, 154, 156, 255, 180, 188, 191, 255, 198, 206, 209, 255, 185, 193, 196, 255, 165, 173, 176, 255, 150, 155, 159, 255, 143, 148, 152, 255, 140, 145, 149, 255, 138, 143, 147, 255, 141, 143, 147, 255, 130, 132, 136, 255, 116, 120, 123, 255, 98, 102, 105, 255, 76, 80, 83, 255, 76, 80, 83, 255, 106, 110, 113, 255, 132, 137, 140, 255, 135, 140, 143, 255, 138, 143, 146, 255, 140, 145, 148, 255, 138, 144, 147, 255, 138, 146, 148, 255, 138, 145, 147, 255, 134, 140, 143, 255, 137, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 146, 152, 156, 255, 148, 154, 158, 255, 145, 151, 155, 255, 140, 146, 150, 255, 139, 145, 148, 255, 152, 160, 163, 255, 195, 204, 206, 255, 196, 204, 207, 255, 179, 187, 190, 255, 157, 165, 168, 255, 146, 151, 155, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 143, 147, 255, 138, 139, 143, 255, 126, 128, 132, 255, 110, 114, 117, 255, 90, 94, 97, 255, 73, 77, 80, 255, 84, 88, 91, 255, 118, 122, 125, 255, 133, 137, 140, 255, 137, 142, 145, 255, 139, 144, 148, 255, 140, 145, 148, 255, 139, 145, 148, 255, 139, 145, 148, 255, 137, 143, 146, 255, 130, 138, 140, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 142, 149, 152, 255, 137, 142, 146, 255, 135, 140, 144, 255, 148, 153, 157, 255, 149, 154, 158, 255, 146, 153, 157, 255, 142, 150, 153, 255, 140, 148, 151, 255, 152, 160, 163, 255, 174, 182, 185, 255, 159, 167, 170, 255, 140, 148, 151, 255, 129, 136, 139, 255, 131, 136, 140, 255, 135, 140, 144, 255, 134, 139, 143, 255, 137, 140, 144, 255, 136, 137, 141, 255, 131, 134, 137, 255, 123, 127, 130, 255, 97, 101, 104, 255, 69, 73, 76, 255, 80, 84, 87, 255, 114, 118, 121, 255, 134, 139, 142, 255, 137, 142, 145, 255, 138, 143, 146, 255, 139, 144, 148, 255, 139, 145, 148, 255, 138, 145, 148, 255, 134, 141, 144, 255, 133, 140, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 134, 139, 143, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 144, 151, 154, 255, 135, 140, 144, 255, 138, 143, 147, 255, 149, 155, 158, 255, 148, 154, 158, 255, 145, 152, 156, 255, 141, 149, 152, 255, 143, 150, 153, 255, 163, 170, 173, 255, 170, 178, 181, 255, 153, 161, 164, 255, 134, 142, 145, 255, 129, 135, 138, 255, 133, 138, 142, 255, 135, 140, 144, 255, 133, 138, 142, 255, 140, 141, 145, 255, 133, 135, 138, 255, 129, 133, 136, 255, 116, 120, 123, 255, 86, 90, 93, 255, 70, 74, 77, 255, 91, 95, 98, 255, 121, 126, 129, 255, 135, 140, 143, 255, 137, 142, 145, 255, 138, 143, 146, 255, 138, 143, 146, 255, 139, 147, 149, 255, 138, 145, 148, 255, 131, 139, 141, 255, 136, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 139, 145, 148, 255, 140, 147, 150, 255, 135, 140, 144, 255, 143, 148, 152, 255, 149, 154, 158, 255, 147, 154, 157, 255, 143, 151, 154, 255, 140, 148, 151, 255, 145, 153, 155, 255, 173, 181, 184, 255, 166, 174, 177, 255, 146, 154, 157, 255, 129, 137, 140, 255, 129, 134, 138, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 138, 142, 255, 138, 139, 143, 255, 132, 134, 138, 255, 126, 130, 133, 255, 106, 110, 113, 255, 78, 82, 85, 255, 75, 79, 82, 255, 102, 106, 109, 255, 128, 132, 135, 255, 136, 141, 144, 255, 137, 142, 146, 255, 139, 144, 147, 255, 139, 145, 148, 255, 139, 146, 149, 255, 138, 143, 147, 255, 134, 141, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 144, 151, 154, 255, 137, 143, 146, 255, 139, 145, 149, 255, 141, 147, 150, 255, 148, 154, 158, 255, 147, 153, 157, 255, 144, 153, 155, 255, 144, 154, 156, 255, 152, 161, 163, 255, 161, 169, 172, 255, 139, 147, 150, 255, 114, 122, 125, 255, 102, 109, 113, 255, 107, 112, 116, 255, 115, 120, 124, 255, 117, 122, 126, 255, 129, 132, 136, 255, 136, 137, 141, 255, 139, 142, 145, 255, 138, 142, 145, 255, 116, 120, 123, 255, 83, 87, 90, 255, 73, 77, 80, 255, 87, 91, 94, 255, 126, 131, 134, 255, 132, 137, 140, 255, 136, 141, 144, 255, 138, 144, 147, 255, 139, 146, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 134, 139, 143, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 145, 152, 155, 255, 135, 141, 144, 255, 140, 146, 150, 255, 143, 149, 152, 255, 148, 154, 158, 255, 146, 153, 156, 255, 144, 153, 156, 255, 146, 155, 158, 255, 157, 166, 169, 255, 155, 163, 166, 255, 130, 138, 141, 255, 108, 116, 119, 255, 103, 108, 112, 255, 111, 116, 120, 255, 117, 122, 126, 255, 117, 122, 126, 255, 136, 137, 141, 255, 136, 137, 141, 255, 140, 144, 147, 255, 133, 137, 140, 255, 104, 108, 111, 255, 77, 81, 84, 255, 77, 81, 84, 255, 100, 104, 107, 255, 128, 133, 136, 255, 133, 138, 141, 255, 136, 141, 144, 255, 139, 145, 148, 255, 140, 148, 150, 255, 139, 145, 149, 255, 135, 141, 145, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 141, 147, 150, 255, 141, 148, 151, 255, 137, 143, 146, 255, 141, 146, 150, 255, 146, 151, 155, 255, 148, 153, 157, 255, 145, 153, 156, 255, 144, 153, 156, 255, 148, 157, 159, 255, 163, 171, 174, 255, 148, 156, 159, 255, 121, 129, 132, 255, 102, 110, 113, 255, 104, 109, 113, 255, 114, 119, 123, 255, 118, 123, 127, 255, 122, 126, 130, 255, 137, 138, 142, 255, 137, 140, 143, 255, 139, 143, 146, 255, 124, 128, 131, 255, 94, 98, 101, 255, 75, 79, 82, 255, 81, 85, 88, 255, 113, 118, 121, 255, 130, 135, 138, 255, 135, 140, 143, 255, 138, 143, 146, 255, 139, 147, 149, 255, 139, 144, 148, 255, 136, 143, 146, 255, 136, 143, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 142, 147, 151, 255, 136, 141, 145, 255, 141, 146, 150, 255, 140, 145, 150, 255, 145, 152, 156, 255, 146, 152, 156, 255, 144, 152, 155, 255, 146, 156, 158, 255, 152, 162, 164, 255, 156, 164, 167, 255, 137, 145, 148, 255, 113, 121, 124, 255, 97, 104, 107, 255, 96, 101, 105, 255, 100, 105, 109, 255, 101, 106, 110, 255, 115, 118, 122, 255, 128, 129, 133, 255, 135, 138, 141, 255, 140, 144, 147, 255, 131, 135, 138, 255, 106, 110, 113, 255, 81, 85, 88, 255, 68, 72, 75, 255, 105, 110, 113, 255, 121, 126, 129, 255, 135, 140, 143, 255, 139, 145, 147, 255, 137, 145, 147, 255, 136, 142, 145, 255, 136, 143, 146, 255, 136, 142, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 136, 141, 145, 255, 141, 147, 151, 255, 141, 147, 151, 255, 146, 152, 156, 255, 145, 152, 155, 255, 145, 153, 156, 255, 148, 158, 160, 255, 155, 164, 167, 255, 151, 159, 162, 255, 129, 137, 140, 255, 106, 114, 117, 255, 95, 101, 105, 255, 97, 102, 106, 255, 101, 106, 110, 255, 101, 106, 110, 255, 123, 125, 129, 255, 130, 131, 135, 255, 137, 141, 144, 255, 139, 143, 146, 255, 123, 127, 130, 255, 97, 101, 104, 255, 76, 80, 83, 255, 80, 84, 87, 255, 110, 115, 118, 255, 126, 131, 134, 255, 137, 142, 145, 255, 138, 145, 148, 255, 137, 145, 147, 255, 136, 143, 146, 255, 136, 143, 146, 255, 136, 142, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 145, 149, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 144, 147, 255, 141, 146, 150, 255, 143, 149, 153, 255, 146, 152, 156, 255, 145, 152, 155, 255, 145, 155, 157, 255, 150, 160, 162, 255, 158, 166, 169, 255, 145, 153, 156, 255, 121, 129, 132, 255, 99, 107, 110, 255, 94, 99, 103, 255, 98, 103, 107, 255, 101, 106, 110, 255, 107, 111, 115, 255, 126, 127, 131, 255, 132, 134, 138, 255, 139, 143, 146, 255, 135, 139, 142, 255, 115, 119, 122, 255, 89, 93, 96, 255, 71, 75, 78, 255, 92, 97, 100, 255, 115, 120, 123, 255, 131, 136, 139, 255, 139, 144, 147, 255, 138, 146, 148, 255, 136, 142, 145, 255, 133, 141, 143, 255, 137, 143, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 147, 150, 255, 139, 144, 148, 255, 141, 147, 151, 255, 142, 149, 152, 255, 138, 143, 147, 255, 145, 152, 156, 255, 145, 152, 156, 255, 147, 153, 156, 255, 146, 154, 157, 255, 147, 157, 159, 255, 150, 159, 161, 255, 146, 154, 157, 255, 142, 150, 153, 255, 129, 137, 140, 255, 113, 119, 123, 255, 102, 107, 111, 255, 97, 102, 106, 255, 95, 100, 104, 255, 101, 103, 107, 255, 110, 111, 115, 255, 120, 123, 127, 255, 131, 135, 138, 255, 139, 143, 146, 255, 131, 135, 138, 255, 100, 104, 107, 255, 67, 71, 74, 255, 81, 86, 89, 255, 109, 114, 117, 255, 136, 141, 144, 255, 141, 146, 149, 255, 133, 141, 143, 255, 131, 139, 141, 255, 134, 142, 144, 255, 137, 143, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 146, 149, 255, 142, 147, 151, 255, 137, 142, 146, 255, 143, 149, 152, 255, 141, 147, 151, 255, 139, 144, 148, 255, 146, 153, 157, 255, 146, 152, 156, 255, 147, 153, 157, 255, 146, 155, 158, 255, 148, 158, 160, 255, 148, 157, 160, 255, 145, 153, 156, 255, 139, 147, 150, 255, 123, 131, 134, 255, 108, 114, 118, 255, 100, 105, 109, 255, 96, 101, 105, 255, 94, 99, 103, 255, 104, 105, 109, 255, 114, 115, 119, 255, 124, 128, 131, 255, 135, 139, 142, 255, 138, 142, 145, 255, 122, 126, 129, 255, 88, 92, 95, 255, 70, 75, 78, 255, 90, 95, 98, 255, 119, 124, 127, 255, 139, 144, 147, 255, 138, 145, 147, 255, 131, 139, 141, 255, 132, 140, 142, 255, 136, 142, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 145, 149, 255, 143, 149, 152, 255, 139, 145, 149, 255, 142, 148, 152, 255, 145, 153, 156, 255, 146, 153, 156, 255, 147, 154, 157, 255, 146, 156, 158, 255, 150, 160, 162, 255, 147, 155, 158, 255, 145, 153, 156, 255, 136, 144, 147, 255, 117, 125, 128, 255, 104, 109, 113, 255, 98, 103, 107, 255, 95, 100, 104, 255, 97, 101, 105, 255, 108, 109, 113, 255, 117, 119, 123, 255, 128, 132, 135, 255, 137, 141, 144, 255, 135, 139, 142, 255, 111, 115, 118, 255, 77, 81, 84, 255, 75, 79, 82, 255, 99, 104, 107, 255, 129, 134, 137, 255, 141, 146, 149, 255, 135, 143, 145, 255, 130, 138, 140, 255, 129, 136, 138, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 135, 140, 144, 255, 144, 151, 154, 255, 140, 146, 150, 255, 139, 145, 149, 255, 143, 151, 155, 255, 151, 158, 162, 255, 154, 162, 165, 255, 147, 154, 157, 255, 145, 155, 157, 255, 146, 156, 158, 255, 145, 153, 156, 255, 143, 151, 154, 255, 138, 146, 149, 255, 130, 136, 140, 255, 122, 127, 131, 255, 115, 120, 124, 255, 109, 114, 118, 255, 102, 104, 108, 255, 100, 101, 105, 255, 103, 106, 109, 255, 115, 119, 122, 255, 134, 138, 141, 255, 140, 144, 147, 255, 118, 122, 125, 255, 89, 93, 96, 255, 68, 73, 76, 255, 92, 97, 100, 255, 126, 131, 134, 255, 145, 151, 154, 255, 139, 147, 149, 255, 129, 137, 139, 255, 132, 139, 142, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 146, 149, 255, 137, 142, 146, 255, 135, 140, 144, 255, 147, 154, 157, 255, 138, 144, 148, 255, 140, 147, 150, 255, 146, 154, 157, 255, 152, 160, 164, 255, 151, 159, 162, 255, 146, 154, 157, 255, 146, 155, 158, 255, 145, 154, 157, 255, 145, 153, 156, 255, 142, 150, 153, 255, 135, 143, 146, 255, 127, 133, 137, 255, 120, 125, 129, 255, 112, 117, 121, 255, 107, 112, 116, 255, 99, 100, 104, 255, 101, 102, 106, 255, 106, 110, 113, 255, 121, 125, 128, 255, 138, 142, 145, 255, 135, 139, 142, 255, 108, 112, 115, 255, 81, 85, 88, 255, 75, 80, 83, 255, 104, 109, 112, 255, 134, 139, 142, 255, 144, 151, 153, 255, 135, 143, 145, 255, 129, 137, 139, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 145, 148, 255, 136, 141, 145, 255, 140, 146, 149, 255, 144, 150, 153, 255, 139, 144, 148, 255, 142, 149, 152, 255, 148, 156, 160, 255, 153, 161, 164, 255, 149, 157, 160, 255, 146, 154, 157, 255, 146, 156, 158, 255, 145, 153, 156, 255, 145, 153, 156, 255, 141, 149, 152, 255, 132, 140, 143, 255, 124, 129, 133, 255, 117, 122, 126, 255, 110, 115, 119, 255, 104, 108, 112, 255, 99, 100, 104, 255, 102, 104, 108, 255, 110, 114, 117, 255, 128, 132, 135, 255, 139, 143, 146, 255, 126, 130, 133, 255, 99, 103, 106, 255, 73, 78, 81, 255, 82, 87, 90, 255, 115, 120, 123, 255, 143, 148, 151, 255, 143, 151, 153, 255, 130, 138, 140, 255, 136, 142, 145, 255, 138, 145, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 143, 146, 255, 137, 143, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 146, 149, 255, 143, 150, 152, 255, 141, 147, 150, 255, 140, 146, 149, 255, 142, 148, 152, 255, 148, 154, 158, 255, 152, 161, 163, 255, 143, 151, 154, 255, 145, 155, 157, 255, 149, 159, 161, 255, 147, 155, 158, 255, 144, 152, 155, 255, 140, 148, 151, 255, 137, 144, 148, 255, 135, 140, 144, 255, 131, 136, 140, 255, 127, 132, 136, 255, 117, 119, 123, 255, 107, 108, 112, 255, 99, 102, 105, 255, 98, 102, 105, 255, 112, 116, 119, 255, 125, 129, 132, 255, 127, 131, 134, 255, 118, 122, 125, 255, 79, 84, 87, 255, 88, 93, 96, 255, 114, 119, 122, 255, 140, 146, 149, 255, 140, 148, 150, 255, 133, 140, 142, 255, 137, 143, 146, 255, 137, 143, 147, 255, 136, 141, 145, 255, 137, 143, 146, 255, 136, 143, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 141, 147, 150, 255, 143, 150, 153, 255, 140, 146, 149, 255, 140, 147, 150, 255, 143, 150, 154, 255, 150, 157, 160, 255, 149, 158, 160, 255, 143, 152, 155, 255, 147, 157, 159, 255, 149, 158, 160, 255, 146, 154, 157, 255, 142, 150, 153, 255, 139, 147, 150, 255, 137, 143, 147, 255, 134, 139, 143, 255, 129, 134, 138, 255, 126, 131, 135, 255, 112, 113, 117, 255, 105, 106, 110, 255, 97, 101, 104, 255, 101, 105, 108, 255, 117, 121, 124, 255, 127, 131, 134, 255, 124, 128, 131, 255, 105, 109, 112, 255, 81, 86, 89, 255, 96, 101, 104, 255, 124, 129, 132, 255, 142, 148, 151, 255, 136, 144, 146, 255, 134, 141, 144, 255, 138, 145, 147, 255, 136, 142, 145, 255, 137, 142, 146, 255, 137, 143, 146, 255, 136, 143, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 145, 148, 255, 142, 149, 151, 255, 142, 149, 151, 255, 140, 146, 149, 255, 141, 147, 151, 255, 146, 152, 156, 255, 151, 159, 162, 255, 146, 154, 157, 255, 144, 153, 156, 255, 149, 159, 161, 255, 148, 157, 159, 255, 145, 153, 156, 255, 141, 149, 152, 255, 138, 146, 149, 255, 136, 141, 145, 255, 132, 137, 141, 255, 127, 132, 136, 255, 122, 125, 129, 255, 109, 110, 114, 255, 102, 104, 107, 255, 97, 101, 104, 255, 106, 110, 113, 255, 121, 125, 128, 255, 127, 131, 134, 255, 122, 126, 129, 255, 91, 96, 99, 255, 83, 88, 91, 255, 104, 109, 112, 255, 134, 139, 142, 255, 143, 151, 153, 255, 132, 140, 142, 255, 135, 143, 145, 255, 138, 144, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 142, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 146, 151, 155, 255, 146, 151, 155, 255, 143, 150, 153, 255, 149, 157, 159, 255, 149, 159, 161, 255, 139, 148, 150, 255, 142, 152, 154, 255, 150, 159, 162, 255, 146, 154, 157, 255, 144, 152, 155, 255, 140, 148, 151, 255, 137, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 137, 141, 255, 129, 130, 134, 255, 115, 118, 121, 255, 99, 103, 106, 255, 94, 98, 101, 255, 103, 107, 110, 255, 117, 121, 124, 255, 124, 128, 131, 255, 97, 102, 105, 255, 93, 98, 101, 255, 107, 112, 115, 255, 131, 136, 139, 255, 137, 145, 147, 255, 135, 143, 145, 255, 137, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 142, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 148, 153, 157, 255, 145, 151, 154, 255, 145, 151, 154, 255, 149, 158, 160, 255, 146, 155, 157, 255, 140, 149, 151, 255, 145, 155, 157, 255, 148, 157, 160, 255, 145, 153, 156, 255, 143, 151, 154, 255, 139, 147, 150, 255, 137, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 133, 135, 139, 255, 126, 127, 131, 255, 109, 113, 116, 255, 96, 100, 103, 255, 96, 100, 103, 255, 107, 111, 114, 255, 120, 124, 127, 255, 115, 119, 122, 255, 95, 100, 103, 255, 97, 102, 105, 255, 116, 121, 124, 255, 134, 141, 143, 255, 136, 144, 146, 255, 135, 143, 145, 255, 138, 144, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 144, 149, 153, 255, 147, 152, 156, 255, 144, 150, 153, 255, 147, 154, 157, 255, 150, 159, 161, 255, 142, 151, 154, 255, 140, 150, 152, 255, 149, 159, 161, 255, 147, 155, 158, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 140, 144, 255, 131, 132, 136, 255, 121, 123, 126, 255, 104, 108, 111, 255, 95, 99, 102, 255, 99, 103, 106, 255, 112, 116, 119, 255, 122, 126, 129, 255, 106, 110, 113, 255, 93, 98, 101, 255, 100, 105, 108, 255, 124, 129, 132, 255, 137, 145, 147, 255, 135, 143, 145, 255, 137, 145, 147, 255, 140, 148, 150, 255, 135, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 153, 159, 163, 255, 141, 150, 152, 255, 133, 144, 146, 255, 139, 148, 151, 255, 146, 155, 158, 255, 148, 156, 159, 255, 142, 151, 153, 255, 139, 148, 151, 255, 144, 153, 156, 255, 145, 153, 156, 255, 144, 152, 155, 255, 141, 149, 152, 255, 137, 144, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 142, 144, 148, 255, 144, 145, 149, 255, 138, 141, 145, 255, 122, 126, 129, 255, 106, 110, 113, 255, 99, 103, 106, 255, 101, 105, 108, 255, 104, 108, 111, 255, 102, 107, 110, 255, 99, 104, 107, 255, 110, 115, 118, 255, 131, 136, 139, 255, 139, 147, 149, 255, 138, 146, 148, 255, 139, 146, 149, 255, 138, 145, 148, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 145, 150, 154, 255, 154, 161, 165, 255, 136, 145, 148, 255, 134, 144, 147, 255, 142, 150, 153, 255, 147, 155, 158, 255, 146, 154, 157, 255, 141, 150, 152, 255, 141, 150, 153, 255, 145, 153, 156, 255, 145, 153, 156, 255, 143, 151, 154, 255, 140, 148, 151, 255, 136, 142, 146, 255, 134, 139, 143, 255, 135, 140, 144, 255, 138, 143, 147, 255, 143, 144, 148, 255, 144, 145, 149, 255, 134, 138, 141, 255, 116, 120, 123, 255, 102, 106, 109, 255, 99, 103, 106, 255, 102, 106, 109, 255, 103, 108, 111, 255, 100, 105, 108, 255, 102, 107, 110, 255, 118, 123, 126, 255, 134, 141, 144, 255, 139, 147, 149, 255, 137, 145, 147, 255, 140, 148, 150, 255, 136, 142, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 149, 155, 158, 255, 147, 156, 158, 255, 135, 144, 147, 255, 137, 146, 149, 255, 144, 152, 155, 255, 147, 156, 159, 255, 144, 153, 155, 255, 139, 148, 151, 255, 143, 152, 155, 255, 145, 153, 156, 255, 145, 153, 156, 255, 142, 150, 153, 255, 138, 146, 149, 255, 135, 140, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 140, 144, 148, 255, 144, 145, 149, 255, 141, 143, 147, 255, 128, 132, 135, 255, 111, 115, 118, 255, 101, 105, 108, 255, 100, 104, 107, 255, 103, 107, 110, 255, 103, 107, 110, 255, 99, 104, 107, 255, 105, 110, 113, 255, 125, 130, 133, 255, 138, 146, 148, 255, 138, 146, 148, 255, 136, 144, 146, 255, 139, 147, 149, 255, 133, 138, 142, 255, 139, 144, 148, 255, 139, 144, 148, 255, 134, 139, 143, 255, 131, 136, 140, 255, 131, 136, 140, 255, 132, 137, 141, 255, 135, 140, 144, 255, 138, 144, 147, 255, 141, 147, 150, 255, 143, 150, 153, 255, 129, 138, 140, 255, 95, 105, 106, 255, 84, 94, 96, 255, 97, 108, 110, 255, 127, 137, 139, 255, 147, 156, 158, 255, 149, 159, 161, 255, 145, 155, 157, 255, 146, 155, 157, 255, 145, 152, 155, 255, 146, 153, 156, 255, 144, 152, 155, 255, 140, 146, 150, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 141, 145, 255, 142, 143, 147, 255, 146, 149, 152, 255, 141, 145, 148, 255, 132, 136, 139, 255, 120, 124, 127, 255, 107, 111, 114, 255, 96, 100, 103, 255, 103, 108, 111, 255, 108, 113, 116, 255, 122, 127, 130, 255, 138, 143, 146, 255, 140, 148, 150, 255, 137, 145, 147, 255, 137, 145, 147, 255, 136, 143, 146, 255, 135, 140, 144, 255, 139, 144, 148, 255, 137, 142, 146, 255, 133, 138, 142, 255, 131, 136, 140, 255, 131, 136, 140, 255, 132, 137, 141, 255, 137, 142, 146, 255, 138, 144, 147, 255, 142, 148, 151, 255, 142, 149, 152, 255, 120, 130, 131, 255, 86, 96, 98, 255, 87, 97, 99, 255, 107, 117, 119, 255, 135, 145, 147, 255, 148, 157, 159, 255, 147, 157, 159, 255, 145, 155, 157, 255, 145, 154, 156, 255, 146, 153, 156, 255, 146, 153, 156, 255, 143, 151, 154, 255, 138, 144, 148, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 138, 139, 143, 255, 145, 146, 150, 255, 145, 149, 152, 255, 138, 142, 145, 255, 128, 132, 135, 255, 115, 119, 122, 255, 103, 107, 110, 255, 98, 103, 106, 255, 104, 109, 112, 255, 113, 118, 121, 255, 128, 133, 136, 255, 139, 146, 148, 255, 139, 147, 149, 255, 136, 144, 146, 255, 139, 147, 149, 255, 134, 139, 143, 255, 137, 142, 146, 255, 140, 145, 149, 255, 136, 141, 145, 255, 132, 137, 141, 255, 131, 136, 140, 255, 131, 136, 140, 255, 134, 139, 143, 255, 138, 143, 147, 255, 140, 146, 149, 255, 143, 149, 152, 255, 136, 144, 146, 255, 107, 117, 119, 255, 85, 95, 97, 255, 92, 102, 105, 255, 117, 127, 129, 255, 141, 150, 152, 255, 148, 158, 160, 255, 146, 156, 158, 255, 146, 156, 158, 255, 145, 152, 155, 255, 146, 153, 156, 255, 145, 153, 156, 255, 141, 149, 152, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 142, 146, 255, 140, 141, 145, 255, 145, 147, 151, 255, 143, 147, 150, 255, 135, 139, 142, 255, 124, 128, 131, 255, 111, 115, 118, 255, 100, 104, 107, 255, 100, 105, 108, 255, 106, 111, 114, 255, 117, 122, 125, 255, 134, 139, 142, 255, 141, 149, 151, 255, 138, 146, 148, 255, 133, 141, 143, 255, 136, 144, 146, 255, 131, 136, 140, 255, 137, 142, 146, 255, 139, 144, 148, 255, 134, 139, 143, 255, 130, 135, 139, 255, 131, 136, 140, 255, 134, 139, 143, 255, 136, 141, 145, 255, 139, 145, 148, 255, 141, 148, 150, 255, 120, 127, 130, 255, 88, 97, 98, 255, 90, 100, 102, 255, 80, 90, 92, 255, 79, 89, 91, 255, 107, 117, 119, 255, 140, 150, 152, 255, 149, 159, 161, 255, 146, 156, 158, 255, 144, 154, 156, 255, 142, 150, 153, 255, 143, 150, 154, 255, 142, 150, 153, 255, 140, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 141, 145, 255, 140, 141, 145, 255, 140, 143, 146, 255, 140, 144, 147, 255, 142, 146, 149, 255, 139, 143, 146, 255, 129, 133, 136, 255, 116, 120, 123, 255, 114, 119, 122, 255, 123, 128, 131, 255, 134, 139, 142, 255, 140, 145, 148, 255, 136, 144, 146, 255, 133, 141, 143, 255, 134, 142, 144, 255, 133, 140, 143, 255, 133, 138, 142, 255, 139, 144, 148, 255, 137, 142, 146, 255, 132, 137, 141, 255, 130, 135, 139, 255, 132, 137, 141, 255, 135, 140, 144, 255, 136, 141, 145, 255, 141, 147, 150, 255, 140, 148, 150, 255, 108, 116, 118, 255, 81, 91, 92, 255, 90, 100, 102, 255, 77, 88, 90, 255, 87, 97, 99, 255, 119, 129, 131, 255, 143, 153, 155, 255, 148, 158, 160, 255, 145, 155, 157, 255, 143, 152, 154, 255, 142, 150, 153, 255, 143, 150, 154, 255, 141, 149, 152, 255, 139, 145, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 141, 145, 255, 141, 142, 146, 255, 140, 144, 147, 255, 141, 145, 148, 255, 141, 145, 148, 255, 136, 140, 143, 255, 124, 128, 131, 255, 115, 119, 122, 255, 117, 122, 125, 255, 126, 131, 134, 255, 136, 141, 144, 255, 138, 145, 147, 255, 134, 142, 144, 255, 133, 141, 143, 255, 135, 143, 145, 255, 131, 137, 140, 255, 135, 140, 144, 255, 140, 145, 149, 255, 136, 141, 145, 255, 130, 135, 139, 255, 130, 135, 139, 255, 133, 138, 142, 255, 136, 141, 145, 255, 137, 142, 146, 255, 141, 148, 151, 255, 130, 138, 140, 255, 98, 107, 108, 255, 85, 95, 97, 255, 85, 95, 97, 255, 78, 89, 91, 255, 97, 107, 109, 255, 129, 139, 141, 255, 147, 157, 159, 255, 147, 157, 159, 255, 145, 155, 157, 255, 142, 150, 153, 255, 142, 150, 153, 255, 142, 150, 153, 255, 140, 148, 151, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 140, 141, 145, 255, 140, 142, 146, 255, 140, 144, 147, 255, 141, 145, 148, 255, 140, 144, 147, 255, 132, 136, 139, 255, 120, 124, 127, 255, 114, 119, 122, 255, 119, 124, 127, 255, 130, 135, 138, 255, 139, 144, 147, 255, 137, 145, 147, 255, 133, 141, 143, 255, 132, 140, 142, 255, 131, 139, 141, 255, 131, 136, 140, 255, 135, 140, 144, 255, 135, 140, 144, 255, 132, 137, 141, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 128, 133, 137, 255, 121, 127, 130, 255, 108, 116, 118, 255, 100, 108, 110, 255, 99, 109, 110, 255, 126, 136, 138, 255, 108, 119, 121, 255, 90, 100, 102, 255, 107, 117, 119, 255, 139, 149, 151, 255, 149, 159, 161, 255, 143, 153, 155, 255, 138, 148, 150, 255, 140, 148, 151, 255, 138, 146, 149, 255, 136, 144, 147, 255, 135, 142, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 143, 147, 255, 143, 144, 148, 255, 138, 141, 145, 255, 136, 140, 143, 255, 140, 144, 147, 255, 144, 148, 151, 255, 141, 145, 148, 255, 133, 137, 140, 255, 129, 134, 137, 255, 133, 138, 141, 255, 137, 142, 145, 255, 138, 143, 146, 255, 135, 143, 145, 255, 133, 141, 143, 255, 132, 140, 142, 255, 131, 138, 140, 255, 132, 137, 141, 255, 135, 140, 144, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 130, 135, 139, 255, 126, 131, 135, 255, 118, 125, 127, 255, 103, 111, 113, 255, 99, 107, 109, 255, 103, 113, 114, 255, 129, 139, 141, 255, 100, 111, 113, 255, 93, 103, 105, 255, 118, 128, 130, 255, 143, 153, 155, 255, 147, 157, 159, 255, 141, 151, 153, 255, 139, 148, 150, 255, 139, 147, 150, 255, 137, 145, 148, 255, 135, 143, 146, 255, 135, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 143, 144, 148, 255, 142, 143, 147, 255, 137, 141, 144, 255, 136, 140, 143, 255, 141, 145, 148, 255, 143, 147, 150, 255, 138, 142, 145, 255, 131, 136, 139, 255, 131, 136, 139, 255, 134, 139, 142, 255, 137, 142, 145, 255, 137, 144, 146, 255, 135, 143, 145, 255, 133, 141, 143, 255, 132, 140, 142, 255, 131, 136, 140, 255, 134, 139, 143, 255, 136, 141, 145, 255, 133, 138, 142, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 129, 134, 138, 255, 124, 129, 133, 255, 112, 120, 122, 255, 101, 109, 111, 255, 99, 108, 109, 255, 115, 125, 126, 255, 119, 129, 131, 255, 95, 105, 107, 255, 100, 110, 112, 255, 128, 138, 140, 255, 146, 156, 158, 255, 145, 155, 157, 255, 139, 149, 151, 255, 140, 148, 151, 255, 139, 147, 150, 255, 136, 144, 147, 255, 134, 142, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 142, 146, 255, 143, 144, 148, 255, 140, 142, 146, 255, 136, 140, 143, 255, 138, 142, 145, 255, 143, 147, 150, 255, 142, 146, 149, 255, 135, 139, 142, 255, 130, 135, 138, 255, 132, 137, 140, 255, 136, 141, 144, 255, 138, 143, 146, 255, 136, 144, 146, 255, 134, 142, 144, 255, 133, 141, 143, 255, 127, 135, 137, 255, 132, 137, 141, 255, 132, 137, 141, 255, 132, 137, 141, 255, 133, 138, 141, 255, 134, 139, 143, 255, 129, 134, 138, 255, 119, 124, 128, 255, 100, 105, 109, 255, 91, 97, 99, 255, 100, 107, 109, 255, 125, 132, 134, 255, 139, 145, 147, 255, 129, 138, 140, 255, 101, 111, 113, 255, 84, 94, 96, 255, 105, 115, 117, 255, 141, 150, 152, 255, 153, 162, 165, 255, 146, 154, 157, 255, 141, 150, 152, 255, 144, 152, 155, 255, 139, 147, 150, 255, 134, 142, 145, 255, 134, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 140, 144, 255, 138, 141, 145, 255, 140, 143, 147, 255, 140, 144, 147, 255, 141, 145, 148, 255, 143, 147, 150, 255, 140, 144, 147, 255, 134, 138, 141, 255, 137, 142, 145, 255, 135, 140, 143, 255, 134, 139, 142, 255, 136, 142, 145, 255, 139, 147, 149, 255, 138, 146, 148, 255, 131, 139, 141, 255, 129, 136, 139, 255, 132, 137, 141, 255, 132, 137, 141, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 126, 131, 135, 255, 116, 121, 124, 255, 92, 97, 100, 255, 93, 99, 101, 255, 104, 111, 113, 255, 136, 142, 144, 255, 138, 145, 147, 255, 121, 130, 132, 255, 93, 103, 105, 255, 89, 99, 101, 255, 118, 127, 130, 255, 146, 155, 157, 255, 151, 160, 162, 255, 144, 152, 155, 255, 143, 151, 153, 255, 143, 150, 153, 255, 137, 145, 148, 255, 134, 141, 144, 255, 134, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 139, 143, 255, 139, 143, 146, 255, 140, 144, 147, 255, 140, 144, 147, 255, 142, 146, 149, 255, 142, 146, 150, 255, 138, 142, 145, 255, 135, 139, 142, 255, 136, 141, 144, 255, 135, 140, 143, 255, 135, 140, 143, 255, 137, 144, 146, 255, 140, 147, 149, 255, 136, 143, 146, 255, 129, 137, 139, 255, 131, 136, 140, 255, 132, 137, 141, 255, 132, 137, 141, 255, 132, 137, 140, 255, 135, 140, 144, 255, 132, 137, 141, 255, 123, 128, 132, 255, 109, 114, 117, 255, 90, 95, 97, 255, 97, 103, 105, 255, 115, 122, 124, 255, 137, 143, 145, 255, 134, 141, 143, 255, 111, 121, 123, 255, 88, 98, 100, 255, 97, 107, 109, 255, 129, 138, 141, 255, 150, 159, 161, 255, 149, 157, 160, 255, 142, 150, 152, 255, 144, 152, 155, 255, 141, 149, 152, 255, 135, 143, 146, 255, 133, 141, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 140, 144, 255, 140, 143, 146, 255, 140, 144, 147, 255, 141, 145, 148, 255, 142, 147, 150, 255, 141, 145, 148, 255, 136, 140, 143, 255, 136, 140, 144, 255, 136, 141, 144, 255, 134, 139, 142, 255, 135, 140, 143, 255, 138, 146, 148, 255, 140, 148, 150, 255, 133, 139, 143, 255, 131, 136, 139, 255, 131, 135, 138, 255, 132, 136, 140, 255, 135, 140, 143, 255, 132, 137, 140, 255, 119, 123, 126, 255, 99, 103, 106, 255, 85, 89, 92, 255, 91, 96, 97, 255, 113, 117, 119, 255, 132, 137, 138, 255, 145, 149, 151, 255, 135, 139, 141, 255, 106, 112, 115, 255, 87, 96, 98, 255, 90, 99, 101, 255, 119, 128, 130, 255, 148, 154, 158, 255, 150, 158, 161, 255, 146, 152, 156, 255, 146, 152, 155, 255, 146, 152, 156, 255, 142, 148, 152, 255, 138, 144, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 144, 148, 255, 138, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 137, 142, 145, 255, 138, 144, 147, 255, 135, 141, 145, 255, 132, 138, 142, 255, 131, 136, 139, 255, 131, 135, 138, 255, 134, 138, 141, 255, 135, 140, 143, 255, 129, 133, 136, 255, 112, 116, 119, 255, 93, 97, 100, 255, 83, 87, 89, 255, 98, 102, 103, 255, 121, 125, 126, 255, 137, 142, 143, 255, 147, 151, 153, 255, 126, 131, 133, 255, 97, 104, 107, 255, 86, 95, 97, 255, 99, 108, 110, 255, 130, 138, 140, 255, 149, 156, 159, 255, 148, 156, 159, 255, 146, 152, 155, 255, 146, 152, 156, 255, 145, 151, 155, 255, 141, 146, 150, 255, 137, 143, 147, 255, 137, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 143, 147, 255, 138, 142, 146, 255, 137, 142, 146, 255, 134, 139, 143, 255, 135, 140, 143, 255, 138, 143, 146, 255, 137, 143, 146, 255, 134, 140, 144, 255, 131, 137, 140, 255, 131, 135, 138, 255, 131, 135, 139, 255, 135, 139, 143, 255, 136, 140, 143, 255, 125, 129, 132, 255, 105, 109, 112, 255, 87, 91, 94, 255, 85, 90, 91, 255, 106, 110, 111, 255, 127, 131, 133, 255, 141, 146, 147, 255, 141, 145, 147, 255, 116, 122, 124, 255, 92, 100, 102, 255, 88, 97, 99, 255, 109, 118, 120, 255, 139, 146, 149, 255, 149, 157, 161, 255, 147, 153, 157, 255, 146, 151, 155, 255, 147, 153, 157, 255, 144, 150, 154, 255, 139, 145, 148, 255, 136, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 142, 147, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 142, 255, 136, 141, 144, 255, 138, 144, 147, 255, 137, 143, 146, 255, 131, 136, 140, 255, 132, 137, 141, 255, 141, 145, 148, 255, 128, 132, 135, 255, 115, 119, 122, 255, 103, 107, 110, 255, 87, 91, 94, 255, 75, 79, 82, 255, 85, 89, 91, 255, 104, 108, 109, 255, 125, 129, 130, 255, 138, 142, 143, 255, 131, 135, 137, 255, 112, 116, 118, 255, 87, 91, 95, 255, 88, 94, 97, 255, 110, 116, 120, 255, 137, 142, 146, 255, 151, 156, 160, 255, 147, 152, 156, 255, 144, 149, 153, 255, 145, 150, 154, 255, 146, 151, 155, 255, 143, 148, 152, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 132, 137, 141, 255, 131, 136, 140, 255, 136, 141, 144, 255, 137, 141, 144, 255, 124, 128, 131, 255, 112, 116, 119, 255, 98, 102, 105, 255, 82, 86, 89, 255, 73, 77, 79, 255, 95, 99, 100, 255, 107, 111, 112, 255, 134, 138, 139, 255, 138, 142, 144, 255, 127, 131, 133, 255, 104, 108, 109, 255, 82, 87, 91, 255, 94, 101, 104, 255, 120, 125, 129, 255, 142, 148, 152, 255, 149, 155, 159, 255, 145, 151, 155, 255, 144, 149, 153, 255, 146, 151, 155, 255, 145, 150, 154, 255, 142, 147, 151, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 140, 145, 149, 255, 135, 140, 144, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 131, 136, 140, 255, 140, 144, 147, 255, 133, 137, 140, 255, 119, 123, 126, 255, 109, 113, 116, 255, 93, 97, 100, 255, 77, 81, 84, 255, 76, 80, 81, 255, 102, 106, 107, 255, 115, 119, 120, 255, 137, 141, 143, 255, 135, 139, 141, 255, 120, 124, 125, 255, 95, 100, 102, 255, 85, 91, 94, 255, 102, 108, 112, 255, 128, 134, 138, 255, 147, 152, 156, 255, 148, 154, 158, 255, 144, 150, 154, 255, 145, 150, 154, 255, 146, 151, 155, 255, 144, 149, 153, 255, 141, 146, 150, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 133, 138, 142, 255, 133, 138, 142, 255, 138, 143, 147, 255, 143, 147, 150, 255, 113, 117, 120, 255, 85, 89, 92, 255, 74, 78, 81, 255, 74, 78, 81, 255, 82, 86, 88, 255, 98, 102, 103, 255, 120, 124, 125, 255, 131, 135, 136, 255, 126, 130, 132, 255, 116, 120, 121, 255, 96, 100, 101, 255, 77, 81, 85, 255, 98, 103, 107, 255, 132, 137, 141, 255, 149, 154, 158, 255, 149, 154, 158, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 145, 150, 154, 255, 143, 148, 152, 255, 139, 144, 148, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 151, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 142, 146, 150, 255, 134, 138, 141, 255, 103, 107, 110, 255, 81, 85, 88, 255, 74, 78, 81, 255, 76, 80, 83, 255, 86, 90, 92, 255, 104, 108, 109, 255, 128, 132, 133, 255, 131, 135, 136, 255, 124, 128, 130, 255, 110, 114, 116, 255, 88, 92, 93, 255, 78, 83, 87, 255, 110, 115, 119, 255, 140, 145, 149, 255, 150, 155, 159, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 135, 140, 144, 255, 140, 145, 149, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 132, 137, 141, 255, 136, 141, 145, 255, 145, 149, 153, 255, 124, 128, 131, 255, 93, 97, 100, 255, 76, 80, 83, 255, 73, 77, 80, 255, 78, 82, 85, 255, 92, 96, 97, 255, 112, 116, 117, 255, 132, 136, 137, 255, 129, 133, 134, 255, 120, 124, 125, 255, 103, 107, 109, 255, 82, 87, 89, 255, 88, 93, 97, 255, 121, 126, 130, 255, 145, 150, 154, 255, 149, 154, 158, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 145, 150, 154, 255, 144, 149, 153, 255, 141, 146, 150, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 141, 146, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 144, 149, 153, 255, 156, 161, 165, 255, 138, 142, 145, 255, 105, 109, 112, 255, 80, 84, 87, 255, 80, 84, 87, 255, 93, 97, 100, 255, 110, 114, 116, 255, 122, 126, 127, 255, 127, 131, 132, 255, 125, 129, 130, 255, 115, 119, 120, 255, 99, 103, 105, 255, 85, 89, 90, 255, 84, 89, 92, 255, 114, 119, 123, 255, 148, 153, 157, 255, 153, 158, 162, 255, 145, 150, 154, 255, 144, 149, 153, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 131, 136, 140, 255, 135, 140, 144, 255, 149, 154, 158, 255, 151, 155, 159, 255, 127, 131, 134, 255, 95, 99, 102, 255, 78, 82, 85, 255, 83, 87, 90, 255, 99, 103, 106, 255, 115, 119, 121, 255, 125, 129, 130, 255, 127, 131, 132, 255, 124, 128, 129, 255, 111, 115, 116, 255, 93, 97, 99, 255, 82, 86, 88, 255, 90, 95, 99, 255, 127, 132, 136, 255, 152, 157, 161, 255, 151, 156, 160, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 141, 146, 150, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 132, 137, 141, 255, 131, 136, 140, 255, 139, 144, 148, 255, 153, 158, 162, 255, 146, 150, 153, 255, 117, 121, 124, 255, 85, 89, 92, 255, 76, 80, 83, 255, 88, 92, 95, 255, 105, 109, 112, 255, 120, 124, 125, 255, 126, 130, 131, 255, 127, 131, 132, 255, 120, 124, 125, 255, 105, 109, 110, 255, 89, 93, 95, 255, 83, 88, 90, 255, 102, 107, 111, 255, 138, 143, 147, 255, 153, 158, 162, 255, 148, 153, 157, 255, 144, 149, 153, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 131, 136, 140, 255, 131, 136, 140, 255, 161, 166, 170, 255, 183, 188, 192, 255, 156, 160, 163, 255, 125, 129, 132, 255, 103, 107, 110, 255, 107, 111, 114, 255, 119, 123, 126, 255, 129, 133, 135, 255, 131, 135, 136, 255, 126, 130, 131, 255, 119, 123, 124, 255, 109, 113, 114, 255, 94, 98, 99, 255, 83, 87, 88, 255, 106, 110, 114, 255, 133, 138, 142, 255, 153, 158, 162, 255, 150, 155, 159, 255, 143, 148, 152, 255, 146, 151, 155, 255, 146, 151, 155, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 140, 145, 149, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 138, 143, 147, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 131, 136, 140, 255, 128, 133, 137, 255, 142, 147, 151, 255, 169, 174, 178, 255, 175, 179, 183, 255, 146, 150, 153, 255, 116, 120, 123, 255, 103, 107, 110, 255, 111, 115, 118, 255, 123, 127, 130, 255, 131, 135, 137, 255, 130, 134, 135, 255, 124, 128, 129, 255, 117, 121, 122, 255, 105, 109, 111, 255, 88, 92, 93, 255, 84, 88, 90, 255, 117, 122, 126, 255, 141, 146, 150, 255, 154, 159, 163, 255, 147, 152, 156, 255, 144, 149, 153, 255, 146, 151, 155, 255, 145, 150, 154, 255, 143, 148, 152, 255, 144, 149, 153, 255, 143, 148, 152, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 140, 145, 149, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 129, 134, 138, 255, 130, 135, 139, 255, 150, 155, 159, 255, 178, 183, 187, 255, 166, 171, 174, 255, 136, 140, 143, 255, 107, 111, 114, 255, 103, 107, 110, 255, 115, 119, 122, 255, 127, 131, 134, 255, 132, 136, 137, 255, 128, 132, 133, 255, 121, 125, 126, 255, 113, 117, 118, 255, 99, 103, 104, 255, 85, 89, 90, 255, 95, 99, 102, 255, 125, 130, 134, 255, 147, 152, 156, 255, 152, 157, 161, 255, 145, 150, 154, 255, 145, 150, 154, 255, 147, 152, 156, 255, 144, 149, 153, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 140, 145, 149, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 133, 138, 142, 255, 127, 132, 136, 255, 133, 138, 142, 255, 177, 182, 186, 255, 208, 213, 217, 255, 194, 198, 201, 255, 162, 166, 169, 255, 135, 139, 142, 255, 131, 135, 138, 255, 133, 137, 140, 255, 132, 136, 139, 255, 128, 132, 133, 255, 119, 123, 124, 255, 112, 116, 117, 255, 101, 105, 107, 255, 88, 92, 93, 255, 85, 89, 90, 255, 127, 132, 135, 255, 146, 151, 155, 255, 151, 156, 160, 255, 148, 153, 157, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 131, 136, 140, 255, 130, 135, 139, 255, 151, 156, 160, 255, 188, 193, 197, 255, 204, 209, 213, 255, 183, 187, 190, 255, 151, 155, 158, 255, 133, 137, 140, 255, 132, 136, 139, 255, 133, 137, 140, 255, 132, 136, 137, 255, 126, 130, 131, 255, 115, 119, 120, 255, 110, 114, 116, 255, 95, 99, 102, 255, 85, 89, 90, 255, 92, 96, 97, 255, 141, 146, 150, 255, 148, 153, 157, 255, 151, 156, 160, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 129, 134, 138, 255, 134, 139, 143, 255, 163, 168, 172, 255, 200, 205, 209, 255, 201, 205, 208, 255, 173, 177, 180, 255, 141, 145, 148, 255, 130, 134, 137, 255, 133, 137, 140, 255, 133, 137, 140, 255, 130, 134, 135, 255, 123, 127, 128, 255, 113, 117, 118, 255, 106, 110, 112, 255, 91, 95, 98, 255, 85, 89, 90, 255, 109, 114, 116, 255, 143, 148, 152, 255, 150, 155, 159, 255, 149, 154, 158, 255, 145, 150, 154, 255, 145, 150, 154, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 134, 139, 143, 255, 126, 131, 135, 255, 139, 144, 148, 255, 192, 197, 201, 255, 224, 229, 233, 255, 211, 215, 218, 255, 180, 184, 187, 255, 153, 157, 160, 255, 142, 146, 149, 255, 136, 140, 143, 255, 128, 132, 135, 255, 120, 124, 125, 255, 114, 118, 119, 255, 108, 112, 114, 255, 92, 96, 99, 255, 88, 92, 94, 255, 103, 107, 108, 255, 142, 147, 150, 255, 149, 154, 158, 255, 149, 154, 158, 255, 152, 157, 161, 255, 149, 154, 158, 255, 141, 146, 150, 255, 141, 146, 150, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 141, 146, 150, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 132, 137, 141, 255, 136, 141, 145, 255, 163, 168, 172, 255, 203, 208, 212, 255, 221, 226, 229, 255, 202, 206, 209, 255, 170, 174, 177, 255, 148, 152, 155, 255, 140, 144, 147, 255, 134, 138, 141, 255, 126, 130, 132, 255, 117, 121, 122, 255, 114, 118, 119, 255, 104, 108, 111, 255, 86, 90, 93, 255, 91, 95, 96, 255, 113, 117, 118, 255, 151, 156, 160, 255, 149, 154, 158, 255, 150, 155, 159, 255, 151, 156, 160, 255, 146, 151, 155, 255, 141, 146, 150, 255, 142, 147, 151, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 132, 137, 141, 255, 143, 148, 152, 255, 176, 181, 185, 255, 215, 220, 224, 255, 218, 222, 226, 255, 192, 196, 199, 255, 160, 164, 167, 255, 144, 148, 151, 255, 138, 142, 145, 255, 131, 135, 138, 255, 123, 127, 128, 255, 115, 119, 120, 255, 111, 115, 116, 255, 98, 102, 105, 255, 87, 91, 93, 255, 97, 101, 102, 255, 127, 132, 134, 255, 150, 155, 159, 255, 149, 154, 158, 255, 151, 156, 160, 255, 150, 155, 159, 255, 144, 149, 153, 255, 140, 145, 149, 255, 143, 148, 152, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 137, 142, 146, 255, 139, 144, 148, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 133, 138, 142, 255, 131, 136, 140, 255, 149, 154, 158, 255, 206, 211, 215, 255, 226, 231, 235, 255, 201, 205, 208, 255, 174, 178, 181, 255, 150, 154, 157, 255, 140, 144, 147, 255, 132, 136, 139, 255, 123, 127, 129, 255, 117, 121, 122, 255, 112, 116, 117, 255, 98, 102, 104, 255, 84, 88, 91, 255, 97, 101, 103, 255, 128, 132, 133, 255, 149, 154, 158, 255, 148, 153, 157, 255, 150, 155, 159, 255, 155, 160, 164, 255, 151, 156, 160, 255, 140, 145, 149, 255, 138, 143, 147, 255, 143, 148, 152, 255, 144, 149, 153, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 131, 136, 140, 255, 147, 152, 156, 255, 181, 186, 190, 255, 214, 219, 223, 255, 219, 223, 227, 255, 193, 197, 200, 255, 165, 169, 172, 255, 146, 150, 153, 255, 138, 142, 145, 255, 129, 133, 136, 255, 120, 124, 126, 255, 116, 120, 121, 255, 110, 114, 115, 255, 92, 96, 99, 255, 82, 86, 89, 255, 107, 111, 112, 255, 139, 143, 144, 255, 152, 157, 161, 255, 148, 153, 157, 255, 151, 156, 160, 255, 154, 159, 163, 255, 147, 152, 156, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 148, 152, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 130, 135, 139, 255, 134, 139, 143, 255, 157, 162, 166, 255, 193, 198, 202, 255, 222, 227, 231, 255, 211, 215, 218, 255, 184, 188, 191, 255, 156, 160, 163, 255, 143, 147, 150, 255, 135, 139, 142, 255, 126, 130, 133, 255, 118, 122, 123, 255, 114, 118, 119, 255, 104, 108, 110, 255, 87, 91, 94, 255, 89, 93, 96, 255, 118, 122, 123, 255, 144, 149, 151, 255, 150, 155, 159, 255, 149, 154, 158, 255, 153, 158, 162, 255, 152, 157, 161, 255, 143, 148, 152, 255, 138, 143, 147, 255, 142, 147, 151, 255, 144, 149, 153, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 133, 138, 142, 255, 129, 134, 138, 255, 138, 143, 147, 255, 167, 172, 176, 255, 216, 221, 225, 255, 212, 217, 221, 255, 181, 185, 188, 255, 158, 162, 165, 255, 138, 142, 145, 255, 130, 134, 137, 255, 126, 130, 133, 255, 118, 122, 124, 255, 112, 116, 117, 255, 102, 106, 107, 255, 88, 92, 94, 255, 85, 89, 92, 255, 109, 113, 114, 255, 142, 146, 147, 255, 152, 156, 160, 255, 150, 155, 159, 255, 150, 155, 159, 255, 150, 155, 159, 255, 148, 153, 157, 255, 143, 148, 152, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 143, 148, 152, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 136, 141, 145, 255, 136, 141, 145, 255, 127, 132, 136, 255, 129, 134, 138, 255, 161, 166, 170, 255, 200, 205, 209, 255, 216, 221, 225, 255, 202, 207, 210, 255, 174, 178, 181, 255, 151, 155, 158, 255, 135, 139, 142, 255, 129, 133, 136, 255, 123, 127, 130, 255, 115, 119, 121, 255, 110, 114, 115, 255, 98, 102, 103, 255, 83, 87, 90, 255, 87, 91, 94, 255, 121, 125, 126, 255, 151, 155, 156, 255, 151, 156, 160, 255, 149, 154, 158, 255, 150, 155, 159, 255, 150, 155, 159, 255, 146, 151, 155, 255, 142, 147, 151, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 133, 138, 142, 255, 126, 131, 135, 255, 138, 143, 147, 255, 176, 181, 185, 255, 208, 213, 217, 255, 216, 221, 225, 255, 192, 196, 199, 255, 167, 171, 174, 255, 144, 148, 151, 255, 132, 136, 139, 255, 128, 132, 135, 255, 121, 125, 128, 255, 113, 117, 118, 255, 107, 111, 112, 255, 92, 96, 98, 255, 83, 87, 90, 255, 98, 102, 104, 255, 132, 136, 137, 255, 151, 156, 158, 255, 151, 156, 160, 255, 150, 155, 159, 255, 150, 155, 159, 255, 149, 154, 158, 255, 144, 149, 153, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 143, 148, 152, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 130, 135, 139, 255, 124, 129, 133, 255, 146, 151, 155, 255, 190, 195, 199, 255, 209, 214, 218, 255, 192, 197, 201, 255, 162, 166, 169, 255, 144, 148, 151, 255, 129, 133, 136, 255, 122, 126, 129, 255, 118, 122, 125, 255, 111, 115, 117, 255, 104, 108, 109, 255, 93, 97, 98, 255, 81, 85, 87, 255, 89, 93, 96, 255, 118, 122, 124, 255, 147, 151, 152, 255, 152, 156, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 129, 134, 138, 255, 140, 145, 149, 255, 175, 180, 184, 255, 205, 210, 214, 255, 204, 209, 213, 255, 182, 186, 190, 255, 156, 160, 163, 255, 138, 142, 145, 255, 126, 130, 133, 255, 122, 126, 129, 255, 116, 120, 123, 255, 108, 112, 114, 255, 102, 106, 107, 255, 87, 91, 92, 255, 79, 83, 86, 255, 95, 99, 102, 255, 130, 134, 135, 255, 154, 158, 159, 255, 151, 156, 160, 255, 150, 155, 159, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 151, 156, 160, 255, 188, 193, 197, 255, 207, 212, 216, 255, 199, 204, 208, 255, 172, 176, 179, 255, 150, 154, 157, 255, 133, 137, 140, 255, 124, 128, 131, 255, 121, 125, 128, 255, 114, 118, 121, 255, 106, 110, 111, 255, 98, 102, 103, 255, 83, 87, 89, 255, 83, 87, 90, 255, 107, 111, 113, 255, 139, 143, 144, 255, 153, 157, 160, 255, 150, 155, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 145, 150, 154, 255, 143, 148, 152, 255, 143, 148, 152, 255, 140, 145, 149, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 130, 135, 139, 255, 132, 137, 141, 255, 161, 166, 170, 255, 200, 205, 209, 255, 192, 197, 201, 255, 171, 176, 180, 255, 145, 149, 152, 255, 132, 136, 139, 255, 121, 125, 128, 255, 116, 120, 123, 255, 110, 114, 117, 255, 100, 104, 106, 255, 92, 96, 97, 255, 81, 85, 86, 255, 78, 82, 84, 255, 97, 101, 104, 255, 126, 130, 132, 255, 150, 154, 155, 255, 150, 155, 158, 255, 148, 153, 157, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 145, 150, 154, 255, 141, 146, 150, 255, 143, 148, 152, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 129, 134, 138, 255, 134, 139, 143, 255, 157, 162, 166, 255, 187, 192, 196, 255, 198, 203, 207, 255, 186, 191, 195, 255, 162, 167, 170, 255, 140, 144, 147, 255, 128, 132, 135, 255, 120, 124, 127, 255, 115, 119, 122, 255, 107, 111, 114, 255, 97, 101, 102, 255, 90, 94, 95, 255, 76, 80, 81, 255, 81, 85, 87, 255, 105, 109, 112, 255, 137, 141, 142, 255, 154, 158, 160, 255, 149, 154, 158, 255, 148, 153, 157, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 130, 135, 139, 255, 140, 145, 149, 255, 167, 172, 176, 255, 193, 198, 202, 255, 196, 201, 205, 255, 179, 184, 188, 255, 153, 157, 160, 255, 136, 140, 143, 255, 124, 128, 131, 255, 118, 122, 125, 255, 113, 117, 120, 255, 103, 107, 110, 255, 94, 98, 99, 255, 86, 90, 91, 255, 75, 79, 81, 255, 89, 93, 95, 255, 116, 120, 123, 255, 144, 148, 149, 255, 152, 157, 159, 255, 149, 154, 158, 255, 148, 153, 157, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 142, 147, 151, 255, 144, 149, 153, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 131, 136, 140, 255, 130, 135, 139, 255, 147, 152, 156, 255, 178, 183, 187, 255, 200, 205, 209, 255, 173, 178, 182, 255, 152, 157, 161, 255, 133, 137, 140, 255, 122, 126, 129, 255, 112, 116, 119, 255, 104, 108, 111, 255, 95, 99, 102, 255, 84, 88, 90, 255, 77, 81, 83, 255, 74, 78, 79, 255, 88, 92, 94, 255, 114, 118, 121, 255, 137, 141, 143, 255, 148, 152, 154, 255, 148, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 143, 148, 152, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 129, 134, 138, 255, 140, 145, 149, 255, 168, 173, 177, 255, 190, 195, 199, 255, 187, 192, 196, 255, 166, 171, 175, 255, 146, 150, 154, 255, 130, 134, 137, 255, 119, 123, 126, 255, 110, 114, 117, 255, 102, 106, 109, 255, 91, 95, 98, 255, 81, 85, 86, 255, 76, 80, 82, 255, 72, 76, 77, 255, 98, 102, 104, 255, 121, 125, 128, 255, 144, 148, 150, 255, 149, 153, 155, 255, 147, 152, 156, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 132, 137, 141, 255, 131, 136, 140, 255, 149, 154, 158, 255, 177, 182, 186, 255, 192, 197, 201, 255, 180, 185, 189, 255, 160, 165, 169, 255, 139, 144, 147, 255, 126, 130, 133, 255, 115, 119, 122, 255, 107, 111, 114, 255, 99, 103, 106, 255, 87, 91, 94, 255, 78, 82, 83, 255, 75, 79, 80, 255, 79, 83, 84, 255, 107, 111, 114, 255, 129, 133, 136, 255, 146, 150, 152, 255, 148, 153, 155, 255, 147, 152, 156, 255, 146, 151, 155, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 130, 135, 139, 255, 134, 139, 143, 255, 158, 163, 167, 255, 186, 191, 195, 255, 193, 198, 202, 255, 157, 162, 166, 255, 137, 142, 146, 255, 124, 128, 131, 255, 109, 113, 116, 255, 95, 99, 102, 255, 84, 88, 91, 255, 76, 80, 83, 255, 71, 75, 77, 255, 71, 75, 76, 255, 78, 82, 83, 255, 105, 109, 112, 255, 135, 139, 142, 255, 143, 147, 150, 255, 143, 147, 150, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 143, 148, 152, 255, 142, 147, 151, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 129, 134, 138, 255, 135, 140, 144, 255, 152, 157, 161, 255, 173, 178, 182, 255, 183, 188, 192, 255, 172, 177, 181, 255, 150, 155, 159, 255, 133, 138, 141, 255, 119, 123, 126, 255, 104, 108, 111, 255, 91, 95, 98, 255, 82, 86, 89, 255, 74, 78, 81, 255, 70, 74, 75, 255, 72, 76, 78, 255, 81, 85, 86, 255, 119, 123, 126, 255, 141, 145, 148, 255, 143, 148, 151, 255, 143, 147, 150, 255, 146, 151, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 143, 148, 152, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 140, 145, 149, 255, 159, 164, 168, 255, 178, 183, 187, 255, 182, 187, 191, 255, 165, 170, 174, 255, 144, 149, 153, 255, 129, 133, 136, 255, 115, 119, 122, 255, 99, 103, 106, 255, 88, 92, 95, 255, 79, 83, 86, 255, 71, 75, 78, 255, 70, 74, 75, 255, 75, 79, 80, 255, 92, 96, 97, 255, 128, 132, 135, 255, 142, 146, 149, 255, 143, 147, 150, 255, 144, 149, 152, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 143, 148, 152, 255, 143, 148, 152, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 131, 136, 140, 255, 132, 137, 141, 255, 145, 150, 154, 255, 167, 172, 176, 255, 183, 188, 192, 255, 180, 185, 189, 255, 142, 147, 151, 255, 123, 128, 132, 255, 107, 111, 114, 255, 91, 95, 98, 255, 77, 81, 84, 255, 71, 75, 78, 255, 71, 75, 78, 255, 74, 78, 80, 255, 80, 84, 85, 255, 92, 96, 97, 255, 123, 128, 130, 255, 142, 147, 150, 255, 141, 146, 149, 255, 142, 146, 149, 255, 140, 145, 149, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 133, 138, 142, 255, 123, 128, 132, 255, 148, 153, 157, 255, 171, 176, 180, 255, 177, 182, 186, 255, 172, 177, 181, 255, 156, 161, 165, 255, 136, 141, 145, 255, 118, 122, 126, 255, 102, 106, 109, 255, 86, 90, 93, 255, 75, 79, 82, 255, 71, 75, 78, 255, 71, 75, 78, 255, 76, 80, 81, 255, 82, 86, 87, 255, 97, 101, 102, 255, 137, 142, 145, 255, 142, 147, 151, 255, 140, 145, 149, 255, 142, 146, 149, 255, 140, 145, 149, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 129, 134, 138, 255, 131, 136, 140, 255, 156, 161, 165, 255, 173, 178, 182, 255, 176, 181, 185, 255, 168, 173, 177, 255, 149, 154, 158, 255, 130, 135, 139, 255, 113, 117, 120, 255, 97, 101, 104, 255, 81, 85, 88, 255, 72, 76, 79, 255, 70, 74, 77, 255, 72, 76, 79, 255, 78, 82, 83, 255, 86, 90, 91, 255, 109, 114, 115, 255, 141, 146, 149, 255, 141, 146, 150, 255, 141, 146, 149, 255, 141, 146, 149, 255, 142, 147, 151, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 135, 140, 144, 255, 134, 139, 143, 255, 125, 130, 134, 255, 139, 144, 148, 255, 164, 169, 173, 255, 176, 181, 185, 255, 175, 180, 184, 255, 164, 169, 173, 255, 120, 125, 129, 255, 97, 102, 106, 255, 85, 89, 92, 255, 76, 80, 83, 255, 74, 78, 81, 255, 82, 86, 89, 255, 91, 95, 98, 255, 99, 103, 105, 255, 106, 110, 112, 255, 116, 121, 123, 255, 133, 138, 141, 255, 135, 140, 144, 255, 138, 143, 147, 255, 146, 150, 152, 255, 141, 145, 149, 255, 143, 148, 152, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 134, 139, 143, 255, 132, 137, 141, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 132, 137, 141, 255, 128, 133, 137, 255, 173, 178, 182, 255, 198, 203, 207, 255, 184, 189, 193, 255, 159, 164, 168, 255, 136, 141, 145, 255, 112, 117, 121, 255, 93, 97, 101, 255, 82, 86, 89, 255, 75, 79, 82, 255, 76, 80, 83, 255, 85, 89, 92, 255, 94, 98, 101, 255, 102, 106, 107, 255, 108, 112, 114, 255, 120, 125, 127, 255, 140, 144, 148, 255, 132, 137, 140, 255, 142, 147, 150, 255, 147, 151, 152, 255, 139, 144, 148, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 135, 140, 144, 255, 133, 138, 142, 255, 132, 137, 141, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 134, 139, 143, 255, 130, 135, 139, 255, 143, 148, 152, 255, 183, 188, 192, 255, 195, 200, 204, 255, 176, 181, 185, 255, 152, 157, 161, 255, 128, 133, 137, 255, 105, 110, 114, 255, 89, 93, 96, 255, 79, 83, 86, 255, 73, 77, 80, 255, 78, 82, 85, 255, 88, 92, 95, 255, 96, 100, 103, 255, 104, 108, 110, 255, 112, 116, 118, 255, 127, 132, 134, 255, 139, 143, 147, 255, 135, 140, 143, 255, 144, 148, 151, 255, 144, 148, 151, 255, 141, 146, 150, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 133, 138, 142, 255, 132, 137, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 127, 132, 136, 255, 158, 163, 167, 255, 193, 198, 202, 255, 192, 197, 201, 255, 167, 172, 176, 255, 145, 150, 154, 255, 93, 98, 103, 255, 71, 76, 80, 255, 71, 75, 78, 255, 75, 79, 82, 255, 87, 91, 94, 255, 103, 107, 110, 255, 116, 120, 123, 255, 124, 128, 131, 255, 129, 134, 137, 255, 130, 135, 138, 255, 131, 136, 139, 255, 137, 142, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 145, 150, 154, 255, 144, 149, 153, 255, 140, 145, 150, 255, 140, 145, 149, 255, 136, 141, 146, 255, 131, 136, 140, 255, 138, 143, 147, 255, 137, 142, 147, 255, 136, 141, 146, 255, 134, 139, 144, 255, 132, 137, 142, 255, 131, 136, 141, 255, 131, 136, 141, 255, 132, 137, 142, 255, 132, 137, 142, 255, 133, 138, 143, 255, 134, 140, 144, 255, 135, 141, 145, 255, 135, 141, 145, 255, 133, 139, 143, 255, 131, 136, 141, 255, 142, 148, 152, 255, 203, 208, 213, 255, 225, 230, 233, 255, 184, 190, 194, 255, 136, 142, 146, 255, 108, 114, 118, 255, 85, 90, 95, 255, 71, 76, 79, 255, 72, 76, 79, 255, 78, 82, 85, 255, 92, 96, 99, 255, 109, 113, 116, 255, 118, 122, 125, 255, 127, 131, 134, 255, 130, 134, 137, 255, 130, 135, 138, 255, 131, 136, 139, 255, 140, 145, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 145, 150, 154, 255, 142, 147, 152, 255, 140, 145, 149, 255, 139, 144, 149, 255, 134, 139, 143, 255, 134, 139, 143, 255, 138, 143, 147, 255, 137, 142, 147, 255, 136, 141, 145, 255, 133, 138, 143, 255, 131, 136, 141, 255, 131, 136, 141, 255, 131, 136, 141, 255, 132, 137, 142, 255, 133, 138, 143, 255, 134, 139, 144, 255, 135, 141, 145, 255, 135, 141, 145, 255, 134, 140, 144, 255, 132, 138, 142, 255, 133, 139, 143, 255, 163, 168, 173, 255, 214, 219, 223, 255, 213, 219, 222, 255, 167, 173, 177, 255, 126, 132, 137, 255, 101, 106, 111, 255, 77, 82, 87, 255, 71, 75, 79, 255, 72, 76, 79, 255, 82, 86, 89, 255, 97, 101, 104, 255, 114, 118, 121, 255, 121, 125, 128, 255, 129, 133, 136, 255, 130, 135, 138, 255, 130, 135, 138, 255, 134, 139, 142, 255, 140, 145, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 144, 149, 153, 255, 144, 149, 154, 255, 141, 146, 151, 255, 140, 145, 149, 255, 138, 143, 148, 255, 131, 136, 141, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 142, 255, 131, 136, 141, 255, 131, 136, 141, 255, 132, 137, 142, 255, 132, 137, 142, 255, 133, 138, 143, 255, 134, 139, 144, 255, 135, 141, 145, 255, 135, 141, 145, 255, 133, 139, 143, 255, 131, 137, 141, 255, 136, 141, 146, 255, 183, 188, 193, 255, 224, 229, 233, 255, 202, 207, 211, 255, 150, 156, 160, 255, 116, 122, 127, 255, //end of texture 0 83, 90, 94, 255, 104, 108, 112, 255, 121, 125, 128, 255, 130, 134, 138, 255, 134, 139, 142, 255, 138, 142, 146, 255, 149, 153, 157, 255, 142, 147, 152, 255, 147, 152, 158, 255, 128, 133, 138, 255, 140, 145, 150, 255, 137, 142, 148, 255, 132, 137, 143, 255, 134, 139, 144, 255, 134, 140, 144, 255, 130, 137, 143, 255, 134, 140, 145, 255, 132, 139, 144, 255, 137, 144, 150, 255, 197, 204, 209, 255, 102, 109, 115, 255, 79, 87, 92, 255, 96, 101, 104, 255, 116, 121, 124, 255, 127, 131, 135, 255, 133, 138, 141, 255, 135, 140, 143, 255, 147, 151, 156, 255, 146, 150, 155, 255, 144, 149, 155, 255, 133, 138, 144, 255, 137, 142, 146, 255, 139, 144, 149, 255, 133, 138, 144, 255, 134, 139, 145, 255, 134, 139, 144, 255, 132, 138, 144, 255, 132, 139, 145, 255, 134, 140, 146, 255, 132, 138, 144, 255, 184, 191, 196, 255, 140, 147, 152, 255, 78, 85, 91, 255, 89, 94, 98, 255, 110, 115, 118, 255, 124, 128, 132, 255, 132, 137, 140, 255, 134, 139, 143, 255, 142, 146, 150, 255, 149, 152, 157, 255, 143, 148, 154, 255, 140, 145, 151, 255, 133, 138, 143, 255, 140, 145, 150, 255, 135, 140, 145, 255, 132, 137, 143, 255, 134, 139, 144, 255, 133, 139, 144, 255, 131, 138, 143, 255, 134, 140, 145, 255, 130, 137, 143, 255, 161, 168, 174, 255, 178, 185, 190, 255, 80, 87, 93, 255, 127, 133, 137, 255, 130, 134, 137, 255, 133, 138, 142, 255, 136, 141, 145, 255, 138, 143, 147, 255, 144, 148, 153, 255, 147, 150, 155, 255, 144, 149, 155, 255, 185, 190, 195, 255, 102, 107, 113, 255, 94, 99, 104, 255, 129, 134, 139, 255, 136, 141, 146, 255, 129, 134, 139, 255, 135, 140, 145, 255, 134, 140, 144, 255, 135, 140, 145, 255, 132, 138, 144, 255, 129, 135, 141, 255, 119, 125, 131, 255, 89, 96, 102, 255, 122, 129, 134, 255, 128, 132, 136, 255, 131, 136, 139, 255, 135, 140, 144, 255, 138, 143, 147, 255, 141, 145, 150, 255, 148, 151, 156, 255, 142, 146, 151, 255, 174, 179, 184, 255, 138, 143, 148, 255, 86, 91, 96, 255, 120, 125, 129, 255, 136, 141, 146, 255, 129, 134, 140, 255, 132, 137, 143, 255, 130, 136, 142, 255, 133, 138, 144, 255, 133, 139, 145, 255, 129, 136, 142, 255, 126, 133, 139, 255, 92, 99, 104, 255, 112, 119, 124, 255, 127, 131, 135, 255, 132, 137, 141, 255, 134, 139, 143, 255, 137, 142, 146, 255, 138, 143, 147, 255, 147, 150, 155, 255, 144, 148, 153, 255, 158, 163, 169, 255, 167, 172, 177, 255, 88, 93, 99, 255, 107, 112, 117, 255, 134, 139, 144, 255, 133, 138, 144, 255, 131, 136, 141, 255, 134, 140, 145, 255, 135, 140, 144, 255, 134, 140, 145, 255, 131, 137, 143, 255, 130, 136, 142, 255, 103, 110, 116, 255, 98, 105, 111, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 141, 145, 255, 137, 142, 146, 255, 134, 139, 143, 255, 140, 144, 148, 255, 142, 145, 150, 255, 141, 146, 150, 255, 143, 148, 152, 255, 124, 129, 133, 255, 113, 118, 122, 255, 95, 100, 104, 255, 102, 107, 111, 255, 123, 128, 132, 255, 128, 133, 137, 255, 133, 138, 142, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 131, 136, 140, 255, 128, 133, 137, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 135, 140, 143, 255, 144, 147, 152, 255, 141, 145, 149, 255, 143, 148, 152, 255, 129, 134, 138, 255, 121, 126, 130, 255, 97, 102, 106, 255, 97, 102, 106, 255, 117, 122, 126, 255, 127, 132, 136, 255, 129, 134, 138, 255, 131, 136, 140, 255, 133, 138, 142, 255, 134, 139, 143, 255, 132, 137, 141, 255, 128, 133, 137, 255, 133, 138, 142, 255, 135, 139, 143, 255, 136, 141, 144, 255, 137, 141, 145, 255, 137, 142, 146, 255, 133, 137, 141, 255, 144, 147, 152, 255, 141, 144, 149, 255, 142, 147, 151, 255, 135, 140, 144, 255, 125, 130, 134, 255, 102, 107, 111, 255, 96, 101, 105, 255, 109, 114, 118, 255, 127, 132, 136, 255, 129, 134, 138, 255, 133, 138, 142, 255, 132, 137, 141, 255, 134, 139, 143, 255, 133, 138, 142, 255, 130, 135, 139, 255, 129, 134, 138, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 144, 148, 255, 136, 141, 145, 255, 130, 135, 139, 255, 105, 110, 114, 255, 125, 130, 134, 255, 125, 130, 134, 255, 95, 100, 103, 255, 91, 96, 100, 255, 107, 112, 116, 255, 126, 131, 135, 255, 129, 134, 138, 255, 133, 138, 142, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 143, 147, 255, 131, 136, 140, 255, 113, 118, 122, 255, 116, 121, 125, 255, 131, 136, 140, 255, 103, 108, 112, 255, 88, 93, 97, 255, 99, 104, 108, 255, 122, 127, 131, 255, 130, 135, 138, 255, 131, 136, 140, 255, 135, 140, 144, 255, 133, 138, 142, 255, 133, 138, 142, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 134, 139, 142, 255, 122, 127, 131, 255, 108, 113, 117, 255, 131, 136, 140, 255, 114, 119, 123, 255, 89, 94, 97, 255, 95, 100, 104, 255, 115, 120, 123, 255, 129, 133, 137, 255, 130, 135, 139, 255, 135, 140, 144, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 134, 139, 142, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 151, 255, 141, 146, 150, 255, 137, 142, 146, 255, 134, 139, 142, 255, 113, 118, 121, 255, 108, 113, 116, 255, 127, 132, 135, 255, 132, 137, 140, 255, 119, 124, 127, 255, 101, 105, 108, 255, 108, 112, 115, 255, 124, 128, 131, 255, 135, 139, 143, 255, 138, 143, 147, 255, 137, 142, 145, 255, 136, 141, 145, 255, 134, 138, 142, 255, 136, 141, 145, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 138, 142, 146, 255, 137, 142, 146, 255, 120, 125, 128, 255, 107, 112, 115, 255, 121, 126, 129, 255, 132, 137, 140, 255, 125, 130, 133, 255, 106, 111, 114, 255, 101, 105, 108, 255, 120, 124, 127, 255, 132, 136, 140, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 134, 139, 142, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 141, 146, 150, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 146, 255, 127, 132, 135, 255, 109, 114, 117, 255, 114, 119, 122, 255, 130, 135, 138, 255, 130, 135, 138, 255, 112, 117, 120, 255, 99, 103, 106, 255, 115, 119, 122, 255, 128, 132, 136, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 133, 138, 142, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 148, 152, 255, 142, 148, 151, 255, 129, 135, 138, 255, 113, 119, 122, 255, 126, 132, 135, 255, 140, 146, 149, 255, 139, 144, 147, 255, 131, 135, 139, 255, 111, 115, 118, 255, 99, 103, 106, 255, 124, 128, 132, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 140, 145, 149, 255, 145, 150, 154, 255, 134, 140, 143, 255, 116, 122, 125, 255, 121, 127, 130, 255, 136, 142, 145, 255, 140, 145, 148, 255, 136, 141, 145, 255, 118, 121, 124, 255, 99, 103, 106, 255, 115, 119, 122, 255, 135, 140, 143, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 145, 150, 154, 255, 139, 144, 148, 255, 122, 128, 131, 255, 117, 122, 125, 255, 131, 136, 139, 255, 141, 146, 149, 255, 138, 142, 146, 255, 125, 129, 132, 255, 105, 109, 112, 255, 106, 110, 113, 255, 131, 136, 139, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 145, 148, 255, 145, 150, 154, 255, 146, 152, 155, 255, 139, 145, 149, 255, 157, 166, 168, 255, 195, 203, 206, 255, 171, 178, 181, 255, 142, 147, 151, 255, 139, 143, 147, 255, 123, 125, 129, 255, 86, 90, 93, 255, 100, 104, 107, 255, 136, 141, 144, 255, 141, 146, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 138, 143, 147, 255, 143, 149, 153, 255, 147, 153, 157, 255, 142, 148, 151, 255, 145, 153, 156, 255, 189, 197, 200, 255, 182, 190, 193, 255, 148, 153, 157, 255, 140, 145, 149, 255, 133, 134, 138, 255, 96, 100, 103, 255, 88, 92, 95, 255, 128, 132, 135, 255, 139, 144, 147, 255, 138, 143, 147, 255, 137, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 141, 147, 150, 255, 146, 152, 156, 255, 144, 150, 153, 255, 140, 146, 150, 255, 177, 185, 188, 255, 190, 198, 201, 255, 157, 163, 167, 255, 140, 145, 149, 255, 137, 140, 144, 255, 110, 113, 116, 255, 84, 88, 91, 255, 116, 120, 123, 255, 138, 143, 146, 255, 141, 146, 149, 255, 139, 145, 148, 255, 134, 141, 144, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 148, 154, 158, 255, 143, 151, 154, 255, 148, 155, 158, 255, 172, 180, 183, 255, 140, 147, 150, 255, 135, 140, 144, 255, 136, 140, 144, 255, 132, 135, 138, 255, 107, 111, 114, 255, 76, 80, 83, 255, 125, 130, 133, 255, 138, 143, 146, 255, 139, 145, 148, 255, 136, 143, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 144, 150, 153, 255, 146, 153, 156, 255, 142, 150, 153, 255, 171, 179, 182, 255, 149, 157, 160, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 138, 142, 255, 120, 124, 127, 255, 78, 82, 85, 255, 109, 113, 116, 255, 136, 141, 144, 255, 138, 144, 146, 255, 139, 146, 148, 255, 134, 141, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 148, 154, 158, 255, 141, 149, 152, 255, 162, 170, 172, 255, 162, 170, 173, 255, 133, 140, 143, 255, 136, 141, 145, 255, 137, 139, 143, 255, 127, 130, 133, 255, 91, 95, 98, 255, 91, 95, 98, 255, 132, 137, 140, 255, 139, 144, 147, 255, 139, 145, 149, 255, 136, 143, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 144, 148, 255, 143, 149, 153, 255, 145, 152, 156, 255, 149, 159, 161, 255, 147, 155, 158, 255, 105, 112, 116, 255, 100, 105, 109, 255, 111, 115, 119, 255, 133, 135, 139, 255, 134, 138, 141, 255, 91, 95, 98, 255, 90, 95, 98, 255, 129, 134, 137, 255, 138, 145, 148, 255, 137, 143, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 140, 146, 149, 255, 146, 152, 156, 255, 146, 155, 158, 255, 154, 162, 165, 255, 117, 125, 128, 255, 98, 103, 107, 255, 104, 109, 113, 255, 129, 130, 134, 255, 139, 143, 146, 255, 107, 111, 114, 255, 79, 84, 87, 255, 121, 126, 129, 255, 138, 143, 146, 255, 137, 145, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 145, 149, 255, 145, 151, 155, 255, 145, 153, 156, 255, 154, 163, 166, 255, 133, 141, 144, 255, 97, 104, 107, 255, 102, 107, 111, 255, 119, 122, 126, 255, 136, 140, 143, 255, 122, 126, 129, 255, 80, 84, 87, 255, 107, 112, 115, 255, 135, 140, 143, 255, 137, 145, 147, 255, 134, 141, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 145, 149, 255, 140, 146, 150, 255, 147, 154, 158, 255, 150, 157, 160, 255, 146, 156, 158, 255, 144, 152, 155, 255, 132, 140, 143, 255, 115, 120, 124, 255, 103, 107, 111, 255, 104, 106, 110, 255, 127, 131, 134, 255, 128, 132, 135, 255, 78, 82, 85, 255, 112, 117, 120, 255, 140, 147, 150, 255, 131, 139, 141, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 141, 148, 151, 255, 139, 145, 149, 255, 150, 158, 161, 255, 146, 155, 158, 255, 145, 153, 156, 255, 138, 146, 149, 255, 120, 125, 129, 255, 107, 112, 116, 255, 101, 103, 106, 255, 116, 120, 123, 255, 135, 139, 142, 255, 92, 96, 99, 255, 93, 98, 101, 255, 139, 145, 147, 255, 132, 139, 142, 255, 136, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 142, 148, 151, 255, 141, 147, 151, 255, 150, 157, 161, 255, 147, 155, 158, 255, 146, 155, 158, 255, 143, 151, 154, 255, 126, 132, 135, 255, 110, 115, 119, 255, 101, 104, 108, 255, 109, 112, 116, 255, 134, 138, 141, 255, 110, 114, 117, 255, 80, 84, 87, 255, 130, 135, 138, 255, 135, 143, 145, 255, 138, 144, 147, 255, 137, 142, 146, 255, 136, 142, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 144, 150, 153, 255, 145, 152, 155, 255, 145, 154, 157, 255, 146, 156, 158, 255, 145, 153, 156, 255, 139, 146, 150, 255, 136, 141, 145, 255, 133, 137, 141, 255, 119, 121, 125, 255, 100, 104, 107, 255, 113, 117, 120, 255, 108, 112, 115, 255, 101, 106, 109, 255, 136, 142, 145, 255, 136, 143, 146, 255, 137, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 138, 143, 147, 255, 142, 148, 152, 255, 143, 150, 153, 255, 147, 156, 159, 255, 143, 153, 155, 255, 147, 156, 158, 255, 141, 149, 152, 255, 137, 142, 146, 255, 135, 140, 144, 255, 126, 127, 131, 255, 103, 107, 110, 255, 107, 111, 114, 255, 116, 121, 124, 255, 94, 99, 102, 255, 127, 133, 136, 255, 136, 144, 146, 255, 137, 143, 147, 255, 137, 142, 146, 255, 136, 142, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 149, 153, 255, 148, 155, 159, 255, 142, 152, 154, 255, 148, 157, 160, 255, 144, 152, 155, 255, 138, 144, 147, 255, 135, 140, 144, 255, 130, 132, 136, 255, 111, 114, 117, 255, 102, 106, 109, 255, 119, 123, 126, 255, 97, 102, 105, 255, 114, 119, 122, 255, 137, 145, 147, 255, 138, 145, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 133, 138, 142, 255, 134, 139, 143, 255, 140, 145, 149, 255, 136, 143, 145, 255, 104, 114, 116, 255, 119, 129, 131, 255, 146, 156, 158, 255, 144, 153, 156, 255, 145, 152, 155, 255, 141, 148, 151, 255, 136, 141, 145, 255, 138, 142, 146, 255, 144, 146, 149, 255, 131, 135, 138, 255, 112, 116, 119, 255, 102, 107, 110, 255, 114, 119, 122, 255, 138, 144, 147, 255, 137, 145, 147, 255, 136, 142, 145, 255, 138, 143, 147, 255, 133, 138, 142, 255, 133, 138, 142, 255, 138, 143, 147, 255, 140, 146, 149, 255, 114, 124, 126, 255, 108, 118, 120, 255, 142, 151, 153, 255, 145, 154, 156, 255, 145, 153, 156, 255, 143, 151, 154, 255, 137, 142, 146, 255, 137, 142, 146, 255, 143, 144, 148, 255, 137, 141, 144, 255, 118, 122, 125, 255, 104, 108, 111, 255, 108, 113, 116, 255, 132, 138, 140, 255, 137, 145, 147, 255, 136, 143, 146, 255, 138, 143, 147, 255, 134, 139, 143, 255, 132, 137, 141, 255, 136, 141, 145, 255, 140, 146, 149, 255, 126, 135, 137, 255, 103, 113, 115, 255, 132, 141, 144, 255, 145, 155, 157, 255, 145, 153, 156, 255, 145, 152, 155, 255, 139, 145, 149, 255, 136, 141, 145, 255, 141, 143, 147, 255, 142, 145, 148, 255, 124, 128, 131, 255, 107, 111, 114, 255, 104, 109, 112, 255, 124, 129, 132, 255, 138, 146, 148, 255, 133, 140, 143, 255, 133, 138, 142, 255, 134, 139, 143, 255, 133, 138, 142, 255, 129, 134, 138, 255, 119, 126, 129, 255, 106, 114, 116, 255, 107, 117, 119, 255, 96, 106, 108, 255, 145, 154, 157, 255, 143, 152, 154, 255, 140, 148, 151, 255, 137, 144, 147, 255, 136, 141, 145, 255, 138, 142, 146, 255, 140, 142, 146, 255, 139, 143, 146, 255, 140, 144, 147, 255, 127, 131, 134, 255, 133, 138, 141, 255, 137, 144, 146, 255, 133, 141, 143, 255, 132, 138, 141, 255, 135, 140, 144, 255, 133, 138, 142, 255, 131, 136, 140, 255, 122, 128, 131, 255, 111, 119, 121, 255, 109, 118, 120, 255, 91, 101, 103, 255, 131, 140, 142, 255, 146, 155, 157, 255, 141, 149, 152, 255, 138, 146, 149, 255, 136, 142, 145, 255, 136, 141, 145, 255, 141, 142, 146, 255, 138, 142, 145, 255, 142, 146, 149, 255, 130, 134, 137, 255, 129, 134, 137, 255, 137, 143, 146, 255, 134, 142, 144, 255, 132, 139, 141, 255, 135, 140, 144, 255, 133, 138, 142, 255, 133, 138, 142, 255, 125, 131, 134, 255, 116, 123, 125, 255, 106, 115, 117, 255, 98, 108, 110, 255, 113, 123, 125, 255, 147, 156, 158, 255, 141, 150, 153, 255, 139, 147, 150, 255, 136, 143, 146, 255, 136, 141, 145, 255, 139, 142, 146, 255, 139, 142, 146, 255, 141, 145, 148, 255, 135, 139, 142, 255, 127, 132, 135, 255, 136, 141, 144, 255, 136, 143, 146, 255, 131, 137, 141, 255, 132, 137, 140, 255, 131, 135, 139, 255, 112, 116, 119, 255, 95, 100, 102, 255, 116, 121, 122, 255, 135, 140, 142, 255, 101, 108, 111, 255, 104, 113, 115, 255, 148, 156, 159, 255, 145, 152, 155, 255, 143, 150, 154, 255, 136, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 143, 147, 255, 141, 146, 150, 255, 141, 146, 149, 255, 138, 142, 146, 255, 135, 140, 143, 255, 138, 143, 146, 255, 133, 140, 143, 255, 131, 136, 140, 255, 132, 136, 140, 255, 121, 125, 129, 255, 97, 102, 105, 255, 106, 110, 112, 255, 134, 139, 141, 255, 115, 121, 123, 255, 94, 103, 105, 255, 138, 146, 149, 255, 147, 154, 157, 255, 144, 151, 154, 255, 137, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 145, 255, 140, 145, 148, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 145, 255, 136, 142, 145, 255, 131, 137, 140, 255, 132, 136, 140, 255, 128, 133, 136, 255, 103, 107, 110, 255, 98, 103, 104, 255, 126, 131, 133, 255, 128, 133, 136, 255, 94, 102, 104, 255, 123, 131, 133, 255, 148, 156, 159, 255, 145, 152, 155, 255, 141, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 148, 255, 142, 147, 150, 255, 140, 144, 147, 255, 137, 142, 146, 255, 136, 141, 144, 255, 138, 144, 147, 255, 136, 141, 145, 255, 129, 133, 136, 255, 87, 91, 94, 255, 81, 85, 88, 255, 107, 111, 112, 255, 128, 132, 134, 255, 109, 113, 114, 255, 88, 93, 97, 255, 137, 142, 146, 255, 147, 152, 156, 255, 144, 149, 153, 255, 144, 149, 153, 255, 137, 142, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 137, 142, 146, 255, 135, 140, 144, 255, 133, 138, 142, 255, 137, 141, 145, 255, 98, 102, 105, 255, 80, 84, 87, 255, 95, 99, 101, 255, 127, 131, 132, 255, 120, 124, 125, 255, 86, 90, 93, 255, 122, 127, 131, 255, 148, 153, 157, 255, 144, 149, 153, 255, 143, 148, 152, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 133, 138, 142, 255, 140, 144, 148, 255, 112, 116, 119, 255, 82, 86, 89, 255, 86, 90, 91, 255, 119, 123, 124, 255, 126, 130, 131, 255, 96, 100, 102, 255, 103, 108, 112, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 134, 139, 143, 255, 168, 173, 177, 255, 139, 143, 146, 255, 101, 105, 108, 255, 120, 124, 126, 255, 128, 132, 133, 255, 115, 119, 120, 255, 89, 93, 94, 255, 116, 121, 125, 255, 151, 156, 160, 255, 145, 150, 154, 255, 145, 150, 154, 255, 143, 148, 152, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 138, 143, 147, 255, 131, 136, 140, 255, 153, 158, 162, 255, 158, 162, 165, 255, 107, 111, 114, 255, 112, 116, 119, 255, 128, 132, 134, 255, 121, 125, 126, 255, 97, 101, 103, 255, 98, 103, 105, 255, 146, 151, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 140, 145, 149, 255, 138, 143, 147, 255, 133, 138, 142, 255, 140, 145, 149, 255, 169, 173, 177, 255, 119, 123, 126, 255, 104, 108, 111, 255, 126, 130, 132, 255, 125, 129, 130, 255, 107, 111, 112, 255, 89, 94, 95, 255, 133, 138, 142, 255, 149, 154, 158, 255, 146, 151, 155, 255, 144, 149, 153, 255, 142, 147, 151, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 130, 135, 139, 255, 205, 210, 214, 255, 192, 196, 199, 255, 144, 148, 151, 255, 133, 137, 139, 255, 119, 123, 124, 255, 101, 105, 107, 255, 94, 98, 100, 255, 144, 149, 152, 255, 150, 155, 159, 255, 145, 150, 154, 255, 143, 148, 152, 255, 142, 147, 151, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 134, 139, 143, 255, 181, 186, 190, 255, 208, 212, 216, 255, 156, 160, 163, 255, 136, 140, 143, 255, 123, 127, 128, 255, 110, 114, 115, 255, 89, 93, 95, 255, 129, 134, 136, 255, 150, 155, 159, 255, 148, 153, 157, 255, 142, 147, 151, 255, 140, 145, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 133, 138, 142, 255, 158, 163, 167, 255, 213, 218, 222, 255, 172, 176, 179, 255, 139, 143, 146, 255, 128, 132, 134, 255, 114, 118, 119, 255, 93, 97, 100, 255, 110, 114, 116, 255, 149, 154, 158, 255, 150, 155, 159, 255, 143, 148, 152, 255, 144, 149, 153, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 139, 144, 148, 255, 215, 220, 224, 255, 173, 177, 180, 255, 137, 141, 144, 255, 123, 127, 130, 255, 109, 113, 114, 255, 87, 91, 94, 255, 124, 128, 129, 255, 150, 155, 159, 255, 151, 156, 160, 255, 145, 150, 154, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 132, 137, 141, 255, 144, 149, 153, 255, 207, 212, 216, 255, 192, 196, 199, 255, 146, 150, 153, 255, 128, 132, 135, 255, 114, 118, 119, 255, 92, 96, 98, 255, 102, 106, 108, 255, 150, 155, 158, 255, 150, 155, 159, 255, 149, 154, 158, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 135, 140, 144, 255, 132, 137, 141, 255, 189, 194, 198, 255, 206, 211, 215, 255, 158, 162, 165, 255, 132, 136, 139, 255, 118, 122, 124, 255, 102, 106, 107, 255, 90, 94, 97, 255, 140, 144, 146, 255, 150, 155, 159, 255, 150, 155, 159, 255, 142, 147, 151, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 128, 133, 137, 255, 165, 170, 174, 255, 185, 189, 193, 255, 140, 144, 147, 255, 120, 124, 127, 255, 106, 110, 113, 255, 89, 93, 94, 255, 88, 92, 94, 255, 138, 142, 143, 255, 150, 155, 159, 255, 148, 153, 157, 255, 143, 148, 152, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 132, 137, 141, 255, 169, 174, 178, 255, 194, 199, 203, 255, 154, 158, 161, 255, 125, 129, 132, 255, 112, 116, 119, 255, 95, 99, 101, 255, 80, 84, 85, 255, 120, 124, 126, 255, 152, 156, 159, 255, 148, 153, 157, 255, 146, 151, 155, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 151, 156, 160, 255, 195, 200, 204, 255, 169, 174, 177, 255, 132, 136, 139, 255, 116, 120, 123, 255, 100, 104, 106, 255, 83, 87, 88, 255, 102, 106, 108, 255, 148, 152, 154, 255, 149, 154, 158, 255, 147, 152, 156, 255, 141, 146, 150, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 133, 138, 142, 255, 137, 142, 146, 255, 188, 193, 197, 255, 149, 154, 158, 255, 118, 122, 125, 255, 93, 97, 100, 255, 77, 81, 83, 255, 75, 79, 81, 255, 117, 121, 123, 255, 143, 147, 150, 255, 145, 150, 154, 255, 145, 150, 154, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 143, 148, 152, 255, 179, 184, 188, 255, 163, 168, 172, 255, 127, 132, 135, 255, 100, 104, 107, 255, 82, 86, 89, 255, 73, 77, 79, 255, 98, 102, 104, 255, 140, 144, 147, 255, 145, 149, 153, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 135, 140, 144, 255, 168, 173, 177, 255, 175, 180, 184, 255, 138, 142, 146, 255, 109, 113, 116, 255, 87, 91, 94, 255, 73, 77, 80, 255, 83, 87, 88, 255, 132, 136, 139, 255, 145, 149, 152, 255, 145, 150, 154, 255, 143, 148, 152, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 155, 160, 164, 255, 183, 188, 192, 255, 112, 117, 121, 255, 85, 89, 92, 255, 79, 83, 86, 255, 91, 95, 98, 255, 106, 111, 112, 255, 134, 139, 142, 255, 141, 146, 149, 255, 142, 147, 150, 255, 143, 148, 152, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 134, 139, 143, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 131, 136, 140, 255, 182, 187, 191, 255, 171, 176, 180, 255, 126, 131, 136, 255, 92, 96, 99, 255, 78, 82, 85, 255, 87, 91, 94, 255, 100, 104, 106, 255, 127, 131, 134, 255, 139, 144, 147, 255, 142, 146, 150, 255, 144, 149, 153, 255, 141, 146, 150, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 133, 138, 142, 255, 134, 139, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 161, 166, 170, 255, 183, 188, 192, 255, 142, 147, 151, 255, 101, 106, 109, 255, 80, 84, 87, 255, 82, 86, 89, 255, 96, 100, 103, 255, 115, 119, 121, 255, 139, 143, 147, 255, 142, 147, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 142, 147, 151, 255, 189, 194, 198, 255, 157, 162, 166, 255, 79, 85, 89, 255, 90, 94, 97, 255, 111, 115, 118, 255, 126, 130, 134, 255, 132, 136, 140, 255, 134, 139, 143, 255, 141, 146, 150, 255, 141, 146, 151, 255, 146, 151, 157, 255, 137, 142, 147, 255, 139, 144, 148, 255, 137, 142, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 145, 255, 133, 139, 144, 255, 134, 140, 145, 255, 133, 139, 144, 255, 138, 144, 150, 255, 212, 218, 223, 255, 128, 135, 140, 255, 83, 90, 95, 255, 84, 88, 91, 255, 103, 107, 110, 255, 122, 126, 129, 255, 131, 135, 139, 255, 133, 138, 142, 255, 141, 146, 150, 255, 141, 146, 151, 255, 144, 149, 154, 255, 139, 144, 149, 255, 139, 144, 149, 255, 137, 142, 147, 255, 134, 139, 145, 255, 133, 138, 144, 255, 134, 139, 144, 255, 136, 141, 145, 255, 135, 141, 145, 255, 134, 140, 145, 255, 132, 138, 144, 255, 192, 198, 203, 255, 166, 172, 177, 255, 90, 96, 102, 255, 80, 84, 89, 255, 96, 100, 103, 255, 118, 122, 125, 255, 129, 134, 137, 255, 132, 137, 140, 255, 137, 142, 146, 255, 141, 146, 150, 255, 142, 147, 152, 255, 142, 147, 153, 255, 139, 144, 149, 255, 137, 142, 147, 255, 136, 141, 146, 255, 134, 139, 144, 255, 135, 140, 144, 255, 133, 139, 144, 255, 134, 139, 144, 255, 135, 141, 145, 255, 131, 137, 142, 255, 164, 170, 176, 255, 200, 207, 211, 255, 101, 107, 113, 255, 113, 120, 124, 255, 124, 127, 131, 255, 129, 134, 138, 255, 134, 139, 143, 255, 137, 142, 146, 255, 138, 143, 147, 255, 147, 150, 155, 255, 143, 148, 154, 255, 169, 174, 180, 255, 101, 106, 111, 255, 114, 119, 123, 255, 135, 140, 145, 255, 135, 140, 145, 255, 132, 137, 142, 255, 135, 140, 145, 255, 132, 139, 144, 255, 135, 140, 145, 255, 132, 138, 144, 255, 130, 137, 143, 255, 135, 142, 148, 255, 81, 88, 94, 255, 106, 114, 119, 255, 120, 124, 128, 255, 128, 133, 136, 255, 133, 138, 142, 255, 137, 142, 146, 255, 140, 145, 149, 255, 147, 151, 155, 255, 143, 148, 153, 255, 162, 167, 172, 255, 128, 133, 139, 255, 101, 106, 111, 255, 132, 137, 141, 255, 135, 140, 146, 255, 133, 138, 144, 255, 134, 139, 144, 255, 135, 140, 144, 255, 135, 140, 145, 255, 133, 139, 145, 255, 130, 137, 142, 255, 140, 147, 152, 255, 94, 101, 107, 255, 96, 103, 109, 255, 115, 121, 125, 255, 126, 131, 134, 255, 130, 135, 139, 255, 136, 141, 145, 255, 137, 142, 146, 255, 141, 145, 149, 255, 146, 149, 155, 255, 152, 157, 163, 255, 152, 157, 163, 255, 96, 101, 106, 255, 125, 130, 135, 255, 135, 140, 145, 255, 135, 140, 145, 255, 132, 137, 142, 255, 135, 140, 145, 255, 133, 139, 144, 255, 135, 140, 145, 255, 130, 137, 143, 255, 137, 144, 150, 255, 116, 123, 129, 255, 83, 90, 96, 255, 134, 139, 143, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 144, 149, 255, 143, 148, 153, 255, 167, 172, 176, 255, 128, 133, 137, 255, 97, 102, 106, 255, 104, 109, 113, 255, 117, 122, 126, 255, 129, 134, 138, 255, 129, 134, 138, 255, 130, 136, 140, 255, 132, 138, 142, 255, 134, 139, 143, 255, 133, 138, 142, 255, 128, 133, 138, 255, 119, 124, 129, 255, 133, 138, 142, 255, 134, 139, 142, 255, 136, 141, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 139, 143, 255, 144, 147, 152, 255, 141, 145, 150, 255, 160, 165, 170, 255, 144, 149, 153, 255, 107, 112, 116, 255, 97, 102, 106, 255, 114, 119, 123, 255, 125, 130, 134, 255, 133, 138, 142, 255, 135, 140, 144, 255, 135, 140, 145, 255, 134, 140, 144, 255, 134, 139, 143, 255, 130, 136, 140, 255, 120, 125, 130, 255, 130, 135, 139, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 144, 149, 255, 141, 144, 149, 255, 152, 157, 161, 255, 157, 162, 167, 255, 118, 123, 127, 255, 93, 98, 102, 255, 110, 115, 119, 255, 122, 127, 131, 255, 129, 134, 138, 255, 130, 135, 139, 255, 131, 136, 141, 255, 133, 138, 143, 255, 134, 139, 143, 255, 132, 138, 142, 255, 123, 128, 133, 255, 123, 128, 132, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 143, 148, 255, 138, 143, 147, 255, 127, 132, 136, 255, 105, 110, 114, 255, 130, 135, 139, 255, 111, 116, 120, 255, 85, 90, 94, 255, 100, 105, 109, 255, 119, 124, 128, 255, 130, 135, 139, 255, 130, 135, 139, 255, 132, 137, 141, 255, 135, 140, 144, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 141, 145, 150, 255, 140, 144, 149, 255, 130, 135, 139, 255, 111, 116, 120, 255, 122, 127, 131, 255, 121, 126, 130, 255, 90, 95, 99, 255, 92, 97, 101, 255, 114, 119, 123, 255, 131, 136, 140, 255, 132, 137, 141, 255, 131, 136, 140, 255, 135, 140, 144, 255, 134, 139, 143, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 144, 148, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 140, 144, 148, 255, 140, 144, 148, 255, 134, 139, 143, 255, 118, 123, 127, 255, 113, 118, 122, 255, 129, 134, 138, 255, 100, 105, 109, 255, 85, 90, 94, 255, 108, 113, 117, 255, 124, 129, 133, 255, 131, 136, 140, 255, 130, 135, 139, 255, 134, 139, 143, 255, 135, 140, 144, 255, 133, 138, 142, 255, 135, 140, 144, 255, 134, 139, 143, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 145, 149, 255, 135, 140, 143, 255, 132, 137, 140, 255, 109, 114, 117, 255, 112, 117, 120, 255, 132, 137, 140, 255, 124, 129, 133, 255, 105, 110, 113, 255, 92, 97, 100, 255, 112, 117, 120, 255, 129, 133, 136, 255, 136, 141, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 136, 141, 145, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 136, 141, 145, 255, 134, 139, 143, 255, 117, 122, 125, 255, 108, 113, 116, 255, 127, 132, 136, 255, 129, 134, 137, 255, 112, 117, 121, 255, 93, 98, 101, 255, 103, 107, 110, 255, 126, 130, 133, 255, 133, 138, 142, 255, 138, 143, 147, 255, 133, 138, 141, 255, 133, 138, 142, 255, 136, 141, 145, 255, 134, 139, 143, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 139, 143, 147, 255, 135, 140, 143, 255, 125, 130, 133, 255, 107, 112, 115, 255, 121, 126, 129, 255, 131, 136, 139, 255, 119, 124, 127, 255, 98, 103, 106, 255, 96, 100, 104, 255, 120, 124, 127, 255, 131, 136, 139, 255, 138, 142, 146, 255, 137, 142, 146, 255, 137, 141, 145, 255, 134, 139, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 139, 144, 148, 255, 141, 146, 150, 255, 144, 148, 153, 255, 141, 146, 149, 255, 140, 145, 149, 255, 124, 129, 132, 255, 104, 109, 112, 255, 116, 121, 124, 255, 132, 137, 140, 255, 136, 141, 144, 255, 124, 129, 132, 255, 108, 112, 115, 255, 109, 113, 116, 255, 128, 132, 136, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 142, 147, 151, 255, 139, 144, 148, 255, 144, 149, 153, 255, 130, 135, 138, 255, 109, 114, 117, 255, 110, 115, 118, 255, 127, 132, 135, 255, 137, 142, 145, 255, 131, 136, 139, 255, 110, 114, 117, 255, 106, 110, 113, 255, 122, 126, 130, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 141, 146, 150, 255, 143, 148, 152, 255, 136, 141, 144, 255, 116, 121, 124, 255, 106, 111, 114, 255, 121, 126, 129, 255, 136, 141, 144, 255, 134, 139, 142, 255, 117, 121, 124, 255, 106, 110, 113, 255, 115, 119, 122, 255, 133, 137, 141, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 141, 146, 150, 255, 146, 152, 155, 255, 144, 150, 154, 255, 138, 144, 148, 255, 148, 157, 159, 255, 175, 183, 186, 255, 166, 174, 177, 255, 141, 146, 150, 255, 138, 142, 146, 255, 119, 122, 125, 255, 86, 90, 93, 255, 111, 115, 118, 255, 138, 142, 146, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 143, 148, 152, 255, 146, 151, 155, 255, 141, 147, 150, 255, 141, 149, 152, 255, 170, 178, 181, 255, 173, 181, 184, 255, 146, 152, 155, 255, 140, 144, 149, 255, 130, 131, 135, 255, 93, 97, 100, 255, 98, 102, 105, 255, 133, 137, 140, 255, 141, 146, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 139, 144, 148, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 143, 148, 152, 255, 147, 152, 156, 255, 143, 148, 152, 255, 138, 145, 148, 255, 163, 171, 173, 255, 175, 183, 186, 255, 154, 161, 164, 255, 139, 144, 148, 255, 135, 138, 142, 255, 107, 110, 113, 255, 89, 93, 96, 255, 124, 128, 131, 255, 140, 144, 148, 255, 141, 146, 149, 255, 139, 144, 148, 255, 135, 141, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 148, 154, 158, 255, 141, 148, 152, 255, 151, 159, 162, 255, 190, 198, 201, 255, 158, 165, 168, 255, 141, 146, 150, 255, 139, 143, 147, 255, 129, 131, 135, 255, 97, 101, 104, 255, 80, 84, 87, 255, 131, 135, 138, 255, 139, 144, 147, 255, 139, 145, 148, 255, 137, 143, 146, 255, 136, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 146, 152, 155, 255, 144, 151, 155, 255, 142, 149, 152, 255, 185, 193, 196, 255, 169, 177, 180, 255, 144, 149, 153, 255, 139, 144, 148, 255, 136, 137, 141, 255, 110, 114, 117, 255, 76, 80, 83, 255, 117, 121, 124, 255, 137, 142, 145, 255, 139, 144, 147, 255, 138, 145, 148, 255, 135, 141, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 144, 148, 255, 142, 148, 151, 255, 147, 153, 157, 255, 140, 146, 150, 255, 171, 179, 182, 255, 182, 190, 193, 255, 148, 155, 158, 255, 140, 145, 149, 255, 138, 141, 145, 255, 120, 123, 127, 255, 84, 88, 91, 255, 99, 103, 106, 255, 134, 139, 142, 255, 139, 144, 148, 255, 139, 145, 148, 255, 136, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 141, 146, 150, 255, 138, 144, 148, 255, 144, 150, 154, 255, 146, 153, 156, 255, 148, 157, 160, 255, 149, 157, 160, 255, 108, 116, 119, 255, 109, 114, 118, 255, 121, 124, 128, 255, 136, 138, 142, 255, 128, 132, 135, 255, 81, 85, 88, 255, 103, 108, 111, 255, 133, 138, 141, 255, 139, 145, 148, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 136, 141, 145, 255, 138, 143, 147, 255, 140, 146, 150, 255, 142, 148, 151, 255, 147, 153, 157, 255, 145, 155, 157, 255, 155, 164, 167, 255, 120, 128, 131, 255, 105, 111, 115, 255, 114, 119, 123, 255, 134, 135, 139, 255, 136, 140, 143, 255, 95, 99, 102, 255, 87, 91, 94, 255, 128, 133, 136, 255, 138, 143, 146, 255, 139, 146, 149, 255, 136, 142, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 141, 147, 151, 255, 139, 145, 148, 255, 146, 152, 156, 255, 145, 153, 156, 255, 155, 164, 167, 255, 135, 143, 146, 255, 103, 109, 113, 255, 113, 118, 122, 255, 127, 130, 134, 255, 137, 141, 144, 255, 112, 116, 119, 255, 79, 83, 86, 255, 118, 123, 126, 255, 136, 141, 144, 255, 139, 145, 148, 255, 135, 142, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 146, 149, 255, 140, 145, 149, 255, 145, 153, 156, 255, 147, 155, 158, 255, 148, 157, 159, 255, 144, 152, 155, 255, 123, 130, 133, 255, 104, 109, 113, 255, 100, 104, 108, 255, 114, 116, 119, 255, 133, 137, 140, 255, 118, 122, 125, 255, 76, 80, 83, 255, 120, 125, 128, 255, 138, 145, 148, 255, 132, 140, 142, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 142, 148, 152, 255, 142, 149, 153, 255, 148, 154, 158, 255, 147, 156, 159, 255, 147, 155, 158, 255, 132, 140, 143, 255, 108, 114, 118, 255, 99, 104, 108, 255, 108, 109, 113, 255, 126, 130, 133, 255, 130, 134, 137, 255, 83, 87, 90, 255, 102, 107, 110, 255, 139, 145, 147, 255, 132, 140, 142, 255, 136, 142, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 147, 151, 255, 141, 147, 150, 255, 147, 154, 158, 255, 147, 155, 158, 255, 148, 158, 160, 255, 140, 148, 151, 255, 114, 120, 124, 255, 101, 106, 110, 255, 104, 106, 110, 255, 119, 122, 126, 255, 135, 139, 142, 255, 98, 102, 105, 255, 86, 91, 94, 255, 133, 138, 141, 255, 134, 142, 144, 255, 136, 143, 146, 255, 136, 142, 145, 255, 137, 143, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 147, 150, 255, 142, 148, 151, 255, 146, 153, 156, 255, 147, 156, 158, 255, 146, 156, 158, 255, 145, 153, 156, 255, 138, 146, 149, 255, 133, 138, 142, 255, 124, 128, 132, 255, 108, 110, 114, 255, 105, 109, 112, 255, 122, 126, 129, 255, 99, 104, 107, 255, 101, 106, 109, 255, 139, 146, 148, 255, 134, 142, 144, 255, 137, 142, 146, 255, 137, 143, 146, 255, 138, 144, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 150, 153, 255, 150, 158, 161, 255, 144, 154, 156, 255, 147, 156, 158, 255, 141, 149, 152, 255, 135, 140, 144, 255, 128, 133, 137, 255, 113, 115, 119, 255, 101, 105, 108, 255, 118, 122, 125, 255, 113, 117, 120, 255, 90, 95, 98, 255, 132, 138, 140, 255, 135, 142, 145, 255, 137, 143, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 142, 148, 151, 255, 142, 148, 152, 255, 149, 157, 160, 255, 144, 153, 155, 255, 148, 157, 159, 255, 143, 151, 154, 255, 137, 143, 146, 255, 131, 136, 140, 255, 119, 122, 126, 255, 104, 107, 110, 255, 112, 116, 119, 255, 121, 125, 128, 255, 89, 94, 97, 255, 118, 123, 126, 255, 138, 145, 147, 255, 138, 146, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 140, 145, 149, 255, 143, 149, 152, 255, 124, 133, 135, 255, 134, 143, 145, 255, 145, 155, 157, 255, 144, 153, 156, 255, 145, 153, 156, 255, 140, 148, 151, 255, 136, 141, 145, 255, 139, 143, 147, 255, 140, 142, 145, 255, 118, 122, 125, 255, 106, 110, 113, 255, 104, 108, 111, 255, 107, 112, 115, 255, 136, 143, 145, 255, 138, 145, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 139, 144, 148, 255, 142, 148, 151, 255, 132, 140, 143, 255, 126, 135, 138, 255, 145, 154, 157, 255, 143, 152, 154, 255, 145, 154, 156, 255, 142, 150, 153, 255, 136, 141, 145, 255, 137, 142, 146, 255, 141, 143, 147, 255, 127, 131, 134, 255, 107, 111, 114, 255, 105, 109, 112, 255, 103, 108, 111, 255, 128, 134, 137, 255, 138, 146, 148, 255, 138, 144, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 143, 146, 255, 141, 146, 150, 255, 139, 146, 149, 255, 123, 132, 134, 255, 141, 150, 153, 255, 143, 152, 155, 255, 145, 154, 157, 255, 144, 152, 155, 255, 138, 144, 148, 255, 136, 141, 145, 255, 140, 143, 147, 255, 135, 138, 141, 255, 112, 116, 119, 255, 105, 109, 112, 255, 102, 107, 110, 255, 118, 123, 126, 255, 138, 146, 148, 255, 134, 142, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 132, 137, 141, 255, 134, 139, 143, 255, 132, 139, 142, 255, 107, 115, 117, 255, 96, 106, 108, 255, 98, 108, 110, 255, 145, 155, 157, 255, 144, 153, 156, 255, 142, 149, 153, 255, 139, 147, 150, 255, 136, 141, 145, 255, 138, 142, 146, 255, 141, 143, 147, 255, 139, 143, 146, 255, 134, 138, 141, 255, 118, 122, 125, 255, 129, 134, 137, 255, 137, 144, 147, 255, 134, 142, 144, 255, 133, 139, 143, 255, 137, 142, 146, 255, 132, 137, 141, 255, 133, 138, 142, 255, 134, 139, 143, 255, 119, 127, 129, 255, 98, 108, 109, 255, 89, 100, 102, 255, 133, 143, 145, 255, 146, 156, 158, 255, 142, 150, 153, 255, 141, 148, 152, 255, 137, 143, 146, 255, 136, 141, 145, 255, 141, 142, 146, 255, 140, 144, 147, 255, 137, 141, 144, 255, 122, 126, 129, 255, 123, 128, 131, 255, 137, 143, 145, 255, 134, 142, 144, 255, 133, 140, 143, 255, 137, 142, 146, 255, 133, 138, 142, 255, 132, 137, 141, 255, 134, 139, 143, 255, 127, 134, 137, 255, 100, 110, 112, 255, 91, 101, 103, 255, 116, 126, 128, 255, 147, 157, 159, 255, 142, 151, 154, 255, 142, 149, 152, 255, 138, 144, 148, 255, 136, 141, 145, 255, 140, 142, 146, 255, 140, 143, 147, 255, 139, 143, 146, 255, 127, 131, 134, 255, 119, 124, 127, 255, 134, 139, 142, 255, 136, 144, 146, 255, 131, 138, 141, 255, 132, 137, 140, 255, 134, 139, 143, 255, 126, 131, 135, 255, 105, 110, 113, 255, 107, 113, 115, 255, 131, 137, 139, 255, 110, 119, 121, 255, 98, 107, 109, 255, 147, 156, 159, 255, 144, 152, 155, 255, 142, 149, 153, 255, 135, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 143, 146, 255, 140, 145, 148, 255, 141, 146, 149, 255, 135, 140, 143, 255, 135, 140, 143, 255, 138, 144, 147, 255, 134, 141, 144, 255, 131, 136, 139, 255, 134, 139, 143, 255, 131, 136, 139, 255, 112, 117, 120, 255, 102, 107, 109, 255, 125, 131, 133, 255, 123, 131, 133, 255, 92, 101, 103, 255, 134, 143, 145, 255, 147, 155, 158, 255, 143, 151, 154, 255, 137, 144, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 141, 145, 255, 140, 145, 148, 255, 142, 146, 150, 255, 137, 141, 144, 255, 135, 140, 144, 255, 136, 142, 145, 255, 137, 144, 146, 255, 130, 136, 139, 255, 133, 138, 142, 255, 133, 138, 142, 255, 120, 124, 128, 255, 101, 106, 109, 255, 115, 122, 123, 255, 131, 137, 139, 255, 98, 107, 109, 255, 116, 125, 128, 255, 149, 157, 160, 255, 144, 151, 154, 255, 139, 146, 149, 255, 135, 141, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 140, 144, 147, 255, 142, 146, 149, 255, 139, 143, 146, 255, 135, 140, 144, 255, 135, 140, 143, 255, 138, 146, 148, 255, 132, 137, 141, 255, 134, 138, 141, 255, 103, 107, 110, 255, 81, 85, 88, 255, 97, 101, 102, 255, 130, 134, 136, 255, 120, 124, 126, 255, 88, 93, 96, 255, 126, 132, 136, 255, 148, 154, 158, 255, 145, 150, 154, 255, 144, 149, 153, 255, 137, 142, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 138, 143, 147, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 142, 145, 255, 132, 137, 141, 255, 137, 141, 144, 255, 113, 117, 120, 255, 88, 92, 95, 255, 85, 89, 91, 255, 123, 127, 128, 255, 131, 135, 137, 255, 92, 96, 99, 255, 110, 116, 120, 255, 146, 152, 155, 255, 145, 150, 154, 255, 145, 150, 154, 255, 139, 144, 148, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 133, 138, 142, 255, 136, 141, 145, 255, 122, 126, 130, 255, 96, 100, 103, 255, 79, 83, 85, 255, 111, 115, 116, 255, 133, 137, 139, 255, 106, 110, 112, 255, 96, 102, 105, 255, 139, 144, 148, 255, 146, 151, 155, 255, 145, 150, 154, 255, 142, 147, 151, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 148, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 135, 140, 144, 255, 154, 159, 163, 255, 124, 128, 131, 255, 84, 88, 91, 255, 106, 110, 113, 255, 125, 129, 130, 255, 120, 124, 125, 255, 92, 96, 97, 255, 103, 108, 111, 255, 151, 156, 160, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 138, 143, 147, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 132, 137, 141, 255, 145, 150, 154, 255, 142, 146, 150, 255, 90, 94, 97, 255, 96, 100, 103, 255, 122, 126, 127, 255, 125, 129, 130, 255, 102, 106, 107, 255, 89, 93, 96, 255, 141, 146, 150, 255, 148, 153, 157, 255, 145, 150, 154, 255, 144, 149, 153, 255, 140, 145, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 138, 143, 147, 255, 134, 139, 143, 255, 136, 141, 145, 255, 153, 158, 161, 255, 104, 108, 111, 255, 87, 91, 94, 255, 116, 120, 121, 255, 126, 130, 131, 255, 112, 116, 117, 255, 87, 91, 93, 255, 123, 128, 132, 255, 150, 155, 159, 255, 145, 150, 154, 255, 143, 148, 152, 255, 143, 148, 152, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 131, 136, 140, 255, 196, 201, 204, 255, 181, 185, 188, 255, 136, 140, 143, 255, 133, 137, 139, 255, 123, 127, 128, 255, 105, 109, 111, 255, 88, 92, 93, 255, 138, 143, 147, 255, 150, 155, 159, 255, 145, 150, 154, 255, 145, 150, 154, 255, 145, 150, 154, 255, 141, 146, 150, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 138, 143, 147, 255, 131, 136, 140, 255, 172, 177, 181, 255, 197, 202, 205, 255, 146, 150, 153, 255, 134, 138, 141, 255, 128, 132, 133, 255, 112, 116, 118, 255, 90, 94, 96, 255, 119, 123, 126, 255, 149, 154, 158, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 132, 137, 141, 255, 151, 156, 160, 255, 203, 208, 212, 255, 161, 165, 168, 255, 134, 138, 141, 255, 131, 135, 137, 255, 117, 121, 122, 255, 98, 102, 104, 255, 100, 104, 106, 255, 147, 152, 156, 255, 148, 153, 157, 255, 145, 150, 154, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 136, 141, 145, 255, 134, 139, 143, 255, 216, 220, 224, 255, 184, 188, 191, 255, 143, 147, 150, 255, 127, 131, 133, 255, 113, 117, 118, 255, 91, 95, 97, 255, 115, 119, 120, 255, 149, 154, 158, 255, 152, 157, 161, 255, 145, 150, 154, 255, 141, 146, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 141, 146, 150, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 134, 139, 143, 255, 140, 145, 149, 255, 199, 204, 208, 255, 202, 207, 210, 255, 153, 157, 160, 255, 132, 136, 139, 255, 117, 121, 122, 255, 99, 103, 105, 255, 96, 100, 102, 255, 147, 151, 154, 255, 150, 155, 159, 255, 150, 155, 159, 255, 140, 145, 149, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 136, 141, 145, 255, 132, 137, 141, 255, 178, 183, 187, 255, 214, 219, 222, 255, 167, 171, 174, 255, 137, 141, 144, 255, 121, 125, 127, 255, 107, 111, 113, 255, 89, 93, 95, 255, 133, 137, 139, 255, 150, 155, 159, 255, 152, 157, 161, 255, 141, 146, 150, 255, 143, 148, 152, 255, 145, 150, 154, 255, 142, 147, 151, 255, 141, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 145, 149, 255, 137, 142, 146, 255, 131, 136, 140, 255, 155, 160, 164, 255, 197, 202, 206, 255, 150, 154, 157, 255, 124, 128, 131, 255, 113, 117, 120, 255, 96, 100, 101, 255, 86, 90, 93, 255, 134, 138, 139, 255, 151, 155, 159, 255, 148, 153, 157, 255, 145, 150, 154, 255, 143, 148, 152, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 132, 137, 141, 255, 160, 165, 169, 255, 202, 207, 211, 255, 166, 170, 173, 255, 131, 135, 138, 255, 117, 121, 124, 255, 103, 107, 109, 255, 82, 86, 88, 255, 115, 119, 121, 255, 152, 157, 160, 255, 149, 154, 158, 255, 147, 152, 156, 255, 143, 148, 152, 255, 141, 146, 150, 255, 142, 147, 151, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 133, 138, 142, 255, 143, 148, 152, 255, 197, 202, 206, 255, 182, 187, 190, 255, 140, 144, 147, 255, 121, 125, 128, 255, 107, 111, 113, 255, 89, 93, 94, 255, 97, 101, 103, 255, 146, 150, 152, 255, 150, 155, 159, 255, 148, 153, 157, 255, 144, 149, 153, 255, 142, 147, 151, 255, 141, 146, 150, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 135, 140, 144, 255, 132, 137, 141, 255, 182, 187, 191, 255, 160, 165, 169, 255, 126, 130, 133, 255, 104, 108, 111, 255, 87, 91, 93, 255, 76, 80, 81, 255, 105, 109, 111, 255, 142, 146, 148, 255, 147, 152, 156, 255, 146, 151, 155, 255, 145, 150, 154, 255, 143, 148, 152, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 137, 142, 146, 255, 178, 183, 187, 255, 174, 179, 183, 255, 136, 140, 144, 255, 111, 115, 118, 255, 93, 97, 100, 255, 78, 82, 84, 255, 88, 92, 94, 255, 134, 138, 141, 255, 148, 152, 155, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 164, 169, 173, 255, 184, 189, 193, 255, 148, 152, 156, 255, 118, 122, 125, 255, 99, 103, 106, 255, 81, 85, 87, 255, 79, 83, 84, 255, 121, 125, 128, 255, 146, 151, 153, 255, 146, 151, 155, 255, 146, 151, 155, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 132, 137, 141, 255, 148, 153, 157, 255, 188, 193, 197, 255, 127, 132, 136, 255, 96, 100, 103, 255, 77, 81, 84, 255, 79, 83, 86, 255, 92, 96, 97, 255, 132, 136, 139, 255, 142, 147, 150, 255, 142, 147, 151, 255, 144, 149, 153, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 130, 135, 139, 255, 165, 170, 174, 255, 174, 179, 183, 255, 141, 146, 150, 255, 105, 109, 113, 255, 81, 85, 88, 255, 77, 81, 84, 255, 85, 89, 91, 255, 119, 123, 126, 255, 140, 145, 149, 255, 142, 147, 150, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 136, 141, 145, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 137, 142, 146, 255, 137, 142, 146, 255, 132, 137, 141, 255, 148, 153, 157, 255, 178, 183, 187, 255, 155, 160, 164, 255, 116, 120, 124, 255, 87, 91, 94, 255, 76, 80, 83, 255, 82, 86, 88, 255, 103, 107, 108, 255, 140, 144, 148, 255, 142, 147, 150, 255, 143, 148, 152, 255, 143, 148, 152, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 134, 139, 143, 255, 134, 139, 143, 255, 134, 139, 143, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 135, 140, 144, 255, 175, 180, 184, 255, 167, 172, 176, 255, 83, 89, 93, 255, 81, 85, 88, 255, 99, 103, 106, 255, 119, 123, 126, 255, 128, 132, 135, 255, 134, 139, 142, 255, 140, 145, 148, 255, 141, 146, 150, 255, 146, 151, 155, 255, 140, 145, 149, 255, 136, 141, 146, 255, 137, 142, 147, 255, 135, 140, 144, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 143, 255, 135, 141, 145, 255, 134, 140, 144, 255, 136, 142, 147, 255, 212, 218, 222, 255, 150, 156, 161, 255, 94, 100, 105, 255, 78, 82, 86, 255, 91, 95, 98, 255, 114, 118, 121, 255, 126, 130, 133, 255, 132, 136, 140, 255, 139, 144, 147, 255, 141, 146, 149, 255, 144, 149, 154, 255, 141, 146, 151, 255, 138, 143, 148, 255, 136, 141, 146, 255, 136, 141, 146, 255, 133, 138, 143, 255, 132, 137, 142, 255, 134, 139, 143, 255, 135, 140, 145, 255, 134, 140, 145, 255, 132, 138, 143, 255, 188, 194, 198, 255, 182, 188, 192, 255, 107, 113, 118, 255, 78, 83, 87, 255, 84, 88, 91, 255, 108, 112, 115, 255, 123, 127, 130, 255, 129, 134, 137, 255, 136, 141, 145, 255, 140, 145, 149, 255, 143, 148, 152, 255, 143, 148, 153, 255, 140, 145, 150, 255, 135, 140, 145, 255, 137, 142, 146, 255, 134, 139, 144, 255, 133, 138, 142, 255, 132, 137, 142, 255, 134, 139, 144, 255, 135, 141, 145, 255, 132, 138, 143, 255, 160, 165, 170, 255, 208, 214, 218, 255, 123, 129, 134, 255, 97, 104, 109, 255, 115, 119, 123, 255, 126, 130, 134, 255, 133, 137, 141, 255, 136, 141, 145, 255, 137, 142, 146, 255, 147, 150, 155, 255, 142, 147, 153, 255, 153, 158, 164, 255, 109, 114, 120, 255, 132, 137, 142, 255, 138, 143, 149, 255, 135, 140, 145, 255, 135, 140, 145, 255, 136, 141, 145, 255, 132, 139, 144, 255, 135, 140, 145, 255, 132, 139, 144, 255, 134, 141, 147, 255, 162, 169, 175, 255, 85, 92, 98, 255, 91, 98, 103, 255, 108, 113, 117, 255, 123, 128, 131, 255, 130, 135, 139, 255, 136, 141, 145, 255, 139, 144, 148, 255, 148, 151, 156, 255, 144, 148, 154, 255, 149, 154, 160, 255, 124, 129, 135, 255, 121, 126, 131, 255, 139, 144, 149, 255, 133, 138, 144, 255, 134, 139, 144, 255, 135, 140, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 140, 145, 255, 131, 137, 143, 255, 160, 167, 172, 255, 110, 117, 123, 255, 83, 90, 96, 255, 102, 108, 112, 255, 120, 124, 127, 255, 127, 132, 135, 255, 135, 140, 144, 255, 135, 140, 144, 255, 140, 145, 149, 255, 146, 150, 155, 255, 145, 150, 156, 255, 140, 145, 151, 255, 112, 117, 122, 255, 138, 143, 148, 255, 135, 140, 146, 255, 135, 140, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 139, 145, 255, 135, 141, 145, 255, 130, 137, 142, 255, 148, 155, 161, 255, 141, 148, 154, 255, 75, 82, 88, 255, 131, 137, 141, 255, 133, 138, 141, 255, 133, 138, 142, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 144, 148, 255, 143, 146, 151, 255, 146, 150, 156, 255, 188, 193, 198, 255, 123, 128, 133, 255, 86, 91, 96, 255, 119, 124, 128, 255, 132, 137, 141, 255, 129, 134, 138, 255, 131, 136, 141, 255, 131, 136, 141, 255, 133, 139, 144, 255, 133, 139, 144, 255, 131, 137, 142, 255, 124, 130, 135, 255, 107, 113, 117, 255, 130, 135, 140, 255, 131, 136, 140, 255, 133, 138, 142, 255, 137, 141, 145, 255, 137, 142, 146, 255, 137, 141, 145, 255, 144, 148, 152, 255, 142, 146, 151, 255, 177, 182, 187, 255, 152, 157, 162, 255, 91, 96, 101, 255, 106, 111, 115, 255, 132, 137, 141, 255, 130, 135, 140, 255, 133, 138, 142, 255, 134, 139, 144, 255, 135, 140, 145, 255, 134, 140, 145, 255, 133, 138, 143, 255, 129, 135, 140, 255, 108, 114, 119, 255, 123, 129, 134, 255, 131, 136, 140, 255, 133, 138, 142, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 141, 145, 149, 255, 142, 146, 150, 255, 161, 166, 171, 255, 175, 180, 185, 255, 104, 109, 114, 255, 93, 98, 102, 255, 127, 132, 136, 255, 132, 137, 141, 255, 128, 133, 138, 255, 132, 137, 142, 255, 131, 137, 142, 255, 134, 139, 144, 255, 132, 138, 143, 255, 131, 138, 143, 255, 115, 120, 125, 255, 114, 119, 124, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 143, 148, 255, 140, 145, 149, 255, 126, 131, 135, 255, 110, 115, 119, 255, 128, 133, 137, 255, 95, 100, 104, 255, 86, 91, 95, 255, 117, 122, 126, 255, 126, 131, 135, 255, 130, 135, 139, 255, 130, 135, 139, 255, 132, 137, 141, 255, 135, 140, 144, 255, 132, 137, 141, 255, 132, 137, 141, 255, 136, 141, 145, 255, 137, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 142, 145, 150, 255, 141, 145, 149, 255, 131, 136, 140, 255, 111, 116, 120, 255, 127, 132, 136, 255, 106, 111, 115, 255, 84, 89, 93, 255, 107, 112, 116, 255, 128, 133, 137, 255, 135, 140, 144, 255, 133, 138, 142, 255, 131, 136, 140, 255, 135, 140, 144, 255, 132, 137, 141, 255, 131, 136, 140, 255, 135, 140, 144, 255, 138, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 136, 141, 145, 255, 140, 144, 148, 255, 141, 144, 149, 255, 136, 141, 145, 255, 117, 122, 126, 255, 120, 125, 129, 255, 118, 123, 127, 255, 87, 92, 96, 255, 95, 100, 104, 255, 123, 128, 132, 255, 127, 132, 136, 255, 131, 136, 140, 255, 130, 135, 139, 255, 134, 139, 143, 255, 134, 139, 143, 255, 131, 136, 140, 255, 132, 137, 141, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 144, 148, 255, 134, 139, 142, 255, 132, 137, 141, 255, 107, 112, 115, 255, 117, 122, 125, 255, 134, 139, 142, 255, 110, 115, 118, 255, 91, 96, 99, 255, 94, 99, 102, 255, 120, 124, 128, 255, 130, 134, 138, 255, 135, 140, 144, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 145, 149, 255, 137, 141, 145, 255, 132, 137, 141, 255, 117, 122, 125, 255, 109, 114, 118, 255, 133, 138, 141, 255, 119, 124, 127, 255, 95, 100, 103, 255, 88, 93, 97, 255, 112, 117, 120, 255, 129, 133, 137, 255, 133, 138, 141, 255, 137, 142, 146, 255, 132, 136, 140, 255, 133, 138, 142, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 143, 147, 255, 133, 138, 141, 255, 126, 131, 134, 255, 106, 111, 114, 255, 127, 132, 135, 255, 128, 133, 136, 255, 101, 106, 110, 255, 89, 94, 97, 255, 102, 107, 111, 255, 125, 129, 133, 255, 131, 136, 139, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 138, 143, 147, 255, 135, 140, 144, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 118, 123, 126, 255, 105, 110, 113, 255, 121, 126, 129, 255, 133, 138, 141, 255, 130, 135, 138, 255, 113, 118, 121, 255, 107, 111, 114, 255, 117, 121, 124, 255, 133, 137, 141, 255, 139, 143, 147, 255, 137, 142, 145, 255, 137, 141, 145, 255, 135, 140, 143, 255, 137, 142, 146, 255, 141, 146, 150, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 143, 148, 152, 255, 138, 143, 147, 255, 141, 146, 149, 255, 125, 130, 133, 255, 107, 112, 115, 255, 115, 120, 123, 255, 130, 135, 138, 255, 133, 138, 141, 255, 121, 126, 129, 255, 104, 108, 111, 255, 113, 117, 120, 255, 128, 133, 136, 255, 137, 142, 146, 255, 138, 143, 146, 255, 135, 140, 144, 255, 136, 141, 145, 255, 135, 140, 144, 255, 140, 145, 149, 255, 141, 146, 150, 255, 139, 144, 148, 255, 142, 147, 151, 255, 143, 148, 152, 255, 141, 145, 149, 255, 141, 146, 149, 255, 131, 136, 139, 255, 112, 117, 120, 255, 109, 114, 117, 255, 126, 131, 134, 255, 135, 140, 143, 255, 126, 130, 134, 255, 107, 112, 115, 255, 110, 114, 117, 255, 122, 127, 130, 255, 136, 140, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 139, 144, 148, 255, 142, 147, 151, 255, 144, 150, 153, 255, 144, 149, 153, 255, 134, 140, 144, 255, 128, 135, 138, 255, 146, 153, 156, 255, 152, 158, 162, 255, 140, 145, 149, 255, 136, 140, 144, 255, 115, 118, 122, 255, 92, 96, 99, 255, 118, 122, 125, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 147, 151, 255, 146, 151, 155, 255, 138, 144, 147, 255, 127, 134, 137, 255, 142, 148, 151, 255, 152, 159, 162, 255, 143, 148, 151, 255, 139, 143, 147, 255, 125, 127, 131, 255, 95, 99, 102, 255, 107, 111, 114, 255, 135, 139, 142, 255, 139, 144, 148, 255, 138, 143, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 140, 145, 149, 255, 143, 148, 152, 255, 145, 151, 155, 255, 141, 147, 150, 255, 130, 137, 140, 255, 137, 143, 146, 255, 149, 155, 158, 255, 146, 152, 156, 255, 139, 144, 148, 255, 131, 134, 138, 255, 105, 108, 112, 255, 97, 101, 104, 255, 128, 132, 135, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 136, 142, 145, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 145, 149, 255, 141, 147, 151, 255, 147, 153, 156, 255, 140, 146, 150, 255, 157, 166, 168, 255, 199, 207, 210, 255, 168, 175, 179, 255, 143, 148, 152, 255, 140, 143, 147, 255, 126, 128, 132, 255, 90, 94, 97, 255, 89, 93, 96, 255, 134, 138, 142, 255, 140, 145, 148, 255, 140, 145, 148, 255, 138, 144, 147, 255, 137, 143, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 145, 148, 255, 147, 153, 156, 255, 143, 149, 153, 255, 146, 153, 156, 255, 193, 201, 204, 255, 181, 189, 192, 255, 147, 153, 156, 255, 139, 144, 148, 255, 135, 137, 141, 255, 102, 106, 109, 255, 81, 85, 88, 255, 123, 127, 130, 255, 138, 143, 146, 255, 138, 144, 147, 255, 138, 144, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 146, 150, 255, 144, 150, 154, 255, 146, 151, 155, 255, 140, 147, 150, 255, 179, 187, 190, 255, 192, 200, 203, 255, 155, 161, 165, 255, 140, 145, 149, 255, 138, 141, 145, 255, 114, 117, 121, 255, 82, 86, 89, 255, 107, 111, 114, 255, 136, 141, 144, 255, 140, 145, 149, 255, 139, 145, 148, 255, 135, 141, 144, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 146, 149, 255, 137, 143, 146, 255, 147, 152, 156, 255, 145, 152, 156, 255, 147, 156, 158, 255, 158, 166, 169, 255, 121, 129, 132, 255, 122, 127, 131, 255, 129, 133, 137, 255, 136, 138, 141, 255, 119, 123, 126, 255, 76, 80, 83, 255, 115, 120, 123, 255, 136, 141, 144, 255, 139, 145, 148, 255, 137, 143, 147, 255, 136, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 146, 149, 255, 143, 148, 152, 255, 147, 153, 157, 255, 144, 152, 155, 255, 161, 169, 172, 255, 131, 139, 142, 255, 119, 124, 128, 255, 126, 131, 135, 255, 136, 138, 141, 255, 130, 134, 137, 255, 84, 88, 91, 255, 97, 102, 105, 255, 133, 138, 141, 255, 138, 143, 146, 255, 139, 146, 149, 255, 135, 141, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 140, 147, 150, 255, 139, 144, 148, 255, 148, 153, 157, 255, 143, 151, 154, 255, 157, 166, 168, 255, 145, 153, 156, 255, 116, 123, 126, 255, 125, 130, 134, 255, 133, 135, 139, 255, 134, 137, 140, 255, 101, 105, 108, 255, 83, 87, 90, 255, 127, 132, 135, 255, 137, 142, 146, 255, 139, 146, 149, 255, 136, 143, 145, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 139, 145, 149, 255, 144, 150, 155, 255, 146, 153, 156, 255, 149, 159, 161, 255, 145, 153, 156, 255, 113, 120, 124, 255, 99, 104, 108, 255, 103, 107, 111, 255, 123, 125, 129, 255, 135, 139, 142, 255, 105, 109, 112, 255, 80, 85, 88, 255, 125, 130, 133, 255, 138, 144, 147, 255, 134, 142, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 140, 146, 150, 255, 142, 148, 152, 255, 146, 152, 156, 255, 147, 156, 159, 255, 150, 158, 161, 255, 124, 132, 135, 255, 100, 106, 110, 255, 98, 103, 107, 255, 118, 119, 123, 255, 134, 138, 141, 255, 120, 124, 127, 255, 79, 83, 86, 255, 111, 116, 119, 255, 138, 144, 147, 255, 134, 142, 144, 255, 136, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 140, 146, 150, 255, 145, 152, 155, 255, 146, 154, 157, 255, 151, 160, 163, 255, 137, 145, 148, 255, 104, 110, 114, 255, 98, 103, 107, 255, 110, 112, 116, 255, 129, 132, 136, 255, 131, 135, 138, 255, 87, 91, 94, 255, 95, 100, 103, 255, 135, 140, 143, 255, 135, 142, 145, 255, 135, 142, 145, 255, 136, 141, 145, 255, 137, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 147, 150, 255, 140, 146, 150, 255, 146, 153, 157, 255, 149, 157, 160, 255, 146, 156, 158, 255, 145, 153, 156, 255, 136, 144, 147, 255, 126, 131, 135, 255, 114, 117, 121, 255, 102, 104, 108, 255, 115, 119, 122, 255, 128, 132, 135, 255, 89, 93, 96, 255, 105, 110, 113, 255, 141, 148, 151, 255, 133, 140, 142, 255, 137, 142, 146, 255, 137, 143, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 142, 149, 152, 255, 142, 150, 153, 255, 151, 159, 162, 255, 146, 155, 157, 255, 146, 155, 158, 255, 140, 148, 151, 255, 130, 135, 139, 255, 119, 124, 128, 255, 104, 105, 109, 255, 106, 110, 113, 255, 129, 133, 136, 255, 105, 109, 112, 255, 89, 94, 97, 255, 136, 142, 145, 255, 134, 141, 144, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 144, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 144, 147, 255, 142, 149, 151, 255, 141, 147, 150, 255, 150, 157, 161, 255, 146, 155, 158, 255, 147, 156, 159, 255, 143, 151, 154, 255, 133, 139, 143, 255, 122, 127, 131, 255, 109, 111, 115, 255, 103, 106, 109, 255, 124, 128, 131, 255, 119, 123, 126, 255, 82, 87, 90, 255, 124, 129, 132, 255, 137, 145, 147, 255, 138, 145, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 144, 149, 153, 255, 142, 149, 152, 255, 144, 153, 155, 255, 145, 154, 156, 255, 144, 153, 156, 255, 145, 153, 156, 255, 139, 146, 150, 255, 136, 141, 145, 255, 138, 141, 145, 255, 132, 134, 137, 255, 105, 109, 112, 255, 105, 109, 112, 255, 107, 111, 114, 255, 102, 107, 110, 255, 135, 141, 144, 255, 137, 145, 147, 255, 137, 143, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 145, 149, 255, 141, 146, 150, 255, 145, 151, 155, 255, 142, 149, 152, 255, 147, 156, 158, 255, 142, 151, 153, 255, 146, 154, 157, 255, 141, 149, 152, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 138, 142, 255, 114, 118, 121, 255, 101, 105, 108, 255, 110, 114, 117, 255, 99, 104, 107, 255, 126, 132, 134, 255, 137, 145, 147, 255, 138, 144, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 145, 151, 155, 255, 141, 148, 151, 255, 147, 155, 158, 255, 141, 151, 153, 255, 146, 155, 158, 255, 144, 152, 155, 255, 137, 143, 147, 255, 136, 141, 145, 255, 138, 140, 144, 255, 124, 127, 130, 255, 102, 106, 109, 255, 109, 113, 116, 255, 100, 105, 108, 255, 114, 119, 122, 255, 137, 145, 147, 255, 136, 144, 146, 255, 135, 140, 144, 255, 137, 142, 146, 255, 131, 136, 140, 255, 134, 139, 143, 255, 140, 146, 149, 255, 120, 128, 130, 255, 87, 97, 99, 255, 103, 113, 115, 255, 146, 156, 158, 255, 145, 155, 157, 255, 144, 151, 155, 255, 142, 149, 152, 255, 136, 141, 145, 255, 138, 142, 146, 255, 142, 144, 148, 255, 139, 143, 146, 255, 124, 128, 131, 255, 107, 112, 115, 255, 122, 127, 130, 255, 139, 145, 148, 255, 135, 143, 145, 255, 134, 140, 144, 255, 138, 143, 147, 255, 132, 137, 141, 255, 133, 138, 142, 255, 138, 144, 147, 255, 133, 140, 143, 255, 94, 104, 106, 255, 90, 100, 102, 255, 136, 146, 148, 255, 146, 156, 158, 255, 144, 152, 155, 255, 143, 151, 154, 255, 138, 143, 147, 255, 137, 142, 146, 255, 141, 142, 146, 255, 141, 145, 148, 255, 130, 134, 137, 255, 110, 114, 117, 255, 115, 120, 123, 255, 135, 141, 144, 255, 136, 144, 146, 255, 135, 142, 144, 255, 138, 143, 147, 255, 134, 139, 143, 255, 131, 136, 140, 255, 136, 141, 145, 255, 139, 145, 148, 255, 107, 116, 118, 255, 85, 95, 98, 255, 121, 131, 133, 255, 147, 157, 159, 255, 145, 153, 156, 255, 144, 152, 155, 255, 139, 146, 149, 255, 136, 141, 145, 255, 139, 141, 145, 255, 142, 145, 149, 255, 135, 139, 142, 255, 116, 120, 123, 255, 110, 115, 118, 255, 130, 135, 138, 255, 137, 145, 147, 255, 131, 139, 141, 255, 133, 138, 142, 255, 133, 138, 142, 255, 133, 138, 142, 255, 120, 125, 129, 255, 105, 112, 114, 255, 116, 124, 125, 255, 116, 126, 128, 255, 97, 107, 109, 255, 146, 155, 157, 255, 142, 151, 154, 255, 140, 148, 151, 255, 135, 142, 145, 255, 136, 141, 145, 255, 137, 141, 145, 255, 140, 142, 146, 255, 139, 143, 146, 255, 142, 146, 149, 255, 133, 138, 141, 255, 135, 140, 143, 255, 137, 144, 146, 255, 134, 142, 144, 255, 131, 137, 140, 255, 133, 138, 142, 255, 133, 138, 142, 255, 127, 132, 135, 255, 107, 113, 116, 255, 111, 118, 120, 255, 123, 132, 134, 255, 94, 104, 106, 255, 131, 141, 143, 255, 146, 155, 157, 255, 141, 149, 152, 255, 136, 144, 147, 255, 135, 141, 145, 255, 136, 141, 145, 255, 140, 142, 146, 255, 138, 142, 145, 255, 142, 146, 149, 255, 136, 140, 143, 255, 134, 139, 142, 255, 137, 143, 145, 255, 136, 144, 146, 255, 131, 137, 140, 255, 134, 139, 143, 255, 133, 138, 142, 255, 131, 136, 140, 255, 113, 118, 121, 255, 106, 114, 116, 255, 121, 129, 131, 255, 103, 113, 115, 255, 114, 123, 126, 255, 148, 157, 159, 255, 141, 150, 152, 255, 138, 146, 149, 255, 134, 141, 144, 255, 136, 141, 145, 255, 139, 142, 146, 255, 139, 142, 146, 255, 141, 145, 148, 255, 139, 143, 146, 255, 134, 138, 142, 255, 136, 141, 144, 255, 137, 145, 147, 255, 132, 137, 141, 255, 133, 137, 140, 255, 121, 126, 129, 255, 95, 99, 102, 255, 91, 96, 97, 255, 127, 131, 133, 255, 131, 135, 137, 255, 92, 98, 101, 255, 114, 121, 124, 255, 149, 155, 159, 255, 145, 151, 155, 255, 144, 150, 154, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 142, 147, 151, 255, 141, 146, 150, 255, 140, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 133, 138, 142, 255, 134, 138, 141, 255, 126, 131, 134, 255, 105, 109, 112, 255, 86, 90, 92, 255, 115, 119, 120, 255, 137, 142, 143, 255, 102, 108, 110, 255, 100, 107, 110, 255, 143, 149, 153, 255, 146, 152, 156, 255, 146, 151, 155, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 144, 148, 255, 137, 142, 146, 255, 137, 142, 145, 255, 134, 140, 143, 255, 133, 138, 141, 255, 130, 134, 137, 255, 116, 120, 123, 255, 86, 90, 93, 255, 102, 106, 107, 255, 135, 139, 141, 255, 118, 123, 125, 255, 92, 99, 102, 255, 131, 138, 141, 255, 147, 154, 158, 255, 146, 151, 155, 255, 142, 148, 151, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 144, 255, 136, 142, 145, 255, 143, 148, 152, 255, 125, 129, 132, 255, 80, 84, 87, 255, 90, 94, 96, 255, 117, 121, 122, 255, 124, 128, 130, 255, 99, 103, 104, 255, 93, 98, 102, 255, 146, 151, 155, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 137, 142, 146, 255, 142, 147, 151, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 134, 139, 143, 255, 138, 143, 147, 255, 139, 143, 146, 255, 89, 93, 96, 255, 83, 87, 90, 255, 108, 112, 113, 255, 128, 132, 133, 255, 110, 114, 115, 255, 85, 89, 92, 255, 132, 137, 141, 255, 148, 153, 157, 255, 144, 149, 153, 255, 144, 149, 153, 255, 140, 145, 149, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 139, 144, 148, 255, 135, 140, 144, 255, 134, 139, 143, 255, 145, 150, 153, 255, 105, 109, 112, 255, 78, 82, 85, 255, 99, 103, 105, 255, 124, 128, 129, 255, 119, 123, 124, 255, 89, 94, 96, 255, 112, 117, 121, 255, 149, 154, 158, 255, 145, 150, 154, 255, 144, 149, 153, 255, 143, 148, 152, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 137, 142, 146, 255, 132, 137, 141, 255, 182, 187, 191, 255, 159, 163, 166, 255, 119, 123, 126, 255, 128, 132, 135, 255, 126, 130, 131, 255, 110, 114, 116, 255, 88, 92, 93, 255, 128, 133, 137, 255, 151, 156, 160, 255, 145, 150, 154, 255, 145, 150, 154, 255, 144, 149, 153, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 139, 144, 148, 255, 138, 143, 147, 255, 130, 135, 139, 255, 163, 168, 172, 255, 177, 181, 185, 255, 126, 130, 133, 255, 125, 129, 132, 255, 130, 134, 135, 255, 117, 121, 122, 255, 93, 97, 99, 255, 109, 113, 116, 255, 149, 154, 158, 255, 146, 151, 155, 255, 145, 150, 154, 255, 144, 149, 153, 255, 141, 146, 150, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 146, 150, 255, 138, 143, 147, 255, 132, 137, 141, 255, 144, 149, 153, 255, 186, 191, 195, 255, 139, 143, 146, 255, 120, 124, 127, 255, 131, 135, 137, 255, 121, 125, 126, 255, 102, 106, 108, 255, 94, 98, 100, 255, 141, 146, 150, 255, 148, 153, 157, 255, 146, 151, 155, 255, 144, 149, 153, 255, 144, 149, 153, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 142, 147, 151, 255, 138, 143, 147, 255, 136, 141, 145, 255, 131, 136, 140, 255, 212, 217, 221, 255, 192, 196, 199, 255, 146, 150, 153, 255, 130, 134, 137, 255, 116, 120, 121, 255, 96, 100, 102, 255, 104, 108, 110, 255, 147, 152, 156, 255, 152, 157, 161, 255, 145, 150, 154, 255, 142, 147, 151, 255, 145, 150, 154, 255, 143, 148, 152, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 190, 195, 199, 255, 209, 213, 216, 255, 157, 161, 164, 255, 135, 139, 142, 255, 120, 124, 125, 255, 105, 109, 111, 255, 92, 96, 98, 255, 139, 143, 146, 255, 150, 155, 159, 255, 150, 155, 159, 255, 141, 146, 150, 255, 144, 149, 153, 255, 145, 150, 154, 255, 141, 146, 150, 255, 141, 146, 150, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 133, 138, 142, 255, 167, 172, 176, 255, 217, 221, 225, 255, 173, 177, 180, 255, 140, 144, 147, 255, 125, 129, 131, 255, 111, 115, 116, 255, 90, 94, 97, 255, 122, 126, 128, 255, 150, 155, 159, 255, 152, 157, 161, 255, 141, 146, 150, 255, 143, 148, 152, 255, 145, 150, 154, 255, 142, 147, 151, 255, 140, 145, 149, 255, 142, 147, 151, 255, 139, 144, 148, 255, 138, 143, 147, 255, 141, 146, 150, 255, 138, 143, 147, 255, 133, 138, 142, 255, 146, 151, 155, 255, 207, 212, 216, 255, 161, 165, 168, 255, 130, 134, 137, 255, 118, 122, 125, 255, 103, 107, 108, 255, 86, 90, 92, 255, 129, 133, 134, 255, 151, 156, 160, 255, 149, 154, 158, 255, 145, 150, 154, 255, 142, 147, 151, 255, 142, 147, 151, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 132, 137, 141, 255, 151, 156, 160, 255, 206, 211, 215, 255, 179, 183, 186, 255, 138, 142, 145, 255, 123, 127, 130, 255, 109, 113, 114, 255, 87, 91, 93, 255, 108, 112, 114, 255, 152, 156, 159, 255, 149, 154, 158, 255, 147, 152, 156, 255, 143, 148, 152, 255, 141, 146, 150, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 134, 139, 143, 255, 137, 142, 146, 255, 195, 200, 204, 255, 195, 199, 203, 255, 149, 153, 156, 255, 126, 130, 133, 255, 114, 118, 120, 255, 95, 99, 101, 255, 93, 97, 99, 255, 144, 148, 150, 255, 150, 155, 159, 255, 149, 154, 158, 255, 143, 148, 152, 255, 142, 147, 151, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 129, 134, 138, 255, 174, 179, 183, 255, 172, 177, 181, 255, 133, 137, 140, 255, 113, 117, 120, 255, 97, 101, 104, 255, 81, 85, 86, 255, 94, 98, 101, 255, 140, 144, 146, 255, 148, 153, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 143, 148, 152, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 138, 143, 147, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 138, 142, 255, 176, 181, 185, 255, 184, 189, 193, 255, 145, 149, 152, 255, 119, 123, 126, 255, 104, 108, 111, 255, 86, 90, 91, 255, 82, 86, 87, 255, 127, 131, 133, 255, 150, 154, 157, 255, 147, 152, 156, 255, 146, 151, 155, 255, 143, 148, 152, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 131, 136, 140, 255, 158, 163, 167, 255, 190, 195, 199, 255, 158, 163, 166, 255, 125, 129, 132, 255, 109, 113, 116, 255, 91, 95, 97, 255, 79, 83, 84, 255, 110, 114, 117, 255, 148, 152, 154, 255, 148, 153, 157, 255, 147, 152, 156, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 133, 138, 142, 255, 142, 147, 151, 255, 189, 194, 198, 255, 140, 145, 149, 255, 108, 112, 115, 255, 82, 86, 89, 255, 73, 77, 80, 255, 80, 84, 85, 255, 126, 131, 134, 255, 142, 147, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 143, 148, 152, 255, 141, 146, 150, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 130, 135, 139, 255, 152, 157, 161, 255, 176, 181, 185, 255, 154, 159, 163, 255, 118, 122, 126, 255, 89, 93, 96, 255, 75, 79, 82, 255, 75, 79, 80, 255, 109, 113, 115, 255, 142, 146, 150, 255, 143, 147, 151, 255, 144, 149, 153, 255, 143, 148, 152, 255, 142, 147, 151, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 137, 142, 146, 255, 136, 141, 145, 255, 133, 138, 142, 255, 140, 145, 149, 255, 172, 177, 181, 255, 166, 171, 175, 255, 129, 134, 137, 255, 98, 102, 105, 255, 77, 81, 84, 255, 73, 77, 79, 255, 91, 95, 96, 255, 138, 143, 146, 255, 142, 147, 150, 255, 144, 149, 153, 255, 144, 149, 153, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 135, 140, 144, 255, 135, 140, 144, 255, 136, 141, 145, 255, 137, 142, 146, 255, 135, 140, 144, 255, 132, 137, 141, 255, 163, 168, 172, 255, 176, 181, 185, 255, 95, 100, 105, 255, 77, 81, 84, 255, 87, 91, 94, 255, 108, 112, 114, 255, 120, 125, 128, 255, 134, 139, 142, 255, 141, 145, 149, 255, 142, 147, 151, 255, 144, 149, 153, 255, 140, 145, 149, 255, 135, 140, 145, 255, 138, 143, 147, 255, 135, 140, 145, 255, 132, 137, 141, 255, 132, 137, 142, 255, 134, 139, 143, 255, 136, 141, 145, 255, 135, 140, 144, 255, 133, 139, 143, 255, 200, 205, 209, 255, 166, 171, 175, 255, 110, 116, 120, 255, 80, 84, 87, 255, 80, 84, 87, 255, 102, 106, 109, 255, 117, 121, 123, 255, 130, 135, 138, 255, 138, 143, 147, 255, 142, 147, 150, 255, 144, 149, 153, 255, 141, 146, 150, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 146, 255, 132, 137, 142, 255, 132, 137, 141, 255, 133, 138, 143, 255, 136, 141, 145, 255, 135, 141, 145, 255, 132, 138, 142, 255, 176, 181, 185, 255, 188, 193, 197, 255, 127, 132, 137, 255, 86, 90, 94, 255, 77, 81, 84, 255, 94, 98, 101, 255, 113, 117, 119, 255, 125, 130, 132, 255, 137, 142, 145, 255, 142, 146, 150, 255, 143, 148, 152, 255, 142, 147, 151, 255, 138, 143, 148, 255, 136, 141, 145, 255, 138, 143, 147, 255, 134, 139, 143, 255, 132, 137, 141, 255, 133, 138, 142, 255, 135, 140, 144, 255, 136, 141, 145, 255, 133, 139, 143, 255, 151, 156, 161, 255, 203, 208, 212, 255, 145, 150, 154, 255, //end of texture 1 111, 116, 120, 255, 130, 135, 138, 255, 139, 143, 147, 255, 146, 150, 155, 255, 141, 146, 151, 255, 125, 130, 135, 255, 133, 138, 143, 255, 133, 139, 144, 255, 133, 139, 145, 255, 146, 152, 158, 255, 98, 105, 111, 255, 118, 123, 126, 255, 133, 138, 142, 255, 143, 147, 151, 255, 152, 156, 161, 255, 124, 129, 134, 255, 132, 137, 142, 255, 132, 137, 143, 255, 132, 138, 144, 255, 132, 138, 144, 255, 136, 143, 148, 255, 102, 107, 112, 255, 125, 130, 134, 255, 135, 140, 144, 255, 146, 149, 154, 255, 152, 157, 163, 255, 117, 122, 127, 255, 134, 139, 144, 255, 133, 139, 144, 255, 134, 140, 144, 255, 138, 145, 151, 255, 115, 122, 128, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 140, 144, 148, 255, 126, 131, 135, 255, 115, 120, 124, 255, 103, 108, 112, 255, 124, 129, 133, 255, 132, 137, 141, 255, 134, 139, 143, 255, 135, 140, 144, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 144, 148, 255, 139, 143, 147, 255, 120, 125, 129, 255, 107, 112, 116, 255, 108, 113, 117, 255, 128, 133, 137, 255, 133, 138, 142, 255, 132, 137, 141, 255, 136, 140, 144, 255, 137, 142, 145, 255, 136, 141, 145, 255, 141, 145, 150, 255, 133, 138, 142, 255, 117, 122, 126, 255, 102, 107, 111, 255, 117, 122, 125, 255, 131, 136, 140, 255, 135, 140, 144, 255, 133, 138, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 141, 146, 150, 255, 141, 146, 150, 255, 130, 135, 138, 255, 119, 124, 127, 255, 133, 138, 141, 255, 113, 117, 120, 255, 121, 125, 128, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 142, 147, 151, 255, 140, 145, 149, 255, 119, 125, 128, 255, 128, 133, 136, 255, 127, 132, 135, 255, 110, 113, 116, 255, 130, 135, 138, 255, 136, 141, 145, 255, 136, 141, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 116, 121, 124, 255, 133, 138, 141, 255, 119, 123, 126, 255, 114, 118, 121, 255, 136, 141, 145, 255, 137, 142, 146, 255, 137, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 144, 151, 154, 255, 168, 176, 179, 255, 147, 153, 157, 255, 133, 136, 140, 255, 92, 96, 99, 255, 135, 140, 143, 255, 139, 144, 148, 255, 138, 143, 147, 255, 138, 143, 147, 255, 137, 142, 146, 255, 143, 148, 152, 255, 144, 151, 154, 255, 173, 181, 184, 255, 139, 144, 148, 255, 122, 124, 128, 255, 101, 105, 108, 255, 138, 143, 146, 255, 137, 143, 146, 255, 138, 143, 147, 255, 137, 142, 146, 255, 137, 143, 146, 255, 145, 150, 154, 255, 155, 163, 166, 255, 161, 168, 171, 255, 138, 141, 145, 255, 103, 107, 110, 255, 119, 124, 127, 255, 140, 145, 148, 255, 136, 142, 145, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 146, 153, 157, 255, 147, 156, 158, 255, 113, 119, 123, 255, 113, 116, 120, 255, 120, 124, 127, 255, 102, 107, 110, 255, 137, 144, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 138, 143, 147, 255, 139, 145, 148, 255, 147, 155, 158, 255, 139, 147, 150, 255, 107, 112, 116, 255, 121, 124, 127, 255, 103, 108, 111, 255, 123, 128, 131, 255, 136, 142, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 144, 150, 154, 255, 148, 157, 160, 255, 125, 132, 135, 255, 108, 112, 116, 255, 125, 129, 132, 255, 94, 99, 102, 255, 134, 141, 143, 255, 137, 143, 147, 255, 136, 141, 145, 255, 138, 143, 147, 255, 132, 139, 141, 255, 139, 148, 150, 255, 145, 154, 156, 255, 138, 144, 148, 255, 134, 137, 140, 255, 114, 118, 121, 255, 106, 111, 114, 255, 137, 144, 146, 255, 137, 143, 146, 255, 136, 141, 145, 255, 139, 144, 148, 255, 127, 135, 138, 255, 144, 154, 156, 255, 144, 152, 155, 255, 137, 142, 146, 255, 127, 130, 133, 255, 111, 116, 119, 255, 115, 121, 124, 255, 137, 144, 147, 255, 136, 142, 145, 255, 137, 142, 146, 255, 137, 144, 147, 255, 132, 140, 143, 255, 145, 154, 157, 255, 142, 148, 152, 255, 136, 139, 143, 255, 120, 123, 126, 255, 107, 111, 114, 255, 128, 135, 137, 255, 132, 138, 142, 255, 128, 132, 136, 255, 115, 120, 123, 255, 112, 120, 122, 255, 123, 132, 135, 255, 143, 151, 154, 255, 136, 142, 146, 255, 138, 142, 146, 255, 140, 145, 148, 255, 133, 138, 141, 255, 135, 142, 145, 255, 133, 138, 141, 255, 121, 125, 129, 255, 118, 124, 126, 255, 102, 111, 113, 255, 141, 149, 151, 255, 140, 147, 151, 255, 136, 141, 145, 255, 139, 143, 146, 255, 138, 142, 146, 255, 135, 140, 143, 255, 133, 140, 143, 255, 132, 137, 141, 255, 115, 120, 123, 255, 119, 126, 128, 255, 107, 116, 118, 255, 145, 154, 156, 255, 138, 145, 148, 255, 137, 141, 145, 255, 141, 145, 148, 255, 135, 139, 143, 255, 137, 142, 145, 255, 143, 148, 151, 255, 97, 101, 104, 255, 120, 124, 125, 255, 101, 105, 108, 255, 145, 150, 154, 255, 144, 149, 153, 255, 136, 141, 145, 255, 137, 142, 146, 255, 141, 146, 150, 255, 138, 143, 147, 255, 138, 143, 147, 255, 125, 129, 132, 255, 104, 108, 110, 255, 116, 120, 122, 255, 113, 118, 121, 255, 146, 151, 155, 255, 139, 144, 148, 255, 136, 141, 145, 255, 137, 142, 146, 255, 140, 145, 149, 255, 137, 142, 146, 255, 146, 150, 154, 255, 104, 108, 111, 255, 114, 118, 119, 255, 105, 109, 110, 255, 133, 138, 142, 255, 145, 150, 154, 255, 139, 144, 148, 255, 136, 141, 145, 255, 140, 145, 149, 255, 139, 144, 148, 255, 134, 139, 143, 255, 196, 201, 204, 255, 134, 138, 141, 255, 104, 108, 110, 255, 128, 133, 135, 255, 148, 153, 157, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 137, 142, 146, 255, 136, 141, 145, 255, 167, 172, 176, 255, 176, 180, 183, 255, 125, 129, 131, 255, 98, 102, 104, 255, 145, 150, 153, 255, 145, 150, 154, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 135, 140, 144, 255, 192, 197, 201, 255, 150, 154, 157, 255, 116, 120, 121, 255, 108, 112, 115, 255, 150, 155, 159, 255, 142, 147, 151, 255, 138, 143, 147, 255, 136, 141, 145, 255, 137, 142, 146, 255, 138, 143, 147, 255, 142, 147, 151, 255, 148, 152, 156, 255, 99, 103, 106, 255, 92, 96, 98, 255, 144, 149, 152, 255, 144, 149, 153, 255, 137, 142, 146, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 176, 181, 185, 255, 127, 131, 134, 255, 91, 95, 97, 255, 110, 114, 116, 255, 148, 152, 156, 255, 144, 149, 153, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 136, 141, 145, 255, 147, 152, 156, 255, 169, 174, 178, 255, 111, 115, 118, 255, 85, 89, 91, 255, 132, 136, 138, 255, 146, 151, 155, 255, 138, 143, 147, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 134, 139, 143, 255, 166, 171, 175, 255, 92, 96, 100, 255, 102, 106, 109, 255, 127, 131, 134, 255, 141, 146, 150, 255, 142, 147, 151, 255, 138, 143, 147, 255, 135, 140, 144, 255, 135, 140, 145, 255, 135, 140, 145, 255, 166, 171, 176, 255, 127, 133, 138, 255, 89, 93, 96, 255, 110, 114, 117, 255, 135, 140, 143, 255, 143, 148, 152, 255, 139, 144, 149, 255, 136, 141, 146, 255, 134, 139, 144, 255, 136, 141, 145, 255, 134, 139, 144, 255, 176, 181, 186, 255, 103, 108, 113, 255, 94, 98, 101, 255, 118, 123, 125, 255, 140, 145, 148, 255, 142, 147, 152, 255, 138, 143, 148, 255, 135, 140, 145, 255, 135, 140, 144, 255, 135, 140, 145, 255, 143, 148, 153, 255, 162, 168, 172, 255, 127, 132, 136, 255, 134, 139, 143, 255, 138, 143, 147, 255, 143, 148, 153, 255, 141, 146, 151, 255, 113, 118, 122, 255, 128, 133, 138, 255, 132, 137, 142, 255, 133, 139, 144, 255, 132, 138, 143, 255, 110, 116, 121, 255, 130, 134, 138, 255, 136, 141, 145, 255, 142, 146, 150, 255, 152, 156, 161, 255, 120, 125, 130, 255, 120, 125, 129, 255, 131, 136, 141, 255, 135, 140, 145, 255, 133, 139, 144, 255, 121, 127, 132, 255, 119, 124, 129, 255, 132, 137, 140, 255, 137, 142, 146, 255, 142, 146, 151, 255, 153, 158, 164, 255, 108, 113, 118, 255, 126, 131, 135, 255, 132, 137, 141, 255, 133, 138, 143, 255, 133, 140, 145, 255, 111, 117, 123, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 118, 123, 127, 255, 121, 126, 130, 255, 104, 109, 112, 255, 113, 118, 122, 255, 132, 137, 140, 255, 136, 141, 145, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 140, 145, 149, 255, 135, 140, 144, 255, 115, 120, 123, 255, 117, 122, 126, 255, 103, 108, 112, 255, 123, 128, 131, 255, 134, 139, 143, 255, 133, 138, 142, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 140, 144, 148, 255, 128, 133, 137, 255, 118, 123, 126, 255, 109, 114, 117, 255, 107, 111, 115, 255, 128, 133, 136, 255, 136, 141, 145, 255, 135, 140, 143, 255, 139, 144, 148, 255, 140, 145, 149, 255, 139, 144, 148, 255, 143, 148, 152, 255, 137, 142, 146, 255, 136, 143, 145, 255, 144, 150, 153, 255, 122, 126, 130, 255, 109, 113, 116, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 139, 144, 148, 255, 138, 143, 147, 255, 143, 148, 152, 255, 130, 136, 139, 255, 145, 152, 155, 255, 139, 144, 147, 255, 110, 113, 116, 255, 122, 126, 130, 255, 138, 143, 147, 255, 137, 142, 146, 255, 139, 144, 148, 255, 139, 144, 148, 255, 141, 146, 150, 255, 142, 147, 151, 255, 131, 137, 140, 255, 147, 153, 156, 255, 131, 136, 139, 255, 104, 108, 111, 255, 134, 138, 142, 255, 139, 144, 148, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 145, 151, 155, 255, 160, 168, 171, 255, 129, 135, 139, 255, 131, 134, 138, 255, 97, 101, 104, 255, 127, 131, 134, 255, 138, 144, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 147, 151, 255, 145, 152, 155, 255, 157, 166, 169, 255, 126, 131, 135, 255, 129, 132, 135, 255, 94, 98, 101, 255, 136, 141, 144, 255, 137, 144, 147, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 144, 148, 255, 144, 150, 153, 255, 153, 161, 164, 255, 142, 149, 153, 255, 130, 134, 138, 255, 113, 117, 120, 255, 108, 112, 115, 255, 138, 144, 147, 255, 136, 142, 145, 255, 138, 144, 147, 255, 140, 145, 149, 255, 141, 147, 150, 255, 146, 154, 157, 255, 146, 155, 157, 255, 125, 131, 134, 255, 112, 115, 118, 255, 120, 124, 127, 255, 99, 104, 107, 255, 136, 143, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 143, 149, 153, 255, 147, 156, 159, 255, 142, 150, 153, 255, 118, 123, 127, 255, 112, 115, 118, 255, 111, 115, 118, 255, 116, 121, 124, 255, 135, 142, 145, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 145, 152, 155, 255, 147, 156, 158, 255, 134, 141, 144, 255, 114, 118, 122, 255, 118, 121, 124, 255, 99, 103, 106, 255, 131, 137, 140, 255, 136, 142, 145, 255, 135, 140, 144, 255, 136, 141, 145, 255, 118, 126, 128, 255, 131, 140, 142, 255, 144, 152, 155, 255, 138, 144, 148, 255, 140, 143, 146, 255, 124, 128, 131, 255, 115, 119, 122, 255, 136, 144, 146, 255, 136, 142, 146, 255, 134, 139, 143, 255, 134, 140, 143, 255, 111, 121, 123, 255, 142, 151, 154, 255, 143, 151, 154, 255, 137, 142, 146, 255, 137, 140, 144, 255, 118, 122, 125, 255, 123, 128, 131, 255, 136, 143, 146, 255, 136, 141, 145, 255, 135, 140, 144, 255, 127, 134, 137, 255, 118, 127, 130, 255, 144, 154, 156, 255, 141, 147, 151, 255, 138, 142, 146, 255, 132, 135, 138, 255, 113, 118, 121, 255, 132, 138, 141, 255, 132, 138, 141, 255, 111, 116, 119, 255, 110, 115, 117, 255, 112, 118, 121, 255, 130, 137, 141, 255, 144, 150, 154, 255, 136, 141, 145, 255, 138, 142, 146, 255, 141, 146, 150, 255, 137, 142, 146, 255, 135, 141, 144, 255, 129, 133, 137, 255, 104, 109, 111, 255, 120, 125, 127, 255, 104, 111, 114, 255, 143, 150, 153, 255, 141, 147, 151, 255, 136, 141, 145, 255, 140, 144, 148, 255, 141, 145, 149, 255, 137, 142, 146, 255, 134, 140, 143, 255, 121, 126, 129, 255, 103, 107, 110, 255, 121, 127, 128, 255, 112, 120, 123, 255, 146, 152, 156, 255, 138, 144, 147, 255, 137, 141, 145, 255, 141, 146, 149, 255, 139, 144, 147, 255, 136, 142, 145, 255, 164, 168, 172, 255, 115, 119, 122, 255, 118, 122, 124, 255, 105, 110, 112, 255, 148, 153, 157, 255, 145, 150, 154, 255, 138, 143, 147, 255, 138, 143, 147, 255, 141, 146, 150, 255, 139, 144, 148, 255, 145, 150, 154, 255, 144, 148, 151, 255, 120, 124, 126, 255, 107, 111, 113, 255, 125, 129, 133, 255, 146, 151, 155, 255, 143, 148, 152, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 146, 150, 255, 136, 141, 145, 255, 161, 166, 170, 255, 122, 126, 129, 255, 123, 127, 128, 255, 99, 103, 105, 255, 142, 147, 151, 255, 144, 149, 153, 255, 141, 146, 150, 255, 137, 142, 146, 255, 140, 145, 149, 255, 140, 145, 149, 255, 134, 139, 143, 255, 187, 191, 195, 255, 127, 131, 134, 255, 97, 101, 102, 255, 137, 142, 144, 255, 148, 153, 157, 255, 142, 147, 151, 255, 142, 147, 151, 255, 140, 145, 149, 255, 138, 143, 147, 255, 136, 141, 145, 255, 175, 180, 184, 255, 163, 167, 170, 255, 117, 121, 124, 255, 98, 102, 104, 255, 150, 154, 158, 255, 145, 150, 154, 255, 143, 148, 152, 255, 141, 146, 150, 255, 138, 143, 147, 255, 139, 144, 148, 255, 136, 141, 145, 255, 193, 198, 201, 255, 141, 145, 148, 255, 106, 110, 112, 255, 116, 120, 122, 255, 150, 155, 159, 255, 143, 148, 152, 255, 143, 148, 152, 255, 140, 145, 149, 255, 138, 143, 147, 255, 138, 143, 147, 255, 150, 155, 159, 255, 127, 132, 135, 255, 87, 91, 94, 255, 101, 105, 107, 255, 143, 148, 151, 255, 144, 149, 153, 255, 140, 145, 149, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 142, 147, 151, 255, 167, 172, 176, 255, 108, 112, 116, 255, 83, 87, 90, 255, 120, 125, 128, 255, 145, 150, 153, 255, 143, 148, 152, 255, 139, 144, 148, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 156, 161, 165, 255, 151, 155, 159, 255, 95, 99, 102, 255, 86, 90, 92, 255, 137, 142, 145, 255, 145, 150, 154, 255, 141, 146, 150, 255, 137, 142, 146, 255, 136, 141, 145, 255, 136, 141, 145, 255, 135, 140, 144, 255, 170, 175, 179, 255, 94, 99, 103, 255, 119, 123, 127, 255, 134, 139, 142, 255, 143, 147, 152, 255, 137, 142, 147, 255, 136, 141, 146, 255, 135, 140, 144, 255, 134, 139, 144, 255, 134, 140, 145, 255, 161, 168, 173, 255, 105, 112, 117, 255, 100, 105, 108, 255, 127, 131, 135, 255, 140, 144, 148, 255, 145, 149, 154, 255, 131, 136, 141, 255, 136, 141, 146, 255, 134, 139, 144, 255, 135, 140, 145, 255, 133, 139, 144, 255, 160, 167, 171, 255, 93, 99, 103, 255, 110, 114, 117, 255, 131, 135, 139, 255, 141, 145, 150, 255, 143, 148, 153, 255, 131, 136, 141, 255, 135, 140, 145, 255, 134, 139, 143, 255, 134, 140, 145, 255, 143, 149, 154, 255, 137, 143, 149, 255, 135, 140, 144, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 146, 151, 255, 137, 142, 146, 255, 107, 112, 116, 255, 116, 121, 125, 255, 130, 135, 139, 255, 132, 138, 142, 255, 131, 136, 141, 255, 126, 132, 136, 255, 134, 139, 143, 255, 138, 142, 146, 255, 140, 144, 148, 255, 148, 152, 157, 255, 120, 125, 130, 255, 107, 112, 116, 255, 125, 130, 134, 255, 134, 139, 144, 255, 133, 139, 143, 255, 125, 131, 135, 255, 132, 137, 141, 255, 135, 140, 144, 255, 137, 142, 146, 255, 141, 145, 149, 255, 147, 152, 157, 255, 109, 114, 118, 255, 110, 115, 119, 255, 128, 133, 137, 255, 132, 137, 141, 255, 133, 139, 143, 255, 123, 128, 133, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 145, 149, 255, 139, 144, 147, 255, 123, 128, 132, 255, 119, 124, 127, 255, 116, 121, 124, 255, 109, 113, 116, 255, 129, 133, 137, 255, 137, 142, 146, 255, 137, 142, 145, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 146, 150, 255, 137, 142, 146, 255, 115, 120, 123, 255, 124, 129, 132, 255, 109, 114, 118, 255, 115, 119, 122, 255, 134, 139, 142, 255, 135, 139, 143, 255, 136, 141, 145, 255, 140, 145, 149, 255, 140, 145, 149, 255, 141, 145, 149, 255, 133, 138, 141, 255, 114, 119, 122, 255, 123, 128, 131, 255, 106, 111, 114, 255, 122, 127, 130, 255, 137, 142, 146, 255, 136, 141, 145, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 147, 151, 255, 141, 147, 151, 255, 158, 165, 168, 255, 151, 157, 161, 255, 129, 132, 136, 255, 97, 101, 104, 255, 138, 143, 147, 255, 139, 144, 148, 255, 138, 144, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 144, 149, 153, 255, 139, 145, 148, 255, 167, 174, 177, 255, 142, 147, 151, 255, 114, 117, 121, 255, 112, 116, 119, 255, 138, 144, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 138, 143, 147, 255, 140, 145, 149, 255, 144, 150, 154, 255, 147, 154, 157, 255, 161, 167, 171, 255, 137, 141, 145, 255, 100, 103, 107, 255, 128, 132, 135, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 145, 149, 255, 146, 152, 156, 255, 150, 159, 161, 255, 114, 120, 124, 255, 123, 126, 130, 255, 109, 113, 116, 255, 114, 119, 122, 255, 137, 144, 147, 255, 137, 142, 146, 255, 138, 143, 147, 255, 138, 143, 147, 255, 141, 147, 151, 255, 146, 153, 157, 255, 142, 150, 153, 255, 111, 116, 120, 255, 130, 132, 136, 255, 95, 99, 102, 255, 130, 135, 138, 255, 136, 143, 146, 255, 137, 142, 146, 255, 138, 143, 147, 255, 139, 145, 149, 255, 143, 149, 153, 255, 149, 158, 161, 255, 126, 133, 136, 255, 117, 120, 124, 255, 124, 127, 131, 255, 98, 103, 106, 255, 137, 143, 146, 255, 137, 143, 146, 255, 137, 143, 147, 255, 139, 144, 148, 255, 142, 148, 151, 255, 146, 154, 157, 255, 145, 154, 157, 255, 134, 141, 144, 255, 122, 124, 128, 255, 113, 117, 120, 255, 101, 105, 108, 255, 137, 144, 146, 255, 137, 143, 146, 255, 138, 143, 147, 255, 140, 145, 149, 255, 143, 150, 153, 255, 147, 155, 158, 255, 143, 152, 155, 255, 131, 136, 140, 255, 115, 118, 121, 255, 111, 115, 118, 255, 113, 118, 121, 255, 137, 143, 146, 255, 137, 142, 146, 255, 139, 144, 148, 255, 141, 147, 151, 255, 145, 152, 155, 255, 145, 154, 157, 255, 139, 146, 150, 255, 126, 130, 134, 255, 113, 117, 120, 255, 103, 107, 110, 255, 128, 135, 137, 255, 134, 140, 143, 255, 134, 139, 143, 255, 125, 131, 134, 255, 110, 119, 121, 255, 123, 133, 135, 255, 143, 151, 154, 255, 137, 143, 147, 255, 139, 142, 146, 255, 136, 140, 143, 255, 124, 129, 132, 255, 136, 144, 146, 255, 134, 140, 143, 255, 131, 136, 140, 255, 122, 129, 132, 255, 100, 110, 112, 255, 140, 150, 152, 255, 141, 149, 152, 255, 137, 142, 146, 255, 140, 143, 146, 255, 130, 134, 137, 255, 130, 136, 139, 255, 135, 142, 144, 255, 135, 140, 144, 255, 128, 133, 137, 255, 118, 126, 128, 255, 106, 116, 118, 255, 145, 154, 157, 255, 139, 146, 149, 255, 138, 141, 145, 255, 139, 143, 146, 255, 125, 129, 132, 255, 135, 142, 144, 255, 133, 138, 141, 255, 97, 101, 104, 255, 115, 119, 121, 255, 104, 109, 111, 255, 139, 145, 148, 255, 144, 150, 154, 255, 137, 142, 146, 255, 137, 142, 146, 255, 142, 147, 151, 255, 139, 144, 148, 255, 136, 141, 145, 255, 122, 126, 129, 255, 96, 100, 102, 255, 123, 127, 128, 255, 105, 110, 113, 255, 145, 151, 155, 255, 142, 147, 151, 255, 136, 141, 145, 255, 139, 144, 148, 255, 142, 146, 150, 255, 137, 142, 146, 255, 137, 142, 145, 255, 107, 111, 114, 255, 103, 107, 109, 255, 115, 120, 122, 255, 121, 127, 131, 255, 146, 151, 155, 255, 139, 145, 148, 255, 136, 141, 145, 255, 141, 146, 150, 255, 140, 145, 149, 255, 135, 141, 144, 255, 186, 191, 194, 255, 131, 135, 138, 255, 112, 116, 118, 255, 117, 121, 124, 255, 148, 153, 157, 255, 144, 149, 153, 255, 140, 145, 149, 255, 139, 144, 148, 255, 140, 145, 149, 255, 138, 143, 147, 255, 155, 160, 164, 255, 167, 171, 175, 255, 128, 132, 134, 255, 102, 106, 108, 255, 137, 141, 145, 255, 146, 151, 155, 255, 144, 149, 153, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 135, 140, 144, 255, 179, 183, 187, 255, 143, 147, 150, 255, 122, 126, 128, 255, 102, 106, 108, 255, 148, 153, 157, 255, 144, 149, 153, 255, 142, 147, 151, 255, 139, 144, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 137, 142, 146, 255, 168, 173, 176, 255, 115, 119, 122, 255, 91, 95, 97, 255, 142, 147, 149, 255, 147, 152, 156, 255, 142, 147, 151, 255, 141, 146, 150, 255, 138, 143, 147, 255, 137, 142, 146, 255, 134, 139, 143, 255, 179, 184, 188, 255, 145, 149, 152, 255, 106, 110, 112, 255, 101, 105, 107, 255, 150, 154, 158, 255, 145, 150, 154, 255, 141, 146, 150, 255, 140, 145, 149, 255, 137, 142, 146, 255, 137, 142, 146, 255, 140, 145, 149, 255, 185, 189, 193, 255, 127, 131, 134, 255, 95, 99, 101, 255, 124, 128, 130, 255, 149, 154, 158, 255, 143, 148, 152, 255, 141, 146, 150, 255, 139, 144, 148, 255, 137, 142, 146, 255, 136, 141, 145, 255, 159, 164, 168, 255, 105, 110, 113, 255, 88, 92, 94, 255, 115, 120, 122, 255, 142, 147, 151, 255, 143, 148, 152, 255, 138, 143, 147, 255, 135, 140, 144, 255, 134, 139, 143, 255, 136, 141, 145, 255, 154, 159, 163, 255, 152, 157, 161, 255, 92, 96, 99, 255, 92, 96, 99, 255, 130, 134, 138, 255, 143, 148, 152, 255, 141, 146, 150, 255, 137, 142, 147, 255, 134, 139, 143, 255, 135, 140, 145, 255, 134, 140, 144, 255, 169, 174, 178, 255, 127, 132, 136, 255, 87, 91, 94, 255, 101, 105, 107, 255, 140, 145, 148, 255, 143, 148, 152, 255, 139, 144, 148, 255, 137, 142, 146, 255, 134, 139, 143, 255, 136, 141, 145, 255, 138, 143, 147, 255, 172, 177, 181, 255, //end of texture 2 129, 134, 138, 255, 141, 145, 149, 255, 127, 132, 136, 255, 123, 129, 133, 255, 136, 142, 147, 255, 122, 128, 132, 255, 139, 143, 147, 255, 134, 138, 143, 255, 120, 125, 130, 255, 131, 137, 142, 255, 127, 132, 136, 255, 133, 138, 142, 255, 143, 147, 152, 255, 118, 123, 127, 255, 129, 134, 138, 255, 130, 136, 141, 255, 138, 143, 147, 255, 140, 145, 149, 255, 140, 147, 150, 255, 132, 136, 140, 255, 122, 126, 129, 255, 138, 143, 147, 255, 139, 144, 148, 255, 137, 142, 146, 255, 142, 148, 151, 255, 116, 119, 123, 255, 137, 142, 146, 255, 139, 144, 148, 255, 140, 145, 149, 255, 141, 148, 151, 255, 119, 122, 126, 255, 133, 138, 142, 255, 137, 142, 146, 255, 137, 142, 146, 255, 144, 153, 155, 255, 125, 129, 133, 255, 111, 115, 118, 255, 137, 143, 146, 255, 138, 143, 147, 255, 139, 147, 150, 255, 132, 138, 142, 255, 116, 120, 123, 255, 128, 134, 137, 255, 137, 142, 146, 255, 138, 144, 148, 255, 140, 148, 151, 255, 122, 126, 129, 255, 116, 122, 124, 255, 125, 130, 133, 255, 112, 117, 120, 255, 139, 146, 149, 255, 137, 142, 146, 255, 138, 143, 147, 255, 133, 138, 141, 255, 115, 119, 122, 255, 126, 132, 135, 255, 138, 143, 147, 255, 139, 143, 147, 255, 138, 143, 147, 255, 116, 121, 124, 255, 116, 122, 125, 255, 142, 148, 152, 255, 139, 143, 147, 255, 136, 141, 145, 255, 144, 149, 152, 255, 117, 122, 124, 255, 142, 147, 151, 255, 137, 142, 146, 255, 136, 141, 145, 255, 162, 166, 170, 255, 106, 110, 112, 255, 146, 150, 154, 255, 138, 143, 147, 255, 137, 142, 146, 255, 161, 166, 170, 255, 116, 120, 122, 255, 134, 139, 142, 255, 139, 144, 148, 255, 136, 141, 145, 255, 145, 150, 154, 255, 114, 118, 122, 255, 137, 142, 146, 255, 134, 139, 143, 255, 133, 138, 142, 255, 142, 147, 152, 255, 114, 119, 123, 255, 131, 135, 139, 255, 139, 143, 148, 255, 130, 135, 140, 255, 135, 140, 145, 255, 130, 135, 140, 255, 120, 125, 128, 255, 144, 149, 154, 255, 127, 132, 137, 255, 134, 139, 143, 255, 137, 143, 148, 255, 139, 144, 148, 255, 140, 145, 149, 255, 128, 134, 137, 255, 121, 126, 129, 255, 129, 134, 137, 255, 138, 143, 147, 255, 139, 144, 148, 255, 131, 136, 140, 255, 126, 132, 135, 255, 122, 127, 130, 255, 136, 141, 145, 255, 139, 144, 148, 255, 138, 143, 147, 255, 126, 132, 135, 255, 118, 122, 125, 255, 136, 141, 145, 255, 137, 143, 146, 255, 139, 145, 148, 255, 149, 157, 160, 255, 124, 129, 132, 255, 111, 115, 118, 255, 137, 143, 146, 255, 138, 143, 147, 255, 144, 151, 155, 255, 136, 143, 146, 255, 112, 115, 118, 255, 131, 137, 140, 255, 138, 143, 147, 255, 142, 148, 152, 255, 144, 152, 155, 255, 119, 123, 126, 255, 119, 124, 127, 255, 129, 134, 137, 255, 119, 125, 128, 255, 137, 145, 148, 255, 138, 143, 146, 255, 129, 134, 137, 255, 134, 140, 143, 255, 123, 128, 131, 255, 125, 133, 136, 255, 139, 145, 149, 255, 134, 138, 142, 255, 133, 138, 142, 255, 124, 129, 132, 255, 120, 127, 130, 255, 142, 149, 153, 255, 137, 141, 145, 255, 130, 136, 139, 255, 148, 152, 156, 255, 114, 119, 121, 255, 146, 151, 155, 255, 140, 145, 149, 255, 139, 144, 148, 255, 157, 161, 165, 255, 111, 115, 117, 255, 142, 146, 150, 255, 141, 146, 150, 255, 139, 144, 148, 255, 157, 162, 165, 255, 123, 127, 129, 255, 127, 131, 134, 255, 143, 148, 152, 255, 139, 144, 148, 255, 141, 146, 150, 255, 107, 111, 115, 255, 130, 135, 138, 255, 139, 144, 149, 255, 136, 141, 145, 255, 143, 149, 154, 255, 120, 125, 129, 255, 118, 122, 125, 255, 141, 146, 150, 255, 136, 141, 146, 255, 135, 140, 145, 255, 140, 146, 150, 255, 106, 110, 113, 255, 142, 146, 151, 255, 136, 141, 146, 255, 135, 140, 145, 255, 146, 152, 157, 255, 137, 142, 146, 255, 140, 145, 149, 255, 122, 127, 130, 255, 118, 123, 126, 255, 132, 137, 142, 255, 134, 139, 143, 255, 140, 144, 148, 255, 130, 135, 139, 255, 116, 121, 125, 255, 129, 134, 138, 255, 132, 137, 141, 255, 138, 143, 147, 255, 141, 145, 149, 255, 114, 119, 123, 255, 122, 127, 131, 255, 132, 138, 142, 255, 138, 143, 147, 255, 139, 144, 148, 255, 149, 156, 159, 255, 129, 134, 138, 255, 115, 119, 122, 255, 138, 144, 147, 255, 138, 143, 147, 255, 143, 149, 152, 255, 141, 147, 150, 255, 113, 116, 120, 255, 136, 141, 145, 255, 138, 143, 147, 255, 142, 147, 151, 255, 146, 153, 156, 255, 120, 123, 127, 255, 126, 131, 134, 255, 136, 141, 145, 255, 129, 136, 139, 255, 139, 148, 151, 255, 133, 138, 141, 255, 119, 123, 126, 255, 136, 143, 145, 255, 133, 138, 142, 255, 133, 141, 144, 255, 138, 145, 148, 255, 124, 128, 131, 255, 129, 135, 138, 255, 135, 140, 144, 255, 128, 135, 138, 255, 142, 150, 153, 255, 129, 133, 136, 255, 123, 128, 131, 255, 137, 141, 144, 255, 112, 116, 119, 255, 144, 149, 153, 255, 138, 143, 147, 255, 140, 145, 149, 255, 145, 150, 153, 255, 112, 116, 118, 255, 133, 138, 142, 255, 140, 145, 149, 255, 140, 145, 149, 255, 147, 152, 156, 255, 119, 123, 125, 255, 122, 127, 130, 255, 143, 148, 152, 255, 139, 144, 148, 255, 138, 143, 147, 255, 119, 124, 126, 255, 123, 127, 130, 255, 143, 148, 152, 255, 137, 142, 146, 255, 140, 145, 149, 255, 142, 147, 150, 255, 107, 111, 114, 255, 145, 150, 154, 255, 138, 143, 147, 255, 136, 141, 145, 255, 155, 160, 164, 255, 103, 107, 109, 255, 139, 144, 147, 255, 140, 145, 149, 255, 137, 142, 146, 255, 151, 156, 160, 255, //end of texture 3 137, 142, 146, 255, 131, 136, 140, 255, 130, 135, 139, 255, 137, 142, 146, 255, 127, 132, 137, 255, 134, 139, 143, 255, 136, 141, 145, 255, 128, 133, 137, 255, 128, 133, 136, 255, 136, 143, 146, 255, 130, 135, 138, 255, 130, 135, 139, 255, 131, 136, 140, 255, 130, 135, 139, 255, 134, 141, 144, 255, 128, 133, 136, 255, 128, 133, 136, 255, 137, 142, 146, 255, 139, 143, 148, 255, 131, 135, 138, 255, 135, 140, 145, 255, 132, 137, 140, 255, 136, 141, 145, 255, 138, 143, 148, 255, 139, 144, 148, 255, 131, 137, 140, 255, 129, 134, 137, 255, 138, 144, 148, 255, 124, 129, 132, 255, 136, 141, 145, 255, 138, 144, 147, 255, 123, 128, 131, 255, 128, 133, 136, 255, 140, 146, 150, 255, 140, 145, 148, 255, 125, 131, 134, 255, 138, 143, 147, 255, 134, 139, 142, 255, 133, 139, 142, 255, 137, 142, 146, 255, 129, 133, 137, 255, 129, 134, 138, 255, 132, 138, 142, 255, 132, 137, 141, 255, 129, 134, 139, 255, 129, 134, 138, 255, 133, 138, 142, 255, 134, 139, 144, 255, 136, 141, 145, 255, 138, 144, 147, 255, 127, 132, 135, 255, 137, 143, 146, 255, 129, 134, 137, 255, 135, 140, 144, 255, 140, 146, 150, 255, 125, 129, 132, 255, 123, 127, 130, 255, 141, 146, 150, 255, 142, 147, 150, 255, 124, 129, 132, 255, 139, 144, 148, 255, 131, 136, 139, 255, 136, 141, 145, 255, 141, 146, 150, 255, //end of texture 4 133, 139, 142, 255, 132, 137, 141, 255, 131, 136, 140, 255, 132, 137, 141, 255, 134, 139, 143, 255, 134, 139, 143, 255, 132, 137, 141, 255, 134, 139, 143, 255, 132, 137, 140, 255, 132, 138, 141, 255, 133, 138, 142, 255, 134, 140, 144, 255, 135, 140, 143, 255, 133, 138, 141, 255, 134, 139, 142, 255, 136, 141, 144, 255, //end of texture 5 133, 139, 142, 255, 132, 137, 141, 255, 133, 138, 141, 255, 134, 140, 143, 255, //end of texture 6 133, 139, 142, 255, //end of texture 7 };
the_stack_data/234519440.c
#include <stdio.h> int main(int argc, char *argv[]) { char ch; while ((ch = getchar()) != '\n') { if (ch == ' ') putchar(ch); else putchar(ch+1); } return 0; }
the_stack_data/190767043.c
/*********************************************************************\ This is a test of my style of block comment Sometimes I like to do something like this. \*********************************************************************/ void Hello(void) { printf("Hello world.\n"); }
the_stack_data/129797.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 globalvar; int shlibvar = 10; void shlib_func (void) { globalvar = 1; }
the_stack_data/148577340.c
int main(int argc, char *argv[]) { return 0; }
the_stack_data/21226.c
/****************************************************************************** * @file tz_context.c * @brief Context Management for Armv8-M TrustZone - Sample implementation * @version V1.1.1 * @date 10. January 2018 ******************************************************************************/ /* * Copyright (c) 2016-2018 Arm Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * 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 * * 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. */ #if !TARGET_TFM #if defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U) #include "RTE_Components.h" #include CMSIS_device_header #include "tz_context.h" /// Number of process slots (threads may call secure library code) #ifndef TZ_PROCESS_STACK_SLOTS #define TZ_PROCESS_STACK_SLOTS 8U #endif /// Stack size of the secure library code #ifndef TZ_PROCESS_STACK_SIZE #define TZ_PROCESS_STACK_SIZE 256U #endif typedef struct { uint32_t sp_top; // stack space top uint32_t sp_limit; // stack space limit uint32_t sp; // current stack pointer } stack_info_t; static stack_info_t ProcessStackInfo [TZ_PROCESS_STACK_SLOTS]; static uint64_t ProcessStackMemory[TZ_PROCESS_STACK_SLOTS][TZ_PROCESS_STACK_SIZE/8U]; static uint32_t ProcessStackFreeSlot = 0xFFFFFFFFU; /// Initialize secure context memory system /// \return execution status (1: success, 0: error) __attribute__((cmse_nonsecure_entry)) uint32_t TZ_InitContextSystem_S (void) { uint32_t n; if (__get_IPSR() == 0U) { return 0U; // Thread Mode } for (n = 0U; n < TZ_PROCESS_STACK_SLOTS; n++) { ProcessStackInfo[n].sp = 0U; ProcessStackInfo[n].sp_limit = (uint32_t)&ProcessStackMemory[n]; ProcessStackInfo[n].sp_top = (uint32_t)&ProcessStackMemory[n] + TZ_PROCESS_STACK_SIZE; *((uint32_t *)ProcessStackMemory[n]) = n + 1U; } *((uint32_t *)ProcessStackMemory[--n]) = 0xFFFFFFFFU; ProcessStackFreeSlot = 0U; // Default process stack pointer and stack limit __set_PSPLIM((uint32_t)ProcessStackMemory); __set_PSP ((uint32_t)ProcessStackMemory); // Privileged Thread Mode using PSP __set_CONTROL(0x02U); return 1U; // Success } /// Allocate context memory for calling secure software modules in TrustZone /// \param[in] module identifies software modules called from non-secure mode /// \return value != 0 id TrustZone memory slot identifier /// \return value 0 no memory available or internal error __attribute__((cmse_nonsecure_entry)) TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module) { uint32_t slot; (void)module; // Ignore (fixed Stack size) if (__get_IPSR() == 0U) { return 0U; // Thread Mode } if (ProcessStackFreeSlot == 0xFFFFFFFFU) { return 0U; // No slot available } slot = ProcessStackFreeSlot; ProcessStackFreeSlot = *((uint32_t *)ProcessStackMemory[slot]); ProcessStackInfo[slot].sp = ProcessStackInfo[slot].sp_top; return (slot + 1U); } /// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S /// \param[in] id TrustZone memory slot identifier /// \return execution status (1: success, 0: error) __attribute__((cmse_nonsecure_entry)) uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id) { uint32_t slot; if (__get_IPSR() == 0U) { return 0U; // Thread Mode } if ((id == 0U) || (id > TZ_PROCESS_STACK_SLOTS)) { return 0U; // Invalid ID } slot = id - 1U; if (ProcessStackInfo[slot].sp == 0U) { return 0U; // Inactive slot } ProcessStackInfo[slot].sp = 0U; *((uint32_t *)ProcessStackMemory[slot]) = ProcessStackFreeSlot; ProcessStackFreeSlot = slot; return 1U; // Success } /// Load secure context (called on RTOS thread context switch) /// \param[in] id TrustZone memory slot identifier /// \return execution status (1: success, 0: error) __attribute__((cmse_nonsecure_entry)) uint32_t TZ_LoadContext_S (TZ_MemoryId_t id) { uint32_t slot; if ((__get_IPSR() == 0U) || ((__get_CONTROL() & 2U) == 0U)) { return 0U; // Thread Mode or using Main Stack for threads } if ((id == 0U) || (id > TZ_PROCESS_STACK_SLOTS)) { return 0U; // Invalid ID } slot = id - 1U; if (ProcessStackInfo[slot].sp == 0U) { return 0U; // Inactive slot } // Setup process stack pointer and stack limit __set_PSPLIM(ProcessStackInfo[slot].sp_limit); __set_PSP (ProcessStackInfo[slot].sp); return 1U; // Success } /// Store secure context (called on RTOS thread context switch) /// \param[in] id TrustZone memory slot identifier /// \return execution status (1: success, 0: error) __attribute__((cmse_nonsecure_entry)) uint32_t TZ_StoreContext_S (TZ_MemoryId_t id) { uint32_t slot; uint32_t sp; if ((__get_IPSR() == 0U) || ((__get_CONTROL() & 2U) == 0U)) { return 0U; // Thread Mode or using Main Stack for threads } if ((id == 0U) || (id > TZ_PROCESS_STACK_SLOTS)) { return 0U; // Invalid ID } slot = id - 1U; if (ProcessStackInfo[slot].sp == 0U) { return 0U; // Inactive slot } sp = __get_PSP(); if ((sp < ProcessStackInfo[slot].sp_limit) || (sp > ProcessStackInfo[slot].sp_top)) { return 0U; // SP out of range } ProcessStackInfo[slot].sp = sp; // Default process stack pointer and stack limit __set_PSPLIM((uint32_t)ProcessStackMemory); __set_PSP ((uint32_t)ProcessStackMemory); return 1U; // Success } #endif #endif // !TARGET_TFM
the_stack_data/441588.c
#include <stdlib.h> #include <stdio.h> #include <stdint.h> #include <stdbool.h> #include <inttypes.h> #include <string.h> #define NUM_ROOMS 10 typedef struct chat_message* chat_message_t; struct chat_message { uint64_t uid; size_t length; char *text; chat_message_t prev; }; chat_message_t rooms[NUM_ROOMS]; void *xmalloc(size_t bytes) { void *ret = malloc(bytes); if (!ret) { perror("xmalloc"); exit(1); } return ret; } void *xrealloc(void *old, size_t bytes) { void *ret = realloc(old, bytes); if (!ret) { perror("xrealloc"); exit(1); } return ret; } size_t normalize_size(size_t length) { return (length + 7) / 8 * 8; } void message_add_status(chat_message_t msg, char status) { msg->text[0] = status; msg->text[1] = '\t'; } char message_status(chat_message_t msg) { return msg->text[0]; } void update_message(chat_message_t msg, char *new_text) { size_t len = strlen(new_text) + 1; if (len > msg->length) { msg->text = xrealloc(msg->text, normalize_size(len)); } strncpy(msg->text+2, new_text, len); message_add_status(msg, '*'); } chat_message_t new_message(chat_message_t prev, uint64_t uid, size_t length) { chat_message_t msg = xmalloc(sizeof(struct chat_message)); length = normalize_size(length); msg->text = xmalloc(length); msg->uid = uid; msg->length = length; msg->prev = prev; message_add_status(msg, ' '); return msg; } chat_message_t make_message(chat_message_t prev, uint64_t uid, char *text) { size_t length = strlen(text) + 1; chat_message_t msg = new_message(prev, uid, length+2); strncpy(msg->text+2, text, length); return msg; } void add_message_after(chat_message_t cur, uint64_t uid, char *text) { chat_message_t msg = make_message(cur->prev, cur->uid, text); char *new_text = msg->text; msg->text = cur->text; cur->text = new_text; cur->uid = uid; cur->prev = msg; } chat_message_t load_messages(chat_message_t orig, FILE *file) { char buf[1024]; uint64_t uid; int nscan; chat_message_t cur = orig; while ((nscan = fscanf(file, "%" SCNu64 " %1024[^\n]", &uid, buf)) != -1) { if (nscan != 2) continue; cur = make_message(cur, uid, buf); } return cur; } chat_message_t find_message(chat_message_t chat, char *needle) { if (!chat || !needle) return NULL; if (strstr(chat->text, needle)) return chat; return find_message(chat->prev, needle); } void print_message(chat_message_t msg) { if (msg) { printf("%10" PRIu64 " %s\n", msg->uid, msg->text); } } void print_messages(chat_message_t chat, size_t limit) { if (!chat || !limit) return; print_messages(chat->prev, limit-1); print_message(chat); } void load_all_messages() { for (size_t room = 0; room < NUM_ROOMS; ++room) { char room_name[32]; rooms[room] = NULL; snprintf(room_name, 32, "room.%zu.log", room); FILE *f = fopen(room_name, "r"); if (f) { rooms[room] = load_messages(rooms[room], f); fclose(f); } } } bool ends_in_newline(char *buf) { return !!strchr(buf, '\n'); } int readline(char *buf, size_t length) { printf("> "); char *result = fgets(buf, length, stdin); if (result != NULL && !ends_in_newline(buf) && !feof(stdin)) { do { result = fgets(buf, length, stdin); } while (result != NULL && !ends_in_newline(buf)); printf("Line too long\n"); return result == NULL ? -1 : 0; } if (result == NULL) { return -1; } char *newline = strchr(buf, '\n'); if (newline != NULL) { *newline = '\0'; } return strlen(result); } void print_commands() { printf( "Commands:\n" "\tchat <chatid> print out a conversation\n" "\tfind <chatid> <str> find a message\n" "\tedit <newtext> edit the most recently found message\n" "\tadd <uid> <text> add a message after the most recently found message\n" "\tquit exit\n" ); } void sh_loop() { char line[256]; chat_message_t msg = NULL; int line_length; while ((line_length = readline(line, 256)) != -1) { if (line_length == 0) continue; char *command = strtok(line, " "); if (!strcmp(command, "quit")) { break; } else if (!strcmp(command, "help")) { print_commands(); } else if (!strcmp(command, "chat")) { uint64_t id = strtoul(strtok(NULL, " "), NULL, 10); if (1 <= id && id <= NUM_ROOMS) { print_messages(rooms[id-1], 50); } else { printf("Invalid conversation id.\n"); } } else if (!strcmp(command, "find")) { uint64_t id = strtoul(strtok(NULL, " "), NULL, 10); char *needle = strtok(NULL, ""); if (1 <= id && id <= NUM_ROOMS) { msg = find_message(rooms[id-1], needle); print_message(msg); } else { printf("Invalid conversation id.\n"); } } else if (!msg) { printf("You need to find a message first.\n"); } else if (!strcmp(command, "add")) { uint64_t uid = strtoul(strtok(NULL, " "), NULL, 10); char *text = strtok(NULL, ""); if (text) { add_message_after(msg, uid, text); printf("Message added.\n"); } else { printf("Invalid message text.\n"); } } else if (!strcmp(command, "edit")) { char *text = strtok(NULL, ""); if (text) { update_message(msg, text); printf("Message edited.\n"); } else { printf("Invalid message text.\n"); } } } } int main(int argc, char **argv) { setbuf(stdout, NULL); load_all_messages(); printf("Welcome to the chat logs.\nType \"help\" for a command listing.\n"); sh_loop(); }
the_stack_data/98575329.c
#include <stdio.h> #include <memory.h> int n, m, nm[1010][1010]; int x[] = {-1, 0, 1, 0}, y[] = {0, 1, 0, -1}; void print(int a, int b){ if(b==0){ printf("%d ", a); }else if(a==n+1){ printf("%d ", n+b); }else if(b==m+1){ printf("%d ", n+m+n-a+1); }else{ printf("%d ", n+n+m+m-b+1); } } void shot(int a, int b, int xy){ while(1){ a += x[xy]; b += y[xy]; if(!nm[a][b]){ print(a, b); break; }else if(nm[a][b]==2){ switch(xy){ case 0:{ xy = 1; break; } case 1:{ xy = 0; break; } case 2:{ xy = 3; break; } case 3:{ xy = 2; break; } } } } } int main(void){ scanf("%d %d", &n, &m); for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ int tmp; scanf("%d", &tmp); nm[i][j] = tmp ? 2 : 1 ; } } for(int i=1;i<=n;i++) shot(i, 0, 1); for(int i=1;i<=m;i++) shot(n+1, i, 0); for(int i=n;i>=1;i--) shot(i, m+1, 3); for(int i=m;i>=1;i--) shot(0, i, 2); return 0; }
the_stack_data/56928.c
#include <stdlib.h> typedef char t;int i,j; t*f(t*p){t c;c=*p++;i=((c&2)?1:0);j=(c&7)+1;return p;} int main(){t*p0="ab",*p1;p1=f(p0);if(p0+1!=p1)abort();exit(0);}
the_stack_data/103264271.c
char mask_pic_data[] = { 0x42, 0x4d, 0xd0, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, 0x28, 0x0, 0x0, 0x0, 0xa9, 0x0, 0x0, 0x0, 0xa9, 0x0, 0x0, 0x0, 0x1, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0x71, 0x0, 0x0, 0x12, 0xb, 0x0, 0x0, 0x12, 0xb, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x29, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa7, 0xc9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9d, 0xbe, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x71, 0x8e, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa0, 0xc1, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3e, 0x54, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa6, 0xc7, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa5, 0xc5, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9a, 0xbe, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xc3, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x98, 0xb9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xc0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9b, 0xba, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9d, 0xab, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa6, 0xbe, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xaf, 0xd5, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa0, 0xba, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa5, 0xc6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa6, 0xc4, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x99, 0xb6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa9, 0xcc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa2, 0xc1, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x63, 0x4f, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x34, 0x4b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x58, 0x49, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x7d, 0x97, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa2, 0xc9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xc1, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9d, 0xb9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xbe, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xb3, 0x97, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x48, 0x3e, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x92, 0xb1, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x51, 0x40, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x36, 0x46, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x8a, 0x7b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa9, 0xc5, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa6, 0xc7, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xc3, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x5d, 0x4b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa7, 0xbc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa9, 0xca, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x57, 0x59, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x32, 0x47, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xc6, 0xb6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9d, 0xbf, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa2, 0xca, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xac, 0xca, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x39, 0x28, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa9, 0xcc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xc5, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa5, 0xbc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xb2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9f, 0xc2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa1, 0xc1, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9f, 0xb8, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa7, 0xc7, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4f, 0x47, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0xa1, 0xbd, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x9f, 0xc6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x9d, 0xb8, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x9b, 0xb8, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0xb1, 0xb8, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x9d, 0xba, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x8d, 0x8d, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x9d, 0xbb, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x27, 0x2f, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x9b, 0xb8, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x9f, 0xbe, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x24, 0xa, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x93, 0xb0, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x30, 0x1f, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x9c, 0xba, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x33, 0x27, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa3, 0xc5, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x9d, 0xb1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, 0xb9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xc3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0x4d, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xbf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd5, 0xc4, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xbb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x88, 0x80, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xc5, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xba, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xc0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xbd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xb8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x99, 0xb9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xaf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0x7b, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, 0xcd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9a, 0xb2, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0xb4, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xc5, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa3, 0xbd, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x99, 0xa7, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x9e, 0xbf, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x3b, 0x55, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x90, 0xab, 0xff, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x65, 0xa2, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0xa0, 0xbe, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x6f, 0xb5, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0xa7, 0xbc, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x87, 0x92, 0xff, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0xa5, 0xab, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x9e, 0xbe, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x50, 0x92, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x8a, 0xa8, 0xff, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x5b, 0x93, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0xa2, 0xc0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x87, 0xca, 0xff, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xb8, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x8, 0x9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x42, 0x32, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa5, 0xbd, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x7, 0x0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xac, 0xc6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x73, 0xa9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xba, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3f, 0x6e, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xaa, 0xc6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x25, 0x2b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x48, 0x36, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x58, 0x42, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa0, 0xc2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xc, 0x12, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x99, 0xca, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2a, 0x2f, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3a, 0x93, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x34, 0x34, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x76, 0x80, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x44, 0x2b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x29, 0x18, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xbf, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x75, 0x8d, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9c, 0xc0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xba, 0xeb, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x8, 0x2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa8, 0xc4, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2b, 0x1b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x2e, 0x16, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x47, 0x45, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x18, 0xc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xc5, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x92, 0xb2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x94, 0xc4, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa3, 0xbb, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x5c, 0xa6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x39, 0x27, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x7, 0x0, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x11, 0x9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x98, 0xb9, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9e, 0xbc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x42, 0x90, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x99, 0xb6, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x48, 0x9b, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x7e, 0x8f, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x49, 0x57, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x17, 0x24, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x13, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa1, 0xc2, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x94, 0xb7, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa7, 0xbb, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x99, 0xbc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x9b, 0xbc, 0xff, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xa1, 0xc1, 0xff, 0x0, 0x0, };