/* This file is generated with usbsnoop2libusb.pl from a usbsnoop log file. */
/* Latest version of the script should be in http://iki.fi/lindi/usb/usbsnoop2libusb.pl */

/*TODO
Add option for other device and vendor IDs?
Change repeated commands to const unsigned chars
Figure out warm up sequence and change to loop
	According to Alexander Bechikov, checking status 04 and 05 are waits.
Post process output to adjust weird offsets...
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <signal.h>
#include <ctype.h>
#include <usb.h>
#if 0
 #include <linux/usbdevice_fs.h>
 #define LIBUSB_AUGMENT
 #include "libusb_augment.h"
#endif

#define PRINTREGREADS	1

struct usb_dev_handle *devh;

//bmp header - 24-bit 5128 pixels wide
const char bmp_file_header[] = {
	0x42, 0x4d, 0xf6, 0x26, 0xbe, 0x06, 0x00, 0x00,
	0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x28, 0x00,
	0x00, 0x00, 0x08, 0x14, 0x00, 0x00, 0x8e, 0x1b,
	0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00,
	0x00, 0x00, 0xc0, 0x26, 0xbe, 0x06, 0x46, 0x5c,
	0x00, 0x00, 0x46, 0x5c, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};

//These four get used primarily during init
/*\x04\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*/
const char command_one[] = {
	0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

/*\x01\xa6\xe0\x08\x01\x02\x04\x08\x10\x20\x40\x80\x00\x00\x00\x00*/
const char command_two[] = {
	0x01, 0xa6, 0xe0, 0x08, 0x01, 0x02, 0x04, 0x08,
	0x10, 0x20, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00 };

/*\x02\xa6\xe0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*/
const char command_three[] = {
	0x02, 0xa6, 0xe0, 0x08, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

/*\x02\xa0\x05\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*/
const char command_four[] = {
	0x02, 0xa0, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

/*\x04\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*/
//possibly some sort of end of command thing?
const char command_five[] = {
	0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

/*\x02\\xa0\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00*/
const char command_six[] = {
	0x02, 0xa0, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

/*\x02\xa8\x10\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00*/
const char command_eight_base[] = {
	0x02, 0xa8, 0x10, 0x20, 0x00, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

void release_usb_device(int dummy) {
    int ret;
    ret = usb_release_interface(devh, 0);
    if (!ret)
	printf("failed to release interface: %d\n", ret);
    usb_close(devh);
    if (!ret)
	printf("failed to close interface: %d\n", ret);
    exit(1);
} 

struct usb_device *find_device(int vendor, int product) {
    struct usb_bus *bus;
    
    for (bus = usb_get_busses(); bus; bus = bus->next) {
	struct usb_device *dev;
	
	for (dev = bus->devices; dev; dev = dev->next) {
	    if (dev->descriptor.idVendor == vendor
		&& dev->descriptor.idProduct == product)
		return dev;
	}
    }
    return NULL;
}

void print_bytes(char *bytes, int len) {
    int i;
    if (len > 0) {
	for (i=0; i<len; i++) {
	    if(i > 0 && i % 16 == 0){
		printf("\n");
	    }
	    printf("%02x ", (int)((unsigned char)bytes[i]));
	}
	printf("\"");
        /*for (i=0; i<len; i++) {
	    printf("%c", isprint(bytes[i]) ? bytes[i] : '.');
        }
        printf("\"");*/
    }
}

void print_file(char *bytes, int len, FILE *output){
    int i;
    if (len > 0) {
	for (i=0; i<len; i++) {
	    fprintf(output, "%c", bytes[i]);
	}
    }
}

int read_register(char *buf, char reg){
	int ret;
	char reg_command[] = {0x8b, 0x00, 0x8b, 0x00};
	reg_command[1] = reg_command[3] = reg;

	memcpy(buf, reg_command, 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x0000007, 0x0000000, buf, 0x0000001, 1000);

#ifdef PRINTREGREADS
	printf("8b %02x =", reg);
	print_bytes(buf, ret);
	printf("\n");
#endif
	return ret;

}

int select_register_bank(char *buf, int bank){
	int ret;
	char reg_command[] = {0x5f, 0x00, 0x5f, 0x00};
	if(bank < 0 || bank > 2){
		return 0;
	}
	reg_command[1] = reg_command[3] = bank;
	printf("Switching to register %d\n", bank);
	memcpy(buf, reg_command, 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
	return ret;
}

int openscanchip(char *buf){
	int ret;
	printf("Opening chip\n");
	memcpy(buf, "\x64\x64\x64\x64", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x65\x65\x65\x65", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x44\x44\x44\x44", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x45\x45\x45\x45", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	return ret;
}

int closescanchip(char *buf){
	int ret;
	printf("Closing chip\n");
	memcpy(buf, "\x64\x64\x64\x64", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x65\x65\x65\x65", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x16\x16\x16\x16", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	if(ret != 0){
		return ret;
	}
	memcpy(buf, "\x17\x17\x17\x17", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000090, 0x0000000, buf, 0x0000004, 1000);
	return ret;
}

int do_command_one(char *buf){
	int ret;
	memcpy(buf, command_one, 0x0000010);

	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	printf("Command One %d\n", ret);
	return ret;
}

int do_command_two(char *buf){
	int ret;
	memcpy(buf, command_two, 0x0000010);

	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	printf("Command Two %d\n", ret);
	return ret;
}

int do_command_three(char *buf){
	int ret;
	memcpy(buf, command_three, 0x0000010);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	printf("Command Three %d\n", ret);
	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
	print_bytes(buf, ret);
	return ret;
}

int do_command_four(char *buf){
	int ret;
	memcpy(buf, command_four, 0x0000010);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
	printf("Command Four %d\n", ret);
	return ret;
}

int do_command_five(char *buf){
	int ret;
	memcpy(buf, command_five, 0x0000010);

	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	printf("Command Five %d\n", ret);
	return ret;
}

int do_command_six(char *buf){
	int ret;
	memcpy(buf, command_six, 0x0000010);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	printf("Command Six %d\n", ret);
	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
	print_bytes(buf, ret);
	return ret;
}

int do_command_seven(char *buf){
	int ret;
	/*Mustek:
	#define ES01_94_PowerSaveControl		0x94
	#define ES01_92_TimerPowerSaveTime		0x92
	*/
	memcpy(buf, "\x94\x31\x92\x57", 0x0000004);

	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
	printf("Command Seven - power save commands? %d\n", ret);
	return ret;
}

int do_command_eight(char *buf){
	int ret;
	memcpy(buf, "\x96\x21\x96\x21", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
	printf("Command Eight - GPIO? %d\n", ret);
	return ret;
}

/*Same as Mustek*/
int clearFIFO(char *buf){
/*ret = clearFIFO(buf);*/
	int ret;
	printf("Clearing FIFO... ");
	memcpy(buf, "\x00\x00\x00\x00", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);
	printf("%d", ret);
	memcpy(buf, "\x00\x00\x00\x00", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);
	printf("%d\n", ret);
	return ret;
}

int main(int argc, char **argv) {
    int ret, vendor, product;
    struct usb_device *dev;
    char buf[65535], *endptr;
    FILE * myfile;
    int scanloop, x;
#if 0
    usb_urb *isourb;
    struct timeval isotv;
    char isobuf[32768];
#endif


    if (argc!=2) {
	printf("usage: %s outputfile\n", argv[0]);
	exit(1);
    }

    if (myfile = fopen(argv[1], "r"))
    {
        fclose(myfile);
        printf("File already exists!\n");
	exit(1);
    }


    usb_init();
    usb_set_debug(255);
    usb_find_busses();
    usb_find_devices();

    vendor = 0x03f0;
    product = 0x3005;

    dev = find_device(vendor, product);
    assert(dev);

    devh = usb_open(dev);
    assert(devh);
    
    signal(SIGTERM, release_usb_device);

    ret = usb_get_driver_np(devh, 0, buf, sizeof(buf));
    printf("usb_get_driver_np returned %d\n", ret);
    if (ret == 0) {
	printf("interface 0 already claimed by driver \"%s\", attempting to detach it\n", buf);
	ret = usb_detach_kernel_driver_np(devh, 0);
	printf("usb_detach_kernel_driver_np returned %d\n", ret);
    }
    ret = usb_claim_interface(devh, 0);
    if (ret != 0) {
	printf("claim failed with error %d\n", ret);
		exit(1);
    }
    
    ret = usb_set_altinterface(devh, 0);
    assert(ret >= 0);

ret = usb_get_descriptor(devh, 0x0000001, 0x0000000, buf, 0x0000012);
ret = usb_get_descriptor(devh, 0x0000002, 0x0000000, buf, 0x0000009);
ret = usb_get_descriptor(devh, 0x0000002, 0x0000000, buf, 0x0000027);

ret = usb_release_interface(devh, 0);
if (ret != 0) printf("failed to release interface before set_configuration: %d\n", ret);

ret = usb_set_configuration(devh, 0x0000001);

ret = usb_claim_interface(devh, 0);
if (ret != 0) printf("claim after set_configuration failed with error %d\n", ret);

ret = usb_set_altinterface(devh, 0);

usleep(100*1000);

ret = do_command_one(buf);

ret = do_command_two(buf);

ret = do_command_three(buf);

ret = do_command_four(buf);

ret = read_register(buf, 0x1f);

ret = read_register(buf, 0x1e);

ret = read_register(buf, 0x1d);

ret = read_register(buf, 0x1c);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = read_register(buf, 0x1c);

ret = read_register(buf, 0x01);

ret = read_register(buf, 0x03);

/*This sequence shows up multiple times.
  Maybe some sort of AT sort of thing?*/
/* same as mustek2 close chip command*/
ret = closescanchip(buf);

/*Same as mustek2 chip open command*/
ret = openscanchip(buf);

/*Power save control commands?*/
ret = do_command_seven(buf);

ret = do_command_five(buf);

/*this appears to be repeated.*/
ret = do_command_one(buf);
           
ret = do_command_two(buf);

ret = do_command_three(buf);

ret = do_command_four(buf);

ret = read_register(buf, 0x1f);

ret = read_register(buf, 0x1e);

ret = read_register(buf, 0x1d);

ret = read_register(buf, 0x1c);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = read_register(buf, 0x1c);

ret = read_register(buf, 0x01);

ret = read_register(buf, 0x03);

/*close and reopen chip*/
ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);
ret = do_command_five(buf);
usleep(40*1000);

ret = usb_interrupt_read(devh, 0x00000083, buf, 0x0000001, 1000);
printf("Interrupt Read: %02x\n", buf[0]);

printf("Initialization Complete\n");

/*Sleep command reduced*/
/*I think this was between starting to record and opening the Windows scanner interface*/
usleep(200*1000);

ret = do_command_one(buf);

ret = do_command_two(buf);

ret = do_command_three(buf);

ret = do_command_four(buf);

ret = read_register(buf, 0x1f);

ret = read_register(buf, 0x1e);

ret = read_register(buf, 0x1d);

ret = read_register(buf, 0x1c);

ret = do_command_five(buf);


ret = do_command_one(buf);

ret = read_register(buf, 0x03);

ret = do_command_five(buf);


ret = do_command_one(buf);

ret = read_register(buf, 0x03);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = read_register(buf, 0x03);

/*GPIO on Mustek_usb2...*/
ret = do_command_eight(buf);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = read_register(buf, 0x03);

ret = do_command_five(buf);

memcpy(buf, 
	"\x02\xa0\x10\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = do_command_six(buf);

ret = do_command_one(buf);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = read_register(buf, 0x01);

ret = closescanchip(buf);

ret = openscanchip(buf);

memcpy(buf, 
	"\x87\xf1\x87\xa5\x87\x91\x87\x81" "\x87\x11\x87\xf0", 0x000000c);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000000c, 1000);

memcpy(buf, "\xf3\x21\xf4\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);

usleep(12*1000);

ret = read_register(buf, 0x00);

ret = read_register(buf, 0x1f);

ret = read_register(buf, 0x1e);

ret = read_register(buf, 0x1d);

ret = read_register(buf, 0x1c);

ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);
memcpy(buf, "\x00\x00\x86\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);

ret = do_command_five(buf);

/*reading from successive registers?*/
for(x = 0; x < 16; x+=2){
	memcpy(buf, command_eight_base, 0x0000010);
	buf[2] += x << 4;
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
}

for(x = 0; x < 10; x+=2){
	memcpy(buf, command_eight_base, 0x0000010);
	buf[1] += 2;
	buf[2] += x << 4;
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
}
/* end successive reads */

memcpy(buf, 
	"\x02\xa0\x2b\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = do_command_one(buf);

ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);
ret = do_command_five(buf);

usleep(2500*1000);

ret = do_command_one(buf);

ret = read_register(buf, 0x03);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = read_register(buf, 0x03);

ret = do_command_eight(buf);

ret = do_command_five(buf);

ret = do_command_one(buf);

ret = do_command_four(buf);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = read_register(buf, 0x01);

ret = closescanchip(buf);
ret = openscanchip(buf);

memcpy(buf, 
	"\x87\xf1\x87\xa5\x87\x91\x87\x81" "\x87\x11\x87\xf0" 
, 0x000000c);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000000c, 1000);

memcpy(buf, "\xf3\x21\xf4\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\x82\x00\x83\x38\x84\x8e\x85\xe3", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);

ret = select_register_bank(buf, 1);

memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\xd4\x00\xd5\x8e\xd6\xe3" "\xd7\x38\xec\x00\xed\x00\xee\xc0" 
	"\xef\x00\xf0\x00\xf1\x00\xf2\x00" "\xf3\x30" 
, 0x000002a);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000002a, 1000);
/*That was URB 220 */

ret = select_register_bank(buf, 0);

memcpy(buf, 
	"\x02\xa0\x60\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa0\x80\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\xa0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\xc0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa0\xa0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
/*That was URB 230 */
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x02\xa0\xc0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa0\xe0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x02\xa2\x00\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa2\x20\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(50*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa2\x40\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
/*That was URB 240 */

memcpy(buf, 
	"\x02\xa2\x60\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa2\x80\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x02\xa2\xa0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa2\xc0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x02\xa2\xe0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
/*That was URB 250 */

memcpy(buf, 
	"\x02\xa4\x00\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x02\xa4\x20\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\x40\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\x60\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\x80\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
/*That was URB 260 */
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\xa0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\xc0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa4\xe0\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\x00\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\x20\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
/*That was URB 270 */

memcpy(buf, 
	"\x02\xa6\x40\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\x60\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(45*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xa6\x80\x20\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(44*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\x02\xaa\xb0\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(2*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = read_register(buf, 0x00);

/*Setting a bunch of options?*/
memcpy(buf,
	"\x74\x00\x78\x00\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x86\x01\x88\x80"
	"\x89\x80\x90\x64\x8e\x00\x92\x57" "\x93\x0a\x95\x27\x96\x21\x97\xf0"
	"\x98\xbe\x99\x30\xb2\x14\xb3\x01" "\xb8\x00\xb9\x00\xba\x00\xbb\x00"
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00", 0x0000040);

ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xcc\x00\xd0\x07\xd1\x00" 
	"\xd2\x00\xd3\x00\xd4\x00\xd5\x00" "\xd6\x00\xd7\x00\xd8\x05\xdb\x00" 
	"\xdc\x01\xde\x01\xea\x2c\xeb\x01" "\xf8\x01" 
, 0x000002a);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000002a, 1000);

ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x6c\x1c\xd0\x00\xd1\x00" "\xd2\x00\xd3\x00\xd4\x00\xd5\x8e" 
	"\xd6\xe3\xd7\x38\xd8\xff\xd9\xff" "\xda\xff\xdb\xff\xdc\xff\xdd\xff" 
	"\xde\xff\xdf\xff\xe0\xff\xe1\xff" "\xe2\xff\xe3\xff\xe4\xff\xe5\xff" 
, 0x0000040);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

/*
\xe6\xff
\xe7\xff
\xe8\xff
\xe9\xff
\xea\xff
\xeb\xff
\xec\x00
\xed\x00 
\xee\xc0
\xef\x00
\xf0\x00 ES01_F0_ScanImageStep (LO)
\xf1\x00 ES01_F1_ScanImageStep (MID)
\xf2\x00 ES01_F2_ScanImageStep (HIGH)
\xf3\x30 ES01_F3_ActionOption INVERT_MOTOR_DIRECTION_ENABLE UNIFORM_MOTOR_AND_SCAN_SPEED_ENABLE

*/
memcpy(buf, 
	"\xe6\xff\xe7\xff\xe8\xff\xe9\xff" "\xea\xff\xeb\xff\xec\x00\xed\x00" 
	"\xee\xc0\xef\x00\xf0\x00\xf1\x00" "\xf2\x00\xf3\x30" 
, 0x000001c);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000001c, 1000);



ret = select_register_bank(buf, 0);

ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\xd0\x01\xd1\x09\xd2\x11\xd3\x19" "\xd4\x21\xd5\x29\xd6\x31\xd7\x39" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000010, 1000);


ret = select_register_bank(buf, 0);
/*That was URB 290 */
memcpy(buf, "\x79\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(27*1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);

/*motor movement? gamma table?*/
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);

usleep(15*1000);

ret = clearFIFO(buf);

usleep(46*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 300 */

memcpy(buf, "\x79\x10\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(26*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);


ret = clearFIFO(buf);

usleep(46*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x10" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

memcpy(buf, "\x79\x20\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(30*1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);

usleep(15*1000);

ret = clearFIFO(buf);

usleep(46*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x20" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);


memcpy(buf, "\x79\x30\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(30*1000);

memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(47*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x30" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 330 */

memcpy(buf, "\x79\x40\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(46*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 340 */
memcpy(buf, "\x79\x50\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(15*1000);
ret = clearFIFO(buf);
usleep(46*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x50" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 350 */
memcpy(buf, "\x79\x60\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(46*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x60" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 360 */

memcpy(buf, "\x79\x70\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(29*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(17*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(15*1000);

ret = clearFIFO(buf);

usleep(46*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x70" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 370 */

memcpy(buf, "\x79\x80\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(14*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(15*1000);
ret = clearFIFO(buf);
usleep(46*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x80" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 380 */
memcpy(buf, "\x79\x90\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(47*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\x90" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 390 */

memcpy(buf, "\x79\xa0\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x08" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(29*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
for(x = 0; x < 2048; x+= 8){
	memcpy(buf+x, "\x01\x02\x04\x08\x10\x20\x40\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000800, 1122);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(47*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x79\xa0" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x08\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000800, 1122);

/*That was URB 400 */
memcpy(buf, "\x79\x40\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE + USB_ENDPOINT_IN, 0x000000c, 0x00000d0, 0x0000000, buf, 0x0000001, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x90" 
	"\x7e\x01\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\xf0\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(23*1000);
for(x = 0; x < 61440; x+= 8){
	memcpy(buf+x, "\\x01\\x02\\x04\\x08\\x10\\x20\\x40\\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x000f000, 4686);

usleep(42*1000);
memcpy(buf, "\x00\xa0\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(17*1000);

for(x = 0; x < 40960; x+= 8){
	memcpy(buf+x, "\\x01\\x02\\x04\\x08\\x10\\x20\\x40\\x80", 0x0000008);
}
ret = usb_bulk_write(devh, 0x00000001, buf, 0x000a000, 3457);

usleep(27*1000);

ret = clearFIFO(buf);

usleep(46*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\xc8" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
/*That was URB 410 */

usleep(32*1000);

memcpy(buf, "\x00\x90\x01\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(7*1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(17*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0009400, 3273);


memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x80\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x06" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x06\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);

memcpy(buf, 
	"\x29\x23\xbe\x84\xe1\x6c\xd6\xae" "\x52\x90\x49\xf1\xf1\xbb\xe9\xeb" 
	"\xb3\xa6\xdb\x3c\x87\x0c\x3e\x99" "\x24\x5e\x0d\x1c\x06\xb7\x47\xde" 
	"\xb3\x12\x4d\xc8\x43\xbb\x8b\xa6" "\x1f\x03\x5a\x7d\x09\x38\x25\x1f" 
	"\x5d\xd4\xcb\xfc\x96\xf5\x45\x3b" "\x13\x0d\x89\x0a\x1c\xdb\xae\x32" 
	"\x20\x9a\x50\xee\x40\x78\x36\xfd" "\x12\x49\x32\xf6\x9e\x7d\x49\xdc" 
	"\xad\x4f\x14\xf2\x44\x40\x66\xd0" "\x6b\xc4\x30\xb7\x32\x3b\xa1\x22" 
	"\xf6\x22\x91\x9d\xe1\x8b\x1f\xda" "\xb0\xca\x99\x02\xb9\x72\x9d\x49" 
	"\x2c\x80\x7e\xc5\x99\xd5\xe9\x80" "\xb2\xea\xc9\xcc\x53\xbf\x67\xd6" 
	"\xbf\x14\xd6\x7e\x2d\xdc\x8e\x66" "\x83\xef\x57\x49\x61\xff\x69\x8f" 
	"\x61\xcd\xd1\x1e\x9d\x9c\x16\x72" "\x72\xe6\x1d\xf0\x84\x4f\x4a\x77" 
	"\x02\xd7\xe8\x39\x2c\x53\xcb\xc9" "\x12\x1e\x33\x74\x9e\x0c\xf4\xd5" 
	"\xd4\x9f\xd4\xa4\x59\x7e\x35\xcf" "\x32\x22\xf4\xcc\xcf\xd3\x90\x2d" 
	"\x48\xd3\x8f\x75\xe6\xd9\x1d\x2a" "\xe5\xc0\xf7\x2b\x78\x81\x87\x44" 
	"\x0e\x5f\x50\x00\xd4\x61\x8d\xbe" "\x7b\x05\x15\x07\x3b\x33\x82\x1f" 
	"\x18\x70\x92\xda\x64\x54\xce\xb1" "\x85\x3e\x69\x15\xf8\x46\x6a\x04" 
	"\x96\x73\x0e\xd9\x16\x2f\x67\x68" "\xd4\xf7\x4a\x4a\xd0\x57\x68\x76" 
	"\xfa\x16\xbb\x11\xad\xae\x24\x88" "\x79\xfe\x52\xdb\x25\x43\xe5\x3c" 
	"\xf4\x45\xd3\xd8\x28\xce\x0b\xf5" "\xc5\x60\x59\x3d\x97\x27\x8a\x59" 
	"\x76\x2d\xd0\xc2\xc9\xcd\x68\xd4" "\x49\x6a\x79\x25\x08\x61\x40\x14" 
	"\xb1\x3b\x6a\xa5\x11\x28\xc1\x8c" "\xd6\xa9\x0b\x87\x97\x8c\x2f\xf1" 
	"\x15\x1d\x9a\x95\xc1\x9b\xe1\xc0" "\x7e\xe9\xa8\x9a\xa7\x86\xc2\xb5" 
	"\x54\xbf\x9a\xe7\xd9\x23\xd1\x55" "\x90\x38\x28\xd1\xd9\x6c\xa1\x66" 
	"\x5e\x4e\xe1\x30\x9c\xfe\xd9\x71" "\x9f\xe2\xa5\xe2\x0c\x9b\xb4\x47" 
	"\x65\x38\x2a\x46\x89\xa9\x82\x79" "\x7a\x76\x78\xc2\x63\xb1\x26\xdf" 
	"\xda\x29\x6d\x3e\x62\xe0\x96\x12" "\x34\xbf\x39\xa6\x3f\x89\x5e\xf1" 
	"\x6d\x0e\xe3\x6c\x28\xa1\x1e\x20" "\x1d\xcb\xc2\x03\x3f\x41\x07\x84" 
	"\x0f\x14\x05\x65\x1b\x28\x61\xc9" "\xc5\xe7\x2c\x8e\x46\x36\x08\xdc" 
	"\xf3\xa8\x8d\xfe\xbe\xf2\xeb\x71" "\xff\xa0\xd0\x3b\x75\x06\x8c\x7e" 
	"\x87\x78\x73\x4d\xd0\xbe\x82\xbe" "\xdb\xc2\x46\x41\x2b\x8c\xfa\x30" 
	"\x7f\x70\xf0\xa7\x54\x86\x32\x95" "\xaa\x5b\x68\x13\x0b\xe6\xfc\xf5" 
	"\xca\xbe\x7d\x9f\x89\x8a\x41\x1b" "\xfd\xb8\x4f\x68\xf6\x72\x7b\x14" 
	"\x99\xcd\xd3\x0d\xf0\x44\x3a\xb4" "\xa6\x66\x53\x33\x0b\xcb\xa1\x10" 
	"\x5e\x4c\xec\x03\x4c\x73\xe6\x05" "\xb4\x31\x0e\xaa\xad\xcf\xd5\xb0" 
	"\xca\x27\xff\xd8\x9d\x14\x4d\xf4" "\x79\x27\x59\x42\x7c\x9c\xc1\xf8" 
	"\xcd\x8c\x87\x20\x23\x64\xb8\xa6" "\x87\x95\x4c\xb0\x5a\x8d\x4e\x2d" 
	"\x99\xe7\x3d\xb1\x60\xde\xb1\x80" "\xad\x08\x41\xe9\x67\x41\xa5\xd5" 
	"\x9f\xe4\x18\x9f\x15\x42\x00\x26" "\xfe\x4c\xd1\x21\x04\x93\x2f\xb3" 
	"\x8f\x73\x53\x40\x43\x8a\xaf\x7e" "\xca\x6f\xd5\xcf\xd3\xa1\x95\xce" 
	"\x5a\xbe\x65\x27\x2a\xf6\x07\xad" "\xa1\xbe\x65\xa6\xb4\xc9\xc0\x69" 
	"\x32\x34\x09\x2c\x4d\x01\x8f\x17" "\x56\xc6\xdb\x9d\xc8\xa6\xd8\x0b" 
	"\x88\x81\x38\x61\x6b\x68\x12\x62" "\xf9\x54\xd0\xe7\x71\x17\x48\x78" 
	"\x0d\x92\x29\x1d\x86\x29\x99\x72" "\xdb\x74\x1c\xfa\x4f\x37\xb8\xb5" 
	"\xb0\x95\x57\xf5\xdf\x80\x6c\x6d" "\x8d\x74\xd9\x8b\x43\x65\x11\x08" 
	"\xa5\xf6\x79\xbd\xf7\xeb\x15\xb8" "\xe0\xe1\x60\x8f\x6e\x3c\x7b\xf4" 
	"\x5b\x62\x8a\x8a\x8f\x27\x5c\xf7" "\xe5\x87\x4a\x3b\x32\x9b\x61\x40" 
	"\x84\xc6\xc3\xb1\xa7\x30\x4a\x10" "\xee\x75\x6f\x03\x2f\x9e\x6a\xef" 
	"\x10\x50\x9b\xc8\x81\x43\x29\x28" "\x8a\xf6\xe9\x9e\x47\xa1\x81\x48" 
	"\x31\x6c\xcd\xa4\x9e\xde\x81\xa3" "\x8c\x98\x10\xff\x9a\x43\xcd\xcf" 
	"\x57\xc7\x50\x59\xbf\xbd\x1c\x27" "\x03\x28\x7f\x5d\x89\x5f\xb9\x49" 
	"\x34\x4e\x60\x3c\xe5\xde\x02\x98" "\x42\xb2\x0d\x2b\xb6\x14\xec\xbb" 
	"\xb8\x2f\x73\xe2\x51\x7e\x7d\x1d" "\xd8\x84\xd3\x1f\x01\xbe\x50\x6b" 
	"\x16\xd6\x43\x21\x83\x19\x15\x18" "\x98\x2b\x2c\x2e\x8b\xf9\x0e\xdc" 
	"\xbc\xf0\xca\x0e\x3d\x6d\x94\x31" "\x92\x74\xaf\x8d\xb5\xa4\x90\xd5" 
	"\x5e\x6a\x40\xfc\x80\x76\x02\x4b" "\x17\x6b\x36\xb1\x21\xdb\x7d\x5a" 
	"\xea\x72\x1e\x82\x8d\x71\xa8\x8c" "\xb8\x5e\xd9\x4e\xaf\xfa\xbf\xb0" 
	"\x94\x74\x1d\x75\xe5\xdc\x10\x58" "\x46\xda\xf2\x5b\x81\xa0\x7f\x5c" 
	"\xcb\x1d\x36\xe9\x49\x74\x02\x55" "\xd2\xac\x1a\x0b\xf7\xa9\x26\x23" 
	"\x40\x5b\xa3\x33\xb9\x35\x88\x68" "\xad\xe1\x2a\xd5\xb2\x32\x5d\x0a" 
	"\xe5\x5a\xdc\xe9\x77\x5d\xeb\xb5" "\x69\xc5\x3a\x6c\x93\x98\x0d\x57" 
	"\xeb\x87\x9a\xdf\x04\x68\xb2\xa2" "\xd5\xe6\xa4\xc6\xbc\x77\x5f\x8d" 
	"\xc3\x8f\xd6\x2a\x21\x14\xa9\xd4" "\x04\x11\x01\x18\x8d\xae\xbb\x73" 
	"\x1c\x60\xca\x20\xcf\x5d\xd6\x2f" "\x45\x53\x29\xd7\xa8\x59\xcc\x0d" 
	"\xea\x26\xed\x55\x4e\x80\x84\xd9" "\x2b\xf8\x37\xb8\xed\xd5\x7a\xa0" 
	"\x5c\x4e\xfa\x9f\x21\xfc\x3c\x36" "\x85\x8e\x81\xb0\x7d\xbf\xee\xb1" 
	"\xe4\x85\xe9\x12\x07\x8b\xc6\xec" "\x66\xe2\xa3\xf3\xb9\xf4\x90\x06" 
	"\x32\xb9\xf4\x04\x02\x2d\x2c\xe0" "\x1e\x01\x74\xf8\x43\x90\x0b\xa2" 
	"\x37\x16\x92\x08\x53\x1c\xb5\x37" "\x3e\x37\x0e\x72\xfb\xf2\x46\xcc" 
	"\x26\x09\x7e\xf6\x7a\xd8\xed\x55" "\x97\x12\xca\x57\x02\xb6\x6c\x08" 
	"\x6e\x3f\xb0\xe0\x3a\x1c\x9b\xdf" "\x3a\x5f\x40\xdd\xba\xb9\xe4\x1b" 
	"\xc0\xa6\x61\x1d\x92\xe5\xc8\xbc" "\x78\x2b\x4a\x77\xc3\x18\x59\x0a" 
	"\x0e\x6a\x0a\x42\xc4\x71\xbe\x0f" "\xe3\xc3\x01\xdb\xff\x30\xb2\x1a" 
	"\x89\xf8\x65\x22\x51\x3c\x05\x3d" "\x4a\xb3\xbe\xfd\x8d\x9e\x19\xd0" 
	"\xa1\xfe\x69\xd4\xfa\x04\x67\xed" "\xbf\xc9\x19\x14\xd1\x3f\xf8\xf2" 
	"\x08\x68\x51\xad\xc0\xc5\xec\x02" "\x94\x12\xec\x94\x69\x30\xf6\x83" 
	"\xaf\x63\x95\x41\xe3\xbd\xdd\xa1" "\x58\xda\x4f\x31\x38\xce\xfd\xca" 
	"\xc5\x5c\xef\x65\xe5\x69\xc4\x30" "\xde\xaf\x9c\xe2\x5e\xb6\x36\x4b" 
	"\xbe\x00\x56\x2f\x87\x84\x6a\x54" "\x36\x5f\x6c\xda\x3c\xc5\x0a\xcb" 
	"\x49\x3d\x05\xf3\xca\x0e\xd7\xf2" "\xb1\xf4\x98\x8f\x74\x18\x22\x4f" 
	"\x58\x3f\x74\x47\xef\x42\x54\x2e" "\xdf\xbe\x39\xb6\xe6\x0c\x67\x1c" 
	"\x1b\x74\x5c\xfe\x77\x9d\x6b\x6e" "\x93\x48\xa7\x44\xb3\x3e\x02\xb8" 
	"\x04\x87\xb6\x30\x22\xdd\xe4\x56" "\xdd\x61\x7b\x6e\x3d\x8c\x5c\xe7" 
	"\xc4\x67\xbc\x2f\xf2\xff\xc9\xcc" "\x0f\x13\x90\xa9\x24\x11\x1e\xad" 
	"\x4b\x41\xe5\x92\x28\x3f\x62\xf5" "\xb8\xae\xfd\xa9\x49\x2b\x31\x51" 
	"\xca\x80\xec\x2e\x45\x1a\x39\x35" "\xaa\xbe\x1c\x65\xce\x77\xbd\x57" 
	"\xb3\xd3\xc9\x17\x0a\x4e\x16\x32" "\xf6\x0f\x86\x10\x13\xd2\x2d\x84" 
	"\xb7\x26\xb6\xa2\x78\xd8\x02\xd1" "\xee\xaf\x13\x21\xba\x59\x29\xde" 
	"\xc6\xa6\x2a\x65\xcf\xf4\x47\x36" "\x21\xeb\xdd\x4b\xa2\x6a\x99\xa8" 
	"\x12\xc0\xe0\x34\x91\x20\x6e\xc7" "\x62\x4f\x3d\x84\xee\xa0\xa8\x69" 
	"\x0c\x22\xd0\x24\x7f\x18\x3f\x28" "\xc0\xa9\xcb\x01\xff\xd9\xbd\xe4" 
	"\x64\xb8\x33\x8b\x9a\xd9\xc3\x40" "\x8e\x06\x61\x37\x74\x32\x83\x20" 
	"\x0c\xaf\x83\xfd\x23\xa2\x44\x31" "\x5c\xb3\x18\xda\x30\x09\xe1\x61" 
	"\x34\x75\x77\x50\x9a\xed\x4a\x63" "\xfb\x3d\x49\xe1\x54\xf9\x02\x2c" 
	"\x4e\xb6\x0a\x97\xc2\x79\x9f\x79" "\x7c\x70\x8c\x80\x3f\xe0\x4d\x47" 
	"\x0a\x5f\x74\x2a\x9a\x43\x4b\x59" "\x30\x5a\xbb\x2b\x94\xdc\x6c\xb5" 
	"\x5a\x9d\x2e\x9c\x64\x87\x98\x27" "\xa8\x48\xee\x98\x33\x48\x48\xbd" 
	"\x6e\xde\xf1\xc2\xa1\xc3\x0e\x49" "\xb5\xc7\x80\xbc\x3e\xc2\x0b\xe2" 
, 0x0000600);
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000600, 1092);
usleep(15*1000);

memcpy(buf, "\x00\x00\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);



memcpy(buf, "\x00\x00\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);

usleep(15*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x80\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x03" 
	"\x7e\x00\x79\x40" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x06\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 420 */

usleep(2*1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000600, 1092);

memcpy(buf, 
	"\xa0\x00\xa1\x08\xa2\x80\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x06" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(29*1000);
memcpy(buf, "\x00\x06\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);
memcpy(buf, 
	"\xb9\xce\xb7\xb1\x11\xb3\x76\x64" "\x69\xa3\x08\xcd\x15\x28\x1c\xeb" 
	"\xe9\x5a\xb8\xbf\xb7\x55\xda\x5c" "\x13\xea\x60\x3e\x59\x95\x25\xdc" 
	"\xf2\xaf\x6d\x80\xd2\xe5\x83\x57" "\x45\xe9\xa0\xc4\xec\x67\x0f\xfa" 
	"\x02\x3b\x8f\xca\xe4\xe1\xf9\xb9" "\xd1\x2d\x22\x56\xee\x3c\x03\xcb" 
	"\x8d\xaa\x17\xb1\xae\x05\x05\x29" "\xc6\x82\x7f\x28\xc0\xef\x6a\x12" 
	"\x42\xe9\x3f\x8b\x31\x4f\xb1\x8a" "\x77\xf7\x90\xae\x04\x9f\xed\xd6" 
	"\x12\x26\x7f\xec\xae\xfc\x45\x01" "\x74\xd7\x6d\x9f\x9a\xa7\x75\x5a" 
	"\x30\xcd\x90\xa9\xa5\x87\x4b\xf4" "\x8e\xaf\x70\xee\xa3\xa6\x2a\x25" 
	"\x0a\x8b\x6b\xd8\xd9\xb0\x8b\x08" "\xd6\x4e\x32\xd1\x81\x77\x77\xfb" 
	"\x54\x4d\x49\xcd\x49\x72\x0e\x21" "\x9d\xbf\x8b\xbe\xd3\x39\x04\xe1" 
	"\xfd\x40\xa4\x1d\x37\x0a\x1f\x65" "\x74\x50\x95\x68\x7d\x47\xba\x1d" 
	"\x36\xd2\x34\x9e\x23\xf6\x44\x39" "\x2c\x8e\xa9\xc4\x9d\x40\xc1\x32" 
	"\x71\xaf\xf2\x64\xd0\xf2\x48\x41" "\xd6\x46\x5f\x09\x96\xff\x84\xe6" 
	"\x5f\xc5\x17\xc5\x3e\xfc\x33\x63" "\xc3\x84\x92\xab\x08\xa3\xaa\x3f" 
	"\xf0\x3f\x1c\x55\xad\x51\x4f\xc4" "\x85\x96\x58\x5e\xd5\x88\x1e\x81" 
	"\x56\x8c\xbb\xe9\x9f\x6d\x25\xc8" "\xeb\x09\x0d\x19\x1d\x4a\x07\x31" 
	"\x01\x58\xec\x97\xd5\x0d\x7c\x15" "\x08\xaa\x48\x0f\x41\xc8\xd0\x14" 
	"\xa3\x91\xe8\xb3\x50\x2f\x60\x90" "\x2b\x85\xe3\xb7\xe3\x1d\x20\x2f" 
	"\x2d\x62\x28\xd3\x50\x10\x17\x5d" "\xe7\xe8\xf7\xc4\xe2\xa8\xe1\xc8" 
	"\xcf\x3a\x65\xca\x58\x2c\x2d\xe2" "\x0c\x60\xdc\x2c\x62\x05\x3c\x62" 
	"\xfa\xc5\x99\xb0\x27\x40\x68\xc3" "\xab\xba\x2d\x24\xc1\x10\x9b\xc4" 
	"\x61\xf1\xfc\xd8\xbf\x4a\xd3\xe6" "\x15\x02\xc0\x20\xa2\xe8\xa5\xf2" 
	"\xf2\xea\x07\xd7\x61\x87\xb7\x70" "\xdb\x87\xb1\xd7\xe5\xe9\x44\x31" 
	"\xe1\x1d\x73\x82\x8d\x73\x9c\xc6" "\xce\xd4\x57\x3d\xac\xb0\xa1\x06" 
	"\x9d\x37\x3a\xef\x06\xcc\x4b\x8c" "\xff\xb6\x4c\x86\x57\x19\x25\x36" 
	"\xd7\x25\x93\x72\xcb\x8e\xce\xa7" "\xbf\x3c\x69\x28\x87\x43\x79\xc6" 
	"\x82\x15\xf9\xa1\x1f\xf7\x6d\x3e" "\x9f\xb1\xc6\xd9\x1d\x8a\x86\xfc" 
	"\xcc\x73\x24\x50\x81\x83\xb2\xb4" "\x71\xa3\xbd\x8c\x3b\x8b\x75\x5b" 
	"\x29\xed\x0d\x95\xb2\xef\x65\xae" "\x44\xdf\xe7\x77\x41\x22\xaf\xaa" 
	"\x48\x6e\xee\xc3\xb5\x3a\x90\x12" "\x6b\x72\x1c\x0f\xd1\x6e\xdc\xed" 
	"\x1a\x25\x3f\x72\xca\x9e\x7b\x05" "\x75\xa8\x76\x09\xca\xcb\xe7\x69" 
	"\xd1\x7e\xb8\x74\x71\x9a\xb0\xec" "\x35\x0f\x4e\x59\x50\xd6\xf8\xa3" 
	"\xde\x27\x55\xe0\x6c\xeb\xf7\x6b" "\xbb\x74\x3d\x36\xc1\x6c\x77\x61" 
	"\xf1\x0b\x4c\x0b\xbc\x8d\x59\x68" "\x58\xe4\x1b\x13\xc0\xaa\x0f\xa6" 
	"\xfc\x59\x17\x89\xa2\xbe\x20\x07" "\x9d\xab\x02\xa7\x2d\xed\xa7\xb9" 
	"\x2f\x7d\x70\x2f\x9f\xfb\xd4\xae" "\x5b\x57\x4b\xe5\x29\xd2\x6a\x1e" 
	"\xfc\x25\x4f\x12\x73\xff\x3f\x02" "\xa3\xb5\x8e\x03\x16\x35\xbf\x9a" 
	"\x13\x3d\xed\x88\x20\xca\x6a\xe7" "\xc6\xd2\xa5\x76\x94\x35\x51\x32" 
	"\x67\xf2\xc3\x26\xe8\x96\x9c\x83" "\x55\xfb\xa9\xf3\x85\x2e\x07\x2b" 
	"\x26\xb1\x8b\xbf\x4a\xe3\x60\x3b" "\x22\xbc\xf2\x6f\x08\xbd\x0b\x0a" 
	"\xc3\x27\x3c\x6b\x07\x6c\x7f\xb3" "\x3c\xe3\x1a\x1f\x80\xbf\xc7\x95" 
	"\xef\x42\x11\x7c\x22\x2e\x01\xd1" "\xf5\x7d\xfa\x77\x8e\x51\xe2\xcf" 
	"\x9b\x2e\x82\x89\xda\x67\x30\xba" "\xdf\xd6\xab\x2e\x12\xd0\x46\xff" 
	"\xf7\x58\x49\x66\xb2\x93\x94\xd2" "\xca\x7d\x85\x37\x2d\xd9\x1c\xa9" 
	"\x74\x6e\x5d\x29\x69\x70\xf6\xbf" "\xc6\x3d\x22\xc9\x40\x4a\xcd\x92" 
	"\xc4\x5c\xf9\x26\x01\xfb\x60\x65" "\x26\x23\x5b\x57\xed\x3e\x02\xbf" 
	"\xd8\x4f\x95\xf3\xba\x70\x1b\xea" "\x7a\x7e\x48\x97\x14\x13\xa4\x75" 
	"\xe0\xb4\xea\x64\x17\x4c\xae\xb3" "\x93\xd9\x43\x7e\xd6\x66\xdc\x3a" 
	"\x4e\x39\xf1\x8e\xd8\x4d\xe5\x64" "\x82\x03\xe5\x41\x95\x14\x13\xd1" 
	"\xd3\xca\xe4\xc7\xfd\x70\xc6\xe4" "\x98\x07\x07\x54\xf1\x3a\xf2\x41" 
	"\x5f\x94\x3b\xa3\xc8\xf1\x9d\x55" "\x66\x32\xc1\x6e\xcb\x35\x62\xce" 
	"\x23\x05\xaf\xf7\xba\x4d\xf0\x1f" "\xbe\x13\x6d\x83\x45\xa2\x8b\xfd" 
	"\x91\xc8\x39\xd9\x93\x42\x8a\xe5" "\xaf\x75\xa3\xc7\xbf\x5f\xd8\x93" 
	"\x5a\xcc\x12\x9d\x56\xcd\x74\x8c" "\x8b\x66\x3e\xb0\xda\x87\xf1\x96" 
	"\x6f\x3d\xb4\xd9\x42\x2a\xf6\x3a" "\xe4\x33\x55\xf3\x78\x78\xbe\x49" 
	"\xff\x89\xd6\x61\xda\xd7\x99\x54" "\x89\x68\x41\x85\xb9\xcf\x6a\x33" 
	"\x7e\x5c\x73\x4a\xdd\x90\x27\x7f" "\x8d\xd3\x9d\x9b\xfe\x69\x5c\x17" 
	"\x9b\xa3\xc3\xea\x4d\x52\xa9\x9f" "\x40\x81\x40\xaa\xe9\x64\x3f\xfc" 
	"\x48\x8b\x40\xd5\x6a\x5b\x66\xda" "\x33\xbf\x44\x67\x5a\x1b\xfa\x26" 
	"\xb5\x82\xa1\xe1\xb7\x28\xea\x94" "\x37\x1a\x01\xc7\x72\x2c\xb8\x1a" 
	"\x54\x33\xe1\x22\xf3\x75\xfb\x73" "\x5d\x5e\x12\xfe\x93\x75\xe0\x9e" 
	"\xd5\x8e\x38\xed\x20\x40\xa5\x5c" "\xf6\x99\x4e\x83\x5d\x11\x1c\xb5" 
	"\x2a\xbd\x1f\xd8\x7f\xc5\x2e\x73" "\x93\x18\xce\x09\xb1\x5e\x56\xa6" 
	"\x84\x2f\x50\xb7\x91\x82\x21\x1e" "\x05\x68\xed\x86\xb1\xfa\xb5\xf4" 
	"\x53\x8f\xc2\x9f\x17\x33\x47\x02" "\x5d\x55\x42\x2f\xbd\xc0\xa3\x66" 
	"\x48\xcd\xb0\xe6\x11\xd6\xa8\x03" "\xed\xed\xa6\x79\x76\xce\xc9\x00" 
	"\x56\x13\x92\x21\xc2\xa7\x8d\x47" "\x44\x7d\x34\x19\xbe\x82\x10\x07" 
	"\xac\xd0\x21\x23\xa9\x24\x80\x33" "\x35\x92\x43\x04\xb5\x77\xa1\x01" 
	"\xbb\xb0\x57\x03\x88\x09\x49\x6b" "\xcf\xf8\x6d\x6f\xbc\x8c\xe5\xb1" 
	"\x35\xa0\x6b\x16\x60\x54\xf2\xd5" "\x65\xbe\x8a\xce\x75\xdc\x85\x1e" 
	"\x0b\xcd\xd8\xf0\x71\x41\xc4\x95" "\x87\x2f\xb5\xd8\xc0\xc6\x6a\x8b" 
	"\x6d\xa5\x56\x66\x3e\x4e\x46\x12" "\x05\xd8\x45\x80\xbe\xe5\xbc\x7f" 
	"\xcd\xd4\xde\x8e\x86\x38\x43\xee" "\xf2\x88\xd3\xfc\xd0\x18\xe6\xbe" 
	"\xdb\x47\xaa\xbc\x4b\xfa\xc4\x11" "\x9e\x4a\x3a\xc1\x98\x7a\x90\x4d" 
	"\x89\x2c\x31\x85\xce\xd4\x11\x9e" "\x9a\x6c\x91\x84\xf7\x6a\xa3\x71" 
	"\x07\xef\x2e\xbf\x90\x41\xb4\xfb" "\xb7\x7b\x32\x3a\x0c\x83\x47\xb0" 
	"\xc7\x3d\x99\x7e\x51\xfe\x75\xcc" "\x07\x44\xb5\x18\x3a\xa4\xe7\xcd" 
	"\x7a\x03\xab\x18\x14\x09\x5d\xf7" "\xd9\xd3\xf4\x93\x21\xe8\x2a\xcf" 
	"\x10\x6f\xde\x21\x18\x9f\xb6\xa1" "\xbf\x76\x08\x5f\xa3\xae\xfb\xfa" 
	"\xbb\xed\xe9\x6e\xdf\x3c\x08\x2e" "\x8b\xba\x4a\x73\xe0\x91\x81\xd3" 
	"\xeb\x2a\xc7\x15\x2a\x9d\x1d\x44" "\x4c\x6c\x52\x02\x39\x70\x27\x1f" 
	"\x52\x13\xb0\x6a\xfa\xc0\xfd\xc7" "\x55\x98\xfa\x82\x4f\x67\x94\xe3" 
	"\xe1\xd6\x1d\x03\x90\xe2\xf2\xdd" "\x36\x8c\x5b\xa8\x04\xd2\xb2\x65" 
	"\xc8\xdf\xc8\xb4\x6c\x7f\x84\xeb" "\xbf\xd5\xcd\x69\x79\x50\xaa\x28" 
	"\x79\xdb\xa8\x92\x50\x54\x7d\x96" "\x03\x40\xea\xfa\x0d\xbd\xe6\xf3" 
	"\xa4\xb7\xf8\xf3\x3d\x5f\xe5\xc2" "\x52\xd9\x8b\xd0\x63\x35\x0d\xca" 
	"\x3b\xa1\x30\x6b\x74\xdd\x05\x95" "\x3d\xef\xc9\xa0\x5b\x17\x09\xf2" 
	"\x6e\x05\x09\xcf\x76\x4a\x67\x73" "\x95\x0d\xfc\x5e\x17\xff\x03\xf0" 
	"\xaf\x91\x7d\x35\x03\x64\xd4\x02" "\x6b\x00\xbe\x41\xf6\xca\x64\x89" 
	"\xaf\x30\xc4\xf2\x1e\x27\x53\x27" "\x11\xd7\xe7\xbc\x9c\x94\xd5\xc2" 
	"\x5e\x11\x56\x99\x06\xd0\x30\x06" "\x16\xdd\x92\x85\xe7\xbc\x3f\xe1" 
	"\xed\xa0\xee\x01\x3d\xde\xf1\x05" "\x4c\xa0\x16\x92\xfa\xde\xcb\x69" 
	"\xcf\x8a\x85\x3f\x84\x0b\x62\xc9" "\xc5\xed\x0d\x16\x35\xd7\xe2\x21" 
	"\xb3\xbd\x52\xa7\xdc\x56\x89\x36" "\xd0\xd1\x4f\x87\x39\xc4\x2c\x0d" 
	"\x8a\x65\xd0\xce\x85\xfc\xb1\x72" "\x00\x98\xf6\x99\xe8\x01\x94\x72" 
	"\x86\xef\xb7\x8a\x01\x79\x63\xe1" "\x25\xd0\x5b\x43\x62\x2d\x42\xd5" 
, 0x0000600);
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000600, 1092);

usleep(16*1000);

ret = clearFIFO(buf);

usleep(15*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x08\xa2\x80\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x03" 
	"\x7e\x00\x79\x40" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(32*1000);

memcpy(buf, "\x00\x06\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000600, 1092);

usleep(15*1000);

memcpy(buf, "\x9a\x00\x9a\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 430 */

memcpy(buf, "\x00\x00\x02\x0f", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);

ret = read_register(buf, 0x00);
ret = do_command_eight(buf);

/*
\xf3 ES01_F3_ActionOption UNIFORM_MOTOR_AND_SCAN_SPEED_ENABLE INVERT_MOTOR_DIRECTION_ENABLE MOTOR_BACK_HOME_AFTER_SCAN_ENABLE

*/
memcpy(buf, 
	"\xf3\x32\xfd\x28\xfe\x23\xa6\x4d" "\xf6\x00\x96\x21\xe4\x01\xe2\x32" 
	"\xe3\x00\xe4\x00\x95\x27\xf4\x01" 
, 0x0000018);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000018, 1000);

ret = read_register(buf, 0x01);

ret = read_register(buf, 0x01);

ret = read_register(buf, 0x0b);
/*That was URB 440 */
ret = read_register(buf, 0x0a);

ret = read_register(buf, 0x09);

ret = do_command_eight(buf);

usleep(14*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(49*1000);

ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 450 */

memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(27*1000);

memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);

memcpy(buf, 
	"\x10\x0e\x10\x0e\x10\x0e\x10\x0e" "\x10\x0e\x7f\x0d\x44\x0d\x16\x0d" 
	"\xef\x0c\xcd\x0c\xae\x0c\x92\x0c" "\x78\x0c\x5f\x0c\x48\x0c\x31\x0c" 
	"\x1c\x0c\x08\x0c\xf4\x0b\xe1\x0b" "\xcf\x0b\xbd\x0b\xac\x0b\x9b\x0b" 
	"\x8b\x0b\x7b\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x8a\x0b\xa9\x0b\xc8\x0b" 
	"\xe6\x0b\x05\x0c\x24\x0c\x43\x0c" "\x61\x0c\x80\x0c\x9f\x0c\xbe\x0c" 
	"\xdc\x0c\xfb\x0c\x1a\x0d\x38\x0d" "\x57\x0d\x76\x0d\x95\x0d\xb3\x0d" 
	"\xd2\x0d\xf1\x0d\x10\x0e\x10\x0e" "\x10\x0e\x10\x0e\x10\x0e\x10\x0e" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x10\x0e\x10\x0e\x10\x0e\x10\x0e" "\x10\x0e\x7f\x0d\x44\x0d\x16\x0d" 
	"\xef\x0c\xcd\x0c\xae\x0c\x92\x0c" "\x78\x0c\x5f\x0c\x48\x0c\x31\x0c" 
	"\x1c\x0c\x08\x0c\xf4\x0b\xe1\x0b" "\xcf\x0b\xbd\x0b\xac\x0b\x9b\x0b" 
	"\x8b\x0b\x7b\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x8a\x0b\xa9\x0b\xc8\x0b" 
	"\xe6\x0b\x05\x0c\x24\x0c\x43\x0c" "\x61\x0c\x80\x0c\x9f\x0c\xbe\x0c" 
	"\xdc\x0c\xfb\x0c\x1a\x0d\x38\x0d" "\x57\x0d\x76\x0d\x95\x0d\xb3\x0d" 
	"\xd2\x0d\xf1\x0d\x10\x0e\x10\x0e" "\x10\x0e\x10\x0e\x10\x0e\x10\x0e" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);
ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(16*1000);

ret = clearFIFO(buf);

usleep(31*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, "\x9a\x00\x9a\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


memcpy(buf, 
	"\x00\x01\x02\x0f\x04\x00\x06\x00" "\x08\x00\x0a\x00\x0c\x64\x0e\x64" 
	"\x10\x64\x12\x64" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
/*That was URB 460 */

/*register bank select command?*/

ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\x7f" 
	"\xba\x0a\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x05\xf6\x35\xf7\x01\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);

memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);
/*That was URB 470 */

ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x00\x5e\xff\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\x64\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x40\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x41" 
	"\xab\x00\xae\x85\xaf\x0e\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x00\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x2c\xe1\x01" "\xe2\x00\xe3\x00\xe4\x00\xe5\xc8" 
	"\xe6\x00\xe7\x01\xe8\x00\xe9\x01" "\xea\x2c\xeb\x01\xec\x20\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xee\x30\xef\x20\xf0\xee\xf1\x01" "\xf2\x00\xf3\x0c\xf5\x11\xf6\x00" 
	"\xf7\x03\xf8\x02\xf9\xdd\xfa\x37" "\xfb\x0e\xfc\x00\xfd\x6c\xfe\x0b" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(135*1000);
/*
ES01_F8_WHITE_SHADING_DATA_FORMAT ES01_SHADING_4_INT_12_DEC
ES01_F4_ActiveTriger ACTION_TRIGER_ENABLE
*/
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(16*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(30*1000);

/*Set RW size?*/
memcpy(buf, "\x7c\x96\x7d\x00\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x2c\x01\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, "\x7c\x00\x7d\x40\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x00\x80\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(3*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0008000, 2966);

usleep(186*1000);
memcpy(buf, "\x7c\x30\x7d\x35\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
/*That was URB 510 */
usleep(14*1000);
/*DMA reads*/
memcpy(buf, "\x60\x6a\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(2*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0006a00, 2628);

usleep(197*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(4*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
usleep(63*1000);
ret = read_register(buf, 0x01);
memcpy(buf, 
	"\x01\xa0\x56\x02\x00\xe5\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(20*1000);
memcpy(buf, 
	"\x01\xa0\x3e\x01\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
/*That was URB 520 */
usleep(17*1000);
memcpy(buf, 
	"\x01\xa0\x18\x01\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(41*1000);

ret = read_register(buf, 0x00);
/*
ES01_9D_MotorTableAddrA14_A21
ES01_79_AFEMCLK_SDRAMCLK_DELAY_CONTROL SDRAMCLK_DELAY_8_ns
*/
memcpy(buf, "\x9d\x3f\x79\x40", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*Could be end of a LLFSetMotorTable call*/
memcpy(buf, 
	"\xa0\x00\xa1\xfc\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x04" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(29*1000);
memcpy(buf, "\x00\x04\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
memcpy(buf, 
	"\x28\x23\x28\x23\x28\x23\x28\x23" "\x28\x23\x69\x21\xb0\x20\x22\x20" 
	"\xab\x1f\x42\x1f\xe2\x1e\x8b\x1e" "\x39\x1e\xed\x1d\xa4\x1d\x5f\x1d" 
	"\x1d\x1d\xde\x1c\xa2\x1c\x67\x1c" "\x2e\x1c\xf7\x1b\xc2\x1b\x8e\x1b" 
	"\x5c\x1b\x2a\x1b\xfa\x1a\xcb\x1a" "\x9d\x1a\x70\x1a\x44\x1a\x18\x1a" 
	"\xee\x19\xc4\x19\x9b\x19\x73\x19" "\x4b\x19\x24\x19\xfd\x18\xd7\x18" 
	"\xb2\x18\x8d\x18\x68\x18\x44\x18" "\x21\x18\xfe\x17\xdb\x17\xb9\x17" 
	"\x97\x17\x76\x17\x55\x17\x34\x17" "\x13\x17\xf3\x16\xd4\x16\xb4\x16" 
	"\x95\x16\x76\x16\x58\x16\x3a\x16" "\x1c\x16\xfe\x15\xe1\x15\xc3\x15" 
	"\xa6\x15\x8a\x15\x6d\x15\x51\x15" "\x35\x15\x19\x15\xfe\x14\xe2\x14" 
	"\xc7\x14\xac\x14\x91\x14\x77\x14" "\x5c\x14\x42\x14\x28\x14\x0e\x14" 
	"\xf5\x13\xdb\x13\xc2\x13\xa9\x13" "\x90\x13\x77\x13\x5e\x13\x45\x13" 
	"\x2d\x13\x15\x13\xfd\x12\xe5\x12" "\xcd\x12\xb5\x12\x9d\x12\x86\x12" 
	"\x6f\x12\x58\x12\x40\x12\x29\x12" "\x13\x12\xfc\x11\xe5\x11\xcf\x11" 
	"\xb8\x11\xa2\x11\x8c\x11\x76\x11" "\x60\x11\x4a\x11\x35\x11\x1f\x11" 
	"\x09\x11\xf4\x10\xdf\x10\xc9\x10" "\xb4\x10\x9f\x10\x8a\x10\x75\x10" 
	"\x61\x10\x4c\x10\x37\x10\x23\x10" "\x0e\x10\xfa\x0f\xe6\x0f\xd2\x0f" 
	"\xbe\x0f\xaa\x0f\x96\x0f\x82\x0f" "\x6e\x0f\x5a\x0f\x47\x0f\x33\x0f" 
	"\x20\x0f\x0c\x0f\xf9\x0e\xe6\x0e" "\xd3\x0e\xc0\x0e\xad\x0e\x9a\x0e" 
	"\x87\x0e\x74\x0e\x61\x0e\x4e\x0e" "\x3c\x0e\x29\x0e\x17\x0e\x04\x0e" 
	"\xf2\x0d\xe0\x0d\xcd\x0d\xbb\x0d" "\xa9\x0d\x97\x0d\x85\x0d\x73\x0d" 
	"\x61\x0d\x4f\x0d\x3e\x0d\x2c\x0d" "\x1a\x0d\x09\x0d\xf7\x0c\xe5\x0c" 
	"\xd4\x0c\xc3\x0c\xb1\x0c\xa0\x0c" "\x8f\x0c\x7e\x0c\x6c\x0c\x5b\x0c" 
	"\x4a\x0c\x39\x0c\x28\x0c\x17\x0c" "\x07\x0c\xf6\x0b\xe5\x0b\xd4\x0b" 
	"\xc4\x0b\xb3\x0b\xa3\x0b\x92\x0b" "\x82\x0b\x71\x0b\x61\x0b\x50\x0b" 
	"\x40\x0b\x30\x0b\x20\x0b\x0f\x0b" "\xff\x0a\xef\x0a\xdf\x0a\xcf\x0a" 
	"\xbf\x0a\xaf\x0a\x9f\x0a\x90\x0a" "\x80\x0a\x70\x0a\x60\x0a\x51\x0a" 
	"\x41\x0a\x31\x0a\x22\x0a\x12\x0a" "\x03\x0a\xf3\x09\xe4\x09\xd5\x09" 
	"\xc5\x09\xb6\x09\xa7\x09\x97\x09" "\x88\x09\x79\x09\x6a\x09\x5b\x09" 
	"\x4c\x09\x3d\x09\x2e\x09\x1f\x09" "\x10\x09\x01\x09\xf2\x08\xe3\x08" 
	"\xd4\x08\xc6\x08\xb7\x08\xa8\x08" "\x9a\x08\x8b\x08\x7c\x08\x6e\x08" 
	"\x5f\x08\x51\x08\x42\x08\x34\x08" "\x25\x08\x17\x08\x09\x08\xfa\x07" 
	"\xec\x07\xde\x07\xd0\x07\xd0\x07" "\xd0\x07\xd0\x07\xd0\x07\xd0\x07" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000400);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000400, 1061);
usleep(15*1000);
ret = clearFIFO(buf);
/*That was URB 530 */
usleep(15*1000);
memcpy(buf, 
	"\xa0\x00\xa1\xfc\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x02" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x04\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000400, 1061);

memcpy(buf, 
	"\xa0\x00\xa1\xfe\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x02" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
memcpy(buf, 
	"\xd0\x07\xd0\x07\xd0\x07\xd0\x07" "\xd0\x07\x0e\x09\x4c\x0a\x8a\x0b" 
	"\xc8\x0c\x06\x0e\x45\x0f\x83\x10" "\xc1\x11\xff\x12\x3d\x14\x7c\x15" 
	"\xba\x16\xf8\x17\x36\x19\x74\x1a" "\xb2\x1b\xf1\x1c\x2f\x1e\x6d\x1f" 
	"\xab\x20\xe9\x21\x28\x23\x28\x23" "\x28\x23\x28\x23\x28\x23\x28\x23" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x54\xda\x90\x7c" "\x31\x83\x91\x7c\xff\xff\xff\xff" 
	"\xa0\xe2\xd3\x00\xa4\xe2\xd3\x00" "\x00\x40\x00\x00\xf0\xdf\x0e\x00" 
	"\x00\x00\x09\x00\x40\x06\x09\x00" "\x98\xe2\xd3\x00\x40\x06\x09\x00" 
	"\x98\xe2\xd3\x00\x9f\x84\x91\x7c" "\x00\x00\x09\x00\xf0\xdf\x0e\x00" 
	"\x00\x00\x09\x00\xf0\xdf\x0e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\xd0\x0f\x00\x00\x00\x00\x00" "\xa8\x05\x09\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x68\xe3\xd3\x00" "\xca\x0e\x91\x7c\x91\x0e\x91\x7c" 
	"\x08\x06\x09\x00\x6d\x05\x91\x7c" "\x00\x00\x00\x00\x08\x00\x00\x00" 
	"\xf8\xdf\x0e\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\xdf\x0e\x00" 
	"\x01\x00\x00\x00\xb0\xe2\xd3\x00" "\xb4\xe2\xd3\x00\xa8\xeb\xd3\x00" 
	"\xa8\xeb\xd3\x00\xf3\x99\x83\x7c" "\xc8\x0c\x81\x7c\xff\xff\xff\xff" 
	"\x94\x16\x80\x7c\x78\xbd\xae\x00" "\x10\x02\x00\x00\x0c\x20\x00\x80" 
	"\x14\xe3\xd3\x00\x10\x00\x00\x00" "\x77\xe3\xd3\x00\x01\x00\x00\x00" 
	"\x24\xe3\xd3\x00\x78\xea\x00\x00" "\x84\xe3\xd3\x00\x54\x00\x60\x02" 
	"\x07\x00\x00\x00\x51\x95\x91\x7c" "\x00\x00\x00\x00\xf8\xdf\x0e\x00" 
	"\x42\x24\x80\x7c\x44\xe3\xd3\x00" "\xa0\xba\xae\x00\x00\x00\x09\x00" 
	"\x07\x00\x00\x00\x00\x00\x00\x00" "\xf0\xdf\x0e\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x4f\x1a\x01\x01" "\x02\x1e\x00\x00\xac\xe2\xd3\x00" 
	"\x00\x00\x09\x00\xa0\xe3\xd3\x00" "\x18\xee\x90\x7c\x70\x05\x91\x7c" 
	"\xff\xff\xff\xff\x6d\x05\x91\x7c" "\xff\xfe\x80\x7c\x00\x00\x09\x00" 
	"\x00\x00\x00\x00\xcf\xfe\x80\x7c" "\x00\x00\x00\x00\x08\x00\x00\x00" 
	"\x42\x24\x80\x7c\x42\x24\x80\x7c" "\x39\x65\xae\x00\x00\x00\x00\x00" 
, 0x0000200);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000200, 1030);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(15*1000);
memcpy(buf, 
	"\xa0\x00\xa1\xfe\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 540 */
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

memcpy(buf, 
	"\xa6\x41\xf6\x00\xe0\x00\xe1\x01" "\xe2\x58\xe3\x02\xe4\x00\xe5\x20" 
	"\xf3\x02\xea\x00\xeb\x00\x95\x87" "\xfd\xd0\xfe\x07\x96\x21\xf4\x01" 
, 0x0000020);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000020, 1000);

ret = read_register(buf, 0x01);
usleep(61*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
/*That was URB 550 */
usleep(62*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
usleep(62*1000);
ret = read_register(buf, 0x01);
/*That was URB 560 */
memcpy(buf, "\x96\x21\x95\xa7", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = read_register(buf, 0x0b);

ret = read_register(buf, 0x0a);

ret = read_register(buf, 0x09);

memcpy(buf, "\x00\x00\x86\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\x01\xa0\x05\x01\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);


ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);usleep(7*1000);
ret = do_command_five(buf);

ret = do_command_one(buf);
/*That was URB 580 */

memcpy(buf, "\x82\x00\x83\x38\x84\x8e\x85\xe3", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\xd4\x00\xd5\x8e\xd6\xe3" "\xd7\x38\xec\x00\xed\x00\xee\xc0" 
	"\xef\x00\xf0\x00\xf1\x00\xf2\x00" "\xf3\x30" 
, 0x000002a);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000002a, 1000);


ret = select_register_bank(buf, 0);
ret = read_register(buf, 0x01);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xf3\x21\xf4\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 590 */
memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\xf3\xf3\xf3\xf3", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
memcpy(buf, command_four, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(2*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(14*1000);
ret = read_register(buf, 0x00);
ret = read_register(buf, 0x00);

ret = do_command_eight(buf);
memcpy(buf, 
	"\xf3\x32\xfd\x94\xfe\x11\xa6\x4d" "\xf6\x00\x96\x21\xe4\x01\xe2\x32" 
	"\xe3\x00\xe4\x00\x95\xa7\xf4\x01" 
, 0x0000018);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000018, 1000);
/*That was URB 600 */
ret = read_register(buf, 0x01);
usleep(60*1000);
ret = read_register(buf, 0x01);

ret = read_register(buf, 0x0b);

ret = read_register(buf, 0x0a);

ret = read_register(buf, 0x09);

/*That was URB 610 */
ret = do_command_eight(buf);

memcpy(buf, "\x96\x01\x96\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\x9a\x00\x9a\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, 
	"\x00\x01\x02\x0f\x04\x00\x06\x00" "\x08\x00\x0a\x00\x0c\x64\x0e\x64" 
	"\x10\x64\x12\x64" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(27*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x03\x96\x03", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 620 */
usleep(15*1000);
/*TODO: replace this with two assignments and a loop*/
memcpy(buf, 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(47*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, "\x9a\x00\x9a\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, 
	"\x00\x01\x02\x0f\x04\x00\x06\x00" "\x08\x00\x0a\x00\x0c\x64\x0e\x64" 
	"\x10\x64\x12\x64" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
ret = select_register_bank(buf, 1);

memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 630 */
memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\xff" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x00\xf6\xfe\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);

ret = select_register_bank(buf, 0);

memcpy(buf, 
	"\x58\x01\x5e\x01\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\xa0\x91\x00\x94\x30\x95\xa7" "\x96\x03\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x40" 
	"\xab\x00\xae\xdb\xaf\x16\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 640 */
memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x01\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x01\xe1\x00" "\xe2\x00\xe3\x00\xe4\x00\xe5\x01" 
	"\xe6\x00\xe7\x00\xe8\x00\xe9\x00" "\xea\x2c\xeb\x01\xec\x01\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xee\x01\xef\x01\xf0\x14\xf1\x00" "\xf2\x00\xf3\x0c\xf5\x12\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x03\xfa\x36" "\xfb\xfb\xfc\x00\xfd\xd9\xfe\x16" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(149*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

/*That was URB 650 */
usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x03\x96\x03", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\x9a\x00\x9a\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\x00\x01\x02\x0f\x04\x00\x06\x00" "\x08\x00\x0a\x00\x0c\xfa\x0e\xfa" 
	"\x10\xfa\x12\xfa" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);
ret = read_register(buf, 0x01);
/*That was URB 660 */
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(33*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(13*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

/*That was URB 670 */
usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
usleep(2*1000);
memcpy(buf, "\x9a\x02\x9a\x02", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\x00\x01\x02\x0f", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, "\x90\xa0\x91\xa0", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1982*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 680 */
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
memcpy(buf, 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(16*1000);
ret = clearFIFO(buf);
usleep(32*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = select_register_bank(buf, 2);
/*That was URB 690 */
memcpy(buf, "\xa0\x01\xa0\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);

memcpy(buf, "\xa0\x00\xa0\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);
/*That was URB 700 */


ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\xff" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x00\xf6\xfe\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);


memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);
/*That was URB 710 */


ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x01\x5e\x01\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\xa0\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x40" 
	"\xab\x00\xae\xdb\xaf\x16\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x01\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x01\xe1\x00" "\xe2\x00\xe3\x00\xe4\x00\xe5\x01" 
	"\xe6\x00\xe7\x00\xe8\x00\xe9\x00" "\xea\x2c\xeb\x01\xec\x01\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xee\x01\xef\x01\xf0\x14\xf1\x00" "\xf2\x00\xf3\x0c\xf5\x12\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x03\xfa\x36" "\xfb\xfb\xfc\x00\xfd\xd9\xfe\x16" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(147*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
/*That was URB 720 */
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(32*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2001*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 730 */
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(33*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

/*That was URB 740 */
usleep(10*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2001*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 750 */
ret = read_register(buf, 0x04);

usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 760 */
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2001*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 770 */
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1984*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 780 */

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

/*That was URB 790 */
usleep(11*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(32*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1969*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 800 */
usleep(15*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);

ret = read_register(buf, 0x01);
/*That was URB 810 */

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1985*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
/*That was URB 820 */

usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2000*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 830 */
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(30*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 840 */
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(49*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1998*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(46*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
/*That was URB 850 */
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(17*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(11*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(11*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 860 */
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2000*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
/*That was URB 870 */
ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 880 */
usleep(1969*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
/*That was URB 890 */
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(2001*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);
ret = read_register(buf, 0x01);
/*That was URB 900 */

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(30*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

/*That was URB 910 */
usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1984*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 920 */
ret = read_register(buf, 0x04);

usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 930 */
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1969*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 940 */
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(11*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(33*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1999*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);

ret = read_register(buf, 0x01);
/*That was URB 950 */

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);

usleep(28*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

/*That was URB 960 */
usleep(11*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(32*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1985*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(30*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 970 */
usleep(16*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x90\x64\x91\x64", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1000*1000);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1985*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
memcpy(buf, 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
/*That was URB 990 */
usleep(15*1000);
ret = clearFIFO(buf);
usleep(31*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = select_register_bank(buf, 2);

memcpy(buf, "\xa0\x01\xa0\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);

ret = select_register_bank(buf, 2);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 1000 */
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);

memcpy(buf, "\xa0\x00\xa0\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\xff" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x00\xf6\xfe\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 1010 */
memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);


ret = select_register_bank(buf, 0);


ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);


ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x01\x5e\x01\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\xa0\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x40" 
	"\xab\x00\xae\xdb\xaf\x16\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x01\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x01\xe1\x00" "\xe2\x00\xe3\x00\xe4\x00\xe5\x01" 
	"\xe6\x00\xe7\x00\xe8\x00\xe9\x00" "\xea\x2c\xeb\x01\xec\x01\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xee\x01\xef\x01\xf0\x14\xf1\x00" "\xf2\x00\xf3\x0c\xf5\x12\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x03\xfa\x36" "\xfb\xfb\xfc\x00\xfd\xd9\xfe\x16" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
/*That was URB 1020 */
usleep(147*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);

ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);

usleep(30*1000);

memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(16*1000);

memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 1030 */

usleep(31*1000);
ret = read_register(buf, 0x01);

printf("GPIO again\n");
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(1985*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);

usleep(31*1000);

memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(15*1000);

ret = read_register(buf, 0x05);
/*That was URB 1040 */

ret = read_register(buf, 0x04);

usleep(31*1000);

memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(11*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(32*1000);
ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 1050 */
usleep(1969*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);

ret = read_register(buf, 0x01);

memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(31*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);
//ret = read_register(buf, 0x05);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
/*That was URB 1060 */
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(12*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(11*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(32*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(1969*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 1070 */
memcpy(buf, "\xa0\x00\xa1\x00\xa2\x00", 0x0000006);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000006, 1000);
usleep(48*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1080 */
usleep(30*1000);
memcpy(buf, "\x7c\xbe\x7d\x7d\x7e\x00\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);
memcpy(buf, "\x7c\xfb\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fa00, 4840);

usleep(13*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(11*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
usleep(610*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(31*1000);
ret = read_register(buf, 0x01);
/*That was URB 1090 */
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
memcpy(buf, 
	"\xd9\x16\xd9\x16\xd9\x16\xd9\x16" "\xd9\x16\xd9\x16\xd9\x16\xd9\x16" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\xd9\x16\xd9\x16\xd9\x16" "\xd9\x16\xd9\x16\xd9\x16\xd9\x16" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\xd9\x16\xd9\x16\xd9\x16" "\xd9\x16\xd9\x16\xd9\x16\xd9\x16" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xd9\x16\xd9\x16\xd9\x16\xd9\x16" "\xd9\x16\xd9\x16\xd9\x16\xd9\x16" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(15*1000);
ret = clearFIFO(buf);
usleep(31*1000);
memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(32*1000);
memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

ret = select_register_bank(buf, 2);
/*That was URB 1100 */

memcpy(buf, "\xa0\x01\xa0\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, "\xa0\x00\xa0\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);
/*That was URB 1110 */
ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\xff" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x00\xf6\xfe\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);
/*That was URB 1120 */

ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x01\x5e\x01\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\x64\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x41" 
	"\xab\x00\xae\x08\xaf\x00\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x01\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x2c\xe1\x01" "\xe2\x00\xe3\x00\xe4\x00\xe5\xc8" 
	"\xe6\x00\xe7\x00\xe8\x00\xe9\x00" "\xea\x2c\xeb\x01\xec\x08\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xee\x18\xef\x08\xf0\x6a\xf1\x00" "\xf2\x00\xf3\x0c\xf5\x12\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x03\xfa\x36" "\xfb\xfb\xfc\x00\xfd\xd9\xfe\x16" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(147*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);

usleep(15*1000);

ret = read_register(buf, 0x05);
/*That was URB 1130 */
ret = read_register(buf, 0x04);

usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);

usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1140 */

usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);

usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);

usleep(30*1000);

memcpy(buf, "\x7c\x00\x7d\x00\x7e\x04\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
/*That was URB 1150 */

usleep(16*1000);
/*calibration scanning?*/
memcpy(buf, "\x00\x00\x08\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(22*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(13*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0002000, 1491);

/*That was URB 1160 */
usleep(2*1000);

memcpy(buf, "\x7c\x01\x7d\x9d\x7e\x03\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);

usleep(6*1000);

memcpy(buf, "\x02\x3a\x07\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(7*1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(31*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(26*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(31*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(17*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0005600, 2320);
/*That was URB 1170 */

usleep(3*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(12*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(30*1000);

ret = read_register(buf, 0x01);

usleep(29*1000);

ret = read_register(buf, 0x0b);
ret = read_register(buf, 0x0a);
ret = read_register(buf, 0x09);
/*That was URB 1180 */
ret = read_register(buf, 0x00);

ret = do_command_eight(buf);

memcpy(buf, 
	"\xf3\x21\xfd\xb8\xfe\x0b\xa6\x41" "\xf6\x00\xea\x00\xeb\xf0\xe2\x3d" 
	"\xe3\x00\xe4\x00\xe0\x00\xe1\x00" "\xe5\x00\x96\x21\xf4\x01" 
, 0x000001e);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000001e, 1000);

ret = read_register(buf, 0x01);
usleep(61*1000);

ret = read_register(buf, 0x01);
usleep(62*1000);

ret = read_register(buf, 0x01);
/*That was URB 1190 */

ret = read_register(buf, 0x0b);
ret = read_register(buf, 0x0a);
ret = read_register(buf, 0x09);

ret = do_command_eight(buf);

ret = do_command_eight(buf);
usleep(28*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(31*1000);

ret = read_register(buf, 0x01);
/*That was URB 1200 */

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);

memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);

memcpy(buf, 
	"\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" "\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" "\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" "\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" "\xf1\x2b\xf1\x2b\xf1\x2b\xf1\x2b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(16*1000);

ret = clearFIFO(buf);

usleep(31*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


/*That was URB 1210 */

ret = select_register_bank(buf, 2);
memcpy(buf, "\xa0\x01\xa0\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);

ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, "\xa0\x00\xa0\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 1220 */

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 1);

memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x55\x6f\x0e\x70\x50" 
	"\x71\x55\x72\x0e\x73\xe8\x74\x57" "\x75\x0e\x76\xf0\x77\x57\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x2b\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x2d\x84\x0e" "\x85\x48\x86\x7f\x87\x0e\x88\x50" 
	"\x89\x7f\x8a\x0e\x8b\xe8\x8c\x81" "\x8d\x0e\x8e\xf0\x8f\x81\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x01\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x2a" 
	"\xa3\x0e\xa4\x00\xa5\x54\xa6\x0e" "\xa7\xff\xa8\x29\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xab\x53\xac\x0e\xad\xff\xae\x7d" "\xaf\x0e\xb0\x50\xb1\x01\xb9\xff" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x00" 
	"\xf5\x00\xf6\xfe\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x2a" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x00\x61\x00\x62\x00\x63\x00" "\x64\x00\x65\x00\x66\x00\x67\x00" 
	"\x68\x00\x69\x00\x6a\x00\x6b\x00" "\x6c\x00\x6d\x00\x6e\x00\x6f\x00" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 1230 */
memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);

ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x01\x5e\x01\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x00\x8e\x00" 
	"\x90\x64\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x41" 
	"\xab\x00\xae\x08\xaf\x00\xb0\x10" "\xb1\x0e\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x01\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x2c\xe1\x01" "\xe2\x00\xe3\x00\xe4\x00\xe5\xc8" 
	"\xe6\x00\xe7\x00\xe8\x00\xe9\x00" "\xea\x2c\xeb\x01\xec\x08\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xee\x18\xef\x08\xf0\xa6\xf1\x00" "\xf2\x00\xf3\x0c\xf5\x12\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x03\xfa\x36" "\xfb\xfb\xfc\x00\xfd\xf1\xfe\x2b" 
	"\xff\xfc" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(147*1000);

memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(15*1000);

printf("Checking 4 and 5 over and over...\n");
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1240 */
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
/*That was URB 1250 */
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1260 */
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);

ret = read_register(buf, 0x05);
/*That was URB 1270 */
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);

ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1280 */

printf("Moving along.\n");

usleep(31*1000);

memcpy(buf, "\x7c\x00\x7d\x00\x7e\x04\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);

usleep(16*1000);
/*calibration scanning?*/
memcpy(buf, "\x00\x00\x08\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
usleep(7*1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(32*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(26*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(19*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
/*That was URB 1290 */

usleep(13*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0002000, 1491);

/*calibration scanning?*/
memcpy(buf, "\x00\x00\x08\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(8*1000);

ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(19*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(32*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(25*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
/*That was URB 1300 */

usleep(15*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0002000, 1491);

/*calibration scanning?*/
memcpy(buf, "\x00\x00\x08\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(17*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(28*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(32*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(26*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(19*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(26*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
/*That was URB 1310 */

usleep(13*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0002000, 1491);

usleep(2*1000);
memcpy(buf, "\x7c\x23\x7d\xfb\x7e\x02\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);

usleep(12*1000);
memcpy(buf, "\x46\xf6\x05\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

usleep(8*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(21*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(20*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);

usleep(13*1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000e00, 1215);
/*That was URB 1320 */

ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

usleep(19*1000);

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
usleep(30*1000);

ret = read_register(buf, 0x01);

memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(151*1000);

ret = read_register(buf, 0x00);

ret = do_command_eight(buf);

memcpy(buf, 
	"\xf3\x22\xfd\x94\xfe\x11\xa6\x41" "\xf6\x00\x96\x21\xe4\x01\xe2\x40" 
	"\xe3\x1f\xe4\x00\x95\xa7\xf4\x01" 
, 0x0000018);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000018, 1000);

ret = read_register(buf, 0x01);
/*That was URB 1330 */

usleep(50*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

usleep(62*1000);
ret = read_register(buf, 0x01);

ret = read_register(buf, 0x0b);
ret = read_register(buf, 0x0a);
ret = read_register(buf, 0x09);

ret = do_command_eight(buf);
usleep(64*1000);

ret = read_register(buf, 0x00);
ret = do_command_eight(buf);

memcpy(buf, 
	"\xf3\x32\xfd\x94\xfe\x11\xa6\x4d" "\xf6\x00\x96\x21\xe4\x01\xe2\x32" 
	"\xe3\x00\xe4\x00\x95\xa7\xf4\x01" 
, 0x0000018);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000018, 1000);
ret = read_register(buf, 0x01);
usleep(58*1000);
ret = read_register(buf, 0x01);
/*That was URB 1360 */

ret = read_register(buf, 0x0b);
ret = read_register(buf, 0x0a);
ret = read_register(buf, 0x09);

ret = do_command_eight(buf);
usleep(76*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x80\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x06" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(31*1000);

memcpy(buf, "\x00\x06\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);

usleep(16*1000);
memcpy(buf, 
	"\x00\x00\xff\x03\xff\x07\xff\x0b" "\xff\x0f\xff\x13\xff\x17\xff\x1b" 
	"\xff\x1f\xff\x23\xff\x27\xff\x2b" "\xff\x2f\xff\x33\xff\x37\xff\x3b" 
	"\xff\x3f\xff\x43\xff\x47\xff\x4b" "\xff\x4f\xff\x53\xfe\x57\xfe\x5b" 
	"\xfe\x5f\x5b\x62\x36\x64\x05\x66" "\xcb\x67\x88\x69\x3b\x6b\xe7\x6c" 
	"\x8a\x6e\x25\x70\xba\x71\x47\x73" "\xce\x74\x4f\x76\xca\x77\x3f\x79" 
	"\xae\x7a\x18\x7c\x7d\x7d\xdd\x7e" "\x38\x80\x8f\x81\xe2\x82\x30\x84" 
	"\x79\x85\xbf\x86\x01\x88\x40\x89" "\x7a\x8a\xb2\x8b\xe5\x8c\x16\x8e" 
	"\x43\x8f\x6d\x90\x95\x91\xb9\x92" "\xda\x93\xf8\x94\x14\x96\x2d\x97" 
	"\x44\x98\x58\x99\x69\x9a\x78\x9b" "\x85\x9c\x90\x9d\x98\x9e\x9e\x9f" 
	"\xa2\xa0\xa4\xa1\xa3\xa2\xa1\xa3" "\x9d\xa4\x97\xa5\x8f\xa6\x85\xa7" 
	"\x79\xa8\x6c\xa9\x5c\xaa\x4b\xab" "\x39\xac\x25\xad\x0f\xae\xf7\xae" 
	"\xde\xaf\xc4\xb0\xa8\xb1\x8a\xb2" "\x6b\xb3\x4b\xb4\x29\xb5\x06\xb6" 
	"\xe2\xb6\xbc\xb7\x95\xb8\x6c\xb9" "\x43\xba\x18\xbb\xec\xbb\xbe\xbc" 
	"\x90\xbd\x60\xbe\x2f\xbf\xfd\xbf" "\xca\xc0\x96\xc1\x60\xc2\x2a\xc3" 
	"\xf3\xc3\xba\xc4\x80\xc5\x46\xc6" "\x0a\xc7\xce\xc7\x90\xc8\x52\xc9" 
	"\x13\xca\xd2\xca\x91\xcb\x4f\xcc" "\x0c\xcd\xc8\xcd\x83\xce\x3d\xcf" 
	"\xf7\xcf\xaf\xd0\x67\xd1\x1e\xd2" "\xd4\xd2\x8a\xd3\x3e\xd4\xf2\xd4" 
	"\xa5\xd5\x57\xd6\x09\xd7\xb9\xd7" "\x69\xd8\x19\xd9\xc7\xd9\x75\xda" 
	"\x22\xdb\xce\xdb\x7a\xdc\x25\xdd" "\xcf\xdd\x79\xde\x22\xdf\xcb\xdf" 
	"\x72\xe0\x19\xe1\xc0\xe1\x66\xe2" "\x0b\xe3\xaf\xe3\x53\xe4\xf7\xe4" 
	"\x99\xe5\x3c\xe6\xdd\xe6\x7e\xe7" "\x1e\xe8\xbe\xe8\x5e\xe9\xfc\xe9" 
	"\x9a\xea\x38\xeb\xd5\xeb\x72\xec" "\x0e\xed\xa9\xed\x44\xee\xdf\xee" 
	"\x79\xef\x12\xf0\xab\xf0\x43\xf1" "\xdb\xf1\x73\xf2\x0a\xf3\xa0\xf3" 
	"\x36\xf4\xcb\xf4\x60\xf5\xf5\xf5" "\x89\xf6\x1d\xf7\xb0\xf7\x43\xf8" 
	"\xd5\xf8\x67\xf9\xf8\xf9\x89\xfa" "\x1a\xfb\xaa\xfb\x39\xfc\xc9\xfc" 
	"\x58\xfd\xe6\xfd\x74\xfe\x02\xff" "\x8f\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x00\x00\xff\x03\xff\x07\xff\x0b" "\xff\x0f\xff\x13\xff\x17\xff\x1b" 
	"\xff\x1f\xff\x23\xff\x27\xff\x2b" "\xff\x2f\xff\x33\xff\x37\xff\x3b" 
	"\xff\x3f\xff\x43\xff\x47\xff\x4b" "\xff\x4f\xff\x53\xfe\x57\xfe\x5b" 
	"\xfe\x5f\x5b\x62\x36\x64\x05\x66" "\xcb\x67\x88\x69\x3b\x6b\xe7\x6c" 
	"\x8a\x6e\x25\x70\xba\x71\x47\x73" "\xce\x74\x4f\x76\xca\x77\x3f\x79" 
	"\xae\x7a\x18\x7c\x7d\x7d\xdd\x7e" "\x38\x80\x8f\x81\xe2\x82\x30\x84" 
	"\x79\x85\xbf\x86\x01\x88\x40\x89" "\x7a\x8a\xb2\x8b\xe5\x8c\x16\x8e" 
	"\x43\x8f\x6d\x90\x95\x91\xb9\x92" "\xda\x93\xf8\x94\x14\x96\x2d\x97" 
	"\x44\x98\x58\x99\x69\x9a\x78\x9b" "\x85\x9c\x90\x9d\x98\x9e\x9e\x9f" 
	"\xa2\xa0\xa4\xa1\xa3\xa2\xa1\xa3" "\x9d\xa4\x97\xa5\x8f\xa6\x85\xa7" 
	"\x79\xa8\x6c\xa9\x5c\xaa\x4b\xab" "\x39\xac\x25\xad\x0f\xae\xf7\xae" 
	"\xde\xaf\xc4\xb0\xa8\xb1\x8a\xb2" "\x6b\xb3\x4b\xb4\x29\xb5\x06\xb6" 
	"\xe2\xb6\xbc\xb7\x95\xb8\x6c\xb9" "\x43\xba\x18\xbb\xec\xbb\xbe\xbc" 
	"\x90\xbd\x60\xbe\x2f\xbf\xfd\xbf" "\xca\xc0\x96\xc1\x60\xc2\x2a\xc3" 
	"\xf3\xc3\xba\xc4\x80\xc5\x46\xc6" "\x0a\xc7\xce\xc7\x90\xc8\x52\xc9" 
	"\x13\xca\xd2\xca\x91\xcb\x4f\xcc" "\x0c\xcd\xc8\xcd\x83\xce\x3d\xcf" 
	"\xf7\xcf\xaf\xd0\x67\xd1\x1e\xd2" "\xd4\xd2\x8a\xd3\x3e\xd4\xf2\xd4" 
	"\xa5\xd5\x57\xd6\x09\xd7\xb9\xd7" "\x69\xd8\x19\xd9\xc7\xd9\x75\xda" 
	"\x22\xdb\xce\xdb\x7a\xdc\x25\xdd" "\xcf\xdd\x79\xde\x22\xdf\xcb\xdf" 
	"\x72\xe0\x19\xe1\xc0\xe1\x66\xe2" "\x0b\xe3\xaf\xe3\x53\xe4\xf7\xe4" 
	"\x99\xe5\x3c\xe6\xdd\xe6\x7e\xe7" "\x1e\xe8\xbe\xe8\x5e\xe9\xfc\xe9" 
	"\x9a\xea\x38\xeb\xd5\xeb\x72\xec" "\x0e\xed\xa9\xed\x44\xee\xdf\xee" 
	"\x79\xef\x12\xf0\xab\xf0\x43\xf1" "\xdb\xf1\x73\xf2\x0a\xf3\xa0\xf3" 
	"\x36\xf4\xcb\xf4\x60\xf5\xf5\xf5" "\x89\xf6\x1d\xf7\xb0\xf7\x43\xf8" 
	"\xd5\xf8\x67\xf9\xf8\xf9\x89\xfa" "\x1a\xfb\xaa\xfb\x39\xfc\xc9\xfc" 
	"\x58\xfd\xe6\xfd\x74\xfe\x02\xff" "\x8f\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x00\x00\xff\x03\xff\x07\xff\x0b" "\xff\x0f\xff\x13\xff\x17\xff\x1b" 
	"\xff\x1f\xff\x23\xff\x27\xff\x2b" "\xff\x2f\xff\x33\xff\x37\xff\x3b" 
	"\xff\x3f\xff\x43\xff\x47\xff\x4b" "\xff\x4f\xff\x53\xfe\x57\xfe\x5b" 
	"\xfe\x5f\x5b\x62\x36\x64\x05\x66" "\xcb\x67\x88\x69\x3b\x6b\xe7\x6c" 
	"\x8a\x6e\x25\x70\xba\x71\x47\x73" "\xce\x74\x4f\x76\xca\x77\x3f\x79" 
	"\xae\x7a\x18\x7c\x7d\x7d\xdd\x7e" "\x38\x80\x8f\x81\xe2\x82\x30\x84" 
	"\x79\x85\xbf\x86\x01\x88\x40\x89" "\x7a\x8a\xb2\x8b\xe5\x8c\x16\x8e" 
	"\x43\x8f\x6d\x90\x95\x91\xb9\x92" "\xda\x93\xf8\x94\x14\x96\x2d\x97" 
	"\x44\x98\x58\x99\x69\x9a\x78\x9b" "\x85\x9c\x90\x9d\x98\x9e\x9e\x9f" 
	"\xa2\xa0\xa4\xa1\xa3\xa2\xa1\xa3" "\x9d\xa4\x97\xa5\x8f\xa6\x85\xa7" 
	"\x79\xa8\x6c\xa9\x5c\xaa\x4b\xab" "\x39\xac\x25\xad\x0f\xae\xf7\xae" 
	"\xde\xaf\xc4\xb0\xa8\xb1\x8a\xb2" "\x6b\xb3\x4b\xb4\x29\xb5\x06\xb6" 
	"\xe2\xb6\xbc\xb7\x95\xb8\x6c\xb9" "\x43\xba\x18\xbb\xec\xbb\xbe\xbc" 
	"\x90\xbd\x60\xbe\x2f\xbf\xfd\xbf" "\xca\xc0\x96\xc1\x60\xc2\x2a\xc3" 
	"\xf3\xc3\xba\xc4\x80\xc5\x46\xc6" "\x0a\xc7\xce\xc7\x90\xc8\x52\xc9" 
	"\x13\xca\xd2\xca\x91\xcb\x4f\xcc" "\x0c\xcd\xc8\xcd\x83\xce\x3d\xcf" 
	"\xf7\xcf\xaf\xd0\x67\xd1\x1e\xd2" "\xd4\xd2\x8a\xd3\x3e\xd4\xf2\xd4" 
	"\xa5\xd5\x57\xd6\x09\xd7\xb9\xd7" "\x69\xd8\x19\xd9\xc7\xd9\x75\xda" 
	"\x22\xdb\xce\xdb\x7a\xdc\x25\xdd" "\xcf\xdd\x79\xde\x22\xdf\xcb\xdf" 
	"\x72\xe0\x19\xe1\xc0\xe1\x66\xe2" "\x0b\xe3\xaf\xe3\x53\xe4\xf7\xe4" 
	"\x99\xe5\x3c\xe6\xdd\xe6\x7e\xe7" "\x1e\xe8\xbe\xe8\x5e\xe9\xfc\xe9" 
	"\x9a\xea\x38\xeb\xd5\xeb\x72\xec" "\x0e\xed\xa9\xed\x44\xee\xdf\xee" 
	"\x79\xef\x12\xf0\xab\xf0\x43\xf1" "\xdb\xf1\x73\xf2\x0a\xf3\xa0\xf3" 
	"\x36\xf4\xcb\xf4\x60\xf5\xf5\xf5" "\x89\xf6\x1d\xf7\xb0\xf7\x43\xf8" 
	"\xd5\xf8\x67\xf9\xf8\xf9\x89\xfa" "\x1a\xfb\xaa\xfb\x39\xfc\xc9\xfc" 
	"\x58\xfd\xe6\xfd\x74\xfe\x02\xff" "\x8f\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
, 0x0000600);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0000600, 1092);
/*That was URB 1370 */
usleep(16*1000);

ret = clearFIFO(buf);

usleep(34*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x40\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x6c\x7d\x0c" 
	"\x7e\x01\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(28*1000);

memcpy(buf, "\x00\xf0\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(23*1000);

memcpy(buf, 
	"\x78\x01\x09\x00\x00\xb3\x0e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\xaa\x07\xff\xff\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\xb0\x07\xff\xff" "\xb8\x07\xff\xff\x00\x00\x00\x10" 
	"\xb0\x07\xff\xff\xb3\x07\xff\xff" "\xb3\x07\xff\xff\xb2\x07\xff\xff" 
	"\xb5\x07\xff\xff\xa7\x07\xff\xff" "\xb7\x07\xff\xff\xba\x07\xff\xff" 
	"\xad\x07\xff\xff\xbc\x07\xff\xff" "\xbd\x07\xff\xff\xb2\x07\xff\xff" 
	"\xcc\x07\xff\xff\xcf\x07\xff\xff" "\xbb\x07\xff\xff\xd7\x07\xff\xff" 
	"\xd7\x07\xff\xff\xc5\x07\xff\xff" "\xc6\x07\xff\xff\xcd\x07\xff\xff" 
	"\xc2\x07\xff\xff\xd4\x07\xff\xff" "\xdc\x07\xff\xff\xc9\x07\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd5\x07\xff\xff\xe6\x07\xff\xff" "\xd0\x07\xff\xff\xd9\x07\xff\xff" 
	"\xdc\x07\xff\xff\xdd\x07\xff\xff" "\xfa\x07\xff\xff\x0d\x08\xff\xff" 
	"\xe8\x07\xff\xff\xf7\x07\xff\xff" "\x0c\x08\xff\xff\xe5\x07\xff\xff" 
	"\xf3\x07\xff\xff\x01\x08\xff\xff" "\xe9\x07\xff\xff\x10\x08\xff\xff" 
	"\x13\x08\xff\xff\xe8\x07\xff\xff" "\xe7\x07\xff\xff\xfa\x07\xff\xff" 
	"\xe0\x07\xff\xff\xe3\x07\xff\xff" "\xee\x07\xff\xff\xd8\x07\xff\xff" 
	"\xe9\x07\xff\xff\xfd\x07\xff\xff" "\xe2\x07\xff\xff\xf1\x07\xff\xff" 
	"\x00\x08\xff\xff\xe0\x07\xff\xff" "\xe6\x07\xff\xff\x02\x08\xff\xff" 
	"\xce\x07\xff\xff\xdc\x07\xff\xff" "\xee\x07\xff\xff\xc9\x07\xff\xff" 
	"\xe6\x07\xff\xff\xd9\x07\xff\xff" "\xca\x07\xff\xff\xd3\x07\xff\xff" 
	"\xe3\x07\xff\xff\xc4\x07\xff\xff" "\xbc\x07\xff\xff\xce\x07\xff\xff" 
	"\xb8\x07\xff\xff\xc9\x07\xff\xff" "\xd2\x07\xff\xff\xc8\x07\xff\xff" 
	"\xca\x07\xff\xff\xbe\x07\xff\xff" "\xb8\x07\xff\xff\xc5\x07\xff\xff" 
	"\xcd\x07\xcf\xfb\xb7\x07\xff\xff" "\xbd\x07\xff\xff\xc6\x07\x15\xf4" 
	"\xaf\x07\xff\xff\xb3\x07\xff\xff" "\xb3\x07\x51\xe8\xa3\x07\xff\xff" 
	"\xb5\x07\xff\xff\xb2\x07\x4e\xe5" "\xb1\x07\xff\xff\xa1\x07\x6a\xfd" 
	"\x9e\x07\x6e\xdd\xa1\x07\x5b\xfa" "\x9c\x07\x15\xf4\xa9\x07\x45\xd4" 
	"\x98\x07\xbc\xf1\xa1\x07\xa5\xeb" "\x97\x07\xcc\xcc\x99\x07\xf3\xea" 
	"\x94\x07\x14\xe7\x9b\x07\x2c\xc9" "\x99\x07\x6b\xe7\x99\x07\x2e\xeb" 
	"\x91\x07\x24\xcb\x97\x07\x9e\xe1" "\x93\x07\xc1\xe4\xa1\x07\xd3\xc6" 
	"\x98\x07\x3b\xe3\x9d\x07\xdb\xe5" "\xa4\x07\x68\xc7\x95\x07\xf2\xdd" 
	"\xa4\x07\xaa\xe3\x9f\x07\x05\xc5" "\x9b\x07\x34\xdc\x9e\x07\xec\xdf" 
	"\x9a\x07\xb9\xc0\x98\x07\xd2\xd7" "\x9f\x07\x82\xd8\x99\x07\xf1\xbb" 
	"\x90\x07\x2d\xd4\xa0\x07\x7d\xd2" "\x9e\x07\x34\xb4\x96\x07\x66\xd2" 
	"\xa2\x07\x4e\xd2\x9b\x07\xab\xb8" "\x95\x07\x54\xcd\x9b\x07\x95\xd2" 
	"\x96\x07\x2e\xb7\x9c\x07\x77\xd0" "\x99\x07\x14\xd4\x99\x07\x57\xb6" 
	"\x8f\x07\x3d\xcd\x93\x07\x20\xce" "\x98\x07\x00\xb4\x98\x07\xa9\xcb" 
	"\x9e\x07\xb6\xca\x9a\x07\xe6\xad" "\x99\x07\x1a\xc5\x9e\x07\xed\xc2" 
	"\x95\x07\x4d\xaa\x98\x07\xcc\xbe" "\x9b\x07\x41\xbf\x9c\x07\xca\xa6" 
	"\x92\x07\x7f\xbb\x8d\x07\xb2\xc4" "\x88\x07\xcb\xa8\x93\x07\xaf\xbc" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa5\x07\x0f\xbd\xa1\x07\x1d\xa5" "\x9f\x07\xe8\xbc\x9f\x07\x6a\xbe" 
	"\x92\x07\xf9\xa2\x9b\x07\x7e\xbe" "\xa1\x07\xa5\xbb\x9c\x07\x87\xa3" 
	"\x8a\x07\xe2\xb8\x97\x07\x87\xb9" "\x8e\x07\xcf\xa1\x8b\x07\x8b\xb4" 
	"\x9d\x07\x85\xb2\x8c\x07\x74\x9c" "\x97\x07\x10\xb1\x9b\x07\xe3\xaf" 
	"\x90\x07\x3a\x9a\x91\x07\xe6\xad" "\x97\x07\xf5\xab\x95\x07\x6f\x96" 
	"\x89\x07\xd0\xa9\x93\x07\xe4\xac" "\x97\x07\x4e\x95\x8b\x07\x18\xa9" 
	"\x88\x07\xd6\xad\x7c\x07\xdd\x96" "\x91\x07\xea\xa8\xa1\x07\x6c\xaa" 
	"\x8e\x07\x4e\x95\x99\x07\xc1\xa9" "\x98\x07\x27\xa9\x99\x07\xea\x92" 
	"\x84\x07\xeb\xa5\x99\x07\x4e\xa3" "\x9b\x07\xf4\x8e\x8f\x07\xb3\xa1" 
	"\x8f\x07\x07\xa3\x80\x07\x8e\x8c" "\x84\x07\x61\x9d\x94\x07\xdc\x9f" 
	"\x92\x07\xc5\x8b\x92\x07\x89\x9b" "\x8d\x07\x9d\xa0\x8d\x07\x5d\x8b" 
	"\x8f\x07\x87\x9a\x9c\x07\x2a\x9e" "\x8d\x07\x90\x87\x90\x07\x48\x9b" 
	"\x97\x07\x89\x9b\x86\x07\x56\x88" "\x9e\x07\x48\x9b\x97\x07\x14\x9a" 
	"\x92\x07\x88\x86\x9b\x07\x6f\x96" "\x96\x07\x72\x95\x90\x07\x36\x81" 
	"\x8f\x07\x30\x93\x93\x07\xff\x90" "\x94\x07\x92\x7e\x8b\x07\x13\x90" 
	"\x8b\x07\x3d\x94\x71\x07\x9b\x7e" "\x8b\x07\xc4\x8d\x9d\x07\xc8\x8e" 
	"\x89\x07\x12\x7c\x94\x07\xbb\x8b" "\x98\x07\x1a\x8e\xa1\x07\xcb\x7a" 
	"\x8b\x07\x33\x8b\x93\x07\x2a\x90" "\x93\x07\x14\x7b\x87\x07\x83\x8c" 
	"\xa3\x07\x2d\x8d\x8f\x07\x62\x7a" "\x94\x07\x70\x89\xa0\x07\xd5\x87" 
	"\x9c\x07\x9d\x76\x93\x07\xfe\x84" "\x8b\x07\x70\x85\x83\x07\xd9\x73" 
	"\x8c\x07\x74\x83\x8d\x07\x0e\x83" "\x8e\x07\xed\x72\x9a\x07\x12\x81" 
	"\x95\x07\xc5\x82\x8f\x07\xbc\x72" "\x87\x07\x7b\x80\x82\x07\x38\x88" 
	"\x88\x07\x8e\x76\x92\x07\xfa\x7e" "\x98\x07\xef\x80\xa1\x07\x7a\x71" 
	"\x88\x07\xdf\x7d\x90\x07\x36\x81" "\x99\x07\x9f\x70\x94\x07\xf8\x7d" 
	"\x88\x07\x9f\x7f\x81\x07\xf3\x6d" "\x8e\x07\x1c\x7b\x9d\x07\x12\x7a" 
	"\x94\x07\x2e\x6a\x93\x07\x68\x78" "\x9c\x07\xa7\x77\x8f\x07\xe4\x67" 
	"\x85\x07\xff\x75\x7f\x07\x7b\x79" "\x7c\x07\xb6\x69\x98\x07\xc8\x74" 
	"\x7f\x07\xde\x78\x75\x07\xb1\x68" "\x8d\x07\xcb\x73\x97\x07\x0e\x77" 
	"\x95\x07\x3d\x67\x95\x07\xd2\x73" "\x7f\x07\x2d\x77\x7a\x07\xf3\x66" 
	"\x82\x07\x66\x73\x8d\x07\x0b\x74" "\x93\x07\x25\x63\x90\x07\x35\x71" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x88\x07\x3c\x71\x7f\x07\xbc\x62" "\x90\x07\x4e\x6e\x95\x07\x6f\x6e" 
	"\x9b\x07\x98\x60\x8b\x07\x34\x6c" "\x98\x07\x65\x6d\x97\x07\x1d\x5f" 
	"\x94\x07\x71\x6a\x8c\x07\xef\x6b" "\x99\x07\xa3\x5d\x8c\x07\x7c\x68" 
	"\x94\x07\x27\x6c\x86\x07\xa0\x5f" "\x89\x07\x0a\x6a\x8e\x07\xfc\x6b" 
	"\x8d\x07\x18\x5f\x8b\x07\x03\x69" "\xa4\x07\x1c\x6b\x90\x07\xb6\x5c" 
	"\x90\x07\xe2\x66\x96\x07\x47\x68" "\x99\x07\x94\x5a\x90\x07\xe0\x65" 
	"\x93\x07\x3f\x65\x89\x07\x6e\x58" "\x8e\x07\x2f\x64\x91\x07\xbe\x63" 
	"\x85\x07\x20\x57\x8c\x07\x5e\x62" "\x8c\x07\x8e\x63\x8c\x07\xa7\x57" 
	"\x8a\x07\xae\x61\x8a\x07\x2a\x63" "\x96\x07\xf3\x56\x96\x07\x2a\x62" 
	"\x97\x07\x45\x64\x96\x07\x96\x57" "\x8d\x07\x39\x61\x85\x07\xcc\x64" 
	"\x7b\x07\xb7\x57\x86\x07\x9f\x61" "\x7f\x07\x6d\x62\x74\x07\x93\x54" 
	"\x8c\x07\x29\x5d\x87\x07\xb6\x5d" "\x90\x07\x3e\x52\x92\x07\xf1\x5b" 
	"\x8f\x07\x79\x5d\x92\x07\x01\x52" "\x96\x07\x07\x5b\x9d\x07\xe8\x5b" 
	"\x97\x07\x20\x51\x96\x07\xb2\x59" "\x86\x07\x2e\x5d\x8e\x07\xe7\x50" 
	"\x8a\x07\xc3\x59\x92\x07\x91\x5e" "\x85\x07\x4a\x51\x8b\x07\xd3\x58" 
	"\x97\x07\x6c\x5c\x8b\x07\x19\x51" "\x87\x07\x8c\x58\x9a\x07\x53\x5a" 
	"\x8f\x07\x04\x4f\x8b\x07\x69\x57" "\x92\x07\xc4\x57\x93\x07\x00\x4d" 
	"\x86\x07\xcf\x55\x8f\x07\x79\x57" "\x98\x07\x72\x4c\x89\x07\x02\x54" 
	"\x94\x07\x1a\x56\x83\x07\x50\x4b" "\x98\x07\x84\x54\x8a\x07\x69\x57" 
	"\x88\x07\xe3\x4b\x92\x07\x1d\x54" "\x92\x07\x34\x57\x98\x07\xab\x4b" 
	"\x90\x07\x0b\x55\x93\x07\xfb\x56" "\x8e\x07\x62\x4b\x92\x07\xe8\x54" 
	"\x72\x07\x7c\x55\x71\x07\x4d\x4b" "\x91\x07\xc9\x52\x89\x07\x04\x53" 
	"\x7b\x07\x9e\x48\x88\x07\x5c\x50" "\x8b\x07\x13\x52\x8d\x07\xbf\x47" 
	"\x96\x07\x36\x50\x9f\x07\x35\x51" "\xaa\x07\x6e\x46\x84\x07\x29\x4e" 
	"\x9b\x07\xf1\x4f\x98\x07\x37\x46" "\x8c\x07\x47\x4e\x81\x07\x43\x51" 
	"\x7f\x07\x22\x47\x9c\x07\xe6\x4e" "\x8a\x07\xeb\x50\x94\x07\xbc\x46" 
	"\x8f\x07\x47\x4e\xa1\x07\x84\x4f" "\x9f\x07\x1b\x45\x8c\x07\x59\x4c" 
	"\xa2\x07\x43\x4d\xa2\x07\x92\x43" "\x8c\x07\x65\x4a\x9b\x07\x50\x4d" 
	"\x8e\x07\xb8\x42\xa4\x07\x36\x4a" "\x9f\x07\x3d\x4c\xa9\x07\xda\x41" 
	"\x99\x07\x63\x49\x99\x07\x7b\x4c" "\x9d\x07\x1e\x42\x92\x07\xaf\x48" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x96\x07\x4a\x4d\x94\x07\x31\x42" "\x9f\x07\x3e\x49\xa0\x07\x34\x4b" 
	"\xae\x07\x6c\x42\xa0\x07\x8d\x48" "\xb4\x07\xe0\x4a\xa8\x07\x47\x41" 
	"\x9a\x07\xf9\x47\x9a\x07\x5b\x49" "\xac\x07\x06\x40\x96\x07\x54\x46" 
	"\x9d\x07\x98\x47\x98\x07\x8e\x3e" "\x91\x07\xdb\x44\x9b\x07\xf2\x46" 
	"\xa9\x07\x51\x3e\xa2\x07\x67\x44" "\x64\x07\x8a\x47\x5c\x07\xea\x3d" 
	"\x94\x07\xcf\x43\x87\x07\x15\x48" "\x8b\x07\x2c\x3e\xa6\x07\x11\x45" 
	"\x8d\x07\x0c\x48\x83\x07\xa3\x3e" "\xa7\x07\x37\x45\xa3\x07\x2b\x48" 
	"\xad\x07\xa8\x3d\xa0\x07\x11\x45" "\x8c\x07\x5e\x46\x8e\x07\x1b\x3d" 
	"\x9f\x07\x2b\x43\xa9\x07\xdb\x44" "\xbb\x07\x9a\x3b\xa4\x07\x20\x42" 
	"\x9f\x07\xe5\x43\xa5\x07\xe3\x3a" "\x9b\x07\x3b\x41\xaa\x07\x41\x43" 
	"\xb6\x07\xcf\x3a\xad\x07\xc1\x40" "\xab\x07\xed\x43\xa7\x07\xd6\x3a" 
	"\xa4\x07\x79\x40\x92\x07\xf5\x44" "\x9d\x07\x45\x3b\xa1\x07\x9e\x41" 
	"\x9c\x07\x2f\x45\x90\x07\xe0\x3a" "\xa3\x07\x97\x41\xa3\x07\xf4\x42" 
	"\xa8\x07\xe0\x39\xa8\x07\x61\x40" "\xa1\x07\xac\x41\xb2\x07\x08\x39" 
	"\xa1\x07\xc9\x3e\x8d\x07\xf5\x40" "\x94\x07\x31\x38\xa0\x07\xcf\x3d" 
	"\xb4\x07\xf9\x3f\xb2\x07\x67\x37" "\xae\x07\xd5\x3c\x9f\x07\xb8\x40" 
	"\xaf\x07\x67\x37\x9f\x07\x2b\x3d" "\xc1\x07\x22\x41\xba\x07\x36\x38" 
	"\xb1\x07\x65\x3d\x9c\x07\x96\x40" "\xa0\x07\x36\x38\xa3\x07\xc1\x3c" 
	"\x95\x07\xe7\x3f\x9c\x07\x09\x37" "\xa3\x07\x6d\x3c\xaf\x07\xf0\x3d" 
	"\xbb\x07\x07\x36\xa9\x07\x83\x3b" "\xa6\x07\x90\x3d\xc5\x07\x8f\x35" 
	"\xab\x07\xe0\x3a\xb6\x07\xcf\x3d" "\xb8\x07\xe1\x34\x98\x07\xa1\x3a" 
	"\xad\x07\x2a\x3e\x96\x07\x46\x35" "\xa2\x07\x6f\x3a\xae\x07\x86\x3e" 
	"\xac\x07\x7e\x35\xab\x07\x76\x3b" "\xa0\x07\x5e\x3e\xae\x07\x0d\x36" 
	"\xac\x07\x7d\x3b\x9e\x07\xac\x3d" "\xa2\x07\x21\x35\xa6\x07\x49\x3a" 
	"\xaf\x07\x82\x3c\xb3\x07\x9e\x33" "\xa3\x07\x9f\x39\x7f\x07\x32\x3c" 
	"\x72\x07\x74\x33\xa4\x07\xb8\x38" "\x9b\x07\x7d\x3b\xac\x07\x55\x33" 
	"\xa2\x07\x97\x38\xab\x07\xee\x3a" "\xb0\x07\x02\x33\xa2\x07\xfc\x37" 
	"\xa2\x07\x9e\x3b\xaf\x07\x9c\x33" "\xb0\x07\x4e\x38\xad\x07\xdd\x3b" 
	"\xa1\x07\xbf\x33\xb3\x07\xa0\x38" "\xb4\x07\x5f\x3b\xad\x07\xe4\x32" 
	"\x9c\x07\xae\x37\xaa\x07\x7f\x3a" "\xa3\x07\x0a\x32\x99\x07\x67\x36" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa4\x07\x32\x39\xa7\x07\x69\x31" "\xaa\x07\xc4\x35\xc1\x07\xcd\x38" 
	"\xad\x07\xdb\x30\xa3\x07\x51\x35" "\x6d\x07\xdc\x38\x69\x07\xcf\x30" 
	"\xad\x07\x3d\x35\xba\x07\x1d\x39" "\xad\x07\x8c\x30\xa8\x07\x78\x35" 
	"\xb7\x07\x43\x39\xb9\x07\x47\x31" "\xa1\x07\xd5\x35\xa2\x07\x30\x39" 
	"\xa2\x07\x74\x31\xaf\x07\xc2\x35" "\x6b\x07\xef\x38\x5b\x07\xdd\x30" 
	"\x7f\x07\x46\x35\xa7\x07\x6a\x37" "\x98\x07\x8f\x2f\xa6\x07\x35\x34" 
	"\xac\x07\xd6\x36\xb0\x07\x3d\x2f" "\xa9\x07\xbb\x33\xb7\x07\x65\x37" 
	"\xa4\x07\xf2\x2e\xa7\x07\xb3\x33" "\xb3\x07\xef\x36\xa7\x07\xdf\x2e" 
	"\xa1\x07\x56\x33\x95\x07\x17\x38" "\xa9\x07\x8a\x2f\xa3\x07\x36\x34" 
	"\xb3\x07\x81\x37\xa2\x07\x9a\x2f" "\x9d\x07\x1f\x34\x9b\x07\x59\x36" 
	"\xa0\x07\xab\x2e\xa6\x07\xd1\x32" "\x8a\x07\x63\x35\x85\x07\xde\x2d" 
	"\xa8\x07\x1e\x32\x5d\x07\x4c\x35" "\x61\x07\x94\x2d\xa0\x07\x04\x33" 
	"\xaf\x07\x03\x35\xa7\x07\x7c\x2d" "\xab\x07\x8e\x31\xb5\x07\x24\x35" 
	"\xac\x07\x53\x2d\xb1\x07\x87\x31" "\x69\x07\xf1\x35\x5a\x07\x13\x2e" 
	"\xa4\x07\x76\x32\xb6\x07\xab\x35" "\xa7\x07\x40\x2e\x9e\x07\x64\x32" 
	"\x9c\x07\x29\x35\xa0\x07\xe0\x2d" "\xb1\x07\x25\x32\x9f\x07\x23\x34" 
	"\xa4\x07\xce\x2c\xb0\x07\x26\x31" "\xaa\x07\xd9\x33\xa2\x07\xa0\x2c" 
	"\xad\x07\xf7\x30\x73\x07\x8a\x33" "\x74\x07\x82\x2c\xa2\x07\xce\x30" 
	"\x97\x07\x93\x33\x86\x07\xb2\x2c" "\x9f\x07\x9a\x30\x9b\x07\xf1\x34" 
	"\x94\x07\x7d\x2d\x8a\x07\x7e\x31" "\x8b\x07\xee\x34\x86\x07\x9f\x2d" 
	"\x8b\x07\xf4\x31\xa8\x07\x7f\x33" "\xa8\x07\xa0\x2c\xa0\x07\xcf\x30" 
	"\x89\x07\xe9\x32\x76\x07\xf2\x2b" "\x99\x07\xb3\x2f\xac\x07\xdb\x32" 
	"\xa5\x07\x97\x2b\xa0\x07\x9a\x2f" "\xac\x07\xe6\x32\xa1\x07\x88\x2b" 
	"\x95\x07\x77\x2f\xa9\x07\xe3\x32" "\xa2\x07\x84\x2b\x99\x07\xba\x2f" 
	"\x8d\x07\xce\x33\x86\x07\x18\x2c" "\xa2\x07\x33\x30\x95\x07\xa8\x33" 
	"\x98\x07\x66\x2c\x9e\x07\xa7\x30" "\xa8\x07\x0d\x33\x9f\x07\x2b\x2c" 
	"\x8d\x07\x38\x30\x8a\x07\x8c\x32" "\x87\x07\x4a\x2b\xa7\x07\x28\x2f" 
	"\xa7\x07\xf7\x31\xa7\x07\xe9\x2a" "\x9b\x07\x83\x2e\xa8\x07\x89\x31" 
	"\xaf\x07\xb1\x2a\x9f\x07\x74\x2e" "\x9c\x07\xa7\x31\xa6\x07\x8e\x2a" 
	"\x9b\x07\x94\x2e\xa8\x07\x27\x32" "\xa0\x07\x15\x2b\x90\x07\xca\x2e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa8\x07\xdd\x32\x9a\x07\x6a\x2b" "\x99\x07\x58\x2f\x9f\x07\x89\x32" 
	"\x95\x07\x59\x2b\x9d\x07\x49\x2f" "\xb0\x07\x9d\x31\xa6\x07\x76\x2a" 
	"\x92\x07\x9f\x2e\x51\x07\x70\x31" "\x48\x07\x33\x2a\x97\x07\x90\x2d" 
	"\x98\x07\xd2\x30\x92\x07\xad\x29" "\xa2\x07\x4f\x2d\xa9\x07\x64\x30" 
	"\xa2\x07\xa0\x29\x98\x07\xd9\x2c" "\x86\x07\x04\x31\x85\x07\xba\x29" 
	"\x9e\x07\x1e\x2d\x96\x07\x5b\x31" "\x9c\x07\x7d\x2a\x9d\x07\xe6\x2d" 
	"\x93\x07\x70\x31\x87\x07\x5e\x2a" "\x9a\x07\x08\x2e\x9b\x07\x8d\x30" 
	"\x86\x07\x8d\x29\x97\x07\xcd\x2c" "\x7a\x07\x00\x30\x84\x07\x3f\x29" 
	"\x87\x07\x7e\x2c\x8b\x07\xbe\x2f" "\x8a\x07\xce\x28\x80\x07\x26\x2c" 
	"\x9d\x07\x82\x2f\x80\x07\x93\x28" "\x8a\x07\xdb\x2b\x8f\x07\xd8\x2f" 
	"\x86\x07\xb3\x28\x8b\x07\x1a\x2c" "\x8f\x07\x04\x30\x8d\x07\x4d\x29" 
	"\x8b\x07\x87\x2c\x8a\x07\x00\x30" "\x97\x07\x3d\x29\x8b\x07\xad\x2c" 
	"\x84\x07\x71\x2f\x88\x07\x31\x28" "\x8d\x07\xbf\x2b\x65\x07\x11\x2f" 
	"\x5e\x07\x64\x28\x83\x07\x3e\x2b" "\x8e\x07\xa5\x2e\x88\x07\xb2\x27" 
	"\x90\x07\x39\x2b\x8b\x07\x97\x2e" "\x96\x07\xb6\x27\x8a\x07\x03\x2b" 
	"\x96\x07\x67\x2e\x92\x07\xb7\x27" "\x94\x07\x03\x2b\x96\x07\xf8\x2e" 
	"\x8a\x07\x1d\x28\x9b\x07\x72\x2b" "\x87\x07\xc5\x2f\x80\x07\x7e\x28" 
	"\x91\x07\x8e\x2b\x91\x07\xc3\x2e" "\x91\x07\x11\x28\x97\x07\x3d\x2b" 
	"\x80\x07\x79\x2e\x72\x07\xb6\x27" "\x84\x07\x89\x2a\xa1\x07\x3b\x2e" 
	"\x8c\x07\x51\x27\x8d\x07\x78\x2a" "\x97\x07\x33\x2e\x8b\x07\x51\x27" 
	"\x92\x07\x84\x2a\x70\x07\x81\x2e" "\x79\x07\x74\x27\x8f\x07\x82\x2a" 
	"\x70\x07\xdc\x2e\x66\x07\xe5\x27" "\x88\x07\x21\x2b\x9c\x07\x60\x2f" 
	"\x86\x07\x40\x28\x90\x07\x62\x2b" "\x89\x07\x1f\x2f\x84\x07\xe7\x27" 
	"\x8d\x07\x20\x2b\x81\x07\xd9\x2d" "\x6f\x07\x27\x27\x97\x07\x4e\x2a" 
	"\x75\x07\x66\x2d\x5f\x07\xe7\x26" "\x85\x07\xda\x29\x8c\x07\x5d\x2d" 
	"\x80\x07\xce\x26\x8c\x07\xa6\x29" "\x7b\x07\x5a\x2d\x82\x07\xd3\x26" 
	"\x7c\x07\x9d\x29\x83\x07\x91\x2d" "\x84\x07\xb5\x26\x80\x07\xc8\x29" 
	"\x7c\x07\xe6\x2d\x70\x07\x74\x27" "\x93\x07\x70\x2a\x8c\x07\x40\x2e" 
	"\x85\x07\x66\x27\x7f\x07\x1e\x2a" "\x54\x07\x3d\x2d\x4c\x07\xe4\x26" 
	"\x77\x07\xa8\x29\x8d\x07\xeb\x2c" "\x8f\x07\x3b\x26\x7c\x07\xc6\x28" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x40\x07\xb6\x2c\x2e\x07\x55\x26" "\x83\x07\xf3\x28\x7f\x07\x7a\x2c" 
	"\x6f\x07\x1d\x26\x85\x07\xbe\x28" "\x60\x07\x2c\x2d\x6b\x07\x28\x26" 
	"\x83\x07\xd7\x28\x8b\x07\x79\x2d" "\x75\x07\xab\x26\x8e\x07\xab\x29" 
	"\x81\x07\x74\x2d\x7d\x07\x1d\x27" "\x88\x07\x9d\x29\x84\x07\x1f\x2d" 
	"\x86\x07\x44\x26\x8a\x07\xb8\x28" "\x68\x07\xa2\x2c\x70\x07\xc9\x25" 
	"\x7c\x07\xb2\x28\x8d\x07\x41\x2c" "\x83\x07\xa8\x25\x88\x07\x7b\x28" 
	"\x89\x07\x30\x2c\x76\x07\x9d\x25" "\x87\x07\x3d\x28\x80\x07\x95\x2c" 
	"\x6d\x07\xad\x25\x85\x07\x7b\x28" "\x8d\x07\xf8\x2c\x83\x07\x14\x26" 
	"\x88\x07\xd3\x28\x7c\x07\x8b\x2d" "\x73\x07\x74\x26\x81\x07\x1b\x29" 
	"\x8a\x07\xb9\x2c\x7b\x07\x03\x26" "\x90\x07\xa6\x28\x8b\x07\x3a\x2c" 
	"\x7f\x07\xb3\x25\x85\x07\x32\x28" "\x39\x07\x13\x2c\x2c\x07\xa1\x25" 
	"\x7c\x07\xcc\x27\x7c\x07\x34\x2c" "\x81\x07\x4a\x25\x7a\x07\xca\x27" 
	"\x82\x07\xaa\x2b\x7d\x07\xae\x25" "\x96\x07\x38\x28\x78\x07\xc4\x2c" 
	"\x66\x07\x2b\x26\x83\x07\x49\x28" "\x8a\x07\x0c\x2d\x82\x07\xa6\x26" 
	"\x82\x07\xb1\x28\x6b\x07\x6e\x2c" "\x61\x07\xdc\x25\x92\x07\x27\x28" 
	"\x64\x07\x40\x2c\x4e\x07\x76\x25" "\x8f\x07\xb8\x27\x78\x07\xb4\x2b" 
	"\x6b\x07\x37\x25\x97\x07\xa1\x27" "\x84\x07\xc7\x2b\x84\x07\x5a\x25" 
	"\x8f\x07\x7e\x27\x88\x07\xd5\x2b" "\x9a\x07\x38\x25\x8c\x07\x78\x27" 
	"\x6d\x07\x61\x2c\x5c\x07\x85\x25" "\x87\x07\xb0\x27\x8c\x07\xd3\x2c" 
	"\x80\x07\x2c\x26\x89\x07\x4e\x28" "\x62\x07\x83\x2c\x72\x07\x12\x26" 
	"\x8e\x07\x17\x28\x6c\x07\x76\x2c" "\x5b\x07\x89\x25\x73\x07\x9b\x27" 
	"\x79\x07\x91\x2b\x78\x07\xf9\x24" "\x85\x07\x25\x27\x88\x07\x8e\x2b" 
	"\x75\x07\x0d\x25\x7b\x07\x2a\x27" "\x80\x07\xd9\x2b\x76\x07\xfe\x24" 
	"\x79\x07\x6e\x27\x83\x07\x24\x2c" "\x83\x07\x5a\x25\x8f\x07\x90\x27" 
	"\x8e\x07\xf3\x2c\x7d\x07\x0b\x26" "\x8c\x07\x4b\x28\x8e\x07\x21\x2d" 
	"\x76\x07\x10\x26\x8a\x07\x8f\x28" "\x80\x07\x73\x2c\x74\x07\x93\x25" 
	"\x81\x07\xfb\x27\x67\x07\xc2\x2b" "\x78\x07\x67\x25\x8d\x07\x68\x27" 
	"\x7a\x07\xef\x2b\x7c\x07\x38\x25" "\x96\x07\x67\x27\x94\x07\xff\x2b" 
	"\x85\x07\xfe\x24\x9c\x07\x55\x27" "\x79\x07\x0c\x2c\x73\x07\x7f\x25" 
	"\x82\x07\x69\x27\x4b\x07\x06\x2d" "\x40\x07\xca\x25\x8d\x07\x21\x28" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x81\x07\xb1\x2c\x76\x07\xef\x25" "\x91\x07\x43\x28\x96\x07\x48\x2c" 
	"\x85\x07\x8b\x25\x8d\x07\x82\x27" "\x7f\x07\xbf\x2b\x7e\x07\x29\x25" 
	"\x93\x07\x33\x27\x7c\x07\x5a\x2b" "\x80\x07\x2c\x25\x8b\x07\x02\x27" 
	"\x7b\x07\x78\x2b\x6d\x07\x18\x25" "\x92\x07\xdb\x26\x7e\x07\xeb\x2b" 
	"\x6f\x07\x0d\x25\x93\x07\x1d\x27" "\x5c\x07\x7d\x2c\x49\x07\xdb\x25" 
	"\x92\x07\xa6\x27\x89\x07\x76\x2c" "\x71\x07\xd0\x25\x8e\x07\x8e\x27" 
	"\x7f\x07\x1f\x2c\x62\x07\x41\x25" "\x9f\x07\x0f\x27\x8f\x07\x0d\x2b" 
	"\x82\x07\xba\x24\x99\x07\x6a\x26" "\x7d\x07\x81\x2a\x78\x07\x6d\x24" 
	"\x9e\x07\x12\x26\x6a\x07\x55\x2a" "\x70\x07\x2a\x24\x9c\x07\xcc\x25" 
	"\x81\x07\x14\x2a\x75\x07\x1b\x24" "\xae\x07\xbb\x25\x89\x07\xa4\x29" 
	"\x75\x07\xff\x23\x98\x07\xf7\x25" "\x44\x07\x8d\x29\x4a\x07\xf0\x23" 
	"\x66\x07\x95\x25\xfb\x06\x69\x28" "\xf2\x06\x4e\x23\x3d\x07\x20\x24" 
	"\x84\x06\xda\x23\x85\x06\xa1\x1f" "\x9e\x06\xdc\x1e\x98\x06\x02\x24" 
	"\x90\x06\xac\x1f\xb2\x06\xd6\x1f" "\x0c\x07\x52\x24\x07\x07\xf6\x1f" 
	"\x0b\x07\x1f\x20\x1e\x07\xfd\x24" "\x1b\x07\x46\x20\x19\x07\x4b\x20" 
	"\x18\x07\x27\x25\x17\x07\x6d\x20" "\x23\x07\x56\x20\x11\x07\x70\x25" 
	"\x06\x07\x73\x20\x0a\x07\x31\x20" "\xfa\x06\x95\x25\xea\x06\xb3\x20" 
	"\x16\x07\x87\x20\x0c\x07\xf7\x25" "\xff\x06\xa4\x20\x07\x07\x6d\x20" 
	"\xfe\x06\x82\x25\xee\x06\x7e\x20" "\x04\x07\x6a\x20\x02\x07\x72\x25" 
	"\xef\x06\x9b\x20\x03\x07\x84\x20" "\x0c\x07\x7d\x25\xef\x06\x9f\x20" 
	"\xf7\x06\x6a\x20\xfa\x06\x7d\x25" "\xee\x06\x9c\x20\x0d\x07\x94\x20" 
	"\xf7\x06\x7a\x25\xe9\x06\x73\x20" "\x03\x07\x95\x20\xf6\x06\xde\x25" 
	"\xed\x06\x82\x20\x03\x07\xc7\x20" "\x0b\x07\xa7\x25\xff\x06\xbc\x20" 
	"\xfc\x06\x57\x20\x08\x07\xe3\x25" "\x02\x07\xab\x20\x02\x07\x54\x20" 
	"\x0d\x07\x6f\x25\x06\x07\x8c\x20" "\x08\x07\x7e\x20\xf1\x06\x81\x25" 
	"\xe5\x06\x6e\x20\x04\x07\x7a\x20" "\x0d\x07\x8f\x25\xfa\x06\x59\x20" 
	"\xfa\x06\x53\x20\xeb\x06\x9b\x25" "\xd9\x06\x27\x20\x00\x07\x40\x20" 
	"\x02\x07\xad\x25\xf5\x06\x0d\x20" "\x01\x07\x2f\x20\xe9\x06\x50\x25" 
	"\xd0\x06\x38\x20\xfe\x06\x16\x20" "\x0d\x07\x21\x25\xf1\x06\xf7\x1f" 
	"\x00\x07\xc4\x1f\x10\x07\x67\x25" "\xf4\x06\xf0\x1f\xf7\x06\x1e\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc8\x06\x84\x25\xb0\x06\x22\x20" "\xf2\x06\x59\x20\xf8\x06\x6a\x25" 
	"\xe8\x06\x12\x20\xfe\x06\x10\x20" "\x02\x07\x52\x25\xf1\x06\x18\x20" 
	"\x0b\x07\x38\x20\xd6\x06\xc5\x25" "\xcd\x06\x6a\x20\x0d\x07\x52\x20" 
	"\x0a\x07\xfa\x25\xf6\x06\x53\x20" "\x04\x07\x9d\x20\xef\x06\xe4\x25" 
	"\xeb\x06\x85\x20\x02\x07\x30\x20" "\x17\x07\x9e\x25\x02\x07\x5a\x20" 
	"\x0b\x07\x4d\x20\x12\x07\x78\x25" "\xff\x06\x1b\x20\x14\x07\x49\x20" 
	"\xf9\x06\xb8\x25\xe2\x06\x24\x20" "\xfe\x06\x35\x20\x0e\x07\x54\x25" 
	"\xfe\x06\x31\x20\x05\x07\x54\x20" "\xcc\x06\x7a\x25\xb3\x06\x5a\x20" 
	"\x0b\x07\x54\x20\x04\x07\xb1\x25" "\xec\x06\x38\x20\x09\x07\x2f\x20" 
	"\x07\x07\x3b\x25\x06\x07\x4d\x20" "\x08\x07\xf4\x1f\xf9\x06\x5f\x25" 
	"\xf4\x06\x09\x20\xf5\x06\x2c\x20" "\x07\x07\x99\x25\xf0\x06\x04\x20" 
	"\xfb\x06\x45\x20\xf8\x06\x1e\x25" "\xef\x06\x29\x20\x13\x07\x47\x20" 
	"\x0f\x07\x47\x25\x0c\x07\x4e\x20" "\x07\x07\x2d\x20\x0b\x07\x49\x25" 
	"\xf7\x06\x47\x20\x04\x07\x1b\x20" "\x16\x07\x64\x25\xfb\x06\x25\x20" 
	"\x05\x07\x37\x20\xf1\x06\xd1\x25" "\xdf\x06\x51\x20\x01\x07\x17\x20" 
	"\x05\x07\x9b\x25\xf8\x06\x20\x20" "\xff\x06\x3f\x20\xfa\x06\x8b\x25" 
	"\xec\x06\xe7\x1f\x02\x07\x0b\x20" "\xfe\x06\x39\x25\xe5\x06\xef\x1f" 
	"\xfe\x06\x08\x20\x0f\x07\x15\x25" "\xe4\x06\xfe\x1f\x02\x07\xf8\x1f" 
	"\x0b\x07\x33\x25\x06\x07\xf3\x1f" "\x04\x07\xfb\x1f\x07\x07\x54\x25" 
	"\xef\x06\xe5\x1f\x04\x07\x0b\x20" "\xf2\x06\x3e\x25\xd9\x06\x15\x20" 
	"\xf8\x06\xd3\x1f\xf9\x06\x12\x25" "\xf4\x06\xf3\x1f\x03\x07\xdf\x1f" 
	"\xfd\x06\xfd\x24\x00\x07\xeb\x1f" "\x06\x07\xe8\x1f\x0a\x07\xd4\x24" 
	"\xfd\x06\x9e\x1f\x00\x07\xf8\x1f" "\xfb\x06\xd2\x24\xe7\x06\xb4\x1f" 
	"\x05\x07\xec\x1f\x07\x07\x02\x25" "\xec\x06\xaa\x1f\x0c\x07\xeb\x1f" 
	"\xeb\x06\xe9\x24\xe2\x06\xc2\x1f" "\xfc\x06\xd3\x1f\xe8\x06\x55\x25" 
	"\xdc\x06\xe6\x1f\x00\x07\xf8\x1f" "\x06\x07\x0d\x25\xf6\x06\x9e\x1f" 
	"\x09\x07\xc0\x1f\x0e\x07\xe2\x24" "\x07\x07\xc0\x1f\xfc\x06\xcb\x1f" 
	"\x07\x07\xd8\x24\xf0\x06\xbe\x1f" "\xf3\x06\xc6\x1f\x05\x07\xff\x24" 
	"\x06\x07\xd1\x1f\x04\x07\xd2\x1f" "\xf8\x06\xf7\x24\xed\x06\xc6\x1f" 
	"\x05\x07\xc8\x1f\xef\x06\x4a\x25" "\xd8\x06\xf1\x1f\xfe\x06\xc3\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x10\x07\x43\x25\x02\x07\x1d\x20" "\x05\x07\xe2\x1f\x0b\x07\x52\x25" 
	"\xfb\x06\x22\x20\x14\x07\xdd\x1f" "\x0e\x07\xe9\x24\xfb\x06\xd7\x1f" 
	"\x06\x07\x9f\x1f\xff\x06\x10\x25" "\xf5\x06\xb8\x1f\x00\x07\xb8\x1f" 
	"\x0d\x07\xe4\x24\xfd\x06\xa2\x1f" "\x03\x07\xa1\x1f\xfe\x06\xec\x24" 
	"\xe9\x06\xb9\x1f\x02\x07\x77\x1f" "\xfb\x06\xb9\x24\xee\x06\xb2\x1f" 
	"\x05\x07\x74\x1f\xf2\x06\xa7\x24" "\xd7\x06\xbb\x1f\x0f\x07\x74\x1f" 
	"\xee\x06\x88\x24\xe9\x06\x98\x1f" "\x00\x07\x23\x1f\xec\x06\xac\x24" 
	"\xd8\x06\x65\x1f\xef\x06\x50\x1f" "\x01\x07\x79\x24\xfb\x06\x9f\x1f" 
	"\x03\x07\x48\x1f\xfe\x06\xd0\x24" "\xe2\x06\xba\x1f\xfc\x06\x5b\x1f" 
	"\x00\x07\xb7\x24\xee\x06\x9b\x1f" "\xfb\x06\x61\x1f\x01\x07\x90\x24" 
	"\xfa\x06\x83\x1f\xf5\x06\x72\x1f" "\x0d\x07\xaa\x24\xf9\x06\xa7\x1f" 
	"\xff\x06\x61\x1f\xec\x06\xd8\x24" "\xd9\x06\xb8\x1f\xfe\x06\x48\x1f" 
	"\x07\x07\xa4\x24\x02\x07\xb0\x1f" "\xfc\x06\x3c\x1f\xfc\x06\xba\x24" 
	"\xd9\x06\x8d\x1f\xf6\x06\x43\x1f" "\x0d\x07\xab\x24\x05\x07\x7f\x1f" 
	"\x05\x07\x5c\x1f\x03\x07\x7a\x24" "\xec\x06\x7b\x1f\xf9\x06\x32\x1f" 
	"\x06\x07\xb2\x24\xf3\x06\xa9\x1f" "\x03\x07\x33\x1f\x09\x07\x5d\x24" 
	"\xf4\x06\x94\x1f\xf3\x06\x49\x1f" "\x00\x07\x38\x24\xe7\x06\x62\x1f" 
	"\x09\x07\xf9\x1e\xe6\x06\x43\x24" "\xd9\x06\x87\x1f\xfb\x06\x21\x1f" 
	"\x07\x07\x35\x24\x04\x07\x79\x1f" "\xf5\x06\x15\x1f\xfd\x06\x11\x24" 
	"\xf7\x06\x4f\x1f\xf9\x06\xe9\x1e" "\x01\x07\x1f\x24\xed\x06\x75\x1f" 
	"\xf3\x06\x13\x1f\xfe\x06\xb4\x24" "\xe6\x06\x79\x1f\xfc\x06\x23\x1f" 
	"\x06\x07\x8e\x24\xf5\x06\x3b\x1f" "\x00\x07\x3d\x1f\xda\x06\xd0\x24" 
	"\xd2\x06\x1f\x1f\xf1\x06\xed\x1e" "\x07\x07\x79\x24\xe0\x06\xf0\x1e" 
	"\xf8\x06\xfe\x1e\x19\x07\x57\x24" "\xf5\x06\x16\x1f\x00\x07\x09\x1f" 
	"\x06\x07\x2c\x24\xee\x06\x07\x1f" "\xf5\x06\xf9\x1e\xf7\x06\x2e\x24" 
	"\xe4\x06\x39\x1f\xf9\x06\xfe\x1e" "\x0d\x07\x58\x24\xf8\x06\x2c\x1f" 
	"\x02\x07\xe6\x1e\xeb\x06\x62\x24" "\xd6\x06\x3d\x1f\xfb\x06\xff\x1e" 
	"\xe0\x06\x7b\x24\xd2\x06\x4d\x1f" "\xff\x06\xf5\x1e\xd7\x06\x50\x24" 
	"\xc0\x06\x15\x1f\xf7\x06\xa3\x1e" "\xf1\x06\x6a\x24\xde\x06\x4f\x1f" 
	"\xf8\x06\xee\x1e\xea\x06\x73\x24" "\xe4\x06\x71\x1f\xfb\x06\xf1\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa5\x06\xb4\x24\x94\x06\x70\x1f" "\xf8\x06\xf0\x1e\xd1\x06\x5b\x24" 
	"\xcb\x06\x6b\x1f\x05\x07\xd4\x1e" "\xc3\x06\x54\x24\xaa\x06\x6e\x1f" 
	"\xfb\x06\xf5\x1e\xf9\x06\x02\x24" "\xe0\x06\x37\x1f\xf6\x06\xf3\x1e" 
	"\xed\x06\x2c\x24\xe0\x06\x1a\x1f" "\xef\x06\x80\x1e\xf6\x06\x27\x24" 
	"\xef\x06\x49\x1f\xef\x06\xcc\x1e" "\xe3\x06\x3d\x24\xd9\x06\x3c\x1f" 
	"\xf6\x06\xeb\x1e\xf6\x06\x44\x24" "\xe3\x06\x34\x1f\xff\x06\xe2\x1e" 
	"\x03\x07\x54\x24\xef\x06\x2f\x1f" "\xf7\x06\xeb\x1e\x04\x07\x63\x24" 
	"\xf9\x06\x30\x1f\xf1\x06\xe6\x1e" "\xf9\x06\xd9\x23\xea\x06\x54\x1f" 
	"\xfb\x06\xfa\x1e\x02\x07\x11\x24" "\xe3\x06\x1e\x1f\xf7\x06\x83\x1e" 
	"\xee\x06\x07\x24\xef\x06\x0c\x1f" "\xf5\x06\x8d\x1e\xe1\x06\x02\x24" 
	"\xcb\x06\x32\x1f\xf4\x06\xbb\x1e" "\xfd\x06\x0c\x24\xeb\x06\x40\x1f" 
	"\xf9\x06\xa9\x1e\x02\x07\x04\x24" "\xe9\x06\x34\x1f\xec\x06\x83\x1e" 
	"\x00\x07\x08\x24\xef\x06\x21\x1f" "\xf9\x06\x8a\x1e\xf4\x06\x44\x24" 
	"\xdc\x06\x4b\x1f\xf1\x06\xc5\x1e" "\xee\x06\x2d\x24\xdb\x06\x7a\x1f" 
	"\xe6\x06\xb2\x1e\xdc\x06\x2b\x24" "\xc7\x06\x21\x1f\xf6\x06\x8d\x1e" 
	"\xe6\x06\x5f\x24\xcf\x06\x43\x1f" "\xe2\x06\xe0\x1e\x07\x07\x69\x24" 
	"\xf1\x06\x6c\x1f\xf2\x06\xc8\x1e" "\xf7\x06\x74\x24\xe9\x06\x63\x1f" 
	"\xf1\x06\xd3\x1e\xfb\x06\xce\x24" "\xde\x06\x9a\x1f\xf4\x06\xd9\x1e" 
	"\xe8\x06\xbd\x24\xe0\x06\xb0\x1f" "\xe4\x06\xe8\x1e\xf2\x06\x8a\x24" 
	"\xeb\x06\xe2\x1f\xe5\x06\xb0\x1e" "\xe7\x06\xb1\x24\xd8\x06\xcc\x1f" 
	"\xf6\x06\x9b\x1e\xfc\x06\xb6\x24" "\xe7\x06\x8e\x1f\xe6\x06\x66\x1e" 
	"\x02\x07\xbd\x24\xdd\x06\x69\x1f" "\xec\x06\x88\x1e\x02\x07\xbe\x24" 
	"\xfa\x06\xbe\x1f\xee\x06\xb1\x1e" "\xfd\x06\xb9\x24\xe6\x06\xa7\x1f" 
	"\xf8\x06\xb6\x1e\xf0\x06\xce\x24" "\xda\x06\xc7\x1f\xf9\x06\x10\x1f" 
	"\xd8\x06\x46\x25\xd3\x06\xd0\x1f" "\xf0\x06\x26\x1f\x03\x07\x28\x25" 
	"\xed\x06\xd3\x1f\xef\x06\x03\x1f" "\x01\x07\xc1\x24\xe7\x06\xae\x1f" 
	"\xf8\x06\x1d\x1f\xf0\x06\xc1\x24" "\xde\x06\x91\x1f\xf0\x06\xf7\x1e" 
	"\xe0\x06\xff\x24\xc2\x06\xb2\x1f" "\xec\x06\x38\x1f\xd0\x06\xc5\x24" 
	"\xce\x06\xad\x1f\xf0\x06\x47\x1f" "\xf4\x06\xfc\x24\xd4\x06\x9f\x1f" 
	"\xf9\x06\x38\x1f\xff\x06\x82\x24" "\xe0\x06\x72\x1f\xea\x06\x11\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd1\x06\x87\x24\xbc\x06\x8e\x1f" "\xe3\x06\x99\x1e\x00\x07\x59\x24" 
	"\xf1\x06\x7f\x1f\xee\x06\xf7\x1e" "\xfa\x06\x67\x24\xeb\x06\x80\x1f" 
	"\xed\x06\xe5\x1e\xc9\x06\x96\x24" "\xb7\x06\x8e\x1f\xf5\x06\xe5\x1e" 
	"\xee\x06\x04\x25\xe0\x06\xa2\x1f" "\xeb\x06\x3f\x1f\xd9\x06\xf1\x24" 
	"\xca\x06\xbf\x1f\xe2\x06\x3a\x1f" "\xea\x06\xca\x24\xe2\x06\xd4\x1f" 
	"\xe4\x06\x16\x1f\xc5\x06\x13\x25" "\xac\x06\xd1\x1f\xe9\x06\x3d\x1f" 
	"\xfb\x06\xef\x24\xe6\x06\xcb\x1f" "\xec\x06\x1a\x1f\xf5\x06\x93\x24" 
	"\xea\x06\xac\x1f\xe9\x06\x2e\x1f" "\xec\x06\x98\x24\xdd\x06\x85\x1f" 
	"\xf6\x06\x05\x1f\xec\x06\x90\x24" "\xd2\x06\x88\x1f\xf7\x06\x13\x1f" 
	"\xd6\x06\x91\x24\xc9\x06\xc2\x1f" "\xe9\x06\xf2\x1e\xd6\x06\x7d\x24" 
	"\xcd\x06\x97\x1f\xe3\x06\xff\x1e" "\xf0\x06\x30\x24\xda\x06\x6e\x1f" 
	"\xfd\x06\xde\x1e\xf1\x06\x17\x24" "\xd7\x06\x7f\x1f\xea\x06\xd7\x1e" 
	"\xe5\x06\x3c\x24\xe1\x06\x6c\x1f" "\xed\x06\xe3\x1e\x02\x07\x57\x24" 
	"\xe8\x06\x71\x1f\xf6\x06\xce\x1e" "\xfc\x06\x71\x24\xda\x06\x7d\x1f" 
	"\xf1\x06\xd0\x1e\xe9\x06\x86\x24" "\xd8\x06\x70\x1f\xf0\x06\xc0\x1e" 
	"\xc4\x06\xa3\x24\xb5\x06\x87\x1f" "\xf5\x06\xab\x1e\xd9\x06\x88\x24" 
	"\xd8\x06\xa6\x1f\xca\x06\xdf\x1e" "\xe6\x06\x6e\x24\xcd\x06\xb2\x1f" 
	"\xf6\x06\xdb\x1e\xe6\x06\x6f\x24" "\xc7\x06\x92\x1f\xfb\x06\x0b\x1f" 
	"\xf7\x06\x5b\x24\xe9\x06\x8b\x1f" "\xec\x06\xea\x1e\xdc\x06\x2e\x24" 
	"\xd3\x06\xaa\x1f\xf1\x06\xd5\x1e" "\xc7\x06\x21\x24\xae\x06\xe0\x1f" 
	"\xf0\x06\xf5\x1e\xf7\x06\x46\x24" "\xe2\x06\xb8\x1f\xf0\x06\xf0\x1e" 
	"\xeb\x06\xa2\x24\xd3\x06\xbc\x1f" "\xea\x06\x1a\x1f\xea\x06\x81\x24" 
	"\xec\x06\xb2\x1f\xe0\x06\xbd\x1e" "\xfa\x06\x5e\x24\xe8\x06\xbc\x1f" 
	"\xf9\x06\x09\x1f\xf3\x06\xd4\x24" "\xd8\x06\xe9\x1f\xed\x06\x01\x1f" 
	"\xf5\x06\xde\x24\xdc\x06\xac\x1f" "\xe4\x06\x04\x1f\xf8\x06\xf2\x24" 
	"\xe9\x06\xc5\x1f\xed\x06\x06\x1f" "\xcd\x06\xb8\x24\xb8\x06\xc6\x1f" 
	"\xf0\x06\xef\x1e\xe9\x06\x98\x24" "\xc3\x06\xc6\x1f\xef\x06\xd7\x1e" 
	"\xd1\x06\x32\x24\xc9\x06\x4c\x1f" "\xe6\x06\x81\x1e\xfb\x06\x1a\x24" 
	"\xdb\x06\x67\x1f\xde\x06\xa7\x1e" "\xe0\x06\x15\x24\xc8\x06\x4c\x1f" 
	"\xe4\x06\x9b\x1e\x02\x07\xfe\x23" "\xe4\x06\x9e\x1f\xf2\x06\xcf\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xfa\x06\x57\x24\xef\x06\x96\x1f" "\xe9\x06\xfb\x1e\xdc\x06\x5b\x24" 
	"\xc6\x06\x94\x1f\xe7\x06\xf6\x1e" "\xfa\x06\xa4\x24\xee\x06\x6a\x1f" 
	"\xed\x06\x02\x1f\xec\x06\x70\x24" "\xbc\x06\x5a\x1f\xe1\x06\xae\x1e" 
	"\xe3\x06\x2e\x24\xd4\x06\x74\x1f" "\xe8\x06\xd5\x1e\xf3\x06\x50\x24" 
	"\xe5\x06\x49\x1f\xea\x06\xa2\x1e" "\xde\x06\x6b\x24\xc2\x06\x50\x1f" 
	"\xf4\x06\xd1\x1e\xf5\x06\x1f\x24" "\xde\x06\x68\x1f\xf3\x06\xc2\x1e" 
	"\xb9\x06\x3e\x24\xa4\x06\x8a\x1f" "\xeb\x06\xbd\x1e\xe2\x06\x8c\x24" 
	"\xd7\x06\x64\x1f\xe7\x06\xb1\x1e" "\xec\x06\x84\x24\xdc\x06\x4f\x1f" 
	"\xda\x06\x8c\x1e\xfc\x06\x52\x24" "\xde\x06\x66\x1f\xea\x06\xa5\x1e" 
	"\xf1\x06\x83\x24\xd9\x06\x72\x1f" "\xe7\x06\x95\x1e\xc9\x06\x7c\x24" 
	"\xb3\x06\x88\x1f\xb5\x06\xd6\x1e" "\xdb\x06\x48\x24\xc5\x06\x90\x1f" 
	"\xe2\x06\xa5\x1e\xd5\x06\x20\x24" "\xc3\x06\x84\x1f\xe8\x06\xcc\x1e" 
	"\xf5\x06\x53\x24\xe8\x06\x73\x1f" "\xf5\x06\xcd\x1e\xdb\x06\xa2\x24" 
	"\xc7\x06\x78\x1f\xe1\x06\xbb\x1e" "\xe1\x06\x6a\x24\xc6\x06\x9f\x1f" 
	"\xe0\x06\x92\x1e\xf7\x06\x75\x24" "\xe1\x06\x64\x1f\xe8\x06\x97\x1e" 
	"\xdd\x06\xf9\x23\xcc\x06\x56\x1f" "\xdb\x06\x97\x1e\xcb\x06\xce\x23" 
	"\xcc\x06\x5c\x1f\xe4\x06\x75\x1e" "\xf2\x06\xc1\x23\xcc\x06\x51\x1f" 
	"\xeb\x06\x9f\x1e\xf8\x06\x87\x23" "\xe4\x06\x67\x1f\xd8\x06\x8e\x1e" 
	"\xe9\x06\xa1\x23\xe2\x06\x4f\x1f" "\xdd\x06\x89\x1e\xe4\x06\xc2\x23" 
	"\xe2\x06\x1b\x1f\xdb\x06\x37\x1e" "\xf0\x06\x8c\x23\xd9\x06\x53\x1f" 
	"\xdd\x06\x64\x1e\xc7\x06\x0e\x24" "\xb3\x06\x7b\x1f\xe2\x06\x69\x1e" 
	"\xf8\x06\xf5\x23\xd7\x06\x2e\x1f" "\xe0\x06\x79\x1e\xe4\x06\xcc\x23" 
	"\xdc\x06\x64\x1f\xe2\x06\x73\x1e" "\xdc\x06\x19\x24\xc5\x06\x4c\x1f" 
	"\xdb\x06\x9d\x1e\xe5\x06\x50\x24" "\xbc\x06\x10\x1f\xca\x06\x7e\x1e" 
	"\xe8\x06\xbb\x23\xda\x06\xdb\x1e" "\xd5\x06\xd0\x1d\xf3\x06\x0f\x24" 
	"\xd4\x06\x2d\x1f\xdc\x06\x53\x1e" "\xdc\x06\x3b\x24\xc7\x06\x41\x1f" 
	"\xe2\x06\x76\x1e\xfd\x06\x30\x24" "\xd9\x06\x49\x1f\xeb\x06\x90\x1e" 
	"\xfb\x06\x41\x24\xe1\x06\x3b\x1f" "\xde\x06\x97\x1e\xf0\x06\x19\x24" 
	"\xda\x06\x54\x1f\xdb\x06\x9a\x1e" "\xe2\x06\x38\x24\xca\x06\x60\x1f" 
	"\xda\x06\x58\x1e\xe5\x06\x88\x24" "\xc7\x06\x5d\x1f\xd2\x06\x4a\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf1\x06\x5c\x24\xd5\x06\x54\x1f" "\xd0\x06\x62\x1e\xe7\x06\x27\x24" 
	"\xe5\x06\x4f\x1f\xcf\x06\x57\x1e" "\xf0\x06\xa9\x24\xd4\x06\x27\x1f" 
	"\xd2\x06\x2f\x1e\xf5\x06\x4c\x24" "\xd6\x06\x6a\x1f\xd4\x06\x6e\x1e" 
	"\xee\x06\x59\x24\xcb\x06\x4a\x1f" "\xd1\x06\x7a\x1e\xe2\x06\x22\x24" 
	"\xce\x06\x33\x1f\xd9\x06\x77\x1e" "\xe5\x06\xf0\x23\xcd\x06\x4a\x1f" 
	"\xd1\x06\x4a\x1e\xe5\x06\x15\x24" "\xca\x06\x46\x1f\xd2\x06\x23\x1e" 
	"\xd6\x06\x4b\x24\xc4\x06\x3e\x1f" "\xca\x06\x71\x1e\xbd\x06\x38\x24" 
	"\xa5\x06\x5f\x1f\xd8\x06\x83\x1e" "\xf5\x06\x6d\x24\xd2\x06\x56\x1f" 
	"\xd9\x06\x98\x1e\xe5\x06\x3a\x24" "\xd5\x06\x66\x1f\xda\x06\xa0\x1e" 
	"\xea\x06\x3d\x24\xd8\x06\x4e\x1f" "\xe7\x06\xb0\x1e\xe6\x06\x6d\x24" 
	"\xd7\x06\x51\x1f\xda\x06\xa0\x1e" "\xec\x06\x63\x24\xd1\x06\x52\x1f" 
	"\xc7\x06\x76\x1e\xe9\x06\x30\x24" "\xcc\x06\x32\x1f\xd8\x06\x73\x1e" 
	"\xe9\x06\x10\x24\xdc\x06\x38\x1f" "\xdc\x06\x56\x1e\xe7\x06\x7b\x24" 
	"\xdf\x06\x51\x1f\xd2\x06\x8f\x1e" "\xf2\x06\xa8\x24\xd9\x06\x3b\x1f" 
	"\xdb\x06\x84\x1e\xcd\x06\xd8\x24" "\xa5\x06\x96\x1f\xdb\x06\x8d\x1e" 
	"\xc5\x06\x21\x25\xb0\x06\xb8\x1f" "\xdc\x06\xc3\x1e\xf1\x06\xe5\x24" 
	"\xd0\x06\x8c\x1f\xda\x06\xbb\x1e" "\xf9\x06\x67\x24\xe7\x06\x77\x1f" 
	"\xdb\x06\xcb\x1e\xbb\x06\x5c\x24" "\xa3\x06\x6a\x1f\xdb\x06\x8a\x1e" 
	"\xe4\x06\x6d\x24\xcd\x06\x25\x1f" "\xd9\x06\x92\x1e\xee\x06\x4f\x24" 
	"\xd8\x06\x06\x1f\xd2\x06\x6f\x1e" "\xdf\x06\x19\x24\xc7\x06\x22\x1f" 
	"\xd3\x06\x66\x1e\xf2\x06\x1c\x24" "\xca\x06\x27\x1f\xdb\x06\x44\x1e" 
	"\xd7\x06\x6d\x24\xbd\x06\x12\x1f" "\xb3\x06\x24\x1e\xe8\x06\x35\x24" 
	"\xda\x06\x09\x1f\xd5\x06\x5f\x1e" "\xc1\x06\x52\x24\xa4\x06\x58\x1f" 
	"\xd6\x06\x94\x1e\xe6\x06\xc6\x24" "\xc5\x06\x39\x1f\xd8\x06\x86\x1e" 
	"\xdb\x06\x8b\x24\xcb\x06\x48\x1f" "\xc8\x06\x93\x1e\xe8\x06\x4b\x24" 
	"\xcf\x06\x4f\x1f\xd8\x06\x7d\x1e" "\xe4\x06\x7e\x24\xc7\x06\x40\x1f" 
	"\xe4\x06\xa9\x1e\xc7\x06\x39\x24" "\xa6\x06\x59\x1f\xe0\x06\x21\x1e" 
	"\xed\x06\xfb\x23\xd9\x06\x61\x1f" "\xd7\x06\x51\x1e\xd7\x06\xec\x23" 
	"\xd0\x06\x88\x1f\xd1\x06\x67\x1e" "\xef\x06\x7c\x24\xcf\x06\x77\x1f" 
	"\xda\x06\x97\x1e\xd3\x06\x9a\x24" "\xac\x06\x76\x1f\xe1\x06\xa5\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe1\x06\x54\x24\xd8\x06\x5b\x1f" "\xda\x06\x60\x1e\xe9\x06\x3a\x24" 
	"\xd7\x06\x60\x1f\xd0\x06\x78\x1e" "\xe4\x06\xef\x23\xbc\x06\x1c\x1f" 
	"\xd0\x06\x43\x1e\xed\x06\x0a\x24" "\xda\x06\x61\x1f\xd5\x06\x37\x1e" 
	"\xdf\x06\x3a\x24\xd7\x06\x26\x1f" "\xdd\x06\x70\x1e\xe1\x06\x5b\x24" 
	"\xc7\x06\x42\x1f\xcc\x06\x70\x1e" "\xef\x06\x2c\x24\xc8\x06\x4f\x1f" 
	"\xd5\x06\x6a\x1e\xdb\x06\x93\x24" "\xbd\x06\x35\x1f\xd4\x06\xbf\x1e" 
	"\xd7\x06\x09\x24\xcd\x06\x61\x1f" "\xd6\x06\xc0\x1e\xcf\x06\xad\x24" 
	"\xb2\x06\xa9\x1f\xb4\x06\xd6\x1e" "\xde\x06\xba\x24\xc4\x06\xb6\x1f" 
	"\xd1\x06\x92\x1e\xd9\x06\x82\x24" "\xbb\x06\x60\x1f\xdd\x06\x92\x1e" 
	"\xdf\x06\x73\x24\xc2\x06\x2c\x1f" "\xc8\x06\x73\x1e\xdc\x06\x62\x24" 
	"\xd1\x06\x5c\x1f\xc7\x06\x71\x1e" "\xed\x06\x46\x24\xcf\x06\x34\x1f" 
	"\xcf\x06\x53\x1e\xf8\x06\x4b\x24" "\xd2\x06\x2c\x1f\xd4\x06\x68\x1e" 
	"\xe8\x06\x4e\x24\xd0\x06\x56\x1f" "\xe1\x06\xb3\x1e\xe9\x06\x63\x24" 
	"\xde\x06\x20\x1f\xcb\x06\x3d\x1e" "\xfc\x06\x57\x24\xe2\x06\x30\x1f" 
	"\xd8\x06\x5c\x1e\xe1\x06\x34\x24" "\xbf\x06\x15\x1f\xcf\x06\x77\x1e" 
	"\xe7\x06\x10\x24\xca\x06\xf9\x1e" "\xd5\x06\x4d\x1e\xe7\x06\x3b\x24" 
	"\xc9\x06\xf8\x1e\xcb\x06\x11\x1e" "\xce\x06\x31\x24\xab\x06\xef\x1e" 
	"\xdd\x06\x22\x1e\xde\x06\xf9\x23" "\xbe\x06\x04\x1f\xd0\x06\xf5\x1d" 
	"\xe4\x06\xea\x23\xdc\x06\xe8\x1e" "\xd5\x06\xd6\x1d\xe0\x06\x19\x24" 
	"\xbc\x06\x0f\x1f\xc7\x06\x35\x1e" "\xe4\x06\x17\x24\xc4\x06\xd9\x1e" 
	"\xdc\x06\x48\x1e\xe9\x06\xbd\x23" "\xda\x06\xad\x1e\xe1\x06\x57\x1e" 
	"\xd2\x06\xfb\x23\xbc\x06\xd5\x1e" "\xd6\x06\x58\x1e\xea\x06\xc3\x23" 
	"\xc3\x06\xc8\x1e\xd5\x06\x74\x1e" "\xd8\x06\x71\x23\xbf\x06\xdf\x1e" 
	"\xd6\x06\x25\x1e\xd3\x06\xbb\x23" "\xab\x06\x91\x1e\xd9\x06\xf4\x1d" 
	"\xf0\x06\x83\x23\xe5\x06\xad\x1e" "\xd5\x06\xbf\x1d\xe9\x06\xed\x23" 
	"\xd0\x06\xa2\x1e\xd3\x06\xf3\x1d" "\xf6\x06\xd5\x23\xdd\x06\xc0\x1e" 
	"\xd3\x06\xe3\x1d\xf1\x06\xb7\x23" "\xd3\x06\xc3\x1e\xd8\x06\xc6\x1d" 
	"\xf9\x06\x03\x24\xd8\x06\xba\x1e" "\xd0\x06\xb3\x1d\xe2\x06\x02\x24" 
	"\xbd\x06\x9a\x1e\xd6\x06\xb4\x1d" "\xf2\x06\xf8\x23\xd9\x06\xe5\x1e" 
	"\xd1\x06\x93\x1d\xee\x06\xfd\x23" "\xd1\x06\xa1\x1e\xcf\x06\x99\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe2\x06\x07\x24\xcc\x06\xaf\x1e" "\xc9\x06\xf3\x1d\xf4\x06\xf4\x23" 
	"\xe4\x06\xa2\x1e\xcb\x06\xe0\x1d" "\xee\x06\xd8\x23\xd4\x06\xa4\x1e" 
	"\xe3\x06\xf2\x1d\xfd\x06\xf2\x23" "\xd0\x06\xcf\x1e\xd3\x06\xeb\x1d" 
	"\xeb\x06\x05\x24\xd3\x06\xb0\x1e" "\xd4\x06\xfa\x1d\xe1\x06\x34\x24" 
	"\xc0\x06\xbf\x1e\xd5\x06\x03\x1e" "\xef\x06\xfd\x23\xca\x06\xcb\x1e" 
	"\xd3\x06\xff\x1d\xe6\x06\xee\x23" "\xc9\x06\xce\x1e\xdc\x06\xe7\x1d" 
	"\xe4\x06\x0d\x24\xce\x06\xdb\x1e" "\xcd\x06\x14\x1e\xe9\x06\xd3\x23" 
	"\xd8\x06\xb7\x1e\xd1\x06\x16\x1e" "\xf4\x06\xc6\x23\xdd\x06\xf6\x1e" 
	"\xe4\x06\x0c\x1e\xfe\x06\x19\x24" "\xd0\x06\xc8\x1e\xd8\x06\x03\x1e" 
	"\xec\x06\xde\x23\xd7\x06\xec\x1e" "\xd4\x06\x17\x1e\xe7\x06\xd4\x23" 
	"\xde\x06\x0a\x1f\xcf\x06\xb6\x1d" "\xd8\x06\x48\x24\xc4\x06\x80\x1f" 
	"\xd8\x06\x16\x1e\xdd\x06\xf2\x23" "\xc3\x06\x25\x1f\xdc\x06\xff\x1d" 
	"\xee\x06\xd9\x23\xd3\x06\xda\x1e" "\xd5\x06\xe0\x1d\xdd\x06\x04\x24" 
	"\xde\x06\xd8\x1e\xd9\x06\xe9\x1d" "\xd8\x06\xe6\x23\xc8\x06\xc1\x1e" 
	"\xce\x06\xed\x1d\xed\x06\x8d\x23" "\xcf\x06\xcd\x1e\xd3\x06\xce\x1d" 
	"\xdf\x06\x44\x23\xd5\x06\x63\x1e" "\xd8\x06\xbb\x1d\xe5\x06\x71\x23" 
	"\xd7\x06\xb0\x1e\xd2\x06\xc6\x1d" "\xdb\x06\x94\x23\xcc\x06\xcb\x1e" 
	"\xd8\x06\xd7\x1d\xdf\x06\xac\x23" "\xc8\x06\xbd\x1e\xe7\x06\xfb\x1d" 
	"\xf1\x06\xeb\x23\xd7\x06\xbc\x1e" "\xcc\x06\xc1\x1d\xdb\x06\x9d\x23" 
	"\xdc\x06\xa4\x1e\xde\x06\xb4\x1d" "\xe1\x06\x8f\x23\xbe\x06\xeb\x1e" 
	"\xc7\x06\x94\x1d\xfb\x06\xe9\x23" "\xd4\x06\x97\x1e\xc9\x06\x0f\x1d" 
	"\xdf\x06\xdb\x22\xda\x06\xfe\x1d" "\xca\x06\x5e\x1c\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x2a\x07\xec\x26" "\x23\x07\x16\x21\x1c\x07\xaa\x20" 
	"\x2c\x07\xf7\x27\x12\x07\xa0\x21" "\x22\x07\x5a\x21\x3b\x07\x8c\x27" 
	"\x14\x07\x8c\x21\x26\x07\xb6\x21" "\x23\x07\xab\x27\x19\x07\xa5\x21" 
	"\x23\x07\xc2\x21\x2f\x07\x9c\x27" "\x11\x07\xae\x21\x21\x07\xea\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x35\x07\xe7\x27\x12\x07\xe9\x21" "\x22\x07\x1f\x22\x11\x07\x18\x28" 
	"\xec\x06\xf5\x21\x27\x07\x3b\x22" "\x2a\x07\xea\x28\x13\x07\x31\x22" 
	"\x23\x07\xbf\x22\x29\x07\x46\x29" "\x0c\x07\xb3\x22\x36\x07\x44\x23" 
	"\x1a\x07\xc6\x28\x0b\x07\xe1\x22" "\x29\x07\xee\x22\x2a\x07\x13\x29" 
	"\x12\x07\x7d\x22\x2d\x07\xe8\x22" "\x25\x07\xbf\x28\x12\x07\x96\x22" 
	"\x2b\x07\xcb\x22\x0a\x07\xa0\x28" "\xf0\x06\xce\x22\x2c\x07\xe0\x22" 
	"\x2e\x07\x0f\x29\x1e\x07\x4e\x23" "\x28\x07\xf9\x22\x35\x07\x74\x29" 
	"\x1b\x07\x63\x23\x26\x07\x2e\x23" "\x38\x07\xd3\x29\x1f\x07\x22\x23" 
	"\x21\x07\xa2\x23\x2a\x07\x37\x29" "\x14\x07\xea\x22\x2d\x07\x2a\x23" 
	"\x2a\x07\x0b\x29\x00\x07\x88\x22" "\x19\x07\xdf\x22\x33\x07\xe1\x28" 
	"\x1c\x07\x7e\x22\x22\x07\xb4\x22" "\x1f\x07\xfc\x28\x0a\x07\xa0\x22" 
	"\x21\x07\xcc\x22\x30\x07\x2c\x29" "\x1a\x07\x93\x22\x26\x07\xdb\x22" 
	"\x31\x07\x22\x29\x22\x07\xf0\x22" "\x2c\x07\x00\x23\x2d\x07\x8e\x29" 
	"\x1b\x07\x30\x23\x2d\x07\x5a\x23" "\x33\x07\x7c\x29\x17\x07\xc7\x22" 
	"\x1f\x07\x44\x23\x30\x07\x61\x29" "\x22\x07\xab\x22\x2a\x07\x12\x23" 
	"\x2a\x07\x15\x29\x10\x07\x6d\x22" "\x24\x07\x28\x23\x28\x07\xfe\x28" 
	"\x16\x07\x6f\x22\x22\x07\xfa\x22" "\x2a\x07\xe4\x28\x10\x07\x69\x22" 
	"\x22\x07\xcc\x22\x2b\x07\x4f\x29" "\x1a\x07\xa2\x22\x1c\x07\xed\x22" 
	"\x37\x07\x8f\x29\x22\x07\xc0\x22" "\x24\x07\x1e\x23\x28\x07\x5a\x29" 
	"\x02\x07\xc7\x22\x14\x07\xae\x22" "\x2c\x07\xba\x28\x18\x07\xae\x22" 
	"\x27\x07\x9c\x22\x21\x07\x18\x29" "\x0e\x07\x4c\x22\x1f\x07\x71\x22" 
	"\x15\x07\xd5\x28\xfd\x06\x90\x22" "\x23\x07\x7c\x22\x25\x07\xfa\x28" 
	"\x00\x07\x81\x22\x26\x07\xbe\x22" "\x1f\x07\xd0\x28\x1f\x07\x70\x22" 
	"\x20\x07\xff\x22\x3e\x07\xb5\x29" "\x17\x07\xd0\x22\x29\x07\x62\x23" 
	"\x2c\x07\x81\x29\x0c\x07\xd7\x22" "\x1d\x07\x4c\x23\x25\x07\xce\x28" 
	"\x1a\x07\x88\x22\x2a\x07\x03\x23" "\x27\x07\xcd\x28\x15\x07\x60\x22" 
	"\x1b\x07\x29\x23\x24\x07\xae\x28" "\x1f\x07\x4e\x22\x1e\x07\xda\x22" 
	"\x16\x07\x67\x28\xf7\x06\x69\x22" "\x1e\x07\xe7\x22\x28\x07\xe2\x28" 
	"\x16\x07\x69\x22\x2f\x07\x24\x23" "\x1c\x07\x36\x29\xf7\x06\xd4\x22" 
	"\x28\x07\x3a\x23\x28\x07\x7f\x29" "\x10\x07\xd2\x22\x28\x07\x28\x23" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x26\x07\x0f\x29\x07\x07\xc4\x22" "\x30\x07\xa9\x22\x1e\x07\x91\x28" 
	"\x0e\x07\x27\x22\x23\x07\x8f\x22" "\x20\x07\x3a\x28\x07\x07\x36\x22" 
	"\x1e\x07\x4e\x22\x2c\x07\x14\x28" "\x16\x07\xbf\x21\x21\x07\x38\x22" 
	"\x2e\x07\xcb\x27\x0b\x07\xd2\x21" "\x1a\x07\xf4\x21\x0a\x07\xfb\x27" 
	"\xf7\x06\xef\x21\x1e\x07\x44\x22" "\x1d\x07\x39\x28\x02\x07\xe5\x21" 
	"\x1f\x07\x49\x22\x18\x07\xb9\x27" "\xfa\x06\xc1\x21\x28\x07\x15\x22" 
	"\x25\x07\xac\x27\x00\x07\x86\x21" "\x2b\x07\xbe\x21\x1b\x07\x60\x27" 
	"\x12\x07\x65\x21\x0e\x07\x99\x21" "\x2d\x07\x9f\x27\x18\x07\x65\x21" 
	"\x28\x07\xb6\x21\x14\x07\x64\x27" "\x00\x07\x74\x21\x20\x07\xa4\x21" 
	"\x2b\x07\x8c\x27\x0c\x07\x36\x21" "\x1c\x07\xbe\x21\x25\x07\xcc\x27" 
	"\x0f\x07\x8b\x21\x24\x07\xf7\x21" "\x1e\x07\x6f\x27\x14\x07\x5d\x21" 
	"\x1d\x07\xf3\x21\x20\x07\x79\x27" "\x1a\x07\x6b\x21\x26\x07\xe6\x21" 
	"\xfc\x06\x42\x27\xe5\x06\x78\x21" "\x1d\x07\xe5\x21\x21\x07\x85\x27" 
	"\x08\x07\x53\x21\x1c\x07\xb1\x21" "\xf5\x06\x88\x27\xd8\x06\x77\x21" 
	"\x20\x07\xbe\x21\x2a\x07\x66\x27" "\x1a\x07\xc3\x21\x15\x07\xf5\x21" 
	"\x29\x07\x98\x27\x10\x07\xa6\x21" "\x28\x07\x0c\x22\x29\x07\x06\x28" 
	"\x0a\x07\xc1\x21\x22\x07\xd8\x21" "\x1c\x07\x7d\x27\x12\x07\x9e\x21" 
	"\x20\x07\xea\x21\x16\x07\x78\x27" "\x01\x07\x74\x21\x20\x07\xe1\x21" 
	"\x0f\x07\xb9\x27\xf4\x06\xb5\x21" "\x22\x07\xc9\x21\x0a\x07\x7c\x27" 
	"\xf4\x06\x8f\x21\x27\x07\xdc\x21" "\x1a\x07\x6e\x27\x09\x07\x84\x21" 
	"\x22\x07\xec\x21\x23\x07\xd4\x27" "\x0d\x07\xd6\x21\x21\x07\x0c\x22" 
	"\x0a\x07\xf1\x27\xe8\x06\xd3\x21" "\x31\x07\x1d\x22\x2f\x07\x47\x27" 
	"\x12\x07\x7d\x21\x1b\x07\x96\x21" "\x13\x07\x10\x27\x05\x07\x6d\x21" 
	"\x26\x07\x8c\x21\x0f\x07\x34\x27" "\xfb\x06\x58\x21\x13\x07\xb0\x21" 
	"\x0c\x07\x3b\x27\xf2\x06\x40\x21" "\x22\x07\x8b\x21\x2d\x07\x18\x27" 
	"\x10\x07\x84\x21\x22\x07\x9a\x21" "\x17\x07\x5c\x27\x0b\x07\x7e\x21" 
	"\x19\x07\xb7\x21\x12\x07\x42\x27" "\x01\x07\x52\x21\x09\x07\x71\x21" 
	"\x34\x07\x3b\x27\x09\x07\x76\x21" "\x21\x07\x5c\x21\x1c\x07\x3d\x27" 
	"\x06\x07\x31\x21\x22\x07\x3c\x21" "\x18\x07\x23\x27\x08\x07\x30\x21" 
	"\x13\x07\xda\x20\x17\x07\xad\x26" "\x11\x07\x1b\x21\x20\x07\xcb\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x24\x07\xe6\x26\xfc\x06\xcf\x20" "\x1d\x07\xfa\x20\xfb\x06\x10\x27" 
	"\xd1\x06\x3c\x21\x1e\x07\x1c\x21" "\x21\x07\x3c\x27\x0a\x07\xf8\x20" 
	"\x0c\x07\x4d\x21\x12\x07\x0f\x27" "\xf8\x06\x6f\x21\x12\x07\x3d\x21" 
	"\x2f\x07\x42\x27\x0e\x07\x38\x21" "\x21\x07\x5c\x21\x23\x07\x16\x27" 
	"\x08\x07\x53\x21\x20\x07\x50\x21" "\x16\x07\x51\x27\x03\x07\x21\x21" 
	"\x10\x07\x83\x21\x1a\x07\x31\x27" "\xfd\x06\x20\x21\x21\x07\x80\x21" 
	"\x22\x07\x16\x27\x07\x07\x4a\x21" "\x27\x07\x87\x21\x1a\x07\x51\x27" 
	"\x0b\x07\xa9\x21\x21\x07\xe3\x21" "\x04\x07\x69\x27\xf0\x06\x43\x21" 
	"\x18\x07\xb8\x21\x19\x07\x3f\x27" "\x09\x07\x5f\x21\x20\x07\xaf\x21" 
	"\x0d\x07\xac\x27\xe8\x06\x75\x21" "\x11\x07\xf7\x21\x22\x07\xa6\x27" 
	"\x00\x07\x94\x21\x18\x07\x98\x21" "\x14\x07\x5b\x27\xfe\x06\x49\x21" 
	"\x16\x07\xb6\x21\x08\x07\x5f\x27" "\xf0\x06\xa6\x21\x10\x07\xff\x21" 
	"\x20\x07\x46\x27\x03\x07\x86\x21" "\x21\x07\xb0\x21\xda\x06\x4c\x27" 
	"\xbc\x06\xb8\x21\x21\x07\xa7\x21" "\x24\x07\xf3\x26\x05\x07\x5c\x21" 
	"\x21\x07\x9d\x21\x01\x07\x89\x27" "\xeb\x06\xd8\x21\x02\x07\xe2\x21" 
	"\x13\x07\x30\x27\xee\x06\x71\x21" "\x21\x07\x8c\x21\x1b\x07\x64\x27" 
	"\xfd\x06\x82\x21\x12\x07\x7e\x21" "\x0e\x07\x7a\x27\xf5\x06\xac\x21" 
	"\x0c\x07\x8e\x21\x21\x07\xd6\x27" "\x00\x07\xb6\x21\x13\x07\xbc\x21" 
	"\x23\x07\x61\x27\x09\x07\x56\x21" "\x23\x07\x9d\x21\x21\x07\xda\x26" 
	"\x04\x07\x43\x21\x14\x07\x3d\x21" "\x04\x07\xf2\x26\xff\x06\x3e\x21" 
	"\x17\x07\x29\x21\xf7\x06\xe6\x26" "\xdc\x06\x24\x21\x12\x07\x54\x21" 
	"\x23\x07\xcc\x26\x0d\x07\x4d\x21" "\x12\x07\x6c\x21\xff\x06\x3d\x27" 
	"\xda\x06\x2e\x21\x14\x07\x77\x21" "\x11\x07\x78\x27\x00\x07\x72\x21" 
	"\x14\x07\xac\x21\x1f\x07\x37\x27" "\x09\x07\x64\x21\x13\x07\x75\x21" 
	"\x13\x07\x2f\x27\xf3\x06\x42\x21" "\x20\x07\x58\x21\x29\x07\xde\x26" 
	"\x06\x07\x1c\x21\x22\x07\x2e\x21" "\xef\x06\xb1\x26\xe0\x06\x21\x21" 
	"\x16\x07\x13\x21\x19\x07\xb3\x26" "\xfd\x06\xf4\x20\x1f\x07\x29\x21" 
	"\x04\x07\xa1\x26\xe7\x06\xf4\x20" "\x18\x07\x40\x21\x16\x07\x03\x27" 
	"\xfd\x06\x69\x21\x16\x07\x60\x21" "\x1c\x07\x02\x27\x03\x07\x70\x21" 
	"\x19\x07\x72\x21\x21\x07\xea\x26" "\x09\x07\x04\x21\x24\x07\x58\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x13\x07\x8a\x26\xf3\x06\x3c\x21" "\x14\x07\x0e\x21\x21\x07\x31\x26" 
	"\x04\x07\xdd\x20\x16\x07\x23\x21" "\x15\x07\x2a\x26\x0c\x07\xcf\x20" 
	"\x0b\x07\xee\x20\x04\x07\x2c\x26" "\xfe\x06\x01\x21\x06\x07\xe9\x20" 
	"\xe3\x06\xe8\x26\xbe\x06\x3e\x21" "\x14\x07\x20\x21\x1a\x07\xd0\x26" 
	"\xf8\x06\xe6\x20\x17\x07\xe8\x20" "\xfd\x06\x1a\x27\xe5\x06\x3d\x21" 
	"\x0b\x07\x19\x21\x12\x07\xdd\x26" "\x02\x07\x40\x21\x09\x07\x33\x21" 
	"\xfd\x06\xe7\x26\xe1\x06\x39\x21" "\x13\x07\x20\x21\x10\x07\x75\x26" 
	"\xf0\x06\x19\x21\x17\x07\xeb\x20" "\x11\x07\x6e\x26\x08\x07\x19\x21" 
	"\x1e\x07\x01\x21\x24\x07\xa9\x26" "\x11\x07\xfb\x20\x18\x07\x37\x21" 
	"\x10\x07\xe2\x26\xfb\x06\x23\x21" "\x0a\x07\x4d\x21\x1f\x07\x21\x27" 
	"\x05\x07\x2a\x21\x0f\x07\x58\x21" "\x0f\x07\xf9\x26\xfe\x06\xed\x20" 
	"\x11\x07\x3f\x21\x12\x07\x9d\x26" "\xfb\x06\x0d\x21\x14\x07\x11\x21" 
	"\x11\x07\xa1\x26\xf0\x06\xde\x20" "\x0d\x07\x19\x21\x23\x07\xcb\x26" 
	"\x06\x07\xf7\x20\x17\x07\x2d\x21" "\x01\x07\xbc\x26\xeb\x06\x1f\x21" 
	"\x15\x07\x0f\x21\x16\x07\xcc\x26" "\x04\x07\x07\x21\x0e\x07\x87\x21" 
	"\x20\x07\x34\x27\x11\x07\x4d\x21" "\x1a\x07\x8e\x21\x0c\x07\x01\x27" 
	"\xe5\x06\x2c\x21\x14\x07\x86\x21" "\x0e\x07\xf0\x26\x03\x07\x4e\x21" 
	"\x19\x07\xae\x21\x15\x07\x19\x27" "\xeb\x06\x2d\x21\x14\x07\xae\x21" 
	"\x1e\x07\xa7\x26\x05\x07\x39\x21" "\x18\x07\x4b\x21\x13\x07\x8a\x26" 
	"\xf7\x06\x0f\x21\x14\x07\x51\x21" "\x1c\x07\x00\x27\x04\x07\x4d\x21" 
	"\x0a\x07\x55\x21\x1b\x07\x1f\x27" "\x0d\x07\x52\x21\x17\x07\x6b\x21" 
	"\x08\x07\x51\x27\xe8\x06\x46\x21" "\x18\x07\xa0\x21\x09\x07\x4c\x27" 
	"\xe7\x06\x35\x21\x1b\x07\xc5\x21" "\x15\x07\x3e\x27\xfb\x06\x66\x21" 
	"\x0a\x07\xdc\x21\x15\x07\x19\x27" "\x12\x07\x61\x21\x11\x07\xc1\x21" 
	"\x0a\x07\x3d\x27\xf7\x06\x8e\x21" "\x1b\x07\xd7\x21\x06\x07\x6e\x27" 
	"\xe0\x06\x7b\x21\x19\x07\xe1\x21" "\x25\x07\x4c\x27\x17\x07\xb1\x21" 
	"\x20\x07\xe2\x21\x0d\x07\xf4\x26" "\xfc\x06\xaf\x21\x1b\x07\xc3\x21" 
	"\x26\x07\xd6\x26\x00\x07\x83\x21" "\x0c\x07\x9e\x21\x27\x07\xb9\x26" 
	"\x15\x07\x8b\x21\x18\x07\x9b\x21" "\xf8\x06\xf9\x26\xdb\x06\xa0\x21" 
	"\x13\x07\x99\x21\x1d\x07\xd6\x26" "\x08\x07\x89\x21\x13\x07\x82\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf0\x06\x9d\x27\xd0\x06\xb2\x21" "\x10\x07\x0e\x22\x25\x07\xb0\x27" 
	"\x00\x07\xa8\x21\x26\x07\x0b\x22" "\x23\x07\x55\x27\x14\x07\xad\x21" 
	"\x0c\x07\xdb\x21\x1f\x07\x2a\x27" "\x04\x07\x7c\x21\x1c\x07\xbc\x21" 
	"\x10\x07\x09\x27\x00\x07\x92\x21" "\x1f\x07\xb3\x21\x29\x07\xf4\x26" 
	"\x04\x07\x4b\x21\x12\x07\x8f\x21" "\x1a\x07\x33\x27\x02\x07\x29\x21" 
	"\x1d\x07\xba\x21\x0c\x07\xdd\x27" "\xec\x06\x92\x21\x18\x07\xe9\x21" 
	"\x22\x07\xd1\x27\x0d\x07\xcc\x21" "\x19\x07\x1d\x22\x14\x07\x62\x27" 
	"\xf7\x06\x51\x21\x24\x07\x94\x21" "\xe7\x06\x6b\x27\xcb\x06\x77\x21" 
	"\x12\x07\x73\x21\x1f\x07\xd9\x26" "\x06\x07\x29\x21\x11\x07\x44\x21" 
	"\x1b\x07\xbb\x26\xf5\x06\x16\x21" "\x15\x07\xfc\x20\x1f\x07\xcd\x26" 
	"\x05\x07\x1c\x21\x0e\x07\x2a\x21" "\x0d\x07\x2d\x27\xf2\x06\x2f\x21" 
	"\x14\x07\x3a\x21\x1d\x07\x6e\x27" "\x09\x07\x46\x21\x1a\x07\x59\x21" 
	"\x21\x07\x6c\x27\x08\x07\x20\x21" "\x12\x07\x46\x21\x1d\x07\xf1\x26" 
	"\x0d\x07\x33\x21\x15\x07\x22\x21" "\x14\x07\x21\x27\x10\x07\x2e\x21" 
	"\x00\x07\x08\x21\x02\x07\xda\x26" "\xef\x06\x0c\x21\x16\x07\x8a\x21" 
	"\x19\x07\x10\x27\x04\x07\xd7\x20" "\x1e\x07\x22\x21\x18\x07\x18\x27" 
	"\xf4\x06\x0a\x21\x18\x07\x40\x21" "\xfc\x06\x04\x27\xea\x06\x22\x21" 
	"\x21\x07\x54\x21\x16\x07\x3a\x27" "\x02\x07\x00\x21\x10\x07\x65\x21" 
	"\x1d\x07\x12\x27\xf7\x06\x2a\x21" "\x1a\x07\x6e\x21\x0f\x07\x2d\x27" 
	"\xec\x06\x46\x21\x18\x07\xa5\x21" "\xfd\x06\x4f\x27\xea\x06\x39\x21" 
	"\x0d\x07\x81\x21\x12\x07\x20\x27" "\xfe\x06\x2b\x21\x14\x07\x7e\x21" 
	"\x15\x07\xbd\x26\x03\x07\x1e\x21" "\x13\x07\x53\x21\x12\x07\xbb\x26" 
	"\xf7\x06\x1a\x21\x17\x07\x30\x21" "\x09\x07\x26\x27\xf6\x06\x30\x21" 
	"\x13\x07\x62\x21\x05\x07\x78\x27" "\xf8\x06\x5c\x21\x17\x07\xd1\x21" 
	"\x13\x07\x35\x27\xf7\x06\x79\x21" "\x11\x07\x83\x21\xeb\x06\x20\x27" 
	"\xc5\x06\x71\x21\x1d\x07\xab\x21" "\x16\x07\x5a\x27\x0b\x07\x47\x21" 
	"\x0f\x07\xc7\x21\x14\x07\x6e\x27" "\xf5\x06\x7b\x21\x17\x07\xb1\x21" 
	"\x13\x07\x63\x27\xfa\x06\x60\x21" "\x1f\x07\xf9\x21\x19\x07\xda\x27" 
	"\xf4\x06\x8f\x21\x1c\x07\xe9\x21" "\x04\x07\x7f\x27\xf6\x06\xa5\x21" 
	"\x1d\x07\x02\x22\xee\x06\x46\x27" "\xd8\x06\xa3\x21\x14\x07\xe5\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x1e\x07\x6e\x27\xf9\x06\x9f\x21" "\x18\x07\xfd\x21\xf1\x06\x9a\x27" 
	"\xdd\x06\x9d\x21\x0e\x07\x01\x22" "\x1d\x07\x96\x27\x03\x07\xa6\x21" 
	"\x1a\x07\x26\x22\x15\x07\xc6\x27" "\xff\x06\x6f\x21\x1a\x07\x05\x22" 
	"\x1d\x07\xdc\x27\x15\x07\xc7\x21" "\x1b\x07\x1e\x22\x1d\x07\x78\x27" 
	"\x07\x07\x93\x21\x1a\x07\x35\x22" "\xf7\x06\x67\x27\xdb\x06\x9b\x21" 
	"\x14\x07\x10\x22\x0f\x07\x79\x27" "\xf0\x06\x84\x21\x0d\x07\xba\x21" 
	"\x14\x07\x3f\x27\xf1\x06\x7a\x21" "\x11\x07\xde\x21\x10\x07\x5a\x27" 
	"\xf7\x06\x94\x21\x18\x07\xe2\x21" "\x12\x07\x34\x27\xf8\x06\x68\x21" 
	"\x20\x07\xf2\x21\x16\x07\x7c\x27" "\xff\x06\x7d\x21\x1c\x07\xf5\x21" 
	"\x06\x07\xa2\x27\xe3\x06\x60\x21" "\x13\x07\xf8\x21\x14\x07\x9d\x27" 
	"\x02\x07\x7a\x21\x19\x07\xf3\x21" "\x06\x07\xa3\x27\xf7\x06\x7a\x21" 
	"\x1e\x07\x03\x22\x0d\x07\x98\x27" "\xf9\x06\x63\x21\x16\x07\x0b\x22" 
	"\x1d\x07\x9e\x27\xfc\x06\xb2\x21" "\x16\x07\x2d\x22\x1b\x07\xe7\x27" 
	"\xf1\x06\xc1\x21\x12\x07\x65\x22" "\x14\x07\x37\x28\x03\x07\x11\x22" 
	"\x07\x07\x75\x22\x24\x07\xaf\x27" "\x0e\x07\xd8\x21\x11\x07\x3c\x22" 
	"\xfc\x06\x93\x27\xe5\x06\x08\x22" "\x1b\x07\x1a\x22\x08\x07\xb0\x27" 
	"\xec\x06\xe3\x21\x22\x07\x2e\x22" "\x1c\x07\xb9\x27\x13\x07\xf5\x21" 
	"\x14\x07\xf1\x21\xf0\x06\x83\x27" "\xe6\x06\xb9\x21\x15\x07\x20\x22" 
	"\x0e\x07\x8c\x27\xff\x06\xd2\x21" "\x0d\x07\x04\x22\xf8\x06\xe8\x27" 
	"\xde\x06\x49\x22\x23\x07\x31\x22" "\xf3\x06\x5c\x28\xcf\x06\x49\x22" 
	"\xfe\x06\x69\x22\x0f\x07\xcb\x27" "\xf1\x06\xe9\x21\x16\x07\x56\x22" 
	"\xe9\x06\x80\x27\xd9\x06\xb1\x21" "\x25\x07\xf2\x21\x0f\x07\x51\x27" 
	"\xf9\x06\x92\x21\x15\x07\xe7\x21" "\x11\x07\xc0\x27\xf1\x06\xa8\x21" 
	"\x10\x07\x22\x22\x18\x07\x5b\x27" "\xf8\x06\xba\x21\x16\x07\x07\x22" 
	"\x1e\x07\xba\x27\xf9\x06\x91\x21" "\x18\x07\x18\x22\x19\x07\x18\x28" 
	"\xf5\x06\xac\x21\x15\x07\x5c\x22" "\x0c\x07\xaa\x27\xfc\x06\x78\x21" 
	"\x21\x07\x75\x22\x0e\x07\xc5\x27" "\xf8\x06\x9c\x21\x18\x07\x1a\x22" 
	"\x11\x07\x82\x27\xec\x06\x9b\x21" "\x10\x07\x20\x22\x1f\x07\x98\x27" 
	"\xfb\x06\x78\x21\x07\x07\x2e\x22" "\xf1\x06\x92\x27\xdd\x06\xc9\x21" 
	"\x07\x07\x1f\x22\xf5\x06\x83\x27" "\xe2\x06\x9a\x21\x0d\x07\x35\x22" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x19\x07\x88\x27\x04\x07\xba\x21" "\x1c\x07\x49\x22\x19\x07\x93\x27" 
	"\x00\x07\x7f\x21\x12\x07\x4f\x22" "\x0a\x07\x83\x27\x00\x07\x90\x21" 
	"\x13\x07\x34\x22\x06\x07\x5a\x27" "\xea\x06\x86\x21\x19\x07\x15\x22" 
	"\x14\x07\x79\x27\xf6\x06\x95\x21" "\x2c\x07\x35\x22\x20\x07\x59\x27" 
	"\x0c\x07\x92\x21\x1a\x07\x16\x22" "\x17\x07\x8a\x27\x09\x07\x8c\x21" 
	"\x15\x07\x45\x22\x1c\x07\xe4\x27" "\x06\x07\x74\x21\x17\x07\x46\x22" 
	"\x10\x07\x08\x28\xee\x06\xf8\x21" "\x05\x07\x90\x22\x1b\x07\x78\x27" 
	"\xff\x06\xbb\x21\x20\x07\x7d\x22" "\xfb\x06\x92\x27\xe2\x06\xc5\x21" 
	"\x07\x07\x4b\x22\x1f\x07\xa2\x27" "\xfe\x06\x94\x21\x10\x07\x28\x22" 
	"\x1a\x07\x67\x27\xfa\x06\x6e\x21" "\x0f\x07\x0c\x22\x11\x07\x32\x27" 
	"\xee\x06\x77\x21\x1a\x07\xf6\x21" "\x07\x07\x60\x27\xf4\x06\x9a\x21" 
	"\x16\x07\xfb\x21\x0d\x07\x80\x27" "\xff\x06\xb7\x21\x11\x07\x20\x22" 
	"\x04\x07\x6f\x27\xe1\x06\xa2\x21" "\x25\x07\xed\x21\x16\x07\x84\x27" 
	"\xec\x06\x83\x21\x10\x07\x16\x22" "\x12\x07\x33\x27\xf5\x06\x7a\x21" 
	"\x14\x07\x09\x22\x21\x07\x2a\x27" "\x04\x07\x79\x21\x1e\x07\x0e\x22" 
	"\x17\x07\x42\x27\x07\x07\x99\x21" "\x19\x07\x41\x22\x14\x07\x51\x27" 
	"\x00\x07\x9e\x21\x17\x07\x2e\x22" "\x1e\x07\xe3\x27\xfd\x06\x99\x21" 
	"\x13\x07\xf9\x21\x24\x07\x60\x27" "\x05\x07\xb1\x21\x19\x07\x1c\x22" 
	"\x1d\x07\x5a\x27\xfd\x06\x69\x21" "\x14\x07\x08\x22\x1c\x07\x6e\x27" 
	"\x0b\x07\x5e\x21\x1d\x07\xf2\x21" "\x1e\x07\x56\x27\x0b\x07\x7a\x21" 
	"\x15\x07\xe8\x21\x16\x07\xc9\x26" "\x05\x07\x61\x21\x1a\x07\xd6\x21" 
	"\x21\x07\x3c\x27\xff\x06\x3a\x21" "\x1b\x07\xf4\x21\x11\x07\x42\x27" 
	"\xf5\x06\x21\x21\x1a\x07\xb8\x21" "\x12\x07\x4f\x27\xfa\x06\x55\x21" 
	"\x16\x07\xec\x21\x0b\x07\x5d\x27" "\xfb\x06\x11\x21\x18\x07\xeb\x21" 
	"\x19\x07\x33\x27\xfc\x06\x63\x21" "\x1e\x07\x16\x22\x14\x07\x6e\x27" 
	"\xf6\x06\x6e\x21\x20\x07\x06\x22" "\x1f\x07\x6d\x27\x06\x07\x61\x21" 
	"\x24\x07\xff\x21\x2e\x07\x9f\x27" "\x0f\x07\x92\x21\x1e\x07\x26\x22" 
	"\x24\x07\xc5\x27\x0e\x07\x78\x21" "\x1d\x07\x17\x22\x1e\x07\xbd\x27" 
	"\xf7\x06\x6d\x21\x20\x07\x2f\x22" "\x2a\x07\xbc\x27\x0d\x07\x9b\x21" 
	"\x1d\x07\x0b\x22\x1e\x07\x64\x27" "\x02\x07\x58\x21\x1d\x07\xfd\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x21\x07\x5d\x27\x02\x07\x49\x21" "\x18\x07\xe3\x21\x27\x07\x7a\x27" 
	"\x0f\x07\x80\x21\x1b\x07\x02\x22" "\x16\x07\x41\x27\x11\x07\xa3\x21" 
	"\x0f\x07\xe6\x21\x0c\x07\x7f\x27" "\xf9\x06\x8f\x21\x12\x07\xed\x21" 
	"\x1f\x07\xa2\x27\x07\x07\x8d\x21" "\x16\x07\x17\x22\x1c\x07\x90\x27" 
	"\xff\x06\x74\x21\x1a\x07\x1a\x22" "\x18\x07\x7b\x27\xfc\x06\x5a\x21" 
	"\x1c\x07\x00\x22\x14\x07\x92\x27" "\x04\x07\x61\x21\x13\x07\xd4\x21" 
	"\x21\x07\x6b\x27\x05\x07\x63\x21" "\x15\x07\xca\x21\xff\x06\x61\x27" 
	"\xe6\x06\x4f\x21\x19\x07\xe5\x21" "\x1a\x07\x29\x27\x13\x07\x77\x21" 
	"\x14\x07\xbe\x21\x1f\x07\x42\x27" "\x11\x07\x68\x21\x16\x07\xdc\x21" 
	"\x22\x07\xf2\x26\x0a\x07\x77\x21" "\x1c\x07\xb9\x21\x27\x07\x2f\x27" 
	"\x0f\x07\x55\x21\x15\x07\xd6\x21" "\x20\x07\x18\x27\xfe\x06\x31\x21" 
	"\x20\x07\xea\x21\x0c\x07\x6a\x27" "\xfa\x06\x57\x21\x1a\x07\xdd\x21" 
	"\x0d\x07\x6b\x27\xe7\x06\x52\x21" "\x17\x07\x09\x22\x25\x07\x8a\x27" 
	"\x0a\x07\x4a\x21\x20\x07\x20\x22" "\x2a\x07\xd3\x27\x07\x07\xa3\x21" 
	"\x10\x07\xfc\x21\x18\x07\xc5\x27" "\xfd\x06\x6c\x21\x13\x07\x13\x22" 
	"\x16\x07\xa4\x27\xf4\x06\x6c\x21" "\x14\x07\xd4\x21\x0e\x07\x3d\x27" 
	"\xef\x06\x63\x21\x12\x07\xe7\x21" "\x25\x07\x4c\x27\x06\x07\x72\x21" 
	"\x16\x07\x07\x22\xfe\x06\x84\x27" "\xdf\x06\x8b\x21\x16\x07\x13\x22" 
	"\x1b\x07\x5a\x27\xff\x06\x7f\x21" "\x0f\x07\xd8\x21\x16\x07\xae\x27" 
	"\xf4\x06\x95\x21\x0f\x07\xdd\x21" "\x14\x07\x72\x27\x0a\x07\x95\x21" 
	"\x1f\x07\x0c\x22\x1a\x07\x6e\x27" "\x04\x07\xa5\x21\x0f\x07\xda\x21" 
	"\x15\x07\x8c\x27\x00\x07\xbf\x21" "\x22\x07\x0d\x22\x15\x07\x69\x27" 
	"\xfb\x06\x83\x21\x1c\x07\xf9\x21" "\x1a\x07\x5e\x27\x04\x07\xb5\x21" 
	"\x15\x07\xdf\x21\x19\x07\x6a\x27" "\xff\x06\xb4\x21\x1b\x07\x26\x22" 
	"\x23\x07\xb2\x27\x08\x07\xf2\x21" "\x19\x07\x27\x22\x17\x07\x43\x27" 
	"\x03\x07\xc4\x21\x1e\x07\x5b\x22" "\x23\x07\xa8\x27\x02\x07\x7d\x21" 
	"\x1c\x07\x23\x22\x2a\x07\x10\x27" "\x18\x07\xa5\x21\x0c\x07\x01\x22" 
	"\x2d\x07\x4c\x27\x03\x07\xa8\x21" "\x09\x07\xcf\x21\x1d\x07\x08\x27" 
	"\x0b\x07\x80\x21\x18\x07\x17\x22" "\x1b\x07\x23\x27\x0d\x07\x85\x21" 
	"\x13\x07\xed\x21\x22\x07\x2f\x27" "\x04\x07\x47\x21\x15\x07\x96\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x16\x07\xf2\x26\xfe\x06\x54\x21" "\x1a\x07\xc5\x21\x28\x07\xd7\x26" 
	"\x10\x07\x76\x21\x21\x07\xcd\x21" "\x19\x07\xe9\x26\xf3\x06\x30\x21" 
	"\x1d\x07\x87\x21\x31\x07\xb6\x26" "\x1c\x07\x37\x21\x2a\x07\x87\x21" 
	"\x27\x07\x26\x26\x09\x07\xe7\x20" "\x20\x07\x62\x21\x1c\x07\xdf\x25" 
	"\xf3\x06\x8b\x20\x14\x07\x77\x21" "\xcb\x06\x01\x25\xb9\x06\x0f\x20" 
	"\xbf\x06\xb2\x20\xa3\x06\x3a\x24" "\x98\x06\x9a\x1f\xa1\x06\x66\x1f" 
	"\x7c\x06\xb0\x21\x5c\x06\xce\x1d" "\x61\x06\xb2\x1c\x83\x06\x22\x22" 
	"\x63\x06\xe6\x1d\x6b\x06\x79\x1d" "\xcf\x06\xad\x22\xbd\x06\x8d\x1e" 
	"\xcf\x06\x63\x1e\xe8\x06\x2e\x23" "\xd8\x06\x28\x1f\xea\x06\xc4\x1e" 
	"\xe3\x06\xec\x23\xd9\x06\x3c\x1f" "\xe0\x06\xb3\x1e\xeb\x06\x3f\x24" 
	"\xe1\x06\x8b\x1f\xdf\x06\xc5\x1e" "\xe2\x06\x19\x24\xd4\x06\xa2\x1f" 
	"\xd3\x06\xc5\x1e\xe7\x06\xdb\x23" "\xd0\x06\x38\x1f\xd3\x06\x9e\x1e" 
	"\xdb\x06\xf9\x23\xc0\x06\x60\x1f" "\xd2\x06\xc4\x1e\x9a\x06\x54\x24" 
	"\x87\x06\x98\x1f\xcd\x06\xf4\x1e" "\xe1\x06\x66\x24\xd1\x06\x7b\x1f" 
	"\xd2\x06\x12\x1f\xe8\x06\x93\x24" "\xd1\x06\xb4\x1f\xcf\x06\x14\x1f" 
	"\xca\x06\xaa\x24\xb7\x06\x97\x1f" "\xd3\x06\x4e\x1f\xd3\x06\xb1\x24" 
	"\xb6\x06\xc5\x1f\xd1\x06\x5c\x1f" "\xd8\x06\xa2\x24\xbc\x06\xc6\x1f" 
	"\xd0\x06\x19\x1f\xe2\x06\x7d\x24" "\xbe\x06\x84\x1f\xd5\x06\xc6\x1e" 
	"\xd4\x06\xc6\x24\xc9\x06\xa0\x1f" "\xd1\x06\x39\x1f\xcf\x06\xd0\x24" 
	"\xcc\x06\xaa\x1f\xd1\x06\x53\x1f" "\xd4\x06\xbd\x24\xc1\x06\xbf\x1f" 
	"\xcc\x06\x32\x1f\xe2\x06\xc3\x24" "\xd5\x06\xa2\x1f\xcc\x06\x4e\x1f" 
	"\xe1\x06\xae\x24\xcd\x06\xbc\x1f" "\xcd\x06\x2e\x1f\xca\x06\x63\x24" 
	"\xbd\x06\x6d\x1f\xcb\x06\x1e\x1f" "\xe3\x06\x2a\x24\xcb\x06\x27\x1f" 
	"\xca\x06\xd2\x1e\xd8\x06\x74\x24" "\xc2\x06\x45\x1f\xda\x06\x12\x1f" 
	"\xc3\x06\x76\x24\xba\x06\x76\x1f" "\xc5\x06\x13\x1f\xdb\x06\x7c\x24" 
	"\xc2\x06\x7f\x1f\xcb\x06\x1f\x1f" "\xe6\x06\x73\x24\xca\x06\x7f\x1f" 
	"\xd9\x06\x20\x1f\xd3\x06\xad\x24" "\xaf\x06\x8d\x1f\xcd\x06\x2d\x1f" 
	"\xe5\x06\x7a\x24\xc6\x06\x9d\x1f" "\xc8\x06\xf3\x1e\xd3\x06\x34\x24" 
	"\xbf\x06\x0a\x1f\xc7\x06\xab\x1e" "\xdd\x06\x3b\x24\xcc\x06\x2c\x1f" 
	"\xcb\x06\xb7\x1e\xe2\x06\x51\x24" "\xd3\x06\x5b\x1f\xd6\x06\x1e\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdb\x06\x73\x24\xd2\x06\x54\x1f" "\xc3\x06\xd0\x1e\xea\x06\x72\x24" 
	"\xd5\x06\x47\x1f\xd1\x06\x08\x1f" "\xeb\x06\x32\x24\xd7\x06\x51\x1f" 
	"\xcd\x06\xee\x1e\xd7\x06\x63\x24" "\xc1\x06\x75\x1f\xd0\x06\xce\x1e" 
	"\xb7\x06\x43\x24\xaa\x06\xea\x1e" "\xd0\x06\x87\x1e\xcb\x06\x5a\x24" 
	"\xa9\x06\x02\x1f\xc4\x06\x95\x1e" "\xe4\x06\x44\x24\xc1\x06\x6a\x1f" 
	"\xd6\x06\xe8\x1e\xdf\x06\x1f\x24" "\xbc\x06\x3c\x1f\xd0\x06\xe0\x1e" 
	"\xc3\x06\x79\x24\xb1\x06\x3d\x1f" "\xcc\x06\xd6\x1e\xda\x06\x44\x24" 
	"\xcc\x06\x15\x1f\xd8\x06\xe6\x1e" "\xc6\x06\x4d\x24\xab\x06\x1f\x1f" 
	"\xd1\x06\xcb\x1e\xcb\x06\x57\x24" "\xa0\x06\xfa\x1e\xd1\x06\x9e\x1e" 
	"\xd9\x06\xf2\x23\xcf\x06\xdc\x1e" "\xd4\x06\x7b\x1e\xc9\x06\x53\x24" 
	"\xba\x06\x37\x1f\xb7\x06\xce\x1e" "\xd1\x06\x27\x24\xb9\x06\x37\x1f" 
	"\xcc\x06\xef\x1e\xea\x06\x2e\x24" "\xd5\x06\x3a\x1f\xcc\x06\xda\x1e" 
	"\xdf\x06\x35\x24\xcd\x06\x30\x1f" "\xd3\x06\xd6\x1e\xd4\x06\x25\x24" 
	"\xc4\x06\x2c\x1f\xd3\x06\xf4\x1e" "\xd9\x06\x2e\x24\xb4\x06\x25\x1f" 
	"\xc3\x06\x9a\x1e\xde\x06\x02\x24" "\xa8\x06\xe3\x1e\xcf\x06\x3b\x1e" 
	"\xaf\x06\x3a\x24\x98\x06\x47\x1f" "\xd3\x06\xb6\x1e\xde\x06\x4e\x24" 
	"\xbf\x06\x15\x1f\xc9\x06\xee\x1e" "\xd6\x06\x46\x24\xad\x06\x13\x1f" 
	"\xcd\x06\xc5\x1e\xde\x06\x52\x24" "\xc1\x06\x14\x1f\xda\x06\xd3\x1e" 
	"\xdf\x06\x59\x24\xcb\x06\x1b\x1f" "\xd1\x06\xb8\x1e\xd7\x06\x01\x24" 
	"\xd2\x06\x1d\x1f\xc9\x06\xae\x1e" "\xd1\x06\xed\x23\xac\x06\xec\x1e" 
	"\xd8\x06\x6d\x1e\xd6\x06\x31\x24" "\xbc\x06\xf4\x1e\xd9\x06\x95\x1e" 
	"\xd6\x06\x4e\x24\xcb\x06\x24\x1f" "\xd5\x06\xd3\x1e\xc4\x06\x51\x24" 
	"\xaf\x06\x3e\x1f\xc4\x06\x9a\x1e" "\xe7\x06\x06\x24\xca\x06\x3e\x1f" 
	"\xca\x06\xad\x1e\xe2\x06\x20\x24" "\xc9\x06\x15\x1f\xd1\x06\x96\x1e" 
	"\xd9\x06\x48\x24\xc1\x06\xed\x1e" "\xcd\x06\x87\x1e\xa7\x06\xd7\x23" 
	"\x97\x06\xaa\x1e\xc3\x06\x22\x1e" "\xc3\x06\xdd\x23\x9b\x06\xee\x1e" 
	"\xd0\x06\x77\x1e\xce\x06\x22\x24" "\xac\x06\x2c\x1f\xd6\x06\xa7\x1e" 
	"\xd6\x06\x23\x24\xc2\x06\xd0\x1e" "\xc4\x06\xb2\x1e\xe0\x06\x25\x24" 
	"\xd0\x06\x15\x1f\xce\x06\x8b\x1e" "\xd9\x06\x0b\x24\xc4\x06\x25\x1f" 
	"\xce\x06\xac\x1e\xea\x06\x22\x24" "\xc5\x06\x12\x1f\xd9\x06\x86\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x97\x06\x43\x24\x7b\x06\x34\x1f" "\xbe\x06\x8b\x1e\xb7\x06\x29\x24" 
	"\xa7\x06\x14\x1f\xb1\x06\x98\x1e" "\xd4\x06\x16\x24\xc6\x06\x59\x1f" 
	"\xcf\x06\xd7\x1e\xe9\x06\x33\x24" "\xd2\x06\x42\x1f\xd4\x06\xd2\x1e" 
	"\xbb\x06\x46\x24\xa3\x06\x39\x1f" "\xd1\x06\xcb\x1e\xe1\x06\x2b\x24" 
	"\xcf\x06\x37\x1f\xcc\x06\xf0\x1e" "\xdf\x06\x60\x24\xc3\x06\x40\x1f" 
	"\xc4\x06\xd1\x1e\xeb\x06\x88\x24" "\xcf\x06\x52\x1f\xd2\x06\xbc\x1e" 
	"\xc4\x06\xfb\x23\xa5\x06\x15\x1f" "\xd0\x06\x77\x1e\xbd\x06\x63\x24" 
	"\xaf\x06\x49\x1f\xd5\x06\xe2\x1e" "\xd7\x06\x3f\x24\xc2\x06\x48\x1f" 
	"\xd5\x06\x0e\x1f\xda\x06\x04\x24" "\xb4\x06\x2c\x1f\xd1\x06\xd1\x1e" 
	"\xc7\x06\x49\x24\xb2\x06\x42\x1f" "\xd0\x06\xcf\x1e\xd3\x06\x3c\x24" 
	"\xc7\x06\x1c\x1f\xd4\x06\xcd\x1e" "\xcb\x06\x1b\x24\xbf\x06\x2f\x1f" 
	"\xce\x06\xaa\x1e\xe7\x06\x9d\x23" "\xc7\x06\xbd\x1e\xcc\x06\x3c\x1e" 
	"\xe4\x06\xd8\x23\xcf\x06\x20\x1f" "\xcc\x06\x7f\x1e\xe2\x06\x18\x24" 
	"\xd1\x06\x16\x1f\xd3\x06\xa0\x1e" "\xc1\x06\xba\x23\xac\x06\x23\x1f" 
	"\xc6\x06\x88\x1e\xe4\x06\xf1\x23" "\xc1\x06\xfb\x1e\xc8\x06\x93\x1e" 
	"\xd8\x06\xc1\x23\xce\x06\xed\x1e" "\xca\x06\x88\x1e\xc1\x06\xb2\x23" 
	"\xa5\x06\xb2\x1e\xc4\x06\x5f\x1e" "\xde\x06\x4e\x23\xc5\x06\x64\x1e" 
	"\xc5\x06\x08\x1e\xdc\x06\x8c\x23" "\xb9\x06\x8f\x1e\xd1\x06\x2f\x1e" 
	"\xe2\x06\xc0\x23\xc7\x06\x07\x1f" "\xe3\x06\x8e\x1e\xe6\x06\xb2\x23" 
	"\xd5\x06\xf6\x1e\xd3\x06\x7c\x1e" "\xbd\x06\xcf\x23\xad\x06\xf5\x1e" 
	"\xcc\x06\x95\x1e\xeb\x06\x01\x24" "\xc1\x06\x26\x1f\xd4\x06\xa4\x1e" 
	"\xca\x06\x10\x24\xb4\x06\xef\x1e" "\xcc\x06\x9d\x1e\xd3\x06\xa3\x23" 
	"\xc8\x06\xb2\x1e\xcd\x06\x5d\x1e" "\xc6\x06\x90\x23\xbb\x06\xac\x1e" 
	"\xc4\x06\x36\x1e\xd8\x06\xf5\x23" "\xbf\x06\x01\x1f\xcf\x06\x6a\x1e" 
	"\xdd\x06\xdc\x23\xc1\x06\xf0\x1e" "\xc9\x06\x79\x1e\xdb\x06\xde\x23" 
	"\xcf\x06\xef\x1e\xc1\x06\x56\x1e" "\xde\x06\xec\x23\xc7\x06\x04\x1f" 
	"\xd3\x06\x71\x1e\xdb\x06\xeb\x23" "\xc8\x06\xe6\x1e\xd6\x06\x51\x1e" 
	"\xc5\x06\x69\x23\xb7\x06\xbe\x1e" "\xca\x06\x17\x1e\xd2\x06\xc8\x23" 
	"\xb3\x06\xa9\x1e\xd0\x06\xfa\x1d" "\xdc\x06\x8a\x23\xc1\x06\xcd\x1e" 
	"\xce\x06\x31\x1e\xda\x06\xb1\x23" "\xc9\x06\x01\x1f\xdc\x06\x79\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc6\x06\xa7\x23\xb6\x06\xb9\x1e" "\xcd\x06\x6a\x1e\xcc\x06\x83\x23" 
	"\xba\x06\xab\x1e\xc6\x06\x10\x1e" "\xd0\x06\x6b\x23\xb6\x06\x91\x1e" 
	"\xd2\x06\x0f\x1e\xc4\x06\x22\x23" "\xa9\x06\x74\x1e\xcc\x06\xa4\x1d" 
	"\xc9\x06\xdc\x22\xb8\x06\x66\x1e" "\xd3\x06\xa7\x1d\x8d\x06\x98\x23" 
	"\x77\x06\xca\x1e\xcc\x06\xbe\x1d" "\xd4\x06\x8a\x23\xc8\x06\xbd\x1e" 
	"\xd4\x06\xdd\x1d\xe0\x06\x60\x23" "\xc5\x06\x73\x1e\xd0\x06\xd1\x1d" 
	"\xe5\x06\x9d\x23\xd2\x06\x97\x1e" "\xce\x06\xa7\x1d\xd3\x06\xc2\x23" 
	"\xb9\x06\xa1\x1e\xc7\x06\xb5\x1d" "\xcb\x06\x4d\x23\xad\x06\xa4\x1e" 
	"\xc9\x06\xd0\x1d\xe8\x06\x20\x23" "\xcb\x06\x62\x1e\xcf\x06\x99\x1d" 
	"\xd1\x06\x8a\x23\xb1\x06\x9a\x1e" "\xca\x06\xba\x1d\xa9\x06\x84\x23" 
	"\x97\x06\xd6\x1e\xca\x06\xff\x1d" "\xe2\x06\x68\x23\xca\x06\xda\x1e" 
	"\xd3\x06\x01\x1e\xe1\x06\xd2\x23" "\xca\x06\xd1\x1e\xcd\x06\x11\x1e" 
	"\xb9\x06\x90\x23\xa6\x06\x17\x1f" "\xce\x06\x0b\x1e\xc2\x06\x48\x23" 
	"\xac\x06\x60\x1e\xd0\x06\xe1\x1d" "\xda\x06\xdb\x22\xb6\x06\x45\x1e" 
	"\xbe\x06\x6c\x1d\xcf\x06\xb2\x23" "\xa4\x06\x98\x1e\xc5\x06\x01\x1e" 
	"\xdc\x06\xb9\x23\xcf\x06\xc8\x1e" "\xd0\x06\x15\x1e\xd0\x06\xd1\x23" 
	"\xc0\x06\x00\x1f\xca\x06\x20\x1e" "\xc8\x06\xd7\x23\xb8\x06\xe9\x1e" 
	"\xcc\x06\x12\x1e\xd1\x06\xaa\x23" "\xc4\x06\x0a\x1f\xc8\x06\x48\x1e" 
	"\xdd\x06\xfd\x23\xce\x06\x21\x1f" "\xd2\x06\x58\x1e\xe4\x06\x8e\x23" 
	"\xba\x06\x8e\x1e\xc8\x06\xba\x1d" "\xbe\x06\x6d\x23\xa9\x06\xbc\x1e" 
	"\xcf\x06\xd5\x1d\xe7\x06\xb0\x23" "\xc3\x06\x0c\x1f\xd6\x06\x1f\x1e" 
	"\xdf\x06\xde\x23\xd3\x06\xe3\x1e" "\xd1\x06\x53\x1e\xc8\x06\xf7\x23" 
	"\xb3\x06\x31\x1f\xd3\x06\x6f\x1e" "\xc8\x06\x02\x24\xb6\x06\x0c\x1f" 
	"\xdc\x06\xa2\x1e\xd3\x06\x73\x23" "\xba\x06\xb5\x1e\xcc\x06\x48\x1e" 
	"\xa9\x06\x5c\x23\x91\x06\x60\x1e" "\xce\x06\xf6\x1d\xc6\x06\x35\x23" 
	"\xb6\x06\x67\x1e\xca\x06\x2e\x1e" "\xe6\x06\x94\x23\xc6\x06\xb7\x1e" 
	"\xca\x06\x38\x1e\xd5\x06\x96\x23" "\xc1\x06\xe9\x1e\xdb\x06\x5a\x1e" 
	"\x99\x06\x27\x24\x7e\x06\x01\x1f" "\xdb\x06\x7d\x1e\xb6\x06\xc4\x23" 
	"\x9f\x06\x00\x1f\xc6\x06\x6e\x1e" "\xa9\x06\xa3\x23\x89\x06\x21\x1f" 
	"\xca\x06\x5d\x1e\xdb\x06\x75\x23" "\xb5\x06\xb0\x1e\xd6\x06\x06\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x96\x06\x99\x23\x87\x06\xe0\x1e" "\xc8\x06\x1c\x1e\xeb\x06\xf4\x23" 
	"\xd2\x06\x30\x1f\xcb\x06\xb0\x1e" "\xe7\x06\x05\x24\xd7\x06\x57\x1f" 
	"\xd3\x06\x97\x1e\xe1\x06\xbc\x23" "\xc8\x06\x07\x1f\xcc\x06\x8c\x1e" 
	"\xc1\x06\xe2\x23\xb9\x06\x4e\x1f" "\xba\x06\x87\x1e\xd8\x06\x54\x24" 
	"\xbd\x06\x6a\x1f\xd3\x06\x9d\x1e" "\xd9\x06\xac\x23\xc3\x06\x11\x1f" 
	"\xd0\x06\x1c\x1e\xc2\x06\xcc\x23" "\xa9\x06\x56\x1f\x99\x06\xe8\x1d" 
	"\xcc\x06\x14\x24\xc0\x06\x4c\x1f" "\xbe\x06\x6c\x1e\xd4\x06\xd1\x23" 
	"\xba\x06\xe9\x1e\xc5\x06\x41\x1e" "\xeb\x06\x43\x24\xd0\x06\x60\x1f" 
	"\xdd\x06\x55\x1e\xdd\x06\x65\x24" "\xc2\x06\x54\x1f\xcf\x06\x5d\x1e" 
	"\xe1\x06\xf2\x23\xc4\x06\x54\x1f" "\xcd\x06\x14\x1e\xcd\x06\xa9\x23" 
	"\xc5\x06\xe0\x1e\xd1\x06\xe3\x1d" "\xbb\x06\xa7\x23\x9c\x06\xad\x1e" 
	"\xd9\x06\x8e\x1d\xce\x06\x86\x23" "\xb5\x06\xe7\x1e\xb8\x06\xa4\x1d" 
	"\xd4\x06\x7c\x23\xcb\x06\xf9\x1e" "\xc4\x06\x84\x1d\xc9\x06\x91\x23" 
	"\xc9\x06\xb3\x1e\xc4\x06\x97\x1d" "\xbe\x06\x4b\x23\xa1\x06\xce\x1e" 
	"\xd3\x06\x83\x1d\xdd\x06\x77\x23" "\xc2\x06\x0e\x1f\xc5\x06\x9a\x1d" 
	"\xc2\x06\x38\x23\xb5\x06\xad\x1e" "\xd0\x06\xc2\x1d\xcc\x06\xfd\x22" 
	"\xbc\x06\x75\x1e\xcb\x06\xa1\x1d" "\xd8\x06\x7d\x23\xb6\x06\xd2\x1e" 
	"\xcc\x06\xf1\x1d\xe7\x06\xc1\x23" "\xc1\x06\x28\x1f\xd3\x06\x23\x1e" 
	"\xcb\x06\xfb\x23\xc8\x06\x47\x1f" "\xcc\x06\x50\x1e\xb8\x06\x10\x24" 
	"\xa0\x06\x31\x1f\xd6\x06\x86\x1e" "\xd5\x06\x0e\x24\xb9\x06\x29\x1f" 
	"\xd7\x06\x56\x1e\xde\x06\x2d\x24" "\xc5\x06\x44\x1f\xce\x06\x38\x1e" 
	"\xd4\x06\x9f\x23\xb9\x06\xf5\x1e" "\xb3\x06\xf2\x1d\xc7\x06\x8a\x23" 
	"\xbd\x06\x24\x1f\xc6\x06\x1c\x1e" "\x97\x06\x22\x24\x79\x06\x75\x1f" 
	"\xcb\x06\x66\x1e\xdb\x06\xc4\x23" "\xb5\x06\x3c\x1f\xcd\x06\x71\x1e" 
	"\xc1\x06\xe9\x23\xb6\x06\x5a\x1f" "\xd2\x06\x8e\x1e\xd2\x06\x44\x24" 
	"\xd0\x06\x85\x1f\xd4\x06\xbf\x1e" "\xe7\x06\x4b\x24\xc2\x06\x68\x1f" 
	"\xd8\x06\x02\x1f\xc8\x06\xf9\x23" "\xb0\x06\x6b\x1f\xd3\x06\xb4\x1e" 
	"\xc2\x06\x08\x24\xba\x06\x4e\x1f" "\xc6\x06\x77\x1e\xab\x06\x63\x24" 
	"\xa4\x06\x5d\x1f\xd0\x06\xb1\x1e" "\xe5\x06\x4d\x24\xcb\x06\x89\x1f" 
	"\xd5\x06\x88\x1e\xe2\x06\xfc\x23" "\xc2\x06\x5d\x1f\xd2\x06\x84\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdc\x06\x37\x24\xc9\x06\x3a\x1f" "\xc6\x06\xa5\x1e\xe4\x06\x77\x24" 
	"\xd1\x06\x2e\x1f\xcc\x06\xa1\x1e" "\xcf\x06\x09\x24\xa2\x06\xfe\x1e" 
	"\xba\x06\x5c\x1e\xc1\x06\xb2\x23" "\xb2\x06\xe8\x1e\xce\x06\x55\x1e" 
	"\xdf\x06\x25\x24\xcf\x06\x1e\x1f" "\xcb\x06\x31\x1e\xaf\x06\xd9\x23" 
	"\xad\x06\x48\x1f\xc3\x06\x6e\x1e" "\xd0\x06\xb6\x23\xb9\x06\x31\x1f" 
	"\xd3\x06\x8f\x1e\xd9\x06\xf6\x23" "\xac\x06\x31\x1f\xca\x06\x74\x1e" 
	"\xd1\x06\x3a\x24\xb9\x06\x39\x1f" "\xcd\x06\xa6\x1e\xce\x06\xfa\x23" 
	"\xc0\x06\x34\x1f\xd7\x06\x7b\x1e" "\xe2\x06\xf9\x23\xc3\x06\x23\x1f" 
	"\xce\x06\x62\x1e\xe2\x06\xfd\x23" "\xc5\x06\x69\x1f\xd6\x06\xd9\x1e" 
	"\xe5\x06\xdb\x23\xcc\x06\x60\x1f" "\xbf\x06\xbc\x1e\xdf\x06\xe2\x23" 
	"\xca\x06\x69\x1f\xd0\x06\xab\x1e" "\xd6\x06\x84\x23\xc7\x06\x7e\x1f" 
	"\xc3\x06\x90\x1e\xd7\x06\x78\x23" "\xd3\x06\x66\x1f\xca\x06\x7a\x1e" 
	"\xd1\x06\x59\x23\xbf\x06\x5f\x1f" "\xc6\x06\x61\x1e\xce\x06\x3b\x23" 
	"\xc4\x06\xf5\x1e\xc6\x06\x1c\x1e" "\xbf\x06\xb1\x23\xab\x06\x10\x1f" 
	"\xd7\x06\x70\x1e\xd3\x06\xcc\x23" "\xba\x06\x5f\x1f\xd2\x06\x5a\x1e" 
	"\xc3\x06\xbe\x23\xb0\x06\x76\x1f" "\xc7\x06\x3a\x1e\xd9\x06\xc4\x23" 
	"\xc2\x06\x43\x1f\xc8\x06\x68\x1e" "\xd3\x06\xe9\x23\xba\x06\x53\x1f" 
	"\xc8\x06\x79\x1e\xd5\x06\xb3\x23" "\xba\x06\x64\x1f\xc6\x06\x77\x1e" 
	"\xb3\x06\xb4\x23\xa3\x06\x11\x1f" "\xcf\x06\x2c\x1e\xd1\x06\xfc\x23" 
	"\xc8\x06\x4a\x1f\xcb\x06\x46\x1e" "\xcf\x06\x2e\x24\xa9\x06\x57\x1f" 
	"\xce\x06\x9c\x1e\xe3\x06\x1c\x24" "\xc8\x06\x31\x1f\xcf\x06\xa4\x1e" 
	"\xdc\x06\xf2\x23\xc8\x06\x3b\x1f" "\xd0\x06\x7d\x1e\xd5\x06\xae\x23" 
	"\xc2\x06\x16\x1f\xc3\x06\xa2\x1e" "\xba\x06\xcd\x23\xa0\x06\x2e\x1f" 
	"\xc9\x06\x6e\x1e\xe1\x06\x80\x23" "\xbb\x06\xee\x1e\xcd\x06\x4a\x1e" 
	"\xc7\x06\xbb\x23\xc0\x06\xc1\x1e" "\xcc\x06\x30\x1e\xcb\x06\xf7\x23" 
	"\xb3\x06\x24\x1f\xc9\x06\x66\x1e" "\xc6\x06\xf2\x23\xaf\x06\x88\x1f" 
	"\xc8\x06\x8d\x1e\xd9\x06\x3c\x24" "\xc0\x06\x56\x1f\xce\x06\x7f\x1e" 
	"\xce\x06\xeb\x23\xb0\x06\x62\x1f" "\xc4\x06\xb5\x1e\xd3\x06\x01\x24" 
	"\xbf\x06\xe7\x1e\xc7\x06\xb0\x1e" "\xca\x06\xbf\x23\xb2\x06\xd6\x1e" 
	"\xcc\x06\x48\x1e\xc1\x06\x92\x23" "\xac\x06\xdb\x1e\xc7\x06\x02\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbd\x06\x0a\x24\xa3\x06\x15\x1f" "\xc1\x06\x6f\x1e\xb7\x06\xe4\x23" 
	"\xaa\x06\x3f\x1f\xc2\x06\x54\x1e" "\xd8\x06\x18\x24\xc0\x06\x4c\x1f" 
	"\xcb\x06\x72\x1e\xd6\x06\x3d\x24" "\xc2\x06\x52\x1f\xc8\x06\xa2\x1e" 
	"\xcc\x06\x27\x24\xbe\x06\x2e\x1f" "\xbe\x06\xa0\x1e\xc9\x06\x3e\x24" 
	"\xb2\x06\x11\x1f\xca\x06\x7a\x1e" "\xd9\x06\xcb\x23\xbc\x06\xde\x1e" 
	"\xbe\x06\x4f\x1e\xe1\x06\xdd\x23" "\xbd\x06\x22\x1f\xc6\x06\x6b\x1e" 
	"\xc6\x06\xc7\x23\xbc\x06\x30\x1f" "\xc2\x06\x70\x1e\xcc\x06\x29\x24" 
	"\xb0\x06\x1a\x1f\xc5\x06\x65\x1e" "\xbc\x06\x22\x24\xa8\x06\x28\x1f" 
	"\xcc\x06\x64\x1e\xda\x06\xe7\x23" "\xbc\x06\x2a\x1f\xc5\x06\x83\x1e" 
	"\xd2\x06\x08\x24\xc4\x06\x0a\x1f" "\xd0\x06\x62\x1e\xd0\x06\x6b\x23" 
	"\xc9\x06\xa7\x1e\xc0\x06\x22\x1e" "\xcf\x06\x81\x23\xb4\x06\xdd\x1e" 
	"\xc4\x06\x5c\x1e\x9c\x06\x24\x24" "\x79\x06\x46\x1f\xba\x06\x5e\x1e" 
	"\xcf\x06\xde\x23\xc4\x06\xd8\x1e" "\xca\x06\x42\x1e\xc7\x06\x96\x23" 
	"\xc7\x06\x08\x1f\xc8\x06\x61\x1e" "\xd0\x06\xeb\x23\xbe\x06\xf2\x1e" 
	"\xbe\x06\x38\x1e\xc2\x06\xe2\x23" "\xad\x06\x1c\x1f\xc8\x06\x2d\x1e" 
	"\xd0\x06\x89\x23\xbb\x06\xbd\x1e" "\xbd\x06\xe3\x1d\xc5\x06\xa1\x23" 
	"\xbf\x06\xe1\x1e\xc1\x06\x13\x1e" "\xcc\x06\xd3\x23\xa5\x06\x0b\x1f" 
	"\xc9\x06\x71\x1e\xbc\x06\xcf\x23" "\x97\x06\xf1\x1e\xce\x06\x6d\x1e" 
	"\xc0\x06\xd6\x23\xad\x06\xeb\x1e" "\xb8\x06\x72\x1e\xd9\x06\xf2\x23" 
	"\xc0\x06\xcc\x1e\xc1\x06\x47\x1e" "\xce\x06\x9d\x23\xca\x06\x1e\x1f" 
	"\xc9\x06\x46\x1e\xc2\x06\x81\x23" "\xae\x06\xa6\x1e\xc9\x06\xf6\x1d" 
	"\xd1\x06\x11\x23\xb1\x06\x94\x1e" "\xc2\x06\xa5\x1d\xae\x06\xe2\x23" 
	"\x9b\x06\x00\x1f\xb6\x06\x22\x1e" "\xc2\x06\x17\x24\xa4\x06\xfa\x1e" 
	"\xb4\x06\x7c\x1e\xd9\x06\x00\x24" "\xb4\x06\x10\x1f\xcb\x06\x7a\x1e" 
	"\xcb\x06\xc9\x23\xb9\x06\x21\x1f" "\xc0\x06\x7e\x1e\xb9\x06\x0b\x24" 
	"\xb2\x06\x14\x1f\xb3\x06\x8f\x1e" "\xd7\x06\xcc\x23\xc7\x06\xe8\x1e" 
	"\xc5\x06\x3f\x1e\xe4\x06\xec\x23" "\xbb\x06\xa9\x1e\xc4\x06\x2a\x1e" 
	"\xd2\x06\x28\x24\xc1\x06\xfb\x1e" "\xc3\x06\x49\x1e\xac\x06\xfb\x23" 
	"\x8b\x06\x17\x1f\xc9\x06\x4e\x1e" "\xcd\x06\x12\x24\xae\x06\x07\x1f" 
	"\xc4\x06\x2b\x1e\xd6\x06\xe0\x23" "\xc6\x06\x1c\x1f\xca\x06\x78\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc8\x06\xbb\x23\xb0\x06\x0a\x1f" "\xbe\x06\x5c\x1e\xb8\x06\x6c\x23" 
	"\xa3\x06\x97\x1e\xbb\x06\xfc\x1d" "\xe1\x06\x36\x23\xbb\x06\x55\x1e" 
	"\xba\x06\xc5\x1d\xdc\x06\x9a\x23" "\xc1\x06\xcb\x1e\xcb\x06\x31\x1e" 
	"\xbf\x06\xc8\x23\xa2\x06\xea\x1e" "\xbb\x06\x45\x1e\xb4\x06\xec\x23" 
	"\xa8\x06\xf4\x1e\xba\x06\x2b\x1e" "\xc8\x06\xc6\x23\xb6\x06\x23\x1f" 
	"\xc2\x06\x32\x1e\xdc\x06\x03\x24" "\xb5\x06\x0d\x1f\xcc\x06\x5c\x1e" 
	"\xd2\x06\x11\x24\xb3\x06\x01\x1f" "\xbb\x06\x4f\x1e\xd4\x06\xaa\x23" 
	"\xc0\x06\xaf\x1e\xc8\x06\x1f\x1e" "\xd7\x06\xd1\x23\xbe\x06\x04\x1f" 
	"\xbc\x06\x55\x1e\xb8\x06\x20\x24" "\x88\x06\x0e\x1f\xc8\x06\x75\x1e" 
	"\xdd\x06\x12\x24\xc6\x06\xfe\x1e" "\xc4\x06\x28\x1e\xdd\x06\x18\x24" 
	"\xc3\x06\xf9\x1e\xb6\x06\x38\x1e" "\xc6\x06\x1f\x24\xa9\x06\x29\x1f" 
	"\xbd\x06\x3e\x1e\xcc\x06\x0e\x24" "\xac\x06\xe0\x1e\xc2\x06\x11\x1e" 
	"\xcb\x06\xe7\x23\xb9\x06\xb7\x1e" "\xb6\x06\xf3\x1d\xb6\x06\xcc\x23" 
	"\xb1\x06\xd9\x1e\xc6\x06\x2c\x1e" "\xc5\x06\xef\x23\xa2\x06\xef\x1e" 
	"\xca\x06\x5d\x1e\xb4\x06\xae\x23" "\xa2\x06\xc5\x1e\xc7\x06\x76\x1e" 
	"\xb1\x06\xd6\x23\x99\x06\xc2\x1e" "\xb0\x06\x89\x1e\xc3\x06\x9a\x23" 
	"\xb5\x06\xcb\x1e\xbf\x06\x7b\x1e" "\xd7\x06\xab\x23\xc6\x06\xba\x1e" 
	"\xc4\x06\x67\x1e\xc7\x06\xc5\x23" "\xa3\x06\x7e\x1e\xc4\x06\x2a\x1e" 
	"\xcd\x06\x78\x23\xb2\x06\x3b\x1e" "\xb5\x06\xd6\x1d\xc1\x06\xd7\x23" 
	"\xb8\x06\x8b\x1e\xc7\x06\x30\x1e" "\x9a\x06\x19\x24\x88\x06\xcc\x1e" 
	"\xc4\x06\x23\x1e\xd3\x06\xa5\x23" "\xb9\x06\xb5\x1e\xc3\x06\x0f\x1e" 
	"\xce\x06\xf7\x23\xbc\x06\x97\x1e" "\xbf\x06\xee\x1d\xc9\x06\xfd\x23" 
	"\xb6\x06\xa9\x1e\xb4\x06\x17\x1e" "\xc4\x06\xa5\x23\xa6\x06\x7f\x1e" 
	"\xb6\x06\xc3\x1d\xca\x06\x6c\x23" "\xae\x06\x63\x1e\xbd\x06\x99\x1d" 
	"\xd8\x06\xee\x23\xca\x06\x93\x1e" "\xbc\x06\xf8\x1d\xc6\x06\x62\x23" 
	"\xb4\x06\xa5\x1e\xc3\x06\x20\x1e" "\xd1\x06\x7d\x23\xb9\x06\xd4\x1e" 
	"\xc9\x06\x0e\x1e\xd6\x06\xd2\x23" "\xbc\x06\xc3\x1e\xc8\x06\x17\x1e" 
	"\xc4\x06\xea\x23\xa4\x06\xb3\x1e" "\xbd\x06\x27\x1e\xcd\x06\xe2\x23" 
	"\xc3\x06\xbe\x1e\xcf\x06\x2b\x1e" "\xda\x06\xee\x23\xba\x06\x13\x1f" 
	"\xb8\x06\xd3\x1d\xc2\x06\xdc\x23" "\xb1\x06\x05\x1f\xc5\x06\x48\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcc\x06\xcc\x23\xc1\x06\xd5\x1e" "\xbe\x06\x2e\x1e\xc2\x06\xca\x23" 
	"\xaa\x06\xe2\x1e\xc4\x06\x3a\x1e" "\xc7\x06\x9f\x23\xae\x06\x15\x1f" 
	"\xbf\x06\x5d\x1e\xd8\x06\xfd\x23" "\xb5\x06\xd6\x1e\xc5\x06\x33\x1e" 
	"\xcd\x06\xd2\x23\xbe\x06\xc9\x1e" "\xc1\x06\x2a\x1e\xc5\x06\x7b\x23" 
	"\xaa\x06\xbc\x1e\xc1\x06\xeb\x1d" "\x9d\x06\xac\x23\x81\x06\xf3\x1e" 
	"\xb6\x06\xe6\x1d\xd8\x06\xe2\x23" "\xbd\x06\x76\x1f\xd5\x06\xb4\x1e" 
	"\xd7\x06\xb4\x23\xbd\x06\xe6\x1e" "\xc8\x06\x47\x1e\xc1\x06\xb9\x23" 
	"\xab\x06\xe2\x1e\xc2\x06\x1b\x1e" "\xdd\x06\xfb\x23\xbc\x06\xd4\x1e" 
	"\xcf\x06\x1a\x1e\xc4\x06\xd3\x23" "\xa9\x06\xfd\x1e\xc9\x06\x39\x1e" 
	"\xc7\x06\x63\x23\xbd\x06\xbe\x1e" "\xb9\x06\xe8\x1d\xb5\x06\x9e\x23" 
	"\xa0\x06\xc4\x1e\xc5\x06\x11\x1e" "\xc5\x06\x94\x23\xab\x06\xb6\x1e" 
	"\xbf\x06\x53\x1e\xc5\x06\xbe\x23" "\xab\x06\x17\x1f\xc1\x06\x51\x1e" 
	"\xcf\x06\xb8\x23\xbc\x06\xf2\x1e" "\xbb\x06\x2d\x1e\xab\x06\x04\x24" 
	"\x96\x06\x29\x1f\xc7\x06\x27\x1e" "\xdf\x06\x34\x24\xc0\x06\xfe\x1e" 
	"\xb9\x06\xf8\x1d\xca\x06\x00\x24" "\xb4\x06\xbb\x1e\xc5\x06\xa8\x1d" 
	"\xd0\x06\xe3\x22\xbc\x06\x24\x1e" "\xb6\x06\xc8\x1c\x2e\x07\x8d\x85" 
	"\x37\x07\x03\x73\x2d\x07\xd1\x6e" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x0b\x07\x04\x26" "\x02\x07\x73\x20\x02\x07\xf2\x1f" 
	"\xf9\x06\xdb\x26\xe3\x06\xd7\x20" "\x0b\x07\xac\x20\x22\x07\xff\x26" 
	"\xf4\x06\x2c\x21\x16\x07\x32\x21" "\x13\x07\x9f\x26\xf3\x06\x0e\x21" 
	"\x0f\x07\x29\x21\x11\x07\xb2\x26" "\x06\x07\x3f\x21\x00\x07\x00\x21" 
	"\x0e\x07\xd8\x26\xfc\x06\xfa\x20" "\x0d\x07\x3c\x21\x16\x07\x90\x26" 
	"\xf6\x06\xcb\x20\x0a\x07\x20\x21" "\x0b\x07\xb1\x26\xd5\x06\xab\x20" 
	"\x06\x07\xce\x20\x05\x07\x62\x26" "\xff\x06\x91\x20\xfb\x06\x77\x20" 
	"\x05\x07\xc1\x26\xed\x06\xbc\x20" "\x01\x07\x20\x21\x18\x07\xb9\x26" 
	"\xf8\x06\xf4\x20\xff\x06\xfa\x20" "\x18\x07\xd1\x26\xf9\x06\x3f\x21" 
	"\x03\x07\x1d\x21\x04\x07\x6f\x26" "\xef\x06\x08\x21\x02\x07\xf2\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x0a\x07\xda\x26\xf8\x06\x4c\x21" "\xfa\x06\x1e\x21\x0c\x07\xf9\x26" 
	"\xd8\x06\x26\x21\x07\x07\x3f\x21" "\x0a\x07\xfe\x26\xe0\x06\x18\x21" 
	"\x0e\x07\x28\x21\xfc\x06\xf6\x26" "\xf2\x06\x56\x21\x05\x07\x44\x21" 
	"\x14\x07\x9d\x26\xf9\x06\x26\x21" "\x02\x07\x4d\x21\x08\x07\xaf\x26" 
	"\xe3\x06\x22\x21\x11\x07\x65\x21" "\xf2\x06\xb5\x26\xda\x06\x44\x21" 
	"\xfa\x06\x34\x21\x03\x07\x06\x27" "\xeb\x06\x04\x21\xf6\x06\x35\x21" 
	"\x11\x07\xf9\x26\xf7\x06\x1b\x21" "\x00\x07\x0f\x21\x0d\x07\xc8\x26" 
	"\xeb\x06\xe0\x20\x01\x07\xf4\x20" "\xfe\x06\xfa\x26\xd2\x06\x12\x21" 
	"\x03\x07\x03\x21\x06\x07\x0d\x27" "\xe8\x06\x32\x21\x02\x07\x65\x21" 
	"\x14\x07\x19\x27\x05\x07\x1c\x21" "\x0e\x07\x62\x21\x17\x07\x0f\x27" 
	"\xec\x06\xfb\x20\x09\x07\x30\x21" "\x1a\x07\xec\x26\xec\x06\xcf\x20" 
	"\x1e\x07\x59\x21\x0e\x07\xe9\x26" "\xf1\x06\x02\x21\x01\x07\x30\x21" 
	"\xf6\x06\xe0\x26\xe9\x06\x27\x21" "\xed\x06\x00\x21\x0e\x07\xaf\x26" 
	"\xf3\x06\xe5\x20\x0c\x07\x0c\x21" "\x01\x07\x04\x27\xe0\x06\xe6\x20" 
	"\x0b\x07\x28\x21\x08\x07\x93\x26" "\xf7\x06\xe8\x20\xf9\x06\xcb\x20" 
	"\x13\x07\xf9\x26\xf9\x06\xde\x20" "\x08\x07\xf7\x20\x02\x07\xda\x26" 
	"\xe3\x06\xe0\x20\x02\x07\xdf\x20" "\x09\x07\xbf\x26\xe5\x06\xfe\x20" 
	"\x06\x07\xe5\x20\xfa\x06\xbc\x26" "\xea\x06\xce\x20\xf7\x06\xc7\x20" 
	"\xcc\x06\xc7\x26\xcc\x06\x29\x21" "\xed\x06\x03\x21\x05\x07\xb6\x26" 
	"\xf2\x06\xd5\x20\x02\x07\x22\x21" "\xfe\x06\x2b\x27\xd7\x06\xdc\x20" 
	"\x01\x07\x42\x21\xf0\x06\x98\x26" "\xdc\x06\xf0\x20\xfa\x06\xf4\x20" 
	"\x06\x07\xce\x26\x00\x07\xe1\x20" "\xf3\x06\x29\x21\x0a\x07\xf0\x26" 
	"\xf4\x06\xeb\x20\xff\x06\x48\x21" "\x0c\x07\x27\x27\xe1\x06\x3f\x21" 
	"\x06\x07\x3f\x21\x1c\x07\x36\x27" "\xf8\x06\x25\x21\x03\x07\xe2\x20" 
	"\x05\x07\x24\x27\xf0\x06\x1d\x21" "\x01\x07\x08\x21\x0c\x07\xd3\x26" 
	"\xef\x06\x2f\x21\xfd\x06\x27\x21" "\xf0\x06\xcb\x26\xca\x06\x4d\x21" 
	"\x03\x07\x16\x21\xf0\x06\xbd\x26" "\xe9\x06\x13\x21\xfb\x06\xea\x20" 
	"\x0e\x07\xd3\x26\xf5\x06\xdc\x20" "\xfc\x06\x22\x21\x00\x07\xe0\x26" 
	"\xdb\x06\x5b\x21\xff\x06\x47\x21" "\xf2\x06\x0f\x27\xd6\x06\x39\x21" 
	"\xf5\x06\x12\x21\x0f\x07\xdb\x26" "\xed\x06\x24\x21\xff\x06\x43\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf8\x06\xb8\x26\xe3\x06\x30\x21" "\xf5\x06\x23\x21\x01\x07\x91\x26" 
	"\xe3\x06\x16\x21\xf7\x06\x14\x21" "\xf2\x06\xca\x26\xcb\x06\x33\x21" 
	"\xff\x06\xfb\x20\xef\x06\xf5\x26" "\xd9\x06\x43\x21\xed\x06\xdc\x20" 
	"\xe2\x06\xa1\x26\xcc\x06\x46\x21" "\xeb\x06\x00\x21\xfc\x06\x87\x26" 
	"\xd0\x06\xde\x20\xfc\x06\xdf\x20" "\x03\x07\xb5\x26\xe0\x06\x25\x21" 
	"\xff\x06\x0e\x21\x01\x07\xa0\x26" "\xf0\x06\x37\x21\xf5\x06\x29\x21" 
	"\xfc\x06\xcf\x26\xef\x06\x3f\x21" "\xfb\x06\x30\x21\x0b\x07\xcd\x26" 
	"\xe5\x06\x24\x21\xff\x06\x0f\x21" "\x0a\x07\xaf\x26\xfe\x06\x38\x21" 
	"\x08\x07\x26\x21\x03\x07\xc3\x26" "\xf6\x06\x20\x21\xfb\x06\x01\x21" 
	"\x04\x07\xdf\x26\xfb\x06\x4e\x21" "\x03\x07\x09\x21\x0a\x07\xe4\x26" 
	"\xec\x06\x1d\x21\xf3\x06\x34\x21" "\xea\x06\xcf\x26\xbe\x06\x25\x21" 
	"\xfe\x06\x05\x21\x05\x07\xb9\x26" "\xef\x06\x17\x21\xfd\x06\x2b\x21" 
	"\xfb\x06\x9b\x26\xe9\x06\xe9\x20" "\x01\x07\x18\x21\xfb\x06\x6e\x26" 
	"\xe0\x06\xf7\x20\xf6\x06\xc4\x20" "\xfa\x06\x72\x26\xca\x06\xf1\x20" 
	"\x03\x07\xa1\x20\xfc\x06\xc6\x25" "\xf1\x06\x8e\x20\xec\x06\x38\x20" 
	"\x02\x07\x04\x26\xf7\x06\x87\x20" "\xf3\x06\x2d\x20\x0d\x07\x3a\x26" 
	"\xdf\x06\x79\x20\xf5\x06\x94\x20" "\x10\x07\xed\x25\xe6\x06\x8d\x20" 
	"\x01\x07\x91\x20\xf3\x06\xe9\x25" "\xed\x06\x98\x20\xf3\x06\xaf\x20" 
	"\xe6\x06\x27\x26\xdb\x06\xd3\x20" "\xfc\x06\xe0\x20\xf9\x06\xf0\x25" 
	"\xe7\x06\xe4\x20\xf6\x06\xc5\x20" "\x03\x07\x4e\x26\xe5\x06\xad\x20" 
	"\xf1\x06\x76\x20\xff\x06\x11\x26" "\xed\x06\x7a\x20\xee\x06\x0f\x20" 
	"\xf3\x06\x79\x26\xd4\x06\xd6\x20" "\xeb\x06\xd7\x20\x01\x07\x33\x26" 
	"\xdd\x06\xb0\x20\xf9\x06\xaa\x20" "\x08\x07\x36\x26\xf0\x06\xb8\x20" 
	"\x04\x07\x7c\x20\xfe\x06\xdc\x25" "\xed\x06\x87\x20\xf4\x06\x77\x20" 
	"\xdb\x06\x3a\x26\xc9\x06\x9d\x20" "\xfa\x06\x84\x20\xfb\x06\x42\x26" 
	"\xe1\x06\xa5\x20\xf8\x06\x89\x20" "\x0d\x07\x3a\x26\xde\x06\x78\x20" 
	"\xf4\x06\x4b\x20\xf8\x06\x3b\x26" "\xda\x06\xd6\x20\xee\x06\xc2\x20" 
	"\xe7\x06\x34\x26\xe8\x06\xcb\x20" "\xf6\x06\x92\x20\xec\x06\x22\x26" 
	"\xd1\x06\xa6\x20\xe9\x06\x8f\x20" "\x05\x07\x16\x26\xd7\x06\xe1\x20" 
	"\xfe\x06\xc0\x20\xfa\x06\x28\x26" "\xdf\x06\xc1\x20\xff\x06\xdf\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf9\x06\x30\x26\xe0\x06\xe0\x20" "\xf6\x06\xd8\x20\xfd\x06\x7c\x26" 
	"\xe1\x06\x11\x21\xfa\x06\xf3\x20" "\xe3\x06\x85\x26\xba\x06\x23\x21" 
	"\xfd\x06\xe9\x20\xed\x06\x5f\x26" "\xd4\x06\xfb\x20\xea\x06\xca\x20" 
	"\xf4\x06\x6a\x26\xe2\x06\x13\x21" "\xfc\x06\xde\x20\xda\x06\x6e\x26" 
	"\xb7\x06\x1f\x21\xed\x06\xde\x20" "\xfb\x06\x1b\x26\xe5\x06\xc7\x20" 
	"\xf6\x06\xc9\x20\xf5\x06\x30\x26" "\xde\x06\xc7\x20\xf4\x06\x9c\x20" 
	"\x04\x07\x6b\x26\xf5\x06\xb9\x20" "\xee\x06\x77\x20\xe0\x06\xe3\x25" 
	"\xd2\x06\xb9\x20\xfe\x06\xb8\x20" "\xe8\x06\x28\x26\xd2\x06\xd2\x20" 
	"\xf7\x06\xa8\x20\x04\x07\x3a\x26" "\xec\x06\xc1\x20\xfd\x06\xb3\x20" 
	"\xdf\x06\x68\x26\xcb\x06\xe0\x20" "\xf3\x06\xb5\x20\xf5\x06\x9e\x26" 
	"\xc4\x06\xcd\x20\xf9\x06\xb3\x20" "\xfd\x06\x3f\x26\xd9\x06\x11\x21" 
	"\xf9\x06\xd5\x20\xef\x06\x6a\x26" "\xdd\x06\x01\x21\xea\x06\xca\x20" 
	"\xee\x06\x78\x26\xd2\x06\x05\x21" "\xe9\x06\xda\x20\xfc\x06\x41\x26" 
	"\xed\x06\xda\x20\xf0\x06\xd5\x20" "\xf3\x06\x06\x26\xdd\x06\xd4\x20" 
	"\xf5\x06\xbd\x20\xf4\x06\x14\x26" "\xe6\x06\xa5\x20\xf6\x06\xc6\x20" 
	"\x07\x07\x36\x26\xee\x06\xac\x20" "\xef\x06\xca\x20\x03\x07\x4b\x26" 
	"\xe6\x06\xc9\x20\xee\x06\x89\x20" "\xea\x06\x42\x26\xc3\x06\xa9\x20" 
	"\xe9\x06\x7c\x20\xc8\x06\xf6\x25" "\xb2\x06\x72\x20\xdc\x06\x3c\x20" 
	"\x07\x07\x08\x26\xde\x06\xa4\x20" "\xe3\x06\x6e\x20\xee\x06\xed\x25" 
	"\xdd\x06\xa3\x20\xf0\x06\x59\x20" "\x00\x07\xf1\x25\xe1\x06\x82\x20" 
	"\xf9\x06\x5c\x20\xe9\x06\x8d\x25" "\xd8\x06\xa9\x20\xfa\x06\x9b\x20" 
	"\xeb\x06\xa3\x25\xd6\x06\xc5\x20" "\xe9\x06\x89\x20\xe4\x06\xc3\x25" 
	"\xbd\x06\xa7\x20\xf5\x06\xaf\x20" "\xe7\x06\x98\x25\xc4\x06\x80\x20" 
	"\xfa\x06\x93\x20\xfb\x06\xd3\x25" "\xea\x06\xb3\x20\xed\x06\xda\x20" 
	"\xdf\x06\xb8\x25\xd9\x06\xd0\x20" "\xf4\x06\xd2\x20\xef\x06\x8f\x25" 
	"\xca\x06\xa5\x20\xf9\x06\xab\x20" "\xfa\x06\x82\x25\xd5\x06\xb6\x20" 
	"\xf4\x06\x8f\x20\xce\x06\x32\x26" "\xb9\x06\xc0\x20\xdc\x06\xe7\x20" 
	"\xe1\x06\x28\x26\xc5\x06\xeb\x20" "\xec\x06\xd2\x20\x04\x07\x74\x26" 
	"\xd9\x06\xd2\x20\xf9\x06\x8d\x20" "\x08\x07\x30\x26\xde\x06\xf7\x20" 
	"\xf9\x06\xd4\x20\xef\x06\xe3\x25" "\xdc\x06\xde\x20\xe7\x06\xb0\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf4\x06\x21\x26\xe6\x06\xd1\x20" "\xf7\x06\xaf\x20\xfa\x06\xed\x25" 
	"\xd8\x06\xad\x20\xf0\x06\x5f\x20" "\xd6\x06\x0c\x26\xba\x06\xe8\x20" 
	"\xe7\x06\x77\x20\xf1\x06\xbb\x25" "\xdf\x06\xa3\x20\xf8\x06\x95\x20" 
	"\xec\x06\xdf\x25\xd9\x06\x8f\x20" "\xe7\x06\x5d\x20\xf6\x06\x2d\x26" 
	"\xca\x06\xa6\x20\xf2\x06\x9c\x20" "\xec\x06\x32\x26\xbe\x06\xb0\x20" 
	"\xf1\x06\xa7\x20\xf4\x06\xf1\x25" "\xe1\x06\xbf\x20\xe8\x06\x93\x20" 
	"\xed\x06\xdf\x25\xdf\x06\xa5\x20" "\xef\x06\x7e\x20\xd0\x06\xed\x25" 
	"\xab\x06\x93\x20\xe8\x06\x71\x20" "\x02\x07\x08\x26\xd5\x06\xb5\x20" 
	"\xf5\x06\x72\x20\xf9\x06\xe2\x25" "\xe8\x06\x9f\x20\xf6\x06\x66\x20" 
	"\xdd\x06\xe9\x25\xd0\x06\x71\x20" "\xeb\x06\x4d\x20\xf4\x06\xff\x25" 
	"\xce\x06\xb8\x20\xf7\x06\xca\x20" "\xcf\x06\x53\x26\xa9\x06\x0a\x21" 
	"\xe3\x06\xb7\x20\xc6\x06\x23\x26" "\x9b\x06\x9e\x20\xe0\x06\x42\x20" 
	"\xf3\x06\xa4\x25\xf0\x06\x93\x20" "\xee\x06\x48\x20\xf5\x06\x88\x25" 
	"\xd4\x06\xc5\x20\xee\x06\x57\x20" "\xf3\x06\x85\x25\xe1\x06\x51\x20" 
	"\xea\x06\x24\x20\xf9\x06\x5b\x25" "\xdd\x06\x24\x20\xe3\x06\xf8\x1f" 
	"\xf2\x06\x7c\x25\xed\x06\x5b\x20" "\xe6\x06\x3f\x20\xee\x06\xc1\x25" 
	"\xcd\x06\xa3\x20\xeb\x06\x60\x20" "\xde\x06\x3d\x26\xc6\x06\x9c\x20" 
	"\xfc\x06\x7e\x20\xe5\x06\x79\x26" "\xd7\x06\xa2\x20\xe9\x06\x56\x20" 
	"\xf8\x06\x2b\x26\xe1\x06\xb1\x20" "\xe4\x06\x44\x20\xe4\x06\xe6\x25" 
	"\xd8\x06\x95\x20\xf1\x06\x26\x20" "\x00\x07\xa8\x25\xe3\x06\x8a\x20" 
	"\xf0\x06\x36\x20\xee\x06\xac\x25" "\xe8\x06\x91\x20\xec\x06\x66\x20" 
	"\xee\x06\x4d\x25\xe4\x06\xac\x20" "\xf4\x06\x73\x20\xd7\x06\x1f\x25" 
	"\xb7\x06\x6a\x20\xef\x06\x38\x20" "\xc9\x06\x70\x25\xa9\x06\xad\x20" 
	"\xf4\x06\x4d\x20\xa5\x06\xe6\x25" "\x91\x06\xae\x20\xef\x06\x5f\x20" 
	"\xe8\x06\xca\x25\xd2\x06\x78\x20" "\xee\x06\xa8\x20\xe6\x06\xe9\x25" 
	"\xd1\x06\x6d\x20\xe4\x06\x16\x20" "\xea\x06\xcf\x25\xc9\x06\x7e\x20" 
	"\xeb\x06\x3d\x20\xdd\x06\xd5\x25" "\xc0\x06\x8a\x20\xf1\x06\x76\x20" 
	"\xfd\x06\xcf\x25\xe6\x06\x6e\x20" "\xf7\x06\x85\x20\x01\x07\xe9\x25" 
	"\xda\x06\x6d\x20\xed\x06\x73\x20" "\x00\x07\xd1\x25\xd9\x06\x91\x20" 
	"\xeb\x06\x48\x20\xf3\x06\x90\x25" "\xe0\x06\x9a\x20\xf3\x06\x5d\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe0\x06\x87\x25\xbc\x06\x31\x20" "\xe9\x06\x18\x20\xed\x06\xa9\x25" 
	"\xd0\x06\x43\x20\xe9\x06\x1e\x20" "\xd3\x06\xcf\x25\xbb\x06\x8c\x20" 
	"\xf8\x06\x59\x20\xe2\x06\xc2\x25" "\xc6\x06\x9a\x20\xf0\x06\x5f\x20" 
	"\xe0\x06\x92\x25\xd1\x06\x7f\x20" "\xec\x06\x5f\x20\xf0\x06\xde\x25" 
	"\xd6\x06\x56\x20\xf8\x06\x5e\x20" "\xf2\x06\xbf\x25\xce\x06\x3e\x20" 
	"\xf1\x06\x31\x20\xfc\x06\xb8\x25" "\xe0\x06\x06\x20\xe5\x06\xeb\x1f" 
	"\xd0\x06\xd0\x25\xbe\x06\x2b\x20" "\xe2\x06\x25\x20\xd7\x06\x1c\x26" 
	"\xc0\x06\x6e\x20\xf5\x06\x45\x20" "\xc4\x06\x48\x26\x8d\x06\x97\x20" 
	"\xf2\x06\x4c\x20\x03\x07\xe3\x25" "\xe6\x06\x7a\x20\xef\x06\x54\x20" 
	"\xf0\x06\xe8\x25\xd6\x06\x7a\x20" "\xe8\x06\x3c\x20\xe5\x06\xe9\x25" 
	"\xa9\x06\x6f\x20\xe9\x06\x6b\x20" "\xd4\x06\x73\x26\xbf\x06\xa4\x20" 
	"\xd6\x06\x87\x20\xfa\x06\xe0\x25" "\xd9\x06\x3b\x20\xe7\x06\x21\x20" 
	"\xf6\x06\x3f\x26\xde\x06\x97\x20" "\xf7\x06\x8d\x20\xf2\x06\x7b\x26" 
	"\xd4\x06\xc5\x20\xed\x06\x67\x20" "\xfb\x06\x79\x26\xdf\x06\xb1\x20" 
	"\xf3\x06\x7f\x20\xe1\x06\x7e\x26" "\xcb\x06\xc8\x20\xed\x06\x64\x20" 
	"\xd2\x06\x03\x26\xcb\x06\x9b\x20" "\xe6\x06\x48\x20\xf1\x06\xd9\x25" 
	"\xcc\x06\xb0\x20\xef\x06\x49\x20" "\x07\x07\xbb\x25\xe3\x06\x6b\x20" 
	"\xf4\x06\x1d\x20\xeb\x06\x32\x26" "\xd9\x06\xd0\x20\xe7\x06\x3b\x20" 
	"\xe0\x06\x2e\x26\xdb\x06\xd1\x20" "\xdc\x06\x56\x20\xf8\x06\xe6\x25" 
	"\xd0\x06\x7b\x20\xf2\x06\x44\x20" "\xeb\x06\x35\x26\xc8\x06\x8f\x20" 
	"\xf4\x06\x34\x20\xed\x06\x3f\x26" "\xe9\x06\x9f\x20\xf0\x06\x34\x20" 
	"\xed\x06\x18\x26\xd6\x06\x80\x20" "\xec\x06\x49\x20\xef\x06\xe6\x25" 
	"\xd1\x06\x49\x20\xf7\x06\xdf\x1f" "\xfd\x06\xd8\x25\xed\x06\x97\x20" 
	"\xf5\x06\x08\x20\xd1\x06\xef\x25" "\xbd\x06\x6e\x20\xf7\x06\x1b\x20" 
	"\xe0\x06\x2a\x26\xd6\x06\x57\x20" "\xeb\x06\x1d\x20\xf0\x06\xdc\x25" 
	"\xcb\x06\x5c\x20\xef\x06\x20\x20" "\xfa\x06\xfd\x25\xdc\x06\x66\x20" 
	"\xf3\x06\x37\x20\xfd\x06\xcc\x25" "\xee\x06\xa4\x20\xee\x06\x35\x20" 
	"\xf5\x06\xdd\x25\xdf\x06\x48\x20" "\xef\x06\x12\x20\xf6\x06\x08\x26" 
	"\xd4\x06\x80\x20\xec\x06\x4f\x20" "\xe3\x06\x33\x26\xcf\x06\x94\x20" 
	"\xe7\x06\x9d\x20\xf7\x06\xd1\x25" "\xeb\x06\x73\x20\xed\x06\x53\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xfb\x06\xf1\x25\xeb\x06\x77\x20" "\xee\x06\x85\x20\xfa\x06\x66\x26" 
	"\xc9\x06\xa4\x20\xf8\x06\x7f\x20" "\xf0\x06\xdd\x25\xd5\x06\xa9\x20" 
	"\xf4\x06\x6a\x20\xe8\x06\xbb\x25" "\xd7\x06\x63\x20\xfa\x06\x4e\x20" 
	"\xe1\x06\xdf\x25\xce\x06\x63\x20" "\xe6\x06\x60\x20\xf4\x06\xd5\x25" 
	"\xd4\x06\x86\x20\xf4\x06\x99\x20" "\xe3\x06\xd1\x25\xc5\x06\x79\x20" 
	"\xf9\x06\x8f\x20\xf1\x06\xf0\x25" "\xe1\x06\x5d\x20\xe7\x06\x8c\x20" 
	"\xe5\x06\xe5\x25\xd0\x06\x7e\x20" "\xec\x06\x98\x20\xde\x06\xdb\x25" 
	"\xc0\x06\x6d\x20\xf3\x06\x73\x20" "\x02\x07\xc6\x25\xda\x06\x45\x20" 
	"\xeb\x06\x65\x20\xc5\x06\xa1\x25" "\xad\x06\x6d\x20\xe4\x06\x24\x20" 
	"\xf2\x06\xaa\x25\xea\x06\x85\x20" "\xf9\x06\x9c\x20\xf9\x06\xaf\x25" 
	"\xde\x06\x62\x20\xee\x06\x57\x20" "\xfd\x06\xc2\x25\xd0\x06\x75\x20" 
	"\x01\x07\x82\x20\x04\x07\xe3\x25" "\xe4\x06\x7e\x20\xe6\x06\x77\x20" 
	"\xef\x06\xe9\x25\xe1\x06\x61\x20" "\xeb\x06\x4e\x20\xf4\x06\xfb\x25" 
	"\xce\x06\x78\x20\xec\x06\x4d\x20" "\xfd\x06\xc9\x25\xd7\x06\x8d\x20" 
	"\xe6\x06\x36\x20\xff\x06\xe7\x25" "\xe5\x06\x7f\x20\xed\x06\x70\x20" 
	"\xf6\x06\xb3\x25\xec\x06\x50\x20" "\xe7\x06\x5b\x20\xfd\x06\xb6\x25" 
	"\xdf\x06\x6b\x20\xf8\x06\x53\x20" "\xf1\x06\xdf\x25\xe1\x06\x6d\x20" 
	"\xf2\x06\x73\x20\xdc\x06\x0a\x26" "\xc9\x06\x51\x20\xe8\x06\x46\x20" 
	"\xd4\x06\xe6\x25\xba\x06\x92\x20" "\xce\x06\x6e\x20\x00\x07\xc2\x25" 
	"\xe0\x06\x3c\x20\xec\x06\x2d\x20" "\xec\x06\xd9\x25\xd1\x06\x50\x20" 
	"\xf3\x06\x06\x20\xc7\x06\x2a\x26" "\xbe\x06\x37\x20\xed\x06\x24\x20" 
	"\xf6\x06\xb8\x25\xe4\x06\x26\x20" "\xf7\x06\x43\x20\xfa\x06\xab\x25" 
	"\xdb\x06\x56\x20\xef\x06\x27\x20" "\xe3\x06\x78\x25\xc4\x06\x55\x20" 
	"\xf7\x06\x49\x20\xee\x06\x51\x25" "\xf2\x06\x73\x20\xed\x06\x4a\x20" 
	"\xf7\x06\x4f\x25\xd7\x06\xe2\x1f" "\xe9\x06\xe0\x1f\xea\x06\x79\x25" 
	"\xbd\x06\x1c\x20\xf2\x06\x17\x20" "\x02\x07\xdf\x25\xe0\x06\x8b\x20" 
	"\xec\x06\x62\x20\xf9\x06\xb8\x25" "\xe1\x06\x65\x20\xf0\x06\x65\x20" 
	"\xf4\x06\x89\x25\xe3\x06\x36\x20" "\xea\x06\x4a\x20\xf9\x06\xea\x25" 
	"\xd9\x06\x65\x20\xf4\x06\x7b\x20" "\xef\x06\xa3\x25\xd1\x06\x58\x20" 
	"\xec\x06\x6a\x20\xf1\x06\x95\x25" "\xe5\x06\x20\x20\xf0\x06\x5c\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf4\x06\xb3\x25\xd8\x06\x0b\x20" "\xdb\x06\x30\x20\xee\x06\xce\x25" 
	"\xce\x06\x64\x20\xea\x06\x72\x20" "\xf9\x06\x96\x25\xce\x06\x3d\x20" 
	"\xef\x06\x8c\x20\xf9\x06\xe9\x25" "\xe5\x06\x57\x20\xdf\x06\x5c\x20" 
	"\xee\x06\xbe\x25\xe5\x06\x65\x20" "\xe3\x06\xab\x20\xf3\x06\xc5\x25" 
	"\xd1\x06\x65\x20\xf0\x06\x92\x20" "\xf4\x06\x21\x26\xd0\x06\x92\x20" 
	"\xef\x06\x99\x20\xf9\x06\xf2\x25" "\xe0\x06\x5f\x20\xe5\x06\x66\x20" 
	"\xfd\x06\xf3\x25\xf2\x06\xa0\x20" "\xe6\x06\x6f\x20\xf0\x06\xea\x25" 
	"\xd5\x06\x69\x20\xea\x06\x73\x20" "\xeb\x06\xfa\x25\xd1\x06\x84\x20" 
	"\xf9\x06\x72\x20\xc8\x06\x16\x26" "\xa4\x06\x99\x20\xce\x06\xa0\x20" 
	"\xd3\x06\xf7\x25\xc2\x06\x45\x20" "\xf1\x06\x87\x20\xfa\x06\x87\x25" 
	"\xd9\x06\x21\x20\xe7\x06\x2b\x20" "\xf1\x06\x2c\x25\xd0\x06\xdd\x1f" 
	"\xeb\x06\xef\x1f\xed\x06\xd5\x25" "\xdc\x06\x43\x20\xdf\x06\x33\x20" 
	"\xe3\x06\xb2\x25\xd0\x06\xfe\x1f" "\xe0\x06\x54\x20\xee\x06\x8b\x25" 
	"\xd0\x06\x42\x20\xf0\x06\x2d\x20" "\xcd\x06\xee\x25\xa7\x06\x49\x20" 
	"\xed\x06\x30\x20\xf2\x06\x46\x25" "\xe2\x06\x11\x20\xea\x06\x2b\x20" 
	"\xf0\x06\x55\x25\xe5\x06\xdf\x1f" "\xee\x06\x0b\x20\xd0\x06\x5a\x25" 
	"\xad\x06\xe3\x1f\xe9\x06\xaf\x1f" "\xf1\x06\x73\x25\xce\x06\xe8\x1f" 
	"\xee\x06\xf2\x1f\xd9\x06\x81\x25" "\xc7\x06\x45\x20\xee\x06\x10\x20" 
	"\xf8\x06\xf6\x25\xe6\x06\x37\x20" "\xe2\x06\x54\x20\xf6\x06\x0a\x26" 
	"\xd1\x06\x1c\x20\xf1\x06\x3d\x20" "\xff\x06\xe7\x25\xe6\x06\x20\x20" 
	"\xfa\x06\x31\x20\xef\x06\x7d\x25" "\xe1\x06\x35\x20\xd5\x06\x23\x20" 
	"\xf5\x06\x50\x25\xe1\x06\xc1\x1f" "\xed\x06\xb8\x1f\xf7\x06\x90\x25" 
	"\xd9\x06\x18\x20\xe2\x06\x07\x20" "\xf8\x06\xbd\x25\xd7\x06\x1b\x20" 
	"\xfe\x06\x19\x20\xed\x06\x73\x25" "\xd3\x06\x1a\x20\xe5\x06\x24\x20" 
	"\xe4\x06\xc3\x25\xe4\x06\x5c\x20" "\xef\x06\x44\x20\xf9\x06\xd4\x25" 
	"\xd5\x06\x19\x20\xed\x06\x19\x20" "\x00\x07\xe6\x25\xdf\x06\x4f\x20" 
	"\xea\x06\x22\x20\xf5\x06\x8a\x25" "\xea\x06\x45\x20\xe4\x06\xcf\x1f" 
	"\xed\x06\xc8\x25\xda\x06\x2b\x20" "\xee\x06\x0d\x20\xfd\x06\xe2\x25" 
	"\xdc\x06\x6b\x20\xe9\x06\x46\x20" "\xf3\x06\xae\x25\xcf\x06\x45\x20" 
	"\xf1\x06\x4f\x20\xc7\x06\x2c\x26" "\xb0\x06\x77\x20\xe4\x06\x1e\x20" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcc\x06\xe9\x25\xba\x06\x59\x20" "\xee\x06\x4e\x20\xfa\x06\xd6\x25" 
	"\xe0\x06\x35\x20\xf0\x06\x3f\x20" "\x02\x07\xaf\x25\xcf\x06\x40\x20" 
	"\xf3\x06\x2a\x20\xf6\x06\x87\x25" "\xd3\x06\x08\x20\xfb\x06\x0b\x20" 
	"\xf7\x06\xe5\x25\xe5\x06\x54\x20" "\xf2\x06\x90\x20\xfc\x06\xea\x25" 
	"\xd7\x06\x2e\x20\xeb\x06\x87\x20" "\xfc\x06\xe2\x25\xe8\x06\x44\x20" 
	"\xf5\x06\x5c\x20\xda\x06\x1d\x26" "\xc3\x06\x6a\x20\xe9\x06\x4d\x20" 
	"\xec\x06\xfc\x25\xd7\x06\x3b\x20" "\xe7\x06\x37\x20\xf9\x06\xc3\x25" 
	"\xda\x06\x1b\x20\xf1\x06\x1f\x20" "\xfe\x06\xbc\x25\xd6\x06\x18\x20" 
	"\xea\x06\xec\x1f\xd3\x06\x2a\x26" "\xbf\x06\x9e\x20\xd9\x06\x6a\x20" 
	"\xdf\x06\xf6\x25\xd8\x06\x7a\x20" "\xe8\x06\x60\x20\xf4\x06\x0f\x26" 
	"\xde\x06\x76\x20\xe7\x06\x72\x20" "\xe4\x06\xf7\x25\xc8\x06\x69\x20" 
	"\xf9\x06\x7e\x20\xeb\x06\x06\x26" "\xdb\x06\x87\x20\xf0\x06\x5c\x20" 
	"\xe8\x06\xee\x25\xe2\x06\x84\x20" "\xe3\x06\x53\x20\xe9\x06\x1d\x26" 
	"\xd4\x06\x41\x20\xe3\x06\x26\x20" "\xff\x06\x16\x26\xdf\x06\x83\x20" 
	"\xfe\x06\x83\x20\xf4\x06\x47\x26" "\xda\x06\x8f\x20\xf3\x06\x70\x20" 
	"\xf7\x06\x1f\x26\xe1\x06\x86\x20" "\xeb\x06\x6c\x20\xf9\x06\x0d\x26" 
	"\xd6\x06\x6a\x20\xe5\x06\x6b\x20" "\x02\x07\xd9\x25\xde\x06\x82\x20" 
	"\xf3\x06\x3d\x20\xe1\x06\xf8\x25" "\xd3\x06\x8c\x20\xf4\x06\x5e\x20" 
	"\xfa\x06\xe0\x25\xde\x06\x13\x20" "\xe3\x06\x06\x20\xfc\x06\xf3\x25" 
	"\xd3\x06\x5f\x20\xf3\x06\x4b\x20" "\xfe\x06\xef\x25\xe1\x06\x98\x20" 
	"\xff\x06\x6e\x20\xe8\x06\xd0\x25" "\xdf\x06\x87\x20\xf6\x06\x58\x20" 
	"\xf7\x06\xc5\x25\xe7\x06\x86\x20" "\xeb\x06\x4e\x20\xea\x06\xf7\x25" 
	"\xc7\x06\xa6\x20\xec\x06\x65\x20" "\xf7\x06\xbf\x25\xeb\x06\x8f\x20" 
	"\xeb\x06\x7c\x20\xfc\x06\xe5\x25" "\xde\x06\x40\x20\xee\x06\x29\x20" 
	"\xdb\x06\xb4\x25\xce\x06\x9d\x20" "\xf5\x06\x69\x20\xfb\x06\xfa\x25" 
	"\xd3\x06\x7d\x20\xec\x06\x68\x20" "\xe4\x06\x9c\x25\xce\x06\x64\x20" 
	"\xf8\x06\x34\x20\x1b\x07\x26\x25" "\x01\x07\x40\x20\x0d\x07\xeb\x1f" 
	"\x19\x07\xf4\x24\x07\x07\x12\x20" "\x20\x07\xed\x1f\xfb\x06\x38\x24" 
	"\xe2\x06\xc2\x1f\x00\x07\xa1\x1f" "\xd1\x06\x00\x24\xc4\x06\x42\x1f" 
	"\xcf\x06\x2b\x1f\x44\x06\xf1\x23" "\x2f\x06\x3c\x1f\x2e\x06\xb8\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x42\x06\x8d\x21\x36\x06\xbb\x1d" "\x2d\x06\x44\x1c\x3f\x06\xf1\x21" 
	"\x2b\x06\x02\x1e\x74\x06\x18\x1d" "\x01\x07\x53\x22\xdc\x06\x31\x1e" 
	"\xef\x06\xcd\x1d\x07\x07\xb4\x22" "\xe0\x06\x5e\x1e\xfc\x06\xe7\x1d" 
	"\xf9\x06\xed\x22\xd6\x06\x7d\x1e" "\xea\x06\xe4\x1d\xf3\x06\x42\x23" 
	"\xd4\x06\xd0\x1e\xe3\x06\x11\x1e" "\xe0\x06\x52\x23\xbb\x06\xd7\x1e" 
	"\xc4\x06\x03\x1e\xd8\x06\x6e\x23" "\xb6\x06\xb2\x1e\xc9\x06\xd6\x1d" 
	"\xbc\x06\x0a\x23\xae\x06\x6b\x1e" "\xc4\x06\xcb\x1d\xd5\x06\x43\x23" 
	"\xd7\x06\xac\x1e\xc6\x06\xf2\x1d" "\xd7\x06\xa2\x23\xb9\x06\xf6\x1e" 
	"\xc1\x06\x01\x1e\xdc\x06\x64\x23" "\xd1\x06\xf3\x1e\xd3\x06\xff\x1d" 
	"\xcd\x06\x70\x23\xbb\x06\xe7\x1e" "\xc8\x06\x2c\x1e\xda\x06\x9f\x23" 
	"\xb5\x06\xfa\x1e\xcf\x06\x34\x1e" "\xe3\x06\x46\x23\xba\x06\x8a\x1e" 
	"\xcb\x06\xd5\x1d\xb2\x06\x2b\x23" "\xa3\x06\x77\x1e\xc5\x06\x99\x1d" 
	"\xc9\x06\xb6\x23\xbf\x06\xb7\x1e" "\xc8\x06\xed\x1d\xba\x06\xba\x23" 
	"\x9f\x06\xa2\x1e\xd0\x06\xd8\x1d" "\xd6\x06\x75\x23\xac\x06\x83\x1e" 
	"\xb8\x06\x97\x1d\xbd\x06\x96\x23" "\xaa\x06\x80\x1e\xc2\x06\x83\x1d" 
	"\xd6\x06\x79\x23\xbd\x06\xa1\x1e" "\xc2\x06\x4a\x1d\xd0\x06\x92\x23" 
	"\xb4\x06\x68\x1e\xc7\x06\x43\x1d" "\xc6\x06\x5c\x23\xa0\x06\x3b\x1e" 
	"\xcd\x06\x43\x1d\xc7\x06\x60\x23" "\xb5\x06\x87\x1e\xbf\x06\xbc\x1d" 
	"\xc8\x06\x98\x23\xb6\x06\x8c\x1e" "\xc6\x06\xdf\x1d\xad\x06\xe8\x23" 
	"\x83\x06\xbe\x1e\xcd\x06\xf4\x1d" "\xd9\x06\x94\x23\xbc\x06\xd3\x1e" 
	"\xd7\x06\x04\x1e\xb5\x06\x7d\x23" "\xb4\x06\x2f\x1f\xc7\x06\xe8\x1d" 
	"\xd5\x06\x92\x23\xc6\x06\x9b\x1e" "\xb9\x06\xdc\x1d\xd8\x06\x2a\x23" 
	"\xba\x06\x35\x1e\xc3\x06\x8d\x1d" "\xc3\x06\x71\x23\x8f\x06\xa3\x1e" 
	"\xb5\x06\xb2\x1d\xc7\x06\x97\x23" "\x9d\x06\xc1\x1e\xb7\x06\x26\x1e" 
	"\x8f\x06\xe2\x23\x7a\x06\xd5\x1e" "\xba\x06\x2d\x1e\xd2\x06\x7b\x23" 
	"\xbf\x06\x8b\x1e\xc7\x06\x2a\x1e" "\xbe\x06\xb2\x23\x9b\x06\xbf\x1e" 
	"\xce\x06\x31\x1e\xe0\x06\x88\x23" "\xc4\x06\xa9\x1e\xc2\x06\x37\x1e" 
	"\xcf\x06\xa6\x23\xad\x06\x68\x1e" "\xc3\x06\x13\x1e\xe1\x06\x66\x23" 
	"\xbb\x06\x89\x1e\xcc\x06\xfe\x1d" "\xd7\x06\xdc\x23\xa1\x06\xc1\x1e" 
	"\xcc\x06\x2f\x1e\xd4\x06\xb9\x23" "\xc8\x06\xb8\x1e\xc1\x06\x4d\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcd\x06\xa3\x23\xc2\x06\xd0\x1e" "\xcb\x06\x61\x1e\xd7\x06\xb4\x23" 
	"\xb6\x06\xd6\x1e\xcb\x06\x77\x1e" "\xdc\x06\xb4\x23\xbc\x06\xbe\x1e" 
	"\xc5\x06\x6a\x1e\xcf\x06\xb1\x23" "\xc0\x06\x91\x1e\xc5\x06\x66\x1e" 
	"\xd3\x06\x85\x23\xbd\x06\x8b\x1e" "\xc2\x06\xf1\x1d\xda\x06\xc0\x23" 
	"\xb8\x06\xe2\x1e\xc4\x06\x49\x1e" "\xd5\x06\xb6\x23\xb6\x06\xb3\x1e" 
	"\xc6\x06\x45\x1e\xb7\x06\xcd\x23" "\x90\x06\xad\x1e\xc4\x06\x45\x1e" 
	"\xb7\x06\x8a\x23\xa5\x06\x91\x1e" "\xc8\x06\x3e\x1e\xb4\x06\xd1\x23" 
	"\x9f\x06\xad\x1e\xcc\x06\x07\x1e" "\xda\x06\xfe\x22\xc1\x06\x6b\x1e" 
	"\xc8\x06\xae\x1d\xd0\x06\x1f\x23" "\xbc\x06\xff\x1d\xb8\x06\x73\x1d" 
	"\x9f\x06\x7d\x23\x94\x06\x7c\x1e" "\xbe\x06\xc5\x1d\xb2\x06\x7d\x23" 
	"\x87\x06\x58\x1e\xc9\x06\xe5\x1d" "\xca\x06\x21\x23\xb4\x06\x51\x1e" 
	"\xd1\x06\xff\x1d\xd8\x06\x88\x23" "\xbd\x06\x7d\x1e\xbb\x06\xd5\x1d" 
	"\xb4\x06\x8a\x23\xa4\x06\x46\x1e" "\xc7\x06\xeb\x1d\xdb\x06\x79\x23" 
	"\xb0\x06\x48\x1e\xc2\x06\xab\x1d" "\xdc\x06\x1b\x23\xc3\x06\x37\x1e" 
	"\xc4\x06\x7f\x1d\xb3\x06\x76\x23" "\x98\x06\x65\x1e\xc4\x06\xbd\x1d" 
	"\xca\x06\x56\x23\xbd\x06\x2c\x1e" "\xc7\x06\xbd\x1d\xca\x06\x52\x23" 
	"\xa9\x06\x41\x1e\xbe\x06\xb2\x1d" "\xbe\x06\x3b\x23\xa7\x06\x55\x1e" 
	"\xba\x06\xb3\x1d\xc4\x06\x52\x23" "\xac\x06\x5a\x1e\xc0\x06\xb6\x1d" 
	"\xc2\x06\x48\x23\xbc\x06\x44\x1e" "\xbc\x06\xe3\x1d\xb7\x06\x2a\x23" 
	"\x98\x06\x2d\x1e\xc7\x06\x76\x1d" "\xcd\x06\xee\x22\xa7\x06\x56\x1e" 
	"\xc6\x06\x75\x1d\xbe\x06\x4e\x23" "\xa8\x06\x87\x1e\xab\x06\xa8\x1d" 
	"\xc1\x06\x10\x23\xb8\x06\x3a\x1e" "\xc6\x06\xab\x1d\xbf\x06\x13\x23" 
	"\xa9\x06\x46\x1e\xc4\x06\x72\x1d" "\xcd\x06\x2c\x23\xac\x06\x64\x1e" 
	"\xbe\x06\x88\x1d\xb2\x06\x58\x23" "\x9c\x06\x45\x1e\xb8\x06\x7f\x1d" 
	"\xa0\x06\x05\x23\x90\x06\x01\x1e" "\xc3\x06\x4f\x1d\x93\x06\x32\x23" 
	"\x77\x06\x0c\x1e\xc3\x06\x63\x1d" "\xcd\x06\xbf\x22\xb6\x06\x49\x1e" 
	"\xc3\x06\x65\x1d\xaa\x06\x07\x23" "\xa5\x06\x19\x1e\xc7\x06\x7a\x1d" 
	"\xc7\x06\xf5\x22\xb1\x06\x16\x1e" "\xc0\x06\x6d\x1d\xa9\x06\x3e\x23" 
	"\x80\x06\x47\x1e\xc4\x06\x7d\x1d" "\xd0\x06\xf7\x22\xbe\x06\x02\x1e" 
	"\xcd\x06\x94\x1d\xb9\x06\x07\x23" "\x9f\x06\x11\x1e\xc0\x06\x51\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbf\x06\xc1\x22\xa4\x06\xaa\x1d" "\xbb\x06\x14\x1d\xd9\x06\xc7\x22" 
	"\xba\x06\x22\x1e\xc1\x06\x70\x1d" "\x93\x06\x77\x23\x6a\x06\x5e\x1e" 
	"\xa9\x06\xa6\x1d\xce\x06\xe9\x22" "\xb7\x06\x1b\x1e\xc0\x06\x6f\x1d" 
	"\xae\x06\x07\x23\x9e\x06\x54\x1e" "\xc2\x06\x9d\x1d\xd5\x06\x28\x23" 
	"\xc1\x06\x58\x1e\xc4\x06\xe2\x1d" "\xbd\x06\x1c\x23\x8f\x06\x51\x1e" 
	"\xb9\x06\xa9\x1d\xad\x06\xb0\x22" "\xa5\x06\xe2\x1d\xb6\x06\x34\x1d" 
	"\x9e\x06\x0f\x23\x83\x06\x16\x1e" "\xc1\x06\xa1\x1d\xca\x06\xd7\x22" 
	"\xb7\x06\x3d\x1e\xc9\x06\x9c\x1d" "\xd5\x06\xe4\x22\xad\x06\x3a\x1e" 
	"\xc3\x06\x78\x1d\x90\x06\x21\x23" "\x79\x06\x65\x1e\xc0\x06\xaf\x1d" 
	"\xc5\x06\x44\x23\xa4\x06\x7e\x1e" "\xca\x06\xc6\x1d\xc5\x06\x35\x23" 
	"\x98\x06\x57\x1e\xc4\x06\xc3\x1d" "\xd0\x06\xec\x22\xb3\x06\x12\x1e" 
	"\xb9\x06\x73\x1d\xc9\x06\xb7\x22" "\xb8\x06\x0a\x1e\xca\x06\xa3\x1d" 
	"\xa5\x06\x37\x23\x96\x06\x55\x1e" "\xc0\x06\xc4\x1d\xad\x06\x1a\x23" 
	"\x8a\x06\x38\x1e\xc0\x06\x98\x1d" "\xd9\x06\x41\x23\xaf\x06\x3a\x1e" 
	"\xbc\x06\x93\x1d\xce\x06\x49\x23" "\xc3\x06\x65\x1e\xc0\x06\xd4\x1d" 
	"\xc6\x06\x3e\x23\xa8\x06\x5d\x1e" "\xc6\x06\xe6\x1d\xd2\x06\x09\x23" 
	"\xac\x06\x37\x1e\xca\x06\x96\x1d" "\xc7\x06\x0f\x23\xb1\x06\x64\x1e" 
	"\xce\x06\xa0\x1d\xc1\x06\x16\x23" "\xb9\x06\x6c\x1e\xb7\x06\xcf\x1d" 
	"\xba\x06\x0e\x23\xab\x06\x69\x1e" "\xc8\x06\xc6\x1d\xda\x06\x25\x23" 
	"\xc7\x06\x92\x1e\xd0\x06\xe6\x1d" "\xc2\x06\x1b\x23\x9e\x06\x89\x1e" 
	"\xcb\x06\xed\x1d\xb8\x06\x2d\x23" "\xa3\x06\x76\x1e\xc8\x06\xf7\x1d" 
	"\xcb\x06\xf0\x22\xbd\x06\x4c\x1e" "\xc8\x06\xb6\x1d\xae\x06\xf0\x22" 
	"\x9a\x06\x27\x1e\xbe\x06\x8f\x1d" "\xd0\x06\xfe\x22\xbb\x06\x66\x1e" 
	"\xc4\x06\xb0\x1d\xbb\x06\xfd\x22" "\xaf\x06\x55\x1e\xbe\x06\xc9\x1d" 
	"\xbf\x06\x30\x23\xb5\x06\x7c\x1e" "\xbd\x06\xbe\x1d\xc5\x06\x14\x23" 
	"\xaa\x06\x7c\x1e\xbf\x06\xdc\x1d" "\xb6\x06\x48\x23\x93\x06\x67\x1e" 
	"\xc6\x06\xaf\x1d\xcf\x06\x11\x23" "\xbf\x06\x6e\x1e\xc9\x06\xc5\x1d" 
	"\xa9\x06\x4e\x23\x97\x06\x99\x1e" "\xa2\x06\xa4\x1d\xc7\x06\x06\x23" 
	"\xa7\x06\x55\x1e\xcf\x06\x93\x1d" "\x76\x06\x88\x23\x4f\x06\xaf\x1e" 
	"\xa2\x06\xcc\x1d\xc5\x06\xe1\x22" "\xbf\x06\x33\x1e\xbb\x06\xb8\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xae\x06\x29\x23\x9d\x06\x93\x1e" "\xbd\x06\xa3\x1d\xc4\x06\x59\x23" 
	"\x9d\x06\x6a\x1e\xc8\x06\xb4\x1d" "\xc6\x06\x1e\x23\xa1\x06\x7e\x1e" 
	"\xbf\x06\x9e\x1d\xcc\x06\x16\x23" "\xba\x06\x31\x1e\xc5\x06\x7e\x1d" 
	"\xbb\x06\x26\x23\xa9\x06\x7a\x1e" "\xb2\x06\x8e\x1d\xca\x06\xfb\x22" 
	"\xaa\x06\x5a\x1e\xbe\x06\x82\x1d" "\xbb\x06\xd6\x22\xa3\x06\x67\x1e" 
	"\xbf\x06\xa5\x1d\xc9\x06\x18\x23" "\xba\x06\x51\x1e\xc8\x06\xd6\x1d" 
	"\xba\x06\x1b\x23\xaf\x06\x5d\x1e" "\xba\x06\x95\x1d\xd1\x06\xf0\x22" 
	"\xba\x06\x78\x1e\xc3\x06\x86\x1d" "\xcc\x06\xc9\x22\xb0\x06\x4c\x1e" 
	"\xc3\x06\x4c\x1d\xc4\x06\xd9\x22" "\xb6\x06\x47\x1e\xbd\x06\x1c\x1d" 
	"\xb3\x06\x4e\x23\xa7\x06\xfd\x1e" "\xb2\x06\xb7\x1d\xbd\x06\x94\x23" 
	"\x8f\x06\x96\x1e\xc9\x06\xa1\x1d" "\xc2\x06\x3e\x23\xa2\x06\x7f\x1e" 
	"\xc5\x06\xab\x1d\xc9\x06\x54\x23" "\xbd\x06\x95\x1e\xbd\x06\xbe\x1d" 
	"\xb0\x06\x78\x23\xa9\x06\xa6\x1e" "\xbb\x06\xc3\x1d\xc9\x06\x38\x23" 
	"\xbd\x06\x63\x1e\xc5\x06\x7a\x1d" "\xbf\x06\x24\x23\x92\x06\x5e\x1e" 
	"\xc3\x06\x76\x1d\xd0\x06\x12\x23" "\xc4\x06\x77\x1e\xb9\x06\xb1\x1d" 
	"\xc4\x06\x5c\x23\xc1\x06\x6f\x1e" "\xba\x06\xc7\x1d\xd3\x06\x64\x23" 
	"\xb8\x06\x74\x1e\xbd\x06\xaa\x1d" "\xde\x06\x98\x23\xb7\x06\x98\x1e" 
	"\xc9\x06\xd3\x1d\xc6\x06\x3d\x23" "\xb4\x06\x57\x1e\xc2\x06\xd3\x1d" 
	"\xc6\x06\x13\x23\xb4\x06\xf5\x1d" "\xb7\x06\x6f\x1d\xc3\x06\xd9\x22" 
	"\xa5\x06\xe3\x1d\xc4\x06\x26\x1d" "\xad\x06\xfb\x22\x8f\x06\x2e\x1e" 
	"\xba\x06\x56\x1d\xcc\x06\xf4\x22" "\xc4\x06\x33\x1e\xc5\x06\x75\x1d" 
	"\xb7\x06\x32\x23\xa8\x06\x34\x1e" "\xb3\x06\x7b\x1d\xb5\x06\x4f\x23" 
	"\x9f\x06\x4b\x1e\xbe\x06\x6e\x1d" "\xb6\x06\x0b\x23\x94\x06\x7a\x1e" 
	"\xa5\x06\x9a\x1d\xb9\x06\x18\x23" "\xa4\x06\x2f\x1e\xb1\x06\x68\x1d" 
	"\xb5\x06\x78\x22\xa4\x06\xde\x1d" "\xb7\x06\x06\x1d\xcf\x06\xf4\x22" 
	"\xbc\x06\x1a\x1e\xc6\x06\x43\x1d" "\xbb\x06\xe2\x22\x96\x06\x37\x1e" 
	"\xbf\x06\x3e\x1d\xc3\x06\xb3\x22" "\xad\x06\x22\x1e\xc2\x06\x2e\x1d" 
	"\xc9\x06\xd2\x22\xaa\x06\xd7\x1d" "\xc8\x06\x38\x1d\xd6\x06\xdd\x22" 
	"\xab\x06\xe2\x1d\xc6\x06\x1c\x1d" "\xae\x06\x96\x22\x86\x06\xd2\x1d" 
	"\xbe\x06\xb3\x1c\xc5\x06\x27\x22" "\xc0\x06\x97\x1d\xb1\x06\x81\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xba\x06\x8e\x22\xb3\x06\xb7\x1d" "\xbd\x06\xf1\x1c\xdb\x06\x80\x22" 
	"\xa5\x06\xf5\x1d\xc6\x06\xd6\x1c" "\xd2\x06\x8d\x22\xaf\x06\xd4\x1d" 
	"\xc4\x06\xe0\x1c\xcd\x06\x8e\x22" "\xc4\x06\xe7\x1d\xc5\x06\xdf\x1c" 
	"\xc9\x06\x75\x22\xab\x06\xad\x1d" "\xbe\x06\xd6\x1c\xa8\x06\x9e\x22" 
	"\x89\x06\xf0\x1d\xbf\x06\x00\x1d" "\xa3\x06\x38\x22\x82\x06\xb0\x1d" 
	"\xc1\x06\xd0\x1c\x9a\x06\xae\x22" "\x79\x06\xdf\x1d\xbe\x06\xe3\x1c" 
	"\xb5\x06\xbf\x22\xa3\x06\x00\x1e" "\xbc\x06\x25\x1d\xd1\x06\x75\x22" 
	"\xaa\x06\x19\x1e\xc6\x06\x51\x1d" "\xc2\x06\x57\x22\xb9\x06\x2a\x1e" 
	"\xbd\x06\x53\x1d\xc5\x06\x55\x22" "\xb8\x06\x03\x1e\xb8\x06\x3f\x1d" 
	"\xc8\x06\x66\x22\xbe\x06\x3e\x1e" "\xbb\x06\x54\x1d\xc4\x06\x4b\x22" 
	"\xb7\x06\xf0\x1d\xb7\x06\xf5\x1c" "\xdb\x06\x79\x22\xad\x06\xf2\x1d" 
	"\xc2\x06\x05\x1d\x9e\x06\x07\x23" "\x8f\x06\x59\x1e\xbe\x06\x73\x1d" 
	"\xce\x06\xf5\x22\xc7\x06\x71\x1e" "\xbd\x06\x8e\x1d\xd8\x06\x15\x23" 
	"\xb3\x06\x40\x1e\xca\x06\xbc\x1d" "\xda\x06\x2b\x23\xb3\x06\x83\x1e" 
	"\xc4\x06\x9a\x1d\xbe\x06\x17\x23" "\xb6\x06\x62\x1e\xc1\x06\xa9\x1d" 
	"\xa1\x06\x07\x23\x92\x06\x4c\x1e" "\xae\x06\x77\x1d\xcf\x06\x8d\x22" 
	"\xb0\x06\x1e\x1e\xc6\x06\x27\x1d" "\xae\x06\xd7\x22\x8d\x06\x64\x1e" 
	"\xc4\x06\x97\x1d\xc1\x06\xc5\x22" "\xb0\x06\x40\x1e\xbd\x06\x79\x1d" 
	"\xcb\x06\x20\x23\xb6\x06\x6a\x1e" "\xc0\x06\x98\x1d\xd4\x06\x03\x23" 
	"\xa7\x06\x75\x1e\xcb\x06\xd3\x1d" "\xcf\x06\x41\x23\xb0\x06\x5d\x1e" 
	"\xc6\x06\xb5\x1d\xcf\x06\x45\x23" "\xab\x06\x5e\x1e\xc2\x06\x9c\x1d" 
	"\xa0\x06\xee\x22\x75\x06\x19\x1e" "\xbe\x06\x5c\x1d\xd3\x06\x17\x23" 
	"\xc2\x06\x52\x1e\xc8\x06\x7f\x1d" "\xba\x06\x30\x23\x97\x06\x51\x1e" 
	"\xc1\x06\x9f\x1d\xd6\x06\x38\x23" "\xbc\x06\x6d\x1e\xb8\x06\x7b\x1d" 
	"\xb3\x06\x52\x23\x93\x06\x8c\x1e" "\xa4\x06\xc8\x1d\xb2\x06\x44\x23" 
	"\x92\x06\x69\x1e\xc9\x06\xb4\x1d" "\xcd\x06\x5a\x23\xc4\x06\x78\x1e" 
	"\xc1\x06\xa1\x1d\xc7\x06\x04\x23" "\xa4\x06\x4b\x1e\xd4\x06\x7f\x1d" 
	"\xb1\x06\x0a\x23\x94\x06\x6d\x1e" "\xbb\x06\x9b\x1d\xc6\x06\xcc\x22" 
	"\xb0\x06\x6d\x1e\xc6\x06\x7b\x1d" "\xd7\x06\xb7\x22\xad\x06\x3c\x1e" 
	"\xc6\x06\x7e\x1d\xc7\x06\xdb\x22" "\xbe\x06\x5f\x1e\xba\x06\x74\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc3\x06\xbd\x22\xb9\x06\x2f\x1e" "\xbe\x06\x65\x1d\xd9\x06\x10\x23" 
	"\xae\x06\x01\x1e\xc8\x06\x55\x1d" "\xbb\x06\xc5\x22\x9d\x06\xf3\x1d" 
	"\xc6\x06\x38\x1d\xa9\x06\xe6\x22" "\x92\x06\x01\x1e\xc4\x06\x53\x1d" 
	"\xce\x06\xc2\x22\xcb\x06\x40\x1e" "\xbb\x06\x74\x1d\xc0\x06\x6d\x22" 
	"\x98\x06\x2a\x1e\xbe\x06\x51\x1d" "\xd3\x06\x65\x22\xac\x06\x02\x1e" 
	"\xc5\x06\x63\x1d\xc5\x06\x6e\x22" "\xb4\x06\x10\x1e\xc5\x06\x50\x1d" 
	"\xc7\x06\x82\x22\xac\x06\x49\x1e" "\xc1\x06\x64\x1d\xc8\x06\x4d\x22" 
	"\xad\x06\x1a\x1e\xc3\x06\x18\x1d" "\xbc\x06\x39\x22\xa4\x06\x2d\x1e" 
	"\xb9\x06\x0a\x1d\xc6\x06\xa4\x22" "\xa4\x06\x2d\x1e\xba\x06\x41\x1d" 
	"\xc6\x06\x80\x22\xae\x06\xf9\x1d" "\xbd\x06\x34\x1d\xbc\x06\x9a\x22" 
	"\x9f\x06\x0f\x1e\xc2\x06\x37\x1d" "\xca\x06\xc7\x22\xa2\x06\x2d\x1e" 
	"\xc1\x06\x1a\x1d\xdb\x06\xc4\x22" "\xbf\x06\x25\x1e\xb3\x06\x2f\x1d" 
	"\xb6\x06\xc6\x22\xb0\x06\x18\x1e" "\xbc\x06\x24\x1d\xc0\x06\xa8\x22" 
	"\xa7\x06\xe1\x1d\xc3\x06\x14\x1d" "\xc1\x06\xe1\x22\x97\x06\x3e\x1e" 
	"\xc3\x06\x4c\x1d\xcc\x06\x18\x23" "\xb5\x06\x1a\x1e\xc6\x06\x4a\x1d" 
	"\xc2\x06\xf2\x22\xa7\x06\x29\x1e" "\xb7\x06\x69\x1d\xc5\x06\xbe\x22" 
	"\xac\x06\x1c\x1e\xc3\x06\x43\x1d" "\xc9\x06\xd2\x22\xb2\x06\x2f\x1e" 
	"\xc1\x06\x5d\x1d\xb4\x06\xde\x22" "\xa6\x06\x5d\x1e\xb9\x06\x57\x1d" 
	"\xd6\x06\xf2\x22\xc5\x06\x2e\x1e" "\xc4\x06\x2b\x1d\xa0\x06\xdb\x22" 
	"\x8b\x06\x72\x1e\xc2\x06\x6b\x1d" "\xd8\x06\x5a\x23\xb2\x06\x6e\x1e" 
	"\xcf\x06\x97\x1d\xd4\x06\x2c\x23" "\xc9\x06\x70\x1e\xc1\x06\x87\x1d" 
	"\xc4\x06\x1b\x23\xb5\x06\x59\x1e" "\xc4\x06\x82\x1d\xc4\x06\xea\x22" 
	"\xa6\x06\x6b\x1e\xc7\x06\x72\x1d" "\xc2\x06\x77\x22\xa3\x06\x18\x1e" 
	"\xbe\x06\x29\x1d\xa1\x06\x5b\x22" "\x98\x06\xc9\x1d\xc2\x06\xd2\x1c" 
	"\xc2\x06\x84\x22\xbc\x06\xdb\x1d" "\xbe\x06\x06\x1d\xbd\x06\xe5\x22" 
	"\xaa\x06\x20\x1e\xba\x06\x27\x1d" "\xbf\x06\x02\x23\xa7\x06\x41\x1e" 
	"\xb1\x06\x89\x1d\xa7\x06\x4e\x23" "\x97\x06\x4f\x1e\xab\x06\x5a\x1d" 
	"\xad\x06\x30\x23\x92\x06\x57\x1e" "\xba\x06\x75\x1d\xbc\x06\x16\x23" 
	"\x9b\x06\x6a\x1e\xca\x06\x83\x1d" "\xd3\x06\xcf\x22\xa6\x06\x18\x1e" 
	"\xb6\x06\x29\x1d\xa2\x06\xcf\x22" "\x82\x06\x13\x1e\xbd\x06\x08\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb6\x06\xee\x22\xb4\x06\x1f\x1e" "\xb6\x06\x3c\x1d\xc5\x06\xe2\x22" 
	"\xa9\x06\xf7\x1d\xbf\x06\xf9\x1c" "\xb8\x06\xce\x22\x94\x06\xe2\x1d" 
	"\xbf\x06\x8c\x1c\xc8\x06\x70\x22" "\xba\x06\xbe\x1d\xa5\x06\x4e\x1c" 
	"\xc4\x06\x87\x22\xb1\x06\x84\x1d" "\xc7\x06\x85\x1c\xc8\x06\x71\x22" 
	"\xae\x06\x6a\x1d\xb4\x06\x78\x1c" "\xd6\x06\x5c\x22\xaa\x06\x76\x1d" 
	"\xbc\x06\xa7\x1c\xc4\x06\xad\x22" "\xb9\x06\xe2\x1d\xbb\x06\xde\x1c" 
	"\xb9\x06\x72\x22\x93\x06\xac\x1d" "\xb3\x06\xd3\x1c\xd8\x06\xc9\x22" 
	"\xa8\x06\xaa\x1d\xbe\x06\xc2\x1c" "\xad\x06\x90\x22\x98\x06\xc3\x1d" 
	"\xbe\x06\xeb\x1c\xbd\x06\x6f\x22" "\xa8\x06\xd5\x1d\xc7\x06\xc3\x1c" 
	"\xac\x06\x6a\x22\x91\x06\xbc\x1d" "\xc3\x06\xb3\x1c\xd0\x06\x59\x22" 
	"\x9c\x06\x8c\x1d\xc3\x06\x95\x1c" "\xc9\x06\x50\x22\xa6\x06\xa1\x1d" 
	"\xb6\x06\xd7\x1c\xb1\x06\x52\x22" "\x94\x06\xc9\x1d\xab\x06\xeb\x1c" 
	"\xb7\x06\x1a\x22\xb0\x06\x97\x1d" "\xb0\x06\xda\x1c\xd1\x06\x58\x22" 
	"\xa4\x06\x9d\x1d\xc2\x06\xb0\x1c" "\xcc\x06\x3c\x22\xb0\x06\x6e\x1d" 
	"\xb1\x06\x99\x1c\xb7\x06\x19\x22" "\x97\x06\x3c\x1d\xc2\x06\x77\x1c" 
	"\xb6\x06\x89\x21\xa7\x06\x19\x1d" "\xaf\x06\x1d\x1c\x98\x06\xfa\x21" 
	"\x75\x06\x69\x1d\x95\x06\x88\x1c" "\xd4\x06\x68\x22\xab\x06\x78\x1d" 
	"\xc3\x06\xa7\x1c\xae\x06\x24\x22" "\xa6\x06\x7f\x1d\xc2\x06\xbc\x1c" 
	"\xae\x06\x34\x22\x9a\x06\x76\x1d" "\xc0\x06\xc6\x1c\xba\x06\x09\x22" 
	"\xa6\x06\x62\x1d\xbd\x06\x7a\x1c" "\xc1\x06\x31\x22\x9d\x06\x59\x1d" 
	"\xb9\x06\x92\x1c\xac\x06\xe7\x21" "\x99\x06\x1a\x1d\xaa\x06\x3e\x1c" 
	"\xc3\x06\x08\x22\xa3\x06\x08\x1d" "\xb0\x06\x3e\x1c\xb1\x06\xfe\x21" 
	"\x8a\x06\x3f\x1d\xba\x06\x89\x1c" "\xd2\x06\xfe\x21\xb1\x06\x93\x1d" 
	"\xb5\x06\xa5\x1c\xba\x06\x4a\x22" "\x9f\x06\x6f\x1d\xb5\x06\x6e\x1c" 
	"\xb1\x06\x77\x22\x8c\x06\x63\x1d" "\xb4\x06\xb9\x1c\xca\x06\x42\x22" 
	"\xa4\x06\x76\x1d\xc6\x06\x9f\x1c" "\xaf\x06\xf2\x21\x85\x06\x2e\x1d" 
	"\xc4\x06\x57\x1c\xcc\x06\x70\x22" "\xb7\x06\x45\x1d\xbc\x06\x76\x1c" 
	"\xb7\x06\x89\x22\x92\x06\x7c\x1d" "\xaf\x06\x7c\x1c\xbf\x06\x5b\x22" 
	"\xaa\x06\x8c\x1d\xb8\x06\x9b\x1c" "\xc8\x06\x2a\x22\xa4\x06\x9b\x1d" 
	"\xb8\x06\x9f\x1c\xb6\x06\x7e\x22" "\x92\x06\x89\x1d\xb4\x06\xdc\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x9e\x06\x82\x22\x8b\x06\xb4\x1d" "\xbc\x06\x09\x1d\xc3\x06\x2f\x22" 
	"\xa0\x06\x8a\x1d\xbd\x06\xdd\x1c" "\xd5\x06\x13\x22\xa5\x06\x51\x1d" 
	"\xb8\x06\x8b\x1c\xb6\x06\x76\x22" "\xaf\x06\x94\x1d\xb4\x06\x0b\x1d" 
	"\xc5\x06\x53\x22\xb0\x06\x9c\x1d" "\xb1\x06\xae\x1c\xc9\x06\x52\x22" 
	"\xaf\x06\xb5\x1d\xbb\x06\xc0\x1c" "\xb6\x06\x66\x22\x97\x06\x85\x1d" 
	"\xb6\x06\xb9\x1c\x9a\x06\x8c\x22" "\x84\x06\xa0\x1d\xae\x06\xbb\x1c" 
	"\xb2\x06\x3d\x22\xa8\x06\x67\x1d" "\xaf\x06\xac\x1c\xca\x06\x30\x22" 
	"\xaa\x06\x40\x1d\xc1\x06\x6d\x1c" "\xb8\x06\x74\x22\x90\x06\x5e\x1d" 
	"\xbf\x06\xb3\x1c\xcd\x06\x50\x22" "\xb3\x06\x8c\x1d\xba\x06\xdb\x1c" 
	"\xc7\x06\x4b\x22\xb0\x06\x87\x1d" "\xb5\x06\xed\x1c\xc1\x06\x45\x22" 
	"\xa8\x06\x67\x1d\xb9\x06\xf9\x1c" "\xbc\x06\x58\x22\x97\x06\xb2\x1d" 
	"\xb3\x06\xef\x1c\xce\x06\xa1\x22" "\xb4\x06\x9a\x1d\xb7\x06\xfc\x1c" 
	"\xcc\x06\x54\x22\xbf\x06\x7a\x1d" "\xba\x06\x94\x1c\xd1\x06\x51\x22" 
	"\xa1\x06\x8b\x1d\xc6\x06\xf4\x1c" "\xad\x06\xae\x22\x89\x06\xb5\x1d" 
	"\xb7\x06\xed\x1c\xb9\x06\xa8\x22" "\xa9\x06\xb7\x1d\xbd\x06\xf8\x1c" 
	"\xc1\x06\xd6\x22\xb6\x06\xc1\x1d" "\xbe\x06\xf2\x1c\xa9\x06\xf1\x22" 
	"\x88\x06\xcd\x1d\xc1\x06\x08\x1d" "\xcb\x06\x8a\x22\xa9\x06\xc4\x1d" 
	"\xc3\x06\x04\x1d\xd3\x06\xb4\x22" "\xba\x06\x99\x1d\xb2\x06\xae\x1c" 
	"\x97\x06\xf4\x22\x88\x06\xfb\x1d" "\xb3\x06\xd6\x1c\xd0\x06\xd1\x22" 
	"\xaa\x06\xbf\x1d\xb8\x06\xcf\x1c" "\xbe\x06\xc7\x22\xa1\x06\x8b\x1d" 
	"\xb6\x06\xd6\x1c\xbf\x06\xc5\x22" "\xa8\x06\xaf\x1d\xbc\x06\xf5\x1c" 
	"\xbf\x06\xb8\x22\xb8\x06\xad\x1d" "\xbd\x06\xca\x1c\xd4\x06\xab\x22" 
	"\xa4\x06\xaa\x1d\xc2\x06\xb4\x1c" "\xcd\x06\x9f\x22\xa6\x06\x57\x1d" 
	"\xba\x06\x99\x1c\xb7\x06\x5f\x22" "\xa6\x06\x5d\x1d\xb2\x06\x80\x1c" 
	"\xc4\x06\x9f\x22\xaf\x06\x8e\x1d" "\xb5\x06\xc1\x1c\xcb\x06\xab\x22" 
	"\xa9\x06\x92\x1d\xb9\x06\xc8\x1c" "\xd4\x06\xe4\x22\xb0\x06\xcb\x1d" 
	"\xb5\x06\xcb\x1c\xcf\x06\x04\x23" "\xb1\x06\xea\x1d\xad\x06\xc9\x1c" 
	"\xc5\x06\x90\x22\xbc\x06\xcf\x1d" "\xb9\x06\xed\x1c\xc5\x06\x80\x22" 
	"\xa8\x06\x9c\x1d\xb6\x06\xa8\x1c" "\xc3\x06\x9b\x22\xab\x06\x9c\x1d" 
	"\xc3\x06\x78\x1c\xc9\x06\xd9\x22" "\xb2\x06\xef\x1d\xbf\x06\xd8\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc4\x06\xc3\x22\xb9\x06\xf4\x1d" "\xc6\x06\xf3\x1c\xd3\x06\xf4\x22" 
	"\xba\x06\xfb\x1d\xc0\x06\xe3\x1c" "\xd0\x06\x07\x23\xa9\x06\xd4\x1d" 
	"\xbd\x06\x08\x1d\xcf\x06\xfb\x22" "\xac\x06\x1d\x1e\xb7\x06\x1d\x1d" 
	"\xc1\x06\xee\x22\xb6\x06\x20\x1e" "\xc7\x06\x5a\x1d\xb5\x06\x14\x23" 
	"\x9c\x06\x97\x1e\xc7\x06\x5e\x1d" "\xc9\x06\xfe\x22\xa9\x06\x38\x1e" 
	"\xbe\x06\x5a\x1d\xd9\x06\xe6\x22" "\xbd\x06\x17\x1e\xbd\x06\x3a\x1d" 
	"\xca\x06\x01\x23\xbf\x06\x20\x1e" "\xb8\x06\x48\x1d\xc4\x06\xdf\x22" 
	"\xaf\x06\x1f\x1e\xc7\x06\x2f\x1d" "\xda\x06\x2f\x23\xb2\x06\x21\x1e" 
	"\xc8\x06\x10\x1d\xd9\x06\x3e\x23" "\xc3\x06\x0f\x1e\xb5\x06\xb6\x1c" 
	"\xc4\x06\x8b\x22\xa8\x06\x5e\x1d" "\xa8\x06\xfb\x1b\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\xe0\x06\xdd\x24" "\xc2\x06\x5b\x1f\xcd\x06\x5b\x1e" 
	"\xd3\x06\xa9\x25\xbb\x06\xc4\x1f" "\xd1\x06\xdc\x1e\xf0\x06\x6e\x25" 
	"\xc8\x06\x0d\x20\xcb\x06\x4b\x1f" "\xe9\x06\x62\x25\xc8\x06\xe1\x1f" 
	"\xdc\x06\x4d\x1f\xd0\x06\x70\x25" "\xb6\x06\xc1\x1f\xd4\x06\x32\x1f" 
	"\xd1\x06\x0d\x25\xcd\x06\xaa\x1f" "\xd5\x06\x17\x1f\xe6\x06\x02\x25" 
	"\xcd\x06\x89\x1f\xdb\x06\x23\x1f" "\xed\x06\xe4\x24\xc6\x06\x7b\x1f" 
	"\xda\x06\xfd\x1e\xd8\x06\xd3\x24" "\xba\x06\x4f\x1f\xc1\x06\xc9\x1e" 
	"\xc5\x06\x1e\x25\xb6\x06\x83\x1f" "\xcb\x06\xf3\x1e\xe5\x06\xf4\x24" 
	"\xca\x06\xab\x1f\xd6\x06\xf9\x1e" "\xe9\x06\x0a\x25\xc7\x06\xb6\x1f" 
	"\xd1\x06\xf4\x1e\xbd\x06\x00\x25" "\xa9\x06\xa9\x1f\xc9\x06\x10\x1f" 
	"\xe9\x06\x25\x25\xce\x06\x8c\x1f" "\xd3\x06\x2f\x1f\xe1\x06\x46\x25" 
	"\xc6\x06\x83\x1f\xd2\x06\x22\x1f" "\xe5\x06\x14\x25\xcc\x06\xae\x1f" 
	"\xe2\x06\x94\x1f\xe4\x06\x8f\x25" "\xd1\x06\xad\x1f\xd7\x06\x72\x1f" 
	"\xe8\x06\x55\x25\xd3\x06\xd8\x1f" "\xdb\x06\x6f\x1f\xe2\x06\xf3\x24" 
	"\xc4\x06\xb5\x1f\xd7\x06\x52\x1f" "\xd5\x06\x4c\x25\xa8\x06\x6e\x1f" 
	"\xda\x06\x2b\x1f\xe1\x06\x71\x25" "\xcd\x06\x7f\x1f\xd5\x06\x27\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdc\x06\x5c\x25\xce\x06\x89\x1f" "\xd4\x06\x31\x1f\xe1\x06\x54\x25" 
	"\xaa\x06\x5c\x1f\xdc\x06\x1a\x1f" "\xde\x06\x98\x25\xbf\x06\x5c\x1f" 
	"\xdb\x06\x1b\x1f\xe0\x06\x52\x25" "\xcc\x06\x9e\x1f\xcd\x06\x32\x1f" 
	"\xea\x06\x59\x25\xd1\x06\x75\x1f" "\xd7\x06\x4e\x1f\xd8\x06\x64\x25" 
	"\xc7\x06\xcb\x1f\xce\x06\x37\x1f" "\xdd\x06\x1c\x25\xbd\x06\x6f\x1f" 
	"\xd6\x06\x32\x1f\xc4\x06\x61\x25" "\xb5\x06\x95\x1f\xc2\x06\x6b\x1f" 
	"\xe8\x06\x82\x25\xd0\x06\x6e\x1f" "\xc6\x06\x00\x1f\xdf\x06\x67\x25" 
	"\xb0\x06\x88\x1f\xce\x06\xed\x1e" "\xdd\x06\x7f\x25\xc6\x06\x89\x1f" 
	"\xcd\x06\x2c\x1f\xea\x06\x7c\x25" "\xc1\x06\x94\x1f\xcd\x06\x3a\x1f" 
	"\xd4\x06\x64\x25\xc2\x06\x66\x1f" "\xda\x06\x3b\x1f\xe3\x06\x4b\x25" 
	"\xbd\x06\x9e\x1f\xce\x06\x1f\x1f" "\xe9\x06\x51\x25\xbc\x06\x94\x1f" 
	"\xd8\x06\x52\x1f\xdc\x06\x61\x25" "\xc8\x06\xaf\x1f\xcb\x06\x63\x1f" 
	"\xdf\x06\x9f\x25\xbf\x06\x96\x1f" "\xcf\x06\x5b\x1f\xf1\x06\x79\x25" 
	"\xce\x06\xb3\x1f\xd3\x06\x85\x1f" "\xde\x06\x41\x25\xba\x06\x92\x1f" 
	"\xd9\x06\x63\x1f\xe5\x06\x49\x25" "\xcc\x06\x60\x1f\xcd\x06\x57\x1f" 
	"\xd6\x06\x2c\x25\xc0\x06\x51\x1f" "\xd0\x06\x4c\x1f\xdc\x06\x4d\x25" 
	"\xb9\x06\x77\x1f\xcf\x06\x48\x1f" "\xcb\x06\x6c\x25\xad\x06\x49\x1f" 
	"\xe0\x06\x46\x1f\xdd\x06\x18\x25" "\xbd\x06\x06\x1f\xcb\x06\xc6\x1e" 
	"\xe5\x06\x08\x25\xd0\x06\x35\x1f" "\xcd\x06\x01\x1f\xcd\x06\xf7\x24" 
	"\xa1\x06\x8a\x1f\xd0\x06\x23\x1f" "\xe9\x06\x35\x25\xc7\x06\x88\x1f" 
	"\xd6\x06\x19\x1f\xe4\x06\x13\x25" "\xcb\x06\x8d\x1f\xcb\x06\x24\x1f" 
	"\xd6\x06\x3e\x25\xd3\x06\x9a\x1f" "\xe0\x06\x45\x1f\xe3\x06\x00\x25" 
	"\xca\x06\xa7\x1f\xd4\x06\x55\x1f" "\xe2\x06\x18\x25\xc8\x06\xa0\x1f" 
	"\xcd\x06\x16\x1f\xdc\x06\x73\x25" "\xbe\x06\x75\x1f\xcb\x06\x5a\x1f" 
	"\xdc\x06\x01\x25\xcc\x06\xa7\x1f" "\xcf\x06\x68\x1f\xde\x06\x1a\x25" 
	"\xc8\x06\x95\x1f\xd1\x06\x37\x1f" "\xe3\x06\xd8\x24\xc1\x06\x9a\x1f" 
	"\xdd\x06\x28\x1f\xce\x06\x33\x25" "\xc2\x06\xb6\x1f\xcd\x06\x2d\x1f" 
	"\xe0\x06\x0e\x25\xcb\x06\xbc\x1f" "\xd5\x06\x45\x1f\xe4\x06\x2b\x25" 
	"\xbf\x06\x7e\x1f\xd6\x06\x50\x1f" "\xe5\x06\x06\x25\xc1\x06\x9e\x1f" 
	"\xcf\x06\x2f\x1f\xe2\x06\x35\x25" "\xc5\x06\x9d\x1f\xd3\x06\x69\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe5\x06\x6c\x25\xc7\x06\x76\x1f" "\xcb\x06\x76\x1f\xdf\x06\x1c\x25" 
	"\xb7\x06\x7b\x1f\xce\x06\x23\x1f" "\xda\x06\xf1\x24\xc3\x06\x57\x1f" 
	"\xd5\x06\x07\x1f\xde\x06\x3c\x25" "\xc4\x06\x67\x1f\xc7\x06\xf7\x1e" 
	"\xd2\x06\xf1\x24\xba\x06\x54\x1f" "\xd8\x06\xc8\x1e\xde\x06\xb9\x24" 
	"\xba\x06\x1d\x1f\xcf\x06\xdc\x1e" "\xe9\x06\x16\x25\xc4\x06\x9b\x1f" 
	"\xd7\x06\x3b\x1f\xd3\x06\xfe\x24" "\xc7\x06\x71\x1f\xc8\x06\x37\x1f" 
	"\xc9\x06\x65\x25\xb9\x06\xb8\x1f" "\xb9\x06\x58\x1f\xe4\x06\xfa\x24" 
	"\xbe\x06\x5d\x1f\xd5\x06\x30\x1f" "\xdf\x06\xdd\x24\xbe\x06\xa3\x1f" 
	"\xd6\x06\xf8\x1e\xd7\x06\xd9\x24" "\xbd\x06\x4d\x1f\xc5\x06\x18\x1f" 
	"\xcd\x06\xb8\x24\xb3\x06\x40\x1f" "\xbe\x06\xe2\x1e\xda\x06\xc4\x24" 
	"\xa9\x06\x6e\x1f\xd8\x06\xe9\x1e" "\xe1\x06\xd6\x24\xca\x06\x88\x1f" 
	"\xd7\x06\x06\x1f\xda\x06\x05\x25" "\xb7\x06\x4a\x1f\xca\x06\x23\x1f" 
	"\xdc\x06\xf3\x24\xcc\x06\x6d\x1f" "\xc4\x06\x08\x1f\xee\x06\x01\x25" 
	"\xc7\x06\x98\x1f\xda\x06\x73\x1f" "\xd7\x06\x38\x25\xbe\x06\x76\x1f" 
	"\xd4\x06\x6e\x1f\xd7\x06\x54\x25" "\xbd\x06\x5a\x1f\xd7\x06\x17\x1f" 
	"\xdc\x06\x17\x25\xcc\x06\x81\x1f" "\xcd\x06\x27\x1f\xe8\x06\x21\x25" 
	"\xbd\x06\x8e\x1f\xd5\x06\x44\x1f" "\xe0\x06\x15\x25\xcc\x06\x3e\x1f" 
	"\xd6\x06\x30\x1f\xda\x06\xe0\x24" "\xc5\x06\x46\x1f\xd3\x06\x1c\x1f" 
	"\xe3\x06\xb2\x24\xd0\x06\x64\x1f" "\xd4\x06\x02\x1f\xe0\x06\x05\x25" 
	"\xb9\x06\x38\x1f\xd2\x06\xfe\x1e" "\xd9\x06\xbb\x24\xac\x06\x20\x1f" 
	"\xe1\x06\x06\x1f\xc7\x06\xf6\x24" "\xb2\x06\x27\x1f\xcf\x06\x42\x1f" 
	"\xcd\x06\xd2\x24\xb9\x06\x55\x1f" "\xd9\x06\x45\x1f\xe9\x06\x02\x25" 
	"\xbe\x06\x57\x1f\xd1\x06\x2c\x1f" "\xe7\x06\x21\x25\xc0\x06\x28\x1f" 
	"\xcf\x06\xfb\x1e\xd4\x06\xdb\x24" "\xb8\x06\x64\x1f\xc8\x06\x3e\x1f" 
	"\xd1\x06\xa5\x24\xc4\x06\x35\x1f" "\xd8\x06\x4e\x1f\xe3\x06\xba\x24" 
	"\xc5\x06\x50\x1f\xd0\x06\x16\x1f" "\xe8\x06\xcd\x24\xc6\x06\x1f\x1f" 
	"\xdd\x06\x1a\x1f\xde\x06\x26\x25" "\xcb\x06\x95\x1f\xcd\x06\x75\x1f" 
	"\xe8\x06\x58\x25\xd3\x06\x85\x1f" "\xc9\x06\x58\x1f\xe3\x06\x22\x25" 
	"\xc1\x06\x56\x1f\xd6\x06\x6a\x1f" "\xe1\x06\xcd\x24\xcd\x06\x69\x1f" 
	"\xd1\x06\x46\x1f\xdf\x06\xe3\x24" "\xc6\x06\x83\x1f\xcd\x06\x46\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xce\x06\x6d\x24\xbd\x06\x22\x1f" "\xcd\x06\xd5\x1e\xdb\x06\x41\x24" 
	"\xb0\x06\xff\x1e\xc7\x06\xea\x1e" "\xdf\x06\x35\x24\xbd\x06\x70\x1f" 
	"\xda\x06\x5b\x1f\xed\x06\xde\x24" "\xbd\x06\x83\x1f\xd3\x06\x56\x1f" 
	"\xcb\x06\xef\x24\xb7\x06\x62\x1f" "\xd8\x06\x74\x1f\xe0\x06\xe8\x24" 
	"\xc0\x06\x39\x1f\xd3\x06\x35\x1f" "\xdc\x06\xe2\x24\xbf\x06\x3d\x1f" 
	"\xd0\x06\x2d\x1f\xda\x06\xe3\x24" "\xca\x06\x74\x1f\xd1\x06\x27\x1f" 
	"\xd4\x06\xb6\x24\xd6\x06\x30\x1f" "\xcc\x06\xf5\x1e\xd5\x06\x9a\x24" 
	"\xad\x06\x50\x1f\xc5\x06\x1d\x1f" "\xde\x06\x90\x24\xbd\x06\x52\x1f" 
	"\xd8\x06\x1a\x1f\xd4\x06\x95\x24" "\xb8\x06\x44\x1f\xd8\x06\x1e\x1f" 
	"\xd9\x06\xa4\x24\xc0\x06\x57\x1f" "\xd7\x06\x2e\x1f\xde\x06\xee\x24" 
	"\xb9\x06\x45\x1f\xcc\x06\x01\x1f" "\xe8\x06\xf7\x24\xcc\x06\x3e\x1f" 
	"\xd5\x06\xe1\x1e\xd9\x06\x8b\x24" "\xc7\x06\xd4\x1e\xc5\x06\x9b\x1e" 
	"\xd6\x06\xa2\x24\xc5\x06\x2a\x1f" "\xd3\x06\xe6\x1e\xd2\x06\x86\x24" 
	"\xb2\x06\x50\x1f\xd5\x06\xf5\x1e" "\xca\x06\x5e\x24\x9e\x06\x4b\x1f" 
	"\xd1\x06\xed\x1e\xd5\x06\x2d\x24" "\xd1\x06\x41\x1f\xd6\x06\x20\x1f" 
	"\xd9\x06\x53\x24\xc1\x06\x5e\x1f" "\xcc\x06\xfb\x1e\xd5\x06\x20\x24" 
	"\xb7\x06\x5c\x1f\xd7\x06\xee\x1e" "\xbb\x06\x54\x24\x90\x06\x4a\x1f" 
	"\xdb\x06\xc9\x1e\xcd\x06\x14\x24" "\xb4\x06\x47\x1f\xce\x06\xf7\x1e" 
	"\xdc\x06\x1b\x24\xd0\x06\xa1\x1f" "\xc7\x06\x19\x1f\xda\x06\x00\x24" 
	"\xbc\x06\x40\x1f\xd5\x06\x01\x1f" "\xdb\x06\x7d\x24\xb5\x06\x58\x1f" 
	"\xd8\x06\x1a\x1f\xe1\x06\x63\x24" "\xd2\x06\x87\x1f\xcf\x06\x16\x1f" 
	"\xdb\x06\xbc\x24\xc4\x06\x87\x1f" "\xd7\x06\x5c\x1f\xc2\x06\xf7\x24" 
	"\x98\x06\x82\x1f\xd8\x06\x24\x1f" "\xe4\x06\xac\x24\xbb\x06\x47\x1f" 
	"\xd7\x06\x1d\x1f\xcf\x06\xdd\x24" "\xc0\x06\x8f\x1f\xdf\x06\x3f\x1f" 
	"\xc8\x06\x8f\x24\xc4\x06\x93\x1f" "\xd9\x06\x37\x1f\xe6\x06\x78\x24" 
	"\xd1\x06\x74\x1f\xdb\x06\x2e\x1f" "\xe3\x06\xc8\x24\xbe\x06\x70\x1f" 
	"\xd9\x06\x1a\x1f\xd6\x06\xdb\x24" "\xce\x06\x98\x1f\xdb\x06\x5c\x1f" 
	"\xb6\x06\x6d\x25\x9b\x06\xa8\x1f" "\xbb\x06\x6a\x1f\xdb\x06\x13\x25" 
	"\xb1\x06\x6a\x1f\xc5\x06\x0e\x1f" "\xdb\x06\xd1\x24\xc5\x06\xb0\x1f" 
	"\xcc\x06\x38\x1f\xd9\x06\xd5\x24" "\xc4\x06\x9f\x1f\xd5\x06\x4d\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd3\x06\xd1\x24\xb9\x06\x7f\x1f" "\xd0\x06\x34\x1f\xe1\x06\xd4\x24" 
	"\xc0\x06\x8f\x1f\xdd\x06\x33\x1f" "\xdf\x06\xd4\x24\xc4\x06\x69\x1f" 
	"\xd9\x06\x1f\x1f\xdf\x06\xd7\x24" "\xd0\x06\x93\x1f\xd9\x06\x48\x1f" 
	"\xa9\x06\x0c\x25\x8a\x06\x93\x1f" "\xd1\x06\x1a\x1f\xe9\x06\x0a\x25" 
	"\xca\x06\xd4\x1f\xde\x06\x6b\x1f" "\xed\x06\x1f\x25\xc8\x06\x0c\x20" 
	"\xd8\x06\x79\x1f\xe1\x06\x15\x25" "\xd9\x06\xc3\x1f\xe2\x06\x85\x1f" 
	"\xdf\x06\xbd\x24\xd6\x06\x9b\x1f" "\xcc\x06\x28\x1f\xd7\x06\x9a\x24" 
	"\xbc\x06\x9f\x1f\xd7\x06\x5f\x1f" "\xd7\x06\xaa\x24\xbd\x06\xb8\x1f" 
	"\xdd\x06\x51\x1f\xd5\x06\xa2\x24" "\xcd\x06\x95\x1f\xca\x06\x1e\x1f" 
	"\xc8\x06\x62\x25\xb7\x06\xc8\x1f" "\xc7\x06\x59\x1f\xe8\x06\x85\x25" 
	"\xba\x06\x86\x1f\xda\x06\x84\x1f" "\xe8\x06\x52\x25\xc4\x06\xac\x1f" 
	"\xe8\x06\x96\x1f\xba\x06\x5f\x25" "\xaa\x06\xb2\x1f\xd4\x06\x77\x1f" 
	"\xdc\x06\x3e\x25\xbf\x06\xb8\x1f" "\xd8\x06\x3f\x1f\xe9\x06\xbd\x24" 
	"\xbf\x06\x99\x1f\xd7\x06\x52\x1f" "\xc8\x06\x61\x24\xa8\x06\x51\x1f" 
	"\xd2\x06\x18\x1f\xbd\x06\x84\x24" "\xab\x06\x77\x1f\xd5\x06\x34\x1f" 
	"\xe3\x06\x83\x24\xc4\x06\xaf\x1f" "\xd7\x06\x3b\x1f\xc6\x06\xad\x24" 
	"\x9c\x06\xc6\x1f\xcc\x06\x4d\x1f" "\xdb\x06\x57\x24\xb6\x06\x9c\x1f" 
	"\xe7\x06\x52\x1f\xc4\x06\x0c\x25" "\xa8\x06\xa5\x1f\xda\x06\x49\x1f" 
	"\xe8\x06\x09\x25\xc9\x06\xa3\x1f" "\xda\x06\x77\x1f\xe1\x06\x51\x25" 
	"\xc2\x06\xb7\x1f\xc2\x06\x5f\x1f" "\xd5\x06\x10\x25\xb8\x06\xa9\x1f" 
	"\xca\x06\x4e\x1f\xce\x06\xcf\x24" "\xc6\x06\xb9\x1f\xd4\x06\x7d\x1f" 
	"\xe2\x06\xaa\x24\xd7\x06\xaa\x1f" "\xc9\x06\x59\x1f\xe5\x06\xe4\x24" 
	"\xcf\x06\x99\x1f\xd5\x06\x4b\x1f" "\xd9\x06\xfb\x24\xc1\x06\x92\x1f" 
	"\xd8\x06\x56\x1f\xd2\x06\x25\x25" "\xc6\x06\xaa\x1f\xd5\x06\x81\x1f" 
	"\xdd\x06\x08\x25\xc5\x06\x9f\x1f" "\xcf\x06\x69\x1f\xdf\x06\xfd\x24" 
	"\xc0\x06\x87\x1f\xcf\x06\x34\x1f" "\xd5\x06\x0d\x25\xc6\x06\xd9\x1f" 
	"\xd8\x06\x80\x1f\xe9\x06\x15\x25" "\xcf\x06\xa4\x1f\xd5\x06\x96\x1f" 
	"\xde\x06\xeb\x24\xc9\x06\xa7\x1f" "\xd3\x06\x76\x1f\xda\x06\x1f\x25" 
	"\xbd\x06\xcf\x1f\xce\x06\x78\x1f" "\xda\x06\x3a\x25\xb4\x06\xad\x1f" 
	"\xd5\x06\x75\x1f\xd4\x06\x3a\x25" "\xbe\x06\xda\x1f\xc8\x06\x76\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe6\x06\x50\x25\xcb\x06\xcb\x1f" "\xce\x06\x49\x1f\xe8\x06\x29\x25" 
	"\xc9\x06\xb4\x1f\xde\x06\x70\x1f" "\xe8\x06\x52\x25\xbd\x06\xa4\x1f" 
	"\xd7\x06\x6c\x1f\xde\x06\x46\x25" "\xc4\x06\x96\x1f\xdb\x06\x69\x1f" 
	"\xd8\x06\x70\x25\xbc\x06\x8a\x1f" "\xde\x06\x8a\x1f\xe6\x06\xdc\x24" 
	"\xbd\x06\x95\x1f\xcb\x06\x44\x1f" "\xe4\x06\x24\x25\xc6\x06\x84\x1f" 
	"\xda\x06\x5c\x1f\xc1\x06\x2c\x25" "\x9d\x06\x34\x1f\xcc\x06\x18\x1f" 
	"\xe1\x06\x6a\x25\xcf\x06\x87\x1f" "\xd5\x06\x52\x1f\xee\x06\xd5\x25" 
	"\xc5\x06\xb1\x1f\xd9\x06\xa2\x1f" "\xe7\x06\x70\x25\xc9\x06\x9b\x1f" 
	"\xe2\x06\x84\x1f\xf0\x06\x31\x25" "\xcf\x06\xc8\x1f\xd0\x06\x92\x1f" 
	"\xd7\x06\xfb\x24\xbe\x06\x8e\x1f" "\xd6\x06\x5f\x1f\xbf\x06\x24\x25" 
	"\x9c\x06\xc2\x1f\xd8\x06\x56\x1f" "\xf1\x06\x21\x25\xc2\x06\xaa\x1f" 
	"\xd7\x06\x22\x1f\xde\x06\x45\x25" "\xcb\x06\xc8\x1f\xc3\x06\x42\x1f" 
	"\xea\x06\x67\x25\xd0\x06\x98\x1f" "\xd5\x06\x37\x1f\xe2\x06\xf8\x24" 
	"\xbb\x06\xa6\x1f\xc9\x06\x56\x1f" "\xe6\x06\xe3\x24\xbf\x06\xb5\x1f" 
	"\xdc\x06\x61\x1f\xc9\x06\x1d\x25" "\xc2\x06\xcd\x1f\xc9\x06\x5d\x1f" 
	"\xdf\x06\x00\x25\xd2\x06\x85\x1f" "\xd4\x06\x59\x1f\xdf\x06\x13\x25" 
	"\xae\x06\x7a\x1f\xda\x06\x51\x1f" "\xc2\x06\xe6\x24\x9b\x06\xaf\x1f" 
	"\xcc\x06\x3e\x1f\xde\x06\x14\x25" "\xc3\x06\xc4\x1f\xd3\x06\x32\x1f" 
	"\xd5\x06\xfd\x24\xcf\x06\x7b\x1f" "\xcb\x06\x5c\x1f\xe0\x06\xeb\x24" 
	"\xb8\x06\xa9\x1f\xc5\x06\x3e\x1f" "\xde\x06\xd9\x24\xb6\x06\x6f\x1f" 
	"\xcd\x06\x26\x1f\xcf\x06\xde\x24" "\xc0\x06\x31\x1f\xd1\x06\x0d\x1f" 
	"\xde\x06\xb0\x24\xcf\x06\x7b\x1f" "\xd1\x06\x28\x1f\xd5\x06\xf8\x24" 
	"\xb9\x06\x74\x1f\xd5\x06\xf9\x1e" "\xdf\x06\xde\x24\xc4\x06\x95\x1f" 
	"\xd2\x06\x2a\x1f\xde\x06\xec\x24" "\xcf\x06\x76\x1f\xcc\x06\x47\x1f" 
	"\xac\x06\xf4\x24\xa2\x06\x84\x1f" "\xd5\x06\x22\x1f\xbc\x06\xfa\x24" 
	"\x9d\x06\xa5\x1f\xba\x06\x4c\x1f" "\xd8\x06\x8b\x24\xbc\x06\x65\x1f" 
	"\xd7\x06\x22\x1f\xc4\x06\xb7\x24" "\xb3\x06\x8e\x1f\xc6\x06\x46\x1f" 
	"\xd6\x06\xee\x24\xd0\x06\x96\x1f" "\xd2\x06\x5c\x1f\xe1\x06\xd9\x24" 
	"\xc3\x06\x8e\x1f\xcc\x06\x5d\x1f" "\xdd\x06\x01\x25\xc0\x06\x83\x1f" 
	"\xd8\x06\x32\x1f\xe6\x06\xc5\x24" "\xc7\x06\x5b\x1f\xd1\x06\x66\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdc\x06\xd1\x24\xd6\x06\x65\x1f" "\xd7\x06\x53\x1f\xc7\x06\xe3\x24" 
	"\xa7\x06\x6f\x1f\xce\x06\x47\x1f" "\xe3\x06\xd6\x24\xc0\x06\x8f\x1f" 
	"\xd4\x06\x2b\x1f\xbe\x06\x9e\x24" "\xa1\x06\x3e\x1f\xc2\x06\xfb\x1e" 
	"\xd8\x06\xb1\x24\xcc\x06\x4e\x1f" "\xd3\x06\x0f\x1f\xe5\x06\xe5\x24" 
	"\xc0\x06\x64\x1f\xde\x06\x53\x1f" "\xce\x06\xcf\x24\xad\x06\x61\x1f" 
	"\xdb\x06\x53\x1f\xcb\x06\xb5\x24" "\xc0\x06\x42\x1f\xdc\x06\x44\x1f" 
	"\xda\x06\xd4\x24\xc3\x06\x5a\x1f" "\xd1\x06\x2c\x1f\xda\x06\x74\x24" 
	"\xb0\x06\x25\x1f\xd4\x06\x1b\x1f" "\xcb\x06\x2d\x24\xb3\x06\x13\x1f" 
	"\xdc\x06\xbd\x1e\xc0\x06\x5a\x24" "\xa7\x06\xef\x1e\xc3\x06\x01\x1f" 
	"\xe7\x06\xa7\x24\xc6\x06\x0a\x1f" "\xcf\x06\xfa\x1e\xdc\x06\x5c\x24" 
	"\xbd\x06\x23\x1f\xd0\x06\x10\x1f" "\xe8\x06\x9d\x24\xc2\x06\x29\x1f" 
	"\xda\x06\x10\x20\xd7\x06\x77\x24" "\xcf\x06\x1e\x1f\xbf\x06\x10\x1f" 
	"\xd4\x06\xb5\x24\xc0\x06\x31\x1f" "\xdf\x06\x04\x1f\xe6\x06\xc9\x24" 
	"\xc4\x06\x2b\x1f\xe0\x06\x23\x1f" "\xed\x06\xf8\x24\xc2\x06\x39\x1f" 
	"\xe2\x06\x43\x1f\xb8\x06\x35\x25" "\xa3\x06\x61\x1f\xd2\x06\x47\x1f" 
	"\xdf\x06\xe9\x24\xb9\x06\x1f\x1f" "\xcc\x06\x1f\x1f\xd8\x06\xa2\x24" 
	"\xc4\x06\x22\x1f\xd1\x06\x12\x1f" "\xda\x06\x54\x24\xbe\x06\x27\x1f" 
	"\xd5\x06\x03\x1f\xbe\x06\xbf\x24" "\xa4\x06\x0b\x1f\xd2\x06\xfe\x1e" 
	"\xd4\x06\x90\x24\xb5\x06\x38\x1f" "\xd2\x06\xe2\x1e\xdf\x06\xb7\x24" 
	"\xb8\x06\x40\x1f\xd2\x06\xfb\x1e" "\xe0\x06\x63\x24\xc6\x06\x7d\x1f" 
	"\xd0\x06\x14\x1f\xec\x06\xb9\x24" "\xd2\x06\x41\x1f\xd7\x06\x14\x1f" 
	"\xe6\x06\xc9\x24\xcf\x06\x39\x1f" "\xdb\x06\x14\x1f\xcc\x06\xd3\x24" 
	"\xb1\x06\x2c\x1f\xdc\x06\x19\x1f" "\xe3\x06\x81\x24\xd9\x06\x34\x1f" 
	"\xd9\x06\x08\x1f\xdd\x06\x83\x24" "\xc9\x06\x2b\x1f\xcf\x06\xfe\x1e" 
	"\xd4\x06\xff\x24\xbd\x06\x34\x1f" "\xd2\x06\xe4\x1e\xe0\x06\xd4\x24" 
	"\xb4\x06\x37\x1f\xd4\x06\x02\x1f" "\xee\x06\xa5\x24\xd0\x06\x4d\x1f" 
	"\xd7\x06\x0f\x1f\xdc\x06\xe0\x24" "\xc2\x06\x31\x1f\xd1\x06\x13\x1f" 
	"\xdf\x06\xbc\x24\xc4\x06\x32\x1f" "\xd2\x06\x03\x1f\xe8\x06\xa8\x24" 
	"\xcb\x06\x2d\x1f\xdb\x06\x0b\x1f" "\xe5\x06\xdb\x24\xd0\x06\x16\x1f" 
	"\xd8\x06\xec\x1e\xd7\x06\xd6\x24" "\xcf\x06\x13\x1f\xd6\x06\x0d\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xeb\x06\xfa\x24\xcb\x06\x24\x1f" "\xce\x06\x00\x1f\xf0\x06\x08\x25" 
	"\xc8\x06\x08\x1f\xe0\x06\x0b\x1f" "\xd1\x06\xb9\x24\xc5\x06\x5c\x1f" 
	"\xd8\x06\x1a\x1f\xd7\x06\xba\x24" "\xc3\x06\x2a\x1f\xdb\x06\x43\x1f" 
	"\xdc\x06\xef\x24\xc0\x06\x58\x1f" "\xcc\x06\x3a\x1f\xe5\x06\xf1\x24" 
	"\xcb\x06\x4c\x1f\xd0\x06\x07\x1f" "\xe3\x06\xfc\x24\xc2\x06\x18\x1f" 
	"\xdd\x06\xf1\x1e\xce\x06\x9c\x24" "\xcb\x06\x20\x1f\xca\x06\x0e\x1f" 
	"\xbc\x06\xda\x24\xb3\x06\x8f\x1f" "\xce\x06\xfd\x1e\xe4\x06\xf5\x24" 
	"\xcd\x06\x69\x1f\xd7\x06\xe8\x1e" "\xdb\x06\xce\x24\xc2\x06\x4f\x1f" 
	"\xda\x06\x3b\x1f\xdf\x06\xc9\x24" "\xc0\x06\x3e\x1f\xd6\x06\x1f\x1f" 
	"\xdd\x06\xe2\x24\xd7\x06\x45\x1f" "\xd2\x06\x25\x1f\xe6\x06\x09\x25" 
	"\xc4\x06\x78\x1f\xd8\x06\x5b\x1f" "\xe0\x06\x10\x25\xb6\x06\x56\x1f" 
	"\xd2\x06\x22\x1f\xd0\x06\xde\x24" "\xb4\x06\x2f\x1f\xd1\x06\x22\x1f" 
	"\xd8\x06\xe9\x24\xb5\x06\x27\x1f" "\xda\x06\x46\x1f\xda\x06\xc2\x24" 
	"\xad\x06\x0a\x1f\xd9\x06\xf0\x1e" "\xdc\x06\x1c\x25\xbb\x06\x01\x1f" 
	"\xe2\x06\xca\x1e\xd7\x06\x9f\x24" "\xc2\x06\xd9\x1e\xd2\x06\x8e\x1e" 
	"\xd2\x06\x5c\x24\xcf\x06\x06\x1f" "\xcd\x06\x72\x1e\xd0\x06\x12\x24" 
	"\xb8\x06\xa1\x1e\xd3\x06\x5a\x1e" "\xc9\x06\x90\x24\xac\x06\x0a\x1f" 
	"\xd8\x06\xaf\x1e\xe0\x06\xc7\x24" "\xc4\x06\xf8\x1e\xd3\x06\xdf\x1e" 
	"\xcc\x06\x6d\x24\xc3\x06\x00\x1f" "\xcf\x06\xe5\x1e\xea\x06\xdf\x24" 
	"\xcf\x06\x17\x1f\xd2\x06\xa2\x1e" "\xdb\x06\x85\x24\xcd\x06\x24\x1f" 
	"\xd9\x06\xb8\x1e\xde\x06\x59\x24" "\xd4\x06\xd5\x1e\xcb\x06\xb2\x1e" 
	"\xda\x06\xbe\x24\xce\x06\xec\x1e" "\xd2\x06\x94\x1e\xce\x06\xa9\x24" 
	"\xba\x06\x1e\x1f\xca\x06\x03\x1f" "\xcc\x06\x9d\x24\xaf\x06\x0d\x1f" 
	"\xd4\x06\xc1\x1e\xc0\x06\xc1\x24" "\xa6\x06\x1a\x1f\xd4\x06\xd1\x1e" 
	"\xe7\x06\xa3\x24\xcb\x06\x0e\x1f" "\xcc\x06\xbd\x1e\xd5\x06\xc3\x24" 
	"\xb3\x06\x17\x1f\xd9\x06\xe2\x1e" "\xd6\x06\xd3\x24\xb7\x06\xfe\x1e" 
	"\xd6\x06\x15\x1f\xd8\x06\xb6\x24" "\xc3\x06\x00\x1f\xd7\x06\x22\x1f" 
	"\xcf\x06\xf2\x24\xb9\x06\x42\x1f" "\xce\x06\xf6\x1e\xe2\x06\x01\x25" 
	"\xb3\x06\x14\x1f\xdc\x06\x57\x1f" "\xeb\x06\xc3\x24\xd4\x06\x35\x1f" 
	"\xdf\x06\x34\x1f\xde\x06\xac\x24" "\xb5\x06\x23\x1f\xcd\x06\x21\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd4\x06\xd2\x24\xb8\x06\x12\x1f" "\xc8\x06\x16\x1f\xc7\x06\xbd\x24" 
	"\xaf\x06\x2f\x1f\xea\x06\x31\x1f" "\xe3\x06\xb0\x24\xc1\x06\x49\x1f" 
	"\xd7\x06\x20\x1f\xe4\x06\xc6\x24" "\xd0\x06\x38\x1f\xd4\x06\x0a\x1f" 
	"\xc0\x06\x9c\x24\xb7\x06\x73\x1f" "\xd8\x06\x42\x1f\xcd\x06\x07\x25" 
	"\x9a\x06\x52\x1f\xdc\x06\x33\x1f" "\xe1\x06\xc8\x24\xc5\x06\x34\x1f" 
	"\xd9\x06\x2e\x1f\xaf\x06\xb9\x24" "\xa1\x06\x88\x1f\xdc\x06\x50\x1f" 
	"\xc1\x06\xeb\x24\xad\x06\x64\x1f" "\xc5\x06\x34\x1f\xf0\x06\xf6\x24" 
	"\xbd\x06\x27\x1f\xd1\x06\x2e\x1f" "\xe7\x06\xee\x24\xcc\x06\x2d\x1f" 
	"\xdc\x06\x0e\x1f\xd2\x06\xb9\x24" "\xcb\x06\x83\x1f\xe3\x06\x60\x1f" 
	"\xe4\x06\x0d\x25\xd0\x06\x76\x1f" "\xde\x06\x72\x1f\xe9\x06\xf7\x24" 
	"\xc7\x06\x77\x1f\xe6\x06\x8b\x1f" "\xf7\x06\xfa\x24\xdb\x06\xae\x1f" 
	"\xde\x06\x6a\x1f\xe9\x06\x2f\x25" "\xd9\x06\xb5\x1f\xeb\x06\xb1\x1f" 
	"\xe7\x06\x0f\x25\xe7\x06\xcf\x1f" "\xe3\x06\xa5\x1f\xf2\x06\x5b\x25" 
	"\xd2\x06\x02\x20\xe5\x06\x70\x1f" "\xf4\x06\x3b\x25\xd2\x06\xf1\x1f" 
	"\xe4\x06\xb6\x1f\xf3\x06\x20\x25" "\xd3\x06\xc5\x1f\xea\x06\x7b\x1f" 
	"\xf4\x06\xec\x24\xd1\x06\xb7\x1f" "\xd9\x06\x79\x1f\xe8\x06\xd6\x24" 
	"\xdd\x06\xa5\x1f\xe7\x06\x6c\x1f" "\xd7\x06\xcd\x24\xc3\x06\xd7\x1f" 
	"\xd5\x06\x59\x1f\xf1\x06\xd0\x24" "\xe5\x06\xb7\x1f\xe3\x06\x50\x1f" 
	"\xe9\x06\xec\x24\xd9\x06\x95\x1f" "\xe9\x06\x3d\x1f\xf5\x06\xad\x24" 
	"\xe2\x06\x59\x1f\xe8\x06\x61\x1f" "\xd8\x06\xc9\x24\xc2\x06\x63\x1f" 
	"\xfc\x06\x40\x1f\x0e\x07\x68\x24" "\xfe\x06\x52\x1f\x07\x07\x05\x1f" 
	"\x17\x07\xa8\x23\x08\x07\xf4\x1e" "\x1f\x07\xee\x1e\x14\x07\x46\x23" 
	"\x04\x07\xbb\x1e\x04\x07\xbc\x1e" "\x91\x06\x01\x23\x78\x06\x6f\x1e" 
	"\x97\x06\x77\x1e\x67\x06\xab\x22" "\x5c\x06\x0d\x1e\x69\x06\x6c\x1d" 
	"\x68\x06\xcc\x20\x58\x06\x27\x1d" "\x61\x06\x20\x1c\x98\x06\x9c\x21" 
	"\x8a\x06\x51\x1d\x88\x06\xd6\x1c" "\x03\x07\xc8\x21\xea\x06\x83\x1d" 
	"\x01\x07\x43\x1d\x02\x07\x1f\x22" "\xf4\x06\xee\x1d\x0a\x07\x6f\x1d" 
	"\xda\x06\x62\x22\xc8\x06\x10\x1e" "\xf9\x06\x8e\x1d\xdf\x06\x92\x22" 
	"\xdc\x06\x11\x1e\xe6\x06\x8c\x1d" "\xe1\x06\xdb\x22\xce\x06\x03\x1e" 
	"\xdc\x06\x9c\x1d\xe0\x06\xf2\x22" "\xc3\x06\x2d\x1e\xe1\x06\xe4\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd7\x06\xb5\x22\xc4\x06\x05\x1e" "\xcc\x06\x90\x1d\xe2\x06\xa4\x22" 
	"\xce\x06\xee\x1d\xd3\x06\x7e\x1d" "\xec\x06\x30\x23\xc3\x06\x49\x1e" 
	"\xd2\x06\xa2\x1d\xeb\x06\x7b\x23" "\xd9\x06\x3d\x1e\xe2\x06\xe2\x1d" 
	"\xd2\x06\x0d\x23\xcb\x06\x42\x1e" "\xd9\x06\xf2\x1d\xcd\x06\xb5\x23" 
	"\xaa\x06\x61\x1e\xdd\x06\xff\x1d" "\xe9\x06\x38\x23\xca\x06\x55\x1e" 
	"\xe0\x06\xfb\x1d\xdf\x06\x11\x23" "\xc9\x06\x5b\x1e\xd7\x06\xd8\x1d" 
	"\xd3\x06\x25\x23\xc5\x06\xfc\x1d" "\xd6\x06\xa4\x1d\xdd\x06\x16\x23" 
	"\xbb\x06\x15\x1e\xdb\x06\xdc\x1d" "\xe8\x06\x18\x23\xd1\x06\x45\x1e" 
	"\xdc\x06\xce\x1d\xb1\x06\x0e\x23" "\xa2\x06\x37\x1e\xd8\x06\x00\x1e" 
	"\xc1\x06\x5c\x23\xb8\x06\x4e\x1e" "\xd7\x06\xe0\x1d\xd7\x06\x11\x23" 
	"\xb1\x06\x52\x1e\xd5\x06\xc6\x1d" "\xde\x06\x44\x23\xc0\x06\x5f\x1e" 
	"\xd2\x06\x06\x1e\xe3\x06\x48\x23" "\xd2\x06\x2a\x1e\xdd\x06\x59\x1f" 
	"\xca\x06\x18\x23\xb4\x06\x45\x1e" "\xd4\x06\xf4\x1d\xe0\x06\x55\x23" 
	"\xbd\x06\x3d\x1e\xe0\x06\xf6\x1d" "\xe3\x06\x50\x23\xbe\x06\x31\x1e" 
	"\xd5\x06\x00\x1e\xea\x06\x4b\x23" "\xc7\x06\x69\x1e\xdb\x06\xc8\x1d" 
	"\xdb\x06\x4a\x23\xd0\x06\x42\x1e" "\xd6\x06\xd7\x1d\xd4\x06\x22\x23" 
	"\xb3\x06\x2e\x1e\xd9\x06\xf4\x1d" "\xe5\x06\xe6\x22\xbe\x06\x04\x1e" 
	"\xd1\x06\x9c\x1d\xca\x06\x1c\x23" "\xc1\x06\x28\x1e\xcc\x06\xd4\x1d" 
	"\xd4\x06\x1a\x23\xb8\x06\x1e\x1e" "\xd2\x06\xb7\x1d\xe0\x06\x27\x23" 
	"\xc4\x06\x0c\x1e\xe0\x06\xd1\x1d" "\xd3\x06\x30\x23\xba\x06\x29\x1e" 
	"\xd9\x06\xb1\x1d\xc6\x06\xfd\x22" "\xa9\x06\x12\x1e\xd1\x06\xd8\x1d" 
	"\xc5\x06\xf7\x22\xb0\x06\x2c\x1e" "\xc3\x06\xcb\x1d\xdb\x06\xbe\x22" 
	"\xb2\x06\xe9\x1d\xc9\x06\xa0\x1d" "\xc9\x06\xec\x22\xa0\x06\xd6\x1d" 
	"\xcd\x06\x91\x1d\xd7\x06\xee\x22" "\xc8\x06\xcf\x1d\xd7\x06\xab\x1d" 
	"\xdc\x06\xdd\x22\xc8\x06\xcf\x1d" "\xcc\x06\xb8\x1d\xb0\x06\xf9\x22" 
	"\xa4\x06\xfa\x1d\xd9\x06\xae\x1d" "\xc6\x06\x1a\x23\xa7\x06\x08\x1e" 
	"\xd6\x06\xaf\x1d\xd5\x06\xf8\x22" "\xc0\x06\xe7\x1d\xc6\x06\xa5\x1d" 
	"\xc8\x06\xd9\x22\xb4\x06\xdf\x1d" "\xc7\x06\x68\x1d\xde\x06\xcb\x22" 
	"\xba\x06\xa4\x1d\xd3\x06\x56\x1d" "\xdb\x06\xe6\x22\xc2\x06\x05\x1e" 
	"\xcb\x06\x9f\x1d\xc7\x06\x1d\x23" "\xae\x06\xf3\x1d\xce\x06\xcd\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xca\x06\xdb\x22\xc1\x06\xf3\x1d" "\xcb\x06\x89\x1d\xc5\x06\xe7\x22" 
	"\xb2\x06\x03\x1e\xc9\x06\x77\x1d" "\xd1\x06\x04\x23\xa7\x06\x01\x1e" 
	"\xc9\x06\x57\x1d\xde\x06\x28\x23" "\xd5\x06\xf1\x1d\xcd\x06\x80\x1d" 
	"\xd9\x06\x1d\x23\xc0\x06\xd4\x1d" "\xcb\x06\x98\x1d\xdd\x06\x25\x23" 
	"\xb3\x06\xdf\x1d\xcf\x06\xb3\x1d" "\xb7\x06\x08\x23\x8e\x06\x07\x1e" 
	"\xd5\x06\x8f\x1d\xd3\x06\x06\x23" "\xbf\x06\xc5\x1d\xcb\x06\x93\x1d" 
	"\xd8\x06\xe8\x22\xc3\x06\xe3\x1d" "\xcd\x06\x9b\x1d\xdd\x06\x0f\x23" 
	"\xd0\x06\xea\x1d\xd7\x06\x87\x1d" "\xdf\x06\x4a\x23\xbd\x06\xea\x1d" 
	"\xd4\x06\xa1\x1d\xd6\x06\x1f\x23" "\xbf\x06\xc7\x1d\xc3\x06\x7c\x1d" 
	"\xd1\x06\xff\x22\xba\x06\xea\x1d" "\xce\x06\x9e\x1d\xec\x06\x22\x23" 
	"\xca\x06\xf5\x1d\xe1\x06\xaf\x1d" "\xb8\x06\x2a\x23\x9c\x06\xf5\x1d" 
	"\xcf\x06\xa2\x1d\xc5\x06\x39\x23" "\xb8\x06\xde\x1d\xca\x06\x88\x1d" 
	"\xc7\x06\x27\x23\xc0\x06\x13\x1e" "\xd3\x06\x96\x1d\xdf\x06\x08\x23" 
	"\xbd\x06\xfe\x1d\xd3\x06\x95\x1d" "\xdc\x06\x0f\x23\xc1\x06\xb2\x1d" 
	"\xdb\x06\x70\x1d\xc7\x06\x06\x23" "\xad\x06\xcd\x1d\xd0\x06\xdc\x1d" 
	"\xd0\x06\xda\x22\xc1\x06\xfa\x1d" "\xc6\x06\xab\x1d\xd5\x06\x11\x23" 
	"\xbd\x06\x10\x1e\xd2\x06\xa2\x1d" "\xbf\x06\xdd\x22\xa5\x06\xf4\x1d" 
	"\xce\x06\x95\x1d\xee\x06\x14\x23" "\xd2\x06\x33\x1e\xd4\x06\xbc\x1d" 
	"\xca\x06\xfb\x22\xbc\x06\x4a\x1e" "\xcd\x06\xc7\x1d\xbb\x06\x50\x23" 
	"\x9a\x06\x44\x1e\xd8\x06\xcc\x1d" "\xdb\x06\x11\x23\xbc\x06\x44\x1e" 
	"\xcb\x06\xbd\x1d\xd0\x06\x16\x23" "\xbc\x06\x0c\x1e\xcc\x06\xbe\x1d" 
	"\xd7\x06\x30\x23\xc2\x06\x0b\x1e" "\xc6\x06\xb1\x1d\xc4\x06\x26\x23" 
	"\x9d\x06\x19\x1e\xd1\x06\xa3\x1d" "\xe0\x06\xf9\x22\xc3\x06\x1b\x1e" 
	"\xd4\x06\xaa\x1d\xd3\x06\xcc\x22" "\xc0\x06\xdd\x1d\xd1\x06\xc6\x1d" 
	"\xbb\x06\xbc\x22\xa8\x06\xb6\x1d" "\xcc\x06\x75\x1d\xda\x06\xdf\x22" 
	"\xb6\x06\xde\x1d\xd4\x06\xb4\x1d" "\xdc\x06\xba\x22\xbf\x06\xe8\x1d" 
	"\xd8\x06\xac\x1d\xd1\x06\x74\x22" "\xb8\x06\xc3\x1d\xcc\x06\x91\x1d" 
	"\xd6\x06\xdf\x22\xbc\x06\xb9\x1d" "\xc0\x06\x9a\x1d\xbb\x06\xd6\x22" 
	"\x9d\x06\xec\x1d\xda\x06\x9a\x1d" "\xd4\x06\xb2\x22\xb1\x06\xf4\x1d" 
	"\xc1\x06\x73\x1d\xd5\x06\xb8\x22" "\xc3\x06\xe8\x1d\xc8\x06\x7d\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa5\x06\x18\x23\x80\x06\xca\x1d" "\xca\x06\x31\x1d\xdd\x06\xe0\x22" 
	"\xb9\x06\xef\x1d\xcd\x06\x69\x1d" "\xd7\x06\x75\x22\xbb\x06\xfd\x1d" 
	"\xd6\x06\x87\x1d\xd2\x06\xc7\x22" "\xc0\x06\xe7\x1d\xc8\x06\x8d\x1d" 
	"\xd9\x06\xca\x22\xc7\x06\xcc\x1d" "\xc8\x06\x6f\x1d\xd4\x06\xf3\x22" 
	"\xbf\x06\xc7\x1d\xd5\x06\x9a\x1d" "\xe7\x06\x0b\x23\xba\x06\xf4\x1d" 
	"\xd2\x06\xa8\x1d\xcd\x06\xaa\x22" "\xb6\x06\xc8\x1d\xd7\x06\x4e\x1d" 
	"\xb5\x06\xb9\x22\xac\x06\xf6\x1d" "\xc3\x06\x5d\x1d\xb4\x06\xcc\x22" 
	"\x9f\x06\xd1\x1d\xca\x06\x78\x1d" "\xdd\x06\xbb\x22\xc2\x06\xdb\x1d" 
	"\xd0\x06\x5d\x1d\xd4\x06\xd0\x22" "\xcc\x06\xdf\x1d\xcc\x06\x65\x1d" 
	"\xb9\x06\xca\x22\xa3\x06\xe8\x1d" "\xcb\x06\x5f\x1d\xd9\x06\x84\x22" 
	"\xbb\x06\xd9\x1d\xcf\x06\x60\x1d" "\xcc\x06\x98\x22\xb2\x06\xa5\x1d" 
	"\xca\x06\x53\x1d\xc9\x06\x6a\x22" "\xb2\x06\xa3\x1d\xc7\x06\x17\x1d" 
	"\xc1\x06\x7b\x22\xba\x06\x12\x1e" "\xd0\x06\x7f\x1d\xcd\x06\x79\x22" 
	"\xc6\x06\x00\x1e\xd4\x06\x68\x1d" "\xdd\x06\xc3\x22\xb3\x06\xed\x1d" 
	"\xcb\x06\x77\x1d\xd5\x06\x73\x22" "\xb5\x06\xf0\x1d\xc8\x06\x54\x1d" 
	"\xc2\x06\x5e\x22\xaa\x06\xe6\x1d" "\xc0\x06\x55\x1d\xdc\x06\x8c\x22" 
	"\xb3\x06\xa1\x1d\xcd\x06\x1e\x1d" "\xba\x06\x8b\x22\x9f\x06\xd1\x1d" 
	"\xcc\x06\x4b\x1d\xb3\x06\xd9\x22" "\xa4\x06\xd6\x1d\xcc\x06\x8c\x1d" 
	"\xdc\x06\xf4\x22\xc8\x06\xd1\x1d" "\xca\x06\x79\x1d\xbd\x06\xc3\x22" 
	"\x94\x06\xdc\x1d\xbc\x06\x69\x1d" "\xdb\x06\xa6\x22\xad\x06\xd3\x1d" 
	"\xcb\x06\x46\x1d\xd3\x06\x9f\x22" "\xc0\x06\xb4\x1d\xcb\x06\x39\x1d" 
	"\xbc\x06\xda\x22\xa6\x06\xc7\x1d" "\xaf\x06\x19\x1d\xd5\x06\xc8\x22" 
	"\xb6\x06\x94\x1d\xc7\x06\x10\x1d" "\xdb\x06\xd2\x22\xb8\x06\xf8\x1d" 
	"\xd6\x06\x7b\x1d\xc3\x06\xf4\x22" "\xad\x06\xde\x1d\xca\x06\x6e\x1d" 
	"\xdb\x06\xc8\x22\xc6\x06\xb4\x1d" "\xd5\x06\x64\x1d\xdb\x06\x01\x23" 
	"\xbf\x06\xec\x1d\xd8\x06\x68\x1d" "\xe2\x06\xb2\x22\xc0\x06\x02\x1e" 
	"\xc6\x06\x47\x1d\xd3\x06\xf4\x22" "\xc9\x06\xb5\x1d\xcb\x06\x35\x1d" 
	"\xca\x06\xd7\x22\xc4\x06\xa5\x1d" "\xce\x06\x13\x1d\xcd\x06\xd9\x22" 
	"\xa9\x06\xda\x1d\xc2\x06\x6e\x1d" "\xc7\x06\xf2\x22\xae\x06\x03\x1e" 
	"\xd5\x06\x58\x1d\xd0\x06\x0f\x23" "\xbb\x06\xde\x1d\xc9\x06\x3d\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xce\x06\xc3\x22\xc5\x06\x0c\x1e" "\xcd\x06\x42\x1d\xd0\x06\xe6\x22" 
	"\xb1\x06\x28\x1e\xd3\x06\x41\x1d" "\xc5\x06\xf4\x22\xae\x06\x01\x1e" 
	"\xca\x06\x74\x1d\xd1\x06\x37\x23" "\xb5\x06\x0b\x1e\xc2\x06\x51\x1d" 
	"\xe0\x06\x32\x23\xc3\x06\x1f\x1e" "\xd2\x06\x7a\x1d\xcd\x06\x5c\x23" 
	"\x9c\x06\x1b\x1e\xd4\x06\x6e\x1d" "\xd3\x06\xc5\x22\xb2\x06\x17\x1e" 
	"\xc6\x06\x35\x1d\xcf\x06\x1e\x23" "\xcf\x06\x20\x1e\xd3\x06\x4d\x1d" 
	"\xbd\x06\x62\x23\xa7\x06\x28\x1e" "\xcb\x06\x85\x1d\xcf\x06\x3e\x23" 
	"\xb0\x06\x27\x1e\xce\x06\x85\x1d" "\xc5\x06\xa9\x22\xaa\x06\xa7\x1d" 
	"\xcb\x06\x16\x1d\xda\x06\xf1\x22" "\xc7\x06\xf8\x1d\xcc\x06\x0c\x1d" 
	"\xd9\x06\xe5\x22\xba\x06\xef\x1d" "\xca\x06\x1a\x1d\xc3\x06\x1a\x23" 
	"\xb0\x06\x14\x1e\xd2\x06\x31\x1d" "\xda\x06\x38\x23\xbf\x06\x18\x1e" 
	"\xcd\x06\x8f\x1d\xd3\x06\x35\x23" "\xc3\x06\x1e\x1e\xc1\x06\x9f\x1d" 
	"\xbf\x06\x32\x23\xa8\x06\x10\x1e" "\xcd\x06\x71\x1d\xd2\x06\x25\x23" 
	"\xb2\x06\x32\x1e\xd4\x06\x7d\x1d" "\xdb\x06\x01\x23\xbe\x06\x33\x1e" 
	"\xcd\x06\x66\x1d\xd4\x06\x53\x23" "\xc1\x06\x37\x1e\xd1\x06\x77\x1d" 
	"\xd5\x06\x8a\x23\xcb\x06\x2f\x1e" "\xc6\x06\x7d\x1d\xe4\x06\x3b\x23" 
	"\xc6\x06\x3d\x1e\xdb\x06\x8e\x1d" "\xdb\x06\x6c\x23\xbd\x06\x6b\x1e" 
	"\xcc\x06\x9d\x1d\xe3\x06\x88\x23" "\xc0\x06\x5f\x1e\xd1\x06\xb9\x1d" 
	"\xd8\x06\x4f\x23\xc8\x06\x68\x1e" "\xd5\x06\x9e\x1d\xe5\x06\x60\x23" 
	"\xc2\x06\x50\x1e\xcd\x06\xa0\x1d" "\xd8\x06\x66\x23\xa7\x06\x31\x1e" 
	"\xd0\x06\xc6\x1d\xd2\x06\x0d\x23" "\xc3\x06\x5c\x1e\xd2\x06\x89\x1d" 
	"\xd7\x06\x26\x23\xbb\x06\x61\x1e" "\xc8\x06\xb5\x1d\xd9\x06\x51\x23" 
	"\xbf\x06\x2b\x1e\xcc\x06\xb8\x1d" "\xd4\x06\x01\x23\xcb\x06\x60\x1e" 
	"\xd1\x06\x97\x1d\xd6\x06\x20\x23" "\xca\x06\x5e\x1e\xc7\x06\x64\x1d" 
	"\xd6\x06\x0f\x23\xc1\x06\x1e\x1e" "\xc4\x06\x2f\x1d\xbf\x06\x19\x23" 
	"\x96\x06\x4d\x1e\xbe\x06\x4f\x1d" "\xd3\x06\x0b\x23\xc0\x06\x49\x1e" 
	"\xc3\x06\x45\x1d\xd4\x06\x69\x23" "\xb5\x06\x2a\x1e\xd2\x06\x7c\x1d" 
	"\xce\x06\x3a\x23\xbc\x06\x6d\x1e" "\xd3\x06\x8d\x1d\xdb\x06\x93\x23" 
	"\xad\x06\x8f\x1e\xd6\x06\xde\x1d" "\xdb\x06\xe3\x23\xb0\x06\xc6\x1e" 
	"\xd4\x06\x17\x1e\xde\x06\xd3\x23" "\xc9\x06\xb8\x1e\xd0\x06\xf9\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd3\x06\x56\x23\xbe\x06\x9a\x1e" "\xd5\x06\x09\x1e\xde\x06\x2f\x23" 
	"\xc5\x06\xb6\x1e\xcb\x06\xdf\x1d" "\xb0\x06\x4e\x23\x8f\x06\xb6\x1e" 
	"\xae\x06\xd2\x1d\xd4\x06\x1a\x23" "\xcb\x06\xb5\x1e\xc2\x06\xc0\x1d" 
	"\xcf\x06\x5a\x23\xb5\x06\x8f\x1e" "\xcd\x06\xf4\x1d\xd4\x06\x77\x23" 
	"\xbf\x06\x77\x1e\xc8\x06\xc5\x1d" "\xe1\x06\x4e\x23\xc8\x06\x70\x1e" 
	"\xcf\x06\x96\x1d\xd9\x06\x90\x23" "\xc1\x06\x9c\x1e\xce\x06\xee\x1d" 
	"\xe0\x06\x89\x23\xc6\x06\x64\x1e" "\xd4\x06\xe7\x1d\xd3\x06\x82\x23" 
	"\xb6\x06\xa1\x1e\xdb\x06\x26\x1e" "\xdf\x06\x7d\x23\xc3\x06\x96\x1e" 
	"\xd2\x06\xf0\x1d\xd2\x06\x30\x23" "\xcb\x06\x87\x1e\xc6\x06\xfb\x1d" 
	"\xb6\x06\x6e\x23\xaf\x06\x93\x1e" "\xc2\x06\x9c\x1d\xdc\x06\x64\x23" 
	"\xc1\x06\xa2\x1e\xd9\x06\xbc\x1d" "\xd4\x06\x38\x23\xc3\x06\x9d\x1e" 
	"\xc4\x06\xa9\x1d\xde\x06\x16\x23" "\xc5\x06\x98\x1e\xce\x06\xa1\x1d" 
	"\xdc\x06\x64\x23\xd9\x06\x96\x1e" "\xcb\x06\xcd\x1d\xe1\x06\x7b\x23" 
	"\xbb\x06\x88\x1e\xca\x06\x97\x1d" "\xdb\x06\x77\x23\xcd\x06\xb0\x1e" 
	"\xd1\x06\xb4\x1d\xd0\x06\x4e\x23" "\xcf\x06\x7d\x1e\xca\x06\xb8\x1d" 
	"\xdd\x06\x30\x23\xc4\x06\x3f\x1e" "\xc7\x06\x64\x1d\xd8\x06\xee\x22" 
	"\xb8\x06\x21\x1e\xc4\x06\x45\x1d" "\xdf\x06\x15\x23\xc7\x06\x54\x1e" 
	"\xc6\x06\x83\x1d\xc5\x06\x19\x23" "\xaf\x06\x4c\x1e\xcf\x06\x7f\x1d" 
	"\xd2\x06\x29\x23\xc8\x06\x58\x1e" "\xc1\x06\x64\x1d\xc2\x06\x32\x23" 
	"\xb9\x06\x5a\x1e\xd2\x06\xa2\x1d" "\xd8\x06\x4a\x23\xb6\x06\x61\x1e" 
	"\xcb\x06\xbf\x1d\xd2\x06\x5e\x23" "\xc7\x06\x74\x1e\xcc\x06\xcc\x1d" 
	"\xce\x06\x9a\x23\xb7\x06\x2e\x1e" "\xce\x06\x9d\x1d\xbd\x06\x46\x23" 
	"\xb0\x06\x6c\x1e\xc7\x06\xa7\x1d" "\xca\x06\x16\x23\xbb\x06\x61\x1e" 
	"\xcc\x06\xab\x1d\xd3\x06\x32\x23" "\xc6\x06\x64\x1e\xd2\x06\xa8\x1d" 
	"\xcf\x06\x4b\x23\xc0\x06\x51\x1e" "\xbf\x06\xc3\x1d\xcb\x06\x51\x23" 
	"\xae\x06\x80\x1e\xcf\x06\xca\x1d" "\xc6\x06\x7e\x23\x98\x06\x97\x1e" 
	"\xd5\x06\xfe\x1d\xbb\x06\x8c\x23" "\xb9\x06\x8a\x1e\xc9\x06\xc9\x1d" 
	"\xd2\x06\x2c\x23\xcb\x06\x70\x1e" "\xcc\x06\xd5\x1d\xd0\x06\xdb\x22" 
	"\xae\x06\x8a\x1e\xc5\x06\xc3\x1d" "\xe2\x06\xbe\x22\xbd\x06\x6f\x1e" 
	"\xc8\x06\xa4\x1d\xd5\x06\xd5\x22" "\xc9\x06\x5b\x1e\xcb\x06\xa2\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb5\x06\x11\x23\xb4\x06\x86\x1e" "\xc1\x06\xae\x1d\xdd\x06\xf1\x22" 
	"\xc0\x06\x67\x1e\xcd\x06\xb0\x1d" "\xd6\x06\x25\x23\xab\x06\x67\x1e" 
	"\xd4\x06\x97\x1d\xc9\x06\xec\x22" "\xcc\x06\x75\x1e\xbe\x06\xa6\x1d" 
	"\xd0\x06\x05\x23\xbb\x06\x6e\x1e" "\xc6\x06\xaa\x1d\xcf\x06\xfd\x22" 
	"\xb8\x06\x48\x1e\xd6\x06\xa2\x1d" "\xdd\x06\x35\x23\xba\x06\x76\x1e" 
	"\xc8\x06\xa6\x1d\xbd\x06\x27\x23" "\xab\x06\xa3\x1e\xac\x06\xbe\x1d" 
	"\xc4\x06\x30\x23\xb6\x06\x60\x1e" "\xc3\x06\xad\x1d\xd9\x06\x42\x23" 
	"\xb9\x06\x67\x1e\xd1\x06\x96\x1d" "\xd5\x06\x2a\x23\xc1\x06\x6c\x1e" 
	"\xcb\x06\xaf\x1d\xa3\x06\x7b\x23" "\x93\x06\x91\x1e\xc5\x06\xd4\x1d" 
	"\xd5\x06\x5a\x23\xb7\x06\x58\x1e" "\xc1\x06\xca\x1d\xbe\x06\x1f\x23" 
	"\xa0\x06\x38\x1e\xc5\x06\x97\x1d" "\xd4\x06\xd5\x22\xb3\x06\x4f\x1e" 
	"\xc6\x06\x9c\x1d\xd3\x06\xe2\x22" "\xc5\x06\x14\x1e\xcd\x06\x86\x1d" 
	"\xc7\x06\x39\x23\xb4\x06\x19\x1e" "\xcc\x06\x53\x1d\xd8\x06\x00\x23" 
	"\xb9\x06\x0e\x1e\xca\x06\x4c\x1d" "\xc0\x06\x24\x23\xa9\x06\x46\x1e" 
	"\xbc\x06\x9a\x1d\xb1\x06\x6e\x23" "\xa4\x06\x6c\x1e\xba\x06\xae\x1d" 
	"\xbf\x06\x24\x23\xaa\x06\x45\x1e" "\xb8\x06\xae\x1d\xdc\x06\x1e\x23" 
	"\xb0\x06\x40\x1e\xc6\x06\x85\x1d" "\xcc\x06\xee\x22\xa0\x06\x0b\x1e" 
	"\xcc\x06\x84\x1d\xd1\x06\xeb\x22" "\xc3\x06\x27\x1e\xc1\x06\x5d\x1d" 
	"\xcb\x06\x22\x23\xb6\x06\xd7\x1d" "\xc6\x06\x5b\x1d\xd2\x06\xe3\x22" 
	"\xb0\x06\xec\x1d\xc2\x06\x6e\x1d" "\xbd\x06\x23\x23\xa0\x06\x23\x1e" 
	"\xc7\x06\x69\x1d\xc9\x06\x0d\x23" "\xaf\x06\x2d\x1e\xcb\x06\x77\x1d" 
	"\xd7\x06\x35\x23\xc0\x06\x3e\x1e" "\xc2\x06\x99\x1d\xd4\x06\x0a\x23" 
	"\xa5\x06\x51\x1e\xce\x06\x6b\x1d" "\xe1\x06\x50\x23\xae\x06\x2e\x1e" 
	"\xba\x06\x8a\x1d\xd0\x06\x13\x23" "\xc5\x06\x29\x1e\xd3\x06\x76\x1d" 
	"\xc6\x06\xef\x22\xba\x06\x1b\x1e" "\xc3\x06\x95\x1d\xd4\x06\x1f\x23" 
	"\xb8\x06\x2f\x1e\xd4\x06\x94\x1d" "\xd4\x06\x40\x23\xbe\x06\x39\x1e" 
	"\xd2\x06\x81\x1d\xa9\x06\x4e\x23" "\x8d\x06\x33\x1e\xc5\x06\x86\x1d" 
	"\xcb\x06\x09\x23\xc5\x06\x17\x1e" "\xc7\x06\xa3\x1d\xcb\x06\x75\x23" 
	"\xa5\x06\x59\x1e\xd0\x06\xa2\x1d" "\xcf\x06\xa6\x23\xb1\x06\x46\x1e" 
	"\xc3\x06\xb3\x1d\xcb\x06\x6a\x23" "\xb2\x06\x4e\x1e\xc2\x06\xa4\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc3\x06\x1f\x23\xb7\x06\x64\x1e" "\xbf\x06\x72\x1d\xdf\x06\x20\x23" 
	"\xbc\x06\x06\x1e\xd2\x06\x87\x1d" "\xc0\x06\x4a\x23\xa1\x06\x2e\x1e" 
	"\xc5\x06\x84\x1d\xc0\x06\x16\x23" "\xb9\x06\xdd\x1d\xd0\x06\x57\x1d" 
	"\x9a\x06\x00\x23\x8c\x06\x19\x1e" "\xcc\x06\x5e\x1d\xd4\x06\xff\x22" 
	"\xb5\x06\x03\x1e\xc3\x06\x32\x1d" "\xd9\x06\x16\x23\xb5\x06\xb8\x1d" 
	"\xc2\x06\x4b\x1d\xcf\x06\xa6\x22" "\xbb\x06\xb7\x1d\xba\x06\x32\x1d" 
	"\xce\x06\xb4\x22\xbc\x06\xe4\x1d" "\xcb\x06\x4f\x1d\xcc\x06\xe0\x22" 
	"\xad\x06\xe5\x1d\xc8\x06\x13\x1d" "\xd4\x06\xe1\x22\xb3\x06\xdc\x1d" 
	"\xc0\x06\x23\x1d\xd4\x06\x1a\x23" "\xb8\x06\xf8\x1d\xbb\x06\x5b\x1d" 
	"\xcd\x06\x0b\x23\xb8\x06\xf2\x1d" "\xbc\x06\x58\x1d\x9e\x06\x00\x23" 
	"\x73\x06\x4b\x1e\xcb\x06\x52\x1d" "\xc7\x06\xe0\x22\x9f\x06\x1a\x1e" 
	"\xce\x06\x67\x1d\xcc\x06\xea\x22" "\xac\x06\x07\x1e\xc6\x06\x89\x1d" 
	"\xd2\x06\xcb\x22\xb6\x06\xf6\x1d" "\xc4\x06\x5d\x1d\xcf\x06\xd1\x22" 
	"\xb7\x06\xec\x1d\xd1\x06\x7c\x1d" "\xc7\x06\xeb\x22\x9c\x06\x02\x1e" 
	"\xc8\x06\x43\x1d\xc2\x06\xc5\x22" "\xaf\x06\xd9\x1d\xb6\x06\x21\x1d" 
	"\xaf\x06\x94\x22\x98\x06\xa1\x1d" "\xbf\x06\xfa\x1c\xc7\x06\x99\x22" 
	"\xaa\x06\xf6\x1d\xcb\x06\x18\x1d" "\xd5\x06\xbe\x22\xa3\x06\xcd\x1d" 
	"\xc9\x06\x33\x1d\xc2\x06\xf0\x22" "\xab\x06\xf4\x1d\xbf\x06\x53\x1d" 
	"\xc4\x06\xd3\x22\xa2\x06\xd0\x1d" "\xbb\x06\x6f\x1d\xd9\x06\xb4\x22" 
	"\xac\x06\xf4\x1d\xc7\x06\x2d\x1d" "\xce\x06\xfa\x22\xad\x06\x25\x1e" 
	"\xc4\x06\x4c\x1d\xb9\x06\x05\x23" "\xa3\x06\xfa\x1d\xbd\x06\x32\x1d" 
	"\xc1\x06\xd6\x22\xa3\x06\x15\x1e" "\xc1\x06\x37\x1d\xc5\x06\xea\x22" 
	"\xb1\x06\xe8\x1d\xd3\x06\x4b\x1d" "\xcd\x06\xaf\x22\xae\x06\xf9\x1d" 
	"\xbf\x06\x2f\x1d\xcd\x06\xa2\x22" "\xc1\x06\xe0\x1d\xc3\x06\x2b\x1d" 
	"\xa2\x06\x0d\x23\x88\x06\xdf\x1d" "\xc2\x06\x4b\x1d\xdc\x06\xfc\x22" 
	"\xb0\x06\xe6\x1d\xd3\x06\x4e\x1d" "\xd0\x06\xb6\x22\xa8\x06\xcf\x1d" 
	"\xcf\x06\x32\x1d\xcd\x06\xea\x22" "\xbd\x06\xe2\x1d\xc4\x06\x2a\x1d" 
	"\xbd\x06\xc7\x22\xc6\x06\x07\x1e" "\xbe\x06\x3d\x1d\xd4\x06\xf4\x22" 
	"\xba\x06\xde\x1d\xc2\x06\x17\x1d" "\xc8\x06\xec\x22\xa5\x06\xf2\x1d" 
	"\xb8\x06\x0e\x1d\xc4\x06\xc9\x22" "\xc8\x06\x0e\x1e\xc8\x06\x3a\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcd\x06\x18\x23\xb2\x06\xbb\x1d" "\xc3\x06\x39\x1d\xd8\x06\xfd\x22" 
	"\xbc\x06\xc0\x1e\xd2\x06\x3a\x1d" "\xe9\x06\xf4\x22\xb8\x06\xc0\x1d" 
	"\xc8\x06\x19\x1d\xcb\x06\xce\x22" "\xb8\x06\xf6\x1d\xba\x06\x79\x1d" 
	"\xd0\x06\xc3\x22\xc3\x06\xcf\x1d" "\xc3\x06\x5e\x1d\xcf\x06\xc8\x22" 
	"\xc2\x06\xf4\x1d\xc9\x06\x62\x1d" "\xce\x06\x08\x23\x9f\x06\xe7\x1d" 
	"\xc6\x06\x68\x1d\xd3\x06\x06\x23" "\xc2\x06\xd8\x1d\xc6\x06\x7f\x1d" 
	"\xc9\x06\x26\x23\xab\x06\x02\x1e" "\xbe\x06\x5f\x1d\xa5\x06\x2c\x23" 
	"\x87\x06\xf6\x1d\xcb\x06\x40\x1d" "\xc1\x06\x1c\x23\xa7\x06\x12\x1e" 
	"\xc8\x06\x63\x1d\xc1\x06\x01\x23" "\xb6\x06\xf5\x1d\xbf\x06\x4e\x1d" 
	"\xcc\x06\x1c\x23\xb5\x06\xe4\x1d" "\xbf\x06\x3d\x1d\xda\x06\x2b\x23" 
	"\xb6\x06\xe0\x1d\xcb\x06\x61\x1d" "\xd5\x06\x0a\x23\xba\x06\x1a\x1e" 
	"\xc1\x06\x70\x1d\xc1\x06\x28\x23" "\xb8\x06\x31\x1e\xd0\x06\x72\x1d" 
	"\xc4\x06\x03\x23\xbf\x06\x21\x1e" "\xc5\x06\x69\x1d\xd9\x06\xf3\x22" 
	"\xb1\x06\xed\x1d\xca\x06\x74\x1d" "\xd4\x06\x0c\x23\xac\x06\xe5\x1d" 
	"\xc4\x06\x44\x1d\xc7\x06\xe0\x22" "\xc3\x06\xe3\x1d\xb6\x06\x3b\x1d" 
	"\xac\x06\xd6\x22\x89\x06\xc5\x1d" "\xb9\x06\x5c\x1d\xb6\x06\x25\x23" 
	"\x8f\x06\xc1\x1d\xc8\x06\x4f\x1d" "\xd4\x06\x3c\x23\xb6\x06\xbe\x1d" 
	"\xc5\x06\x37\x1d\xc3\x06\xec\x22" "\xa5\x06\xb4\x1d\xc3\x06\x1a\x1d" 
	"\xd2\x06\x01\x23\xb1\x06\x87\x1d" "\xb7\x06\x13\x1d\xc4\x06\xff\x22" 
	"\x9b\x06\xa5\x1d\xb8\x06\x30\x1d" "\xce\x06\xc4\x22\xae\x06\xce\x1d" 
	"\xca\x06\x4d\x1d\xd2\x06\xcc\x22" "\xad\x06\xce\x1d\xc0\x06\x19\x1d" 
	"\xcb\x06\xa0\x22\xb2\x06\xd4\x1d" "\xbf\x06\x1a\x1d\xc3\x06\xb8\x22" 
	"\xa6\x06\xb5\x1d\xcc\x06\x31\x1d" "\xb3\x06\xe3\x22\x94\x06\xbe\x1d" 
	"\xb9\x06\xf1\x1c\xde\x06\xdf\x22" "\xbd\x06\xd5\x1d\xc0\x06\x1f\x1d" 
	"\xc3\x06\xb3\x22\xa4\x06\xb0\x1d" "\xb9\x06\x1c\x1d\xc1\x06\xc3\x22" 
	"\x94\x06\xab\x1d\xc3\x06\x11\x1d" "\xd2\x06\xd2\x22\xa7\x06\x9e\x1d" 
	"\xcb\x06\x17\x1d\xaa\x06\xe8\x22" "\x94\x06\xfb\x1d\xa6\x06\x74\x1d" 
	"\xc9\x06\xb0\x22\xbe\x06\xe0\x1d" "\xb6\x06\x57\x1d\xcb\x06\x18\x23" 
	"\xb5\x06\x44\x1e\xd0\x06\x94\x1d" "\xd1\x06\x19\x23\xaf\x06\xe4\x1d" 
	"\xbc\x06\x69\x1d\xcf\x06\xff\x22" "\xbc\x06\xee\x1d\xc1\x06\x51\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb8\x06\xc0\x22\x99\x06\xf6\x1d" "\xab\x06\x4e\x1d\xc2\x06\xeb\x22" 
	"\x9e\x06\xdc\x1d\xc4\x06\x5c\x1d" "\xca\x06\xd3\x22\x9f\x06\xf1\x1d" 
	"\xbf\x06\x0a\x1d\xcc\x06\x0d\x23" "\xb0\x06\xdd\x1d\xb8\x06\xef\x1c" 
	"\xad\x06\x56\x22\xa8\x06\x94\x1d" "\xba\x06\x50\x1c\x48\x07\x4f\x80" 
	"\x3c\x07\xc0\x6f\x4b\x07\x8c\x6c" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\xd7\x06\xf9\x23" "\xbb\x06\xb8\x1e\xbf\x06\xe4\x1d" 
	"\xd1\x06\x24\x25\xb8\x06\x28\x1f" "\xcd\x06\x7a\x1e\xe4\x06\xb7\x24" 
	"\xc8\x06\x25\x1f\xd1\x06\x77\x1e" "\xda\x06\xd7\x24\xb1\x06\x67\x1f" 
	"\xc2\x06\xd6\x1e\xd9\x06\xd6\x24" "\xca\x06\x64\x1f\xc9\x06\xed\x1e" 
	"\xd5\x06\x90\x24\xd0\x06\x4b\x1f" "\xce\x06\xd3\x1e\xe5\x06\xef\x24" 
	"\xcd\x06\x43\x1f\xd6\x06\xb3\x1e" "\xe1\x06\xb2\x24\xb9\x06\x15\x1f" 
	"\xdb\x06\xe8\x1e\xda\x06\x94\x24" "\xd0\x06\xf9\x1e\xd5\x06\xbf\x1e" 
	"\xe1\x06\x44\x24\xc1\x06\xd2\x1e" "\xcc\x06\x5f\x1e\xdb\x06\xd6\x24" 
	"\xb9\x06\x0b\x1f\xcd\x06\x8b\x1e" "\xdd\x06\xb3\x24\xb4\x06\x23\x1f" 
	"\xc6\x06\xb4\x1e\xe1\x06\x6a\x24" "\xc7\x06\x51\x1f\xc8\x06\x83\x1e" 
	"\xe0\x06\xb7\x24\xc8\x06\x26\x1f" "\xd7\x06\xb9\x1e\xdf\x06\x7b\x24" 
	"\xc5\x06\x23\x1f\xd5\x06\xd0\x1e" "\xd3\x06\x8b\x24\xc1\x06\x63\x1f" 
	"\xca\x06\xac\x1e\xde\x06\x82\x24" "\xce\x06\xf9\x1e\xca\x06\xa3\x1e" 
	"\xcf\x06\x6a\x24\xbc\x06\x34\x1f" "\xce\x06\xed\x1e\xe7\x06\x93\x24" 
	"\xc6\x06\x1b\x1f\xdb\x06\xe2\x1e" "\xc9\x06\xd4\x24\xad\x06\x17\x1f" 
	"\xcf\x06\xb3\x1e\xd3\x06\xb9\x24" "\xb6\x06\x16\x1f\xc9\x06\x93\x1e" 
	"\xda\x06\x0c\x25\xc4\x06\xf2\x1e" "\xd6\x06\x94\x1e\xdf\x06\x04\x25" 
	"\xbb\x06\xe4\x1e\xc6\x06\xd4\x1e" "\xe8\x06\xe6\x24\xc5\x06\x14\x1f" 
	"\xd4\x06\x84\x1e\xe2\x06\x18\x25" "\xc8\x06\x15\x1f\xda\x06\xf3\x1e" 
	"\xce\x06\x04\x25\xc3\x06\x73\x1f" "\xd5\x06\xe7\x1e\xe5\x06\x15\x25" 
	"\xc6\x06\x2b\x1f\xd4\x06\xc7\x1e" "\xd1\x06\xf0\x24\xb8\x06\x28\x1f" 
	"\xd8\x06\xdd\x1e\xe3\x06\xfc\x24" "\xbf\x06\x2d\x1f\xde\x06\xd6\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xde\x06\xea\x24\xc6\x06\x26\x1f" "\xcd\x06\xaf\x1e\xe2\x06\xe2\x24" 
	"\xc3\x06\x2f\x1f\xd9\x06\x7c\x1e" "\xe7\x06\x13\x25\xc6\x06\x03\x1f" 
	"\xd9\x06\x8f\x1e\xcf\x06\xf2\x24" "\xc1\x06\x3b\x1f\xc8\x06\xf5\x1e" 
	"\xe3\x06\xce\x24\xcb\x06\x2e\x1f" "\xcc\x06\xaf\x1e\xce\x06\x0a\x25" 
	"\xb0\x06\x15\x1f\xc4\x06\xb6\x1e" "\xce\x06\x25\x25\xb3\x06\x79\x1f" 
	"\xb2\x06\xfe\x1e\xee\x06\xd5\x24" "\xcf\x06\x03\x1f\xde\x06\xc3\x1e" 
	"\xe2\x06\xf3\x24\xd3\x06\xf6\x1e" "\xd3\x06\xe8\x1e\xda\x06\xb9\x24" 
	"\xcc\x06\xf0\x1e\xd5\x06\x86\x1e" "\xec\x06\xf4\x24\xc0\x06\xe1\x1e" 
	"\xd4\x06\x11\x1f\xd5\x06\xcc\x24" "\xcc\x06\x0f\x1f\xd7\x06\x0a\x1f" 
	"\xd7\x06\x83\x24\xd6\x06\x09\x1f" "\xcf\x06\xd0\x1e\xe7\x06\xce\x24" 
	"\xcb\x06\xfd\x1e\xd9\x06\xe8\x1e" "\xd3\x06\xf0\x24\xb1\x06\x3d\x1f" 
	"\xc6\x06\xee\x1e\xe3\x06\xc6\x24" "\xca\x06\xf1\x1e\xcb\x06\x8c\x1e" 
	"\xde\x06\x91\x24\xcb\x06\xe2\x1e" "\xca\x06\x62\x1e\xd3\x06\xbe\x24" 
	"\xc1\x06\x28\x1f\xcb\x06\x83\x1e" "\xe6\x06\x8e\x24\xd1\x06\xdf\x1e" 
	"\xe3\x06\xbc\x1e\xc1\x06\x77\x24" "\xbb\x06\xfd\x1e\xcc\x06\x9f\x1e" 
	"\xd4\x06\x99\x24\xd5\x06\x26\x1f" "\xcf\x06\xba\x1e\xdf\x06\x5b\x24" 
	"\xcf\x06\x46\x1f\xd2\x06\xd3\x1e" "\xe0\x06\x8d\x24\xc3\x06\x0c\x1f" 
	"\xd4\x06\xe3\x1e\xe0\x06\xcd\x24" "\xbf\x06\xf7\x1e\xd3\x06\xc0\x1e" 
	"\xdf\x06\xa4\x24\xc0\x06\x16\x1f" "\xcf\x06\xa8\x1e\xc2\x06\xaf\x24" 
	"\xa4\x06\x2e\x1f\xda\x06\xd5\x1e" "\xe4\x06\xd7\x24\xc9\x06\xf4\x1e" 
	"\xdb\x06\xd2\x1e\xad\x06\xec\x24" "\x7f\x06\x0e\x1f\xc2\x06\xc0\x1e" 
	"\xdd\x06\x9e\x24\xbe\x06\xec\x1e" "\xcf\x06\xa4\x1e\xbf\x06\xd8\x24" 
	"\xa4\x06\x1a\x1f\xbf\x06\xa5\x1e" "\xe7\x06\x94\x24\xc9\x06\xca\x1e" 
	"\xce\x06\x79\x1e\xe1\x06\xb9\x24" "\xc2\x06\x16\x1f\xca\x06\x8d\x1e" 
	"\xdb\x06\x1f\x25\xcf\x06\x4c\x1f" "\xce\x06\x00\x1f\xdb\x06\xa1\x24" 
	"\xc3\x06\x40\x1f\xcc\x06\xf3\x1e" "\xdc\x06\x8c\x24\xbb\x06\x1f\x1f" 
	"\xd9\x06\xd7\x1e\xc8\x06\x35\x25" "\xb3\x06\x60\x1f\xba\x06\x03\x1f" 
	"\xd9\x06\xf2\x24\xcf\x06\x3a\x1f" "\xc6\x06\xaf\x1e\xe3\x06\xf7\x24" 
	"\xc1\x06\x4a\x1f\xd3\x06\xda\x1e" "\xd2\x06\xfa\x24\xc6\x06\x5a\x1f" 
	"\xcf\x06\x16\x1f\xdd\x06\xe0\x24" "\xc3\x06\x69\x1f\xd2\x06\x1a\x1f" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe0\x06\xe1\x24\xcb\x06\x62\x1f" "\xd5\x06\x22\x1f\xdd\x06\xc6\x24" 
	"\xbf\x06\x44\x1f\xd2\x06\xfa\x1e" "\xdf\x06\xb4\x24\xc9\x06\x5e\x1f" 
	"\xd0\x06\xce\x1e\xd1\x06\xe4\x24" "\xc4\x06\x15\x1f\xc2\x06\x95\x1e" 
	"\xe6\x06\xc1\x24\xd1\x06\x0e\x1f" "\xc8\x06\xae\x1e\xe2\x06\xbe\x24" 
	"\xc3\x06\x2f\x1f\xd3\x06\xae\x1e" "\xe3\x06\x94\x24\xc0\x06\x0a\x1f" 
	"\xd6\x06\xa4\x1e\xe4\x06\x75\x24" "\xd7\x06\x3b\x1f\xdb\x06\xd2\x1e" 
	"\xcd\x06\x9b\x24\xb8\x06\x32\x1f" "\xce\x06\xbd\x1e\xe6\x06\xac\x24" 
	"\xc8\x06\x2f\x1f\xc8\x06\xcb\x1e" "\xd4\x06\x98\x24\xc3\x06\x39\x1f" 
	"\xd2\x06\xca\x1e\xf3\x06\xc5\x24" "\xc9\x06\x10\x1f\xd0\x06\x97\x1e" 
	"\xde\x06\xa3\x24\xbd\x06\xfa\x1e" "\xdc\x06\x99\x1e\xd3\x06\xb5\x24" 
	"\xb3\x06\x26\x1f\xd9\x06\xa9\x1e" "\xf3\x06\xa8\x24\xd2\x06\x1c\x1f" 
	"\xde\x06\xdd\x1e\xda\x06\x90\x24" "\xc5\x06\x17\x1f\xd1\x06\xbb\x1e" 
	"\xde\x06\xa2\x24\xc9\x06\x12\x1f" "\xdb\x06\xde\x1e\xd5\x06\x9a\x24" 
	"\xc7\x06\x1f\x1f\xd2\x06\xe3\x1e" "\xd8\x06\xd6\x24\xaa\x06\x1f\x1f" 
	"\xd2\x06\xda\x1e\xd8\x06\x0f\x25" "\xc9\x06\x32\x1f\xcf\x06\x9a\x1e" 
	"\xdd\x06\x38\x25\xbd\x06\x37\x1f" "\xc4\x06\xe1\x1e\xdd\x06\xff\x24" 
	"\xca\x06\x2b\x1f\xc6\x06\xd9\x1e" "\xe7\x06\xe3\x24\xcc\x06\x32\x1f" 
	"\xd2\x06\xcf\x1e\xe2\x06\xa2\x24" "\xd0\x06\x26\x1f\xcd\x06\xb7\x1e" 
	"\xda\x06\x57\x24\xc8\x06\xf6\x1e" "\xdb\x06\xc9\x1e\xdd\x06\x8e\x24" 
	"\xbe\x06\x01\x1f\xd6\x06\xf8\x1e" "\xe2\x06\xc9\x24\xc6\x06\x10\x1f" 
	"\xcf\x06\xaa\x1e\xdd\x06\x13\x25" "\xc2\x06\x38\x1f\xbc\x06\xe9\x1e" 
	"\xd9\x06\xf7\x24\xb8\x06\x46\x1f" "\xd2\x06\xc3\x1e\xcf\x06\xb3\x24" 
	"\xb0\x06\x11\x1f\xde\x06\xdc\x1e" "\xea\x06\xa9\x24\xd4\x06\x24\x1f" 
	"\xd6\x06\xb6\x1e\xda\x06\xba\x24" "\xc1\x06\x1a\x1f\xd8\x06\xb3\x1e" 
	"\xd9\x06\x51\x24\xbf\x06\xfa\x1e" "\xd2\x06\x96\x1e\xe2\x06\x93\x24" 
	"\xc4\x06\xf0\x1e\xd4\x06\x79\x1e" "\xe4\x06\xbd\x24\xc3\x06\xfe\x1e" 
	"\xdc\x06\x8e\x1e\xd9\x06\x8a\x24" "\xc2\x06\x3d\x1f\xd8\x06\x92\x1e" 
	"\xd7\x06\xb1\x24\xbb\x06\x1f\x1f" "\xce\x06\x90\x1e\xe0\x06\x8d\x24" 
	"\xcf\x06\x04\x1f\xce\x06\x47\x1e" "\xe4\x06\x52\x24\xc3\x06\xa6\x1e" 
	"\xd2\x06\xf5\x1d\xe1\x06\x78\x24" "\xcf\x06\xd4\x1e\xd8\x06\x00\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd6\x06\x98\x24\xb7\x06\xd0\x1e" "\xc7\x06\x25\x1e\xe4\x06\x30\x24" 
	"\xd5\x06\x09\x1f\xda\x06\x25\x1e" "\xe3\x06\x81\x24\xbf\x06\x20\x1f" 
	"\xdc\x06\x70\x1e\xe0\x06\xb9\x24" "\xca\x06\x20\x1f\xd4\x06\xa3\x1e" 
	"\xe8\x06\xaa\x24\xcd\x06\x2f\x1f" "\xd8\x06\xaa\x1e\xdc\x06\x05\x25" 
	"\xbe\x06\x42\x1f\xdc\x06\xff\x1e" "\xe1\x06\xfd\x24\xc4\x06\x13\x1f" 
	"\xd8\x06\xbb\x1e\xdc\x06\xfa\x24" "\xc3\x06\x0c\x1f\xd1\x06\xb1\x1e" 
	"\xd3\x06\xac\x24\xbd\x06\x39\x1f" "\xd3\x06\x99\x1e\xd8\x06\xd6\x24" 
	"\xc7\x06\x37\x1f\xe0\x06\xdb\x1e" "\xc1\x06\xb5\x24\x93\x06\x70\x1f" 
	"\xcf\x06\x9f\x1e\xee\x06\x57\x24" "\xd3\x06\x3d\x1f\xd4\x06\xa2\x1e" 
	"\xc2\x06\x44\x24\xb6\x06\x47\x1f" "\xce\x06\x9f\x1e\xe4\x06\x36\x24" 
	"\xbd\x06\x45\x1f\xd2\x06\xbe\x1e" "\xd1\x06\x5a\x24\xad\x06\x5c\x1f" 
	"\xdf\x06\xea\x1e\xcc\x06\x5b\x24" "\xb5\x06\x65\x1f\xd6\x06\x9b\x1e" 
	"\xca\x06\xfd\x23\xc0\x06\x8f\x1f" "\xce\x06\xe3\x1e\xd9\x06\xc3\x23" 
	"\xba\x06\x51\x1f\xd4\x06\xee\x1e" "\xee\x06\x4f\x24\xc8\x06\x30\x1f" 
	"\xe1\x06\xc3\x1e\xc9\x06\x1b\x24" "\xb7\x06\x4c\x1f\xd2\x06\xb2\x1e" 
	"\xd8\x06\xa7\x24\xbf\x06\x5c\x1f" "\xd2\x06\xd6\x1e\xe2\x06\xba\x24" 
	"\xc2\x06\x2d\x1f\xd6\x06\xe2\x1e" "\xe7\x06\x19\x24\xc5\x06\xd8\x1e" 
	"\xe2\x06\x79\x1e\xca\x06\x1a\x24" "\xa2\x06\x01\x1f\xc0\x06\x61\x1e" 
	"\xc1\x06\x60\x24\xa5\x06\x52\x1f" "\xd3\x06\xcc\x1e\xb3\x06\x88\x24" 
	"\x96\x06\x62\x1f\xd7\x06\xaa\x1e" "\xd8\x06\x90\x24\xc2\x06\x56\x1f" 
	"\xd8\x06\xe4\x1e\xd2\x06\x91\x24" "\xbe\x06\x4f\x1f\xcd\x06\xb3\x1e" 
	"\xd1\x06\x9f\x24\xbc\x06\x93\x1f" "\xd9\x06\x2f\x1f\xdf\x06\x2f\x25" 
	"\xbc\x06\x23\x1f\xdc\x06\x03\x1f" "\xd4\x06\xf1\x24\xa6\x06\x64\x1f" 
	"\xda\x06\xdc\x1e\xcc\x06\xa2\x24" "\xcf\x06\x66\x1f\xdd\x06\xfc\x1e" 
	"\xda\x06\x8f\x24\xc7\x06\x2c\x1f" "\xdb\x06\xea\x1e\xe0\x06\xb4\x24" 
	"\xd2\x06\x84\x1f\xd4\x06\xad\x1e" "\xdd\x06\x86\x24\xc7\x06\x26\x1f" 
	"\xd8\x06\xb5\x1e\xc5\x06\x7e\x24" "\x9c\x06\x16\x1f\xd9\x06\x95\x1e" 
	"\xde\x06\xb9\x24\xbb\x06\x5b\x1f" "\xd3\x06\xae\x1e\xe1\x06\x51\x24" 
	"\xc8\x06\x04\x1f\xce\x06\x63\x1e" "\xdc\x06\x8c\x24\xc3\x06\x4a\x1f" 
	"\xd7\x06\xc5\x1e\xe8\x06\xd6\x24" "\xc5\x06\x44\x1f\xd5\x06\xbc\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xda\x06\x0e\x24\xc8\x06\x52\x1f" "\xd1\x06\x8e\x1e\xef\x06\x48\x24" 
	"\xc9\x06\x2f\x1f\xe3\x06\xbf\x1e" "\xda\x06\x5a\x24\xbc\x06\x2e\x1f" 
	"\xd9\x06\x8d\x1e\xde\x06\x63\x24" "\xc2\x06\xea\x1e\xdf\x06\x75\x1e" 
	"\xdf\x06\x7a\x24\xcc\x06\xec\x1e" "\xd5\x06\x47\x1e\xce\x06\xd7\x24" 
	"\xc0\x06\x3c\x1f\xcd\x06\x83\x1e" "\xeb\x06\x9d\x24\xc8\x06\x34\x1f" 
	"\xdc\x06\xc1\x1e\xcb\x06\xd6\x24" "\xbe\x06\x2c\x1f\xdd\x06\x98\x1e" 
	"\xdf\x06\x9c\x24\xc8\x06\x2e\x1f" "\xdc\x06\x93\x1e\xeb\x06\x98\x24" 
	"\xcb\x06\x40\x1f\xdc\x06\x93\x1e" "\xec\x06\x43\x24\xc4\x06\x47\x1f" 
	"\xdd\x06\x88\x1e\xd3\x06\x49\x24" "\xd6\x06\x20\x1f\xdf\x06\x59\x1e" 
	"\xe0\x06\x2b\x24\xcb\x06\x1c\x1f" "\xd7\x06\x90\x1e\xe1\x06\x0a\x24" 
	"\xc5\x06\x38\x1f\xe0\x06\xa1\x1e" "\xc6\x06\x5e\x24\xb3\x06\x50\x1f" 
	"\xd2\x06\xa0\x1e\xdf\x06\x61\x24" "\xcf\x06\x4d\x1f\xe2\x06\x9a\x1e" 
	"\xd1\x06\x81\x24\xc3\x06\x48\x1f" "\xdc\x06\xbb\x1e\xe4\x06\xcc\x24" 
	"\xda\x06\x4c\x1f\xda\x06\xc8\x1e" "\xdd\x06\xc3\x24\xba\x06\x4f\x1f" 
	"\xcc\x06\xaa\x1e\xd8\x06\x52\x24" "\xc8\x06\x2b\x1f\xdf\x06\x86\x1e" 
	"\xdf\x06\x7b\x24\xc5\x06\x3e\x1f" "\xd5\x06\xbb\x1e\xdb\x06\x64\x24" 
	"\xbd\x06\x3d\x1f\xdc\x06\x97\x1e" "\xec\x06\x93\x24\xc6\x06\x3c\x1f" 
	"\xe2\x06\xa7\x1e\xd3\x06\x8f\x24" "\xbf\x06\x19\x1f\xd1\x06\x85\x1e" 
	"\xea\x06\xb3\x24\xc9\x06\x03\x1f" "\xd8\x06\x92\x1e\xd2\x06\xd1\x24" 
	"\xb2\x06\x34\x1f\xe5\x06\x86\x1e" "\xe1\x06\xc8\x24\xc1\x06\x5f\x1f" 
	"\xd6\x06\x9e\x1e\xe0\x06\xaa\x24" "\xbf\x06\x4a\x1f\xc8\x06\xa9\x1e" 
	"\xd6\x06\x7c\x24\xc6\x06\x48\x1f" "\xdd\x06\xa7\x1e\xce\x06\xaf\x24" 
	"\xb4\x06\x60\x1f\xd6\x06\xae\x1e" "\xe3\x06\xba\x24\xd5\x06\x2e\x1f" 
	"\xe8\x06\xac\x1e\xd8\x06\xb4\x24" "\xbd\x06\x2c\x1f\xda\x06\xc5\x1e" 
	"\xd9\x06\xb2\x24\xc5\x06\x48\x1f" "\xdb\x06\xf6\x1e\xe1\x06\xc6\x24" 
	"\xcd\x06\x20\x1f\xd2\x06\x6c\x1e" "\xe3\x06\xbc\x24\xc4\x06\x35\x1f" 
	"\xd3\x06\xc9\x1e\xe6\x06\x95\x24" "\xcb\x06\x61\x1f\xe5\x06\xb2\x1e" 
	"\xd5\x06\xa2\x24\xb9\x06\x5e\x1f" "\xd9\x06\xcd\x1e\xe9\x06\xac\x24" 
	"\xd0\x06\x5e\x1f\xe1\x06\xe5\x1e" "\xc6\x06\x20\x25\xa3\x06\x81\x1f" 
	"\xdf\x06\xfb\x1e\xce\x06\x10\x25" "\xaa\x06\x5e\x1f\xdc\x06\xe2\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xea\x06\x55\x25\xe2\x06\xc6\x1f" "\xe3\x06\x2b\x1f\xe8\x06\x5f\x25" 
	"\xc7\x06\xe4\x1f\xe2\x06\x49\x1f" "\xdc\x06\x51\x25\xbd\x06\xa9\x1f" 
	"\xd6\x06\x48\x1f\xbc\x06\x70\x25" "\xa0\x06\xa4\x1f\xdf\x06\x1f\x1f" 
	"\xe2\x06\xe9\x24\xc9\x06\xa0\x1f" "\xdd\x06\x07\x1f\xee\x06\xff\x24" 
	"\xd4\x06\x9a\x1f\xe8\x06\xf7\x1e" "\xe6\x06\x31\x25\xc1\x06\x87\x1f" 
	"\xd5\x06\xe2\x1e\xef\x06\x8e\x25" "\xdd\x06\xca\x1f\xdf\x06\x14\x1f" 
	"\xe0\x06\x7c\x25\xd9\x06\xac\x1f" "\xd8\x06\x13\x1f\xec\x06\xf8\x24" 
	"\xc4\x06\xad\x1f\xd8\x06\xfe\x1e" "\xe6\x06\x00\x25\xc3\x06\x85\x1f" 
	"\xcf\x06\x21\x1f\xe0\x06\xf1\x24" "\xc6\x06\x9e\x1f\xd9\x06\x02\x1f" 
	"\xd3\x06\xf4\x24\xbf\x06\x61\x1f" "\xdb\x06\xe5\x1e\xd8\x06\xbd\x24" 
	"\xcd\x06\xa9\x1f\xe0\x06\xf6\x1e" "\xe0\x06\xa9\x24\xc7\x06\x9f\x1f" 
	"\xe0\x06\xf1\x1e\xe8\x06\xcd\x24" "\xd4\x06\xbf\x1f\xd5\x06\xe5\x1e" 
	"\xe5\x06\x36\x25\xd6\x06\x9b\x1f" "\xd6\x06\x26\x1f\xdd\x06\x00\x25" 
	"\xc0\x06\x83\x1f\xdc\x06\xf8\x1e" "\xe3\x06\xdc\x24\xc0\x06\x5c\x1f" 
	"\xe5\x06\xf0\x1e\xf1\x06\xf0\x24" "\xcd\x06\x50\x1f\xdf\x06\xd8\x1e" 
	"\xd6\x06\xaf\x24\xb9\x06\x6e\x1f" "\xd6\x06\xf0\x1e\xe6\x06\xa2\x24" 
	"\xc0\x06\x25\x1f\xd7\x06\xb7\x1e" "\xe9\x06\xd6\x24\xc1\x06\x0d\x1f" 
	"\xd9\x06\xc2\x1e\xdb\x06\x9f\x24" "\xce\x06\x3d\x1f\xd7\x06\xe4\x1e" 
	"\xe4\x06\x52\x24\xcc\x06\x48\x1f" "\xda\x06\xc8\x1e\xed\x06\x8b\x24" 
	"\xd0\x06\x37\x1f\xe2\x06\xdf\x1e" "\xd1\x06\x5b\x24\xac\x06\x50\x1f" 
	"\xc4\x06\xc1\x1e\xe3\x06\x5c\x24" "\xc5\x06\x5b\x1f\xe2\x06\x01\x1f" 
	"\xe2\x06\x6c\x24\xc6\x06\x54\x1f" "\xdd\x06\xf8\x1e\xca\x06\xd8\x24" 
	"\xb8\x06\x68\x1f\xd6\x06\xeb\x1e" "\xe8\x06\xc1\x24\xc4\x06\x66\x1f" 
	"\xda\x06\x0c\x1f\xe4\x06\xf2\x24" "\xbd\x06\x18\x1f\xe1\x06\x0b\x1f" 
	"\xdc\x06\xf1\x24\xd9\x06\x62\x1f" "\xcf\x06\xf3\x1e\xe5\x06\xaa\x24" 
	"\xc2\x06\x23\x1f\xd3\x06\xe2\x1e" "\xc6\x06\x93\x24\xaf\x06\x54\x1f" 
	"\xe0\x06\xb7\x1e\xd0\x06\x61\x24" "\xa2\x06\x10\x1f\xd9\x06\xaa\x1e" 
	"\xce\x06\x2e\x24\xc4\x06\x07\x1f" "\xcc\x06\x82\x1e\xd1\x06\xab\x24" 
	"\xac\x06\x3a\x1f\xd4\x06\xf1\x1e" "\xe0\x06\x60\x24\xb7\x06\x0d\x1f" 
	"\xd7\x06\xe8\x1e\xdc\x06\x98\x24" "\xb2\x06\x15\x1f\xca\x06\xb3\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd6\x06\x86\x24\xb8\x06\xed\x1e" "\xda\x06\xc7\x1e\xe1\x06\x74\x24" 
	"\xc5\x06\xd9\x1e\xda\x06\xc3\x1e" "\xe8\x06\x88\x24\xc4\x06\xed\x1e" 
	"\xd5\x06\xb2\x1e\xba\x06\xd8\x24" "\x9e\x06\xe1\x1e\xca\x06\xa7\x1e" 
	"\xe7\x06\x7a\x24\xc8\x06\xc6\x1e" "\xd6\x06\x9a\x1e\xe5\x06\x72\x24" 
	"\xcd\x06\x10\x1f\xcc\x06\xbf\x1e" "\xe4\x06\xb0\x24\xbb\x06\x29\x1f" 
	"\xdb\x06\xd6\x1e\xde\x06\xa1\x24" "\xbb\x06\x13\x1f\xdb\x06\xdc\x1e" 
	"\xd7\x06\xa6\x24\xcc\x06\x19\x1f" "\xce\x06\x9a\x1e\xe3\x06\xb1\x24" 
	"\xc2\x06\x0e\x1f\xd7\x06\xe9\x1e" "\xe4\x06\xfc\x24\xd4\x06\x56\x1f" 
	"\xde\x06\xf6\x1e\xd4\x06\xc7\x24" "\xc0\x06\x43\x1f\xd5\x06\xda\x1e" 
	"\xe4\x06\xd6\x24\xd3\x06\x61\x1f" "\xd8\x06\x15\x1f\xe0\x06\x96\x24" 
	"\xc3\x06\x50\x1f\xd6\x06\xe1\x1e" "\xc8\x06\xa6\x24\x9f\x06\x38\x1f" 
	"\xd2\x06\xca\x1e\xc6\x06\xda\x24" "\xa8\x06\x40\x1f\xd2\x06\xe3\x1e" 
	"\xee\x06\xae\x24\xce\x06\x21\x1f" "\xd3\x06\xd2\x1e\xae\x06\xe9\x24" 
	"\x8f\x06\x54\x1f\xcb\x06\xe8\x1e" "\xe1\x06\x30\x25\xbb\x06\x51\x1f" 
	"\xc4\x06\xd1\x1e\xed\x06\xb1\x24" "\xce\x06\x52\x1f\xd2\x06\xca\x1e" 
	"\xb1\x06\xb3\x24\xa3\x06\x77\x1f" "\xd6\x06\xdd\x1e\xde\x06\xce\x24" 
	"\xcc\x06\x57\x1f\xda\x06\xdf\x1e" "\xdd\x06\xa7\x24\xcd\x06\x37\x1f" 
	"\xe5\x06\xdb\x1e\xdc\x06\xac\x24" "\xc9\x06\x4e\x1f\xda\x06\xfa\x1e" 
	"\xf3\x06\xbd\x24\xd6\x06\x4a\x1f" "\xe1\x06\xe6\x1e\xe6\x06\xd1\x24" 
	"\xc6\x06\x1f\x1f\xe0\x06\xbc\x1e" "\xa9\x06\xe6\x24\x8e\x06\x65\x1f" 
	"\xde\x06\xf1\x1e\xe6\x06\xc9\x24" "\xd4\x06\x37\x1f\xde\x06\x0c\x1f" 
	"\xdc\x06\xaa\x24\xbd\x06\x55\x1f" "\xdf\x06\xeb\x1e\xd3\x06\x95\x24" 
	"\xb1\x06\x21\x1f\xdd\x06\xdf\x1e" "\xe3\x06\xc2\x24\xc1\x06\x39\x1f" 
	"\xcf\x06\xe3\x1e\xd4\x06\x83\x24" "\xc3\x06\x2d\x1f\xde\x06\xf4\x1e" 
	"\xe4\x06\x83\x24\xcc\x06\xf1\x1e" "\xd4\x06\xa2\x1e\xe3\x06\xf7\x24" 
	"\xce\x06\x2e\x1f\xd6\x06\xdd\x1e" "\xbc\x06\xc3\x24\x9b\x06\x05\x1f" 
	"\xdf\x06\xe2\x1e\xe0\x06\x7e\x24" "\xbf\x06\x3d\x1f\xdf\x06\xd0\x1e" 
	"\xae\x06\xf8\x24\x93\x06\x35\x1f" "\xd9\x06\x2e\x1f\xd5\x06\xc6\x24" 
	"\xb0\x06\x50\x1f\xda\x06\xf0\x1e" "\xe9\x06\xf9\x24\xcd\x06\x53\x1f" 
	"\xe0\x06\x13\x1f\xe5\x06\xf9\x24" "\xd0\x06\x3c\x1f\xdc\x06\xf7\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xf1\x06\xce\x24\xd9\x06\x85\x1f" "\xdb\x06\x25\x1f\xec\x06\xd5\x24" 
	"\xcd\x06\x63\x1f\xd4\x06\x16\x1f" "\xdf\x06\xfa\x24\xbb\x06\x39\x1f" 
	"\xd5\x06\xf7\x1e\xe5\x06\xc4\x24" "\xc9\x06\x3f\x1f\xd5\x06\xf1\x1e" 
	"\xb9\x06\xdd\x24\xa3\x06\x6a\x1f" "\xda\x06\xd6\x1e\xe2\x06\xfa\x24" 
	"\xc4\x06\x37\x1f\xcb\x06\x10\x1f" "\xd6\x06\xcf\x24\xb4\x06\x49\x1f" 
	"\xd0\x06\xc6\x1e\xd7\x06\x7d\x24" "\xc5\x06\xf6\x1e\xd4\x06\xda\x1e" 
	"\xcc\x06\xf1\x24\xb9\x06\x24\x1f" "\xd5\x06\x0e\x1f\xd3\x06\xde\x24" 
	"\xb0\x06\x40\x1f\xd0\x06\xef\x1e" "\xe8\x06\x29\x25\xd3\x06\x58\x1f" 
	"\xe5\x06\x02\x1f\xbf\x06\x16\x25" "\xa7\x06\x3e\x1f\xc5\x06\xec\x1e" 
	"\xc3\x06\xcd\x24\xad\x06\x19\x1f" "\xd5\x06\xe5\x1e\xdd\x06\xdc\x24" 
	"\xcc\x06\x44\x1f\xd6\x06\xe5\x1e" "\xeb\x06\xec\x24\xd0\x06\x4a\x1f" 
	"\xde\x06\xc6\x1e\xe1\x06\x99\x24" "\xd1\x06\x53\x1f\xd6\x06\xfe\x1e" 
	"\xda\x06\x02\x25\xbe\x06\x3c\x1f" "\xca\x06\xe0\x1e\xe0\x06\x1d\x25" 
	"\xca\x06\x48\x1f\xde\x06\x01\x1f" "\xec\x06\x9f\x24\xcb\x06\x3a\x1f" 
	"\xd4\x06\xe3\x1e\xe9\x06\xac\x24" "\xcf\x06\x49\x1f\xe1\x06\xcf\x1e" 
	"\xcd\x06\xcc\x24\xba\x06\x2b\x1f" "\xdf\x06\xb1\x1e\xd3\x06\xce\x24" 
	"\xc2\x06\x23\x1f\xd8\x06\xa5\x1e" "\xe8\x06\xf4\x24\xcc\x06\x47\x1f" 
	"\xd7\x06\xba\x1e\xde\x06\x27\x25" "\xd8\x06\x3e\x1f\xda\x06\xf4\x1e" 
	"\xe8\x06\xac\x24\xcf\x06\x42\x1f" "\xdc\x06\x00\x1f\xca\x06\xb7\x24" 
	"\xab\x06\x4a\x1f\xd0\x06\xdf\x1e" "\xdf\x06\x13\x25\xb8\x06\x13\x1f" 
	"\xd7\x06\xc6\x1e\xec\x06\x03\x25" "\xcf\x06\x0c\x1f\xdc\x06\xe1\x1e" 
	"\xea\x06\xb8\x24\xca\x06\x01\x1f" "\xd1\x06\xd6\x1e\xf1\x06\xc6\x24" 
	"\xd2\x06\x34\x1f\xd1\x06\xec\x1e" "\xe1\x06\xb7\x24\xbd\x06\x41\x1f" 
	"\xdc\x06\xbd\x1e\xde\x06\xf3\x24" "\xc2\x06\x4a\x1f\xcf\x06\xd2\x1e" 
	"\xd8\x06\x9a\x24\xc1\x06\x83\x1f" "\xce\x06\xc8\x1e\xe1\x06\x6c\x24" 
	"\xcf\x06\x2c\x1f\xd3\x06\xd6\x1e" "\xe9\x06\xa8\x24\xc3\x06\x21\x1f" 
	"\xd8\x06\xc1\x1e\xd0\x06\xad\x24" "\xbc\x06\x11\x1f\xce\x06\x87\x1e" 
	"\xd2\x06\x31\x24\xb7\x06\x38\x1f" "\xd0\x06\xa0\x1e\xdb\x06\x72\x24" 
	"\xcd\x06\x3c\x1f\xd1\x06\xb8\x1e" "\xd8\x06\xe4\x24\xc5\x06\x37\x1f" 
	"\xd0\x06\xd7\x1e\xcf\x06\x21\x25" "\xb0\x06\x78\x1f\xbe\x06\xf1\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd3\x06\xc1\x24\xb2\x06\x35\x1f" "\xc9\x06\xb8\x1e\xcc\x06\x23\x25" 
	"\xa6\x06\x5d\x1f\xda\x06\xee\x1e" "\xcb\x06\xe7\x24\xbb\x06\x5e\x1f" 
	"\xe2\x06\xd3\x1e\xe8\x06\x2f\x25" "\xcd\x06\x43\x1f\xdc\x06\xc6\x1e" 
	"\xd7\x06\x16\x25\xc8\x06\x6e\x1f" "\xcf\x06\x23\x1f\xe2\x06\xd5\x24" 
	"\xc3\x06\xa5\x1f\xc9\x06\xf1\x1e" "\xe5\x06\xc1\x24\xc1\x06\xa3\x1f" 
	"\xd4\x06\xff\x1e\xeb\x06\x2d\x25" "\xd1\x06\x97\x1f\xd3\x06\xff\x1e" 
	"\xe1\x06\xe4\x24\xd8\x06\xb7\x1f" "\xd4\x06\x35\x1f\xef\x06\xe9\x24" 
	"\xcf\x06\xcd\x1f\xdf\x06\x1f\x1f" "\xe8\x06\x31\x25\xb9\x06\xc1\x1f" 
	"\xd9\x06\x31\x1f\xeb\x06\xf7\x24" "\xdc\x06\xbe\x1f\xe1\x06\x39\x1f" 
	"\xe5\x06\xe2\x24\xd7\x06\xb1\x1f" "\xe2\x06\x20\x1f\xe6\x06\xf5\x24" 
	"\xc5\x06\xc0\x1f\xd6\x06\x17\x1f" "\xdf\x06\xff\x24\xc5\x06\xb3\x1f" 
	"\xd1\x06\x1e\x1f\xcc\x06\xce\x24" "\xb1\x06\xb8\x1f\xcf\x06\x35\x1f" 
	"\xea\x06\xc5\x24\xda\x06\xba\x1f" "\xce\x06\x3a\x1f\xec\x06\xf3\x24" 
	"\xc7\x06\xc5\x1f\xd6\x06\x05\x1f" "\xf9\x06\xa0\x24\xd9\x06\x6b\x1f" 
	"\xee\x06\x15\x1f\x0a\x07\x36\x24" "\xf6\x06\x43\x1f\x08\x07\xa0\x1e" 
	"\x48\x07\xab\x23\x26\x07\x43\x1f" "\x39\x07\x9a\x1e\x50\x07\x42\x23" 
	"\x41\x07\xbc\x1e\x4a\x07\x8a\x1e" "\x01\x07\xce\x22\xde\x06\x45\x1e" 
	"\xfa\x06\x45\x1e\x32\x06\x88\x22" "\x1f\x06\xfe\x1d\x27\x06\x41\x1d" 
	"\x32\x06\xcd\x21\x17\x06\x7c\x1d" "\x1e\x06\x67\x1c\x9b\x06\xd9\x21" 
	"\x94\x06\x9b\x1d\xac\x06\x31\x1d" "\x47\x07\x7a\x22\x2f\x07\xa7\x1d" 
	"\x46\x07\x70\x1d\x2b\x07\xa4\x22" "\x23\x07\x0f\x1e\x38\x07\xbe\x1d" 
	"\x06\x07\x0e\x23\xf2\x06\x75\x1e" "\x16\x07\xf9\x1d\xe0\x06\x74\x23" 
	"\xca\x06\xb2\x1e\xee\x06\x17\x1e" "\xcd\x06\xb2\x23\xbb\x06\x9e\x1e" 
	"\xd5\x06\x28\x1e\xe6\x06\xe8\x23" "\xc7\x06\xb7\x1e\xd1\x06\x5c\x1e" 
	"\xbe\x06\x38\x24\xa4\x06\x08\x1f" "\xd5\x06\x83\x1e\xee\x06\x79\x24" 
	"\xd1\x06\x22\x1f\xe1\x06\xaf\x1e" "\xdc\x06\x58\x24\xbf\x06\xe1\x1e" 
	"\xdb\x06\x8a\x1e\xef\x06\x10\x24" "\xcc\x06\xa9\x1e\xd6\x06\x59\x1e" 
	"\xd3\x06\xb8\x23\xc9\x06\xd6\x1e" "\xd4\x06\x5b\x1e\xe5\x06\xd7\x23" 
	"\xc0\x06\xb2\x1e\xd6\x06\x36\x1e" "\xeb\x06\xc7\x23\xc7\x06\x96\x1e" 
	"\xdf\x06\x57\x1e\xe5\x06\xf2\x23" "\xc7\x06\x7a\x1e\xd6\x06\x39\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcc\x06\xd1\x23\xb8\x06\x82\x1e" "\xd7\x06\x03\x1e\xd9\x06\xc4\x23" 
	"\xc3\x06\x98\x1e\xdf\x06\x18\x1e" "\xc7\x06\xbb\x23\x98\x06\x74\x1e" 
	"\xc8\x06\x1d\x1e\xe0\x06\xb2\x23" "\xc2\x06\x6b\x1e\xdf\x06\x38\x1e" 
	"\xdc\x06\x40\x23\xd4\x06\x8f\x1e" "\xd7\x06\xf9\x1d\xd3\x06\xa9\x23" 
	"\xbe\x06\x56\x1e\xe6\x06\x22\x1e" "\xe5\x06\xf9\x23\xb4\x06\x77\x1e" 
	"\xcf\x06\x1f\x1e\xd6\x06\xd7\x23" "\xc1\x06\x73\x1e\xd4\x06\x00\x1e" 
	"\xe5\x06\xcc\x23\xd3\x06\x4f\x1e" "\xdc\x06\xe9\x1d\xe1\x06\x7f\x23" 
	"\xc5\x06\x70\x1e\xd8\x06\xf9\x1d" "\xde\x06\x7c\x23\xb0\x06\x24\x1e" 
	"\xde\x06\xd3\x1d\xb2\x06\x54\x23" "\xa6\x06\x4a\x1e\xd5\x06\xf5\x1d" 
	"\xce\x06\x95\x23\xaa\x06\x2d\x1e" "\xd4\x06\xfb\x1d\xe7\x06\x5a\x23" 
	"\xcb\x06\x5f\x1e\xcc\x06\xe6\x1d" "\xd3\x06\x73\x23\xb9\x06\x2b\x1e" 
	"\xda\x06\xe2\x1d\xe9\x06\x98\x23" "\xc8\x06\xe1\x1d\xd5\x06\xd1\x1d" 
	"\xb8\x06\x44\x23\x94\x06\x0f\x1e" "\xcc\x06\xc9\x1d\xca\x06\x1e\x23" 
	"\xaa\x06\x2c\x1e\xca\x06\xf9\x1d" "\xea\x06\x7d\x23\xcd\x06\x26\x1e" 
	"\xde\x06\x14\x1e\xd5\x06\xa5\x23" "\xc0\x06\x26\x1e\xd2\x06\x0a\x1e" 
	"\xd2\x06\xb8\x23\xac\x06\x4d\x1e" "\xbc\x06\x1d\x1e\xe3\x06\xac\x23" 
	"\xc2\x06\x72\x1e\xcf\x06\x1f\x1e" "\xce\x06\xf4\x23\xa8\x06\x7b\x1e" 
	"\xc2\x06\x1e\x1e\xd5\x06\xe0\x23" "\xbd\x06\x60\x1e\xd7\x06\x31\x1e" 
	"\xd6\x06\xbd\x23\xc2\x06\x65\x1e" "\xdf\x06\x0e\x1e\xd5\x06\xfc\x23" 
	"\xb1\x06\x5c\x1e\xd2\x06\xfb\x1d" "\xe2\x06\xd0\x23\xc3\x06\x63\x1e" 
	"\xd1\x06\x0d\x1e\xe8\x06\xf5\x23" "\xda\x06\x70\x1e\xd7\x06\x08\x1e" 
	"\xd6\x06\xf9\x23\xbd\x06\x99\x1e" "\xd4\x06\x35\x1e\xef\x06\x50\x24" 
	"\xcb\x06\xb4\x1e\xd9\x06\x3f\x1e" "\xe8\x06\xfd\x23\xca\x06\xa2\x1e" 
	"\xd6\x06\x24\x1e\xde\x06\xb6\x23" "\xca\x06\x5f\x1e\xd5\x06\xe5\x1d" 
	"\xc6\x06\x70\x23\xa1\x06\x29\x1e" "\xd7\x06\xc3\x1d\xdd\x06\xa1\x23" 
	"\xc0\x06\x6b\x1e\xd0\x06\xc7\x1d" "\xbe\x06\x98\x23\x99\x06\x4f\x1e" 
	"\xd6\x06\xd3\x1d\xd9\x06\x87\x23" "\xc4\x06\x49\x1e\xcc\x06\xe9\x1d" 
	"\xd5\x06\xc6\x23\xc3\x06\x6a\x1e" "\xd1\x06\x11\x1e\xba\x06\x02\x24" 
	"\x9d\x06\x82\x1e\xda\x06\x33\x1e" "\xb8\x06\xbf\x23\xa8\x06\x4a\x1e" 
	"\xd3\x06\xf8\x1d\xe4\x06\xaa\x23" "\xc8\x06\x28\x1e\xd9\x06\xf3\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe1\x06\x81\x23\xc6\x06\x0f\x1e" "\xd3\x06\xf5\x1d\xe2\x06\x78\x23" 
	"\xce\x06\x1c\x1e\xda\x06\xcf\x1d" "\xda\x06\x9b\x23\xc2\x06\x03\x1e" 
	"\xdb\x06\xee\x1d\xb4\x06\x91\x23" "\x97\x06\x4e\x1e\xb6\x06\xf9\x1d" 
	"\xd5\x06\x81\x23\xc7\x06\x4b\x1e" "\xdf\x06\xc2\x1d\x9f\x06\x98\x23" 
	"\x7c\x06\x5f\x1e\xd8\x06\xf0\x1d" "\xd4\x06\x52\x23\xae\x06\xe4\x1d" 
	"\xd0\x06\xca\x1d\xd2\x06\x30\x23" "\xc7\x06\x11\x1e\xdb\x06\xc4\x1d" 
	"\xc8\x06\x58\x23\xa8\x06\x17\x1e" "\xd8\x06\xbc\x1d\xdd\x06\x38\x23" 
	"\xba\x06\x23\x1e\xe0\x06\xc5\x1d" "\xd3\x06\x7b\x23\xac\x06\x56\x1e" 
	"\xc6\x06\xe0\x1d\xc9\x06\x71\x23" "\xb0\x06\x1c\x1e\xd0\x06\x9c\x1d" 
	"\xdc\x06\x89\x23\xbf\x06\x13\x1e" "\xdf\x06\xde\x1d\xda\x06\x3a\x23" 
	"\xbb\x06\x2b\x1e\xda\x06\xc7\x1d" "\xc6\x06\x73\x23\x9d\x06\x29\x1e" 
	"\xd5\x06\xd4\x1d\xb5\x06\x9a\x23" "\x9f\x06\x45\x1e\xdc\x06\xf6\x1d" 
	"\xb8\x06\x84\x23\x95\x06\x6f\x1e" "\xcb\x06\xe7\x1d\xd1\x06\x93\x23" 
	"\xb3\x06\x70\x1e\xd1\x06\x0d\x1e" "\xe8\x06\xe8\x23\xde\x06\xa1\x1e" 
	"\xd0\x06\x15\x1e\xda\x06\x87\x23" "\xce\x06\x5b\x1e\xcf\x06\x0b\x1e" 
	"\xcd\x06\x78\x23\xbd\x06\x53\x1e" "\xcd\x06\xf2\x1d\xe7\x06\x8c\x23" 
	"\xcb\x06\x4f\x1e\xd1\x06\xd7\x1d" "\xd1\x06\x82\x23\xc1\x06\x29\x1e" 
	"\xe1\x06\xda\x1d\xcb\x06\x90\x23" "\xb9\x06\x4d\x1e\xd8\x06\xf2\x1d" 
	"\xd0\x06\x73\x23\xb3\x06\x61\x1e" "\xd0\x06\xcb\x1d\xdc\x06\xd6\x23" 
	"\xb2\x06\x6a\x1e\xd0\x06\xec\x1d" "\xcd\x06\x6c\x23\xb1\x06\x63\x1e" 
	"\xd3\x06\xcc\x1d\xc9\x06\x2c\x23" "\xb4\x06\xff\x1d\xcd\x06\xb1\x1d" 
	"\xd1\x06\x43\x23\xa9\x06\x06\x1e" "\xc8\x06\xb0\x1d\xd4\x06\x62\x23" 
	"\xb5\x06\x04\x1e\xd3\x06\x97\x1d" "\xde\x06\x4c\x23\xcf\x06\x20\x1e" 
	"\xcf\x06\xae\x1d\xc2\x06\x1e\x23" "\xb8\x06\x18\x1e\xd4\x06\xc6\x1d" 
	"\xce\x06\xaf\x23\xba\x06\x26\x1e" "\xd8\x06\xc8\x1d\xde\x06\x43\x23" 
	"\xba\x06\x0f\x1e\xd5\x06\xa2\x1d" "\xde\x06\xe7\x22\xcd\x06\x04\x1e" 
	"\xd8\x06\x81\x1d\xd6\x06\x36\x23" "\xbb\x06\x0c\x1e\xca\x06\x83\x1d" 
	"\xd8\x06\x26\x23\xcd\x06\xf6\x1d" "\xc9\x06\xa8\x1d\xd3\x06\x42\x23" 
	"\xbe\x06\xeb\x1d\xc9\x06\x81\x1d" "\xe1\x06\x5b\x23\xc0\x06\x03\x1e" 
	"\xcf\x06\x91\x1d\xe1\x06\x5d\x23" "\xcb\x06\x21\x1e\xd2\x06\xba\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xca\x06\x6e\x23\xa9\x06\x1e\x1e" "\xd4\x06\x97\x1d\xc6\x06\x5e\x23" 
	"\x9d\x06\x14\x1e\xd7\x06\x96\x1d" "\xd5\x06\x0e\x23\xb8\x06\xfb\x1d" 
	"\xcb\x06\x52\x1d\xd8\x06\x26\x23" "\xc1\x06\x15\x1e\xc5\x06\x52\x1d" 
	"\xcc\x06\x3a\x23\xb6\x06\xf7\x1d" "\xce\x06\xa0\x1d\xcf\x06\x38\x23" 
	"\xb9\x06\x1d\x1e\xde\x06\xb7\x1d" "\xad\x06\x76\x23\x8e\x06\x1b\x1e" 
	"\xdb\x06\xd6\x1d\xc2\x06\x9a\x23" "\xb2\x06\x71\x1e\xcd\x06\xd1\x1d" 
	"\xa9\x06\x5a\x23\x91\x06\x94\x1e" "\xd6\x06\xb3\x1d\xc4\x06\x4b\x23" 
	"\xa1\x06\x66\x1e\xdc\x06\x8d\x1d" "\xd5\x06\x3b\x23\xc9\x06\x28\x1e" 
	"\xdf\x06\x96\x1d\xcb\x06\xf5\x22" "\xbc\x06\x04\x1e\xcc\x06\x74\x1d" 
	"\xa6\x06\xf5\x22\x98\x06\x1e\x1e" "\xcc\x06\x83\x1d\xb6\x06\x77\x23" 
	"\x87\x06\x51\x1e\xd7\x06\xab\x1d" "\xe2\x06\x72\x23\xc2\x06\xff\x1d" 
	"\xd7\x06\x93\x1d\xa0\x06\x40\x23" "\x89\x06\x1e\x1e\xd5\x06\x9c\x1d" 
	"\xdd\x06\x0a\x23\xcd\x06\xf7\x1d" "\xd0\x06\x82\x1d\xde\x06\x0f\x23" 
	"\xba\x06\xf9\x1d\xcc\x06\x74\x1d" "\xe1\x06\xfb\x22\xba\x06\xd1\x1d" 
	"\xd2\x06\x72\x1d\xe0\x06\xdf\x22" "\xc5\x06\x1b\x1e\xdb\x06\x84\x1d" 
	"\xd4\x06\x50\x23\xb1\x06\xf5\x1d" "\xd8\x06\x94\x1d\xd3\x06\x58\x23" 
	"\xb5\x06\x35\x1e\xc8\x06\x9d\x1d" "\xde\x06\x59\x23\xc0\x06\x05\x1e" 
	"\xd7\x06\xb0\x1d\xc6\x06\x44\x23" "\xa7\x06\x13\x1e\xbf\x06\x8b\x1d" 
	"\xd3\x06\x3a\x23\xb6\x06\x31\x1e" "\xc9\x06\x9b\x1d\xdc\x06\x5a\x23" 
	"\xca\x06\x29\x1e\xe2\x06\xb6\x1d" "\xcc\x06\x86\x23\xb8\x06\x60\x1e" 
	"\xc9\x06\xa1\x1d\xdd\x06\x51\x23" "\xd5\x06\x76\x1e\xd7\x06\xf3\x1d" 
	"\xcd\x06\xce\x23\xaa\x06\xb1\x1e" "\xcc\x06\xd8\x1d\xce\x06\xc1\x23" 
	"\xb0\x06\x4f\x1e\xd4\x06\xbc\x1d" "\xdf\x06\x8b\x23\xc3\x06\x50\x1e" 
	"\xd7\x06\xaf\x1d\xd3\x06\x57\x23" "\xb8\x06\x38\x1e\xd3\x06\xa8\x1d" 
	"\xd8\x06\x68\x23\xb5\x06\x30\x1e" "\xd8\x06\xa0\x1d\xd8\x06\x68\x23" 
	"\xc7\x06\x47\x1e\xd5\x06\x72\x1d" "\xcc\x06\xb0\x23\xa9\x06\x99\x1e" 
	"\xd8\x06\x85\x1d\xd4\x06\xe2\x23" "\xb3\x06\x9a\x1e\xcd\x06\xa6\x1d" 
	"\xde\x06\xb4\x23\xcb\x06\x58\x1e" "\xcd\x06\x9a\x1d\xd7\x06\xab\x23" 
	"\xcb\x06\x66\x1e\xd1\x06\x7d\x1d" "\xcf\x06\x48\x23\xb9\x06\x2d\x1e" 
	"\xd8\x06\x7b\x1d\xd7\x06\xc3\x23" "\xbc\x06\x58\x1e\xd6\x06\x70\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd0\x06\x97\x23\xbe\x06\x7b\x1e" "\xd5\x06\xb7\x1d\xdf\x06\x88\x23" 
	"\xb7\x06\x6d\x1e\xd2\x06\xb0\x1d" "\xd5\x06\xf9\x23\xb8\x06\x61\x1e" 
	"\xd1\x06\xc7\x1d\xd3\x06\xbb\x23" "\xbd\x06\x7c\x1e\xd0\x06\xd6\x1d" 
	"\xd4\x06\x75\x23\xd6\x06\x4e\x1e" "\xca\x06\x9a\x1d\xd1\x06\x83\x23" 
	"\xb4\x06\x82\x1e\xd8\x06\xa3\x1d" "\xe2\x06\x79\x23\xc0\x06\x3e\x1e" 
	"\xc7\x06\xbc\x1d\xe2\x06\x9a\x23" "\xb9\x06\x24\x1e\xdb\x06\xad\x1d" 
	"\xd1\x06\x4e\x23\xcb\x06\x36\x1e" "\xd0\x06\x9b\x1d\xe2\x06\xb4\x23" 
	"\xc9\x06\x65\x1e\xd8\x06\xb3\x1d" "\xed\x06\x87\x23\xc8\x06\x4d\x1e" 
	"\xd0\x06\xa0\x1d\xd6\x06\x5a\x23" "\xba\x06\x37\x1e\xca\x06\xa3\x1d" 
	"\xe2\x06\x5e\x23\xca\x06\x20\x1e" "\xca\x06\x92\x1d\xcd\x06\x58\x23" 
	"\xba\x06\x3c\x1e\xd8\x06\x8b\x1d" "\xcd\x06\x64\x23\xb1\x06\x1b\x1e" 
	"\xc7\x06\x61\x1d\xd3\x06\x8c\x23" "\xbc\x06\x63\x1e\xd4\x06\x7a\x1d" 
	"\xe3\x06\x85\x23\xc5\x06\x3d\x1e" "\xda\x06\x88\x1d\xe3\x06\xb0\x23" 
	"\xc6\x06\x4a\x1e\xd4\x06\xad\x1d" "\xde\x06\x48\x23\xc9\x06\x32\x1e" 
	"\xd0\x06\x86\x1d\xd7\x06\x09\x23" "\xc2\x06\x1f\x1e\xcf\x06\x4c\x1d" 
	"\xe0\x06\x35\x23\xcf\x06\x11\x1e" "\xce\x06\x58\x1d\xe7\x06\x17\x23" 
	"\xc2\x06\x03\x1e\xd0\x06\x52\x1d" "\xdc\x06\x1a\x23\xca\x06\x22\x1e" 
	"\xcf\x06\x50\x1d\xcd\x06\x40\x23" "\xb7\x06\x3d\x1e\xbb\x06\x6d\x1d" 
	"\xe1\x06\x98\x23\xb3\x06\x45\x1e" "\xc3\x06\x78\x1d\xe4\x06\x94\x23" 
	"\xb5\x06\x27\x1e\xd6\x06\x6d\x1d" "\xf2\x06\x40\x23\xbf\x06\xf5\x1d" 
	"\xce\x06\x38\x1d\xcf\x06\xfd\x22" "\xbd\x06\x02\x1e\xce\x06\x5d\x1d" 
	"\xda\x06\xd0\x22\xbe\x06\xef\x1d" "\xce\x06\x53\x1d\xe3\x06\x2a\x23" 
	"\xc6\x06\x16\x1e\xd1\x06\x52\x1d" "\xea\x06\x35\x23\xc5\x06\x38\x1e" 
	"\xcf\x06\x62\x1d\xe3\x06\x6b\x23" "\xd8\x06\x39\x1e\xd2\x06\x98\x1d" 
	"\xd2\x06\x46\x23\xba\x06\x17\x1e" "\xdb\x06\xae\x1d\xdd\x06\xce\x22" 
	"\xbb\x06\x09\x1e\xc5\x06\x4a\x1d" "\xdd\x06\x77\x22\xc2\x06\xfb\x1d" 
	"\xd5\x06\x3f\x1d\xe3\x06\xa8\x22" "\xc5\x06\xcd\x1d\xd8\x06\x30\x1d" 
	"\xdc\x06\xbc\x22\xd1\x06\xe6\x1d" "\xc9\x06\x0b\x1d\xd9\x06\x91\x22" 
	"\xc1\x06\x04\x1e\xd2\x06\x20\x1d" "\xe4\x06\x07\x23\xce\x06\xe2\x1d" 
	"\xcc\x06\x44\x1d\xe2\x06\x3d\x23" "\xd2\x06\xff\x1d\xd0\x06\x60\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd1\x06\xf0\x22\xc9\x06\xfc\x1d" "\xd4\x06\x4b\x1d\xeb\x06\x4d\x23" 
	"\xce\x06\x01\x1e\xd2\x06\x4a\x1d" "\xcf\x06\x47\x23\xb8\x06\xf0\x1d" 
	"\xc8\x06\x30\x1d\xe2\x06\xad\x22" "\xcb\x06\xf2\x1d\xd4\x06\x23\x1d" 
	"\xdf\x06\xc8\x22\xc2\x06\xe9\x1d" "\xd0\x06\xfc\x1c\xcf\x06\xfc\x22" 
	"\xa5\x06\xe9\x1d\xd1\x06\x15\x1d" "\xe1\x06\x12\x23\xc5\x06\x03\x1e" 
	"\xd5\x06\x46\x1d\xeb\x06\xec\x22" "\xd9\x06\x22\x1e\xd1\x06\x39\x1d" 
	"\xce\x06\xff\x22\xae\x06\x07\x1e" "\xc2\x06\x2c\x1d\xeb\x06\x17\x23" 
	"\xc8\x06\x07\x1e\xd1\x06\x3c\x1d" "\xee\x06\x27\x23\xc5\x06\x09\x1e" 
	"\xd2\x06\x53\x1d\xd7\x06\x0e\x23" "\xc4\x06\x14\x1e\xd9\x06\x4b\x1d" 
	"\xe0\x06\x32\x23\xc5\x06\x00\x1e" "\xce\x06\x3a\x1d\xee\x06\x8c\x23" 
	"\xda\x06\x31\x1e\xcf\x06\x60\x1d" "\xda\x06\xb6\x23\xb3\x06\xfa\x1d" 
	"\xd6\x06\x21\x1d\xe1\x06\x10\x23" "\xcb\x06\xfa\x1d\xcf\x06\xf0\x1c" 
	"\xd2\x06\x2c\x23\xb1\x06\x0f\x1e" "\xce\x06\xb9\x1c\xea\x06\xf8\x22" 
	"\xc5\x06\xfe\x1d\xd5\x06\xf2\x1c" "\xd1\x06\x42\x23\xb9\x06\x05\x1e" 
	"\xbc\x06\xf1\x1c\xe3\x06\x58\x23" "\xc5\x06\x20\x1e\xdf\x06\xe6\x1c" 
	"\xe4\x06\x97\x23\xcb\x06\x80\x1e" "\xcb\x06\xe9\x1c\xdb\x06\x29\x23" 
	"\xca\x06\x52\x1e\xd3\x06\xe3\x1c" "\xd9\x06\x06\x23\xb2\x06\xda\x1d" 
	"\xd7\x06\xa8\x1c\xe4\x06\x19\x23" "\xc0\x06\xd7\x1d\xcf\x06\x83\x1c" 
	"\xd6\x06\xda\x22\xbf\x06\xd7\x1d" "\xd6\x06\x9f\x1c\xd2\x06\x14\x23" 
	"\xb2\x06\xee\x1d\xce\x06\xae\x1c" "\xea\x06\x23\x23\xd0\x06\x22\x1e" 
	"\xce\x06\xea\x1c\xe9\x06\xa9\x23" "\xd8\x06\x5f\x1e\xd9\x06\x39\x1d" 
	"\xde\x06\x93\x23\xc7\x06\x54\x1e" "\xd4\x06\x40\x1d\xce\x06\x2c\x23" 
	"\xab\x06\x11\x1e\xd7\x06\x4b\x1d" "\xd8\x06\xa5\x22\xb9\x06\x2c\x1e" 
	"\xd3\x06\x1b\x1d\xd3\x06\x83\x22" "\xbf\x06\x22\x1e\xd1\x06\x15\x1d" 
	"\xda\x06\xcc\x22\xda\x06\x3e\x1e" "\xdc\x06\x3c\x1d\xd6\x06\xd9\x22" 
	"\xc0\x06\x26\x1e\xd7\x06\x41\x1d" "\xc8\x06\xe6\x22\xab\x06\x5c\x1e" 
	"\xd7\x06\x6a\x1d\xdb\x06\x3c\x23" "\xcb\x06\x34\x1e\xdc\x06\x44\x1d" 
	"\xe9\x06\xe0\x22\xc6\x06\x20\x1e" "\xc8\x06\x1c\x1d\xe5\x06\xd7\x22" 
	"\xd5\x06\x01\x1e\xd0\x06\x13\x1d" "\xe0\x06\xec\x22\xc6\x06\x19\x1e" 
	"\xd8\x06\x34\x1d\xd3\x06\xf9\x22" "\xc3\x06\xfd\x1d\xd6\x06\x5c\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc9\x06\x1e\x23\xbe\x06\xfb\x1d" "\xde\x06\x43\x1d\xd4\x06\x33\x23" 
	"\xad\x06\x5a\x1e\xdb\x06\x70\x1d" "\xe7\x06\xd9\x23\xd3\x06\x6d\x1e" 
	"\xe1\x06\xaa\x1d\xe2\x06\x9c\x23" "\xcb\x06\x5d\x1e\xd8\x06\xa1\x1d" 
	"\xda\x06\x46\x23\xc9\x06\x17\x1e" "\xd6\x06\x7c\x1d\xe5\x06\xff\x22" 
	"\xc4\x06\x01\x1e\xd3\x06\x54\x1d" "\xd7\x06\x36\x23\xbb\x06\x2b\x1e" 
	"\xdd\x06\x4f\x1d\xe1\x06\x2b\x23" "\xd9\x06\x1c\x1e\xd3\x06\x5e\x1d" 
	"\xd3\x06\x6c\x23\xb2\x06\x30\x1e" "\xdb\x06\x40\x1d\xed\x06\x8a\x23" 
	"\xda\x06\x39\x1e\xe1\x06\x8e\x1d" "\xd7\x06\x87\x23\xce\x06\x60\x1e" 
	"\xe8\x06\x90\x1d\xd5\x06\x73\x23" "\xc7\x06\xfe\x1d\xd4\x06\x6a\x1d" 
	"\xe3\x06\x4f\x23\xcc\x06\x11\x1e" "\xdb\x06\x70\x1d\xf0\x06\x33\x23" 
	"\xcc\x06\x0a\x1e\xde\x06\x7d\x1d" "\xc6\x06\x3d\x23\xbb\x06\x2a\x1e" 
	"\xe9\x06\x49\x1d\xe5\x06\x26\x23" "\xd0\x06\x2a\x1e\xe4\x06\x53\x1d" 
	"\xd8\x06\x68\x23\xd5\x06\x31\x1e" "\xd9\x06\x73\x1d\xe5\x06\x96\x23" 
	"\xd7\x06\x81\x1e\xe5\x06\x7f\x1d" "\xed\x06\x56\x23\xd1\x06\x16\x1e" 
	"\xd9\x06\x5f\x1d\xe6\x06\x5c\x23" "\xcf\x06\xf8\x1d\xe5\x06\x4a\x1d" 
	"\xc7\x06\x34\x23\xb5\x06\x14\x1e" "\xe0\x06\x47\x1d\xcb\x06\x70\x23" 
	"\xba\x06\x38\x1e\xcf\x06\x69\x1d" "\xe2\x06\x12\x23\xc8\x06\x03\x1e" 
	"\xdb\x06\x4a\x1d\xe2\x06\x20\x23" "\xdf\x06\x50\x1e\xd6\x06\x4b\x1d" 
	"\xdb\x06\x74\x23\xc0\x06\x4c\x1e" "\xe9\x06\x69\x1d\xce\x06\x93\x23" 
	"\xac\x06\x23\x1e\xb6\x06\x3e\x1d" "\xdf\x06\xf4\x22\xcf\x06\xbf\x1d" 
	"\xe2\x06\x05\x1d\xce\x06\x1c\x23" "\xb9\x06\xf3\x1d\xd6\x06\xd3\x1c" 
	"\xe8\x06\xf0\x22\xce\x06\xd0\x1d" "\xe1\x06\xf3\x1c\xf0\x06\xf8\x22" 
	"\xd7\x06\xe2\x1d\xe6\x06\xe7\x1c" "\xdc\x06\xf0\x22\xb7\x06\xf4\x1d" 
	"\xd8\x06\xb5\x1c\xdf\x06\x08\x23" "\xbb\x06\xba\x1d\xdd\x06\x79\x1c" 
	"\xec\x06\x93\x22\xe0\x06\xaa\x1d" "\xe3\x06\x16\x1c\xe7\x06\x84\x22" 
	"\xd9\x06\x77\x1d\xda\x06\x21\x1c" "\xe4\x06\xdd\x22\xce\x06\x63\x1d" 
	"\xe7\x06\x36\x1c\xe8\x06\xf0\x22" "\xcd\x06\xab\x1d\xdf\x06\x8d\x1c" 
	"\xdc\x06\xe3\x22\xcf\x06\xc1\x1d" "\xee\x06\xcc\x1c\xd9\x06\x0b\x23" 
	"\xbe\x06\xe5\x1d\xe3\x06\xd5\x1c" "\xe2\x06\x2a\x23\xc8\x06\xda\x1d" 
	"\xed\x06\x26\x1d\xe5\x06\xb1\x22" "\xdb\x06\xe7\x1d\xe2\x06\x16\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc6\x06\xc8\x22\xb3\x06\xe3\x1d" "\xdd\x06\x13\x1d\xf9\x06\xf8\x22" 
	"\xcd\x06\x9c\x1d\xe9\x06\x02\x1d" "\xe4\x06\xf2\x22\xd3\x06\xa2\x1d" 
	"\xe6\x06\xd2\x1c\xea\x06\xdd\x22" "\xcd\x06\x97\x1d\xe2\x06\xef\x1c" 
	"\xe0\x06\xa9\x22\xcf\x06\x8d\x1d" "\xe3\x06\xec\x1c\xe8\x06\xda\x22" 
	"\xcd\x06\xe3\x1d\xde\x06\x1d\x1d" "\xcd\x06\x68\x23\x93\x06\x18\x1e" 
	"\xd4\x06\x31\x1d\xdf\x06\xd8\x22" "\xd4\x06\xc2\x1d\xe9\x06\xfa\x1c" 
	"\xf6\x06\xac\x22\xd6\x06\x86\x1d" "\xd7\x06\xe2\x1c\xde\x06\xe3\x22" 
	"\xcf\x06\xa8\x1d\xdf\x06\xd5\x1c" "\xce\x06\x0b\x23\xc1\x06\x9f\x1d" 
	"\xf2\x06\xd8\x1c\xdb\x06\xb4\x22" "\xcb\x06\xa8\x1d\xe3\x06\xe3\x1c" 
	"\xcf\x06\xdb\x22\xc1\x06\xbd\x1d" "\xe1\x06\xdc\x1c\xd6\x06\x4c\x23" 
	"\xbc\x06\xd4\x1d\xeb\x06\xd8\x1c" "\xe6\x06\xfb\x22\xbf\x06\xab\x1d" 
	"\xd9\x06\xea\x1c\xd3\x06\xd2\x22" "\xb4\x06\xb2\x1d\xe1\x06\xdf\x1c" 
	"\xe4\x06\xdc\x22\xc2\x06\x99\x1d" "\xe3\x06\xea\x1c\xd5\x06\x05\x23" 
	"\xa9\x06\xbf\x1d\xe4\x06\x0f\x1d" "\xe8\x06\x0f\x23\xce\x06\xd2\x1d" 
	"\xe0\x06\xf7\x1c\xde\x06\x68\x23" "\xbc\x06\xe5\x1d\xe1\x06\x1a\x1d" 
	"\xf3\x06\xc8\x23\xd8\x06\x13\x1e" "\xef\x06\x66\x1d\xcc\x06\x55\x23" 
	"\xa7\x06\xd8\x1d\xdb\x06\x1a\x1d" "\xe8\x06\xee\x22\xd7\x06\xbd\x1d" 
	"\xdd\x06\xe2\x1c\xe4\x06\xce\x22" "\xc4\x06\x8a\x1d\xdd\x06\xec\x1c" 
	"\xed\x06\x12\x23\xca\x06\xb7\x1d" "\xd9\x06\xe6\x1c\xe7\x06\xf5\x22" 
	"\xc9\x06\xe2\x1d\xdc\x06\x18\x1d" "\xed\x06\xe7\x22\xd2\x06\xf7\x1d" 
	"\xdf\x06\x2a\x1d\xe7\x06\x85\x23" "\xcb\x06\x51\x1e\xda\x06\x6e\x1d" 
	"\xea\x06\x6c\x23\xc6\x06\xf1\x1d" "\xdf\x06\x11\x1d\xf2\x06\x09\x23" 
	"\xcb\x06\x82\x1d\xe0\x06\xc4\x1c" "\xdb\x06\xfd\x22\xb9\x06\x91\x1d" 
	"\xd4\x06\xba\x1c\xe7\x06\xce\x22" "\xc5\x06\x99\x1d\xe5\x06\xc5\x1c" 
	"\xd3\x06\x39\x23\xad\x06\xc6\x1d" "\xbb\x06\xe5\x1c\xdb\x06\x46\x23" 
	"\xb1\x06\x84\x1d\xe3\x06\x12\x1d" "\xcb\x06\x6e\x23\xb2\x06\xa6\x1d" 
	"\xe6\x06\x1f\x1d\xd4\x06\x94\x23" "\xae\x06\xb7\x1d\xdb\x06\x38\x1d" 
	"\xec\x06\x09\x23\xce\x06\x9c\x1d" "\xe2\x06\x1f\x1d\xdb\x06\xf9\x22" 
	"\xc7\x06\x99\x1d\xd6\x06\x21\x1d" "\xeb\x06\xce\x22\xcb\x06\x78\x1d" 
	"\xda\x06\x11\x1d\xee\x06\x44\x23" "\xce\x06\xb4\x1d\xe6\x06\x39\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe1\x06\x17\x23\xc0\x06\xbb\x1d" "\xcc\x06\x02\x1d\xca\x06\x48\x23" 
	"\xb4\x06\xe1\x1d\xdc\x06\x22\x1d" "\xc2\x06\x72\x23\xa1\x06\xdb\x1d" 
	"\xd4\x06\x36\x1d\xe9\x06\x36\x23" "\xd6\x06\x92\x1d\xd6\x06\xe3\x1c" 
	"\xe6\x06\x34\x23\xc7\x06\x8b\x1d" "\xe7\x06\xf1\x1c\xc8\x06\xfa\x22" 
	"\xad\x06\xaf\x1d\xda\x06\xcc\x1c" "\xe7\x06\xfe\x22\xcc\x06\x9d\x1d" 
	"\xdb\x06\xeb\x1c\xe9\x06\x39\x23" "\xcb\x06\xb2\x1d\xd0\x06\xf3\x1c" 
	"\xe0\x06\x78\x23\xcf\x06\xfc\x1d" "\xd5\x06\x2a\x1d\xe5\x06\x68\x23" 
	"\xc4\x06\xe2\x1d\xdd\x06\x30\x1d" "\xb5\x06\x55\x23\x92\x06\xad\x1d" 
	"\xd3\x06\x0f\x1d\xd8\x06\xca\x22" "\xc3\x06\x9e\x1d\xdc\x06\xf5\x1c" 
	"\xe0\x06\xf9\x22\xc3\x06\x8c\x1d" "\xd0\x06\xe8\x1c\xd8\x06\x1a\x23" 
	"\xb0\x06\x7a\x1d\xdc\x06\xec\x1c" "\xcd\x06\x11\x23\xaf\x06\x65\x1d" 
	"\xda\x06\xfd\x1c\xe1\x06\xc5\x22" "\xc6\x06\x56\x1d\xde\x06\xf0\x1c" 
	"\xec\x06\xcc\x22\xdc\x06\x51\x1d" "\xdf\x06\xf9\x1c\xe7\x06\xce\x22" 
	"\xbb\x06\x62\x1d\xd4\x06\xd5\x1c" "\xe1\x06\x7a\x22\xb3\x06\x48\x1d" 
	"\xdd\x06\x9d\x1c\xda\x06\x68\x22" "\xcf\x06\x65\x1d\xca\x06\xa6\x1c" 
	"\xe4\x06\xa3\x22\xc3\x06\x50\x1d" "\xd3\x06\xab\x1c\xe1\x06\x7b\x22" 
	"\xc6\x06\xb0\x1d\xcf\x06\xad\x1c" "\xea\x06\xa6\x22\xc5\x06\x99\x1d" 
	"\xcf\x06\xd4\x1c\xd0\x06\x16\x23" "\xb2\x06\x79\x1d\xd9\x06\xa4\x1c" 
	"\xdf\x06\xba\x22\xc5\x06\x6e\x1d" "\xd3\x06\xa5\x1c\xc0\x06\xd7\x22" 
	"\x9e\x06\x77\x1d\xd8\x06\x89\x1c" "\xad\x06\xaf\x22\x8b\x06\x61\x1d" 
	"\xd4\x06\x90\x1c\xdb\x06\xc5\x22" "\xcd\x06\x54\x1d\xd6\x06\x98\x1c" 
	"\xe5\x06\x9a\x22\xbc\x06\x3d\x1d" "\xdb\x06\x86\x1c\xe1\x06\xa2\x22" 
	"\xcb\x06\x1c\x1d\xe7\x06\xb5\x1c" "\xea\x06\xcc\x22\xcd\x06\x30\x1d" 
	"\xdc\x06\xa1\x1c\xd4\x06\xf5\x22" "\xc2\x06\x57\x1d\xdf\x06\xa3\x1c" 
	"\xdf\x06\x93\x22\xc9\x06\x70\x1d" "\xd7\x06\xbb\x1c\xc7\x06\x9b\x22" 
	"\xbc\x06\x9a\x1d\xd5\x06\xb5\x1c" "\xed\x06\xc8\x22\xce\x06\x5e\x1d" 
	"\xd8\x06\x7d\x1c\xdf\x06\xc0\x22" "\xc1\x06\x26\x1d\xe5\x06\x6f\x1c" 
	"\xc5\x06\x25\x22\xba\x06\x3b\x1d" "\xbe\x06\xc0\x1b\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x2e\x08\xff\xff\xe3\x06\x87\x23" "\xb6\x06\xb4\x1d\xc8\x06\xe5\x1c" 
	"\xe7\x06\x15\x24\xce\x06\x6b\x1e" "\xdd\x06\x9d\x1d\xe7\x06\xf0\x23" 
	"\xd6\x06\x9a\x1e\xd6\x06\x75\x1d" "\xe4\x06\xde\x23\xc8\x06\x7f\x1e" 
	"\xe1\x06\xc2\x1d\xe7\x06\xcd\x23" "\xce\x06\x83\x1e\xd8\x06\xd2\x1d" 
	"\xed\x06\xba\x23\xd5\x06\x74\x1e" "\xdc\x06\xe2\x1d\xf0\x06\xda\x23" 
	"\xcd\x06\x7d\x1e\xd9\x06\xa8\x1d" "\xe6\x06\xd8\x23\xd1\x06\x5c\x1e" 
	"\xe0\x06\xa7\x1d\xe2\x06\xd9\x23" "\xd7\x06\x30\x1e\xde\x06\x8d\x1d" 
	"\xd3\x06\xe9\x23\xb2\x06\x50\x1e" "\xd6\x06\x78\x1d\xeb\x06\xc8\x23" 
	"\xd4\x06\x25\x1e\xe6\x06\x73\x1e" "\xe3\x06\xc2\x23\xce\x06\x45\x1e" 
	"\xd2\x06\xa3\x1d\xe6\x06\xab\x23" "\xc8\x06\x4c\x1e\xd9\x06\x80\x1d" 
	"\xe8\x06\xe8\x23\xd2\x06\x5b\x1e" "\xd9\x06\xbf\x1d\xe8\x06\xac\x23" 
	"\xd2\x06\x66\x1e\xe1\x06\x8e\x1d" "\xe0\x06\xe0\x23\xcc\x06\x59\x1e" 
	"\xe5\x06\x95\x1d\xe7\x06\xb9\x23" "\xc5\x06\x44\x1e\xd8\x06\x8a\x1d" 
	"\xce\x06\xc8\x23\xb9\x06\x14\x1e" "\xbd\x06\x60\x1d\xd7\x06\xbd\x23" 
	"\xca\x06\x46\x1e\xcc\x06\x8c\x1d" "\xe7\x06\xdd\x23\xc2\x06\x27\x1e" 
	"\xdf\x06\x8f\x1d\xd6\x06\x0d\x24" "\xcb\x06\x65\x1e\xce\x06\xa6\x1d" 
	"\xd4\x06\x25\x24\xbf\x06\x62\x1e" "\xd4\x06\xc2\x1d\xeb\x06\x61\x24" 
	"\xc0\x06\x6f\x1e\xda\x06\xad\x1d" "\xeb\x06\x47\x24\xd9\x06\x7b\x1e" 
	"\xca\x06\xbf\x1d\xe6\x06\x77\x24" "\xd0\x06\x6a\x1e\xd2\x06\xa6\x1d" 
	"\xd6\x06\x59\x24\xbf\x06\x6b\x1e" "\xe0\x06\xaf\x1d\xd7\x06\xf6\x23" 
	"\xbc\x06\xa1\x1e\xd3\x06\x8a\x1d" "\xe5\x06\xe9\x23\xc6\x06\x39\x1e" 
	"\xd3\x06\x74\x1d\xcf\x06\x43\x24" "\xb7\x06\x5f\x1e\xc9\x06\xb3\x1d" 
	"\xeb\x06\xf3\x23\xcf\x06\x50\x1e" "\xde\x06\x9a\x1d\xea\x06\xb3\x23" 
	"\xc8\x06\x2d\x1e\xd1\x06\x51\x1d" "\xe9\x06\xf9\x23\xce\x06\x0e\x1e" 
	"\xd4\x06\x24\x1d\xce\x06\xf0\x23" "\xbd\x06\x37\x1e\xe4\x06\x90\x1d" 
	"\xea\x06\x00\x24\xd1\x06\x22\x1e" "\xde\x06\x92\x1d\xd4\x06\xf7\x23" 
	"\xc2\x06\x38\x1e\xcc\x06\x6c\x1d" "\xce\x06\xee\x23\xad\x06\x1e\x1e" 
	"\xd9\x06\x7c\x1d\xe2\x06\xe1\x23" "\xbe\x06\x2e\x1e\xc8\x06\x7a\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdf\x06\x19\x24\xca\x06\x35\x1e" "\xcb\x06\xa6\x1d\xc7\x06\x11\x24" 
	"\xa3\x06\x57\x1e\xd4\x06\x90\x1d" "\xdb\x06\x50\x24\xb4\x06\x4e\x1e" 
	"\xd1\x06\x9f\x1d\xdd\x06\xf9\x23" "\xbc\x06\x10\x1e\xd3\x06\x91\x1d" 
	"\xda\x06\xe0\x23\xcb\x06\x11\x1e" "\xbf\x06\x89\x1d\xd4\x06\xfb\x23" 
	"\xb0\x06\x08\x1e\xde\x06\x82\x1d" "\xdf\x06\xce\x23\xca\x06\x01\x1e" 
	"\xd2\x06\x54\x1d\xc8\x06\xb2\x23" "\xa9\x06\xdc\x1d\xc8\x06\x49\x1d" 
	"\xb2\x06\xc3\x23\x8a\x06\xb5\x1d" "\xb7\x06\xfc\x1c\xc0\x06\x8a\x23" 
	"\x9d\x06\xea\x1d\xc5\x06\x2a\x1d" "\xe4\x06\x7e\x23\xbe\x06\xe8\x1d" 
	"\xd1\x06\x35\x1d\xd4\x06\x60\x23" "\xba\x06\xfc\x1d\xcf\x06\x61\x1d" 
	"\xd3\x06\xbe\x23\xba\x06\x03\x1e" "\xce\x06\x62\x1d\xdd\x06\x7e\x23" 
	"\xc7\x06\x1a\x1e\xcb\x06\x51\x1d" "\xdc\x06\x79\x23\xc4\x06\xf3\x1d" 
	"\xd0\x06\x50\x1d\xe4\x06\x9d\x23" "\xc1\x06\x08\x1e\xc6\x06\x67\x1d" 
	"\xd8\x06\x52\x23\xc3\x06\xd6\x1d" "\xc6\x06\x08\x1d\xcf\x06\xa5\x23" 
	"\xa6\x06\xf3\x1d\xcb\x06\x6d\x1d" "\xc9\x06\x6c\x23\xaa\x06\xf4\x1d" 
	"\xd2\x06\x48\x1d\xd0\x06\x83\x23" "\xba\x06\x01\x1e\xcd\x06\x3c\x1d" 
	"\xdb\x06\x65\x23\xc5\x06\x1d\x1e" "\xcb\x06\x3c\x1d\xda\x06\x40\x23" 
	"\xc7\x06\x0d\x1e\xc9\x06\x25\x1d" "\xce\x06\x45\x23\xae\x06\xf3\x1d" 
	"\xd5\x06\x33\x1d\xc9\x06\x78\x23" "\xbb\x06\xe6\x1d\xd0\x06\x42\x1d" 
	"\xce\x06\x6c\x23\xbb\x06\x2c\x1e" "\xcb\x06\x58\x1d\xcb\x06\x9d\x23" 
	"\xb1\x06\x1d\x1e\xcf\x06\x62\x1d" "\xd5\x06\x9f\x23\xb9\x06\xf0\x1d" 
	"\xcf\x06\x2b\x1d\xdc\x06\xa7\x23" "\xce\x06\x0f\x1e\xb9\x06\x44\x1d" 
	"\xdf\x06\x8a\x23\xc2\x06\x02\x1e" "\xc6\x06\x34\x1d\xcc\x06\x73\x23" 
	"\xb1\x06\x09\x1e\xb4\x06\x40\x1d" "\xe1\x06\x9d\x23\xb7\x06\xe1\x1d" 
	"\xbb\x06\x1f\x1d\xcb\x06\x93\x23" "\xbe\x06\xe9\x1d\xd3\x06\x63\x1d" 
	"\xe3\x06\x7d\x23\xba\x06\x34\x1e" "\xc7\x06\x52\x1d\xb9\x06\xd3\x23" 
	"\x94\x06\x36\x1e\xc0\x06\x5f\x1d" "\xd9\x06\x88\x23\xc1\x06\xf5\x1d" 
	"\xcd\x06\x70\x1d\xd9\x06\x7f\x23" "\xb6\x06\x00\x1e\xc7\x06\x5c\x1d" 
	"\xc5\x06\x6c\x23\xa7\x06\x20\x1e" "\xc9\x06\x6b\x1d\xd7\x06\xb5\x23" 
	"\xbe\x06\x15\x1e\xce\x06\x53\x1d" "\xcd\x06\x7d\x23\xab\x06\x34\x1e" 
	"\xd0\x06\x6a\x1d\xd9\x06\x81\x23" "\xc0\x06\x12\x1e\xc8\x06\x6d\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xcf\x06\xca\x23\xc0\x06\x2e\x1e" "\xcb\x06\x77\x1d\xe6\x06\xb0\x23" 
	"\xbd\x06\x2c\x1e\xce\x06\x7c\x1d" "\xc7\x06\xf8\x23\x9b\x06\x2f\x1e" 
	"\xc8\x06\x86\x1d\xcf\x06\x85\x23" "\xb6\x06\x14\x1e\xcd\x06\x55\x1d" 
	"\xdd\x06\x8a\x23\xd1\x06\xf1\x1d" "\xc9\x06\x1e\x1d\xde\x06\x9a\x23" 
	"\xc5\x06\xfe\x1d\xcc\x06\x11\x1d" "\xd1\x06\xa1\x23\xbc\x06\x06\x1e" 
	"\xd8\x06\x72\x1d\xcb\x06\x7d\x23" "\xbc\x06\x3d\x1e\xcb\x06\x66\x1d" 
	"\xc3\x06\xba\x23\xa7\x06\x35\x1e" "\xc4\x06\x58\x1d\xd9\x06\xc1\x23" 
	"\xc0\x06\x27\x1e\xc8\x06\x66\x1d" "\xda\x06\x07\x24\xb7\x06\x40\x1e" 
	"\xdf\x06\xa4\x1d\xd9\x06\x50\x24" "\xbf\x06\x78\x1e\xc7\x06\xa6\x1d" 
	"\xe3\x06\xf8\x23\xb6\x06\x31\x1e" "\xc8\x06\x74\x1d\xce\x06\xdc\x23" 
	"\xb3\x06\x11\x1e\xce\x06\x4f\x1d" "\xc8\x06\x97\x23\xa8\x06\x0f\x1e" 
	"\xd3\x06\x6e\x1d\xd9\x06\x52\x23" "\xc6\x06\x24\x1e\xcc\x06\x4c\x1d" 
	"\xc8\x06\x32\x23\xba\x06\x06\x1e" "\xc5\x06\x51\x1d\xd2\x06\x47\x23" 
	"\xb9\x06\x59\x1e\xcd\x06\x63\x1d" "\xc5\x06\xa3\x23\xb5\x06\x47\x1e" 
	"\xda\x06\x74\x1d\xd8\x06\x9b\x23" "\xb9\x06\xf4\x1d\xc9\x06\x25\x1d" 
	"\xc2\x06\xcb\x23\xb4\x06\x52\x1e" "\xca\x06\x69\x1d\xe1\x06\xc4\x23" 
	"\xc8\x06\x21\x1e\xc9\x06\x64\x1d" "\xbb\x06\xe5\x23\x91\x06\x2b\x1e" 
	"\xd1\x06\x44\x1d\xc0\x06\x60\x23" "\xba\x06\xfb\x1d\xdc\x06\x1f\x1d" 
	"\xc5\x06\x5b\x23\xad\x06\x02\x1e" "\xc8\x06\x54\x1d\xde\x06\x40\x23" 
	"\xc7\x06\xf1\x1d\xcc\x06\x0d\x1d" "\xdb\x06\x67\x23\xac\x06\xd8\x1d" 
	"\xcb\x06\xdc\x1c\xe0\x06\x81\x23" "\xc4\x06\xed\x1d\xcc\x06\x38\x1d" 
	"\xdb\x06\xba\x23\xbb\x06\x47\x1e" "\xbf\x06\x51\x1d\xd1\x06\xa2\x23" 
	"\xb7\x06\x1c\x1e\xcf\x06\x50\x1d" "\xdf\x06\x83\x23\xb9\x06\xf3\x1d" 
	"\xd1\x06\x48\x1d\xd8\x06\x72\x23" "\xbb\x06\xe2\x1d\xc4\x06\x14\x1d" 
	"\xcd\x06\xcf\x23\xb5\x06\x01\x1e" "\xc4\x06\x3a\x1d\xe4\x06\x4b\x23" 
	"\xb7\x06\xda\x1d\xc4\x06\xf5\x1c" "\xd6\x06\x62\x23\xb8\x06\xf6\x1d" 
	"\xc9\x06\x39\x1d\xcf\x06\xa7\x23" "\xb3\x06\xfd\x1d\xca\x06\x64\x1d" 
	"\xd8\x06\x56\x23\xbe\x06\xff\x1d" "\xc9\x06\x48\x1d\xd2\x06\x77\x23" 
	"\xb9\x06\x26\x1e\xcc\x06\x4d\x1d" "\xde\x06\xaf\x23\xb8\x06\x01\x1e" 
	"\xc9\x06\x18\x1d\xc6\x06\x8d\x23" "\xae\x06\x10\x1e\xc6\x06\x45\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdf\x06\x9b\x23\xbe\x06\x2c\x1e" "\xc4\x06\x1c\x1d\xd3\x06\x57\x23" 
	"\xc2\x06\x3c\x1e\xc3\x06\x15\x1d" "\xdb\x06\x2c\x23\xb1\x06\xe9\x1d" 
	"\xc1\x06\x1b\x1d\xd3\x06\x18\x23" "\xc0\x06\xd6\x1d\xcc\x06\x18\x1d" 
	"\xc8\x06\x26\x23\xa1\x06\xe3\x1d" "\xcd\x06\x3f\x1d\xc7\x06\xfc\x22" 
	"\xa4\x06\xd1\x1d\xc4\x06\x0f\x1d" "\xcb\x06\x96\x22\xbe\x06\xe4\x1d" 
	"\xb8\x06\x01\x1d\xbb\x06\xb9\x22" "\x9f\x06\xc4\x1d\xc4\x06\xf4\x1c" 
	"\xc9\x06\x5c\x22\xc7\x06\xaa\x1d" "\xc6\x06\xd3\x1c\xc6\x06\x5b\x22" 
	"\xa8\x06\xdc\x1d\xc5\x06\xe4\x1c" "\xc1\x06\x9d\x22\xa7\x06\xcd\x1d" 
	"\xc3\x06\x13\x1d\xc0\x06\xc2\x22" "\xaa\x06\xbb\x1d\xc3\x06\xe1\x1c" 
	"\xde\x06\xe8\x22\xba\x06\xc3\x1d" "\xcb\x06\xf0\x1c\xe2\x06\x0d\x23" 
	"\xb1\x06\x8e\x1d\xcd\x06\x01\x1d" "\xd1\x06\xe0\x22\xb5\x06\x81\x1d" 
	"\xc5\x06\xbf\x1c\xb5\x06\xa6\x22" "\x9f\x06\x77\x1d\xb1\x06\x96\x1c" 
	"\xc5\x06\xb6\x22\xad\x06\x97\x1d" "\xba\x06\xba\x1c\xcb\x06\x82\x22" 
	"\xaf\x06\x98\x1d\xbe\x06\x98\x1c" "\xc5\x06\xde\x22\x9d\x06\xb1\x1d" 
	"\xc8\x06\xc6\x1c\xcc\x06\xce\x22" "\xb4\x06\xd4\x1d\xc1\x06\x03\x1d" 
	"\xc8\x06\x0a\x23\xa8\x06\xaf\x1d" "\xb6\x06\xd5\x1c\xbe\x06\x0f\x23" 
	"\xb0\x06\xbe\x1d\xc3\x06\xca\x1c" "\x86\x06\x87\x23\x5d\x06\xc9\x1d" 
	"\xa8\x06\xc2\x1c\xc8\x06\xe1\x22" "\xbf\x06\xc9\x1d\xc6\x06\xc2\x1c" 
	"\xe3\x06\x2d\x23\xba\x06\xc1\x1d" "\xc4\x06\xd7\x1c\xb8\x06\xe5\x22" 
	"\x93\x06\xae\x1d\xc8\x06\xee\x1c" "\xd2\x06\x0e\x23\xb7\x06\xc8\x1d" 
	"\xc1\x06\xb9\x1c\xc1\x06\xd6\x22" "\xaf\x06\x9f\x1d\xc8\x06\xda\x1c" 
	"\xb7\x06\x70\x23\x8b\x06\xb4\x1d" "\xba\x06\xf2\x1c\xd9\x06\x54\x23" 
	"\xbb\x06\xd0\x1d\xb8\x06\xb7\x1c" "\xd5\x06\x7e\x23\xa9\x06\x10\x1e" 
	"\xba\x06\x13\x1d\xd6\x06\x3f\x23" "\xba\x06\xda\x1d\xc1\x06\xc7\x1c" 
	"\xd1\x06\xc2\x22\xbb\x06\xb6\x1d" "\xc6\x06\xb7\x1c\xd9\x06\xe6\x22" 
	"\xad\x06\xb5\x1d\xca\x06\xbe\x1c" "\xdd\x06\xf1\x22\xaf\x06\xb1\x1d" 
	"\xc0\x06\xa9\x1c\xc6\x06\x9b\x22" "\xa5\x06\xbe\x1d\xb9\x06\xcc\x1c" 
	"\xb6\x06\xf9\x22\xa4\x06\x01\x1e" "\xc4\x06\xe9\x1c\xd4\x06\x43\x23" 
	"\xbc\x06\xcf\x1d\xc9\x06\xee\x1c" "\xc9\x06\x9a\x23\x9f\x06\xd2\x1d" 
	"\xba\x06\x21\x1d\xb5\x06\x7d\x23" "\x9d\x06\x0c\x1e\xb4\x06\x46\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd5\x06\x75\x23\xc4\x06\xf4\x1d" "\xcc\x06\x16\x1d\xca\x06\x3f\x23" 
	"\x96\x06\xf5\x1d\xcb\x06\xec\x1c" "\xd0\x06\xb4\x22\xb5\x06\xe4\x1d" 
	"\xcb\x06\xfa\x1c\xcd\x06\x11\x23" "\xc0\x06\xa9\x1d\xc2\x06\xdf\x1c" 
	"\xbf\x06\xe4\x22\x9c\x06\xb0\x1d" "\xc6\x06\xd4\x1c\xd4\x06\xaf\x22" 
	"\xb6\x06\x7e\x1d\xbc\x06\xee\x1c" "\xcf\x06\xe5\x22\xbd\x06\xcc\x1d" 
	"\xcb\x06\xdf\x1c\xd3\x06\xc9\x22" "\xb7\x06\xd1\x1d\xb9\x06\xff\x1c" 
	"\xcd\x06\x32\x23\xab\x06\xd6\x1d" "\xc0\x06\x03\x1d\xb6\x06\x77\x23" 
	"\x9a\x06\xf9\x1d\xbf\x06\x13\x1d" "\xce\x06\x5e\x23\xb8\x06\xd3\x1d" 
	"\xbb\x06\x10\x1d\xe0\x06\x1c\x23" "\xbd\x06\xeb\x1d\xc8\x06\xf9\x1c" 
	"\xb1\x06\x68\x23\x91\x06\x06\x1e" "\xbb\x06\xf6\x1c\xd5\x06\x36\x23" 
	"\xbc\x06\xc0\x1d\xc8\x06\x00\x1d" "\xbd\x06\x3d\x23\x94\x06\xc6\x1d" 
	"\xc0\x06\xf5\x1c\xc3\x06\x50\x23" "\xb1\x06\xd1\x1d\xb7\x06\x02\x1d" 
	"\xbe\x06\x71\x23\x92\x06\xe2\x1d" "\xbe\x06\xf7\x1c\xd9\x06\x54\x23" 
	"\xb6\x06\xc4\x1d\xce\x06\x12\x1d" "\xc8\x06\x94\x23\x91\x06\xda\x1d" 
	"\xc0\x06\xe5\x1c\xc8\x06\x90\x23" "\x9a\x06\xc8\x1d\xbc\x06\x1a\x1d" 
	"\xd0\x06\x0f\x23\xad\x06\xc3\x1d" "\xc3\x06\x0b\x1d\xc2\x06\x68\x23" 
	"\xa1\x06\xdf\x1d\xc3\x06\x05\x1d" "\xcf\x06\x38\x23\xba\x06\xc2\x1d" 
	"\xc1\x06\xeb\x1c\xd5\x06\x2f\x23" "\xc1\x06\xe1\x1d\xc5\x06\xf6\x1c" 
	"\xd0\x06\x39\x23\xba\x06\xc9\x1d" "\xc1\x06\x0d\x1d\xbf\x06\x52\x23" 
	"\xa5\x06\xd1\x1d\xb5\x06\xe5\x1c" "\xc3\x06\x67\x23\x9e\x06\xcd\x1d" 
	"\xbc\x06\x02\x1d\xc2\x06\x58\x23" "\xab\x06\xf6\x1d\xc4\x06\xff\x1c" 
	"\xc0\x06\x51\x23\x9d\x06\xc7\x1d" "\xbf\x06\x12\x1d\xd1\x06\x64\x23" 
	"\xb7\x06\xd1\x1d\xc5\x06\x3a\x1d" "\xb3\x06\xa1\x23\x9c\x06\xe7\x1d" 
	"\xce\x06\x3c\x1d\xbf\x06\xb2\x23" "\xa3\x06\xe7\x1d\xc5\x06\x44\x1d" 
	"\xc0\x06\xea\x23\xad\x06\x3d\x1e" "\xc8\x06\x41\x1d\xd6\x06\x25\x24" 
	"\xba\x06\x49\x1e\xbd\x06\x58\x1d" "\xd0\x06\xce\x23\xac\x06\x30\x1e" 
	"\xc8\x06\x6b\x1d\xab\x06\x74\x23" "\x8f\x06\x02\x1e\xcc\x06\x53\x1d" 
	"\xa0\x06\x73\x23\x7c\x06\x04\x1e" "\xc9\x06\x21\x1d\xd1\x06\x22\x23" 
	"\xb7\x06\xd4\x1d\xcc\x06\x26\x1d" "\xd6\x06\x87\x23\xb9\x06\xd6\x1d" 
	"\xc5\x06\xef\x1c\xcf\x06\xc7\x23" "\xa7\x06\xaf\x1d\xc3\x06\x07\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc7\x06\x70\x23\xb3\x06\xa9\x1d" "\xc3\x06\xcc\x1c\xd4\x06\x52\x23" 
	"\xb2\x06\xb6\x1d\xc2\x06\x2e\x1d" "\xa9\x06\x7f\x23\x86\x06\x0b\x1e" 
	"\xb9\x06\x25\x1d\xd8\x06\x77\x23" "\xb4\x06\xe2\x1d\xbc\x06\x00\x1d" 
	"\xca\x06\x64\x23\xb6\x06\xc4\x1d" "\xc1\x06\xfd\x1c\xd2\x06\x89\x23" 
	"\xae\x06\xf4\x1d\xc5\x06\x05\x1d" "\xd7\x06\x16\x23\xba\x06\xb7\x1d" 
	"\xc4\x06\xec\x1c\xc1\x06\x34\x23" "\xaa\x06\xc6\x1d\xc0\x06\xc1\x1c" 
	"\xd0\x06\x68\x23\xb1\x06\xae\x1d" "\xc1\x06\x2c\x1d\xcf\x06\x46\x23" 
	"\xbb\x06\xac\x1d\xc2\x06\x15\x1d" "\xb7\x06\x51\x23\x90\x06\xc6\x1d" 
	"\xbc\x06\x1b\x1d\xcd\x06\x4e\x23" "\xba\x06\xb6\x1d\xc6\x06\xf5\x1c" 
	"\xd2\x06\x36\x23\xbc\x06\xcf\x1d" "\xd3\x06\x11\x1d\xd1\x06\x8e\x23" 
	"\xb6\x06\xc1\x1d\xd3\x06\x0f\x1d" "\xd4\x06\xb6\x23\xae\x06\xc6\x1d" 
	"\xc6\x06\xfc\x1c\xdb\x06\x34\x23" "\xbc\x06\xce\x1d\xbb\x06\xf4\x1c" 
	"\xc6\x06\x18\x23\xb3\x06\xc0\x1d" "\xc8\x06\xdb\x1c\xb8\x06\x2f\x23" 
	"\x9e\x06\x95\x1d\xc6\x06\xf2\x1c" "\xb5\x06\xf5\x22\xa5\x06\xaf\x1d" 
	"\xc2\x06\xe8\x1c\xcf\x06\xfb\x22" "\xba\x06\xbd\x1d\xc1\x06\xda\x1c" 
	"\xc9\x06\x3c\x23\xb1\x06\xa3\x1d" "\xcc\x06\x03\x1d\xc2\x06\x4a\x23" 
	"\xa6\x06\xb1\x1d\xb2\x06\xf7\x1c" "\xce\x06\x26\x23\xab\x06\x7c\x1d" 
	"\xb9\x06\xf5\x1c\xda\x06\x47\x23" "\xb8\x06\x98\x1d\xc1\x06\x0f\x1d" 
	"\xb0\x06\x11\x23\xa1\x06\xb9\x1d" "\xca\x06\x13\x1d\xd8\x06\x0b\x23" 
	"\xad\x06\x8b\x1d\xc3\x06\xe6\x1c" "\xc7\x06\x2b\x23\xa0\x06\xa3\x1d" 
	"\xc8\x06\xea\x1c\xb3\x06\xc9\x22" "\x97\x06\x91\x1d\xca\x06\xe3\x1c" 
	"\xc8\x06\x9b\x22\xbd\x06\x7a\x1d" "\xc8\x06\xb1\x1c\xbc\x06\x98\x22" 
	"\xa2\x06\x57\x1d\xb8\x06\x8f\x1c" "\xb4\x06\xdb\x22\x95\x06\xa9\x1d" 
	"\xc2\x06\xf4\x1c\xc4\x06\xf6\x22" "\xb5\x06\x91\x1d\xd1\x06\xf8\x1c" 
	"\xb3\x06\x3a\x23\x9c\x06\x94\x1d" "\xcd\x06\x08\x1d\xba\x06\xec\x22" 
	"\x96\x06\xa5\x1d\xc5\x06\xf6\x1c" "\xd9\x06\x0c\x23\xb4\x06\x94\x1d" 
	"\xc4\x06\x00\x1d\xdb\x06\x1e\x23" "\xb5\x06\x94\x1d\xba\x06\xe8\x1c" 
	"\xa9\x06\x45\x23\x93\x06\xa1\x1d" "\xbc\x06\xe3\x1c\xdb\x06\x4a\x23" 
	"\xb3\x06\xca\x1d\xc7\x06\x07\x1d" "\xb2\x06\x18\x23\x8e\x06\xb0\x1d" 
	"\xbe\x06\x01\x1d\xd4\x06\x62\x23" "\xc0\x06\xbe\x1d\xb4\x06\xf9\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe0\x06\x31\x23\xbc\x06\x9e\x1d" "\xc1\x06\xfd\x1c\xce\x06\x45\x23" 
	"\xaa\x06\xbc\x1d\xc3\x06\xec\x1c" "\xcc\x06\x5b\x23\xb5\x06\xa9\x1d" 
	"\xbb\x06\x15\x1d\xad\x06\x7f\x23" "\x89\x06\xe8\x1d\xcd\x06\x08\x1d" 
	"\xd0\x06\x22\x23\xba\x06\xe4\x1d" "\xc8\x06\x19\x1d\xce\x06\xf9\x22" 
	"\xaf\x06\xa7\x1d\xbe\x06\xf8\x1c" "\xbe\x06\x0c\x23\xa9\x06\xb4\x1d" 
	"\xc4\x06\xfb\x1c\xbe\x06\x01\x23" "\x95\x06\xb8\x1d\xb5\x06\xf7\x1c" 
	"\xb7\x06\xf2\x22\x95\x06\x81\x1d" "\xb0\x06\xd6\x1c\xd5\x06\xfa\x22" 
	"\xb1\x06\x9b\x1d\xcc\x06\xdd\x1c" "\xd0\x06\x4b\x23\xaf\x06\xb5\x1d" 
	"\xba\x06\xb4\x1c\xcd\x06\x2e\x23" "\xa8\x06\x96\x1d\xbc\x06\xed\x1c" 
	"\xc4\x06\x07\x23\xad\x06\xb9\x1d" "\xc3\x06\xe4\x1c\xd5\x06\xc5\x22" 
	"\xae\x06\x78\x1d\xbb\x06\x9f\x1c" "\xde\x06\x39\x23\xb2\x06\x89\x1d" 
	"\xc4\x06\xdc\x1c\xc0\x06\xfd\x22" "\xab\x06\xbc\x1d\xc4\x06\xe4\x1c" 
	"\xc8\x06\x01\x23\xad\x06\xb3\x1d" "\xca\x06\xe6\x1c\xcf\x06\x3c\x23" 
	"\xb5\x06\x83\x1d\xb7\x06\xeb\x1c" "\xbc\x06\x73\x23\x95\x06\xcc\x1d" 
	"\xad\x06\x05\x1d\xcf\x06\x3b\x23" "\xb2\x06\x82\x1d\xc1\x06\x10\x1d" 
	"\xae\x06\x4e\x23\x8e\x06\x7a\x1d" "\xbd\x06\x01\x1d\xce\x06\xce\x22" 
	"\xb3\x06\x9b\x1d\xc4\x06\xf9\x1c" "\xcb\x06\x1b\x23\xab\x06\x8e\x1d" 
	"\xca\x06\x13\x1d\xce\x06\x07\x23" "\xb5\x06\x9e\x1d\xb9\x06\xe4\x1c" 
	"\xcd\x06\x2c\x23\xb9\x06\xcc\x1d" "\xcd\x06\xf1\x1c\xcd\x06\x1d\x23" 
	"\xb2\x06\xd5\x1d\xb8\x06\xe4\x1c" "\xbb\x06\x14\x23\x9e\x06\xcb\x1d" 
	"\xc7\x06\xf0\x1c\xdd\x06\x27\x23" "\xc0\x06\x91\x1d\xcb\x06\xe6\x1c" 
	"\xc2\x06\x5a\x23\xa9\x06\x7c\x1d" "\xc8\x06\xda\x1c\xc2\x06\x44\x23" 
	"\x8d\x06\x57\x1d\xbe\x06\xb7\x1c" "\xd9\x06\x16\x23\xb4\x06\x4e\x1d" 
	"\xc3\x06\x8d\x1c\xa1\x06\x9b\x23" "\x88\x06\x91\x1d\xac\x06\xc1\x1c" 
	"\xd9\x06\x6c\x23\xbf\x06\x99\x1d" "\xb8\x06\xaa\x1c\xd3\x06\x16\x23" 
	"\xad\x06\x90\x1d\xc2\x06\xb2\x1c" "\xd6\x06\xfb\x22\xb5\x06\x98\x1d" 
	"\xc6\x06\xdf\x1c\xcd\x06\x1a\x23" "\xaf\x06\x7d\x1d\xc4\x06\xb4\x1c" 
	"\xc9\x06\x09\x23\xb7\x06\x94\x1d" "\xc0\x06\xc4\x1c\xa5\x06\x75\x23" 
	"\x84\x06\xa6\x1d\xaf\x06\xf7\x1c" "\xd3\x06\x36\x23\xbf\x06\xa0\x1d" 
	"\xc5\x06\xf3\x1c\xd1\x06\x7b\x23" "\xc1\x06\xd3\x1d\xcb\x06\x11\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbd\x06\x64\x23\xb0\x06\xfe\x1d" "\xc0\x06\x2e\x1d\xd3\x06\x44\x23" 
	"\xae\x06\xb5\x1d\xc7\x06\xe7\x1c" "\xba\x06\x46\x23\xa7\x06\x9c\x1d" 
	"\xb5\x06\xfe\x1c\xd8\x06\x37\x23" "\xba\x06\x70\x1d\xcf\x06\xec\x1c" 
	"\xd9\x06\x07\x23\xb2\x06\x44\x1d" "\xb6\x06\xce\x1c\xd4\x06\x1c\x23" 
	"\xab\x06\x67\x1d\xc2\x06\xaf\x1c" "\xcd\x06\x18\x23\xaa\x06\x69\x1d" 
	"\xbd\x06\x75\x1c\xd5\x06\x05\x23" "\xb2\x06\x5c\x1d\xbe\x06\xc0\x1c" 
	"\xc6\x06\x3e\x23\xa3\x06\x51\x1d" "\xc4\x06\xc6\x1c\xd0\x06\x16\x23" 
	"\xc5\x06\x76\x1d\xc2\x06\xd6\x1c" "\xc5\x06\x21\x23\xa6\x06\x84\x1d" 
	"\xb1\x06\xd1\x1c\xc8\x06\x0b\x23" "\xa7\x06\x5e\x1d\xb4\x06\xb9\x1c" 
	"\xd5\x06\x26\x23\xb8\x06\x54\x1d" "\xbf\x06\xbe\x1c\xcd\x06\xea\x22" 
	"\xb3\x06\x79\x1d\xc7\x06\xd9\x1c" "\xca\x06\x22\x23\xa7\x06\x8d\x1d" 
	"\xc7\x06\xec\x1c\xae\x06\x0e\x23" "\x91\x06\x61\x1d\xc2\x06\xe9\x1c" 
	"\xbd\x06\x20\x23\xa9\x06\x79\x1d" "\xc5\x06\xf2\x1c\xca\x06\x1c\x23" 
	"\xb9\x06\x8c\x1d\xb9\x06\xc0\x1c" "\xdd\x06\x0a\x23\xb1\x06\x55\x1d" 
	"\xcc\x06\xb6\x1c\xcf\x06\x10\x23" "\xb6\x06\x53\x1d\xc6\x06\xba\x1c" 
	"\xc1\x06\x1a\x23\xa8\x06\x58\x1d" "\xc0\x06\xad\x1c\xcb\x06\x59\x23" 
	"\xb0\x06\x7d\x1d\xc9\x06\xbd\x1c" "\xc1\x06\x47\x23\x98\x06\x61\x1d" 
	"\xc1\x06\xc2\x1c\xc8\x06\x28\x23" "\xae\x06\x66\x1d\xc0\x06\xa8\x1c" 
	"\xd1\x06\x37\x23\xab\x06\x71\x1d" "\xbf\x06\xb9\x1c\xd9\x06\xef\x22" 
	"\xb5\x06\x7c\x1d\xcc\x06\xba\x1c" "\xc8\x06\xfd\x22\xb5\x06\x71\x1d" 
	"\xb3\x06\xb3\x1c\xa2\x06\x19\x23" "\x92\x06\x74\x1d\xc5\x06\xb3\x1c" 
	"\xce\x06\xd2\x22\xbb\x06\x6e\x1d" "\xba\x06\x79\x1c\xc3\x06\xe9\x22" 
	"\xa6\x06\x63\x1d\xbd\x06\xb0\x1c" "\xc5\x06\xe7\x22\x97\x06\x79\x1d" 
	"\xc2\x06\xe6\x1c\xc4\x06\xf0\x22" "\xa4\x06\x63\x1d\xc3\x06\xc2\x1c" 
	"\xcf\x06\xad\x22\x9f\x06\x5e\x1d" "\xb8\x06\xb8\x1c\xbb\x06\xde\x22" 
	"\xa1\x06\x5a\x1d\xc7\x06\xcf\x1c" "\xb3\x06\xd3\x22\x8f\x06\x2c\x1d" 
	"\xbd\x06\xb5\x1c\xb7\x06\x90\x22" "\x94\x06\x30\x1d\xbe\x06\x76\x1c" 
	"\xd1\x06\xbd\x22\xb8\x06\x63\x1d" "\xbb\x06\xa0\x1c\xd2\x06\xc3\x22" 
	"\xb4\x06\x5f\x1d\xbb\x06\xa0\x1c" "\xcb\x06\xdb\x22\xa4\x06\x72\x1d" 
	"\xca\x06\xc1\x1c\xc7\x06\xe6\x22" "\xb1\x06\x5a\x1d\xbe\x06\xbb\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc2\x06\xa0\x22\xb0\x06\x80\x1d" "\xb2\x06\xdf\x1c\xc7\x06\xd9\x22" 
	"\xa1\x06\x85\x1d\xcd\x06\xbe\x1c" "\xd7\x06\x17\x23\xbf\x06\x83\x1d" 
	"\xbe\x06\x97\x1c\xd8\x06\x19\x23" "\xb9\x06\xc7\x1d\xbd\x06\xb0\x1c" 
	"\xd2\x06\xb4\x22\xc3\x06\x88\x1d" "\xc6\x06\xbc\x1c\xd7\x06\xb6\x22" 
	"\xbe\x06\x77\x1d\xc8\x06\xc8\x1c" "\xc9\x06\xb3\x22\xa8\x06\x97\x1d" 
	"\xc3\x06\xc4\x1c\xcd\x06\xc7\x22" "\xb4\x06\x6c\x1d\xc6\x06\xc5\x1c" 
	"\xc7\x06\xd2\x22\xb1\x06\xd6\x1d" "\xb8\x06\xe3\x1c\xcd\x06\x3a\x23" 
	"\xae\x06\xab\x1d\xba\x06\xe7\x1c" "\xec\x06\x34\x23\xc7\x06\xad\x1d" 
	"\xcb\x06\x9e\x1c\x07\x07\x99\x22" "\xf1\x06\x7c\x1d\xf9\x06\xac\x1c" 
	"\x35\x07\x10\x22\x1d\x07\x46\x1d" "\x24\x07\x9b\x1c\x4b\x07\x7b\x21" 
	"\x1a\x07\xd6\x1c\x36\x07\x50\x1c" "\xab\x06\x27\x21\x91\x06\x96\x1c" 
	"\xa3\x06\x05\x1c\x1f\x06\xef\x20" "\x09\x06\x6e\x1c\x26\x06\x41\x1b" 
	"\x27\x06\xbf\x20\xfd\x05\x3a\x1c" "\x22\x06\x42\x1b\x94\x06\x38\x21" 
	"\x7f\x06\x99\x1c\x95\x06\x43\x1c" "\x33\x07\xef\x21\x1b\x07\x3c\x1d" 
	"\x32\x07\xe7\x1c\x29\x07\xa8\x22" "\x05\x07\x87\x1d\x35\x07\x40\x1d" 
	"\xcb\x06\xa4\x22\xad\x06\x7f\x1d" "\xfd\x06\x07\x1d\xe5\x06\xb6\x22" 
	"\xc1\x06\x4b\x1d\xcd\x06\xf1\x1c" "\xc8\x06\xd7\x22\xb9\x06\x7f\x1d" 
	"\xc1\x06\xd3\x1c\xc6\x06\xcf\x22" "\xaf\x06\x51\x1d\xc1\x06\xf8\x1c" 
	"\xcd\x06\xc7\x22\xb6\x06\x80\x1d" "\xbc\x06\x39\x1d\xcc\x06\x14\x23" 
	"\xb7\x06\xc8\x1d\xc5\x06\x77\x1d" "\xe2\x06\xb0\x23\xbd\x06\x47\x1e" 
	"\xcd\x06\xa4\x1d\xd1\x06\x11\x23" "\xb7\x06\xe8\x1d\xca\x06\x6a\x1d" 
	"\xc4\x06\xcb\x22\xa5\x06\x9e\x1d" "\xc4\x06\x31\x1d\xaa\x06\x19\x23" 
	"\x7b\x06\xa5\x1d\xb4\x06\x32\x1d" "\xd1\x06\x0f\x23\xb0\x06\xa8\x1d" 
	"\xba\x06\x2f\x1d\xd0\x06\xdd\x22" "\xc2\x06\x8d\x1d\xc0\x06\x78\x1d" 
	"\xd6\x06\x77\x23\xac\x06\xea\x1d" "\xc5\x06\x85\x1d\xcd\x06\xeb\x23" 
	"\xbb\x06\x36\x1e\xce\x06\x06\x1e" "\xbd\x06\x53\x23\xa3\x06\xef\x1d" 
	"\xc6\x06\x8e\x1d\xc0\x06\x2b\x23" "\xa7\x06\x89\x1d\xc0\x06\x45\x1d" 
	"\xb7\x06\xdb\x22\xa2\x06\x77\x1d" "\xc3\x06\x1a\x1d\xc8\x06\xd7\x22" 
	"\xb2\x06\x70\x1d\xc9\x06\x17\x1d" "\xe1\x06\xea\x22\xba\x06\x63\x1d" 
	"\xc5\x06\x24\x1d\xbf\x06\x3b\x23" "\xb5\x06\xa5\x1d\xbb\x06\x47\x1d" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd2\x06\xa3\x23\xbe\x06\xd3\x1d" "\xbc\x06\xb4\x1d\xbd\x06\x5f\x23" 
	"\x93\x06\x72\x1d\xbd\x06\x4e\x1d" "\xd6\x06\xaf\x22\xac\x06\x29\x1d" 
	"\xc3\x06\x0a\x1d\xc6\x06\xcc\x22" "\xa4\x06\x4c\x1d\xc0\x06\x14\x1d" 
	"\x8f\x06\xe5\x22\x5f\x06\x31\x1d" "\xbf\x06\x04\x1d\xc4\x06\xc8\x22" 
	"\xa1\x06\x3d\x1d\xc3\x06\xea\x1c" "\xca\x06\x0d\x23\xae\x06\x31\x1d" 
	"\xbf\x06\xf0\x1c\xcd\x06\xb1\x23" "\xac\x06\xa3\x1d\xc8\x06\x74\x1d" 
	"\xcf\x06\x30\x23\xac\x06\xaf\x1d" "\xbb\x06\x1f\x1d\xce\x06\xc1\x22" 
	"\xb3\x06\x30\x1d\xbe\x06\xe2\x1c" "\xc0\x06\xba\x22\x9c\x06\x27\x1d" 
	"\xc2\x06\xcc\x1c\xca\x06\xd3\x22" "\xad\x06\xfc\x1c\xbf\x06\xba\x1c" 
	"\xc1\x06\xb7\x22\xa9\x06\x15\x1d" "\xb2\x06\xe5\x1c\xce\x06\x12\x23" 
	"\xa8\x06\x32\x1d\xbc\x06\xde\x1c" "\xb2\x06\x81\x23\x89\x06\x74\x1d" 
	"\xbd\x06\x19\x1d\xc6\x06\x69\x23" "\xba\x06\x91\x1d\xc4\x06\x42\x1d" 
	"\xde\x06\xf4\x22\xb6\x06\x48\x1d" "\xbf\x06\xd4\x1c\xbe\x06\xb7\x22" 
	"\x9f\x06\x24\x1d\xb1\x06\xa4\x1c" "\xc2\x06\x9f\x22\xa6\x06\x2b\x1d" 
	"\xb9\x06\xaa\x1c\xc2\x06\x8f\x22" "\xa6\x06\xf4\x1c\xc2\x06\xa9\x1c" 
	"\xc1\x06\xab\x22\xa7\x06\x25\x1d" "\xb4\x06\xa6\x1c\xc5\x06\x01\x23" 
	"\xac\x06\x48\x1d\xc8\x06\x0e\x1d" "\xc7\x06\x3a\x23\xa4\x06\x85\x1d" 
	"\xb3\x06\x1b\x1d\xbb\x06\xc1\x22" "\x96\x06\x01\x1d\xb5\x06\xad\x1c" 
	"\xa8\x06\x81\x22\x7b\x06\xf2\x1c" "\xbb\x06\x8a\x1c\xd5\x06\x7d\x22" 
	"\xb9\x06\x06\x1d\xbf\x06\x85\x1c" "\xc4\x06\x61\x22\xa8\x06\xd3\x1c" 
	"\xbc\x06\xb6\x1c\xcc\x06\x69\x22" "\xac\x06\x05\x1d\xb6\x06\x98\x1c" 
	"\xbd\x06\x74\x22\xad\x06\x3a\x1d" "\xc3\x06\xbc\x1c\xcd\x06\x3a\x23" 
	"\xac\x06\x97\x1d\xc1\x06\x17\x1d" "\xb4\x06\x15\x23\x8d\x06\x34\x1d" 
	"\xb8\x06\xf2\x1c\xc1\x06\xac\x22" "\x9c\x06\xf1\x1c\xbd\x06\xba\x1c" 
	"\xc0\x06\x6a\x22\xa4\x06\xf9\x1c" "\xc7\x06\x92\x1c\xb6\x06\x64\x22" 
	"\x99\x06\x26\x1d\xb9\x06\x9b\x1c" "\xbb\x06\x96\x22\x98\x06\xe4\x1c" 
	"\xc2\x06\xa4\x1c\xb5\x06\xb9\x22" "\x9b\x06\x48\x1d\xbb\x06\xca\x1c" 
	"\xd0\x06\x20\x23\xab\x06\x77\x1d" "\xb5\x06\x23\x1d\xc6\x06\x05\x23" 
	"\xad\x06\x62\x1d\xbf\x06\xe5\x1c" "\xaa\x06\x8d\x22\x8b\x06\xf6\x1c" 
	"\xbf\x06\x94\x1c\xbd\x06\x7b\x22" "\xad\x06\xe2\x1c\xaf\x06\x7c\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc1\x06\x63\x22\xae\x06\xd5\x1c" "\xc0\x06\xab\x1c\x97\x06\x68\x22" 
	"\x6a\x06\xe3\x1c\xb8\x06\x7d\x1c" "\xc1\x06\x6f\x22\xa0\x06\xf6\x1c" 
	"\xbe\x06\xb2\x1c\xca\x06\x16\x23" "\x9c\x06\x60\x1d\xba\x06\xfa\x1c" 
	"\xbd\x06\x6f\x23\x99\x06\x9b\x1d" "\xa8\x06\x48\x1d\xb9\x06\x90\x22" 
	"\xaf\x06\x34\x1d\xb4\x06\xd2\x1c" "\xcf\x06\x8d\x22\xba\x06\x01\x1d" 
	"\xc0\x06\xaa\x1c\xba\x06\x77\x22" "\xa1\x06\x28\x1d\xb6\x06\x9d\x1c" 
	"\xcc\x06\x79\x22\x9e\x06\x15\x1d" "\xbb\x06\xd7\x1c\xce\x06\xb6\x22" 
	"\xb3\x06\x24\x1d\xb5\x06\xd4\x1c" "\xc0\x06\xed\x22\xa6\x06\xab\x1d" 
	"\xb1\x06\x08\x1d\xb4\x06\xd2\x22" "\x98\x06\x6e\x1d\xbc\x06\x26\x1d" 
	"\xa2\x06\x90\x22\x80\x06\x02\x1d" "\x9f\x06\xb3\x1c\xd2\x06\x3b\x22" 
	"\xa9\x06\xe7\x1c\xb7\x06\x8e\x1c" "\xc0\x06\x27\x22\xb0\x06\xeb\x1c" 
	"\xb9\x06\xa4\x1c\xb9\x06\x49\x22" "\x91\x06\xf4\x1c\xb5\x06\x86\x1c" 
	"\xbe\x06\x56\x22\xaa\x06\xf0\x1c" "\xc0\x06\xab\x1c\xcc\x06\xa4\x22" 
	"\xa8\x06\x25\x1d\xbd\x06\xe3\x1c" "\xce\x06\xea\x22\xab\x06\x89\x1d" 
	"\xba\x06\x14\x1d\xc7\x06\x8b\x22" "\xb0\x06\x16\x1d\xa9\x06\x89\x1c" 
	"\xaf\x06\x55\x22\x8f\x06\xda\x1c" "\xbf\x06\x89\x1c\xc1\x06\x2f\x22" 
	"\xa9\x06\xc5\x1c\xb8\x06\x74\x1c" "\x89\x06\x4c\x22\x64\x06\xd5\x1c" 
	"\xb2\x06\x61\x1c\xca\x06\x62\x22" "\xa6\x06\xce\x1c\xa5\x06\x7f\x1c" 
	"\xb3\x06\x65\x22\x93\x06\x00\x1d" "\xac\x06\x8d\x1c\xcd\x06\xe2\x22" 
	"\xa6\x06\x5d\x1d\xc0\x06\x15\x1d" "\xb5\x06\x8a\x22\x91\x06\x11\x1d" 
	"\xba\x06\xaa\x1c\xb3\x06\x69\x22" "\x93\x06\xd4\x1c\xb9\x06\x69\x1c" 
	"\xb6\x06\x3a\x22\xad\x06\xc9\x1c" "\xb1\x06\x87\x1c\xbf\x06\x12\x22" 
	"\x93\x06\xd2\x1c\xb4\x06\x66\x1c" "\xbe\x06\xfb\x21\xa6\x06\xa7\x1c" 
	"\xb0\x06\x76\x1c\xb3\x06\x19\x21" "\x9d\x06\xca\x1c\xc5\x06\x8f\x1c" 
	"\xaa\x06\xcc\x21\x9c\x06\x11\x1d" "\xab\x06\xa2\x1c\xc2\x06\x98\x21" 
	"\x6e\x06\x7c\x18\xb2\x06\x63\x1c" "\xb6\x06\xa6\x21\x9b\x06\x17\x1c" 
	"\xa8\x06\x25\x1c\xb6\x06\x02\x22" "\x93\x06\xae\x1c\xb8\x06\x63\x1c" 
	"\xc7\x06\x13\x22\xa7\x06\xa8\x1c" "\xb6\x06\x5d\x1c\xa5\x06\x1a\x22" 
	"\x87\x06\xcf\x1c\xb2\x06\x4f\x1c" "\xb5\x06\x07\x22\x99\x06\xd2\x1c" 
	"\xb4\x06\x7f\x1c\xc1\x06\xf4\x21" "\xa7\x06\xd3\x1c\xbd\x06\xab\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb0\x06\x9b\x22\x97\x06\x31\x1d" "\xb9\x06\xc4\x1c\xb5\x06\x2b\x22" 
	"\x83\x06\xdc\x1c\xba\x06\x6f\x1c" "\xb5\x06\x31\x22\x87\x06\xa1\x1c" 
	"\xbd\x06\x6a\x1c\xbe\x06\xe8\x21" "\x9b\x06\x92\x1c\xb4\x06\x3c\x1c" 
	"\xc5\x06\xc9\x21\xac\x06\xa8\x1c" "\xb1\x06\x1b\x1c\xa4\x06\xfb\x21" 
	"\x72\x06\x8a\x1c\xaf\x06\x1b\x1c" "\xbc\x06\x80\x22\x92\x06\xb7\x1c" 
	"\xb9\x06\x7f\x1c\xbb\x06\xc7\x22" "\x9e\x06\xca\x1c\xbf\x06\x8f\x1c" 
	"\xc0\x06\xe8\x21\xac\x06\x96\x1c" "\xb5\x06\x68\x1c\xc2\x06\xe4\x21" 
	"\xa5\x06\x66\x1c\xbb\x06\x3e\x1c" "\xab\x06\xf5\x21\x8d\x06\x94\x1c" 
	"\xa9\x06\x30\x1c\xc3\x06\xf9\x21" "\xa4\x06\xa0\x1c\xb7\x06\x3d\x1c" 
	"\xb4\x06\xe9\x21\xa2\x06\xb8\x1c" "\xbd\x06\x5b\x1c\xbc\x06\x53\x22" 
	"\x97\x06\xcf\x1c\xbb\x06\x84\x1c" "\xc2\x06\xe8\x22\x9e\x06\x63\x1d" 
	"\xb9\x06\xf4\x1c\xc7\x06\x72\x22" "\xa7\x06\xec\x1c\xbc\x06\x8e\x1c" 
	"\xcb\x06\x2a\x22\xad\x06\xd1\x1c" "\xb4\x06\x48\x1c\xd2\x06\x5e\x22" 
	"\xb0\x06\xd9\x1c\xb8\x06\x60\x1c" "\xaa\x06\xfd\x21\x9d\x06\xcd\x1c" 
	"\xb8\x06\x52\x1c\xc4\x06\x24\x22" "\xb1\x06\xca\x1c\xb6\x06\x47\x1c" 
	"\xd4\x06\x95\x22\xb1\x06\x1c\x1d" "\xba\x06\x7b\x1c\xb4\x06\x05\x23" 
	"\x91\x06\x93\x1d\x99\x06\x1a\x1d" "\xcf\x06\x80\x22\xa6\x06\xc6\x1c" 
	"\xb6\x06\x79\x1c\xbf\x06\x1b\x22" "\xab\x06\xc5\x1c\xb2\x06\x47\x1c" 
	"\xce\x06\x15\x22\xb7\x06\xc4\x1c" "\xb0\x06\x45\x1c\xc8\x06\x25\x22" 
	"\xa1\x06\xb3\x1c\xbe\x06\x58\x1c" "\xbc\x06\x2b\x22\xa2\x06\xd3\x1c" 
	"\xba\x06\x70\x1c\xb9\x06\x9b\x22" "\xb0\x06\xfa\x1c\xbc\x06\x80\x1c" 
	"\xc1\x06\x3a\x23\xb7\x06\x57\x1d" "\xbd\x06\xf6\x1c\xd8\x06\xec\x22" 
	"\xae\x06\x38\x1d\xc5\x06\xbc\x1c" "\xcf\x06\x39\x22\x9f\x06\xf9\x1c" 
	"\xb6\x06\x71\x1c\xc5\x06\x2f\x22" "\xbd\x06\xfe\x1c\xbc\x06\x7a\x1c" 
	"\xc0\x06\x92\x22\xb2\x06\xce\x1c" "\xbf\x06\x72\x1c\xc6\x06\x75\x22" 
	"\xa3\x06\x1d\x1d\xb7\x06\x9a\x1c" "\xc5\x06\x4e\x22\xa4\x06\x18\x1d" 
	"\xb0\x06\x8e\x1c\xbd\x06\xaf\x22" "\x96\x06\x28\x1d\xb8\x06\xe3\x1c" 
	"\xca\x06\x8b\x22\xb9\x06\x5d\x1d" "\xc4\x06\xd0\x1c\xa9\x06\xa4\x22" 
	"\x6a\x06\xe4\x1c\xbd\x06\x89\x1c" "\xbe\x06\x5c\x22\xa1\x06\xbd\x1c" 
	"\xbd\x06\xa1\x1c\xbe\x06\x31\x22" "\x9c\x06\xdd\x1c\xbe\x06\x88\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc6\x06\x26\x22\xa6\x06\xb7\x1c" "\xbb\x06\x76\x1c\xd5\x06\x55\x22" 
	"\xac\x06\xb0\x1c\xb3\x06\x59\x1c" "\xc7\x06\xa4\x22\x9e\x06\xff\x1c" 
	"\xc3\x06\xca\x1c\xc1\x06\x98\x22" "\xa6\x06\x46\x1d\xb9\x06\xad\x1c" 
	"\xc7\x06\x16\x22\xa8\x06\xea\x1c" "\xb3\x06\x67\x1c\xb4\x06\x0d\x22" 
	"\x9d\x06\xf4\x1c\xbf\x06\x5d\x1c" "\xcb\x06\xef\x21\xa4\x06\xc6\x1c" 
	"\xc1\x06\x6a\x1c\xbd\x06\x1a\x22" "\xa1\x06\xe0\x1c\xc3\x06\x67\x1c" 
	"\xbf\x06\x06\x22\xa3\x06\x09\x1d" "\xb9\x06\x67\x1c\xbd\x06\x67\x22" 
	"\xa4\x06\x09\x1d\xb6\x06\xa6\x1c" "\xd2\x06\xea\x22\xab\x06\x50\x1d" 
	"\xbc\x06\xef\x1c\xae\x06\xbb\x22" "\x78\x06\x12\x1d\xa4\x06\x9b\x1c" 
	"\xab\x06\x4e\x22\x81\x06\xcd\x1c" "\xc1\x06\x5d\x1c\xac\x06\x57\x22" 
	"\x83\x06\xca\x1c\xaf\x06\x56\x1c" "\xb7\x06\xf4\x21\x91\x06\xa8\x1c" 
	"\xb3\x06\x3d\x1c\xd0\x06\x27\x22" "\xb0\x06\xcf\x1c\xb8\x06\x59\x1c" 
	"\xc1\x06\x66\x22\x9f\x06\xe4\x1c" "\xb0\x06\x41\x1c\xb7\x06\xd7\x22" 
	"\x9b\x06\x3e\x1d\xbe\x06\x8e\x1c" "\xce\x06\x46\x22\x9f\x06\x03\x1d" 
	"\xb1\x06\x46\x1c\xcb\x06\x1d\x22" "\xae\x06\xee\x1c\xb7\x06\x36\x1c" 
	"\xbf\x06\xe2\x21\xb4\x06\xed\x1c" "\xac\x06\x4c\x1c\xc9\x06\x27\x22" 
	"\xa3\x06\xed\x1c\xc4\x06\x7a\x1c" "\xae\x06\x76\x22\x83\x06\x37\x1d" 
	"\xb9\x06\xa8\x1c\xcf\x06\x91\x22" "\xae\x06\x4a\x1d\xb9\x06\xdd\x1c" 
	"\xcc\x06\x31\x23\xbb\x06\xbb\x1d" "\xb8\x06\x46\x1d\xd0\x06\xbe\x22" 
	"\xac\x06\x7a\x1d\xc0\x06\xe1\x1c" "\xc5\x06\x0f\x22\xb3\x06\x1e\x1d" 
	"\xc2\x06\xaa\x1c\xbc\x06\xfc\x21" "\x9b\x06\xf5\x1c\xc6\x06\x4a\x1c" 
	"\xbf\x06\x13\x22\x99\x06\xed\x1c" "\xbf\x06\x47\x1c\xcd\x06\x08\x22" 
	"\xb4\x06\xfb\x1c\xba\x06\x6f\x1c" "\xc7\x06\x3e\x22\xa5\x06\xfc\x1c" 
	"\xbf\x06\x87\x1c\xc2\x06\xea\x22" "\xab\x06\x9c\x1d\xbf\x06\xf6\x1c" 
	"\xbe\x06\xc5\x22\xa5\x06\x71\x1d" "\xb9\x06\xdd\x1c\xcd\x06\x86\x22" 
	"\xad\x06\x36\x1d\xc0\x06\xa1\x1c" "\xbb\x06\x81\x22\xa4\x06\x0e\x1d" 
	"\xb8\x06\x6f\x1c\xca\x06\x32\x22" "\xaa\x06\x0d\x1d\xaf\x06\x70\x1c" 
	"\xcc\x06\xfa\x21\x9f\x06\xe5\x1c" "\xb8\x06\x4a\x1c\xbf\x06\x03\x22" 
	"\xa9\x06\x11\x1d\xae\x06\x34\x1c" "\xc5\x06\x3d\x22\xaf\x06\x5e\x1d" 
	"\xbd\x06\x9c\x1c\xc9\x06\x2b\x22" "\xa7\x06\x52\x1d\xbb\x06\xa8\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc4\x06\x14\x22\xa9\x06\xf2\x1c" "\xb4\x06\x5f\x1c\xc6\x06\xed\x21" 
	"\x9a\x06\xcd\x1c\xb4\x06\x6e\x1c" "\xbe\x06\xdf\x21\x91\x06\xcd\x1c" 
	"\xc0\x06\x67\x1c\xaa\x06\x03\x22" "\x8f\x06\xbd\x1c\xa4\x06\x76\x1c" 
	"\xba\x06\xdc\x21\xad\x06\xad\x1c" "\xc0\x06\x7a\x1c\xcc\x06\x43\x22" 
	"\xa7\x06\xfa\x1c\xc3\x06\x8b\x1c" "\xc9\x06\xe8\x22\xa8\x06\x60\x1d" 
	"\xc0\x06\x0e\x1d\xc4\x06\x62\x22" "\xb2\x06\x14\x1d\xae\x06\x80\x1c" 
	"\x9a\x06\x34\x22\x84\x06\x01\x1d" "\xb0\x06\x69\x1c\xc5\x06\x1a\x22" 
	"\xa7\x06\x1a\x1d\xb7\x06\x54\x1c" "\xc7\x06\x42\x22\xae\x06\xf1\x1c" 
	"\xab\x06\x66\x1c\xb7\x06\x42\x22" "\x9c\x06\x22\x1d\xc2\x06\xa4\x1c" 
	"\xc2\x06\x73\x22\xa2\x06\x1c\x1d" "\xb6\x06\xc4\x1c\xc8\x06\xc4\x22" 
	"\xb4\x06\x45\x1d\xc2\x06\x12\x1d" "\xc4\x06\x95\x22\x8e\x06\x17\x1d" 
	"\xb9\x06\xcf\x1c\xa8\x06\x30\x22" "\x85\x06\x09\x1d\xc6\x06\x7d\x1c" 
	"\x9b\x06\x45\x22\x73\x06\xc8\x1c" "\xb8\x06\x61\x1c\xc7\x06\x00\x22" 
	"\x9f\x06\xbc\x1c\xc0\x06\x73\x1c" "\xd0\x06\x3b\x22\xa9\x06\xff\x1c" 
	"\xb8\x06\x82\x1c\xa6\x06\xce\x22" "\x97\x06\x40\x1d\xa5\x06\xa5\x1c" 
	"\xca\x06\xcb\x22\xb3\x06\x9d\x1d" "\xc0\x06\x1e\x1d\xc8\x06\xb3\x22" 
	"\xba\x06\x83\x1d\xbc\x06\xe7\x1c" "\xaa\x06\xed\x21\x90\x06\x48\x1d" 
	"\xc1\x06\x7b\x1c\xc7\x06\x93\x21" "\xb1\x06\xf2\x1c\xb4\x06\x40\x1c" 
	"\xbf\x06\xa3\x21\xa5\x06\xcd\x1c" "\xb5\x06\x5b\x1c\xd5\x06\xa9\x21" 
	"\xb2\x06\x05\x1d\xae\x06\x64\x1c" "\xbe\x06\xb7\x21\xa3\x06\xff\x1c" 
	"\xc2\x06\x7b\x1c\x9c\x06\xcc\x22" "\x74\x06\x49\x1d\x99\x06\xf2\x1c" 
	"\xa9\x06\x69\x22\x7c\x06\xf6\x1c" "\xaf\x06\xb8\x1c\xc9\x06\xca\x21" 
	"\x9f\x06\xc2\x1c\xab\x06\x2c\x1c" "\xc4\x06\xfe\x21\x9b\x06\x99\x1c" 
	"\xb5\x06\x37\x1c\x8d\x06\x18\x22" "\x75\x06\xab\x1c\xb3\x06\x22\x1c" 
	"\xc0\x06\xf6\x21\xa0\x06\xb2\x1c" "\xb1\x06\x44\x1c\xd8\x06\x45\x22" 
	"\xa7\x06\xb8\x1c\xbe\x06\x25\x1c" "\xc5\x06\x29\x22\xa2\x06\x0b\x1d" 
	"\xc0\x06\x91\x1c\xb3\x06\x5c\x22" "\xae\x06\x0e\x1d\xb0\x06\xa7\x1c" 
	"\xbb\x06\xf1\x21\x9a\x06\x99\x1c" "\xb9\x06\x3a\x1c\xba\x06\x89\x21" 
	"\xa2\x06\xa3\x1c\xbc\x06\x2c\x1c" "\xc3\x06\xae\x21\xa6\x06\x9e\x1c" 
	"\xb0\x06\x35\x1c\xa4\x06\xe4\x21" "\x88\x06\xa6\x1c\xb2\x06\x01\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xca\x06\x10\x22\xa9\x06\xb6\x1c" "\xb3\x06\x2b\x1c\xd0\x06\x9d\x22" 
	"\xb6\x06\xf2\x1c\xc3\x06\x6e\x1c" "\xc5\x06\xdb\x22\xa4\x06\x42\x1d" 
	"\xae\x06\xe3\x1c\xcf\x06\x10\x22" "\xa9\x06\xc1\x1c\xb2\x06\x44\x1c" 
	"\xb4\x06\xa8\x21\xa2\x06\x84\x1c" "\xb2\x06\x44\x1c\xb4\x06\xa0\x21" 
	"\x96\x06\x96\x1c\xb5\x06\x2e\x1c" "\xb9\x06\x92\x21\x97\x06\x9d\x1c" 
	"\xac\x06\x28\x1c\xc1\x06\x7f\x21" "\xab\x06\x85\x1c\xbf\x06\x00\x1c" 
	"\xcc\x06\xd5\x21\xac\x06\xac\x1c" "\xb6\x06\x3a\x1c\xca\x06\x5c\x22" 
	"\xa2\x06\xc1\x1c\xb3\x06\x93\x1c" "\xcf\x06\x06\x22\xa5\x06\x93\x1c" 
	"\xc1\x06\x55\x1c\xc7\x06\xa6\x21" "\xa2\x06\x85\x1c\xb0\x06\x20\x1c" 
	"\xc3\x06\xa2\x21\xa3\x06\x62\x1c" "\xb2\x06\x16\x1c\xca\x06\xbf\x21" 
	"\xb3\x06\x76\x1c\xb1\x06\x23\x1c" "\xd1\x06\x74\x21\xa7\x06\x67\x1c" 
	"\xbb\x06\xf8\x1b\xb3\x06\x84\x21" "\x96\x06\x73\x1c\xb6\x06\x15\x1c" 
	"\xcb\x06\xe9\x21\xa6\x06\x88\x1c" "\xba\x06\x62\x1c\xcb\x06\x0e\x22" 
	"\xa9\x06\xa6\x1c\xb9\x06\x70\x1c" "\xd7\x06\xe4\x21\xac\x06\x4f\x1c" 
	"\xb9\x06\x16\x1c\xcb\x06\xa9\x21" "\xad\x06\x63\x1c\xb8\x06\x0f\x1c" 
	"\xb3\x06\x98\x21\x97\x06\x57\x1c" "\xbb\x06\x12\x1c\xd1\x06\xa4\x21" 
	"\xae\x06\x79\x1c\xbb\x06\x0d\x1c" "\xad\x06\xf9\x21\x8b\x06\xa1\x1c" 
	"\xbc\x06\x39\x1c\xcd\x06\x52\x22" "\xa7\x06\xce\x1c\xb2\x06\x6d\x1c" 
	"\xc8\x06\x49\x22\xa9\x06\xb7\x1c" "\xb3\x06\x5d\x1c\xcc\x06\xbb\x21" 
	"\xae\x06\x49\x1c\xb8\x06\x21\x1c" "\xc1\x06\xa8\x21\xa6\x06\x56\x1c" 
	"\xae\x06\xe4\x1b\xbe\x06\xb1\x21" "\x9a\x06\xa4\x1c\xad\x06\xe0\x1b" 
	"\xcd\x06\xb4\x21\xa7\x06\x81\x1c" "\xb1\x06\xec\x1b\xc1\x06\xe3\x21" 
	"\x9d\x06\x6d\x1c\xbb\x06\x0b\x1c" "\xdd\x06\x4e\x22\xbe\x06\xeb\x1c" 
	"\xb9\x06\x5c\x1c\xd5\x06\x6f\x22" "\xb9\x06\x30\x1d\xcb\x06\xa8\x1c" 
	"\xd4\x06\xe7\x21\xb6\x06\x78\x1c" "\xb9\x06\xe1\x1b\xc1\x06\xc9\x21" 
	"\x9a\x06\x58\x1c\xb1\x06\xbc\x1b" "\xcc\x06\x7c\x21\xb2\x06\x50\x1c" 
	"\xb6\x06\x8c\x1b\xc0\x06\x77\x21" "\xaf\x06\x68\x1c\xb5\x06\x84\x1b" 
	"\xd1\x06\xa2\x21\xb1\x06\x59\x1c" "\xb1\x06\x71\x1b\xbd\x06\xc2\x21" 
	"\x97\x06\x87\x1c\xb2\x06\xa9\x1b" "\xd1\x06\x2a\x22\xb0\x06\xf4\x1c" 
	"\xbc\x06\x2f\x1c\xb2\x06\x56\x22" "\x95\x06\xac\x1c\x9f\x06\x1e\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x9e\x06\x9b\x21\x6f\x06\x66\x1c" "\xb3\x06\xb4\x1b\xaf\x06\x8d\x21" 
	"\x94\x06\x5e\x1c\xb6\x06\x88\x1b" "\x9e\x06\x9a\x21\x87\x06\x59\x1c" 
	"\xa9\x06\x99\x1b\xc7\x06\x9b\x21" "\xb4\x06\x40\x1c\xb2\x06\x84\x1b" 
	"\xcb\x06\xf9\x21\xac\x06\x87\x1c" "\xb2\x06\xa8\x1b\xd6\x06\x87\x22" 
	"\xb9\x06\x0f\x1d\xc1\x06\x1e\x1c" "\xd2\x06\x7e\x22\xb2\x06\xba\x1c" 
	"\xb6\x06\xdd\x1b\xd4\x06\x0e\x22" "\xb0\x06\x7a\x1c\xb7\x06\xa3\x1b" 
	"\xcc\x06\xb4\x21\xad\x06\x4d\x1c" "\xbb\x06\xaa\x1b\xa1\x06\xa2\x21" 
	"\x7f\x06\x56\x1c\xc5\x06\xc1\x1b" "\xd4\x06\xe3\x21\xb9\x06\x4e\x1c" 
	"\xc7\x06\xc5\x1b\xc3\x06\xc5\x21" "\xac\x06\x66\x1c\xb5\x06\xea\x1b" 
	"\xcc\x06\xb2\x22\xb8\x06\xfd\x1c" "\xbd\x06\x79\x1c\xd6\x06\x9a\x22" 
	"\xbb\x06\xfd\x1c\xc7\x06\x57\x1c" "\xce\x06\x09\x22\xb3\x06\xbc\x1c" 
	"\xaf\x06\xe4\x1b\xcb\x06\xc5\x21" "\xb1\x06\x6d\x1c\xc9\x06\xfc\x1b" 
	"\xd7\x06\xb7\x21\xbc\x06\x8a\x1c" "\xc1\x06\xe2\x1b\xc2\x06\xab\x21" 
	"\xac\x06\x7c\x1c\xb7\x06\xf0\x1b" "\xc1\x06\xe7\x21\xa9\x06\x9d\x1c" 
	"\xbb\x06\x12\x1c\xd7\x06\x7e\x22" "\xb5\x06\xf7\x1c\xba\x06\x54\x1c" 
	"\xcb\x06\x89\x22\xb7\x06\x1b\x1d" "\xc4\x06\x51\x1c\xcd\x06\x6f\x22" 
	"\x97\x06\x93\x1c\xb7\x06\xd4\x1b" "\xb2\x06\x11\x22\x88\x06\x63\x1c" 
	"\xaf\x06\xe1\x1b\xaf\x06\xcc\x21" "\x9b\x06\x61\x1c\xc1\x06\xa3\x1b" 
	"\xc3\x06\x13\x22\xa8\x06\x61\x1c" "\xb3\x06\xdd\x1b\xae\x06\x5a\x22" 
	"\x8a\x06\x92\x1c\xa7\x06\x03\x1c" "\xc9\x06\x6f\x22\xa6\x06\xdb\x1c" 
	"\xbd\x06\x53\x1c\xd0\x06\xb2\x22" "\xb7\x06\x0e\x1d\xb8\x06\xaf\x1c" 
	"\xb2\x06\x19\x22\x90\x06\x6b\x1c" "\xb1\x06\x4b\x1c\xbe\x06\x9a\x21" 
	"\xa5\x06\x76\x1c\xb6\x06\xdf\x1b" "\xc3\x06\xa3\x21\xa0\x06\x23\x1c" 
	"\xc3\x06\xd9\x1b\xc5\x06\xa0\x21" "\xb3\x06\x14\x1c\xb4\x06\xef\x1b" 
	"\xcd\x06\xaf\x21\xa2\x06\x44\x1c" "\xb2\x06\xe7\x1b\xba\x06\x0b\x22" 
	"\x90\x06\x83\x1c\xc2\x06\xf1\x1b" "\xb5\x06\xf3\x22\x98\x06\xd6\x1c" 
	"\xa3\x06\x78\x1c\xc5\x06\x3c\x22" "\xa8\x06\x6d\x1c\xb5\x06\xcd\x1b" 
	"\xa5\x06\xc5\x21\x83\x06\x21\x1c" "\xbc\x06\x95\x1b\xd1\x06\xa5\x21" 
	"\xa9\x06\x15\x1c\xb1\x06\x70\x1b" "\xbd\x06\x96\x21\xb0\x06\x09\x1c" 
	"\xb3\x06\x4e\x1b\xc0\x06\x82\x21" "\xa3\x06\xd8\x1b\xba\x06\x2f\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xd2\x06\xd7\x21\xa5\x06\xf6\x1b" "\xc1\x06\x19\x1b\xd6\x06\xe5\x21" 
	"\xb5\x06\x69\x1c\xb7\x06\x3f\x1b" "\xcc\x06\xca\x21\xa8\x06\x3e\x1c" 
	"\xb6\x06\xa6\x1b\x96\x06\xa7\x21" "\x67\x06\x1e\x1c\xad\x06\x55\x1b" 
	"\xc6\x06\x73\x21\xa1\x06\xf3\x1b" "\xb7\x06\x44\x1b\xbe\x06\x77\x21" 
	"\xa7\x06\xf8\x1b\xbe\x06\x63\x1b" "\xbb\x06\xbc\x21\x9b\x06\x08\x1c" 
	"\xb4\x06\x59\x1b\xc3\x06\x01\x22" "\x9d\x06\x0b\x1c\xb5\x06\x93\x1b" 
	"\xcd\x06\x7e\x22\xa1\x06\x88\x1c" "\xb8\x06\xe5\x1b\xc6\x06\x39\x22" 
	"\xa4\x06\xad\x1c\xbe\x06\x1c\x1c" "\xba\x06\x95\x21\x8a\x06\x15\x1c" 
	"\xb6\x06\x82\x1b\xbf\x06\x8a\x21" "\x96\x06\x34\x1c\xb3\x06\xa6\x1b" 
	"\xc6\x06\x46\x21\xaa\x06\xfd\x1b" "\xb9\x06\x8b\x1b\xca\x06\x18\x21" 
	"\xb3\x06\xed\x1b\xb3\x06\x48\x1b" "\xce\x06\x50\x21\xac\x06\x10\x1c" 
	"\xb5\x06\x56\x1b\xc9\x06\xe2\x21" "\xaa\x06\x63\x1c\xb1\x06\xa1\x1b" 
	"\xc3\x06\xff\x21\xa5\x06\xcf\x1c" "\xb9\x06\xc6\x1b\xc4\x06\x81\x21" 
	"\x9c\x06\xfa\x1b\xbb\x06\x68\x1b" "\xb9\x06\x59\x21\x99\x06\xdb\x1b" 
	"\xb1\x06\x6b\x1b\xd3\x06\x27\x21" "\xb4\x06\xf5\x1b\xb6\x06\x75\x1b" 
	"\xa0\x06\x3f\x21\x8a\x06\x0a\x1c" "\xac\x06\x7c\x1b\xc3\x06\x68\x21" 
	"\x95\x06\x2f\x1c\xc3\x06\x96\x1b" "\xbc\x06\x95\x21\xb0\x06\x1d\x1c" 
	"\xb6\x06\xdb\x1b\xbc\x06\xf2\x21" "\xa2\x06\x8d\x1c\xb3\x06\x19\x1c" 
	"\xb1\x06\xac\x21\x97\x06\x60\x1c" "\xb9\x06\xc4\x1b\xd1\x06\x49\x21" 
	"\xae\x06\xea\x1b\xb6\x06\x6d\x1b" "\xd9\x06\x6b\x21\xab\x06\xdb\x1b" 
	"\xb9\x06\x5a\x1b\xc3\x06\xa2\x21" "\xaa\x06\xff\x1b\xb1\x06\x16\x1b" 
	"\xc4\x06\x8d\x20\xaa\x06\xb2\x1b" "\xa5\x06\x8a\x1a\x53\x07\x12\x7c" 
	"\x42\x07\x1b\x69\x42\x07\x60\x64" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\xd4\x08\xff\xff" 
	"\xdc\x08\xff\xff\xb8\x06\x6d\x20" "\x9a\x06\x2c\x1b\xa0\x06\x19\x1a" 
	"\xc0\x06\x78\x21\x95\x06\x93\x1b" "\x9c\x06\xce\x1a\xc7\x06\x7d\x21" 
	"\x94\x06\xa8\x1b\xa7\x06\x08\x1b" "\xbd\x06\x42\x21\xa7\x06\xe3\x1b" 
	"\xa8\x06\xef\x1a\xc2\x06\x42\x21" "\xa0\x06\x0d\x1c\xaf\x06\x21\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc4\x06\x21\x21\xa4\x06\xd7\x1b" "\xa2\x06\x24\x1b\x9f\x06\x3d\x21" 
	"\x85\x06\xd3\x1b\xa0\x06\x1a\x1b" "\xbe\x06\x1a\x21\xa0\x06\xbc\x1b" 
	"\xa6\x06\x1b\x1b\xb7\x06\x38\x21" "\x8d\x06\x9d\x1b\xa6\x06\x12\x1b" 
	"\xb7\x06\x34\x21\x98\x06\x8a\x1b" "\xa5\x06\x1a\x1b\xbe\x06\x34\x21" 
	"\x9d\x06\xbb\x1b\xa6\x06\xe8\x1a" "\xc0\x06\x40\x21\x8f\x06\xd0\x1b" 
	"\xa8\x06\x24\x1b\xa8\x06\x19\x21" "\xa0\x06\xdb\x1b\xa3\x06\xf6\x1a" 
	"\xb7\x06\x3d\x21\x8c\x06\xc2\x1b" "\x9f\x06\xfd\x1a\x99\x06\x27\x21" 
	"\x7c\x06\xc2\x1b\xb1\x06\xe4\x1a" "\xb1\x06\xf8\x20\x95\x06\xc9\x1b" 
	"\xa4\x06\xf2\x1a\xc4\x06\x05\x21" "\x94\x06\xa2\x1b\xa0\x06\xfd\x1a" 
	"\xb2\x06\x58\x21\x8e\x06\x68\x1c" "\xae\x06\x03\x1b\xb7\x06\x47\x21" 
	"\xa1\x06\xed\x1b\xae\x06\xf4\x1a" "\xc5\x06\x49\x21\xa4\x06\xb9\x1b" 
	"\xb2\x06\xdf\x1a\xb9\x06\x12\x21" "\xa2\x06\xba\x1b\xa8\x06\xc9\x1a" 
	"\xa5\x06\x2f\x21\x7a\x06\x94\x1b" "\xa2\x06\xdf\x1a\xa7\x06\x54\x21" 
	"\x80\x06\x95\x1b\xb5\x06\xeb\x1a" "\xb9\x06\x05\x21\x97\x06\x91\x1b" 
	"\xae\x06\xce\x1a\xb6\x06\x2c\x21" "\x95\x06\x77\x1b\xb0\x06\xd3\x1a" 
	"\xb2\x06\x44\x21\x8c\x06\x8d\x1b" "\xaa\x06\xa9\x1a\xc1\x06\x36\x21" 
	"\x9d\x06\x7c\x1b\x99\x06\xde\x1a" "\xb0\x06\x2e\x21\x8c\x06\x86\x1b" 
	"\xa0\x06\xb8\x1a\xa7\x06\x80\x21" "\x88\x06\x84\x1b\x97\x06\xa7\x1a" 
	"\xb8\x06\x5d\x21\x98\x06\x8e\x1b" "\xa9\x06\xca\x1a\xc3\x06\x4b\x21" 
	"\x89\x06\x79\x1b\x9b\x06\xcb\x1a" "\xb7\x06\x4f\x21\x86\x06\x8c\x1b" 
	"\x9f\x06\xb1\x1a\xb3\x06\x66\x21" "\x84\x06\x7f\x1b\x94\x06\x9f\x1a" 
	"\xb5\x06\x43\x21\xa0\x06\x86\x1b" "\xb0\x06\xd9\x1a\x86\x06\x0e\x21" 
	"\x66\x06\x8f\x1b\xaa\x06\xc2\x1a" "\xbd\x06\xfd\x20\x95\x06\x5c\x1b" 
	"\xad\x06\xe9\x1a\xbb\x06\x36\x21" "\x9f\x06\x7e\x1b\x9f\x06\xcb\x1a" 
	"\xaa\x06\x40\x21\x90\x06\x6c\x1b" "\xa7\x06\xc9\x1a\xcc\x06\x47\x21" 
	"\xa3\x06\x75\x1b\x9f\x06\xeb\x1a" "\xba\x06\x0b\x21\xa7\x06\x7b\x1b" 
	"\xa8\x06\xcb\x1a\xbf\x06\x22\x21" "\x9a\x06\x5f\x1b\xa4\x06\xf6\x1a" 
	"\xc5\x06\x29\x21\x90\x06\x6d\x1b" "\xa7\x06\x00\x1b\xa0\x06\xf2\x20" 
	"\x7f\x06\x96\x1b\xa7\x06\xe9\x1a" "\xc0\x06\x42\x21\x9b\x06\x64\x1b" 
	"\xae\x06\xfb\x1a\x98\x06\x94\x21" "\x6a\x06\x86\x1b\xa1\x06\xab\x1a" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb1\x06\x4c\x21\x82\x06\x91\x1b" "\x9e\x06\xd0\x1a\xc2\x06\x6c\x21" 
	"\x90\x06\xa9\x1b\xa1\x06\xae\x1a" "\xcd\x06\x44\x21\x9e\x06\x8e\x1b" 
	"\xaa\x06\xa3\x1a\xbb\x06\x1c\x21" "\x99\x06\x80\x1b\xa7\x06\xb2\x1a" 
	"\xaf\x06\x12\x21\x85\x06\x98\x1b" "\xaf\x06\xdf\x1a\xb0\x06\xf3\x20" 
	"\x9c\x06\x80\x1b\xa6\x06\xbe\x1a" "\x96\x06\x00\x21\x78\x06\x8e\x1b" 
	"\x99\x06\xc7\x1a\xce\x06\x2c\x21" "\x9e\x06\x7c\x1b\xa2\x06\xc7\x1a" 
	"\xb9\x06\xda\x20\x91\x06\x5a\x1b" "\xa1\x06\xb5\x1a\xb1\x06\xb7\x20" 
	"\x83\x06\x87\x1b\xa4\x06\x86\x1a" "\xad\x06\xfd\x20\x94\x06\xa5\x1b" 
	"\xa5\x06\xcd\x1a\xbd\x06\x36\x21" "\x96\x06\x91\x1b\x9e\x06\xaf\x1a" 
	"\xa3\x06\x00\x21\x8d\x06\x8b\x1b" "\xa0\x06\xb9\x1a\xb0\x06\xca\x20" 
	"\x90\x06\x9f\x1b\xa6\x06\xb3\x1a" "\xba\x06\x00\x21\x97\x06\x68\x1b" 
	"\xac\x06\xc4\x1a\xc2\x06\x1d\x21" "\x8c\x06\x39\x1b\xa0\x06\xa5\x1a" 
	"\x9d\x06\x8f\x21\x63\x06\x85\x1b" "\x96\x06\xab\x1a\xb4\x06\xdc\x20" 
	"\x98\x06\x7d\x1b\xa0\x06\xa8\x1a" "\xc4\x06\xdf\x20\x99\x06\x90\x1b" 
	"\x99\x06\xaa\x1a\xa9\x06\x07\x21" "\x8b\x06\x7b\x1b\x9d\x06\xac\x1a" 
	"\xbc\x06\x17\x21\x9f\x06\x77\x1b" "\xa6\x06\xb8\x1a\xb1\x06\xe9\x20" 
	"\x8e\x06\x72\x1b\x9f\x06\xc9\x1a" "\xad\x06\x2a\x21\x86\x06\x95\x1b" 
	"\x9b\x06\xc4\x1a\xbb\x06\x18\x21" "\x8c\x06\x8d\x1b\xa4\x06\xd0\x1a" 
	"\xbe\x06\x18\x21\x98\x06\xb4\x1b" "\xae\x06\x22\x1b\xad\x06\x2a\x21" 
	"\x9c\x06\x9e\x1b\xbf\x06\x13\x1b" "\xc1\x06\x10\x21\x9a\x06\x9c\x1b" 
	"\xa9\x06\xd4\x1a\xac\x06\xca\x20" "\xb1\x06\xb1\x1b\xa0\x06\xcf\x1a" 
	"\x86\x06\x66\x21\x59\x06\xb9\x1b" "\x81\x06\xfd\x1a\xb4\x06\x5a\x21" 
	"\x7a\x06\xd2\x1b\xa2\x06\xeb\x1a" "\xb6\x06\x26\x21\x9c\x06\x06\x1c" 
	"\xac\x06\x04\x1b\xbe\x06\x51\x21" "\xa7\x06\xf8\x1b\xa6\x06\x3e\x1b" 
	"\xbd\x06\x2a\x21\xad\x06\xd9\x1b" "\xa8\x06\x35\x1b\xbe\x06\x37\x21" 
	"\xa0\x06\xbc\x1b\xaf\x06\x23\x1b" "\xbd\x06\x33\x21\x85\x06\xb3\x1b" 
	"\xaf\x06\x12\x1b\xcd\x06\x0c\x21" "\x9e\x06\x87\x1b\xac\x06\xe9\x1a" 
	"\xcb\x06\x33\x21\xa9\x06\x94\x1b" "\xa8\x06\xff\x1a\xad\x06\xfe\x20" 
	"\x83\x06\xb1\x1b\xa6\x06\xcc\x1a" "\xb9\x06\x16\x21\xa1\x06\xbf\x1b" 
	"\x9f\x06\xda\x1a\xc8\x06\x2c\x21" "\x9b\x06\x87\x1b\xb1\x06\x06\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb6\x06\x16\x21\xad\x06\xa7\x1b" "\xa3\x06\x05\x1b\xbb\x06\x19\x21" 
	"\xa1\x06\xa0\x1b\xac\x06\xf8\x1a" "\xc6\x06\x27\x21\xa5\x06\xa0\x1b" 
	"\xaa\x06\x21\x1b\xbc\x06\x53\x21" "\x99\x06\xb8\x1b\xa7\x06\xf8\x1a" 
	"\xbb\x06\x6b\x21\x93\x06\x9c\x1b" "\xa6\x06\xdf\x1a\xd3\x06\x7d\x21" 
	"\x98\x06\x89\x1b\xab\x06\xd6\x1a" "\xb9\x06\x32\x21\x99\x06\xf6\x1b" 
	"\xb0\x06\xe6\x1a\xba\x06\x2c\x21" "\x8c\x06\xc5\x1b\xaf\x06\xf7\x1a" 
	"\xc4\x06\x00\x21\xa5\x06\xa7\x1b" "\xb1\x06\x19\x1b\xa9\x06\x11\x21" 
	"\x8f\x06\xd8\x1b\xae\x06\xf8\x1a" "\xbb\x06\x63\x21\x99\x06\xee\x1b" 
	"\xa5\x06\x08\x1b\xc5\x06\x9f\x21" "\xa5\x06\x25\x1c\xae\x06\x26\x1b" 
	"\xcd\x06\xb2\x21\xa6\x06\x1a\x1c" "\xb2\x06\x29\x1b\xa3\x06\x90\x21" 
	"\x75\x06\xdf\x1b\xa7\x06\xf1\x1a" "\xb0\x06\x58\x21\x93\x06\xf2\x1b" 
	"\xa4\x06\xce\x1a\xc2\x06\x37\x21" "\x8c\x06\xa7\x1b\xae\x06\xcf\x1a" 
	"\xc8\x06\x09\x21\xa6\x06\xc5\x1b" "\xaf\x06\xf2\x1a\xbc\x06\x13\x21" 
	"\xaa\x06\xdb\x1b\xa9\x06\xe8\x1a" "\x96\x06\xa0\x21\x6e\x06\x20\x1c" 
	"\xa6\x06\x01\x1b\xcd\x06\xd1\x21" "\xb2\x06\xf4\x1b\xad\x06\x1a\x1b" 
	"\xb6\x06\x9e\x21\xa2\x06\xe8\x1b" "\xbb\x06\x39\x1b\xc9\x06\x81\x21" 
	"\xb2\x06\xf8\x1b\xb2\x06\x33\x1b" "\x93\x06\x72\x21\x69\x06\xea\x1b" 
	"\xb2\x06\x14\x1b\xc3\x06\x68\x21" "\x9f\x06\xa6\x1b\xa8\x06\xf1\x1a" 
	"\xc3\x06\x43\x21\xa6\x06\xe6\x1b" "\xa9\x06\x17\x1b\xb3\x06\x12\x21" 
	"\x8f\x06\xd0\x1b\xaf\x06\x02\x1b" "\xc4\x06\x02\x21\xa2\x06\xc5\x1b" 
	"\xab\x06\xe2\x1a\xc0\x06\x0a\x21" "\xa2\x06\xec\x1b\xa7\x06\xfa\x1a" 
	"\xa9\x06\x45\x21\x90\x06\xcd\x1b" "\xaf\x06\x3a\x1b\xc9\x06\x43\x21" 
	"\xae\x06\xe6\x1b\xb3\x06\x18\x1b" "\xb8\x06\x28\x21\x8e\x06\xd8\x1b" 
	"\xad\x06\x09\x1b\xb5\x06\xda\x20" "\x99\x06\xc6\x1b\xa8\x06\xed\x1a" 
	"\xaf\x06\x22\x21\x93\x06\xaa\x1b" "\x9b\x06\xd3\x1a\xb3\x06\x0c\x21" 
	"\x88\x06\x8d\x1b\x99\x06\x9a\x1a" "\xbe\x06\xe9\x20\x9e\x06\xbe\x1b" 
	"\xaf\x06\xcd\x1a\xb5\x06\xe2\x20" "\x8c\x06\xba\x1b\x9d\x06\xec\x1a" 
	"\xab\x06\xed\x20\x78\x06\xba\x1b" "\x9e\x06\xdb\x1a\xb5\x06\xc7\x20" 
	"\x9b\x06\xdc\x1b\xa6\x06\xe8\x1a" "\xa7\x06\xd6\x20\x7e\x06\xe3\x1b" 
	"\x9b\x06\xfc\x1a\xb7\x06\x19\x21" "\x87\x06\xdb\x1b\xa9\x06\x03\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x92\x06\x4a\x21\x75\x06\x20\x1c" "\x78\x06\x05\x1b\xb2\x06\xef\x20" 
	"\x9a\x06\xe1\x1b\xa3\x06\x06\x1b" "\xa7\x06\xe5\x20\x86\x06\xbf\x1b" 
	"\xa4\x06\xfd\x1a\xa1\x06\xdb\x20" "\x93\x06\xc7\x1b\x9e\x06\xf3\x1a" 
	"\xb4\x06\x29\x21\x95\x06\xf0\x1b" "\xa2\x06\x1a\x1b\xaf\x06\x82\x21" 
	"\x91\x06\x03\x1c\x9b\x06\xfd\x1a" "\xb4\x06\x63\x21\x8e\x06\x08\x1c" 
	"\x98\x06\x06\x1b\x8d\x06\xb4\x21" "\x61\x06\x37\x1c\x9e\x06\xfb\x1a" 
	"\xb5\x06\x7a\x21\x9e\x06\x21\x1c" "\xa5\x06\xff\x1a\xbf\x06\x0f\x21" 
	"\x9e\x06\xc4\x1b\x96\x06\xf3\x1a" "\xb2\x06\xf2\x20\x90\x06\xeb\x1b" 
	"\x9d\x06\xc9\x1a\xb0\x06\x00\x21" "\x91\x06\xc2\x1b\x97\x06\xec\x1a" 
	"\x85\x06\x5b\x21\x5b\x06\xef\x1b" "\x7b\x06\x39\x1b\xc7\x06\x6e\x21" 
	"\x8a\x06\xd0\x1b\x96\x06\x14\x1b" "\xb4\x06\x89\x21\x85\x06\xe7\x1b" 
	"\xa2\x06\x0e\x1b\xb3\x06\x63\x21" "\x96\x06\x1a\x1c\x92\x06\xcd\x1a" 
	"\xb2\x06\x37\x21\x85\x06\xfe\x1b" "\x90\x06\xd0\x1a\x88\x06\x69\x21" 
	"\x5a\x06\xe6\x1b\x8c\x06\xb9\x1a" "\xbc\x06\x0e\x21\x91\x06\xc8\x1b" 
	"\xa0\x06\xd7\x1a\xc2\x06\x26\x21" "\xa1\x06\xd7\x1b\x96\x06\xd7\x1a" 
	"\x92\x06\x35\x21\x6b\x06\xfe\x1b" "\x89\x06\xf1\x1a\xb5\x06\x78\x21" 
	"\x88\x06\x18\x1c\xa0\x06\x05\x1b" "\xae\x06\x9f\x21\x8f\x06\x6f\x1c" 
	"\x97\x06\x18\x1b\xb9\x06\x86\x21" "\x90\x06\xfd\x1b\xa1\x06\x20\x1b" 
	"\xb3\x06\x11\x21\x8c\x06\xf1\x1b" "\x96\x06\x00\x1b\x92\x06\xe8\x20" 
	"\x6c\x06\xf3\x1b\x8a\x06\xed\x1a" "\x83\x06\x47\x21\x4d\x06\xe1\x1b" 
	"\x8f\x06\xdf\x1a\x9f\x06\xb5\x20" "\xa1\x06\xe9\x1b\x97\x06\xe8\x1a" 
	"\xb2\x06\xfe\x20\xa2\x06\xdb\x1b" "\x8b\x06\xeb\x1a\xa7\x06\x64\x21" 
	"\x7a\x06\xec\x1b\xa4\x06\xe7\x1a" "\xae\x06\x8c\x21\x7b\x06\x03\x1c" 
	"\x8d\x06\xfd\x1a\xb7\x06\x75\x21" "\x91\x06\xd9\x1b\x98\x06\x06\x1b" 
	"\xb4\x06\x9a\x21\x8f\x06\xda\x1b" "\x98\x06\xff\x1a\xbc\x06\x18\x21" 
	"\x98\x06\xca\x1b\x98\x06\xe1\x1a" "\xb4\x06\x07\x21\x91\x06\xe0\x1b" 
	"\x97\x06\xda\x1a\xb0\x06\x00\x21" "\x8f\x06\xc5\x1b\x9e\x06\xec\x1a" 
	"\xae\x06\x45\x21\x8e\x06\xea\x1b" "\xa4\x06\xd7\x1a\x7a\x06\xfd\x20" 
	"\x58\x06\x14\x1c\x98\x06\x02\x1b" "\x8f\x06\x03\x21\x5e\x06\x0f\x1c" 
	"\x9f\x06\x1c\x1b\xb6\x06\x3c\x21" "\x91\x06\xe9\x1b\xa0\x06\x0b\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa9\x06\x47\x21\x84\x06\xeb\x1b" "\x97\x06\x0d\x1b\xab\x06\x62\x21" 
	"\x97\x06\x03\x1c\x9c\x06\x3a\x1b" "\xb2\x06\x60\x21\x90\x06\x01\x1c" 
	"\x9f\x06\x11\x1b\xbd\x06\xaf\x21" "\x9a\x06\x2a\x1c\x8c\x06\x07\x1b" 
	"\xc2\x06\xa0\x21\x92\x06\x2d\x1c" "\x9d\x06\x26\x1b\x9b\x06\x82\x21" 
	"\x82\x06\x16\x1c\xa0\x06\x12\x1b" "\xb2\x06\x6e\x21\x91\x06\xfe\x1b" 
	"\x9a\x06\x10\x1b\x55\x06\xc7\x21" "\x2d\x06\x12\x1c\x9d\x06\xff\x1a" 
	"\xa4\x06\x63\x21\x71\x06\xeb\x1b" "\x8d\x06\xf4\x1a\xb5\x06\x56\x21" 
	"\x87\x06\xe5\x1b\x90\x06\x05\x1b" "\x9b\x06\x71\x21\x6a\x06\x25\x1c" 
	"\x8e\x06\x34\x1b\xb9\x06\xab\x21" "\x95\x06\x2b\x1c\x9a\x06\x09\x1b" 
	"\xa8\x06\x85\x21\x8b\x06\x2a\x1c" "\x92\x06\x09\x1b\x97\x06\x85\x21" 
	"\x5e\x06\xdf\x1b\x8a\x06\xed\x1a" "\x94\x06\x56\x21\x5a\x06\xc9\x1b" 
	"\x9f\x06\xcc\x1a\x9b\x06\x4a\x21" "\x75\x06\xce\x1b\x97\x06\xcf\x1a" 
	"\xad\x06\x66\x21\x84\x06\xf5\x1b" "\x9c\x06\x0e\x1b\xa7\x06\x9a\x21" 
	"\x88\x06\x06\x1c\x9f\x06\x24\x1b" "\xb9\x06\x04\x22\x91\x06\x38\x1c" 
	"\x93\x06\x4b\x1b\xb7\x06\xf6\x21" "\x99\x06\x0c\x1c\x9f\x06\x2f\x1b" 
	"\xb3\x06\x82\x21\x8c\x06\xfe\x1b" "\xa1\x06\x3b\x1b\xac\x06\x88\x21" 
	"\x93\x06\x08\x1c\x9c\x06\x29\x1b" "\xa2\x06\xc2\x21\x75\x06\x23\x1c" 
	"\x9b\x06\x4c\x1b\xb0\x06\xc0\x21" "\x88\x06\x03\x1c\x9f\x06\x85\x1b" 
	"\xba\x06\xdf\x21\x98\x06\x6d\x1c" "\x9a\x06\x4d\x1b\x99\x06\x5d\x22" 
	"\x81\x06\x95\x1c\x94\x06\x5d\x1b" "\xb5\x06\x20\x22\x82\x06\x6a\x1c" 
	"\xa0\x06\x77\x1b\x63\x06\x43\x22" "\x2e\x06\x70\x1c\xa3\x06\x5e\x1b" 
	"\xb0\x06\xe3\x21\x83\x06\x2e\x1c" "\x95\x06\x54\x1b\xba\x06\xab\x21" 
	"\x8f\x06\x44\x1c\xa1\x06\x40\x1b" "\xa9\x06\xf9\x21\x86\x06\x26\x1c" 
	"\x95\x06\x4f\x1b\xc8\x06\x4a\x22" "\x9a\x06\x4c\x1c\xa4\x06\x64\x1b" 
	"\xb6\x06\x0d\x22\xa0\x06\x92\x1c" "\xa5\x06\x8c\x1b\x9d\x06\x42\x22" 
	"\x82\x06\x71\x1c\x99\x06\x3a\x1b" "\xa3\x06\x0c\x22\x71\x06\x41\x1c" 
	"\xa2\x06\x68\x1b\x6f\x06\xfa\x21" "\x42\x06\x38\x1c\x9d\x06\x4b\x1b" 
	"\xa8\x06\xb7\x21\x93\x06\x44\x1c" "\xa0\x06\x3c\x1b\xb4\x06\xff\x21" 
	"\x82\x06\x3a\x1c\xa0\x06\x6d\x1b" "\xa4\x06\x0d\x22\x77\x06\x73\x1c" 
	"\x8d\x06\x71\x1b\x91\x06\x6f\x22" "\x6e\x06\x4d\x1c\xa2\x06\x70\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xad\x06\xac\x22\x8c\x06\x83\x1c" "\xa9\x06\xc6\x1b\xb2\x06\x08\x22" 
	"\x8e\x06\x70\x1c\x9b\x06\x80\x1b" "\xbf\x06\x0c\x22\x8d\x06\x32\x1c" 
	"\xa0\x06\x8e\x1b\xae\x06\xe5\x21" "\x85\x06\x27\x1c\xa2\x06\x6e\x1b" 
	"\xa7\x06\xd3\x21\x98\x06\x33\x1c" "\xa1\x06\x4f\x1b\xbe\x06\xe0\x21" 
	"\x8f\x06\x32\x1c\x9f\x06\x74\x1b" "\xae\x06\x02\x22\x91\x06\x5f\x1c" 
	"\x96\x06\x8b\x1b\x9a\x06\x38\x22" "\x77\x06\x7b\x1c\x84\x06\x77\x1b" 
	"\x80\x06\x06\x22\x64\x06\x76\x1c" "\x91\x06\x89\x1b\xa1\x06\xfc\x21" 
	"\x8c\x06\x4d\x1c\x9a\x06\x86\x1b" "\xac\x06\x92\x21\x8c\x06\x47\x1c" 
	"\xa8\x06\x5b\x1b\xbb\x06\xd3\x21" "\x9b\x06\x78\x1d\xa1\x06\x78\x1b" 
	"\xa3\x06\xda\x21\x7a\x06\x13\x1c" "\x8f\x06\x51\x1b\xb6\x06\xa2\x21" 
	"\x99\x06\x08\x1c\xa1\x06\x60\x1b" "\xb3\x06\xe9\x21\x8e\x06\x84\x1c" 
	"\xa9\x06\x71\x1b\xb6\x06\xf5\x21" "\x8b\x06\x32\x1c\x9b\x06\x84\x1b" 
	"\xb8\x06\xca\x21\x8e\x06\xf1\x1b" "\x8f\x06\x54\x1b\x98\x06\xd3\x21" 
	"\x76\x06\x78\x1c\x98\x06\x51\x1b" "\xac\x06\xbd\x21\x82\x06\xfb\x1b" 
	"\x9a\x06\x52\x1b\x9e\x06\x90\x21" "\x7d\x06\x20\x1c\xa4\x06\x54\x1b" 
	"\xb8\x06\x94\x21\xa6\x06\x30\x1c" "\x9f\x06\x37\x1b\xb4\x06\x53\x22" 
	"\x80\x06\x2e\x1c\x9e\x06\x72\x1b" "\xc2\x06\xf8\x21\x96\x06\x3c\x1c" 
	"\x9b\x06\x66\x1b\x92\x06\xbd\x21" "\x64\x06\x1f\x1c\xa1\x06\x3e\x1b" 
	"\xba\x06\x9c\x21\x9e\x06\x08\x1c" "\xa9\x06\x33\x1b\xa7\x06\xab\x21" 
	"\x7d\x06\x04\x1c\x8a\x06\x1f\x1b" "\xb9\x06\x9d\x21\x9c\x06\x21\x1c" 
	"\x95\x06\x29\x1b\x96\x06\xb7\x21" "\x7b\x06\xf7\x1b\x98\x06\xef\x1a" 
	"\x9d\x06\xd8\x21\x85\x06\x46\x1c" "\x9f\x06\x04\x1b\xbf\x06\xe0\x21" 
	"\x94\x06\x0e\x1c\x9f\x06\xc1\x1a" "\xb0\x06\xd4\x21\x77\x06\xdf\x1b" 
	"\x89\x06\x83\x1a\xb8\x06\x4d\x21" "\x9a\x06\x85\x1b\x93\x06\x5b\x1a" 
	"\xb2\x06\x46\x21\x8c\x06\x89\x1b" "\x9c\x06\xb2\x1a\xa6\x06\x74\x21" 
	"\x83\x06\xb4\x1b\x9e\x06\xe2\x1a" "\xbb\x06\x56\x21\x94\x06\xb8\x1b" 
	"\xa1\x06\xeb\x1a\xa9\x06\x80\x21" "\x78\x06\xa3\x1b\x92\x06\xe3\x1a" 
	"\xaa\x06\xbc\x21\x78\x06\xbf\x1b" "\x92\x06\xd1\x1a\xaf\x06\x5f\x21" 
	"\x9e\x06\xbb\x1b\x8f\x06\xfc\x1a" "\xb4\x06\x4f\x21\x98\x06\xdf\x1b" 
	"\x9f\x06\xe9\x1a\xab\x06\x49\x21" "\x8b\x06\xd2\x1b\x93\x06\x28\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb1\x06\x5f\x21\x97\x06\xca\x1b" "\xa0\x06\x02\x1b\x98\x06\x52\x21" 
	"\x75\x06\xdb\x1b\x9a\x06\x17\x1b" "\xb2\x06\x51\x21\x92\x06\xf2\x1b" 
	"\x9c\x06\x1e\x1b\xaf\x06\x97\x21" "\x9d\x06\x05\x1c\xa1\x06\x29\x1b" 
	"\xba\x06\x95\x21\x9c\x06\xf5\x1b" "\x97\x06\x27\x1b\xa2\x06\x92\x21" 
	"\x7b\x06\x16\x1c\x93\x06\x69\x1b" "\xb6\x06\x5d\x21\x7d\x06\xc5\x1b" 
	"\x9d\x06\x2d\x1b\xa6\x06\x60\x21" "\x82\x06\xe7\x1b\xa5\x06\x1f\x1b" 
	"\xab\x06\x4a\x21\x88\x06\xc6\x1b" "\xa8\x06\x44\x1b\xb6\x06\x74\x21" 
	"\x84\x06\xd0\x1b\x99\x06\x2e\x1b" "\xbc\x06\x9e\x21\x98\x06\xd6\x1b" 
	"\xa8\x06\x43\x1b\xae\x06\xf7\x21" "\x83\x06\xdd\x1b\x94\x06\x64\x1b" 
	"\x93\x06\xbf\x21\x6f\x06\xe6\x1b" "\x98\x06\x23\x1b\xa3\x06\x60\x21" 
	"\x85\x06\xe6\x1b\x97\x06\x10\x1b" "\xc4\x06\x68\x21\x90\x06\xc8\x1b" 
	"\xa5\x06\x1e\x1b\xbd\x06\x75\x21" "\x8e\x06\xb4\x1b\xa2\x06\x36\x1b" 
	"\x9e\x06\x4f\x21\x88\x06\xcf\x1b" "\x90\x06\x21\x1b\xaa\x06\xc5\x21" 
	"\x81\x06\xf3\x1b\x99\x06\x4c\x1b" "\xa7\x06\xc2\x21\x8d\x06\xf4\x1b" 
	"\xa0\x06\x28\x1b\xb2\x06\x5a\x21" "\x8b\x06\xe4\x1b\x99\x06\x40\x1b" 
	"\xac\x06\x5b\x21\x9a\x06\xd7\x1b" "\x9e\x06\x43\x1b\x9d\x06\x6c\x21" 
	"\x87\x06\xec\x1b\xa6\x06\x4e\x1b" "\xa8\x06\x63\x21\x79\x06\xd3\x1b" 
	"\x9c\x06\x38\x1b\xbb\x06\x97\x21" "\x8c\x06\xab\x1b\x9b\x06\x22\x1b" 
	"\xae\x06\x64\x21\x7f\x06\xd0\x1b" "\x8b\x06\xfd\x1a\xb6\x06\x44\x21" 
	"\xa3\x06\x0e\x1c\x91\x06\xfe\x1a" "\x91\x06\x95\x21\x65\x06\xf2\x1b" 
	"\x9a\x06\x35\x1b\xbc\x06\x6c\x21" "\x9a\x06\xca\x1b\x97\x06\x37\x1b" 
	"\xab\x06\x66\x21\x83\x06\xcb\x1b" "\xab\x06\x3e\x1b\xb8\x06\x5f\x21" 
	"\x86\x06\xcd\x1b\x9e\x06\x42\x1b" "\x9d\x06\x7c\x21\x7c\x06\xd8\x1b" 
	"\x9d\x06\x61\x1b\xa1\x06\x96\x21" "\x8f\x06\xe0\x1b\xa3\x06\x6d\x1b" 
	"\xb0\x06\xf6\x21\x9a\x06\x30\x1c" "\x99\x06\x70\x1b\xba\x06\xf9\x21" 
	"\x95\x06\xff\x1b\xa5\x06\x77\x1b" "\xb6\x06\xa3\x21\x94\x06\xeb\x1b" 
	"\xa3\x06\x90\x1b\x95\x06\xc0\x21" "\x67\x06\x11\x1c\x98\x06\x75\x1b" 
	"\xb6\x06\xe0\x21\x8a\x06\xec\x1b" "\xa6\x06\x73\x1b\xba\x06\xc9\x21" 
	"\x95\x06\x17\x1c\x9e\x06\x66\x1b" "\xb7\x06\xd1\x21\x8e\x06\x2a\x1c" 
	"\xa8\x06\x94\x1b\xa3\x06\x5d\x22" "\x82\x06\x7a\x1c\x9d\x06\xa7\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x97\x06\xe8\x21\x8d\x06\x2c\x1c" "\xa7\x06\x7a\x1b\xa9\x06\xe2\x21" 
	"\x80\x06\xf8\x1b\xac\x06\x88\x1b" "\xa9\x06\xdf\x21\x85\x06\xf3\x1b" 
	"\x9c\x06\x77\x1b\xad\x06\xbf\x21" "\x78\x06\xef\x1b\x9d\x06\x9a\x1b" 
	"\x98\x06\x8f\x21\x7c\x06\x1f\x1c" "\x9f\x06\x54\x1b\xbb\x06\xdb\x21" 
	"\x8f\x06\xe4\x1b\x98\x06\x6d\x1b" "\x99\x06\x16\x22\x67\x06\x41\x1c" 
	"\x95\x06\x7e\x1b\xb4\x06\xc9\x21" "\x8a\x06\x1d\x1c\xa1\x06\x54\x1b" 
	"\xad\x06\xab\x21\x8d\x06\xf4\x1b" "\x94\x06\x46\x1b\xb4\x06\x94\x21" 
	"\x8b\x06\xdf\x1b\x9d\x06\x25\x1b" "\xa8\x06\xa3\x21\x86\x06\xb6\x1b" 
	"\x90\x06\x2c\x1b\xb7\x06\x70\x21" "\x9e\x06\xb1\x1b\xa0\x06\x15\x1b" 
	"\xac\x06\x40\x21\xa4\x06\xda\x1b" "\x9a\x06\x1d\x1b\xaf\x06\x98\x21" 
	"\x81\x06\xdd\x1b\x98\x06\x0f\x1b" "\x8d\x06\x9f\x21\x5d\x06\xcd\x1b" 
	"\x8f\x06\xea\x1a\xa6\x06\xa0\x21" "\x77\x06\xe8\x1b\x91\x06\x12\x1b" 
	"\x8d\x06\xd3\x21\x5c\x06\x40\x1c" "\x77\x06\x69\x1b\xb4\x06\x7d\x21" 
	"\x8a\x06\xe7\x1b\x96\x06\x3e\x1b" "\xb5\x06\x99\x21\x93\x06\x07\x1c" 
	"\x9a\x06\x4b\x1b\xab\x06\xca\x21" "\x84\x06\xf5\x1b\x9c\x06\x4f\x1b" 
	"\xb6\x06\xc5\x21\x8a\x06\x1f\x1c" "\x9f\x06\x76\x1b\xb7\x06\xdd\x21" 
	"\x94\x06\x32\x1c\x90\x06\x5c\x1b" "\xa3\x06\xd8\x21\x73\x06\x3e\x1c" 
	"\x9a\x06\x78\x1b\xa0\x06\x1b\x22" "\x7a\x06\x10\x1c\x90\x06\x75\x1b" 
	"\xb5\x06\xb8\x21\x84\x06\x22\x1c" "\x94\x06\x50\x1b\xad\x06\xe5\x21" 
	"\x88\x06\x15\x1c\x98\x06\x8b\x1b" "\xad\x06\xe5\x21\x8f\x06\x1c\x1c" 
	"\x98\x06\x8d\x1b\xb6\x06\x06\x22" "\x8e\x06\x5f\x1c\x9d\x06\x8e\x1b" 
	"\xb9\x06\x99\x22\x91\x06\x78\x1c" "\x9a\x06\xab\x1b\xc4\x06\x29\x22" 
	"\x9e\x06\x40\x1c\xa2\x06\x99\x1b" "\xbe\x06\x01\x22\x91\x06\x4a\x1c" 
	"\x9b\x06\xa1\x1b\xb2\x06\xe0\x21" "\x95\x06\x59\x1c\x94\x06\x98\x1b" 
	"\xaf\x06\xe2\x21\x8e\x06\x1f\x1c" "\x8f\x06\xae\x1b\x93\x06\x2a\x22" 
	"\x71\x06\x4e\x1c\x96\x06\x9e\x1b" "\xaa\x06\x4f\x22\x93\x06\x60\x1c" 
	"\xa0\x06\x93\x1b\xc6\x06\x39\x22" "\xa0\x06\xba\x1c\xaf\x06\xa9\x1b" 
	"\xb7\x06\x47\x22\x8b\x06\x7d\x1c" "\xa9\x06\xa3\x1b\x8c\x06\x2f\x22" 
	"\x6a\x06\x95\x1c\x99\x06\x89\x1b" "\xb0\x06\xf1\x21\x9b\x06\x82\x1c" 
	"\xb1\x06\x95\x1b\xab\x06\xdc\x21" "\x8c\x06\x6d\x1c\xa8\x06\xa9\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa8\x06\xbe\x21\x93\x06\x83\x1c" "\x95\x06\xd0\x1b\xa0\x06\xfc\x21" 
	"\x78\x06\xac\x1c\x87\x06\xc7\x1b" "\x9f\x06\x5f\x22\x6d\x06\xce\x1c" 
	"\x97\x06\xa1\x1b\xd7\x06\x10\x22" "\xb1\x06\x6d\x1c\xcc\x06\x72\x1b" 
	"\x3c\x07\x3f\x21\x2a\x07\xfe\x1b" "\x38\x07\x40\x1b\xb5\x07\x77\x20" 
	"\x9e\x07\xba\x1b\x9c\x07\x23\x1b" "\xb5\x07\xfa\x1f\x99\x07\x5a\x1b" 
	"\xa8\x07\xa7\x1a\x5f\x06\x7f\x1f" "\x44\x06\x2e\x1b\x54\x06\xe4\x19" 
	"\x69\x06\x58\x20\x54\x06\xbd\x1b" "\x64\x06\xa4\x1a\x86\x07\x0f\x21" 
	"\x59\x07\xfe\x1b\x69\x07\x5e\x1b" "\xbd\x07\x98\x21\x99\x07\x85\x1c" 
	"\xb6\x07\x3a\x1c\x54\x07\x99\x22" "\x3f\x07\x2b\x1d\x3b\x07\xe2\x1c" 
	"\xf1\x06\x0d\x23\xbc\x06\x15\x1d" "\xea\x06\xdc\x1c\xae\x06\x6b\x22" 
	"\x81\x06\xc2\x1c\xb0\x06\x4c\x1c" "\xa7\x06\x25\x22\x86\x06\xdf\x1c" 
	"\x8e\x06\x33\x1c\xa7\x06\x44\x22" "\x8a\x06\xc6\x1c\x91\x06\x35\x1c" 
	"\xc0\x06\x77\x22\x95\x06\xe1\x1c" "\xb2\x06\x7a\x1c\xb5\x06\xbf\x22" 
	"\xae\x06\x04\x1d\xb3\x06\x9a\x1c" "\xd2\x06\x69\x23\xaa\x06\x85\x1d" 
	"\xbc\x06\x44\x1d\xc4\x06\x3c\x23" "\xae\x06\x9b\x1d\xba\x06\x3a\x1d" 
	"\xaf\x06\xb4\x22\x83\x06\xd2\x1c" "\xa7\x06\x74\x1c\xa5\x06\x92\x22" 
	"\x80\x06\xe5\x1c\xad\x06\x5a\x1c" "\xbc\x06\x6d\x22\x96\x06\x9a\x1c" 
	"\xb1\x06\x41\x1c\xb5\x06\x32\x22" "\x91\x06\xa6\x1c\xb1\x06\x5d\x1c" 
	"\xc7\x06\x8d\x22\x9d\x06\xc3\x1c" "\xab\x06\x8e\x1c\xc7\x06\x30\x23" 
	"\xa9\x06\x19\x1d\xb0\x06\xda\x1c" "\xc2\x06\x58\x23\x9c\x06\x3a\x1d" 
	"\xb1\x06\xda\x1c\xb3\x06\x62\x22" "\x9e\x06\xa5\x1c\xad\x06\x4a\x1c" 
	"\xc1\x06\x35\x22\x9d\x06\x63\x1c" "\xab\x06\x3e\x1c\xb9\x06\xf5\x21" 
	"\x8b\x06\x5d\x1c\xb3\x06\x53\x1c" "\xb5\x06\x12\x22\x90\x06\x5f\x1c" 
	"\xb0\x06\x21\x1c\xb0\x06\xcf\x22" "\x97\x06\x6b\x1c\xa5\x06\x20\x1c" 
	"\xb1\x06\x51\x22\x87\x06\xcc\x1c" "\xa8\x06\x67\x1c\xbd\x06\xf9\x22" 
	"\xa8\x06\x22\x1d\xb5\x06\xb2\x1c" "\xbd\x06\xb7\x22\x8f\x06\xc2\x1c" 
	"\xb2\x06\x72\x1c\xae\x06\x3e\x22" "\x98\x06\x7b\x1c\xac\x06\x07\x1c" 
	"\xbd\x06\x2c\x22\xa2\x06\x76\x1c" "\xa3\x06\xe9\x1b\xa9\x06\xf4\x21" 
	"\x7f\x06\x52\x1c\xaa\x06\xf9\x1b" "\xba\x06\x3c\x22\x88\x06\x7a\x1c" 
	"\xa2\x06\xff\x1b\xb1\x06\x8f\x22" "\x93\x06\xbc\x1c\x9e\x06\x4f\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc4\x06\x30\x23\xa7\x06\x2c\x1d" "\xac\x06\xb0\x1c\xbb\x06\x01\x23" 
	"\xa7\x06\xd2\x1c\xb2\x06\x84\x1c" "\x9b\x06\x58\x22\x70\x06\x68\x1c" 
	"\xab\x06\x01\x1c\xb5\x06\x24\x22" "\x9b\x06\x61\x1c\x99\x06\xd9\x1b" 
	"\xac\x06\x1f\x22\x8a\x06\x62\x1c" "\x98\x06\x17\x1c\xca\x06\x72\x22" 
	"\x9a\x06\x6e\x1c\x9e\x06\xee\x1b" "\xbd\x06\xa6\x22\x91\x06\xa9\x1c" 
	"\x9a\x06\x37\x1c\xc0\x06\x3e\x23" "\x91\x06\x51\x1d\xa1\x06\xe0\x1c" 
	"\xaa\x06\x6a\x23\x79\x06\x37\x1d" "\xb2\x06\xd5\x1c\x93\x06\xaf\x22" 
	"\x6b\x06\xd2\x1c\xaa\x06\x7f\x1c" "\xb0\x06\x60\x22\x74\x06\x6c\x1c" 
	"\xa6\x06\x1b\x1c\xb6\x06\x48\x22" "\x8d\x06\x61\x1c\xad\x06\x2d\x1c" 
	"\xb0\x06\x8b\x22\x91\x06\x87\x1c" "\xa2\x06\x1e\x1c\xcf\x06\xc7\x22" 
	"\x92\x06\xc3\x1c\xa4\x06\x59\x1c" "\xba\x06\x2c\x23\x93\x06\x00\x1d" 
	"\xa4\x06\xa8\x1c\x9e\x06\x6a\x23" "\x82\x06\x14\x1d\xb0\x06\xf8\x1c" 
	"\x98\x06\xe3\x22\x7d\x06\xce\x1c" "\x90\x06\xa4\x1c\xbb\x06\x47\x22" 
	"\x98\x06\x87\x1c\xa3\x06\x2f\x1c" "\xc7\x06\x75\x22\x8f\x06\x5a\x1c" 
	"\xa9\x06\x2d\x1c\xc1\x06\x55\x22" "\x95\x06\x6a\x1c\xa6\x06\x44\x1c" 
	"\xa9\x06\x75\x22\x9d\x06\x8d\x1c" "\xa5\x06\x7b\x1c\xb2\x06\x20\x23" 
	"\x87\x06\x12\x1d\x9e\x06\xfd\x1c" "\xb8\x06\x24\x23\x93\x06\x47\x1d" 
	"\xb2\x06\xe4\x1c\xbe\x06\x7e\x22" "\xa2\x06\xa4\x1c\xb0\x06\x7e\x1c" 
	"\xbe\x06\x1e\x22\x94\x06\x44\x1c" "\xac\x06\x2d\x1c\x8e\x06\x19\x22" 
	"\x63\x06\x64\x1c\x92\x06\x13\x1c" "\xa9\x06\x0e\x22\x85\x06\x76\x1c" 
	"\xa3\x06\x49\x1c\xc3\x06\x11\x22" "\x95\x06\x5d\x1c\xb0\x06\x3c\x1c" 
	"\xbb\x06\xb2\x22\x99\x06\xe8\x1c" "\xa7\x06\x96\x1c\xc8\x06\x40\x23" 
	"\xa1\x06\x2d\x1d\xb5\x06\x07\x1d" "\xba\x06\x6f\x22\x96\x06\xc6\x1c" 
	"\xb4\x06\x79\x1c\xb9\x06\xfa\x21" "\x95\x06\x6d\x1c\x9e\x06\xeb\x1b" 
	"\xac\x06\xfa\x21\x84\x06\x2d\x1c" "\xa7\x06\xd0\x1b\xbd\x06\xc1\x21" 
	"\xac\x06\x21\x1c\xa6\x06\xf9\x1b" "\xac\x06\xdb\x21\x98\x06\x27\x1c" 
	"\xb0\x06\xf5\x1b\xb1\x06\x38\x22" "\x9e\x06\x7d\x1c\xaa\x06\x0d\x1c" 
	"\xc0\x06\x82\x22\x8d\x06\xd7\x1c" "\x99\x06\x80\x1c\xb7\x06\x5d\x22" 
	"\x91\x06\x68\x1c\xac\x06\x1b\x1c" "\xbe\x06\x03\x22\x92\x06\x18\x1c" 
	"\xad\x06\xde\x1b\xaf\x06\xd1\x21" "\x85\x06\x0c\x1c\xab\x06\xd3\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbf\x06\xc6\x21\x94\x06\x2f\x1c" "\xa5\x06\xe0\x1b\x9d\x06\x0c\x22" 
	"\x6b\x06\x36\x1c\xa9\x06\xe6\x1b" "\xb9\x06\x0a\x22\x9c\x06\x27\x1c" 
	"\xad\x06\xfd\x1b\xc8\x06\x87\x22" "\x9d\x06\xb2\x1c\xaa\x06\x81\x1c" 
	"\x9d\x06\x6c\x22\x74\x06\x7d\x1c" "\x9e\x06\x44\x1c\xa1\x06\x1a\x22" 
	"\x72\x06\x51\x1c\x9a\x06\xea\x1b" "\xab\x06\xd3\x21\x7f\x06\x3b\x1c" 
	"\xa5\x06\xd8\x1b\xa1\x06\x18\x22" "\x7b\x06\x2d\x1c\xa4\x06\xcc\x1b" 
	"\xbf\x06\x1b\x22\x96\x06\x73\x1c" "\xaf\x06\x19\x1c\x96\x06\x9f\x22" 
	"\x74\x06\xa1\x1c\xaa\x06\x45\x1c" "\xaa\x06\x22\x23\x7e\x06\x50\x1d" 
	"\xac\x06\xeb\x1c\xb2\x06\xe9\x22" "\x8e\x06\x4b\x1d\xa2\x06\xee\x1c" 
	"\x9b\x06\x77\x22\x6f\x06\xb9\x1c" "\xa2\x06\x54\x1c\xc1\x06\x0c\x22" 
	"\x9d\x06\x6c\x1c\xad\x06\x13\x1c" "\x94\x06\x13\x22\x74\x06\x6c\x1c" 
	"\xb0\x06\xf5\x1b\xb0\x06\x20\x22" "\x86\x06\x67\x1c\x92\x06\x00\x1c" 
	"\xac\x06\x36\x22\x90\x06\x87\x1c" "\xaa\x06\x2c\x1c\xc0\x06\x9c\x22" 
	"\x8f\x06\xc3\x1c\xa9\x06\x89\x1c" "\xa5\x06\xe0\x22\x8c\x06\xff\x1c" 
	"\xad\x06\x9e\x1c\xb3\x06\x45\x22" "\x93\x06\x92\x1c\xa6\x06\x24\x1c" 
	"\xba\x06\x10\x22\x98\x06\x4f\x1c" "\x90\x06\xff\x1b\xb6\x06\x10\x22" 
	"\x97\x06\x65\x1c\x9b\x06\x1b\x1c" "\xab\x06\x2b\x22\x83\x06\x6f\x1c" 
	"\xa7\x06\x31\x1c\xaa\x06\x6f\x22" "\x7e\x06\x8b\x1c\xa6\x06\x6c\x1c" 
	"\xbf\x06\xde\x22\x8b\x06\xca\x1c" "\xa1\x06\x99\x1c\x92\x06\xd5\x22" 
	"\x71\x06\x1a\x1d\xb4\x06\xc4\x1c" "\xb2\x06\x5a\x22\x8f\x06\x95\x1c" 
	"\x9c\x06\x58\x1c\xba\x06\x1e\x22" "\x9b\x06\x34\x1c\x95\x06\xe8\x1b" 
	"\x9d\x06\x07\x22\x70\x06\x70\x1c" "\x9f\x06\xf2\x1b\xba\x06\xbe\x21" 
	"\x8e\x06\x3d\x1c\xa3\x06\xe7\x1b" "\x9e\x06\xf1\x21\x79\x06\x70\x1c" 
	"\xa3\x06\x00\x1c\xb1\x06\xf7\x21" "\x98\x06\x92\x1c\xa3\x06\x08\x1c" 
	"\xaf\x06\x70\x22\x8e\x06\xda\x1c" "\xa6\x06\x4d\x1c\xa7\x06\x37\x22" 
	"\x82\x06\x7a\x1c\xa2\x06\x18\x1c" "\x99\x06\x7e\x22\x68\x06\x95\x1c" 
	"\x7d\x06\x10\x1c\x95\x06\x9a\x21" "\x83\x06\x3e\x1c\x92\x06\xf1\x1b" 
	"\x9e\x06\xd1\x21\x81\x06\x56\x1c" "\xaa\x06\xe5\x1b\x9e\x06\xec\x21" 
	"\x8c\x06\x82\x1c\xa8\x06\x0d\x1c" "\xad\x06\xd9\x22\x87\x06\xc7\x1c" 
	"\xaa\x06\x88\x1c\xbf\x06\x2f\x23" "\x97\x06\x62\x1d\x9d\x06\xe7\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc8\x06\x11\x23\x9c\x06\x38\x1d" "\xa5\x06\xbb\x1c\xb7\x06\x2c\x22" 
	"\x9b\x06\x84\x1c\xab\x06\x3d\x1c" "\xb8\x06\xfe\x21\x92\x06\x60\x1c" 
	"\xa1\x06\xf1\x1b\xb9\x06\xf9\x21" "\x9d\x06\x78\x1c\xa8\x06\x02\x1c" 
	"\xa9\x06\x46\x22\x7f\x06\x77\x1c" "\x95\x06\x06\x1c\x94\x06\x61\x22" 
	"\x72\x06\xcc\x1c\xa6\x06\x55\x1c" "\x93\x06\x24\x23\x70\x06\x45\x1d" 
	"\x99\x06\xe8\x1c\xb4\x06\x42\x23" "\x95\x06\x11\x1d\xa0\x06\x95\x1c" 
	"\xba\x06\x5d\x22\x9b\x06\xa7\x1c" "\xaf\x06\x21\x1c\xa4\x06\x11\x22" 
	"\x82\x06\x8e\x1c\x9f\x06\xf3\x1b" "\xbf\x06\x22\x22\x9a\x06\x59\x1c" 
	"\x96\x06\xed\x1b\xb3\x06\x59\x22" "\x9d\x06\x92\x1c\xa3\x06\x0b\x1c" 
	"\xb7\x06\xaf\x22\x99\x06\xd7\x1c" "\xa2\x06\x49\x1c\xb8\x06\x16\x23" 
	"\x9d\x06\x32\x1d\xb8\x06\xba\x1c" "\xaf\x06\x3c\x23\x97\x06\x95\x1d" 
	"\xab\x06\xda\x1c\xac\x06\x9a\x22" "\x8f\x06\xe7\x1c\xb0\x06\x63\x1c" 
	"\xb3\x06\x1a\x22\x89\x06\x70\x1c" "\xb3\x06\xee\x1b\xb8\x06\x0f\x22" 
	"\x92\x06\x7b\x1c\xa2\x06\xdc\x1b" "\xb3\x06\x13\x22\x80\x06\x63\x1c" 
	"\xa8\x06\xc8\x1b\x97\x06\x2b\x22" "\x80\x06\xb9\x1c\x9d\x06\xe7\x1b" 
	"\xb4\x06\xe3\x22\x9e\x06\x00\x1d" "\x9e\x06\x2a\x1c\x95\x06\x88\x23" 
	"\x67\x06\x2e\x1d\x9e\x06\x82\x1c" "\xbb\x06\x03\x23\x9a\x06\x45\x1d" 
	"\xb3\x06\x3c\x1c\xb5\x06\xaf\x22" "\x91\x06\xdd\x1c\x8c\x06\xdf\x1b" 
	"\xbd\x06\x9e\x22\x99\x06\x9f\x1c" "\x9d\x06\x27\x1c\xbf\x06\x97\x22" 
	"\x8c\x06\xb9\x1c\xa2\x06\x26\x1c" "\xb6\x06\x8f\x22\x8a\x06\xe7\x1c" 
	"\xa0\x06\x19\x1c\x9e\x06\x10\x23" "\x88\x06\x61\x1d\xb3\x06\x97\x1c" 
	"\xbf\x06\xa8\x23\xa0\x06\xb3\x1d" "\xa6\x06\xfd\x1c\xca\x06\x82\x23" 
	"\xa3\x06\x50\x1d\xa3\x06\xba\x1c" "\x9f\x06\xe4\x22\x9a\x06\xd9\x1c" 
	"\xad\x06\x6a\x1c\xb9\x06\x7e\x22" "\x99\x06\x92\x1c\xa6\x06\x2e\x1c" 
	"\xc1\x06\x6d\x22\x91\x06\xa9\x1c" "\xa7\x06\x44\x1c\xc5\x06\x76\x22" 
	"\x95\x06\x8e\x1c\xaa\x06\x2f\x1c" "\xb7\x06\xb8\x22\x9b\x06\xfb\x1c" 
	"\xaa\x06\x71\x1c\xb5\x06\x42\x23" "\x93\x06\x50\x1d\xa9\x06\xca\x1c" 
	"\xb3\x06\x59\x23\x94\x06\x52\x1d" "\x9a\x06\xbc\x1c\xba\x06\xa0\x22" 
	"\x94\x06\xc0\x1c\xa0\x06\x4a\x1c" "\xab\x06\x39\x22\x85\x06\x9a\x1c" 
	"\xa6\x06\x0d\x1c\xb7\x06\x0e\x22" "\x92\x06\x73\x1c\xa0\x06\x05\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbc\x06\x07\x22\xa3\x06\x84\x1c" "\x9b\x06\xe6\x1b\xa8\x06\x42\x22" 
	"\x8c\x06\x9a\x1c\x9f\x06\xe8\x1b" "\xad\x06\xf9\x22\x89\x06\xfe\x1c" 
	"\xa3\x06\x71\x1c\xb3\x06\x2e\x23" "\x83\x06\x3d\x1d\xab\x06\xa7\x1c" 
	"\xc8\x06\x9a\x22\xa3\x06\x02\x1d" "\xa2\x06\x45\x1c\xa2\x06\x52\x22" 
	"\x7b\x06\x9b\x1c\xa4\x06\xff\x1b" "\xab\x06\x2a\x22\x8d\x06\x7f\x1c" 
	"\xa6\x06\x06\x1c\x9b\x06\x55\x22" "\x73\x06\xa2\x1c\x92\x06\x08\x1c" 
	"\xb8\x06\xc5\x22\x94\x06\x9a\x1c" "\xa3\x06\xef\x1b\xb0\x06\x0f\x23" 
	"\x85\x06\x28\x1d\xa0\x06\x89\x1c" "\xba\x06\xea\x22\x89\x06\x60\x1d" 
	"\xa3\x06\xa7\x1c\xa4\x06\xab\x22" "\x89\x06\xf3\x1c\xa4\x06\x4f\x1c" 
	"\xaa\x06\xf9\x21\x7e\x06\x7b\x1c" "\x9d\x06\xde\x1b\xac\x06\x0f\x22" 
	"\x9b\x06\x79\x1c\xa7\x06\xe4\x1b" "\xbf\x06\x4b\x22\xa2\x06\xa0\x1c" 
	"\xaa\x06\x0a\x1c\xb3\x06\xab\x22" "\x87\x06\xd8\x1c\x9d\x06\x31\x1c" 
	"\xcc\x06\xfc\x22\x9e\x06\x50\x1d" "\xab\x06\xa2\x1c\xd0\x06\x42\x23" 
	"\xa4\x06\xa5\x1d\xac\x06\xdd\x1c" "\xae\x06\xa8\x22\x97\x06\x4f\x1d" 
	"\xb3\x06\x8f\x1c\xb6\x06\x1a\x22" "\x93\x06\xa3\x1c\xa3\x06\xef\x1b" 
	"\xa0\x06\x12\x22\x7a\x06\x8e\x1c" "\xac\x06\xe6\x1b\xc3\x06\xdf\x21" 
	"\x99\x06\x80\x1c\xa1\x06\xa8\x1b" "\xb0\x06\x27\x22\x90\x06\x8f\x1c" 
	"\xaa\x06\xea\x1b\xc5\x06\x74\x22" "\xa6\x06\xdc\x1c\xb1\x06\x28\x1c" 
	"\xbf\x06\xe1\x22\xae\x06\x50\x1d" "\xae\x06\x6d\x1c\xbd\x06\xf5\x22" 
	"\xa5\x06\x2e\x1d\xa7\x06\x53\x1c" "\x91\x06\x5d\x22\x61\x06\x8c\x1c" 
	"\x9f\x06\xf2\x1b\xb8\x06\xdd\x21" "\x9e\x06\x85\x1c\xaa\x06\xaf\x1b" 
	"\xc8\x06\xa2\x21\xa3\x06\x7e\x1c" "\xa6\x06\x9e\x1b\xa7\x06\xcc\x21" 
	"\x8e\x06\x79\x1c\xa4\x06\xb4\x1b" "\x94\x06\x1d\x22\x66\x06\xa7\x1c" 
	"\xad\x06\xeb\x1b\xaa\x06\xc1\x22" "\x82\x06\xfe\x1c\xa1\x06\x42\x1c" 
	"\xc6\x06\xec\x22\xa2\x06\x1e\x1d" "\xa7\x06\x5d\x1c\xbc\x06\x78\x22" 
	"\xa8\x06\xec\x1c\xa7\x06\x30\x1c" "\xb7\x06\x2c\x22\x98\x06\x91\x1c" 
	"\xb2\x06\x19\x1c\xc2\x06\x29\x22" "\x9c\x06\xae\x1c\xa7\x06\x10\x1c" 
	"\xbf\x06\x38\x22\x98\x06\xd2\x1c" "\xaa\x06\x1d\x1c\xb0\x06\x45\x22" 
	"\x94\x06\xe3\x1c\xa3\x06\x54\x1c" "\xa0\x06\x2e\x23\x7e\x06\x66\x1d" 
	"\xc0\x06\xf1\x1c\xc4\x06\x11\x23" "\xa2\x06\x69\x1d\xac\x06\xc7\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb8\x06\x31\x22\x96\x06\xe2\x1c" "\x97\x06\x0d\x1c\xbd\x06\x3d\x22" 
	"\xa1\x06\xb3\x1c\xa7\x06\xf3\x1b" "\xc0\x06\x4e\x22\x8e\x06\xc7\x1c" 
	"\xb7\x06\x24\x1c\xbc\x06\x44\x22" "\xa6\x06\xb1\x1c\xb1\x06\x35\x1c" 
	"\xc4\x06\x7d\x22\xa1\x06\xde\x1c" "\xaa\x06\x31\x1c\xa4\x06\xd0\x22" 
	"\x7e\x06\x64\x1d\x9f\x06\x90\x1c" "\xb6\x06\x17\x23\x9b\x06\xbd\x1d" 
	"\xa9\x06\xce\x1c\xc9\x06\x92\x22" "\xa6\x06\x23\x1d\xab\x06\x6f\x1c" 
	"\xbe\x06\x39\x22\x9f\x06\xc3\x1c" "\xb0\x06\x14\x1c\xba\x06\xe7\x21" 
	"\x9e\x06\xb6\x1c\xac\x06\x0d\x1c" "\xaa\x06\x45\x22\x82\x06\xbc\x1c" 
	"\xa4\x06\x0f\x1c\xb5\x06\x5a\x22" "\x88\x06\xb0\x1c\x98\x06\x2c\x1c" 
	"\xa2\x06\xe8\x22\x8a\x06\x27\x1d" "\x98\x06\xac\x1c\xba\x06\xd7\x22" 
	"\xa2\x06\x3d\x1d\xa7\x06\xb8\x1c" "\xb5\x06\x05\x22\x83\x06\xba\x1c" 
	"\x9b\x06\xff\x1b\x95\x06\xa8\x21" "\x6b\x06\xa8\x1c\x95\x06\xdc\x1b" 
	"\x9e\x06\xb3\x21\x81\x06\x9e\x1c" "\x9b\x06\xda\x1b\xab\x06\x6f\x21" 
	"\x94\x06\x88\x1c\xa7\x06\xcf\x1b" "\xa8\x06\x79\x21\x91\x06\x8f\x1c" 
	"\xa3\x06\xdc\x1b\xb3\x06\xa6\x22" "\x95\x06\xeb\x1c\xab\x06\x63\x1c" 
	"\xc6\x06\xcf\x22\x96\x06\x7a\x1d" "\x9f\x06\xb3\x1c\xc8\x06\xa8\x22" 
	"\xaa\x06\x31\x1d\xa7\x06\x9a\x1c" "\xb1\x06\x37\x22\x98\x06\x93\x1c" 
	"\xa0\x06\x08\x1c\xaf\x06\xb0\x21" "\x95\x06\x79\x1c\xad\x06\xdb\x1b" 
	"\xb9\x06\xfd\x21\x8f\x06\x5a\x1c" "\xa7\x06\xd5\x1b\xac\x06\xd9\x21" 
	"\x83\x06\x5f\x1c\xa8\x06\xea\x1b" "\xbc\x06\x36\x22\x95\x06\xb5\x1c" 
	"\x9a\x06\x06\x1c\x8f\x06\x1a\x23" "\x5d\x06\x23\x1d\xa2\x06\x83\x1c" 
	"\xb6\x06\xff\x22\x98\x06\x49\x1d" "\x9c\x06\x94\x1c\xa1\x06\x4c\x22" 
	"\x7c\x06\x7d\x1c\xad\x06\x09\x1c" "\x99\x06\xc9\x21\x74\x06\x47\x1c" 
	"\x9e\x06\xd1\x1b\xb3\x06\xaf\x21" "\x94\x06\x6c\x1c\xaf\x06\xb6\x1b" 
	"\xa8\x06\xe6\x21\x92\x06\x3a\x1c" "\xac\x06\xc8\x1b\xa8\x06\x3d\x22" 
	"\x82\x06\xaf\x1c\x90\x06\xd0\x1b" "\xaa\x06\xd4\x22\x92\x06\x3a\x1d" 
	"\x91\x06\x84\x1c\xb0\x06\xe8\x22" "\x8b\x06\x16\x1d\x97\x06\x6e\x1c" 
	"\xb6\x06\x3b\x22\x87\x06\x71\x1c" "\x95\x06\x0e\x1c\x9b\x06\xe5\x21" 
	"\x75\x06\x59\x1c\xa1\x06\xd9\x1b" "\xa0\x06\x8a\x21\x7d\x06\x56\x1c" 
	"\xa7\x06\xbd\x1b\xa8\x06\xab\x21" "\x88\x06\x50\x1c\x99\x06\xbb\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc0\x06\x09\x22\x9f\x06\x84\x1c" "\xa2\x06\xeb\x1b\xab\x06\x62\x22" 
	"\x8c\x06\x16\x1d\xa3\x06\x62\x1c" "\xb3\x06\xa4\x22\x8c\x06\x45\x1d" 
	"\x9d\x06\xc6\x1c\xb2\x06\x8e\x22" "\x9a\x06\xbd\x1c\xa0\x06\x38\x1c" 
	"\xae\x06\x01\x22\x87\x06\x61\x1c" "\xa2\x06\xf6\x1b\xad\x06\xb6\x21" 
	"\x7a\x06\x41\x1c\xa6\x06\xe1\x1b" "\xaf\x06\xcb\x21\x88\x06\x38\x1c" 
	"\xa7\x06\xbd\x1b\xb0\x06\x92\x21" "\x92\x06\x4a\x1c\xaf\x06\xbc\x1b" 
	"\xae\x06\x4a\x22\x8b\x06\x96\x1c" "\xa6\x06\x07\x1c\xc6\x06\xdc\x22" 
	"\xa6\x06\x03\x1d\xac\x06\x6b\x1c" "\xb2\x06\x96\x22\x85\x06\xe5\x1c" 
	"\xa5\x06\x36\x1c\xb5\x06\xf2\x21" "\x9d\x06\x50\x1c\xa0\x06\xdb\x1b" 
	"\xbe\x06\xfe\x21\x86\x06\x43\x1c" "\x9b\x06\xa5\x1b\xa5\x06\x09\x22" 
	"\x62\x06\x53\x1c\xa6\x06\xd1\x1b" "\xaf\x06\x10\x22\x8c\x06\x69\x1c" 
	"\xa1\x06\xed\x1b\xaa\x06\x5a\x22" "\x8b\x06\xdd\x1c\xac\x06\x3a\x1c" 
	"\xc6\x06\xad\x22\x9e\x06\x62\x1d" "\x9e\x06\x7b\x1c\x9c\x06\xb4\x22" 
	"\x8d\x06\xc8\x1c\x9d\x06\x3d\x1c" "\xc3\x06\x2e\x22\x9c\x06\x5d\x1c" 
	"\xa2\x06\xb0\x1b\xbd\x06\x9f\x21" "\x9c\x06\x39\x1c\x99\x06\x9c\x1b" 
	"\xb6\x06\xbe\x21\xa2\x06\x3f\x1c" "\x9f\x06\x97\x1b\xa1\x06\x06\x22" 
	"\x86\x06\x4e\x1c\xaa\x06\xc9\x1b" "\xa9\x06\x42\x22\x87\x06\x9e\x1c" 
	"\xa7\x06\x1c\x1c\xd0\x06\xfe\x22" "\xa5\x06\x4b\x1d\xb0\x06\xb0\x1c" 
	"\xc8\x06\xc5\x22\xa3\x06\x34\x1d" "\xa2\x06\xb2\x1c\xaf\x06\x7d\x22" 
	"\x9c\x06\xa2\x1c\xaf\x06\x1d\x1c" "\xb5\x06\xfc\x21\x91\x06\x44\x1c" 
	"\xb0\x06\xc7\x1b\xbe\x06\xe6\x21" "\x8e\x06\x38\x1c\xa1\x06\x80\x1b" 
	"\xb9\x06\xdc\x21\x8b\x06\x32\x1c" "\x9e\x06\x94\x1b\xbc\x06\x25\x22" 
	"\x9a\x06\x67\x1c\xa3\x06\x8f\x1b" "\xab\x06\xcd\x22\x82\x06\xd1\x1c" 
	"\xa7\x06\x43\x1c\x93\x06\xc9\x22" "\x77\x06\x3e\x1d\xaa\x06\x5d\x1c" 
	"\xbd\x06\x4d\x22\x98\x06\x8d\x1c" "\xa0\x06\xef\x1b\xb6\x06\xe1\x21" 
	"\x80\x06\x7a\x1c\xaf\x06\x9f\x1b" "\xc8\x06\x01\x22\x9e\x06\x3b\x1c" 
	"\xa3\x06\xa8\x1b\xbd\x06\xe2\x21" "\x8e\x06\x3a\x1c\xa2\x06\x9c\x1b" 
	"\xca\x06\x42\x22\x9f\x06\x66\x1c" "\xa7\x06\xc6\x1b\xbd\x06\x90\x22" 
	"\x89\x06\xe1\x1c\x9d\x06\x20\x1c" "\xc6\x06\xf1\x22\xa2\x06\x05\x1d" 
	"\xa0\x06\x7a\x1c\xa9\x06\xc7\x22" "\x8c\x06\xb2\x1c\xa6\x06\x28\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xbb\x06\xde\x21\x97\x06\x3e\x1c" "\xaa\x06\xbb\x1b\xb9\x06\xb9\x21" 
	"\x92\x06\x2c\x1c\xab\x06\x9d\x1b" "\xb2\x06\xb7\x21\x87\x06\x37\x1c" 
	"\xa1\x06\x89\x1b\xc7\x06\xfa\x21" "\x9d\x06\x14\x1c\xa0\x06\x71\x1b" 
	"\xa3\x06\x8b\x22\x72\x06\x60\x1c" "\xa0\x06\xd2\x1b\xc3\x06\xca\x22" 
	"\x8f\x06\xde\x1c\x9e\x06\x12\x1c" "\xb3\x06\x7b\x22\x8f\x06\xd7\x1c" 
	"\xa4\x06\xfd\x1b\xb1\x06\xd3\x21" "\x7e\x06\x40\x1c\x9d\x06\x98\x1b" 
	"\xa0\x06\xbf\x21\x81\x06\x3b\x1c" "\xaa\x06\x69\x1b\xb8\x06\xc9\x21" 
	"\x97\x06\x39\x1c\xa7\x06\x90\x1b" "\xbb\x06\xd2\x21\x92\x06\x3f\x1c" 
	"\xae\x06\xb3\x1b\xb3\x06\x5d\x22" "\x8a\x06\x84\x1c\x9e\x06\xdf\x1b" 
	"\xc7\x06\xfc\x22\x95\x06\xe6\x1c" "\xac\x06\x3c\x1c\xc0\x06\xd1\x22" 
	"\x9d\x06\xa8\x1c\xac\x06\x2a\x1c" "\x9b\x06\x51\x22\x74\x06\x55\x1c" 
	"\xaf\x06\x93\x1b\xbb\x06\xe4\x21" "\x9a\x06\x19\x1c\xa2\x06\x59\x1b" 
	"\xaa\x06\xc9\x21\x93\x06\xf8\x1b" "\xa1\x06\x4b\x1b\xad\x06\xd4\x21" 
	"\x79\x06\x0b\x1c\xa2\x06\x73\x1b" "\xa0\x06\x20\x22\x6c\x06\x38\x1c" 
	"\xb0\x06\xcf\x1b\xbc\x06\xde\x22" "\x8d\x06\x9b\x1c\xa2\x06\x5a\x1c" 
	"\xc1\x06\x67\x22\xa9\x06\x01\x1d" "\xae\x06\x9f\x1c\xab\x06\xfe\x21" 
	"\x81\x06\x52\x1c\xb1\x06\x02\x1c" "\xb7\x06\x94\x21\x97\x06\x15\x1c" 
	"\xa1\x06\x96\x1b\x9f\x06\xdb\x21" "\x77\x06\x0f\x1c\x9e\x06\xb0\x1b" 
	"\xab\x06\x84\x21\x8a\x06\x2c\x1c" "\xa6\x06\x91\x1b\xb5\x06\xa5\x21" 
	"\x93\x06\x44\x1c\xab\x06\xc6\x1b" "\xbb\x06\xff\x21\x98\x06\x81\x1c" 
	"\xa9\x06\x09\x1c\xcd\x06\xe6\x22" "\xa1\x06\xdd\x1c\xa6\x06\x43\x1c" 
	"\xbe\x06\x7d\x22\x98\x06\x5a\x1c" "\xae\x06\xeb\x1b\x9b\x06\xe1\x21" 
	"\x6a\x06\x0b\x1c\xa7\x06\x86\x1b" "\xa2\x06\xf7\x21\x84\x06\x3d\x1c" 
	"\xa5\x06\x98\x1b\xa2\x06\xc2\x21" "\x85\x06\x29\x1c\x9f\x06\x7d\x1b" 
	"\xab\x06\x20\x22\x95\x06\x4a\x1c" "\xa1\x06\xc4\x1b\xbb\x06\x95\x22" 
	"\xa0\x06\xc8\x1c\xae\x06\x09\x1c" "\xaf\x06\xf2\x22\x8c\x06\x61\x1d" 
	"\xac\x06\x38\x1c\xb0\x06\xe3\x22" "\x72\x06\xd9\x1c\x90\x06\x63\x1c" 
	"\xbe\x06\xee\x21\x97\x06\x1b\x1c" "\xa1\x06\x8c\x1b\xa9\x06\xdb\x21" 
	"\x85\x06\x07\x1c\xa7\x06\x83\x1b" "\xb8\x06\xc4\x21\x8b\x06\xf7\x1b" 
	"\xa2\x06\x5f\x1b\xb2\x06\xd2\x21" "\x8e\x06\x0d\x1c\xa9\x06\x85\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc4\x06\x99\x22\x8d\x06\x65\x1c" "\xa8\x06\xe0\x1b\xc4\x06\xb9\x22" 
	"\x9b\x06\x8b\x1c\xa6\x06\x06\x1c" "\xc0\x06\x6b\x22\xa0\x06\xc1\x1c" 
	"\xa5\x06\xed\x1b\xc0\x06\xda\x21" "\xa4\x06\x15\x1c\xa6\x06\x67\x1b" 
	"\xb3\x06\x63\x21\x87\x06\xe1\x1b" "\xa4\x06\x2f\x1b\x90\x06\x68\x21" 
	"\x52\x06\xcd\x1b\xaf\x06\x10\x1b" "\xb7\x06\x7e\x21\x87\x06\xe4\x1b" 
	"\xa1\x06\xff\x1a\xc1\x06\xf4\x21" "\x93\x06\xf0\x1b\x9f\x06\x38\x1b" 
	"\xbf\x06\x44\x22\xa3\x06\x6f\x1c" "\x9e\x06\x8e\x1b\xa8\x06\x1f\x22" 
	"\x91\x06\x8b\x1c\x9f\x06\xa7\x1b" "\xaf\x06\xb3\x21\x85\x06\xd6\x1b" 
	"\x9f\x06\x02\x1b\x9e\x06\x37\x21" "\x79\x06\xb0\x1b\x98\x06\xdc\x1a" 
	"\x9f\x06\x03\x21\x80\x06\xa5\x1b" "\xa7\x06\x1c\x1b\xae\x06\x32\x21" 
	"\x8f\x06\xae\x1b\x9b\x06\x29\x1b" "\xaa\x06\x56\x21\x8a\x06\xe7\x1b" 
	"\xa2\x06\x56\x1b\xca\x06\x23\x22" "\x97\x06\x7d\x1c\xa3\x06\xdf\x1b" 
	"\xbb\x06\x56\x22\xa2\x06\x7f\x1c" "\xa8\x06\xef\x1b\xbf\x06\xb4\x21" 
	"\x92\x06\x0e\x1c\xa3\x06\x2e\x1b" "\xb7\x06\x56\x21\x9c\x06\xae\x1b" 
	"\xa8\x06\xdb\x1a\xc6\x06\x6b\x21" "\x98\x06\x70\x1b\xa2\x06\x74\x1a" 
	"\xa9\x06\x75\x20\x96\x06\x28\x1b" "\x92\x06\xe2\x19\xd5\x08\xff\xff" 
	"\xe6\x08\xff\xff\xe5\x08\xff\xff" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10" 
	"\x00\x00\x00\x10\x00\x00\x00\x10" "\xe6\x08\xff\xff\xe5\x08\xff\xff" 
	"\xe8\x08\xff\xff\x8a\x06\x17\x20" "\x5b\x06\x7c\x1a\x99\x06\x3b\x19" 
	"\xa7\x06\x93\x20\x84\x06\xdc\x1a" "\x86\x06\xaa\x19\xa2\x06\xb3\x20" 
	"\x86\x06\x30\x1b\x7a\x06\xd4\x19" "\x99\x06\xd6\x20\x6e\x06\x27\x1b" 
	"\x84\x06\x2e\x1a\xa7\x06\xfa\x20" "\x80\x06\x68\x1b\x90\x06\x3d\x1a" 
	"\xbd\x06\xa0\x20\x8a\x06\x21\x1b" "\x9b\x06\x13\x1a\xb8\x06\xae\x20" 
	"\x8a\x06\x01\x1b\xa2\x06\x17\x1a" "\xaa\x06\x59\x20\x8d\x06\xfb\x1a" 
	"\x90\x06\x12\x1a\xa5\x06\x55\x20" "\x80\x06\xeb\x1a\x95\x06\x10\x1a" 
	"\xae\x06\x99\x20\x80\x06\xde\x1a" "\x8c\x06\x0d\x1a\xba\x06\xc2\x20" 
	"\x8b\x06\x15\x1b\x90\x06\x0d\x1a" "\xad\x06\xf3\x20\x94\x06\x4e\x1b" 
	"\x9b\x06\xfe\x19\x9e\x06\x77\x20" "\x88\x06\x1b\x1b\x94\x06\xd8\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb5\x06\x65\x20\x8c\x06\xf0\x1a" "\x92\x06\xe7\x19\x7f\x06\x38\x20" 
	"\x57\x06\xc8\x1a\x8f\x06\xd4\x19" "\xac\x06\x1a\x20\x8d\x06\xaa\x1a" 
	"\x95\x06\xbf\x19\xad\x06\x17\x20" "\x91\x06\xec\x1a\x89\x06\xb5\x19" 
	"\xb4\x06\x15\x20\x86\x06\xda\x1a" "\x9b\x06\xab\x19\xb8\x06\xac\x20" 
	"\x99\x06\x78\x1b\x96\x06\xf9\x19" "\xc1\x06\xb3\x20\x91\x06\xcc\x1a" 
	"\x93\x06\xe4\x19\xb4\x06\x54\x20" "\x84\x06\xbc\x1a\x8d\x06\xd2\x19" 
	"\xb4\x06\x74\x20\x86\x06\xae\x1a" "\x8e\x06\xb0\x19\xb9\x06\x91\x20" 
	"\x92\x06\xa9\x1a\x99\x06\xd4\x19" "\xb9\x06\x40\x20\x89\x06\x89\x1a" 
	"\x89\x06\xaa\x19\xa8\x06\x54\x20" "\x83\x06\x9b\x1a\x92\x06\xca\x19" 
	"\xc0\x06\x6f\x20\x8a\x06\xf3\x1a" "\x98\x06\xd9\x19\xb6\x06\x85\x20" 
	"\x88\x06\xdf\x1a\x8b\x06\xaf\x19" "\xac\x06\x6d\x20\x6d\x06\x6c\x1a" 
	"\x91\x06\xa5\x19\xaa\x06\x35\x20" "\x81\x06\x95\x1a\x8a\x06\x9c\x19" 
	"\xa9\x06\x39\x20\x85\x06\x8c\x1a" "\x7f\x06\x9f\x19\x99\x06\x0c\x20" 
	"\x65\x06\x89\x1a\x9f\x06\x9c\x19" "\xaf\x06\x05\x20\x8b\x06\x84\x1a" 
	"\x97\x06\x8e\x19\xae\x06\x1a\x20" "\x7d\x06\xab\x1a\x86\x06\x78\x19" 
	"\xaa\x06\x46\x20\x86\x06\x98\x1a" "\x8b\x06\x9c\x19\xad\x06\x1b\x20" 
	"\x85\x06\x9c\x1a\x96\x06\xa1\x19" "\xad\x06\xef\x1f\x7d\x06\x70\x1a" 
	"\x96\x06\xa0\x19\xab\x06\xf7\x1f" "\x81\x06\x6d\x1a\x85\x06\x98\x19" 
	"\xb3\x06\x22\x20\x86\x06\x7c\x1a" "\x8d\x06\xba\x19\xa9\x06\x25\x20" 
	"\x82\x06\x86\x1a\x86\x06\x95\x19" "\xb3\x06\x4b\x20\x92\x06\xc9\x1a" 
	"\x8c\x06\xf0\x19\x94\x06\xad\x20" "\x68\x06\xf5\x1a\x86\x06\xeb\x19" 
	"\xb0\x06\x46\x20\x94\x06\xa7\x1a" "\x8c\x06\xe4\x19\xb7\x06\x65\x20" 
	"\x8c\x06\x94\x1a\x84\x06\xd5\x19" "\xb0\x06\x5b\x20\x8b\x06\x91\x1a" 
	"\x8e\x06\xd2\x19\xba\x06\x61\x20" "\x88\x06\xb2\x1a\x8a\x06\xad\x19" 
	"\xa9\x06\x52\x20\x86\x06\xb2\x1a" "\x96\x06\x9a\x19\xab\x06\xa3\x20" 
	"\x92\x06\xe2\x1a\x89\x06\xc2\x19" "\xa2\x06\xe2\x20\x7a\x06\x18\x1b" 
	"\x8a\x06\xff\x19\xb3\x06\x84\x20" "\x8b\x06\xda\x1a\x88\x06\xd8\x19" 
	"\x9b\x06\x81\x20\x74\x06\xd0\x1a" "\x87\x06\xc6\x19\xa8\x06\x1e\x20" 
	"\x86\x06\xd9\x1a\x87\x06\xcf\x19" "\xb0\x06\x43\x20\x85\x06\xc7\x1a" 
	"\x87\x06\xdf\x19\xa3\x06\x62\x20" "\x77\x06\xe3\x1a\x83\x06\xe9\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x9e\x06\x53\x20\x72\x06\xe7\x1a" "\x85\x06\xd8\x19\xb0\x06\xc2\x20" 
	"\x88\x06\x00\x1b\x96\x06\xe9\x19" "\xaf\x06\x57\x20\x84\x06\xe7\x1a" 
	"\x88\x06\xda\x19\xae\x06\x32\x20" "\x89\x06\x37\x1c\x8a\x06\xba\x19" 
	"\x7e\x06\x3b\x20\x53\x06\xbc\x1a" "\x7d\x06\xae\x19\x7f\x06\x1e\x20" 
	"\x57\x06\x9d\x1a\x8d\x06\xbf\x19" "\x9a\x06\x1b\x20\x68\x06\xbd\x1a" 
	"\x86\x06\xbd\x19\x9e\x06\x4d\x20" "\x75\x06\xd2\x1a\x98\x06\xd5\x19" 
	"\xb2\x06\xac\x20\x82\x06\x63\x1b" "\x87\x06\x04\x1a\xa9\x06\x66\x20" 
	"\x81\x06\x00\x1b\x8e\x06\xc7\x19" "\x90\x06\x1d\x20\x5a\x06\xd1\x1a" 
	"\x86\x06\xb6\x19\x8b\x06\x16\x20" "\x60\x06\xd9\x1a\x88\x06\xb3\x19" 
	"\xa7\x06\x0d\x20\x8d\x06\xbb\x1a" "\x9a\x06\x88\x19\x6f\x06\x21\x20" 
	"\x44\x06\xb0\x1a\x82\x06\xa5\x19" "\xa7\x06\x17\x20\x79\x06\xb7\x1a" 
	"\x82\x06\xc4\x19\xa3\x06\x74\x20" "\x6c\x06\xff\x1a\x91\x06\x03\x1a" 
	"\xab\x06\x7d\x20\x85\x06\xff\x1a" "\x84\x06\xfb\x19\xab\x06\x33\x20" 
	"\x7d\x06\x95\x1a\x8a\x06\xbd\x19" "\xa9\x06\xff\x1f\x85\x06\xaf\x1a" 
	"\x91\x06\xb4\x19\x85\x06\xd7\x1f" "\x57\x06\xb0\x1a\x7d\x06\x7c\x19" 
	"\xac\x06\xf8\x1f\x7d\x06\xb1\x1a" "\x91\x06\x96\x19\x93\x06\x5a\x20" 
	"\x79\x06\xb0\x1a\x8d\x06\x9e\x19" "\xab\x06\x5f\x20\x8e\x06\x1c\x1b" 
	"\x93\x06\xe9\x19\xa8\x06\xc6\x20" "\x8f\x06\x76\x1b\x82\x06\x2b\x1a" 
	"\xa7\x06\x77\x20\x7d\x06\xeb\x1a" "\x84\x06\x01\x1a\xac\x06\x2b\x20" 
	"\x7f\x06\xb8\x1a\x8c\x06\xd4\x19" "\xaa\x06\x2d\x20\x79\x06\xbb\x1a" 
	"\x88\x06\xcb\x19\xa6\x06\xd2\x1f" "\x8e\x06\xb0\x1a\x89\x06\x8f\x19" 
	"\xa7\x06\xe8\x1f\x8c\x06\xb1\x1a" "\x7e\x06\x90\x19\xb0\x06\x59\x20" 
	"\x84\x06\xc4\x1a\x85\x06\xb6\x19" "\x9f\x06\x53\x20\x77\x06\x06\x1b" 
	"\x83\x06\xa4\x19\x94\x06\xf7\x1f" "\x6c\x06\xc3\x1a\x8f\x06\xb6\x19" 
	"\x9a\x06\xe3\x1f\x81\x06\xa0\x1a" "\x90\x06\x9d\x19\xb2\x06\xda\x1f" 
	"\x7e\x06\x9d\x1a\x7c\x06\xba\x19" "\xab\x06\xd9\x1f\x80\x06\xaa\x1a" 
	"\x86\x06\xc8\x19\xa4\x06\xe1\x1f" "\x89\x06\xbc\x1a\x88\x06\xce\x19" 
	"\xae\x06\x20\x20\x8b\x06\xc1\x1a" "\x8c\x06\xbe\x19\x85\x06\x87\x20" 
	"\x4d\x06\x18\x1b\x8d\x06\x01\x1a" "\xaa\x06\x44\x20\x7f\x06\xdc\x1a" 
	"\x7a\x06\xb4\x19\xaa\x06\x51\x20" "\x77\x06\x78\x1a\x81\x06\xb4\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
, 0x000f000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x000f000, 4686);
usleep(57*1000);

memcpy(buf, "\x6c\x1c\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(14*1000);

memcpy(buf, 
	"\x82\x06\xfb\x1f\x66\x06\xa4\x1a" "\x81\x06\xab\x19\x9a\x06\xec\x1f" 
	"\x7c\x06\xbc\x1a\x7e\x06\xd0\x19" "\x99\x06\xf2\x1f\x78\x06\xb7\x1a" 
	"\x96\x06\xf5\x19\x92\x06\x9b\x20" "\x67\x06\xce\x1a\x86\x06\xd3\x19" 
	"\xaf\x06\xfe\x20\x81\x06\x3f\x1b" "\x93\x06\x2d\x1a\x9d\x06\x58\x20" 
	"\x7b\x06\x25\x1b\x87\x06\x11\x1a" "\xa9\x06\x1f\x20\x7a\x06\xb7\x1a" 
	"\x89\x06\xd2\x19\xaf\x06\x01\x20" "\x94\x06\xba\x1a\x84\x06\xac\x19" 
	"\x5f\x06\xf5\x1f\x2c\x06\xd3\x1a" "\x73\x06\xd5\x19\x91\x06\xb7\x1f" 
	"\x62\x06\xb2\x1a\x7f\x06\xbd\x19" "\xa5\x06\xf0\x1f\x79\x06\x8f\x1a" 
	"\x88\x06\xc7\x19\x75\x06\x84\x20" "\x59\x06\xf6\x1a\x8c\x06\x0d\x1a" 
	"\xb9\x06\x6f\x20\x7f\x06\xe5\x1a" "\x90\x06\x24\x1a\x9f\x06\x28\x20" 
	"\x68\x06\xb2\x1a\x7f\x06\xc8\x19" "\x92\x06\xce\x1f\x73\x06\x82\x1a" 
	"\x8c\x06\x9f\x19\x99\x06\xc9\x1f" "\x75\x06\x98\x1a\x87\x06\x9f\x19" 
	"\xb0\x06\xe3\x1f\x77\x06\x7f\x1a" "\x7e\x06\xb4\x19\x94\x06\xb7\x1f" 
	"\x6c\x06\x89\x1a\x85\x06\xa6\x19" "\xab\x06\xd3\x1f\x82\x06\xba\x1a" 
	"\x83\x06\xda\x19\x9e\x06\x2c\x20" "\x7a\x06\xeb\x1a\x85\x06\xc2\x19" 
	"\x99\x06\xb9\x1f\x86\x06\xcb\x1a" "\x8a\x06\xd9\x19\xa4\x06\x36\x20" 
	"\x7b\x06\xc3\x1a\x8e\x06\xc9\x19" "\xab\x06\x28\x20\x86\x06\xa8\x1a" 
	"\x89\x06\xba\x19\x92\x06\x0f\x20" "\x5e\x06\x90\x1a\x84\x06\xc6\x19" 
	"\x8b\x06\xea\x1f\x77\x06\xd1\x1a" "\x86\x06\xd0\x19\xa3\x06\x35\x20" 
	"\x8b\x06\x09\x1b\x8e\x06\xda\x19" "\xae\x06\x86\x20\x8c\x06\x82\x1b" 
	"\x7e\x06\x26\x1a\x7f\x06\x0b\x20" "\x53\x06\xd4\x1a\x6b\x06\xb4\x19" 
	"\xa0\x06\xc8\x1f\x74\x06\xbc\x1a" "\x8e\x06\xab\x19\xa6\x06\xd7\x1f" 
	"\x7b\x06\xc1\x1a\x82\x06\x9d\x19" "\xa4\x06\x9e\x1f\x78\x06\xd0\x1a" 
	"\x82\x06\xb1\x19\x80\x06\xd9\x1f" "\x5a\x06\xe3\x1a\x7f\x06\xa5\x19" 
	"\x72\x06\xa7\x1f\x49\x06\xe3\x1a" "\x84\x06\xbe\x19\xa8\x06\xfb\x1f" 
	"\x89\x06\x2f\x1b\x7c\x06\xc1\x19" "\x99\x06\xda\x1f\x79\x06\x0f\x1b" 
	"\x7f\x06\xb5\x19\x92\x06\xe1\x1f" "\x65\x06\xc7\x1a\x85\x06\xb5\x19" 
	"\x97\x06\x16\x20\x6a\x06\xda\x1a" "\x8d\x06\xa0\x19\xad\x06\xf9\x1f" 
	"\x75\x06\xa7\x1a\x84\x06\xc4\x19" "\x84\x06\xeb\x1f\x50\x06\xc9\x1a" 
	"\x87\x06\x79\x19\x8f\x06\xf8\x1f" "\x70\x06\xee\x1a\x83\x06\xaf\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x86\x06\x6b\x20\x6a\x06\x10\x1b" "\x76\x06\xd3\x19\xab\x06\x29\x20" 
	"\x8e\x06\xbe\x1a\x78\x06\x84\x19" "\x8a\x06\x9e\x1f\x60\x06\xaa\x1a" 
	"\x82\x06\x87\x19\x84\x06\xe4\x1f" "\x5d\x06\xb5\x1a\x87\x06\xaf\x19" 
	"\xa3\x06\xf0\x1f\x82\x06\xce\x1a" "\x8c\x06\xbe\x19\xa8\x06\x49\x20" 
	"\x60\x06\x9b\x1a\x8e\x06\xba\x19" "\xa9\x06\x2e\x20\x77\x06\x08\x1b" 
	"\x8a\x06\xbd\x19\xaa\x06\xb1\x20" "\x80\x06\x50\x1b\x89\x06\xfe\x19" 
	"\xac\x06\xa3\x20\x89\x06\x3a\x1b" "\x8d\x06\xe6\x19\xa4\x06\x1c\x20" 
	"\x83\x06\xd4\x1a\x88\x06\xb0\x19" "\xad\x06\x17\x20\x80\x06\xac\x1a" 
	"\x86\x06\xae\x19\xab\x06\x1b\x20" "\x7f\x06\xb4\x1a\x7a\x06\xb0\x19" 
	"\xa2\x06\xdc\x1f\x79\x06\xc7\x1a" "\x90\x06\xc2\x19\x87\x06\x14\x20" 
	"\x58\x06\xb8\x1a\x83\x06\xe7\x19" "\xa5\x06\x82\x20\x8b\x06\x22\x1b" 
	"\x86\x06\xf2\x19\x8d\x06\x9f\x20" "\x5b\x06\x77\x1b\x89\x06\xf8\x19" 
	"\x85\x06\x03\x20\x5d\x06\x04\x1b" "\x82\x06\xac\x19\x97\x06\x9b\x1f" 
	"\x7a\x06\x9e\x1a\x81\x06\x85\x19" "\x99\x06\xc7\x1f\x74\x06\xdf\x1a" 
	"\x89\x06\x84\x19\x74\x06\xca\x1f" "\x4a\x06\xb9\x1a\x81\x06\x7c\x19" 
	"\xa2\x06\xda\x1f\x86\x06\x98\x1a" "\x90\x06\xab\x19\xb3\x06\x41\x20" 
	"\x78\x06\x20\x1b\x8f\x06\xbf\x19" "\xa1\x06\xbd\x20\x88\x06\x36\x1b" 
	"\x87\x06\xed\x19\x9d\x06\x46\x20" "\x78\x06\xe2\x1a\x83\x06\xb7\x19" 
	"\x93\x06\xf0\x1f\x69\x06\xab\x1a" "\x7a\x06\x93\x19\x6f\x06\xbd\x1f" 
	"\x42\x06\x9e\x1a\x86\x06\x84\x19" "\xa6\x06\x5a\x1f\x78\x06\x97\x1a" 
	"\x86\x06\x33\x19\xa9\x06\xab\x1f" "\x81\x06\x77\x1a\x83\x06\x32\x19" 
	"\x96\x06\x85\x1f\x7a\x06\xb5\x1a" "\x85\x06\x55\x19\xa9\x06\xe9\x1f" 
	"\x84\x06\x41\x1b\x75\x06\x9f\x19" "\xa2\x06\x04\x20\x71\x06\xcb\x1a" 
	"\x77\x06\x8c\x19\x95\x06\x88\x1f" "\x69\x06\xa0\x1a\x80\x06\x51\x19" 
	"\xa1\x06\xb3\x1f\x6d\x06\x87\x1a" "\x90\x06\x64\x19\x90\x06\xc6\x1f" 
	"\x69\x06\x9e\x1a\x92\x06\x78\x19" "\xa6\x06\xbf\x1f\x73\x06\x84\x1a" 
	"\x85\x06\x70\x19\x7e\x06\xb4\x1f" "\x51\x06\x64\x1a\x7a\x06\x48\x19" 
	"\xa9\x06\xf9\x1f\x8e\x06\xeb\x1a" "\x80\x06\x7a\x19\xb7\x06\x04\x20" 
	"\x95\x06\x0c\x1b\x8d\x06\x6b\x19" "\xa6\x06\x23\x20\x7e\x06\xa6\x1a" 
	"\x80\x06\x6c\x19\x96\x06\x2d\x20" "\x5e\x06\x9e\x1a\x79\x06\x89\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x92\x06\xe8\x1f\x7d\x06\xa9\x1a" "\x85\x06\x9e\x19\x77\x06\x01\x20" 
	"\x48\x06\xb9\x1a\x70\x06\x9f\x19" "\xa4\x06\x2f\x20\x89\x06\xd1\x1a" 
	"\x82\x06\xc0\x19\x97\x06\x76\x20" "\x6d\x06\x33\x1b\x85\x06\xeb\x19" 
	"\xa1\x06\xa0\x20\x7d\x06\x19\x1b" "\x80\x06\xda\x19\xa3\x06\x5f\x20" 
	"\x77\x06\xb6\x1a\x7e\x06\xb1\x19" "\xa5\x06\xdc\x1f\x7f\x06\x95\x1a" 
	"\x80\x06\x9b\x19\xb1\x06\xbd\x1f" "\x92\x06\x95\x1a\x8f\x06\xa2\x19" 
	"\x90\x06\xf5\x1f\x58\x06\xa6\x1a" "\x86\x06\xaa\x19\x95\x06\x21\x20" 
	"\x68\x06\xb1\x1a\x67\x06\xa9\x19" "\xb0\x06\x69\x20\x80\x06\xd3\x1a" 
	"\x88\x06\xae\x19\x9a\x06\xa0\x20" "\x7c\x06\x1c\x1b\x8b\x06\x05\x1a" 
	"\x96\x06\x18\x20\x77\x06\xa0\x1a" "\x7a\x06\xa8\x19\xa1\x06\xd6\x1f" 
	"\x73\x06\x84\x1a\x7c\x06\xab\x19" "\x91\x06\x24\x20\x5e\x06\xa4\x1a" 
	"\x75\x06\xb6\x19\xa8\x06\xea\x1f" "\x7e\x06\x9b\x1a\x89\x06\xa8\x19" 
	"\x83\x06\xf2\x1f\x53\x06\xca\x1a" "\x8c\x06\xd1\x19\x8f\x06\xbf\x20" 
	"\x66\x06\xef\x1a\x7f\x06\x0c\x1a" "\xb3\x06\xdc\x20\x82\x06\x5d\x1b" 
	"\x8d\x06\x20\x1a\x91\x06\x5b\x20" "\x7b\x06\x04\x1b\x6f\x06\xba\x19" 
	"\xa5\x06\xd8\x1f\x77\x06\xbe\x1a" "\x8a\x06\x95\x19\xa0\x06\xd1\x1f" 
	"\x72\x06\x95\x1a\x96\x06\x9f\x19" "\x89\x06\x20\x20\x66\x06\xb4\x1a" 
	"\x80\x06\x90\x19\x74\x06\x58\x20" "\x47\x06\xce\x1a\x7d\x06\xc3\x19" 
	"\x8d\x06\xa0\x20\x58\x06\xe9\x1a" "\x84\x06\xcb\x19\x98\x06\xc2\x20" 
	"\x73\x06\x64\x1b\x8b\x06\x16\x1a" "\x9b\x06\x84\x20\x79\x06\x44\x1b" 
	"\x85\x06\x03\x1a\xaf\x06\x1e\x20" "\x86\x06\xb7\x1a\x83\x06\xb1\x19" 
	"\x7a\x06\x06\x20\x52\x06\x9a\x1a" "\x7e\x06\x95\x19\xa5\x06\xc9\x1f" 
	"\x7d\x06\x95\x1a\x85\x06\xa2\x19" "\xa4\x06\xe0\x1f\x81\x06\x74\x1a" 
	"\x8c\x06\x8c\x19\x90\x06\xc6\x1f" "\x6f\x06\x97\x1a\x90\x06\xa3\x19" 
	"\x97\x06\x32\x20\x71\x06\xc1\x1a" "\x8a\x06\xf2\x19\xa0\x06\x69\x20" 
	"\x7e\x06\xcd\x1a\x8c\x06\xfe\x19" "\x91\x06\xe1\x1f\x69\x06\x95\x1a" 
	"\x7d\x06\xa2\x19\x70\x06\xc2\x1f" "\x51\x06\x94\x1a\x96\x06\x7c\x19" 
	"\x87\x06\xef\x1f\x64\x06\x8a\x1a" "\x8d\x06\x8a\x19\xa3\x06\x82\x1f" 
	"\x87\x06\x69\x1a\x99\x06\x98\x19" "\xa8\x06\xcb\x1f\x81\x06\x8c\x1a" 
	"\x78\x06\x85\x19\x8f\x06\x02\x20" "\x70\x06\xea\x1a\x7a\x06\x9d\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x8c\x06\xff\x1f\x73\x06\xe9\x1a" "\x7b\x06\x9a\x19\xad\x06\x9e\x1f" 
	"\x81\x06\x7b\x1a\x7f\x06\x6d\x19" "\xa0\x06\x87\x1f\x73\x06\x70\x1a" 
	"\x80\x06\x6c\x19\xa6\x06\xba\x1f" "\x87\x06\x56\x1a\x85\x06\x78\x19" 
	"\x80\x06\x8f\x1f\x5d\x06\x5a\x1a" "\x7b\x06\x7e\x19\xa7\x06\x9d\x1f" 
	"\x7a\x06\x43\x1a\x81\x06\x7d\x19" "\x5e\x06\xf6\x1f\x27\x06\xdf\x1a" 
	"\x77\x06\xb0\x19\x84\x06\x4f\x20" "\x63\x06\x0f\x1b\x85\x06\xeb\x19" 
	"\x94\x06\xfb\x1f\x5e\x06\x61\x1a" "\x8b\x06\x97\x19\x99\x06\xa1\x1f" 
	"\x69\x06\x63\x1a\x87\x06\x8a\x19" "\xa3\x06\x90\x1f\x8b\x06\x61\x1a" 
	"\x8b\x06\x7d\x19\xa7\x06\x7e\x1f" "\x8d\x06\x5a\x1a\x87\x06\x59\x19" 
	"\x8d\x06\x61\x1f\x68\x06\x5c\x1a" "\x93\x06\x74\x19\x86\x06\xb7\x1f" 
	"\x67\x06\x4b\x1a\x82\x06\x7f\x19" "\x8e\x06\x1c\x20\x5c\x06\xd8\x1a" 
	"\x6e\x06\x95\x19\xad\x06\xcb\x1f" "\x7b\x06\x8f\x1a\x85\x06\x9d\x19" 
	"\x8d\x06\xaa\x1f\x60\x06\x61\x1a" "\x80\x06\x8a\x19\x93\x06\x9b\x1f" 
	"\x78\x06\x54\x1a\x7f\x06\x84\x19" "\xa6\x06\xba\x1f\x83\x06\x7b\x1a" 
	"\x93\x06\x97\x19\x9d\x06\xfb\x1f" "\x63\x06\x58\x1a\x82\x06\x9f\x19" 
	"\x8b\x06\xc4\x1f\x66\x06\xa3\x1a" "\x86\x06\xb7\x19\x93\x06\x3c\x20" 
	"\x68\x06\xf4\x1a\x7f\x06\xe4\x19" "\x9b\x06\xe0\x1f\x70\x06\x7c\x1a" 
	"\x8d\x06\xc1\x19\x8e\x06\x92\x1f" "\x66\x06\x7c\x1a\x86\x06\x82\x19" 
	"\xa7\x06\x90\x1f\x7f\x06\x4e\x1a" "\x8b\x06\x9f\x19\x88\x06\xae\x1f" 
	"\x62\x06\x4e\x1a\x79\x06\x97\x19" "\x92\x06\xe7\x1f\x77\x06\x54\x1a" 
	"\x8d\x06\xb8\x19\x98\x06\x06\x20" "\x66\x06\x98\x1a\x7e\x06\xd6\x19" 
	"\xa9\x06\x68\x20\x8c\x06\xf5\x1a" "\x8d\x06\x0a\x1a\xad\x06\x1f\x20" 
	"\x76\x06\xe6\x1a\x96\x06\x04\x1a" "\x95\x06\xc5\x1f\x83\x06\x97\x1a" 
	"\x8e\x06\xbc\x19\x78\x06\xc8\x1f" "\x4d\x06\x80\x1a\x75\x06\xba\x19" 
	"\x5a\x06\xda\x1f\x34\x06\x8b\x1a" "\x8f\x06\xb1\x19\x87\x06\x8d\x1f" 
	"\x63\x06\x4a\x1a\x81\x06\x7d\x19" "\x9b\x06\xbf\x1f\x6b\x06\x5b\x1a" 
	"\x85\x06\xae\x19\xad\x06\xfe\x1f" "\x80\x06\xac\x1a\x84\x06\xc4\x19" 
	"\xa5\x06\xda\x1f\x7c\x06\xa6\x1a" "\x8e\x06\xb8\x19\xb1\x06\xdd\x1f" 
	"\x80\x06\x6c\x1a\x94\x06\x96\x19" "\x8e\x06\xba\x1f\x65\x06\x66\x1a" 
	"\x94\x06\xa4\x19\x7e\x06\x9f\x1f" "\x5a\x06\x6e\x1a\x8e\x06\x9f\x19" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa2\x06\xfc\x1f\x6b\x06\x91\x1a" "\x90\x06\xce\x19\x91\x06\xe8\x1f" 
	"\x60\x06\x9c\x1a\x8e\x06\xc4\x19" "\x8d\x06\x86\x20\x5e\x06\x03\x1b" 
	"\x6c\x06\x0c\x1a\x9e\x06\x96\x20" "\x6f\x06\x47\x1b\x93\x06\x36\x1a" 
	"\x9a\x06\x17\x20\x72\x06\xc7\x1a" "\x7f\x06\xea\x19\x85\x06\x01\x20" 
	"\x66\x06\xa8\x1a\x7c\x06\xcc\x19" "\xa6\x06\xfe\x1f\x85\x06\xa5\x1a" 
	"\x8a\x06\xc7\x19\x88\x06\xfb\x1f" "\x67\x06\xca\x1a\x8e\x06\xdd\x19" 
	"\xab\x06\x2d\x20\x81\x06\xae\x1a" "\x85\x06\xe4\x19\xb9\x06\x8c\x20" 
	"\x80\x06\xf6\x1a\x8a\x06\x2a\x1a" "\xb9\x06\xf2\x20\x8c\x06\xa0\x1b" 
	"\x8b\x06\x9f\x1a\xa8\x06\x6a\x20" "\x7f\x06\x50\x1b\x97\x06\x43\x1a" 
	"\x88\x06\x76\x20\x68\x06\xcc\x1a" "\x89\x06\x1c\x1a\xa9\x06\x32\x20" 
	"\x8f\x06\xd1\x1a\x86\x06\x10\x1a" "\x86\x06\x49\x20\x58\x06\xd4\x1a" 
	"\x87\x06\xfc\x19\x9f\x06\x2e\x20" "\x7e\x06\xd2\x1a\x84\x06\x23\x1a" 
	"\x8f\x06\xac\x20\x6b\x06\x09\x1b" "\x8e\x06\x33\x1a\xa6\x06\x26\x21" 
	"\x81\x06\x5f\x1b\x9d\x06\xbc\x1a" "\x9e\x06\x99\x20\x86\x06\x6d\x1b" 
	"\x95\x06\x93\x1a\xaf\x06\x45\x20" "\x89\x06\x13\x1b\x88\x06\x37\x1a" 
	"\x89\x06\x32\x20\x61\x06\xd5\x1a" "\x8f\x06\x2a\x1a\xa1\x06\xe5\x1f" 
	"\x86\x06\x94\x1a\x99\x06\x29\x1a" "\x9d\x06\xf5\x1f\x78\x06\xbc\x1a" 
	"\x93\x06\x10\x1a\xa1\x06\x08\x20" "\x87\x06\xdd\x1a\x85\x06\x27\x1a" 
	"\x94\x06\xac\x20\x65\x06\x41\x1b" "\x9d\x06\xa4\x1a\x88\x06\xb5\x20" 
	"\x60\x06\x06\x1b\x93\x06\x7f\x1a" "\x95\x06\x20\x20\x74\x06\xa3\x1a" 
	"\x93\x06\x29\x1a\x9c\x06\x16\x20" "\x79\x06\xad\x1a\x9a\x06\x1a\x1a" 
	"\xa9\x06\xdf\x1f\x89\x06\x8e\x1a" "\x90\x06\x01\x1a\xae\x06\x18\x20" 
	"\x7c\x06\x8e\x1a\x8e\x06\xec\x19" "\xb3\x06\x2e\x20\x90\x06\xc7\x1a" 
	"\x87\x06\xeb\x19\x9d\x06\x65\x20" "\x7e\x06\xf4\x1a\x9e\x06\x36\x1a" 
	"\x8a\x06\xd3\x20\x65\x06\x19\x1b" "\x9c\x06\x80\x1a\xa7\x06\x58\x20" 
	"\x8c\x06\xab\x1a\x9a\x06\x26\x1a" "\xa4\x06\x14\x20\x85\x06\xc3\x1a" 
	"\x89\x06\x0d\x1a\x9e\x06\x42\x20" "\x69\x06\xb5\x1a\x97\x06\xdd\x19" 
	"\x9c\x06\x13\x20\x8a\x06\xbc\x1a" "\x91\x06\x01\x1a\xb1\x06\x04\x20" 
	"\x9c\x06\xcf\x1a\x97\x06\x12\x1a" "\xb9\x06\xa5\x20\x9c\x06\xf8\x1a" 
	"\x90\x06\x66\x1a\xb9\x06\x0e\x21" "\x8b\x06\x33\x1b\x8f\x06\x82\x1a" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa9\x06\x5f\x20\x8a\x06\xe1\x1a" "\x99\x06\x1f\x1a\x95\x06\x2a\x20" 
	"\x78\x06\xb8\x1a\xa7\x06\x1a\x1a" "\x9f\x06\xfa\x1f\x6b\x06\xa4\x1a" 
	"\x98\x06\xf7\x19\xa8\x06\xcb\x1f" "\x92\x06\x98\x1a\x94\x06\xed\x19" 
	"\xaf\x06\x02\x20\x7d\x06\x9a\x1a" "\x89\x06\xec\x19\xa6\x06\x5d\x20" 
	"\x91\x06\xca\x1a\x98\x06\x16\x1a" "\x9a\x06\x8c\x20\x76\x06\x19\x1b" 
	"\x9c\x06\x4b\x1a\xa5\x06\x07\x20" "\x9f\x06\xeb\x1a\x90\x06\xee\x19" 
	"\x9b\x06\xdf\x1f\x79\x06\x91\x1a" "\x95\x06\xed\x19\xa8\x06\x12\x20" 
	"\x75\x06\xa8\x1a\x94\x06\x02\x1a" "\xb3\x06\xfd\x1f\x8a\x06\xa7\x1a" 
	"\x99\x06\xf4\x19\xa0\x06\x08\x20" "\x91\x06\xa6\x1a\x93\x06\x13\x1a" 
	"\xa6\x06\x59\x20\x82\x06\xdc\x1a" "\x8e\x06\x15\x1a\xb4\x06\xb1\x20" 
	"\x8c\x06\x24\x1b\x94\x06\x83\x1a" "\xb0\x06\x82\x20\x86\x06\x27\x1b" 
	"\x94\x06\x69\x1a\xad\x06\x4c\x20" "\x86\x06\xe2\x1a\x93\x06\x2e\x1a" 
	"\xbd\x06\x33\x20\x91\x06\xd9\x1a" "\x9b\x06\x4b\x1a\xa9\x06\x32\x20" 
	"\x83\x06\xbb\x1a\x8c\x06\x37\x1a" "\x9e\x06\x03\x20\x81\x06\xd6\x1a" 
	"\x89\x06\x28\x1a\xa5\x06\x4f\x20" "\x72\x06\xc9\x1a\x91\x06\x48\x1a" 
	"\xb1\x06\xc8\x20\x90\x06\x5c\x1b" "\x9a\x06\x8c\x1a\xc3\x06\xc8\x20" 
	"\x9b\x06\x67\x1b\x9b\x06\x8f\x1a" "\xb3\x06\x6b\x20\x88\x06\x05\x1b" 
	"\x94\x06\x6f\x1a\xb7\x06\x68\x20" "\x87\x06\x1d\x1b\x8b\x06\x4f\x1a" 
	"\xb9\x06\x4f\x20\x9a\x06\xf1\x1a" "\x92\x06\x65\x1a\x7f\x06\x51\x20" 
	"\x59\x06\xf8\x1a\xa2\x06\x32\x1a" "\xa8\x06\x43\x20\x82\x06\xd7\x1a" 
	"\x97\x06\x1b\x1a\xb1\x06\x8c\x20" "\x9b\x06\x37\x1b\x8e\x06\x31\x1a" 
	"\xaf\x06\x7c\x20\x9d\x06\x83\x1b" "\x92\x06\x4b\x1a\xa9\x06\x57\x20" 
	"\x7e\x06\x2d\x1b\x97\x06\x50\x1a" "\xae\x06\x32\x20\x98\x06\x00\x1b" 
	"\xa4\x06\x3d\x1a\xac\x06\x0c\x20" "\x92\x06\x16\x1b\x97\x06\x51\x1a" 
	"\x8e\x06\x6d\x20\x6b\x06\x25\x1b" "\x91\x06\x6f\x1a\x81\x06\x4f\x20" 
	"\x63\x06\x2a\x1b\x85\x06\x67\x1a" "\xa1\x06\x94\x20\x83\x06\xa0\x1b" 
	"\x8b\x06\x83\x1a\xda\x06\xfa\x20" "\xb2\x06\xd1\x1b\xcd\x06\xe1\x1a" 
	"\x39\x07\x08\x20\x12\x07\x28\x1b" "\x2f\x07\x5b\x1a\xa9\x07\x44\x1f" 
	"\x7f\x07\xc6\x1a\xa7\x07\xff\x19" "\x7b\x07\xe0\x1e\x63\x07\x82\x1a" 
	"\x6b\x07\x93\x19\x6d\x06\x57\x1e" "\x59\x06\x13\x1a\x60\x06\xe0\x18" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x5c\x06\x51\x1e\x3d\x06\x57\x1a" "\x57\x06\x43\x19\x3c\x07\xdd\x1e" 
	"\x12\x07\x9d\x1a\x69\x07\xc3\x19" "\xa6\x07\x98\x1f\x74\x07\x2b\x1b" 
	"\x9b\x07\x98\x1a\x43\x07\xab\x20" "\x22\x07\xcd\x1b\x30\x07\x3c\x1b" 
	"\xd7\x06\x34\x21\xbd\x06\xfe\x1b" "\xd0\x06\x89\x1b\xa5\x06\x33\x21" 
	"\x78\x06\xd1\x1b\x89\x06\x4a\x1b" "\x8a\x06\xe9\x20\x74\x06\x96\x1b" 
	"\x80\x06\xd6\x1a\x5b\x06\xe2\x20" "\x3b\x06\xb6\x1b\x7c\x06\xeb\x1a" 
	"\xa5\x06\xd5\x20\x88\x06\x94\x1b" "\x96\x06\x21\x1b\xb4\x06\xfb\x20" 
	"\x97\x06\x0c\x1c\xaa\x06\x58\x1b" "\x8c\x06\x18\x22\x6d\x06\x7b\x1c" 
	"\xa9\x06\xd2\x1b\x97\x06\x3a\x22" "\x83\x06\xb5\x1c\xa6\x06\xd7\x1b" 
	"\x9b\x06\xde\x21\x78\x06\x78\x1c" "\x88\x06\xd5\x1b\xb1\x06\x32\x21" 
	"\x87\x06\xfc\x1b\x99\x06\x61\x1b" "\x9c\x06\xf1\x20\x77\x06\xdf\x1b" 
	"\x9d\x06\x3e\x1b\xab\x06\xd1\x20" "\x83\x06\xc3\x1b\x99\x06\x54\x1b" 
	"\xa5\x06\x0c\x21\x76\x06\xd3\x1b" "\xa1\x06\x86\x1b\xb9\x06\x6f\x21" 
	"\x95\x06\x2b\x1c\xa0\x06\xb6\x1b" "\xb3\x06\xb6\x21\x95\x06\x94\x1c" 
	"\x9b\x06\x18\x1c\xac\x06\xb0\x21" "\xa7\x06\xa3\x1c\x9e\x06\x1e\x1c" 
	"\xaf\x06\x0a\x21\x8b\x06\xdc\x1b" "\x95\x06\x88\x1b\xa0\x06\xce\x20" 
	"\x7f\x06\x83\x1b\x9b\x06\x58\x1b" "\xaa\x06\xfa\x20\x93\x06\xb0\x1b" 
	"\x98\x06\x5b\x1b\x94\x06\x0a\x21" "\x70\x06\xc1\x1b\x97\x06\x74\x1b" 
	"\xa1\x06\x8e\x21\x80\x06\x2e\x1c" "\xa6\x06\xc1\x1b\x9f\x06\x0b\x22" 
	"\x7a\x06\x42\x1c\xa4\x06\x1a\x1c" "\x9b\x06\xd6\x21\x76\x06\x4a\x1c" 
	"\xa6\x06\xdd\x1b\xb1\x06\x24\x21" "\x98\x06\x9f\x1b\xa0\x06\x58\x1b" 
	"\x94\x06\x33\x21\x70\x06\x9c\x1b" "\x96\x06\x54\x1b\xac\x06\xf5\x20" 
	"\x81\x06\x86\x1b\xa5\x06\x42\x1b" "\xad\x06\x05\x21\x84\x06\x88\x1b" 
	"\x9b\x06\x3b\x1b\xb1\x06\x98\x21" "\x8a\x06\x0b\x1c\xa0\x06\xbe\x1b" 
	"\xc4\x06\xfd\x21\xaa\x06\x6b\x1c" "\x9e\x06\x19\x1c\xb9\x06\xe7\x21" 
	"\xa6\x06\x77\x1c\xa0\x06\xce\x1b" "\xb5\x06\x7b\x21\x8f\x06\xe6\x1b" 
	"\xa6\x06\x97\x1b\xa7\x06\x00\x21" "\x80\x06\x8c\x1b\x99\x06\x1c\x1b" 
	"\xa3\x06\xc0\x20\x84\x06\x73\x1b" "\x91\x06\x2a\x1b\xa8\x06\x1d\x21" 
	"\x74\x06\xa8\x1b\x98\x06\x65\x1b" "\xac\x06\x4a\x21\x8c\x06\x10\x1c" 
	"\xa5\x06\xad\x1b\xba\x06\x04\x22" "\x88\x06\x45\x1c\xa2\x06\x50\x1c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xa0\x06\x31\x22\x82\x06\x7c\x1c" "\xaf\x06\x6b\x1c\xa5\x06\xb8\x21" 
	"\x7c\x06\x5c\x1c\x9c\x06\xd3\x1b" "\x9a\x06\x40\x21\x7c\x06\xcd\x1b" 
	"\x95\x06\x99\x1b\xaa\x06\xf2\x20" "\x8e\x06\xbc\x1b\xa9\x06\x63\x1b" 
	"\xaa\x06\xed\x20\x87\x06\x92\x1b" "\xa5\x06\x86\x1b\xab\x06\x37\x21" 
	"\x85\x06\xc3\x1b\x9c\x06\x94\x1b" "\xa2\x06\xe5\x21\x7c\x06\x44\x1c" 
	"\xa1\x06\xfb\x1b\xa5\x06\xef\x21" "\x81\x06\x5f\x1c\x9c\x06\x3a\x1c" 
	"\xa7\x06\x8a\x21\x91\x06\x0a\x1c" "\x9e\x06\xdf\x1b\xa1\x06\x4a\x21" 
	"\x78\x06\xdf\x1b\x8d\x06\x5d\x1b" "\xa2\x06\xce\x20\x99\x06\xa4\x1b" 
	"\x94\x06\x50\x1b\x96\x06\xfd\x20" "\x73\x06\xc1\x1b\x9c\x06\x96\x1b" 
	"\xa2\x06\x52\x21\x76\x06\x04\x1c" "\x9e\x06\xe3\x1b\x9c\x06\xf0\x21" 
	"\x71\x06\x89\x1c\xaf\x06\x4e\x1c" "\xbf\x06\x38\x22\x97\x06\xaa\x1c" 
	"\xa8\x06\x64\x1c\xb4\x06\x31\x22" "\x8c\x06\xa4\x1c\xae\x06\x6f\x1c" 
	"\xb8\x06\x7b\x21\x99\x06\x49\x1c" "\xa2\x06\xf7\x1b\x83\x06\x41\x21" 
	"\x6c\x06\x09\x1c\xa3\x06\xcb\x1b" "\x92\x06\x29\x21\x80\x06\x12\x1c" 
	"\xb2\x06\xb6\x1b\x9b\x06\x96\x21" "\x75\x06\x25\x1c\x9d\x06\xe2\x1b" 
	"\x95\x06\x0e\x22\x77\x06\xe4\x1c" "\xaa\x06\x50\x1c\xb0\x06\x6a\x22" 
	"\x9f\x06\x12\x1d\xb1\x06\xb7\x1c" "\xbc\x06\x89\x22\x98\x06\xc5\x1c" 
	"\xb1\x06\xab\x1c\x91\x06\x1b\x22" "\x75\x06\x83\x1c\xaf\x06\x1e\x1c" 
	"\x94\x06\x86\x21\x76\x06\x34\x1c" "\xa7\x06\xcc\x1b\xae\x06\x8f\x21" 
	"\x8c\x06\x16\x1c\xae\x06\xeb\x1b" "\xa8\x06\xd7\x21\x94\x06\x64\x1c" 
	"\xaa\x06\xee\x1b\xb9\x06\x39\x22" "\xaa\x06\x87\x1c\xaa\x06\x56\x1c" 
	"\x97\x06\xa9\x22\x82\x06\x56\x1d" "\xa8\x06\xd0\x1c\xc1\x06\xc8\x22" 
	"\x99\x06\xf3\x1c\xaf\x06\xdb\x1c" "\xb7\x06\x36\x22\x96\x06\xb0\x1c" 
	"\xb4\x06\x92\x1c\x8e\x06\xe9\x21" "\x61\x06\x54\x1c\xaf\x06\x1a\x1c" 
	"\xb6\x06\x6f\x21\x9d\x06\x1d\x1c" "\xab\x06\xeb\x1b\xa0\x06\x8a\x21" 
	"\x89\x06\x5e\x1c\xb0\x06\xf1\x1b" "\xb2\x06\xf7\x21\x9a\x06\x95\x1c" 
	"\xa6\x06\x76\x1c\xc6\x06\xc2\x22" "\xb0\x06\xf6\x1c\xbb\x06\xa6\x1c" 
	"\xa2\x06\x5c\x22\x7d\x06\xf2\x1c" "\xc0\x06\xb4\x1c\xba\x06\xbd\x21" 
	"\x9b\x06\xa6\x1c\xbb\x06\x64\x1c" "\xbc\x06\x76\x21\x94\x06\x47\x1c" 
	"\xbe\x06\x19\x1c\xce\x06\x81\x21" "\x9d\x06\x32\x1c\xac\x06\xee\x1b" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xb5\x06\x8b\x21\x96\x06\x4d\x1c" "\xa5\x06\x02\x1c\xbe\x06\xd0\x21" 
	"\xa4\x06\x92\x1c\xbe\x06\x6a\x1c" "\xb0\x06\xb1\x22\x9b\x06\x37\x1d" 
	"\xb4\x06\xdc\x1c\x9f\x06\xf8\x22" "\x8e\x06\x86\x1d\xbd\x06\x1f\x1d" 
	"\xb5\x06\xa7\x22\xb0\x06\x61\x1d" "\xc3\x06\x06\x1d\xc5\x06\x31\x22" 
	"\xa9\x06\xe3\x1c\xb7\x06\x81\x1c" "\xb2\x06\xd5\x21\x9f\x06\xbb\x1c" 
	"\xb6\x06\x73\x1c\xa0\x06\xf7\x21" "\x86\x06\x98\x1c\xbb\x06\x5e\x1c" 
	"\xc2\x06\x4b\x22\xa7\x06\xde\x1c" "\xba\x06\x92\x1c\xb2\x06\xd2\x22" 
	"\x9e\x06\x60\x1d\xb9\x06\x12\x1d" "\xb5\x06\x1f\x23\x93\x06\xa8\x1d" 
	"\xba\x06\x55\x1d\xaa\x06\x66\x23" "\x8c\x06\xa3\x1d\xbe\x06\x4c\x1d" 
	"\xc5\x06\x73\x22\xa5\x06\x38\x1d" "\xae\x06\xdc\x1c\xc1\x06\x40\x22" 
	"\xa0\x06\xd3\x1c\xab\x06\x97\x1c" "\xa4\x06\x8b\x22\x87\x06\xdc\x1c" 
	"\xbe\x06\xaf\x1c\xb1\x06\x6f\x22" "\x9f\x06\x0f\x1d\xc2\x06\xdb\x1c" 
	"\xa3\x06\x03\x23\x97\x06\xa2\x1d" "\xbd\x06\x60\x1d\xb1\x06\x95\x23" 
	"\x9e\x06\x04\x1e\xae\x06\xc3\x1d" "\xba\x06\x8c\x23\xa4\x06\x19\x1e" 
	"\xb5\x06\xb6\x1d\xb8\x06\x28\x23" "\x90\x06\xad\x1d\xc1\x06\x77\x1d" 
	"\x97\x06\xbf\x22\x7e\x06\x39\x1d" "\xc1\x06\x13\x1d\xc2\x06\x66\x22" 
	"\xa4\x06\x24\x1d\xb9\x06\xea\x1c" "\xc4\x06\x6a\x22\xa5\x06\x3c\x1d" 
	"\xae\x06\xef\x1c\xa5\x06\xa3\x22" "\x95\x06\x68\x1d\xbf\x06\x1a\x1d" 
	"\xb9\x06\x7b\x23\x84\x06\xb8\x1d" "\xd2\x06\x9e\x1d\xb9\x06\xd7\x23" 
	"\x95\x06\xf2\x1d\xc7\x06\xb0\x1d" "\xa7\x06\x32\x23\x85\x06\x6f\x1d" 
	"\xbd\x06\x45\x1d\xc4\x06\xc9\x22" "\x9c\x06\x0b\x1d\xbe\x06\x06\x1d" 
	"\x9f\x06\x9f\x22\x80\x06\x49\x1d" "\xbd\x06\x0f\x1d\xcd\x06\xdf\x22" 
	"\xa9\x06\x49\x1d\xc2\x06\x40\x1d" "\xcb\x06\x01\x23\xa8\x06\x71\x1d" 
	"\xcc\x06\x85\x1d\xca\x06\xce\x23" "\xb7\x06\x16\x1e\xc6\x06\x18\x1e" 
	"\xc7\x06\xed\x23\xb6\x06\x7e\x1e" "\xc1\x06\x39\x1e\xd3\x06\xba\x23" 
	"\xa4\x06\x16\x1e\xc7\x06\xe7\x1d" "\xd1\x06\x0f\x23\xae\x06\x7e\x1d" 
	"\xbe\x06\x7d\x1d\xa7\x06\x57\x23" "\x91\x06\xaf\x1d\xc4\x06\x8c\x1d" 
	"\xbe\x06\xe7\x22\xa6\x06\xa5\x1d" "\xca\x06\x8d\x1d\xbb\x06\x34\x23" 
	"\xad\x06\xdf\x1d\xcf\x06\xa9\x1d" "\xb5\x06\xe3\x23\x97\x06\x8e\x1e" 
	"\xc2\x06\x4b\x1e\xb4\x06\x0b\x24" "\xa0\x06\xe8\x1e\xcf\x06\x85\x1e" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xc0\x06\xc9\x23\xbb\x06\x6d\x1e" "\xc5\x06\x21\x1e\xcc\x06\x8c\x23" 
	"\xac\x06\x19\x1e\xc9\x06\xe8\x1d" "\x9d\x06\x74\x23\x81\x06\x06\x1e" 
	"\xc0\x06\xd8\x1d\xc4\x06\x94\x23" "\xb3\x06\x1e\x1e\xc7\x06\xda\x1d" 
	"\xc7\x06\xd1\x23\xb9\x06\x60\x1e" "\xc6\x06\xfb\x1d\xc4\x06\x48\x24" 
	"\xb7\x06\xd9\x1e\xcc\x06\xb2\x1e" "\xad\x06\xe7\x24\x7e\x06\x41\x1f" 
	"\xc3\x06\xf9\x1e\xcb\x06\xe6\x24" "\xb6\x06\x4f\x1f\xbf\x06\xeb\x1e" 
	"\xca\x06\x55\x24\xb3\x06\x93\x1e" "\xc7\x06\x59\x1e\xbd\x06\xea\x23" 
	"\xad\x06\xac\x1e\xd4\x06\x30\x1e" "\xb7\x06\x0b\x24\x95\x06\x8c\x1e" 
	"\xbe\x06\x4f\x1e\xc6\x06\x41\x24" "\xb1\x06\xd9\x1e\xc7\x06\x74\x1e" 
	"\x93\x06\x2b\x25\x73\x06\x55\x1f" "\xc3\x06\xda\x1e\xd0\x06\xc3\x25" 
	"\xc2\x06\xb5\x1f\xc7\x06\x69\x1f" "\xc3\x06\x9c\x25\xb6\x06\xe8\x1f" 
	"\xcd\x06\x5b\x1f\xd0\x06\x10\x25" "\xc2\x06\x81\x1f\xc1\x06\xdb\x1e" 
	"\xcb\x06\xcc\x24\xb3\x06\x08\x1f" "\xc4\x06\xb3\x1e\xc0\x06\xaf\x24" 
	"\xb1\x06\x06\x1f\xc4\x06\xb0\x1e" "\xd4\x06\x94\x24\xb2\x06\x2e\x1f" 
	"\xd3\x06\x99\x1e\xc2\x06\xd4\x24" "\xbf\x06\x81\x1f\xd4\x06\xe3\x1e" 
	"\xd1\x06\x92\x25\xb2\x06\x1f\x20" "\xc9\x06\x11\x1f\xc9\x06\x40\x26" 
	"\xb4\x06\x4f\x20\xc3\x06\x49\x1f" "\xa9\x06\x36\x26\x93\x06\x13\x20" 
	"\xc6\x06\x42\x1f\xcb\x06\x67\x25" "\xbb\x06\xb7\x1f\xd8\x06\x42\x1f" 
	"\xc4\x06\x77\x25\xb0\x06\xe6\x1f" "\xd9\x06\xa7\x1f\xac\x06\xec\x25" 
	"\x91\x06\x0a\x20\xd4\x06\xec\x1f" "\xd3\x06\x12\x26\xa7\x06\x3a\x20" 
	"\xd0\x06\x28\x20\xc5\x06\xa5\x26" "\xa7\x06\x0f\x21\xd0\x06\xdf\x20" 
	"\xd6\x06\x55\x27\xad\x06\x5f\x21" "\xc7\x06\x30\x21\xb7\x06\x64\x27" 
	"\xa0\x06\x4d\x21\xd3\x06\x49\x21" "\xc9\x06\xa1\x26\xb5\x06\x9f\x20" 
	"\xda\x06\x83\x20\xbe\x06\x94\x26" "\xaf\x06\xe8\x20\xd3\x06\xc0\x20" 
	"\xca\x06\x95\x26\xad\x06\xdd\x20" "\xd6\x06\xe7\x20\xdf\x06\xf3\x26" 
	"\xc4\x06\x27\x21\xd8\x06\x30\x21" "\xde\x06\x47\x28\xd0\x06\xdc\x21" 
	"\xea\x06\xf5\x21\xd5\x06\x38\x28" "\xc2\x06\x3b\x22\xe0\x06\x08\x22" 
	"\xdb\x06\x0c\x28\xb8\x06\x36\x22" "\xe4\x06\xec\x21\xec\x06\x88\x27" 
	"\xc9\x06\xd1\x21\xe6\x06\xc2\x21" "\xdc\x06\x5c\x27\xc6\x06\xbf\x21" 
	"\xe1\x06\x82\x21\xdb\x06\x92\x27" "\xcf\x06\xb8\x21\xe8\x06\xca\x21" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xdd\x06\x03\x28\xcb\x06\x1c\x22" "\xd9\x06\x16\x22\xe0\x06\xd7\x28" 
	"\xd6\x06\xd4\x22\xd5\x06\xb3\x22" "\xd8\x06\x43\x29\xc8\x06\x60\x23" 
	"\xe1\x06\x2f\x23\xda\x06\x8d\x29" "\xe5\x06\x6c\x23\xe9\x06\x4e\x23" 
	"\xd3\x06\xb8\x28\xc4\x06\x10\x23" "\xe3\x06\xe5\x22\xd4\x06\xb4\x28" 
	"\xaa\x06\xd0\x22\xe7\x06\xbe\x22" "\xc4\x06\xbb\x28\xaa\x06\xe4\x22" 
	"\xd5\x06\x13\x23\xde\x06\x02\x29" "\xd4\x06\x21\x23\xef\x06\x80\x23" 
	"\xde\x06\x5c\x2a\xb6\x06\xcb\x23" "\xdc\x06\xf9\x23\xe8\x06\x7a\x2a" 
	"\xd5\x06\x7e\x24\xee\x06\xaa\x24" "\xda\x06\x0c\x2a\xba\x06\xa8\x24" 
	"\xda\x06\x8d\x24\xe1\x06\xb0\x29" "\xc7\x06\x0a\x24\xe5\x06\x19\x24" 
	"\xe3\x06\x85\x29\xd4\x06\xcc\x23" "\xe6\x06\xf2\x23\xda\x06\xbf\x29" 
	"\xb7\x06\xcb\x23\xe3\x06\xf0\x23" "\xdb\x06\x12\x2a\xc9\x06\x22\x24" 
	"\xe4\x06\x53\x24\xed\x06\xf8\x2a" "\xd2\x06\xce\x24\xe3\x06\xd3\x24" 
	"\xe5\x06\xfc\x2b\xd5\x06\xbb\x25" "\xe6\x06\xf9\x25\xe0\x06\x3d\x2c" 
	"\xdf\x06\xc2\x25\xf1\x06\x3d\x26" "\xe1\x06\x1e\x2c\xd9\x06\xa8\x25" 
	"\xe3\x06\xce\x25\xcc\x06\x88\x2b" "\xb3\x06\x95\x25\xe9\x06\x83\x25" 
	"\xe9\x06\x39\x2b\xde\x06\x62\x25" "\xe9\x06\xa1\x25\xf3\x06\xaf\x2b" 
	"\xe2\x06\x9a\x25\xf6\x06\xb8\x25" "\xe5\x06\x35\x2c\xd8\x06\xee\x25" 
	"\xec\x06\xfb\x25\xdd\x06\x12\x2d" "\xbe\x06\x04\x27\xec\x06\xdf\x26" 
	"\xe0\x06\xba\x2d\xd1\x06\x87\x27" "\xed\x06\x5d\x27\x01\x07\x9c\x2d" 
	"\xe3\x06\x4a\x27\xe6\x06\x39\x27" "\xee\x06\xe7\x2c\xe6\x06\xe9\x26" 
	"\xf3\x06\x22\x27\xd7\x06\x2a\x2d" "\xcb\x06\xfe\x26\xea\x06\x47\x27" 
	"\xee\x06\x6d\x2d\xd6\x06\x05\x27" "\xee\x06\x4f\x27\xda\x06\xeb\x2d" 
	"\xc8\x06\x9d\x27\xed\x06\xba\x27" "\x01\x07\xe9\x2e\xe9\x06\x9d\x28" 
	"\xee\x06\xe4\x28\xed\x06\xd6\x2f" "\xea\x06\x52\x29\x00\x07\x71\x29" 
	"\xf7\x06\x44\x30\xd4\x06\x2b\x29" "\xf4\x06\x88\x29\xd7\x06\x00\x30" 
	"\xcf\x06\x3f\x29\xfc\x06\x88\x29" "\xfc\x06\xda\x2f\xe1\x06\x31\x29" 
	"\xfa\x06\x90\x29\xe9\x06\x3a\x30" "\xe3\x06\x95\x29\xf5\x06\x30\x2a" 
	"\xf8\x06\xfc\x30\xe5\x06\x45\x2a" "\xf8\x06\xd9\x2a\xcc\x06\x17\x32" 
	"\xba\x06\x17\x2b\xf6\x06\xda\x2b" "\x04\x07\xf1\x32\xf9\x06\x7c\x2b" 
	"\x0b\x07\x56\x2c\xf7\x06\xdf\x32" "\xdd\x06\xf6\x2b\xff\x06\x83\x2c" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xe9\x06\x32\x32\xe0\x06\x92\x2b" "\x07\x07\xcc\x2b\xfb\x06\x13\x32" 
	"\xf5\x06\xcb\x2b\x0d\x07\xf9\x2b" "\xd4\x06\xf5\x32\xc5\x06\x37\x2c" 
	"\x0b\x07\x68\x2c\xf7\x06\x19\x33" "\xe9\x06\x3c\x2c\xf9\x06\xee\x2c" 
	"\xf8\x06\x48\x34\xe9\x06\x6b\x2d" "\x07\x07\x41\x2e\xf7\x06\x11\x35" 
	"\xf0\x06\x6f\x2e\x13\x07\x0a\x2f" "\xfd\x06\x3a\x35\xf0\x06\x70\x2e" 
	"\x0c\x07\x3c\x2f\xf9\x06\xbd\x34" "\xf9\x06\x15\x2e\x10\x07\x09\x2f" 
	"\x05\x07\xe5\x34\xf7\x06\x4d\x2e" "\x0f\x07\xf6\x2e\xf2\x06\x0c\x35" 
	"\xec\x06\x8b\x2e\x0c\x07\x23\x2f" "\xf2\x06\x64\x35\xee\x06\x06\x2f" 
	"\x03\x07\x81\x2f\xde\x06\xa4\x37" "\xdb\x06\x42\x30\x10\x07\xd4\x30" 
	"\x09\x07\xc4\x38\x02\x07\xd3\x30" "\x10\x07\x1b\x32\x13\x07\x0d\x39" 
	"\xfc\x06\x6d\x31\x0b\x07\x60\x32" "\x19\x07\xce\x38\x01\x07\x78\x31" 
	"\x0e\x07\x58\x32\xf3\x06\x04\x39" "\xf1\x06\x54\x31\x09\x07\xe6\x31" 
	"\xf6\x06\xf1\x38\xed\x06\x5e\x31" "\x0f\x07\x54\x32\xf9\x06\xd8\x39" 
	"\xf0\x06\xc6\x31\x0d\x07\xa1\x32" "\x12\x07\xd3\x3a\x02\x07\x39\x32" 
	"\x0c\x07\xe8\x33\x09\x07\x02\x3c" "\x09\x07\x57\x34\x14\x07\x28\x35" 
	"\x1a\x07\x1f\x3d\x12\x07\x19\x34" "\x19\x07\x9f\x35\xf3\x06\xa0\x3d" 
	"\xdf\x06\xee\x34\xfd\x06\x78\x35" "\x13\x07\xd3\x3b\xf7\x06\x77\x33" 
	"\x10\x07\xf1\x34\xfb\x06\xc1\x3c" "\xf0\x06\x1b\x34\x16\x07\x7b\x35" 
	"\xff\x06\x07\x3d\xf7\x06\xc4\x34" "\x16\x07\xc9\x35\x15\x07\xb6\x3e" 
	"\x10\x07\x10\x36\x1a\x07\xc5\x36" "\x15\x07\x00\x40\x11\x07\x4b\x37" 
	"\x1e\x07\x73\x38\x0e\x07\x75\x41" "\x04\x07\x2f\x38\x16\x07\x6a\x39" 
	"\x18\x07\xb5\x41\x08\x07\x4a\x38" "\x1d\x07\xa3\x39\x18\x07\x05\x41" 
	"\x15\x07\xb8\x37\x10\x07\x27\x39" "\x11\x07\xd5\x40\xf6\x06\x2d\x38" 
	"\x23\x07\xcc\x39\x1b\x07\xeb\x41" "\x0a\x07\xe1\x38\x12\x07\x09\x3a" 
	"\x08\x07\xc4\x42\x01\x07\x09\x3a" "\x16\x07\x58\x3b\xee\x06\x12\x46" 
	"\xe7\x06\x3c\x3c\x0f\x07\x3f\x3d" "\x14\x07\xac\x46\x0f\x07\x2f\x3d" 
	"\x1e\x07\xcb\x3e\x10\x07\x6b\x48" "\x01\x07\x15\x3e\x1b\x07\x23\x40" 
	"\x23\x07\x94\x46\x12\x07\x0b\x3d" "\x22\x07\xd2\x3e\x1a\x07\x0a\x47" 
	"\x10\x07\x5f\x3d\x1d\x07\x47\x3f" "\x28\x07\x36\x48\x08\x07\x01\x3e" 
	"\x1d\x07\xd4\x3f\x1d\x07\xe2\x48" "\x18\x07\x16\x3f\x2c\x07\x22\x41" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x20\x07\xfb\x4a\x14\x07\xf3\x40" "\x1f\x07\xe5\x42\x19\x07\x50\x4c" 
	"\x13\x07\x70\x41\x25\x07\x1e\x44" "\x22\x07\x5a\x4d\x17\x07\x94\x42" 
	"\x25\x07\x30\x44\x0f\x07\x77\x4d" "\x14\x07\xf4\x41\x1c\x07\x3f\x44" 
	"\x13\x07\x23\x4d\x08\x07\x3d\x42" "\x32\x07\x14\x44\x1c\x07\xad\x4d" 
	"\x19\x07\xde\x42\x27\x07\x68\x45" "\x1c\x07\xad\x4e\x17\x07\xe8\x43" 
	"\x1d\x07\x76\x46\x19\x07\xa8\x50" "\x1d\x07\x8f\x45\x16\x07\xa8\x47" 
	"\x1e\x07\x16\x53\x0e\x07\xd2\x47" "\x18\x07\x3f\x4a\x24\x07\xb6\x54" 
	"\x1f\x07\x3e\x48\x32\x07\x3d\x4b" "\x25\x07\x5e\x54\x1d\x07\x41\x48" 
	"\x2e\x07\xe9\x4a\x29\x07\x0e\x54" "\x28\x07\x4f\x48\x24\x07\x0d\x4b" 
	"\x23\x07\x59\x55\x15\x07\x33\x4a" "\x1d\x07\xa5\x4b\x22\x07\xf9\x57" 
	"\x19\x07\xbe\x4b\x31\x07\x4a\x4d" "\x2a\x07\x24\x59\x1c\x07\x7b\x4c" 
	"\x2e\x07\x0b\x4f\x24\x07\xf5\x5b" "\x1c\x07\x7a\x4f\x2f\x07\x4a\x51" 
	"\x23\x07\x19\x5e\x11\x07\xc8\x50" "\x2a\x07\x1e\x53\x2c\x07\x3e\x5c" 
	"\x23\x07\xcb\x4f\x2b\x07\x30\x52" "\x23\x07\xa8\x5d\x1b\x07\xbe\x4f" 
	"\x32\x07\xcb\x51\x2d\x07\x5c\x5e" "\x21\x07\x27\x51\x2e\x07\x0f\x52" 
	"\x38\x07\x83\x5f\x2f\x07\xf2\x51" "\x28\x07\x87\x52\x39\x07\x98\x60" 
	"\x25\x07\xce\x53\x35\x07\x4b\x54" "\x32\x07\x2f\x63\x2c\x07\x59\x55" 
	"\x29\x07\x2e\x56\x2d\x07\xd7\x64" "\x25\x07\x5e\x56\x2f\x07\xe9\x57" 
	"\x32\x07\x7c\x65\x24\x07\xc2\x56" "\x3b\x07\x13\x59\x36\x07\x17\x66" 
	"\x24\x07\x4c\x57\x3b\x07\xed\x58" "\x3b\x07\xd7\x66\x2b\x07\xa5\x58" 
	"\x3c\x07\x4e\x5a\x3a\x07\xd7\x66" "\x2f\x07\xee\x59\x3f\x07\xa3\x5c" 
	"\x30\x07\x2e\x6a\x2e\x07\x4a\x5b" "\x30\x07\x29\x5d\x42\x07\x5e\x6d" 
	"\x2f\x07\xb2\x5e\x3f\x07\x08\x60" "\x35\x07\x05\x71\x25\x07\x93\x60" 
	"\x32\x07\xa7\x62\x2f\x07\xe9\x71" "\x31\x07\x06\x62\x35\x07\x08\x65" 
	"\x3a\x07\xb2\x71\x31\x07\xed\x60" "\x35\x07\xf4\x63\x33\x07\x81\x71" 
	"\x28\x07\x44\x62\x30\x07\x9e\x66" "\x35\x07\x5b\x74\x2b\x07\xcc\x64" 
	"\x31\x07\x82\x66\x2b\x07\xc6\x77" "\x25\x07\xb5\x66\x34\x07\xc8\x69" 
	"\x40\x07\x9f\x7b\x2d\x07\x1c\x6a" "\x36\x07\x72\x6d\x33\x07\x9b\x7e" 
	"\x33\x07\x18\x6d\x3d\x07\x27\x6f" "\x34\x07\x8a\x7d\x32\x07\xb2\x6d" 
	"\x3d\x07\xf8\x70\x25\x07\xab\x81" "\x2d\x07\xde\x6e\x42\x07\x7d\x70" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x3b\x07\x6c\x81\x28\x07\x54\x6e" "\x3a\x07\x1a\x71\x3f\x07\x60\x82" 
	"\x2e\x07\xc1\x70\x38\x07\xbc\x72" "\x34\x07\x8e\x82\x30\x07\x43\x71" 
	"\x43\x07\x80\x74\x2e\x07\x37\x87" "\x2a\x07\x54\x74\x3f\x07\x59\x78" 
	"\x42\x07\x67\x8b\x37\x07\xbb\x76" "\x47\x07\x7e\x7b\x3d\x07\x18\x8d" 
	"\x3f\x07\x7b\x79\x42\x07\xd0\x7b" "\x3d\x07\x38\x8d\x3c\x07\xbe\x78" 
	"\x3e\x07\xf1\x7b\x38\x07\xd9\x8d" "\x30\x07\x23\x78\x3c\x07\xe1\x7b" 
	"\x36\x07\x4b\x90\x2c\x07\x4d\x7b" "\x3e\x07\xd6\x7d\x3c\x07\x1e\x95" 
	"\x30\x07\x86\x7c\x3d\x07\x34\x80" "\x44\x07\x0e\x96\x36\x07\x00\x81" 
	"\x49\x07\x54\x85\x40\x07\xc6\x97" "\x42\x07\x8d\x84\x48\x07\xec\x88" 
	"\x3b\x07\xbb\x99\x37\x07\xf5\x84" "\x3d\x07\x65\x89\x42\x07\x7c\x9b" 
	"\x32\x07\x11\x85\x44\x07\xac\x89" "\x43\x07\x1f\x9d\x38\x07\xf3\x86" 
	"\x45\x07\x91\x8b\x3e\x07\x2a\x9e" "\x42\x07\x2e\x88\x37\x07\x4e\x8c" 
	"\x45\x07\x8a\x9f\x40\x07\xac\x89" "\x3b\x07\xa3\x8d\x40\x07\x51\xa4" 
	"\x40\x07\xf8\x8c\x49\x07\x8e\x92" "\x44\x07\x46\xa9\x39\x07\xba\x8f" 
	"\x4b\x07\xeb\x97\x43\x07\xc5\xab" "\x40\x07\x76\x93\x3f\x07\x64\x97" 
	"\x4a\x07\x27\xae\x49\x07\x54\x94" "\x43\x07\xe5\x98\x46\x07\xba\xae" 
	"\x35\x07\x9b\x94\x42\x07\x80\x98" "\x46\x07\x17\xae\x41\x07\x5a\x95" 
	"\x45\x07\xae\x99\x46\x07\x31\xb1" "\x46\x07\x10\x98\x3f\x07\xf1\x9b" 
	"\x4a\x07\x9a\xb7\x40\x07\x95\x99" "\x4b\x07\xb3\x9f\x4d\x07\x76\xbc" 
	"\x48\x07\x9d\xa0\x4c\x07\x2c\xa5" "\x3f\x07\x36\xc2\x3e\x07\xbb\xa6" 
	"\x4a\x07\x9d\xa6\x47\x07\x1c\xca" "\x3a\x07\x9d\xa8\x52\x07\xf5\xab" 
	"\x40\x07\x97\xc5\x3c\x07\x51\xa8" "\x3b\x07\xbc\xa8\x4e\x07\x2d\xbf" 
	"\x48\x07\x3a\xa5\x48\x07\x3d\xaa" "\x50\x07\x42\xc9\x42\x07\xb6\xad" 
	"\x50\x07\x1d\xaf\x4f\x07\x36\xd2" "\x49\x07\xff\xb0\x4b\x07\x21\xb6" 
	"\x4f\x07\x20\xce\x4c\x07\xb8\xb1" "\x3f\x07\xf5\xb4\x48\x07\xca\xd5" 
	"\x4d\x07\xc0\xb4\x41\x07\xab\xb8" "\x4f\x07\xe4\xda\x50\x07\xf6\xb9" 
	"\x54\x07\x9c\xbc\x4a\x07\xd7\xd1" "\x47\x07\xf4\xb7\x48\x07\xcb\xbb" 
	"\x42\x07\x68\xd8\x3a\x07\x9a\xb9" "\x42\x07\x09\xba\x4b\x07\xe1\xde" 
	"\x3e\x07\x3c\xbc\x4e\x07\x7e\xbe" "\x51\x07\x5e\xe2\x4f\x07\x5f\xc2" 
	"\x46\x07\x2c\xc9\x49\x07\x7d\xea" "\x56\x07\x28\xc7\x51\x07\xec\xd0" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff" 
	"\x50\x07\x78\xf2\x4a\x07\xbd\xd0" "\x50\x07\x45\xd4\x49\x07\x48\xfb" 
	"\x43\x07\x8d\xd4\x49\x07\x97\xda" "\x4b\x07\xff\xff\x46\x07\xeb\xdc" 
	"\x44\x07\xa4\xe7\x4e\x07\xff\xff" "\x59\x07\xc2\xed\x51\x07\x65\xf0" 
	"\x54\x07\xff\xff\x4d\x07\x19\xf6" "\x55\x07\xff\xff\x53\x07\xff\xff" 
	"\x4a\x07\xff\xff\x55\x07\xff\xff" "\x58\x07\xff\xff\x56\x07\xff\xff" 
	"\x5a\x07\xff\xff\x64\x07\xff\xff" "\x60\x07\xff\xff\x5c\x07\xff\xff" 
	"\x66\x07\xff\xff\x63\x07\xff\xff" "\x66\x07\xff\xff" 
, 0x0001c6c);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001c6c, 1436);
usleep(16*1000);
memcpy(buf, "\x6c\x6c\x6c\x6c", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000005, 0x0000000, buf, 0x0000004, 1000);
memcpy(buf, "\x6c\x6c\x6c\x6c", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000c0, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 1380 */
usleep(31*1000);
ret = read_register(buf, 0x01);
memcpy(buf, "\x96\x23\x96\x23", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

memcpy(buf, 
	"\xa0\x00\xa1\xf4\xa2\x0f\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x10" 
	"\x7e\x00\x7f\x00" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);
usleep(30*1000);
memcpy(buf, "\x00\x10\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000002, 0x0000000, buf, 0x0000004, 1000);
usleep(16*1000);
memcpy(buf, 
	"\x10\x0e\x10\x0e\x10\x0e\x10\x0e" "\x10\x0e\xd1\x0d\xb7\x0d\xa4\x0d" 
	"\x93\x0d\x84\x0d\x77\x0d\x6b\x0d" "\x5f\x0d\x55\x0d\x4b\x0d\x41\x0d" 
	"\x38\x0d\x2f\x0d\x27\x0d\x1e\x0d" "\x17\x0d\x0f\x0d\x07\x0d\x00\x0d" 
	"\xf9\x0c\xf2\x0c\xec\x0c\xe5\x0c" "\xdf\x0c\xd8\x0c\xd2\x0c\xcc\x0c" 
	"\xc6\x0c\xc0\x0c\xbb\x0c\xb5\x0c" "\xaf\x0c\xaa\x0c\xa5\x0c\x9f\x0c" 
	"\x9a\x0c\x95\x0c\x90\x0c\x8b\x0c" "\x86\x0c\x81\x0c\x7c\x0c\x77\x0c" 
	"\x73\x0c\x6e\x0c\x69\x0c\x65\x0c" "\x60\x0c\x5c\x0c\x57\x0c\x53\x0c" 
	"\x4f\x0c\x4a\x0c\x46\x0c\x42\x0c" "\x3e\x0c\x3a\x0c\x36\x0c\x31\x0c" 
	"\x2d\x0c\x29\x0c\x25\x0c\x22\x0c" "\x1e\x0c\x1a\x0c\x16\x0c\x12\x0c" 
	"\x0e\x0c\x0b\x0c\x07\x0c\x03\x0c" "\xff\x0b\xfc\x0b\xf8\x0b\xf5\x0b" 
	"\xf1\x0b\xed\x0b\xea\x0b\xe6\x0b" "\xe3\x0b\xdf\x0b\xdc\x0b\xd9\x0b" 
	"\xd5\x0b\xd2\x0b\xce\x0b\xcb\x0b" "\xc8\x0b\xc4\x0b\xc1\x0b\xbe\x0b" 
	"\xbb\x0b\xb7\x0b\xb4\x0b\xb1\x0b" "\xae\x0b\xab\x0b\xa7\x0b\xa4\x0b" 
	"\xa1\x0b\x9e\x0b\x9b\x0b\x98\x0b" "\x95\x0b\x92\x0b\x8f\x0b\x8c\x0b" 
	"\x89\x0b\x86\x0b\x83\x0b\x80\x0b" "\x7d\x0b\x7a\x0b\x77\x0b\x74\x0b" 
	"\x71\x0b\x6e\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x71\x0b\x77\x0b\x7d\x0b" 
	"\x82\x0b\x88\x0b\x8e\x0b\x94\x0b" "\x99\x0b\x9f\x0b\xa5\x0b\xab\x0b" 
	"\xb0\x0b\xb6\x0b\xbc\x0b\xc1\x0b" "\xc7\x0b\xcd\x0b\xd3\x0b\xd8\x0b" 
	"\xde\x0b\xe4\x0b\xea\x0b\xef\x0b" "\xf5\x0b\xfb\x0b\x00\x0c\x06\x0c" 
	"\x0c\x0c\x12\x0c\x17\x0c\x1d\x0c" "\x23\x0c\x29\x0c\x2e\x0c\x34\x0c" 
	"\x3a\x0c\x3f\x0c\x45\x0c\x4b\x0c" "\x51\x0c\x56\x0c\x5c\x0c\x62\x0c" 
	"\x68\x0c\x6d\x0c\x73\x0c\x79\x0c" "\x7e\x0c\x84\x0c\x8a\x0c\x90\x0c" 
	"\x95\x0c\x9b\x0c\xa1\x0c\xa7\x0c" "\xac\x0c\xb2\x0c\xb8\x0c\xbe\x0c" 
	"\xc3\x0c\xc9\x0c\xcf\x0c\xd4\x0c" "\xda\x0c\xe0\x0c\xe6\x0c\xeb\x0c" 
	"\xf1\x0c\xf7\x0c\xfd\x0c\x02\x0d" "\x08\x0d\x0e\x0d\x13\x0d\x19\x0d" 
	"\x1f\x0d\x25\x0d\x2a\x0d\x30\x0d" "\x36\x0d\x3c\x0d\x41\x0d\x47\x0d" 
	"\x4d\x0d\x52\x0d\x58\x0d\x5e\x0d" "\x64\x0d\x69\x0d\x6f\x0d\x75\x0d" 
	"\x7b\x0d\x80\x0d\x86\x0d\x8c\x0d" "\x91\x0d\x97\x0d\x9d\x0d\xa3\x0d" 
	"\xa8\x0d\xae\x0d\xb4\x0d\xba\x0d" "\xbf\x0d\xc5\x0d\xcb\x0d\xd0\x0d" 
	"\xd6\x0d\xdc\x0d\xe2\x0d\xe7\x0d" "\xed\x0d\xf3\x0d\xf9\x0d\xfe\x0d" 
	"\x04\x0e\x0a\x0e\x10\x0e\x10\x0e" "\x10\x0e\x10\x0e\x10\x0e\x10\x0e" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x10\x0e\x10\x0e\x10\x0e\x10\x0e" "\x10\x0e\xd1\x0d\xb7\x0d\xa4\x0d" 
	"\x93\x0d\x84\x0d\x77\x0d\x6b\x0d" "\x5f\x0d\x55\x0d\x4b\x0d\x41\x0d" 
	"\x38\x0d\x2f\x0d\x27\x0d\x1e\x0d" "\x17\x0d\x0f\x0d\x07\x0d\x00\x0d" 
	"\xf9\x0c\xf2\x0c\xec\x0c\xe5\x0c" "\xdf\x0c\xd8\x0c\xd2\x0c\xcc\x0c" 
	"\xc6\x0c\xc0\x0c\xbb\x0c\xb5\x0c" "\xaf\x0c\xaa\x0c\xa5\x0c\x9f\x0c" 
	"\x9a\x0c\x95\x0c\x90\x0c\x8b\x0c" "\x86\x0c\x81\x0c\x7c\x0c\x77\x0c" 
	"\x73\x0c\x6e\x0c\x69\x0c\x65\x0c" "\x60\x0c\x5c\x0c\x57\x0c\x53\x0c" 
	"\x4f\x0c\x4a\x0c\x46\x0c\x42\x0c" "\x3e\x0c\x3a\x0c\x36\x0c\x31\x0c" 
	"\x2d\x0c\x29\x0c\x25\x0c\x22\x0c" "\x1e\x0c\x1a\x0c\x16\x0c\x12\x0c" 
	"\x0e\x0c\x0b\x0c\x07\x0c\x03\x0c" "\xff\x0b\xfc\x0b\xf8\x0b\xf5\x0b" 
	"\xf1\x0b\xed\x0b\xea\x0b\xe6\x0b" "\xe3\x0b\xdf\x0b\xdc\x0b\xd9\x0b" 
	"\xd5\x0b\xd2\x0b\xce\x0b\xcb\x0b" "\xc8\x0b\xc4\x0b\xc1\x0b\xbe\x0b" 
	"\xbb\x0b\xb7\x0b\xb4\x0b\xb1\x0b" "\xae\x0b\xab\x0b\xa7\x0b\xa4\x0b" 
	"\xa1\x0b\x9e\x0b\x9b\x0b\x98\x0b" "\x95\x0b\x92\x0b\x8f\x0b\x8c\x0b" 
	"\x89\x0b\x86\x0b\x83\x0b\x80\x0b" "\x7d\x0b\x7a\x0b\x77\x0b\x74\x0b" 
	"\x71\x0b\x6e\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x6c\x0b\x6c\x0b\x6c\x0b\x6c\x0b" "\x6c\x0b\x71\x0b\x77\x0b\x7d\x0b" 
	"\x82\x0b\x88\x0b\x8e\x0b\x94\x0b" "\x99\x0b\x9f\x0b\xa5\x0b\xab\x0b" 
	"\xb0\x0b\xb6\x0b\xbc\x0b\xc1\x0b" "\xc7\x0b\xcd\x0b\xd3\x0b\xd8\x0b" 
	"\xde\x0b\xe4\x0b\xea\x0b\xef\x0b" "\xf5\x0b\xfb\x0b\x00\x0c\x06\x0c" 
	"\x0c\x0c\x12\x0c\x17\x0c\x1d\x0c" "\x23\x0c\x29\x0c\x2e\x0c\x34\x0c" 
	"\x3a\x0c\x3f\x0c\x45\x0c\x4b\x0c" "\x51\x0c\x56\x0c\x5c\x0c\x62\x0c" 
	"\x68\x0c\x6d\x0c\x73\x0c\x79\x0c" "\x7e\x0c\x84\x0c\x8a\x0c\x90\x0c" 
	"\x95\x0c\x9b\x0c\xa1\x0c\xa7\x0c" "\xac\x0c\xb2\x0c\xb8\x0c\xbe\x0c" 
	"\xc3\x0c\xc9\x0c\xcf\x0c\xd4\x0c" "\xda\x0c\xe0\x0c\xe6\x0c\xeb\x0c" 
	"\xf1\x0c\xf7\x0c\xfd\x0c\x02\x0d" "\x08\x0d\x0e\x0d\x13\x0d\x19\x0d" 
	"\x1f\x0d\x25\x0d\x2a\x0d\x30\x0d" "\x36\x0d\x3c\x0d\x41\x0d\x47\x0d" 
	"\x4d\x0d\x52\x0d\x58\x0d\x5e\x0d" "\x64\x0d\x69\x0d\x6f\x0d\x75\x0d" 
	"\x7b\x0d\x80\x0d\x86\x0d\x8c\x0d" "\x91\x0d\x97\x0d\x9d\x0d\xa3\x0d" 
	"\xa8\x0d\xae\x0d\xb4\x0d\xba\x0d" "\xbf\x0d\xc5\x0d\xcb\x0d\xd0\x0d" 
	"\xd6\x0d\xdc\x0d\xe2\x0d\xe7\x0d" "\xed\x0d\xf3\x0d\xf9\x0d\xfe\x0d" 
	"\x04\x0e\x0a\x0e\x10\x0e\x10\x0e" "\x10\x0e\x10\x0e\x10\x0e\x10\x0e" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
	"\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0001000);ret = usb_bulk_write(devh, 0x00000001, buf, 0x0001000, 1245);
usleep(15*1000);

/*Clear FIFIO command*/
ret = clearFIFO(buf);

usleep(32*1000);

memcpy(buf, 
	"\xa0\x00\xa1\x00\xa2\x00\xa3\xff" "\xa4\xff\xa5\x0f\x7c\x00\x7d\x01" 
	"\x7e\x00\x79\x40" 
, 0x0000014);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000014, 1000);

usleep(31*1000);

memcpy(buf, "\x00\x02\x00\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);
/*That was URB 1390 */

ret = select_register_bank(buf, 2);

memcpy(buf, "\xa0\x01\xa0\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);

ret = select_register_bank(buf, 2);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
	"\xa1\x00\xa2\x19\xa1\x00\xa2\x1b" "\xa1\x00\xa2\x16\xa1\x00\xa2\x18" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
/*That was URB 1400 */
memcpy(buf, "\xa0\x00\xa0\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 1);
memcpy(buf, 
	"\x60\x08\x61\x0b\x62\x0e\x63\x11" "\x64\x14\x65\x17\x66\x02\x67\x05" 
	"\x68\x08\x69\x50\x6a\x01\x6b\x0c" "\x6d\x48\x6e\x6a\x6f\x0e\x70\x50" 
	"\x71\x6a\x72\x0e\x73\xe8\x74\x6c" "\x75\x0e\x76\xf0\x77\x6c\x78\x0e" 
	"\x79\x48\x7a\x2b\x7b\x0e\x7c\x50" "\x7d\x40\x7e\x0e\x7f\xe8\x80\x2d" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, 
	"\x81\x0e\x82\xf0\x83\x42\x84\x0e" "\x85\x48\x86\xa9\x87\x0e\x88\x50" 
	"\x89\xbe\x8a\x0e\x8b\xe8\x8c\xab" "\x8d\x0e\x8e\xf0\x8f\xc0\x90\x0e" 
	"\x9a\x00\x9b\x15\x9d\x02\x9e\x00" "\x9f\x00\xa0\x0e\xa1\x00\xa2\x3f" 
	"\xa3\x0e\xa4\x00\xa5\x7e\xa6\x0e" "\xa7\xff\xa8\x3e\xa9\x0e\xaa\xff" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xab\x7d\xac\x0e\xad\xff\xae\xbc" "\xaf\x0e\xb0\x4d\xb1\x01\xb9\xcf" 
	"\xba\x14\xcd\x00\xce\x0f\xd4\x00" "\xd5\x8e\xd6\xe3\xd7\x38\xec\x00" 
	"\xed\x00\xee\xc0\xef\x00\xf0\x00" "\xf1\x00\xf2\x00\xf3\x30\xf4\x75" 
	"\xf5\x00\xf6\x11\xf7\x14\xf8\xaa" "\xf9\x00\xfa\x55\xfb\x00\xfc\x3f" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

memcpy(buf, "\xfd\x00\xfd\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 2);
memcpy(buf, 
	"\x60\x30\x61\x03\x62\x30\x63\x03" "\x64\x30\x65\x03\x66\x30\x67\x03" 
	"\x68\x30\x69\x03\x6a\x30\x6b\x03" "\x6c\x30\x6d\x03\x6e\x30\x6f\x03" 
	"\x70\x40\x71\x05\x72\x00\x73\x40" "\x74\x05\x75\x00\x76\x40\x77\x05" 
	"\x78\x00\x79\x40\x7a\x05\x7b\x00" "\x7c\x80\x7d\x0a\x7e\x00\x7f\x80" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
/*That was URB 1410 */

memcpy(buf, 
	"\x80\x0a\x81\x00\x82\x80\x83\x0a" "\x84\x00\x85\x80\x86\x0a\x87\x00" 
	"\x88\xc0\x89\x0f\x8a\x00\x8b\xc0" "\x8c\x0f\x8d\x00\x8e\xc0\x8f\x0f" 
	"\x90\x00\x91\xc0\x92\x0f\x93\x00" "\xb0\x00\xb1\x00\xb2\x00\xb3\x00" 
	"\xb4\x00\xb5\x00\xb6\x00\xb7\x00" "\xb8\x00\xb9\x00\xba\x00\xbb\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xbc\x00\xbd\x00\xbe\x00\xbf\x00" "\xc0\x00\xc1\x00\xc2\x00\xc3\x00" 
	"\xc4\x00\xc5\x00\xc6\x00\xc7\x00" "\xc8\x00\xc9\x00\xca\x00\xcb\x00" 
	"\xcc\x00\xcd\x00\xce\x00\xcf\x00" 
, 0x0000028);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000028, 1000);

ret = select_register_bank(buf, 0);
ret = select_register_bank(buf, 1);

memcpy(buf, 
	"\xb3\x00\xb4\x00\xb5\x00\xb6\x00" "\xb7\x01\xb8\x00" 
, 0x000000c);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000000c, 1000);

ret = select_register_bank(buf, 0);
memcpy(buf, 
	"\x58\x00\x5e\xff\x82\x00\x83\x38" "\x84\x8e\x85\xe3\x8a\x01\x8e\x00" 
	"\x90\x64\x91\x00\x94\x30\x95\xa7" "\x96\x23\x9b\x3d\x9d\x3f\x9e\x00" 
	"\x9f\x80\xa0\x00\xa1\x00\xa2\x00" "\xa3\xff\xa4\xfe\xa5\x0d\xa6\x41" 
	"\xab\x00\xae\x0f\xaf\x16\xb0\x08" "\xb1\x07\xb2\x14\xb3\x01\xb4\x7b" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);
memcpy(buf, 
	"\xb5\x00\xb6\x70\xb7\x05\xc9\x00" "\xca\x00\xcb\x00\xcc\x00\xcd\x3c" 
	"\xce\x3c\xcf\x3c\xd0\x07\xd8\x05" "\xd9\x3c\xda\x54\xdb\x00\xdc\x01" 
	"\xde\x01\xdf\x17\xe0\x2c\xe1\x01" "\xe2\x00\xe3\x00\xe4\x00\xe5\xc8" 
	"\xe6\x00\xe7\x01\xe8\x00\xe9\x01" "\xea\x2c\xeb\x01\xec\x80\xed\x00" 
, 0x0000040);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000040, 1000);

/*
f3 SCAN_ENABLE SCAN_BACK_TRACKING_ENABLE
*/
memcpy(buf, 
	"\xee\x46\xef\x80\xf0\xc0\xf1\x38" "\xf2\x00\xf3\x0c\xf5\x10\xf6\x00" 
	"\xf7\x00\xf8\x02\xf9\x19\xfa\x36" "\xfb\xf0\xfc\x00\xfd\x6c\xfe\x0b" 
	"\xff\x50" 
, 0x0000022);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000022, 1000);
usleep(146*1000);
memcpy(buf, "\xf8\x02\xf4\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
/*That was URB 1420 */

usleep(16*1000);
/*This repeats alot!*/
printf("Checking 4 and 5 over and over\n");
/*checking for lamp readiness?*/
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1430 */
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1440 */
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1450 */

ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1460 */
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1470 */

ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1480 */
usleep(15*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1490 */
ret = read_register(buf, 0x04);
usleep(17*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(13*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
/*That was URB 1500 */
usleep(14*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
/*That was URB 1510 */
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1520 */
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1530 */
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
/*That was URB 1540 */
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);
/*That was URB 1550 */
ret = read_register(buf, 0x04);
usleep(14*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(15*1000);
ret = read_register(buf, 0x05);

ret = read_register(buf, 0x04);
/*That was URB 1560 */
usleep(15*1000);
ret = read_register(buf, 0x05);
ret = read_register(buf, 0x04);
usleep(31*1000);

printf("Beginning actual scan...\n");
printf("Setting device to generally OK, but busy.\n");
memcpy(buf, "\x7c\x00\x7d\x00\x7e\x04\x7f\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);
usleep(15*1000);

myfile = fopen(argv[1],"w");
//print bmp header - 24-bit 5128 pixels wide
memcpy(buf, bmp_file_header, 0x0000036);
print_file(buf, 0x36, myfile);

for(scanloop = 0; scanloop < 207; scanloop++)
{
//153617 bytes per loop?
	memcpy(buf, "\x00\x00\x08\x00", 0x0000004);
	ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x0000003, 0x0000000, buf, 0x0000004, 1000);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x000fc00, 4870);
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);

	ret = usb_bulk_read(devh, 0x00000082, buf, 0x0002000, 1491); //5265 bytes?
	printf("Writing %d bytes\n", ret);
	print_file(buf, ret, myfile);
//removed sleeps. Presumably, the USB functions will wait for responses from the scanner.
}
printf("Done scanning image. shutting down scanner.\n");

memcpy(buf, "\xf4\x00\x86\x00", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);

usleep(31*1000);
ret = read_register(buf, 0x01);

memcpy(buf, command_six, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);

/*That was URB 3640 */
memcpy(buf, 
	"\x01\xa0\x00\x04\x00\x00\x00\x1e" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(20*1000);

ret = do_command_four(buf);

memcpy(buf, 
	"\x01\xa0\x05\x01\x81\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(17*1000);

memcpy(buf, 
	"\x02\xa0\x36\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
ret = usb_bulk_read(devh, 0x00000082, buf, 0x0000200, 1030);


memcpy(buf, 
	"\x01\xa0\x46\x02\x00\x11\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00" 
, 0x0000010);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x000000a, 0x0000000, buf, 0x0000010, 1000);
usleep(19*1000);

ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);

usleep(6*1000);

ret = read_register(buf, 0x0b);
ret = read_register(buf, 0x0a);
ret = read_register(buf, 0x09);

usleep(499*1000);

ret = read_register(buf, 0x00);

ret = do_command_eight(buf);

memcpy(buf, 
	"\xf3\x22\xfd\xc4\xfe\x09\xa6\x41" "\xf6\x00\x96\x21\xe4\x01\xe2\x40" 
	"\xe3\x1f\xe4\x00\x95\xa7\xf4\x01" 
, 0x0000018);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000018, 1000);

memcpy(buf, "\x00\x00\x86\x01", 0x0000004);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000004, 1000);
ret = do_command_five(buf);

usleep(2500*1000);

ret = do_command_one(buf);

ret = read_register(buf, 0x1c);
/*That was URB 3670 */
usleep(18*1000);

ret = read_register(buf, 0x01);

ret = read_register(buf, 0x03);

/*Timing adjustments?*/
memcpy(buf, "\x82\x00\x83\x00\x84\x00\x85\x00", 0x0000008);
ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x0000008, 1000);

ret = select_register_bank(buf, 1);
usleep(27*1000);
memcpy(buf, 
	"\x60\xff\x61\xff\x62\xff\x63\xff" "\x64\xff\x65\xff\x66\xff\x67\xff" 
	"\x68\xff\xd4\xff\xd5\xff\xd6\xff" "\xd7\xff\xec\x00\xed\x00\xee\x00" 
	"\xef\x00\xf0\x00\xf1\x00\xf2\x00" "\xf3\x00" 
, 0x000002a);ret = usb_control_msg(devh, USB_TYPE_VENDOR + USB_RECIP_DEVICE, 0x0000004, 0x00000b0, 0x0000000, buf, 0x000002a, 1000);

ret = select_register_bank(buf, 0);

ret = closescanchip(buf);

ret = openscanchip(buf);

ret = do_command_seven(buf);
ret = do_command_five(buf);

printf("Complete\n");

ret = usb_release_interface(devh, 0);
assert(ret == 0);
ret = usb_close(devh);
assert(ret == 0);

printf("Closing file...\n");
fclose(myfile);

return 0;

}
