Bouncing ball demo for the Gameduino

Dependencies:   Gameduino mbed

Committer:
TheChrisyd
Date:
Fri Dec 21 13:46:16 2012 +0000
Revision:
1:620429301ada
Parent:
0:a0257f241e9e
updated Gameduino library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
TheChrisyd 0:a0257f241e9e 1 extern GDClass GD;
TheChrisyd 0:a0257f241e9e 2 static void draw_ball(int x, int y, byte pal) {
TheChrisyd 0:a0257f241e9e 3 GD.xsprite(x, y, -40, -56, 0, pal, 0);
TheChrisyd 0:a0257f241e9e 4 GD.xsprite(x, y, -24, -56, 1, pal, 0);
TheChrisyd 0:a0257f241e9e 5 GD.xsprite(x, y, -8, -56, 2, pal, 0);
TheChrisyd 0:a0257f241e9e 6 GD.xsprite(x, y, 8, -56, 3, pal, 0);
TheChrisyd 0:a0257f241e9e 7 GD.xsprite(x, y, 24, -56, 4, pal, 0);
TheChrisyd 0:a0257f241e9e 8 GD.xsprite(x, y, -56, -40, 5, pal, 0);
TheChrisyd 0:a0257f241e9e 9 GD.xsprite(x, y, -40, -40, 6, pal, 0);
TheChrisyd 0:a0257f241e9e 10 GD.xsprite(x, y, -24, -40, 7, pal, 0);
TheChrisyd 0:a0257f241e9e 11 GD.xsprite(x, y, -8, -40, 8, pal, 0);
TheChrisyd 0:a0257f241e9e 12 GD.xsprite(x, y, 8, -40, 9, pal, 0);
TheChrisyd 0:a0257f241e9e 13 GD.xsprite(x, y, 24, -40, 10, pal, 0);
TheChrisyd 0:a0257f241e9e 14 GD.xsprite(x, y, 40, -40, 11, pal, 0);
TheChrisyd 0:a0257f241e9e 15 GD.xsprite(x, y, -56, -24, 12, pal, 0);
TheChrisyd 0:a0257f241e9e 16 GD.xsprite(x, y, -40, -24, 13, pal, 0);
TheChrisyd 0:a0257f241e9e 17 GD.xsprite(x, y, -24, -24, 14, pal, 0);
TheChrisyd 0:a0257f241e9e 18 GD.xsprite(x, y, -8, -24, 15, pal, 0);
TheChrisyd 0:a0257f241e9e 19 GD.xsprite(x, y, 8, -24, 16, pal, 0);
TheChrisyd 0:a0257f241e9e 20 GD.xsprite(x, y, 24, -24, 17, pal, 0);
TheChrisyd 0:a0257f241e9e 21 GD.xsprite(x, y, 40, -24, 18, pal, 0);
TheChrisyd 0:a0257f241e9e 22 GD.xsprite(x, y, -56, -8, 19, pal, 0);
TheChrisyd 0:a0257f241e9e 23 GD.xsprite(x, y, -40, -8, 20, pal, 0);
TheChrisyd 0:a0257f241e9e 24 GD.xsprite(x, y, -24, -8, 21, pal, 0);
TheChrisyd 0:a0257f241e9e 25 GD.xsprite(x, y, -8, -8, 22, pal, 0);
TheChrisyd 0:a0257f241e9e 26 GD.xsprite(x, y, 8, -8, 23, pal, 0);
TheChrisyd 0:a0257f241e9e 27 GD.xsprite(x, y, 24, -8, 24, pal, 0);
TheChrisyd 0:a0257f241e9e 28 GD.xsprite(x, y, 40, -8, 25, pal, 0);
TheChrisyd 0:a0257f241e9e 29 GD.xsprite(x, y, -56, 8, 26, pal, 0);
TheChrisyd 0:a0257f241e9e 30 GD.xsprite(x, y, -40, 8, 27, pal, 0);
TheChrisyd 0:a0257f241e9e 31 GD.xsprite(x, y, -24, 8, 28, pal, 0);
TheChrisyd 0:a0257f241e9e 32 GD.xsprite(x, y, -8, 8, 29, pal, 0);
TheChrisyd 0:a0257f241e9e 33 GD.xsprite(x, y, 8, 8, 30, pal, 0);
TheChrisyd 0:a0257f241e9e 34 GD.xsprite(x, y, 24, 8, 31, pal, 0);
TheChrisyd 0:a0257f241e9e 35 GD.xsprite(x, y, 40, 8, 32, pal, 0);
TheChrisyd 0:a0257f241e9e 36 GD.xsprite(x, y, -56, 24, 33, pal, 0);
TheChrisyd 0:a0257f241e9e 37 GD.xsprite(x, y, -40, 24, 34, pal, 0);
TheChrisyd 0:a0257f241e9e 38 GD.xsprite(x, y, -24, 24, 35, pal, 0);
TheChrisyd 0:a0257f241e9e 39 GD.xsprite(x, y, -8, 24, 36, pal, 0);
TheChrisyd 0:a0257f241e9e 40 GD.xsprite(x, y, 8, 24, 37, pal, 0);
TheChrisyd 0:a0257f241e9e 41 GD.xsprite(x, y, 24, 24, 38, pal, 0);
TheChrisyd 0:a0257f241e9e 42 GD.xsprite(x, y, 40, 24, 39, pal, 0);
TheChrisyd 0:a0257f241e9e 43 GD.xsprite(x, y, -40, 40, 40, pal, 0);
TheChrisyd 0:a0257f241e9e 44 GD.xsprite(x, y, -24, 40, 41, pal, 0);
TheChrisyd 0:a0257f241e9e 45 GD.xsprite(x, y, -8, 40, 42, pal, 0);
TheChrisyd 0:a0257f241e9e 46 GD.xsprite(x, y, 8, 40, 43, pal, 0);
TheChrisyd 0:a0257f241e9e 47 GD.xsprite(x, y, 24, 40, 44, pal, 0);
TheChrisyd 0:a0257f241e9e 48 }
TheChrisyd 0:a0257f241e9e 49 static PROGMEM prog_uchar ball[] = {
TheChrisyd 0:a0257f241e9e 50
TheChrisyd 0:a0257f241e9e 51 0xc9, 0xa1, 0xdc, 0xf9, 0x0f, 0xe0, 0x41, 0x3c, 0x88, 0x07, 0xf1, 0x20, 0x1e, 0xc4, 0x83, 0x78,
TheChrisyd 0:a0257f241e9e 52 0x10, 0x0f, 0xe2, 0x41, 0x3c, 0x88, 0x07, 0x71, 0xff, 0x06, 0xed, 0x85, 0xf2, 0x20, 0x68, 0xd8,
TheChrisyd 0:a0257f241e9e 53 0xbe, 0x5d, 0x5b, 0xc1, 0xdf, 0xbf, 0xd1, 0x70, 0x60, 0xc7, 0x94, 0x8d, 0xe0, 0x6f, 0xd9, 0xbc,
TheChrisyd 0:a0257f241e9e 54 0x59, 0xd3, 0x26, 0x4d, 0x18, 0x0b, 0xbe, 0xd6, 0x2c, 0x99, 0x37, 0x63, 0xca, 0xa4, 0x71, 0x63,
TheChrisyd 0:a0257f241e9e 55 0x46, 0x82, 0x8f, 0x15, 0x8b, 0xe6, 0x82, 0x83, 0x89, 0xe0, 0x68, 0x38, 0x78, 0x5b, 0xb1, 0x10,
TheChrisyd 0:a0257f241e9e 56 0x9c, 0x8d, 0x1a, 0x31, 0x6c, 0x28, 0x78, 0xda, 0xb4, 0x1c, 0xdc, 0x0d, 0x19, 0x0c, 0x1e, 0x36,
TheChrisyd 0:a0257f241e9e 57 0x82, 0x7b, 0xb8, 0x30, 0x68, 0xc0, 0xbf, 0xf5, 0xe0, 0x9a, 0x14, 0x82, 0x93, 0xfd, 0x6a, 0x1f,
TheChrisyd 0:a0257f241e9e 58 0xc4, 0x83, 0xb8, 0x1d, 0x9b, 0xd6, 0xad, 0x5a, 0x0e, 0xb6, 0x06, 0x82, 0xa1, 0x35, 0x2b, 0x96,
TheChrisyd 0:a0257f241e9e 59 0x2c, 0x5a, 0x08, 0x5e, 0x86, 0xec, 0xd9, 0x0e, 0x8b, 0xc1, 0xca, 0x9c, 0xd9, 0xe0, 0x61, 0xd0,
TheChrisyd 0:a0257f241e9e 60 0x6e, 0xb0, 0xab, 0x11, 0x66, 0x4c, 0x07, 0xeb, 0x28, 0x61, 0x39, 0x4a, 0x98, 0x0f, 0x07, 0xc1,
TheChrisyd 0:a0257f241e9e 61 0xc1, 0x94, 0x1d, 0x5b, 0x36, 0xac, 0x25, 0x8a, 0x38, 0x18, 0xac, 0x5b, 0x40, 0x1c, 0xb2, 0x6c,
TheChrisyd 0:a0257f241e9e 62 0xc9, 0x42, 0x38, 0x09, 0x0e, 0xc6, 0xc3, 0x41, 0xe2, 0x0a, 0xee, 0xc6, 0x8c, 0x96, 0x6a, 0x7b,
TheChrisyd 0:a0257f241e9e 63 0x76, 0xe3, 0x62, 0xb8, 0x0c, 0xee, 0x76, 0x6c, 0xdb, 0xb2, 0x69, 0xc3, 0x7a, 0x70, 0x30, 0xd2,
TheChrisyd 0:a0257f241e9e 64 0x22, 0x0c, 0x84, 0x03, 0x3b, 0xc1, 0x25, 0x6e, 0x5a, 0x69, 0x11, 0xc1, 0x3d, 0x38, 0x58, 0xb5,
TheChrisyd 0:a0257f241e9e 65 0x62, 0xd9, 0x80, 0xfd, 0xe0, 0x19, 0x8d, 0x83, 0xb3, 0xa5, 0xe0, 0x6e, 0x2d, 0x5a, 0x5a, 0xd6,
TheChrisyd 0:a0257f241e9e 66 0xa4, 0x29, 0xdc, 0x59, 0x0f, 0x4e, 0x9a, 0x4b, 0x87, 0xad, 0x8e, 0x59, 0x1c, 0x22, 0x45, 0x8a,
TheChrisyd 0:a0257f241e9e 67
TheChrisyd 0:a0257f241e9e 68 0xca, 0x90, 0xd6, 0xcb, 0xb2, 0xe9, 0xad, 0xb0, 0x0e, 0x97, 0x43, 0x15, 0xd8, 0x1c, 0x66, 0x8b,
TheChrisyd 0:a0257f241e9e 69 0xdc, 0x3a, 0xcc, 0x06, 0xf6, 0x83, 0x7d, 0xe5, 0x8d, 0xb2, 0xc1, 0x32, 0x1c, 0xa6, 0xc3, 0x5a,
TheChrisyd 0:a0257f241e9e 70 0x1c, 0x55, 0xec, 0x05, 0x47, 0xdd, 0x17, 0xa3, 0x16, 0x46, 0x9d, 0xe0, 0xa0, 0xa7, 0x0c, 0x04,
TheChrisyd 0:a0257f241e9e 71 0xcb, 0x70, 0xa7, 0x37, 0x67, 0xea, 0xcc, 0x04, 0xd1, 0x3c, 0x5c, 0xe8, 0xb2, 0xa9, 0xd3, 0x48,
TheChrisyd 0:a0257f241e9e 72 0x70, 0x29, 0x01, 0x7a, 0x83, 0xa3, 0x2d, 0x9d, 0x36, 0x82, 0xb3, 0x7e, 0xfb, 0xfa, 0xec, 0xda,
TheChrisyd 0:a0257f241e9e 73 0xd1, 0x6d, 0x3b, 0x3c, 0xe8, 0xb8, 0x17, 0x03, 0x50, 0x41, 0x70, 0xd4, 0x13, 0xad, 0x74, 0xe8,
TheChrisyd 0:a0257f241e9e 74 0xd0, 0xde, 0x20, 0x34, 0x5a, 0x50, 0x6f, 0x4f, 0x6f, 0x78, 0xd4, 0x15, 0x9e, 0xb4, 0x59, 0x0c,
TheChrisyd 0:a0257f241e9e 75 0x8e, 0xe6, 0xd4, 0x99, 0x55, 0xa3, 0x3a, 0x5a, 0x85, 0x87, 0xe0, 0xa1, 0xc1, 0xbc, 0x7a, 0x75,
TheChrisyd 0:a0257f241e9e 76 0x6a, 0xcd, 0x04, 0x0f, 0x53, 0x2a, 0x55, 0xda, 0xd0, 0x6e, 0x4d, 0x9b, 0x86, 0x68, 0x61, 0x4e,
TheChrisyd 0:a0257f241e9e 77 0x6d, 0x78, 0x30, 0xad, 0x4a, 0x95, 0x4a, 0x15, 0xca, 0x95, 0x2b, 0xd3, 0xfa, 0xdb, 0x83, 0xe8,
TheChrisyd 0:a0257f241e9e 78 0x99, 0x7c, 0x45, 0xa1, 0xdd, 0x5e, 0xff, 0x6e, 0x14, 0x46, 0x43, 0xec, 0x9e, 0x56, 0x6e, 0x4c,
TheChrisyd 0:a0257f241e9e 79 0xa9, 0x62, 0x43, 0x0a, 0xed, 0x87, 0xa4, 0x52, 0xbc, 0x34, 0x15, 0x19, 0x54, 0x50, 0x28, 0x74,
TheChrisyd 0:a0257f241e9e 80 0x87, 0x88, 0xcb, 0x50, 0x31, 0xac, 0x69, 0xd5, 0xb2, 0x26, 0x34, 0x9a, 0xaf, 0x19, 0xb6, 0x75,
TheChrisyd 0:a0257f241e9e 81 0x6a, 0x6f, 0x10, 0xb9, 0xe0, 0x34, 0x6a, 0xb2, 0xa8, 0xa1, 0x30, 0xa8, 0x09, 0x1e, 0x3a, 0x0a,
TheChrisyd 0:a0257f241e9e 82 0x86, 0x75, 0x6d, 0xe1, 0xb9, 0x74, 0x54, 0x42, 0x93, 0x2a, 0x4a, 0xa6, 0x55, 0x2d, 0xa7, 0x23,
TheChrisyd 0:a0257f241e9e 83 0x3c, 0x55, 0x0a, 0xd5, 0x25, 0x43, 0x7b, 0xb8, 0xd0, 0x6a, 0x45, 0xb3, 0x26, 0x8d, 0xe1, 0xa1,
TheChrisyd 0:a0257f241e9e 84
TheChrisyd 0:a0257f241e9e 85 0x56, 0xd4, 0x82, 0xe0, 0x11, 0x2d, 0xc2, 0x4b, 0x7c, 0xa8, 0x0d, 0x6a, 0x6a, 0xa6, 0xb6, 0xe0,
TheChrisyd 0:a0257f241e9e 86 0x90, 0x0e, 0xc2, 0x63, 0x2b, 0x0c, 0x0f, 0xc1, 0x2b, 0x19, 0xbc, 0xca, 0xe8, 0x10, 0xfc, 0xc2,
TheChrisyd 0:a0257f241e9e 87 0x73, 0xb2, 0x0c, 0x3e, 0x22, 0x55, 0x64, 0xcd, 0x5f, 0x10, 0x9e, 0xd5, 0xaa, 0x11, 0x1d, 0x3d,
TheChrisyd 0:a0257f241e9e 88 0x44, 0x68, 0x89, 0x57, 0xc1, 0x5b, 0x8c, 0x6a, 0xd5, 0xf1, 0xb3, 0xff, 0x07, 0xf1, 0x20, 0x1e,
TheChrisyd 0:a0257f241e9e 89 0xc4, 0x83, 0x78, 0x10, 0x0f, 0xe2, 0x41, 0x3c, 0x88, 0x07, 0xf1, 0x20, 0xa2, 0x4d, 0x73, 0x08,
TheChrisyd 0:a0257f241e9e 90 0x0f, 0xc2, 0xd6, 0xb4, 0x68, 0x52, 0x1f, 0xe2, 0x83, 0xa0, 0x72, 0xa5, 0x9a, 0x35, 0xaa, 0x53,
TheChrisyd 0:a0257f241e9e 91 0x15, 0xe2, 0xfd, 0x07, 0x0f, 0x25, 0x8a, 0x34, 0x88, 0x0d, 0xe1, 0xc1, 0x43, 0x99, 0x12, 0xc5,
TheChrisyd 0:a0257f241e9e 92 0x0a, 0xf5, 0xab, 0x51, 0xa9, 0x24, 0xa2, 0xde, 0x04, 0x25, 0x82, 0x15, 0x2a, 0x90, 0x27, 0x5b,
TheChrisyd 0:a0257f241e9e 93 0x44, 0x08, 0x15, 0x1e, 0x3e, 0x05, 0x29, 0xd0, 0xa7, 0x57, 0x96, 0x0e, 0x21, 0x11, 0x3a, 0x7c,
TheChrisyd 0:a0257f241e9e 94 0x08, 0x55, 0xac, 0x48, 0xa0, 0x7e, 0xb9, 0xba, 0x65, 0x6a, 0x13, 0x2c, 0x27, 0x7d, 0x29, 0x0b,
TheChrisyd 0:a0257f241e9e 95 0xde, 0xf2, 0xf4, 0xc8, 0x92, 0xa1, 0x55, 0x52, 0x08, 0x54, 0x2e, 0x4c, 0xa9, 0x60, 0x41, 0x0a,
TheChrisyd 0:a0257f241e9e 96 0x05, 0xc8, 0x8b, 0x80, 0xd2, 0xa5, 0x48, 0x94, 0x5d, 0xff, 0x83, 0x78, 0x10, 0x0f, 0xc2, 0x36,
TheChrisyd 0:a0257f241e9e 97 0x82, 0x7b, 0x10, 0xb6, 0x69, 0x25, 0xf8, 0x07, 0x21, 0x5b, 0x56, 0x2c, 0x06, 0xff, 0x20, 0x64,
TheChrisyd 0:a0257f241e9e 98 0xd5, 0x92, 0xf9, 0xe0, 0x1f, 0x04, 0xad, 0x59, 0xb2, 0x60, 0x36, 0xf8, 0x07, 0x01, 0xe3, 0x8a,
TheChrisyd 0:a0257f241e9e 99 0x0d, 0xd8, 0xb3, 0x13, 0xfc, 0xfd, 0x9b, 0x54, 0x62, 0xd0, 0xbe, 0x5d, 0xdd, 0xc1, 0xdf, 0xbf,
TheChrisyd 0:a0257f241e9e 100 0x51, 0x43, 0xfa, 0xf5, 0xda, 0xd6, 0x15, 0xfc, 0xa3, 0x85, 0x82, 0x68, 0xa1, 0xcb, 0x66, 0xf0,
TheChrisyd 0:a0257f241e9e 101
TheChrisyd 0:a0257f241e9e 102 0x53, 0x65, 0xc4, 0x60, 0x78, 0xd0, 0xad, 0xb3, 0xf8, 0x1b, 0x53, 0xd4, 0x0b, 0xec, 0x84, 0x07,
TheChrisyd 0:a0257f241e9e 103 0xed, 0xe1, 0x57, 0x85, 0x11, 0x85, 0xf6, 0xe3, 0x85, 0x4e, 0x1d, 0xda, 0x82, 0x6f, 0x78, 0xd4,
TheChrisyd 0:a0257f241e9e 104 0xab, 0x47, 0x97, 0x0d, 0xed, 0xc1, 0x57, 0x45, 0xd6, 0xd0, 0x67, 0x27, 0x5e, 0xe8, 0xb0, 0xa6,
TheChrisyd 0:a0257f241e9e 105 0x35, 0xfc, 0x18, 0x55, 0x94, 0x0c, 0xc2, 0x83, 0x8e, 0xf0, 0xa0, 0xc5, 0x86, 0x65, 0x0b, 0xe6,
TheChrisyd 0:a0257f241e9e 106 0xcc, 0x98, 0x32, 0x61, 0xdc, 0x98, 0x11, 0xc3, 0x86, 0x0c, 0x1a, 0xb0, 0x6f, 0x2f, 0x38, 0x9b,
TheChrisyd 0:a0257f241e9e 107 0x0c, 0x0e, 0x46, 0x83, 0x8b, 0x5d, 0x8b, 0xe1, 0x32, 0x38, 0x19, 0x09, 0xd7, 0x76, 0xed, 0x98,
TheChrisyd 0:a0257f241e9e 108 0x37, 0x6b, 0xda, 0xa4, 0x09, 0x63, 0x46, 0xa3, 0x65, 0x34, 0xb4, 0x17, 0x3c, 0x82, 0x43, 0x3c,
TheChrisyd 0:a0257f241e9e 109 0x0c, 0x4e, 0xf1, 0x28, 0x38, 0xd8, 0x4e, 0xfa, 0xe1, 0xd1, 0xae, 0x9e, 0xe6, 0x61, 0xcb, 0xa6,
TheChrisyd 0:a0257f241e9e 110 0x75, 0x6b, 0xe1, 0x21, 0x1e, 0x5d, 0x0c, 0x3b, 0x7a, 0x74, 0xd7, 0x88, 0x82, 0x61, 0x55, 0x8b,
TheChrisyd 0:a0257f241e9e 111 0x65, 0x4d, 0x1a, 0x15, 0xe8, 0xd7, 0x17, 0x1e, 0x6d, 0xb5, 0x80, 0x82, 0x61, 0x45, 0xb3, 0x25,
TheChrisyd 0:a0257f241e9e 112 0x8b, 0x1a, 0xcc, 0x9b, 0x53, 0xab, 0x26, 0x5c, 0xb4, 0x40, 0x6d, 0xe1, 0x41, 0xb3, 0x46, 0x0d,
TheChrisyd 0:a0257f241e9e 113 0xea, 0xd5, 0xa9, 0x55, 0x6b, 0x46, 0xb5, 0x2a, 0x95, 0x2a, 0xb4, 0x6b, 0x0d, 0x8f, 0x1a, 0x2d,
TheChrisyd 0:a0257f241e9e 114 0xa8, 0x0f, 0x8f, 0xaa, 0x4d, 0xa9, 0x0c, 0x1e, 0x0d, 0x22, 0x5a, 0x84, 0x67, 0x35, 0xaa, 0xc3,
TheChrisyd 0:a0257f241e9e 115 0x93, 0xf2, 0x68, 0x99, 0x0c, 0xa2, 0x53, 0xf0, 0x88, 0x16, 0xe1, 0x41, 0xb9, 0x16, 0xcd, 0xc1,
TheChrisyd 0:a0257f241e9e 116 0xd1, 0x7c, 0xbc, 0x08, 0xaf, 0xc1, 0x23, 0x6b, 0x86, 0x37, 0x15, 0x2a, 0x84, 0x2b, 0x0b, 0x4f,
TheChrisyd 0:a0257f241e9e 117 0xe9, 0x30, 0x5a, 0x46, 0x07, 0x11, 0xca, 0x95, 0x29, 0xab, 0x89, 0x15, 0xc1, 0x86, 0x8d, 0x4a,
TheChrisyd 0:a0257f241e9e 118
TheChrisyd 0:a0257f241e9e 119 0xa0, 0x55, 0x4b, 0x69, 0xd2, 0x68, 0xc7, 0x76, 0x70, 0xb0, 0x19, 0x1c, 0x0a, 0x85, 0x55, 0x2b,
TheChrisyd 0:a0257f241e9e 120 0x71, 0x42, 0x53, 0xe9, 0xb0, 0x1d, 0x3c, 0xc3, 0xa5, 0xb6, 0xf0, 0x90, 0x3b, 0xd2, 0x84, 0x05,
TheChrisyd 0:a0257f241e9e 121 0x0d, 0xc1, 0x49, 0x7b, 0xcd, 0x68, 0x98, 0x49, 0xc2, 0x62, 0x11, 0xd4, 0xb5, 0x33, 0x36, 0x45,
TheChrisyd 0:a0257f241e9e 122 0x29, 0x28, 0x4c, 0x85, 0x4b, 0x7d, 0x8b, 0xb2, 0x16, 0xad, 0x72, 0x67, 0xb4, 0xc8, 0x12, 0x36,
TheChrisyd 0:a0257f241e9e 123 0x37, 0x41, 0xb4, 0x48, 0x9b, 0xb9, 0xb3, 0x36, 0xa9, 0xd3, 0xb1, 0x0b, 0xad, 0xb6, 0x4c, 0x4d,
TheChrisyd 0:a0257f241e9e 124 0xd1, 0xba, 0x72, 0xe8, 0xb0, 0xae, 0x2d, 0x5a, 0x95, 0xa6, 0xca, 0x18, 0x3c, 0xd2, 0x66, 0xb4,
TheChrisyd 0:a0257f241e9e 125 0x0e, 0xaf, 0x6a, 0x2b, 0x82, 0x52, 0xa5, 0x2d, 0x23, 0x3c, 0x8b, 0x57, 0x27, 0x6e, 0x62, 0x04,
TheChrisyd 0:a0257f241e9e 126 0x4f, 0x25, 0x4a, 0x14, 0x2b, 0xd2, 0xa8, 0x51, 0x82, 0xfa, 0x89, 0x25, 0x46, 0x59, 0x78, 0x08,
TheChrisyd 0:a0257f241e9e 127 0x8e, 0x82, 0x14, 0x2a, 0x50, 0xa0, 0x5e, 0x9c, 0x3a, 0xb1, 0x6a, 0x82, 0xa7, 0x10, 0x25, 0x82,
TheChrisyd 0:a0257f241e9e 128 0x15, 0x29, 0x54, 0x28, 0x40, 0xbf, 0x7c, 0x7d, 0x72, 0xd5, 0x8a, 0x51, 0x1d, 0xde, 0x82, 0x87,
TheChrisyd 0:a0257f241e9e 129 0xbe, 0x03, 0xa0, 0xe7, 0x00, 0x08, 0x0d, 0x17, 0x8a, 0xa3, 0x45, 0x78, 0xd4, 0x2f, 0x4f, 0xae,
TheChrisyd 0:a0257f241e9e 130 0x5c, 0x39, 0xb2, 0x65, 0xef, 0x01, 0x75, 0x6b, 0x69, 0x6d, 0x8e, 0x8b, 0xe1, 0xa8, 0xd4, 0xfc,
TheChrisyd 0:a0257f241e9e 131 0x38, 0x5a, 0x5a, 0x26, 0x55, 0x28, 0xcf, 0x5a, 0xc1, 0xc1, 0x6c, 0x2e, 0x30, 0xbd, 0x95, 0x82,
TheChrisyd 0:a0257f241e9e 132 0xc7, 0xb4, 0x50, 0xaa, 0xc4, 0xdc, 0x5a, 0xdc, 0xaa, 0x45, 0xf9, 0x72, 0x2e, 0xed, 0x78, 0x25,
TheChrisyd 0:a0257f241e9e 133 0x4c, 0xa9, 0x10, 0xc5, 0x6a, 0xa2, 0xc5, 0x19, 0x12, 0x19, 0xaf, 0xa3, 0x83, 0xe0, 0xe0, 0x10,
TheChrisyd 0:a0257f241e9e 134 0x5e, 0xb6, 0x86, 0x30, 0x65, 0x79, 0x23, 0x1f, 0x84, 0x27, 0x51, 0x8f, 0x33, 0x1d, 0x85, 0xc7,
TheChrisyd 0:a0257f241e9e 135
TheChrisyd 0:a0257f241e9e 136 0xe8, 0xa1, 0x46, 0xb4, 0x2a, 0x55, 0xd1, 0x22, 0x3c, 0x0a, 0x0b, 0x0f, 0xf1, 0x41, 0x50, 0x8d,
TheChrisyd 0:a0257f241e9e 137 0xc8, 0x9a, 0x2a, 0x83, 0xc3, 0x95, 0xa8, 0x13, 0xc1, 0xa1, 0x49, 0xc4, 0x0b, 0x51, 0x57, 0x20,
TheChrisyd 0:a0257f241e9e 138 0x1d, 0xc6, 0xab, 0xf0, 0xa8, 0x48, 0x75, 0x74, 0x10, 0x29, 0x32, 0x3c, 0x09, 0xcd, 0x86, 0xe1,
TheChrisyd 0:a0257f241e9e 139 0x41, 0xa0, 0xea, 0xf0, 0x94, 0x8e, 0x85, 0x08, 0x11, 0x2c, 0x48, 0x91, 0xc0, 0xf0, 0xa0, 0x32,
TheChrisyd 0:a0257f241e9e 140 0xbc, 0x8d, 0x0e, 0x41, 0x5d, 0x42, 0x54, 0x36, 0x50, 0x21, 0x42, 0x78, 0xbc, 0x14, 0x1a, 0x1e,
TheChrisyd 0:a0257f241e9e 141 0xc2, 0x87, 0x40, 0x81, 0xba, 0x64, 0xca, 0x0c, 0x0e, 0xca, 0x85, 0x55, 0xc5, 0x64, 0x19, 0x1e,
TheChrisyd 0:a0257f241e9e 142 0x04, 0x44, 0x82, 0xb5, 0xa5, 0x7e, 0x6d, 0x94, 0xc1, 0xa8, 0x10, 0x17, 0x96, 0xe1, 0x3c, 0x58,
TheChrisyd 0:a0257f241e9e 143 0x1b, 0xea, 0x96, 0x66, 0x96, 0x6c, 0x14, 0x8a, 0x33, 0xe6, 0xda, 0x98, 0x06, 0x4b, 0xa1, 0x0a,
TheChrisyd 0:a0257f241e9e 144 0xb6, 0xca, 0xbd, 0xb0, 0x0e, 0x14, 0xac, 0x4d, 0xbd, 0x7a, 0x3a, 0x53, 0x52, 0x58, 0x86, 0x02,
TheChrisyd 0:a0257f241e9e 145 0x83, 0x87, 0xbc, 0x65, 0xb0, 0x34, 0x64, 0xc9, 0x52, 0x19, 0x3d, 0x14, 0x15, 0x04, 0x05, 0x02,
TheChrisyd 0:a0257f241e9e 146 0xf6, 0x82, 0xde, 0xf0, 0xa1, 0x3b, 0x2b, 0xca, 0x10, 0x1e, 0x2d, 0xc2, 0xe3, 0x51, 0x94, 0x13,
TheChrisyd 0:a0257f241e9e 147 0x3e, 0x75, 0xca, 0xd0, 0x21, 0x3d, 0x3c, 0x2a, 0x08, 0x0e, 0xf2, 0xf4, 0xca, 0xd1, 0x2d, 0x3b,
TheChrisyd 0:a0257f241e9e 148 0x7c, 0xc8, 0x90, 0xae, 0x3d, 0x78, 0x5c, 0xe9, 0xe0, 0x21, 0x3b, 0x3e, 0x84, 0x0f, 0xe9, 0xd2,
TheChrisyd 0:a0257f241e9e 149 0x2a, 0x44, 0x78, 0x90, 0x9f, 0x2c, 0xc3, 0x87, 0xac, 0x2a, 0x11, 0x3e, 0x82, 0x87, 0x80, 0xe8,
TheChrisyd 0:a0257f241e9e 150 0x72, 0x25, 0x82, 0x87, 0x8c, 0xe0, 0x15, 0x9e, 0xe5, 0xea, 0x09, 0x1e, 0xf1, 0x31, 0x7c, 0x97,
TheChrisyd 0:a0257f241e9e 151 0x8d, 0xe8, 0x14, 0x1f, 0x65, 0x06, 0x87, 0xf8, 0x21, 0x20, 0x1f, 0x06, 0x9f, 0xf8, 0x2c, 0x2d,
TheChrisyd 0:a0257f241e9e 152
TheChrisyd 0:a0257f241e9e 153 0x38, 0x24, 0xcb, 0x2f, 0x14, 0x5f, 0xb8, 0x05, 0x8f, 0xaa, 0x55, 0x8d, 0xa2, 0x83, 0x0c, 0xee,
TheChrisyd 0:a0257f241e9e 154 0xd2, 0xa4, 0x0e, 0x05, 0xa5, 0x0d, 0x51, 0x41, 0x4c, 0xd0, 0x2d, 0x4b, 0x86, 0x36, 0xc9, 0x12,
TheChrisyd 0:a0257f241e9e 155 0x44, 0x4d, 0x89, 0xc9, 0x51, 0xb2, 0x62, 0x42, 0x0c, 0x90, 0x2e, 0x45, 0x92, 0xb8, 0x29, 0x70,
TheChrisyd 0:a0257f241e9e 156 0x33, 0x26, 0x63, 0x22, 0xc8, 0x11, 0x32, 0xa5, 0x4b, 0x8d, 0x00, 0x97, 0x62, 0x76, 0xb6, 0x84,
TheChrisyd 0:a0257f241e9e 157 0xe0, 0x91, 0x10, 0x65, 0x48, 0x8b, 0x00, 0x4b, 0x70, 0x35, 0xa6, 0x4a, 0xb9, 0x05, 0x22, 0x7f,
TheChrisyd 0:a0257f241e9e 158 0x48, 0xe5, 0xfc, 0x28, 0x83, 0x87, 0xc2, 0xe0, 0x25, 0x27, 0x01, 0xa4, 0x0f, 0x29, 0x19, 0xe2,
TheChrisyd 0:a0257f241e9e 159 0x34, 0x0a, 0x0c, 0xbe, 0x32, 0xb8, 0x05, 0x4f, 0x29, 0x92, 0x05, 0x05, 0x1f, 0xd9, 0x3c, 0x13,
TheChrisyd 0:a0257f241e9e 160 0x00, 0xd7, 0xf0, 0x11, 0x3c, 0x24, 0x49, 0x0c, 0x5f, 0x7c, 0x64, 0xcb, 0xe4, 0x91, 0x21, 0xa4,
TheChrisyd 0:a0257f241e9e 161 0x4a, 0x0d, 0x5e, 0x12, 0xc4, 0xf3, 0xab, 0x99, 0xbc, 0x2a, 0x00, 0xb7, 0xe0, 0x27, 0x8e, 0x6d,
TheChrisyd 0:a0257f241e9e 162 0xf8, 0x08, 0xde, 0x52, 0xc2, 0x27, 0x47, 0x0e, 0xe2, 0xd9, 0x89, 0x15, 0xc3, 0x5a, 0x16, 0x4f,
TheChrisyd 0:a0257f241e9e 163 0xe9, 0xe1, 0x23, 0x38, 0x70, 0x8e, 0x1f, 0xd1, 0x83, 0x1d, 0xdb, 0xe0, 0x21, 0x8a, 0x25, 0xf7,
TheChrisyd 0:a0257f241e9e 164 0xe0, 0xc1, 0x45, 0xb2, 0x24, 0x4e, 0x12, 0x39, 0xb0, 0x17, 0x27, 0x96, 0x0d, 0x6b, 0x56, 0x2c,
TheChrisyd 0:a0257f241e9e 165 0x45, 0x30, 0x4b, 0x0e, 0xe1, 0x21, 0x78, 0x48, 0x60, 0x1f, 0x3d, 0xd8, 0x88, 0x0e, 0x1e, 0x2c,
TheChrisyd 0:a0257f241e9e 166 0x98, 0x71, 0x8d, 0x1e, 0xc1, 0x21, 0x7e, 0xb1, 0x0d, 0x5f, 0x2c, 0x98, 0xfb, 0x0f, 0xe0, 0x41,
TheChrisyd 0:a0257f241e9e 167 0x44, 0x44, 0xf0, 0x0f, 0x22, 0x62, 0x85, 0x85, 0xf0, 0x20, 0x2c, 0x9e, 0xb5, 0xe0, 0x10, 0x1e,
TheChrisyd 0:a0257f241e9e 168 0x84, 0x24, 0x88, 0x65, 0x19, 0xfc, 0x83, 0x90, 0x24, 0xf6, 0x62, 0x52, 0x7e, 0xf0, 0xe6, 0x20,
TheChrisyd 0:a0257f241e9e 169
TheChrisyd 0:a0257f241e9e 170 0x96, 0x15, 0xd3, 0x08, 0x1f, 0x04, 0x38, 0x4b, 0x64, 0xcf, 0x46, 0x04, 0xa3, 0x10, 0xee, 0x9f,
TheChrisyd 0:a0257f241e9e 171 0x8b, 0x24, 0x09, 0x6c, 0x59, 0x31, 0x0b, 0xfe, 0xfe, 0xa5, 0x70, 0xe2, 0xc0, 0x8e, 0x3d, 0x0b,
TheChrisyd 0:a0257f241e9e 172 0xc6, 0x21, 0x9c, 0x0b, 0x67, 0x8e, 0xec, 0xd9, 0x92, 0x62, 0xc6, 0x3f, 0x84, 0x6d, 0x88, 0xe0,
TheChrisyd 0:a0257f241e9e 173 0xc9, 0x9a, 0x05, 0xe1, 0xe0, 0xc7, 0x95, 0x73, 0x0c, 0x20, 0xc7, 0x86, 0x25, 0x33, 0x02, 0x21,
TheChrisyd 0:a0257f241e9e 174 0x94, 0x2b, 0x97, 0xe0, 0x91, 0x21, 0x48, 0x11, 0x8f, 0x60, 0x4c, 0x99, 0x50, 0xe2, 0x48, 0x9e,
TheChrisyd 0:a0257f241e9e 175 0x6d, 0x0c, 0x60, 0x1a, 0x41, 0x83, 0x07, 0x63, 0x86, 0xec, 0xc9, 0x91, 0x26, 0x49, 0x8c, 0x50,
TheChrisyd 0:a0257f241e9e 176 0x29, 0x0f, 0x02, 0x2a, 0x94, 0x28, 0xd4, 0xa7, 0x47, 0xb7, 0x4e, 0x1d, 0xda, 0xb4, 0x6a, 0x09,
TheChrisyd 0:a0257f241e9e 177 0xd5, 0xca, 0x14, 0x29, 0xd0, 0xab, 0x47, 0x97, 0x0e, 0xed, 0xda, 0xb4, 0x68, 0x0e, 0x5e, 0x2a,
TheChrisyd 0:a0257f241e9e 178 0xc3, 0x83, 0x7e, 0xbd, 0xe1, 0x49, 0x6a, 0xf0, 0x51, 0xae, 0x58, 0x41, 0x74, 0xd0, 0xa5, 0x33,
TheChrisyd 0:a0257f241e9e 179 0x3c, 0x68, 0xd5, 0xac, 0x29, 0x7c, 0x8a, 0x56, 0xaa, 0x28, 0x3c, 0xc8, 0xd6, 0x29, 0x43, 0xbb,
TheChrisyd 0:a0257f241e9e 180 0x56, 0x29, 0x9a, 0x25, 0x05, 0x4f, 0x1d, 0x5a, 0x14, 0xca, 0x8b, 0x17, 0xe1, 0x41, 0x5a, 0xb2,
TheChrisyd 0:a0257f241e9e 181 0x90, 0xa4, 0x31, 0x78, 0x4a, 0xd3, 0xa4, 0x41, 0xac, 0x1a, 0x59, 0xc9, 0x42, 0x5a, 0xbc, 0xb8,
TheChrisyd 0:a0257f241e9e 182 0x12, 0xc1, 0x43, 0xb7, 0x56, 0x8d, 0xe2, 0xd5, 0x8a, 0x56, 0x29, 0x42, 0x58, 0x78, 0x90, 0x1c,
TheChrisyd 0:a0257f241e9e 183 0x26, 0x82, 0x87, 0x0c, 0x29, 0x1a, 0xd5, 0xa9, 0x51, 0xa5, 0x52, 0xb9, 0x30, 0xa1, 0x8a, 0x9f,
TheChrisyd 0:a0257f241e9e 184 0x60, 0xf0, 0xd0, 0x26, 0x39, 0x3a, 0x88, 0x11, 0x25, 0x42, 0xb8, 0x52, 0x25, 0x82, 0x15, 0x29,
TheChrisyd 0:a0257f241e9e 185 0x14, 0x10, 0x3c, 0xa4, 0x4a, 0x52, 0x2f, 0x56, 0xb5, 0x4a, 0x15, 0xe1, 0x41, 0x88, 0x60, 0x81,
TheChrisyd 0:a0257f241e9e 186
TheChrisyd 0:a0257f241e9e 187 0x0a, 0xe4, 0xfb, 0xd7, 0x15, 0x1d, 0xc4, 0xa9, 0x11, 0x25, 0x52, 0xb8, 0x32, 0xa5, 0xe1, 0x41,
TheChrisyd 0:a0257f241e9e 188 0xa0, 0x00, 0xfd, 0xfe, 0x65, 0x48, 0x96, 0x20, 0x4e, 0x8c, 0xaa, 0xe8, 0x20, 0x2c, 0x3c, 0x08,
TheChrisyd 0:a0257f241e9e 189 0x0a, 0x1e, 0xe1, 0x43, 0x7b, 0x7c, 0x14, 0x2d, 0x4a, 0x85, 0x70, 0xa1, 0xf1, 0x21, 0x5e, 0xc8,
TheChrisyd 0:a0257f241e9e 190 0x97, 0xe7, 0x5f, 0x9a, 0x24, 0xf1, 0x62, 0x45, 0x8b, 0xcc, 0x16, 0x42, 0x85, 0x84, 0xa7, 0xe0,
TheChrisyd 0:a0257f241e9e 191 0x21, 0x55, 0xa2, 0xf8, 0x74, 0x11, 0x1f, 0xa2, 0xab, 0xbc, 0x06, 0xa1, 0x51, 0x83, 0x7a, 0x75,
TheChrisyd 0:a0257f241e9e 192 0x6a, 0xd5, 0x88, 0x2e, 0x10, 0x2a, 0x62, 0x41, 0x2a, 0xd0, 0x14, 0x1c, 0xc4, 0x07, 0x07, 0x31,
TheChrisyd 0:a0257f241e9e 193 0xaa, 0x55, 0xa9, 0x12, 0x19, 0x1c, 0x95, 0x09, 0x6d, 0x10, 0xe1, 0x41, 0x5c, 0x78, 0x16, 0x11,
TheChrisyd 0:a0257f241e9e 194 0x9e, 0x94, 0x46, 0xdb, 0xf0, 0x11, 0x1e, 0x94, 0xd7, 0x44, 0x21, 0x1a, 0x25, 0x88, 0x0f, 0x2f,
TheChrisyd 0:a0257f241e9e 195 0xd1, 0x49, 0x69, 0xcd, 0x48, 0xc6, 0xf1, 0xa1, 0x02, 0x44, 0x8b, 0xf0, 0x24, 0x44, 0x82, 0x7a,
TheChrisyd 0:a0257f241e9e 196 0x71, 0xfd, 0x20, 0x1d, 0x86, 0x47, 0x61, 0xc9, 0x42, 0x89, 0xe2, 0xe0, 0xa0, 0x56, 0x6d, 0x78,
TheChrisyd 0:a0257f241e9e 197 0x69, 0x10, 0x25, 0xa1, 0x66, 0x84, 0x67, 0x51, 0xd9, 0x40, 0x44, 0xb4, 0x10, 0xa6, 0x34, 0x38,
TheChrisyd 0:a0257f241e9e 198 0x08, 0xce, 0x07, 0x62, 0xc3, 0x73, 0x0b, 0x14, 0xda, 0x10, 0x05, 0xc9, 0x93, 0xab, 0x47, 0x4c,
TheChrisyd 0:a0257f241e9e 199 0x73, 0xa8, 0x1f, 0xc2, 0x93, 0xb5, 0xe0, 0xe0, 0x29, 0x47, 0xb7, 0x2c, 0x99, 0xf3, 0x42, 0xf8,
TheChrisyd 0:a0257f241e9e 200 0xf0, 0x88, 0x0f, 0x82, 0x83, 0x87, 0x3e, 0xb9, 0x72, 0x64, 0x07, 0x0f, 0x19, 0x32, 0x82, 0xa7,
TheChrisyd 0:a0257f241e9e 201 0x90, 0x01, 0x29, 0x28, 0x38, 0x06, 0x2f, 0xe9, 0xd2, 0xa4, 0x49, 0x4d, 0x96, 0x3d, 0x21, 0x3c,
TheChrisyd 0:a0257f241e9e 202 0xcb, 0x94, 0x11, 0x3c, 0xa4, 0x4a, 0x95, 0x22, 0x59, 0x52, 0xf0, 0x8d, 0x0e, 0xc1, 0x53, 0x4a,
TheChrisyd 0:a0257f241e9e 203
TheChrisyd 0:a0257f241e9e 204 0xf0, 0xe4, 0x28, 0x31, 0x63, 0x2a, 0x12, 0xa4, 0x50, 0x81, 0x00, 0xf9, 0xfa, 0xf4, 0xfd, 0x84,
TheChrisyd 0:a0257f241e9e 205 0xb4, 0xa8, 0x44, 0x88, 0xe2, 0x5d, 0xb1, 0x3a, 0xf5, 0xe7, 0x81, 0xb8, 0xa0, 0x5b, 0xb6, 0xae,
TheChrisyd 0:a0257f241e9e 206 0x45, 0x21, 0x28, 0xbc, 0xc8, 0xd3, 0x2b, 0x27, 0x4b, 0xca, 0x0a, 0xaf, 0x6b, 0x40, 0x6f, 0x78,
TheChrisyd 0:a0257f241e9e 207 0x96, 0x55, 0x10, 0x37, 0xc3, 0x61, 0x90, 0x57, 0x39, 0xc3, 0x43, 0x9e, 0x3c, 0x85, 0x97, 0x32,
TheChrisyd 0:a0257f241e9e 208 0x3c, 0x47, 0x47, 0x5d, 0x32, 0x2b, 0x84, 0xc2, 0x53, 0xa9, 0x2f, 0x59, 0xc9, 0x0e, 0x8f, 0x32,
TheChrisyd 0:a0257f241e9e 209 0xb3, 0x41, 0x78, 0xc8, 0x06, 0xd1, 0x31, 0x59, 0x97, 0x81, 0x12, 0x11, 0x1e, 0xa3, 0x83, 0xdc,
TheChrisyd 0:a0257f241e9e 210 0xda, 0x13, 0xbc, 0x04, 0x84, 0xf7, 0xd6, 0x11, 0x3c, 0xe2, 0x55, 0x78, 0xeb, 0x5c, 0xd1, 0x22,
TheChrisyd 0:a0257f241e9e 211 0xbc, 0x25, 0x4b, 0x9e, 0x3c, 0xa4, 0x07, 0x7f, 0xd9, 0xbc, 0xc2, 0x13, 0xf7, 0x64, 0xcb, 0x47,
TheChrisyd 0:a0257f241e9e 212 0x36, 0xef, 0xe0, 0x10, 0x1e, 0xc2, 0x47, 0xb2, 0xe0, 0x2f, 0x8f, 0x5f, 0x3a, 0x08, 0x1e, 0xb2,
TheChrisyd 0:a0257f241e9e 213 0x78, 0xc9, 0x4c, 0x16, 0xdc, 0xb9, 0x73, 0x90, 0x9f, 0x2c, 0xf9, 0x86, 0xc7, 0xe8, 0x10, 0x9e,
TheChrisyd 0:a0257f241e9e 214 0xb8, 0x57, 0x08, 0x1d, 0x3a, 0xa4, 0x4b, 0x3f, 0x13, 0x83, 0xb3, 0x2a, 0x08, 0x8c, 0x17, 0x91,
TheChrisyd 0:a0257f241e9e 215 0x70, 0x1a, 0xce, 0x03, 0x29, 0xcb, 0x28, 0x78, 0xea, 0x94, 0x19, 0x1e, 0x83, 0xc3, 0x3c, 0x9c,
TheChrisyd 0:a0257f241e9e 216 0x57, 0xc9, 0x22, 0x61, 0x84, 0x07, 0x6d, 0xe1, 0x71, 0x1e, 0x04, 0x0f, 0x89, 0x12, 0x25, 0xc8,
TheChrisyd 0:a0257f241e9e 217 0x5f, 0x8b, 0x6b, 0x7b, 0x19, 0x4a, 0x0a, 0x9e, 0xe2, 0xd7, 0x52, 0x74, 0x0d, 0x1e, 0x12, 0x38,
TheChrisyd 0:a0257f241e9e 218 0x04, 0x8f, 0x74, 0x70, 0x14, 0xb7, 0x66, 0x74, 0xd8, 0x06, 0x12, 0xd8, 0x07, 0xef, 0xa3, 0x28,
TheChrisyd 0:a0257f241e9e 219 0x85, 0xb3, 0x24, 0x4e, 0xf1, 0x22, 0x3c, 0x04, 0xcf, 0xf0, 0xc8, 0x25, 0x59, 0x85, 0x07, 0x0e,
TheChrisyd 0:a0257f241e9e 220
TheChrisyd 0:a0257f241e9e 221 0xe1, 0x43, 0x5c, 0x74, 0xe4, 0x9a, 0x0d, 0xb8, 0x84, 0x27, 0x8e, 0xc1, 0x81, 0x3d, 0x3b, 0xee,
TheChrisyd 0:a0257f241e9e 222 0xdc, 0x92, 0x05, 0xd7, 0xf0, 0x10, 0xbc, 0xc2, 0x83, 0xf8, 0xe0, 0xf1, 0x06, 0x83, 0x43, 0x78,
TheChrisyd 0:a0257f241e9e 223 0x90, 0x1c, 0x2f, 0x38, 0x72, 0xe0, 0x10, 0x1c, 0xc4, 0x85, 0x0f, 0xa9, 0xc1, 0x23, 0x59, 0x47,
TheChrisyd 0:a0257f241e9e 224 0x47, 0xf1, 0xec, 0xd8, 0x26, 0x8b, 0xf8, 0x10, 0x9e, 0x38, 0x85, 0xe7, 0xe0, 0x11, 0x1f, 0xa2,
TheChrisyd 0:a0257f241e9e 225 0x13, 0x27, 0x49, 0xe9, 0x92, 0x7d, 0x74, 0x08, 0x9f, 0x5c, 0xb9, 0x86, 0xf7, 0xe0, 0xc1, 0x96,
TheChrisyd 0:a0257f241e9e 226 0xed, 0x36, 0x97, 0xc5, 0xb3, 0x0d, 0x70, 0xcf, 0x1a, 0xe3, 0x69, 0x3a, 0xf0, 0x5e, 0x16, 0xd3,
TheChrisyd 0:a0257f241e9e 227 0x4a, 0x3a, 0x37, 0xae, 0xd3, 0xe2, 0x2e, 0x5c, 0xa5, 0x79, 0xc1, 0x43, 0x46, 0x78, 0x90, 0x16,
TheChrisyd 0:a0257f241e9e 228 0xbc, 0xf8, 0xca, 0x99, 0x0f, 0xf3, 0x52, 0xc6, 0x3a, 0x08, 0x0f, 0x52, 0xd9, 0x8b, 0xbb, 0x8b,
TheChrisyd 0:a0257f241e9e 229 0xd1, 0x29, 0x3e, 0x70, 0x8f, 0x8e, 0x52, 0xc5, 0x65, 0x04, 0x31, 0xfb, 0x88, 0xa7, 0x4c, 0x1e,
TheChrisyd 0:a0257f241e9e 230 0x75, 0x31, 0x6b, 0x88, 0x13, 0xc7, 0x56, 0x0c, 0x1b, 0xd1, 0xac, 0xd2, 0x65, 0xf0, 0x8c, 0x1e,
TheChrisyd 0:a0257f241e9e 231 0x5c, 0xc2, 0x83, 0xd8, 0xe0, 0xc0, 0x5a, 0x14, 0x4b, 0x96, 0x2c, 0xa4, 0x27, 0x87, 0xa2, 0x19,
TheChrisyd 0:a0257f241e9e 232 0x9e, 0x58, 0xb3, 0x66, 0x25, 0x32, 0x78, 0x30, 0x67, 0x1e, 0x1e, 0xa2, 0x07, 0xbb, 0xf0, 0xc0,
TheChrisyd 0:a0257f241e9e 233 0x26, 0x3c, 0xb0, 0x0a, 0x0e, 0x2c, 0x98, 0x33, 0x63, 0xc6, 0x94, 0x09, 0x17, 0xb6, 0xd1, 0x89,
TheChrisyd 0:a0257f241e9e 234 0x55, 0xf0, 0x23, 0xc2, 0x98, 0x2d, 0x9b, 0xf0, 0x10, 0x1d, 0xe2, 0x23, 0x73, 0xe2, 0xcc, 0x88,
TheChrisyd 0:a0257f241e9e 235 0x86, 0x8f, 0xe0, 0x1d, 0x5e, 0xa2, 0x07, 0x53, 0xa2, 0xe1, 0x2b, 0x59, 0xb2, 0x22, 0xc9, 0x82,
TheChrisyd 0:a0257f241e9e 236 0x04, 0x73, 0x62, 0xe1, 0x83, 0x09, 0x13, 0xc2, 0xd1, 0x81, 0x74, 0x74, 0x09, 0x1e, 0xe1, 0x21,
TheChrisyd 0:a0257f241e9e 237
TheChrisyd 0:a0257f241e9e 238 0x38, 0x04, 0x4f, 0xd6, 0xa4, 0xc2, 0x73, 0x7c, 0x8a, 0x0e, 0x8c, 0xb9, 0x70, 0x59, 0x8a, 0x4b,
TheChrisyd 0:a0257f241e9e 239 0x62, 0x4e, 0x64, 0x8e, 0xc8, 0x99, 0x0b, 0xae, 0xc4, 0x56, 0xd8, 0xc3, 0x59, 0x20, 0x78, 0x4f,
TheChrisyd 0:a0257f241e9e 240 0x03, 0xce, 0x4b, 0x71, 0x2e, 0x06, 0x4f, 0x52, 0x2c, 0x53, 0x45, 0x74, 0x5c, 0x1a, 0x7b, 0xb0,
TheChrisyd 0:a0257f241e9e 241 0x71, 0x90, 0x09, 0x5f, 0xc4, 0xc3, 0x07, 0xa7, 0xf0, 0x15, 0x1c, 0xc2, 0x37, 0x8b, 0xe0, 0xc5,
TheChrisyd 0:a0257f241e9e 242 0x71, 0x2f, 0xac, 0x09, 0xb2, 0x79, 0x30, 0x73, 0x44, 0x0f, 0xce, 0xf1, 0x89, 0x03, 0xf9, 0xe8,
TheChrisyd 0:a0257f241e9e 243 0x44, 0xba, 0x51, 0x90, 0x20, 0x1e, 0x7c, 0xc2, 0x57, 0x7c, 0x20, 0x55, 0x19, 0x82, 0x07, 0x25,
TheChrisyd 0:a0257f241e9e 244 0x4e, 0x14, 0xc3, 0x43, 0xf0, 0x24, 0x13, 0x9e, 0x89, 0x45, 0x87, 0xe4, 0x40, 0x21, 0x38, 0x90,
TheChrisyd 0:a0257f241e9e 245 0x63, 0x9b, 0x1e, 0xc2, 0x43, 0x74, 0x60, 0xc6, 0x98, 0x52, 0x72, 0xa0, 0x10, 0x1f, 0xc8, 0x06,
TheChrisyd 0:a0257f241e9e 246 0x8f, 0xf0, 0x11, 0x1d, 0x89, 0x11, 0x66, 0xc4, 0x90, 0x40, 0x7e, 0x20, 0x47, 0x36, 0x7d, 0x90,
TheChrisyd 0:a0257f241e9e 247 0x0e, 0x5f, 0xc4, 0x08, 0x11, 0x0a, 0x1e, 0x04, 0xf8, 0x47, 0xc7, 0xf8, 0x11, 0xbc, 0x19, 0x31,
TheChrisyd 0:a0257f241e9e 248 0x22, 0x18, 0x1c, 0xe8, 0xd3, 0xa3, 0x1b, 0x1c, 0xc2, 0x2f, 0xc3, 0xe0, 0x41, 0x9f, 0x5f, 0xf0,
TheChrisyd 0:a0257f241e9e 249 0xa0, 0x43, 0x9b, 0x56, 0xf4, 0x21, 0xc8, 0x80, 0x40, 0x78, 0xa4, 0x1b, 0x3c, 0x69, 0xd2, 0x44,
TheChrisyd 0:a0257f241e9e 250 0x41, 0x1c, 0x19, 0xd1, 0x91, 0xc1, 0x90, 0x01, 0x3b, 0x36, 0xa4, 0x88, 0x13, 0xa1, 0xe7, 0x3f,
TheChrisyd 0:a0257f241e9e 251 0x00, 0xad, 0xc4, 0x18, 0x40, 0x8f, 0x0e, 0x29, 0x12, 0x44, 0x09, 0x06, 0xef, 0x95, 0xc8, 0x88,
TheChrisyd 0:a0257f241e9e 252 0x01, 0x7d, 0xbe, 0xb4, 0x49, 0x66, 0x09, 0xba, 0x21, 0x88, 0x59, 0xf4, 0x20, 0x94, 0x00, 0xe8,
TheChrisyd 0:a0257f241e9e 253 0xd2, 0xa6, 0x49, 0x1c, 0x31, 0xfd, 0xe0, 0x45, 0x2c, 0x78, 0x30, 0xca, 0x01, 0xc1, 0x93, 0x3a,
TheChrisyd 0:a0257f241e9e 254
TheChrisyd 0:a0257f241e9e 255 0x15, 0x84, 0x38, 0x43, 0x20, 0x33, 0x22, 0x84, 0x09, 0x11, 0xa4, 0x9f, 0x1e, 0x68, 0xd1, 0xc0,
TheChrisyd 0:a0257f241e9e 256 0x4a, 0x09, 0x6f, 0xf0, 0x0c, 0x9f, 0xc1, 0x33, 0x05, 0xe0, 0xa2, 0x41, 0x0d, 0x33, 0xba, 0xe0,
TheChrisyd 0:a0257f241e9e 257 0xc9, 0x34, 0x7c, 0x07, 0x0f, 0x5a, 0x38, 0x82, 0x07, 0x86, 0x18, 0x98, 0x3e, 0xa2, 0x17, 0x3d,
TheChrisyd 0:a0257f241e9e 258 0x3c, 0xb4, 0x71, 0x62, 0xa3, 0x82, 0x11, 0x75, 0x04, 0x08, 0xde, 0xf8, 0xc3, 0x07, 0x6e, 0x9a,
TheChrisyd 0:a0257f241e9e 259 0xd8, 0xb1, 0x60, 0x44, 0x1b, 0x7c, 0xe9, 0xe3, 0xa3, 0x83, 0x1b, 0x27, 0x76, 0xac, 0x98, 0xc0,
TheChrisyd 0:a0257f241e9e 260 0x05, 0x6f, 0x44, 0x04, 0xc3, 0x07, 0xde, 0xe8, 0x11, 0x3c, 0xd1, 0x83, 0xf0, 0x1f, 0xbd, 0x10,
TheChrisyd 0:a0257f241e9e 261 0x86, 0x0f, 0xbc, 0xe1, 0x0b, 0x32, 0x7a, 0x50, 0xfe, 0x91, 0x12, 0x41, 0x4c, 0x08, 0x61, 0xf8,
TheChrisyd 0:a0257f241e9e 262 0x0c, 0x1e, 0x38, 0xb0, 0x62, 0xc6, 0x00, 0x3a, 0x7c, 0x20, 0x21, 0x8c, 0x88, 0x00, 0x7e, 0x7c,
TheChrisyd 0:a0257f241e9e 263 0xe1, 0x13, 0x07, 0x34, 0xc8, 0x10, 0xc0, 0x04, 0x6f, 0x04, 0xc1, 0x07, 0x1b, 0x66, 0x8c, 0x60,
TheChrisyd 0:a0257f241e9e 264 0xfd, 0xcb, 0x96, 0x22, 0x51, 0x9c, 0x18, 0x51, 0x22, 0x84, 0x0b, 0x15, 0x22, 0x58, 0x90, 0x40,
TheChrisyd 0:a0257f241e9e 265 0xf9, 0xf2, 0xe4, 0xca, 0x94, 0x22, 0x21, 0xf8, 0x09, 0x14, 0x10, 0x3c, 0x65, 0x48, 0x96, 0x20,
TheChrisyd 0:a0257f241e9e 266 0x56, 0xb4, 0x48, 0x11, 0xc2, 0xc2, 0x47, 0x78, 0x08, 0x5e, 0xd2, 0x25, 0x8b, 0x0f, 0x9e, 0xc2,
TheChrisyd 0:a0257f241e9e 267 0x83, 0x47, 0x74, 0x60, 0x28, 0x80, 0xbf, 0x3c, 0xbe, 0xdc, 0x39, 0x89, 0x67, 0x2b, 0x9a, 0xa5,
TheChrisyd 0:a0257f241e9e 268 0x70, 0x66, 0x42, 0x18, 0xc7, 0x47, 0x7e, 0x72, 0xf9, 0x48, 0x93, 0xc4, 0x5e, 0x0c, 0x2b, 0x91,
TheChrisyd 0:a0257f241e9e 269 0xc9, 0x81, 0x89, 0x60, 0x46, 0xe1, 0x49, 0x0e, 0xb3, 0xe0, 0x25, 0x82, 0xb9, 0xd0, 0xe0, 0x11,
TheChrisyd 0:a0257f241e9e 270 0x9d, 0xe5, 0x08, 0x63, 0x28, 0x8e, 0x8d, 0x28, 0x16, 0xcc, 0x99, 0x0a, 0x61, 0x24, 0x90, 0x81,
TheChrisyd 0:a0257f241e9e 271
TheChrisyd 0:a0257f241e9e 272 0xfc, 0xe8, 0xc9, 0x8c, 0x21, 0x3f, 0x3e, 0xc1, 0x83, 0x19, 0x53, 0xc6, 0xaf, 0x83, 0x01, 0x7f,
TheChrisyd 0:a0257f241e9e 273 0x7e, 0x7c, 0xa3, 0x47, 0xf0, 0xe4, 0xc5, 0x42, 0x18, 0xd3, 0xf8, 0x10, 0x3e, 0xd2, 0x05, 0x1f,
TheChrisyd 0:a0257f241e9e 274 0xde, 0xe1, 0x8b, 0x17, 0x0f, 0x6e, 0xe1, 0x2b, 0x3c, 0x06, 0x1f, 0x9e, 0xc1, 0x83, 0x0b, 0xe7,
TheChrisyd 0:a0257f241e9e 275 0x53, 0x11, 0xfc, 0x78, 0xf3, 0xe4, 0xce, 0x2d, 0x78, 0x70, 0xa2, 0x10, 0x3c, 0xe8, 0x86, 0x0f,
TheChrisyd 0:a0257f241e9e 276 0xe2, 0x0c, 0xe9, 0xf1, 0xa6, 0xc9, 0x9d, 0x1a, 0x17, 0xca, 0x1c, 0x39, 0xb0, 0x67, 0xc7, 0x37,
TheChrisyd 0:a0257f241e9e 277 0x78, 0x32, 0x0a, 0x5e, 0xe1, 0x93, 0x23, 0x05, 0xf6, 0xe4, 0xd8, 0x92, 0xe1, 0x45, 0x92, 0x50,
TheChrisyd 0:a0257f241e9e 278 0xf6, 0x88, 0x1e, 0xd4, 0xa8, 0x70, 0xa6, 0xc8, 0x81, 0x3c, 0x3b, 0x32, 0xac, 0x59, 0xc9, 0x91,
TheChrisyd 0:a0257f241e9e 279 0x23, 0x5b, 0x96, 0x4c, 0x19, 0xd2, 0xa5, 0x49, 0x93, 0xca, 0x45, 0x32, 0x67, 0x49, 0x12, 0x25,
TheChrisyd 0:a0257f241e9e 280 0x06, 0xa7, 0xe0, 0xc1, 0x5d, 0x1a, 0x57, 0xa9, 0x52, 0x82, 0x83, 0xa4, 0x44, 0x20, 0x87, 0xb7,
TheChrisyd 0:a0257f241e9e 281 0x2c, 0x9e, 0x32, 0xc2, 0x27, 0x57, 0x29, 0xc1, 0x93, 0xa3, 0x44, 0x0e, 0xe1, 0x83, 0x57, 0x78,
TheChrisyd 0:a0257f241e9e 282 0xe4, 0xc6, 0x2d, 0x3a, 0x70, 0x96, 0xcc, 0x29, 0x3a, 0x70, 0x90, 0x2d, 0x9b, 0x57, 0xf8, 0x88,
TheChrisyd 0:a0257f241e9e 283 0x0f, 0xd1, 0x99, 0x53, 0x74, 0xe0, 0xc0, 0x3b, 0x3c, 0xc8, 0xe4, 0x51, 0x3c, 0xc2, 0x43, 0x72,
TheChrisyd 0:a0257f241e9e 284 0x08, 0x0e, 0xd1, 0x41, 0x7c, 0x78, 0xe2, 0x2e, 0x9d, 0x1b, 0xd7, 0x0a, 0xc0, 0x39, 0x78, 0x94,
TheChrisyd 0:a0257f241e9e 285 0xcc, 0xf0, 0x51, 0x2f, 0xc2, 0x43, 0x7c, 0xcc, 0x16, 0xf1, 0x81, 0x43, 0xc5, 0x48, 0x4f, 0xc1,
TheChrisyd 0:a0257f241e9e 286 0x83, 0x6b, 0xf8, 0xe4, 0x14, 0x1f, 0xd9, 0xb3, 0x4f, 0x16, 0xe1, 0x2b, 0x38, 0xb4, 0x40, 0x8e,
TheChrisyd 0:a0257f241e9e 287 0xd1, 0x31, 0x78, 0x26, 0x8b, 0xf0, 0x19, 0x1f, 0x29, 0x05, 0x87, 0x86, 0xc0, 0x2e, 0x7c, 0xa4,
TheChrisyd 0:a0257f241e9e 288
TheChrisyd 0:a0257f241e9e 289 0xcb, 0xe4, 0x50, 0x3f, 0xa2, 0x53, 0x43, 0x0c, 0x1e, 0x34, 0xba, 0x45, 0x7c, 0xa4, 0xcc, 0x89,
TheChrisyd 0:a0257f241e9e 290 0x62, 0x74, 0x6c, 0x09, 0xb4, 0xe2, 0x4b, 0xf8, 0x88, 0x0e, 0x14, 0x29, 0x04, 0x07, 0x72, 0xc1,
TheChrisyd 0:a0257f241e9e 291 0x83, 0x06, 0x75, 0x6e, 0x54, 0xe3, 0x4b, 0x74, 0x24, 0xc7, 0x92, 0x46, 0xfc, 0xa0, 0xc6, 0x95,
TheChrisyd 0:a0257f241e9e 292 0x0a, 0x65, 0x4a, 0xd1, 0x23, 0x3c, 0x8c, 0xc8, 0x02, 0x21, 0xfe, 0x50, 0xdc, 0x86, 0xc6, 0x28,
TheChrisyd 0:a0257f241e9e 293 0xb3, 0x71, 0x54, 0x41, 0x09, 0xe2, 0xd9, 0x89, 0x63, 0xcb, 0xa6, 0x57, 0xf0, 0x6a, 0x8d, 0x79,
TheChrisyd 0:a0257f241e9e 294 0x8a, 0x7d, 0xf0, 0x10, 0x1b, 0x3c, 0x44, 0xb3, 0x16, 0x95, 0x07, 0xf3, 0x54, 0x78, 0x16, 0xc3,
TheChrisyd 0:a0257f241e9e 295 0x7a, 0x0e, 0x88, 0x64, 0xc9, 0x42, 0x7a, 0x13, 0xdc, 0x04, 0xec, 0xc4, 0xb2, 0x61, 0x13, 0x1c,
TheChrisyd 0:a0257f241e9e 296 0x58, 0x05, 0x87, 0x57, 0xc1, 0xbc, 0x0c, 0xb0, 0x8f, 0x17, 0xd1, 0x21, 0x3c, 0xb2, 0x0c, 0x5e,
TheChrisyd 0:a0257f241e9e 297 0xcc, 0x5e, 0x07, 0x3b, 0x76, 0xc1, 0x21, 0x3c, 0x84, 0x8f, 0xe0, 0x41, 0x82, 0x39, 0x73, 0x62,
TheChrisyd 0:a0257f241e9e 298 0xc1, 0x8f, 0x15, 0xa9, 0xe8, 0xcc, 0x8c, 0x28, 0xd3, 0xf0, 0x10, 0x5d, 0x48, 0xb2, 0x08, 0x1f,
TheChrisyd 0:a0257f241e9e 299 0xd1, 0x81, 0x28, 0x13, 0x76, 0x64, 0xd9, 0x9c, 0x0a, 0xd2, 0xc9, 0x82, 0x65, 0x70, 0x20, 0x4e,
TheChrisyd 0:a0257f241e9e 300 0x8c, 0x69, 0xf0, 0x8c, 0x4f, 0xa4, 0xd2, 0x65, 0x7c, 0x0a, 0x9e, 0x64, 0x1f, 0x06, 0xeb, 0xf0,
TheChrisyd 0:a0257f241e9e 301 0x40, 0x92, 0x24, 0x09, 0x16, 0xe1, 0x21, 0x3e, 0x30, 0x21, 0x12, 0x7c, 0xd2, 0x0d, 0x51, 0xa2,
TheChrisyd 0:a0257f241e9e 302 0x44, 0x88, 0x84, 0x07, 0x36, 0xe1, 0x81, 0x54, 0x78, 0x20, 0x41, 0x9c, 0x78, 0xba, 0x24, 0x42,
TheChrisyd 0:a0257f241e9e 303 0x38, 0xba, 0x24, 0x8b, 0xe8, 0x48, 0x2c, 0x3c, 0x12, 0x26, 0x4b, 0x86, 0x34, 0xe9, 0xf0, 0x10,
TheChrisyd 0:a0257f241e9e 304 0x3e, 0xc2, 0x43, 0x70, 0x08, 0x5e, 0x47, 0xf2, 0xac, 0x0e, 0x89, 0xaa, 0x91, 0x2c, 0x96, 0xe2,
TheChrisyd 0:a0257f241e9e 305
TheChrisyd 0:a0257f241e9e 306 0x5e, 0xbc, 0xca, 0xe3, 0xa2, 0x6e, 0x9e, 0xa9, 0x3b, 0x31, 0x0d, 0xae, 0x02, 0xf9, 0xae, 0x10,
TheChrisyd 0:a0257f241e9e 307 0x1e, 0xd8, 0x9c, 0xa9, 0x27, 0x45, 0x21, 0x3a, 0x92, 0x63, 0x9b, 0x2c, 0x82, 0xe7, 0x5e, 0xd8,
TheChrisyd 0:a0257f241e9e 308 0x1a, 0x7b, 0x23, 0x3c, 0x46, 0x47, 0x32, 0x4c, 0xf7, 0x44, 0x74, 0xe4, 0x18, 0x1e, 0x82, 0x07,
TheChrisyd 0:a0257f241e9e 309 0x39, 0xb2, 0xe1, 0x81, 0x4d, 0x85, 0x60, 0x4c, 0xf8, 0x2c, 0x06, 0xcf, 0x21, 0x19, 0x3c, 0x58,
TheChrisyd 0:a0257f241e9e 310 0x13, 0x61, 0x42, 0x98, 0x11, 0x21, 0x86, 0x04, 0x8f, 0x42, 0xba, 0x08, 0x1f, 0x5d, 0x81, 0x34,
TheChrisyd 0:a0257f241e9e 311 0x93, 0xf0, 0xc0, 0x88, 0x20, 0x43, 0x02, 0x0c, 0xe8, 0x93, 0xeb, 0x13, 0xe1, 0x91, 0x74, 0x8d,
TheChrisyd 0:a0257f241e9e 312 0x08, 0x4f, 0x04, 0xe8, 0xf3, 0xa7, 0x47, 0x8f, 0x2f, 0x99, 0xaa, 0x19, 0x1e, 0x08, 0x45, 0x87,
TheChrisyd 0:a0257f241e9e 313 0xf0, 0x48, 0x9f, 0x1e, 0x5d, 0xba, 0x74, 0xe8, 0xd0, 0x26, 0x45, 0x38, 0x3e, 0x10, 0x24, 0x48,
TheChrisyd 0:a0257f241e9e 314 0x20, 0x7c, 0x84, 0x87, 0xe0, 0x49, 0x9b, 0x36, 0x2d, 0xc6, 0xe1, 0x21, 0x78, 0xd2, 0x0f, 0x0f,
TheChrisyd 0:a0257f241e9e 315 0xe1, 0x23, 0x3c, 0x06, 0x8f, 0x74, 0x49, 0x90, 0x41, 0x78, 0x88, 0xae, 0xb4, 0x70, 0x11, 0x26,
TheChrisyd 0:a0257f241e9e 316 0x14, 0xdd, 0xe3, 0x05, 0x6e, 0x5a, 0xb4, 0xa2, 0x3b, 0x5e, 0x3a, 0x78, 0xe2, 0x23, 0xce, 0xb3,
TheChrisyd 0:a0257f241e9e 317 0xb9, 0x2e, 0xf6, 0xd1, 0xd9, 0xd8, 0x06, 0xf9, 0x80, 0xd0, 0x3e, 0x67, 0x36, 0x1d, 0xab, 0x46,
TheChrisyd 0:a0257f241e9e 318 0xf0, 0x24, 0x75, 0x35, 0x48, 0x1c, 0xc3, 0x65, 0x9d, 0x2e, 0xf6, 0x21, 0xab, 0xe8, 0xb8, 0x0e,
TheChrisyd 0:a0257f241e9e 319 0x96, 0x75, 0xb2, 0x08, 0x1e, 0xe1, 0x61, 0x59, 0x30, 0x3f, 0x06, 0xc1, 0x77, 0x1f, 0x3d, 0x85,
TheChrisyd 0:a0257f241e9e 320 0x75, 0x79, 0x35, 0x92, 0x45, 0x3e, 0xdc, 0x06, 0xac, 0x8f, 0x11, 0xb1, 0xf0, 0x1c, 0xbc, 0xef,
TheChrisyd 0:a0257f241e9e 321 0x66, 0x78, 0x0c, 0xde, 0x88, 0x08, 0x21, 0x4c, 0x17, 0x57, 0xfb, 0x18, 0xb5, 0x85, 0xaa, 0x79,
TheChrisyd 0:a0257f241e9e 322
TheChrisyd 0:a0257f241e9e 323 0xb6, 0xee, 0x46, 0x74, 0x42, 0x42, 0x18, 0x31, 0x22, 0x82, 0xe1, 0x23, 0x3a, 0x23, 0x23, 0x86,
TheChrisyd 0:a0257f241e9e 324 0x94, 0x48, 0xf0, 0x20, 0x14, 0x3c, 0x10, 0xd0, 0xa2, 0x59, 0x0c, 0x90, 0x67, 0x8b, 0xaf, 0x10,
TheChrisyd 0:a0257f241e9e 325 0x9e, 0x10, 0x22, 0x24, 0x40, 0x93, 0x26, 0x0d, 0x1a, 0xc4, 0x91, 0x21, 0x0b, 0x4f, 0x88, 0x93,
TheChrisyd 0:a0257f241e9e 326 0x05, 0x42, 0x04, 0x34, 0x71, 0xe2, 0xa0, 0x8e, 0x9d, 0x1a, 0x55, 0xa2, 0x48, 0x90, 0xc4, 0x0b,
TheChrisyd 0:a0257f241e9e 327 0x44, 0xc1, 0x01, 0x01, 0xce, 0xf0, 0x80, 0x1d, 0x1b, 0x36, 0xac, 0x58, 0xa9, 0x60, 0x26, 0x1c,
TheChrisyd 0:a0257f241e9e 328 0x1c, 0x82, 0x07, 0x7e, 0x9a, 0x38, 0xc2, 0x07, 0x36, 0x6a, 0x58, 0xb1, 0x60, 0xc1, 0x8c, 0x09,
TheChrisyd 0:a0257f241e9e 329 0x13, 0x46, 0x04, 0x08, 0xf0, 0xef, 0x83, 0x65, 0xb4, 0xb4, 0x68, 0x45, 0x85, 0x38, 0x41, 0x6c,
TheChrisyd 0:a0257f241e9e 330 0x99, 0x6c, 0xa5, 0x2c, 0x41, 0x23, 0x09, 0x60, 0x0d, 0x5e, 0x5b, 0x93, 0x0e, 0x6e, 0xda, 0xb8,
TheChrisyd 0:a0257f241e9e 331 0xc2, 0x47, 0xf0, 0x8a, 0x4e, 0xf4, 0xe7, 0x41, 0x70, 0x08, 0x1f, 0x38, 0xd2, 0x44, 0xf8, 0xd8,
TheChrisyd 0:a0257f241e9e 332 0x3a, 0x4b, 0x23, 0x3c, 0xa4, 0x85, 0xe0, 0x8d, 0x9f, 0x3e, 0x3e, 0xba, 0x78, 0xa2, 0x47, 0x72,
TheChrisyd 0:a0257f241e9e 333 0xc0, 0x11, 0x3f, 0xf2, 0x40, 0x74, 0xc4, 0x47, 0x0f, 0x6f, 0x78, 0xc0, 0x1d, 0x3e, 0xa2, 0x63,
TheChrisyd 0:a0257f241e9e 334 0xf0, 0x40, 0x40, 0x00, 0x7f, 0x70, 0x08, 0x1f, 0x47, 0x22, 0x78, 0x17, 0x0e, 0x04, 0xf4, 0xf1,
TheChrisyd 0:a0257f241e9e 335 0x47, 0x47, 0x3c, 0xe1, 0xb1, 0x0e, 0xc4, 0x47, 0x28, 0xe1, 0x11, 0x5f, 0x74, 0x08, 0x5e, 0x55,
TheChrisyd 0:a0257f241e9e 336 0x00, 0x3b, 0xb4, 0xf0, 0x19, 0x1e, 0x82, 0x27, 0xee, 0xf8, 0x0a, 0x15, 0x0b, 0xfe, 0xf8, 0x18,
TheChrisyd 0:a0257f241e9e 337 0x3e, 0x82, 0x43, 0x7c, 0x80, 0x11, 0x1e, 0xa1, 0x04, 0x0f, 0x7c, 0xd1, 0x05, 0x66, 0x74, 0x80,
TheChrisyd 0:a0257f241e9e 338 0x8e, 0x0d, 0x2a, 0x14, 0xcc, 0xd1, 0x05, 0x76, 0xba, 0x84, 0x1e, 0xbe, 0x20, 0x07, 0x0f, 0xbc,
TheChrisyd 0:a0257f241e9e 339
TheChrisyd 0:a0257f241e9e 340 0x78, 0xe1, 0x44, 0x07, 0x58, 0x30, 0xa3, 0x63, 0x72, 0x80, 0x02, 0x39, 0x3a, 0xc0, 0xc5, 0x93,
TheChrisyd 0:a0257f241e9e 341 0x2e, 0x60, 0xe1, 0xc4, 0x09, 0x03, 0x3a, 0xb4, 0xe8, 0x00, 0x19, 0x32, 0xd2, 0xc5, 0x31, 0x2a,
TheChrisyd 0:a0257f241e9e 342 0xf1, 0x85, 0x84, 0x04, 0x00, 0x0d, 0x32, 0x44, 0xb0, 0xc0, 0xa8, 0xce, 0x86, 0xe0, 0x15, 0x13,
TheChrisyd 0:a0257f241e9e 343 0x22, 0x00, 0x36, 0x28, 0xc1, 0x03, 0xc4, 0xe4, 0x0c, 0xdf, 0xb0, 0x83, 0x07, 0xb4, 0xe0, 0x01,
TheChrisyd 0:a0257f241e9e 344 0x0e, 0xc4, 0xe2, 0x98, 0x0d, 0x18, 0xf0, 0xa7, 0xc4, 0xe8, 0x19, 0x3c, 0x41, 0x86, 0x4f, 0x8c,
TheChrisyd 0:a0257f241e9e 345 0x18, 0xc0, 0xa3, 0xc5, 0x03, 0x1b, 0x66, 0xf2, 0x88, 0x1f, 0xe0, 0x82, 0x27, 0xa4, 0xe0, 0x01,
TheChrisyd 0:a0257f241e9e 346 0x0e, 0x2d, 0x18, 0x50, 0x38, 0xa1, 0x43, 0x0d, 0x3e, 0x98, 0x20, 0xa2, 0x0f, 0x5e, 0x20, 0x81,
TheChrisyd 0:a0257f241e9e 347 0x07, 0x6f, 0xcc, 0xe1, 0x11, 0x3c, 0x3a, 0xb0, 0xe1, 0x23, 0x78, 0x00, 0x0d, 0x5f, 0xc1, 0x13,
TheChrisyd 0:a0257f241e9e 348 0x02, 0xf8, 0xf0, 0x01, 0x1a, 0x14, 0x08, 0xe0, 0x40, 0x01, 0x03, 0x8c, 0x1f, 0x90, 0xa3, 0x03,
TheChrisyd 0:a0257f241e9e 349 0x84, 0xe8, 0x01, 0x26, 0xf8, 0x00, 0x80, 0x0b, 0x32, 0x78, 0x81, 0x8f, 0x0e, 0xc1, 0x13, 0x58,
TheChrisyd 0:a0257f241e9e 350 0xf8, 0x08, 0x1e, 0x30, 0x21, 0xc7, 0x0f, 0x08, 0xe0, 0x82, 0x27, 0x48, 0x10, 0xc0, 0x80, 0x00,
TheChrisyd 0:a0257f241e9e 351 0x0a, 0x1e, 0x30, 0x20, 0x41, 0x8c, 0x8f, 0xc9, 0x29, 0x78, 0xc3, 0x09, 0xbe, 0xd1, 0x21, 0x3d,
TheChrisyd 0:a0257f241e9e 352 0x84, 0x4f, 0xf8, 0x70, 0xa0, 0x87, 0xef, 0xe4, 0x0a, 0x10, 0x3e, 0x6c, 0x68, 0xc1, 0x33, 0x3e,
TheChrisyd 0:a0257f241e9e 353 0x65, 0x17, 0x78, 0xb0, 0xa1, 0xf8, 0x27, 0x44, 0x8f, 0x0e, 0x4d, 0xee, 0xdc, 0xa8, 0x70, 0xa2,
TheChrisyd 0:a0257f241e9e 354 0xc8, 0x81, 0x3c, 0x5b, 0x32, 0xa4, 0x59, 0xf9, 0x27, 0x4c, 0x9f, 0x0f, 0x4d, 0xea, 0xd4, 0xb8,
TheChrisyd 0:a0257f241e9e 355 0x50, 0xe2, 0x48, 0x81, 0x1d, 0x59, 0x36, 0xa4, 0x49, 0xf9, 0x27, 0x42, 0x9f, 0x0e, 0xaf, 0xe0,
TheChrisyd 0:a0257f241e9e 356
TheChrisyd 0:a0257f241e9e 357 0x41, 0x85, 0x12, 0xc5, 0xe0, 0x49, 0x86, 0x75, 0xf0, 0x20, 0x4a, 0x80, 0x0e, 0x2d, 0x1a, 0xd1,
TheChrisyd 0:a0257f241e9e 358 0x8b, 0x02, 0xb9, 0xe8, 0x4d, 0x9c, 0x00, 0xdd, 0xe0, 0x41, 0x2d, 0x7c, 0x91, 0x23, 0x1b, 0x3f,
TheChrisyd 0:a0257f241e9e 359 0xc2, 0x87, 0x7f, 0x82, 0xc1, 0x9b, 0x72, 0xf4, 0x08, 0xbe, 0x88, 0xe8, 0xd1, 0xa6, 0x11, 0x3e,
TheChrisyd 0:a0257f241e9e 360 0x82, 0x7f, 0x0a, 0xc0, 0x87, 0x9b, 0x26, 0x36, 0x2a, 0xc1, 0xdf, 0x3f, 0x36, 0xfa, 0x78, 0x68,
TheChrisyd 0:a0257f241e9e 361 0x62, 0xa7, 0x8a, 0x99, 0x22, 0x06, 0x72, 0x68, 0xc9, 0xa0, 0x8e, 0x9f, 0xfe, 0x11, 0xe2, 0xc1,
TheChrisyd 0:a0257f241e9e 362 0x49, 0x1d, 0x2b, 0x65, 0x8c, 0x14, 0xd0, 0x91, 0x45, 0x43, 0x1a, 0xa5, 0xff, 0x00, 0x80, 0x09,
TheChrisyd 0:a0257f241e9e 363 0x2f, 0x2e, 0xec, 0x58, 0x31, 0x63, 0x0a, 0xfe, 0xd8, 0xd0, 0xe1, 0xc6, 0x41, 0x0d, 0x13, 0x26,
TheChrisyd 0:a0257f241e9e 364 0x0c, 0xe4, 0xd1, 0xa2, 0x41, 0x4d, 0x32, 0x7c, 0xfa, 0xc7, 0x80, 0x06, 0x05, 0x36, 0x2c, 0xc1,
TheChrisyd 0:a0257f241e9e 365 0x03, 0x7d, 0xf0, 0x8c, 0x5e, 0xfe, 0x21, 0xa1, 0x45, 0x89, 0x2c, 0xf8, 0xa2, 0x0a, 0x5f, 0xfe,
TheChrisyd 0:a0257f241e9e 366 0xc1, 0xa1, 0x42, 0x8e, 0x14, 0x33, 0x46, 0xf4, 0xe8, 0xa2, 0x47, 0xf0, 0x81, 0x08, 0x1a, 0x05,
TheChrisyd 0:a0257f241e9e 367 0x50, 0xc4, 0x00, 0x83, 0x37, 0x49, 0x16, 0xc4, 0xb9, 0x51, 0xe3, 0xca, 0x85, 0x33, 0xa5, 0x01,
TheChrisyd 0:a0257f241e9e 368 0xc4, 0xbe, 0x26, 0xb0, 0x24, 0x41, 0x9c, 0x18, 0x51, 0xaa, 0xe5, 0xa1, 0x7b, 0x34, 0x00, 0xf2,
TheChrisyd 0:a0257f241e9e 369 0xe4, 0x82, 0x47, 0xf8, 0x64, 0x46, 0x94, 0x09, 0x11, 0xc2, 0xe1, 0x91, 0x42, 0xf0, 0x20, 0x4b,
TheChrisyd 0:a0257f241e9e 370 0x96, 0x64, 0xf8, 0x0a, 0x0e, 0x84, 0x09, 0x11, 0x0c, 0x0e, 0xc1, 0x3f, 0x78, 0x10, 0x0a, 0x1e,
TheChrisyd 0:a0257f241e9e 371 0x04, 0xe8, 0x07, 0x4f, 0x32, 0xe1, 0x37, 0x78, 0xd3, 0xa3, 0x47, 0x37, 0xf8, 0x13, 0x24, 0x18,
TheChrisyd 0:a0257f241e9e 372 0x3e, 0x82, 0x03, 0x5d, 0x3c, 0xe1, 0x17, 0x51, 0x70, 0x40, 0x40, 0x1f, 0x1f, 0x5d, 0xbc, 0x74,
TheChrisyd 0:a0257f241e9e 373
TheChrisyd 0:a0257f241e9e 374 0x48, 0x20, 0x27, 0x86, 0x94, 0x28, 0x92, 0xe4, 0x80, 0x90, 0x00, 0xfe, 0xe0, 0x89, 0x07, 0x4f,
TheChrisyd 0:a0257f241e9e 375 0x7a, 0x40, 0x16, 0x1c, 0x88, 0x20, 0x0e, 0x9f, 0xc1, 0x9b, 0x0e, 0x0a, 0xe2, 0xc1, 0x93, 0x30,
TheChrisyd 0:a0257f241e9e 376 0x61, 0x44, 0x08, 0x11, 0xe0, 0xc7, 0x17, 0x3d, 0xf0, 0xe0, 0x46, 0x81, 0x1c, 0x19, 0x52, 0x24,
TheChrisyd 0:a0257f241e9e 377 0xe1, 0x21, 0x7c, 0xc4, 0x47, 0xbc, 0x78, 0x83, 0x57, 0xfc, 0x08, 0x9e, 0x08, 0xc3, 0x57, 0xf0,
TheChrisyd 0:a0257f241e9e 378 0x09, 0xdf, 0xc1, 0x21, 0x7a, 0x86, 0x87, 0xe8, 0x1f, 0x7c, 0x71, 0xc7, 0xbf, 0xe8, 0x98, 0x3c,
TheChrisyd 0:a0257f241e9e 379 0xe2, 0x23, 0x6c, 0x36, 0x2f, 0x93, 0x54, 0x2f, 0xc8, 0x0d, 0xbd, 0x91, 0x68, 0xeb, 0x24, 0xf3,
TheChrisyd 0:a0257f241e9e 380 0x30, 0x49, 0x55, 0x82, 0x4e, 0x39, 0x18, 0x88, 0x04, 0x2f, 0xd2, 0xa4, 0x83, 0x43, 0x2d, 0x0c,
TheChrisyd 0:a0257f241e9e 381 0xcf, 0xa5, 0x83, 0x50, 0x78, 0x0b, 0x5e, 0xb5, 0xa1, 0x74, 0x44, 0xf7, 0xca, 0x10, 0x1d, 0x10,
TheChrisyd 0:a0257f241e9e 382 0x37, 0x8e, 0xe0, 0x49, 0x12, 0x65, 0x2b, 0xa8, 0x95, 0x8d, 0x21, 0x7c, 0x20, 0x22, 0x44, 0xfb,
TheChrisyd 0:a0257f241e9e 383 0x25, 0x04, 0x5f, 0xa4, 0xf1, 0xa2, 0x31, 0xd2, 0xc6, 0x45, 0x0b, 0x27, 0x89, 0x56, 0x58, 0x2b,
TheChrisyd 0:a0257f241e9e 384 0x6b, 0x43, 0x67, 0x0c, 0x5e, 0x34, 0x70, 0xb4, 0x82, 0x5a, 0x41, 0xa4, 0x35, 0x21, 0xc4, 0x8d,
TheChrisyd 0:a0257f241e9e 385 0x0b, 0x27, 0x4e, 0x1c, 0xd4, 0xb1, 0x63, 0xa3, 0xda, 0x29, 0xc3, 0x43, 0x6b, 0xc0, 0x1d, 0x1d,
TheChrisyd 0:a0257f241e9e 386 0x82, 0x47, 0x70, 0xc0, 0x86, 0x15, 0x0b, 0x16, 0xcc, 0xc1, 0x0b, 0x57, 0xf8, 0xc0, 0x81, 0x23,
TheChrisyd 0:a0257f241e9e 387 0xf8, 0x62, 0xc2, 0xd4, 0x18, 0x82, 0x17, 0xf6, 0xe0, 0x81, 0x35, 0x7c, 0x60, 0xc6, 0x8c, 0x09,
TheChrisyd 0:a0257f241e9e 388 0x22, 0x46, 0x08, 0xf1, 0x29, 0x78, 0x43, 0xc1, 0x0c, 0x19, 0x13, 0xc6, 0xe0, 0x85, 0x03, 0x46,
TheChrisyd 0:a0257f241e9e 389 0x78, 0x80, 0x16, 0x9f, 0x20, 0x85, 0x0f, 0x0c, 0xe1, 0x03, 0x66, 0x7c, 0x0c, 0x0e, 0x50, 0xa1,
TheChrisyd 0:a0257f241e9e 390
TheChrisyd 0:a0257f241e9e 391 0x40, 0x0e, 0x0f, 0x10, 0x21, 0x62, 0x00, 0x7f, 0x85, 0xce, 0x04, 0xfd, 0xb3, 0x44, 0x27, 0x6f,
TheChrisyd 0:a0257f241e9e 392 0x64, 0x83, 0xc7, 0x71, 0x24, 0xd6, 0xe2, 0x59, 0xc2, 0x5d, 0x36, 0x8a, 0xc6, 0x16, 0xb8, 0x12,
TheChrisyd 0:a0257f241e9e 393 0x47, 0x82, 0x1e, 0xde, 0x3b, 0x11, 0x9e, 0x69, 0x86, 0x0f, 0x04, 0xe1, 0x65, 0x2d, 0x44, 0x87,
TheChrisyd 0:a0257f241e9e 394 0xa2, 0x59, 0x21, 0xee, 0x10, 0xbe, 0xa5, 0x10, 0x1e, 0xea, 0x72, 0xbc, 0xc4, 0xbf, 0x26, 0xde,
TheChrisyd 0:a0257f241e9e 395 0xc0, 0x93, 0x08, 0x4f, 0x75, 0xa1, 0x42, 0x84, 0x0f, 0x7a, 0xe1, 0x61, 0x2b, 0x46, 0x67, 0x1c,
TheChrisyd 0:a0257f241e9e 396 0x7b, 0x38, 0x3a, 0xc6, 0x27, 0x9c, 0x45, 0x03, 0x7a, 0xb2, 0x88, 0x8e, 0x77, 0x28, 0xbc, 0x04,
TheChrisyd 0:a0257f241e9e 397 0xaf, 0xcf, 0x71, 0x07, 0x61, 0xe3, 0x86, 0x15, 0x1e, 0xeb, 0xc2, 0x63, 0xc0, 0x0f, 0x0f, 0x2f,
TheChrisyd 0:a0257f241e9e 398 0xdc, 0x64, 0x15, 0xbc, 0xa0, 0x63, 0x47, 0x00, 0x3f, 0x3c, 0x86, 0x0f, 0xd8, 0xb0, 0x61, 0xe1,
TheChrisyd 0:a0257f241e9e 399 0x8a, 0x17, 0x30, 0xa0, 0x43, 0xc3, 0x10, 0x1e, 0xf0, 0xc1, 0x85, 0x83, 0x07, 0x36, 0x2e, 0x58,
TheChrisyd 0:a0257f241e9e 400 0x30, 0x61, 0x06, 0x07, 0xec, 0xd0, 0xd0, 0x83, 0x47, 0x07, 0x36, 0x3a, 0xc0, 0x8d, 0x17, 0xe1,
TheChrisyd 0:a0257f241e9e 401 0x25, 0x78, 0x80, 0x0b, 0x1e, 0x60, 0xd1, 0x80, 0x8e, 0x0e, 0xe1, 0x29, 0x3a, 0x40, 0x03, 0x0f,
TheChrisyd 0:a0257f241e9e 402 0x0e, 0x1c, 0x5a, 0x30, 0x60, 0x40, 0x83, 0x02, 0x05, 0x12, 0x46, 0x74, 0x08, 0x1e, 0x50, 0xf7,
TheChrisyd 0:a0257f241e9e 403 0x06, 0x76, 0xea, 0xeb, 0x60, 0x3c, 0x2d, 0x0b, 0x8c, 0x18, 0x92, 0x05, 0x0e, 0x1a, 0xeb, 0x68,
TheChrisyd 0:a0257f241e9e 404 0x59, 0xcf, 0x8b, 0xf1, 0x80, 0x7e, 0x6b, 0x6c, 0xf3, 0x69, 0x81, 0x01, 0x3d, 0xb8, 0xe0, 0xb5,
TheChrisyd 0:a0257f241e9e 405 0x8d, 0x21, 0x85, 0xa7, 0x6c, 0x70, 0x74, 0xb6, 0xc1, 0x3e, 0x5c, 0x96, 0xe1, 0x63, 0x6f, 0x42,
TheChrisyd 0:a0257f241e9e 406 0x4d, 0x96, 0xeb, 0x20, 0x7c, 0x40, 0x88, 0x0f, 0xf9, 0x20, 0x5e, 0x41, 0xc5, 0x02, 0x19, 0x73,
TheChrisyd 0:a0257f241e9e 407
TheChrisyd 0:a0257f241e9e 408 0x70, 0x80, 0x08, 0x01, 0x7c, 0x78, 0x00, 0x5b, 0x21, 0xb0, 0x05, 0x87, 0xe8, 0x00, 0x29, 0xbc,
TheChrisyd 0:a0257f241e9e 409 0x80, 0x0b, 0x9e, 0x58, 0xc3, 0xe3, 0xd1, 0x0a, 0x0f, 0x65, 0x03, 0x2c, 0x58, 0x68, 0xe1, 0x01,
TheChrisyd 0:a0257f241e9e 410 0x4a, 0x78, 0x3a, 0x1b, 0xc1, 0xa3, 0x2a, 0x80, 0x05, 0x03, 0x2d, 0x59, 0x5c, 0xc5, 0xe8, 0x10,
TheChrisyd 0:a0257f241e9e 411 0x2f, 0x82, 0x4f, 0x78, 0x4c, 0x16, 0x90, 0x21, 0x85, 0xa7, 0xe8, 0xd8, 0x24, 0xa0, 0x3e, 0x89,
TheChrisyd 0:a0257f241e9e 412 0xf0, 0x11, 0xde, 0xdb, 0x40, 0xf0, 0x7c, 0x13, 0xe1, 0x2d, 0x3e, 0x80, 0x0e, 0xef, 0x7d, 0x30,
TheChrisyd 0:a0257f241e9e 413 0x38, 0x06, 0xcf, 0xf0, 0x9e, 0x0d, 0x06, 0xe7, 0x3a, 0xc0, 0x0b, 0x67, 0x6b, 0x1e, 0xc9, 0x32,
TheChrisyd 0:a0257f241e9e 414 0x11, 0x35, 0xd2, 0xc0, 0xb4, 0x08, 0x1e, 0xf3, 0x68, 0x2d, 0xe6, 0x85, 0x34, 0x19, 0x3c, 0xd0,
TheChrisyd 0:a0257f241e9e 415 0x80, 0x41, 0xbd, 0xb6, 0x83, 0x63, 0xf0, 0x04, 0x3b, 0x2f, 0x40, 0x83, 0x46, 0x05, 0x12, 0x04,
TheChrisyd 0:a0257f241e9e 416 0xf4, 0xb9, 0x19, 0x1c, 0x21, 0xa6, 0x8c, 0x75, 0xb0, 0x0c, 0x41, 0x00, 0x07, 0x16, 0x9d, 0x83,
TheChrisyd 0:a0257f241e9e 417 0x67, 0x78, 0x58, 0x1b, 0x20, 0x82, 0x27, 0x50, 0x20, 0x80, 0x2b, 0x67, 0xce, 0x0c, 0xcf, 0xe1,
TheChrisyd 0:a0257f241e9e 418 0x23, 0x78, 0x02, 0x02, 0x08, 0x60, 0x6f, 0x81, 0x8c, 0x0f, 0xc1, 0x31, 0xf8, 0x46, 0xf7, 0xe8,
TheChrisyd 0:a0257f241e9e 419 0x00, 0x28, 0x7c, 0x9d, 0x85, 0xf0, 0x0c, 0x2c, 0xbc, 0xc0, 0x0f, 0xef, 0xe1, 0x01, 0x70, 0x78,
TheChrisyd 0:a0257f241e9e 420 0x0c, 0x1e, 0xd9, 0x24, 0xbc, 0xc1, 0x8b, 0x8e, 0xd9, 0x24, 0x3e, 0xa6, 0x0b, 0xf8, 0xf0, 0xb2,
TheChrisyd 0:a0257f241e9e 421 0x79, 0xb4, 0x86, 0x07, 0xb7, 0x68, 0x64, 0x63, 0x20, 0xe1, 0x35, 0x78, 0x96, 0x85, 0xa2, 0x17,
TheChrisyd 0:a0257f241e9e 422 0x2d, 0xe0, 0xc2, 0x39, 0x95, 0x87, 0x60, 0x70, 0x44, 0x82, 0x14, 0x01, 0x18, 0x00, 0x3c, 0x58,
TheChrisyd 0:a0257f241e9e 423 0xfe, 0x83, 0x77, 0x2a, 0x8c, 0x18, 0x40, 0x00, 0x01, 0x80, 0x0b, 0x33, 0x78, 0x4f, 0xc6, 0x58,
TheChrisyd 0:a0257f241e9e 424
TheChrisyd 0:a0257f241e9e 425 0x50, 0x3c, 0x00, 0xc1, 0x87, 0x03, 0xc3, 0xff, 0xa1, 0x6c, 0x89, 0x29, 0x13, 0x28, 0x60, 0x80,
TheChrisyd 0:a0257f241e9e 426 0xc1, 0x03, 0x7a, 0xf0, 0xe9, 0x81, 0xf1, 0x11, 0x20, 0x3c, 0xd8, 0x50, 0x83, 0x57, 0x74, 0x04,
TheChrisyd 0:a0257f241e9e 427 0x19, 0x5f, 0x92, 0x83, 0xff, 0x4b, 0x94, 0x1c, 0xe2, 0x63, 0x74, 0x8a, 0x0f, 0xfe, 0x73, 0x26,
TheChrisyd 0:a0257f241e9e 428 0x98, 0xe8, 0x1e, 0x1f, 0x82, 0x47, 0x41, 0x80, 0x0d, 0x2b, 0xba, 0xe4, 0x0b, 0x28, 0xfe, 0xfd,
TheChrisyd 0:a0257f241e9e 429 0xd7, 0x88, 0xe3, 0x00, 0x73, 0x1f, 0x40, 0xad, 0x0f, 0xf0, 0xf3, 0x65, 0xf0, 0x0a, 0x0f, 0xc1,
TheChrisyd 0:a0257f241e9e 430 0x63, 0x6d, 0x40, 0x86, 0x08, 0x0e, 0x76, 0x74, 0xf4, 0x1f, 0x9d, 0xce, 0x26, 0x14, 0x48, 0x10,
TheChrisyd 0:a0257f241e9e 431 0xc0, 0x82, 0x02, 0x12, 0x1e, 0x82, 0xe7, 0x39, 0x80, 0x11, 0x9e, 0xc0, 0x83, 0x01, 0x11, 0x1c,
TheChrisyd 0:a0257f241e9e 432 0xfd, 0xc7, 0x8b, 0xe0, 0x71, 0x16, 0xc2, 0x23, 0x38, 0xd0, 0xc0, 0x82, 0x4f, 0xb2, 0x3a, 0x02,
TheChrisyd 0:a0257f241e9e 433 0xe0, 0xc1, 0x82, 0x0c, 0x4e, 0xfe, 0x93, 0x65, 0x78, 0x4c, 0x96, 0xa0, 0x81, 0x07, 0xef, 0x40,
TheChrisyd 0:a0257f241e9e 434 0x12, 0x0e, 0x90, 0x01, 0x41, 0x08, 0x00, 0xdd, 0x97, 0x00, 0x15, 0x7c, 0xc0, 0x83, 0x02, 0x8e,
TheChrisyd 0:a0257f241e9e 435 0x04, 0x10, 0x02, 0x78, 0x78, 0xbf, 0x44, 0x24, 0x4d, 0x07, 0xdd, 0x03, 0x00, 0x7c, 0xbc, 0xf1,
TheChrisyd 0:a0257f241e9e 436 0x22, 0xf8, 0x82, 0x07, 0x09, 0xac, 0x05, 0x16, 0x03, 0x5c, 0x89, 0x0c, 0x0c, 0xf0, 0xe9, 0x09,
TheChrisyd 0:a0257f241e9e 437 0x0f, 0x4e, 0x8f, 0x0c, 0x31, 0x10, 0x40, 0x02, 0x9d, 0x1f, 0xc1, 0x03, 0x76, 0x26, 0x8f, 0x00,
TheChrisyd 0:a0257f241e9e 438 0x31, 0x28, 0xf8, 0x87, 0x8e, 0x08, 0xd8, 0x11, 0x82, 0x7f, 0xf0, 0x00, 0x0b, 0xfc, 0x00, 0xc2,
TheChrisyd 0:a0257f241e9e 439 0x29, 0xe5, 0x41, 0x00, 0x54, 0x82, 0x88, 0x00, 0xc1, 0x3f, 0x08, 0x82, 0x88, 0x00, 0x70, 0x83,
TheChrisyd 0:a0257f241e9e 440 0x7f, 0x10, 0x02, 0x76, 0x12, 0x82, 0x7f, 0x10, 0x02, 0x03, 0x04, 0x40, 0xf0, 0x0f, 0xc2, 0x20,
TheChrisyd 0:a0257f241e9e 441
TheChrisyd 0:a0257f241e9e 442 0x01, 0x05, 0xff, 0x20, 0xd2, 0xcb, 0x43, 0x1f, 0x0a, 0xe0, 0xc8, 0x80, 0x22, 0x01, 0x8c, 0x08,
TheChrisyd 0:a0257f241e9e 443 0x20, 0x02, 0xf8, 0xf8, 0xf6, 0x02, 0x1e, 0xd8, 0xb8, 0x50, 0x06, 0x2f, 0xc4, 0x80, 0x86, 0x01,
TheChrisyd 0:a0257f241e9e 444 0xfe, 0x7e, 0x81, 0x17, 0x0e, 0xee, 0xb3, 0x80, 0x1c, 0x18, 0x52, 0x20, 0xe1, 0x3b, 0x3c, 0x04,
TheChrisyd 0:a0257f241e9e 445 0xaf, 0x65, 0xf1, 0x25, 0x80, 0x84, 0x0f, 0x80, 0xc3, 0x00, 0x5f, 0xbf, 0xd8, 0x46, 0x38, 0xf6,
TheChrisyd 0:a0257f241e9e 446 0x41, 0xf8, 0x8b, 0x0f, 0x57, 0x0b, 0x3a, 0x54, 0x28, 0x90, 0x01, 0x85, 0xcf, 0x27, 0x05, 0xeb,
TheChrisyd 0:a0257f241e9e 447 0x1c, 0x06, 0x2f, 0x48, 0x10, 0xa3, 0x47, 0xf0, 0x81, 0x75, 0x8f, 0x8e, 0x03, 0x44, 0x08, 0xe0,
TheChrisyd 0:a0257f241e9e 448 0x83, 0x37, 0xcc, 0x6b, 0x1d, 0xbc, 0xc1, 0x81, 0x4d, 0x4e, 0xb0, 0x61, 0x9e, 0x07, 0xa8, 0xc1,
TheChrisyd 0:a0257f241e9e 449 0x17, 0x0c, 0xe8, 0x70, 0x11, 0x3c, 0xde, 0x55, 0xfc, 0x88, 0x1e, 0xe1, 0x23, 0x78, 0x80, 0x02,
TheChrisyd 0:a0257f241e9e 450 0xb9, 0x21, 0x12, 0x40, 0x06, 0x08, 0xfe, 0x20, 0xe1, 0xc6, 0xc0, 0x1c, 0x98, 0x3c, 0xc3, 0x0f,
TheChrisyd 0:a0257f241e9e 451 0xfc, 0x08, 0x08, 0xad, 0x00, 0x04, 0x7f, 0x80, 0x11, 0x20, 0x01, 0xc7, 0x1f, 0x90, 0xbb, 0x20,
TheChrisyd 0:a0257f241e9e 452 0x02, 0x64, 0x88, 0x04, 0x04, 0x3e, 0x7a, 0x26, 0x07, 0x10, 0xb8, 0x5a, 0x00, 0x74, 0xec, 0xd0,
TheChrisyd 0:a0257f241e9e 453 0xb0, 0x42, 0xc5, 0x82, 0x39, 0x17, 0x60, 0x8c, 0x95, 0x30, 0x71, 0xc2, 0xc0, 0x5e, 0x20, 0xb0,
TheChrisyd 0:a0257f241e9e 454 0x42, 0x81, 0x82, 0x19, 0x52, 0x26, 0xc0, 0x10, 0x2b, 0x70, 0xc2, 0xc4, 0x01, 0x1d, 0x5b, 0x47,
TheChrisyd 0:a0257f241e9e 455 0x48, 0x11, 0x25, 0x33, 0x3c, 0x82, 0x8f, 0x0e, 0x0d, 0x10, 0x6a, 0x8e, 0x0c, 0x3e, 0xe0, 0xe2,
TheChrisyd 0:a0257f241e9e 456 0x63, 0x0d, 0x8c, 0x0e, 0xc1, 0xa1, 0x64, 0x66, 0xc2, 0xe0, 0x1f, 0x1c, 0xa2, 0x53, 0xf8, 0x82,
TheChrisyd 0:a0257f241e9e 457 0x16, 0x5f, 0x21, 0x84, 0xc7, 0xe0, 0x1d, 0x9f, 0xd2, 0x65, 0xf0, 0x02, 0x0b, 0x23, 0x39, 0xc5,
TheChrisyd 0:a0257f241e9e 458
TheChrisyd 0:a0257f241e9e 459 0x27, 0x88, 0xd1, 0x39, 0x78, 0x40, 0x4f, 0x4e, 0x90, 0x07, 0x54, 0x74, 0x02, 0x0b, 0x22, 0x38,
TheChrisyd 0:a0257f241e9e 460 0xc4, 0xa7, 0xe8, 0x04, 0xbe, 0x26, 0x06, 0x0f, 0xe0, 0xc0, 0xe2, 0x73, 0x74, 0x02, 0xd7, 0x10,
TheChrisyd 0:a0257f241e9e 461 0x41, 0x04, 0x0f, 0xa0, 0x40, 0x80, 0x44, 0x57, 0xb0, 0x60, 0xc1, 0x04, 0x6f, 0xc0, 0x80, 0x01,
TheChrisyd 0:a0257f241e9e 462 0x25, 0x1b, 0x30, 0xc1, 0xf7, 0x78, 0x9c, 0xc0, 0xe8, 0x04, 0x3a, 0x3a, 0xdc, 0xcf, 0xf0, 0x10,
TheChrisyd 0:a0257f241e9e 463 0x1c, 0x4e, 0xf0, 0x8a, 0x40, 0x9f, 0x30, 0x62, 0x01, 0x68, 0xd0, 0x43, 0x02, 0x24, 0x88, 0xb8,
TheChrisyd 0:a0257f241e9e 464 0x50, 0x25, 0x23, 0xd1, 0xe6, 0x0c, 0x5e, 0xc0, 0xd3, 0x22, 0xd0, 0xf0, 0x3a, 0x25, 0xd3, 0x64,
TheChrisyd 0:a0257f241e9e 465 0x5c, 0x8c, 0xee, 0xc1, 0x21, 0x3c, 0x01, 0x29, 0x88, 0xd1, 0x39, 0x5e, 0x02, 0x0b, 0x8f, 0x40,
TheChrisyd 0:a0257f241e9e 466 0x0a, 0x62, 0xb2, 0x89, 0xd7, 0x40, 0x00, 0xa7, 0x83, 0xf0, 0x1e, 0x9e, 0x82, 0x67, 0x78, 0x07,
TheChrisyd 0:a0257f241e9e 467 0x5a, 0x07, 0xaa, 0x40, 0x85, 0xc8, 0x1b, 0xe9, 0x3c, 0x3a, 0x00, 0x8a, 0x16, 0x45, 0x3b, 0xde,
TheChrisyd 0:a0257f241e9e 468 0x56, 0x81, 0x78, 0x1f, 0xaf, 0x1b, 0x47, 0xf0, 0x7c, 0x04, 0x79, 0x37, 0x5c, 0x04, 0x8f, 0x64,
TheChrisyd 0:a0257f241e9e 469 0x95, 0x77, 0x7b, 0x25, 0x40, 0x80, 0xf1, 0x7e, 0x14, 0x84, 0x27, 0x00, 0xc1, 0x33, 0x3c, 0x01,
TheChrisyd 0:a0257f241e9e 470 0xcf, 0x5a, 0xd1, 0x02, 0x00, 0x80, 0x36, 0x16, 0x9e, 0xa2, 0xc5, 0x20, 0xb8, 0xf3, 0x7d, 0x08,
TheChrisyd 0:a0257f241e9e 471 0x6c, 0xb4, 0xf8, 0xe2, 0x5d, 0x18, 0x14, 0xa8, 0x92, 0xf8, 0x46, 0xba, 0x60, 0xd6, 0xca, 0xc4,
TheChrisyd 0:a0257f241e9e 472 0x00, 0x8e, 0x72, 0x59, 0xce, 0xc4, 0x4b, 0x13, 0xde, 0xa2, 0x01, 0xb1, 0x16, 0xb7, 0x22, 0x7c,
TheChrisyd 0:a0257f241e9e 473 0x78, 0x70, 0xe1, 0xc0, 0x81, 0x1d, 0x2f, 0x56, 0x01, 0xa0, 0x5c, 0x14, 0x1c, 0x83, 0x07, 0x6c,
TheChrisyd 0:a0257f241e9e 474 0xd8, 0xb0, 0x60, 0x7e, 0x8b, 0x23, 0x1d, 0x5e, 0x82, 0x43, 0xf0, 0x80, 0x1e, 0xde, 0xc3, 0x45,
TheChrisyd 0:a0257f241e9e 475
TheChrisyd 0:a0257f241e9e 476 0x78, 0xfc, 0x07, 0x25, 0x0b, 0x5e, 0xbc, 0x8c, 0x36, 0xff, 0x20, 0x99, 0x47, 0x6b, 0x68, 0x50,
TheChrisyd 0:a0257f241e9e 477 0x1b, 0x44, 0x32, 0x81, 0x15, 0xad, 0x83, 0x67, 0x70, 0xc8, 0xda, 0x69, 0x2b, 0x5a, 0x40, 0x85,
TheChrisyd 0:a0257f241e9e 478 0x02, 0x3f, 0xed, 0xc3, 0x08, 0x4e, 0xc1, 0x23, 0x5c, 0xe4, 0xc5, 0x68, 0xfd, 0x2e, 0xdb, 0x45,
TheChrisyd 0:a0257f241e9e 479 0xda, 0xcf, 0x0a, 0xf1, 0x20, 0x38, 0x40, 0x5a, 0x46, 0x6b, 0x61, 0x5c, 0x16, 0xc1, 0xb8, 0x54,
TheChrisyd 0:a0257f241e9e 480 0x23, 0xf6, 0x52, 0xaf, 0xcc, 0x83, 0x85, 0x69, 0x1e, 0x85, 0x8b, 0xe0, 0x0f, 0x7b, 0x2f, 0x7c,
TheChrisyd 0:a0257f241e9e 481 0xa6, 0x4e, 0xd9, 0x33, 0xd3, 0x50, 0xf0, 0x0c, 0x0f, 0x40, 0x83, 0x5f, 0xa1, 0x00, 0x1e, 0xde,
TheChrisyd 0:a0257f241e9e 482 0xe3, 0x15, 0x2c, 0x18, 0xc1, 0x23, 0x6d, 0xa5, 0xe3, 0x11, 0x50, 0x09, 0x73, 0x41, 0xc5, 0x88,
TheChrisyd 0:a0257f241e9e 483 0xf7, 0xfd, 0xb3, 0x10, 0x43, 0x84, 0x00, 0x3e, 0x5a, 0xc3, 0xac, 0x49, 0x90, 0x21, 0xef, 0x40,
TheChrisyd 0:a0257f241e9e 484 0xf0, 0xdb, 0xe1, 0x68, 0x84, 0x87, 0x68, 0x15, 0x5c, 0xb7, 0x45, 0x59, 0xcc, 0x02, 0x35, 0x31,
TheChrisyd 0:a0257f241e9e 485 0x5a, 0x1e, 0x23, 0x50, 0x79, 0x21, 0x2d, 0x00, 0x0a, 0x97, 0xc1, 0x73, 0x1f, 0xbe, 0x81, 0xac,
TheChrisyd 0:a0257f241e9e 486 0x00, 0x04, 0x10, 0x80, 0x78, 0x1e, 0x2d, 0x5a, 0x03, 0x60, 0x80, 0xf0, 0x92, 0x0e, 0x98, 0x70,
TheChrisyd 0:a0257f241e9e 487 0x01, 0x22, 0x38, 0xc1, 0x87, 0x13, 0x4f, 0x93, 0x36, 0xc0, 0xe0, 0x00, 0x1d, 0x76, 0xc1, 0x84,
TheChrisyd 0:a0257f241e9e 488 0x1a, 0x0b, 0x20, 0x80, 0x05, 0xe5, 0x3f, 0x00, 0x57, 0x84, 0x82, 0x91, 0x31, 0x20, 0x82, 0x03,
TheChrisyd 0:a0257f241e9e 489 0x0d, 0x3c, 0xf8, 0x84, 0x17, 0xf0, 0x60, 0x41, 0x06, 0x17, 0xff, 0x15, 0x11, 0x0a, 0x24, 0x08,
TheChrisyd 0:a0257f241e9e 490 0xe1, 0xdd, 0x3f, 0x8c, 0x8a, 0x00, 0x19, 0x62, 0x78, 0x8f, 0x04, 0xf1, 0x32, 0x3c, 0x01, 0x8d,
TheChrisyd 0:a0257f241e9e 491 0xae, 0xfe, 0xc3, 0x33, 0x18, 0x10, 0xc1, 0xcd, 0x7f, 0xbf, 0x08, 0x0f, 0x59, 0x2f, 0x14, 0x25,
TheChrisyd 0:a0257f241e9e 492
TheChrisyd 0:a0257f241e9e 493 0x63, 0x60, 0xe1, 0xdd, 0x7f, 0x32, 0x8c, 0xf6, 0xa1, 0x0a, 0x10, 0x7c, 0xb8, 0x30, 0xc3, 0x7d,
TheChrisyd 0:a0257f241e9e 494 0x10, 0x04, 0x00, 0x17, 0x56, 0x70, 0x0f, 0x42, 0xf0, 0x60, 0x43, 0x0d, 0xfe, 0x41, 0x08, 0x36,
TheChrisyd 0:a0257f241e9e 495 0xb4, 0xe0, 0x1e, 0x84, 0xa1, 0x07, 0xf7, 0x20, 0x1e, 0xc4, 0x83, 0x30, 0x94, 0x04, 0xd1, 0x30,
TheChrisyd 0:a0257f241e9e 496 0x0a, 0x45, 0xc3, 0x58, 0x99, 0x93, 0x32, 0x64, 0x40, 0xce, 0x10, 0xd0, 0x47, 0xc4, 0xe4, 0x08,
TheChrisyd 0:a0257f241e9e 497 0x7e, 0x25, 0x01, 0x0c, 0x4c, 0x68, 0x95, 0x69, 0x13, 0x84, 0xef, 0x58, 0x09, 0x3a, 0x02, 0xac,
TheChrisyd 0:a0257f241e9e 498 0x8e, 0x5e, 0x70, 0x92, 0x92, 0xc9, 0xb4, 0x80, 0x92, 0x00, 0x83, 0x7f, 0x28, 0x00, 0x0d, 0x0c,
TheChrisyd 0:a0257f241e9e 499 0xf0, 0x24, 0x08, 0xfe, 0x91, 0x08, 0x68, 0x93, 0x00, 0xfb, 0x12, 0x86, 0x78, 0x48, 0x00, 0x7a,
TheChrisyd 0:a0257f241e9e 500 0x0e, 0xe0, 0x3c, 0x8c, 0xb6, 0xdf, 0xb6, 0x8f, 0x45, 0x39, 0x0f, 0xc2, 0x70, 0xfa, 0x7e, 0x63,
TheChrisyd 0:a0257f241e9e 501 0x0f, 0xe2, 0x41, 0x3c, 0x88, 0x07, 0xf1, 0x20, 0x1e, 0xc4, 0x83, 0x78, 0x10, 0x0f, 0xa2, 0xc0,
TheChrisyd 0:a0257f241e9e 502 0x81, 0x01, 0x05, 0x02, 0x04, 0x30, 0x20, 0x80, 0x00, 0xe0, 0xc3, 0x83, 0x07, 0x17, 0x0e, 0x6c,
TheChrisyd 0:a0257f241e9e 503 0xd8, 0xc1, 0x2b, 0x38, 0x04, 0x6f, 0xb8, 0xc1, 0x13, 0x56, 0xf0, 0x09, 0x0f, 0xe1, 0x33, 0x3c,
TheChrisyd 0:a0257f241e9e 504 0x05, 0xff, 0xe8, 0x10, 0x9e, 0x61, 0x86, 0xbf, 0xe0, 0x19, 0x2f, 0x61, 0x05, 0xaf, 0x64, 0x1d,
TheChrisyd 0:a0257f241e9e 505 0xbc, 0x83, 0x03, 0x8c, 0xf0, 0x91, 0x6e, 0x93, 0x51, 0xf0, 0x4f, 0x36, 0xc1, 0x11, 0x7a, 0xf8,
TheChrisyd 0:a0257f241e9e 506 0x0e, 0xee, 0x30, 0xa0, 0x43, 0xdf, 0x0a, 0x80, 0x8b, 0x51, 0x74, 0x82, 0x19, 0x1c, 0xa0, 0x9d,
TheChrisyd 0:a0257f241e9e 507 0x6d, 0x00, 0x65, 0x29, 0x5a, 0x41, 0xfb, 0x86, 0x57, 0x07, 0x76, 0x70, 0x81, 0xd2, 0x98, 0xb6,
TheChrisyd 0:a0257f241e9e 508 0xc4, 0x59, 0x8e, 0x0b, 0x50, 0xa1, 0x40, 0x6e, 0xad, 0x57, 0xb2, 0x0d, 0x16, 0x09, 0x88, 0xdd,
TheChrisyd 0:a0257f241e9e 509
TheChrisyd 0:a0257f241e9e 510 0x3f, 0x08, 0xb4, 0x82, 0x34, 0xd8, 0xff, 0x83, 0x28, 0x2c, 0x90, 0x20, 0x40, 0x34, 0xcc, 0x41,
TheChrisyd 0:a0257f241e9e 511 0xd0, 0x4b, 0xe0, 0xc3, 0xcc, 0x85, 0xc0, 0xe2, 0x52, 0xa3, 0x2a, 0x9d, 0xc1, 0x31, 0x75, 0x35,
TheChrisyd 0:a0257f241e9e 512 0xa2, 0x89, 0x5d, 0xb2, 0xa0, 0x66, 0x4e, 0x48, 0x90, 0x20, 0xce, 0xe4, 0x8a, 0x58, 0x0a, 0x72,
TheChrisyd 0:a0257f241e9e 513 0x03, 0xe4, 0xe0, 0x00, 0x01, 0x3c, 0x78, 0x70, 0x60, 0xe1, 0x04, 0xcf, 0x70, 0x11, 0x3c, 0x82,
TheChrisyd 0:a0257f241e9e 514 0x63, 0xf0, 0x08, 0x0e, 0x60, 0x40, 0xc7, 0xc3, 0x68, 0x05, 0x11, 0x42, 0x70, 0x01, 0x0d, 0x2d,
TheChrisyd 0:a0257f241e9e 515 0x5a, 0x85, 0x8b, 0xe0, 0x11, 0x0d, 0xc3, 0x05, 0x68, 0x50, 0xc1, 0x3d, 0x1a, 0x05, 0x07, 0x90,
TheChrisyd 0:a0257f241e9e 516 0xd1, 0x38, 0xdc, 0x36, 0x82, 0x72, 0x90, 0x94, 0x82, 0x7b, 0x95, 0xcc, 0xc2, 0xe0, 0xa2, 0x51,
TheChrisyd 0:a0257f241e9e 517 0x47, 0xac, 0x83, 0xb9, 0x2b, 0xd8, 0x37, 0xca, 0xcc, 0x12, 0x76, 0x6a, 0xd1, 0x9c, 0x4c, 0x95,
TheChrisyd 0:a0257f241e9e 518 0x1d, 0x09, 0xc8, 0x2b, 0x82, 0x0b, 0xa3, 0x86, 0xa6, 0x0c, 0xf8, 0x1b, 0x01, 0x16, 0x0c, 0xa8,
TheChrisyd 0:a0257f241e9e 519 0xe1, 0xf3, 0x76, 0x2c, 0xcd, 0xda, 0x9d, 0x0e, 0x5f, 0x4d, 0xa7, 0x6e, 0xd4, 0xb7, 0x75, 0x6d,
TheChrisyd 0:a0257f241e9e 520 0x67, 0xad, 0x68, 0xb8, 0x67, 0x21, 0x47, 0xcb, 0x46, 0x00, 0xfb, 0x88, 0x05, 0x17, 0xb0, 0xd9,
TheChrisyd 0:a0257f241e9e 521 0x30, 0xa9, 0x15, 0xe5, 0x22, 0x57, 0x79, 0xcb, 0xf8, 0xc7, 0x8e, 0x9b, 0x65, 0x7a, 0x6b, 0x15,
TheChrisyd 0:a0257f241e9e 522 0x47, 0xd8, 0xb9, 0x01, 0x5a, 0x4b, 0xac, 0x4d, 0xf0, 0x4b, 0x67, 0xe6, 0x80, 0x0e, 0x15, 0xf2,
TheChrisyd 0:a0257f241e9e 523 0x19, 0x8a, 0x5a, 0xb9, 0x23, 0x1c, 0xfe, 0x05, 0x70, 0xe1, 0x70, 0x77, 0xc2, 0x8d, 0x13, 0x30,
TheChrisyd 0:a0257f241e9e 524 0xa0, 0x05, 0xcb, 0x57, 0x14, 0x15, 0x83, 0x35, 0x44, 0xb0, 0x2f, 0x29, 0x58, 0x45, 0x49, 0xc8,
TheChrisyd 0:a0257f241e9e 525 0xe0, 0xdf, 0x2f, 0x9c, 0x8e, 0x01, 0x0d, 0xf2, 0x2f, 0x0f, 0xe2, 0x41, 0x7c, 0xfa, 0x6c, 0x0e,
TheChrisyd 0:a0257f241e9e 526
TheChrisyd 0:a0257f241e9e 527 0xe0, 0x40, 0x01, 0x03, 0x84, 0x7f, 0x2f, 0xfc, 0x9f, 0x66, 0x50, 0xa5, 0x22, 0x38, 0x43, 0x8f,
TheChrisyd 0:a0257f241e9e 528 0x0c, 0x6b, 0x3b, 0xb8, 0x42, 0x8b, 0x95, 0x60, 0x6f, 0x41, 0xb8, 0x85, 0x9d, 0xb0, 0x83, 0x43,
TheChrisyd 0:a0257f241e9e 529 0xdc, 0x81, 0x17, 0x5c, 0xfc, 0x83, 0x0e, 0x0e, 0xc0, 0xe2, 0x06, 0x00, 0xb8, 0x30, 0x33, 0x2c,
TheChrisyd 0:a0257f241e9e 530 0xc8, 0x16, 0xb0, 0x07, 0x00, 0xc0, 0xc9, 0xfe, 0xd0, 0x81, 0x42, 0x86, 0x08, 0x0e, 0x54, 0xe1,
TheChrisyd 0:a0257f241e9e 531 0xf7, 0x0f, 0x15, 0x12, 0x04, 0x30, 0xa5, 0x3e, 0x08, 0x86, 0x83, 0x6a, 0x1e, 0xc4, 0x83, 0x78,
TheChrisyd 0:a0257f241e9e 532 0x10, 0x0f, 0xe2, 0x41, 0x3c, 0x88, 0x07, 0xf1, 0x20, 0x1e, 0xc4, 0x83, 0x78, 0x10, 0x0f, 0x02,
TheChrisyd 0:a0257f241e9e 533 };
TheChrisyd 0:a0257f241e9e 534 static PROGMEM prog_uchar bg_pic[] = {
TheChrisyd 0:a0257f241e9e 535
TheChrisyd 0:a0257f241e9e 536 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
TheChrisyd 0:a0257f241e9e 537 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
TheChrisyd 0:a0257f241e9e 538 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
TheChrisyd 0:a0257f241e9e 539 0x01, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 540 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 541 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 542 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 543 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 544 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 545 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 546 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 547 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 548 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 549 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 550 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 551 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 552
TheChrisyd 0:a0257f241e9e 553 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 554 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 555 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 556 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 557 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 558 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 559 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 560 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 561 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 562 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 563 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 564 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 565 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 566 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 567 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 568 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 569
TheChrisyd 0:a0257f241e9e 570 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 571 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 572 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 573 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 574 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 575 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 576 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 577 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 578 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 579 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 580 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 581 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 582 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 583 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 584 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 585 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 586
TheChrisyd 0:a0257f241e9e 587 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 588 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 589 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 590 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 591 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 592 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 593 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 594 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 595 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 596 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 597 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 598 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 599 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 600 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 601 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 602 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 603
TheChrisyd 0:a0257f241e9e 604 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 605 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 606 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 607 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 608 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 609 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 610 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 611 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 612 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 613 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 614 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 615 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 616 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 617 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 618 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 619 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 620
TheChrisyd 0:a0257f241e9e 621 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 622 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 623 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 624 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 625 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 626 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 627 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 628 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 629 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 630 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 631 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 632 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 633 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 634 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 635 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 636 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 637
TheChrisyd 0:a0257f241e9e 638 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 639 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 640 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 641 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 642 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 643 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 644 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 645 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 646 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 647 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 648 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 649 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 650 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 651 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 652 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 653 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 654
TheChrisyd 0:a0257f241e9e 655 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 656 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 657 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 658 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 659 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 660 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 661 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 662 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 663 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 664 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 665 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 666 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 667 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 668 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 669 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 670 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 671
TheChrisyd 0:a0257f241e9e 672 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 673 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 674 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 675 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 676 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 677 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 678 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 679 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 680 0x04, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07,
TheChrisyd 0:a0257f241e9e 681 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05,
TheChrisyd 0:a0257f241e9e 682 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06, 0x07, 0x05, 0x06,
TheChrisyd 0:a0257f241e9e 683 0x07, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 684 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04,
TheChrisyd 0:a0257f241e9e 685 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08,
TheChrisyd 0:a0257f241e9e 686 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03, 0x04, 0x08, 0x03,
TheChrisyd 0:a0257f241e9e 687 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 688
TheChrisyd 0:a0257f241e9e 689 0x04, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a,
TheChrisyd 0:a0257f241e9e 690 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09,
TheChrisyd 0:a0257f241e9e 691 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01, 0x0a, 0x09, 0x01,
TheChrisyd 0:a0257f241e9e 692 0x0a, 0x08, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 693 0x0b, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,
TheChrisyd 0:a0257f241e9e 694 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,
TheChrisyd 0:a0257f241e9e 695 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,
TheChrisyd 0:a0257f241e9e 696 0x06, 0x0c, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03,
TheChrisyd 0:a0257f241e9e 697 };
TheChrisyd 0:a0257f241e9e 698 static PROGMEM prog_uchar bg_chr[] = {
TheChrisyd 0:a0257f241e9e 699
TheChrisyd 0:a0257f241e9e 700 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x54,
TheChrisyd 0:a0257f241e9e 701 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 702 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x05, 0x55,
TheChrisyd 0:a0257f241e9e 703 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 704 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54,
TheChrisyd 0:a0257f241e9e 705 0x55, 0x55, 0x55, 0x55, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00,
TheChrisyd 0:a0257f241e9e 706 0x55, 0x55, 0x55, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 707 0x55, 0x55, 0x55, 0x55, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01,
TheChrisyd 0:a0257f241e9e 708 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00,
TheChrisyd 0:a0257f241e9e 709 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x55, 0x55,
TheChrisyd 0:a0257f241e9e 710 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 711 0x55, 0x54, 0x55, 0x54, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
TheChrisyd 0:a0257f241e9e 712 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 713 };
TheChrisyd 0:a0257f241e9e 714 static PROGMEM prog_uchar bg_pal[] = {
TheChrisyd 0:a0257f241e9e 715
TheChrisyd 0:a0257f241e9e 716 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00, 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 717 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 718 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00, 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 719 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00, 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 720 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00, 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 721 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00, 0x10, 0x42, 0x18, 0x63, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 722 0x18, 0x63, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00,
TheChrisyd 0:a0257f241e9e 723 };