diff --git a/phobia/Makefile b/phobia/Makefile deleted file mode 100644 index 8d57aaa..0000000 --- a/phobia/Makefile +++ /dev/null @@ -1,79 +0,0 @@ -BUILD ?= /tmp/phobia -TARGET = $(BUILD)/phobia - -CC = gcc -LD = gcc -STRIP = strip -s -GDB = gdb -MK = mkdir -p -RM = rm -rf - -CFLAGS = -std=gnu99 -Wall -O3 -flto=auto -g3 -pipe - -CFLAGS += -fno-math-errno \ - -ffinite-math-only \ - -fno-signed-zeros \ - -fno-trapping-math \ - -fno-associative-math \ - -fno-reciprocal-math \ - -ffp-contract=fast - -CFLAGS += -fno-stack-protector -CFLAGS += -I/usr/include -D_REENTRANT -CFLAGS += -D_EMBED_GP - -LFLAGS = -lm -lSDL2 -lSDL2_ttf -lSDL2_image - -OBJS = config.o \ - font.o \ - link.o \ - nksdl.o \ - phobia.o \ - serial.o - -OBJS += gp/async.o \ - gp/dirent.o \ - gp/draw.o \ - gp/edit.o \ - gp/font.o \ - gp/gp.o \ - gp/lang.o \ - gp/lse.o \ - gp/lz4.o \ - gp/menu.o \ - gp/plot.o \ - gp/read.o \ - gp/scheme.o \ - gp/svg.o - -PMCFE_OBJS = $(addprefix $(BUILD)/, $(OBJS)) - -all: $(TARGET) - -$(BUILD)/%.o: %.c - @ echo " CC " $< - @ $(MK) $(dir $@) - @ $(CC) -c $(CFLAGS) -MMD -o $@ $< - -$(TARGET): $(PMCFE_OBJS) - @ echo " LD " $(notdir $@) - @ $(LD) $(CFLAGS) -o $@ $^ $(LFLAGS) - -run: $(TARGET) - @ echo " RUN " $(notdir $<) - @ $< - -debug: $(TARGET) - @ echo " GDB " $(notdir $<) - @ $(GDB) $< - -strip: $(TARGET) - @ echo " STRIP " $(notdir $<) - @ $(STRIP) $< - -clean: - @ echo " CLEAN " - @ $(RM) $(BUILD) - -include $(wildcard $(BUILD)/*.d) $(wildcard $(BUILD)/*/*.d) - diff --git a/phobia/Makefile.mingw b/phobia/Makefile.mingw deleted file mode 100644 index 0f2c036..0000000 --- a/phobia/Makefile.mingw +++ /dev/null @@ -1,77 +0,0 @@ -ARCH ?= x86_64 -BUILD ?= /tmp/phobia/$(ARCH) -TARGET = $(BUILD)/phobia-$(ARCH).exe - -CROSS = $(ARCH)-w64-mingw32 -MINGW = ../mingw/$(ARCH)-w64-mingw32 - -CC = $(CROSS)-gcc -LD = $(CROSS)-gcc -STRIP = $(CROSS)-strip -s -MK = mkdir -p -RM = rm -rf - -CFLAGS = -std=gnu99 -Wall -O3 -flto=auto -g3 -pipe - -CFLAGS += -fno-math-errno \ - -ffinite-math-only \ - -fno-signed-zeros \ - -fno-trapping-math \ - -fno-associative-math \ - -fno-reciprocal-math \ - -ffp-contract=fast - -CFLAGS += -fno-stack-protector -CFLAGS += -I$(MINGW)/include -CFLAGS += -D_EMBED_GP -D_WINDOWS - -LFLAGS = -lm -lSDL2 -lSDL2_ttf -lSDL2_image -static -mwindows -LFLAGS += -L$(MINGW)/lib - -LFLAGS += -Wl,--gc-sections -Wl,--no-undefined -lusp10 -ldinput8 -ldxguid \ - -ldxerr8 -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 \ - -lshell32 -lsetupapi -lversion -luuid -lrpcrt4 -static-libgcc - -OBJS = config.o \ - font.o \ - link.o \ - nksdl.o \ - phobia.o \ - serial.o - -OBJS += gp/async.o \ - gp/dirent.o \ - gp/draw.o \ - gp/edit.o \ - gp/font.o \ - gp/gp.o \ - gp/lang.o \ - gp/lse.o \ - gp/lz4.o \ - gp/menu.o \ - gp/plot.o \ - gp/read.o \ - gp/scheme.o \ - gp/svg.o - -PMCFE_OBJS = $(addprefix $(BUILD)/, $(OBJS)) - -all: $(TARGET) - -$(BUILD)/%.o: %.c - @ echo " CC " $< - @ $(MK) $(dir $@) - @ $(CC) -c $(CFLAGS) -MMD -o $@ $< - -$(TARGET): $(PMCFE_OBJS) - @ echo " LD " $(notdir $@) - @ $(LD) $(CFLAGS) -o $@ $^ $(LFLAGS) - @ echo " STRIP " $(notdir $@) - @ $(STRIP) $@ - -clean: - @ echo " CLEAN " - @ $(RM) $(BUILD) - -include $(wildcard $(BUILD)/*.d) $(wildcard $(BUILD)/*/*.d) - diff --git a/phobia/config.c b/phobia/config.c deleted file mode 100644 index 1a13519..0000000 --- a/phobia/config.c +++ /dev/null @@ -1,244 +0,0 @@ -#include -#include -#include - -#ifdef _WINDOWS -#include -#endif /* _WINDOWS */ - -#include "gp/dirent.h" -#include "config.h" - -#ifdef _WINDOWS -#define FILE_HIDDEN_CONFIG "_" FILE_HOME_CONFIG -#else /* _WINDOWS */ -#define FILE_HIDDEN_CONFIG "." FILE_HOME_CONFIG -#endif - -#ifdef _WINDOWS -static void -config_ACP_to_UTF8(char *lputf, const char *lpacp, int len) -{ - wchar_t wbuf[DIRENT_PATH_MAX]; - - MultiByteToWideChar(CP_ACP, 0, lpacp, -1, wbuf, DIRENT_PATH_MAX); - WideCharToMultiByte(CP_UTF8, 0, wbuf, -1, lputf, len, NULL, NULL); -} -#endif /* _WINDOWS */ - -FILE *fopen_from_UTF8(const char *file, const char *mode) -{ -#ifdef _WINDOWS - wchar_t wfile[DIRENT_PATH_MAX]; - wchar_t wmode[16]; - - MultiByteToWideChar(CP_UTF8, 0, file, -1, wfile, DIRENT_PATH_MAX); - MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, 16); - - return _wfopen(wfile, wmode); -#else /* _WINDOWS */ - return fopen(file, mode); -#endif -} - -static int -config_rcfiletry(struct config_phobia *fe) -{ - FILE *fd; - int rc = 0; - - fd = fopen_from_UTF8(fe->rcfile, "r"); - - if (fd != NULL) { - - rc = 1; - - fclose(fd); - } - - return rc; -} - -void config_read(struct config_phobia *fe) -{ - FILE *fd; - char line[PHOBIA_PATH_MAX]; - - const char *name, *value; - const char *sep = " \t\r\n"; - - fd = fopen_from_UTF8(fe->rcfile, "r"); - - if (fd != NULL) { - - while (fgets(line, sizeof(line), fd) != NULL) { - - name = strtok(line, sep); - value = strtok(NULL, sep); - - if ( name == NULL - || value == NULL) { - - /* Skip empty lines */ - } - else if (strcmp(name, "version") == 0) { - - fe->version = strtol(value, NULL, 10); - } - else if (strcmp(name, "serialport") == 0) { - - strcpy(fe->serialport, value); - } - else if (strcmp(name, "baudrate") == 0) { - - fe->baudrate = strtol(value, NULL, 10); - } - else if (strcmp(name, "parity") == 0) { - - fe->parity = strtol(value, NULL, 10); - } - else if (strcmp(name, "windowsize") == 0) { - - fe->windowsize = strtol(value, NULL, 10); - } - else if (strcmp(name, "storage") == 0) { - - strcpy(fe->storage, value); - } - else if (strcmp(name, "fuzzy") == 0) { - - strcpy(fe->fuzzy, value); - } - else if (strcmp(name, "regfile") == 0) { - - fe->regfile = strtol(value, NULL, 10); - } - } - - fclose(fd); - } -} - -void config_open(struct config_phobia *fe) -{ - char *path_HOME; - - config_default(fe); - -#ifdef _WINDOWS - path_HOME = getenv("APPDATA"); -#else /* _WINDOWS */ - path_HOME = getenv("HOME"); -#endif - - if (path_HOME == NULL) { - - fe->local = 1; - } - - if (fe->local == 0) { - -#ifdef _WINDOWS - config_ACP_to_UTF8(fe->rcfile, path_HOME, sizeof(fe->rcfile)); -#else /* _WINDOWS */ - strcpy(fe->rcfile, path_HOME); -#endif - strcat(fe->rcfile, DIRSEP FILE_HIDDEN_CONFIG); - - if (config_rcfiletry(fe) == 0) { - - config_write(fe); - } - - if (config_rcfiletry(fe) != 0) { - - config_read(fe); - } - else { - fe->local = 1; - } - } - - if (fe->local != 0) { - - strcpy(fe->rcfile, FILE_HIDDEN_CONFIG); - - config_default(fe); - - if (config_rcfiletry(fe) == 0) { - - config_write(fe); - } - - if (config_rcfiletry(fe) != 0) { - - config_read(fe); - } - } - - if (fe->version != CONFIG_PHOBIA_VERSION) { - - if (config_rcfiletry(fe) != 0) { - - fe->version = CONFIG_PHOBIA_VERSION; - - config_write(fe); - config_read(fe); - } - } -} - -void config_write(struct config_phobia *fe) -{ - FILE *fd; - - fd = fopen_from_UTF8(fe->rcfile, "w"); - - if (fd != NULL) { - - fprintf(fd, "version %i\n", fe->version); - fprintf(fd, "serialport %s\n", fe->serialport); - fprintf(fd, "baudrate %i\n", fe->baudrate); - fprintf(fd, "parity %i\n", fe->parity); - fprintf(fd, "windowsize %i\n", fe->windowsize); - fprintf(fd, "storage %s\n", fe->storage); - fprintf(fd, "fuzzy %s\n", fe->fuzzy); - fprintf(fd, "regfile %i\n", fe->regfile); - - fclose(fd); - } -} - -void config_default(struct config_phobia *fe) -{ -#ifdef _WINDOWS - char lptemp[PHOBIA_PATH_MAX]; -#endif /* _WINDOWS */ - - fe->version = CONFIG_PHOBIA_VERSION; - - strcpy(fe->serialport, "none"); - - fe->baudrate = 2; - fe->parity = 1; - - fe->windowsize = 1; - -#ifdef _WINDOWS - if (fe->local == 0) { - - GetTempPathA(sizeof(lptemp), lptemp); - config_ACP_to_UTF8(fe->storage, lptemp, sizeof(fe->storage)); - } - else { - fe->storage[0] = 0; - } -#else /* _WINDOWS */ - strcpy(fe->storage, "/tmp"); -#endif - - strcpy(fe->fuzzy, "setpoint"); - - fe->regfile = 484; -} - diff --git a/phobia/config.h b/phobia/config.h deleted file mode 100644 index a77b51e..0000000 --- a/phobia/config.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef _H_CONFIG_ -#define _H_CONFIG_ - -#include -#include - -#define CONFIG_PHOBIA_VERSION 5 - -#define FILE_HOME_CONFIG "phobia" -#define FILE_LINK_LOG "phobia.log" -#define FILE_DEBUG_LOG "debug.log" -#define FILE_TLM_DEFAULT "tlmgrab.csv" -#define FILE_CONFIG_DEFAULT "config.txt" - -#define FILE_TLM_EXT ".csv" -#define FILE_CONFIG_EXT ".txt" - -#define PHOBIA_PATH_MAX 400 -#define PHOBIA_NAME_MAX 80 - -struct config_phobia { - - int version; - - char rcfile[PHOBIA_PATH_MAX]; - int local; - - char serialport[PHOBIA_NAME_MAX]; - int baudrate; - int parity; - - int windowsize; - char storage[PHOBIA_PATH_MAX]; - char fuzzy[PHOBIA_NAME_MAX]; - int regfile; -}; - -FILE *fopen_from_UTF8(const char *file, const char *mode); - -void config_open(struct config_phobia *fe); -void config_write(struct config_phobia *fe); -void config_default(struct config_phobia *fe); - -#endif /* _H_CONFIG_ */ - diff --git a/phobia/font.c b/phobia/font.c deleted file mode 100644 index 6e93a78..0000000 --- a/phobia/font.c +++ /dev/null @@ -1,15854 +0,0 @@ -#include - -#include - -/* - * Droid Sans TTF - * - * */ -const unsigned char TTF_droid_sans_normal[] = { - - 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x04, 0x00, 0x30, - 0x47, 0x44, 0x45, 0x46, 0x00, 0x26, 0x03, 0x87, 0x00, 0x02, 0x3d, 0x20, - 0x00, 0x00, 0x00, 0x1e, 0x47, 0x50, 0x4f, 0x53, 0x94, 0xbd, 0xa2, 0xf0, - 0x00, 0x02, 0x3d, 0x40, 0x00, 0x00, 0xa8, 0xfa, 0x47, 0x53, 0x55, 0x42, - 0x6c, 0x91, 0x74, 0x8f, 0x00, 0x02, 0xe6, 0x3c, 0x00, 0x00, 0x00, 0x20, - 0x4c, 0x54, 0x53, 0x48, 0xc9, 0x9b, 0xb9, 0x20, 0x00, 0x00, 0x10, 0x1c, - 0x00, 0x00, 0x03, 0x86, 0x4f, 0x53, 0x2f, 0x32, 0xa0, 0xcb, 0x95, 0x8b, - 0x00, 0x00, 0x01, 0xb8, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6d, 0x61, 0x70, - 0xce, 0x11, 0xd4, 0xa2, 0x00, 0x00, 0x56, 0x78, 0x00, 0x00, 0x07, 0x9e, - 0x63, 0x76, 0x74, 0x20, 0x39, 0x7e, 0x3e, 0x4c, 0x00, 0x00, 0x68, 0x0c, - 0x00, 0x00, 0x01, 0xfc, 0x66, 0x70, 0x67, 0x6d, 0x73, 0xd3, 0x23, 0xb0, - 0x00, 0x00, 0x5e, 0x18, 0x00, 0x00, 0x07, 0x05, 0x67, 0x61, 0x73, 0x70, - 0x00, 0x04, 0x00, 0x07, 0x00, 0x02, 0x3d, 0x14, 0x00, 0x00, 0x00, 0x0c, - 0x67, 0x6c, 0x79, 0x66, 0xc2, 0x93, 0xc6, 0x51, 0x00, 0x00, 0x71, 0x10, - 0x00, 0x01, 0xa8, 0x1e, 0x68, 0x64, 0x6d, 0x78, 0xef, 0x0e, 0xfa, 0xab, - 0x00, 0x00, 0x13, 0xa4, 0x00, 0x00, 0x42, 0xd4, 0x68, 0x65, 0x61, 0x64, - 0xeb, 0xc6, 0x0a, 0x35, 0x00, 0x00, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x36, - 0x68, 0x68, 0x65, 0x61, 0x0c, 0x53, 0x09, 0xa4, 0x00, 0x00, 0x01, 0x74, - 0x00, 0x00, 0x00, 0x24, 0x68, 0x6d, 0x74, 0x78, 0xd2, 0xd7, 0x2e, 0x27, - 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x0e, 0x04, 0x6c, 0x6f, 0x63, 0x61, - 0x92, 0xfa, 0x29, 0x4c, 0x00, 0x00, 0x6a, 0x08, 0x00, 0x00, 0x07, 0x06, - 0x6d, 0x61, 0x78, 0x70, 0x06, 0x2a, 0x02, 0x85, 0x00, 0x00, 0x01, 0x98, - 0x00, 0x00, 0x00, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0xb5, 0x59, 0x90, 0x56, - 0x00, 0x02, 0x19, 0x30, 0x00, 0x00, 0x06, 0xa2, 0x70, 0x6f, 0x73, 0x74, - 0xd8, 0x50, 0xa9, 0x27, 0x00, 0x02, 0x1f, 0xd4, 0x00, 0x00, 0x1d, 0x3f, - 0x70, 0x72, 0x65, 0x70, 0x82, 0xdc, 0x21, 0x13, 0x00, 0x00, 0x65, 0x20, - 0x00, 0x00, 0x02, 0xec, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, - 0x5e, 0x1d, 0xb5, 0xc1, 0x5f, 0x0f, 0x3c, 0xf5, 0x00, 0x19, 0x08, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xc1, 0x9a, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xc6, 0x1b, 0x8c, 0x03, 0xfb, 0x89, 0xfd, 0xd5, 0x09, 0x5a, 0x08, 0x62, - 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x00, 0x07, 0x6d, 0xfe, 0x1d, 0x00, 0x00, 0x09, 0x64, - 0xfb, 0x89, 0xfe, 0xa2, 0x09, 0x5a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, - 0x00, 0x01, 0x00, 0x00, 0x03, 0x82, 0x00, 0xa0, 0x00, 0x16, 0x00, 0x7a, - 0x00, 0x05, 0x00, 0x02, 0x00, 0x10, 0x00, 0x2f, 0x00, 0x5a, 0x00, 0x00, - 0x02, 0x1f, 0x01, 0x39, 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x04, 0x99, - 0x01, 0x90, 0x00, 0x05, 0x00, 0x08, 0x05, 0x9a, 0x05, 0x33, 0x00, 0x00, - 0x01, 0x1e, 0x05, 0x9a, 0x05, 0x33, 0x00, 0x00, 0x03, 0xd0, 0x00, 0x66, - 0x01, 0xf2, 0x00, 0x00, 0x02, 0x0b, 0x06, 0x06, 0x03, 0x08, 0x04, 0x02, - 0x02, 0x04, 0xe0, 0x00, 0x02, 0xef, 0x40, 0x00, 0x20, 0x5b, 0x00, 0x00, - 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x53, 0x43, 0x00, 0x40, - 0x00, 0x20, 0xff, 0xfd, 0x06, 0x1f, 0xfe, 0x14, 0x00, 0x84, 0x07, 0x6d, - 0x01, 0xe3, 0x20, 0x00, 0x01, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x04, 0x4a, - 0x05, 0xb6, 0x00, 0x00, 0x00, 0x20, 0x00, 0x02, 0x04, 0xcd, 0x00, 0xc1, - 0x00, 0x00, 0x00, 0x00, 0x04, 0x14, 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, - 0x02, 0x27, 0x00, 0x93, 0x03, 0x37, 0x00, 0x85, 0x05, 0x2b, 0x00, 0x33, - 0x04, 0x68, 0x00, 0x7b, 0x06, 0x9a, 0x00, 0x66, 0x05, 0x9e, 0x00, 0x6d, - 0x01, 0xcf, 0x00, 0x85, 0x02, 0x68, 0x00, 0x52, 0x02, 0x68, 0x00, 0x3d, - 0x04, 0x68, 0x00, 0x52, 0x04, 0x68, 0x00, 0x66, 0x02, 0x00, 0x00, 0x3f, - 0x02, 0x93, 0x00, 0x52, 0x02, 0x25, 0x00, 0x93, 0x02, 0xfc, 0x00, 0x14, - 0x04, 0x68, 0x00, 0x62, 0x04, 0x68, 0x00, 0xb2, 0x04, 0x68, 0x00, 0x60, - 0x04, 0x68, 0x00, 0x52, 0x04, 0x68, 0x00, 0x17, 0x04, 0x68, 0x00, 0x83, - 0x04, 0x68, 0x00, 0x71, 0x04, 0x68, 0x00, 0x5a, 0x04, 0x68, 0x00, 0x6a, - 0x04, 0x68, 0x00, 0x6a, 0x02, 0x25, 0x00, 0x93, 0x02, 0x25, 0x00, 0x3f, - 0x04, 0x68, 0x00, 0x66, 0x04, 0x68, 0x00, 0x66, 0x04, 0x68, 0x00, 0x66, - 0x03, 0x68, 0x00, 0x25, 0x06, 0xee, 0x00, 0x6d, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0xf8, 0x00, 0xc7, 0x04, 0xd3, 0x00, 0x7d, 0x05, 0x79, 0x00, 0xc7, - 0x04, 0x39, 0x00, 0xc7, 0x03, 0xee, 0x00, 0xc7, 0x05, 0x85, 0x00, 0x7d, - 0x05, 0x9c, 0x00, 0xc7, 0x02, 0xb6, 0x00, 0x52, 0x02, 0x2b, 0xff, 0x48, - 0x04, 0xa2, 0x00, 0xc7, 0x03, 0xee, 0x00, 0xc7, 0x06, 0xf6, 0x00, 0xc7, - 0x05, 0xd5, 0x00, 0xc7, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9c, 0x00, 0xc7, - 0x05, 0xee, 0x00, 0x7d, 0x04, 0xb8, 0x00, 0xc7, 0x04, 0x27, 0x00, 0x68, - 0x04, 0x27, 0x00, 0x14, 0x05, 0x96, 0x00, 0xb8, 0x04, 0x8b, 0x00, 0x00, - 0x07, 0x12, 0x00, 0x14, 0x04, 0x60, 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, - 0x04, 0x50, 0x00, 0x52, 0x02, 0x6d, 0x00, 0xa4, 0x02, 0xfc, 0x00, 0x17, - 0x02, 0x6d, 0x00, 0x33, 0x04, 0x42, 0x00, 0x29, 0x03, 0x4a, 0xff, 0xfc, - 0x04, 0x9e, 0x01, 0x89, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xb0, 0x00, 0xae, - 0x03, 0xb4, 0x00, 0x71, 0x04, 0xb0, 0x00, 0x71, 0x04, 0x48, 0x00, 0x71, - 0x02, 0xa2, 0x00, 0x1d, 0x04, 0x25, 0x00, 0x25, 0x04, 0xb6, 0x00, 0xae, - 0x02, 0x12, 0x00, 0xa0, 0x02, 0x12, 0xff, 0xbc, 0x03, 0xf8, 0x00, 0xae, - 0x02, 0x12, 0x00, 0xae, 0x07, 0x2b, 0x00, 0xae, 0x04, 0xb6, 0x00, 0xae, - 0x04, 0x9e, 0x00, 0x71, 0x04, 0xb0, 0x00, 0xae, 0x04, 0xb0, 0x00, 0x71, - 0x03, 0x31, 0x00, 0xae, 0x03, 0x9c, 0x00, 0x5a, 0x02, 0xb6, 0x00, 0x21, - 0x04, 0xb6, 0x00, 0xa4, 0x03, 0xd5, 0x00, 0x00, 0x05, 0xf8, 0x00, 0x14, - 0x04, 0x00, 0x00, 0x23, 0x03, 0xe9, 0x00, 0x0a, 0x03, 0x87, 0x00, 0x52, - 0x02, 0xd5, 0x00, 0x3d, 0x04, 0x68, 0x01, 0xe9, 0x02, 0xd5, 0x00, 0x33, - 0x04, 0x68, 0x00, 0x66, 0x02, 0x14, 0x00, 0x00, 0x02, 0x27, 0x00, 0x93, - 0x04, 0x68, 0x00, 0xbc, 0x04, 0x68, 0x00, 0x44, 0x04, 0x68, 0x00, 0x7b, - 0x04, 0x68, 0x00, 0x1d, 0x04, 0x68, 0x01, 0xe9, 0x03, 0xe3, 0x00, 0x79, - 0x04, 0x9e, 0x01, 0x33, 0x06, 0xa8, 0x00, 0x64, 0x02, 0xa6, 0x00, 0x44, - 0x03, 0xe5, 0x00, 0x52, 0x04, 0x68, 0x00, 0x66, 0x02, 0x93, 0x00, 0x52, - 0x06, 0xa8, 0x00, 0x64, 0x04, 0x00, 0xff, 0xfa, 0x03, 0x6d, 0x00, 0x7b, - 0x04, 0x68, 0x00, 0x66, 0x02, 0xa6, 0x00, 0x31, 0x02, 0xa6, 0x00, 0x1f, - 0x04, 0x9e, 0x01, 0x89, 0x04, 0xc1, 0x00, 0xae, 0x05, 0x3d, 0x00, 0x71, - 0x02, 0x25, 0x00, 0x93, 0x01, 0xa4, 0x00, 0x23, 0x02, 0xa6, 0x00, 0x3f, - 0x02, 0xcd, 0x00, 0x42, 0x03, 0xe5, 0x00, 0x54, 0x05, 0xe5, 0x00, 0x3f, - 0x05, 0xe5, 0x00, 0x2c, 0x05, 0xe5, 0x00, 0x1f, 0x03, 0x68, 0x00, 0x44, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0xdd, 0x00, 0x00, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0xdd, 0x00, 0x00, 0x04, 0xdd, 0x00, 0x00, - 0x06, 0xd1, 0xff, 0xfe, 0x04, 0xd3, 0x00, 0x7d, 0x04, 0x39, 0x00, 0xc7, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x39, 0x00, 0xc7, - 0x02, 0xb6, 0x00, 0x3e, 0x02, 0xb6, 0x00, 0x52, 0x02, 0xb6, 0x00, 0x11, - 0x02, 0xb6, 0x00, 0x40, 0x05, 0x79, 0x00, 0x2f, 0x05, 0xd5, 0x00, 0xc7, - 0x05, 0xf0, 0x00, 0x7d, 0x05, 0xf0, 0x00, 0x7d, 0x05, 0xf0, 0x00, 0x7d, - 0x05, 0xf0, 0x00, 0x7d, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x68, 0x00, 0x8d, - 0x05, 0xf0, 0x00, 0x7d, 0x05, 0x96, 0x00, 0xb8, 0x05, 0x96, 0x00, 0xb8, - 0x05, 0x96, 0x00, 0xb8, 0x05, 0x96, 0x00, 0xb8, 0x04, 0x37, 0x00, 0x00, - 0x04, 0x9c, 0x00, 0xc7, 0x04, 0xd1, 0x00, 0xae, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0x3f, 0x00, 0x5e, 0x06, 0xaa, 0x00, 0x5e, - 0x03, 0xb4, 0x00, 0x71, 0x04, 0x48, 0x00, 0x71, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x48, 0x00, 0x71, 0x04, 0x48, 0x00, 0x71, 0x02, 0x12, 0xff, 0xde, - 0x02, 0x12, 0x00, 0xae, 0x02, 0x12, 0xff, 0xbd, 0x02, 0x12, 0xff, 0xee, - 0x04, 0x9e, 0x00, 0x6f, 0x04, 0xb6, 0x00, 0xae, 0x04, 0x9e, 0x00, 0x71, - 0x04, 0x9e, 0x00, 0x71, 0x04, 0x9e, 0x00, 0x71, 0x04, 0x9e, 0x00, 0x71, - 0x04, 0x9e, 0x00, 0x71, 0x04, 0x68, 0x00, 0x66, 0x04, 0x9e, 0x00, 0x73, - 0x04, 0xb6, 0x00, 0xa4, 0x04, 0xb6, 0x00, 0xa4, 0x04, 0xb6, 0x00, 0xa4, - 0x04, 0xb6, 0x00, 0xa4, 0x03, 0xe9, 0x00, 0x0a, 0x04, 0xb0, 0x00, 0xae, - 0x03, 0xe9, 0x00, 0x0a, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xd3, 0x00, 0x7d, 0x03, 0xb4, 0x00, 0x71, - 0x04, 0xd3, 0x00, 0x7d, 0x03, 0xb4, 0x00, 0x71, 0x04, 0xd3, 0x00, 0x7d, - 0x03, 0xb4, 0x00, 0x71, 0x04, 0xd3, 0x00, 0x7d, 0x03, 0xb4, 0x00, 0x71, - 0x05, 0x79, 0x00, 0xc7, 0x04, 0xb0, 0x00, 0x71, 0x05, 0x79, 0x00, 0x2f, - 0x04, 0xb0, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, - 0x04, 0x48, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, 0x05, 0x85, 0x00, 0x7d, - 0x04, 0x25, 0x00, 0x25, 0x05, 0x85, 0x00, 0x7d, 0x04, 0x25, 0x00, 0x25, - 0x05, 0x85, 0x00, 0x7d, 0x04, 0x25, 0x00, 0x25, 0x05, 0x85, 0x00, 0x7d, - 0x04, 0x25, 0x00, 0x25, 0x05, 0x9c, 0x00, 0xc7, 0x04, 0xb6, 0x00, 0xae, - 0x05, 0x9c, 0x00, 0x00, 0x04, 0xb6, 0x00, 0x12, 0x02, 0xb6, 0xff, 0xf5, - 0x02, 0x12, 0xff, 0xa3, 0x02, 0xb6, 0x00, 0x3d, 0x02, 0x12, 0xff, 0xeb, - 0x02, 0xb6, 0x00, 0x30, 0x02, 0x12, 0xff, 0xde, 0x02, 0xb6, 0x00, 0x52, - 0x02, 0x12, 0x00, 0x44, 0x02, 0xb6, 0x00, 0x52, 0x02, 0x12, 0x00, 0xae, - 0x04, 0xe1, 0x00, 0x52, 0x04, 0x25, 0x00, 0xa0, 0x02, 0x2b, 0xff, 0x48, - 0x02, 0x12, 0xff, 0xbc, 0x04, 0xa2, 0x00, 0xc7, 0x03, 0xf8, 0x00, 0xae, - 0x03, 0xf8, 0x00, 0xae, 0x03, 0xee, 0x00, 0xc7, 0x02, 0x12, 0x00, 0xab, - 0x03, 0xee, 0x00, 0xc7, 0x02, 0x12, 0x00, 0x66, 0x03, 0xee, 0x00, 0xc7, - 0x02, 0x12, 0x00, 0xae, 0x03, 0xee, 0x00, 0xc7, 0x02, 0x66, 0x00, 0xae, - 0x03, 0xee, 0x00, 0x1d, 0x02, 0x12, 0xff, 0xf6, 0x05, 0xd5, 0x00, 0xc7, - 0x04, 0xb6, 0x00, 0xae, 0x05, 0xd5, 0x00, 0xc7, 0x04, 0xb6, 0x00, 0xae, - 0x05, 0xd5, 0x00, 0xc7, 0x04, 0xb6, 0x00, 0xae, 0x05, 0x46, 0xff, 0xff, - 0x05, 0xd5, 0x00, 0xc7, 0x04, 0xb6, 0x00, 0xae, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, 0x07, 0x1f, 0x00, 0x7d, - 0x07, 0x48, 0x00, 0x71, 0x04, 0xb8, 0x00, 0xc7, 0x03, 0x31, 0x00, 0xae, - 0x04, 0xb8, 0x00, 0xc7, 0x03, 0x31, 0x00, 0x60, 0x04, 0xb8, 0x00, 0xc7, - 0x03, 0x31, 0x00, 0x72, 0x04, 0x27, 0x00, 0x68, 0x03, 0x9c, 0x00, 0x5a, - 0x04, 0x27, 0x00, 0x68, 0x03, 0x9c, 0x00, 0x5a, 0x04, 0x27, 0x00, 0x68, - 0x03, 0x9c, 0x00, 0x5a, 0x04, 0x27, 0x00, 0x68, 0x03, 0x9c, 0x00, 0x5a, - 0x04, 0x27, 0x00, 0x14, 0x02, 0xb6, 0x00, 0x21, 0x04, 0x27, 0x00, 0x14, - 0x02, 0xb6, 0x00, 0x21, 0x04, 0x27, 0x00, 0x14, 0x02, 0xb6, 0x00, 0x21, - 0x05, 0x96, 0x00, 0xb8, 0x04, 0xb6, 0x00, 0xa4, 0x05, 0x96, 0x00, 0xb8, - 0x04, 0xb6, 0x00, 0xa4, 0x05, 0x96, 0x00, 0xb8, 0x04, 0xb6, 0x00, 0xa4, - 0x05, 0x96, 0x00, 0xb8, 0x04, 0xb6, 0x00, 0xa4, 0x05, 0x96, 0x00, 0xb8, - 0x04, 0xb6, 0x00, 0xa4, 0x05, 0x96, 0x00, 0xb8, 0x04, 0xb6, 0x00, 0xa4, - 0x07, 0x12, 0x00, 0x14, 0x05, 0xf8, 0x00, 0x14, 0x04, 0x37, 0x00, 0x00, - 0x03, 0xe9, 0x00, 0x0a, 0x04, 0x37, 0x00, 0x00, 0x04, 0x50, 0x00, 0x52, - 0x03, 0x87, 0x00, 0x52, 0x04, 0x50, 0x00, 0x52, 0x03, 0x87, 0x00, 0x52, - 0x04, 0x50, 0x00, 0x52, 0x03, 0x87, 0x00, 0x52, 0x02, 0x4c, 0x00, 0xae, - 0x04, 0x68, 0x00, 0xcb, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x06, 0xd1, 0xff, 0xfe, 0x06, 0xaa, 0x00, 0x5e, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0x9e, 0x00, 0x73, 0x04, 0x27, 0x00, 0x68, 0x03, 0x9c, 0x00, 0x5a, - 0x04, 0x9e, 0x01, 0x02, 0x04, 0x9e, 0x01, 0x02, 0x04, 0x75, 0x01, 0x1b, - 0x04, 0x9e, 0x01, 0x21, 0x02, 0x12, 0x00, 0xa0, 0x04, 0x9e, 0x01, 0x6d, - 0x01, 0x7b, 0x00, 0x1f, 0x04, 0x9e, 0x01, 0x02, 0x04, 0x9e, 0x00, 0xdf, - 0x04, 0x9e, 0x01, 0xf8, 0x04, 0x9e, 0x01, 0x14, 0x04, 0xdd, 0xff, 0xe9, - 0x02, 0x25, 0x00, 0x93, 0x04, 0xc9, 0xff, 0xe7, 0x06, 0x17, 0xff, 0xe7, - 0x03, 0xb2, 0xff, 0xe7, 0x06, 0x42, 0xff, 0xe7, 0x05, 0x54, 0xff, 0xe7, - 0x06, 0x4a, 0xff, 0xe7, 0x02, 0x9e, 0xff, 0xe4, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0xf8, 0x00, 0xc7, 0x03, 0xee, 0x00, 0xc7, 0x04, 0x8b, 0x00, 0x25, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x50, 0x00, 0x52, 0x05, 0x9c, 0x00, 0xc7, - 0x05, 0xf0, 0x00, 0x7d, 0x02, 0xb6, 0x00, 0x52, 0x04, 0xa2, 0x00, 0xc7, - 0x04, 0x8b, 0x00, 0x00, 0x06, 0xf6, 0x00, 0xc7, 0x05, 0xd5, 0x00, 0xc7, - 0x04, 0x3f, 0x00, 0x52, 0x05, 0xf0, 0x00, 0x7d, 0x05, 0x87, 0x00, 0xc7, - 0x04, 0x9c, 0x00, 0xc7, 0x04, 0x42, 0x00, 0x4e, 0x04, 0x27, 0x00, 0x14, - 0x04, 0x37, 0x00, 0x00, 0x06, 0x23, 0x00, 0x68, 0x04, 0x60, 0x00, 0x00, - 0x06, 0x23, 0x00, 0x68, 0x05, 0xf0, 0x00, 0x4e, 0x02, 0xb6, 0x00, 0x40, - 0x04, 0x37, 0x00, 0x00, 0x04, 0xb0, 0x00, 0x71, 0x03, 0xa0, 0x00, 0x5a, - 0x04, 0xb6, 0x00, 0xae, 0x02, 0x9e, 0x00, 0xa4, 0x04, 0xb8, 0x00, 0xa4, - 0x04, 0xb0, 0x00, 0x71, 0x04, 0xd1, 0x00, 0xae, 0x03, 0xe9, 0x00, 0x0a, - 0x04, 0x9e, 0x00, 0x6f, 0x03, 0xa0, 0x00, 0x5a, 0x03, 0xa4, 0x00, 0x71, - 0x04, 0xb6, 0x00, 0xae, 0x04, 0x87, 0x00, 0x71, 0x02, 0x9e, 0x00, 0xa4, - 0x03, 0xf8, 0x00, 0xae, 0x04, 0x17, 0xff, 0xf2, 0x04, 0xc1, 0x00, 0xae, - 0x04, 0x23, 0x00, 0x00, 0x03, 0xa4, 0x00, 0x71, 0x04, 0x9e, 0x00, 0x71, - 0x05, 0x0a, 0x00, 0x19, 0x04, 0x9e, 0x00, 0xa4, 0x03, 0xa4, 0x00, 0x71, - 0x04, 0xb4, 0x00, 0x71, 0x03, 0x98, 0x00, 0x12, 0x04, 0xb8, 0x00, 0xa4, - 0x05, 0x96, 0x00, 0x71, 0x04, 0x31, 0xff, 0xec, 0x05, 0xec, 0x00, 0xa4, - 0x06, 0x06, 0x00, 0x71, 0x02, 0x9e, 0x00, 0x15, 0x04, 0xb8, 0x00, 0xa4, - 0x04, 0x9e, 0x00, 0x71, 0x04, 0xb8, 0x00, 0xa4, 0x06, 0x06, 0x00, 0x71, - 0x04, 0x39, 0x00, 0xc7, 0x05, 0xa0, 0x00, 0x14, 0x03, 0xee, 0x00, 0xc7, - 0x04, 0xd3, 0x00, 0x7d, 0x04, 0x27, 0x00, 0x68, 0x02, 0xb6, 0x00, 0x52, - 0x02, 0xb6, 0x00, 0x40, 0x02, 0x2b, 0xff, 0x48, 0x07, 0x48, 0x00, 0x00, - 0x07, 0x75, 0x00, 0xc7, 0x05, 0xa0, 0x00, 0x14, 0x04, 0xa2, 0x00, 0xc7, - 0x04, 0xae, 0x00, 0x19, 0x05, 0x87, 0x00, 0xc7, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x9c, 0x00, 0xc7, 0x04, 0xf8, 0x00, 0xc7, 0x03, 0xee, 0x00, 0xc7, - 0x05, 0x33, 0x00, 0x0e, 0x04, 0x39, 0x00, 0xc7, 0x06, 0x85, 0x00, 0x04, - 0x04, 0x5c, 0x00, 0x48, 0x05, 0xd5, 0x00, 0xc9, 0x05, 0xd5, 0x00, 0xc9, - 0x04, 0xa2, 0x00, 0xc7, 0x05, 0x5a, 0x00, 0x00, 0x06, 0xf6, 0x00, 0xc7, - 0x05, 0x9c, 0x00, 0xc7, 0x05, 0xf0, 0x00, 0x7d, 0x05, 0x87, 0x00, 0xc7, - 0x04, 0x9c, 0x00, 0xc7, 0x04, 0xd3, 0x00, 0x7d, 0x04, 0x27, 0x00, 0x14, - 0x04, 0xae, 0x00, 0x19, 0x06, 0x23, 0x00, 0x68, 0x04, 0x60, 0x00, 0x00, - 0x05, 0x9a, 0x00, 0xc7, 0x05, 0x48, 0x00, 0xa6, 0x07, 0xfa, 0x00, 0xc7, - 0x07, 0xfa, 0x00, 0xc7, 0x05, 0x3d, 0x00, 0x14, 0x06, 0x96, 0x00, 0xc7, - 0x04, 0x9c, 0x00, 0xc7, 0x04, 0xc1, 0x00, 0x3b, 0x08, 0x1d, 0x00, 0xc7, - 0x04, 0xb8, 0x00, 0x19, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0x8f, 0x00, 0x75, - 0x04, 0x89, 0x00, 0xae, 0x03, 0x33, 0x00, 0xae, 0x04, 0x60, 0x00, 0x29, - 0x04, 0x48, 0x00, 0x71, 0x05, 0xc3, 0x00, 0x04, 0x03, 0xae, 0x00, 0x44, - 0x04, 0xe9, 0x00, 0xae, 0x04, 0xe9, 0x00, 0xae, 0x03, 0xee, 0x00, 0xae, - 0x04, 0x5e, 0x00, 0x10, 0x05, 0xbe, 0x00, 0xae, 0x04, 0xe9, 0x00, 0xae, - 0x04, 0x9e, 0x00, 0x71, 0x04, 0xc1, 0x00, 0xae, 0x04, 0xb0, 0x00, 0xae, - 0x03, 0xb4, 0x00, 0x71, 0x03, 0x87, 0x00, 0x29, 0x03, 0xe9, 0x00, 0x0a, - 0x05, 0x93, 0x00, 0x71, 0x04, 0x00, 0x00, 0x23, 0x04, 0xd1, 0x00, 0xae, - 0x04, 0xac, 0x00, 0x9a, 0x06, 0xf4, 0x00, 0xae, 0x07, 0x04, 0x00, 0xae, - 0x05, 0x6d, 0x00, 0x29, 0x05, 0xfe, 0x00, 0xae, 0x04, 0x89, 0x00, 0xae, - 0x03, 0xb2, 0x00, 0x37, 0x06, 0x79, 0x00, 0xae, 0x04, 0x3f, 0x00, 0x23, - 0x04, 0x48, 0x00, 0x71, 0x04, 0xb6, 0x00, 0x12, 0x03, 0x33, 0x00, 0xae, - 0x03, 0xb4, 0x00, 0x71, 0x03, 0x9c, 0x00, 0x5a, 0x02, 0x12, 0x00, 0xa0, - 0x02, 0x12, 0xff, 0xee, 0x02, 0x12, 0xff, 0xbc, 0x06, 0x83, 0x00, 0x10, - 0x06, 0xe5, 0x00, 0xae, 0x04, 0xb6, 0x00, 0x12, 0x03, 0xee, 0x00, 0xae, - 0x03, 0xe9, 0x00, 0x0a, 0x04, 0xc1, 0x00, 0xae, 0x03, 0xee, 0x00, 0xc7, - 0x03, 0x33, 0x00, 0xae, 0x07, 0x12, 0x00, 0x14, 0x05, 0xf8, 0x00, 0x14, - 0x07, 0x12, 0x00, 0x14, 0x05, 0xf8, 0x00, 0x14, 0x07, 0x12, 0x00, 0x14, - 0x05, 0xf8, 0x00, 0x14, 0x04, 0x37, 0x00, 0x00, 0x03, 0xe9, 0x00, 0x0a, - 0x04, 0x00, 0x00, 0x52, 0x08, 0x00, 0x00, 0x52, 0x08, 0x00, 0x00, 0x52, - 0x03, 0x4a, 0xff, 0xfc, 0x01, 0x66, 0x00, 0x17, 0x01, 0x66, 0x00, 0x17, - 0x02, 0x00, 0x00, 0x3f, 0x01, 0x66, 0x00, 0x19, 0x02, 0xe7, 0x00, 0x17, - 0x02, 0xe7, 0x00, 0x17, 0x03, 0x81, 0x00, 0x3f, 0x03, 0xe3, 0x00, 0x7b, - 0x03, 0xf8, 0x00, 0x7b, 0x03, 0x02, 0x00, 0x96, 0x06, 0x6f, 0x00, 0x93, - 0x09, 0x5a, 0x00, 0x66, 0x01, 0xcf, 0x00, 0x85, 0x03, 0x37, 0x00, 0x85, - 0x02, 0x4e, 0x00, 0x52, 0x02, 0x4e, 0x00, 0x52, 0x03, 0xf6, 0x00, 0x93, - 0x01, 0x0a, 0xfe, 0xa0, 0x02, 0xf8, 0x00, 0x6a, 0x04, 0x68, 0x00, 0x60, - 0x04, 0x68, 0x00, 0x44, 0x06, 0x00, 0x00, 0x96, 0x04, 0x68, 0x00, 0x3f, - 0x06, 0x68, 0x00, 0x8d, 0x04, 0x00, 0x00, 0x77, 0x07, 0xe7, 0x00, 0xc7, - 0x05, 0xfe, 0x00, 0x25, 0x05, 0xf0, 0x00, 0x4e, 0x04, 0xf4, 0x00, 0x66, - 0x06, 0x0e, 0x00, 0x53, 0x06, 0x0e, 0x00, 0x33, 0x06, 0x0e, 0x00, 0x4f, - 0x06, 0x0e, 0x00, 0x71, 0x04, 0xa6, 0x00, 0x62, 0x04, 0x8b, 0x00, 0x29, - 0x05, 0xee, 0x00, 0xc7, 0x05, 0x0c, 0x00, 0x4a, 0x04, 0x68, 0x00, 0x66, - 0x04, 0x64, 0x00, 0x25, 0x05, 0xa8, 0x00, 0x77, 0x03, 0x19, 0x00, 0x10, - 0x04, 0x68, 0x00, 0x66, 0x04, 0x68, 0x00, 0x66, 0x04, 0x68, 0x00, 0x66, - 0x04, 0x68, 0x00, 0x66, 0x04, 0xaa, 0x00, 0x6d, 0x04, 0xb4, 0x00, 0x1d, - 0x04, 0xb4, 0x00, 0x1d, 0x04, 0x9e, 0x00, 0xcf, 0x02, 0x12, 0xff, 0xbc, - 0x04, 0x00, 0x01, 0x87, 0x04, 0x00, 0x01, 0x6f, 0x04, 0x00, 0x01, 0x7d, - 0x02, 0xa6, 0x00, 0x25, 0x02, 0xa6, 0x00, 0x0c, 0x02, 0xa6, 0x00, 0x3b, - 0x02, 0xa6, 0x00, 0x25, 0x02, 0xa6, 0x00, 0x2f, 0x02, 0xa6, 0x00, 0x31, - 0x02, 0xa6, 0x00, 0x21, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, - 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x02, 0xab, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x04, 0x68, 0x00, 0x00, - 0x02, 0x25, 0x00, 0x00, 0x01, 0x9a, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x54, - 0x08, 0x00, 0x00, 0x54, 0x02, 0x12, 0xff, 0xbc, 0x01, 0x66, 0x00, 0x17, - 0x04, 0xcd, 0x00, 0x0a, 0x04, 0x52, 0x00, 0x00, 0x06, 0xa0, 0x00, 0x12, - 0x06, 0xf6, 0x00, 0xc7, 0x07, 0x2b, 0x00, 0xae, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x06, 0x42, 0xfe, 0xd3, 0x02, 0xaa, 0x00, 0x73, - 0x03, 0x33, 0x00, 0x93, 0x07, 0x56, 0x00, 0x1d, 0x07, 0x56, 0x00, 0x1d, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0xaa, 0x00, 0x71, 0x05, 0xf4, 0x00, 0xb8, - 0x05, 0x2f, 0x00, 0xa4, 0x00, 0x00, 0xfc, 0x8f, 0x00, 0x00, 0xfd, 0x48, - 0x00, 0x00, 0xfc, 0x46, 0x00, 0x00, 0xfd, 0x04, 0x00, 0x00, 0xfd, 0x31, - 0x04, 0x39, 0x00, 0xc7, 0x05, 0xd5, 0x00, 0xc9, 0x04, 0x48, 0x00, 0x71, - 0x04, 0xe9, 0x00, 0xae, 0x07, 0xdb, 0x00, 0x7d, 0x06, 0x6f, 0x00, 0x00, - 0x05, 0x25, 0x00, 0x14, 0x04, 0xdd, 0x00, 0x14, 0x07, 0x27, 0x00, 0xc7, - 0x05, 0xb6, 0x00, 0xae, 0x05, 0x2f, 0x00, 0x00, 0x04, 0x64, 0x00, 0x0a, - 0x07, 0x29, 0x00, 0xc7, 0x06, 0x12, 0x00, 0xae, 0x05, 0x7f, 0x00, 0x14, - 0x04, 0xf0, 0x00, 0x0a, 0x07, 0x8b, 0x00, 0xc7, 0x06, 0xa2, 0x00, 0xae, - 0x04, 0x5e, 0x00, 0x39, 0x03, 0xae, 0x00, 0x17, 0x06, 0x23, 0x00, 0x68, - 0x05, 0xec, 0x00, 0xa4, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, - 0x04, 0xc1, 0x00, 0x00, 0x03, 0xdd, 0x00, 0x00, 0x04, 0xc1, 0x00, 0x00, - 0x03, 0xdd, 0x00, 0x00, 0x09, 0x64, 0x00, 0x7d, 0x08, 0x58, 0x00, 0x71, - 0x06, 0x3f, 0x00, 0x7d, 0x05, 0x19, 0x00, 0x71, 0x07, 0xb2, 0x00, 0x7d, - 0x06, 0x50, 0x00, 0x71, 0x07, 0xdb, 0x00, 0x7d, 0x06, 0x6f, 0x00, 0x00, - 0x04, 0xd3, 0x00, 0x7d, 0x03, 0xb4, 0x00, 0x71, 0x04, 0xdf, 0x00, 0x68, - 0x04, 0x75, 0x00, 0xc9, 0x04, 0x9e, 0x00, 0xf4, 0x04, 0x9e, 0x01, 0xe1, - 0x04, 0x9e, 0x01, 0xe1, 0x07, 0xe9, 0x00, 0x29, 0x07, 0xa6, 0x00, 0x29, - 0x05, 0xe7, 0x00, 0xc9, 0x04, 0xfc, 0x00, 0xae, 0x04, 0x9c, 0x00, 0x2f, - 0x04, 0x89, 0x00, 0x12, 0x04, 0x9c, 0x00, 0xc7, 0x04, 0xb0, 0x00, 0xae, - 0x03, 0xee, 0x00, 0x2f, 0x03, 0x33, 0x00, 0x12, 0x05, 0x00, 0x00, 0xc7, - 0x04, 0x08, 0x00, 0xae, 0x06, 0xe9, 0x00, 0x04, 0x06, 0x23, 0x00, 0x04, - 0x04, 0x5c, 0x00, 0x48, 0x03, 0xae, 0x00, 0x44, 0x05, 0x0a, 0x00, 0xc7, - 0x04, 0x4a, 0x00, 0xae, 0x04, 0xa2, 0x00, 0xc7, 0x04, 0x2b, 0x00, 0xae, - 0x04, 0xa2, 0x00, 0x2f, 0x03, 0xf8, 0x00, 0x12, 0x05, 0x44, 0x00, 0x14, - 0x04, 0xd1, 0x00, 0x29, 0x05, 0xcd, 0x00, 0xe5, 0x04, 0xfa, 0x00, 0xae, - 0x06, 0x5c, 0x00, 0xe5, 0x05, 0xac, 0x00, 0xae, 0x08, 0x44, 0x00, 0xc7, - 0x06, 0xb8, 0x00, 0xae, 0x05, 0xec, 0x00, 0x7d, 0x04, 0xf2, 0x00, 0x71, - 0x04, 0xd3, 0x00, 0x7d, 0x03, 0xb4, 0x00, 0x71, 0x04, 0x27, 0x00, 0x14, - 0x03, 0x87, 0x00, 0x29, 0x04, 0x37, 0x00, 0x00, 0x03, 0xd5, 0x00, 0x00, - 0x04, 0x37, 0x00, 0x00, 0x03, 0xd5, 0x00, 0x00, 0x04, 0xd3, 0x00, 0x00, - 0x04, 0x3d, 0x00, 0x23, 0x06, 0x89, 0x00, 0x14, 0x05, 0x8b, 0x00, 0x29, - 0x05, 0x48, 0x00, 0xa6, 0x04, 0xbc, 0x00, 0x9a, 0x05, 0x48, 0x00, 0xa6, - 0x04, 0xac, 0x00, 0x9a, 0x05, 0x48, 0x00, 0xc7, 0x04, 0xac, 0x00, 0xae, - 0x06, 0x77, 0x00, 0x3d, 0x05, 0x1d, 0x00, 0x33, 0x06, 0x77, 0x00, 0x3d, - 0x05, 0x1d, 0x00, 0x33, 0x02, 0xb6, 0x00, 0x52, 0x06, 0x85, 0x00, 0x04, - 0x05, 0xc3, 0x00, 0x04, 0x05, 0x4a, 0x00, 0xc7, 0x04, 0x2d, 0x00, 0xae, - 0x05, 0x6a, 0x00, 0x00, 0x04, 0x71, 0x00, 0x10, 0x05, 0x9c, 0x00, 0xe5, - 0x04, 0xe9, 0x00, 0xae, 0x05, 0xcb, 0x00, 0xe5, 0x04, 0xfc, 0x00, 0xae, - 0x05, 0x48, 0x00, 0xa6, 0x04, 0xac, 0x00, 0x9a, 0x07, 0x06, 0x00, 0xc7, - 0x05, 0xd1, 0x00, 0xae, 0x02, 0xb6, 0x00, 0x52, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x06, 0xd1, 0xff, 0xfe, 0x06, 0xaa, 0x00, 0x5e, 0x04, 0x39, 0x00, 0xc7, - 0x04, 0x48, 0x00, 0x71, 0x05, 0x8f, 0x00, 0x71, 0x04, 0x48, 0x00, 0x66, - 0x05, 0x8f, 0x00, 0x71, 0x04, 0x48, 0x00, 0x66, 0x06, 0x85, 0x00, 0x04, - 0x05, 0xc3, 0x00, 0x04, 0x04, 0x5c, 0x00, 0x48, 0x03, 0xae, 0x00, 0x44, - 0x04, 0x5c, 0x00, 0x48, 0x03, 0xb8, 0x00, 0x1b, 0x05, 0xd5, 0x00, 0xc9, - 0x04, 0xe9, 0x00, 0xae, 0x05, 0xd5, 0x00, 0xc9, 0x04, 0xe9, 0x00, 0xae, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, - 0x04, 0xc1, 0x00, 0x3b, 0x03, 0xb2, 0x00, 0x37, 0x04, 0xae, 0x00, 0x19, - 0x03, 0xe9, 0x00, 0x0a, 0x04, 0xae, 0x00, 0x19, 0x03, 0xe9, 0x00, 0x0a, - 0x04, 0xae, 0x00, 0x19, 0x03, 0xe9, 0x00, 0x0a, 0x05, 0x48, 0x00, 0xa6, - 0x04, 0xac, 0x00, 0x9a, 0x03, 0xee, 0x00, 0xc7, 0x03, 0x33, 0x00, 0xae, - 0x06, 0x96, 0x00, 0xc7, 0x05, 0xfe, 0x00, 0xae, 0x03, 0xee, 0x00, 0x2f, - 0x03, 0x33, 0x00, 0x12, 0x04, 0xc3, 0x00, 0x00, 0x04, 0x2f, 0x00, 0x23, - 0x04, 0x60, 0x00, 0x00, 0x04, 0x00, 0x00, 0x23, 0x04, 0x9c, 0x00, 0x89, - 0x04, 0xb0, 0x00, 0x71, 0x06, 0xf4, 0x00, 0x89, 0x06, 0xfe, 0x00, 0x71, - 0x06, 0xfc, 0x00, 0x4e, 0x06, 0x46, 0x00, 0x50, 0x04, 0xc5, 0x00, 0x4e, - 0x04, 0x10, 0x00, 0x50, 0x07, 0xa4, 0x00, 0x00, 0x06, 0xa4, 0x00, 0x10, - 0x07, 0xe5, 0x00, 0xc7, 0x07, 0x2f, 0x00, 0xae, 0x05, 0xc3, 0x00, 0x7d, - 0x04, 0xe1, 0x00, 0x71, 0x05, 0x81, 0x00, 0x14, 0x05, 0x12, 0x00, 0x29, - 0x04, 0x5c, 0x00, 0x6f, 0x03, 0xae, 0x00, 0x5c, 0x05, 0x5a, 0x00, 0x00, - 0x04, 0x5e, 0x00, 0x10, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x12, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, - 0x04, 0xdd, 0x00, 0x00, 0x04, 0x3f, 0x00, 0x5e, 0x04, 0xdd, 0x00, 0x00, - 0x04, 0x3f, 0x00, 0x5e, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, - 0x04, 0x48, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x39, 0x00, 0x27, 0x04, 0x48, 0x00, 0x12, 0x04, 0x39, 0x00, 0xc7, - 0x04, 0x48, 0x00, 0x71, 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, - 0x04, 0x39, 0x00, 0xc7, 0x04, 0x48, 0x00, 0x71, 0x02, 0xb6, 0x00, 0x52, - 0x02, 0x12, 0x00, 0x62, 0x02, 0xb6, 0x00, 0x52, 0x02, 0x12, 0x00, 0x9e, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x33, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0x9e, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0xaa, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0xaa, 0x00, 0x71, - 0x05, 0xf0, 0x00, 0x7d, 0x04, 0xaa, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, - 0x04, 0xaa, 0x00, 0x71, 0x05, 0xf0, 0x00, 0x7d, 0x04, 0xaa, 0x00, 0x71, - 0x05, 0x96, 0x00, 0xb8, 0x04, 0xb6, 0x00, 0xa4, 0x05, 0x96, 0x00, 0xb8, - 0x04, 0xb6, 0x00, 0xa4, 0x05, 0xf4, 0x00, 0xb8, 0x05, 0x2f, 0x00, 0xa4, - 0x05, 0xf4, 0x00, 0xb8, 0x05, 0x2f, 0x00, 0xa4, 0x05, 0xf4, 0x00, 0xb8, - 0x05, 0x2f, 0x00, 0xa4, 0x05, 0xf4, 0x00, 0xb8, 0x05, 0x2f, 0x00, 0xa4, - 0x05, 0xf4, 0x00, 0xb8, 0x05, 0x2f, 0x00, 0xa4, 0x04, 0x37, 0x00, 0x00, - 0x03, 0xe9, 0x00, 0x0a, 0x04, 0x37, 0x00, 0x00, 0x03, 0xe9, 0x00, 0x0a, - 0x04, 0x37, 0x00, 0x00, 0x03, 0xe9, 0x00, 0x0a, 0x04, 0xb0, 0x00, 0x71, - 0x00, 0x00, 0xfb, 0xdb, 0x00, 0x00, 0xfc, 0x6a, 0x00, 0x00, 0xfb, 0x89, - 0x00, 0x00, 0xfc, 0x6a, 0x00, 0x00, 0xfc, 0x64, 0x00, 0x00, 0xfc, 0x73, - 0x00, 0x00, 0xfc, 0x73, 0x00, 0x00, 0xfc, 0x73, 0x00, 0x00, 0xfc, 0x64, - 0x01, 0xa4, 0x00, 0x31, 0x00, 0x10, 0x00, 0x10, 0x00, 0x00, 0x03, 0x82, - 0x01, 0x01, 0x01, 0x1a, 0x28, 0x18, 0x01, 0x01, 0x0a, 0x01, 0x2b, 0x01, - 0x01, 0x0a, 0x0b, 0x16, 0x01, 0x14, 0x05, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x14, 0x14, 0x0b, 0x0b, 0x0b, 0x1c, 0x0b, - 0x26, 0x22, 0x14, 0x0b, 0x01, 0x12, 0x0b, 0x15, 0x19, 0x15, 0x15, 0x14, - 0x1c, 0x19, 0x22, 0x13, 0x1e, 0x16, 0x1b, 0x1b, 0x15, 0x17, 0x10, 0x10, - 0x26, 0x12, 0x01, 0x05, 0x01, 0x20, 0x01, 0x01, 0x11, 0x0b, 0x1c, 0x0b, - 0x15, 0x2a, 0x19, 0x2e, 0x0c, 0x0c, 0x0a, 0x0c, 0x18, 0x2e, 0x15, 0x0b, - 0x0b, 0x12, 0x2a, 0x0b, 0x2e, 0x19, 0x0b, 0x1a, 0x16, 0x12, 0x19, 0x18, - 0x19, 0x0b, 0x1a, 0x28, 0x0b, 0x0b, 0x0b, 0x0b, 0x18, 0x15, 0x01, 0x04, - 0x14, 0x27, 0x0b, 0x01, 0x04, 0x01, 0x10, 0x0b, 0x11, 0x11, 0x01, 0x12, - 0x0b, 0x14, 0x01, 0x11, 0x0a, 0x27, 0x01, 0x01, 0x0a, 0x1c, 0x26, 0x26, - 0x26, 0x26, 0x26, 0x26, 0x01, 0x14, 0x01, 0x01, 0x01, 0x01, 0x19, 0x19, - 0x19, 0x19, 0x0b, 0x19, 0x22, 0x22, 0x22, 0x22, 0x22, 0x0b, 0x22, 0x15, - 0x15, 0x15, 0x15, 0x26, 0x13, 0x16, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, - 0x16, 0x1c, 0x15, 0x15, 0x15, 0x15, 0x0c, 0x0c, 0x0c, 0x0c, 0x15, 0x2e, - 0x15, 0x15, 0x15, 0x15, 0x15, 0x0b, 0x15, 0x2e, 0x2e, 0x2e, 0x2e, 0x16, - 0x0b, 0x16, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x14, 0x1c, 0x14, 0x1c, - 0x14, 0x1c, 0x14, 0x1c, 0x0b, 0x0b, 0x0b, 0x0b, 0x01, 0x15, 0x01, 0x15, - 0x01, 0x15, 0x01, 0x15, 0x01, 0x15, 0x0b, 0x19, 0x0b, 0x19, 0x0b, 0x19, - 0x0b, 0x19, 0x15, 0x2e, 0x15, 0x2e, 0x19, 0x0c, 0x19, 0x0c, 0x19, 0x0c, - 0x19, 0x0c, 0x19, 0x0c, 0x15, 0x17, 0x15, 0x0c, 0x15, 0x0a, 0x0a, 0x14, - 0x0c, 0x14, 0x0c, 0x14, 0x0c, 0x14, 0x24, 0x14, 0x0c, 0x19, 0x2e, 0x19, - 0x2e, 0x19, 0x2e, 0x18, 0x19, 0x2e, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, - 0x2a, 0x28, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x1b, 0x2a, 0x1b, 0x2a, - 0x1b, 0x2a, 0x1b, 0x2a, 0x1b, 0x0b, 0x1b, 0x0b, 0x1b, 0x0b, 0x15, 0x2e, - 0x15, 0x2e, 0x15, 0x2e, 0x15, 0x2e, 0x15, 0x2e, 0x15, 0x2e, 0x10, 0x0b, - 0x26, 0x16, 0x26, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x30, 0x0b, 0x26, - 0x11, 0x01, 0x16, 0x22, 0x15, 0x1b, 0x2a, 0x01, 0x01, 0x24, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x26, 0x14, 0x15, 0x2d, 0x0c, 0x15, - 0x0d, 0x15, 0x16, 0x26, 0x22, 0x19, 0x17, 0x01, 0x12, 0x15, 0x22, 0x19, - 0x15, 0x19, 0x1c, 0x19, 0x11, 0x22, 0x15, 0x13, 0x20, 0x1b, 0x26, 0x19, - 0x10, 0x19, 0x22, 0x19, 0x26, 0x0b, 0x16, 0x2e, 0x16, 0x12, 0x0b, 0x0c, - 0x16, 0x15, 0x16, 0x16, 0x2e, 0x17, 0x16, 0x0a, 0x2d, 0x12, 0x18, 0x18, - 0x15, 0x18, 0x13, 0x18, 0x18, 0x01, 0x12, 0x19, 0x13, 0x13, 0x18, 0x16, - 0x12, 0x15, 0x12, 0x18, 0x01, 0x0e, 0x19, 0x14, 0x1b, 0x19, 0x19, 0x15, - 0x28, 0x19, 0x0e, 0x15, 0x30, 0x15, 0x26, 0x13, 0x22, 0x19, 0x1f, 0x01, - 0x18, 0x12, 0x19, 0x19, 0x15, 0x10, 0x1c, 0x15, 0x22, 0x15, 0x13, 0x14, - 0x1b, 0x30, 0x19, 0x10, 0x15, 0x14, 0x19, 0x19, 0x17, 0x10, 0x19, 0x16, - 0x24, 0x16, 0x11, 0x14, 0x19, 0x14, 0x16, 0x15, 0x19, 0x1a, 0x19, 0x19, - 0x0a, 0x16, 0x13, 0x19, 0x15, 0x12, 0x0b, 0x1c, 0x19, 0x16, 0x19, 0x1a, - 0x16, 0x12, 0x19, 0x19, 0x17, 0x18, 0x19, 0x11, 0x19, 0x11, 0x15, 0x2e, - 0x14, 0x1c, 0x2a, 0x0c, 0x0c, 0x0c, 0x18, 0x18, 0x2e, 0x0a, 0x16, 0x12, - 0x17, 0x01, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x26, 0x16, 0x01, 0x01, - 0x01, 0x01, 0x15, 0x15, 0x19, 0x15, 0x15, 0x15, 0x19, 0x19, 0x19, 0x19, - 0x19, 0x14, 0x2b, 0x18, 0x19, 0x19, 0x0c, 0x01, 0x19, 0x0b, 0x0b, 0x11, - 0x0b, 0x01, 0x01, 0x2a, 0x19, 0x22, 0x01, 0x0c, 0x0c, 0x0c, 0x0c, 0x26, - 0x17, 0x1e, 0x2b, 0x01, 0x01, 0x17, 0x17, 0x0b, 0x0b, 0x0b, 0x0b, 0x19, - 0x14, 0x14, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x11, 0x11, 0x11, 0x11, 0x11, - 0x11, 0x11, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x2e, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x0c, 0x15, 0x11, 0x16, 0x18, 0x1c, 0x18, - 0x26, 0x11, 0x01, 0x01, 0x01, 0x14, 0x14, 0x22, 0x15, 0x19, 0x1c, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x19, 0x15, 0x19, 0x1d, 0x17, 0x20, 0x26, - 0x01, 0x01, 0x1c, 0x18, 0x18, 0x16, 0x19, 0x19, 0x17, 0x14, 0x01, 0x1a, - 0x19, 0x13, 0x22, 0x15, 0x18, 0x16, 0x18, 0x16, 0x18, 0x01, 0x14, 0x15, - 0x19, 0x01, 0x1d, 0x18, 0x14, 0x1c, 0x0d, 0x24, 0x01, 0x01, 0x01, 0x2e, - 0x01, 0x16, 0x19, 0x01, 0x17, 0x13, 0x0b, 0x12, 0x14, 0x15, 0x19, 0x19, - 0x19, 0x12, 0x1a, 0x15, 0x01, 0x15, 0x19, 0x15, 0x0a, 0x0b, 0x18, 0x18, - 0x19, 0x19, 0x19, 0x2e, 0x19, 0x12, 0x13, 0x14, 0x1c, 0x1b, 0x19, 0x26, - 0x19, 0x26, 0x19, 0x19, 0x19, 0x2a, 0x15, 0x13, 0x16, 0x14, 0x12, 0x19, - 0x18, 0x0a, 0x16, 0x0a, 0x16, 0x19, 0x18, 0x19, 0x20, 0x18, 0x18, 0x14, - 0x15, 0x19, 0x18, 0x19, 0x14, 0x12, 0x15, 0x15, 0x19, 0x26, 0x11, 0x26, - 0x11, 0x01, 0x16, 0x01, 0x15, 0x15, 0x15, 0x15, 0x15, 0x18, 0x19, 0x12, - 0x1a, 0x12, 0x11, 0x19, 0x19, 0x19, 0x19, 0x22, 0x15, 0x22, 0x15, 0x22, - 0x15, 0x16, 0x11, 0x30, 0x16, 0x30, 0x16, 0x30, 0x16, 0x14, 0x12, 0x19, - 0x14, 0x10, 0x18, 0x12, 0x14, 0x16, 0x01, 0x10, 0x1a, 0x13, 0x0b, 0x17, - 0x15, 0x18, 0x18, 0x19, 0x16, 0x17, 0x18, 0x27, 0x19, 0x15, 0x19, 0x13, - 0x17, 0x12, 0x1a, 0x10, 0x16, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, - 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, - 0x11, 0x26, 0x11, 0x26, 0x11, 0x01, 0x15, 0x01, 0x15, 0x01, 0x15, 0x01, - 0x15, 0x01, 0x15, 0x01, 0x15, 0x01, 0x15, 0x01, 0x15, 0x19, 0x0c, 0x19, - 0x0c, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, - 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, 0x15, 0x22, - 0x15, 0x15, 0x2e, 0x15, 0x2e, 0x19, 0x1c, 0x19, 0x1c, 0x19, 0x1c, 0x19, - 0x1c, 0x19, 0x1c, 0x26, 0x16, 0x26, 0x16, 0x26, 0x16, 0x0b, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x03, 0x84, 0x06, 0x07, 0x04, 0x00, - 0x03, 0x02, 0x02, 0x02, 0x04, 0x03, 0x05, 0x04, 0x01, 0x02, 0x02, 0x03, - 0x03, 0x02, 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x03, 0x03, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x05, 0x04, 0x04, - 0x04, 0x04, 0x03, 0x03, 0x04, 0x04, 0x02, 0x02, 0x03, 0x03, 0x05, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x04, 0x04, 0x05, 0x03, 0x03, 0x03, - 0x02, 0x02, 0x02, 0x03, 0x02, 0x03, 0x04, 0x04, 0x03, 0x04, 0x03, 0x02, - 0x03, 0x04, 0x02, 0x02, 0x03, 0x02, 0x05, 0x04, 0x04, 0x04, 0x04, 0x02, - 0x03, 0x02, 0x04, 0x03, 0x04, 0x04, 0x03, 0x03, 0x02, 0x03, 0x02, 0x03, - 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x05, 0x02, 0x03, - 0x03, 0x02, 0x05, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x04, 0x04, 0x02, - 0x01, 0x03, 0x02, 0x03, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x05, 0x04, 0x03, 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x03, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x03, - 0x03, 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x03, 0x03, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, - 0x02, 0x02, 0x04, 0x04, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, - 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x05, - 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x03, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x04, 0x03, 0x03, - 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x04, 0x03, 0x05, - 0x05, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x01, - 0x03, 0x03, 0x03, 0x03, 0x04, 0x02, 0x04, 0x05, 0x03, 0x05, 0x04, 0x05, - 0x02, 0x04, 0x04, 0x03, 0x04, 0x03, 0x03, 0x04, 0x04, 0x02, 0x03, 0x04, - 0x05, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x06, 0x03, 0x06, - 0x04, 0x02, 0x03, 0x04, 0x03, 0x04, 0x02, 0x04, 0x04, 0x04, 0x03, 0x04, - 0x03, 0x03, 0x04, 0x04, 0x02, 0x03, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, - 0x04, 0x03, 0x04, 0x03, 0x04, 0x05, 0x04, 0x05, 0x06, 0x02, 0x04, 0x04, - 0x04, 0x06, 0x03, 0x05, 0x03, 0x04, 0x03, 0x02, 0x02, 0x02, 0x06, 0x06, - 0x05, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x05, 0x03, - 0x04, 0x04, 0x03, 0x04, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, - 0x06, 0x03, 0x04, 0x04, 0x06, 0x06, 0x05, 0x06, 0x04, 0x04, 0x06, 0x04, - 0x04, 0x04, 0x04, 0x02, 0x03, 0x03, 0x04, 0x03, 0x04, 0x04, 0x03, 0x04, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x05, 0x04, 0x04, 0x04, - 0x06, 0x06, 0x04, 0x05, 0x03, 0x03, 0x06, 0x04, 0x03, 0x04, 0x02, 0x03, - 0x03, 0x02, 0x02, 0x02, 0x05, 0x05, 0x04, 0x03, 0x03, 0x04, 0x03, 0x02, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x03, 0x03, 0x03, 0x06, 0x06, 0x02, - 0x01, 0x01, 0x02, 0x01, 0x02, 0x02, 0x03, 0x03, 0x03, 0x02, 0x06, 0x07, - 0x01, 0x02, 0x02, 0x02, 0x03, 0x01, 0x02, 0x03, 0x03, 0x05, 0x03, 0x05, - 0x03, 0x06, 0x05, 0x04, 0x04, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, - 0x04, 0x03, 0x03, 0x04, 0x02, 0x03, 0x03, 0x03, 0x03, 0x04, 0x04, 0x04, - 0x03, 0x02, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x06, 0x03, 0x06, 0x02, 0x02, 0x01, 0x03, 0x02, 0x01, 0x01, 0x00, - 0x00, 0x06, 0x06, 0x02, 0x01, 0x04, 0x03, 0x06, 0x05, 0x05, 0x04, 0x04, - 0x05, 0x02, 0x02, 0x06, 0x06, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x03, 0x04, 0x03, 0x04, 0x06, 0x05, 0x04, 0x04, 0x05, 0x04, - 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x06, 0x05, 0x03, 0x03, 0x06, 0x05, - 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x07, 0x06, 0x05, 0x04, 0x06, 0x05, - 0x06, 0x05, 0x04, 0x03, 0x04, 0x03, 0x03, 0x03, 0x03, 0x06, 0x06, 0x04, - 0x04, 0x03, 0x03, 0x04, 0x04, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x03, - 0x03, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x06, 0x05, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x04, 0x03, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, - 0x04, 0x05, 0x04, 0x02, 0x05, 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x05, 0x05, 0x02, 0x04, 0x04, 0x04, 0x04, 0x05, - 0x05, 0x03, 0x03, 0x04, 0x03, 0x04, 0x03, 0x05, 0x04, 0x03, 0x03, 0x03, - 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x04, 0x03, 0x02, 0x06, - 0x05, 0x03, 0x02, 0x04, 0x03, 0x03, 0x04, 0x03, 0x04, 0x06, 0x06, 0x05, - 0x05, 0x04, 0x03, 0x06, 0x05, 0x06, 0x06, 0x04, 0x04, 0x04, 0x05, 0x03, - 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x07, 0x09, 0x04, 0x00, - 0x04, 0x02, 0x02, 0x03, 0x05, 0x04, 0x06, 0x05, 0x02, 0x02, 0x02, 0x04, - 0x04, 0x02, 0x02, 0x02, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x02, 0x02, 0x04, 0x04, 0x04, 0x03, 0x06, 0x05, 0x04, - 0x04, 0x05, 0x04, 0x04, 0x05, 0x05, 0x04, 0x02, 0x04, 0x03, 0x06, 0x05, - 0x05, 0x04, 0x05, 0x04, 0x04, 0x04, 0x05, 0x05, 0x06, 0x04, 0x04, 0x04, - 0x02, 0x03, 0x02, 0x04, 0x03, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x03, - 0x04, 0x04, 0x02, 0x02, 0x04, 0x02, 0x06, 0x04, 0x04, 0x04, 0x04, 0x03, - 0x03, 0x02, 0x04, 0x04, 0x06, 0x04, 0x04, 0x03, 0x02, 0x04, 0x02, 0x04, - 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x06, 0x02, 0x03, - 0x04, 0x02, 0x06, 0x04, 0x03, 0x04, 0x03, 0x03, 0x04, 0x04, 0x05, 0x02, - 0x01, 0x03, 0x02, 0x03, 0x05, 0x05, 0x05, 0x03, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x06, 0x03, - 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x03, 0x05, 0x04, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x05, 0x04, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, - 0x04, 0x02, 0x05, 0x04, 0x02, 0x02, 0x04, 0x04, 0x04, 0x03, 0x02, 0x03, - 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x05, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x06, 0x06, - 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x03, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x06, 0x06, 0x04, 0x04, - 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x02, 0x04, 0x05, 0x04, 0x06, - 0x06, 0x05, 0x04, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x01, - 0x04, 0x04, 0x04, 0x04, 0x05, 0x02, 0x04, 0x05, 0x05, 0x05, 0x05, 0x06, - 0x02, 0x05, 0x04, 0x03, 0x05, 0x04, 0x04, 0x05, 0x05, 0x04, 0x04, 0x05, - 0x06, 0x05, 0x04, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x06, 0x04, 0x06, - 0x05, 0x04, 0x04, 0x04, 0x03, 0x04, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x03, 0x03, 0x04, 0x04, 0x02, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, - 0x04, 0x03, 0x04, 0x03, 0x04, 0x06, 0x04, 0x06, 0x06, 0x02, 0x04, 0x04, - 0x04, 0x06, 0x04, 0x05, 0x03, 0x04, 0x04, 0x04, 0x04, 0x02, 0x07, 0x07, - 0x05, 0x04, 0x04, 0x05, 0x05, 0x04, 0x04, 0x03, 0x05, 0x04, 0x06, 0x04, - 0x05, 0x05, 0x04, 0x05, 0x06, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, - 0x06, 0x04, 0x05, 0x05, 0x08, 0x08, 0x05, 0x06, 0x04, 0x04, 0x07, 0x04, - 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x06, 0x03, 0x04, 0x04, 0x03, 0x04, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x04, 0x06, 0x04, 0x04, 0x04, - 0x06, 0x06, 0x05, 0x06, 0x04, 0x03, 0x06, 0x04, 0x04, 0x04, 0x03, 0x03, - 0x03, 0x02, 0x02, 0x02, 0x06, 0x06, 0x04, 0x03, 0x04, 0x04, 0x03, 0x03, - 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x04, 0x04, 0x04, 0x07, 0x07, 0x03, - 0x01, 0x01, 0x02, 0x01, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x06, 0x08, - 0x02, 0x03, 0x02, 0x02, 0x03, 0x01, 0x03, 0x04, 0x04, 0x05, 0x04, 0x06, - 0x04, 0x07, 0x05, 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, - 0x04, 0x04, 0x04, 0x05, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x02, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, - 0x04, 0x07, 0x04, 0x07, 0x02, 0x02, 0x01, 0x04, 0x02, 0x01, 0x01, 0x00, - 0x00, 0x07, 0x07, 0x02, 0x01, 0x04, 0x04, 0x06, 0x06, 0x06, 0x05, 0x04, - 0x05, 0x02, 0x03, 0x06, 0x06, 0x05, 0x04, 0x05, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x05, 0x04, 0x04, 0x06, 0x06, 0x05, 0x04, 0x06, 0x05, - 0x05, 0x04, 0x06, 0x05, 0x06, 0x04, 0x07, 0x05, 0x04, 0x04, 0x06, 0x06, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x09, 0x07, 0x05, 0x04, 0x06, 0x06, - 0x06, 0x06, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x07, 0x07, 0x05, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x04, 0x04, 0x06, 0x06, 0x04, - 0x03, 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x07, 0x06, 0x06, 0x06, 0x04, 0x03, 0x04, 0x03, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x07, 0x06, 0x06, 0x04, 0x05, 0x04, 0x05, 0x04, 0x06, - 0x05, 0x06, 0x05, 0x04, 0x06, 0x06, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x05, 0x04, 0x06, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x06, - 0x06, 0x04, 0x04, 0x05, 0x04, 0x05, 0x04, 0x06, 0x06, 0x04, 0x03, 0x04, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x04, - 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x04, 0x03, 0x03, 0x06, - 0x06, 0x04, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x06, 0x06, 0x06, - 0x05, 0x04, 0x04, 0x07, 0x06, 0x07, 0x06, 0x05, 0x04, 0x05, 0x05, 0x04, - 0x03, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x02, 0x05, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x08, 0x0a, 0x05, 0x00, - 0x04, 0x02, 0x02, 0x03, 0x05, 0x04, 0x07, 0x06, 0x02, 0x02, 0x02, 0x04, - 0x04, 0x02, 0x03, 0x02, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x07, 0x06, 0x05, - 0x05, 0x05, 0x04, 0x04, 0x06, 0x06, 0x04, 0x02, 0x05, 0x04, 0x08, 0x06, - 0x06, 0x05, 0x06, 0x05, 0x04, 0x04, 0x06, 0x06, 0x08, 0x05, 0x04, 0x05, - 0x02, 0x03, 0x02, 0x04, 0x03, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x03, - 0x04, 0x05, 0x02, 0x02, 0x04, 0x02, 0x08, 0x05, 0x05, 0x05, 0x05, 0x03, - 0x04, 0x03, 0x05, 0x04, 0x06, 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, - 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x07, 0x03, 0x04, - 0x04, 0x03, 0x07, 0x04, 0x03, 0x04, 0x04, 0x04, 0x05, 0x05, 0x05, 0x02, - 0x02, 0x04, 0x03, 0x04, 0x06, 0x06, 0x06, 0x04, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x07, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x04, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x04, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x07, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x04, - 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, - 0x06, 0x05, 0x06, 0x05, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, - 0x04, 0x02, 0x05, 0x04, 0x02, 0x02, 0x05, 0x04, 0x04, 0x04, 0x02, 0x04, - 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x07, 0x07, - 0x05, 0x03, 0x05, 0x03, 0x05, 0x03, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x08, 0x06, 0x04, 0x04, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x02, 0x04, 0x06, 0x04, 0x07, - 0x07, 0x06, 0x05, 0x04, 0x04, 0x05, 0x05, 0x04, 0x05, 0x02, 0x05, 0x01, - 0x05, 0x05, 0x05, 0x05, 0x06, 0x02, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x02, 0x06, 0x05, 0x04, 0x06, 0x04, 0x05, 0x06, 0x06, 0x04, 0x05, 0x06, - 0x08, 0x06, 0x04, 0x06, 0x06, 0x05, 0x05, 0x04, 0x04, 0x06, 0x05, 0x06, - 0x06, 0x04, 0x04, 0x05, 0x04, 0x05, 0x02, 0x05, 0x05, 0x05, 0x04, 0x05, - 0x04, 0x04, 0x05, 0x05, 0x02, 0x04, 0x04, 0x05, 0x04, 0x04, 0x05, 0x05, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x06, 0x04, 0x06, 0x06, 0x02, 0x05, 0x05, - 0x05, 0x06, 0x04, 0x06, 0x04, 0x05, 0x04, 0x04, 0x04, 0x02, 0x08, 0x08, - 0x06, 0x05, 0x05, 0x06, 0x06, 0x05, 0x05, 0x04, 0x06, 0x04, 0x08, 0x04, - 0x06, 0x06, 0x05, 0x06, 0x08, 0x06, 0x06, 0x06, 0x05, 0x05, 0x04, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x08, 0x08, 0x06, 0x07, 0x05, 0x05, 0x08, 0x05, - 0x04, 0x05, 0x05, 0x03, 0x04, 0x04, 0x06, 0x04, 0x05, 0x05, 0x04, 0x05, - 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x06, 0x04, 0x05, 0x05, - 0x08, 0x08, 0x05, 0x06, 0x04, 0x04, 0x07, 0x04, 0x04, 0x05, 0x03, 0x04, - 0x04, 0x02, 0x02, 0x02, 0x07, 0x07, 0x05, 0x04, 0x04, 0x05, 0x04, 0x03, - 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x04, 0x04, 0x04, 0x08, 0x08, 0x03, - 0x01, 0x01, 0x02, 0x01, 0x03, 0x03, 0x04, 0x04, 0x04, 0x03, 0x06, 0x09, - 0x02, 0x03, 0x02, 0x02, 0x04, 0x01, 0x03, 0x04, 0x04, 0x06, 0x04, 0x06, - 0x04, 0x08, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, - 0x05, 0x04, 0x04, 0x06, 0x03, 0x04, 0x04, 0x04, 0x04, 0x05, 0x05, 0x05, - 0x05, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x08, 0x04, 0x08, 0x03, 0x02, 0x01, 0x04, 0x02, 0x02, 0x01, 0x00, - 0x00, 0x08, 0x08, 0x02, 0x01, 0x05, 0x04, 0x07, 0x08, 0x08, 0x06, 0x04, - 0x06, 0x03, 0x03, 0x07, 0x07, 0x06, 0x05, 0x06, 0x05, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x06, 0x04, 0x05, 0x08, 0x06, 0x05, 0x05, 0x07, 0x06, - 0x06, 0x04, 0x07, 0x05, 0x06, 0x06, 0x08, 0x07, 0x04, 0x04, 0x06, 0x06, - 0x06, 0x05, 0x06, 0x04, 0x06, 0x04, 0x0a, 0x08, 0x06, 0x05, 0x08, 0x06, - 0x08, 0x06, 0x05, 0x04, 0x05, 0x04, 0x05, 0x05, 0x05, 0x08, 0x08, 0x06, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x03, 0x05, 0x04, 0x08, 0x06, 0x04, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x08, 0x06, 0x07, 0x06, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x05, 0x04, 0x07, 0x07, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x07, - 0x05, 0x07, 0x05, 0x04, 0x08, 0x06, 0x05, 0x04, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x05, 0x05, 0x08, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x07, - 0x07, 0x04, 0x04, 0x06, 0x04, 0x06, 0x04, 0x08, 0x06, 0x04, 0x04, 0x04, - 0x04, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, - 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x05, 0x04, 0x03, 0x07, - 0x06, 0x04, 0x03, 0x05, 0x04, 0x05, 0x04, 0x05, 0x05, 0x07, 0x08, 0x06, - 0x06, 0x04, 0x04, 0x08, 0x07, 0x09, 0x07, 0x06, 0x05, 0x05, 0x05, 0x04, - 0x04, 0x06, 0x05, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, - 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, - 0x04, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x02, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x05, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x09, 0x0c, 0x05, 0x00, - 0x05, 0x02, 0x02, 0x04, 0x06, 0x05, 0x08, 0x06, 0x02, 0x03, 0x03, 0x06, - 0x05, 0x02, 0x03, 0x02, 0x03, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x02, 0x02, 0x05, 0x05, 0x05, 0x04, 0x08, 0x06, 0x05, - 0x05, 0x06, 0x05, 0x05, 0x06, 0x06, 0x04, 0x03, 0x05, 0x04, 0x08, 0x06, - 0x07, 0x05, 0x07, 0x05, 0x05, 0x04, 0x06, 0x06, 0x08, 0x06, 0x06, 0x05, - 0x03, 0x03, 0x03, 0x05, 0x04, 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x04, - 0x05, 0x05, 0x02, 0x02, 0x05, 0x02, 0x08, 0x05, 0x05, 0x05, 0x05, 0x04, - 0x04, 0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x04, 0x03, 0x05, 0x03, 0x05, - 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x07, 0x04, 0x05, - 0x05, 0x03, 0x07, 0x05, 0x04, 0x05, 0x04, 0x04, 0x05, 0x05, 0x06, 0x02, - 0x02, 0x04, 0x04, 0x05, 0x07, 0x07, 0x08, 0x04, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, - 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0x07, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x08, 0x04, - 0x05, 0x05, 0x05, 0x05, 0x02, 0x02, 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, - 0x04, 0x02, 0x06, 0x04, 0x03, 0x02, 0x05, 0x05, 0x05, 0x04, 0x02, 0x04, - 0x02, 0x04, 0x02, 0x04, 0x03, 0x04, 0x02, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x06, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x09, 0x08, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x08, 0x06, 0x06, 0x05, - 0x06, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x02, 0x05, 0x06, 0x05, 0x08, - 0x08, 0x07, 0x05, 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, 0x02, 0x05, 0x02, - 0x05, 0x05, 0x05, 0x05, 0x06, 0x02, 0x06, 0x07, 0x05, 0x08, 0x07, 0x08, - 0x02, 0x06, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x07, 0x04, 0x05, 0x06, - 0x08, 0x06, 0x05, 0x07, 0x06, 0x05, 0x05, 0x04, 0x06, 0x06, 0x06, 0x06, - 0x07, 0x04, 0x06, 0x05, 0x04, 0x05, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x04, 0x04, 0x05, 0x05, 0x02, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x06, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x06, 0x06, 0x06, 0x06, 0x02, 0x05, 0x05, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x04, 0x04, 0x03, 0x09, 0x09, - 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x08, 0x05, - 0x06, 0x06, 0x05, 0x07, 0x08, 0x06, 0x07, 0x06, 0x05, 0x05, 0x04, 0x06, - 0x06, 0x06, 0x06, 0x06, 0x08, 0x08, 0x07, 0x07, 0x05, 0x05, 0x09, 0x05, - 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x06, 0x04, 0x05, 0x05, 0x05, 0x05, - 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x05, 0x06, 0x05, 0x05, 0x05, - 0x08, 0x08, 0x06, 0x07, 0x05, 0x04, 0x07, 0x05, 0x05, 0x05, 0x04, 0x04, - 0x04, 0x02, 0x02, 0x02, 0x08, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, - 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x06, 0x05, 0x05, 0x09, 0x09, 0x04, - 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x06, 0x0b, - 0x02, 0x04, 0x03, 0x03, 0x04, 0x01, 0x04, 0x05, 0x05, 0x08, 0x05, 0x07, - 0x05, 0x09, 0x08, 0x07, 0x06, 0x08, 0x08, 0x08, 0x08, 0x05, 0x06, 0x06, - 0x06, 0x05, 0x05, 0x07, 0x03, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, - 0x04, 0x02, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x05, 0x09, 0x05, 0x09, 0x03, 0x02, 0x02, 0x05, 0x02, 0x02, 0x01, 0x00, - 0x00, 0x09, 0x09, 0x02, 0x02, 0x06, 0x06, 0x06, 0x08, 0x08, 0x06, 0x05, - 0x07, 0x03, 0x04, 0x09, 0x09, 0x07, 0x05, 0x06, 0x05, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x05, 0x06, 0x05, 0x05, 0x08, 0x07, 0x06, 0x05, 0x08, 0x06, - 0x06, 0x06, 0x08, 0x07, 0x06, 0x06, 0x08, 0x07, 0x05, 0x04, 0x06, 0x06, - 0x07, 0x05, 0x06, 0x05, 0x06, 0x05, 0x0c, 0x09, 0x07, 0x05, 0x08, 0x07, - 0x08, 0x07, 0x05, 0x04, 0x05, 0x05, 0x05, 0x05, 0x05, 0x09, 0x09, 0x06, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x08, 0x06, 0x05, - 0x04, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x06, - 0x05, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x04, 0x04, 0x06, 0x04, 0x06, - 0x04, 0x06, 0x05, 0x08, 0x07, 0x07, 0x06, 0x06, 0x05, 0x06, 0x05, 0x08, - 0x06, 0x08, 0x06, 0x04, 0x08, 0x06, 0x06, 0x05, 0x07, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x08, 0x06, 0x04, 0x06, 0x05, 0x06, 0x05, 0x08, - 0x08, 0x05, 0x05, 0x07, 0x05, 0x07, 0x05, 0x08, 0x06, 0x05, 0x04, 0x05, - 0x04, 0x06, 0x05, 0x06, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x05, - 0x04, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x04, 0x07, - 0x07, 0x05, 0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x08, 0x08, 0x08, - 0x07, 0x05, 0x05, 0x0a, 0x07, 0x09, 0x08, 0x06, 0x05, 0x06, 0x05, 0x05, - 0x04, 0x07, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x02, 0x04, 0x02, 0x07, - 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, - 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x0a, 0x0c, 0x06, 0x00, - 0x05, 0x03, 0x02, 0x04, 0x06, 0x06, 0x08, 0x07, 0x02, 0x03, 0x03, 0x06, - 0x05, 0x02, 0x03, 0x02, 0x04, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x02, 0x02, 0x05, 0x05, 0x05, 0x04, 0x08, 0x06, 0x06, - 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x04, 0x03, 0x05, 0x04, 0x08, 0x06, - 0x07, 0x05, 0x07, 0x05, 0x05, 0x04, 0x06, 0x06, 0x08, 0x06, 0x06, 0x05, - 0x03, 0x04, 0x03, 0x05, 0x04, 0x06, 0x05, 0x05, 0x04, 0x05, 0x05, 0x04, - 0x05, 0x05, 0x02, 0x02, 0x05, 0x02, 0x08, 0x05, 0x05, 0x05, 0x05, 0x04, - 0x04, 0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x04, 0x04, 0x05, 0x04, 0x05, - 0x03, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x08, 0x04, 0x05, - 0x05, 0x03, 0x08, 0x05, 0x04, 0x05, 0x04, 0x04, 0x06, 0x05, 0x06, 0x02, - 0x02, 0x04, 0x04, 0x05, 0x07, 0x07, 0x07, 0x04, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x09, 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, - 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0x07, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x08, 0x04, - 0x05, 0x05, 0x05, 0x05, 0x02, 0x02, 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, - 0x06, 0x04, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, 0x02, - 0x04, 0x02, 0x06, 0x05, 0x03, 0x02, 0x05, 0x05, 0x05, 0x04, 0x02, 0x04, - 0x02, 0x04, 0x02, 0x04, 0x04, 0x04, 0x02, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x07, 0x06, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x09, 0x08, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x08, 0x06, 0x06, 0x05, - 0x06, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x02, 0x05, 0x06, 0x05, 0x09, - 0x08, 0x07, 0x05, 0x05, 0x04, 0x06, 0x06, 0x06, 0x06, 0x03, 0x06, 0x02, - 0x06, 0x06, 0x06, 0x06, 0x06, 0x02, 0x06, 0x07, 0x05, 0x08, 0x07, 0x08, - 0x02, 0x06, 0x06, 0x05, 0x06, 0x05, 0x05, 0x06, 0x07, 0x04, 0x05, 0x06, - 0x08, 0x06, 0x05, 0x07, 0x06, 0x05, 0x05, 0x04, 0x06, 0x08, 0x06, 0x08, - 0x07, 0x04, 0x06, 0x05, 0x04, 0x05, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x04, 0x04, 0x05, 0x05, 0x02, 0x05, 0x05, 0x05, 0x05, 0x04, 0x05, 0x06, - 0x05, 0x04, 0x05, 0x04, 0x05, 0x06, 0x06, 0x06, 0x06, 0x02, 0x05, 0x05, - 0x05, 0x06, 0x05, 0x07, 0x05, 0x06, 0x05, 0x04, 0x04, 0x03, 0x09, 0x09, - 0x07, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x05, 0x08, 0x05, - 0x06, 0x06, 0x05, 0x07, 0x08, 0x06, 0x07, 0x06, 0x05, 0x06, 0x04, 0x06, - 0x08, 0x06, 0x06, 0x06, 0x0a, 0x0a, 0x07, 0x08, 0x06, 0x06, 0x0a, 0x05, - 0x05, 0x05, 0x05, 0x04, 0x05, 0x05, 0x06, 0x04, 0x05, 0x05, 0x05, 0x05, - 0x06, 0x05, 0x05, 0x05, 0x05, 0x04, 0x04, 0x05, 0x06, 0x05, 0x05, 0x05, - 0x08, 0x08, 0x07, 0x07, 0x05, 0x04, 0x08, 0x05, 0x05, 0x05, 0x04, 0x04, - 0x04, 0x02, 0x02, 0x02, 0x08, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, - 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x06, 0x05, 0x05, 0x0a, 0x0a, 0x04, - 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x09, 0x0c, - 0x02, 0x04, 0x03, 0x03, 0x04, 0x01, 0x04, 0x05, 0x05, 0x08, 0x05, 0x08, - 0x05, 0x09, 0x07, 0x07, 0x06, 0x08, 0x08, 0x08, 0x08, 0x05, 0x06, 0x07, - 0x06, 0x06, 0x05, 0x07, 0x03, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, - 0x06, 0x02, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x05, 0x0a, 0x05, 0x0a, 0x03, 0x03, 0x02, 0x06, 0x03, 0x02, 0x01, 0x00, - 0x00, 0x0a, 0x0a, 0x02, 0x02, 0x06, 0x06, 0x06, 0x08, 0x08, 0x06, 0x05, - 0x08, 0x03, 0x04, 0x09, 0x09, 0x07, 0x05, 0x06, 0x05, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x05, 0x06, 0x05, 0x05, 0x0a, 0x07, 0x06, 0x06, 0x09, 0x07, - 0x06, 0x06, 0x09, 0x08, 0x08, 0x06, 0x0a, 0x07, 0x05, 0x04, 0x08, 0x06, - 0x07, 0x05, 0x06, 0x05, 0x06, 0x05, 0x0c, 0x0a, 0x07, 0x05, 0x0a, 0x08, - 0x0a, 0x07, 0x06, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x0a, 0x0a, 0x06, - 0x05, 0x06, 0x06, 0x05, 0x05, 0x05, 0x04, 0x06, 0x05, 0x08, 0x06, 0x05, - 0x04, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x07, - 0x06, 0x0a, 0x08, 0x07, 0x06, 0x06, 0x04, 0x04, 0x04, 0x06, 0x04, 0x06, - 0x04, 0x06, 0x05, 0x08, 0x07, 0x07, 0x06, 0x06, 0x05, 0x06, 0x05, 0x08, - 0x06, 0x08, 0x06, 0x04, 0x08, 0x06, 0x06, 0x05, 0x07, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x06, 0x05, 0x08, 0x06, 0x04, 0x06, 0x05, 0x06, 0x05, 0x09, - 0x08, 0x05, 0x05, 0x07, 0x05, 0x07, 0x05, 0x08, 0x06, 0x05, 0x04, 0x05, - 0x04, 0x06, 0x05, 0x06, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x06, - 0x04, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x04, 0x08, - 0x07, 0x05, 0x04, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x08, 0x08, 0x08, - 0x07, 0x05, 0x05, 0x0a, 0x08, 0x09, 0x08, 0x07, 0x05, 0x07, 0x05, 0x05, - 0x04, 0x07, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x02, 0x04, 0x02, 0x07, - 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, - 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, - 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x0b, 0x0e, 0x07, 0x00, - 0x06, 0x03, 0x03, 0x05, 0x07, 0x06, 0x09, 0x08, 0x03, 0x03, 0x03, 0x06, - 0x06, 0x03, 0x04, 0x03, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x06, 0x03, 0x03, 0x06, 0x06, 0x06, 0x05, 0x0a, 0x07, 0x07, - 0x07, 0x08, 0x06, 0x05, 0x08, 0x08, 0x03, 0x03, 0x07, 0x05, 0x0a, 0x08, - 0x09, 0x06, 0x09, 0x07, 0x06, 0x05, 0x08, 0x07, 0x09, 0x06, 0x07, 0x07, - 0x03, 0x04, 0x03, 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x04, - 0x06, 0x06, 0x02, 0x02, 0x05, 0x02, 0x0a, 0x06, 0x06, 0x06, 0x06, 0x04, - 0x05, 0x04, 0x06, 0x06, 0x08, 0x06, 0x06, 0x05, 0x04, 0x05, 0x04, 0x06, - 0x03, 0x03, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x09, 0x04, 0x05, - 0x06, 0x04, 0x09, 0x06, 0x05, 0x06, 0x04, 0x04, 0x06, 0x06, 0x07, 0x03, - 0x02, 0x04, 0x04, 0x05, 0x08, 0x08, 0x08, 0x05, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x09, 0x07, 0x06, 0x06, 0x06, 0x06, 0x03, 0x03, 0x03, 0x03, - 0x08, 0x08, 0x09, 0x09, 0x09, 0x09, 0x09, 0x06, 0x09, 0x08, 0x08, 0x08, - 0x08, 0x07, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x0a, 0x05, - 0x06, 0x06, 0x06, 0x06, 0x02, 0x02, 0x02, 0x02, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, - 0x07, 0x05, 0x08, 0x06, 0x08, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x06, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x08, 0x06, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, - 0x03, 0x02, 0x07, 0x05, 0x03, 0x02, 0x07, 0x05, 0x05, 0x05, 0x02, 0x05, - 0x02, 0x05, 0x02, 0x05, 0x03, 0x05, 0x02, 0x08, 0x06, 0x08, 0x06, 0x08, - 0x06, 0x08, 0x08, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x0a, 0x0a, - 0x07, 0x04, 0x07, 0x04, 0x07, 0x04, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x09, 0x08, 0x07, 0x06, - 0x07, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x02, 0x06, 0x07, 0x06, 0x09, - 0x0a, 0x09, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x03, 0x06, 0x02, - 0x06, 0x06, 0x06, 0x06, 0x07, 0x03, 0x07, 0x09, 0x04, 0x09, 0x08, 0x09, - 0x04, 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x08, 0x09, 0x03, 0x07, 0x07, - 0x0a, 0x08, 0x05, 0x09, 0x08, 0x06, 0x06, 0x05, 0x07, 0x09, 0x06, 0x09, - 0x09, 0x03, 0x07, 0x06, 0x05, 0x06, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x05, 0x05, 0x06, 0x06, 0x04, 0x05, 0x06, 0x06, 0x06, 0x05, 0x06, 0x08, - 0x06, 0x05, 0x06, 0x05, 0x06, 0x08, 0x06, 0x08, 0x08, 0x04, 0x06, 0x06, - 0x06, 0x08, 0x06, 0x08, 0x06, 0x07, 0x06, 0x03, 0x03, 0x03, 0x0a, 0x0a, - 0x08, 0x07, 0x06, 0x08, 0x07, 0x07, 0x07, 0x06, 0x07, 0x06, 0x09, 0x06, - 0x08, 0x08, 0x07, 0x07, 0x0a, 0x08, 0x09, 0x08, 0x06, 0x07, 0x05, 0x06, - 0x09, 0x06, 0x08, 0x08, 0x0b, 0x0b, 0x08, 0x09, 0x07, 0x07, 0x0c, 0x07, - 0x06, 0x06, 0x06, 0x04, 0x07, 0x06, 0x08, 0x05, 0x06, 0x06, 0x05, 0x06, - 0x07, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x08, 0x06, 0x06, 0x06, - 0x0a, 0x0a, 0x08, 0x08, 0x06, 0x05, 0x09, 0x06, 0x06, 0x06, 0x04, 0x05, - 0x05, 0x02, 0x02, 0x02, 0x0a, 0x09, 0x06, 0x05, 0x06, 0x06, 0x05, 0x04, - 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x07, 0x06, 0x06, 0x0b, 0x0b, 0x05, - 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x05, 0x05, 0x05, 0x09, 0x0d, - 0x03, 0x05, 0x03, 0x03, 0x06, 0x01, 0x04, 0x06, 0x06, 0x09, 0x06, 0x09, - 0x06, 0x0b, 0x09, 0x09, 0x07, 0x09, 0x09, 0x09, 0x09, 0x06, 0x07, 0x08, - 0x07, 0x06, 0x06, 0x08, 0x04, 0x06, 0x06, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x06, 0x02, 0x06, 0x06, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x06, 0x0b, 0x06, 0x0b, 0x04, 0x03, 0x02, 0x06, 0x03, 0x02, 0x01, 0x00, - 0x00, 0x0b, 0x0b, 0x02, 0x02, 0x07, 0x07, 0x08, 0x0a, 0x0a, 0x07, 0x06, - 0x09, 0x04, 0x04, 0x0a, 0x0a, 0x09, 0x06, 0x08, 0x07, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x06, 0x08, 0x06, 0x06, 0x0b, 0x08, 0x07, 0x07, 0x0a, 0x08, - 0x07, 0x06, 0x0a, 0x08, 0x07, 0x08, 0x0a, 0x0a, 0x06, 0x05, 0x09, 0x08, - 0x09, 0x06, 0x08, 0x06, 0x08, 0x06, 0x0e, 0x0b, 0x09, 0x06, 0x0b, 0x09, - 0x0b, 0x08, 0x07, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x0b, 0x0b, 0x08, - 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x04, 0x07, 0x06, 0x09, 0x08, 0x06, - 0x05, 0x07, 0x06, 0x07, 0x05, 0x07, 0x05, 0x07, 0x07, 0x08, 0x06, 0x09, - 0x07, 0x0b, 0x0a, 0x09, 0x07, 0x07, 0x05, 0x05, 0x06, 0x07, 0x06, 0x07, - 0x06, 0x06, 0x06, 0x0a, 0x09, 0x08, 0x07, 0x08, 0x06, 0x08, 0x06, 0x09, - 0x07, 0x09, 0x07, 0x03, 0x09, 0x08, 0x07, 0x06, 0x07, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x08, 0x06, 0x0a, 0x07, 0x03, 0x07, 0x06, 0x07, 0x06, 0x09, - 0x0a, 0x06, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x08, 0x06, 0x05, 0x06, - 0x05, 0x08, 0x06, 0x08, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x07, - 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x08, 0x06, 0x06, 0x04, 0x09, - 0x08, 0x05, 0x04, 0x07, 0x06, 0x06, 0x06, 0x06, 0x06, 0x09, 0x0a, 0x09, - 0x09, 0x06, 0x06, 0x0a, 0x09, 0x0b, 0x09, 0x08, 0x06, 0x08, 0x07, 0x06, - 0x05, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, - 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, - 0x06, 0x07, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x03, 0x02, 0x03, 0x02, 0x09, - 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, - 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x08, - 0x06, 0x08, 0x06, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x0c, 0x0f, 0x07, 0x00, - 0x06, 0x03, 0x03, 0x05, 0x08, 0x07, 0x0a, 0x08, 0x03, 0x04, 0x04, 0x07, - 0x07, 0x03, 0x04, 0x03, 0x04, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x03, 0x03, 0x07, 0x07, 0x07, 0x05, 0x0a, 0x07, 0x07, - 0x07, 0x08, 0x06, 0x06, 0x08, 0x08, 0x04, 0x03, 0x07, 0x06, 0x0b, 0x09, - 0x09, 0x07, 0x09, 0x07, 0x07, 0x07, 0x08, 0x07, 0x0b, 0x07, 0x07, 0x07, - 0x04, 0x04, 0x04, 0x06, 0x05, 0x07, 0x07, 0x07, 0x06, 0x07, 0x07, 0x03, - 0x06, 0x07, 0x03, 0x03, 0x06, 0x03, 0x0b, 0x07, 0x07, 0x07, 0x07, 0x04, - 0x06, 0x04, 0x07, 0x05, 0x09, 0x06, 0x05, 0x06, 0x04, 0x07, 0x04, 0x07, - 0x03, 0x03, 0x07, 0x07, 0x07, 0x07, 0x07, 0x06, 0x07, 0x0a, 0x04, 0x06, - 0x07, 0x04, 0x0a, 0x06, 0x05, 0x07, 0x04, 0x04, 0x07, 0x07, 0x08, 0x03, - 0x02, 0x04, 0x04, 0x06, 0x09, 0x09, 0x09, 0x05, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x0a, 0x07, 0x06, 0x06, 0x06, 0x06, 0x04, 0x04, 0x04, 0x04, - 0x08, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x07, 0x09, 0x08, 0x08, 0x08, - 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0b, 0x06, - 0x07, 0x07, 0x07, 0x07, 0x03, 0x03, 0x03, 0x03, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0x07, 0x05, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, - 0x07, 0x06, 0x08, 0x07, 0x08, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, - 0x06, 0x07, 0x06, 0x07, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x07, 0x08, 0x07, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, 0x04, 0x03, - 0x04, 0x03, 0x07, 0x06, 0x03, 0x03, 0x07, 0x06, 0x06, 0x06, 0x03, 0x06, - 0x03, 0x06, 0x03, 0x06, 0x04, 0x06, 0x03, 0x09, 0x07, 0x09, 0x07, 0x09, - 0x07, 0x08, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x0b, 0x0b, - 0x07, 0x04, 0x07, 0x04, 0x07, 0x04, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, - 0x07, 0x06, 0x07, 0x04, 0x07, 0x04, 0x07, 0x04, 0x08, 0x07, 0x08, 0x07, - 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x0b, 0x09, 0x07, 0x05, - 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x03, 0x07, 0x07, 0x07, 0x0a, - 0x0b, 0x09, 0x07, 0x07, 0x06, 0x07, 0x07, 0x07, 0x07, 0x03, 0x07, 0x02, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x03, 0x07, 0x09, 0x06, 0x09, 0x09, 0x09, - 0x04, 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x08, 0x09, 0x04, 0x07, 0x07, - 0x0b, 0x09, 0x07, 0x09, 0x08, 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x09, - 0x09, 0x04, 0x07, 0x07, 0x06, 0x07, 0x04, 0x07, 0x07, 0x07, 0x05, 0x07, - 0x06, 0x05, 0x07, 0x07, 0x04, 0x06, 0x05, 0x07, 0x06, 0x06, 0x07, 0x08, - 0x07, 0x06, 0x07, 0x05, 0x07, 0x09, 0x06, 0x09, 0x09, 0x04, 0x07, 0x07, - 0x07, 0x09, 0x06, 0x09, 0x06, 0x07, 0x07, 0x04, 0x04, 0x03, 0x0b, 0x0b, - 0x09, 0x07, 0x07, 0x08, 0x07, 0x07, 0x07, 0x06, 0x08, 0x06, 0x09, 0x07, - 0x09, 0x09, 0x07, 0x08, 0x0b, 0x08, 0x09, 0x08, 0x07, 0x07, 0x07, 0x07, - 0x09, 0x07, 0x08, 0x08, 0x0b, 0x0b, 0x08, 0x0a, 0x07, 0x07, 0x0c, 0x07, - 0x07, 0x07, 0x07, 0x05, 0x06, 0x07, 0x09, 0x06, 0x07, 0x07, 0x06, 0x07, - 0x09, 0x07, 0x07, 0x07, 0x07, 0x06, 0x05, 0x05, 0x09, 0x06, 0x07, 0x07, - 0x0b, 0x0b, 0x08, 0x09, 0x07, 0x06, 0x0a, 0x07, 0x07, 0x07, 0x05, 0x06, - 0x06, 0x03, 0x03, 0x03, 0x0b, 0x0b, 0x07, 0x06, 0x05, 0x07, 0x06, 0x05, - 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x07, 0x05, 0x06, 0x0c, 0x0c, 0x05, - 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x04, 0x05, 0x05, 0x05, 0x09, 0x0f, - 0x03, 0x05, 0x04, 0x04, 0x06, 0x02, 0x04, 0x07, 0x07, 0x0a, 0x07, 0x0a, - 0x06, 0x0d, 0x0a, 0x09, 0x07, 0x09, 0x09, 0x09, 0x09, 0x07, 0x07, 0x08, - 0x08, 0x07, 0x07, 0x09, 0x05, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x03, 0x06, 0x06, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, - 0x06, 0x0c, 0x06, 0x0c, 0x04, 0x03, 0x02, 0x07, 0x03, 0x02, 0x01, 0x00, - 0x00, 0x0c, 0x0c, 0x03, 0x02, 0x07, 0x07, 0x09, 0x0b, 0x0b, 0x07, 0x07, - 0x09, 0x04, 0x05, 0x0b, 0x0b, 0x09, 0x07, 0x09, 0x08, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x06, 0x09, 0x07, 0x07, 0x0b, 0x09, 0x07, 0x07, 0x0b, 0x09, - 0x07, 0x07, 0x0a, 0x0a, 0x07, 0x07, 0x0a, 0x0a, 0x07, 0x06, 0x09, 0x09, - 0x09, 0x07, 0x08, 0x05, 0x08, 0x05, 0x0e, 0x0d, 0x09, 0x07, 0x0b, 0x09, - 0x0b, 0x09, 0x07, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x0c, 0x0b, 0x09, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x06, 0x05, 0x07, 0x07, 0x0a, 0x09, 0x07, - 0x06, 0x08, 0x06, 0x07, 0x06, 0x07, 0x06, 0x08, 0x07, 0x08, 0x07, 0x09, - 0x08, 0x0c, 0x0b, 0x0a, 0x09, 0x07, 0x06, 0x07, 0x05, 0x07, 0x05, 0x07, - 0x05, 0x07, 0x06, 0x0a, 0x08, 0x09, 0x07, 0x08, 0x07, 0x08, 0x07, 0x0a, - 0x08, 0x0a, 0x08, 0x04, 0x09, 0x09, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, - 0x08, 0x07, 0x08, 0x07, 0x0b, 0x09, 0x04, 0x07, 0x07, 0x07, 0x07, 0x0a, - 0x0b, 0x06, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x09, 0x07, 0x06, 0x07, - 0x06, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x07, - 0x06, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x08, 0x07, 0x06, 0x05, 0x0a, - 0x09, 0x06, 0x05, 0x07, 0x06, 0x07, 0x06, 0x07, 0x07, 0x0b, 0x0b, 0x0a, - 0x09, 0x07, 0x06, 0x0b, 0x0a, 0x0c, 0x0b, 0x09, 0x07, 0x09, 0x07, 0x07, - 0x06, 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, - 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x04, 0x03, 0x04, 0x03, 0x09, - 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, - 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x08, - 0x07, 0x08, 0x07, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, - 0x08, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x0d, 0x10, 0x08, 0x00, - 0x07, 0x03, 0x04, 0x05, 0x08, 0x07, 0x0b, 0x09, 0x03, 0x04, 0x04, 0x07, - 0x07, 0x03, 0x04, 0x03, 0x05, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x03, 0x03, 0x07, 0x07, 0x07, 0x06, 0x0b, 0x08, 0x08, - 0x08, 0x09, 0x07, 0x06, 0x09, 0x09, 0x05, 0x03, 0x08, 0x06, 0x0b, 0x09, - 0x0a, 0x07, 0x0a, 0x08, 0x07, 0x07, 0x09, 0x07, 0x0b, 0x07, 0x07, 0x07, - 0x04, 0x05, 0x04, 0x07, 0x05, 0x08, 0x07, 0x08, 0x06, 0x08, 0x07, 0x04, - 0x07, 0x08, 0x03, 0x03, 0x06, 0x03, 0x0b, 0x08, 0x08, 0x08, 0x08, 0x05, - 0x06, 0x04, 0x08, 0x06, 0x0a, 0x07, 0x06, 0x06, 0x05, 0x07, 0x05, 0x07, - 0x03, 0x04, 0x07, 0x07, 0x07, 0x07, 0x07, 0x06, 0x08, 0x0b, 0x05, 0x06, - 0x07, 0x04, 0x0b, 0x07, 0x06, 0x07, 0x05, 0x05, 0x08, 0x08, 0x09, 0x03, - 0x03, 0x05, 0x05, 0x06, 0x0a, 0x0a, 0x0a, 0x06, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x0b, 0x08, 0x07, 0x07, 0x07, 0x07, 0x05, 0x05, 0x05, 0x05, - 0x09, 0x09, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x07, 0x0a, 0x09, 0x09, 0x09, - 0x09, 0x07, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0b, 0x06, - 0x07, 0x07, 0x07, 0x07, 0x03, 0x03, 0x03, 0x03, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x07, 0x08, 0x08, 0x08, 0x08, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x09, 0x08, 0x09, 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, - 0x09, 0x08, 0x09, 0x08, 0x05, 0x03, 0x05, 0x03, 0x05, 0x03, 0x05, 0x03, - 0x05, 0x03, 0x08, 0x06, 0x03, 0x03, 0x08, 0x06, 0x06, 0x06, 0x03, 0x06, - 0x03, 0x06, 0x03, 0x06, 0x04, 0x06, 0x03, 0x09, 0x08, 0x09, 0x08, 0x09, - 0x08, 0x09, 0x09, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0c, 0x0c, - 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, - 0x07, 0x06, 0x07, 0x04, 0x07, 0x04, 0x07, 0x04, 0x09, 0x08, 0x09, 0x08, - 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x0b, 0x0a, 0x07, 0x06, - 0x07, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x04, 0x07, 0x08, 0x07, 0x0b, - 0x0b, 0x0a, 0x08, 0x07, 0x06, 0x08, 0x08, 0x07, 0x08, 0x03, 0x08, 0x02, - 0x08, 0x08, 0x08, 0x08, 0x08, 0x03, 0x08, 0x0a, 0x06, 0x0a, 0x09, 0x0a, - 0x04, 0x08, 0x08, 0x07, 0x07, 0x07, 0x07, 0x09, 0x0a, 0x05, 0x08, 0x08, - 0x0b, 0x09, 0x07, 0x0a, 0x09, 0x07, 0x07, 0x07, 0x07, 0x0a, 0x07, 0x0a, - 0x0a, 0x05, 0x07, 0x08, 0x06, 0x08, 0x04, 0x08, 0x08, 0x08, 0x06, 0x08, - 0x06, 0x06, 0x08, 0x08, 0x04, 0x06, 0x07, 0x08, 0x07, 0x06, 0x08, 0x08, - 0x08, 0x06, 0x08, 0x06, 0x08, 0x0a, 0x07, 0x0a, 0x0b, 0x04, 0x08, 0x08, - 0x08, 0x0b, 0x07, 0x0a, 0x07, 0x08, 0x07, 0x05, 0x05, 0x03, 0x0c, 0x0c, - 0x0a, 0x08, 0x08, 0x09, 0x08, 0x08, 0x08, 0x07, 0x08, 0x07, 0x0b, 0x07, - 0x09, 0x09, 0x08, 0x09, 0x0b, 0x09, 0x0a, 0x09, 0x07, 0x08, 0x07, 0x08, - 0x0a, 0x07, 0x09, 0x09, 0x0d, 0x0d, 0x09, 0x0b, 0x08, 0x08, 0x0d, 0x08, - 0x07, 0x08, 0x07, 0x05, 0x07, 0x07, 0x09, 0x06, 0x08, 0x08, 0x06, 0x07, - 0x09, 0x08, 0x08, 0x08, 0x08, 0x06, 0x05, 0x06, 0x09, 0x07, 0x08, 0x08, - 0x0b, 0x0b, 0x08, 0x0a, 0x07, 0x06, 0x0b, 0x07, 0x07, 0x08, 0x05, 0x06, - 0x06, 0x03, 0x03, 0x03, 0x0b, 0x0b, 0x08, 0x06, 0x06, 0x08, 0x06, 0x05, - 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x07, 0x06, 0x07, 0x0d, 0x0d, 0x05, - 0x02, 0x02, 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x09, 0x10, - 0x03, 0x05, 0x04, 0x04, 0x06, 0x02, 0x05, 0x07, 0x07, 0x0b, 0x07, 0x0a, - 0x07, 0x0d, 0x0a, 0x0a, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, 0x08, 0x07, 0x09, - 0x08, 0x07, 0x07, 0x09, 0x05, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x03, 0x07, 0x07, 0x07, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x07, 0x0d, 0x07, 0x0d, 0x04, 0x03, 0x02, 0x07, 0x03, 0x03, 0x01, 0x00, - 0x00, 0x0d, 0x0d, 0x03, 0x02, 0x08, 0x07, 0x0b, 0x0b, 0x0b, 0x08, 0x07, - 0x0a, 0x04, 0x05, 0x0b, 0x0b, 0x0a, 0x08, 0x0a, 0x09, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x07, 0x09, 0x07, 0x08, 0x0d, 0x0a, 0x08, 0x08, 0x0c, 0x09, - 0x08, 0x07, 0x0c, 0x0a, 0x09, 0x07, 0x0c, 0x0a, 0x07, 0x06, 0x0a, 0x0a, - 0x0a, 0x08, 0x08, 0x06, 0x08, 0x06, 0x0f, 0x0e, 0x0a, 0x08, 0x0d, 0x0a, - 0x0d, 0x0a, 0x08, 0x06, 0x08, 0x07, 0x08, 0x08, 0x08, 0x0d, 0x0c, 0x0a, - 0x08, 0x07, 0x08, 0x07, 0x08, 0x06, 0x05, 0x08, 0x07, 0x0b, 0x09, 0x07, - 0x06, 0x08, 0x07, 0x08, 0x06, 0x08, 0x06, 0x09, 0x07, 0x09, 0x08, 0x0a, - 0x09, 0x0d, 0x0b, 0x0a, 0x0a, 0x08, 0x06, 0x07, 0x05, 0x07, 0x06, 0x07, - 0x06, 0x07, 0x07, 0x0b, 0x09, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x0b, - 0x09, 0x0b, 0x09, 0x05, 0x0b, 0x09, 0x08, 0x08, 0x09, 0x07, 0x09, 0x08, - 0x09, 0x08, 0x09, 0x08, 0x0b, 0x09, 0x05, 0x08, 0x07, 0x08, 0x07, 0x0b, - 0x0b, 0x07, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0b, 0x09, 0x07, 0x06, 0x07, - 0x07, 0x09, 0x08, 0x09, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x08, - 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x09, 0x08, 0x07, 0x05, 0x0b, - 0x0a, 0x06, 0x05, 0x08, 0x07, 0x07, 0x07, 0x07, 0x08, 0x0b, 0x0c, 0x0b, - 0x0a, 0x08, 0x07, 0x0d, 0x0b, 0x0d, 0x0c, 0x09, 0x08, 0x09, 0x08, 0x07, - 0x06, 0x09, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x05, 0x03, 0x05, 0x03, 0x0a, - 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, - 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x09, - 0x08, 0x09, 0x08, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, - 0x09, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x08, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x0e, 0x11, 0x08, 0x00, - 0x07, 0x04, 0x04, 0x06, 0x09, 0x08, 0x0c, 0x0a, 0x03, 0x04, 0x04, 0x08, - 0x08, 0x04, 0x05, 0x04, 0x05, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x04, 0x04, 0x08, 0x08, 0x08, 0x06, 0x0c, 0x09, 0x09, - 0x08, 0x0a, 0x07, 0x07, 0x0a, 0x0a, 0x05, 0x03, 0x08, 0x07, 0x0c, 0x0a, - 0x0b, 0x08, 0x0b, 0x08, 0x07, 0x07, 0x0a, 0x08, 0x0d, 0x08, 0x07, 0x08, - 0x04, 0x05, 0x04, 0x07, 0x06, 0x08, 0x07, 0x08, 0x07, 0x08, 0x08, 0x04, - 0x07, 0x08, 0x04, 0x04, 0x07, 0x04, 0x0d, 0x08, 0x08, 0x08, 0x08, 0x05, - 0x07, 0x05, 0x08, 0x07, 0x0a, 0x07, 0x07, 0x07, 0x05, 0x07, 0x05, 0x08, - 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x07, 0x07, 0x08, 0x0c, 0x05, 0x07, - 0x08, 0x05, 0x0c, 0x07, 0x06, 0x08, 0x05, 0x05, 0x08, 0x08, 0x09, 0x04, - 0x03, 0x05, 0x05, 0x07, 0x0a, 0x0a, 0x0a, 0x06, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x0c, 0x08, 0x07, 0x07, 0x07, 0x07, 0x05, 0x05, 0x05, 0x05, - 0x0a, 0x0a, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x0a, 0x0a, 0x0a, - 0x0a, 0x07, 0x08, 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0c, 0x07, - 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x07, 0x08, 0x07, - 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, - 0x08, 0x07, 0x0a, 0x08, 0x0a, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x08, 0x07, 0x08, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, - 0x0a, 0x08, 0x0a, 0x08, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, 0x05, 0x04, - 0x05, 0x04, 0x08, 0x08, 0x03, 0x04, 0x08, 0x07, 0x07, 0x07, 0x04, 0x07, - 0x04, 0x07, 0x04, 0x07, 0x05, 0x07, 0x04, 0x0a, 0x08, 0x0a, 0x08, 0x0a, - 0x08, 0x0a, 0x0a, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0c, 0x0d, - 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x0a, 0x08, 0x0a, 0x08, - 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0d, 0x0a, 0x07, 0x07, - 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x04, 0x08, 0x09, 0x07, 0x0c, - 0x0c, 0x0b, 0x08, 0x07, 0x07, 0x08, 0x08, 0x08, 0x08, 0x04, 0x08, 0x03, - 0x08, 0x08, 0x08, 0x08, 0x09, 0x04, 0x08, 0x0b, 0x06, 0x0b, 0x09, 0x0b, - 0x04, 0x09, 0x09, 0x07, 0x09, 0x07, 0x08, 0x0a, 0x0b, 0x05, 0x08, 0x09, - 0x0c, 0x0a, 0x08, 0x0b, 0x0a, 0x08, 0x08, 0x07, 0x07, 0x0b, 0x08, 0x0b, - 0x0b, 0x05, 0x07, 0x08, 0x07, 0x08, 0x04, 0x08, 0x08, 0x08, 0x07, 0x08, - 0x07, 0x06, 0x08, 0x08, 0x04, 0x07, 0x07, 0x08, 0x07, 0x07, 0x08, 0x09, - 0x08, 0x07, 0x08, 0x06, 0x08, 0x0a, 0x07, 0x0a, 0x0b, 0x04, 0x08, 0x08, - 0x08, 0x0b, 0x07, 0x0a, 0x07, 0x08, 0x07, 0x05, 0x05, 0x03, 0x0d, 0x0d, - 0x0a, 0x08, 0x08, 0x0a, 0x09, 0x08, 0x09, 0x07, 0x09, 0x07, 0x0b, 0x08, - 0x0a, 0x0a, 0x08, 0x09, 0x0c, 0x0a, 0x0b, 0x0a, 0x08, 0x08, 0x07, 0x08, - 0x0b, 0x08, 0x0a, 0x09, 0x0d, 0x0d, 0x09, 0x0c, 0x09, 0x08, 0x0f, 0x08, - 0x07, 0x08, 0x08, 0x05, 0x08, 0x08, 0x09, 0x07, 0x08, 0x08, 0x07, 0x08, - 0x0a, 0x08, 0x08, 0x08, 0x08, 0x07, 0x05, 0x07, 0x09, 0x07, 0x08, 0x08, - 0x0b, 0x0b, 0x09, 0x0b, 0x08, 0x07, 0x0b, 0x08, 0x08, 0x08, 0x05, 0x07, - 0x07, 0x04, 0x04, 0x04, 0x0c, 0x0c, 0x08, 0x07, 0x07, 0x08, 0x07, 0x06, - 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x07, 0x07, 0x07, 0x0e, 0x0e, 0x06, - 0x03, 0x03, 0x03, 0x03, 0x06, 0x06, 0x06, 0x07, 0x07, 0x06, 0x0c, 0x11, - 0x03, 0x06, 0x04, 0x04, 0x07, 0x02, 0x05, 0x08, 0x08, 0x0c, 0x08, 0x0b, - 0x07, 0x0e, 0x0a, 0x0b, 0x09, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x09, 0x0a, - 0x09, 0x08, 0x08, 0x0a, 0x05, 0x08, 0x08, 0x08, 0x08, 0x07, 0x08, 0x08, - 0x08, 0x04, 0x07, 0x07, 0x07, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x07, 0x0e, 0x07, 0x0e, 0x05, 0x04, 0x02, 0x08, 0x04, 0x03, 0x01, 0x00, - 0x00, 0x0e, 0x0e, 0x04, 0x03, 0x08, 0x08, 0x0b, 0x0c, 0x0d, 0x09, 0x07, - 0x0b, 0x05, 0x06, 0x0d, 0x0d, 0x0b, 0x08, 0x0b, 0x09, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x07, 0x0a, 0x08, 0x08, 0x0d, 0x0b, 0x09, 0x08, 0x0d, 0x0a, - 0x09, 0x07, 0x0c, 0x0a, 0x09, 0x09, 0x0d, 0x0c, 0x08, 0x07, 0x0b, 0x0a, - 0x0b, 0x08, 0x09, 0x07, 0x09, 0x07, 0x11, 0x0f, 0x0b, 0x08, 0x0d, 0x0b, - 0x0d, 0x0b, 0x08, 0x07, 0x09, 0x08, 0x08, 0x08, 0x08, 0x0e, 0x0d, 0x0a, - 0x08, 0x08, 0x08, 0x08, 0x08, 0x07, 0x05, 0x09, 0x08, 0x0b, 0x0a, 0x08, - 0x07, 0x09, 0x08, 0x08, 0x07, 0x08, 0x07, 0x09, 0x08, 0x0a, 0x08, 0x0b, - 0x0a, 0x0f, 0x0c, 0x0b, 0x0a, 0x08, 0x07, 0x07, 0x05, 0x07, 0x07, 0x07, - 0x07, 0x08, 0x07, 0x0b, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x0a, 0x08, 0x0b, - 0x09, 0x0b, 0x09, 0x05, 0x0b, 0x09, 0x09, 0x08, 0x09, 0x08, 0x0a, 0x08, - 0x0a, 0x08, 0x09, 0x08, 0x0c, 0x0a, 0x05, 0x09, 0x07, 0x09, 0x07, 0x0c, - 0x0c, 0x07, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x09, 0x08, 0x07, 0x08, - 0x07, 0x0a, 0x08, 0x0a, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x08, - 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x09, 0x08, 0x07, 0x05, 0x0c, - 0x0b, 0x07, 0x05, 0x08, 0x07, 0x08, 0x07, 0x08, 0x08, 0x0c, 0x0c, 0x0c, - 0x0b, 0x08, 0x07, 0x0d, 0x0c, 0x0e, 0x0c, 0x0a, 0x08, 0x0a, 0x09, 0x08, - 0x07, 0x09, 0x08, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, - 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, - 0x07, 0x09, 0x07, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, - 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, 0x05, 0x04, 0x05, 0x04, 0x0b, - 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, - 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0a, - 0x08, 0x0a, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x0f, 0x12, 0x09, 0x00, - 0x08, 0x04, 0x04, 0x07, 0x0a, 0x08, 0x0c, 0x0b, 0x04, 0x05, 0x05, 0x08, - 0x08, 0x04, 0x05, 0x04, 0x06, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x04, 0x04, 0x08, 0x08, 0x08, 0x06, 0x0d, 0x0a, 0x0a, - 0x09, 0x0a, 0x08, 0x08, 0x0a, 0x0b, 0x06, 0x04, 0x09, 0x07, 0x0d, 0x0b, - 0x0b, 0x09, 0x0b, 0x09, 0x07, 0x08, 0x0b, 0x09, 0x0e, 0x09, 0x08, 0x08, - 0x05, 0x06, 0x05, 0x08, 0x06, 0x09, 0x08, 0x09, 0x07, 0x09, 0x08, 0x04, - 0x08, 0x08, 0x04, 0x04, 0x07, 0x04, 0x0d, 0x08, 0x09, 0x09, 0x09, 0x06, - 0x07, 0x05, 0x08, 0x07, 0x0b, 0x07, 0x07, 0x07, 0x05, 0x07, 0x05, 0x08, - 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x07, 0x07, 0x09, 0x0c, 0x05, 0x07, - 0x08, 0x05, 0x0c, 0x08, 0x07, 0x08, 0x05, 0x05, 0x09, 0x08, 0x0a, 0x04, - 0x03, 0x05, 0x05, 0x07, 0x0b, 0x0b, 0x0b, 0x06, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0d, 0x09, 0x08, 0x08, 0x08, 0x08, 0x06, 0x06, 0x06, 0x06, - 0x0a, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x08, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0d, 0x07, - 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x09, 0x08, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x08, 0x09, 0x08, 0x08, 0x08, 0x08, 0x07, 0x09, 0x07, - 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, - 0x09, 0x07, 0x0a, 0x09, 0x0a, 0x09, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, - 0x0b, 0x08, 0x0b, 0x08, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, - 0x06, 0x04, 0x09, 0x08, 0x04, 0x04, 0x09, 0x07, 0x07, 0x07, 0x04, 0x07, - 0x04, 0x07, 0x04, 0x07, 0x05, 0x07, 0x04, 0x0b, 0x08, 0x0b, 0x08, 0x0b, - 0x08, 0x0a, 0x0b, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0d, 0x0e, - 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, 0x0b, 0x08, 0x0b, 0x08, - 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0e, 0x0b, 0x08, 0x07, - 0x08, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x04, 0x08, 0x0a, 0x08, 0x0d, - 0x0d, 0x0b, 0x09, 0x07, 0x07, 0x09, 0x09, 0x08, 0x09, 0x04, 0x09, 0x03, - 0x09, 0x09, 0x09, 0x09, 0x0a, 0x04, 0x09, 0x0c, 0x07, 0x0c, 0x0a, 0x0c, - 0x04, 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x08, 0x0b, 0x0b, 0x06, 0x09, 0x0a, - 0x0d, 0x0b, 0x08, 0x0b, 0x0b, 0x09, 0x08, 0x08, 0x08, 0x0b, 0x09, 0x0b, - 0x0b, 0x06, 0x08, 0x09, 0x07, 0x08, 0x04, 0x08, 0x09, 0x09, 0x07, 0x09, - 0x07, 0x07, 0x08, 0x09, 0x04, 0x07, 0x07, 0x08, 0x08, 0x07, 0x09, 0x09, - 0x09, 0x07, 0x09, 0x07, 0x08, 0x0b, 0x08, 0x0a, 0x0c, 0x04, 0x08, 0x09, - 0x08, 0x0c, 0x08, 0x0b, 0x08, 0x09, 0x07, 0x06, 0x06, 0x04, 0x0e, 0x0f, - 0x0b, 0x09, 0x09, 0x0b, 0x0a, 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0c, 0x08, - 0x0b, 0x0b, 0x09, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x09, 0x09, 0x08, 0x09, - 0x0b, 0x09, 0x0b, 0x0a, 0x0e, 0x0e, 0x0a, 0x0d, 0x0a, 0x09, 0x10, 0x09, - 0x08, 0x09, 0x08, 0x06, 0x08, 0x08, 0x0b, 0x07, 0x08, 0x08, 0x07, 0x08, - 0x0b, 0x08, 0x09, 0x08, 0x09, 0x07, 0x07, 0x07, 0x0b, 0x07, 0x08, 0x08, - 0x0d, 0x0d, 0x0a, 0x0b, 0x08, 0x07, 0x0c, 0x08, 0x08, 0x08, 0x06, 0x07, - 0x07, 0x04, 0x04, 0x04, 0x0c, 0x0d, 0x08, 0x07, 0x07, 0x08, 0x07, 0x06, - 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x08, 0x07, 0x08, 0x0f, 0x0f, 0x06, - 0x03, 0x03, 0x03, 0x03, 0x06, 0x06, 0x06, 0x08, 0x08, 0x07, 0x0c, 0x12, - 0x04, 0x07, 0x04, 0x04, 0x07, 0x02, 0x05, 0x08, 0x08, 0x0c, 0x08, 0x0c, - 0x08, 0x0f, 0x0c, 0x0b, 0x09, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x0a, 0x0b, - 0x09, 0x08, 0x08, 0x0b, 0x06, 0x08, 0x08, 0x08, 0x08, 0x09, 0x09, 0x09, - 0x09, 0x04, 0x08, 0x08, 0x08, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, - 0x08, 0x0f, 0x08, 0x0f, 0x05, 0x04, 0x03, 0x08, 0x04, 0x03, 0x02, 0x00, - 0x00, 0x0f, 0x0f, 0x04, 0x03, 0x09, 0x08, 0x0c, 0x0d, 0x0d, 0x0a, 0x08, - 0x0c, 0x05, 0x06, 0x0e, 0x0e, 0x0b, 0x09, 0x0b, 0x09, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x08, 0x0b, 0x08, 0x08, 0x0f, 0x0c, 0x0a, 0x09, 0x0d, 0x0b, - 0x0a, 0x08, 0x0d, 0x0a, 0x0a, 0x09, 0x0e, 0x0c, 0x08, 0x07, 0x0b, 0x0a, - 0x0b, 0x09, 0x09, 0x07, 0x09, 0x07, 0x12, 0x10, 0x0b, 0x09, 0x0d, 0x0c, - 0x0f, 0x0c, 0x09, 0x07, 0x09, 0x08, 0x09, 0x09, 0x09, 0x0f, 0x0e, 0x0b, - 0x08, 0x09, 0x09, 0x09, 0x09, 0x08, 0x06, 0x0a, 0x08, 0x0c, 0x0b, 0x08, - 0x07, 0x09, 0x08, 0x09, 0x07, 0x09, 0x07, 0x0a, 0x09, 0x0b, 0x08, 0x0c, - 0x0a, 0x10, 0x0d, 0x0b, 0x0a, 0x09, 0x07, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x09, 0x07, 0x0d, 0x0a, 0x0a, 0x09, 0x0a, 0x08, 0x0b, 0x08, 0x0c, - 0x09, 0x0c, 0x09, 0x06, 0x0c, 0x0b, 0x0a, 0x08, 0x0b, 0x08, 0x0b, 0x08, - 0x0b, 0x08, 0x0a, 0x08, 0x0d, 0x0b, 0x06, 0x0a, 0x08, 0x0a, 0x08, 0x0d, - 0x0d, 0x08, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0c, 0x0b, 0x08, 0x07, 0x08, - 0x07, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x09, - 0x07, 0x09, 0x07, 0x09, 0x07, 0x09, 0x07, 0x0a, 0x08, 0x08, 0x06, 0x0d, - 0x0b, 0x08, 0x06, 0x09, 0x08, 0x09, 0x07, 0x09, 0x09, 0x0e, 0x0e, 0x0e, - 0x0c, 0x09, 0x08, 0x0f, 0x0c, 0x0f, 0x0c, 0x0b, 0x09, 0x0b, 0x0a, 0x08, - 0x07, 0x0b, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, - 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, - 0x08, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x06, 0x04, 0x06, 0x04, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x08, 0x0b, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, 0x09, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x10, 0x14, 0x0a, 0x00, - 0x08, 0x04, 0x04, 0x07, 0x0a, 0x09, 0x0d, 0x0b, 0x04, 0x05, 0x05, 0x09, - 0x09, 0x04, 0x05, 0x04, 0x06, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x04, 0x04, 0x09, 0x09, 0x09, 0x07, 0x0e, 0x0b, 0x0b, - 0x0a, 0x0b, 0x08, 0x08, 0x0b, 0x0b, 0x06, 0x04, 0x09, 0x08, 0x0e, 0x0c, - 0x0b, 0x09, 0x0b, 0x0a, 0x08, 0x08, 0x0b, 0x0a, 0x0e, 0x09, 0x08, 0x09, - 0x05, 0x06, 0x05, 0x09, 0x07, 0x09, 0x09, 0x09, 0x08, 0x09, 0x09, 0x04, - 0x08, 0x09, 0x04, 0x04, 0x08, 0x04, 0x0e, 0x09, 0x09, 0x09, 0x09, 0x06, - 0x07, 0x05, 0x09, 0x08, 0x0c, 0x08, 0x08, 0x08, 0x06, 0x09, 0x06, 0x09, - 0x04, 0x04, 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x09, 0x0d, 0x06, 0x08, - 0x09, 0x05, 0x0d, 0x08, 0x07, 0x09, 0x06, 0x06, 0x09, 0x09, 0x0a, 0x04, - 0x03, 0x06, 0x06, 0x08, 0x0c, 0x0c, 0x0c, 0x07, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0e, 0x0a, 0x08, 0x08, 0x08, 0x08, 0x06, 0x06, 0x06, 0x06, - 0x0b, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x08, 0x09, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x0e, 0x08, - 0x09, 0x09, 0x09, 0x09, 0x04, 0x04, 0x04, 0x04, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x09, 0x08, - 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, - 0x0a, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, - 0x08, 0x09, 0x08, 0x09, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, - 0x0b, 0x09, 0x0b, 0x09, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, - 0x06, 0x04, 0x0a, 0x08, 0x04, 0x04, 0x09, 0x08, 0x08, 0x08, 0x04, 0x08, - 0x04, 0x08, 0x04, 0x08, 0x06, 0x08, 0x04, 0x0c, 0x09, 0x0c, 0x09, 0x0c, - 0x09, 0x0b, 0x0c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0e, 0x0f, - 0x0a, 0x06, 0x0a, 0x06, 0x0a, 0x06, 0x08, 0x07, 0x08, 0x07, 0x08, 0x07, - 0x08, 0x07, 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, 0x0b, 0x09, 0x0b, 0x09, - 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0e, 0x0c, 0x08, 0x08, - 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x05, 0x09, 0x0b, 0x09, 0x0e, - 0x0e, 0x0b, 0x09, 0x08, 0x07, 0x09, 0x09, 0x09, 0x09, 0x04, 0x09, 0x03, - 0x09, 0x09, 0x09, 0x09, 0x0b, 0x04, 0x0a, 0x0c, 0x07, 0x0d, 0x0b, 0x0d, - 0x05, 0x0b, 0x0b, 0x08, 0x0a, 0x08, 0x09, 0x0b, 0x0b, 0x06, 0x09, 0x0a, - 0x0e, 0x0c, 0x09, 0x0b, 0x0b, 0x09, 0x09, 0x08, 0x08, 0x0d, 0x09, 0x0d, - 0x0b, 0x06, 0x08, 0x09, 0x07, 0x09, 0x05, 0x09, 0x09, 0x0a, 0x08, 0x09, - 0x07, 0x07, 0x09, 0x09, 0x05, 0x08, 0x08, 0x09, 0x08, 0x08, 0x09, 0x0a, - 0x09, 0x08, 0x09, 0x07, 0x09, 0x0b, 0x08, 0x0c, 0x0c, 0x05, 0x09, 0x09, - 0x09, 0x0c, 0x08, 0x0b, 0x08, 0x0a, 0x08, 0x06, 0x06, 0x04, 0x0f, 0x0f, - 0x0b, 0x09, 0x0a, 0x0b, 0x0b, 0x09, 0x0b, 0x08, 0x0a, 0x08, 0x0e, 0x09, - 0x0c, 0x0c, 0x09, 0x0b, 0x0e, 0x0b, 0x0b, 0x0b, 0x09, 0x0a, 0x08, 0x0a, - 0x0d, 0x09, 0x0b, 0x0a, 0x10, 0x10, 0x0b, 0x0d, 0x0a, 0x0a, 0x10, 0x0a, - 0x09, 0x09, 0x09, 0x06, 0x09, 0x09, 0x0b, 0x07, 0x09, 0x09, 0x08, 0x09, - 0x0b, 0x09, 0x09, 0x09, 0x09, 0x08, 0x07, 0x08, 0x0b, 0x08, 0x09, 0x09, - 0x0e, 0x0e, 0x0b, 0x0c, 0x09, 0x08, 0x0d, 0x09, 0x09, 0x09, 0x06, 0x08, - 0x07, 0x04, 0x04, 0x04, 0x0e, 0x0e, 0x09, 0x08, 0x08, 0x09, 0x08, 0x06, - 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x08, 0x08, 0x08, 0x10, 0x10, 0x07, - 0x03, 0x03, 0x03, 0x03, 0x06, 0x06, 0x06, 0x08, 0x08, 0x07, 0x0c, 0x14, - 0x04, 0x07, 0x05, 0x05, 0x08, 0x02, 0x06, 0x09, 0x09, 0x0d, 0x09, 0x0d, - 0x08, 0x10, 0x0d, 0x0b, 0x0a, 0x0c, 0x0c, 0x0c, 0x0c, 0x09, 0x0a, 0x0b, - 0x0a, 0x09, 0x09, 0x0b, 0x06, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x0a, 0x04, 0x08, 0x08, 0x08, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x08, 0x10, 0x08, 0x10, 0x05, 0x04, 0x03, 0x09, 0x04, 0x03, 0x02, 0x00, - 0x00, 0x10, 0x10, 0x04, 0x03, 0x09, 0x09, 0x0c, 0x0e, 0x0e, 0x0b, 0x09, - 0x0d, 0x05, 0x06, 0x0e, 0x0e, 0x0b, 0x09, 0x0b, 0x0a, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x08, 0x0c, 0x09, 0x09, 0x10, 0x0d, 0x0b, 0x09, 0x0e, 0x0b, - 0x0b, 0x09, 0x0e, 0x0c, 0x0b, 0x09, 0x0f, 0x0e, 0x09, 0x07, 0x0d, 0x0c, - 0x0b, 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x13, 0x11, 0x0b, 0x09, 0x0e, 0x0d, - 0x10, 0x0d, 0x0a, 0x08, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x10, 0x0f, 0x0c, - 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x06, 0x0b, 0x08, 0x0e, 0x0b, 0x09, - 0x07, 0x0a, 0x09, 0x09, 0x08, 0x09, 0x08, 0x0b, 0x0a, 0x0b, 0x09, 0x0c, - 0x0b, 0x11, 0x0d, 0x0d, 0x0a, 0x0a, 0x08, 0x08, 0x07, 0x08, 0x07, 0x08, - 0x07, 0x09, 0x08, 0x0d, 0x0b, 0x0b, 0x0a, 0x0a, 0x09, 0x0b, 0x09, 0x0d, - 0x0a, 0x0d, 0x0a, 0x06, 0x0e, 0x0b, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, - 0x0b, 0x09, 0x0a, 0x09, 0x0e, 0x0b, 0x06, 0x0b, 0x09, 0x0b, 0x09, 0x0e, - 0x0e, 0x08, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0e, 0x0b, 0x09, 0x07, 0x09, - 0x08, 0x0c, 0x09, 0x0c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0a, - 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x09, 0x08, 0x06, 0x0d, - 0x0c, 0x08, 0x06, 0x0a, 0x08, 0x09, 0x08, 0x09, 0x09, 0x0e, 0x0e, 0x0f, - 0x0d, 0x0a, 0x08, 0x10, 0x0e, 0x10, 0x0e, 0x0b, 0x09, 0x0b, 0x0a, 0x09, - 0x07, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x0b, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, - 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x09, 0x06, 0x04, 0x06, 0x04, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, - 0x09, 0x0b, 0x09, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, - 0x0a, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x09, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x11, 0x14, 0x0a, 0x00, - 0x09, 0x04, 0x04, 0x07, 0x0b, 0x09, 0x0e, 0x0c, 0x04, 0x05, 0x05, 0x09, - 0x09, 0x04, 0x05, 0x04, 0x06, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x04, 0x04, 0x09, 0x09, 0x09, 0x07, 0x0f, 0x0a, 0x0b, - 0x0a, 0x0c, 0x09, 0x09, 0x0c, 0x0c, 0x06, 0x05, 0x0a, 0x08, 0x0f, 0x0d, - 0x0d, 0x0a, 0x0d, 0x0b, 0x09, 0x09, 0x0c, 0x0a, 0x0f, 0x09, 0x09, 0x0a, - 0x05, 0x06, 0x05, 0x09, 0x07, 0x0a, 0x09, 0x0a, 0x08, 0x0a, 0x09, 0x06, - 0x08, 0x09, 0x04, 0x04, 0x08, 0x04, 0x0f, 0x09, 0x0a, 0x0a, 0x0a, 0x06, - 0x08, 0x06, 0x09, 0x08, 0x0d, 0x08, 0x08, 0x08, 0x06, 0x09, 0x06, 0x09, - 0x04, 0x04, 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x0a, 0x0e, 0x06, 0x08, - 0x09, 0x05, 0x0e, 0x09, 0x07, 0x09, 0x06, 0x06, 0x0a, 0x09, 0x0b, 0x04, - 0x03, 0x06, 0x06, 0x08, 0x0d, 0x0d, 0x0d, 0x07, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0e, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x06, 0x06, 0x06, 0x06, - 0x0c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x09, 0x0d, 0x0c, 0x0c, 0x0c, - 0x0c, 0x09, 0x0a, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x0e, 0x08, - 0x09, 0x09, 0x09, 0x09, 0x04, 0x04, 0x04, 0x04, 0x0a, 0x09, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x09, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x08, 0x0a, 0x08, - 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, - 0x0a, 0x08, 0x0c, 0x0a, 0x0c, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x09, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, - 0x0c, 0x09, 0x0c, 0x09, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, 0x06, 0x04, - 0x06, 0x04, 0x0b, 0x08, 0x05, 0x04, 0x0a, 0x08, 0x08, 0x08, 0x04, 0x08, - 0x04, 0x08, 0x04, 0x08, 0x06, 0x08, 0x04, 0x0d, 0x09, 0x0d, 0x09, 0x0d, - 0x09, 0x0b, 0x0d, 0x09, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0f, 0x0f, - 0x0b, 0x06, 0x0b, 0x06, 0x0b, 0x06, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, - 0x09, 0x08, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x0c, 0x09, 0x0c, 0x09, - 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x0f, 0x0d, 0x09, 0x08, - 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x05, 0x09, 0x0a, 0x09, 0x0e, - 0x0e, 0x0d, 0x0a, 0x09, 0x08, 0x0a, 0x0a, 0x09, 0x0a, 0x04, 0x0a, 0x03, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x04, 0x0a, 0x0d, 0x08, 0x0d, 0x0b, 0x0d, - 0x05, 0x0a, 0x0b, 0x09, 0x0a, 0x09, 0x0a, 0x0c, 0x0d, 0x06, 0x0a, 0x0a, - 0x0f, 0x0d, 0x09, 0x0d, 0x0c, 0x0a, 0x09, 0x09, 0x09, 0x0e, 0x09, 0x0e, - 0x0d, 0x06, 0x09, 0x0a, 0x08, 0x09, 0x05, 0x09, 0x0a, 0x0a, 0x08, 0x0a, - 0x08, 0x08, 0x09, 0x0a, 0x05, 0x08, 0x09, 0x09, 0x08, 0x08, 0x0a, 0x0b, - 0x0a, 0x08, 0x0a, 0x08, 0x09, 0x0c, 0x09, 0x0c, 0x0d, 0x05, 0x09, 0x0a, - 0x09, 0x0d, 0x09, 0x0c, 0x09, 0x0a, 0x09, 0x06, 0x06, 0x05, 0x0f, 0x10, - 0x0c, 0x0a, 0x0a, 0x0c, 0x0a, 0x0a, 0x0b, 0x09, 0x0b, 0x09, 0x0e, 0x0a, - 0x0d, 0x0d, 0x0a, 0x0b, 0x0f, 0x0c, 0x0d, 0x0c, 0x0a, 0x0a, 0x09, 0x0a, - 0x0e, 0x09, 0x0c, 0x0b, 0x11, 0x11, 0x0b, 0x0e, 0x0b, 0x0a, 0x12, 0x0b, - 0x09, 0x0a, 0x09, 0x06, 0x09, 0x09, 0x0c, 0x08, 0x09, 0x09, 0x08, 0x09, - 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x08, 0x08, 0x08, 0x0c, 0x08, 0x09, 0x09, - 0x0f, 0x0f, 0x0b, 0x0c, 0x09, 0x08, 0x0e, 0x09, 0x09, 0x09, 0x06, 0x08, - 0x08, 0x04, 0x04, 0x04, 0x0e, 0x0e, 0x09, 0x08, 0x08, 0x09, 0x08, 0x07, - 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x09, 0x08, 0x09, 0x11, 0x11, 0x07, - 0x03, 0x03, 0x03, 0x03, 0x06, 0x06, 0x06, 0x08, 0x08, 0x06, 0x0f, 0x14, - 0x04, 0x07, 0x05, 0x05, 0x08, 0x02, 0x06, 0x09, 0x09, 0x0d, 0x09, 0x0e, - 0x09, 0x12, 0x0e, 0x0d, 0x0b, 0x0d, 0x0d, 0x0d, 0x0d, 0x0a, 0x0a, 0x0c, - 0x0b, 0x09, 0x09, 0x0c, 0x07, 0x09, 0x09, 0x09, 0x09, 0x09, 0x0a, 0x0a, - 0x0a, 0x04, 0x09, 0x09, 0x09, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x09, 0x11, 0x09, 0x11, 0x06, 0x04, 0x03, 0x09, 0x05, 0x03, 0x02, 0x00, - 0x00, 0x11, 0x11, 0x04, 0x03, 0x0a, 0x0a, 0x0d, 0x0f, 0x0f, 0x0a, 0x09, - 0x0d, 0x06, 0x07, 0x10, 0x10, 0x0d, 0x0a, 0x0c, 0x0a, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x09, 0x0d, 0x09, 0x09, 0x11, 0x0e, 0x0b, 0x0a, 0x0f, 0x0c, - 0x0a, 0x09, 0x0f, 0x0c, 0x0c, 0x0b, 0x11, 0x0e, 0x09, 0x08, 0x0e, 0x0c, - 0x0d, 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x14, 0x12, 0x0d, 0x0a, 0x0f, 0x0d, - 0x11, 0x0e, 0x0a, 0x08, 0x0a, 0x09, 0x0a, 0x0a, 0x0a, 0x11, 0x10, 0x0e, - 0x09, 0x0a, 0x0a, 0x0a, 0x0a, 0x09, 0x06, 0x0b, 0x09, 0x0e, 0x0c, 0x0a, - 0x08, 0x0b, 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0b, 0x0a, 0x0c, 0x09, 0x0d, - 0x0b, 0x12, 0x0f, 0x0e, 0x0b, 0x0a, 0x08, 0x09, 0x08, 0x09, 0x07, 0x09, - 0x07, 0x09, 0x08, 0x0d, 0x0c, 0x0c, 0x0a, 0x0b, 0x09, 0x0c, 0x09, 0x0e, - 0x0a, 0x0e, 0x0a, 0x06, 0x0e, 0x0c, 0x0b, 0x09, 0x0b, 0x09, 0x0c, 0x09, - 0x0c, 0x09, 0x0b, 0x09, 0x0f, 0x0c, 0x06, 0x0a, 0x09, 0x0a, 0x09, 0x0e, - 0x0e, 0x09, 0x09, 0x0d, 0x09, 0x0d, 0x09, 0x0e, 0x0c, 0x0a, 0x08, 0x0a, - 0x08, 0x0d, 0x09, 0x0d, 0x09, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0a, - 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x0b, 0x09, 0x09, 0x06, 0x0e, - 0x0c, 0x09, 0x06, 0x0a, 0x09, 0x09, 0x08, 0x0a, 0x0a, 0x0f, 0x0f, 0x10, - 0x0d, 0x0b, 0x09, 0x10, 0x0e, 0x11, 0x0e, 0x0c, 0x0a, 0x0d, 0x0b, 0x0a, - 0x08, 0x0b, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, - 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, - 0x09, 0x0a, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x06, 0x04, 0x06, 0x04, 0x0d, - 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, - 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0c, - 0x09, 0x0c, 0x09, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, - 0x0a, 0x09, 0x08, 0x09, 0x08, 0x09, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x12, 0x16, 0x0b, 0x00, - 0x09, 0x05, 0x04, 0x07, 0x0c, 0x0a, 0x0f, 0x0d, 0x04, 0x05, 0x05, 0x0a, - 0x0a, 0x04, 0x06, 0x04, 0x07, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x04, 0x04, 0x0a, 0x0a, 0x0a, 0x08, 0x10, 0x0b, 0x0b, - 0x0b, 0x0c, 0x0a, 0x09, 0x0c, 0x0d, 0x06, 0x05, 0x0a, 0x09, 0x10, 0x0d, - 0x0d, 0x0b, 0x0d, 0x0b, 0x09, 0x09, 0x0d, 0x0a, 0x10, 0x0a, 0x09, 0x0a, - 0x05, 0x07, 0x05, 0x0a, 0x07, 0x0a, 0x0a, 0x0b, 0x08, 0x0b, 0x0a, 0x07, - 0x0a, 0x0b, 0x05, 0x05, 0x09, 0x05, 0x10, 0x0b, 0x0a, 0x0b, 0x0b, 0x07, - 0x09, 0x06, 0x0b, 0x0a, 0x0d, 0x09, 0x0a, 0x08, 0x06, 0x0a, 0x06, 0x0a, - 0x05, 0x04, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x09, 0x0a, 0x0f, 0x06, 0x0a, - 0x0a, 0x06, 0x0f, 0x09, 0x08, 0x0a, 0x06, 0x06, 0x0a, 0x0b, 0x0c, 0x04, - 0x04, 0x06, 0x06, 0x0a, 0x0d, 0x0d, 0x0d, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0f, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x06, 0x06, 0x06, - 0x0c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0a, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x09, 0x0b, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0f, 0x08, - 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x05, 0x05, 0x05, 0x0a, 0x0b, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0b, 0x0b, 0x0b, 0x0a, 0x0b, 0x0a, - 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x08, 0x0b, 0x08, 0x0b, 0x08, - 0x0b, 0x08, 0x0c, 0x0b, 0x0c, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, - 0x0d, 0x0b, 0x0d, 0x0b, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x0b, 0x0a, 0x05, 0x05, 0x0a, 0x09, 0x09, 0x09, 0x05, 0x09, - 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, - 0x0b, 0x0d, 0x0d, 0x0b, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x10, 0x10, - 0x0b, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, - 0x09, 0x09, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x0d, 0x0b, 0x0d, 0x0b, - 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x10, 0x0d, 0x09, 0x0a, - 0x09, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x05, 0x0a, 0x0b, 0x0a, 0x0f, - 0x0f, 0x0d, 0x0a, 0x09, 0x09, 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x0a, 0x03, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x04, 0x0b, 0x0e, 0x08, 0x0e, 0x0c, 0x0e, - 0x06, 0x0b, 0x0b, 0x0a, 0x0b, 0x0a, 0x0a, 0x0d, 0x0d, 0x06, 0x0a, 0x0b, - 0x10, 0x0d, 0x0a, 0x0d, 0x0d, 0x0b, 0x0a, 0x09, 0x09, 0x0e, 0x0a, 0x0e, - 0x0d, 0x06, 0x09, 0x0b, 0x08, 0x0b, 0x06, 0x0b, 0x0b, 0x0b, 0x0a, 0x0a, - 0x08, 0x08, 0x0b, 0x0a, 0x06, 0x09, 0x09, 0x0b, 0x09, 0x08, 0x0a, 0x0c, - 0x0b, 0x08, 0x0a, 0x08, 0x0b, 0x0d, 0x0a, 0x0c, 0x0d, 0x06, 0x0b, 0x0a, - 0x0b, 0x0d, 0x0a, 0x0d, 0x0a, 0x0b, 0x09, 0x06, 0x06, 0x05, 0x10, 0x11, - 0x0d, 0x0a, 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0a, 0x0c, 0x0a, 0x0e, 0x0a, - 0x0d, 0x0d, 0x0a, 0x0c, 0x10, 0x0d, 0x0d, 0x0d, 0x0b, 0x0b, 0x09, 0x0b, - 0x0e, 0x0a, 0x0d, 0x0c, 0x12, 0x12, 0x0c, 0x0f, 0x0b, 0x0b, 0x13, 0x0b, - 0x0a, 0x0a, 0x0a, 0x07, 0x0a, 0x0a, 0x0d, 0x08, 0x0b, 0x0b, 0x09, 0x0a, - 0x0e, 0x0b, 0x0a, 0x0b, 0x0b, 0x08, 0x08, 0x0a, 0x0d, 0x09, 0x0b, 0x0b, - 0x10, 0x10, 0x0c, 0x0e, 0x0a, 0x08, 0x0f, 0x0a, 0x0a, 0x0b, 0x07, 0x08, - 0x09, 0x05, 0x05, 0x05, 0x0f, 0x10, 0x0b, 0x09, 0x0a, 0x0b, 0x09, 0x07, - 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x09, 0x0a, 0x09, 0x12, 0x12, 0x07, - 0x03, 0x03, 0x04, 0x03, 0x06, 0x06, 0x06, 0x08, 0x08, 0x07, 0x0f, 0x15, - 0x04, 0x07, 0x06, 0x06, 0x09, 0x02, 0x07, 0x0a, 0x0a, 0x0e, 0x0a, 0x0e, - 0x09, 0x13, 0x0e, 0x0d, 0x0b, 0x0e, 0x0e, 0x0e, 0x0e, 0x0a, 0x0b, 0x0d, - 0x0b, 0x0a, 0x0a, 0x0d, 0x07, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0b, 0x0b, - 0x0b, 0x05, 0x09, 0x09, 0x09, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x09, 0x12, 0x09, 0x12, 0x06, 0x05, 0x03, 0x0a, 0x05, 0x04, 0x02, 0x00, - 0x00, 0x12, 0x12, 0x05, 0x03, 0x0b, 0x0a, 0x0f, 0x10, 0x10, 0x0b, 0x0a, - 0x0e, 0x06, 0x07, 0x11, 0x11, 0x0d, 0x0a, 0x0d, 0x0c, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0a, 0x0d, 0x0a, 0x0b, 0x12, 0x0e, 0x0c, 0x0b, 0x10, 0x0d, - 0x0b, 0x0a, 0x10, 0x0e, 0x0c, 0x0b, 0x11, 0x0e, 0x0a, 0x08, 0x0e, 0x0c, - 0x0d, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x16, 0x13, 0x0d, 0x0a, 0x11, 0x0e, - 0x12, 0x0e, 0x0b, 0x08, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x12, 0x11, 0x0d, - 0x0b, 0x0a, 0x0b, 0x0b, 0x0b, 0x09, 0x07, 0x0b, 0x09, 0x0e, 0x0d, 0x0a, - 0x08, 0x0b, 0x0a, 0x0a, 0x09, 0x0a, 0x09, 0x0c, 0x0b, 0x0d, 0x0b, 0x0e, - 0x0c, 0x13, 0x0f, 0x0d, 0x0c, 0x0b, 0x08, 0x09, 0x08, 0x09, 0x09, 0x09, - 0x09, 0x0a, 0x09, 0x0f, 0x0d, 0x0d, 0x0b, 0x0c, 0x0b, 0x0d, 0x0b, 0x0f, - 0x0c, 0x0f, 0x0c, 0x06, 0x0e, 0x0d, 0x0c, 0x0a, 0x0c, 0x0a, 0x0d, 0x0b, - 0x0d, 0x0b, 0x0c, 0x0b, 0x10, 0x0e, 0x06, 0x0b, 0x0a, 0x0b, 0x0a, 0x0f, - 0x0f, 0x0a, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0e, 0x0d, 0x0a, 0x08, 0x0a, - 0x08, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0b, - 0x08, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0c, 0x0b, 0x0a, 0x07, 0x0f, - 0x0e, 0x09, 0x07, 0x0b, 0x09, 0x0a, 0x09, 0x0b, 0x0b, 0x10, 0x11, 0x10, - 0x0f, 0x0b, 0x09, 0x12, 0x0f, 0x13, 0x10, 0x0d, 0x0a, 0x0d, 0x0c, 0x0a, - 0x08, 0x0c, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, - 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, - 0x0a, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x05, 0x06, 0x05, 0x0d, - 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, - 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, - 0x0b, 0x0d, 0x0b, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, - 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x0b, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x13, 0x17, 0x0b, 0x00, - 0x0a, 0x05, 0x04, 0x08, 0x0c, 0x0a, 0x10, 0x0d, 0x04, 0x06, 0x06, 0x0a, - 0x0a, 0x04, 0x06, 0x04, 0x07, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x04, 0x04, 0x0a, 0x0a, 0x0a, 0x08, 0x10, 0x0c, 0x0c, - 0x0c, 0x0d, 0x0a, 0x09, 0x0d, 0x0e, 0x06, 0x05, 0x0b, 0x0a, 0x11, 0x0e, - 0x0e, 0x0b, 0x0e, 0x0c, 0x0a, 0x0a, 0x0e, 0x0b, 0x11, 0x0a, 0x0a, 0x0a, - 0x06, 0x07, 0x06, 0x0a, 0x08, 0x0b, 0x0a, 0x0b, 0x09, 0x0b, 0x0a, 0x07, - 0x0a, 0x0b, 0x05, 0x05, 0x09, 0x05, 0x11, 0x0b, 0x0a, 0x0b, 0x0b, 0x08, - 0x09, 0x06, 0x0b, 0x0a, 0x0e, 0x0a, 0x0a, 0x08, 0x07, 0x0a, 0x07, 0x0a, - 0x05, 0x04, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x10, 0x07, 0x0a, - 0x0a, 0x06, 0x10, 0x0a, 0x08, 0x0a, 0x06, 0x06, 0x0b, 0x0b, 0x0c, 0x04, - 0x04, 0x06, 0x07, 0x0a, 0x0e, 0x0e, 0x0e, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x10, 0x0c, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x06, 0x06, 0x06, - 0x0d, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0a, 0x0e, 0x0e, 0x0e, 0x0e, - 0x0e, 0x0a, 0x0b, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x10, 0x09, - 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x05, 0x05, 0x05, 0x0a, 0x0b, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0b, 0x0b, 0x0b, 0x0a, 0x0b, 0x0a, - 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x09, - 0x0c, 0x09, 0x0d, 0x0b, 0x0d, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, - 0x0e, 0x0b, 0x0e, 0x0b, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, - 0x06, 0x05, 0x0b, 0x0a, 0x05, 0x05, 0x0b, 0x09, 0x09, 0x0a, 0x05, 0x0a, - 0x05, 0x0a, 0x05, 0x0a, 0x06, 0x0a, 0x05, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, - 0x0b, 0x0d, 0x0e, 0x0b, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x11, 0x11, - 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0a, 0x09, 0x0a, 0x09, 0x0a, 0x09, - 0x0a, 0x09, 0x0a, 0x06, 0x0a, 0x06, 0x0a, 0x06, 0x0e, 0x0b, 0x0e, 0x0b, - 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x11, 0x0e, 0x0a, 0x0a, - 0x0a, 0x0a, 0x08, 0x0a, 0x08, 0x0a, 0x08, 0x05, 0x0a, 0x0c, 0x0a, 0x10, - 0x10, 0x0e, 0x0a, 0x0a, 0x09, 0x0b, 0x0b, 0x0b, 0x0b, 0x05, 0x0b, 0x04, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0c, 0x04, 0x0b, 0x0e, 0x09, 0x0f, 0x0d, 0x0f, - 0x06, 0x0c, 0x0c, 0x0a, 0x0b, 0x0a, 0x0a, 0x0e, 0x0e, 0x06, 0x0b, 0x0c, - 0x11, 0x0e, 0x0a, 0x0e, 0x0e, 0x0b, 0x0a, 0x0a, 0x0a, 0x0e, 0x0a, 0x0e, - 0x0e, 0x06, 0x0a, 0x0b, 0x08, 0x0b, 0x06, 0x0b, 0x0b, 0x0b, 0x0a, 0x0a, - 0x08, 0x09, 0x0b, 0x0a, 0x06, 0x09, 0x0a, 0x0b, 0x0a, 0x09, 0x0a, 0x0c, - 0x0b, 0x09, 0x0a, 0x09, 0x0b, 0x0d, 0x0a, 0x0e, 0x0e, 0x06, 0x0b, 0x0a, - 0x0b, 0x0e, 0x0a, 0x0d, 0x0a, 0x0c, 0x0a, 0x06, 0x06, 0x05, 0x11, 0x12, - 0x0d, 0x0b, 0x0b, 0x0e, 0x0c, 0x0b, 0x0c, 0x0a, 0x0c, 0x0a, 0x10, 0x0a, - 0x0e, 0x0e, 0x0b, 0x0d, 0x11, 0x0e, 0x0e, 0x0e, 0x0b, 0x0c, 0x0a, 0x0b, - 0x0e, 0x0a, 0x0e, 0x0c, 0x12, 0x12, 0x0c, 0x10, 0x0c, 0x0c, 0x14, 0x0c, - 0x0a, 0x0a, 0x0a, 0x07, 0x0b, 0x0a, 0x0e, 0x08, 0x0b, 0x0b, 0x09, 0x0a, - 0x0e, 0x0b, 0x0a, 0x0b, 0x0b, 0x09, 0x09, 0x0a, 0x0d, 0x0a, 0x0b, 0x0b, - 0x11, 0x11, 0x0d, 0x0f, 0x0a, 0x09, 0x0f, 0x0a, 0x0a, 0x0b, 0x07, 0x09, - 0x09, 0x05, 0x05, 0x05, 0x0f, 0x10, 0x0b, 0x09, 0x0a, 0x0b, 0x0a, 0x08, - 0x11, 0x0e, 0x11, 0x0e, 0x11, 0x0e, 0x0a, 0x0a, 0x0a, 0x13, 0x13, 0x08, - 0x03, 0x03, 0x04, 0x03, 0x07, 0x07, 0x07, 0x08, 0x08, 0x07, 0x0f, 0x17, - 0x04, 0x08, 0x06, 0x06, 0x09, 0x02, 0x07, 0x0a, 0x0a, 0x0e, 0x0a, 0x0f, - 0x0a, 0x13, 0x0e, 0x0e, 0x0c, 0x0e, 0x0e, 0x0e, 0x0e, 0x0b, 0x0b, 0x0e, - 0x0b, 0x0a, 0x0a, 0x0d, 0x07, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x0c, 0x0c, - 0x0b, 0x05, 0x0a, 0x0a, 0x0a, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, - 0x0a, 0x13, 0x0a, 0x13, 0x06, 0x05, 0x03, 0x0a, 0x05, 0x04, 0x02, 0x00, - 0x00, 0x13, 0x13, 0x05, 0x03, 0x0b, 0x0a, 0x10, 0x11, 0x11, 0x0c, 0x0a, - 0x0f, 0x06, 0x08, 0x12, 0x12, 0x0e, 0x0a, 0x0e, 0x0c, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0a, 0x0e, 0x0a, 0x0b, 0x13, 0x0f, 0x0c, 0x0b, 0x11, 0x0e, - 0x0c, 0x0b, 0x11, 0x0f, 0x0e, 0x0d, 0x13, 0x11, 0x0a, 0x08, 0x0e, 0x0e, - 0x0e, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x16, 0x14, 0x0e, 0x0b, 0x12, 0x0f, - 0x13, 0x0f, 0x0c, 0x09, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x13, 0x12, 0x0e, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x07, 0x0c, 0x0a, 0x10, 0x0e, 0x0a, - 0x08, 0x0c, 0x0a, 0x0b, 0x09, 0x0b, 0x09, 0x0d, 0x0b, 0x0e, 0x0b, 0x0f, - 0x0c, 0x14, 0x10, 0x0e, 0x0c, 0x0c, 0x09, 0x0a, 0x09, 0x0a, 0x09, 0x0a, - 0x09, 0x0a, 0x0a, 0x10, 0x0d, 0x0d, 0x0b, 0x0c, 0x0b, 0x0e, 0x0b, 0x0f, - 0x0c, 0x0f, 0x0c, 0x06, 0x10, 0x0e, 0x0d, 0x0a, 0x0d, 0x0a, 0x0e, 0x0b, - 0x0e, 0x0b, 0x0c, 0x0b, 0x11, 0x0e, 0x06, 0x0c, 0x0a, 0x0c, 0x0a, 0x10, - 0x10, 0x0a, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x10, 0x0e, 0x0a, 0x08, 0x0a, - 0x09, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0c, - 0x09, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0c, 0x0b, 0x0a, 0x07, 0x10, - 0x0f, 0x09, 0x07, 0x0b, 0x0a, 0x0a, 0x0a, 0x0b, 0x0b, 0x11, 0x11, 0x11, - 0x0f, 0x0b, 0x09, 0x13, 0x10, 0x14, 0x11, 0x0e, 0x0a, 0x0d, 0x0c, 0x0a, - 0x08, 0x0d, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, - 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, - 0x0a, 0x0c, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, - 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x06, 0x05, 0x06, 0x05, 0x0e, - 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, - 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, - 0x0b, 0x0e, 0x0b, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, - 0x0c, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0b, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x14, 0x18, 0x0c, 0x00, - 0x0a, 0x05, 0x05, 0x08, 0x0d, 0x0b, 0x11, 0x0e, 0x05, 0x06, 0x06, 0x0b, - 0x0b, 0x05, 0x06, 0x05, 0x07, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0b, 0x05, 0x05, 0x0b, 0x0b, 0x0b, 0x09, 0x11, 0x0d, 0x0c, - 0x0c, 0x0e, 0x0b, 0x0a, 0x0e, 0x0d, 0x07, 0x06, 0x0b, 0x0a, 0x11, 0x0e, - 0x10, 0x0c, 0x10, 0x0c, 0x0b, 0x0b, 0x0d, 0x0c, 0x12, 0x0b, 0x0b, 0x0b, - 0x06, 0x07, 0x06, 0x0b, 0x08, 0x0c, 0x0b, 0x0c, 0x09, 0x0c, 0x0a, 0x07, - 0x0b, 0x0c, 0x05, 0x05, 0x0a, 0x05, 0x13, 0x0c, 0x0b, 0x0c, 0x0c, 0x08, - 0x09, 0x07, 0x0c, 0x0a, 0x0f, 0x0a, 0x0a, 0x09, 0x07, 0x0b, 0x07, 0x0b, - 0x05, 0x05, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x09, 0x0c, 0x11, 0x07, 0x0a, - 0x0b, 0x06, 0x11, 0x0a, 0x09, 0x0b, 0x07, 0x07, 0x0c, 0x0c, 0x0d, 0x05, - 0x04, 0x07, 0x07, 0x0a, 0x0f, 0x0f, 0x0f, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x11, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x07, 0x07, 0x07, 0x07, - 0x0e, 0x0e, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0b, 0x10, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0b, 0x0c, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x11, 0x09, - 0x0a, 0x0a, 0x0a, 0x0a, 0x05, 0x05, 0x05, 0x05, 0x0b, 0x0c, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x0c, 0x0a, - 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0c, 0x09, 0x0c, 0x09, 0x0c, 0x09, - 0x0c, 0x09, 0x0e, 0x0c, 0x0e, 0x0c, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, - 0x0b, 0x0a, 0x0b, 0x0a, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, - 0x0d, 0x0c, 0x0d, 0x0c, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, 0x07, 0x05, - 0x07, 0x05, 0x0d, 0x0a, 0x06, 0x05, 0x0b, 0x0a, 0x0a, 0x0a, 0x05, 0x0a, - 0x05, 0x0a, 0x05, 0x0a, 0x06, 0x0a, 0x05, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, - 0x0c, 0x0e, 0x0e, 0x0c, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x12, 0x12, - 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, - 0x0b, 0x09, 0x0b, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x0d, 0x0c, 0x0d, 0x0c, - 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x12, 0x0f, 0x0b, 0x0a, - 0x0b, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x06, 0x0b, 0x0d, 0x0b, 0x11, - 0x11, 0x10, 0x0b, 0x0b, 0x09, 0x0c, 0x0c, 0x0b, 0x0c, 0x05, 0x0c, 0x04, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0d, 0x05, 0x0d, 0x0f, 0x09, 0x11, 0x0d, 0x11, - 0x06, 0x0d, 0x0c, 0x0b, 0x0c, 0x0b, 0x0b, 0x0d, 0x10, 0x07, 0x0b, 0x0c, - 0x11, 0x0e, 0x0b, 0x10, 0x0d, 0x0c, 0x0b, 0x0b, 0x0b, 0x0f, 0x0b, 0x0f, - 0x10, 0x07, 0x0b, 0x0c, 0x08, 0x0c, 0x06, 0x0c, 0x0c, 0x0c, 0x0b, 0x0b, - 0x08, 0x09, 0x0c, 0x0b, 0x06, 0x0a, 0x0a, 0x0c, 0x0a, 0x09, 0x0b, 0x0d, - 0x0c, 0x09, 0x0b, 0x09, 0x0c, 0x0d, 0x0a, 0x0f, 0x0f, 0x06, 0x0c, 0x0b, - 0x0c, 0x0f, 0x0b, 0x0e, 0x0b, 0x0c, 0x0b, 0x07, 0x07, 0x06, 0x13, 0x13, - 0x0e, 0x0b, 0x0c, 0x0d, 0x0d, 0x0c, 0x0c, 0x0b, 0x0d, 0x0b, 0x11, 0x0b, - 0x0e, 0x0e, 0x0b, 0x0d, 0x11, 0x0d, 0x10, 0x0d, 0x0c, 0x0c, 0x0b, 0x0c, - 0x0f, 0x0b, 0x0d, 0x0d, 0x13, 0x13, 0x0d, 0x10, 0x0c, 0x0d, 0x15, 0x0c, - 0x0b, 0x0b, 0x0b, 0x08, 0x0b, 0x0a, 0x0f, 0x08, 0x0c, 0x0c, 0x0a, 0x0b, - 0x0e, 0x0c, 0x0b, 0x0c, 0x0c, 0x09, 0x09, 0x0a, 0x0f, 0x0a, 0x0c, 0x0c, - 0x11, 0x11, 0x0e, 0x10, 0x0b, 0x09, 0x11, 0x0b, 0x0a, 0x0c, 0x08, 0x09, - 0x09, 0x05, 0x05, 0x05, 0x11, 0x11, 0x0c, 0x0a, 0x0a, 0x0c, 0x09, 0x08, - 0x12, 0x0f, 0x12, 0x0f, 0x12, 0x0f, 0x0b, 0x0a, 0x0a, 0x14, 0x14, 0x08, - 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x0a, 0x0a, 0x08, 0x0f, 0x17, - 0x05, 0x08, 0x06, 0x06, 0x0a, 0x03, 0x07, 0x0b, 0x0b, 0x0f, 0x0b, 0x10, - 0x0a, 0x14, 0x0f, 0x10, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0c, 0x0e, - 0x0c, 0x0b, 0x0b, 0x0e, 0x08, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0c, 0x0c, - 0x0c, 0x05, 0x0a, 0x0a, 0x0a, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x0a, 0x14, 0x0a, 0x14, 0x07, 0x05, 0x03, 0x0b, 0x05, 0x04, 0x02, 0x00, - 0x00, 0x14, 0x14, 0x05, 0x04, 0x0c, 0x0b, 0x11, 0x11, 0x13, 0x0d, 0x0b, - 0x10, 0x07, 0x08, 0x12, 0x12, 0x10, 0x0b, 0x0f, 0x0d, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0b, 0x0e, 0x0a, 0x0c, 0x13, 0x10, 0x0d, 0x0c, 0x12, 0x0e, - 0x0d, 0x0b, 0x12, 0x0f, 0x0f, 0x0d, 0x13, 0x11, 0x0b, 0x08, 0x0f, 0x0f, - 0x10, 0x0b, 0x0c, 0x0a, 0x0c, 0x0a, 0x18, 0x15, 0x10, 0x0c, 0x12, 0x10, - 0x13, 0x10, 0x0c, 0x09, 0x0c, 0x0b, 0x0c, 0x0c, 0x0c, 0x14, 0x13, 0x0e, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x08, 0x0c, 0x0a, 0x11, 0x0f, 0x0b, - 0x08, 0x0c, 0x0b, 0x0b, 0x0a, 0x0b, 0x0a, 0x0d, 0x0c, 0x0d, 0x0c, 0x0f, - 0x0e, 0x15, 0x11, 0x0f, 0x0c, 0x0c, 0x09, 0x0b, 0x09, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0a, 0x11, 0x0f, 0x0d, 0x0d, 0x0d, 0x0c, 0x0d, 0x0c, 0x10, - 0x0d, 0x10, 0x0d, 0x07, 0x11, 0x0f, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0c, - 0x0d, 0x0c, 0x0d, 0x0c, 0x11, 0x0e, 0x07, 0x0d, 0x0b, 0x0d, 0x0b, 0x11, - 0x11, 0x0b, 0x0a, 0x0f, 0x0a, 0x0f, 0x0a, 0x11, 0x0f, 0x0b, 0x08, 0x0b, - 0x09, 0x0e, 0x0c, 0x0e, 0x0c, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x0d, - 0x09, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x0d, 0x0c, 0x0b, 0x08, 0x10, - 0x10, 0x0a, 0x08, 0x0c, 0x0a, 0x0b, 0x0a, 0x0c, 0x0c, 0x12, 0x12, 0x11, - 0x0f, 0x0b, 0x09, 0x13, 0x11, 0x13, 0x12, 0x0f, 0x0b, 0x0e, 0x0e, 0x0b, - 0x08, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, - 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, - 0x0b, 0x0d, 0x0b, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, - 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x07, 0x05, 0x07, 0x05, 0x10, - 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, - 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x10, 0x0b, 0x0d, - 0x0c, 0x0d, 0x0c, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, - 0x0d, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, 0x0c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x15, 0x1a, 0x0d, 0x00, - 0x0b, 0x05, 0x06, 0x08, 0x0e, 0x0c, 0x11, 0x0f, 0x04, 0x06, 0x06, 0x0c, - 0x0c, 0x06, 0x07, 0x06, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x06, 0x06, 0x0c, 0x0c, 0x0c, 0x09, 0x12, 0x0d, 0x0d, - 0x0d, 0x0e, 0x0b, 0x0a, 0x0e, 0x0f, 0x08, 0x06, 0x0c, 0x0a, 0x12, 0x0f, - 0x0f, 0x0c, 0x0f, 0x0d, 0x0b, 0x0a, 0x0f, 0x0c, 0x13, 0x0b, 0x0c, 0x0b, - 0x06, 0x08, 0x06, 0x0b, 0x09, 0x0c, 0x0b, 0x0c, 0x0a, 0x0c, 0x0b, 0x07, - 0x0b, 0x0c, 0x05, 0x05, 0x0a, 0x05, 0x13, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, - 0x09, 0x07, 0x0c, 0x0b, 0x10, 0x0b, 0x0b, 0x09, 0x07, 0x0c, 0x07, 0x0c, - 0x05, 0x06, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x0c, 0x11, 0x07, 0x0a, - 0x0c, 0x07, 0x11, 0x0b, 0x09, 0x0c, 0x07, 0x07, 0x0c, 0x0c, 0x0e, 0x06, - 0x04, 0x07, 0x07, 0x0a, 0x0f, 0x0f, 0x0f, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x12, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x08, 0x08, 0x08, - 0x0e, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0c, 0x0f, 0x0f, 0x0f, 0x0f, - 0x0f, 0x0c, 0x0c, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x12, 0x0a, - 0x0b, 0x0b, 0x0b, 0x0b, 0x05, 0x05, 0x05, 0x05, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0b, 0x0c, 0x0b, - 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, - 0x0d, 0x0a, 0x0e, 0x0c, 0x0e, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, - 0x0f, 0x0c, 0x0f, 0x0c, 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, 0x08, 0x05, - 0x08, 0x05, 0x0d, 0x0b, 0x06, 0x05, 0x0c, 0x0a, 0x0a, 0x0a, 0x05, 0x0a, - 0x05, 0x0a, 0x05, 0x0a, 0x06, 0x0a, 0x05, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, - 0x0c, 0x0e, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x13, 0x14, - 0x0d, 0x08, 0x0d, 0x08, 0x0d, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, - 0x0b, 0x09, 0x0a, 0x07, 0x0a, 0x07, 0x0a, 0x07, 0x0f, 0x0c, 0x0f, 0x0c, - 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x13, 0x10, 0x0c, 0x0b, - 0x0c, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x06, 0x0c, 0x0d, 0x0b, 0x12, - 0x12, 0x0f, 0x0c, 0x0b, 0x09, 0x0c, 0x0c, 0x0c, 0x0c, 0x05, 0x0c, 0x04, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0d, 0x06, 0x0d, 0x10, 0x0a, 0x10, 0x0e, 0x11, - 0x06, 0x0d, 0x0d, 0x0b, 0x0c, 0x0b, 0x0b, 0x0f, 0x0f, 0x08, 0x0c, 0x0d, - 0x12, 0x0f, 0x0b, 0x0f, 0x0f, 0x0c, 0x0b, 0x0a, 0x0c, 0x10, 0x0b, 0x10, - 0x0f, 0x08, 0x0c, 0x0c, 0x09, 0x0c, 0x06, 0x0c, 0x0c, 0x0d, 0x0b, 0x0c, - 0x09, 0x09, 0x0c, 0x0c, 0x06, 0x0a, 0x0b, 0x0c, 0x0b, 0x0a, 0x0c, 0x0d, - 0x0c, 0x0a, 0x0c, 0x09, 0x0c, 0x0f, 0x0b, 0x10, 0x0f, 0x06, 0x0c, 0x0c, - 0x0c, 0x0f, 0x0b, 0x0f, 0x0b, 0x0d, 0x0b, 0x08, 0x08, 0x06, 0x13, 0x14, - 0x0f, 0x0c, 0x0c, 0x0f, 0x0d, 0x0c, 0x0d, 0x0b, 0x0e, 0x0b, 0x12, 0x0b, - 0x0f, 0x0f, 0x0c, 0x0e, 0x12, 0x0f, 0x0f, 0x0f, 0x0c, 0x0d, 0x0a, 0x0c, - 0x10, 0x0b, 0x0f, 0x0e, 0x14, 0x14, 0x0e, 0x11, 0x0d, 0x0d, 0x15, 0x0d, - 0x0b, 0x0c, 0x0b, 0x08, 0x0c, 0x0b, 0x0f, 0x09, 0x0c, 0x0c, 0x0a, 0x0c, - 0x0f, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x09, 0x0b, 0x0f, 0x0b, 0x0c, 0x0c, - 0x11, 0x11, 0x0e, 0x10, 0x0b, 0x0a, 0x12, 0x0b, 0x0b, 0x0c, 0x08, 0x0a, - 0x09, 0x05, 0x05, 0x05, 0x11, 0x12, 0x0c, 0x0a, 0x0b, 0x0c, 0x0a, 0x08, - 0x13, 0x10, 0x13, 0x10, 0x13, 0x10, 0x0c, 0x0b, 0x0b, 0x15, 0x15, 0x09, - 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x0a, 0x0a, 0x09, 0x12, 0x19, - 0x04, 0x08, 0x06, 0x06, 0x0a, 0x03, 0x07, 0x0c, 0x0c, 0x10, 0x0c, 0x11, - 0x0b, 0x15, 0x11, 0x0f, 0x0d, 0x10, 0x10, 0x10, 0x10, 0x0c, 0x0c, 0x0f, - 0x0c, 0x0c, 0x0c, 0x0f, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0b, 0x0c, 0x0c, - 0x0c, 0x05, 0x0b, 0x0b, 0x0b, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x0b, 0x15, 0x0b, 0x15, 0x07, 0x05, 0x04, 0x0c, 0x06, 0x04, 0x02, 0x00, - 0x00, 0x15, 0x15, 0x05, 0x04, 0x0d, 0x0c, 0x11, 0x12, 0x13, 0x0d, 0x0b, - 0x10, 0x07, 0x08, 0x13, 0x13, 0x0f, 0x0c, 0x10, 0x0d, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0b, 0x0f, 0x0b, 0x0c, 0x14, 0x11, 0x0d, 0x0c, 0x13, 0x0f, - 0x0d, 0x0b, 0x12, 0x0f, 0x0e, 0x0d, 0x14, 0x11, 0x0b, 0x09, 0x10, 0x10, - 0x0f, 0x0c, 0x0c, 0x0b, 0x0c, 0x0b, 0x1a, 0x16, 0x10, 0x0d, 0x13, 0x11, - 0x14, 0x11, 0x0d, 0x0a, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x15, 0x14, 0x10, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0a, 0x08, 0x0d, 0x0b, 0x12, 0x0f, 0x0b, - 0x09, 0x0d, 0x0b, 0x0c, 0x0a, 0x0c, 0x0a, 0x0e, 0x0d, 0x0f, 0x0c, 0x11, - 0x0e, 0x16, 0x12, 0x10, 0x0d, 0x0d, 0x0a, 0x0a, 0x09, 0x0c, 0x0b, 0x0c, - 0x0b, 0x0b, 0x0b, 0x11, 0x0f, 0x0e, 0x0d, 0x0e, 0x0c, 0x0f, 0x0c, 0x11, - 0x0e, 0x11, 0x0e, 0x08, 0x12, 0x0f, 0x0e, 0x0b, 0x0e, 0x0c, 0x0f, 0x0c, - 0x0f, 0x0c, 0x0e, 0x0c, 0x12, 0x0f, 0x08, 0x0d, 0x0b, 0x0d, 0x0b, 0x12, - 0x12, 0x0b, 0x0b, 0x0f, 0x0b, 0x0f, 0x0b, 0x12, 0x0f, 0x0b, 0x09, 0x0b, - 0x0a, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0d, - 0x0a, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0e, 0x0c, 0x0b, 0x08, 0x11, - 0x10, 0x0a, 0x08, 0x0d, 0x0b, 0x0b, 0x0b, 0x0c, 0x0c, 0x12, 0x12, 0x12, - 0x10, 0x0c, 0x0a, 0x14, 0x12, 0x15, 0x12, 0x0f, 0x0c, 0x0e, 0x0e, 0x0b, - 0x09, 0x0e, 0x0c, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, - 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, - 0x0b, 0x0d, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, - 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x08, 0x05, 0x08, 0x05, 0x0f, - 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, - 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, - 0x0c, 0x0f, 0x0c, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, - 0x0d, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x16, 0x1a, 0x0d, 0x00, - 0x0b, 0x06, 0x06, 0x08, 0x0e, 0x0c, 0x12, 0x0f, 0x04, 0x07, 0x07, 0x0c, - 0x0c, 0x06, 0x07, 0x06, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x06, 0x06, 0x0c, 0x0c, 0x0c, 0x09, 0x13, 0x0d, 0x0e, - 0x0d, 0x0f, 0x0c, 0x0b, 0x0f, 0x0f, 0x08, 0x06, 0x0d, 0x0b, 0x13, 0x10, - 0x10, 0x0d, 0x10, 0x0d, 0x0b, 0x0b, 0x0f, 0x0d, 0x13, 0x0c, 0x0c, 0x0c, - 0x07, 0x08, 0x07, 0x0c, 0x09, 0x0d, 0x0c, 0x0d, 0x0a, 0x0d, 0x0c, 0x07, - 0x0b, 0x0d, 0x06, 0x06, 0x0b, 0x06, 0x14, 0x0d, 0x0d, 0x0d, 0x0d, 0x09, - 0x0a, 0x07, 0x0d, 0x0b, 0x10, 0x0b, 0x0b, 0x0a, 0x08, 0x0c, 0x08, 0x0c, - 0x06, 0x06, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0b, 0x0d, 0x12, 0x07, 0x0b, - 0x0c, 0x07, 0x12, 0x0b, 0x09, 0x0c, 0x07, 0x07, 0x0d, 0x0d, 0x0e, 0x06, - 0x05, 0x07, 0x08, 0x0b, 0x10, 0x10, 0x10, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x13, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x08, 0x08, 0x08, - 0x0f, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0c, 0x10, 0x0f, 0x0f, 0x0f, - 0x0f, 0x0c, 0x0d, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x12, 0x0a, - 0x0c, 0x0c, 0x0c, 0x0c, 0x06, 0x06, 0x06, 0x06, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x0c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, - 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x0a, - 0x0d, 0x0a, 0x0f, 0x0d, 0x0f, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0f, 0x0b, 0x0f, 0x0b, 0x0f, 0x0b, 0x0f, 0x0b, - 0x0f, 0x0d, 0x0f, 0x0d, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x0d, 0x0c, 0x06, 0x06, 0x0d, 0x0b, 0x0b, 0x0b, 0x06, 0x0b, - 0x06, 0x0b, 0x06, 0x0b, 0x07, 0x0b, 0x06, 0x10, 0x0d, 0x10, 0x0d, 0x10, - 0x0d, 0x0f, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x14, 0x15, - 0x0d, 0x09, 0x0d, 0x09, 0x0d, 0x09, 0x0b, 0x0a, 0x0b, 0x0a, 0x0b, 0x0a, - 0x0b, 0x0a, 0x0b, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x0f, 0x0d, 0x0f, 0x0d, - 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x13, 0x10, 0x0c, 0x0b, - 0x0c, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x06, 0x0c, 0x0d, 0x0c, 0x13, - 0x12, 0x10, 0x0d, 0x0b, 0x0a, 0x0d, 0x0d, 0x0c, 0x0d, 0x06, 0x0d, 0x04, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x06, 0x0d, 0x11, 0x0a, 0x11, 0x0f, 0x11, - 0x07, 0x0d, 0x0e, 0x0c, 0x0d, 0x0c, 0x0c, 0x0f, 0x10, 0x08, 0x0d, 0x0d, - 0x13, 0x10, 0x0c, 0x10, 0x0f, 0x0d, 0x0c, 0x0b, 0x0c, 0x10, 0x0c, 0x10, - 0x10, 0x08, 0x0c, 0x0d, 0x0a, 0x0d, 0x07, 0x0d, 0x0d, 0x0d, 0x0b, 0x0d, - 0x0a, 0x0a, 0x0d, 0x0d, 0x07, 0x0b, 0x0b, 0x0d, 0x0b, 0x0a, 0x0d, 0x0e, - 0x0d, 0x0a, 0x0d, 0x0a, 0x0d, 0x10, 0x0c, 0x10, 0x10, 0x07, 0x0d, 0x0d, - 0x0d, 0x10, 0x0c, 0x0f, 0x0c, 0x0d, 0x0b, 0x08, 0x08, 0x06, 0x14, 0x15, - 0x0f, 0x0d, 0x0d, 0x0f, 0x0d, 0x0d, 0x0e, 0x0c, 0x0e, 0x0c, 0x12, 0x0c, - 0x10, 0x10, 0x0d, 0x0f, 0x13, 0x0f, 0x10, 0x0f, 0x0d, 0x0d, 0x0b, 0x0d, - 0x10, 0x0c, 0x0f, 0x0f, 0x16, 0x16, 0x0f, 0x12, 0x0e, 0x0d, 0x17, 0x0d, - 0x0c, 0x0d, 0x0c, 0x09, 0x0c, 0x0c, 0x10, 0x0a, 0x0d, 0x0d, 0x0b, 0x0c, - 0x10, 0x0d, 0x0d, 0x0d, 0x0d, 0x0a, 0x0a, 0x0b, 0x10, 0x0b, 0x0d, 0x0d, - 0x14, 0x14, 0x0e, 0x11, 0x0c, 0x0a, 0x13, 0x0c, 0x0c, 0x0d, 0x09, 0x0a, - 0x0a, 0x06, 0x06, 0x06, 0x12, 0x13, 0x0d, 0x0b, 0x0b, 0x0d, 0x0a, 0x09, - 0x13, 0x10, 0x13, 0x10, 0x13, 0x10, 0x0c, 0x0b, 0x0b, 0x16, 0x16, 0x09, - 0x04, 0x04, 0x05, 0x04, 0x08, 0x08, 0x08, 0x0b, 0x0b, 0x08, 0x12, 0x1a, - 0x04, 0x08, 0x07, 0x07, 0x0b, 0x03, 0x08, 0x0c, 0x0c, 0x11, 0x0c, 0x12, - 0x0b, 0x16, 0x11, 0x10, 0x0e, 0x11, 0x11, 0x11, 0x11, 0x0d, 0x0d, 0x0f, - 0x0d, 0x0c, 0x0c, 0x0f, 0x08, 0x0c, 0x0c, 0x0c, 0x0c, 0x0d, 0x0d, 0x0d, - 0x0c, 0x06, 0x0b, 0x0b, 0x0b, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x0b, 0x16, 0x0b, 0x16, 0x07, 0x06, 0x04, 0x0c, 0x06, 0x04, 0x02, 0x00, - 0x00, 0x16, 0x16, 0x06, 0x04, 0x0d, 0x0c, 0x12, 0x13, 0x14, 0x0d, 0x0c, - 0x11, 0x07, 0x09, 0x14, 0x14, 0x10, 0x0d, 0x10, 0x0e, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0c, 0x10, 0x0c, 0x0d, 0x16, 0x11, 0x0e, 0x0d, 0x14, 0x10, - 0x0d, 0x0c, 0x13, 0x11, 0x0e, 0x0e, 0x14, 0x12, 0x0c, 0x0a, 0x10, 0x10, - 0x10, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x1a, 0x17, 0x11, 0x0e, 0x15, 0x11, - 0x16, 0x12, 0x0d, 0x0a, 0x0d, 0x0c, 0x0d, 0x0d, 0x0d, 0x16, 0x15, 0x10, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x09, 0x0e, 0x0c, 0x12, 0x10, 0x0c, - 0x0a, 0x0e, 0x0c, 0x0d, 0x0b, 0x0d, 0x0b, 0x0e, 0x0d, 0x0f, 0x0d, 0x11, - 0x0f, 0x17, 0x13, 0x10, 0x0e, 0x0d, 0x0a, 0x0b, 0x0a, 0x0c, 0x0a, 0x0c, - 0x0a, 0x0c, 0x0b, 0x12, 0x0f, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x12, - 0x0e, 0x12, 0x0e, 0x08, 0x12, 0x10, 0x0f, 0x0c, 0x0f, 0x0c, 0x0f, 0x0d, - 0x0f, 0x0d, 0x0f, 0x0d, 0x13, 0x10, 0x08, 0x0d, 0x0c, 0x0d, 0x0c, 0x13, - 0x12, 0x0c, 0x0c, 0x0f, 0x0c, 0x0f, 0x0c, 0x12, 0x10, 0x0c, 0x0a, 0x0c, - 0x0a, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x0d, - 0x0a, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0f, 0x0d, 0x0c, 0x09, 0x12, - 0x11, 0x0b, 0x09, 0x0d, 0x0c, 0x0c, 0x0b, 0x0d, 0x0d, 0x14, 0x13, 0x14, - 0x11, 0x0d, 0x0b, 0x16, 0x12, 0x16, 0x13, 0x10, 0x0d, 0x0f, 0x0f, 0x0c, - 0x0a, 0x0f, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, - 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, - 0x0c, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x06, 0x08, 0x06, 0x10, - 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, - 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x10, 0x0d, 0x0f, - 0x0d, 0x0f, 0x0d, 0x10, 0x0e, 0x10, 0x0e, 0x10, 0x0e, 0x10, 0x0e, 0x10, - 0x0e, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0d, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x05, 0x05, 0x17, 0x1c, 0x0e, 0x00, - 0x0c, 0x06, 0x06, 0x08, 0x0f, 0x0d, 0x13, 0x10, 0x04, 0x07, 0x07, 0x0d, - 0x0d, 0x06, 0x07, 0x06, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x06, 0x06, 0x0d, 0x0d, 0x0d, 0x0a, 0x14, 0x0e, 0x0e, - 0x0e, 0x10, 0x0c, 0x0b, 0x10, 0x10, 0x08, 0x06, 0x0d, 0x0b, 0x14, 0x11, - 0x11, 0x0d, 0x11, 0x0e, 0x0c, 0x0c, 0x10, 0x0d, 0x14, 0x0d, 0x0c, 0x0c, - 0x07, 0x09, 0x07, 0x0c, 0x09, 0x0d, 0x0c, 0x0d, 0x0b, 0x0d, 0x0c, 0x08, - 0x0c, 0x0e, 0x06, 0x06, 0x0b, 0x06, 0x14, 0x0e, 0x0d, 0x0d, 0x0d, 0x09, - 0x0a, 0x08, 0x0e, 0x0b, 0x11, 0x0b, 0x0b, 0x0a, 0x08, 0x0c, 0x08, 0x0d, - 0x06, 0x06, 0x0d, 0x0d, 0x0d, 0x0d, 0x0c, 0x0b, 0x0d, 0x13, 0x08, 0x0b, - 0x0d, 0x07, 0x13, 0x0c, 0x0a, 0x0d, 0x08, 0x08, 0x0d, 0x0e, 0x0f, 0x06, - 0x05, 0x08, 0x08, 0x0b, 0x11, 0x11, 0x11, 0x0a, 0x0e, 0x0e, 0x0e, 0x0e, - 0x0e, 0x0e, 0x14, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x08, 0x08, 0x08, - 0x10, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x0d, 0x11, 0x10, 0x10, 0x10, - 0x10, 0x0c, 0x0d, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x13, 0x0b, - 0x0c, 0x0c, 0x0c, 0x0c, 0x06, 0x06, 0x06, 0x06, 0x0d, 0x0e, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0e, 0x0e, 0x0e, 0x0e, 0x0b, 0x0d, 0x0b, - 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, - 0x0e, 0x0b, 0x10, 0x0d, 0x10, 0x0d, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x0c, 0x10, 0x0c, 0x10, 0x0c, 0x10, 0x0c, 0x10, 0x0c, - 0x10, 0x0e, 0x10, 0x0e, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x08, 0x06, 0x0e, 0x0c, 0x06, 0x06, 0x0d, 0x0b, 0x0b, 0x0b, 0x06, 0x0b, - 0x06, 0x0b, 0x06, 0x0b, 0x08, 0x0b, 0x06, 0x11, 0x0e, 0x11, 0x0e, 0x11, - 0x0e, 0x10, 0x11, 0x0e, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x14, 0x15, - 0x0e, 0x09, 0x0e, 0x09, 0x0e, 0x09, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, - 0x0c, 0x0a, 0x0c, 0x08, 0x0c, 0x08, 0x0c, 0x08, 0x10, 0x0e, 0x10, 0x0e, - 0x10, 0x0e, 0x10, 0x0e, 0x10, 0x0e, 0x10, 0x0e, 0x14, 0x11, 0x0c, 0x0b, - 0x0c, 0x0c, 0x0a, 0x0c, 0x0a, 0x0c, 0x0a, 0x07, 0x0d, 0x0e, 0x0c, 0x14, - 0x13, 0x11, 0x0d, 0x0c, 0x0a, 0x0d, 0x0d, 0x0d, 0x0d, 0x06, 0x0d, 0x04, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0e, 0x06, 0x0e, 0x12, 0x0b, 0x12, 0x0f, 0x12, - 0x08, 0x0e, 0x0e, 0x0c, 0x0d, 0x0c, 0x0c, 0x10, 0x11, 0x08, 0x0d, 0x0e, - 0x14, 0x11, 0x0c, 0x11, 0x10, 0x0d, 0x0c, 0x0c, 0x0c, 0x12, 0x0d, 0x12, - 0x11, 0x08, 0x0c, 0x0d, 0x0a, 0x0e, 0x08, 0x0e, 0x0d, 0x0e, 0x0b, 0x0d, - 0x0a, 0x0a, 0x0e, 0x0d, 0x08, 0x0b, 0x0c, 0x0e, 0x0b, 0x0b, 0x0d, 0x0f, - 0x0d, 0x0b, 0x0d, 0x0a, 0x0e, 0x10, 0x0c, 0x11, 0x10, 0x08, 0x0e, 0x0d, - 0x0e, 0x10, 0x0c, 0x10, 0x0c, 0x0e, 0x0c, 0x08, 0x08, 0x06, 0x15, 0x16, - 0x10, 0x0d, 0x0d, 0x10, 0x0e, 0x0d, 0x0e, 0x0c, 0x0f, 0x0c, 0x12, 0x0d, - 0x11, 0x11, 0x0d, 0x0f, 0x14, 0x10, 0x11, 0x10, 0x0d, 0x0e, 0x0c, 0x0d, - 0x12, 0x0d, 0x10, 0x0f, 0x16, 0x16, 0x0f, 0x13, 0x0e, 0x0e, 0x18, 0x0e, - 0x0c, 0x0d, 0x0d, 0x09, 0x0d, 0x0c, 0x10, 0x0b, 0x0e, 0x0e, 0x0b, 0x0d, - 0x11, 0x0e, 0x0d, 0x0e, 0x0d, 0x0b, 0x0a, 0x0b, 0x10, 0x0b, 0x0e, 0x0d, - 0x14, 0x14, 0x10, 0x12, 0x0d, 0x0b, 0x13, 0x0c, 0x0c, 0x0e, 0x09, 0x0b, - 0x0a, 0x06, 0x06, 0x06, 0x14, 0x15, 0x0e, 0x0b, 0x0b, 0x0e, 0x0b, 0x09, - 0x14, 0x11, 0x14, 0x11, 0x14, 0x11, 0x0c, 0x0b, 0x0c, 0x17, 0x17, 0x09, - 0x04, 0x04, 0x05, 0x04, 0x08, 0x08, 0x08, 0x0a, 0x0a, 0x0a, 0x12, 0x1b, - 0x04, 0x08, 0x08, 0x08, 0x0b, 0x03, 0x08, 0x0d, 0x0d, 0x11, 0x0d, 0x12, - 0x0c, 0x17, 0x12, 0x11, 0x0e, 0x11, 0x11, 0x11, 0x11, 0x0d, 0x0d, 0x10, - 0x0e, 0x0d, 0x0d, 0x10, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0e, 0x0e, - 0x0d, 0x06, 0x0c, 0x0c, 0x0c, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x0c, 0x17, 0x0c, 0x17, 0x08, 0x06, 0x04, 0x0d, 0x06, 0x05, 0x02, 0x00, - 0x00, 0x17, 0x17, 0x06, 0x04, 0x0e, 0x0c, 0x12, 0x14, 0x14, 0x0e, 0x0c, - 0x12, 0x08, 0x09, 0x15, 0x15, 0x11, 0x0d, 0x11, 0x0f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0c, 0x11, 0x0c, 0x0e, 0x16, 0x12, 0x0e, 0x0d, 0x15, 0x10, - 0x0e, 0x0c, 0x14, 0x11, 0x10, 0x0e, 0x16, 0x13, 0x0d, 0x0b, 0x12, 0x11, - 0x11, 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x1c, 0x18, 0x12, 0x0f, 0x15, 0x12, - 0x16, 0x13, 0x0e, 0x0b, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x17, 0x16, 0x11, - 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0b, 0x09, 0x0e, 0x0d, 0x12, 0x10, 0x0d, - 0x0b, 0x0e, 0x0c, 0x0d, 0x0b, 0x0d, 0x0b, 0x0f, 0x0d, 0x10, 0x0e, 0x12, - 0x10, 0x18, 0x14, 0x11, 0x0e, 0x0e, 0x0b, 0x0c, 0x0a, 0x0c, 0x0b, 0x0c, - 0x0b, 0x0d, 0x0b, 0x13, 0x10, 0x0f, 0x0e, 0x0f, 0x0d, 0x10, 0x0e, 0x13, - 0x0f, 0x13, 0x0f, 0x08, 0x12, 0x10, 0x0f, 0x0d, 0x0f, 0x0d, 0x10, 0x0e, - 0x10, 0x0e, 0x0f, 0x0d, 0x14, 0x11, 0x08, 0x0e, 0x0c, 0x0e, 0x0c, 0x14, - 0x13, 0x0c, 0x0c, 0x10, 0x0c, 0x10, 0x0c, 0x12, 0x10, 0x0d, 0x0b, 0x0d, - 0x0b, 0x11, 0x0e, 0x11, 0x0e, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x0e, - 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x0f, 0x0d, 0x0c, 0x09, 0x13, - 0x12, 0x0b, 0x09, 0x0e, 0x0c, 0x0d, 0x0b, 0x0d, 0x0d, 0x14, 0x14, 0x15, - 0x13, 0x0e, 0x0c, 0x16, 0x14, 0x17, 0x15, 0x11, 0x0d, 0x10, 0x0f, 0x0d, - 0x0b, 0x0f, 0x0d, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, - 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, - 0x0c, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, - 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x08, 0x06, 0x08, 0x06, 0x11, - 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, - 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x10, - 0x0e, 0x10, 0x0e, 0x11, 0x0f, 0x11, 0x0f, 0x11, 0x0f, 0x11, 0x0f, 0x11, - 0x0f, 0x0c, 0x0b, 0x0c, 0x0b, 0x0c, 0x0b, 0x0d, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x05, 0x05, 0x18, 0x1c, 0x0e, 0x00, - 0x0c, 0x06, 0x06, 0x0a, 0x10, 0x0d, 0x14, 0x11, 0x05, 0x07, 0x07, 0x0d, - 0x0d, 0x06, 0x08, 0x06, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x06, 0x06, 0x0d, 0x0d, 0x0d, 0x0a, 0x15, 0x0f, 0x0f, - 0x0e, 0x10, 0x0d, 0x0c, 0x11, 0x11, 0x09, 0x07, 0x0e, 0x0c, 0x15, 0x12, - 0x12, 0x0e, 0x12, 0x0e, 0x0d, 0x0d, 0x11, 0x0e, 0x15, 0x0d, 0x0d, 0x0d, - 0x07, 0x09, 0x07, 0x0d, 0x0a, 0x0e, 0x0d, 0x0e, 0x0b, 0x0e, 0x0d, 0x08, - 0x0d, 0x0e, 0x06, 0x06, 0x0c, 0x06, 0x16, 0x0e, 0x0e, 0x0e, 0x0e, 0x0a, - 0x0b, 0x08, 0x0e, 0x0c, 0x12, 0x0c, 0x0c, 0x0b, 0x09, 0x0d, 0x09, 0x0d, - 0x06, 0x06, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0c, 0x0e, 0x14, 0x08, 0x0c, - 0x0d, 0x08, 0x14, 0x0c, 0x0a, 0x0d, 0x08, 0x08, 0x0e, 0x0e, 0x10, 0x06, - 0x05, 0x08, 0x08, 0x0c, 0x12, 0x12, 0x12, 0x0a, 0x0f, 0x0f, 0x0f, 0x0f, - 0x0f, 0x0f, 0x14, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x09, 0x09, 0x09, 0x09, - 0x10, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x0d, 0x12, 0x11, 0x11, 0x11, - 0x11, 0x0d, 0x0e, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x14, 0x0b, - 0x0d, 0x0d, 0x0d, 0x0d, 0x06, 0x06, 0x06, 0x06, 0x0e, 0x0e, 0x0e, 0x0e, - 0x0e, 0x0e, 0x0e, 0x0d, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, - 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x0b, - 0x0e, 0x0b, 0x10, 0x0e, 0x10, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x11, 0x0d, - 0x11, 0x0e, 0x11, 0x0e, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x06, - 0x09, 0x06, 0x0f, 0x0c, 0x07, 0x06, 0x0e, 0x0c, 0x0c, 0x0c, 0x06, 0x0c, - 0x06, 0x0c, 0x06, 0x0c, 0x08, 0x0c, 0x06, 0x12, 0x0e, 0x12, 0x0e, 0x12, - 0x0e, 0x10, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x15, 0x16, - 0x0e, 0x0a, 0x0e, 0x0a, 0x0e, 0x0a, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, - 0x0d, 0x0b, 0x0d, 0x08, 0x0d, 0x08, 0x0d, 0x08, 0x11, 0x0e, 0x11, 0x0e, - 0x11, 0x0e, 0x11, 0x0e, 0x11, 0x0e, 0x11, 0x0e, 0x15, 0x12, 0x0d, 0x0c, - 0x0d, 0x0d, 0x0b, 0x0d, 0x0b, 0x0d, 0x0b, 0x07, 0x0d, 0x0f, 0x0d, 0x14, - 0x14, 0x12, 0x0e, 0x0d, 0x0b, 0x0e, 0x0e, 0x0d, 0x0e, 0x06, 0x0e, 0x04, - 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x06, 0x0e, 0x12, 0x0b, 0x13, 0x10, 0x13, - 0x08, 0x0f, 0x0f, 0x0d, 0x0e, 0x0d, 0x0d, 0x11, 0x12, 0x09, 0x0e, 0x0f, - 0x15, 0x12, 0x0d, 0x12, 0x11, 0x0e, 0x0d, 0x0d, 0x0d, 0x13, 0x0d, 0x13, - 0x12, 0x09, 0x0d, 0x0e, 0x0b, 0x0e, 0x08, 0x0e, 0x0e, 0x0e, 0x0c, 0x0e, - 0x0b, 0x0b, 0x0e, 0x0e, 0x08, 0x0c, 0x0c, 0x0e, 0x0c, 0x0b, 0x0e, 0x0f, - 0x0e, 0x0b, 0x0e, 0x0b, 0x0e, 0x10, 0x0d, 0x12, 0x12, 0x08, 0x0e, 0x0e, - 0x0e, 0x12, 0x0d, 0x11, 0x0d, 0x0e, 0x0d, 0x09, 0x09, 0x07, 0x16, 0x17, - 0x11, 0x0e, 0x0e, 0x11, 0x0f, 0x0e, 0x0f, 0x0d, 0x10, 0x0d, 0x14, 0x0d, - 0x12, 0x12, 0x0e, 0x10, 0x15, 0x11, 0x12, 0x11, 0x0e, 0x0e, 0x0d, 0x0e, - 0x13, 0x0d, 0x11, 0x10, 0x17, 0x17, 0x10, 0x14, 0x0f, 0x0e, 0x19, 0x0e, - 0x0d, 0x0e, 0x0d, 0x0a, 0x0d, 0x0d, 0x10, 0x0b, 0x0e, 0x0e, 0x0c, 0x0d, - 0x11, 0x0e, 0x0e, 0x0e, 0x0e, 0x0b, 0x0a, 0x0c, 0x10, 0x0c, 0x0e, 0x0e, - 0x14, 0x14, 0x10, 0x12, 0x0d, 0x0b, 0x14, 0x0d, 0x0d, 0x0e, 0x0a, 0x0b, - 0x0b, 0x06, 0x06, 0x06, 0x14, 0x15, 0x0e, 0x0c, 0x0c, 0x0e, 0x0c, 0x0a, - 0x15, 0x12, 0x15, 0x12, 0x15, 0x12, 0x0d, 0x0c, 0x0c, 0x18, 0x18, 0x0a, - 0x04, 0x04, 0x05, 0x04, 0x09, 0x09, 0x09, 0x0b, 0x0b, 0x0a, 0x12, 0x1c, - 0x05, 0x0a, 0x08, 0x08, 0x0c, 0x03, 0x08, 0x0d, 0x0d, 0x12, 0x0d, 0x13, - 0x0c, 0x18, 0x13, 0x12, 0x0f, 0x12, 0x12, 0x12, 0x12, 0x0e, 0x0e, 0x11, - 0x0e, 0x0d, 0x0d, 0x11, 0x09, 0x0d, 0x0d, 0x0d, 0x0d, 0x0f, 0x0e, 0x0e, - 0x0d, 0x06, 0x0c, 0x0c, 0x0c, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, - 0x0c, 0x18, 0x0c, 0x18, 0x08, 0x06, 0x04, 0x0d, 0x06, 0x05, 0x02, 0x00, - 0x00, 0x18, 0x18, 0x06, 0x04, 0x0e, 0x0d, 0x14, 0x15, 0x16, 0x0f, 0x0d, - 0x13, 0x08, 0x0a, 0x16, 0x16, 0x12, 0x0e, 0x11, 0x0f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x0d, 0x12, 0x0d, 0x0e, 0x17, 0x13, 0x0f, 0x0e, 0x15, 0x11, - 0x0f, 0x0d, 0x15, 0x12, 0x11, 0x0e, 0x17, 0x14, 0x0d, 0x0b, 0x13, 0x12, - 0x12, 0x0e, 0x0e, 0x0c, 0x0e, 0x0c, 0x1c, 0x19, 0x13, 0x0f, 0x16, 0x13, - 0x17, 0x13, 0x0e, 0x0b, 0x0f, 0x0d, 0x0e, 0x0e, 0x0e, 0x18, 0x17, 0x12, - 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0c, 0x0a, 0x0f, 0x0d, 0x14, 0x10, 0x0d, - 0x0b, 0x0f, 0x0d, 0x0e, 0x0c, 0x0e, 0x0c, 0x10, 0x0e, 0x11, 0x0e, 0x12, - 0x10, 0x19, 0x15, 0x12, 0x0f, 0x0e, 0x0b, 0x0d, 0x0a, 0x0d, 0x0c, 0x0d, - 0x0c, 0x0d, 0x0c, 0x14, 0x11, 0x10, 0x0e, 0x10, 0x0e, 0x11, 0x0e, 0x13, - 0x0f, 0x13, 0x0f, 0x09, 0x14, 0x10, 0x10, 0x0d, 0x10, 0x0d, 0x11, 0x0e, - 0x11, 0x0e, 0x10, 0x0e, 0x15, 0x11, 0x09, 0x0f, 0x0d, 0x0f, 0x0d, 0x14, - 0x14, 0x0d, 0x0d, 0x11, 0x0d, 0x11, 0x0d, 0x14, 0x10, 0x0d, 0x0b, 0x0d, - 0x0b, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x0e, - 0x0b, 0x0e, 0x0c, 0x0e, 0x0c, 0x0e, 0x0c, 0x10, 0x0e, 0x0d, 0x0a, 0x14, - 0x12, 0x0c, 0x0a, 0x0e, 0x0d, 0x0d, 0x0c, 0x0e, 0x0e, 0x15, 0x15, 0x15, - 0x13, 0x0d, 0x0c, 0x17, 0x14, 0x18, 0x15, 0x11, 0x0e, 0x11, 0x0f, 0x0d, - 0x0b, 0x10, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, - 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, 0x0d, 0x0f, - 0x0d, 0x0f, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x09, 0x06, 0x09, 0x06, 0x12, - 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, - 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x12, 0x0e, 0x11, - 0x0e, 0x11, 0x0e, 0x11, 0x0f, 0x11, 0x0f, 0x11, 0x0f, 0x11, 0x0f, 0x11, - 0x0f, 0x0d, 0x0c, 0x0d, 0x0c, 0x0d, 0x0c, 0x0e, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x05, 0x05, 0x00, 0x00, 0x00, 0x03, - 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x02, 0xd8, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x04, 0xe2, - 0x00, 0x04, 0x02, 0xbc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x80, 0x00, 0x06, - 0x00, 0x10, 0x00, 0x7e, 0x01, 0x7f, 0x01, 0x92, 0x01, 0xa1, 0x01, 0xb0, - 0x01, 0xf0, 0x01, 0xff, 0x02, 0x19, 0x02, 0xbc, 0x02, 0xc7, 0x02, 0xc9, - 0x02, 0xdd, 0x02, 0xf3, 0x03, 0x01, 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, - 0x03, 0x23, 0x03, 0x8a, 0x03, 0x8c, 0x03, 0xa1, 0x03, 0xce, 0x03, 0xd2, - 0x03, 0xd6, 0x04, 0x0d, 0x04, 0x4f, 0x04, 0x5f, 0x04, 0x86, 0x04, 0x91, - 0x05, 0x13, 0x1e, 0x01, 0x1e, 0x3f, 0x1e, 0x85, 0x1e, 0xf1, 0x1e, 0xf9, - 0x1f, 0x4d, 0x20, 0x0b, 0x20, 0x15, 0x20, 0x1e, 0x20, 0x22, 0x20, 0x26, - 0x20, 0x30, 0x20, 0x33, 0x20, 0x3a, 0x20, 0x3c, 0x20, 0x44, 0x20, 0x7f, - 0x20, 0xa4, 0x20, 0xa7, 0x20, 0xac, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, - 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5e, 0x22, 0x02, 0x22, 0x06, - 0x22, 0x0f, 0x22, 0x12, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, - 0x22, 0x60, 0x22, 0x65, 0x25, 0xca, 0xfb, 0x04, 0xfe, 0xff, 0xff, 0xfd, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x20, 0x00, 0xa0, 0x01, 0x92, 0x01, 0xa0, - 0x01, 0xaf, 0x01, 0xf0, 0x01, 0xfa, 0x02, 0x18, 0x02, 0xbc, 0x02, 0xc6, - 0x02, 0xc9, 0x02, 0xd8, 0x02, 0xf3, 0x03, 0x00, 0x03, 0x03, 0x03, 0x09, - 0x03, 0x0f, 0x03, 0x23, 0x03, 0x84, 0x03, 0x8c, 0x03, 0x8e, 0x03, 0xa3, - 0x03, 0xd1, 0x03, 0xd6, 0x04, 0x00, 0x04, 0x0e, 0x04, 0x50, 0x04, 0x60, - 0x04, 0x88, 0x04, 0x92, 0x1e, 0x00, 0x1e, 0x3e, 0x1e, 0x80, 0x1e, 0xa0, - 0x1e, 0xf2, 0x1f, 0x4d, 0x20, 0x00, 0x20, 0x13, 0x20, 0x17, 0x20, 0x20, - 0x20, 0x26, 0x20, 0x30, 0x20, 0x32, 0x20, 0x39, 0x20, 0x3c, 0x20, 0x44, - 0x20, 0x7f, 0x20, 0xa3, 0x20, 0xa7, 0x20, 0xab, 0x21, 0x05, 0x21, 0x13, - 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5b, 0x22, 0x02, - 0x22, 0x06, 0x22, 0x0f, 0x22, 0x11, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, - 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0x25, 0xca, 0xfb, 0x01, 0xfe, 0xff, - 0xff, 0xfc, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xc2, 0xff, 0xb0, 0x00, 0xbf, - 0x00, 0xb2, 0x00, 0x61, 0xff, 0x49, 0xff, 0x31, 0xff, 0x96, 0xfe, 0x85, - 0xfe, 0x84, 0xfe, 0x76, 0xff, 0x68, 0xff, 0x63, 0xff, 0x62, 0xff, 0x5d, - 0x00, 0x67, 0xff, 0x44, 0xfd, 0xd0, 0xfd, 0xcf, 0xfd, 0xce, 0xfd, 0xcd, - 0xfe, 0x82, 0xfe, 0x7f, 0x00, 0x00, 0xfd, 0x9a, 0x00, 0x00, 0xfe, 0x0c, - 0x00, 0x00, 0xfe, 0x09, 0xe4, 0x58, 0xe4, 0x18, 0xe3, 0x7a, 0xe4, 0x7d, - 0x00, 0x00, 0xe3, 0x0d, 0xe2, 0x42, 0xe1, 0xef, 0xe1, 0xee, 0xe1, 0xed, - 0xe1, 0xea, 0xe1, 0xe1, 0xe1, 0xe0, 0xe1, 0xdb, 0xe1, 0xda, 0xe1, 0xd3, - 0xe1, 0x99, 0xe1, 0x76, 0xe1, 0x74, 0x00, 0x00, 0xe1, 0x18, 0xe1, 0x0b, - 0xe1, 0x09, 0xe0, 0xfe, 0xe0, 0xfb, 0xe0, 0xf4, 0xe0, 0xc8, 0xe0, 0x25, - 0xe0, 0x22, 0xe0, 0x1a, 0xe0, 0x19, 0xe0, 0x12, 0xe0, 0x0f, 0xe0, 0x03, - 0xdf, 0xe7, 0xdf, 0xd0, 0xdf, 0xcd, 0xdc, 0x69, 0x00, 0x00, 0x03, 0x4f, - 0x02, 0x53, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, - 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x68, 0x01, 0x9c, 0x01, 0x9d, 0x01, 0x9e, - 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x01, 0xa3, 0x01, 0xa4, - 0x01, 0xa5, 0x01, 0xa6, 0x01, 0xa7, 0x02, 0x69, 0x02, 0x6a, 0x01, 0xea, - 0x01, 0xeb, 0x01, 0xec, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, - 0x01, 0xf1, 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x02, 0x6b, - 0x01, 0xf6, 0x01, 0xf7, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, - 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9a, 0x01, 0xf8, 0x01, 0xf9, - 0x02, 0x00, 0x02, 0x01, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72, - 0x03, 0x73, 0x03, 0x74, 0x03, 0x75, 0x02, 0x1c, 0x02, 0x34, 0x02, 0x35, - 0x02, 0x5d, 0x02, 0x5e, 0x00, 0x06, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, - 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, - 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, - 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, - 0x00, 0x18, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x1d, - 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, - 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, - 0x00, 0x2a, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, - 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, - 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3a, 0x00, 0x3b, - 0x00, 0x3c, 0x00, 0x3d, 0x00, 0x3e, 0x00, 0x3f, 0x00, 0x40, 0x00, 0x41, - 0x00, 0x42, 0x00, 0x43, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, - 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, - 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, - 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, - 0x00, 0x5a, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5d, 0x00, 0x5e, 0x00, 0x5f, - 0x00, 0x60, 0x00, 0x61, 0x00, 0x00, 0x00, 0x86, 0x00, 0x87, 0x00, 0x89, - 0x00, 0x8b, 0x00, 0x93, 0x00, 0x98, 0x00, 0x9e, 0x00, 0xa3, 0x00, 0xa2, - 0x00, 0xa4, 0x00, 0xa6, 0x00, 0xa5, 0x00, 0xa7, 0x00, 0xa9, 0x00, 0xab, - 0x00, 0xaa, 0x00, 0xac, 0x00, 0xad, 0x00, 0xaf, 0x00, 0xae, 0x00, 0xb0, - 0x00, 0xb1, 0x00, 0xb3, 0x00, 0xb5, 0x00, 0xb4, 0x00, 0xb6, 0x00, 0xb8, - 0x00, 0xb7, 0x00, 0xbc, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xbe, 0x02, 0x0d, - 0x00, 0x72, 0x00, 0x64, 0x00, 0x65, 0x00, 0x69, 0x02, 0x0f, 0x00, 0x78, - 0x00, 0xa1, 0x00, 0x70, 0x00, 0x6b, 0x02, 0x20, 0x00, 0x76, 0x00, 0x6a, - 0x02, 0x30, 0x00, 0x88, 0x00, 0x9a, 0x02, 0x2d, 0x00, 0x73, 0x02, 0x31, - 0x02, 0x32, 0x00, 0x67, 0x00, 0x77, 0x02, 0x27, 0x02, 0x2a, 0x02, 0x29, - 0x01, 0x8d, 0x02, 0x2e, 0x00, 0x6c, 0x00, 0x7c, 0x02, 0x21, 0x00, 0xa8, - 0x00, 0xba, 0x00, 0x81, 0x00, 0x63, 0x00, 0x6e, 0x02, 0x2c, 0x01, 0x42, - 0x02, 0x2f, 0x02, 0x28, 0x00, 0x6d, 0x00, 0x7d, 0x02, 0x10, 0x00, 0x62, - 0x00, 0x82, 0x00, 0x85, 0x00, 0x97, 0x01, 0x14, 0x01, 0x15, 0x02, 0x02, - 0x02, 0x03, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x06, 0x02, 0x07, 0x00, 0xb9, - 0x02, 0x33, 0x00, 0xc1, 0x01, 0x3a, 0x02, 0x17, 0x02, 0x1c, 0x02, 0x14, - 0x02, 0x15, 0x02, 0x34, 0x02, 0x35, 0x02, 0x0e, 0x00, 0x79, 0x02, 0x08, - 0x02, 0x0c, 0x02, 0x11, 0x00, 0x84, 0x00, 0x8c, 0x00, 0x83, 0x00, 0x8d, - 0x00, 0x8a, 0x00, 0x8f, 0x00, 0x90, 0x00, 0x91, 0x00, 0x8e, 0x00, 0x95, - 0x00, 0x96, 0x00, 0x00, 0x00, 0x94, 0x00, 0x9c, 0x00, 0x9d, 0x00, 0x9b, - 0x00, 0xf3, 0x01, 0x4b, 0x01, 0x52, 0x00, 0x71, 0x01, 0x4e, 0x01, 0x4f, - 0x01, 0x50, 0x00, 0x7a, 0x01, 0x53, 0x01, 0x51, 0x01, 0x4c, 0x00, 0x04, - 0x02, 0xbc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x80, 0x00, 0x06, 0x00, 0x10, - 0x00, 0x7e, 0x01, 0x7f, 0x01, 0x92, 0x01, 0xa1, 0x01, 0xb0, 0x01, 0xf0, - 0x01, 0xff, 0x02, 0x19, 0x02, 0xbc, 0x02, 0xc7, 0x02, 0xc9, 0x02, 0xdd, - 0x02, 0xf3, 0x03, 0x01, 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, 0x03, 0x23, - 0x03, 0x8a, 0x03, 0x8c, 0x03, 0xa1, 0x03, 0xce, 0x03, 0xd2, 0x03, 0xd6, - 0x04, 0x0d, 0x04, 0x4f, 0x04, 0x5f, 0x04, 0x86, 0x04, 0x91, 0x05, 0x13, - 0x1e, 0x01, 0x1e, 0x3f, 0x1e, 0x85, 0x1e, 0xf1, 0x1e, 0xf9, 0x1f, 0x4d, - 0x20, 0x0b, 0x20, 0x15, 0x20, 0x1e, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, - 0x20, 0x33, 0x20, 0x3a, 0x20, 0x3c, 0x20, 0x44, 0x20, 0x7f, 0x20, 0xa4, - 0x20, 0xa7, 0x20, 0xac, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, - 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5e, 0x22, 0x02, 0x22, 0x06, 0x22, 0x0f, - 0x22, 0x12, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, - 0x22, 0x65, 0x25, 0xca, 0xfb, 0x04, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x20, 0x00, 0xa0, 0x01, 0x92, 0x01, 0xa0, 0x01, 0xaf, - 0x01, 0xf0, 0x01, 0xfa, 0x02, 0x18, 0x02, 0xbc, 0x02, 0xc6, 0x02, 0xc9, - 0x02, 0xd8, 0x02, 0xf3, 0x03, 0x00, 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, - 0x03, 0x23, 0x03, 0x84, 0x03, 0x8c, 0x03, 0x8e, 0x03, 0xa3, 0x03, 0xd1, - 0x03, 0xd6, 0x04, 0x00, 0x04, 0x0e, 0x04, 0x50, 0x04, 0x60, 0x04, 0x88, - 0x04, 0x92, 0x1e, 0x00, 0x1e, 0x3e, 0x1e, 0x80, 0x1e, 0xa0, 0x1e, 0xf2, - 0x1f, 0x4d, 0x20, 0x00, 0x20, 0x13, 0x20, 0x17, 0x20, 0x20, 0x20, 0x26, - 0x20, 0x30, 0x20, 0x32, 0x20, 0x39, 0x20, 0x3c, 0x20, 0x44, 0x20, 0x7f, - 0x20, 0xa3, 0x20, 0xa7, 0x20, 0xab, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, - 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5b, 0x22, 0x02, 0x22, 0x06, - 0x22, 0x0f, 0x22, 0x11, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, - 0x22, 0x60, 0x22, 0x64, 0x25, 0xca, 0xfb, 0x01, 0xfe, 0xff, 0xff, 0xfc, - 0xff, 0xff, 0xff, 0xe3, 0xff, 0xc2, 0xff, 0xb0, 0x00, 0xbf, 0x00, 0xb2, - 0x00, 0x61, 0xff, 0x49, 0xff, 0x31, 0xff, 0x96, 0xfe, 0x85, 0xfe, 0x84, - 0xfe, 0x76, 0xff, 0x68, 0xff, 0x63, 0xff, 0x62, 0xff, 0x5d, 0x00, 0x67, - 0xff, 0x44, 0xfd, 0xd0, 0xfd, 0xcf, 0xfd, 0xce, 0xfd, 0xcd, 0xfe, 0x82, - 0xfe, 0x7f, 0x00, 0x00, 0xfd, 0x9a, 0x00, 0x00, 0xfe, 0x0c, 0x00, 0x00, - 0xfe, 0x09, 0xe4, 0x58, 0xe4, 0x18, 0xe3, 0x7a, 0xe4, 0x7d, 0x00, 0x00, - 0xe3, 0x0d, 0xe2, 0x42, 0xe1, 0xef, 0xe1, 0xee, 0xe1, 0xed, 0xe1, 0xea, - 0xe1, 0xe1, 0xe1, 0xe0, 0xe1, 0xdb, 0xe1, 0xda, 0xe1, 0xd3, 0xe1, 0x99, - 0xe1, 0x76, 0xe1, 0x74, 0x00, 0x00, 0xe1, 0x18, 0xe1, 0x0b, 0xe1, 0x09, - 0xe0, 0xfe, 0xe0, 0xfb, 0xe0, 0xf4, 0xe0, 0xc8, 0xe0, 0x25, 0xe0, 0x22, - 0xe0, 0x1a, 0xe0, 0x19, 0xe0, 0x12, 0xe0, 0x0f, 0xe0, 0x03, 0xdf, 0xe7, - 0xdf, 0xd0, 0xdf, 0xcd, 0xdc, 0x69, 0x00, 0x00, 0x03, 0x4f, 0x02, 0x53, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x94, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x68, 0x01, 0x9c, 0x01, 0x9d, 0x01, 0x9e, 0x01, 0x9f, - 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x01, 0xa3, 0x01, 0xa4, 0x01, 0xa5, - 0x01, 0xa6, 0x01, 0xa7, 0x02, 0x69, 0x02, 0x6a, 0x01, 0xea, 0x01, 0xeb, - 0x01, 0xec, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1, - 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x02, 0x6b, 0x01, 0xf6, - 0x01, 0xf7, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, - 0x02, 0x98, 0x02, 0x99, 0x02, 0x9a, 0x01, 0xf8, 0x01, 0xf9, 0x02, 0x00, - 0x02, 0x01, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, - 0x03, 0x74, 0x03, 0x75, 0x02, 0x1c, 0x02, 0x34, 0x02, 0x35, 0x02, 0x5d, - 0x02, 0x5e, 0x00, 0x00, 0x40, 0x45, 0x59, 0x58, 0x55, 0x54, 0x53, 0x52, - 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x46, - 0x45, 0x44, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a, - 0x39, 0x38, 0x37, 0x36, 0x35, 0x31, 0x30, 0x2f, 0x2e, 0x2d, 0x2c, 0x28, - 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21, 0x1f, 0x18, 0x14, 0x11, 0x10, - 0x0f, 0x0e, 0x0d, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, - 0x02, 0x01, 0x00, 0x2c, 0x45, 0x23, 0x46, 0x60, 0x20, 0xb0, 0x26, 0x60, - 0xb0, 0x04, 0x26, 0x23, 0x48, 0x48, 0x2d, 0x2c, 0x45, 0x23, 0x46, 0x23, - 0x61, 0x20, 0xb0, 0x26, 0x61, 0xb0, 0x04, 0x26, 0x23, 0x48, 0x48, 0x2d, - 0x2c, 0x45, 0x23, 0x46, 0x60, 0xb0, 0x20, 0x61, 0x20, 0xb0, 0x46, 0x60, - 0xb0, 0x04, 0x26, 0x23, 0x48, 0x48, 0x2d, 0x2c, 0x45, 0x23, 0x46, 0x23, - 0x61, 0xb0, 0x20, 0x60, 0x20, 0xb0, 0x26, 0x61, 0xb0, 0x20, 0x61, 0xb0, - 0x04, 0x26, 0x23, 0x48, 0x48, 0x2d, 0x2c, 0x45, 0x23, 0x46, 0x60, 0xb0, - 0x40, 0x61, 0x20, 0xb0, 0x66, 0x60, 0xb0, 0x04, 0x26, 0x23, 0x48, 0x48, - 0x2d, 0x2c, 0x45, 0x23, 0x46, 0x23, 0x61, 0xb0, 0x40, 0x60, 0x20, 0xb0, - 0x26, 0x61, 0xb0, 0x40, 0x61, 0xb0, 0x04, 0x26, 0x23, 0x48, 0x48, 0x2d, - 0x2c, 0x01, 0x10, 0x20, 0x3c, 0x00, 0x3c, 0x2d, 0x2c, 0x20, 0x45, 0x23, - 0x20, 0xb0, 0xcd, 0x44, 0x23, 0x20, 0xb8, 0x01, 0x5a, 0x51, 0x58, 0x23, - 0x20, 0xb0, 0x8d, 0x44, 0x23, 0x59, 0x20, 0xb0, 0xed, 0x51, 0x58, 0x23, - 0x20, 0xb0, 0x4d, 0x44, 0x23, 0x59, 0x20, 0xb0, 0x04, 0x26, 0x51, 0x58, - 0x23, 0x20, 0xb0, 0x0d, 0x44, 0x23, 0x59, 0x21, 0x21, 0x2d, 0x2c, 0x20, - 0x20, 0x45, 0x18, 0x68, 0x44, 0x20, 0xb0, 0x01, 0x60, 0x20, 0x45, 0xb0, - 0x46, 0x76, 0x68, 0x8a, 0x45, 0x60, 0x44, 0x2d, 0x2c, 0x01, 0xb1, 0x0b, - 0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0x00, 0xb1, 0x0a, 0x0b, - 0x43, 0x23, 0x43, 0x0b, 0x2d, 0x2c, 0x00, 0xb0, 0x28, 0x23, 0x70, 0xb1, - 0x01, 0x28, 0x3e, 0x01, 0xb0, 0x28, 0x23, 0x70, 0xb1, 0x02, 0x28, 0x45, - 0x3a, 0xb1, 0x02, 0x00, 0x08, 0x0d, 0x2d, 0x2c, 0x20, 0x45, 0xb0, 0x03, - 0x25, 0x45, 0x61, 0x64, 0xb0, 0x50, 0x51, 0x58, 0x45, 0x44, 0x1b, 0x21, - 0x21, 0x59, 0x2d, 0x2c, 0x49, 0xb0, 0x0e, 0x23, 0x44, 0x2d, 0x2c, 0x20, - 0x45, 0xb0, 0x00, 0x43, 0x60, 0x44, 0x2d, 0x2c, 0x01, 0xb0, 0x06, 0x43, - 0xb0, 0x07, 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0x20, 0x69, 0xb0, 0x40, 0x61, - 0xb0, 0x00, 0x8b, 0x20, 0xb1, 0x2c, 0xc0, 0x8a, 0x8c, 0xb8, 0x10, 0x00, - 0x62, 0x60, 0x2b, 0x0c, 0x64, 0x23, 0x64, 0x61, 0x5c, 0x58, 0xb0, 0x03, - 0x61, 0x59, 0x2d, 0x2c, 0x8a, 0x03, 0x45, 0x8a, 0x8a, 0x87, 0xb0, 0x11, - 0x2b, 0xb0, 0x29, 0x23, 0x44, 0xb0, 0x29, 0x7a, 0xe4, 0x18, 0x2d, 0x2c, - 0x45, 0x65, 0xb0, 0x2c, 0x23, 0x44, 0x45, 0xb0, 0x2b, 0x23, 0x44, 0x2d, - 0x2c, 0x4b, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, - 0x4b, 0x51, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x01, - 0xb0, 0x05, 0x25, 0x10, 0x23, 0x20, 0x8a, 0xf5, 0x00, 0xb0, 0x01, 0x60, - 0x23, 0xed, 0xec, 0x2d, 0x2c, 0x01, 0xb0, 0x05, 0x25, 0x10, 0x23, 0x20, - 0x8a, 0xf5, 0x00, 0xb0, 0x01, 0x61, 0x23, 0xed, 0xec, 0x2d, 0x2c, 0x01, - 0xb0, 0x06, 0x25, 0x10, 0xf5, 0x00, 0xed, 0xec, 0x2d, 0x2c, 0x46, 0x23, - 0x46, 0x60, 0x8a, 0x8a, 0x46, 0x23, 0x20, 0x46, 0x8a, 0x60, 0x8a, 0x61, - 0xb8, 0xff, 0x80, 0x62, 0x23, 0x20, 0x10, 0x23, 0x8a, 0xb1, 0x0c, 0x0c, - 0x8a, 0x70, 0x45, 0x60, 0x20, 0xb0, 0x00, 0x50, 0x58, 0xb0, 0x01, 0x61, - 0xb8, 0xff, 0xba, 0x8b, 0x1b, 0xb0, 0x46, 0x8c, 0x59, 0xb0, 0x10, 0x60, - 0x68, 0x01, 0x3a, 0x2d, 0x2c, 0x20, 0x45, 0xb0, 0x03, 0x25, 0x46, 0x52, - 0x4b, 0xb0, 0x13, 0x51, 0x5b, 0x58, 0xb0, 0x02, 0x25, 0x46, 0x20, 0x68, - 0x61, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x3f, 0x23, 0x21, 0x38, 0x1b, - 0x21, 0x11, 0x59, 0x2d, 0x2c, 0x20, 0x45, 0xb0, 0x03, 0x25, 0x46, 0x50, - 0x58, 0xb0, 0x02, 0x25, 0x46, 0x20, 0x68, 0x61, 0xb0, 0x03, 0x25, 0xb0, - 0x03, 0x25, 0x3f, 0x23, 0x21, 0x38, 0x1b, 0x21, 0x11, 0x59, 0x2d, 0x2c, - 0x00, 0xb0, 0x07, 0x43, 0xb0, 0x06, 0x43, 0x0b, 0x2d, 0x2c, 0x21, 0x21, - 0x0c, 0x64, 0x23, 0x64, 0x8b, 0xb8, 0x40, 0x00, 0x62, 0x2d, 0x2c, 0x21, - 0xb0, 0x80, 0x51, 0x58, 0x0c, 0x64, 0x23, 0x64, 0x8b, 0xb8, 0x20, 0x00, - 0x62, 0x1b, 0xb2, 0x00, 0x40, 0x2f, 0x2b, 0x59, 0xb0, 0x02, 0x60, 0x2d, - 0x2c, 0x21, 0xb0, 0xc0, 0x51, 0x58, 0x0c, 0x64, 0x23, 0x64, 0x8b, 0xb8, - 0x15, 0x55, 0x62, 0x1b, 0xb2, 0x00, 0x80, 0x2f, 0x2b, 0x59, 0xb0, 0x02, - 0x60, 0x2d, 0x2c, 0x0c, 0x64, 0x23, 0x64, 0x8b, 0xb8, 0x40, 0x00, 0x62, - 0x60, 0x23, 0x21, 0x2d, 0x2c, 0x4b, 0x53, 0x58, 0x8a, 0xb0, 0x04, 0x25, - 0x49, 0x64, 0x23, 0x45, 0x69, 0xb0, 0x40, 0x8b, 0x61, 0xb0, 0x80, 0x62, - 0xb0, 0x20, 0x61, 0x6a, 0xb0, 0x0e, 0x23, 0x44, 0x23, 0x10, 0xb0, 0x0e, - 0xf6, 0x1b, 0x21, 0x23, 0x8a, 0x12, 0x11, 0x20, 0x39, 0x2f, 0x59, 0x2d, - 0x2c, 0x4b, 0x53, 0x58, 0x20, 0xb0, 0x03, 0x25, 0x49, 0x64, 0x69, 0x20, - 0xb0, 0x05, 0x26, 0xb0, 0x06, 0x25, 0x49, 0x64, 0x23, 0x61, 0xb0, 0x80, - 0x62, 0xb0, 0x20, 0x61, 0x6a, 0xb0, 0x0e, 0x23, 0x44, 0xb0, 0x04, 0x26, - 0x10, 0xb0, 0x0e, 0xf6, 0x8a, 0x10, 0xb0, 0x0e, 0x23, 0x44, 0xb0, 0x0e, - 0xf6, 0xb0, 0x0e, 0x23, 0x44, 0xb0, 0x0e, 0xed, 0x1b, 0x8a, 0xb0, 0x04, - 0x26, 0x11, 0x12, 0x20, 0x39, 0x23, 0x20, 0x39, 0x2f, 0x2f, 0x59, 0x2d, - 0x2c, 0x45, 0x23, 0x45, 0x60, 0x23, 0x45, 0x60, 0x23, 0x45, 0x60, 0x23, - 0x76, 0x68, 0x18, 0xb0, 0x80, 0x62, 0x20, 0x2d, 0x2c, 0xb0, 0x48, 0x2b, - 0x2d, 0x2c, 0x20, 0x45, 0xb0, 0x00, 0x54, 0x58, 0xb0, 0x40, 0x44, 0x20, - 0x45, 0xb0, 0x40, 0x61, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x45, - 0xb1, 0x30, 0x2f, 0x45, 0x23, 0x45, 0x61, 0x60, 0xb0, 0x01, 0x60, 0x69, - 0x44, 0x2d, 0x2c, 0x4b, 0x51, 0x58, 0xb0, 0x2f, 0x23, 0x70, 0xb0, 0x14, - 0x23, 0x42, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x51, 0x58, 0x20, - 0xb0, 0x03, 0x25, 0x45, 0x69, 0x53, 0x58, 0x44, 0x1b, 0x21, 0x21, 0x59, - 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x45, 0xb0, 0x14, 0x43, 0xb0, 0x00, - 0x60, 0x63, 0xb0, 0x01, 0x60, 0x69, 0x44, 0x2d, 0x2c, 0xb0, 0x2f, 0x45, - 0x44, 0x2d, 0x2c, 0x45, 0x23, 0x20, 0x45, 0x8a, 0x60, 0x44, 0x2d, 0x2c, - 0x45, 0x23, 0x45, 0x60, 0x44, 0x2d, 0x2c, 0x4b, 0x23, 0x51, 0x58, 0xb9, - 0x00, 0x33, 0xff, 0xe0, 0xb1, 0x34, 0x20, 0x1b, 0xb3, 0x33, 0x00, 0x34, - 0x00, 0x59, 0x44, 0x44, 0x2d, 0x2c, 0xb0, 0x16, 0x43, 0x58, 0xb0, 0x03, - 0x26, 0x45, 0x8a, 0x58, 0x64, 0x66, 0xb0, 0x1f, 0x60, 0x1b, 0x64, 0xb0, - 0x20, 0x60, 0x66, 0x20, 0x58, 0x1b, 0x21, 0xb0, 0x40, 0x59, 0xb0, 0x01, - 0x61, 0x59, 0x23, 0x58, 0x65, 0x59, 0xb0, 0x29, 0x23, 0x44, 0x23, 0x10, - 0xb0, 0x29, 0xe0, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, - 0xb0, 0x02, 0x43, 0x54, 0x58, 0x4b, 0x53, 0x23, 0x4b, 0x51, 0x5a, 0x58, - 0x38, 0x1b, 0x21, 0x21, 0x59, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, - 0x2c, 0xb0, 0x16, 0x43, 0x58, 0xb0, 0x04, 0x25, 0x45, 0x64, 0xb0, 0x20, - 0x60, 0x66, 0x20, 0x58, 0x1b, 0x21, 0xb0, 0x40, 0x59, 0xb0, 0x01, 0x61, - 0x23, 0x58, 0x1b, 0x65, 0x59, 0xb0, 0x29, 0x23, 0x44, 0xb0, 0x05, 0x25, - 0xb0, 0x08, 0x25, 0x08, 0x20, 0x58, 0x02, 0x1b, 0x03, 0x59, 0xb0, 0x04, - 0x25, 0x10, 0xb0, 0x05, 0x25, 0x20, 0x46, 0xb0, 0x04, 0x25, 0x23, 0x42, - 0x3c, 0xb0, 0x04, 0x25, 0xb0, 0x07, 0x25, 0x08, 0xb0, 0x07, 0x25, 0x10, - 0xb0, 0x06, 0x25, 0x20, 0x46, 0xb0, 0x04, 0x25, 0xb0, 0x01, 0x60, 0x23, - 0x42, 0x3c, 0x20, 0x58, 0x01, 0x1b, 0x00, 0x59, 0xb0, 0x04, 0x25, 0x10, - 0xb0, 0x05, 0x25, 0xb0, 0x29, 0xe0, 0xb0, 0x29, 0x20, 0x45, 0x65, 0x44, - 0xb0, 0x07, 0x25, 0x10, 0xb0, 0x06, 0x25, 0xb0, 0x29, 0xe0, 0xb0, 0x05, - 0x25, 0xb0, 0x08, 0x25, 0x08, 0x20, 0x58, 0x02, 0x1b, 0x03, 0x59, 0xb0, - 0x05, 0x25, 0xb0, 0x03, 0x25, 0x43, 0x48, 0xb0, 0x04, 0x25, 0xb0, 0x07, - 0x25, 0x08, 0xb0, 0x06, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x01, 0x60, 0x43, - 0x48, 0x1b, 0x21, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x2d, - 0x2c, 0x02, 0xb0, 0x04, 0x25, 0x20, 0x20, 0x46, 0xb0, 0x04, 0x25, 0x23, - 0x42, 0xb0, 0x05, 0x25, 0x08, 0xb0, 0x03, 0x25, 0x45, 0x48, 0x21, 0x21, - 0x21, 0x21, 0x2d, 0x2c, 0x02, 0xb0, 0x03, 0x25, 0x20, 0xb0, 0x04, 0x25, - 0x08, 0xb0, 0x02, 0x25, 0x43, 0x48, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0x45, - 0x23, 0x20, 0x45, 0x18, 0x20, 0xb0, 0x00, 0x50, 0x20, 0x58, 0x23, 0x65, - 0x23, 0x59, 0x23, 0x68, 0x20, 0xb0, 0x40, 0x50, 0x58, 0x21, 0xb0, 0x40, - 0x59, 0x23, 0x58, 0x65, 0x59, 0x8a, 0x60, 0x44, 0x2d, 0x2c, 0x4b, 0x53, - 0x23, 0x4b, 0x51, 0x5a, 0x58, 0x20, 0x45, 0x8a, 0x60, 0x44, 0x1b, 0x21, - 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x54, 0x58, 0x20, 0x45, 0x8a, 0x60, 0x44, - 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x53, 0x23, 0x4b, 0x51, 0x5a, - 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x00, 0x21, 0x4b, - 0x54, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, - 0x54, 0x58, 0xb0, 0x46, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, - 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x47, 0x2b, 0x1b, 0x21, 0x21, - 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x48, 0x2b, - 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, - 0x58, 0xb0, 0x49, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x20, - 0x8a, 0x08, 0x23, 0x4b, 0x53, 0x8a, 0x4b, 0x51, 0x5a, 0x58, 0x23, 0x38, - 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x00, 0xb0, 0x02, 0x25, 0x49, 0xb0, - 0x00, 0x53, 0x58, 0x20, 0xb0, 0x40, 0x38, 0x11, 0x1b, 0x21, 0x59, 0x2d, - 0x2c, 0x01, 0x46, 0x23, 0x46, 0x60, 0x23, 0x46, 0x61, 0x23, 0x20, 0x10, - 0x20, 0x46, 0x8a, 0x61, 0xb8, 0xff, 0x80, 0x62, 0x8a, 0xb1, 0x40, 0x40, - 0x8a, 0x70, 0x45, 0x60, 0x68, 0x3a, 0x2d, 0x2c, 0x20, 0x8a, 0x23, 0x49, - 0x64, 0x8a, 0x23, 0x53, 0x58, 0x3c, 0x1b, 0x21, 0x59, 0x2d, 0x2c, 0x4b, - 0x52, 0x58, 0x7d, 0x1b, 0x7a, 0x59, 0x2d, 0x2c, 0xb0, 0x12, 0x00, 0x4b, - 0x01, 0x4b, 0x54, 0x42, 0x2d, 0x2c, 0xb1, 0x02, 0x00, 0x42, 0xb1, 0x23, - 0x01, 0x88, 0x51, 0xb1, 0x40, 0x01, 0x88, 0x53, 0x5a, 0x58, 0xb9, 0x10, - 0x00, 0x00, 0x20, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x01, 0x02, 0x43, 0x60, - 0x42, 0x59, 0xb1, 0x24, 0x01, 0x88, 0x51, 0x58, 0xb9, 0x20, 0x00, 0x00, - 0x40, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x02, 0x02, 0x43, 0x60, 0x42, 0xb1, - 0x24, 0x01, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x20, 0x02, 0x43, 0x60, 0x42, - 0x00, 0x4b, 0x01, 0x4b, 0x52, 0x58, 0xb2, 0x02, 0x08, 0x02, 0x43, 0x60, - 0x42, 0x59, 0x1b, 0xb9, 0x40, 0x00, 0x00, 0x80, 0x88, 0x54, 0x58, 0xb2, - 0x02, 0x04, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb9, 0x40, 0x00, 0x00, 0x80, - 0x63, 0xb8, 0x01, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x08, 0x02, 0x43, - 0x60, 0x42, 0x59, 0xb9, 0x40, 0x00, 0x01, 0x00, 0x63, 0xb8, 0x02, 0x00, - 0x88, 0x54, 0x58, 0xb2, 0x02, 0x10, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb9, - 0x40, 0x00, 0x02, 0x00, 0x63, 0xb8, 0x04, 0x00, 0x88, 0x54, 0x58, 0xb2, - 0x02, 0x40, 0x02, 0x43, 0x60, 0x42, 0x59, 0x59, 0x59, 0x59, 0x59, 0x2d, - 0x2c, 0x45, 0x18, 0x68, 0x23, 0x4b, 0x51, 0x58, 0x23, 0x20, 0x45, 0x20, - 0x64, 0xb0, 0x40, 0x50, 0x58, 0x7c, 0x59, 0x68, 0x8a, 0x60, 0x59, 0x44, - 0x2d, 0x2c, 0xb0, 0x00, 0x16, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x01, - 0xb0, 0x01, 0x23, 0x3e, 0x00, 0xb0, 0x02, 0x23, 0x3e, 0xb1, 0x01, 0x02, - 0x06, 0x0c, 0xb0, 0x0a, 0x23, 0x65, 0x42, 0xb0, 0x0b, 0x23, 0x42, 0x01, - 0xb0, 0x01, 0x23, 0x3f, 0x00, 0xb0, 0x02, 0x23, 0x3f, 0xb1, 0x01, 0x02, - 0x06, 0x0c, 0xb0, 0x06, 0x23, 0x65, 0x42, 0xb0, 0x07, 0x23, 0x42, 0xb0, - 0x01, 0x16, 0x01, 0x2d, 0x2c, 0x7a, 0x8a, 0x10, 0x45, 0x23, 0xf5, 0x18, - 0x2d, 0x00, 0x00, 0x00, 0x40, 0x10, 0x09, 0xf8, 0x03, 0xff, 0x1f, 0x8f, - 0xf7, 0x9f, 0xf7, 0x02, 0x7f, 0xf3, 0x01, 0x60, 0xf2, 0x01, 0xb8, 0xff, - 0xe8, 0x40, 0x2b, 0xeb, 0x0c, 0x10, 0x46, 0xdf, 0x33, 0xdd, 0x55, 0xde, - 0xff, 0xdc, 0x55, 0x30, 0xdd, 0x01, 0xdd, 0x01, 0x03, 0x55, 0xdc, 0x03, - 0xfa, 0x1f, 0x30, 0xc2, 0x01, 0x6f, 0xc0, 0xef, 0xc0, 0x02, 0xfc, 0xb6, - 0x18, 0x1f, 0x30, 0xb7, 0x01, 0x60, 0xb7, 0x80, 0xb7, 0x02, 0xb8, 0xff, - 0xc0, 0x40, 0x38, 0xb7, 0x0f, 0x13, 0x46, 0xe7, 0xb1, 0x01, 0x1f, 0xaf, - 0x2f, 0xaf, 0x3f, 0xaf, 0x03, 0x4f, 0xaf, 0x5f, 0xaf, 0x6f, 0xaf, 0x03, - 0x40, 0xaf, 0x0f, 0x13, 0x46, 0xac, 0x51, 0x18, 0x1f, 0x1f, 0x9c, 0x5f, - 0x9c, 0x02, 0xe0, 0x9b, 0x01, 0x03, 0x2b, 0x9a, 0x01, 0x1f, 0x9a, 0x01, - 0x90, 0x9a, 0xa0, 0x9a, 0x02, 0x73, 0x9a, 0x83, 0x9a, 0x02, 0x05, 0xb8, - 0xff, 0xea, 0x40, 0x19, 0x9a, 0x09, 0x0b, 0x46, 0xaf, 0x97, 0xbf, 0x97, - 0x02, 0x03, 0x2b, 0x96, 0x01, 0x1f, 0x96, 0x01, 0x9f, 0x96, 0xaf, 0x96, - 0x02, 0x7c, 0x96, 0x01, 0x05, 0xb8, 0xff, 0xea, 0x40, 0x85, 0x96, 0x09, - 0x0b, 0x46, 0x2f, 0x92, 0x3f, 0x92, 0x4f, 0x92, 0x03, 0x40, 0x92, 0x0c, - 0x0f, 0x46, 0x2f, 0x91, 0x01, 0x9f, 0x91, 0x01, 0x87, 0x86, 0x18, 0x1f, - 0x40, 0x7c, 0x50, 0x7c, 0x02, 0x03, 0x10, 0x74, 0x20, 0x74, 0x30, 0x74, - 0x03, 0x02, 0x74, 0x01, 0xf2, 0x74, 0x01, 0x0a, 0x6f, 0x01, 0xff, 0x6f, - 0x01, 0xa9, 0x6f, 0x01, 0x97, 0x6f, 0x01, 0x75, 0x6f, 0x85, 0x6f, 0x02, - 0x4b, 0x6f, 0x01, 0x0a, 0x6e, 0x01, 0xff, 0x6e, 0x01, 0xa9, 0x6e, 0x01, - 0x97, 0x6e, 0x01, 0x4b, 0x6e, 0x01, 0x06, 0x1a, 0x01, 0x18, 0x55, 0x19, - 0x13, 0xff, 0x1f, 0x07, 0x04, 0xff, 0x1f, 0x06, 0x03, 0xff, 0x1f, 0x3f, - 0x67, 0x01, 0x1f, 0x67, 0x2f, 0x67, 0x3f, 0x67, 0xff, 0x67, 0x04, 0x40, - 0x66, 0x50, 0x66, 0xa0, 0x66, 0xb0, 0x66, 0x04, 0x3f, 0x65, 0x01, 0x0f, - 0x65, 0xaf, 0x65, 0x02, 0x05, 0xa0, 0x64, 0xe0, 0x64, 0x02, 0x03, 0xb8, - 0xff, 0xc0, 0x40, 0x4f, 0x64, 0x06, 0x0a, 0x46, 0x61, 0x5f, 0x2b, 0x1f, - 0x60, 0x5f, 0x47, 0x1f, 0x5f, 0x50, 0x22, 0x1f, 0xf7, 0x5b, 0x01, 0xec, - 0x5b, 0x01, 0x54, 0x5b, 0x84, 0x5b, 0x02, 0x49, 0x5b, 0x01, 0x3b, 0x5b, - 0x01, 0xf9, 0x5a, 0x01, 0xef, 0x5a, 0x01, 0x6b, 0x5a, 0x01, 0x4b, 0x5a, - 0x01, 0x3b, 0x5a, 0x01, 0x06, 0x13, 0x33, 0x12, 0x55, 0x05, 0x01, 0x03, - 0x55, 0x04, 0x33, 0x03, 0x55, 0x1f, 0x03, 0x01, 0x0f, 0x03, 0x3f, 0x03, - 0xaf, 0x03, 0x03, 0x0f, 0x57, 0x1f, 0x57, 0x2f, 0x57, 0x03, 0x03, 0xb8, - 0xff, 0xc0, 0xb3, 0x56, 0x12, 0x15, 0x46, 0xb8, 0xff, 0xe0, 0xb3, 0x56, - 0x07, 0x0b, 0x46, 0xb8, 0xff, 0xc0, 0xb3, 0x54, 0x12, 0x15, 0x46, 0xb8, - 0xff, 0xc0, 0x40, 0x6d, 0x54, 0x06, 0x0b, 0x46, 0x52, 0x50, 0x2b, 0x1f, - 0x3f, 0x50, 0x4f, 0x50, 0x5f, 0x50, 0x03, 0xfa, 0x48, 0x01, 0xef, 0x48, - 0x01, 0x87, 0x48, 0x01, 0x65, 0x48, 0x01, 0x56, 0x48, 0x01, 0x3a, 0x48, - 0x01, 0xfa, 0x47, 0x01, 0xef, 0x47, 0x01, 0x87, 0x47, 0x01, 0x3b, 0x47, - 0x01, 0x06, 0x1c, 0x1b, 0xff, 0x1f, 0x16, 0x33, 0x15, 0x55, 0x11, 0x01, - 0x0f, 0x55, 0x10, 0x33, 0x0f, 0x55, 0x02, 0x01, 0x00, 0x55, 0x01, 0x47, - 0x00, 0x55, 0xfb, 0xfa, 0x2b, 0x1f, 0xfa, 0x1b, 0x12, 0x1f, 0x0f, 0x0f, - 0x01, 0x1f, 0x0f, 0xcf, 0x0f, 0x02, 0x0f, 0x0f, 0xff, 0x0f, 0x02, 0x06, - 0x6f, 0x00, 0x7f, 0x00, 0xaf, 0x00, 0xef, 0x00, 0x04, 0x10, 0x00, 0x01, - 0x80, 0x16, 0x01, 0x05, 0x01, 0xb8, 0x01, 0x90, 0xb1, 0x54, 0x53, 0x2b, - 0x2b, 0x4b, 0xb8, 0x07, 0xff, 0x52, 0x4b, 0xb0, 0x06, 0x50, 0x5b, 0xb0, - 0x01, 0x88, 0xb0, 0x25, 0x53, 0xb0, 0x01, 0x88, 0xb0, 0x40, 0x51, 0x5a, - 0xb0, 0x06, 0x88, 0xb0, 0x00, 0x55, 0x5a, 0x5b, 0x58, 0xb1, 0x01, 0x01, - 0x8e, 0x59, 0x85, 0x8d, 0x8d, 0x00, 0x42, 0x1d, 0x4b, 0xb0, 0x32, 0x53, - 0x58, 0xb0, 0x60, 0x1d, 0x59, 0x4b, 0xb0, 0x64, 0x53, 0x58, 0xb0, 0x40, - 0x1d, 0x59, 0x4b, 0xb0, 0x80, 0x53, 0x58, 0xb0, 0x10, 0x1d, 0xb1, 0x16, - 0x00, 0x42, 0x59, 0x73, 0x73, 0x5e, 0x73, 0x74, 0x75, 0x2b, 0x2b, 0x2b, - 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x5f, 0x73, 0x73, 0x73, 0x73, 0x73, - 0x73, 0x73, 0x73, 0x73, 0x73, 0x00, 0x73, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, - 0x2b, 0x5f, 0x73, 0x00, 0x73, 0x74, 0x2b, 0x2b, 0x2b, 0x01, 0x5f, 0x73, - 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x00, 0x2b, 0x2b, - 0x2b, 0x01, 0x2b, 0x5f, 0x73, 0x5e, 0x73, 0x74, 0x73, 0x73, 0x74, 0x00, - 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x5f, 0x73, 0x73, 0x73, 0x73, 0x74, 0x73, - 0x73, 0x73, 0x73, 0x73, 0x74, 0x00, 0x73, 0x74, 0x74, 0x01, 0x5f, 0x73, - 0x2b, 0x00, 0x73, 0x74, 0x2b, 0x73, 0x01, 0x2b, 0x5f, 0x73, 0x73, 0x74, - 0x74, 0x5f, 0x73, 0x2b, 0x5f, 0x73, 0x73, 0x74, 0x74, 0x00, 0x5f, 0x73, - 0x73, 0x01, 0x2b, 0x00, 0x2b, 0x73, 0x74, 0x01, 0x73, 0x00, 0x2b, 0x73, - 0x74, 0x2b, 0x01, 0x73, 0x00, 0x73, 0x2b, 0x2b, 0x73, 0x2b, 0x2b, 0x01, - 0x2b, 0x73, 0x73, 0x73, 0x00, 0x2b, 0x18, 0x5e, 0x06, 0x14, 0x00, 0x0b, - 0x00, 0x4e, 0x05, 0xb6, 0x00, 0x17, 0x00, 0x75, 0x05, 0xb6, 0x05, 0xcd, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x4a, 0x00, 0x14, 0x00, 0x8f, 0x00, 0x00, 0xff, 0xec, - 0x00, 0x00, 0x00, 0x00, 0xff, 0xec, 0x00, 0x00, 0x00, 0x00, 0xff, 0xec, - 0x00, 0x00, 0xfe, 0x14, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0xb6, 0x00, 0xbc, 0x00, 0x00, - 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x83, - 0x00, 0x97, 0x00, 0x9f, 0x00, 0x7d, 0x00, 0xe5, 0x00, 0xae, 0x00, 0xae, - 0x00, 0x71, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0xc5, - 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x9f, 0x00, 0x8c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xc7, 0x00, 0xc7, 0x00, 0x7d, 0x00, 0x7d, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xb0, 0x00, 0xb9, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, - 0x00, 0xa6, 0x00, 0x8f, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x90, 0x00, 0xb4, - 0x00, 0xc1, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x66, 0x00, 0x6f, 0x00, 0x78, 0x00, 0x96, 0x00, 0xc0, 0x00, 0xd5, - 0x01, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x3a, - 0x00, 0xc5, 0x00, 0x78, 0x00, 0xfe, 0x01, 0x16, 0x01, 0xf6, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, - 0x00, 0x96, 0x00, 0x88, 0x00, 0xae, 0x00, 0x96, 0x00, 0x89, 0x01, 0x0c, - 0x00, 0x96, 0x01, 0x18, 0x00, 0x00, 0x03, 0x1d, 0x00, 0x94, 0x02, 0x5a, - 0x00, 0x82, 0x03, 0x96, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x8c, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x79, 0x00, 0xd9, 0x00, 0xb4, 0x01, 0x0a, 0x00, 0x00, - 0x01, 0x83, 0x00, 0x6d, 0x00, 0x7f, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x6d, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x00, 0xa0, - 0x00, 0x00, 0x00, 0x82, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x05, 0xb6, 0xfc, 0x94, 0x00, 0x11, 0xff, 0xef, - 0x00, 0x83, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x7b, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbc, - 0x01, 0xaa, 0x03, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x00, 0xb6, - 0x01, 0xd7, 0x01, 0x95, 0x00, 0x00, 0x00, 0x96, 0x01, 0x00, 0x00, 0xae, - 0x05, 0xb6, 0xfe, 0xbc, 0xfe, 0x6f, 0xfe, 0x83, 0x00, 0x6f, 0x02, 0xad, - 0x00, 0x00, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x2a, 0x00, 0x6f, - 0x00, 0xa1, 0x01, 0x29, 0x01, 0xe2, 0x02, 0x71, 0x03, 0x29, 0x03, 0x4d, - 0x03, 0x7c, 0x03, 0xac, 0x03, 0xe2, 0x04, 0x0f, 0x04, 0x44, 0x04, 0x5b, - 0x04, 0x95, 0x04, 0xb4, 0x05, 0x06, 0x05, 0x3f, 0x05, 0x94, 0x06, 0x12, - 0x06, 0x65, 0x06, 0xcc, 0x07, 0x3f, 0x07, 0x67, 0x08, 0x11, 0x08, 0x82, - 0x08, 0xda, 0x09, 0x3d, 0x09, 0x79, 0x09, 0xbb, 0x09, 0xf7, 0x0a, 0x6a, - 0x0b, 0x34, 0x0b, 0xa0, 0x0c, 0x17, 0x0c, 0x74, 0x0c, 0xb3, 0x0c, 0xec, - 0x0d, 0x39, 0x0d, 0x97, 0x0d, 0xcd, 0x0e, 0x10, 0x0e, 0x49, 0x0e, 0x97, - 0x0e, 0xb7, 0x0f, 0x2b, 0x0f, 0x7c, 0x0f, 0xd5, 0x10, 0x22, 0x10, 0x8b, - 0x10, 0xfc, 0x11, 0x66, 0x11, 0xa7, 0x11, 0xe5, 0x12, 0x38, 0x12, 0xee, - 0x13, 0x4d, 0x13, 0x9e, 0x13, 0xd1, 0x13, 0xf7, 0x14, 0x17, 0x14, 0x3b, - 0x14, 0x59, 0x14, 0x70, 0x14, 0x95, 0x15, 0x08, 0x15, 0x69, 0x15, 0xae, - 0x16, 0x0e, 0x16, 0x6b, 0x16, 0xce, 0x17, 0xa2, 0x17, 0xe3, 0x18, 0x14, - 0x18, 0x5f, 0x18, 0xaf, 0x18, 0xc8, 0x19, 0x39, 0x19, 0x77, 0x19, 0xc0, - 0x1a, 0x22, 0x1a, 0x83, 0x1a, 0xc9, 0x1b, 0x39, 0x1b, 0x8e, 0x1b, 0xcf, - 0x1c, 0x27, 0x1c, 0xd4, 0x1d, 0x65, 0x1d, 0xce, 0x1e, 0x1b, 0x1e, 0x75, - 0x1e, 0x99, 0x1e, 0xf5, 0x1f, 0x48, 0x1f, 0x48, 0x1f, 0x90, 0x1f, 0xf4, - 0x20, 0x6a, 0x21, 0x01, 0x21, 0x74, 0x21, 0xa4, 0x22, 0x5d, 0x22, 0xa1, - 0x23, 0x4a, 0x23, 0xb4, 0x24, 0x08, 0x24, 0x35, 0x24, 0x3d, 0x25, 0x0c, - 0x25, 0x23, 0x25, 0x7e, 0x25, 0xba, 0x26, 0x0a, 0x26, 0x7f, 0x26, 0xa4, - 0x26, 0xee, 0x27, 0x2b, 0x27, 0x65, 0x27, 0xab, 0x27, 0xe2, 0x28, 0x2a, - 0x28, 0x7a, 0x28, 0xa3, 0x28, 0xc8, 0x28, 0xf7, 0x29, 0x6d, 0x29, 0x85, - 0x29, 0x9c, 0x29, 0xb4, 0x29, 0xcb, 0x29, 0xe4, 0x2a, 0x09, 0x2a, 0x72, - 0x2a, 0x85, 0x2a, 0x9d, 0x2a, 0xb4, 0x2a, 0xcc, 0x2a, 0xe5, 0x2a, 0xfd, - 0x2b, 0x14, 0x2b, 0x2b, 0x2b, 0x44, 0x2b, 0xa8, 0x2b, 0xbf, 0x2b, 0xd7, - 0x2b, 0xee, 0x2c, 0x05, 0x2c, 0x1d, 0x2c, 0x36, 0x2c, 0x9b, 0x2d, 0x1c, - 0x2d, 0x34, 0x2d, 0x4b, 0x2d, 0x63, 0x2d, 0x7c, 0x2d, 0x93, 0x2d, 0xdd, - 0x2e, 0x78, 0x2e, 0x8f, 0x2e, 0xa5, 0x2e, 0xbb, 0x2e, 0xd1, 0x2e, 0xe9, - 0x2f, 0x01, 0x2f, 0xb1, 0x2f, 0xc4, 0x2f, 0xdb, 0x2f, 0xf1, 0x30, 0x07, - 0x30, 0x1f, 0x30, 0x37, 0x30, 0x4e, 0x30, 0x65, 0x30, 0x7e, 0x31, 0x0e, - 0x31, 0x24, 0x31, 0x3b, 0x31, 0x51, 0x31, 0x68, 0x31, 0x7f, 0x31, 0x98, - 0x32, 0x09, 0x32, 0x82, 0x32, 0x99, 0x32, 0xaf, 0x32, 0xc5, 0x32, 0xde, - 0x32, 0xf4, 0x33, 0x59, 0x33, 0x71, 0x33, 0x89, 0x33, 0x9f, 0x33, 0xb6, - 0x33, 0xcc, 0x33, 0xe3, 0x34, 0x00, 0x34, 0x17, 0x34, 0x2f, 0x34, 0x46, - 0x34, 0x5e, 0x34, 0x75, 0x34, 0x8e, 0x34, 0xa5, 0x34, 0xbd, 0x34, 0xd5, - 0x34, 0xe8, 0x34, 0xf0, 0x35, 0x69, 0x35, 0x80, 0x35, 0x96, 0x35, 0xad, - 0x35, 0xc3, 0x35, 0xda, 0x35, 0xf1, 0x36, 0x05, 0x36, 0x26, 0x36, 0x3d, - 0x36, 0x53, 0x36, 0x6a, 0x36, 0x80, 0x36, 0x97, 0x36, 0xae, 0x36, 0xc5, - 0x36, 0xdd, 0x36, 0xf0, 0x37, 0x06, 0x37, 0x1e, 0x37, 0x3b, 0x37, 0x8c, - 0x37, 0xe7, 0x37, 0xfe, 0x38, 0x15, 0x38, 0x2c, 0x38, 0x43, 0x38, 0x5a, - 0x38, 0x71, 0x38, 0x84, 0x38, 0x98, 0x38, 0xaf, 0x38, 0xc8, 0x38, 0xf1, - 0x39, 0x15, 0x39, 0x2c, 0x39, 0x43, 0x39, 0x56, 0x39, 0x69, 0x39, 0xb2, - 0x39, 0xca, 0x39, 0xe7, 0x39, 0xfa, 0x3a, 0x0e, 0x3a, 0x26, 0x3a, 0x3e, - 0x3a, 0x51, 0x3a, 0x74, 0x3a, 0xc1, 0x3b, 0x0e, 0x3b, 0x25, 0x3b, 0x3b, - 0x3b, 0x4f, 0x3b, 0x62, 0x3b, 0x79, 0x3b, 0x90, 0x3b, 0xb2, 0x3c, 0x13, - 0x3c, 0x6c, 0x3c, 0x83, 0x3c, 0x99, 0x3c, 0xb0, 0x3c, 0xc7, 0x3c, 0xe0, - 0x3c, 0xf8, 0x3d, 0x69, 0x3d, 0xf7, 0x3e, 0x0f, 0x3e, 0x25, 0x3e, 0x38, - 0x3e, 0x4c, 0x3e, 0x64, 0x3e, 0x7c, 0x3e, 0x93, 0x3e, 0xa9, 0x3e, 0xc0, - 0x3e, 0xd6, 0x3e, 0xea, 0x3e, 0xfd, 0x3f, 0x14, 0x3f, 0x2a, 0x3f, 0x3d, - 0x3f, 0x51, 0x3f, 0x68, 0x3f, 0x7a, 0x3f, 0xd1, 0x40, 0x3b, 0x40, 0x53, - 0x40, 0x69, 0x40, 0x81, 0x40, 0x97, 0x40, 0xae, 0x40, 0xc4, 0x40, 0xdd, - 0x40, 0xf5, 0x41, 0x0e, 0x41, 0x26, 0x41, 0x39, 0x41, 0x4c, 0x41, 0x63, - 0x41, 0x7a, 0x41, 0x91, 0x41, 0xa7, 0x41, 0xc0, 0x41, 0xd7, 0x41, 0xed, - 0x42, 0x04, 0x42, 0x1b, 0x42, 0x32, 0x42, 0x48, 0x42, 0x7b, 0x42, 0xdf, - 0x43, 0xc1, 0x44, 0x96, 0x44, 0xae, 0x44, 0xc5, 0x44, 0xdc, 0x44, 0xf2, - 0x45, 0x05, 0x45, 0x18, 0x45, 0x4e, 0x45, 0x84, 0x45, 0x9c, 0x45, 0xd7, - 0x45, 0xfe, 0x46, 0x4e, 0x46, 0x7b, 0x46, 0xc2, 0x47, 0x05, 0x47, 0x32, - 0x47, 0xa3, 0x47, 0xbc, 0x47, 0xf6, 0x48, 0x1b, 0x48, 0x41, 0x48, 0x82, - 0x48, 0xb3, 0x48, 0xe7, 0x49, 0x0f, 0x49, 0x28, 0x49, 0x30, 0x49, 0x38, - 0x49, 0x6a, 0x49, 0xb6, 0x49, 0xbe, 0x49, 0xc6, 0x49, 0xce, 0x4a, 0x3d, - 0x4a, 0x45, 0x4a, 0x4d, 0x4a, 0x99, 0x4a, 0xa1, 0x4a, 0xa9, 0x4a, 0xf6, - 0x4a, 0xfe, 0x4b, 0x29, 0x4b, 0x31, 0x4b, 0x79, 0x4b, 0x81, 0x4b, 0x89, - 0x4c, 0x18, 0x4c, 0x20, 0x4c, 0x8e, 0x4d, 0x10, 0x4d, 0x29, 0x4d, 0x42, - 0x4d, 0x58, 0x4d, 0x6e, 0x4d, 0x84, 0x4d, 0x9c, 0x4d, 0xb1, 0x4e, 0x23, - 0x4e, 0xa5, 0x4f, 0x04, 0x4f, 0x8c, 0x50, 0x08, 0x50, 0x6e, 0x50, 0xae, - 0x51, 0x20, 0x51, 0x5e, 0x51, 0x66, 0x51, 0xe2, 0x52, 0x30, 0x52, 0x72, - 0x53, 0x12, 0x53, 0x1a, 0x53, 0x6e, 0x53, 0xc8, 0x54, 0x37, 0x54, 0x90, - 0x54, 0xda, 0x55, 0x1c, 0x55, 0x9a, 0x56, 0x2e, 0x56, 0x8f, 0x57, 0x19, - 0x57, 0x32, 0x57, 0x4b, 0x57, 0x61, 0x57, 0x77, 0x57, 0x95, 0x57, 0xae, - 0x58, 0x28, 0x58, 0x3f, 0x58, 0xaa, 0x58, 0xb2, 0x58, 0xba, 0x58, 0xd3, - 0x58, 0xdb, 0x59, 0x72, 0x59, 0xd1, 0x5a, 0x2f, 0x5a, 0x46, 0x5a, 0x5d, - 0x5a, 0xa6, 0x5a, 0xae, 0x5b, 0x01, 0x5b, 0x09, 0x5b, 0x11, 0x5b, 0x84, - 0x5b, 0x8c, 0x5c, 0x19, 0x5c, 0x9c, 0x5c, 0xfb, 0x5d, 0x13, 0x5d, 0x5b, - 0x5d, 0xbf, 0x5d, 0xc7, 0x5d, 0xcf, 0x5d, 0xd7, 0x5d, 0xdf, 0x5d, 0xe7, - 0x5d, 0xef, 0x5d, 0xf7, 0x5e, 0x67, 0x5e, 0x6f, 0x5e, 0x77, 0x5e, 0xac, - 0x5e, 0xf3, 0x5f, 0x3b, 0x5f, 0x91, 0x5f, 0xe7, 0x60, 0x3d, 0x60, 0x8b, - 0x60, 0xee, 0x61, 0x65, 0x61, 0xe2, 0x61, 0xea, 0x62, 0x65, 0x62, 0xd7, - 0x62, 0xff, 0x63, 0x65, 0x63, 0x6d, 0x63, 0xe2, 0x64, 0x60, 0x64, 0xa4, - 0x64, 0xbb, 0x64, 0xf5, 0x65, 0x40, 0x65, 0xa5, 0x65, 0xeb, 0x65, 0xf3, - 0x66, 0x1c, 0x66, 0x24, 0x66, 0x2c, 0x66, 0x6b, 0x66, 0x73, 0x66, 0xf0, - 0x66, 0xf8, 0x67, 0x32, 0x67, 0x72, 0x67, 0xbd, 0x68, 0x16, 0x68, 0x73, - 0x68, 0xd5, 0x69, 0x1f, 0x69, 0x88, 0x69, 0xfc, 0x6a, 0x53, 0x6a, 0x6b, - 0x6a, 0xda, 0x6a, 0xf0, 0x6b, 0x4c, 0x6b, 0x54, 0x6b, 0x5c, 0x6b, 0x75, - 0x6b, 0x7d, 0x6b, 0xf5, 0x6c, 0x54, 0x6c, 0xae, 0x6c, 0xc4, 0x6c, 0xda, - 0x6d, 0x1f, 0x6d, 0x54, 0x6d, 0x7f, 0x6d, 0x97, 0x6d, 0xae, 0x6d, 0xc5, - 0x6d, 0xdc, 0x6d, 0xf6, 0x6e, 0x10, 0x6e, 0x28, 0x6e, 0x40, 0x6e, 0x5b, - 0x6e, 0x76, 0x6e, 0x91, 0x6e, 0xba, 0x6e, 0xe5, 0x6f, 0x11, 0x6f, 0x44, - 0x6f, 0x72, 0x6f, 0xce, 0x70, 0x2a, 0x70, 0x94, 0x70, 0xef, 0x71, 0x75, - 0x71, 0xb8, 0x72, 0x5d, 0x73, 0x2a, 0x73, 0x32, 0x73, 0x3a, 0x73, 0x6d, - 0x73, 0xa2, 0x73, 0xb4, 0x73, 0xd2, 0x74, 0x15, 0x74, 0x70, 0x74, 0xf7, - 0x75, 0x81, 0x76, 0x15, 0x76, 0xc3, 0x77, 0x41, 0x77, 0xf7, 0x78, 0x7e, - 0x78, 0x86, 0x78, 0xe9, 0x79, 0x12, 0x79, 0x41, 0x79, 0x70, 0x79, 0x9b, - 0x7a, 0x15, 0x7a, 0x62, 0x7a, 0x91, 0x7a, 0xdb, 0x7b, 0x01, 0x7b, 0x2d, - 0x7b, 0xc9, 0x7c, 0x1a, 0x7c, 0xa3, 0x7d, 0x1b, 0x7d, 0x60, 0x7d, 0xa4, - 0x7d, 0xf0, 0x7e, 0x0f, 0x7e, 0x2d, 0x7e, 0x70, 0x7e, 0xa3, 0x7e, 0xc9, - 0x7e, 0xee, 0x7f, 0x13, 0x7f, 0x56, 0x7f, 0x9f, 0x7f, 0xfc, 0x80, 0x5b, - 0x80, 0x8a, 0x81, 0x27, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, - 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, - 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x81, 0x91, 0x82, 0xdb, 0x83, 0x4e, - 0x83, 0x5a, 0x83, 0x62, 0x84, 0x0b, 0x84, 0x88, 0x85, 0x24, 0x85, 0x3b, - 0x85, 0x52, 0x85, 0x66, 0x85, 0x7a, 0x85, 0xa7, 0x85, 0xf4, 0x86, 0x47, - 0x86, 0x74, 0x86, 0xa0, 0x87, 0x15, 0x87, 0x7c, 0x87, 0xdb, 0x88, 0x3e, - 0x88, 0x63, 0x88, 0x88, 0x88, 0xcf, 0x89, 0x0e, 0x89, 0x2e, 0x89, 0x46, - 0x89, 0x5e, 0x89, 0x75, 0x89, 0x8c, 0x8a, 0x29, 0x8a, 0xe4, 0x8b, 0x65, - 0x8b, 0xda, 0x8c, 0x4b, 0x8c, 0xbc, 0x8d, 0x40, 0x8d, 0xd3, 0x8e, 0x6b, - 0x8f, 0x17, 0x8f, 0xb8, 0x90, 0x5c, 0x91, 0x0a, 0x91, 0xba, 0x92, 0xa4, - 0x93, 0x93, 0x93, 0x9b, 0x93, 0xa3, 0x94, 0x10, 0x94, 0x70, 0x94, 0xd0, - 0x95, 0x38, 0x95, 0x52, 0x95, 0x6c, 0x96, 0x2c, 0x96, 0x42, 0x96, 0xc8, - 0x97, 0x46, 0x98, 0x4a, 0x99, 0x33, 0x99, 0xf9, 0x9a, 0xe6, 0x9b, 0x48, - 0x9b, 0x97, 0x9c, 0x56, 0x9c, 0x9b, 0x9c, 0xde, 0x9d, 0x0d, 0x9d, 0x3e, - 0x9e, 0x1d, 0x9e, 0xbb, 0x9f, 0x61, 0x9f, 0xe9, 0xa0, 0x44, 0xa0, 0xa8, - 0xa1, 0x24, 0xa1, 0xb2, 0xa2, 0x11, 0xa2, 0x61, 0xa2, 0xcf, 0xa3, 0x33, - 0xa3, 0xd1, 0xa4, 0x86, 0xa4, 0x9c, 0xa4, 0xb2, 0xa5, 0x26, 0xa5, 0x91, - 0xa5, 0xff, 0xa6, 0x72, 0xa6, 0xd8, 0xa7, 0x44, 0xa7, 0x8e, 0xa7, 0xe0, - 0xa8, 0x2e, 0xa8, 0x87, 0xa8, 0xd0, 0xa9, 0x1e, 0xa9, 0x89, 0xa9, 0xfc, - 0xaa, 0xad, 0xab, 0x57, 0xab, 0x6b, 0xab, 0x7f, 0xab, 0xce, 0xac, 0x1d, - 0xac, 0x25, 0xac, 0x88, 0xac, 0xf9, 0xad, 0x68, 0xae, 0x0f, 0xae, 0xcf, - 0xaf, 0x36, 0xaf, 0x94, 0xaf, 0xf3, 0xb0, 0x4f, 0xb0, 0xb6, 0xb1, 0x19, - 0xb1, 0x67, 0xb1, 0xad, 0xb2, 0x2f, 0xb2, 0xbf, 0xb3, 0x4c, 0xb3, 0xe6, - 0xb3, 0xee, 0xb4, 0x05, 0xb4, 0x1c, 0xb4, 0x8a, 0xb4, 0xf9, 0xb5, 0x6c, - 0xb5, 0xc4, 0xb6, 0x16, 0xb6, 0x77, 0xb6, 0xbe, 0xb7, 0x17, 0xb7, 0x71, - 0xb7, 0xbd, 0xb8, 0x41, 0xb8, 0xc1, 0xb8, 0xc9, 0xb8, 0xe0, 0xb8, 0xf6, - 0xb9, 0x0f, 0xb9, 0x27, 0xb9, 0x2f, 0xb9, 0x37, 0xb9, 0x4e, 0xb9, 0x64, - 0xb9, 0xca, 0xba, 0x28, 0xba, 0x42, 0xba, 0x5b, 0xba, 0x74, 0xba, 0x8e, - 0xba, 0xa8, 0xba, 0xc2, 0xbb, 0x2c, 0xbb, 0x94, 0xbb, 0xac, 0xbb, 0xc3, - 0xbb, 0xdd, 0xbb, 0xf6, 0xbc, 0x0f, 0xbc, 0x28, 0xbc, 0x30, 0xbc, 0x38, - 0xbc, 0x51, 0xbc, 0x69, 0xbc, 0x83, 0xbc, 0x9d, 0xbc, 0xb5, 0xbc, 0xcb, - 0xbc, 0xe5, 0xbc, 0xfd, 0xbd, 0x16, 0xbd, 0x2e, 0xbd, 0x47, 0xbd, 0x5f, - 0xbd, 0xa6, 0xbd, 0xe1, 0xbd, 0xfa, 0xbe, 0x13, 0xbe, 0x25, 0xbe, 0x37, - 0xbe, 0x50, 0xbe, 0x66, 0xbe, 0xe7, 0xbf, 0x9a, 0xbf, 0xe4, 0xbf, 0xec, - 0xc0, 0x66, 0xc0, 0xf2, 0xc1, 0x8b, 0xc2, 0x1d, 0xc2, 0xa2, 0xc3, 0x28, - 0xc3, 0xbb, 0xc4, 0x28, 0xc4, 0x84, 0xc4, 0xeb, 0xc5, 0x4f, 0xc5, 0xcb, - 0xc6, 0x26, 0xc6, 0x87, 0xc7, 0x05, 0xc7, 0x89, 0xc7, 0x9d, 0xc7, 0xb1, - 0xc7, 0xc8, 0xc7, 0xdf, 0xc7, 0xf6, 0xc8, 0x0d, 0xc8, 0x27, 0xc8, 0x40, - 0xc8, 0x5a, 0xc8, 0x73, 0xc8, 0x8d, 0xc8, 0xa6, 0xc8, 0xc0, 0xc8, 0xd9, - 0xc8, 0xfd, 0xc9, 0x1e, 0xc9, 0x37, 0xc9, 0x50, 0xc9, 0x69, 0xc9, 0x82, - 0xc9, 0x9b, 0xc9, 0xb4, 0xc9, 0xcd, 0xc9, 0xe6, 0xca, 0x08, 0xca, 0x29, - 0xca, 0x40, 0xca, 0x57, 0xca, 0x6e, 0xca, 0x85, 0xca, 0x9d, 0xca, 0xb3, - 0xca, 0xcd, 0xca, 0xe6, 0xcb, 0x00, 0xcb, 0x19, 0xcb, 0x33, 0xcb, 0x4c, - 0xcb, 0x66, 0xcb, 0x7f, 0xcb, 0xa3, 0xcb, 0xc4, 0xcb, 0xdb, 0xcb, 0xf2, - 0xcc, 0x0a, 0xcc, 0x22, 0xcc, 0x39, 0xcc, 0x51, 0xcc, 0x68, 0xcc, 0x7f, - 0xcc, 0x98, 0xcc, 0xb2, 0xcc, 0xcb, 0xcc, 0xe5, 0xcc, 0xfe, 0xcd, 0x18, - 0xcd, 0x31, 0xcd, 0x4b, 0xcd, 0x6d, 0xcd, 0x91, 0xcd, 0xa8, 0xcd, 0xbf, - 0xcd, 0xd7, 0xcd, 0xee, 0xce, 0x06, 0xce, 0x1e, 0xce, 0x36, 0xce, 0x4d, - 0xce, 0x65, 0xce, 0x7d, 0xce, 0x94, 0xce, 0xac, 0xce, 0xc3, 0xce, 0xda, - 0xce, 0xf2, 0xcf, 0x07, 0xcf, 0x1f, 0xcf, 0x34, 0xcf, 0x4a, 0xcf, 0x60, - 0xcf, 0x78, 0xcf, 0x8d, 0xcf, 0xa5, 0xcf, 0xbd, 0xcf, 0xd5, 0xcf, 0xeb, - 0xd0, 0x02, 0xd0, 0x19, 0xd0, 0x30, 0xd0, 0x46, 0xd0, 0x5a, 0xd0, 0x9d, - 0xd0, 0xf6, 0xd1, 0x4b, 0xd1, 0xba, 0xd2, 0x2f, 0xd2, 0x7a, 0xd2, 0xc8, - 0xd3, 0x29, 0xd3, 0x92, 0xd3, 0xbf, 0xd3, 0xe7, 0xd4, 0x0f, 0x00, 0x00, - 0x00, 0x02, 0x00, 0xc1, 0x00, 0x00, 0x04, 0x0a, 0x05, 0xb6, 0x00, 0x03, - 0x00, 0x07, 0x00, 0x2b, 0x40, 0x0b, 0x05, 0x02, 0x02, 0x09, 0x04, 0x70, - 0x03, 0x80, 0x03, 0x02, 0x03, 0xb8, 0xff, 0xc0, 0x40, 0x09, 0x06, 0x09, - 0x48, 0x03, 0x04, 0x03, 0x07, 0x00, 0x03, 0x00, 0x3f, 0x32, 0x2f, 0x33, - 0x01, 0x2f, 0x2b, 0x5d, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x31, 0x30, 0x13, - 0x21, 0x11, 0x21, 0x37, 0x21, 0x11, 0x21, 0xc1, 0x03, 0x49, 0xfc, 0xb7, - 0x68, 0x02, 0x79, 0xfd, 0x87, 0x05, 0xb6, 0xfa, 0x4a, 0x68, 0x04, 0xe6, - 0x00, 0x02, 0x00, 0x93, 0xff, 0xe3, 0x01, 0x91, 0x05, 0xb6, 0x00, 0x03, - 0x00, 0x17, 0x00, 0x3a, 0xb9, 0x00, 0x01, 0xff, 0xf0, 0x40, 0x13, 0x0a, - 0x14, 0x48, 0x10, 0x19, 0x80, 0x19, 0x90, 0x19, 0xa0, 0x19, 0x04, 0x03, - 0x0e, 0x9a, 0x04, 0x02, 0x02, 0x04, 0xb8, 0xff, 0xc0, 0x40, 0x0a, 0x07, - 0x0a, 0x48, 0x04, 0x01, 0x09, 0x9b, 0x13, 0x02, 0x03, 0x00, 0x3f, 0x2f, - 0xf5, 0xce, 0x01, 0x2f, 0x2b, 0x33, 0x2f, 0x10, 0xe1, 0x32, 0x5d, 0x31, - 0x30, 0x2b, 0x01, 0x23, 0x03, 0x33, 0x03, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x01, 0x50, - 0x79, 0x33, 0xdf, 0xf0, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, 0x22, 0x14, - 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x01, 0x9e, 0x04, 0x18, - 0xfa, 0xb9, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x35, - 0x22, 0x10, 0x10, 0x22, 0x35, 0x00, 0x00, 0x02, 0x00, 0x85, 0x03, 0xa6, - 0x02, 0xb2, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x37, 0x40, 0x23, - 0x04, 0x98, 0x07, 0x07, 0x09, 0xd0, 0x09, 0xe0, 0x09, 0x02, 0x2f, 0x09, - 0x6f, 0x09, 0x7f, 0x09, 0x03, 0x00, 0x98, 0x00, 0x03, 0x10, 0x03, 0xe0, - 0x03, 0xf0, 0x03, 0x04, 0x03, 0x06, 0x02, 0x02, 0x07, 0x03, 0x03, 0x00, - 0x3f, 0x33, 0x33, 0x2f, 0x33, 0x01, 0x2f, 0x5d, 0xe1, 0x5d, 0x5d, 0x12, - 0x39, 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x03, 0x23, 0x03, 0x21, 0x03, 0x23, - 0x03, 0x01, 0x4a, 0x29, 0x73, 0x29, 0x02, 0x2d, 0x29, 0x72, 0x29, 0x05, - 0xb6, 0xfd, 0xf0, 0x02, 0x10, 0xfd, 0xf0, 0x02, 0x10, 0x00, 0x00, 0x02, - 0x00, 0x33, 0x00, 0x00, 0x04, 0xf8, 0x05, 0xb6, 0x00, 0x1b, 0x00, 0x1f, - 0x00, 0x99, 0x40, 0x58, 0x03, 0x03, 0x1a, 0x1a, 0x18, 0x16, 0x1e, 0x1d, - 0x07, 0x04, 0x06, 0x17, 0x17, 0x06, 0x19, 0x00, 0x01, 0x04, 0x04, 0x05, - 0xb1, 0x18, 0x18, 0x21, 0x15, 0x1f, 0x1c, 0x08, 0x04, 0x09, 0x14, 0x14, - 0x12, 0x0f, 0x0e, 0x0b, 0x04, 0x13, 0xb1, 0x0a, 0x50, 0x10, 0x01, 0x10, - 0x10, 0x0c, 0x0c, 0x09, 0x50, 0x0a, 0x01, 0x0a, 0x1c, 0x01, 0x48, 0x0d, - 0x01, 0x0d, 0xae, 0x0c, 0x08, 0x04, 0x0c, 0x1f, 0x00, 0x10, 0xae, 0x11, - 0x19, 0x15, 0x11, 0x3f, 0x11, 0x4f, 0x11, 0xdf, 0x11, 0x03, 0x0c, 0x11, - 0x0c, 0x11, 0x05, 0x17, 0x13, 0x06, 0x0a, 0x05, 0x00, 0x2f, 0x33, 0x3f, - 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x11, 0x33, 0x33, 0x10, 0xe1, - 0x32, 0x32, 0x11, 0x33, 0x33, 0x10, 0xe1, 0x5d, 0x32, 0x32, 0x01, 0x2f, - 0x5d, 0x33, 0x33, 0x2f, 0x33, 0x2f, 0x5d, 0x10, 0xe4, 0x17, 0x39, 0x32, - 0x11, 0x12, 0x17, 0x39, 0x11, 0x33, 0x2f, 0xe4, 0x17, 0x39, 0x32, 0x33, - 0x11, 0x12, 0x17, 0x39, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x31, 0x30, 0x01, - 0x03, 0x21, 0x15, 0x21, 0x03, 0x23, 0x13, 0x21, 0x03, 0x23, 0x13, 0x21, - 0x35, 0x21, 0x13, 0x21, 0x35, 0x21, 0x13, 0x33, 0x03, 0x21, 0x13, 0x33, - 0x03, 0x21, 0x15, 0x01, 0x21, 0x13, 0x21, 0x03, 0xd7, 0x3f, 0x01, 0x18, - 0xfe, 0xcd, 0x52, 0x93, 0x54, 0xfe, 0xdd, 0x52, 0x90, 0x4e, 0xfe, 0xfe, - 0x01, 0x1d, 0x41, 0xfe, 0xee, 0x01, 0x2b, 0x52, 0x93, 0x52, 0x01, 0x25, - 0x54, 0x90, 0x54, 0x01, 0x06, 0xfc, 0xeb, 0x01, 0x23, 0x40, 0xfe, 0xdd, - 0x03, 0x7d, 0xfe, 0xb8, 0x89, 0xfe, 0x54, 0x01, 0xac, 0xfe, 0x54, 0x01, - 0xac, 0x89, 0x01, 0x48, 0x89, 0x01, 0xb0, 0xfe, 0x50, 0x01, 0xb0, 0xfe, - 0x50, 0x89, 0xfe, 0xb8, 0x01, 0x48, 0x00, 0x03, 0x00, 0x7b, 0xff, 0x89, - 0x03, 0xd9, 0x06, 0x12, 0x00, 0x2d, 0x00, 0x36, 0x00, 0x3f, 0x00, 0xb4, - 0x40, 0x33, 0x34, 0x2f, 0x29, 0x01, 0x29, 0x2f, 0x21, 0x01, 0x21, 0x06, - 0x70, 0x2f, 0x3c, 0x01, 0x3c, 0x2f, 0x1e, 0x01, 0x1e, 0x13, 0x20, 0x07, - 0x01, 0x07, 0x07, 0x0d, 0x2e, 0x6e, 0x24, 0x0f, 0x00, 0x1f, 0x00, 0x02, - 0xff, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x00, 0x41, 0x0d, 0x0d, 0x37, - 0x6e, 0xe0, 0x19, 0x01, 0x19, 0xb8, 0xff, 0xc0, 0x40, 0x30, 0x08, 0x0b, - 0x48, 0x19, 0x33, 0x14, 0x14, 0x29, 0x3c, 0x3c, 0x13, 0x2e, 0x37, 0x08, - 0x3d, 0x28, 0x73, 0x21, 0x25, 0x21, 0x1f, 0x40, 0x0e, 0x11, 0x48, 0x1f, - 0x1f, 0x1e, 0x50, 0x21, 0x01, 0x0f, 0x21, 0x1f, 0x21, 0x02, 0x08, 0x21, - 0x34, 0x13, 0x73, 0x08, 0x0e, 0x08, 0x06, 0x06, 0x05, 0x08, 0xb8, 0xff, - 0xc0, 0xb3, 0x0a, 0x0d, 0x48, 0x08, 0x00, 0x2f, 0x2b, 0x33, 0x33, 0x2f, - 0x11, 0x33, 0x10, 0xe1, 0x32, 0x2f, 0x5e, 0x5d, 0x5d, 0x33, 0x33, 0x2f, - 0x2b, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x12, 0x39, 0x39, 0x12, 0x39, 0x11, - 0x33, 0x33, 0x11, 0x33, 0x01, 0x2f, 0x2b, 0x5d, 0xe1, 0x33, 0x2f, 0x10, - 0xd6, 0x5e, 0x5d, 0x5d, 0x71, 0x32, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x33, - 0x33, 0x5d, 0x33, 0x5d, 0xe1, 0x32, 0x5d, 0x32, 0x5d, 0x32, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x23, 0x35, 0x22, 0x2e, 0x02, 0x27, - 0x35, 0x1e, 0x03, 0x33, 0x11, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x37, - 0x35, 0x33, 0x15, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x27, 0x11, 0x1e, - 0x03, 0x07, 0x34, 0x2e, 0x02, 0x27, 0x11, 0x36, 0x36, 0x01, 0x14, 0x1e, - 0x02, 0x17, 0x11, 0x06, 0x06, 0x03, 0xd9, 0x32, 0x5d, 0x85, 0x54, 0x8a, - 0x32, 0x66, 0x60, 0x54, 0x20, 0x21, 0x57, 0x60, 0x65, 0x2f, 0x59, 0x83, - 0x56, 0x2a, 0x31, 0x5b, 0x81, 0x4f, 0x8a, 0x64, 0xa9, 0x43, 0x42, 0x38, - 0x8c, 0x4a, 0x58, 0x87, 0x5b, 0x2e, 0xb0, 0x14, 0x2b, 0x46, 0x33, 0x5d, - 0x5b, 0xfe, 0x12, 0x11, 0x28, 0x42, 0x31, 0x59, 0x53, 0x01, 0xbe, 0x46, - 0x72, 0x54, 0x37, 0x0c, 0xe6, 0xdd, 0x09, 0x12, 0x1a, 0x11, 0xac, 0x10, - 0x21, 0x1a, 0x11, 0x01, 0xb2, 0x1e, 0x42, 0x55, 0x6e, 0x4a, 0x43, 0x6f, - 0x53, 0x35, 0x09, 0xb4, 0xb0, 0x05, 0x2a, 0x1f, 0x91, 0x19, 0x29, 0x06, - 0xfe, 0x5a, 0x1f, 0x42, 0x53, 0x6b, 0x48, 0x21, 0x37, 0x2d, 0x26, 0x12, - 0xfe, 0x8b, 0x0e, 0x62, 0x02, 0xa3, 0x24, 0x39, 0x2f, 0x26, 0x11, 0x01, - 0x71, 0x10, 0x59, 0x00, 0x00, 0x05, 0x00, 0x66, 0xff, 0xec, 0x06, 0x33, - 0x05, 0xcb, 0x00, 0x09, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x3b, 0x00, 0x3f, - 0x00, 0x5d, 0xb2, 0x3c, 0x10, 0x3e, 0xb8, 0xff, 0xf0, 0x40, 0x33, 0x3c, - 0x3e, 0x3c, 0x3e, 0x28, 0x14, 0x1e, 0xb4, 0x32, 0xb5, 0x23, 0xb4, 0x28, - 0x41, 0x0f, 0x41, 0x01, 0x05, 0xb4, 0x0a, 0xb5, 0x00, 0xb4, 0x10, 0x14, - 0x20, 0x14, 0x30, 0x14, 0x03, 0x14, 0x3f, 0x06, 0x3e, 0x18, 0x25, 0xb6, - 0x37, 0xb7, 0x21, 0xb6, 0x2d, 0x19, 0x03, 0xb6, 0x0f, 0xb7, 0x07, 0xb6, - 0x19, 0x07, 0x00, 0x3f, 0xe1, 0xf4, 0xe1, 0x3f, 0xe1, 0xf4, 0xe1, 0x3f, - 0x3f, 0x01, 0x2f, 0x5d, 0xe1, 0xf4, 0xe1, 0x5d, 0x10, 0xde, 0xe1, 0xf4, - 0xe1, 0x11, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x38, 0x38, 0x31, 0x30, 0x13, - 0x14, 0x16, 0x33, 0x32, 0x11, 0x10, 0x23, 0x22, 0x06, 0x05, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0x01, 0x14, 0x16, 0x33, 0x32, 0x11, 0x10, 0x23, 0x22, 0x06, 0x05, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, - 0x32, 0x1e, 0x02, 0x01, 0x01, 0x23, 0x01, 0xfa, 0x47, 0x50, 0x9c, 0x9c, - 0x50, 0x47, 0x01, 0xc7, 0x24, 0x4a, 0x73, 0x4f, 0x49, 0x70, 0x4c, 0x26, - 0x23, 0x49, 0x71, 0x4e, 0x4b, 0x71, 0x4d, 0x27, 0x01, 0xac, 0x47, 0x50, - 0x9c, 0x9c, 0x50, 0x47, 0x01, 0xc6, 0x23, 0x4a, 0x73, 0x4f, 0x4a, 0x70, - 0x4b, 0x26, 0x23, 0x49, 0x71, 0x4e, 0x4b, 0x71, 0x4c, 0x27, 0xff, 0x00, - 0xfc, 0xd5, 0x9e, 0x03, 0x2c, 0x04, 0x02, 0xa5, 0xa5, 0x01, 0x4a, 0x01, - 0x48, 0xa3, 0xa5, 0x6c, 0xac, 0x76, 0x3f, 0x3f, 0x76, 0xac, 0x6c, 0x6c, - 0xaa, 0x75, 0x3e, 0x3e, 0x75, 0xaa, 0xfd, 0x4a, 0xa5, 0xa4, 0x01, 0x49, - 0x01, 0x48, 0xa3, 0xa5, 0x6c, 0xab, 0x76, 0x3f, 0x3f, 0x76, 0xab, 0x6c, - 0x6c, 0xaa, 0x75, 0x3e, 0x3e, 0x75, 0xaa, 0x03, 0x92, 0xfa, 0x4a, 0x05, - 0xb6, 0x00, 0x00, 0x03, 0x00, 0x6d, 0xff, 0xec, 0x05, 0x7d, 0x05, 0xcd, - 0x00, 0x11, 0x00, 0x21, 0x00, 0x53, 0x00, 0x80, 0x40, 0x4d, 0x27, 0x18, - 0x17, 0x4a, 0x04, 0x49, 0x2c, 0x49, 0x48, 0x0a, 0x47, 0x36, 0x41, 0x47, - 0x42, 0x20, 0x42, 0x01, 0x36, 0x42, 0x36, 0x42, 0x1d, 0x05, 0x3b, 0x3c, - 0x47, 0x04, 0x48, 0x00, 0x47, 0x00, 0x2c, 0x10, 0x2c, 0x02, 0x08, 0x2c, - 0x2c, 0x22, 0x20, 0x48, 0x01, 0x48, 0x55, 0x1d, 0x48, 0x10, 0x22, 0x20, - 0x22, 0x02, 0x22, 0x41, 0x41, 0x31, 0x12, 0x51, 0x4f, 0x16, 0x27, 0x18, - 0x17, 0x4a, 0x04, 0x0f, 0x47, 0x3c, 0x3b, 0x05, 0x04, 0x31, 0x49, 0x15, - 0x0f, 0x50, 0x31, 0x00, 0x2f, 0xe1, 0x3f, 0x12, 0x17, 0x39, 0x12, 0x17, - 0x39, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x01, 0x2f, 0x5d, 0xe1, 0x10, 0xc6, - 0x5d, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x11, 0x17, 0x39, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x5d, 0x10, 0xe1, 0x10, 0xe1, 0x11, 0x33, 0x11, 0x12, - 0x17, 0x39, 0x31, 0x30, 0x01, 0x14, 0x1e, 0x02, 0x17, 0x3e, 0x03, 0x35, - 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x13, 0x32, 0x3e, 0x02, 0x37, 0x01, - 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x25, 0x34, 0x3e, 0x02, 0x37, 0x2e, - 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x07, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x0e, 0x03, 0x07, 0x01, 0x23, - 0x27, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x01, 0xa6, 0x10, 0x21, 0x34, - 0x24, 0x3b, 0x56, 0x38, 0x1c, 0x19, 0x2f, 0x42, 0x2a, 0x56, 0x64, 0x87, - 0x3a, 0x62, 0x54, 0x48, 0x20, 0xfe, 0x7d, 0x34, 0x50, 0x37, 0x1c, 0x23, - 0x42, 0x60, 0xfe, 0x7d, 0x28, 0x4d, 0x6f, 0x47, 0x1f, 0x3c, 0x2d, 0x1c, - 0x32, 0x5e, 0x8a, 0x58, 0x53, 0x83, 0x5b, 0x30, 0x32, 0x54, 0x6d, 0x3c, - 0x01, 0x60, 0x1b, 0x2b, 0x22, 0x1b, 0x0a, 0xb8, 0x0f, 0x29, 0x35, 0x41, - 0x27, 0x01, 0x15, 0xe1, 0xa8, 0x31, 0x60, 0x6c, 0x7c, 0x4e, 0x69, 0xa7, - 0x73, 0x3d, 0x04, 0x8d, 0x22, 0x41, 0x41, 0x43, 0x25, 0x23, 0x3e, 0x40, - 0x46, 0x29, 0x24, 0x3d, 0x2c, 0x19, 0x59, 0xfb, 0xaf, 0x17, 0x28, 0x36, - 0x1f, 0x01, 0x97, 0x21, 0x3f, 0x48, 0x55, 0x38, 0x36, 0x5b, 0x41, 0x24, - 0xf0, 0x4e, 0x7a, 0x64, 0x56, 0x2a, 0x24, 0x4d, 0x57, 0x63, 0x39, 0x4b, - 0x77, 0x53, 0x2b, 0x2b, 0x53, 0x77, 0x4b, 0x40, 0x6d, 0x5d, 0x4f, 0x24, - 0xfe, 0x8c, 0x1d, 0x3c, 0x44, 0x4e, 0x2f, 0x42, 0x6f, 0x62, 0x55, 0x29, - 0xfe, 0xdb, 0xac, 0x2d, 0x47, 0x31, 0x1b, 0x35, 0x67, 0x95, 0x00, 0x01, - 0x00, 0x85, 0x03, 0xa6, 0x01, 0x4a, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x2a, - 0x40, 0x1c, 0xc0, 0x05, 0xd0, 0x05, 0xe0, 0x05, 0x03, 0x2f, 0x05, 0x6f, - 0x05, 0x02, 0x00, 0x98, 0x00, 0x03, 0x10, 0x03, 0xe0, 0x03, 0xf0, 0x03, - 0x04, 0x03, 0x02, 0x02, 0x03, 0x03, 0x00, 0x3f, 0x33, 0x2f, 0x01, 0x2f, - 0x5d, 0xe1, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x03, 0x23, 0x03, 0x01, 0x4a, - 0x29, 0x73, 0x29, 0x05, 0xb6, 0xfd, 0xf0, 0x02, 0x10, 0x00, 0x00, 0x01, - 0x00, 0x52, 0xfe, 0xbc, 0x02, 0x2b, 0x05, 0xb6, 0x00, 0x13, 0x00, 0x1a, - 0x40, 0x0d, 0x06, 0x0e, 0xf2, 0x09, 0xf0, 0x3f, 0x00, 0x01, 0x00, 0x0e, - 0xf9, 0x05, 0xf8, 0x00, 0x3f, 0x3f, 0x01, 0x2f, 0x5d, 0xe1, 0xe4, 0x32, - 0x31, 0x30, 0x13, 0x34, 0x3e, 0x02, 0x37, 0x33, 0x06, 0x02, 0x15, 0x14, - 0x1e, 0x02, 0x17, 0x23, 0x2e, 0x03, 0x52, 0x24, 0x4a, 0x71, 0x4e, 0xac, - 0x8c, 0x91, 0x25, 0x47, 0x6a, 0x45, 0xaa, 0x4e, 0x71, 0x4a, 0x24, 0x02, - 0x31, 0x7d, 0xf3, 0xe5, 0xd3, 0x5d, 0xc1, 0xfe, 0x32, 0xf4, 0x77, 0xec, - 0xe2, 0xd4, 0x5e, 0x5a, 0xce, 0xe1, 0xf0, 0x00, 0x00, 0x01, 0x00, 0x3d, - 0xfe, 0xbc, 0x02, 0x17, 0x05, 0xb6, 0x00, 0x13, 0x00, 0x1c, 0x40, 0x0e, - 0x06, 0x0e, 0xf2, 0x0b, 0xf0, 0xb0, 0x00, 0x01, 0x00, 0x15, 0x0e, 0xf8, - 0x05, 0xf9, 0x00, 0x3f, 0x3f, 0x01, 0x10, 0xde, 0x5d, 0xe1, 0xe4, 0x32, - 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x23, 0x3e, 0x03, 0x35, 0x34, - 0x02, 0x27, 0x33, 0x1e, 0x03, 0x02, 0x17, 0x24, 0x4b, 0x71, 0x4e, 0xaa, - 0x45, 0x6a, 0x48, 0x24, 0x90, 0x8d, 0xac, 0x4e, 0x71, 0x4b, 0x24, 0x02, - 0x31, 0x7c, 0xf0, 0xe1, 0xce, 0x5a, 0x5e, 0xd4, 0xe2, 0xec, 0x77, 0xf4, - 0x01, 0xce, 0xc1, 0x5d, 0xd3, 0xe5, 0xf3, 0x00, 0x00, 0x01, 0x00, 0x52, - 0x02, 0x77, 0x04, 0x14, 0x06, 0x14, 0x00, 0x0e, 0x00, 0x24, 0x40, 0x15, - 0x1f, 0x10, 0x01, 0x00, 0x98, 0x00, 0x0e, 0x80, 0x0e, 0x90, 0x0e, 0x03, - 0x08, 0x0e, 0x1f, 0x06, 0x01, 0x06, 0x06, 0x00, 0x00, 0x00, 0x3f, 0x32, - 0x2f, 0x5d, 0x01, 0x2f, 0x5e, 0x5d, 0xe5, 0x5d, 0x31, 0x30, 0x01, 0x03, - 0x25, 0x17, 0x05, 0x13, 0x07, 0x03, 0x03, 0x27, 0x13, 0x25, 0x37, 0x05, - 0x03, 0x02, 0x98, 0x2b, 0x01, 0x8d, 0x1a, 0xfe, 0x86, 0xf5, 0xb2, 0xb0, - 0x9e, 0xb8, 0xf2, 0xfe, 0x89, 0x1d, 0x01, 0x87, 0x2b, 0x06, 0x14, 0xfe, - 0x77, 0x6f, 0xc1, 0x1c, 0xfe, 0xba, 0x60, 0x01, 0x66, 0xfe, 0x9a, 0x60, - 0x01, 0x46, 0x1c, 0xc1, 0x6f, 0x01, 0x89, 0x00, 0x00, 0x01, 0x00, 0x66, - 0x01, 0x06, 0x04, 0x02, 0x04, 0xa2, 0x00, 0x0b, 0x00, 0x29, 0x40, 0x18, - 0x10, 0x0d, 0x01, 0x06, 0x09, 0xaa, 0x03, 0xef, 0x00, 0x01, 0x20, 0x00, - 0x60, 0x00, 0xa0, 0x00, 0x03, 0x00, 0x09, 0x00, 0xad, 0x06, 0x03, 0xb3, - 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x5d, 0x5d, 0x32, 0xe1, 0x32, - 0x5d, 0x31, 0x30, 0x01, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, - 0x21, 0x11, 0x23, 0x01, 0xe9, 0xfe, 0x7d, 0x01, 0x83, 0x96, 0x01, 0x83, - 0xfe, 0x7d, 0x96, 0x02, 0x87, 0x96, 0x01, 0x85, 0xfe, 0x7b, 0x96, 0xfe, - 0x7f, 0x00, 0x00, 0x01, 0x00, 0x3f, 0xfe, 0xf8, 0x01, 0x79, 0x00, 0xee, - 0x00, 0x0c, 0x00, 0x38, 0x40, 0x14, 0xcf, 0x0e, 0x01, 0x10, 0x0e, 0x90, - 0x0e, 0xa0, 0x0e, 0x03, 0x1b, 0x0c, 0x2b, 0x0c, 0x02, 0x0c, 0x01, 0x97, - 0x06, 0x07, 0xb8, 0xff, 0xc0, 0x40, 0x0d, 0x10, 0x14, 0x48, 0x5f, 0x07, - 0x01, 0x10, 0x07, 0x01, 0x07, 0x06, 0x9c, 0x0c, 0x00, 0x2f, 0xed, 0x01, - 0x2f, 0x5d, 0x5d, 0x2b, 0x33, 0xed, 0x32, 0x5d, 0x5d, 0x5d, 0x31, 0x30, - 0x25, 0x17, 0x0e, 0x03, 0x07, 0x23, 0x3e, 0x03, 0x37, 0x01, 0x6a, 0x0f, - 0x0e, 0x27, 0x2f, 0x33, 0x19, 0x8a, 0x0f, 0x1d, 0x1b, 0x16, 0x08, 0xee, - 0x17, 0x36, 0x7a, 0x7c, 0x7b, 0x38, 0x3d, 0x84, 0x83, 0x7d, 0x35, 0x00, - 0x00, 0x01, 0x00, 0x52, 0x01, 0xd1, 0x02, 0x42, 0x02, 0x79, 0x00, 0x03, - 0x00, 0x15, 0x40, 0x09, 0x02, 0x05, 0x40, 0x00, 0x01, 0x00, 0x00, 0xb9, - 0x01, 0x00, 0x2f, 0xe1, 0x01, 0x2f, 0x5d, 0x10, 0xce, 0x31, 0x30, 0x13, - 0x35, 0x21, 0x15, 0x52, 0x01, 0xf0, 0x01, 0xd1, 0xa8, 0xa8, 0x00, 0x01, - 0x00, 0x93, 0xff, 0xe3, 0x01, 0x91, 0x00, 0xfa, 0x00, 0x13, 0x00, 0x35, - 0x40, 0x1b, 0x80, 0x15, 0x90, 0x15, 0xa0, 0x15, 0x03, 0x11, 0x15, 0x01, - 0x0a, 0x96, 0xc0, 0x00, 0xd0, 0x00, 0x02, 0x34, 0x00, 0x44, 0x00, 0x64, - 0x00, 0x74, 0x00, 0x04, 0x00, 0xb8, 0xff, 0xc0, 0xb6, 0x07, 0x0a, 0x48, - 0x00, 0x05, 0x9b, 0x0f, 0x00, 0x2f, 0xed, 0x01, 0x2f, 0x2b, 0x5d, 0x5d, - 0xed, 0x5d, 0x5d, 0x31, 0x30, 0x37, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x93, 0x14, 0x22, - 0x2e, 0x1b, 0x1a, 0x2f, 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, - 0x22, 0x14, 0x6f, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, - 0x35, 0x22, 0x10, 0x10, 0x22, 0x35, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, - 0x02, 0xe7, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x1e, 0xb1, 0x01, 0x02, 0xb8, - 0xff, 0xf0, 0x40, 0x09, 0x02, 0x03, 0x00, 0x10, 0x00, 0x05, 0x01, 0x00, - 0x03, 0x00, 0x3f, 0x2f, 0x11, 0x01, 0x33, 0x38, 0x32, 0x2f, 0x38, 0x33, - 0x31, 0x30, 0x01, 0x01, 0x23, 0x01, 0x02, 0xe7, 0xfd, 0xe0, 0xb3, 0x02, - 0x21, 0x05, 0xb6, 0xfa, 0x4a, 0x05, 0xb6, 0x00, 0x00, 0x02, 0x00, 0x62, - 0xff, 0xec, 0x04, 0x08, 0x05, 0xcd, 0x00, 0x13, 0x00, 0x27, 0x00, 0x26, - 0x40, 0x15, 0x1e, 0x6f, 0x00, 0x29, 0x10, 0x29, 0x01, 0x14, 0x6f, 0x20, - 0x0a, 0x01, 0x0a, 0x23, 0x73, 0x0f, 0x07, 0x19, 0x73, 0x05, 0x19, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x01, 0x2f, 0x5d, 0xe1, 0x5d, 0x10, 0xde, 0xe1, - 0x31, 0x30, 0x01, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, - 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, 0x05, 0x14, - 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, - 0x0e, 0x02, 0x04, 0x08, 0x33, 0x71, 0xb2, 0x7f, 0x76, 0xaf, 0x73, 0x39, - 0x33, 0x6f, 0xb1, 0x7e, 0x77, 0xb0, 0x74, 0x3a, 0xfd, 0x13, 0x1e, 0x42, - 0x6b, 0x4d, 0x4d, 0x6c, 0x45, 0x1f, 0x1f, 0x45, 0x6c, 0x4d, 0x4d, 0x6b, - 0x42, 0x1e, 0x02, 0xdd, 0xb1, 0xfe, 0xe8, 0xc2, 0x66, 0x66, 0xc2, 0x01, - 0x18, 0xb1, 0xb1, 0x01, 0x18, 0xc1, 0x66, 0x65, 0xc1, 0xfe, 0xe8, 0xb2, - 0x96, 0xe0, 0x95, 0x4b, 0x4a, 0x94, 0xe1, 0x97, 0x96, 0xe0, 0x94, 0x4a, - 0x4a, 0x94, 0xe0, 0x00, 0x00, 0x01, 0x00, 0xb2, 0x00, 0x00, 0x02, 0xc7, - 0x05, 0xb6, 0x00, 0x10, 0x00, 0x35, 0x40, 0x21, 0x40, 0x12, 0x01, 0x0f, - 0x01, 0x0e, 0x0e, 0x00, 0x6e, 0xbf, 0x01, 0xff, 0x01, 0x02, 0x7e, 0x01, - 0x01, 0x00, 0x01, 0x10, 0x01, 0x20, 0x01, 0x40, 0x01, 0x04, 0x06, 0x01, - 0x0d, 0x0f, 0x06, 0x00, 0x18, 0x00, 0x3f, 0x3f, 0xcd, 0x01, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0xe1, 0x33, 0x2f, 0x11, 0x33, 0x5d, 0x31, 0x30, 0x21, - 0x23, 0x11, 0x34, 0x3e, 0x02, 0x37, 0x0e, 0x03, 0x07, 0x07, 0x27, 0x01, - 0x33, 0x02, 0xc7, 0xb0, 0x01, 0x03, 0x03, 0x01, 0x11, 0x1a, 0x1b, 0x1e, - 0x15, 0x94, 0x60, 0x01, 0x7f, 0x96, 0x03, 0x91, 0x2b, 0x62, 0x61, 0x59, - 0x22, 0x12, 0x1a, 0x18, 0x1b, 0x12, 0x79, 0x7b, 0x01, 0x2b, 0x00, 0x01, - 0x00, 0x60, 0x00, 0x00, 0x03, 0xf0, 0x05, 0xcb, 0x00, 0x23, 0x00, 0x3c, - 0x40, 0x20, 0x23, 0x08, 0x6f, 0x1b, 0x1b, 0x25, 0x10, 0x25, 0x01, 0x22, - 0x6f, 0x01, 0x21, 0x01, 0x11, 0x11, 0x20, 0x01, 0x01, 0x01, 0x08, 0x22, - 0x10, 0x0d, 0x73, 0x16, 0x07, 0x02, 0x22, 0x74, 0x01, 0x18, 0x00, 0x3f, - 0xe1, 0x32, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x01, 0x2f, 0x5d, 0x33, 0x2f, - 0x11, 0x33, 0x10, 0xed, 0x5d, 0x11, 0x33, 0x2f, 0xe1, 0x33, 0x31, 0x30, - 0x21, 0x21, 0x35, 0x01, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, - 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x07, 0x01, 0x15, 0x21, 0x03, 0xf0, 0xfc, 0x70, 0x01, 0x5e, 0x4b, - 0x76, 0x53, 0x2c, 0x22, 0x3f, 0x56, 0x35, 0x5f, 0x99, 0x45, 0x66, 0x28, - 0x5c, 0x6a, 0x76, 0x41, 0x60, 0x9b, 0x6c, 0x3b, 0x35, 0x5d, 0x81, 0x4b, - 0xfe, 0xe7, 0x02, 0xb1, 0x9c, 0x01, 0x7d, 0x51, 0x86, 0x80, 0x81, 0x4c, - 0x3b, 0x5a, 0x3f, 0x20, 0x4d, 0x3c, 0x77, 0x24, 0x3f, 0x2e, 0x1b, 0x36, - 0x65, 0x91, 0x5b, 0x55, 0x9a, 0x95, 0x96, 0x51, 0xfe, 0xd5, 0x08, 0x00, - 0x00, 0x01, 0x00, 0x52, 0xff, 0xec, 0x03, 0xee, 0x05, 0xcb, 0x00, 0x39, - 0x00, 0x5d, 0x40, 0x0b, 0x21, 0x30, 0x21, 0x30, 0x12, 0x1a, 0x6f, 0x09, - 0x27, 0x6f, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x28, 0x14, 0x17, 0x48, 0x00, - 0x00, 0x09, 0x3b, 0x20, 0x3b, 0x01, 0x4f, 0x12, 0x01, 0x12, 0x06, 0x20, - 0x73, 0xab, 0x21, 0x01, 0x79, 0x21, 0x01, 0x0b, 0x21, 0x01, 0x08, 0x21, - 0x21, 0x15, 0x2f, 0x2c, 0x73, 0x35, 0x07, 0x15, 0x73, 0x12, 0x0e, 0x19, - 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, - 0x5d, 0x5d, 0xe1, 0x39, 0x01, 0x2f, 0x5d, 0x5d, 0x10, 0xce, 0x32, 0x2f, - 0x2b, 0xe1, 0x10, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x31, 0x30, 0x01, - 0x14, 0x0e, 0x02, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, - 0x2e, 0x02, 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, - 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, - 0x03, 0xc1, 0x2e, 0x53, 0x74, 0x47, 0xb1, 0xb8, 0x41, 0x84, 0xca, 0x8a, - 0x6d, 0xc1, 0x55, 0x57, 0xcb, 0x5d, 0x5c, 0x86, 0x57, 0x29, 0x35, 0x62, - 0x8d, 0x59, 0x85, 0x85, 0x51, 0x7e, 0x55, 0x2c, 0x24, 0x42, 0x5c, 0x38, - 0x6b, 0xa3, 0x4a, 0x5c, 0x26, 0x5d, 0x6e, 0x7d, 0x46, 0x6c, 0xa3, 0x6e, - 0x38, 0x04, 0x60, 0x49, 0x78, 0x58, 0x39, 0x0c, 0x06, 0x16, 0xb5, 0x91, - 0x60, 0xa0, 0x74, 0x40, 0x22, 0x2d, 0xaa, 0x2e, 0x32, 0x28, 0x4a, 0x6c, - 0x43, 0x44, 0x61, 0x3f, 0x1e, 0x97, 0x28, 0x4a, 0x66, 0x3d, 0x34, 0x52, - 0x39, 0x1e, 0x43, 0x36, 0x7d, 0x1f, 0x36, 0x29, 0x18, 0x36, 0x61, 0x85, - 0x00, 0x02, 0x00, 0x17, 0x00, 0x00, 0x04, 0x3f, 0x05, 0xbe, 0x00, 0x0a, - 0x00, 0x18, 0x00, 0x4e, 0x40, 0x2c, 0x09, 0x56, 0x00, 0x01, 0x00, 0x00, - 0x02, 0x6e, 0x11, 0x0c, 0x0b, 0x07, 0x20, 0x03, 0x01, 0x03, 0x03, 0x1a, - 0x10, 0x1a, 0x01, 0x77, 0x18, 0x87, 0x18, 0x02, 0x18, 0x5f, 0x05, 0x01, - 0x05, 0x09, 0x06, 0x18, 0x74, 0x01, 0x05, 0x05, 0x02, 0x11, 0x07, 0x06, - 0x02, 0x18, 0x00, 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, - 0x32, 0x01, 0x2f, 0x5d, 0x33, 0x5d, 0x5d, 0x12, 0x39, 0x2f, 0x5d, 0x33, - 0x33, 0x33, 0x33, 0xe1, 0x32, 0x2f, 0x5d, 0x32, 0x31, 0x30, 0x01, 0x23, - 0x11, 0x23, 0x11, 0x21, 0x35, 0x01, 0x33, 0x11, 0x33, 0x21, 0x11, 0x34, - 0x3e, 0x02, 0x37, 0x23, 0x0e, 0x03, 0x07, 0x01, 0x04, 0x3f, 0xd5, 0xb0, - 0xfd, 0x5d, 0x02, 0x97, 0xbc, 0xd5, 0xfe, 0x7b, 0x03, 0x04, 0x05, 0x01, - 0x09, 0x07, 0x15, 0x19, 0x1a, 0x0b, 0xfe, 0x65, 0x01, 0x48, 0xfe, 0xb8, - 0x01, 0x48, 0x9f, 0x03, 0xd7, 0xfc, 0x30, 0x01, 0x64, 0x38, 0x7b, 0x75, - 0x66, 0x22, 0x14, 0x31, 0x31, 0x2e, 0x10, 0xfd, 0xa0, 0x00, 0x00, 0x01, - 0x00, 0x83, 0xff, 0xec, 0x03, 0xf6, 0x05, 0xb6, 0x00, 0x2a, 0x00, 0x4e, - 0x40, 0x18, 0x26, 0x1a, 0x6f, 0x05, 0x2c, 0x10, 0x2c, 0x01, 0x27, 0x24, - 0x24, 0x28, 0x68, 0x23, 0x01, 0x59, 0x23, 0x01, 0x23, 0x23, 0xf0, 0x0f, - 0x01, 0x0f, 0xb8, 0xff, 0xc0, 0x40, 0x12, 0x08, 0x0b, 0x48, 0x0f, 0x1d, - 0x73, 0x00, 0x00, 0x15, 0x27, 0x74, 0x24, 0x06, 0x15, 0x73, 0x10, 0x0a, - 0x19, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0xe1, 0x01, - 0x2f, 0x2b, 0x5d, 0x33, 0x2f, 0x5d, 0x5d, 0x33, 0x33, 0x11, 0x33, 0x5d, - 0x10, 0xde, 0xe1, 0x33, 0x31, 0x30, 0x01, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x35, 0x1e, 0x03, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x27, 0x13, - 0x21, 0x15, 0x21, 0x03, 0x36, 0x36, 0x02, 0x21, 0x63, 0xab, 0x7f, 0x48, - 0x44, 0x86, 0xc5, 0x80, 0x33, 0x63, 0x5b, 0x52, 0x21, 0x21, 0x59, 0x62, - 0x63, 0x2a, 0x4f, 0x7c, 0x56, 0x2e, 0xb0, 0xa8, 0x1b, 0x3f, 0x3f, 0x39, - 0x15, 0x5a, 0x37, 0x02, 0xb2, 0xfd, 0xec, 0x27, 0x20, 0x69, 0x03, 0x81, - 0x37, 0x6c, 0xa0, 0x69, 0x72, 0xb6, 0x7e, 0x43, 0x0a, 0x13, 0x1e, 0x14, - 0xac, 0x17, 0x24, 0x18, 0x0d, 0x25, 0x4e, 0x76, 0x51, 0x8f, 0x97, 0x05, - 0x08, 0x09, 0x04, 0x39, 0x02, 0xb0, 0xa6, 0xfe, 0x5d, 0x06, 0x0e, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x04, 0x0a, 0x05, 0xcb, 0x00, 0x2b, - 0x00, 0x3f, 0x00, 0x37, 0x40, 0x20, 0x31, 0x6e, 0x0c, 0x22, 0x41, 0x10, - 0x41, 0x01, 0x17, 0x3b, 0x6f, 0x00, 0x00, 0x10, 0x00, 0x20, 0x00, 0x03, - 0x00, 0x36, 0x75, 0x1d, 0x1d, 0x07, 0x2c, 0x73, 0x27, 0x19, 0x10, 0x73, - 0x07, 0x07, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0xe1, 0x01, - 0x2f, 0x5d, 0xe1, 0x32, 0x5d, 0x10, 0xde, 0x32, 0xe1, 0x31, 0x30, 0x13, - 0x34, 0x3e, 0x04, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x15, 0x26, 0x26, 0x23, - 0x22, 0x0e, 0x04, 0x07, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x01, 0x32, 0x3e, 0x02, 0x35, - 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x71, - 0x15, 0x35, 0x5c, 0x8e, 0xc6, 0x85, 0x13, 0x2e, 0x2f, 0x2b, 0x11, 0x23, - 0x58, 0x2b, 0x5a, 0x89, 0x64, 0x43, 0x2a, 0x14, 0x03, 0x0c, 0x14, 0x39, - 0x4c, 0x5f, 0x3b, 0x5f, 0x9a, 0x6c, 0x3b, 0x3e, 0x74, 0xa4, 0x66, 0x64, - 0xaf, 0x80, 0x4a, 0x01, 0xdb, 0x3c, 0x63, 0x48, 0x27, 0x21, 0x42, 0x63, - 0x42, 0x43, 0x6f, 0x4e, 0x2b, 0x25, 0x49, 0x6e, 0x02, 0x71, 0x69, 0xd0, - 0xbf, 0xa4, 0x79, 0x45, 0x02, 0x05, 0x07, 0x05, 0x9b, 0x0c, 0x0c, 0x2b, - 0x4e, 0x6c, 0x83, 0x94, 0x50, 0x24, 0x3f, 0x2d, 0x1a, 0x3b, 0x72, 0xa5, - 0x6a, 0x72, 0xb6, 0x7f, 0x44, 0x4e, 0xa0, 0xf2, 0xfe, 0xb9, 0x29, 0x53, - 0x7f, 0x57, 0x46, 0x6f, 0x4e, 0x2a, 0x2f, 0x4b, 0x60, 0x30, 0x43, 0x85, - 0x6a, 0x43, 0x00, 0x01, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x06, 0x05, 0xb6, - 0x00, 0x06, 0x00, 0x2b, 0xb1, 0x06, 0x00, 0xb8, 0xff, 0xf0, 0x40, 0x11, - 0x00, 0x00, 0x02, 0x01, 0x05, 0x08, 0x10, 0x08, 0x01, 0x02, 0x05, 0x02, - 0x74, 0x03, 0x06, 0x00, 0x18, 0x00, 0x3f, 0x3f, 0xe1, 0x32, 0x01, 0x2f, - 0x5d, 0x10, 0xce, 0x32, 0x11, 0x39, 0x2f, 0x38, 0x33, 0x31, 0x30, 0x21, - 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x01, 0x19, 0x02, 0x33, 0xfd, 0x0e, - 0x03, 0xac, 0xfd, 0xd5, 0x05, 0x10, 0xa6, 0x91, 0xfa, 0xdb, 0x00, 0x03, - 0x00, 0x6a, 0xff, 0xec, 0x04, 0x00, 0x05, 0xcd, 0x00, 0x27, 0x00, 0x3a, - 0x00, 0x4a, 0x00, 0x80, 0x40, 0x53, 0x1e, 0x23, 0x32, 0x6e, 0x0f, 0x0a, - 0x28, 0x48, 0x6e, 0xc3, 0x05, 0xd3, 0x05, 0x02, 0xb5, 0x05, 0x01, 0x05, - 0x05, 0x0f, 0x4c, 0x10, 0x4c, 0x01, 0x28, 0x6e, 0x19, 0x3e, 0x6e, 0xd5, - 0x23, 0x01, 0xcc, 0x23, 0x01, 0xba, 0x23, 0x01, 0x23, 0x23, 0x10, 0x19, - 0x20, 0x19, 0x02, 0x19, 0x0a, 0x1e, 0x68, 0x38, 0x98, 0x38, 0x02, 0x59, - 0x38, 0x01, 0x28, 0x38, 0x38, 0x38, 0x48, 0x38, 0x03, 0x38, 0x93, 0x43, - 0x01, 0x26, 0x43, 0x56, 0x43, 0x02, 0x43, 0x43, 0x00, 0x2d, 0x73, 0x14, - 0x19, 0x3b, 0x73, 0x00, 0x07, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, - 0x2f, 0x5d, 0x5d, 0xc1, 0x5d, 0x5d, 0x5d, 0x39, 0x39, 0x01, 0x2f, 0x5d, - 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0xe1, 0x10, 0xe1, 0x5d, 0x10, 0xce, 0x32, - 0x2f, 0x5d, 0x5d, 0xe1, 0x12, 0x39, 0x10, 0xe1, 0x11, 0x39, 0x31, 0x30, - 0x01, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x1e, 0x03, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37, - 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x03, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x27, 0x06, 0x06, 0x01, 0x22, - 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x02, - 0x35, 0x54, 0x95, 0x71, 0x42, 0x28, 0x46, 0x60, 0x38, 0x3a, 0x6f, 0x57, - 0x35, 0x43, 0x79, 0xa9, 0x66, 0x6e, 0xab, 0x75, 0x3d, 0x2d, 0x4c, 0x68, - 0x3a, 0x31, 0x56, 0x3f, 0x25, 0x43, 0x72, 0x95, 0xc7, 0x20, 0x44, 0x68, - 0x48, 0x46, 0x6b, 0x48, 0x24, 0x27, 0x49, 0x66, 0x3f, 0x1e, 0x7e, 0x80, - 0x01, 0x16, 0x6a, 0x7d, 0x23, 0x3e, 0x57, 0x33, 0x30, 0x55, 0x3f, 0x24, - 0x7e, 0x05, 0xcd, 0x2c, 0x58, 0x84, 0x58, 0x43, 0x6c, 0x57, 0x45, 0x1c, - 0x1f, 0x4c, 0x5f, 0x76, 0x49, 0x5c, 0x95, 0x68, 0x38, 0x36, 0x65, 0x92, - 0x5c, 0x4b, 0x78, 0x60, 0x4a, 0x1c, 0x1f, 0x49, 0x5a, 0x6d, 0x42, 0x57, - 0x83, 0x58, 0x2c, 0xfb, 0xa6, 0x35, 0x59, 0x3f, 0x23, 0x23, 0x41, 0x5c, - 0x38, 0x34, 0x54, 0x48, 0x40, 0x1f, 0x0e, 0x3c, 0x9b, 0x03, 0x54, 0x6a, - 0x65, 0x39, 0x52, 0x40, 0x33, 0x18, 0x16, 0x34, 0x42, 0x54, 0x36, 0x65, - 0x6a, 0x00, 0x00, 0x02, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x04, 0x05, 0xcb, - 0x00, 0x29, 0x00, 0x3d, 0x00, 0x35, 0x40, 0x1e, 0x39, 0x15, 0x6f, 0x00, - 0x3f, 0x10, 0x3f, 0x01, 0x2f, 0x6e, 0x0c, 0x10, 0x20, 0x20, 0x20, 0x02, - 0x20, 0x34, 0x75, 0x1b, 0x1b, 0x07, 0x2a, 0x73, 0x25, 0x07, 0x10, 0x75, - 0x07, 0x1a, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0xe1, 0x01, - 0x2f, 0x5d, 0x33, 0xe1, 0x5d, 0x10, 0xde, 0xe1, 0x32, 0x31, 0x30, 0x01, - 0x14, 0x0e, 0x04, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x35, 0x16, 0x16, 0x33, - 0x32, 0x3e, 0x02, 0x37, 0x23, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, - 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x22, 0x0e, 0x02, 0x15, - 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x04, - 0x04, 0x15, 0x35, 0x5c, 0x8e, 0xc6, 0x85, 0x13, 0x2e, 0x2e, 0x2c, 0x11, - 0x23, 0x58, 0x2b, 0x87, 0xae, 0x66, 0x2b, 0x05, 0x0d, 0x14, 0x38, 0x4c, - 0x60, 0x3b, 0x5f, 0x9a, 0x6c, 0x3b, 0x3f, 0x73, 0xa5, 0x66, 0x65, 0xae, - 0x80, 0x4a, 0xfe, 0x25, 0x3c, 0x63, 0x48, 0x27, 0x21, 0x42, 0x63, 0x42, - 0x44, 0x6e, 0x4e, 0x2b, 0x25, 0x49, 0x6e, 0x03, 0x46, 0x69, 0xd1, 0xbe, - 0xa5, 0x78, 0x45, 0x02, 0x05, 0x06, 0x05, 0x9c, 0x0d, 0x0c, 0x5e, 0xa1, - 0xd6, 0x77, 0x24, 0x3e, 0x2e, 0x1a, 0x3b, 0x72, 0xa5, 0x6a, 0x72, 0xb7, - 0x7f, 0x44, 0x4e, 0xa0, 0xf3, 0x01, 0x47, 0x28, 0x54, 0x7f, 0x57, 0x46, - 0x6f, 0x4e, 0x2a, 0x2f, 0x4b, 0x60, 0x30, 0x43, 0x85, 0x6b, 0x42, 0x00, - 0x00, 0x02, 0x00, 0x93, 0xff, 0xe3, 0x01, 0x91, 0x04, 0x66, 0x00, 0x13, - 0x00, 0x27, 0x00, 0x3e, 0x40, 0x1c, 0x10, 0x29, 0x80, 0x29, 0x90, 0x29, - 0xa0, 0x29, 0x04, 0x1e, 0x0a, 0x96, 0x14, 0xc0, 0x00, 0xd0, 0x00, 0x02, - 0x34, 0x00, 0x44, 0x00, 0x64, 0x00, 0x74, 0x00, 0x04, 0x00, 0xb8, 0xff, - 0xc0, 0x40, 0x0b, 0x07, 0x0a, 0x48, 0x00, 0x23, 0x9b, 0x19, 0x10, 0x05, - 0x9b, 0x0f, 0x00, 0x2f, 0xed, 0x3f, 0xed, 0x01, 0x2f, 0x2b, 0x5d, 0x5d, - 0x33, 0xe5, 0x32, 0x5d, 0x31, 0x30, 0x37, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x11, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x93, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, 0x22, 0x14, 0x14, - 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x14, 0x22, 0x2e, 0x1b, 0x1a, - 0x2f, 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x6f, - 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x35, 0x22, 0x10, - 0x10, 0x22, 0x35, 0x03, 0x91, 0x27, 0x35, 0x21, 0x0e, 0x0e, 0x21, 0x35, - 0x27, 0x25, 0x34, 0x22, 0x10, 0x10, 0x22, 0x34, 0x00, 0x02, 0x00, 0x3f, - 0xfe, 0xf8, 0x01, 0x91, 0x04, 0x66, 0x00, 0x0c, 0x00, 0x20, 0x00, 0x61, - 0x40, 0x2f, 0x10, 0x22, 0x80, 0x22, 0x90, 0x22, 0xa0, 0x22, 0x04, 0x17, - 0x96, 0xc0, 0x0d, 0xd0, 0x0d, 0x02, 0x64, 0x0d, 0x74, 0x0d, 0x02, 0x50, - 0x0d, 0x01, 0x44, 0x0d, 0x01, 0x3b, 0x0d, 0x01, 0x1f, 0x0d, 0x2f, 0x0d, - 0x02, 0x0d, 0x0d, 0x1b, 0x0c, 0x2b, 0x0c, 0x02, 0x0c, 0x01, 0x97, 0x06, - 0x07, 0xb8, 0xff, 0xc0, 0x40, 0x11, 0x10, 0x14, 0x48, 0x5f, 0x07, 0x01, - 0x10, 0x07, 0x01, 0x07, 0x1c, 0x9b, 0x12, 0x10, 0x06, 0x9c, 0x0c, 0x00, - 0x2f, 0xed, 0x3f, 0xed, 0x01, 0x2f, 0x5d, 0x5d, 0x2b, 0x33, 0xed, 0x32, - 0x5d, 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0xe5, 0x5d, 0x31, - 0x30, 0x25, 0x17, 0x0e, 0x03, 0x07, 0x23, 0x3e, 0x03, 0x37, 0x03, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x01, 0x6a, 0x0f, 0x0e, 0x27, 0x2f, 0x33, 0x19, 0x8a, 0x0f, - 0x1d, 0x1b, 0x16, 0x08, 0x11, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, 0x22, - 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0xee, 0x17, 0x36, - 0x7a, 0x7c, 0x7b, 0x38, 0x3d, 0x84, 0x83, 0x7d, 0x35, 0x02, 0xed, 0x27, - 0x35, 0x21, 0x0e, 0x0e, 0x21, 0x35, 0x27, 0x25, 0x34, 0x22, 0x10, 0x10, - 0x22, 0x34, 0x00, 0x01, 0x00, 0x66, 0x00, 0xee, 0x04, 0x02, 0x04, 0xdd, - 0x00, 0x06, 0x00, 0x4e, 0x40, 0x30, 0x00, 0x08, 0x40, 0x08, 0x01, 0x40, - 0x01, 0x01, 0x01, 0x02, 0x01, 0x05, 0x05, 0x03, 0x06, 0x6f, 0x00, 0x7f, - 0x00, 0x02, 0x30, 0x00, 0x01, 0x00, 0x00, 0x04, 0x20, 0x03, 0x01, 0x50, - 0x03, 0x70, 0x03, 0x80, 0x03, 0xd0, 0x03, 0xf0, 0x03, 0x05, 0x3f, 0x03, - 0x01, 0x00, 0x03, 0x01, 0x06, 0x03, 0x00, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x71, 0x33, 0x33, 0x2f, 0x5d, 0x5d, 0x32, 0x12, 0x39, 0x3d, 0x2f, 0x33, - 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x5d, 0x10, 0xce, 0x31, 0x30, 0x25, 0x01, - 0x35, 0x01, 0x15, 0x01, 0x01, 0x04, 0x02, 0xfc, 0x64, 0x03, 0x9c, 0xfd, - 0x21, 0x02, 0xdf, 0xee, 0x01, 0xa8, 0x66, 0x01, 0xe1, 0xa0, 0xfe, 0x94, - 0xfe, 0xbe, 0x00, 0x02, 0x00, 0x66, 0x01, 0xba, 0x04, 0x02, 0x03, 0xe9, - 0x00, 0x03, 0x00, 0x07, 0x00, 0x5c, 0x40, 0x3d, 0x07, 0x02, 0x09, 0x40, - 0x09, 0x01, 0x04, 0xc6, 0x00, 0x01, 0xbb, 0x00, 0x01, 0xa9, 0x00, 0x01, - 0x86, 0x00, 0x01, 0x7b, 0x00, 0x01, 0x68, 0x00, 0x01, 0x42, 0x00, 0x01, - 0x39, 0x00, 0x01, 0x00, 0x04, 0xad, 0x1f, 0x05, 0x2f, 0x05, 0x02, 0x7f, - 0x05, 0x01, 0x00, 0x05, 0x10, 0x05, 0x02, 0x06, 0x05, 0x05, 0x00, 0xad, - 0xf0, 0x01, 0x01, 0x0f, 0x01, 0x6f, 0x01, 0x02, 0x01, 0x00, 0x2f, 0x5d, - 0x5d, 0xe1, 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x71, 0xe1, 0x01, 0x2f, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x5d, 0x10, 0xce, 0x32, - 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x66, 0x03, - 0x9c, 0xfc, 0x64, 0x03, 0x9c, 0x03, 0x54, 0x95, 0x95, 0xfe, 0x66, 0x96, - 0x96, 0x00, 0x00, 0x01, 0x00, 0x66, 0x00, 0xee, 0x04, 0x02, 0x04, 0xdd, - 0x00, 0x06, 0x00, 0x4e, 0x40, 0x30, 0x05, 0x08, 0x40, 0x08, 0x01, 0x40, - 0x06, 0x01, 0x06, 0x05, 0x04, 0x01, 0x01, 0x03, 0x00, 0x6f, 0x06, 0x7f, - 0x06, 0x02, 0x30, 0x06, 0x01, 0x06, 0x06, 0x02, 0x20, 0x03, 0x01, 0x50, - 0x03, 0x70, 0x03, 0x80, 0x03, 0xd0, 0x03, 0xf0, 0x03, 0x05, 0x3f, 0x03, - 0x01, 0x00, 0x03, 0x01, 0x06, 0x03, 0x00, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x71, 0x33, 0x33, 0x2f, 0x5d, 0x5d, 0x33, 0x12, 0x39, 0x3d, 0x2f, 0x33, - 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x5d, 0x10, 0xce, 0x31, 0x30, 0x13, 0x01, - 0x01, 0x35, 0x01, 0x15, 0x01, 0x66, 0x02, 0xe0, 0xfd, 0x20, 0x03, 0x9c, - 0xfc, 0x64, 0x01, 0x8f, 0x01, 0x42, 0x01, 0x6c, 0xa0, 0xfe, 0x1f, 0x66, - 0xfe, 0x58, 0x00, 0x02, 0x00, 0x25, 0xff, 0xe3, 0x03, 0x25, 0x05, 0xcb, - 0x00, 0x27, 0x00, 0x3b, 0x00, 0x3e, 0x40, 0x21, 0x32, 0x9a, 0x28, 0x28, - 0x27, 0x46, 0x00, 0x00, 0x14, 0x0b, 0x46, 0x1c, 0x3d, 0x2f, 0x3d, 0x01, - 0x14, 0x0b, 0x17, 0x0f, 0x00, 0x01, 0x06, 0x00, 0x00, 0x2d, 0x9b, 0x37, - 0x13, 0x10, 0x51, 0x17, 0x04, 0x00, 0x3f, 0xe1, 0x33, 0x2f, 0xe5, 0x32, - 0x2f, 0x5e, 0x5d, 0x12, 0x39, 0x01, 0x2f, 0x5d, 0x10, 0xde, 0xe1, 0x11, - 0x39, 0x2f, 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x35, 0x34, 0x3e, - 0x02, 0x37, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, - 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, - 0x0e, 0x03, 0x15, 0x15, 0x03, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, - 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x01, 0x19, 0x0f, 0x27, - 0x42, 0x32, 0x30, 0x44, 0x2b, 0x15, 0x1e, 0x39, 0x55, 0x38, 0x53, 0x96, - 0x46, 0x3f, 0x51, 0xbc, 0x61, 0x5d, 0x95, 0x68, 0x38, 0x1b, 0x36, 0x50, - 0x36, 0x34, 0x42, 0x26, 0x0e, 0xbb, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, - 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x01, 0x9e, - 0x25, 0x39, 0x5c, 0x50, 0x4d, 0x2a, 0x29, 0x43, 0x45, 0x4f, 0x35, 0x30, - 0x4f, 0x39, 0x1f, 0x34, 0x22, 0x91, 0x2a, 0x3b, 0x33, 0x60, 0x8b, 0x57, - 0x43, 0x69, 0x5a, 0x54, 0x2f, 0x2d, 0x43, 0x3f, 0x42, 0x2c, 0x12, 0xfe, - 0xd1, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x35, 0x22, - 0x10, 0x10, 0x22, 0x35, 0x00, 0x02, 0x00, 0x6d, 0xff, 0x4a, 0x06, 0x81, - 0x05, 0xb6, 0x00, 0x57, 0x00, 0x68, 0x00, 0x6f, 0x40, 0x3f, 0x58, 0x17, - 0x60, 0x27, 0x1f, 0x17, 0x01, 0x7f, 0x27, 0x01, 0x17, 0x27, 0x46, 0x46, - 0x27, 0x17, 0x03, 0x4e, 0x31, 0x20, 0x00, 0x01, 0x00, 0x6a, 0x40, 0x6a, - 0x01, 0x3b, 0x40, 0x4e, 0x01, 0x4e, 0x2c, 0x0c, 0x5b, 0x12, 0x07, 0x12, - 0x64, 0x1c, 0x0f, 0x12, 0x1f, 0x12, 0xbf, 0x12, 0x03, 0x06, 0x00, 0x1c, - 0x01, 0x07, 0x12, 0x1c, 0x12, 0x1c, 0x40, 0x36, 0x53, 0x03, 0x40, 0x45, - 0x49, 0x00, 0x2f, 0x33, 0xc1, 0x3f, 0xc1, 0x12, 0x39, 0x39, 0x2f, 0x2f, - 0x5e, 0x5d, 0x5e, 0x5d, 0x10, 0xc1, 0x11, 0x33, 0x10, 0xc1, 0x32, 0x32, - 0x01, 0x2f, 0x5d, 0xc1, 0x5d, 0x10, 0xde, 0x71, 0xc1, 0x11, 0x17, 0x39, - 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x10, 0xc1, 0x10, 0xc1, 0x31, 0x30, 0x01, - 0x14, 0x0e, 0x04, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x23, 0x0e, 0x03, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, - 0x03, 0x06, 0x06, 0x14, 0x14, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x04, 0x06, 0x02, 0x15, 0x14, - 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, - 0x24, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, - 0x12, 0x01, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x37, 0x26, 0x26, - 0x23, 0x22, 0x0e, 0x02, 0x06, 0x81, 0x13, 0x25, 0x39, 0x4c, 0x61, 0x3a, - 0x2d, 0x49, 0x34, 0x21, 0x06, 0x04, 0x12, 0x36, 0x47, 0x59, 0x35, 0x4d, - 0x77, 0x52, 0x2b, 0x3b, 0x6f, 0x9e, 0x62, 0x2d, 0x5a, 0x52, 0x45, 0x17, - 0x17, 0x01, 0x01, 0x15, 0x22, 0x2b, 0x17, 0x2e, 0x46, 0x2f, 0x18, 0x56, - 0x98, 0xd1, 0x7b, 0xa9, 0xfe, 0xfe, 0xaf, 0x5a, 0x4f, 0x99, 0xe3, 0x93, - 0x3d, 0x77, 0x6f, 0x64, 0x2b, 0x56, 0xd8, 0x82, 0xb3, 0xfe, 0xe7, 0xc3, - 0x66, 0x76, 0xdb, 0x01, 0x37, 0xc1, 0x9c, 0x01, 0x06, 0xbf, 0x6a, 0xfc, - 0x15, 0x65, 0x55, 0x37, 0x4e, 0x32, 0x1a, 0x04, 0x0e, 0x1c, 0x4d, 0x2a, - 0x4a, 0x65, 0x3f, 0x1c, 0x02, 0xdb, 0x3e, 0x7d, 0x71, 0x61, 0x48, 0x29, - 0x1e, 0x32, 0x41, 0x23, 0x25, 0x42, 0x31, 0x1c, 0x38, 0x65, 0x8e, 0x56, - 0x65, 0xa8, 0x7a, 0x44, 0x08, 0x0e, 0x11, 0x08, 0xfe, 0x60, 0x16, 0x1b, - 0x10, 0x08, 0x03, 0x35, 0x44, 0x28, 0x0f, 0x3d, 0x68, 0x8c, 0x4e, 0x8e, - 0xdd, 0x98, 0x4f, 0x6f, 0xc7, 0xfe, 0xef, 0xa2, 0x97, 0xea, 0xa0, 0x52, - 0x0e, 0x18, 0x1f, 0x11, 0x8d, 0x26, 0x2c, 0x66, 0xc3, 0x01, 0x19, 0xb3, - 0xbc, 0x01, 0x45, 0xee, 0x88, 0x65, 0xbd, 0xfe, 0xf1, 0xfe, 0xd5, 0x85, - 0x77, 0x2d, 0x53, 0x73, 0x45, 0xfd, 0x08, 0x0d, 0x3a, 0x5e, 0x78, 0x00, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x05, 0xbc, 0x00, 0x07, - 0x00, 0x14, 0x00, 0x84, 0x40, 0x24, 0x06, 0x05, 0x46, 0x02, 0x01, 0x46, - 0x14, 0x01, 0x02, 0x14, 0x03, 0x49, 0x08, 0x01, 0x49, 0x01, 0x01, 0x08, - 0x01, 0x00, 0x0e, 0x0e, 0x03, 0x00, 0x00, 0x10, 0x07, 0x01, 0x80, 0x07, - 0x90, 0x07, 0xd0, 0x07, 0x03, 0x07, 0xb8, 0xff, 0xc0, 0x40, 0x18, 0x06, - 0x0a, 0x48, 0x07, 0x10, 0x07, 0x07, 0x16, 0x0f, 0x16, 0x1f, 0x16, 0x2f, - 0x16, 0x8f, 0x16, 0x9f, 0x16, 0xdf, 0x16, 0x06, 0x07, 0x03, 0x04, 0xb8, - 0xff, 0xf0, 0x40, 0x11, 0x04, 0x02, 0x5f, 0x0e, 0x20, 0x0a, 0x0e, 0x48, - 0x0e, 0x05, 0x14, 0x14, 0x05, 0x03, 0x04, 0x00, 0x12, 0x00, 0x3f, 0x32, - 0x3f, 0x39, 0x2f, 0x12, 0x39, 0x2b, 0xe1, 0x01, 0x2f, 0x38, 0x33, 0x5e, - 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x71, 0x33, 0x11, 0x12, 0x39, - 0x3d, 0x2f, 0x12, 0x39, 0x39, 0x5d, 0x5d, 0x12, 0x39, 0x39, 0x5d, 0x5d, - 0x33, 0x33, 0x31, 0x30, 0x21, 0x03, 0x21, 0x03, 0x23, 0x01, 0x33, 0x01, - 0x01, 0x03, 0x2e, 0x03, 0x27, 0x0e, 0x03, 0x07, 0x03, 0x04, 0x1f, 0xa0, - 0xfd, 0xdf, 0xa2, 0xbc, 0x02, 0x19, 0xaa, 0x02, 0x1a, 0xfe, 0x67, 0x94, - 0x06, 0x11, 0x12, 0x12, 0x08, 0x07, 0x12, 0x12, 0x11, 0x06, 0x91, 0x01, - 0xc5, 0xfe, 0x3b, 0x05, 0xbc, 0xfa, 0x44, 0x02, 0x6a, 0x01, 0xa8, 0x12, - 0x34, 0x3c, 0x41, 0x1f, 0x1f, 0x42, 0x3d, 0x33, 0x11, 0xfe, 0x58, 0x00, - 0x00, 0x03, 0x00, 0xc7, 0x00, 0x00, 0x04, 0x87, 0x05, 0xb6, 0x00, 0x17, - 0x00, 0x22, 0x00, 0x2f, 0x00, 0x62, 0x40, 0x3e, 0x0b, 0x1e, 0x5a, 0x05, - 0x06, 0x01, 0xe5, 0x06, 0xf5, 0x06, 0x02, 0xd6, 0x06, 0x01, 0x06, 0x06, - 0x24, 0x2a, 0x5b, 0x70, 0x11, 0x80, 0x11, 0x02, 0x11, 0x67, 0x31, 0x7f, - 0x31, 0x8f, 0x31, 0x02, 0x10, 0x31, 0x01, 0x18, 0x24, 0x5a, 0x17, 0x64, - 0x30, 0x0b, 0x23, 0x60, 0x79, 0x18, 0x01, 0x0b, 0x18, 0x01, 0x08, 0x18, - 0x18, 0x00, 0x24, 0x60, 0x17, 0x12, 0x22, 0x60, 0x00, 0x03, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0xe1, 0x39, 0x01, - 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0x5d, 0xe1, 0x12, 0x39, - 0x2f, 0x5d, 0x5d, 0x71, 0xe1, 0x32, 0x31, 0x30, 0x13, 0x21, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x21, 0x13, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, - 0x23, 0x11, 0x11, 0x21, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, - 0xc7, 0x01, 0x8f, 0x80, 0xc3, 0x83, 0x42, 0x27, 0x4a, 0x6d, 0x45, 0x45, - 0x79, 0x5a, 0x34, 0x41, 0x7b, 0xb0, 0x6f, 0xfe, 0x1b, 0xba, 0xf4, 0x54, - 0x72, 0x46, 0x1f, 0x9a, 0xa6, 0xdf, 0x01, 0x0a, 0x58, 0x77, 0x49, 0x20, - 0x21, 0x4b, 0x7c, 0x5c, 0x05, 0xb6, 0x27, 0x57, 0x8d, 0x67, 0x3e, 0x6c, - 0x52, 0x37, 0x09, 0x0a, 0x0c, 0x2d, 0x4f, 0x78, 0x56, 0x64, 0x9d, 0x6d, - 0x3a, 0x03, 0x4a, 0x1e, 0x3b, 0x59, 0x3b, 0x78, 0x68, 0xfd, 0x97, 0xfd, - 0xf0, 0x28, 0x48, 0x65, 0x3d, 0x38, 0x5e, 0x43, 0x25, 0x00, 0x00, 0x01, - 0x00, 0x7d, 0xff, 0xec, 0x04, 0x98, 0x05, 0xcb, 0x00, 0x23, 0x00, 0x4c, - 0x40, 0x14, 0xaf, 0x0e, 0x01, 0x0e, 0x40, 0x15, 0x18, 0x48, 0x0e, 0x0e, - 0x18, 0xba, 0x20, 0x01, 0x60, 0x20, 0x70, 0x20, 0x02, 0x20, 0xb8, 0xff, - 0xc0, 0x40, 0x18, 0x06, 0x0a, 0x48, 0x20, 0x20, 0x25, 0xaf, 0x25, 0x01, - 0x05, 0x5b, 0x18, 0x66, 0x24, 0x21, 0x00, 0x5f, 0x1d, 0x04, 0x0d, 0x0a, - 0x5f, 0x13, 0x13, 0x00, 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x33, 0x01, 0x10, - 0xf6, 0xe1, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x5d, 0x12, 0x39, 0x2f, - 0x2b, 0x5d, 0x31, 0x30, 0x01, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, - 0x33, 0x32, 0x36, 0x37, 0x15, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x26, 0x02, - 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, - 0x03, 0x19, 0x6b, 0xae, 0x7b, 0x43, 0x3b, 0x76, 0xb0, 0x76, 0x59, 0xa0, - 0x4e, 0x27, 0x4e, 0x55, 0x61, 0x3b, 0xa4, 0xf0, 0x9d, 0x4c, 0x57, 0xa9, - 0xfa, 0xa2, 0x6c, 0xc4, 0x4f, 0x4e, 0x3f, 0x94, 0x05, 0x27, 0x51, 0x98, - 0xda, 0x89, 0x8d, 0xdb, 0x96, 0x4e, 0x23, 0x17, 0xa2, 0x0f, 0x17, 0x0e, - 0x07, 0x6c, 0xc6, 0x01, 0x16, 0xa9, 0xa6, 0x01, 0x14, 0xc6, 0x6e, 0x2c, - 0x2a, 0x9c, 0x20, 0x2e, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xfc, - 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x17, 0x00, 0x26, 0x40, 0x15, 0x0d, 0x5b, - 0x00, 0x67, 0x19, 0x10, 0x19, 0x01, 0x14, 0x5a, 0x06, 0x64, 0x18, 0x13, - 0x60, 0x07, 0x03, 0x14, 0x60, 0x06, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, - 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, - 0x02, 0x06, 0x04, 0x23, 0x21, 0x11, 0x21, 0x32, 0x16, 0x16, 0x12, 0x07, - 0x34, 0x2e, 0x02, 0x23, 0x23, 0x11, 0x33, 0x20, 0x00, 0x04, 0xfc, 0x60, - 0xb6, 0xfe, 0xf7, 0xa8, 0xfe, 0x92, 0x01, 0x97, 0x99, 0xf8, 0xae, 0x5f, - 0xc5, 0x42, 0x7e, 0xb8, 0x75, 0xc9, 0xa2, 0x01, 0x08, 0x01, 0x0c, 0x02, - 0xe9, 0xb9, 0xfe, 0xe9, 0xbb, 0x5e, 0x05, 0xb6, 0x5c, 0xb5, 0xfe, 0xf4, - 0xb6, 0x92, 0xd5, 0x8a, 0x43, 0xfb, 0x89, 0x01, 0x24, 0x00, 0x00, 0x01, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x42, - 0x40, 0x26, 0x14, 0x08, 0x01, 0x08, 0x08, 0x01, 0x04, 0x00, 0x67, 0x0d, - 0x06, 0x0a, 0x5a, 0x01, 0x64, 0x0c, 0x09, 0x5f, 0x4f, 0x06, 0x01, 0x0f, - 0x06, 0xaf, 0x06, 0x02, 0x08, 0x06, 0x06, 0x0a, 0x05, 0x5f, 0x02, 0x03, - 0x0a, 0x5f, 0x01, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, - 0x5e, 0x5d, 0x71, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x10, 0xe6, 0x32, - 0x11, 0x39, 0x2f, 0x5d, 0x31, 0x30, 0x21, 0x21, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x03, 0xbe, 0xfd, 0x09, 0x02, 0xf7, - 0xfd, 0xc3, 0x02, 0x17, 0xfd, 0xe9, 0x02, 0x3d, 0x05, 0xb6, 0xa4, 0xfe, - 0x3c, 0xa2, 0xfd, 0xf8, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, - 0x05, 0xb6, 0x00, 0x09, 0x00, 0x70, 0x40, 0x11, 0x08, 0x08, 0x01, 0x0f, - 0x03, 0x01, 0xff, 0x03, 0x01, 0x80, 0x03, 0x90, 0x03, 0xd0, 0x03, 0x03, - 0x03, 0xb8, 0xff, 0xc0, 0x40, 0x38, 0x07, 0x0a, 0x48, 0x03, 0x03, 0x0b, - 0x0f, 0x0b, 0x2f, 0x0b, 0x8f, 0x0b, 0xaf, 0x0b, 0x04, 0x07, 0x06, 0x00, - 0x5a, 0x01, 0x64, 0x0a, 0x09, 0x5f, 0x0f, 0x06, 0x01, 0x0f, 0x06, 0x3f, - 0x06, 0x6f, 0x06, 0xff, 0x06, 0x04, 0x08, 0x06, 0x40, 0x1a, 0x1d, 0x48, - 0x06, 0x40, 0x10, 0x15, 0x48, 0x06, 0x06, 0x00, 0x05, 0x5f, 0x02, 0x03, - 0x00, 0x12, 0x00, 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x2b, 0x2b, 0x5e, - 0x5d, 0x71, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x11, 0x33, - 0x2f, 0x2b, 0x5d, 0x5d, 0x71, 0x12, 0x39, 0x2f, 0x31, 0x30, 0x21, 0x23, - 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x01, 0x81, 0xba, 0x02, - 0xf7, 0xfd, 0xc3, 0x02, 0x17, 0xfd, 0xe9, 0x05, 0xb6, 0xa4, 0xfd, 0xfc, - 0xa4, 0x00, 0x00, 0x01, 0x00, 0x7d, 0xff, 0xec, 0x04, 0xf2, 0x05, 0xcb, - 0x00, 0x2b, 0x00, 0x37, 0x40, 0x1e, 0x2b, 0x2b, 0x0c, 0x29, 0x5a, 0x14, - 0x02, 0x67, 0x2d, 0x10, 0x2d, 0x01, 0x1f, 0x5b, 0x0c, 0x66, 0x2c, 0x2b, - 0x5f, 0x00, 0x00, 0x24, 0x1a, 0x5f, 0x11, 0x04, 0x24, 0x5f, 0x07, 0x13, - 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0xe1, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x11, 0x39, 0x2f, 0x31, 0x30, 0x01, - 0x21, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, - 0x36, 0x24, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, 0x0e, - 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, 0x21, - 0x03, 0x0e, 0x01, 0xe4, 0x37, 0x70, 0x76, 0x82, 0x4b, 0x9d, 0xf2, 0xa6, - 0x56, 0x5f, 0xb6, 0x01, 0x0b, 0xab, 0x6f, 0xcc, 0x58, 0x48, 0x24, 0x53, - 0x58, 0x5d, 0x2e, 0x7a, 0xbc, 0x7f, 0x42, 0x37, 0x78, 0xbe, 0x86, 0x2c, - 0x49, 0x3e, 0x37, 0x1a, 0xfe, 0xd5, 0x03, 0x04, 0xfd, 0x33, 0x12, 0x1c, - 0x13, 0x0a, 0x69, 0xc3, 0x01, 0x17, 0xae, 0xac, 0x01, 0x16, 0xc3, 0x69, - 0x2c, 0x2a, 0xa2, 0x11, 0x1e, 0x17, 0x0e, 0x51, 0x98, 0xda, 0x89, 0x82, - 0xd8, 0x9c, 0x56, 0x05, 0x08, 0x0b, 0x05, 0x01, 0xb4, 0x00, 0x00, 0x01, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xd5, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x3d, - 0x40, 0x23, 0x09, 0x01, 0x5a, 0x00, 0x65, 0x0d, 0xc0, 0x0d, 0x01, 0xbf, - 0x0d, 0x01, 0x20, 0x0d, 0x01, 0x08, 0x04, 0x5a, 0x05, 0x64, 0x0c, 0x03, - 0x5f, 0x0f, 0x08, 0x01, 0x08, 0x08, 0x08, 0x0a, 0x06, 0x03, 0x05, 0x00, - 0x12, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x01, - 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, - 0x30, 0x21, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x33, 0x04, 0xd5, 0xba, 0xfd, 0x66, 0xba, 0xba, 0x02, 0x9a, 0xba, 0x02, - 0xaa, 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0x00, 0x00, 0x01, - 0x00, 0x52, 0x00, 0x00, 0x02, 0x64, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x57, - 0x40, 0x26, 0x0b, 0x0d, 0x2b, 0x0d, 0x02, 0x7b, 0x0d, 0x9b, 0x0d, 0xab, - 0x0d, 0xfb, 0x0d, 0x04, 0x54, 0x0d, 0x01, 0x2b, 0x0d, 0x3b, 0x0d, 0x4b, - 0x0d, 0x03, 0x1f, 0x0d, 0x01, 0x02, 0x08, 0x0b, 0x0a, 0x5a, 0x05, 0x02, - 0xc9, 0x03, 0x01, 0x03, 0xb8, 0xff, 0xf8, 0x40, 0x10, 0x0d, 0x10, 0x48, - 0x00, 0x03, 0x01, 0x06, 0x03, 0x09, 0x04, 0x06, 0x03, 0x03, 0x0a, 0x00, - 0x12, 0x00, 0x3f, 0xc1, 0x32, 0x3f, 0xc1, 0x32, 0x01, 0x2f, 0x5e, 0x5d, - 0x2b, 0x5d, 0xc1, 0x32, 0xf1, 0xc1, 0x32, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, - 0x71, 0x31, 0x30, 0x21, 0x21, 0x35, 0x37, 0x11, 0x27, 0x35, 0x21, 0x15, - 0x07, 0x11, 0x17, 0x02, 0x64, 0xfd, 0xee, 0xac, 0xac, 0x02, 0x12, 0xac, - 0xac, 0x66, 0x29, 0x04, 0x98, 0x29, 0x66, 0x66, 0x29, 0xfb, 0x68, 0x29, - 0x00, 0x01, 0xff, 0x48, 0xfe, 0x7b, 0x01, 0x73, 0x05, 0xb6, 0x00, 0x13, - 0x00, 0x2f, 0x40, 0x1c, 0xdf, 0x15, 0x01, 0x60, 0x15, 0x70, 0x15, 0x02, - 0x2f, 0x15, 0x01, 0x0f, 0x5a, 0x0c, 0x03, 0x03, 0x00, 0x0c, 0x10, 0x0c, - 0x02, 0x07, 0x0c, 0x0d, 0x03, 0x07, 0x5f, 0x00, 0x00, 0x2f, 0xe1, 0x3f, - 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0x2f, 0x10, 0xe1, 0x5d, 0x5d, 0x5d, 0x31, - 0x30, 0x03, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x1d, 0x33, 0x4c, 0x1c, 0x22, - 0x4e, 0x2d, 0x25, 0x4b, 0x3d, 0x26, 0xbb, 0x3b, 0x69, 0x93, 0xfe, 0x7b, - 0x0d, 0x0b, 0xa0, 0x09, 0x0b, 0x13, 0x32, 0x58, 0x44, 0x05, 0xb6, 0xfa, - 0x5e, 0x69, 0x9a, 0x65, 0x31, 0x00, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0xa2, 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x64, 0x40, 0x2d, 0x02, 0x0c, - 0x66, 0x0c, 0x01, 0x0c, 0x00, 0x0a, 0x0b, 0x10, 0x0b, 0x0b, 0x01, 0x00, - 0x00, 0x10, 0x00, 0x02, 0x07, 0x00, 0x10, 0x00, 0x00, 0x0e, 0xb0, 0x0e, - 0x01, 0x2f, 0x0e, 0x01, 0x10, 0x0e, 0x01, 0x08, 0x04, 0x5a, 0x05, 0x64, - 0x0d, 0x02, 0x10, 0x0b, 0x10, 0x48, 0x08, 0xb8, 0xff, 0xf0, 0x40, 0x0c, - 0x0b, 0x10, 0x48, 0x02, 0x08, 0x05, 0x0a, 0x06, 0x03, 0x00, 0x05, 0x12, - 0x00, 0x3f, 0x33, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x2b, 0x2b, 0x01, 0x10, - 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x5e, 0x5d, - 0x33, 0x33, 0x2f, 0x38, 0x33, 0x11, 0x39, 0x5d, 0x11, 0x33, 0x31, 0x30, - 0x21, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x37, 0x01, 0x33, - 0x01, 0x04, 0xa2, 0xd3, 0xfe, 0x3d, 0x8b, 0xba, 0xba, 0x79, 0x01, 0xc4, - 0xd1, 0xfd, 0xf8, 0x02, 0xba, 0x72, 0xfd, 0xb8, 0x05, 0xb6, 0xfd, 0x25, - 0xa8, 0x02, 0x33, 0xfd, 0x83, 0x00, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, - 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x05, 0x00, 0x23, 0x40, 0x13, 0x04, 0x07, - 0xaf, 0x07, 0x01, 0x10, 0x07, 0x01, 0x03, 0x5a, 0x00, 0x64, 0x06, 0x01, - 0x03, 0x03, 0x5f, 0x00, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x5d, 0x11, 0x33, 0x31, 0x30, 0x33, 0x11, 0x33, 0x11, 0x21, - 0x15, 0xc7, 0xba, 0x02, 0x3d, 0x05, 0xb6, 0xfa, 0xf0, 0xa6, 0x00, 0x01, - 0x00, 0xc7, 0x00, 0x00, 0x06, 0x2f, 0x05, 0xb6, 0x00, 0x19, 0x00, 0x8b, - 0x40, 0x13, 0x36, 0x19, 0x01, 0x39, 0x00, 0x01, 0x17, 0x0e, 0x08, 0x0c, - 0x0f, 0x48, 0x39, 0x0e, 0x01, 0x0e, 0x11, 0x5a, 0x19, 0xb8, 0xff, 0xf8, - 0x40, 0x1c, 0x0c, 0x0f, 0x48, 0x19, 0x00, 0x08, 0x0c, 0x0f, 0x48, 0x00, - 0x0d, 0x0d, 0x0c, 0x09, 0x10, 0x65, 0x1b, 0x4f, 0x1b, 0x01, 0x20, 0x1b, - 0x01, 0x0f, 0x1b, 0x01, 0x08, 0x0b, 0xb8, 0xff, 0xf8, 0x40, 0x1a, 0x0c, - 0x0f, 0x48, 0x26, 0x0b, 0x01, 0x0b, 0x02, 0x08, 0x5a, 0x09, 0x64, 0x1a, - 0x18, 0x01, 0x01, 0x10, 0x09, 0x12, 0x48, 0x01, 0x0e, 0x0b, 0x03, 0x11, - 0x0c, 0xb8, 0xff, 0xf0, 0xb6, 0x09, 0x12, 0x48, 0x0c, 0x08, 0x00, 0x12, - 0x00, 0x3f, 0x32, 0x32, 0x2b, 0x32, 0x3f, 0x33, 0x33, 0x2b, 0x11, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x2b, 0x5e, 0x5d, 0x5d, 0x5d, - 0x10, 0xf6, 0x11, 0x39, 0x39, 0x11, 0x33, 0x2b, 0x33, 0x2b, 0xe1, 0x32, - 0x5d, 0x2b, 0x32, 0x31, 0x30, 0x5d, 0x5d, 0x21, 0x01, 0x23, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x21, 0x01, 0x33, 0x01, 0x21, 0x11, - 0x23, 0x11, 0x34, 0x36, 0x37, 0x36, 0x37, 0x23, 0x01, 0x03, 0x23, 0xfe, - 0x45, 0x08, 0x06, 0x04, 0x04, 0x05, 0xac, 0x01, 0x14, 0x01, 0x9c, 0x06, - 0x01, 0x9e, 0x01, 0x14, 0xba, 0x04, 0x03, 0x04, 0x03, 0x08, 0xfe, 0x41, - 0x05, 0x00, 0x4a, 0x49, 0x3f, 0x8b, 0x39, 0xfc, 0x96, 0x05, 0xb6, 0xfb, - 0x58, 0x04, 0xa8, 0xfa, 0x4a, 0x03, 0x77, 0x34, 0x86, 0x3d, 0x47, 0x49, - 0xfb, 0x02, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x05, 0x0e, 0x05, 0xb6, - 0x00, 0x17, 0x00, 0x51, 0x40, 0x29, 0x0e, 0x28, 0x01, 0x01, 0x01, 0x15, - 0x5a, 0x00, 0x65, 0x19, 0xb0, 0x19, 0x01, 0x8f, 0x19, 0x01, 0x00, 0x19, - 0x10, 0x19, 0x02, 0x27, 0x0c, 0x01, 0x0c, 0x03, 0x09, 0x5a, 0x0a, 0x64, - 0x18, 0x16, 0x02, 0x10, 0x06, 0x18, 0x48, 0x02, 0x0b, 0x03, 0x0d, 0xb8, - 0xff, 0xf0, 0xb6, 0x06, 0x18, 0x48, 0x0d, 0x0a, 0x00, 0x12, 0x00, 0x3f, - 0x32, 0x32, 0x2b, 0x3f, 0x33, 0x2b, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x32, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x32, 0x31, - 0x30, 0x21, 0x23, 0x01, 0x23, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x23, - 0x11, 0x33, 0x01, 0x33, 0x26, 0x27, 0x2e, 0x03, 0x35, 0x11, 0x33, 0x05, - 0x0e, 0xd7, 0xfd, 0x31, 0x08, 0x06, 0x04, 0x04, 0x05, 0xac, 0xd5, 0x02, - 0xcc, 0x07, 0x03, 0x04, 0x01, 0x03, 0x03, 0x01, 0xae, 0x04, 0xba, 0x4d, - 0x4c, 0x41, 0x8e, 0x39, 0xfc, 0xe7, 0x05, 0xb6, 0xfb, 0x4c, 0x4c, 0x4a, - 0x20, 0x43, 0x43, 0x3e, 0x1a, 0x03, 0x20, 0x00, 0x00, 0x02, 0x00, 0x7d, - 0xff, 0xec, 0x05, 0x71, 0x05, 0xcd, 0x00, 0x13, 0x00, 0x27, 0x00, 0x34, - 0x40, 0x20, 0x1e, 0x5b, 0x00, 0x67, 0x29, 0xc0, 0x29, 0x01, 0xbf, 0x29, - 0x01, 0x70, 0x29, 0x01, 0x2f, 0x29, 0x5f, 0x29, 0x02, 0x14, 0x5b, 0x0a, - 0x66, 0x28, 0x23, 0x5f, 0x0f, 0x04, 0x19, 0x5f, 0x05, 0x13, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, - 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, - 0x05, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x22, 0x0e, 0x02, 0x05, 0x71, 0x51, 0xa0, 0xed, 0x9b, 0xa3, 0xef, - 0x9d, 0x4c, 0x4c, 0x9e, 0xf0, 0xa3, 0x9b, 0xeb, 0xa0, 0x51, 0xfb, 0xd1, - 0x34, 0x6b, 0xa5, 0x72, 0x72, 0xa5, 0x6b, 0x32, 0x32, 0x6a, 0xa4, 0x72, - 0x72, 0xa6, 0x6c, 0x34, 0x02, 0xdd, 0xa9, 0xfe, 0xea, 0xc6, 0x6c, 0x6c, - 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, 0x15, 0xc4, 0x6b, 0x6b, 0xc5, 0xfe, - 0xeb, 0xab, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, 0xdb, 0x89, 0x8a, 0xda, - 0x97, 0x51, 0x51, 0x97, 0xda, 0x00, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0x33, 0x05, 0xb6, 0x00, 0x0e, 0x00, 0x19, 0x00, 0x46, 0x40, 0x2c, - 0x15, 0x5b, 0x28, 0x00, 0x38, 0x00, 0x48, 0x00, 0x03, 0x00, 0x67, 0x1b, - 0xcf, 0x1b, 0x01, 0x40, 0x1b, 0x01, 0x0f, 0x1b, 0x01, 0x06, 0x0f, 0x07, - 0x5a, 0x08, 0x64, 0x1a, 0x0f, 0x60, 0x30, 0x06, 0x40, 0x06, 0x02, 0x06, - 0x06, 0x07, 0x19, 0x60, 0x09, 0x03, 0x07, 0x12, 0x00, 0x3f, 0x3f, 0xe1, - 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, - 0x5d, 0x5d, 0x10, 0xf6, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, - 0x23, 0x23, 0x11, 0x23, 0x11, 0x21, 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x04, 0x33, 0x37, 0x7e, 0xcf, - 0x98, 0x96, 0xba, 0x01, 0x6a, 0x86, 0xc2, 0x7e, 0x3c, 0xfd, 0x4e, 0x81, - 0x5d, 0x8b, 0x5b, 0x2e, 0xa4, 0xae, 0xa0, 0x04, 0x0a, 0x5b, 0xa8, 0x81, - 0x4d, 0xfd, 0xc7, 0x05, 0xb6, 0x39, 0x6d, 0xa0, 0xfe, 0x67, 0x20, 0x47, - 0x71, 0x51, 0x8e, 0x89, 0x00, 0x02, 0x00, 0x7d, 0xfe, 0x62, 0x05, 0x71, - 0x05, 0xcd, 0x00, 0x1d, 0x00, 0x31, 0x00, 0x38, 0x40, 0x22, 0x28, 0x5b, - 0x00, 0x67, 0x33, 0xc0, 0x33, 0x01, 0xbf, 0x33, 0x01, 0x70, 0x33, 0x01, - 0x2f, 0x33, 0x5f, 0x33, 0x02, 0x1e, 0x5b, 0x14, 0x66, 0x32, 0x2d, 0x5f, - 0x19, 0x04, 0x23, 0x5f, 0x05, 0x0f, 0x13, 0x09, 0x00, 0x2f, 0x3f, 0x33, - 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, - 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x16, 0x16, 0x17, - 0x07, 0x26, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, - 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, 0x05, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, - 0x02, 0x05, 0x71, 0x31, 0x5f, 0x8e, 0x5d, 0x2b, 0x89, 0x5a, 0x79, 0x67, - 0xad, 0x33, 0x11, 0x29, 0x12, 0xa3, 0xef, 0x9d, 0x4c, 0x4c, 0x9e, 0xf0, - 0xa3, 0x9b, 0xeb, 0xa0, 0x51, 0xfb, 0xd1, 0x34, 0x6b, 0xa5, 0x72, 0x72, - 0xa5, 0x6b, 0x32, 0x32, 0x6a, 0xa4, 0x72, 0x72, 0xa6, 0x6c, 0x34, 0x02, - 0xdd, 0x83, 0xe2, 0xb5, 0x84, 0x26, 0x5e, 0x8f, 0x3c, 0x8e, 0x49, 0xc6, - 0x7f, 0x02, 0x02, 0x6c, 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, 0x15, 0xc4, - 0x6b, 0x6b, 0xc5, 0xfe, 0xeb, 0xab, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, - 0xdb, 0x89, 0x8a, 0xda, 0x97, 0x51, 0x51, 0x97, 0xda, 0x00, 0x00, 0x02, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa0, 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x1c, - 0x00, 0x82, 0x40, 0x56, 0x09, 0x0f, 0x19, 0x0f, 0x02, 0xf9, 0x0f, 0x01, - 0x0f, 0x08, 0x0b, 0x0f, 0x48, 0x0f, 0x0c, 0x09, 0x0c, 0x01, 0x07, 0x0c, - 0x01, 0x16, 0x5b, 0x08, 0x07, 0x18, 0x07, 0x02, 0x07, 0x07, 0x09, 0x0e, - 0x01, 0xe9, 0x0e, 0xf9, 0x0e, 0x02, 0x0e, 0x08, 0x0b, 0x0f, 0x48, 0x0e, - 0x0d, 0x10, 0x0d, 0x1e, 0x3f, 0x1e, 0x8f, 0x1e, 0x9f, 0x1e, 0xbf, 0x1e, - 0xdf, 0x1e, 0x05, 0x20, 0x1e, 0x01, 0x10, 0x01, 0x5a, 0x02, 0x64, 0x1d, - 0x0c, 0x03, 0x10, 0x60, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x1c, - 0x60, 0x03, 0x03, 0x0e, 0x01, 0x12, 0x00, 0x3f, 0x33, 0x3f, 0xe1, 0x11, - 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x12, 0x39, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x5d, 0x5d, 0x10, 0xce, 0x38, 0x32, 0x2b, 0x5d, 0x71, 0x32, 0x2f, 0x5d, - 0xe1, 0x12, 0x39, 0x5e, 0x5d, 0x11, 0x33, 0x2b, 0x5d, 0x71, 0x31, 0x30, - 0x01, 0x11, 0x23, 0x11, 0x21, 0x20, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07, - 0x01, 0x23, 0x01, 0x27, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x23, 0x01, 0x81, 0xba, 0x01, 0x64, 0x01, 0x0a, 0xfe, 0x31, 0x51, - 0x68, 0x37, 0x01, 0x8e, 0xdb, 0xfe, 0xa1, 0xe5, 0xa4, 0x5a, 0x7e, 0x51, - 0x25, 0x29, 0x53, 0x7f, 0x57, 0xa0, 0x02, 0x5c, 0xfd, 0xa4, 0x05, 0xb6, - 0xce, 0xd1, 0x57, 0x82, 0x5d, 0x3e, 0x14, 0xfd, 0x71, 0x02, 0x5c, 0x9e, - 0x23, 0x45, 0x67, 0x45, 0x48, 0x64, 0x40, 0x1d, 0x00, 0x01, 0x00, 0x68, - 0xff, 0xec, 0x03, 0xc9, 0x05, 0xcb, 0x00, 0x33, 0x00, 0x42, 0x40, 0x27, - 0x59, 0x23, 0x01, 0x23, 0x11, 0x5a, 0x00, 0x67, 0x35, 0xbf, 0x35, 0xff, - 0x35, 0x02, 0x60, 0x35, 0x01, 0x3f, 0x35, 0x01, 0x2a, 0x5a, 0x09, 0x1b, - 0x66, 0x34, 0x11, 0x2a, 0x05, 0x27, 0x5f, 0x24, 0x20, 0x04, 0x0e, 0x60, - 0x09, 0x05, 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0xe1, 0x12, 0x39, - 0x39, 0x01, 0x10, 0xf6, 0x32, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, - 0x33, 0x5d, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, - 0x35, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, - 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x03, 0xc9, - 0x45, 0x80, 0xb8, 0x73, 0x6f, 0xc1, 0x41, 0x22, 0x57, 0x60, 0x66, 0x32, - 0xa0, 0x99, 0x1d, 0x49, 0x7a, 0x5d, 0x59, 0x83, 0x55, 0x29, 0x40, 0x74, - 0xa1, 0x61, 0x77, 0xbe, 0x4a, 0x43, 0x41, 0xa5, 0x58, 0x7a, 0x86, 0x1e, - 0x46, 0x73, 0x54, 0x5b, 0x89, 0x5c, 0x2f, 0x01, 0x87, 0x61, 0x99, 0x6a, - 0x37, 0x23, 0x22, 0xb2, 0x10, 0x1f, 0x18, 0x0f, 0x78, 0x70, 0x36, 0x50, - 0x43, 0x3f, 0x25, 0x23, 0x53, 0x68, 0x84, 0x54, 0x58, 0x8a, 0x5f, 0x32, - 0x2d, 0x23, 0x9c, 0x1d, 0x2b, 0x71, 0x60, 0x39, 0x53, 0x43, 0x3b, 0x21, - 0x24, 0x4c, 0x60, 0x7e, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x04, 0x12, - 0x05, 0xb6, 0x00, 0x07, 0x00, 0x5e, 0x40, 0x32, 0x0f, 0x09, 0x01, 0xd0, - 0x09, 0x01, 0x4f, 0x09, 0xcf, 0x09, 0x02, 0x10, 0x09, 0x20, 0x09, 0x30, - 0x09, 0x03, 0xaf, 0x06, 0xef, 0x06, 0x02, 0x84, 0x06, 0x01, 0x06, 0x06, - 0x07, 0x5a, 0x02, 0x40, 0x03, 0xe0, 0x03, 0x02, 0x0f, 0x03, 0x01, 0x08, - 0x03, 0x03, 0x57, 0x02, 0x67, 0x02, 0x77, 0x02, 0x03, 0x02, 0xb8, 0xff, - 0xc0, 0x40, 0x0b, 0x07, 0x0a, 0x48, 0x02, 0x07, 0x03, 0x5f, 0x04, 0x03, - 0x00, 0x12, 0x00, 0x3f, 0x3f, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5d, 0x33, - 0x2f, 0x5e, 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x71, 0x31, 0x30, 0x21, 0x23, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, - 0x02, 0x71, 0xbb, 0xfe, 0x5e, 0x03, 0xfe, 0xfe, 0x5f, 0x05, 0x12, 0xa4, - 0xa4, 0x00, 0x00, 0x01, 0x00, 0xb8, 0xff, 0xec, 0x04, 0xdd, 0x05, 0xb8, - 0x00, 0x17, 0x00, 0x2f, 0x40, 0x1c, 0x16, 0x5a, 0x01, 0x65, 0x19, 0xb0, - 0x19, 0x01, 0x6f, 0x19, 0xaf, 0x19, 0x02, 0x10, 0x19, 0x01, 0x0e, 0x5a, - 0x0b, 0x64, 0x18, 0x11, 0x5f, 0x06, 0x13, 0x0c, 0x00, 0x03, 0x00, 0x3f, - 0x32, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, - 0xe1, 0x31, 0x30, 0x01, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, - 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, - 0x04, 0xdd, 0x42, 0x85, 0xc9, 0x88, 0x80, 0xc4, 0x85, 0x44, 0xbb, 0xad, - 0xaf, 0x59, 0x80, 0x52, 0x28, 0x01, 0x05, 0xb8, 0xfc, 0x4c, 0x72, 0xc4, - 0x90, 0x52, 0x4d, 0x8e, 0xc7, 0x7a, 0x03, 0xae, 0xfc, 0x48, 0xaf, 0xc0, - 0x36, 0x62, 0x88, 0x51, 0x03, 0xb8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x04, 0x8b, 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x6c, 0x40, 0x10, 0x03, 0x02, - 0x09, 0x09, 0x04, 0x00, 0x60, 0x01, 0x70, 0x01, 0xb0, 0x01, 0xf0, 0x01, - 0x04, 0x01, 0xb8, 0xff, 0xc0, 0x40, 0x16, 0x06, 0x0a, 0x48, 0x01, 0x10, - 0x01, 0x01, 0x0e, 0x2f, 0x0e, 0x7f, 0x0e, 0xbf, 0x0e, 0x03, 0x0e, 0x40, - 0x06, 0x09, 0x48, 0x05, 0x04, 0xb8, 0xff, 0xf0, 0xb4, 0x04, 0x05, 0x04, - 0x03, 0x09, 0xb8, 0xff, 0xe0, 0xb3, 0x0a, 0x11, 0x48, 0x09, 0xb8, 0xff, - 0xf0, 0x40, 0x0a, 0x06, 0x09, 0x48, 0x09, 0x02, 0x03, 0x12, 0x00, 0x01, - 0x03, 0x00, 0x3f, 0x33, 0x3f, 0x33, 0x33, 0x2b, 0x2b, 0x3f, 0x33, 0x01, - 0x2f, 0x38, 0x33, 0x2b, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x33, - 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, 0x01, 0x33, 0x01, 0x23, - 0x01, 0x33, 0x01, 0x16, 0x16, 0x17, 0x36, 0x36, 0x37, 0x03, 0xc5, 0xc6, - 0xfe, 0x17, 0xbb, 0xfe, 0x19, 0xc5, 0x01, 0x27, 0x1d, 0x2a, 0x11, 0x0f, - 0x2e, 0x1f, 0x05, 0xb6, 0xfa, 0x4a, 0x05, 0xb6, 0xfc, 0x61, 0x5b, 0xa9, - 0x4a, 0x4a, 0xa9, 0x61, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x06, 0xfe, - 0x05, 0xb6, 0x00, 0x2a, 0x00, 0xdf, 0xb6, 0x10, 0x08, 0x15, 0x18, 0x48, - 0x10, 0x0f, 0xb8, 0xff, 0xf8, 0xb5, 0x15, 0x18, 0x48, 0x0f, 0x07, 0x01, - 0xb8, 0xff, 0xf8, 0x40, 0x12, 0x15, 0x18, 0x48, 0x01, 0x00, 0x08, 0x15, - 0x18, 0x48, 0x00, 0x16, 0x1d, 0x08, 0x15, 0x18, 0x48, 0x1d, 0x1c, 0xb8, - 0xff, 0xf8, 0x40, 0x2f, 0x15, 0x18, 0x48, 0x1c, 0x25, 0x14, 0x07, 0x01, - 0x04, 0x07, 0x44, 0x07, 0xb4, 0x07, 0x03, 0x07, 0x04, 0x25, 0x14, 0x25, - 0x24, 0x25, 0x44, 0x25, 0x54, 0x25, 0x05, 0x07, 0x16, 0x25, 0x25, 0x16, - 0x07, 0x03, 0x1e, 0x0d, 0x00, 0x0e, 0x01, 0x70, 0x0e, 0x80, 0x0e, 0xc0, - 0x0e, 0x03, 0x0e, 0xb8, 0xff, 0xc0, 0x40, 0x18, 0x07, 0x0a, 0x48, 0x0e, - 0x10, 0x0e, 0x0e, 0x2c, 0x6f, 0x2c, 0x7f, 0x2c, 0x02, 0x20, 0x2c, 0x30, - 0x2c, 0x02, 0x0f, 0x2c, 0x01, 0x08, 0x1f, 0x1e, 0xb8, 0xff, 0xf0, 0x40, - 0x13, 0x1e, 0x16, 0x20, 0x0a, 0x11, 0x48, 0x16, 0x10, 0x06, 0x09, 0x48, - 0x16, 0x0d, 0x00, 0x1e, 0x03, 0x07, 0x25, 0x25, 0xb8, 0xff, 0xe0, 0xb3, - 0x0a, 0x11, 0x48, 0x25, 0xb8, 0xff, 0xf0, 0xb6, 0x06, 0x09, 0x48, 0x25, - 0x10, 0x1d, 0x12, 0x00, 0x3f, 0x33, 0x33, 0x2b, 0x2b, 0x11, 0x33, 0x3f, - 0x33, 0x33, 0x33, 0x2b, 0x2b, 0x01, 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x5d, - 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x71, 0x33, 0x12, 0x17, 0x39, - 0x3d, 0x2f, 0x2f, 0x2f, 0x5d, 0x5e, 0x5d, 0x71, 0x11, 0x33, 0x2b, 0x33, - 0x2b, 0x11, 0x33, 0x2b, 0x33, 0x2b, 0x11, 0x33, 0x2b, 0x33, 0x2b, 0x31, - 0x30, 0x01, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x3e, 0x03, 0x37, 0x13, 0x33, - 0x01, 0x23, 0x03, 0x26, 0x26, 0x27, 0x26, 0x27, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x03, 0x23, 0x01, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x3e, 0x03, 0x37, - 0x03, 0x29, 0xc5, 0xe5, 0x0f, 0x1d, 0x19, 0x13, 0x06, 0x04, 0x0c, 0x10, - 0x13, 0x0b, 0xc8, 0xc7, 0xfe, 0x91, 0xbc, 0xfe, 0x0e, 0x1a, 0x0b, 0x0c, - 0x0b, 0x0b, 0x0b, 0x0a, 0x19, 0x0e, 0xf2, 0xbc, 0xfe, 0x7e, 0xc5, 0xdf, - 0x0c, 0x14, 0x11, 0x0e, 0x05, 0x05, 0x0f, 0x14, 0x17, 0x0d, 0x05, 0xb6, - 0xfc, 0xa8, 0x38, 0x70, 0x69, 0x5e, 0x26, 0x26, 0x5a, 0x63, 0x67, 0x31, - 0x03, 0x72, 0xfa, 0x4a, 0x03, 0xaa, 0x33, 0x6c, 0x2f, 0x37, 0x34, 0x33, - 0x37, 0x2f, 0x70, 0x36, 0xfc, 0x5c, 0x05, 0xb6, 0xfc, 0x87, 0x2e, 0x63, - 0x62, 0x5b, 0x26, 0x25, 0x62, 0x6c, 0x6f, 0x31, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x60, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x81, 0x40, 0x1d, - 0x09, 0x0a, 0x10, 0x0a, 0x0a, 0x00, 0x37, 0x0b, 0x01, 0x0b, 0x08, 0x38, - 0x05, 0x01, 0x05, 0x02, 0x02, 0x01, 0x00, 0x00, 0x01, 0x70, 0x00, 0x80, - 0x00, 0xc0, 0x00, 0x03, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x14, 0x07, 0x0a, - 0x48, 0x00, 0x10, 0x00, 0x00, 0x0d, 0x0f, 0x0d, 0x1f, 0x0d, 0x2f, 0x0d, - 0x7f, 0x0d, 0x04, 0x08, 0x07, 0x06, 0xb8, 0xff, 0xf0, 0xb3, 0x06, 0x06, - 0x03, 0x04, 0xb8, 0xff, 0xf0, 0x40, 0x10, 0x04, 0x28, 0x02, 0x01, 0x27, - 0x08, 0x01, 0x02, 0x08, 0x04, 0x09, 0x06, 0x03, 0x04, 0x00, 0x12, 0x00, - 0x3f, 0x32, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x5d, 0x5d, 0x01, 0x2f, 0x38, - 0x32, 0x32, 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, - 0x5d, 0x71, 0x33, 0x39, 0x3d, 0x2f, 0x33, 0x5d, 0x33, 0x33, 0x5d, 0x11, - 0x33, 0x18, 0x2f, 0x38, 0x33, 0x31, 0x30, 0x21, 0x23, 0x01, 0x01, 0x23, - 0x01, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x04, 0x60, 0xd3, 0xfe, 0x9e, - 0xfe, 0x91, 0xbc, 0x01, 0xc5, 0xfe, 0x5a, 0xc6, 0x01, 0x4c, 0x01, 0x4e, - 0xbe, 0xfe, 0x5b, 0x02, 0x7b, 0xfd, 0x85, 0x02, 0xfc, 0x02, 0xba, 0xfd, - 0xd1, 0x02, 0x2f, 0xfd, 0x4c, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x04, 0x37, 0x05, 0xb6, 0x00, 0x08, 0x00, 0x73, 0x40, 0x19, 0xef, 0x0a, - 0x01, 0x0a, 0x40, 0x09, 0x0c, 0x48, 0x08, 0xab, 0x07, 0x01, 0x98, 0x07, - 0x01, 0x40, 0x07, 0x01, 0x1b, 0x07, 0x01, 0x0f, 0x07, 0x01, 0x07, 0xb8, - 0xff, 0xf0, 0x40, 0x2f, 0x07, 0x07, 0x05, 0x01, 0x80, 0x02, 0x01, 0x4f, - 0x02, 0x01, 0x1b, 0x02, 0x01, 0x02, 0x10, 0x02, 0x02, 0x00, 0x04, 0x5a, - 0x77, 0x05, 0x87, 0x05, 0x97, 0x05, 0x03, 0x4f, 0x05, 0x01, 0x00, 0x05, - 0x10, 0x05, 0x02, 0x07, 0x05, 0x36, 0x00, 0x01, 0x00, 0x01, 0x04, 0x12, - 0x07, 0x01, 0x03, 0x00, 0x3f, 0x33, 0x3f, 0x12, 0x39, 0x5d, 0x01, 0x2f, - 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x39, 0x32, 0x2f, 0x38, 0x5d, 0x5d, 0x5d, - 0x33, 0x11, 0x33, 0x2f, 0x38, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x2b, - 0x5d, 0x31, 0x30, 0x01, 0x01, 0x33, 0x01, 0x11, 0x23, 0x11, 0x01, 0x33, - 0x02, 0x1b, 0x01, 0x54, 0xc8, 0xfe, 0x42, 0xbb, 0xfe, 0x42, 0xcb, 0x02, - 0xd3, 0x02, 0xe3, 0xfc, 0x83, 0xfd, 0xc7, 0x02, 0x2f, 0x03, 0x87, 0x00, - 0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x03, 0xfe, 0x05, 0xb6, 0x00, 0x09, - 0x00, 0x38, 0x40, 0x20, 0x09, 0x09, 0x03, 0x07, 0x67, 0x0b, 0x0f, 0x0b, - 0x3f, 0x0b, 0x4f, 0x0b, 0x9f, 0x0b, 0x04, 0x08, 0x08, 0x04, 0x04, 0x01, - 0x66, 0x0a, 0x07, 0x04, 0x5f, 0x05, 0x03, 0x02, 0x08, 0x5f, 0x01, 0x12, - 0x00, 0x3f, 0xe1, 0x39, 0x3f, 0xe1, 0x39, 0x01, 0x10, 0xe6, 0x32, 0x2f, - 0x32, 0x5e, 0x5d, 0x10, 0xe6, 0x32, 0x32, 0x2f, 0x31, 0x30, 0x21, 0x21, - 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x21, 0x03, 0xfe, 0xfc, 0x54, - 0x02, 0xc7, 0xfd, 0x4d, 0x03, 0x83, 0xfd, 0x3a, 0x02, 0xdb, 0x91, 0x04, - 0x7f, 0xa6, 0x91, 0xfb, 0x81, 0x00, 0x00, 0x01, 0x00, 0xa4, 0xfe, 0xbc, - 0x02, 0x39, 0x05, 0xb6, 0x00, 0x07, 0x00, 0x26, 0x40, 0x17, 0x04, 0x00, - 0xf3, 0x06, 0xf1, 0x00, 0x01, 0x10, 0x01, 0xb0, 0x01, 0xc0, 0x01, 0x04, - 0x01, 0x05, 0xf5, 0x02, 0xf8, 0x06, 0xf5, 0x01, 0xf9, 0x00, 0x3f, 0xe1, - 0x3f, 0xe1, 0x01, 0x2f, 0x5d, 0xe1, 0xed, 0x32, 0x31, 0x30, 0x01, 0x21, - 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x02, 0x39, 0xfe, 0x6b, 0x01, 0x95, - 0xdf, 0xdf, 0xfe, 0xbc, 0x06, 0xfa, 0x95, 0xfa, 0x31, 0x00, 0x00, 0x01, - 0x00, 0x17, 0x00, 0x00, 0x02, 0xe9, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x21, - 0xb7, 0x02, 0x01, 0x01, 0x10, 0x01, 0x05, 0x00, 0x03, 0xb8, 0xff, 0xf0, - 0xb4, 0x03, 0x02, 0x01, 0x00, 0x03, 0x00, 0x3f, 0x2f, 0x2f, 0x01, 0x2f, - 0x38, 0x33, 0x11, 0x33, 0x38, 0x11, 0x33, 0x31, 0x30, 0x13, 0x01, 0x23, - 0x01, 0xc9, 0x02, 0x20, 0xb2, 0xfd, 0xe0, 0x05, 0xb6, 0xfa, 0x4a, 0x05, - 0xb6, 0x00, 0x00, 0x01, 0x00, 0x33, 0xfe, 0xbc, 0x01, 0xc9, 0x05, 0xb6, - 0x00, 0x07, 0x00, 0x24, 0x40, 0x14, 0x03, 0x00, 0xf3, 0x01, 0xf1, 0x60, - 0x06, 0x70, 0x06, 0x02, 0x06, 0x09, 0x00, 0xf5, 0x07, 0xf9, 0x03, 0xf5, - 0x04, 0xf8, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xd6, 0x5d, 0xe1, - 0xed, 0x32, 0x31, 0x30, 0x17, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x21, - 0x33, 0xdf, 0xdf, 0x01, 0x96, 0xfe, 0x6a, 0xae, 0x05, 0xcf, 0x95, 0xf9, - 0x06, 0x00, 0x00, 0x01, 0x00, 0x29, 0x02, 0x25, 0x04, 0x19, 0x05, 0xc1, - 0x00, 0x06, 0x00, 0x12, 0xb6, 0x03, 0x03, 0x08, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x3f, 0xcd, 0x01, 0x2f, 0x11, 0x33, 0x2f, 0x31, 0x30, 0x13, 0x01, - 0x33, 0x01, 0x23, 0x01, 0x01, 0x29, 0x01, 0xcb, 0x66, 0x01, 0xbf, 0xa1, - 0xfe, 0xaf, 0xfe, 0xa3, 0x02, 0x25, 0x03, 0x9c, 0xfc, 0x64, 0x02, 0xdf, - 0xfd, 0x21, 0x00, 0x01, 0xff, 0xfc, 0xfe, 0xbc, 0x03, 0x4e, 0xff, 0x48, - 0x00, 0x03, 0x00, 0x12, 0xb6, 0x00, 0x00, 0x05, 0x01, 0x01, 0xba, 0x02, - 0x00, 0x2f, 0xe1, 0x01, 0x2f, 0x11, 0x33, 0x2f, 0x31, 0x30, 0x01, 0x21, - 0x35, 0x21, 0x03, 0x4e, 0xfc, 0xae, 0x03, 0x52, 0xfe, 0xbc, 0x8c, 0x00, - 0x00, 0x01, 0x01, 0x89, 0x04, 0xd9, 0x03, 0x12, 0x06, 0x21, 0x00, 0x0d, - 0x00, 0x16, 0x40, 0x0a, 0x00, 0x06, 0x08, 0x80, 0x0f, 0x00, 0x5f, 0x00, - 0x02, 0x00, 0x00, 0x2f, 0x5d, 0x1a, 0xcc, 0x01, 0x2f, 0xcd, 0x31, 0x30, - 0x01, 0x23, 0x2e, 0x03, 0x27, 0x35, 0x33, 0x1e, 0x03, 0x17, 0x03, 0x12, - 0x78, 0x23, 0x52, 0x4d, 0x3f, 0x10, 0xdb, 0x10, 0x2b, 0x2e, 0x30, 0x15, - 0x04, 0xd9, 0x1c, 0x53, 0x58, 0x51, 0x1b, 0x15, 0x22, 0x51, 0x51, 0x4c, - 0x1d, 0x00, 0x00, 0x02, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x04, 0x5e, - 0x00, 0x23, 0x00, 0x32, 0x00, 0x54, 0x40, 0x11, 0x10, 0x01, 0x29, 0x47, - 0x23, 0x55, 0x34, 0x0f, 0x34, 0x6f, 0x34, 0x02, 0x06, 0x30, 0x48, 0x0c, - 0x1a, 0xb8, 0xff, 0xd0, 0x40, 0x1e, 0x0d, 0x11, 0x48, 0x1a, 0x10, 0x09, - 0x0c, 0x48, 0x1a, 0x1a, 0x0c, 0x56, 0x33, 0x19, 0x16, 0x50, 0x1d, 0x2a, - 0x52, 0x10, 0x10, 0x1d, 0x10, 0x24, 0x50, 0x02, 0x07, 0x16, 0x00, 0x15, - 0x00, 0x3f, 0x3f, 0x33, 0xe1, 0x3f, 0x39, 0x2f, 0xe1, 0x10, 0xe1, 0x32, - 0x01, 0x10, 0xe6, 0x32, 0x2f, 0x2b, 0x2b, 0x10, 0xe1, 0x5e, 0x5d, 0x10, - 0xf6, 0xe1, 0x32, 0x32, 0x31, 0x30, 0x21, 0x27, 0x23, 0x0e, 0x03, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x37, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x11, 0x25, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x07, 0x0e, 0x03, 0x15, 0x14, - 0x16, 0x03, 0x19, 0x25, 0x08, 0x21, 0x42, 0x4e, 0x60, 0x3f, 0x45, 0x74, - 0x55, 0x30, 0xe7, 0xec, 0xb8, 0x1d, 0x37, 0x51, 0x34, 0x53, 0x8f, 0x42, - 0x40, 0x4a, 0xb6, 0x64, 0x66, 0x95, 0x61, 0x30, 0xfe, 0x2f, 0x3d, 0x68, - 0x4c, 0x2b, 0x8f, 0x5a, 0x7a, 0x49, 0x20, 0x61, 0x98, 0x2d, 0x41, 0x2a, - 0x14, 0x27, 0x51, 0x7b, 0x54, 0xa4, 0xb0, 0x08, 0x07, 0x45, 0x43, 0x5a, - 0x37, 0x18, 0x30, 0x22, 0x89, 0x28, 0x38, 0x29, 0x59, 0x8a, 0x62, 0xfd, - 0x10, 0x7f, 0x26, 0x4d, 0x75, 0x4f, 0x63, 0x07, 0x04, 0x20, 0x39, 0x51, - 0x33, 0x5c, 0x56, 0x00, 0x00, 0x02, 0x00, 0xae, 0xff, 0xec, 0x04, 0x3f, - 0x06, 0x14, 0x00, 0x1f, 0x00, 0x2f, 0x00, 0x38, 0xb5, 0x2d, 0x48, 0x05, - 0x57, 0x31, 0x31, 0xb8, 0xff, 0xb8, 0x40, 0x17, 0x0a, 0x49, 0x15, 0x10, - 0x25, 0x47, 0x12, 0x54, 0x30, 0x13, 0x00, 0x12, 0x15, 0x2a, 0x50, 0x0f, - 0x0a, 0x16, 0x20, 0x50, 0x1b, 0x00, 0x10, 0x00, 0x3f, 0x32, 0xe1, 0x3f, - 0x33, 0xe1, 0x3f, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x2b, 0x10, - 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x2e, 0x02, 0x27, 0x23, 0x07, 0x23, 0x11, 0x33, 0x11, 0x14, - 0x06, 0x07, 0x06, 0x07, 0x33, 0x3e, 0x03, 0x17, 0x22, 0x0e, 0x02, 0x15, - 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x02, 0x9e, 0x5e, - 0x9a, 0x6d, 0x3c, 0x3c, 0x6d, 0x9a, 0x5e, 0x3b, 0x60, 0x4d, 0x3b, 0x17, - 0x0c, 0x25, 0x85, 0xb6, 0x02, 0x02, 0x02, 0x02, 0x08, 0x17, 0x3a, 0x4d, - 0x60, 0x19, 0x50, 0x6b, 0x41, 0x1b, 0x1b, 0x41, 0x6c, 0x51, 0x87, 0x7f, - 0x7f, 0x04, 0x5e, 0x48, 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x1a, - 0x2b, 0x3a, 0x20, 0x8b, 0x06, 0x14, 0xfe, 0x88, 0x23, 0x4f, 0x22, 0x28, - 0x26, 0x23, 0x3c, 0x2c, 0x19, 0x97, 0x33, 0x68, 0x9c, 0x69, 0x65, 0x9d, - 0x6b, 0x37, 0xda, 0xcc, 0xd0, 0xce, 0x00, 0x01, 0x00, 0x71, 0xff, 0xec, - 0x03, 0x6f, 0x04, 0x5e, 0x00, 0x1f, 0x00, 0x2a, 0x40, 0x18, 0x1d, 0x0d, - 0x21, 0x5f, 0x21, 0x7f, 0x21, 0x02, 0x10, 0x21, 0x01, 0x16, 0x48, 0x05, - 0x56, 0x20, 0x13, 0x51, 0x0a, 0x10, 0x19, 0x51, 0x00, 0x16, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x10, 0xce, 0x32, - 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x16, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x02, 0x52, 0x65, 0xb0, 0x82, 0x4a, - 0x4c, 0x85, 0xb2, 0x66, 0x4e, 0x95, 0x32, 0x36, 0x17, 0x38, 0x3c, 0x3a, - 0x1a, 0x9d, 0x90, 0x91, 0x94, 0x51, 0x83, 0x36, 0x36, 0x7b, 0x14, 0x3f, - 0x89, 0xd5, 0x96, 0x9d, 0xdb, 0x89, 0x3e, 0x22, 0x19, 0x9a, 0x0a, 0x13, - 0x0f, 0x09, 0xc9, 0xd4, 0xd3, 0xc3, 0x25, 0x19, 0xa2, 0x1d, 0x1e, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x04, 0x02, 0x06, 0x14, 0x00, 0x1f, - 0x00, 0x30, 0x00, 0x34, 0x40, 0x1d, 0x26, 0x00, 0x1b, 0x47, 0x1e, 0x55, - 0x32, 0x10, 0x32, 0x01, 0x2e, 0x48, 0x0b, 0x56, 0x31, 0x1f, 0x15, 0x1c, - 0x00, 0x2b, 0x50, 0x16, 0x10, 0x10, 0x20, 0x50, 0x01, 0x06, 0x16, 0x00, - 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0x01, 0x10, 0xf6, 0xe1, - 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x31, 0x30, 0x25, 0x23, 0x0e, 0x03, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, - 0x17, 0x33, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x25, - 0x32, 0x3e, 0x02, 0x37, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x15, - 0x14, 0x16, 0x03, 0x54, 0x08, 0x16, 0x3b, 0x4d, 0x60, 0x3c, 0x5d, 0x9a, - 0x6e, 0x3c, 0x3c, 0x6e, 0x9a, 0x5d, 0x3b, 0x60, 0x4d, 0x3c, 0x16, 0x0c, - 0x03, 0x03, 0x02, 0x04, 0xb6, 0x93, 0xfe, 0xc6, 0x4c, 0x69, 0x41, 0x1f, - 0x02, 0x1b, 0x41, 0x6c, 0x51, 0x87, 0x7f, 0x7f, 0x93, 0x22, 0x3d, 0x2e, - 0x1a, 0x48, 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x1a, 0x2c, 0x3a, - 0x20, 0x22, 0x1f, 0x1a, 0x37, 0x10, 0x01, 0xb4, 0xf9, 0xec, 0x83, 0x2e, - 0x5e, 0x8d, 0x5e, 0x29, 0x65, 0x9d, 0x6b, 0x37, 0xda, 0xcc, 0xd1, 0xcd, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x04, 0x5e, 0x00, 0x1e, - 0x00, 0x27, 0x00, 0x43, 0x40, 0x28, 0x23, 0x48, 0x19, 0x10, 0x57, 0x29, - 0xe0, 0x29, 0x01, 0x6f, 0x29, 0x01, 0x22, 0x11, 0x48, 0x05, 0x56, 0x28, - 0x11, 0x50, 0x1b, 0x22, 0x2b, 0x22, 0x02, 0x0f, 0x22, 0x01, 0x06, 0x22, - 0x22, 0x14, 0x1f, 0x50, 0x0a, 0x10, 0x14, 0x51, 0x00, 0x16, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0xe1, 0x01, 0x10, - 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x31, 0x30, 0x05, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, - 0x03, 0x22, 0x06, 0x07, 0x21, 0x34, 0x2e, 0x02, 0x02, 0x60, 0x6e, 0xb6, - 0x83, 0x48, 0x42, 0x78, 0xa7, 0x65, 0x63, 0x9e, 0x6e, 0x3b, 0xfd, 0x4c, - 0x05, 0x99, 0x97, 0x33, 0x57, 0x51, 0x4c, 0x27, 0x28, 0x4d, 0x51, 0x57, - 0x60, 0x72, 0x85, 0x0b, 0x01, 0xec, 0x1b, 0x39, 0x58, 0x14, 0x4a, 0x8e, - 0xd2, 0x87, 0x88, 0xd6, 0x95, 0x4e, 0x47, 0x81, 0xb5, 0x6e, 0x71, 0xc1, - 0xb6, 0x0a, 0x13, 0x1d, 0x12, 0xa2, 0x13, 0x1c, 0x12, 0x08, 0x03, 0xdb, - 0x9c, 0x95, 0x44, 0x71, 0x50, 0x2c, 0x00, 0x01, 0x00, 0x1d, 0x00, 0x00, - 0x02, 0xf0, 0x06, 0x1f, 0x00, 0x1b, 0x00, 0x70, 0x40, 0x4e, 0xcf, 0x1d, - 0xdf, 0x1d, 0x02, 0x60, 0x1d, 0x80, 0x1d, 0x90, 0x1d, 0xa0, 0x1d, 0x04, - 0x1f, 0x1d, 0x3f, 0x1d, 0x4f, 0x1d, 0x03, 0x1b, 0x1b, 0x7f, 0x10, 0xbf, - 0x10, 0x02, 0x10, 0x10, 0x1a, 0x02, 0x47, 0x03, 0x07, 0x03, 0x0f, 0x05, - 0x1f, 0x05, 0x2f, 0x05, 0xaf, 0x05, 0x04, 0x05, 0x05, 0x00, 0x03, 0x10, - 0x03, 0x20, 0x03, 0x80, 0x03, 0x90, 0x03, 0xa0, 0x03, 0x06, 0x06, 0x03, - 0x01, 0x05, 0x4f, 0x07, 0x00, 0x1a, 0x01, 0x07, 0x1a, 0x0f, 0x14, 0x50, - 0x0d, 0x01, 0x02, 0x15, 0x00, 0x3f, 0x3f, 0xe1, 0x3f, 0x5e, 0x5d, 0x33, - 0xe1, 0x32, 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0x2f, 0x5d, 0x11, 0x33, 0x10, - 0xe1, 0x32, 0x32, 0x2f, 0x5d, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x31, 0x30, - 0x01, 0x23, 0x11, 0x23, 0x11, 0x23, 0x35, 0x37, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, - 0x15, 0x33, 0x02, 0x8b, 0xf5, 0xb7, 0xc2, 0xc2, 0x2d, 0x55, 0x7c, 0x4e, - 0x3b, 0x63, 0x27, 0x2f, 0x1f, 0x49, 0x28, 0x28, 0x3a, 0x26, 0x13, 0xf5, - 0x03, 0xc1, 0xfc, 0x3f, 0x03, 0xc1, 0x4b, 0x44, 0x60, 0x6b, 0x8d, 0x54, - 0x23, 0x17, 0x0e, 0x8d, 0x0b, 0x11, 0x13, 0x30, 0x53, 0x41, 0x68, 0x00, - 0x00, 0x03, 0x00, 0x25, 0xfe, 0x14, 0x03, 0xfc, 0x04, 0x5e, 0x00, 0x3f, - 0x00, 0x52, 0x00, 0x5e, 0x00, 0xa7, 0x40, 0x19, 0x0d, 0x32, 0x05, 0x53, - 0x47, 0x37, 0x12, 0x2f, 0x60, 0x37, 0x70, 0x37, 0x80, 0x37, 0x03, 0x37, - 0x2f, 0x37, 0x2f, 0x27, 0x48, 0x1d, 0x59, 0x47, 0x05, 0xb8, 0xff, 0xc0, - 0x40, 0x4d, 0x07, 0x0a, 0x48, 0x05, 0x05, 0x01, 0x0a, 0x1d, 0x01, 0xfd, - 0x1d, 0x01, 0xb0, 0x1d, 0x01, 0x88, 0x1d, 0x01, 0x20, 0x1d, 0x30, 0x1d, - 0x40, 0x1d, 0x03, 0x1d, 0x1d, 0x60, 0x1f, 0x60, 0x01, 0xbf, 0x60, 0xdf, - 0x60, 0x02, 0xa0, 0x60, 0x01, 0x40, 0x27, 0x40, 0x0c, 0x0f, 0x48, 0x27, - 0x02, 0x05, 0x32, 0x0d, 0x04, 0x3c, 0x56, 0x52, 0x0a, 0x0a, 0x22, 0x5c, - 0x4f, 0x3c, 0x2c, 0x4e, 0x0f, 0x17, 0x01, 0x07, 0x17, 0x17, 0x3c, 0x10, - 0x45, 0x4f, 0x22, 0x1b, 0x01, 0x00, 0x0f, 0x00, 0x3f, 0xc1, 0x3f, 0xe1, - 0x3f, 0x39, 0x2f, 0x5e, 0x5d, 0xc1, 0x39, 0x10, 0xe1, 0x11, 0x39, 0x2f, - 0xe1, 0x12, 0x17, 0x39, 0x01, 0x2f, 0x2b, 0xc1, 0x5d, 0x5d, 0x71, 0x11, - 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x33, 0x39, 0x2f, 0x2b, 0xe1, - 0x10, 0xc1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x10, 0xc1, 0x10, 0xe1, - 0x12, 0x39, 0x39, 0x31, 0x30, 0x01, 0x15, 0x07, 0x16, 0x16, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, - 0x33, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x01, 0x14, - 0x1e, 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x22, - 0x0e, 0x02, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x03, 0xfc, 0xc5, 0x1c, 0x26, 0x2f, 0x5f, 0x8c, 0x5d, 0x16, - 0x2c, 0x0e, 0x11, 0x21, 0x1b, 0x11, 0x18, 0x29, 0x38, 0x1f, 0xb0, 0x5d, - 0x80, 0x51, 0x24, 0x41, 0x86, 0xcd, 0x8b, 0x6b, 0xa0, 0x6a, 0x35, 0x27, - 0x42, 0x57, 0x2f, 0x2a, 0x36, 0x40, 0x45, 0x2b, 0x47, 0x31, 0x1b, 0x32, - 0x62, 0x92, 0x61, 0x25, 0x4f, 0x1b, 0xfe, 0x40, 0x1a, 0x3b, 0x61, 0x48, - 0xba, 0xb9, 0x18, 0x37, 0x5a, 0x41, 0xb0, 0x23, 0x4c, 0x3f, 0x29, 0x5c, - 0x6c, 0x63, 0x64, 0x67, 0x69, 0x64, 0x63, 0x6a, 0x04, 0x4a, 0x71, 0x1b, - 0x23, 0x6d, 0x45, 0x4c, 0x81, 0x5e, 0x35, 0x01, 0x03, 0x0a, 0x19, 0x20, - 0x28, 0x18, 0x1b, 0x21, 0x12, 0x06, 0x2f, 0x50, 0x6d, 0x3d, 0x58, 0x8c, - 0x61, 0x34, 0x2a, 0x50, 0x71, 0x47, 0x3c, 0x5b, 0x42, 0x2a, 0x0b, 0x13, - 0x52, 0x35, 0x3d, 0x59, 0x2a, 0x12, 0x3f, 0x51, 0x60, 0x33, 0x59, 0x8c, - 0x62, 0x34, 0x0b, 0x09, 0xfb, 0x02, 0x25, 0x40, 0x2e, 0x1b, 0x73, 0x6c, - 0x2e, 0x3a, 0x21, 0x0c, 0x10, 0x2c, 0x4d, 0x03, 0x60, 0x73, 0x70, 0x6f, - 0x77, 0x7b, 0x74, 0x78, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x12, - 0x06, 0x14, 0x00, 0x19, 0x00, 0x32, 0x40, 0x1d, 0x00, 0x47, 0x19, 0x55, - 0x1b, 0x10, 0x1b, 0x60, 0x1b, 0x80, 0x1b, 0x03, 0x0f, 0x0e, 0x0a, 0x47, - 0x0b, 0x54, 0x1a, 0x10, 0x04, 0x50, 0x15, 0x10, 0x0c, 0x00, 0x0b, 0x00, - 0x15, 0x00, 0x3f, 0x32, 0x3f, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, - 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x21, 0x11, 0x34, 0x26, - 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x33, 0x11, 0x07, 0x33, - 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, 0x11, 0x03, 0x5c, 0x69, 0x70, 0x51, - 0x6e, 0x43, 0x1d, 0xb6, 0xb6, 0x08, 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, - 0xb7, 0xb9, 0x02, 0xc3, 0x82, 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xc7, - 0x06, 0x14, 0xfe, 0x32, 0x90, 0x2b, 0x3f, 0x2a, 0x14, 0xbf, 0xd2, 0xfd, - 0x33, 0x00, 0x00, 0x02, 0x00, 0xa0, 0x00, 0x00, 0x01, 0x75, 0x05, 0xe5, - 0x00, 0x03, 0x00, 0x11, 0x00, 0x25, 0x40, 0x14, 0x10, 0x13, 0x20, 0x13, - 0x02, 0x0c, 0x00, 0x47, 0x04, 0x01, 0x54, 0x12, 0x07, 0x53, 0x0f, 0x0f, - 0x02, 0x0f, 0x00, 0x15, 0x00, 0x3f, 0x3f, 0x33, 0x2f, 0xe5, 0x01, 0x10, - 0xf6, 0x32, 0xe1, 0x32, 0x5d, 0x31, 0x30, 0x21, 0x23, 0x11, 0x33, 0x03, - 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, - 0x01, 0x64, 0xb6, 0xb6, 0xc4, 0x3d, 0x2d, 0x16, 0x27, 0x1d, 0x11, 0x3f, - 0x2c, 0x2d, 0x3d, 0x04, 0x4a, 0x01, 0x29, 0x3c, 0x36, 0x0d, 0x1c, 0x2b, - 0x1e, 0x3a, 0x39, 0x38, 0x00, 0x02, 0xff, 0xbc, 0xfe, 0x14, 0x01, 0x75, - 0x05, 0xe5, 0x00, 0x13, 0x00, 0x21, 0x00, 0x2e, 0x40, 0x19, 0x10, 0x23, - 0x20, 0x23, 0x02, 0x1c, 0x0f, 0x47, 0x0c, 0x14, 0x03, 0x03, 0x0c, 0x54, - 0x22, 0x17, 0x53, 0x1f, 0x1f, 0x0d, 0x0f, 0x07, 0x50, 0x00, 0x1b, 0x00, - 0x3f, 0xe1, 0x3f, 0x33, 0x2f, 0xe5, 0x01, 0x10, 0xe6, 0x32, 0x2f, 0x32, - 0x10, 0xe1, 0x32, 0x5d, 0x31, 0x30, 0x13, 0x22, 0x26, 0x27, 0x35, 0x16, - 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, - 0x13, 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, - 0x26, 0x42, 0x30, 0x3f, 0x17, 0x1a, 0x36, 0x23, 0x1b, 0x2e, 0x23, 0x13, - 0xb6, 0x22, 0x48, 0x6d, 0x13, 0x3d, 0x2d, 0x16, 0x27, 0x1d, 0x11, 0x3f, - 0x2c, 0x2d, 0x3d, 0xfe, 0x14, 0x0e, 0x0b, 0x94, 0x0a, 0x0b, 0x0f, 0x27, - 0x41, 0x33, 0x04, 0xf4, 0xfb, 0x18, 0x4d, 0x7b, 0x57, 0x2f, 0x07, 0x5f, - 0x3c, 0x36, 0x0d, 0x1c, 0x2b, 0x1e, 0x3a, 0x39, 0x38, 0x00, 0x00, 0x01, - 0x00, 0xae, 0x00, 0x00, 0x03, 0xf0, 0x06, 0x14, 0x00, 0x0e, 0x00, 0x5e, - 0x40, 0x0b, 0x07, 0x04, 0x04, 0x02, 0x03, 0x03, 0x06, 0x44, 0x05, 0x01, - 0x05, 0xb8, 0xff, 0xc0, 0x40, 0x17, 0x07, 0x0a, 0x48, 0x05, 0x10, 0x05, - 0x05, 0x10, 0x0f, 0x10, 0x2f, 0x10, 0x02, 0x07, 0x0d, 0x09, 0x47, 0x0a, - 0x54, 0x0f, 0x0b, 0x00, 0x00, 0xb8, 0xff, 0xf8, 0x40, 0x10, 0x0c, 0x0f, - 0x48, 0x07, 0x08, 0x0c, 0x0f, 0x48, 0x00, 0x07, 0x03, 0x06, 0x0a, 0x15, - 0x03, 0x0f, 0x00, 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x2b, 0x2b, 0x3f, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, - 0x5d, 0x33, 0x33, 0x11, 0x33, 0x39, 0x11, 0x33, 0x31, 0x30, 0x01, 0x37, - 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x03, 0x01, 0x56, 0x87, 0x01, 0x25, 0xd3, 0xfe, 0x6f, 0x01, 0xac, 0xd1, - 0xfe, 0xb0, 0x6d, 0xb4, 0xb4, 0x10, 0x02, 0x37, 0xaa, 0x01, 0x69, 0xfe, - 0x25, 0xfd, 0x91, 0x01, 0xf8, 0x52, 0xfe, 0x5a, 0x06, 0x14, 0xfd, 0x36, - 0xfe, 0xed, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x01, 0x64, 0x06, 0x14, - 0x00, 0x03, 0x00, 0x1a, 0x40, 0x0e, 0x10, 0x05, 0x20, 0x05, 0x02, 0x00, - 0x47, 0x01, 0x54, 0x04, 0x02, 0x00, 0x00, 0x15, 0x00, 0x3f, 0x3f, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x31, 0x30, 0x21, 0x23, 0x11, 0x33, 0x01, 0x64, - 0xb6, 0xb6, 0x06, 0x14, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x06, 0x87, - 0x04, 0x5e, 0x00, 0x2c, 0x00, 0x65, 0x40, 0x3f, 0x23, 0x0a, 0x47, 0xb9, - 0x0b, 0x01, 0x96, 0x0b, 0xa6, 0x0b, 0x02, 0x89, 0x0b, 0x01, 0x67, 0x0b, - 0x77, 0x0b, 0x02, 0x0b, 0x0b, 0x16, 0x00, 0x47, 0x2c, 0x55, 0x2e, 0xf0, - 0x2e, 0x01, 0xcf, 0x2e, 0x01, 0x20, 0x2e, 0x50, 0x2e, 0x02, 0x0f, 0x2e, - 0x01, 0x08, 0x19, 0x15, 0x47, 0x16, 0x54, 0x2d, 0x23, 0x1a, 0x1a, 0x04, - 0x0f, 0x50, 0x28, 0x1f, 0x10, 0x17, 0x0f, 0x16, 0x0b, 0x00, 0x15, 0x00, - 0x3f, 0x32, 0x32, 0x3f, 0x3f, 0x33, 0xe1, 0x32, 0x32, 0x11, 0x33, 0x01, - 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, - 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, 0x32, 0x31, 0x30, 0x21, - 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, - 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x33, 0x17, 0x33, - 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, - 0x15, 0x11, 0x05, 0xd1, 0x64, 0x69, 0x49, 0x66, 0x41, 0x1e, 0xb7, 0x63, - 0x69, 0x4d, 0x68, 0x3f, 0x1b, 0xb6, 0x94, 0x1a, 0x0a, 0x18, 0x42, 0x4f, - 0x59, 0x2e, 0x78, 0x9f, 0x26, 0x08, 0x1a, 0x49, 0x57, 0x60, 0x32, 0xaf, - 0xb1, 0x02, 0xc3, 0x82, 0x82, 0x2f, 0x5b, 0x87, 0x58, 0xfd, 0xa2, 0x02, - 0xc3, 0x82, 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xc7, 0x04, 0x4a, 0x94, - 0x2b, 0x3f, 0x2a, 0x14, 0x58, 0x5e, 0x2f, 0x44, 0x2d, 0x16, 0xbf, 0xd2, - 0xfd, 0x33, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x12, 0x04, 0x5e, - 0x00, 0x18, 0x00, 0x30, 0x40, 0x1c, 0x00, 0x47, 0x18, 0x55, 0x1a, 0x10, - 0x1a, 0x60, 0x1a, 0x80, 0x1a, 0x03, 0x0e, 0x0a, 0x47, 0x0b, 0x54, 0x19, - 0x0f, 0x04, 0x50, 0x14, 0x10, 0x0c, 0x0f, 0x0b, 0x00, 0x15, 0x00, 0x3f, - 0x32, 0x3f, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x10, - 0xf6, 0xe1, 0x31, 0x30, 0x21, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, - 0x15, 0x11, 0x23, 0x11, 0x33, 0x17, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, - 0x15, 0x11, 0x03, 0x5c, 0x69, 0x70, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x94, - 0x1a, 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, 0xb7, 0xb9, 0x02, 0xc3, 0x82, - 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xc7, 0x04, 0x4a, 0x94, 0x2b, 0x3f, - 0x2a, 0x14, 0xbf, 0xd2, 0xfd, 0x33, 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, - 0x04, 0x2d, 0x04, 0x5e, 0x00, 0x13, 0x00, 0x1f, 0x00, 0x30, 0x40, 0x1d, - 0x1a, 0x48, 0x00, 0x57, 0x21, 0x40, 0x21, 0xd0, 0x21, 0xe0, 0x21, 0x03, - 0x0f, 0x21, 0x01, 0x06, 0x14, 0x48, 0x0a, 0x56, 0x20, 0x1d, 0x50, 0x0f, - 0x10, 0x17, 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x01, 0x10, - 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x04, 0x2d, 0x43, 0x7d, 0xb2, 0x6f, 0x67, 0xae, 0x7f, 0x47, - 0x43, 0x7c, 0xb3, 0x6f, 0x67, 0xae, 0x7f, 0x47, 0xfd, 0x00, 0x89, 0x9a, - 0x9a, 0x87, 0x89, 0x9a, 0x9a, 0x87, 0x02, 0x27, 0x89, 0xd5, 0x91, 0x4c, - 0x4c, 0x91, 0xd5, 0x89, 0x88, 0xd3, 0x91, 0x4b, 0x4b, 0x91, 0xd3, 0x88, - 0xd1, 0xd3, 0xd3, 0xd1, 0xd1, 0xcf, 0xcf, 0x00, 0x00, 0x02, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x3f, 0x04, 0x5e, 0x00, 0x1f, 0x00, 0x30, 0x00, 0x36, - 0x40, 0x1e, 0x2e, 0x48, 0x1b, 0x57, 0x32, 0x10, 0x32, 0x01, 0x26, 0x10, - 0x06, 0x0c, 0x47, 0x0d, 0x54, 0x31, 0x20, 0x50, 0x11, 0x16, 0x10, 0x0e, - 0x0f, 0x0c, 0x1b, 0x2b, 0x50, 0x05, 0x00, 0x16, 0x00, 0x3f, 0x32, 0xe1, - 0x3f, 0x3f, 0x3f, 0x33, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x32, - 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x27, 0x23, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x33, 0x17, 0x33, 0x3e, - 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x03, 0x22, 0x0e, - 0x02, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, - 0x02, 0x9e, 0x3b, 0x60, 0x4d, 0x3b, 0x17, 0x0c, 0x03, 0x03, 0x02, 0x04, - 0xb6, 0x94, 0x1a, 0x08, 0x17, 0x3a, 0x4d, 0x60, 0x3c, 0x5e, 0x9a, 0x6d, - 0x3c, 0x3c, 0x6d, 0x9a, 0x81, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, 0x41, - 0x6c, 0x51, 0x87, 0x7f, 0x7f, 0x14, 0x1a, 0x2b, 0x3a, 0x20, 0x22, 0x1f, - 0x1a, 0x37, 0x10, 0xfe, 0x2b, 0x06, 0x36, 0x94, 0x23, 0x3d, 0x2d, 0x1b, - 0x48, 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x03, 0xdb, 0x2e, 0x5e, - 0x8c, 0x5f, 0x29, 0x65, 0x9d, 0x6b, 0x37, 0xda, 0xcc, 0xd0, 0xce, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xfe, 0x14, 0x04, 0x02, 0x04, 0x5e, 0x00, 0x10, - 0x00, 0x30, 0x00, 0x36, 0x40, 0x1e, 0x2b, 0x20, 0x05, 0x25, 0x47, 0x24, - 0x55, 0x32, 0x10, 0x32, 0x01, 0x0e, 0x48, 0x16, 0x56, 0x31, 0x24, 0x1b, - 0x22, 0x0f, 0x20, 0x0b, 0x50, 0x1b, 0x10, 0x2c, 0x00, 0x50, 0x11, 0x16, - 0x00, 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x33, 0x3f, 0x3f, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x32, 0x31, 0x30, 0x25, 0x32, - 0x3e, 0x02, 0x37, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0x17, 0x33, 0x37, 0x33, 0x11, 0x23, 0x11, 0x34, 0x36, 0x37, 0x36, - 0x37, 0x23, 0x0e, 0x03, 0x02, 0x35, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, - 0x41, 0x6c, 0x51, 0x87, 0x7f, 0x7f, 0x66, 0x5d, 0x9a, 0x6e, 0x3c, 0x3c, - 0x6e, 0x9a, 0x5d, 0x3b, 0x60, 0x4c, 0x3c, 0x17, 0x08, 0x1b, 0x93, 0xb6, - 0x04, 0x02, 0x03, 0x03, 0x0c, 0x16, 0x3b, 0x4d, 0x60, 0x83, 0x2e, 0x5e, - 0x8d, 0x5e, 0x29, 0x65, 0x9d, 0x6b, 0x37, 0xda, 0xcc, 0xd1, 0xcd, 0x97, - 0x48, 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x1b, 0x2d, 0x3d, 0x23, - 0x94, 0xf9, 0xca, 0x01, 0xd5, 0x13, 0x3a, 0x1b, 0x20, 0x22, 0x22, 0x3d, - 0x2e, 0x1a, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x03, 0x08, 0x04, 0x5e, - 0x00, 0x16, 0x00, 0x41, 0x40, 0x0b, 0xb2, 0x03, 0xc2, 0x03, 0x02, 0x90, - 0x03, 0xa0, 0x03, 0x02, 0x03, 0xb8, 0xff, 0xc0, 0x40, 0x1b, 0x07, 0x0b, - 0x48, 0x03, 0x03, 0x18, 0x30, 0x18, 0x50, 0x18, 0x80, 0x18, 0x03, 0x11, - 0x0d, 0x47, 0x0e, 0x54, 0x17, 0x0f, 0x0f, 0x0d, 0x15, 0x12, 0x07, 0x00, - 0x10, 0x00, 0x3f, 0xc1, 0x33, 0x3f, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x32, 0x16, - 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, - 0x33, 0x17, 0x33, 0x3e, 0x03, 0x02, 0x89, 0x1d, 0x48, 0x1a, 0x18, 0x1c, - 0x3b, 0x1a, 0x3f, 0x68, 0x4b, 0x29, 0xb6, 0x94, 0x16, 0x08, 0x19, 0x39, - 0x47, 0x58, 0x04, 0x5e, 0x05, 0x05, 0xa8, 0x05, 0x07, 0x33, 0x5f, 0x85, - 0x51, 0xfd, 0xb0, 0x04, 0x4a, 0xc9, 0x2b, 0x50, 0x3d, 0x25, 0x00, 0x01, - 0x00, 0x5a, 0xff, 0xec, 0x03, 0x3f, 0x04, 0x5e, 0x00, 0x35, 0x00, 0x48, - 0x40, 0x2d, 0x25, 0x13, 0x47, 0x90, 0x00, 0xa0, 0x00, 0x02, 0x00, 0x57, - 0x37, 0x3f, 0x37, 0x5f, 0x37, 0x9f, 0x37, 0x03, 0x10, 0x37, 0x01, 0x2c, - 0x47, 0x09, 0x9f, 0x1d, 0xaf, 0x1d, 0x02, 0x1d, 0x56, 0x36, 0x26, 0x29, - 0x50, 0x13, 0x2c, 0x05, 0x22, 0x10, 0x09, 0x0e, 0x50, 0x05, 0x16, 0x00, - 0x3f, 0xe1, 0x32, 0x3f, 0x12, 0x39, 0x39, 0xe1, 0x32, 0x01, 0x10, 0xf6, - 0x5d, 0x32, 0xe1, 0x5d, 0x5d, 0x10, 0xf6, 0x5d, 0xe1, 0x33, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, - 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x03, 0x35, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x03, 0x3f, 0x3a, 0x6d, 0x9a, - 0x60, 0x6d, 0x9c, 0x3b, 0x1f, 0x4c, 0x54, 0x59, 0x2c, 0x41, 0x5b, 0x39, - 0x1a, 0x14, 0x35, 0x5c, 0x48, 0x48, 0x73, 0x50, 0x2b, 0x37, 0x64, 0x8c, - 0x56, 0x61, 0xa1, 0x48, 0x3f, 0x41, 0x89, 0x47, 0x66, 0x62, 0x17, 0x38, - 0x5e, 0x46, 0x48, 0x71, 0x50, 0x2a, 0x01, 0x2d, 0x50, 0x78, 0x51, 0x28, - 0x23, 0x22, 0xa6, 0x10, 0x1f, 0x18, 0x0f, 0x16, 0x29, 0x3b, 0x24, 0x1f, - 0x32, 0x31, 0x32, 0x1f, 0x1f, 0x3c, 0x4a, 0x61, 0x43, 0x46, 0x6d, 0x4a, - 0x26, 0x2a, 0x22, 0x93, 0x1d, 0x2b, 0x43, 0x3e, 0x23, 0x34, 0x2e, 0x2f, - 0x1d, 0x1e, 0x3c, 0x4b, 0x60, 0x00, 0x00, 0x01, 0x00, 0x21, 0xff, 0xec, - 0x02, 0x8f, 0x05, 0x46, 0x00, 0x1d, 0x00, 0x50, 0xb1, 0x19, 0x05, 0xb8, - 0xff, 0xc0, 0x40, 0x2f, 0x08, 0x0b, 0x48, 0x05, 0x05, 0x1f, 0x3f, 0x1f, - 0x4f, 0x1f, 0x02, 0x17, 0x1b, 0x47, 0x14, 0x1f, 0x12, 0x2f, 0x12, 0x02, - 0x12, 0x00, 0x10, 0x10, 0x10, 0x20, 0x10, 0xb0, 0x10, 0xc0, 0x10, 0xd0, - 0x10, 0x06, 0x06, 0x10, 0x1a, 0x12, 0x4f, 0x16, 0x14, 0x17, 0x0f, 0x00, - 0x50, 0x0b, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x01, - 0x2f, 0x5e, 0x5d, 0xc6, 0x5d, 0x33, 0xe1, 0x32, 0x5d, 0x11, 0x33, 0x2f, - 0x2b, 0x33, 0x31, 0x30, 0x25, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x23, 0x35, 0x37, 0x37, 0x33, 0x15, - 0x21, 0x15, 0x21, 0x11, 0x14, 0x16, 0x01, 0xfa, 0x12, 0x2d, 0x2a, 0x23, - 0x09, 0x0d, 0x28, 0x30, 0x34, 0x19, 0x3e, 0x6a, 0x4d, 0x2c, 0x9b, 0x9b, - 0x4e, 0x69, 0x01, 0x14, 0xfe, 0xec, 0x3f, 0x81, 0x04, 0x06, 0x08, 0x03, - 0x8a, 0x06, 0x0c, 0x09, 0x05, 0x20, 0x4e, 0x85, 0x65, 0x02, 0x7d, 0x51, - 0x4e, 0xe6, 0xfc, 0x89, 0xfd, 0x83, 0x61, 0x62, 0x00, 0x01, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x08, 0x04, 0x4a, 0x00, 0x1a, 0x00, 0x30, 0x40, 0x1c, - 0x01, 0x17, 0x47, 0x1a, 0x55, 0x1c, 0x10, 0x1c, 0x60, 0x1c, 0x80, 0x1c, - 0x03, 0x0f, 0x47, 0x0c, 0x54, 0x1b, 0x18, 0x0d, 0x0f, 0x12, 0x50, 0x02, - 0x07, 0x16, 0x00, 0x15, 0x00, 0x3f, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x21, 0x27, - 0x23, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, - 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x03, 0x75, 0x1b, - 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, 0x5b, 0x8a, 0x5c, 0x2f, 0xb6, 0x6a, - 0x6f, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x93, 0x2b, 0x3f, 0x29, 0x14, 0x2e, - 0x62, 0x98, 0x69, 0x02, 0xcd, 0xfd, 0x3d, 0x82, 0x82, 0x34, 0x65, 0x94, - 0x60, 0x02, 0x3a, 0xfb, 0xb6, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x03, 0xd5, 0x04, 0x4a, 0x00, 0x11, 0x00, 0x6d, 0xb9, 0x00, 0x11, 0xff, - 0xf8, 0x40, 0x0f, 0x0a, 0x0e, 0x48, 0x11, 0x00, 0x08, 0x0a, 0x0e, 0x48, - 0x00, 0x09, 0x09, 0x01, 0x0f, 0x10, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, - 0x48, 0x10, 0xb8, 0xff, 0xc0, 0x40, 0x1c, 0x07, 0x0b, 0x48, 0x10, 0x10, - 0x10, 0x10, 0x13, 0xbf, 0x13, 0xcf, 0x13, 0xef, 0x13, 0x03, 0x50, 0x13, - 0x01, 0x0f, 0x13, 0x2f, 0x13, 0x4f, 0x13, 0x03, 0x07, 0x02, 0x01, 0xb8, - 0xff, 0xf0, 0x40, 0x0a, 0x01, 0x47, 0x09, 0x01, 0x09, 0x0f, 0x01, 0x0f, - 0x00, 0x15, 0x00, 0x3f, 0x3f, 0x33, 0x39, 0x5d, 0x01, 0x2f, 0x38, 0xc1, - 0x5e, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x2b, 0xc1, 0x12, - 0x39, 0x3d, 0x2f, 0x33, 0x2b, 0x33, 0x2b, 0x31, 0x30, 0x21, 0x01, 0x33, - 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x01, 0x01, - 0x77, 0xfe, 0x89, 0xbc, 0xc7, 0x0b, 0x1e, 0x1e, 0x19, 0x04, 0x07, 0x05, - 0x18, 0x1e, 0x1e, 0x0b, 0xc7, 0xbc, 0xfe, 0x89, 0x04, 0x4a, 0xfd, 0x9d, - 0x21, 0x68, 0x6c, 0x60, 0x19, 0x19, 0x60, 0x6c, 0x68, 0x21, 0x02, 0x63, - 0xfb, 0xb6, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x05, 0xe3, 0x04, 0x4a, - 0x00, 0x2f, 0x00, 0xc3, 0xb9, 0x00, 0x2f, 0xff, 0xf8, 0x40, 0x0c, 0x0a, - 0x0e, 0x48, 0x2f, 0x00, 0x08, 0x09, 0x0e, 0x48, 0x00, 0x27, 0x20, 0xb8, - 0xff, 0xf8, 0x40, 0x12, 0x09, 0x0e, 0x48, 0x20, 0x1f, 0x08, 0x09, 0x0e, - 0x48, 0x1f, 0x09, 0x10, 0x08, 0x0a, 0x0e, 0x48, 0x10, 0x0f, 0xb8, 0xff, - 0xf8, 0x40, 0x09, 0x09, 0x0e, 0x48, 0x0f, 0x18, 0x54, 0x27, 0x01, 0x27, - 0xb8, 0xff, 0xe0, 0x40, 0x15, 0x07, 0x0a, 0x48, 0x5b, 0x18, 0x01, 0x18, - 0x20, 0x07, 0x0a, 0x48, 0x27, 0x09, 0x18, 0x18, 0x09, 0x27, 0x03, 0x11, - 0x2d, 0x2e, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x2e, 0xb8, 0xff, - 0xc0, 0x40, 0x13, 0x07, 0x0b, 0x48, 0x2e, 0x10, 0x2e, 0x2e, 0x31, 0x20, - 0x31, 0x30, 0x31, 0x02, 0x0f, 0x31, 0x01, 0x07, 0x12, 0x11, 0xb8, 0xff, - 0xf0, 0x40, 0x16, 0x11, 0x2d, 0x1f, 0x09, 0x09, 0x01, 0x09, 0x11, 0x0f, - 0x27, 0x19, 0x06, 0x19, 0x66, 0x19, 0x76, 0x19, 0x03, 0x19, 0x00, 0x10, - 0x15, 0x00, 0x3f, 0x33, 0x33, 0x5d, 0x11, 0x33, 0x3f, 0x33, 0x5d, 0x33, - 0x33, 0x01, 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x38, - 0x2b, 0x2b, 0x33, 0x12, 0x17, 0x39, 0x3d, 0x2f, 0x2f, 0x2f, 0x2b, 0x5d, - 0x2b, 0x5d, 0x11, 0x33, 0x2b, 0x33, 0x2b, 0x11, 0x33, 0x2b, 0x33, 0x2b, - 0x11, 0x33, 0x2b, 0x33, 0x2b, 0x31, 0x30, 0x21, 0x03, 0x2e, 0x03, 0x27, - 0x26, 0x27, 0x23, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x23, 0x01, 0x33, - 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x13, 0x1e, - 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x01, 0x03, 0xf0, 0xa8, - 0x04, 0x0c, 0x0c, 0x0d, 0x06, 0x0e, 0x0f, 0x06, 0x0e, 0x0d, 0x0b, 0x19, - 0x0b, 0xac, 0xd3, 0xfe, 0xe7, 0xbf, 0x83, 0x0a, 0x14, 0x12, 0x0e, 0x04, - 0x06, 0x05, 0x11, 0x15, 0x16, 0x0a, 0xb3, 0xc4, 0xac, 0x09, 0x17, 0x16, - 0x12, 0x04, 0x06, 0x03, 0x0d, 0x12, 0x15, 0x0b, 0x89, 0xba, 0xfe, 0xe4, - 0x02, 0x68, 0x12, 0x2d, 0x32, 0x34, 0x19, 0x3a, 0x3e, 0x3f, 0x3a, 0x32, - 0x6a, 0x25, 0xfd, 0x9c, 0x04, 0x4a, 0xfd, 0xb8, 0x2d, 0x69, 0x67, 0x5b, - 0x1d, 0x1a, 0x57, 0x61, 0x5f, 0x21, 0x02, 0x6b, 0xfd, 0x95, 0x22, 0x5c, - 0x5f, 0x58, 0x1d, 0x1a, 0x57, 0x68, 0x6d, 0x2f, 0x02, 0x48, 0xfb, 0xb6, - 0x00, 0x01, 0x00, 0x23, 0x00, 0x00, 0x03, 0xdb, 0x04, 0x4a, 0x00, 0x0b, - 0x00, 0xe5, 0x40, 0xa1, 0x89, 0x09, 0x01, 0x86, 0x03, 0x01, 0x06, 0x04, - 0x01, 0xf7, 0x04, 0x01, 0xe5, 0x04, 0x01, 0x36, 0x04, 0x01, 0x04, 0x05, - 0xe8, 0x06, 0x01, 0x06, 0x03, 0xe7, 0x00, 0x01, 0x00, 0x09, 0x09, 0x02, - 0x01, 0xf8, 0x02, 0x01, 0xea, 0x02, 0x01, 0x39, 0x02, 0x01, 0x02, 0x01, - 0x6b, 0x05, 0x7b, 0x05, 0x02, 0x57, 0x05, 0x01, 0x3a, 0x05, 0x4a, 0x05, - 0x02, 0x64, 0x01, 0x74, 0x01, 0x02, 0x58, 0x01, 0x01, 0x35, 0x01, 0x45, - 0x01, 0x02, 0x05, 0x01, 0x09, 0x01, 0x09, 0x05, 0x03, 0x0b, 0x06, 0x08, - 0x01, 0xf7, 0x08, 0x01, 0xe5, 0x08, 0x01, 0x36, 0x08, 0x01, 0x08, 0x07, - 0x40, 0x16, 0x19, 0x48, 0x07, 0x40, 0x0e, 0x11, 0x48, 0x6b, 0x07, 0x7b, - 0x07, 0x02, 0x57, 0x07, 0x01, 0x3a, 0x07, 0x4a, 0x07, 0x02, 0x07, 0x0d, - 0x10, 0x0d, 0x30, 0x0d, 0x02, 0x90, 0x0d, 0xb0, 0x0d, 0x02, 0x0f, 0x0d, - 0x01, 0x06, 0xd9, 0x0a, 0x01, 0xc8, 0x0a, 0x01, 0xba, 0x0a, 0x01, 0x09, - 0x0a, 0x01, 0x0a, 0x3b, 0x0b, 0x4b, 0x0b, 0x02, 0x28, 0x0b, 0x01, 0x05, - 0x0b, 0x15, 0x0b, 0x02, 0x0b, 0x07, 0x15, 0x01, 0x0f, 0x00, 0x3f, 0x3f, - 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0xc1, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, - 0x5d, 0x71, 0x10, 0xde, 0x5d, 0x5d, 0x5d, 0x2b, 0x2b, 0xc1, 0x5d, 0x5d, - 0x5d, 0x71, 0x12, 0x17, 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x2f, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x33, - 0x5d, 0x33, 0x33, 0x5d, 0x10, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x31, 0x30, - 0x00, 0x5d, 0x5d, 0x01, 0x01, 0x33, 0x13, 0x13, 0x33, 0x01, 0x01, 0x23, - 0x01, 0x01, 0x23, 0x01, 0x98, 0xfe, 0x9f, 0xcf, 0xfa, 0xfa, 0xcf, 0xfe, - 0x9d, 0x01, 0x75, 0xcf, 0xfe, 0xf4, 0xfe, 0xf2, 0xcf, 0x02, 0x33, 0x02, - 0x17, 0xfe, 0x66, 0x01, 0x9a, 0xfd, 0xe9, 0xfd, 0xcd, 0x01, 0xb4, 0xfe, - 0x4c, 0x00, 0x00, 0x01, 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, 0x04, 0x4a, - 0x00, 0x22, 0x00, 0x64, 0xb6, 0x22, 0x10, 0x08, 0x08, 0x00, 0x0e, 0x0f, - 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x0f, 0xb8, 0xff, 0xc0, 0x40, - 0x1d, 0x07, 0x0b, 0x48, 0x0f, 0x10, 0x0f, 0x0f, 0x24, 0xbf, 0x24, 0xcf, - 0x24, 0xef, 0x24, 0x03, 0x50, 0x24, 0x01, 0x0f, 0x24, 0x2f, 0x24, 0x4f, - 0x24, 0x03, 0x07, 0x18, 0x01, 0x00, 0xb8, 0xff, 0xf0, 0x40, 0x0c, 0x00, - 0x22, 0x10, 0x08, 0x23, 0x1c, 0x50, 0x15, 0x1b, 0x0e, 0x00, 0x0f, 0x00, - 0x3f, 0x32, 0x3f, 0xe1, 0x11, 0x33, 0x33, 0x33, 0x01, 0x2f, 0x38, 0xc1, - 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x2b, 0xc1, - 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, 0x13, 0x33, 0x13, 0x1e, - 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x01, 0x0e, 0x03, 0x23, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x37, - 0x0a, 0xbd, 0xd7, 0x0e, 0x1d, 0x19, 0x12, 0x04, 0x06, 0x05, 0x16, 0x1b, - 0x1d, 0x0b, 0xc7, 0xbc, 0xfe, 0x4e, 0x1c, 0x41, 0x56, 0x74, 0x50, 0x34, - 0x4c, 0x1b, 0x15, 0x40, 0x23, 0x30, 0x46, 0x34, 0x25, 0x0f, 0x39, 0x04, - 0x4a, 0xfd, 0x9b, 0x28, 0x58, 0x58, 0x52, 0x23, 0x19, 0x56, 0x61, 0x5e, - 0x21, 0x02, 0x63, 0xfb, 0x27, 0x51, 0x81, 0x5a, 0x31, 0x0b, 0x06, 0x91, - 0x05, 0x07, 0x17, 0x2c, 0x40, 0x29, 0xa0, 0x00, 0x00, 0x01, 0x00, 0x52, - 0x00, 0x00, 0x03, 0x35, 0x04, 0x4a, 0x00, 0x09, 0x00, 0x6c, 0x40, 0x0b, - 0x09, 0x97, 0x03, 0x01, 0x03, 0x08, 0x09, 0x0d, 0x48, 0x03, 0x07, 0xb8, - 0xff, 0xc0, 0x40, 0x11, 0x07, 0x0a, 0x48, 0x07, 0x07, 0x0b, 0x3f, 0x0b, - 0x5f, 0x0b, 0x7f, 0x0b, 0x03, 0x98, 0x08, 0x01, 0x08, 0xb8, 0xff, 0xf8, - 0xb5, 0x09, 0x0d, 0x48, 0x08, 0x04, 0x02, 0xb8, 0xff, 0xc0, 0xb7, 0x12, - 0x15, 0x48, 0x3f, 0x02, 0x01, 0x02, 0x07, 0xb8, 0xff, 0xf0, 0x40, 0x12, - 0x07, 0x0c, 0x48, 0x07, 0x04, 0x4f, 0x05, 0x0f, 0x02, 0x10, 0x07, 0x0c, - 0x48, 0x02, 0x08, 0x4f, 0x01, 0x15, 0x00, 0x3f, 0xe1, 0x32, 0x2b, 0x3f, - 0xe1, 0x32, 0x2b, 0x01, 0x2f, 0x5d, 0x2b, 0x33, 0x33, 0x2b, 0x5d, 0x5d, - 0x11, 0x33, 0x2f, 0x2b, 0x33, 0x2b, 0x5d, 0x33, 0x31, 0x30, 0x21, 0x21, - 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x21, 0x03, 0x35, 0xfd, 0x1d, - 0x02, 0x18, 0xfe, 0x09, 0x02, 0xb0, 0xfd, 0xf4, 0x02, 0x1e, 0x7d, 0x03, - 0x44, 0x89, 0x92, 0xfc, 0xd1, 0x00, 0x00, 0x01, 0x00, 0x3d, 0xfe, 0xbc, - 0x02, 0xa2, 0x05, 0xb6, 0x00, 0x27, 0x00, 0x40, 0x40, 0x25, 0x1a, 0x05, - 0x05, 0xf7, 0x20, 0x27, 0xf1, 0x23, 0x13, 0x0f, 0xf6, 0x10, 0x0c, 0x01, - 0x0c, 0x23, 0x0f, 0xf5, 0xd9, 0x10, 0x01, 0x0f, 0x10, 0x5f, 0x10, 0x02, - 0x10, 0x10, 0x29, 0x1a, 0xf5, 0x19, 0xf8, 0x05, 0xf5, 0x06, 0xf9, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0xe1, 0x39, 0x01, - 0x2f, 0x5d, 0xe6, 0x33, 0x33, 0xf1, 0x32, 0xe2, 0x2f, 0x32, 0x31, 0x30, - 0x05, 0x14, 0x1e, 0x02, 0x17, 0x15, 0x2e, 0x03, 0x35, 0x11, 0x34, 0x26, - 0x23, 0x35, 0x32, 0x36, 0x35, 0x11, 0x34, 0x3e, 0x02, 0x37, 0x15, 0x0e, - 0x03, 0x15, 0x11, 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x01, 0xf4, - 0x18, 0x2d, 0x41, 0x28, 0x4d, 0x83, 0x5f, 0x36, 0x83, 0x7d, 0x7d, 0x83, - 0x36, 0x5f, 0x83, 0x4d, 0x28, 0x41, 0x2d, 0x18, 0x77, 0x73, 0x73, 0x77, - 0x10, 0x30, 0x3d, 0x23, 0x0d, 0x01, 0x96, 0x01, 0x21, 0x47, 0x6e, 0x4e, - 0x01, 0x4e, 0x67, 0x56, 0x9b, 0x56, 0x67, 0x01, 0x4d, 0x4e, 0x6e, 0x47, - 0x21, 0x01, 0x95, 0x01, 0x0d, 0x23, 0x3d, 0x30, 0xfe, 0xb4, 0x69, 0x7b, - 0x14, 0x0c, 0x14, 0x7a, 0x6a, 0x00, 0x00, 0x01, 0x01, 0xe9, 0xfe, 0x14, - 0x02, 0x7f, 0x06, 0x14, 0x00, 0x03, 0x00, 0x2d, 0x40, 0x1f, 0x00, 0x05, - 0x01, 0x30, 0x05, 0x40, 0x05, 0x70, 0x05, 0x80, 0x05, 0x04, 0x02, 0xaa, - 0x00, 0x03, 0x10, 0x03, 0x40, 0x03, 0x80, 0x03, 0xc0, 0x03, 0x05, 0x07, - 0x03, 0x02, 0x1b, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x01, 0x2f, 0x5e, 0x5d, - 0xe1, 0x5d, 0x71, 0x31, 0x30, 0x01, 0x33, 0x11, 0x23, 0x01, 0xe9, 0x96, - 0x96, 0x06, 0x14, 0xf8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x33, 0xfe, 0xbc, - 0x02, 0x98, 0x05, 0xb6, 0x00, 0x29, 0x00, 0x40, 0x40, 0x25, 0x0d, 0x24, - 0x24, 0xf7, 0x07, 0x00, 0xf1, 0x1a, 0xf6, 0x14, 0x03, 0x90, 0x1d, 0x01, - 0x1d, 0x04, 0x1a, 0xf5, 0xef, 0x19, 0xff, 0x19, 0x02, 0xd9, 0x19, 0x01, - 0x19, 0x19, 0x0e, 0x24, 0xf5, 0x23, 0xf9, 0x0d, 0xf5, 0x0e, 0xf8, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0xe1, 0x39, 0x01, - 0x2f, 0x5d, 0x33, 0x33, 0xe6, 0xf1, 0x32, 0xe2, 0x2f, 0x32, 0x31, 0x30, - 0x13, 0x34, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x11, 0x34, 0x2e, 0x02, - 0x27, 0x35, 0x1e, 0x03, 0x15, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x15, 0x22, - 0x06, 0x15, 0x11, 0x14, 0x0e, 0x02, 0x07, 0x35, 0x3e, 0x03, 0x35, 0xe1, - 0x77, 0x73, 0x73, 0x77, 0x18, 0x2d, 0x41, 0x28, 0x4d, 0x83, 0x5f, 0x36, - 0x21, 0x41, 0x60, 0x3e, 0x7d, 0x83, 0x36, 0x5f, 0x83, 0x4d, 0x28, 0x41, - 0x2d, 0x18, 0x01, 0x3b, 0x6a, 0x7a, 0x14, 0x0c, 0x14, 0x7b, 0x69, 0x01, - 0x4c, 0x30, 0x3d, 0x23, 0x0d, 0x01, 0x95, 0x01, 0x21, 0x47, 0x6e, 0x4e, - 0xfe, 0xb3, 0x34, 0x48, 0x2d, 0x14, 0x9b, 0x56, 0x67, 0xfe, 0xb2, 0x4e, - 0x6e, 0x47, 0x21, 0x01, 0x96, 0x01, 0x0d, 0x23, 0x3d, 0x30, 0x00, 0x01, - 0x00, 0x66, 0x02, 0x4a, 0x04, 0x02, 0x03, 0x5a, 0x00, 0x23, 0x00, 0x3c, - 0x40, 0x0d, 0x1d, 0x25, 0x10, 0x25, 0x01, 0x10, 0x0a, 0x01, 0x0a, 0x17, - 0xad, 0x0a, 0x1f, 0xb8, 0xff, 0xc0, 0x40, 0x16, 0x10, 0x13, 0x48, 0x1f, - 0x1f, 0x05, 0xad, 0x1c, 0x0f, 0x0d, 0x1f, 0x0d, 0x3f, 0x0d, 0x4f, 0x0d, - 0x6f, 0x0d, 0x8f, 0x0d, 0x06, 0x0d, 0x00, 0x2f, 0x5d, 0x33, 0xf1, 0xc8, - 0x2f, 0x2b, 0x32, 0xe1, 0x01, 0x2f, 0x5d, 0x5d, 0x10, 0xce, 0x31, 0x30, - 0x01, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x35, 0x36, 0x33, 0x32, - 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, - 0x23, 0x22, 0x2e, 0x02, 0x02, 0x12, 0x25, 0x37, 0x2d, 0x29, 0x16, 0x1c, - 0x3c, 0x3b, 0x38, 0x19, 0x64, 0x94, 0x1d, 0x32, 0x37, 0x43, 0x2f, 0x25, - 0x37, 0x2f, 0x28, 0x16, 0x1c, 0x3c, 0x3b, 0x38, 0x18, 0x63, 0x95, 0x1d, - 0x32, 0x37, 0x43, 0x02, 0x8b, 0x10, 0x16, 0x0d, 0x05, 0x13, 0x21, 0x2c, - 0x19, 0xa2, 0x6c, 0x05, 0x0d, 0x19, 0x14, 0x10, 0x16, 0x0d, 0x05, 0x13, - 0x21, 0x2c, 0x19, 0xa2, 0x6c, 0x05, 0x0d, 0x19, 0x00, 0x02, 0x00, 0x93, - 0xfe, 0x8b, 0x01, 0x91, 0x04, 0x5e, 0x00, 0x03, 0x00, 0x17, 0x00, 0x41, - 0xb9, 0x00, 0x00, 0xff, 0xf0, 0x40, 0x13, 0x0a, 0x14, 0x48, 0x30, 0x19, - 0xa0, 0x19, 0xb0, 0x19, 0xc0, 0x19, 0x04, 0x02, 0x04, 0x9a, 0x0e, 0x03, - 0x03, 0x0e, 0xb8, 0xff, 0xc0, 0x40, 0x0f, 0x07, 0x0a, 0x48, 0x0e, 0x00, - 0x09, 0x9b, 0x13, 0x00, 0x02, 0x10, 0x02, 0x02, 0x07, 0x02, 0x00, 0x2f, - 0x5e, 0x5d, 0x2f, 0xf5, 0xce, 0x01, 0x2f, 0x2b, 0x33, 0x2f, 0x10, 0xe1, - 0x32, 0x5d, 0x31, 0x30, 0x2b, 0x13, 0x33, 0x13, 0x23, 0x13, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0xd5, 0x79, 0x33, 0xdf, 0xef, 0x13, 0x23, 0x2e, 0x1b, 0x1a, 0x2e, - 0x23, 0x14, 0x14, 0x23, 0x2e, 0x1a, 0x1b, 0x2e, 0x23, 0x13, 0x02, 0xa4, - 0xfb, 0xe7, 0x05, 0x48, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, - 0x25, 0x34, 0x22, 0x10, 0x10, 0x22, 0x34, 0x00, 0x00, 0x01, 0x00, 0xbc, - 0xff, 0xec, 0x03, 0xba, 0x05, 0xcb, 0x00, 0x25, 0x00, 0x5a, 0x40, 0x25, - 0x12, 0x03, 0x46, 0x0f, 0x04, 0x04, 0x0a, 0x25, 0x15, 0x27, 0x40, 0x27, - 0x01, 0x1e, 0x48, 0x00, 0x0a, 0x30, 0x0a, 0x40, 0x0a, 0xd0, 0x0a, 0x04, - 0x06, 0x0a, 0x1b, 0x73, 0x0f, 0x12, 0x0f, 0x21, 0x73, 0x05, 0x02, 0x05, - 0x0f, 0xb8, 0xff, 0xc0, 0x40, 0x0c, 0x0f, 0x12, 0x48, 0x0f, 0x05, 0x0f, - 0x05, 0x03, 0x10, 0x07, 0x03, 0x19, 0x00, 0x3f, 0x3f, 0x12, 0x39, 0x39, - 0x2f, 0x2f, 0x2b, 0x11, 0x33, 0x10, 0xe1, 0x11, 0x33, 0x10, 0xe1, 0x01, - 0x2f, 0x5e, 0x5d, 0xe1, 0x5d, 0x10, 0xc6, 0x32, 0x11, 0x39, 0x2f, 0x33, - 0xe1, 0x32, 0x31, 0x30, 0x24, 0x06, 0x07, 0x15, 0x23, 0x35, 0x2e, 0x03, - 0x35, 0x34, 0x3e, 0x02, 0x37, 0x35, 0x33, 0x15, 0x16, 0x16, 0x17, 0x07, - 0x2e, 0x03, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x15, 0x03, 0x76, 0x6e, 0x4c, 0x89, 0x57, 0x8a, 0x62, 0x34, 0x35, 0x61, - 0x8b, 0x56, 0x89, 0x48, 0x88, 0x2e, 0x35, 0x17, 0x38, 0x3c, 0x3b, 0x19, - 0x9d, 0x90, 0x91, 0x94, 0x51, 0x83, 0x36, 0xd4, 0x1e, 0x02, 0xc8, 0xce, - 0x0d, 0x4b, 0x85, 0xc7, 0x89, 0x8d, 0xcb, 0x88, 0x4b, 0x0d, 0xac, 0xa4, - 0x03, 0x21, 0x17, 0x9a, 0x0a, 0x13, 0x0f, 0x09, 0xca, 0xd4, 0xd2, 0xc3, - 0x25, 0x18, 0xa1, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x04, 0x23, - 0x05, 0xc9, 0x00, 0x28, 0x00, 0x75, 0x40, 0x11, 0x0d, 0x11, 0x6f, 0x23, - 0x0f, 0x0f, 0x1f, 0x0f, 0x02, 0x07, 0x1f, 0x0f, 0x1f, 0x0f, 0x19, 0x03, - 0x17, 0xb8, 0xff, 0xc0, 0xb3, 0x0a, 0x0e, 0x48, 0x17, 0xb8, 0xff, 0xc8, - 0x40, 0x30, 0x06, 0x09, 0x48, 0x17, 0x17, 0x2a, 0x10, 0x2a, 0x01, 0x21, - 0x19, 0x40, 0x0b, 0x0e, 0x48, 0x19, 0x19, 0x29, 0x10, 0x21, 0x75, 0x0d, - 0x2f, 0x22, 0x7f, 0x22, 0x8f, 0x22, 0xaf, 0x22, 0xbf, 0x22, 0xdf, 0x22, - 0xff, 0x22, 0x07, 0x22, 0x22, 0x00, 0x16, 0x74, 0x19, 0x18, 0x07, 0x73, - 0x00, 0x07, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x33, - 0xe1, 0x32, 0x11, 0x01, 0x33, 0x2f, 0x2b, 0x33, 0x5d, 0x11, 0x33, 0x2f, - 0x2b, 0x2b, 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x33, 0xe1, - 0x32, 0x31, 0x30, 0x01, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, - 0x0e, 0x02, 0x15, 0x11, 0x21, 0x15, 0x21, 0x15, 0x14, 0x0e, 0x02, 0x07, - 0x21, 0x15, 0x21, 0x35, 0x3e, 0x03, 0x35, 0x35, 0x23, 0x35, 0x33, 0x11, - 0x34, 0x3e, 0x02, 0x02, 0x9a, 0x6a, 0xae, 0x42, 0x42, 0x38, 0x8d, 0x4b, - 0x30, 0x52, 0x3c, 0x21, 0x01, 0x78, 0xfe, 0x88, 0x17, 0x27, 0x33, 0x1b, - 0x02, 0xec, 0xfc, 0x21, 0x2c, 0x49, 0x35, 0x1e, 0xc6, 0xc6, 0x3b, 0x69, - 0x92, 0x05, 0xc9, 0x2d, 0x23, 0x90, 0x1d, 0x2b, 0x1b, 0x3b, 0x5e, 0x42, - 0xfe, 0xd9, 0x89, 0xd3, 0x3e, 0x59, 0x40, 0x2b, 0x10, 0xa6, 0x9a, 0x0b, - 0x29, 0x44, 0x61, 0x43, 0xd5, 0x89, 0x01, 0x44, 0x57, 0x89, 0x5f, 0x32, - 0x00, 0x02, 0x00, 0x7b, 0x01, 0x1d, 0x03, 0xec, 0x04, 0x8b, 0x00, 0x23, - 0x00, 0x37, 0x00, 0x86, 0x40, 0x23, 0x0e, 0x8f, 0x16, 0x01, 0x16, 0x16, - 0x2e, 0xab, 0x15, 0x0f, 0x0c, 0x18, 0x06, 0x1e, 0x21, 0x03, 0x08, 0x00, - 0x70, 0x12, 0x01, 0x12, 0x12, 0x39, 0x10, 0x39, 0x01, 0x04, 0x20, 0x24, - 0xaa, 0x80, 0x00, 0x01, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x31, 0x06, 0x0a, - 0x48, 0x00, 0x00, 0x38, 0x17, 0x80, 0x1f, 0x01, 0x1f, 0x0c, 0x06, 0x18, - 0x1e, 0x0f, 0x06, 0x04, 0x09, 0x29, 0xae, 0x00, 0x1b, 0x01, 0x1b, 0x0d, - 0x05, 0x33, 0xae, 0xcf, 0x09, 0xef, 0x09, 0x02, 0x90, 0x09, 0xa0, 0x09, - 0xb0, 0x09, 0x03, 0x1f, 0x09, 0x3f, 0x09, 0x6f, 0x09, 0x03, 0x09, 0x00, - 0x2f, 0x5d, 0x5d, 0x5d, 0xe1, 0xc6, 0x32, 0x2f, 0x5d, 0xe1, 0x12, 0x17, - 0x39, 0x11, 0x33, 0xc6, 0x5d, 0x32, 0x11, 0x01, 0x33, 0x2f, 0x2b, 0x5d, - 0xe1, 0xc6, 0x32, 0x5d, 0x11, 0x33, 0x2f, 0x5d, 0x12, 0x17, 0x39, 0xf1, - 0xc0, 0x2f, 0x5d, 0x32, 0x31, 0x30, 0x13, 0x34, 0x36, 0x37, 0x27, 0x37, - 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x07, 0x27, 0x37, 0x26, 0x26, 0x37, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0xba, 0x23, - 0x1f, 0x81, 0x62, 0x7f, 0x2f, 0x6c, 0x3c, 0x3c, 0x6b, 0x2e, 0x81, 0x63, - 0x82, 0x1f, 0x25, 0x23, 0x21, 0x7f, 0x60, 0x81, 0x2e, 0x6b, 0x3c, 0x3c, - 0x6e, 0x2d, 0x7f, 0x60, 0x7f, 0x1f, 0x23, 0x8a, 0x25, 0x41, 0x57, 0x32, - 0x33, 0x59, 0x42, 0x26, 0x26, 0x42, 0x59, 0x33, 0x32, 0x57, 0x41, 0x25, - 0x02, 0xd3, 0x3b, 0x6b, 0x2f, 0x81, 0x62, 0x81, 0x20, 0x24, 0x24, 0x20, - 0x81, 0x60, 0x81, 0x2e, 0x6d, 0x3c, 0x3c, 0x6e, 0x2d, 0x7f, 0x60, 0x7f, - 0x1f, 0x23, 0x24, 0x20, 0x7f, 0x60, 0x7f, 0x2d, 0x6c, 0x3c, 0x32, 0x57, - 0x41, 0x26, 0x26, 0x41, 0x57, 0x32, 0x33, 0x59, 0x42, 0x26, 0x26, 0x42, - 0x59, 0x00, 0x00, 0x01, 0x00, 0x1d, 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb6, - 0x00, 0x16, 0x00, 0x95, 0x40, 0x5b, 0x30, 0x18, 0x01, 0x0f, 0x13, 0x0c, - 0x16, 0xaa, 0x15, 0x01, 0x15, 0x15, 0x0c, 0x04, 0x08, 0x01, 0xab, 0x02, - 0x01, 0x1f, 0x02, 0x01, 0x02, 0x02, 0x98, 0x00, 0x01, 0x00, 0x07, 0x03, - 0x0b, 0x5a, 0x99, 0x14, 0x01, 0x14, 0x10, 0x0f, 0x0c, 0x01, 0x8a, 0x0c, - 0x01, 0x00, 0x0c, 0x10, 0x0c, 0x40, 0x0c, 0x03, 0x07, 0x0c, 0x0a, 0x0e, - 0x60, 0x0f, 0x07, 0x0f, 0x06, 0x12, 0x60, 0x13, 0x03, 0x00, 0x13, 0x7f, - 0x0f, 0x8f, 0x0f, 0x02, 0x30, 0x13, 0x01, 0xd0, 0x13, 0x01, 0x0f, 0x13, - 0x1f, 0x13, 0x02, 0x0f, 0x13, 0x0f, 0x13, 0x01, 0x0b, 0x12, 0x15, 0x01, - 0x03, 0x00, 0x3f, 0x33, 0x3f, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, - 0x71, 0x5d, 0x11, 0x33, 0x33, 0x10, 0xe1, 0x32, 0x11, 0x33, 0x10, 0xe1, - 0x32, 0x01, 0x2f, 0x5e, 0x5d, 0x5d, 0x71, 0x33, 0x33, 0x5d, 0xe1, 0x32, - 0x32, 0x39, 0x5d, 0x32, 0x2f, 0x5d, 0x5d, 0x33, 0x39, 0x39, 0x11, 0x33, - 0x2f, 0x5d, 0x33, 0x12, 0x39, 0x39, 0x5d, 0x31, 0x30, 0x01, 0x01, 0x33, - 0x01, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x21, - 0x35, 0x21, 0x35, 0x21, 0x35, 0x33, 0x01, 0x33, 0x02, 0x33, 0x01, 0x5a, - 0xbf, 0xfe, 0x7f, 0xef, 0xfe, 0xd3, 0x01, 0x2d, 0xfe, 0xd3, 0xb2, 0xfe, - 0xd3, 0x01, 0x2d, 0xfe, 0xd3, 0xea, 0xfe, 0x85, 0xc0, 0x02, 0xd3, 0x02, - 0xe3, 0xfd, 0x00, 0x89, 0x9e, 0x89, 0xfe, 0xfa, 0x01, 0x06, 0x89, 0x9e, - 0x89, 0x03, 0x00, 0x00, 0x00, 0x02, 0x01, 0xe9, 0xfe, 0x14, 0x02, 0x7f, - 0x06, 0x14, 0x00, 0x03, 0x00, 0x07, 0x00, 0x39, 0x40, 0x25, 0x00, 0x09, - 0x01, 0x30, 0x09, 0x40, 0x09, 0x70, 0x09, 0x80, 0x09, 0x04, 0x02, 0x06, - 0xaa, 0x03, 0x00, 0x07, 0x10, 0x07, 0x40, 0x07, 0x80, 0x07, 0xc0, 0x07, - 0x05, 0x07, 0x07, 0x04, 0x03, 0x04, 0x03, 0x06, 0x1b, 0x00, 0x00, 0x00, - 0x3f, 0x3f, 0x39, 0x39, 0x2f, 0x2f, 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0xe1, - 0x32, 0x5d, 0x71, 0x31, 0x30, 0x01, 0x33, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x23, 0x01, 0xe9, 0x96, 0x96, 0x96, 0x96, 0x06, 0x14, 0xfc, 0xf4, 0xfe, - 0x19, 0xfc, 0xf3, 0x00, 0x00, 0x02, 0x00, 0x79, 0xff, 0xf6, 0x03, 0x5e, - 0x06, 0x1f, 0x00, 0x45, 0x00, 0x5a, 0x00, 0x79, 0x40, 0x4b, 0x05, 0x56, - 0x08, 0x51, 0x46, 0x21, 0x26, 0x4c, 0x46, 0x3c, 0x46, 0x29, 0x29, 0x10, - 0xff, 0x21, 0x01, 0xa0, 0x21, 0xb0, 0x21, 0x02, 0x21, 0x5c, 0xc0, 0x5c, - 0x01, 0xbf, 0x5c, 0x01, 0x46, 0x46, 0x00, 0x17, 0x46, 0x08, 0x08, 0x31, - 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0x00, 0x30, 0x00, 0xc0, 0x00, 0xd0, - 0x00, 0xf0, 0x00, 0x06, 0x08, 0x00, 0x5b, 0x26, 0x4c, 0x05, 0x56, 0x17, - 0x56, 0x4c, 0x29, 0x04, 0x0d, 0x37, 0x50, 0x2e, 0x15, 0x14, 0x50, 0x0d, - 0x01, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x17, 0x39, 0x11, 0x33, 0x11, - 0x33, 0x01, 0x10, 0xc6, 0x5e, 0x5d, 0x71, 0x32, 0x32, 0x2f, 0xe1, 0x10, - 0xe1, 0x5d, 0x5d, 0x10, 0xce, 0x5d, 0x5d, 0x32, 0x32, 0x2f, 0xe1, 0x12, - 0x39, 0x39, 0x10, 0xe1, 0x11, 0x39, 0x39, 0x31, 0x30, 0x13, 0x34, 0x3e, - 0x02, 0x37, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, - 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, - 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x35, - 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x03, 0x37, 0x14, 0x1e, 0x02, 0x17, 0x17, - 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x0e, 0x03, 0x89, 0x1a, 0x2d, - 0x3a, 0x1f, 0x4b, 0x55, 0x37, 0x64, 0x8c, 0x56, 0x61, 0x9d, 0x48, 0x38, - 0x41, 0x8c, 0x47, 0x63, 0x66, 0x18, 0x39, 0x5f, 0x46, 0x48, 0x71, 0x4e, - 0x2a, 0x18, 0x29, 0x34, 0x1c, 0x45, 0x4c, 0x3b, 0x6c, 0x9b, 0x60, 0x6c, - 0x9c, 0x3b, 0x1f, 0x4c, 0x54, 0x59, 0x2b, 0x45, 0x5d, 0x37, 0x17, 0x11, - 0x33, 0x5e, 0x4c, 0x49, 0x73, 0x50, 0x29, 0x9a, 0x1c, 0x3f, 0x65, 0x48, - 0x23, 0x14, 0x29, 0x21, 0x15, 0x1a, 0x41, 0x6c, 0x52, 0x19, 0x2f, 0x26, - 0x17, 0x03, 0x29, 0x33, 0x53, 0x40, 0x2d, 0x0f, 0x26, 0x72, 0x54, 0x3d, - 0x62, 0x44, 0x25, 0x28, 0x20, 0x8b, 0x1c, 0x27, 0x3b, 0x39, 0x1b, 0x2e, - 0x2c, 0x2f, 0x1d, 0x1c, 0x41, 0x4e, 0x61, 0x3e, 0x34, 0x55, 0x44, 0x31, - 0x10, 0x26, 0x6d, 0x4e, 0x47, 0x6f, 0x4d, 0x28, 0x21, 0x20, 0x9e, 0x0f, - 0x1e, 0x17, 0x0e, 0x18, 0x27, 0x33, 0x1b, 0x1d, 0x2d, 0x2d, 0x31, 0x1f, - 0x1f, 0x3e, 0x4e, 0x64, 0x59, 0x25, 0x3f, 0x3a, 0x37, 0x1e, 0x0f, 0x0d, - 0x24, 0x2e, 0x38, 0x22, 0x26, 0x40, 0x3b, 0x39, 0x1e, 0x08, 0x1f, 0x2d, - 0x3a, 0x00, 0x00, 0x02, 0x01, 0x33, 0x05, 0x0c, 0x03, 0x6a, 0x05, 0xd9, - 0x00, 0x0b, 0x00, 0x19, 0x00, 0x35, 0x40, 0x21, 0x0c, 0x86, 0xaf, 0x14, - 0x01, 0x14, 0xc0, 0x06, 0x86, 0x00, 0x00, 0x10, 0x00, 0x40, 0x00, 0x50, - 0x00, 0x04, 0x06, 0x00, 0x0f, 0x03, 0x91, 0x17, 0x9f, 0x09, 0xcf, 0x09, - 0x02, 0x30, 0x09, 0x01, 0x09, 0x00, 0x2f, 0x5d, 0x5d, 0x33, 0xe5, 0x32, - 0x01, 0x2f, 0x5e, 0x5d, 0xe1, 0x1a, 0xdc, 0x5d, 0xe1, 0x31, 0x30, 0x01, - 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x25, - 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, - 0x01, 0x33, 0x38, 0x28, 0x27, 0x3a, 0x3a, 0x27, 0x28, 0x38, 0x01, 0x77, - 0x38, 0x28, 0x13, 0x23, 0x1a, 0x10, 0x3a, 0x26, 0x28, 0x38, 0x05, 0x73, - 0x36, 0x30, 0x31, 0x35, 0x35, 0x32, 0x32, 0x35, 0x36, 0x30, 0x0c, 0x19, - 0x26, 0x1b, 0x35, 0x32, 0x32, 0x00, 0x00, 0x03, 0x00, 0x64, 0xff, 0xec, - 0x06, 0x44, 0x05, 0xcb, 0x00, 0x25, 0x00, 0x41, 0x00, 0x55, 0x00, 0x6a, - 0x40, 0x43, 0x05, 0xc5, 0x1a, 0x0f, 0x0f, 0x22, 0x1a, 0x22, 0x1a, 0x22, - 0x26, 0x4c, 0xc3, 0x00, 0x34, 0x01, 0xc0, 0x34, 0x01, 0x34, 0x57, 0x42, - 0xc3, 0x26, 0x0a, 0xc9, 0x15, 0x00, 0xc9, 0x1f, 0x0f, 0x15, 0x1f, 0x15, - 0x2f, 0x15, 0x7f, 0x15, 0x8f, 0x15, 0x9f, 0x15, 0x06, 0x08, 0x00, 0x1f, - 0x10, 0x1f, 0x60, 0x1f, 0x70, 0x1f, 0x80, 0x1f, 0x05, 0x15, 0x1f, 0x15, - 0x1f, 0x2d, 0x47, 0xc8, 0x3b, 0x51, 0xc8, 0x2d, 0x04, 0x00, 0x3f, 0xe1, - 0x2f, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5e, 0x5d, 0x10, 0xe1, - 0x10, 0xe1, 0x01, 0x2f, 0xe1, 0x10, 0xde, 0x5d, 0x71, 0xe1, 0x11, 0x39, - 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x2f, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x22, - 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, - 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x16, 0x17, 0x07, 0x26, 0x26, 0x01, 0x34, 0x3e, 0x04, 0x33, 0x32, 0x1e, - 0x04, 0x15, 0x14, 0x0e, 0x04, 0x23, 0x22, 0x2e, 0x04, 0x37, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, - 0x02, 0x03, 0x7b, 0x3d, 0x5e, 0x40, 0x21, 0x1d, 0x3d, 0x5f, 0x43, 0x17, - 0x36, 0x39, 0x38, 0x19, 0x18, 0x31, 0x35, 0x3c, 0x23, 0x66, 0x98, 0x65, - 0x33, 0x36, 0x69, 0x99, 0x64, 0x3f, 0x84, 0x3b, 0x3e, 0x34, 0x61, 0xfc, - 0xbe, 0x36, 0x61, 0x8a, 0xa7, 0xc0, 0x68, 0x68, 0xc0, 0xa7, 0x8a, 0x61, - 0x36, 0x36, 0x61, 0x8a, 0xa7, 0xc0, 0x68, 0x68, 0xc0, 0xa7, 0x8a, 0x61, - 0x36, 0x6d, 0x65, 0xaf, 0xea, 0x85, 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, - 0xea, 0x85, 0x85, 0xea, 0xaf, 0x65, 0x04, 0x1d, 0x2c, 0x53, 0x78, 0x4b, - 0x4e, 0x78, 0x52, 0x2b, 0x07, 0x0c, 0x11, 0x09, 0x83, 0x0b, 0x12, 0x0e, - 0x07, 0x42, 0x7a, 0xaa, 0x67, 0x65, 0xa7, 0x78, 0x43, 0x21, 0x1d, 0x7f, - 0x1a, 0x1c, 0xfe, 0xbe, 0x68, 0xc0, 0xa7, 0x8a, 0x61, 0x36, 0x36, 0x61, - 0x8a, 0xa7, 0xc0, 0x68, 0x68, 0xc0, 0xa7, 0x89, 0x62, 0x35, 0x35, 0x62, - 0x89, 0xa7, 0xc0, 0x68, 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, 0xea, 0x85, - 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, 0xea, 0x00, 0x00, 0x02, 0x00, 0x44, - 0x03, 0x10, 0x02, 0x42, 0x05, 0xc7, 0x00, 0x1e, 0x00, 0x2d, 0x00, 0x4e, - 0x40, 0x2f, 0x2d, 0x01, 0x0f, 0xe0, 0x00, 0x1d, 0x10, 0x1d, 0x02, 0x1d, - 0x2f, 0x0f, 0x2f, 0x1f, 0x2f, 0x4f, 0x2f, 0x7f, 0x2f, 0xaf, 0x2f, 0x05, - 0x24, 0xe0, 0x0b, 0x17, 0x17, 0x60, 0x0b, 0x01, 0x0b, 0x2e, 0x2d, 0xe4, - 0x0f, 0x0f, 0x1a, 0x01, 0x27, 0xe4, 0x00, 0x06, 0xc0, 0x13, 0xe4, 0x1a, - 0xde, 0x00, 0x3f, 0xe1, 0x1a, 0xdc, 0xc4, 0xe1, 0x39, 0x11, 0x39, 0x2f, - 0xe1, 0x01, 0x10, 0xc6, 0x5d, 0x32, 0x2f, 0x10, 0xe1, 0x5d, 0x10, 0xd6, - 0x5d, 0xe1, 0x32, 0x32, 0x31, 0x30, 0x01, 0x27, 0x0e, 0x03, 0x23, 0x22, - 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x37, 0x35, 0x34, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x03, 0x0e, - 0x03, 0x15, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x01, 0xe7, - 0x1c, 0x12, 0x27, 0x2f, 0x38, 0x23, 0x2b, 0x48, 0x34, 0x1d, 0x8d, 0x8f, - 0x63, 0x3d, 0x38, 0x30, 0x5a, 0x2a, 0x30, 0x33, 0x75, 0x3c, 0x7d, 0x77, - 0xc9, 0x33, 0x44, 0x29, 0x12, 0x32, 0x2a, 0x22, 0x3a, 0x2b, 0x19, 0x03, - 0x1d, 0x52, 0x16, 0x23, 0x19, 0x0d, 0x1a, 0x33, 0x4d, 0x33, 0x66, 0x6c, - 0x05, 0x04, 0x1f, 0x48, 0x39, 0x1d, 0x16, 0x64, 0x1a, 0x24, 0x6a, 0x7a, - 0xfe, 0x3a, 0x01, 0x39, 0x03, 0x12, 0x1e, 0x2b, 0x1d, 0x33, 0x2d, 0x15, - 0x2c, 0x41, 0x2c, 0x31, 0x00, 0x02, 0x00, 0x52, 0x00, 0x73, 0x03, 0x93, - 0x03, 0xc7, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x60, 0x40, 0x11, 0x02, 0x04, - 0x0d, 0xeb, 0x0a, 0x50, 0x04, 0x60, 0x04, 0x02, 0x04, 0x0a, 0x04, 0x0a, - 0x06, 0x0b, 0x09, 0xb8, 0xff, 0xc0, 0x40, 0x21, 0x09, 0x0c, 0x48, 0x09, - 0x0f, 0x0f, 0x0f, 0x9f, 0x0f, 0xaf, 0x0f, 0x03, 0x06, 0xeb, 0x9f, 0x03, - 0x01, 0x03, 0x06, 0x00, 0x03, 0x0d, 0x07, 0x0a, 0x0a, 0x05, 0x03, 0x03, - 0x01, 0x0c, 0x05, 0x08, 0x01, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x12, 0x39, - 0x3d, 0x2f, 0x12, 0x39, 0x11, 0x33, 0x33, 0x11, 0x33, 0x33, 0x01, 0x18, - 0x2f, 0x5d, 0xe1, 0x5d, 0x10, 0xc6, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x2f, - 0x2f, 0x5d, 0x10, 0xe1, 0x11, 0x33, 0x31, 0x30, 0x13, 0x01, 0x17, 0x03, - 0x13, 0x07, 0x01, 0x25, 0x01, 0x17, 0x03, 0x13, 0x07, 0x01, 0x52, 0x01, - 0x35, 0x75, 0xee, 0xee, 0x75, 0xfe, 0xcb, 0x01, 0x97, 0x01, 0x36, 0x74, - 0xed, 0xed, 0x74, 0xfe, 0xca, 0x02, 0x29, 0x01, 0x9e, 0x4e, 0xfe, 0xa4, - 0xfe, 0xa4, 0x4e, 0x01, 0x9b, 0x1b, 0x01, 0x9e, 0x4e, 0xfe, 0xa4, 0xfe, - 0xa4, 0x4e, 0x01, 0x9b, 0x00, 0x01, 0x00, 0x66, 0x01, 0x06, 0x04, 0x02, - 0x03, 0x1d, 0x00, 0x05, 0x00, 0x39, 0x40, 0x24, 0x02, 0xaa, 0x01, 0x07, - 0x10, 0x07, 0x01, 0x96, 0x04, 0x01, 0x8b, 0x04, 0x01, 0x79, 0x04, 0x01, - 0x56, 0x04, 0x01, 0x4b, 0x04, 0x01, 0x38, 0x04, 0x01, 0x12, 0x04, 0x01, - 0x09, 0x04, 0x01, 0x04, 0x04, 0xad, 0x05, 0xb3, 0x00, 0x3f, 0xe1, 0x01, - 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xde, - 0xe1, 0x31, 0x30, 0x01, 0x11, 0x23, 0x11, 0x21, 0x35, 0x04, 0x02, 0x95, - 0xfc, 0xf9, 0x03, 0x1d, 0xfd, 0xe9, 0x01, 0x81, 0x96, 0x00, 0xff, 0xff, - 0x00, 0x52, 0x01, 0xd1, 0x02, 0x42, 0x02, 0x79, 0x02, 0x06, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x04, 0x00, 0x64, 0xff, 0xec, 0x06, 0x44, 0x05, 0xcb, - 0x00, 0x08, 0x00, 0x1e, 0x00, 0x3a, 0x00, 0x4e, 0x00, 0xc2, 0x40, 0x7d, - 0xa4, 0x16, 0xb4, 0x16, 0xc4, 0x16, 0x03, 0xb4, 0x17, 0xc4, 0x17, 0x02, - 0x17, 0x16, 0x01, 0x52, 0x15, 0x0e, 0x17, 0x0e, 0x16, 0xc5, 0x15, 0x0e, - 0x14, 0x15, 0x15, 0x0e, 0x0e, 0x09, 0x00, 0x19, 0xc5, 0x1a, 0x09, 0xc5, - 0x04, 0x15, 0x04, 0x00, 0x1a, 0x01, 0x00, 0x1a, 0xc0, 0x1a, 0xd0, 0x1a, - 0x03, 0x07, 0x8f, 0x04, 0x01, 0x1a, 0x04, 0x1a, 0x04, 0x1f, 0x45, 0xc3, - 0x00, 0x2d, 0x01, 0xc0, 0x2d, 0x01, 0x2d, 0x50, 0x3b, 0xc3, 0x1f, 0x0e, - 0x18, 0xc9, 0x00, 0x00, 0x16, 0x1b, 0x16, 0x15, 0x1a, 0x08, 0xc9, 0x1b, - 0x00, 0x1a, 0x01, 0x0f, 0x1a, 0x1f, 0x1a, 0x2f, 0x1a, 0x7f, 0x1a, 0x8f, - 0x1a, 0x9f, 0x1a, 0x06, 0x08, 0x00, 0x1b, 0x10, 0x1b, 0x60, 0x1b, 0x70, - 0x1b, 0x80, 0x1b, 0x05, 0x1a, 0x1b, 0x1a, 0x1b, 0x26, 0x40, 0xc8, 0x34, - 0x13, 0x4a, 0xc8, 0x26, 0x04, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, - 0x39, 0x2f, 0x2f, 0x5d, 0x5e, 0x5d, 0x71, 0x10, 0xe1, 0x11, 0x33, 0x33, - 0x11, 0x12, 0x39, 0x10, 0xe1, 0x32, 0x01, 0x2f, 0xe1, 0x10, 0xde, 0x5d, - 0x71, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5e, 0x5d, 0x71, 0x11, - 0x39, 0x10, 0xe1, 0x10, 0xe1, 0x32, 0x11, 0x39, 0x87, 0x10, 0x2b, 0x10, - 0x00, 0xc1, 0x87, 0x05, 0x2b, 0x10, 0xc4, 0x01, 0x5d, 0x31, 0x30, 0x5d, - 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x05, 0x14, 0x0e, - 0x02, 0x07, 0x16, 0x17, 0x1e, 0x02, 0x17, 0x17, 0x23, 0x03, 0x23, 0x11, - 0x23, 0x11, 0x33, 0x32, 0x16, 0x01, 0x34, 0x3e, 0x04, 0x33, 0x32, 0x1e, - 0x04, 0x15, 0x14, 0x0e, 0x04, 0x23, 0x22, 0x2e, 0x04, 0x37, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, - 0x02, 0x02, 0xe7, 0x48, 0x5b, 0x4f, 0x53, 0x59, 0x46, 0x01, 0x92, 0x1b, - 0x2d, 0x39, 0x1f, 0x43, 0x35, 0x17, 0x2a, 0x21, 0x0a, 0x0a, 0xb3, 0xce, - 0x5f, 0x9d, 0xe9, 0xa8, 0x9e, 0xfb, 0xeb, 0x36, 0x61, 0x8a, 0xa7, 0xc0, - 0x68, 0x68, 0xc0, 0xa7, 0x8a, 0x61, 0x36, 0x36, 0x61, 0x8a, 0xa7, 0xc0, - 0x68, 0x68, 0xc0, 0xa7, 0x8a, 0x61, 0x36, 0x6d, 0x65, 0xaf, 0xea, 0x85, - 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, 0xea, 0x85, 0x85, 0xea, 0xaf, 0x65, - 0x03, 0x00, 0x48, 0x45, 0x4a, 0x3b, 0x81, 0x30, 0x4b, 0x39, 0x28, 0x0d, - 0x6e, 0x57, 0x25, 0x47, 0x38, 0x11, 0x11, 0x01, 0x60, 0xfe, 0xa0, 0x03, - 0x7d, 0x82, 0xfe, 0xc3, 0x68, 0xc0, 0xa7, 0x8a, 0x61, 0x36, 0x36, 0x61, - 0x8a, 0xa7, 0xc0, 0x68, 0x68, 0xc0, 0xa7, 0x89, 0x62, 0x35, 0x35, 0x62, - 0x89, 0xa7, 0xc0, 0x68, 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, 0xea, 0x85, - 0x85, 0xea, 0xaf, 0x65, 0x65, 0xaf, 0xea, 0x00, 0x00, 0x01, 0xff, 0xfa, - 0x06, 0x14, 0x04, 0x06, 0x06, 0xa0, 0x00, 0x03, 0x00, 0x12, 0xb6, 0x00, - 0x00, 0x05, 0x01, 0x01, 0xba, 0x02, 0x00, 0x2f, 0xe1, 0x01, 0x2f, 0x11, - 0x33, 0x2f, 0x31, 0x30, 0x01, 0x21, 0x35, 0x21, 0x04, 0x06, 0xfb, 0xf4, - 0x04, 0x0c, 0x06, 0x14, 0x8c, 0x00, 0x00, 0x02, 0x00, 0x7b, 0x03, 0x56, - 0x02, 0xf2, 0x05, 0xcb, 0x00, 0x13, 0x00, 0x27, 0x00, 0x43, 0x40, 0x2c, - 0x1e, 0xab, 0x0a, 0x29, 0x9f, 0x29, 0x01, 0x14, 0xaa, 0x30, 0x00, 0x40, - 0x00, 0x02, 0x00, 0x19, 0xae, 0x10, 0x0f, 0x20, 0x0f, 0x02, 0xe0, 0x0f, - 0xf0, 0x0f, 0x02, 0x6f, 0x0f, 0x01, 0x00, 0x0f, 0x10, 0x0f, 0x20, 0x0f, - 0x03, 0x06, 0x0f, 0x0f, 0x23, 0xae, 0x05, 0x04, 0x00, 0x3f, 0xe1, 0x33, - 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x71, 0xe1, 0x01, 0x2f, 0x5d, 0xe1, 0x5d, - 0x10, 0xd6, 0xe1, 0x31, 0x30, 0x13, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x37, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, - 0x02, 0x7b, 0x32, 0x55, 0x73, 0x41, 0x41, 0x73, 0x56, 0x32, 0x32, 0x56, - 0x73, 0x41, 0x41, 0x73, 0x55, 0x32, 0x7b, 0x1e, 0x34, 0x46, 0x28, 0x28, - 0x46, 0x35, 0x1e, 0x1e, 0x35, 0x46, 0x28, 0x28, 0x46, 0x34, 0x1e, 0x04, - 0x8f, 0x41, 0x73, 0x56, 0x32, 0x32, 0x56, 0x73, 0x41, 0x41, 0x72, 0x55, - 0x31, 0x31, 0x55, 0x72, 0x41, 0x27, 0x45, 0x34, 0x1e, 0x1e, 0x34, 0x45, - 0x27, 0x28, 0x47, 0x35, 0x1f, 0x1f, 0x35, 0x47, 0x00, 0x02, 0x00, 0x66, - 0x00, 0x00, 0x04, 0x02, 0x04, 0xa2, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x3a, - 0x40, 0x21, 0x10, 0x11, 0x01, 0x0f, 0x08, 0x08, 0x06, 0x09, 0xaa, 0x0c, - 0x01, 0x01, 0x03, 0xef, 0x00, 0x01, 0x20, 0x00, 0x60, 0x00, 0xa0, 0x00, - 0x03, 0x00, 0x0d, 0xad, 0x0c, 0x09, 0x00, 0xad, 0x06, 0x03, 0xb3, 0x00, - 0x3f, 0x33, 0xe1, 0x32, 0x2f, 0xe1, 0x01, 0x2f, 0x5d, 0x5d, 0x33, 0x33, - 0x11, 0x33, 0xe1, 0x32, 0x32, 0x11, 0x33, 0x5d, 0x31, 0x30, 0x01, 0x21, - 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, 0x01, 0x35, - 0x21, 0x15, 0x01, 0xe9, 0xfe, 0x7d, 0x01, 0x83, 0x96, 0x01, 0x83, 0xfe, - 0x7d, 0x96, 0xfe, 0x7d, 0x03, 0x9c, 0x02, 0x87, 0x96, 0x01, 0x85, 0xfe, - 0x7b, 0x96, 0xfe, 0x7f, 0xfe, 0xfa, 0x96, 0x96, 0x00, 0x01, 0x00, 0x31, - 0x02, 0x4a, 0x02, 0x6d, 0x05, 0xc9, 0x00, 0x1e, 0x00, 0x40, 0x40, 0x15, - 0x08, 0xe1, 0x00, 0x17, 0x20, 0x4f, 0x20, 0x7f, 0x20, 0x02, 0x20, 0x40, - 0x06, 0x0a, 0x48, 0x1d, 0xe1, 0x01, 0x0f, 0x0f, 0x01, 0xb8, 0xff, 0xc0, - 0x40, 0x0e, 0x15, 0x18, 0x48, 0x01, 0x08, 0x1d, 0x0b, 0xe5, 0x12, 0xde, - 0x1d, 0xe5, 0x01, 0xdd, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x01, - 0x2f, 0x2b, 0x33, 0x2f, 0x10, 0xe1, 0x2b, 0x5d, 0x10, 0xde, 0x32, 0xe1, - 0x31, 0x30, 0x01, 0x21, 0x35, 0x37, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x0e, 0x02, 0x07, 0x07, 0x21, 0x02, 0x6d, 0xfd, 0xc4, 0xd1, 0x39, 0x48, - 0x28, 0x0f, 0x42, 0x36, 0x33, 0x5d, 0x2d, 0x4e, 0x36, 0x85, 0x52, 0x3c, - 0x61, 0x44, 0x25, 0x1d, 0x36, 0x4f, 0x33, 0x94, 0x01, 0x8c, 0x02, 0x4a, - 0x70, 0xe4, 0x3e, 0x55, 0x43, 0x3b, 0x22, 0x41, 0x40, 0x32, 0x26, 0x5e, - 0x30, 0x41, 0x21, 0x3f, 0x5b, 0x39, 0x32, 0x56, 0x55, 0x5b, 0x37, 0x9d, - 0x00, 0x01, 0x00, 0x1f, 0x02, 0x39, 0x02, 0x68, 0x05, 0xc9, 0x00, 0x30, - 0x00, 0x61, 0x40, 0x3c, 0x03, 0x00, 0x19, 0x19, 0x0e, 0x06, 0x1e, 0xe1, - 0x00, 0x00, 0x15, 0xe1, 0x06, 0x32, 0x5f, 0x32, 0x8f, 0x32, 0x02, 0x32, - 0x40, 0x06, 0x0a, 0x48, 0x27, 0x27, 0x0e, 0x40, 0x19, 0x20, 0x48, 0x0e, - 0x03, 0x19, 0xe4, 0x0f, 0x1a, 0x1f, 0x1a, 0x2f, 0x1a, 0x5f, 0x1a, 0xdf, - 0x1a, 0x05, 0x08, 0x1a, 0x1a, 0x12, 0x26, 0x23, 0xe5, 0x2c, 0xde, 0x12, - 0xe5, 0x0f, 0x0b, 0xdf, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, 0x33, 0x12, - 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x39, 0x01, 0x2f, 0x2b, 0x33, 0x2f, 0x2b, - 0x5d, 0x10, 0xde, 0xe1, 0x33, 0x2f, 0xe1, 0x11, 0x12, 0x39, 0x2f, 0x12, - 0x39, 0x31, 0x30, 0x01, 0x14, 0x06, 0x07, 0x16, 0x16, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, - 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x02, - 0x4e, 0x51, 0x45, 0x58, 0x58, 0x28, 0x53, 0x7e, 0x56, 0x46, 0x7b, 0x39, - 0x3f, 0x84, 0x35, 0x62, 0x58, 0x6b, 0x60, 0x62, 0x62, 0x5c, 0x54, 0x14, - 0x23, 0x2f, 0x1b, 0x3b, 0x61, 0x33, 0x45, 0x1d, 0x3d, 0x44, 0x4c, 0x2c, - 0x45, 0x69, 0x46, 0x23, 0x04, 0xe7, 0x4e, 0x6a, 0x18, 0x17, 0x6a, 0x4e, - 0x3c, 0x64, 0x47, 0x28, 0x19, 0x1f, 0x85, 0x22, 0x26, 0x53, 0x49, 0x4a, - 0x43, 0x71, 0x4f, 0x40, 0x20, 0x2f, 0x1e, 0x0e, 0x29, 0x25, 0x60, 0x17, - 0x25, 0x1a, 0x0f, 0x22, 0x3c, 0x53, 0x00, 0x01, 0x01, 0x89, 0x04, 0xd9, - 0x03, 0x12, 0x06, 0x21, 0x00, 0x0d, 0x00, 0x16, 0x40, 0x0a, 0x06, 0x00, - 0x05, 0x80, 0x0f, 0x0c, 0x5f, 0x0c, 0x02, 0x0c, 0x00, 0x2f, 0x5d, 0x1a, - 0xcd, 0x01, 0x2f, 0xcd, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, - 0x0e, 0x03, 0x07, 0x23, 0x01, 0x89, 0x16, 0x2f, 0x2f, 0x2a, 0x10, 0xdb, - 0x10, 0x3f, 0x4d, 0x51, 0x23, 0x79, 0x04, 0xf4, 0x1d, 0x4c, 0x51, 0x51, - 0x22, 0x15, 0x1b, 0x51, 0x58, 0x53, 0x1c, 0x00, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x12, 0x04, 0x4a, 0x00, 0x1d, 0x00, 0x37, 0x40, 0x22, - 0x0d, 0x09, 0x47, 0x0a, 0x55, 0x1f, 0x10, 0x1f, 0x20, 0x1f, 0x60, 0x1f, - 0x70, 0x1f, 0x80, 0x1f, 0x05, 0x14, 0x1d, 0x47, 0x1c, 0x54, 0x1e, 0x1a, - 0x1b, 0x03, 0x50, 0x11, 0x16, 0x0b, 0x15, 0x1c, 0x09, 0x0f, 0x00, 0x3f, - 0x33, 0x3f, 0x3f, 0xe1, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x10, - 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x11, 0x33, 0x11, 0x23, 0x27, 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x33, 0x01, 0x64, - 0x6a, 0x6f, 0x52, 0x6e, 0x43, 0x1c, 0xb6, 0x93, 0x1b, 0x0a, 0x30, 0x90, - 0x67, 0x48, 0x6a, 0x23, 0x01, 0x02, 0x02, 0x01, 0xb6, 0xb6, 0x01, 0x87, - 0x82, 0x82, 0x34, 0x65, 0x94, 0x60, 0x02, 0x3a, 0xfb, 0xb6, 0x93, 0x53, - 0x54, 0x2e, 0x2a, 0x26, 0x28, 0x23, 0x55, 0x2a, 0xfe, 0xc0, 0x06, 0x36, - 0x00, 0x01, 0x00, 0x71, 0xfe, 0xfc, 0x04, 0x66, 0x06, 0x14, 0x00, 0x13, - 0x00, 0x37, 0x40, 0x21, 0x04, 0x99, 0x00, 0x05, 0x30, 0x05, 0x40, 0x05, - 0x50, 0x05, 0x04, 0x06, 0x05, 0x05, 0x0d, 0x01, 0x99, 0x00, 0x15, 0x10, - 0x15, 0x01, 0x00, 0x0d, 0x10, 0x0d, 0x02, 0x0d, 0x03, 0x12, 0x00, 0x05, - 0x00, 0x00, 0x2f, 0x32, 0x3f, 0xc1, 0x01, 0x2f, 0x5d, 0x5d, 0x10, 0xd6, - 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x23, 0x11, - 0x23, 0x11, 0x23, 0x11, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x21, 0x04, 0x66, 0x78, 0xcf, 0x79, 0x3d, 0x55, 0x5f, 0x9b, - 0x6d, 0x3c, 0x41, 0x77, 0xa6, 0x64, 0x02, 0x33, 0xfe, 0xfc, 0x06, 0x79, - 0xf9, 0x87, 0x03, 0x33, 0x12, 0x33, 0x76, 0xc0, 0x8c, 0x93, 0xc5, 0x78, - 0x32, 0x00, 0x00, 0x01, 0x00, 0x93, 0x02, 0x48, 0x01, 0x91, 0x03, 0x5e, - 0x00, 0x13, 0x00, 0x33, 0x40, 0x1a, 0x10, 0x15, 0x80, 0x15, 0x90, 0x15, - 0xa0, 0x15, 0x04, 0x0a, 0x96, 0xc0, 0x00, 0xd0, 0x00, 0x02, 0x34, 0x00, - 0x44, 0x00, 0x64, 0x00, 0x74, 0x00, 0x04, 0x00, 0xb8, 0xff, 0xc0, 0xb6, - 0x07, 0x0a, 0x48, 0x00, 0x05, 0x9b, 0x0f, 0x00, 0x2f, 0xe5, 0x01, 0x2f, - 0x2b, 0x5d, 0x5d, 0xed, 0x5d, 0x31, 0x30, 0x13, 0x34, 0x3e, 0x02, 0x33, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x93, - 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, - 0x1b, 0x2e, 0x22, 0x14, 0x02, 0xd3, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, - 0x35, 0x26, 0x25, 0x34, 0x22, 0x10, 0x10, 0x22, 0x34, 0x00, 0x00, 0x01, - 0x00, 0x23, 0xfe, 0x14, 0x01, 0x98, 0x00, 0x00, 0x00, 0x19, 0x00, 0x39, - 0x40, 0x1f, 0x14, 0x13, 0x13, 0x15, 0x7f, 0x12, 0x8f, 0x12, 0x02, 0x12, - 0x12, 0x06, 0x0d, 0x84, 0x00, 0x1b, 0x06, 0x1a, 0x12, 0x8c, 0x15, 0x40, - 0x09, 0x0e, 0x48, 0x15, 0x15, 0x13, 0x0a, 0x8d, 0x03, 0x00, 0x2f, 0xe1, - 0x2f, 0x39, 0x2f, 0x2b, 0xe1, 0x01, 0x10, 0xc6, 0x10, 0xd6, 0xe1, 0x11, - 0x39, 0x2f, 0x5d, 0x33, 0x33, 0x11, 0x33, 0x31, 0x30, 0x01, 0x14, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x2e, 0x02, 0x27, 0x37, 0x33, 0x07, 0x1e, 0x03, 0x01, 0x98, 0x8d, 0x96, - 0x16, 0x2d, 0x0f, 0x0f, 0x31, 0x10, 0x47, 0x50, 0x1a, 0x2e, 0x3f, 0x25, - 0x5a, 0x79, 0x39, 0x22, 0x3a, 0x2b, 0x19, 0xfe, 0xe1, 0x61, 0x6c, 0x06, - 0x03, 0x6c, 0x03, 0x03, 0x2b, 0x31, 0x18, 0x23, 0x1a, 0x13, 0x09, 0xb0, - 0x73, 0x08, 0x1a, 0x29, 0x3a, 0x00, 0x00, 0x01, 0x00, 0x3f, 0x02, 0x4a, - 0x01, 0xba, 0x05, 0xb6, 0x00, 0x0e, 0x00, 0x34, 0x40, 0x21, 0x4f, 0x10, - 0x7f, 0x10, 0x02, 0x10, 0x40, 0x06, 0x0a, 0x48, 0x0e, 0x0e, 0x02, 0xe1, - 0x00, 0x7f, 0x03, 0x8f, 0x03, 0x02, 0x20, 0x03, 0x30, 0x03, 0x02, 0x03, - 0x02, 0xdd, 0x0d, 0x09, 0xe5, 0x00, 0xdc, 0x00, 0x3f, 0xe1, 0xcd, 0x3f, - 0x01, 0x2f, 0x5d, 0x5d, 0x33, 0xe1, 0x33, 0x2f, 0x2b, 0x5d, 0x31, 0x30, - 0x01, 0x33, 0x11, 0x23, 0x11, 0x34, 0x3e, 0x02, 0x37, 0x06, 0x06, 0x07, - 0x07, 0x27, 0x01, 0x33, 0x87, 0x91, 0x01, 0x03, 0x03, 0x01, 0x0e, 0x26, - 0x16, 0x5e, 0x4a, 0x05, 0xb6, 0xfc, 0x94, 0x02, 0x04, 0x19, 0x3c, 0x3c, - 0x38, 0x16, 0x11, 0x28, 0x11, 0x49, 0x60, 0x00, 0x00, 0x02, 0x00, 0x42, - 0x03, 0x10, 0x02, 0x8b, 0x05, 0xc7, 0x00, 0x13, 0x00, 0x1f, 0x00, 0x2e, - 0xb2, 0x1a, 0xe0, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x14, 0x09, 0x0f, 0x48, - 0x00, 0x21, 0x0f, 0x21, 0x01, 0x14, 0xe0, 0x0a, 0x20, 0x17, 0xe4, 0x05, - 0xc0, 0x1d, 0xe4, 0x0f, 0xde, 0x00, 0x3f, 0xe1, 0x1a, 0xdc, 0xe1, 0x01, - 0x10, 0xd6, 0xe1, 0x5d, 0x10, 0xd6, 0x2b, 0xe1, 0x31, 0x30, 0x01, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x02, 0x8b, 0x29, 0x4d, 0x6d, 0x44, 0x3f, 0x6a, 0x4e, 0x2b, - 0x29, 0x4c, 0x6d, 0x44, 0x3e, 0x6b, 0x4e, 0x2c, 0xfe, 0x3a, 0x4b, 0x56, - 0x55, 0x4b, 0x4b, 0x55, 0x56, 0x4b, 0x04, 0x6d, 0x53, 0x82, 0x59, 0x2f, - 0x2f, 0x59, 0x82, 0x53, 0x53, 0x81, 0x58, 0x2e, 0x2e, 0x58, 0x81, 0x53, - 0x77, 0x79, 0x79, 0x77, 0x78, 0x73, 0x73, 0x00, 0x00, 0x02, 0x00, 0x54, - 0x00, 0x73, 0x03, 0x96, 0x03, 0xc7, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x56, - 0x40, 0x2f, 0x0f, 0x0f, 0x9f, 0x0f, 0xaf, 0x0f, 0x03, 0x07, 0xeb, 0x04, - 0x02, 0x0a, 0x02, 0x0a, 0x02, 0x03, 0x0b, 0x09, 0x0e, 0x00, 0xeb, 0x9f, - 0x03, 0x01, 0x10, 0x03, 0x20, 0x03, 0x40, 0x03, 0x03, 0x03, 0x0d, 0x07, - 0x0a, 0x06, 0x00, 0x03, 0x0a, 0x03, 0x0a, 0x03, 0x01, 0x0c, 0x05, 0x08, - 0x01, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x12, 0x39, 0x39, 0x3d, 0x2f, 0x2f, - 0x11, 0x33, 0x33, 0x11, 0x33, 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x5d, 0xe1, - 0x10, 0xc6, 0x32, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0xe1, 0x5d, - 0x31, 0x30, 0x01, 0x01, 0x27, 0x13, 0x03, 0x37, 0x01, 0x05, 0x01, 0x27, - 0x13, 0x03, 0x37, 0x01, 0x03, 0x96, 0xfe, 0xca, 0x74, 0xed, 0xed, 0x74, - 0x01, 0x36, 0xfe, 0x68, 0xfe, 0xcb, 0x75, 0xee, 0xee, 0x75, 0x01, 0x35, - 0x02, 0x0e, 0xfe, 0x65, 0x4e, 0x01, 0x5c, 0x01, 0x5c, 0x4e, 0xfe, 0x62, - 0x1b, 0xfe, 0x65, 0x4e, 0x01, 0x5c, 0x01, 0x5c, 0x4e, 0xfe, 0x62, 0x00, - 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00, 0x05, 0x8b, 0x05, 0xb6, 0x00, 0x26, - 0x00, 0x7b, 0x00, 0x00, 0x00, 0x27, 0x02, 0x17, 0x02, 0x4a, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x3c, 0x02, 0xfc, 0xfd, 0xb7, 0x00, 0x30, 0x40, 0x1d, - 0x03, 0x02, 0x16, 0x18, 0x03, 0x02, 0xbf, 0x16, 0x01, 0x8f, 0x16, 0x01, - 0x3f, 0x16, 0x01, 0x16, 0x01, 0x40, 0x11, 0x01, 0x00, 0x11, 0x01, 0x11, - 0x00, 0x40, 0x00, 0x01, 0x00, 0x11, 0x5d, 0x35, 0x11, 0x5d, 0x5d, 0x35, - 0x11, 0x5d, 0x5d, 0x5d, 0x35, 0x35, 0x00, 0x3f, 0x35, 0x35, 0xff, 0xff, - 0x00, 0x2c, 0x00, 0x00, 0x05, 0xa0, 0x05, 0xb6, 0x00, 0x26, 0x00, 0x7b, - 0xed, 0x00, 0x00, 0x27, 0x02, 0x17, 0x02, 0x35, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x74, 0x03, 0x33, 0xfd, 0xb7, 0x00, 0x28, 0x40, 0x18, 0x02, 0x14, - 0x18, 0x02, 0x00, 0x14, 0x01, 0x14, 0x01, 0xb0, 0x11, 0x01, 0x40, 0x11, - 0x01, 0x11, 0x00, 0x70, 0x00, 0x01, 0x40, 0x00, 0x01, 0x00, 0x11, 0x5d, - 0x5d, 0x35, 0x11, 0x5d, 0x5d, 0x35, 0x11, 0x5d, 0x35, 0x00, 0x3f, 0x35, - 0xff, 0xff, 0x00, 0x1f, 0x00, 0x00, 0x05, 0xce, 0x05, 0xc9, 0x00, 0x26, - 0x00, 0x75, 0x00, 0x00, 0x00, 0x27, 0x02, 0x17, 0x02, 0xa8, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x3c, 0x03, 0x3f, 0xfd, 0xb7, 0x00, 0x3c, 0x40, 0x27, - 0x03, 0x02, 0x38, 0x18, 0x03, 0x02, 0x70, 0x38, 0x01, 0x50, 0x38, 0x01, - 0x38, 0x01, 0xb4, 0x33, 0x01, 0xa4, 0x33, 0x01, 0x84, 0x33, 0x01, 0x64, - 0x33, 0x01, 0x50, 0x33, 0x01, 0x30, 0x33, 0x01, 0x20, 0x33, 0x01, 0x33, - 0x0f, 0x4c, 0x01, 0x5d, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x35, 0x11, 0x5d, 0x5d, 0x35, 0x35, 0x00, 0x3f, 0x35, 0x35, 0x00, 0x02, - 0x00, 0x44, 0xfe, 0x77, 0x03, 0x44, 0x04, 0x5e, 0x00, 0x27, 0x00, 0x3b, - 0x00, 0x44, 0x40, 0x12, 0x32, 0x9a, 0x28, 0x28, 0x27, 0x46, 0x00, 0x00, - 0x0b, 0x14, 0x3d, 0x0f, 0x3d, 0x01, 0x08, 0x0b, 0x46, 0x1c, 0xb8, 0xff, - 0xc0, 0x40, 0x10, 0x0f, 0x1b, 0x48, 0x1c, 0x0b, 0x17, 0x27, 0x27, 0x2d, - 0x9b, 0x37, 0x10, 0x13, 0x10, 0x51, 0x17, 0x00, 0x2f, 0xe1, 0x33, 0x3f, - 0xe5, 0x32, 0x2f, 0x12, 0x39, 0x01, 0x2f, 0x2b, 0xe1, 0x5e, 0x5d, 0x10, - 0xce, 0x11, 0x39, 0x2f, 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x15, - 0x14, 0x0e, 0x02, 0x07, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x37, 0x3e, 0x03, 0x35, 0x35, 0x13, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x02, 0x50, - 0x10, 0x27, 0x41, 0x32, 0x30, 0x44, 0x2b, 0x15, 0x1e, 0x39, 0x55, 0x37, - 0x54, 0x96, 0x45, 0x40, 0x52, 0xbc, 0x61, 0x5d, 0x95, 0x67, 0x38, 0x1b, - 0x35, 0x51, 0x36, 0x34, 0x42, 0x26, 0x0e, 0xba, 0x13, 0x23, 0x2e, 0x1b, - 0x1a, 0x2e, 0x23, 0x14, 0x14, 0x23, 0x2e, 0x1a, 0x1b, 0x2e, 0x23, 0x13, - 0x02, 0xa4, 0x25, 0x3a, 0x5b, 0x51, 0x4c, 0x2a, 0x29, 0x43, 0x45, 0x4f, - 0x35, 0x30, 0x4f, 0x39, 0x1f, 0x33, 0x23, 0x92, 0x2a, 0x3a, 0x33, 0x60, - 0x8a, 0x58, 0x44, 0x68, 0x5a, 0x54, 0x2f, 0x2d, 0x43, 0x3e, 0x43, 0x2b, - 0x13, 0x01, 0x2f, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, - 0x34, 0x22, 0x10, 0x10, 0x22, 0x34, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x43, 0xff, 0xbd, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x15, 0x05, - 0x26, 0x02, 0xb8, 0xff, 0x9c, 0xb4, 0x1b, 0x15, 0x04, 0x07, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x76, 0x00, 0x8d, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x21, - 0x05, 0x26, 0x02, 0x6c, 0x15, 0x1b, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, - 0x00, 0x1f, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x15, 0x05, 0x26, 0x02, - 0xb8, 0xff, 0xff, 0xb4, 0x1d, 0x15, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, - 0x07, 0x35, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, - 0x00, 0x06, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x1d, 0x05, 0x26, - 0x02, 0x01, 0x1e, 0x2c, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x07, 0x2b, - 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0x00, 0x21, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x1e, 0x05, 0x26, 0x03, - 0x02, 0x01, 0x15, 0x29, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, - 0x07, 0x04, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06, 0x01, 0x50, - 0x1f, 0x7d, 0x00, 0x31, 0x40, 0x20, 0x03, 0x02, 0xef, 0x1a, 0x01, 0xdf, - 0x1a, 0x01, 0x50, 0x1a, 0x01, 0x40, 0x1a, 0x01, 0x20, 0x1a, 0x01, 0x10, - 0x1a, 0x01, 0x00, 0x1a, 0x01, 0x1a, 0x03, 0x02, 0x00, 0x1f, 0x15, 0x04, - 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x35, 0x35, 0x00, 0x00, 0x02, 0xff, 0xfe, 0x00, 0x00, - 0x06, 0x56, 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x13, 0x00, 0x84, 0x40, 0x2a, - 0x06, 0x13, 0x0a, 0x0e, 0x5a, 0x01, 0x11, 0x01, 0x10, 0x03, 0x04, 0x13, - 0xa9, 0x13, 0x01, 0x24, 0x13, 0x34, 0x13, 0x54, 0x13, 0x03, 0x10, 0x01, - 0x01, 0x14, 0x0c, 0x01, 0x13, 0x01, 0x0c, 0x0c, 0x01, 0x13, 0x03, 0x05, - 0x08, 0x00, 0x67, 0x15, 0x04, 0x05, 0xb8, 0xff, 0xf0, 0x40, 0x20, 0x05, - 0x09, 0x13, 0x5f, 0x06, 0x03, 0x5f, 0x10, 0x0d, 0x5f, 0x0a, 0x4f, 0x0a, - 0x01, 0x0f, 0x0a, 0xaf, 0x0a, 0x02, 0x08, 0x10, 0x0a, 0x10, 0x0a, 0x06, - 0x03, 0x04, 0x0e, 0x5f, 0x05, 0x01, 0x12, 0x00, 0x3f, 0x33, 0xe1, 0x2f, - 0x3f, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x71, 0x10, 0xe1, 0x10, 0xe1, - 0x10, 0xe1, 0x32, 0x01, 0x2f, 0x38, 0x33, 0x10, 0xe6, 0x32, 0x11, 0x17, - 0x39, 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x7d, 0x87, 0xc4, 0xc4, - 0x11, 0x01, 0x33, 0x10, 0xe1, 0x32, 0x11, 0x33, 0x31, 0x30, 0x21, 0x21, - 0x11, 0x21, 0x03, 0x23, 0x01, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x21, 0x01, 0x21, 0x11, 0x23, 0x06, 0x56, 0xfd, 0x08, 0xfe, 0x25, - 0xcb, 0xba, 0x02, 0x8f, 0x03, 0xc9, 0xfd, 0xc3, 0x02, 0x16, 0xfd, 0xea, - 0x02, 0x3d, 0xfb, 0x75, 0x01, 0x93, 0x6c, 0x01, 0xc5, 0xfe, 0x3b, 0x05, - 0xb6, 0xa4, 0xfe, 0x3c, 0xa2, 0xfd, 0xf8, 0x01, 0xc6, 0x02, 0xa8, 0x00, - 0xff, 0xff, 0x00, 0x7d, 0xfe, 0x14, 0x04, 0x98, 0x05, 0xcb, 0x02, 0x26, - 0x00, 0x26, 0x00, 0x00, 0x01, 0x07, 0x00, 0x7a, 0x01, 0xfc, 0x00, 0x00, - 0x00, 0x0b, 0xb6, 0x01, 0x4f, 0x2a, 0x24, 0x18, 0x20, 0x25, 0x01, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xff, 0xb7, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x0c, 0x05, 0x26, 0x01, 0xb8, 0xff, - 0xc2, 0xb4, 0x12, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x00, 0x3f, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x18, 0x05, 0x26, 0x01, 0x4a, - 0x0c, 0x12, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0xff, 0xf1, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x01, 0x0c, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xfd, 0xb4, - 0x14, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x2b, 0x02, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0xf5, 0x01, 0x52, - 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x15, 0x05, 0x26, 0x02, 0x01, 0x01, - 0x0c, 0x20, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x3e, 0x00, 0x00, 0x02, 0x64, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xfe, 0xb5, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x0c, 0x05, 0x26, 0x01, 0xb8, 0xff, - 0xa8, 0xb4, 0x12, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x02, 0x8a, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0xff, 0x78, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x18, 0x05, 0x26, 0x01, 0x6a, - 0x0c, 0x12, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x11, 0x00, 0x00, 0x02, 0xa9, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0xff, 0x0f, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0c, 0x05, 0x26, 0x01, 0x02, 0x14, 0x0c, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x40, 0x00, 0x00, 0x02, 0x77, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x2c, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0x0d, 0x01, 0x52, 0x00, 0x17, - 0x40, 0x0d, 0x02, 0x01, 0x15, 0x05, 0x26, 0x02, 0x01, 0x00, 0x0c, 0x20, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x2f, 0x00, 0x00, 0x04, 0xfc, 0x05, 0xb6, 0x00, 0x10, - 0x00, 0x1f, 0x00, 0x5d, 0x40, 0x3a, 0x1a, 0x1a, 0x0e, 0x11, 0x5b, 0x08, - 0x67, 0x21, 0x20, 0x21, 0x01, 0x18, 0x1c, 0x5a, 0x0e, 0x10, 0x10, 0x01, - 0x0e, 0x64, 0x20, 0x1b, 0x10, 0x5f, 0x18, 0x0f, 0x00, 0x01, 0x0f, 0x00, - 0x3f, 0x00, 0x6f, 0x00, 0xaf, 0x00, 0xdf, 0x00, 0xff, 0x00, 0x06, 0x08, - 0x00, 0x40, 0x1a, 0x1d, 0x48, 0x00, 0x00, 0x02, 0x1c, 0x60, 0x0e, 0x12, - 0x17, 0x60, 0x02, 0x03, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, - 0x2b, 0x5e, 0x5d, 0x71, 0x33, 0xe1, 0x32, 0x01, 0x10, 0xe6, 0x32, 0x32, - 0x2f, 0x10, 0xe1, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x31, - 0x30, 0x13, 0x33, 0x11, 0x21, 0x32, 0x16, 0x16, 0x12, 0x15, 0x14, 0x02, - 0x06, 0x04, 0x23, 0x21, 0x11, 0x23, 0x25, 0x34, 0x2e, 0x02, 0x23, 0x23, - 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x20, 0x00, 0x2f, 0x98, 0x01, 0x97, - 0x99, 0xf8, 0xae, 0x5f, 0x60, 0xb6, 0xfe, 0xf7, 0xa8, 0xfe, 0x92, 0x98, - 0x04, 0x08, 0x42, 0x7e, 0xb8, 0x75, 0xc9, 0x01, 0x50, 0xfe, 0xb0, 0xa2, - 0x01, 0x08, 0x01, 0x0c, 0x03, 0x25, 0x02, 0x91, 0x5c, 0xb5, 0xfe, 0xf4, - 0xb0, 0xb9, 0xfe, 0xe9, 0xbb, 0x5e, 0x02, 0x83, 0x60, 0x92, 0xd5, 0x8a, - 0x43, 0xfe, 0x0e, 0xa2, 0xfe, 0x1d, 0x01, 0x24, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x05, 0x0e, 0x07, 0x35, 0x02, 0x26, 0x00, 0x31, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x52, 0x00, 0x8b, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x20, 0x05, 0x26, 0x01, 0x0a, 0x21, 0x2f, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x05, 0x71, 0x07, 0x73, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x43, 0x00, 0x54, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x28, 0x05, - 0x26, 0x02, 0xb8, 0xff, 0xab, 0xb4, 0x2e, 0x28, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x05, 0x71, 0x07, 0x73, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x76, 0x01, 0x02, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x34, - 0x05, 0x26, 0x02, 0x58, 0x28, 0x2e, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, - 0x00, 0xae, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x28, 0x05, 0x26, - 0x02, 0x05, 0x30, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x07, 0x35, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0x00, 0x7d, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x30, 0x05, 0x26, 0x02, 0xb8, 0xff, - 0xf0, 0xb4, 0x31, 0x3f, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x07, 0x2b, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0x00, 0xaa, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x31, 0x05, 0x26, 0x03, - 0x02, 0x01, 0x28, 0x3c, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0x00, 0x01, 0x00, 0x8d, 0x01, 0x2d, 0x03, 0xdd, - 0x04, 0x7b, 0x00, 0x0b, 0x00, 0x87, 0xb9, 0x00, 0x06, 0xff, 0xf0, 0xb3, - 0x14, 0x17, 0x48, 0x06, 0xb8, 0xff, 0xe0, 0x40, 0x18, 0x0f, 0x12, 0x48, - 0x00, 0x10, 0x14, 0x17, 0x48, 0x00, 0x20, 0x0f, 0x12, 0x48, 0x09, 0x10, - 0x14, 0x17, 0x48, 0x09, 0x20, 0x0f, 0x12, 0x48, 0x03, 0xb8, 0xff, 0xf0, - 0xb3, 0x14, 0x17, 0x48, 0x03, 0xb8, 0xff, 0xe0, 0x40, 0x30, 0x0f, 0x12, - 0x48, 0x40, 0x0d, 0x01, 0x07, 0x05, 0x05, 0x03, 0x0b, 0x01, 0x01, 0x50, - 0x03, 0x01, 0x03, 0x08, 0x0a, 0x0a, 0x04, 0x02, 0x02, 0x20, 0x00, 0x01, - 0x00, 0x00, 0x20, 0x00, 0x50, 0x00, 0x70, 0x00, 0x80, 0x00, 0xa0, 0x00, - 0xc0, 0x00, 0xd0, 0x00, 0xf0, 0x00, 0x09, 0x06, 0x00, 0xb3, 0x00, 0x19, - 0x3f, 0x5e, 0x5d, 0x71, 0x32, 0x11, 0x33, 0x32, 0x11, 0x33, 0x01, 0x2f, - 0x5d, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x5d, 0x31, 0x30, 0x00, - 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x01, 0x37, - 0x01, 0x01, 0x17, 0x01, 0x01, 0x07, 0x01, 0x01, 0x27, 0x01, 0xcb, 0xfe, - 0xc2, 0x69, 0x01, 0x3d, 0x01, 0x42, 0x68, 0xfe, 0xbf, 0x01, 0x3f, 0x66, - 0xfe, 0xbe, 0xfe, 0xc3, 0x67, 0x02, 0xd3, 0x01, 0x3f, 0x69, 0xfe, 0xc2, - 0x01, 0x3e, 0x67, 0xfe, 0xbf, 0xfe, 0xc0, 0x66, 0x01, 0x3d, 0xfe, 0xc5, - 0x67, 0x00, 0x00, 0x03, 0x00, 0x7d, 0xff, 0xb4, 0x05, 0x71, 0x05, 0xfc, - 0x00, 0x1a, 0x00, 0x26, 0x00, 0x31, 0x00, 0x5c, 0x40, 0x3a, 0x29, 0x1f, - 0x2a, 0x1e, 0x04, 0x1b, 0x27, 0x5b, 0x01, 0x19, 0x0b, 0x0e, 0x04, 0x11, - 0x04, 0x67, 0x33, 0xc0, 0x33, 0x01, 0xbf, 0x33, 0x01, 0x70, 0x33, 0x01, - 0x2f, 0x33, 0x5f, 0x33, 0x02, 0x1b, 0x5b, 0x11, 0x66, 0x32, 0x1f, 0x29, - 0x1e, 0x2a, 0x04, 0x2d, 0x22, 0x5f, 0x19, 0x01, 0x0e, 0x0b, 0x04, 0x09, - 0x1a, 0x16, 0x04, 0x2d, 0x5f, 0x0c, 0x09, 0x13, 0x00, 0x3f, 0x33, 0xe1, - 0x3f, 0x33, 0x12, 0x17, 0x39, 0xe1, 0x11, 0x17, 0x39, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x11, 0x17, 0x39, 0xe1, 0x11, - 0x17, 0x39, 0x31, 0x30, 0x01, 0x07, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, - 0x06, 0x23, 0x22, 0x27, 0x07, 0x27, 0x37, 0x26, 0x02, 0x35, 0x34, 0x12, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x01, 0x14, 0x16, 0x17, 0x01, - 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x05, 0x10, 0x27, 0x01, 0x16, 0x16, - 0x33, 0x32, 0x3e, 0x02, 0x05, 0x14, 0x5c, 0x5b, 0x5e, 0x51, 0xa0, 0xed, - 0x9b, 0xbd, 0x85, 0x4e, 0x89, 0x5a, 0x61, 0x5b, 0x4c, 0x9e, 0xf0, 0xa3, - 0x5e, 0xa1, 0x42, 0x50, 0xfc, 0xb7, 0x2e, 0x30, 0x02, 0x43, 0x30, 0x72, - 0x47, 0x72, 0xa6, 0x6c, 0x34, 0x03, 0x6a, 0x58, 0xfd, 0xbe, 0x2f, 0x72, - 0x45, 0x72, 0xa5, 0x6b, 0x32, 0x05, 0xae, 0x95, 0x63, 0xfe, 0xde, 0xb7, - 0xa9, 0xfe, 0xea, 0xc6, 0x6c, 0x47, 0x7f, 0x4e, 0x91, 0x64, 0x01, 0x2a, - 0xbe, 0xaa, 0x01, 0x15, 0xc4, 0x6b, 0x2a, 0x26, 0x7f, 0xfc, 0xe1, 0x83, - 0xd1, 0x4e, 0x03, 0xb1, 0x1d, 0x20, 0x51, 0x97, 0xda, 0x8a, 0x01, 0x01, - 0x97, 0xfc, 0x54, 0x1c, 0x1e, 0x51, 0x99, 0xdb, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x43, 0x00, 0x3d, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, - 0x18, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xc0, 0xb4, 0x1e, 0x18, 0x0b, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x00, 0xc5, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x24, 0x05, 0x26, 0x01, 0x48, 0x18, 0x1e, 0x0b, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4b, 0x00, 0x79, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x18, 0x05, - 0x26, 0x01, 0xb8, 0xff, 0xfd, 0xb4, 0x20, 0x18, 0x0b, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0xdd, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x6a, 0x00, 0x7d, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, - 0x21, 0x05, 0x26, 0x02, 0x01, 0x01, 0x18, 0x2c, 0x0b, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x37, 0x07, 0x73, 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x00, 0x31, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x15, 0x05, 0x26, 0x01, 0x63, 0x09, 0x0f, 0x07, 0x02, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0x33, 0x05, 0xb6, 0x00, 0x10, 0x00, 0x1b, 0x00, 0x3c, 0x40, 0x21, - 0x17, 0x5b, 0x00, 0x67, 0x1d, 0x9f, 0x1d, 0x01, 0x10, 0x1d, 0x01, 0x11, - 0x0b, 0x07, 0x5a, 0x08, 0x64, 0x1c, 0x11, 0x60, 0x06, 0x1b, 0x60, 0x0b, - 0x06, 0x0b, 0x06, 0x0b, 0x07, 0x09, 0x03, 0x07, 0x12, 0x00, 0x3f, 0x3f, - 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x10, 0xe1, 0x10, 0xe1, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, - 0x0e, 0x02, 0x23, 0x23, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x32, 0x1e, - 0x02, 0x01, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x04, - 0x33, 0x37, 0x7e, 0xcf, 0x98, 0x96, 0xba, 0xba, 0xb0, 0x86, 0xc2, 0x7e, - 0x3c, 0xfd, 0x4e, 0x81, 0x5d, 0x8b, 0x5b, 0x2e, 0xa4, 0xae, 0xa0, 0x03, - 0x0e, 0x5b, 0xa8, 0x81, 0x4d, 0xfe, 0xc3, 0x05, 0xb6, 0xfc, 0x39, 0x6d, - 0xa0, 0xfe, 0x67, 0x20, 0x47, 0x71, 0x51, 0x8f, 0x88, 0x00, 0x00, 0x01, - 0x00, 0xae, 0xff, 0xec, 0x04, 0x75, 0x06, 0x1f, 0x00, 0x4b, 0x00, 0x6d, - 0x40, 0x48, 0x07, 0x46, 0x2e, 0x35, 0x47, 0x00, 0x0f, 0x19, 0x1f, 0x19, - 0x2f, 0x19, 0x03, 0x19, 0x40, 0x0d, 0x13, 0x48, 0x5f, 0x2e, 0x6f, 0x2e, - 0x02, 0x0f, 0x00, 0x1f, 0x00, 0x2f, 0x00, 0x03, 0x08, 0x19, 0x2e, 0x00, - 0x00, 0x2e, 0x19, 0x03, 0x41, 0x24, 0x47, 0x11, 0x57, 0x4d, 0x10, 0x4d, - 0x20, 0x4d, 0xc0, 0x4d, 0x03, 0x40, 0x47, 0x41, 0x54, 0x4c, 0x24, 0x07, - 0x35, 0x03, 0x16, 0x3a, 0x50, 0x47, 0x01, 0x41, 0x15, 0x1f, 0x50, 0x1a, - 0x16, 0x16, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0xe1, 0x12, 0x17, 0x39, - 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x17, 0x39, 0x2f, - 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x2b, 0x5d, 0x10, 0xe1, 0x10, 0xe1, 0x31, - 0x30, 0x01, 0x14, 0x0e, 0x04, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, 0x03, - 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, - 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x03, 0x35, 0x34, - 0x3e, 0x04, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, - 0x23, 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x03, 0xf2, 0x2b, - 0x3f, 0x4b, 0x3f, 0x2b, 0x0e, 0x27, 0x46, 0x39, 0x38, 0x58, 0x3d, 0x21, - 0x38, 0x65, 0x8d, 0x55, 0x61, 0x8b, 0x35, 0x1a, 0x41, 0x48, 0x4c, 0x25, - 0x38, 0x51, 0x34, 0x18, 0x11, 0x2b, 0x48, 0x38, 0x3f, 0x55, 0x35, 0x16, - 0x29, 0x3e, 0x48, 0x3e, 0x29, 0x21, 0x3c, 0x53, 0x33, 0x31, 0x58, 0x42, - 0x27, 0xb6, 0x3f, 0x71, 0x9c, 0x5c, 0x5c, 0x98, 0x6c, 0x3c, 0x04, 0xec, - 0x39, 0x59, 0x49, 0x3c, 0x37, 0x36, 0x1e, 0x15, 0x21, 0x27, 0x31, 0x26, - 0x25, 0x48, 0x52, 0x60, 0x3e, 0x57, 0x7e, 0x51, 0x27, 0x23, 0x22, 0xa6, - 0x10, 0x1f, 0x18, 0x0f, 0x19, 0x2d, 0x40, 0x28, 0x24, 0x3b, 0x38, 0x3a, - 0x23, 0x28, 0x44, 0x43, 0x46, 0x2a, 0x36, 0x4f, 0x3f, 0x36, 0x3a, 0x43, - 0x2c, 0x2a, 0x3e, 0x29, 0x13, 0x13, 0x30, 0x53, 0x41, 0xfb, 0x4e, 0x04, - 0xb0, 0x68, 0x8d, 0x55, 0x25, 0x26, 0x4c, 0x74, 0xff, 0xff, 0x00, 0x5e, - 0xff, 0xec, 0x03, 0x9c, 0x06, 0x21, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, - 0x01, 0x06, 0x00, 0x43, 0x94, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x33, 0x11, - 0x26, 0x02, 0xb8, 0xff, 0xe5, 0xb4, 0x39, 0x33, 0x0c, 0x22, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, - 0x03, 0x9c, 0x06, 0x21, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x76, 0x35, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x3f, 0x11, 0x26, - 0x02, 0x85, 0x33, 0x39, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x06, 0x21, - 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4b, 0xe2, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x33, 0x11, 0x26, 0x02, 0x33, 0x3b, 0x33, - 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x05, 0xe3, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, 0xbd, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x3b, 0x11, 0x26, 0x02, 0x29, 0x3c, 0x4a, 0x0c, 0x22, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, - 0x03, 0x9c, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x6a, 0xde, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x3c, 0x11, - 0x26, 0x03, 0x02, 0x2f, 0x33, 0x47, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, - 0x03, 0x9c, 0x06, 0x87, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x50, 0xde, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x38, 0x11, - 0x26, 0x03, 0x02, 0x30, 0x3d, 0x33, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0x00, 0x03, 0x00, 0x5e, 0xff, 0xec, - 0x06, 0x44, 0x04, 0x5e, 0x00, 0x38, 0x00, 0x47, 0x00, 0x50, 0x00, 0x7c, - 0x40, 0x1a, 0x2f, 0x14, 0x4b, 0x1e, 0x48, 0x04, 0x42, 0x42, 0x00, 0x4c, - 0x48, 0x26, 0x1d, 0x57, 0x52, 0x4f, 0x52, 0x5f, 0x52, 0x9f, 0x52, 0x03, - 0x39, 0x48, 0x00, 0x0e, 0xb8, 0xff, 0xc0, 0x40, 0x2e, 0x0d, 0x11, 0x48, - 0x0e, 0x0e, 0x00, 0x56, 0x51, 0x00, 0x42, 0x10, 0x42, 0x02, 0x42, 0x1e, - 0x50, 0x00, 0x04, 0x10, 0x04, 0x02, 0x04, 0x0f, 0x4b, 0x1f, 0x4b, 0x02, - 0x07, 0x4b, 0x4b, 0x11, 0x21, 0x3c, 0x50, 0x2f, 0x2c, 0x34, 0x16, 0x48, - 0x0d, 0x0a, 0x50, 0x17, 0x14, 0x11, 0x10, 0x00, 0x3f, 0x33, 0x33, 0xe1, - 0x32, 0x32, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x11, 0x39, 0x2f, 0x5e, 0x5d, - 0x33, 0x5d, 0xe1, 0x32, 0x5d, 0x01, 0x10, 0xe6, 0x32, 0x2f, 0x2b, 0x10, - 0xe1, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x11, 0x39, 0x2f, 0x33, 0xe1, 0x32, - 0x39, 0x39, 0x31, 0x30, 0x13, 0x34, 0x36, 0x37, 0x37, 0x35, 0x34, 0x2e, - 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x15, 0x21, 0x16, 0x16, 0x33, - 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x0e, - 0x03, 0x23, 0x22, 0x2e, 0x02, 0x37, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x35, 0x07, 0x0e, 0x03, 0x01, 0x22, 0x06, 0x07, 0x21, 0x34, 0x2e, - 0x02, 0x5e, 0xe7, 0xec, 0xb8, 0x1d, 0x37, 0x51, 0x34, 0x53, 0x8f, 0x42, - 0x40, 0x4a, 0xb6, 0x64, 0x83, 0xa6, 0x2b, 0x33, 0xa6, 0x67, 0x61, 0x9a, - 0x6c, 0x39, 0xfd, 0x60, 0x05, 0x93, 0x93, 0x31, 0x55, 0x4e, 0x4a, 0x25, - 0x27, 0x4b, 0x4f, 0x55, 0x31, 0x8a, 0xca, 0x3e, 0x22, 0x4c, 0x5f, 0x74, - 0x4a, 0x47, 0x7b, 0x5a, 0x34, 0xbd, 0x61, 0x4f, 0x3d, 0x68, 0x4c, 0x2b, - 0x8f, 0x5a, 0x7a, 0x49, 0x20, 0x03, 0x85, 0x6e, 0x7f, 0x0b, 0x01, 0xd7, - 0x1a, 0x37, 0x54, 0x01, 0x33, 0xa4, 0xb0, 0x08, 0x07, 0x45, 0x43, 0x5a, - 0x37, 0x18, 0x30, 0x22, 0x89, 0x28, 0x38, 0x55, 0x5d, 0x55, 0x5d, 0x47, - 0x81, 0xb5, 0x6e, 0x71, 0xc1, 0xb6, 0x0a, 0x13, 0x1d, 0x12, 0xa2, 0x13, - 0x1c, 0x12, 0x08, 0x72, 0x73, 0x36, 0x55, 0x3b, 0x1f, 0x27, 0x51, 0x7b, - 0x52, 0x5c, 0x56, 0x26, 0x4d, 0x75, 0x4f, 0x63, 0x07, 0x04, 0x20, 0x39, - 0x51, 0x02, 0x63, 0x9c, 0x95, 0x44, 0x71, 0x50, 0x2c, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xfe, 0x14, 0x03, 0x6f, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x46, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x7a, 0x01, 0x42, 0x00, 0x00, 0x00, 0x0b, - 0xb6, 0x01, 0x2f, 0x26, 0x20, 0x05, 0x0d, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0x94, 0x00, 0x00, 0x15, - 0xb4, 0x02, 0x28, 0x11, 0x26, 0x02, 0xb8, 0xff, 0xb9, 0xb4, 0x2e, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x06, 0x21, 0x02, 0x26, 0x00, 0x48, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0x52, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x34, 0x11, 0x26, 0x02, 0x76, 0x28, 0x2e, 0x05, 0x0f, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x03, 0xe1, 0x06, 0x21, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x4b, 0xde, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x28, 0x11, 0x26, - 0x02, 0x03, 0x30, 0x28, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x05, 0xd9, - 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xda, 0x00, - 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x31, 0x11, 0x26, 0x03, 0x02, 0x00, - 0x28, 0x3c, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0xff, 0xde, 0x00, 0x00, 0x01, 0x67, 0x06, 0x21, - 0x02, 0x26, 0x00, 0xf3, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xfe, 0x55, - 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x04, 0x11, 0x26, 0x01, 0xb8, 0xff, - 0x9a, 0xb4, 0x0a, 0x04, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x02, 0x42, 0x06, 0x21, - 0x02, 0x26, 0x00, 0xf3, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0xff, 0x30, - 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x10, 0x11, 0x26, 0x01, 0x74, - 0x04, 0x0a, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0xff, 0xbd, 0x00, 0x00, 0x02, 0x55, 0x06, 0x21, 0x02, 0x26, - 0x00, 0xf3, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0xfe, 0xbb, 0x00, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x04, 0x11, 0x26, 0x01, 0x00, 0x0c, 0x04, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0xff, 0xee, 0x00, 0x00, 0x02, 0x25, 0x05, 0xd9, 0x02, 0x26, 0x00, 0xf3, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xfe, 0xbb, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x02, 0x01, 0x0d, 0x11, 0x26, 0x02, 0x01, 0x00, 0x04, 0x18, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x6f, 0xff, 0xec, 0x04, 0x2d, 0x06, 0x23, 0x00, 0x27, - 0x00, 0x39, 0x00, 0x74, 0x40, 0x46, 0x12, 0x28, 0x48, 0x00, 0x23, 0x20, - 0x16, 0x19, 0x04, 0x1c, 0x22, 0x18, 0x1c, 0x22, 0x22, 0x1c, 0x18, 0x03, - 0x0a, 0x00, 0x57, 0x3b, 0x40, 0x3b, 0xd0, 0x3b, 0xe0, 0x3b, 0x03, 0x0f, - 0x3b, 0x01, 0x06, 0x32, 0x48, 0x0a, 0x56, 0x3a, 0x20, 0x19, 0x23, 0x16, - 0x04, 0x17, 0x21, 0x21, 0x1d, 0x2d, 0x50, 0x0f, 0x12, 0x0f, 0xaf, 0x0f, - 0xbf, 0x0f, 0x02, 0x30, 0x0f, 0x01, 0x17, 0x0f, 0x17, 0x0f, 0x1d, 0x01, - 0x37, 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x39, 0x2f, 0x2f, - 0x5d, 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x11, 0x33, 0x11, 0x12, 0x17, 0x39, - 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x10, 0xe6, 0x11, 0x17, 0x39, - 0x2f, 0x2f, 0x2f, 0x11, 0x12, 0x17, 0x39, 0x10, 0xe1, 0x32, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, 0x05, 0x27, 0x37, 0x26, - 0x26, 0x27, 0x37, 0x16, 0x16, 0x17, 0x37, 0x17, 0x07, 0x1e, 0x03, 0x07, - 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, - 0x32, 0x36, 0x04, 0x2d, 0x43, 0x7d, 0xb2, 0x6f, 0x68, 0xaf, 0x7f, 0x47, - 0x3f, 0x76, 0xa8, 0x69, 0x66, 0x9a, 0x2b, 0x08, 0x1f, 0x78, 0x5a, 0xff, - 0x00, 0x4a, 0xd9, 0x28, 0x55, 0x2f, 0x46, 0x41, 0x7a, 0x3b, 0xe3, 0x4a, - 0xc3, 0x43, 0x6f, 0x4f, 0x2c, 0xbc, 0x22, 0x46, 0x6e, 0x4b, 0x4d, 0x6d, - 0x46, 0x21, 0x21, 0x47, 0x6d, 0x4c, 0x9a, 0x87, 0x02, 0x3d, 0x8e, 0xdc, - 0x98, 0x4f, 0x42, 0x7f, 0xb9, 0x77, 0x77, 0xb8, 0x7e, 0x41, 0x3b, 0x3c, - 0x04, 0x76, 0xc0, 0x51, 0x99, 0x72, 0x83, 0x1c, 0x37, 0x1a, 0x7b, 0x20, - 0x48, 0x2c, 0x8a, 0x71, 0x75, 0x41, 0x9c, 0xbb, 0xdd, 0xb0, 0x38, 0x6b, - 0x52, 0x32, 0x2e, 0x58, 0x83, 0x55, 0x4c, 0x7d, 0x5a, 0x31, 0xc7, 0x00, - 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x12, 0x05, 0xe3, 0x02, 0x26, - 0x00, 0x51, 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, 0xf9, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x21, 0x11, 0x26, 0x01, 0x02, 0x22, 0x30, 0x0b, 0x17, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, - 0xff, 0xec, 0x04, 0x2d, 0x06, 0x21, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, - 0x01, 0x06, 0x00, 0x43, 0xd8, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x20, 0x11, - 0x26, 0x02, 0xb8, 0xff, 0xd7, 0xb4, 0x26, 0x20, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x04, 0x2d, 0x06, 0x21, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x76, 0x50, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2c, 0x11, 0x26, - 0x02, 0x4e, 0x20, 0x26, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x06, 0x21, - 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4b, 0xfb, 0x00, - 0x00, 0x15, 0xb4, 0x02, 0x20, 0x11, 0x26, 0x02, 0xb8, 0xff, 0xfa, 0xb4, - 0x28, 0x20, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x05, 0xe3, 0x02, 0x26, - 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, 0xe2, 0x00, 0x00, 0x15, - 0xb4, 0x02, 0x28, 0x11, 0x26, 0x02, 0xb8, 0xff, 0xfd, 0xb4, 0x29, 0x37, - 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xf9, 0x00, 0x00, 0x19, 0xb6, 0x03, - 0x02, 0x29, 0x11, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xf9, 0xb4, 0x20, 0x34, - 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0x00, 0x03, 0x00, 0x66, 0x00, 0xf8, 0x04, 0x02, 0x04, 0xac, 0x00, 0x03, - 0x00, 0x17, 0x00, 0x2b, 0x00, 0x60, 0x40, 0x15, 0x30, 0x2d, 0x01, 0x22, - 0xaa, 0x18, 0x18, 0x0e, 0xaa, 0x56, 0x03, 0x66, 0x03, 0x02, 0x28, 0x03, - 0x38, 0x03, 0x02, 0x03, 0x00, 0xb8, 0xff, 0xf0, 0x40, 0x28, 0x09, 0x0d, - 0x48, 0x00, 0x04, 0x27, 0xad, 0x10, 0x1d, 0x01, 0x0f, 0x1d, 0x01, 0x1d, - 0x1d, 0x01, 0x09, 0xad, 0x00, 0x13, 0x10, 0x13, 0x20, 0x13, 0x60, 0x13, - 0xb0, 0x13, 0xc0, 0x13, 0xd0, 0x13, 0x07, 0x07, 0x13, 0x13, 0x00, 0xad, - 0x01, 0xb3, 0x00, 0x3f, 0xe1, 0x33, 0x2f, 0x5e, 0x5d, 0xe1, 0x11, 0x33, - 0x2f, 0x5d, 0x71, 0xe1, 0x01, 0x2f, 0x33, 0x2b, 0x33, 0x5d, 0x5d, 0xe1, - 0x33, 0x2f, 0xe1, 0x5d, 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x01, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x66, 0x03, 0x9c, 0xfd, 0xbf, 0x12, - 0x1f, 0x29, 0x18, 0x17, 0x2a, 0x20, 0x12, 0x12, 0x20, 0x2a, 0x17, 0x18, - 0x29, 0x1f, 0x12, 0x12, 0x1f, 0x29, 0x18, 0x17, 0x2a, 0x20, 0x12, 0x12, - 0x20, 0x2a, 0x17, 0x18, 0x29, 0x1f, 0x12, 0x02, 0x87, 0x96, 0x96, 0xfe, - 0xee, 0x23, 0x2f, 0x1e, 0x0d, 0x0d, 0x1e, 0x2f, 0x23, 0x21, 0x2f, 0x1f, - 0x0e, 0x0e, 0x1f, 0x2f, 0x02, 0xdb, 0x23, 0x2f, 0x1e, 0x0d, 0x0d, 0x1e, - 0x2f, 0x23, 0x21, 0x2f, 0x1f, 0x0e, 0x0e, 0x1f, 0x2f, 0x00, 0x00, 0x03, - 0x00, 0x73, 0xff, 0xb4, 0x04, 0x2f, 0x04, 0x91, 0x00, 0x1a, 0x00, 0x24, - 0x00, 0x2d, 0x00, 0x5c, 0x40, 0x3b, 0x27, 0x1f, 0x28, 0x1e, 0x04, 0x1b, - 0x25, 0x48, 0x17, 0x18, 0x16, 0x15, 0x07, 0x08, 0x0a, 0x09, 0x08, 0x0d, - 0x00, 0x57, 0x2f, 0x40, 0x2f, 0xd0, 0x2f, 0xe0, 0x2f, 0x03, 0x0f, 0x2f, - 0x01, 0x06, 0x1b, 0x48, 0x0d, 0x56, 0x2e, 0x28, 0x1e, 0x27, 0x1f, 0x04, - 0x2b, 0x22, 0x50, 0x07, 0x0a, 0x18, 0x15, 0x04, 0x05, 0x16, 0x12, 0x10, - 0x2b, 0x50, 0x08, 0x05, 0x16, 0x00, 0x3f, 0xc6, 0xe1, 0x3f, 0xc6, 0x12, - 0x17, 0x39, 0xe1, 0x11, 0x17, 0x39, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, - 0x5d, 0x10, 0xf6, 0x11, 0x17, 0x39, 0xe1, 0x11, 0x17, 0x39, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x27, 0x07, 0x27, 0x37, 0x26, 0x26, - 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, - 0x16, 0x05, 0x14, 0x16, 0x17, 0x01, 0x26, 0x26, 0x23, 0x22, 0x06, 0x05, - 0x34, 0x27, 0x01, 0x16, 0x16, 0x33, 0x32, 0x36, 0x04, 0x2f, 0x43, 0x7d, - 0xb2, 0x6f, 0x7d, 0x62, 0x44, 0x83, 0x50, 0x3f, 0x46, 0x43, 0x7c, 0xb3, - 0x6f, 0x3f, 0x71, 0x31, 0x44, 0x83, 0x50, 0x3e, 0x45, 0xfd, 0x00, 0x13, - 0x16, 0x01, 0x8d, 0x1d, 0x4b, 0x2d, 0x9a, 0x87, 0x02, 0x44, 0x27, 0xfe, - 0x72, 0x1f, 0x48, 0x2d, 0x9a, 0x87, 0x02, 0x27, 0x89, 0xd5, 0x91, 0x4c, - 0x35, 0x6d, 0x4a, 0x83, 0x48, 0xd5, 0x89, 0x88, 0xd3, 0x91, 0x4b, 0x1d, - 0x1c, 0x6c, 0x49, 0x81, 0x49, 0xd1, 0x86, 0x54, 0x83, 0x33, 0x02, 0x87, - 0x11, 0x12, 0xcf, 0xd1, 0x9f, 0x63, 0xfd, 0x7b, 0x11, 0x10, 0xd3, 0x00, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x08, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0xa3, 0x00, 0x00, 0x15, - 0xb4, 0x01, 0x1b, 0x11, 0x26, 0x01, 0xb8, 0xff, 0x9b, 0xb4, 0x21, 0x1b, - 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x08, 0x06, 0x21, 0x02, 0x26, 0x00, 0x58, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0x60, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x27, 0x11, 0x26, 0x01, 0x57, 0x1b, 0x21, 0x0c, 0x19, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x08, 0x06, 0x21, 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x4b, 0x08, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x1b, 0x11, 0x26, - 0x01, 0x00, 0x23, 0x1b, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x08, 0x05, 0xd9, - 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0x02, 0x00, - 0x00, 0x19, 0xb6, 0x02, 0x01, 0x24, 0x11, 0x26, 0x02, 0x01, 0xb8, 0xff, - 0xfb, 0xb4, 0x1b, 0x2f, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, - 0x0e, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x2f, 0x11, 0x26, 0x01, 0x67, - 0x23, 0x29, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0x00, 0x02, 0x00, 0xae, 0xfe, 0x14, 0x04, 0x3f, 0x06, 0x14, 0x00, 0x20, - 0x00, 0x31, 0x00, 0x38, 0x40, 0x1f, 0x2f, 0x48, 0x0a, 0x57, 0x33, 0x10, - 0x33, 0x01, 0x27, 0x20, 0x1f, 0x15, 0x1b, 0x47, 0x1c, 0x54, 0x32, 0x1d, - 0x00, 0x1b, 0x1b, 0x2c, 0x50, 0x15, 0x0f, 0x16, 0x21, 0x50, 0x00, 0x05, - 0x10, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0x01, 0x10, - 0xf6, 0xe1, 0x32, 0x32, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, - 0x01, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x2e, 0x02, 0x27, 0x23, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x07, 0x25, 0x22, 0x0e, 0x02, 0x07, 0x15, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x01, 0x64, 0x17, 0x3a, 0x4d, - 0x60, 0x3c, 0x5e, 0x9a, 0x6d, 0x3c, 0x3c, 0x6d, 0x9a, 0x5e, 0x3b, 0x60, - 0x4d, 0x3b, 0x17, 0x0c, 0x03, 0x03, 0x02, 0x04, 0xb6, 0xb6, 0x08, 0x01, - 0x1f, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, 0x41, 0x6c, 0x51, 0x87, 0x7f, - 0x7f, 0x03, 0xb6, 0x23, 0x3d, 0x2d, 0x1b, 0x48, 0x8f, 0xd4, 0x8c, 0x8d, - 0xd5, 0x90, 0x49, 0x1a, 0x2b, 0x3a, 0x20, 0x22, 0x1f, 0x1a, 0x37, 0x10, - 0xfe, 0x2b, 0x08, 0x00, 0xfe, 0x36, 0x94, 0x11, 0x2e, 0x5e, 0x8c, 0x5f, - 0x29, 0x65, 0x9d, 0x6b, 0x37, 0xda, 0xcc, 0xd0, 0xce, 0x00, 0xff, 0xff, - 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x5c, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xb1, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x02, 0x01, 0x2c, 0x11, 0x26, 0x02, 0x01, 0x0b, 0x23, 0x37, 0x00, 0x0f, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x06, 0xc1, 0x02, 0x26, 0x00, 0x24, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, 0x00, 0x33, 0x01, 0x52, 0x00, 0x15, - 0xb4, 0x02, 0x17, 0x05, 0x26, 0x02, 0xb8, 0xff, 0xff, 0xb4, 0x15, 0x16, - 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x05, 0x6f, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x06, 0x01, 0x4d, 0xe6, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x35, 0x11, 0x26, 0x02, 0x23, 0x33, 0x34, 0x0c, 0x22, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0xdd, 0x07, 0x40, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4e, 0x00, 0x21, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x1a, - 0x05, 0x26, 0x02, 0x00, 0x1f, 0x15, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, - 0x05, 0xee, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4e, - 0xd4, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x38, 0x11, 0x26, 0x02, 0x25, - 0x3d, 0x33, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0xfe, 0x42, 0x04, 0xdd, 0x05, 0xbc, 0x02, 0x26, - 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x01, 0x51, 0x03, 0x62, 0x00, 0x00, - 0x00, 0x14, 0x40, 0x0d, 0x02, 0x80, 0x27, 0x01, 0x30, 0x27, 0x01, 0x00, - 0x27, 0x27, 0x00, 0x00, 0x25, 0x01, 0x2b, 0x5d, 0x5d, 0x35, 0xff, 0xff, - 0x00, 0x5e, 0xfe, 0x42, 0x03, 0xb8, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x51, 0x02, 0x5a, 0x00, 0x00, 0x00, 0x20, - 0x40, 0x16, 0x02, 0xf0, 0x45, 0x01, 0xa0, 0x45, 0x01, 0x90, 0x45, 0x01, - 0x80, 0x45, 0x01, 0x30, 0x45, 0x01, 0x00, 0x45, 0x45, 0x00, 0x00, 0x25, - 0x01, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0xff, 0xff, 0x00, 0x7d, - 0xff, 0xec, 0x04, 0x98, 0x07, 0x73, 0x02, 0x26, 0x00, 0x26, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x01, 0x0a, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x30, 0x05, 0x26, 0x01, 0xcd, 0x24, 0x2a, 0x18, 0x20, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x03, 0x6f, 0x06, 0x21, 0x02, 0x26, 0x00, 0x46, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x76, 0x4a, 0x00, 0x00, 0x17, 0x40, 0x0e, 0x01, 0x2c, 0x11, 0x26, - 0x01, 0x10, 0x20, 0x01, 0xa7, 0x20, 0x26, 0x05, 0x0d, 0x25, 0x01, 0x2b, - 0x5d, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x04, 0x98, 0x07, 0x73, 0x02, 0x26, 0x00, 0x26, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4b, 0x00, 0xb4, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x24, - 0x05, 0x26, 0x01, 0x77, 0x2c, 0x24, 0x18, 0x20, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0x8f, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x46, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4b, - 0xf5, 0x00, 0x00, 0x17, 0x40, 0x0e, 0x01, 0x20, 0x11, 0x26, 0x01, 0x10, - 0x28, 0x01, 0x53, 0x28, 0x20, 0x05, 0x0d, 0x25, 0x01, 0x2b, 0x5d, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x04, 0x98, - 0x07, 0x37, 0x02, 0x26, 0x00, 0x26, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, - 0x02, 0x00, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x2f, 0x05, 0x26, - 0x01, 0x80, 0x24, 0x2c, 0x18, 0x20, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0x6f, 0x05, 0xe5, - 0x02, 0x26, 0x00, 0x46, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x01, 0x33, - 0x00, 0x00, 0x00, 0x17, 0x40, 0x0e, 0x01, 0x2b, 0x11, 0x26, 0x01, 0x10, - 0x20, 0x01, 0x4d, 0x20, 0x28, 0x05, 0x0d, 0x25, 0x01, 0x2b, 0x5d, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x04, 0x98, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x26, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4c, - 0x00, 0xa8, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x29, 0x05, 0x26, - 0x01, 0x6b, 0x2f, 0x24, 0x18, 0x20, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xa0, 0x06, 0x21, - 0x02, 0x26, 0x00, 0x46, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4c, 0x06, 0x00, - 0x00, 0x17, 0x40, 0x0e, 0x01, 0x25, 0x11, 0x26, 0x01, 0x10, 0x2b, 0x01, - 0x64, 0x2b, 0x20, 0x05, 0x0d, 0x25, 0x01, 0x2b, 0x5d, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xfc, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x27, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4c, 0x00, 0x4a, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x1d, 0x05, 0x26, 0x02, 0xb8, 0xff, - 0xb7, 0xb4, 0x23, 0x18, 0x06, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x05, 0x52, 0x06, 0x14, - 0x02, 0x26, 0x00, 0x47, 0x00, 0x00, 0x01, 0x07, 0x02, 0x38, 0x02, 0xd9, - 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x5e, 0x3e, 0x3e, 0x1d, 0x1d, 0x25, - 0x01, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00, 0x04, 0xfc, - 0x05, 0xb6, 0x02, 0x06, 0x00, 0x92, 0x00, 0x00, 0x00, 0x02, 0x00, 0x71, - 0xff, 0xec, 0x04, 0x9e, 0x06, 0x14, 0x00, 0x27, 0x00, 0x38, 0x00, 0x55, - 0x40, 0x31, 0x1f, 0x1b, 0x00, 0x2d, 0x47, 0x26, 0x1d, 0x1d, 0x0b, 0x22, - 0x26, 0x55, 0x3a, 0x10, 0x3a, 0x01, 0x36, 0x48, 0x0b, 0x56, 0x39, 0x27, - 0x15, 0x25, 0x1d, 0x4f, 0x22, 0x1e, 0x1e, 0x10, 0x20, 0x00, 0x33, 0x50, - 0x16, 0x00, 0x10, 0x10, 0x10, 0x20, 0x10, 0x03, 0x10, 0x10, 0x28, 0x50, - 0x00, 0x06, 0x16, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x5d, 0x33, 0xe1, 0x3f, - 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x5d, - 0x10, 0xe6, 0x32, 0x11, 0x39, 0x2f, 0x10, 0xe1, 0x32, 0x32, 0x32, 0x31, - 0x30, 0x25, 0x23, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x33, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x35, 0x21, 0x35, 0x21, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x23, - 0x25, 0x32, 0x3e, 0x02, 0x37, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, - 0x15, 0x14, 0x16, 0x03, 0x54, 0x08, 0x16, 0x3b, 0x4d, 0x60, 0x3c, 0x5d, - 0x9a, 0x6e, 0x3c, 0x3c, 0x6e, 0x9a, 0x5d, 0x3b, 0x60, 0x4d, 0x3c, 0x16, - 0x0c, 0x03, 0x03, 0x02, 0x04, 0xfe, 0x85, 0x01, 0x7b, 0xb6, 0x9c, 0x9c, - 0x93, 0xfe, 0xc6, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, 0x41, 0x6c, 0x51, - 0x87, 0x7f, 0x7f, 0x93, 0x22, 0x3d, 0x2e, 0x1a, 0x46, 0x8a, 0xcc, 0x86, - 0x87, 0xce, 0x8b, 0x47, 0x19, 0x2c, 0x3a, 0x20, 0x21, 0x1f, 0x1a, 0x37, - 0x10, 0x9e, 0x89, 0xb6, 0xb6, 0x89, 0xfb, 0x2b, 0x83, 0x2c, 0x59, 0x85, - 0x5a, 0x27, 0x61, 0x95, 0x66, 0x34, 0xcf, 0xc3, 0xc6, 0xc3, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x06, 0xc1, 0x02, 0x26, 0x00, 0x28, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, 0x00, 0x0a, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x0e, 0x05, 0x26, 0x01, 0x02, 0x0c, 0x0d, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, - 0xff, 0xec, 0x03, 0xe1, 0x05, 0x6f, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x4d, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2a, - 0x11, 0x26, 0x02, 0x11, 0x28, 0x29, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, - 0x07, 0x40, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4e, - 0xff, 0xfb, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x11, 0x05, 0x26, - 0x01, 0x06, 0x16, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x05, 0xee, - 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4e, 0xea, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2d, 0x11, 0x26, 0x02, 0x0f, 0x32, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x1a, 0x02, 0x26, 0x00, 0x28, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x01, 0x3f, 0x01, 0x35, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x17, 0x05, 0x26, 0x01, 0x07, 0x0c, 0x14, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, - 0xff, 0xec, 0x03, 0xe1, 0x05, 0xe5, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4f, 0x01, 0x2b, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x33, 0x11, 0x26, 0x02, 0x0c, 0x28, 0x30, 0x05, 0x0f, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x42, - 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x51, 0x02, 0x21, 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, - 0xc1, 0xb4, 0x12, 0x12, 0x00, 0x00, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, - 0x00, 0x71, 0xfe, 0x61, 0x03, 0xe1, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x48, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x51, 0x02, 0x3b, 0x00, 0x1f, 0x00, 0x27, - 0x40, 0x13, 0x02, 0xf0, 0x3b, 0x01, 0xe0, 0x3b, 0x01, 0xa0, 0x3b, 0x01, - 0x90, 0x3b, 0x01, 0x50, 0x3b, 0x01, 0x00, 0x3b, 0x01, 0xb8, 0xff, 0xca, - 0xb4, 0x3b, 0x3b, 0x1a, 0x1a, 0x25, 0x01, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4c, - 0xff, 0xf9, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x11, 0x05, 0x26, - 0x01, 0x04, 0x17, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x06, 0x21, - 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4c, 0xe4, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2d, 0x11, 0x26, 0x02, 0x09, 0x33, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x7d, 0xff, 0xec, 0x04, 0xf2, 0x07, 0x73, 0x02, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0x00, 0xd7, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x2c, 0x05, 0x26, 0x01, 0x6d, 0x34, 0x2c, 0x0c, 0x01, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x25, - 0xfe, 0x14, 0x03, 0xfc, 0x06, 0x21, 0x02, 0x26, 0x00, 0x4a, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x4b, 0xc6, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x03, 0x5f, - 0x11, 0x26, 0x03, 0x03, 0x67, 0x5f, 0x27, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x04, 0xf2, - 0x07, 0x40, 0x02, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4e, - 0x00, 0xc9, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x31, 0x05, 0x26, - 0x01, 0x5f, 0x36, 0x2c, 0x0c, 0x01, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x25, 0xfe, 0x14, 0x03, 0xfc, 0x05, 0xee, - 0x02, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4e, 0xb1, 0x00, - 0x00, 0x15, 0xb4, 0x03, 0x64, 0x11, 0x26, 0x03, 0xb8, 0xff, 0xef, 0xb4, - 0x69, 0x5f, 0x27, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x04, 0xf2, 0x07, 0x37, 0x02, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x02, 0x0c, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x37, 0x05, 0x26, 0x01, 0x5f, 0x2c, 0x34, - 0x0c, 0x01, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x25, 0xfe, 0x14, 0x03, 0xfc, 0x05, 0xe5, 0x02, 0x26, 0x00, 0x4a, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x15, - 0xb4, 0x03, 0x6a, 0x11, 0x26, 0x03, 0xb8, 0xff, 0xec, 0xb4, 0x5f, 0x67, - 0x27, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x7d, 0xfe, 0x3b, 0x04, 0xf2, 0x05, 0xcb, 0x02, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x01, 0x07, 0x02, 0x39, 0x01, 0x17, 0x00, 0x00, 0x00, 0x0b, - 0xb6, 0x01, 0x51, 0x2c, 0x32, 0x0c, 0x01, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x25, 0xfe, 0x14, 0x03, 0xfc, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x02, 0x3a, 0x2d, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x03, 0x64, 0x11, 0x26, 0x03, 0x1c, 0x65, 0x5f, 0x27, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0xd5, 0x07, 0x73, 0x02, 0x26, 0x00, 0x2b, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4b, 0x00, 0x7f, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, - 0x0c, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x14, 0x0c, 0x05, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x12, 0x07, 0xaa, 0x02, 0x26, 0x00, 0x4b, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4b, 0x00, 0x2b, 0x01, 0x89, 0x00, 0x1f, 0x40, 0x14, - 0x70, 0x0d, 0x01, 0x70, 0x0c, 0x01, 0x01, 0x70, 0x1a, 0x01, 0x1a, 0x02, - 0x26, 0x01, 0x19, 0x22, 0x1a, 0x0b, 0x18, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0x2b, 0x5d, 0x35, 0x5d, 0x5d, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x05, 0x9c, 0x05, 0xb6, 0x00, 0x13, 0x00, 0x17, 0x00, 0x56, 0x40, 0x2f, - 0x14, 0x04, 0x0c, 0x5a, 0x07, 0x0b, 0x65, 0x19, 0xb0, 0x19, 0x01, 0xaf, - 0x19, 0x01, 0x10, 0x19, 0x01, 0x17, 0x03, 0x0f, 0x5a, 0x00, 0x10, 0x64, - 0x18, 0x0e, 0x5f, 0x17, 0x16, 0x0a, 0x12, 0x60, 0x13, 0x07, 0x03, 0x13, - 0x17, 0x13, 0x17, 0x13, 0x01, 0x10, 0x0b, 0x12, 0x05, 0x01, 0x03, 0x00, - 0x3f, 0x33, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, - 0x10, 0xe1, 0x32, 0x32, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0x32, 0xe1, 0x32, - 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x32, 0x32, 0x31, 0x30, - 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, - 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x35, 0x01, 0x35, 0x21, 0x15, - 0xc7, 0xba, 0x02, 0x9a, 0xba, 0xc7, 0xc7, 0xba, 0xfd, 0x66, 0xba, 0xc7, - 0x04, 0x1b, 0xfd, 0x66, 0x04, 0xc3, 0xf3, 0xf3, 0xf3, 0xf3, 0x96, 0xfb, - 0xd3, 0x02, 0xaa, 0xfd, 0x56, 0x04, 0x2d, 0x96, 0xfe, 0x8b, 0xdf, 0xdf, - 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x04, 0x12, 0x06, 0x14, 0x00, 0x21, - 0x00, 0x55, 0x40, 0x34, 0x13, 0x0b, 0x00, 0x47, 0x21, 0x55, 0x23, 0x10, - 0x23, 0x60, 0x23, 0x80, 0x23, 0x03, 0x17, 0x16, 0x12, 0x0a, 0x47, 0x0f, - 0x0b, 0x54, 0x22, 0x15, 0x0d, 0x4f, 0x12, 0xbf, 0x0e, 0xcf, 0x0e, 0x02, - 0x0e, 0x0e, 0x10, 0x17, 0x04, 0x50, 0x00, 0x1d, 0x10, 0x1d, 0x20, 0x1d, - 0x03, 0x1d, 0x10, 0x10, 0x00, 0x0b, 0x00, 0x15, 0x00, 0x3f, 0x32, 0x3f, - 0x3f, 0x5d, 0xe1, 0x33, 0x12, 0x39, 0x2f, 0x5d, 0x33, 0xe1, 0x32, 0x01, - 0x10, 0xf6, 0x32, 0xe1, 0x32, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x12, - 0x39, 0x31, 0x30, 0x21, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, - 0x11, 0x23, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x21, 0x15, 0x21, - 0x15, 0x07, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, 0x11, 0x03, 0x5c, - 0x69, 0x70, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x9c, 0x9c, 0xb6, 0x01, 0x7b, - 0xfe, 0x85, 0x08, 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, 0xb7, 0xb9, 0x02, - 0x9a, 0x82, 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xf0, 0x04, 0xd5, 0x89, - 0xb6, 0xb6, 0x89, 0xb8, 0x90, 0x2b, 0x3f, 0x2a, 0x14, 0xbf, 0xd2, 0xfd, - 0x5c, 0x00, 0xff, 0xff, 0xff, 0xf5, 0x00, 0x00, 0x02, 0xc4, 0x07, 0x35, - 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0xfe, 0xf3, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x14, 0x05, 0x26, 0x01, 0x01, - 0x15, 0x23, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0xff, 0xa3, 0x00, 0x00, 0x02, 0x72, 0x05, 0xe3, 0x02, 0x26, - 0x00, 0xf3, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0xfe, 0xa1, 0x00, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0c, 0x11, 0x26, 0x01, 0x01, 0x0d, 0x1b, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x3d, 0x00, 0x00, 0x02, 0x7c, 0x06, 0xc1, 0x02, 0x26, 0x00, 0x2c, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, 0xff, 0x22, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x0e, 0x05, 0x26, 0x01, 0x01, 0x0c, 0x0d, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0xff, 0xeb, - 0x00, 0x00, 0x02, 0x2a, 0x05, 0x6f, 0x02, 0x26, 0x00, 0xf3, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4d, 0xfe, 0xd0, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x06, 0x11, 0x26, 0x01, 0x01, 0x04, 0x05, 0x01, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, - 0x02, 0x8a, 0x07, 0x40, 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4e, 0xff, 0x0f, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x11, - 0x05, 0x26, 0x01, 0x02, 0x16, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0xff, 0xde, 0x00, 0x00, 0x02, 0x38, - 0x05, 0xee, 0x02, 0x26, 0x00, 0xf3, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4e, - 0xfe, 0xbd, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x09, 0x11, 0x26, - 0x01, 0x02, 0x0e, 0x04, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0xfe, 0x42, 0x02, 0x64, 0x05, 0xb6, - 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x01, 0x51, 0x00, 0x9c, - 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x00, 0x19, 0x12, 0x01, 0x00, 0x25, - 0x01, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x44, 0xfe, 0x42, 0x01, 0x83, - 0x05, 0xe5, 0x02, 0x26, 0x00, 0x4c, 0x00, 0x00, 0x01, 0x06, 0x01, 0x51, - 0x25, 0x00, 0x00, 0x10, 0x40, 0x0a, 0x02, 0x6f, 0x25, 0x01, 0x00, 0x25, - 0x25, 0x00, 0x00, 0x25, 0x01, 0x2b, 0x5d, 0x35, 0xff, 0xff, 0x00, 0x52, - 0x00, 0x00, 0x02, 0x64, 0x07, 0x37, 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4f, 0x00, 0x50, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x17, 0x05, 0x26, 0x01, 0x00, 0x0c, 0x14, 0x01, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, - 0x01, 0x64, 0x04, 0x4a, 0x00, 0x03, 0x00, 0x1a, 0x40, 0x0e, 0x10, 0x05, - 0x20, 0x05, 0x02, 0x00, 0x47, 0x01, 0x54, 0x04, 0x02, 0x0f, 0x00, 0x15, - 0x00, 0x3f, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x31, 0x30, 0x21, 0x23, - 0x11, 0x33, 0x01, 0x64, 0xb6, 0xb6, 0x04, 0x4a, 0xff, 0xff, 0x00, 0x52, - 0xfe, 0x7b, 0x04, 0x29, 0x05, 0xb6, 0x00, 0x26, 0x00, 0x2c, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x2d, 0x02, 0xb6, 0x00, 0x00, 0x00, 0x38, 0x40, 0x0e, - 0x01, 0x18, 0x7f, 0x18, 0x01, 0x4f, 0x18, 0x01, 0x18, 0x40, 0x07, 0x07, - 0x48, 0x18, 0xb8, 0xff, 0xc0, 0x40, 0x17, 0x06, 0x06, 0x48, 0xbf, 0x21, - 0x01, 0xa0, 0x21, 0x01, 0x8f, 0x21, 0x01, 0x50, 0x21, 0x01, 0x0f, 0x21, - 0x01, 0x21, 0x40, 0x07, 0x07, 0x48, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x2b, 0x2b, 0x5d, 0x5d, 0x11, 0x35, 0xff, 0xff, 0x00, 0xa0, 0xfe, 0x14, - 0x03, 0x87, 0x05, 0xe5, 0x00, 0x26, 0x00, 0x4c, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x4d, 0x02, 0x12, 0x00, 0x00, 0x00, 0x2e, 0x40, 0x20, 0x03, 0x02, - 0x1e, 0xcf, 0x1e, 0x01, 0xdf, 0x35, 0x01, 0x9f, 0x35, 0x01, 0x80, 0x35, - 0x01, 0x5f, 0x35, 0x01, 0x40, 0x35, 0x01, 0x20, 0x35, 0x01, 0x00, 0x35, - 0x01, 0x35, 0x40, 0x06, 0x06, 0x48, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x11, 0x35, 0x35, 0xff, 0xff, 0xff, 0x48, 0xfe, 0x7b, - 0x02, 0x64, 0x07, 0x73, 0x02, 0x26, 0x00, 0x2d, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4b, 0xfe, 0xca, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x14, - 0x05, 0x26, 0x01, 0x00, 0x1c, 0x14, 0x0d, 0x0e, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0xff, 0xbc, 0xfe, 0x14, 0x02, 0x57, - 0x06, 0x21, 0x02, 0x26, 0x02, 0x37, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, - 0xfe, 0xbd, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x14, 0x11, 0x26, - 0x01, 0x00, 0x1c, 0x14, 0x0d, 0x0e, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x3b, 0x04, 0xa2, 0x05, 0xb6, - 0x02, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x01, 0x06, 0x02, 0x39, 0x73, 0x00, - 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xb1, 0xb4, 0x0d, 0x13, 0x05, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0xae, 0xfe, 0x3b, 0x03, 0xf0, - 0x06, 0x14, 0x02, 0x26, 0x00, 0x4e, 0x00, 0x00, 0x01, 0x06, 0x02, 0x39, - 0x21, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xc4, 0xb4, 0x0f, 0x15, - 0x0a, 0x05, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, - 0x03, 0xf0, 0x04, 0x4a, 0x00, 0x11, 0x00, 0x49, 0x40, 0x0a, 0x01, 0x10, - 0x10, 0x0e, 0x0f, 0x0f, 0x44, 0x11, 0x01, 0x11, 0xb8, 0xff, 0xc0, 0x40, - 0x1c, 0x07, 0x0a, 0x48, 0x11, 0x10, 0x11, 0x11, 0x13, 0x0f, 0x13, 0x2f, - 0x13, 0x02, 0x07, 0x07, 0x03, 0x47, 0x04, 0x54, 0x12, 0x0c, 0x01, 0x0e, - 0x05, 0x0f, 0x04, 0x00, 0x15, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x39, 0x39, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, - 0x5d, 0x33, 0x11, 0x33, 0x39, 0x11, 0x33, 0x31, 0x30, 0x21, 0x01, 0x07, - 0x11, 0x23, 0x11, 0x33, 0x11, 0x14, 0x06, 0x07, 0x06, 0x07, 0x37, 0x01, - 0x33, 0x01, 0x01, 0x03, 0x23, 0xfe, 0xac, 0x6d, 0xb4, 0xb4, 0x05, 0x03, - 0x04, 0x04, 0x83, 0x01, 0x33, 0xcd, 0xfe, 0x6f, 0x01, 0xac, 0x01, 0xe9, - 0x51, 0xfe, 0x68, 0x04, 0x4a, 0xfe, 0xe7, 0x3c, 0x66, 0x26, 0x2c, 0x24, - 0xb0, 0x01, 0x81, 0xfe, 0x16, 0xfd, 0xa0, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x03, 0xbe, 0x07, 0x73, 0x02, 0x26, 0x00, 0x2f, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0xff, 0x65, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, - 0x12, 0x05, 0x26, 0x01, 0xb8, 0xff, 0x70, 0xb4, 0x06, 0x0c, 0x00, 0x04, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xab, - 0x00, 0x00, 0x02, 0x34, 0x07, 0xac, 0x02, 0x26, 0x00, 0x4f, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0xff, 0x22, 0x01, 0x8b, 0x00, 0x1f, 0x40, 0x14, - 0x70, 0x03, 0x01, 0x70, 0x02, 0x01, 0x01, 0x70, 0x10, 0x01, 0x10, 0x02, - 0x26, 0x01, 0x66, 0x04, 0x0a, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0x2b, 0x5d, 0x35, 0x5d, 0x5d, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x3b, - 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x2f, 0x00, 0x00, 0x01, 0x06, - 0x02, 0x39, 0x2d, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xdd, 0xb4, - 0x06, 0x0c, 0x00, 0x04, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0x66, - 0xfe, 0x3b, 0x01, 0x6c, 0x06, 0x14, 0x02, 0x26, 0x00, 0x4f, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x39, 0xfe, 0xf7, 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, - 0x01, 0xff, 0xe0, 0xb4, 0x04, 0x0a, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb7, 0x02, 0x26, - 0x00, 0x2f, 0x00, 0x00, 0x01, 0x07, 0x02, 0x38, 0x01, 0x00, 0xff, 0xa3, - 0x00, 0x16, 0x40, 0x0d, 0x01, 0x0b, 0x03, 0x01, 0x10, 0x06, 0x01, 0x60, - 0x06, 0x0c, 0x02, 0x04, 0x25, 0x01, 0x2b, 0x5d, 0x35, 0x00, 0x3f, 0x35, - 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x02, 0xb4, 0x06, 0x14, 0x02, 0x26, - 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x02, 0x38, 0x3b, 0x00, 0x00, 0x18, - 0x40, 0x11, 0x01, 0x04, 0x40, 0x0e, 0x10, 0x48, 0x04, 0x40, 0x06, 0x09, - 0x48, 0x5e, 0x04, 0x04, 0x03, 0x03, 0x25, 0x01, 0x2b, 0x2b, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x26, - 0x00, 0x2f, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x01, 0xe3, 0xfd, 0x65, - 0x00, 0x0b, 0xb6, 0x01, 0xab, 0x06, 0x0e, 0x00, 0x04, 0x25, 0x01, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x02, 0xa2, 0x06, 0x14, - 0x00, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x01, 0x2d, - 0xfd, 0x38, 0x00, 0x2b, 0x40, 0x16, 0xff, 0x13, 0x01, 0xef, 0x13, 0x01, - 0x9f, 0x13, 0x01, 0x8f, 0x13, 0x01, 0x7f, 0x13, 0x01, 0x5f, 0x13, 0x01, - 0x1f, 0x13, 0x01, 0x01, 0xb8, 0x01, 0x2e, 0xb4, 0x04, 0x0c, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x00, - 0x00, 0x01, 0x00, 0x1d, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x0d, - 0x00, 0x61, 0x40, 0x32, 0x0b, 0x06, 0x05, 0x0c, 0x05, 0x00, 0x03, 0x04, - 0x0d, 0x04, 0x04, 0x05, 0x05, 0x0a, 0x08, 0x08, 0x0f, 0xaf, 0x0f, 0x01, - 0x10, 0x0f, 0x01, 0x0c, 0x0d, 0x0d, 0x06, 0x03, 0x07, 0x5a, 0x0b, 0x00, - 0x0a, 0x64, 0x0e, 0x05, 0x04, 0x0d, 0x0c, 0x04, 0x0c, 0x04, 0x0c, 0x01, - 0x07, 0x5f, 0x0a, 0x12, 0x01, 0x03, 0x00, 0x3f, 0x3f, 0xe1, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x01, 0x10, 0xf6, 0x32, 0x32, - 0xe1, 0x32, 0x32, 0x33, 0x2f, 0x33, 0x5d, 0x5d, 0x11, 0x33, 0x11, 0x12, - 0x39, 0x2f, 0x33, 0x10, 0x7d, 0x87, 0x04, 0xc4, 0xc4, 0x10, 0x87, 0xc4, - 0xc4, 0x31, 0x30, 0x13, 0x11, 0x33, 0x11, 0x37, 0x17, 0x05, 0x11, 0x21, - 0x15, 0x21, 0x11, 0x07, 0x27, 0xc7, 0xba, 0xe3, 0x4e, 0xfe, 0xcf, 0x02, - 0x3d, 0xfd, 0x09, 0x61, 0x49, 0x02, 0xa4, 0x03, 0x12, 0xfd, 0x63, 0x8f, - 0x7d, 0xbe, 0xfe, 0x39, 0xa6, 0x01, 0xf8, 0x3c, 0x7d, 0x00, 0x00, 0x01, - 0xff, 0xf6, 0x00, 0x00, 0x02, 0x1d, 0x06, 0x14, 0x00, 0x0b, 0x00, 0x69, - 0x40, 0x3b, 0x40, 0x0d, 0x50, 0x0d, 0x02, 0x09, 0x06, 0x05, 0x0a, 0x05, - 0x00, 0x03, 0x04, 0x0b, 0x0a, 0x0b, 0x0b, 0x08, 0x04, 0xdd, 0x05, 0x01, - 0xbb, 0x05, 0xcb, 0x05, 0x02, 0x0f, 0x05, 0x1f, 0x05, 0x2f, 0x05, 0x03, - 0x06, 0x05, 0x05, 0x06, 0x03, 0x07, 0x47, 0x09, 0x00, 0x08, 0x54, 0x0c, - 0x0b, 0x0a, 0x05, 0x04, 0x0a, 0x04, 0x0a, 0x04, 0x01, 0x07, 0x15, 0x01, - 0x00, 0x00, 0x3f, 0x3f, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, - 0x33, 0x01, 0x10, 0xf6, 0x32, 0x32, 0xe1, 0x32, 0x32, 0x32, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x7d, 0x87, 0x04, 0xc4, - 0xc4, 0x10, 0x87, 0xc4, 0xc4, 0x01, 0x5d, 0x31, 0x30, 0x13, 0x11, 0x33, - 0x11, 0x37, 0x17, 0x07, 0x11, 0x23, 0x11, 0x07, 0x27, 0xae, 0xb6, 0x6b, - 0x4e, 0xb9, 0xb6, 0x6a, 0x4e, 0x02, 0xf6, 0x03, 0x1e, 0xfd, 0x59, 0x45, - 0x79, 0x78, 0xfd, 0x3f, 0x02, 0x4a, 0x46, 0x79, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x05, 0x0e, 0x07, 0x73, 0x02, 0x26, 0x00, 0x31, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x00, 0xf2, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x24, 0x05, 0x26, 0x01, 0x55, 0x18, 0x1e, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x12, 0x06, 0x21, 0x02, 0x26, 0x00, 0x51, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x76, 0x6f, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x25, 0x11, 0x26, - 0x01, 0x5c, 0x19, 0x1f, 0x0b, 0x17, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x3b, 0x05, 0x0e, 0x05, 0xb6, - 0x02, 0x26, 0x00, 0x31, 0x00, 0x00, 0x01, 0x07, 0x02, 0x39, 0x00, 0xd9, - 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xe1, 0xb4, 0x18, 0x1e, - 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0xae, 0xfe, 0x3b, - 0x04, 0x12, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x51, 0x00, 0x00, 0x01, 0x06, - 0x02, 0x39, 0x4c, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xde, 0xb4, - 0x19, 0x1f, 0x0b, 0x17, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x05, 0x0e, 0x07, 0x73, 0x02, 0x26, 0x00, 0x31, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4c, 0x00, 0x9c, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x1d, 0x05, 0x26, 0x01, 0x00, 0x23, 0x18, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x12, 0x06, 0x21, 0x02, 0x26, 0x00, 0x51, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x4c, 0x0c, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x1e, 0x11, 0x26, 0x01, - 0xb8, 0xff, 0xfa, 0xb4, 0x24, 0x19, 0x0b, 0x17, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x04, 0xa1, - 0x05, 0xb6, 0x00, 0x27, 0x00, 0x51, 0x00, 0x8f, 0x00, 0x00, 0x01, 0x06, - 0x02, 0x07, 0xe8, 0x00, 0x00, 0x29, 0x40, 0x1d, 0x00, 0x18, 0x55, 0x27, - 0xef, 0x27, 0x01, 0xbf, 0x27, 0x01, 0x9f, 0x27, 0x01, 0x5f, 0x27, 0x01, - 0x2f, 0x27, 0x01, 0x27, 0x40, 0x08, 0x08, 0x48, 0x27, 0x40, 0x06, 0x06, - 0x48, 0x2b, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x34, 0x00, - 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7b, 0x05, 0x0e, 0x05, 0xb6, 0x00, 0x25, - 0x00, 0x4a, 0x40, 0x2a, 0x18, 0x0c, 0x1f, 0x5a, 0x20, 0x04, 0x04, 0x15, - 0x20, 0x65, 0x27, 0xb0, 0x27, 0x01, 0x8f, 0x27, 0x01, 0x00, 0x27, 0x10, - 0x27, 0x02, 0x17, 0x13, 0x0e, 0x14, 0x5a, 0x15, 0x64, 0x26, 0x1f, 0x0d, - 0x16, 0x03, 0x15, 0x12, 0x18, 0x0c, 0x12, 0x07, 0x5f, 0x00, 0x00, 0x2f, - 0xe1, 0x3f, 0x33, 0x3f, 0x3f, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x32, 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xe6, 0x11, 0x39, 0x2f, 0x10, 0xe1, - 0x32, 0x32, 0x31, 0x30, 0x01, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, - 0x32, 0x3e, 0x02, 0x35, 0x01, 0x23, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, - 0x23, 0x11, 0x33, 0x01, 0x33, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x33, - 0x11, 0x14, 0x0e, 0x02, 0x03, 0x8b, 0x33, 0x4d, 0x1b, 0x22, 0x4e, 0x2d, - 0x25, 0x4b, 0x3d, 0x26, 0xfd, 0x08, 0x08, 0x06, 0x04, 0x04, 0x05, 0xac, - 0xd5, 0x02, 0xcc, 0x07, 0x03, 0x04, 0x03, 0x05, 0xae, 0x37, 0x64, 0x8f, - 0xfe, 0x7b, 0x0d, 0x0b, 0xa0, 0x09, 0x0b, 0x13, 0x32, 0x58, 0x44, 0x04, - 0xba, 0x4d, 0x4c, 0x41, 0x8e, 0x39, 0xfc, 0xe7, 0x05, 0xb6, 0xfb, 0x75, - 0x41, 0x41, 0x38, 0x7d, 0x34, 0x03, 0x20, 0xfa, 0x5e, 0x69, 0x9a, 0x65, - 0x31, 0x00, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x14, 0x04, 0x12, 0x04, 0x5e, - 0x00, 0x28, 0x00, 0x3a, 0x40, 0x22, 0x03, 0x03, 0x17, 0x0c, 0x47, 0x24, - 0x55, 0x2a, 0x10, 0x2a, 0x60, 0x2a, 0x80, 0x2a, 0x03, 0x1a, 0x16, 0x47, - 0x17, 0x54, 0x29, 0x1a, 0x10, 0x50, 0x20, 0x10, 0x18, 0x0f, 0x17, 0x15, - 0x07, 0x50, 0x00, 0x1b, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0x3f, 0xe1, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, - 0x31, 0x30, 0x01, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x13, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, - 0x11, 0x33, 0x17, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, 0x03, 0x14, - 0x0e, 0x02, 0x02, 0xee, 0x30, 0x3f, 0x17, 0x1a, 0x36, 0x23, 0x1b, 0x2e, - 0x23, 0x13, 0x02, 0x69, 0x70, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x94, 0x1a, - 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, 0xb7, 0xb9, 0x02, 0x22, 0x48, 0x6d, - 0xfe, 0x14, 0x0e, 0x0b, 0x94, 0x0a, 0x0b, 0x0f, 0x27, 0x41, 0x33, 0x03, - 0x6d, 0x82, 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xc7, 0x04, 0x4a, 0x94, - 0x2b, 0x3f, 0x2a, 0x14, 0xbf, 0xd2, 0xfc, 0x95, 0x4d, 0x7b, 0x57, 0x2f, - 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x06, 0xc1, 0x02, 0x26, - 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, 0x00, 0xbc, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2a, 0x05, 0x26, 0x02, 0x00, 0x28, 0x29, - 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x05, 0x6f, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x01, 0x06, 0x01, 0x4d, 0x14, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x22, 0x11, 0x26, 0x02, 0x00, 0x20, 0x21, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x05, 0x71, 0x07, 0x40, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4e, 0x00, 0xaa, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2d, - 0x05, 0x26, 0x02, 0x01, 0x32, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x05, 0xee, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4e, - 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x25, 0x11, 0x26, 0x02, 0xb8, 0xff, - 0xff, 0xb4, 0x2a, 0x20, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x01, 0x53, 0x00, 0xec, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x34, 0x05, 0x26, 0x03, - 0x02, 0x43, 0x28, 0x3c, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, 0x01, 0x53, - 0x46, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x2c, 0x11, 0x26, 0x03, - 0x02, 0x45, 0x20, 0x34, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0x00, 0x02, 0x00, 0x7d, 0xff, 0xec, 0x06, 0xa4, - 0x05, 0xcd, 0x00, 0x19, 0x00, 0x2a, 0x00, 0x5b, 0x40, 0x36, 0x14, 0x16, - 0x01, 0x16, 0x16, 0x00, 0x14, 0x18, 0x5a, 0x27, 0x27, 0x09, 0x12, 0x00, - 0x67, 0x2c, 0x1f, 0x2c, 0x01, 0x1f, 0x5b, 0x09, 0x66, 0x2b, 0x17, 0x5f, - 0x4f, 0x14, 0x01, 0x0f, 0x14, 0xaf, 0x14, 0x02, 0x08, 0x14, 0x14, 0x19, - 0x12, 0x5f, 0x11, 0x03, 0x1a, 0x5f, 0x0e, 0x04, 0x24, 0x5f, 0x04, 0x13, - 0x19, 0x5f, 0x00, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0xe1, 0x01, 0x10, 0xf6, 0xe1, - 0x5d, 0x10, 0xe6, 0x32, 0x11, 0x39, 0x2f, 0xe1, 0x32, 0x11, 0x39, 0x2f, - 0x5d, 0x31, 0x30, 0x21, 0x21, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, - 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x17, 0x21, 0x15, 0x21, 0x11, - 0x21, 0x15, 0x21, 0x11, 0x21, 0x01, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x36, 0x37, 0x11, 0x26, 0x26, 0x06, 0xa4, 0xfd, 0x0a, - 0x2b, 0x5b, 0x30, 0xa3, 0xef, 0x9d, 0x4c, 0x4c, 0x9e, 0xf0, 0xa3, 0x62, - 0x54, 0x02, 0xf4, 0xfd, 0xc2, 0x02, 0x17, 0xfd, 0xe9, 0x02, 0x3e, 0xfc, - 0x56, 0x72, 0xa6, 0x6c, 0x34, 0x34, 0x6b, 0xa5, 0x72, 0x34, 0x5a, 0x26, - 0x26, 0x59, 0x09, 0x0b, 0x6c, 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, 0x15, - 0xc4, 0x6b, 0x17, 0xa4, 0xfe, 0x3c, 0xa2, 0xfd, 0xf8, 0x04, 0x85, 0x51, - 0x97, 0xda, 0x8a, 0x89, 0xdb, 0x99, 0x51, 0x12, 0x0f, 0x04, 0x58, 0x10, - 0x11, 0x00, 0x00, 0x03, 0x00, 0x71, 0xff, 0xec, 0x06, 0xe1, 0x04, 0x5e, - 0x00, 0x2a, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x64, 0x40, 0x3b, 0x13, 0x03, - 0x3f, 0x1d, 0x48, 0xd0, 0x31, 0x01, 0x31, 0x31, 0x0b, 0x37, 0x48, 0x25, - 0x1c, 0x57, 0x41, 0x0f, 0x41, 0x01, 0xff, 0x41, 0x01, 0x40, 0x41, 0x01, - 0x2b, 0x48, 0x0b, 0x56, 0x40, 0x1d, 0x50, 0x1b, 0x3f, 0x2b, 0x3f, 0x02, - 0x0f, 0x3f, 0x01, 0x06, 0x3f, 0x3f, 0x2e, 0x3c, 0x34, 0x50, 0x16, 0x13, - 0x10, 0x10, 0x20, 0x2e, 0x50, 0x03, 0x00, 0x06, 0x16, 0x00, 0x3f, 0x33, - 0x33, 0xe1, 0x32, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x12, 0x39, 0x2f, 0x5e, - 0x5d, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x71, 0x10, 0xf6, - 0x32, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x32, 0x39, 0x39, 0x31, 0x30, - 0x05, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, - 0x15, 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, - 0x03, 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, - 0x06, 0x05, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x05, 0x60, 0x82, - 0xcc, 0x41, 0x3f, 0xc6, 0x80, 0x67, 0xae, 0x7f, 0x47, 0x43, 0x7c, 0xb3, - 0x6f, 0x79, 0xc3, 0x3f, 0x3c, 0xb9, 0x75, 0x63, 0x9e, 0x6e, 0x3b, 0xfd, - 0x4c, 0x05, 0x99, 0x97, 0x33, 0x57, 0x51, 0x4c, 0x27, 0x28, 0x4d, 0x51, - 0x57, 0xfb, 0x9a, 0x89, 0x9a, 0x96, 0x8b, 0x8c, 0x97, 0x9a, 0x87, 0x04, - 0xf0, 0x1b, 0x39, 0x58, 0x3e, 0x72, 0x85, 0x0b, 0x14, 0x70, 0x6d, 0x6d, - 0x70, 0x4c, 0x91, 0xd5, 0x89, 0x88, 0xd3, 0x91, 0x4b, 0x6f, 0x6a, 0x69, - 0x70, 0x47, 0x81, 0xb5, 0x6e, 0x71, 0xc1, 0xb6, 0x0a, 0x13, 0x1d, 0x12, - 0xa2, 0x13, 0x1c, 0x12, 0x08, 0x02, 0x3b, 0xd1, 0xd3, 0xc9, 0xd1, 0xdc, - 0xce, 0xcf, 0x62, 0x44, 0x71, 0x50, 0x2c, 0x9c, 0x95, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa0, 0x07, 0x73, 0x02, 0x26, 0x00, 0x35, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x00, 0x54, 0x01, 0x52, 0x00, 0x15, - 0xb4, 0x02, 0x29, 0x05, 0x26, 0x02, 0xb8, 0xff, 0xee, 0xb4, 0x1d, 0x23, - 0x02, 0x0d, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xae, 0x00, 0x00, 0x03, 0x08, 0x06, 0x21, 0x02, 0x26, 0x00, 0x55, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0xce, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x23, 0x11, 0x26, 0x01, 0x40, 0x17, 0x1d, 0x0e, 0x03, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x3b, - 0x04, 0xa0, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x35, 0x00, 0x00, 0x01, 0x06, - 0x02, 0x39, 0x77, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x02, 0xff, 0xb6, 0xb4, - 0x1d, 0x23, 0x02, 0x0d, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0x60, - 0xfe, 0x3b, 0x03, 0x08, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x55, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x39, 0xfe, 0xf1, 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, - 0x01, 0xff, 0x08, 0xb4, 0x17, 0x1d, 0x0e, 0x03, 0x25, 0x01, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa0, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x35, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4c, 0x00, 0x0e, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x02, 0x22, 0x05, 0x26, 0x02, 0xb8, 0xff, 0xa9, 0xb4, - 0x28, 0x1d, 0x02, 0x0d, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x72, 0x00, 0x00, 0x03, 0x0a, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x55, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4c, 0xff, 0x70, 0x00, 0x00, - 0x00, 0x15, 0xb4, 0x01, 0x1c, 0x11, 0x26, 0x01, 0xb8, 0xff, 0xe3, 0xb4, - 0x22, 0x17, 0x0e, 0x03, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x68, 0xff, 0xec, 0x03, 0xc9, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x36, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x00, 0x3b, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x40, 0x05, 0x26, 0x01, 0x70, 0x34, 0x3a, - 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5a, 0xff, 0xec, 0x03, 0x3f, 0x06, 0x21, 0x02, 0x26, 0x00, 0x56, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0xdc, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x42, 0x11, 0x26, 0x01, 0x5d, 0x36, 0x3c, 0x08, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x68, 0xff, 0xec, - 0x03, 0xc9, 0x07, 0x73, 0x02, 0x26, 0x00, 0x36, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4b, 0xff, 0xed, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x34, - 0x05, 0x26, 0x01, 0x22, 0x3c, 0x34, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5a, 0xff, 0xec, 0x03, 0x3f, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x56, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4b, - 0x9b, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x36, 0x11, 0x26, 0x01, 0x1c, - 0x3e, 0x36, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x68, 0xfe, 0x14, 0x03, 0xc9, 0x05, 0xcb, 0x02, 0x26, - 0x00, 0x36, 0x00, 0x00, 0x01, 0x07, 0x00, 0x7a, 0x01, 0x35, 0x00, 0x00, - 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xfa, 0xb4, 0x3a, 0x34, 0x08, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0x5a, 0xfe, 0x14, 0x03, 0x3f, - 0x04, 0x5e, 0x02, 0x26, 0x00, 0x56, 0x00, 0x00, 0x01, 0x07, 0x00, 0x7a, - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x01, 0x3c, 0x36, 0x08, - 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x68, 0xff, 0xec, - 0x03, 0xc9, 0x07, 0x73, 0x02, 0x26, 0x00, 0x36, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4c, 0xff, 0xe6, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x39, - 0x05, 0x26, 0x01, 0x1b, 0x3f, 0x34, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5a, 0xff, 0xec, 0x03, 0x3f, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x56, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4c, - 0x97, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x3b, 0x11, 0x26, 0x01, 0x18, - 0x41, 0x36, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x14, 0xfe, 0x3b, 0x04, 0x12, 0x05, 0xb6, 0x02, 0x26, - 0x00, 0x37, 0x00, 0x00, 0x01, 0x06, 0x02, 0x39, 0xf9, 0x00, 0x00, 0x0e, - 0xb9, 0x00, 0x01, 0xff, 0xd8, 0xb4, 0x08, 0x0e, 0x03, 0x05, 0x25, 0x01, - 0x2b, 0x35, 0xff, 0xff, 0x00, 0x21, 0xfe, 0x3b, 0x02, 0x8f, 0x05, 0x46, - 0x02, 0x26, 0x00, 0x57, 0x00, 0x00, 0x01, 0x07, 0x02, 0x39, 0xff, 0x5d, - 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, 0xf7, 0xb4, 0x1e, 0x24, - 0x12, 0x05, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, 0x00, 0x14, 0x00, 0x00, - 0x04, 0x12, 0x07, 0x73, 0x02, 0x26, 0x00, 0x37, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4c, 0xff, 0xc8, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0d, - 0x05, 0x26, 0x01, 0x03, 0x13, 0x08, 0x03, 0x05, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x21, 0xff, 0xec, 0x02, 0xe8, - 0x06, 0x14, 0x02, 0x26, 0x00, 0x57, 0x00, 0x00, 0x01, 0x06, 0x02, 0x38, - 0x6f, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x61, 0x24, 0x24, 0x18, 0x18, 0x25, - 0x01, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x04, 0x12, - 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x73, 0x40, 0x4c, 0x1f, 0x11, 0x01, 0xe0, - 0x11, 0x01, 0x5f, 0x11, 0xdf, 0x11, 0x02, 0x20, 0x11, 0x30, 0x11, 0x40, - 0x11, 0x03, 0x08, 0xbf, 0x05, 0xff, 0x05, 0x02, 0x05, 0x05, 0x0a, 0x06, - 0x5a, 0x01, 0x0f, 0x01, 0x50, 0x02, 0xf0, 0x02, 0x02, 0x1f, 0x02, 0x01, - 0x02, 0x02, 0x0d, 0x77, 0x01, 0x87, 0x01, 0x97, 0x01, 0x03, 0x31, 0x01, - 0x01, 0x00, 0x01, 0x10, 0x01, 0x20, 0x01, 0x03, 0x07, 0x01, 0x0a, 0x0d, - 0x60, 0x07, 0x00, 0x00, 0x03, 0x0b, 0x12, 0x06, 0x02, 0x5f, 0x03, 0x03, - 0x00, 0x3f, 0xe1, 0x32, 0x3f, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x01, - 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x33, 0x33, 0x2f, 0x5d, 0x5d, 0x12, 0x39, - 0x10, 0xe1, 0x32, 0x32, 0x2f, 0x5d, 0x39, 0x5d, 0x5d, 0x5d, 0x71, 0x31, - 0x30, 0x01, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x23, 0x11, 0x21, 0x35, 0x01, 0xb6, 0xfe, 0x5e, 0x03, 0xfe, 0xfe, - 0x5f, 0x01, 0x27, 0xfe, 0xd9, 0xbb, 0xfe, 0xd7, 0x03, 0x33, 0x01, 0xdf, - 0xa4, 0xa4, 0xfe, 0x21, 0x95, 0xfd, 0x62, 0x02, 0x9e, 0x95, 0x00, 0x01, - 0x00, 0x21, 0xff, 0xec, 0x02, 0x8f, 0x05, 0x46, 0x00, 0x25, 0x00, 0x6a, - 0xb6, 0x14, 0x1f, 0x01, 0x20, 0x1c, 0x1c, 0x05, 0xb8, 0xff, 0xc0, 0x40, - 0x37, 0x08, 0x0b, 0x48, 0x05, 0x05, 0x27, 0x2f, 0x27, 0x3f, 0x27, 0x02, - 0x1f, 0x1b, 0x23, 0x47, 0x13, 0x0f, 0x16, 0x1f, 0x16, 0x02, 0x16, 0x18, - 0x14, 0x00, 0x10, 0x10, 0x10, 0xa0, 0x10, 0xb0, 0x10, 0xc0, 0x10, 0x05, - 0x07, 0x10, 0x11, 0x22, 0x4f, 0x14, 0x1f, 0x1f, 0x0b, 0x15, 0x1e, 0x4f, - 0x1a, 0x18, 0x1b, 0x0f, 0x00, 0x50, 0x0b, 0x16, 0x00, 0x3f, 0xe1, 0x3f, - 0x33, 0x33, 0xe1, 0x32, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x01, 0x2f, - 0x5e, 0x5d, 0x33, 0x33, 0xc4, 0x5d, 0x32, 0xe1, 0x32, 0x32, 0x5d, 0x11, - 0x33, 0x2f, 0x2b, 0x33, 0x11, 0x33, 0x00, 0x5d, 0x31, 0x30, 0x25, 0x32, - 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, - 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x37, 0x37, 0x33, 0x15, 0x21, 0x15, - 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x14, 0x16, 0x01, 0xfa, 0x12, 0x2d, - 0x2a, 0x23, 0x09, 0x0d, 0x28, 0x30, 0x34, 0x19, 0x3e, 0x6a, 0x4d, 0x2c, - 0x8b, 0x8b, 0x9b, 0x9b, 0x4e, 0x69, 0x01, 0x14, 0xfe, 0xec, 0x01, 0x02, - 0xfe, 0xfe, 0x3f, 0x81, 0x04, 0x06, 0x08, 0x03, 0x8a, 0x06, 0x0c, 0x09, - 0x05, 0x20, 0x4e, 0x85, 0x65, 0xfb, 0x8a, 0xf8, 0x51, 0x4e, 0xe6, 0xfc, - 0x89, 0xf8, 0x8a, 0xfb, 0x61, 0x62, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0xdd, 0x07, 0x35, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x52, 0x00, 0x60, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x20, 0x05, - 0x26, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x21, 0x2f, 0x0b, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x08, 0x05, 0xe3, 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x52, 0xf3, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x23, 0x11, 0x26, - 0x01, 0x06, 0x24, 0x32, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0xdd, 0x06, 0xc1, - 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, 0x00, 0x8f, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x1a, 0x05, 0x26, 0x01, 0xb8, 0xff, - 0xff, 0xb4, 0x18, 0x19, 0x0b, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x08, 0x05, 0x6f, - 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4d, 0x21, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x1d, 0x11, 0x26, 0x01, 0x05, 0x1b, 0x1c, - 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xb8, 0xff, 0xec, 0x04, 0xdd, 0x07, 0x40, 0x02, 0x26, 0x00, 0x38, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4e, 0x00, 0x7d, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x1d, 0x05, 0x26, 0x01, 0x00, 0x22, 0x18, 0x0b, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x08, 0x05, 0xee, 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x4e, 0x0c, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x20, - 0x11, 0x26, 0x01, 0x04, 0x25, 0x1b, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0xdd, - 0x07, 0xd9, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, 0x01, 0x50, - 0x00, 0x7b, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x1d, 0x05, - 0x26, 0x02, 0x01, 0x00, 0x22, 0x18, 0x0b, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x08, 0x06, 0x87, 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x50, 0x0c, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x20, 0x11, - 0x26, 0x02, 0x01, 0x05, 0x25, 0x1b, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x53, 0x00, 0xb2, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, - 0x24, 0x05, 0x26, 0x02, 0x01, 0x36, 0x18, 0x2c, 0x0b, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x0e, 0x06, 0x21, 0x02, 0x26, 0x00, 0x58, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x53, 0x50, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, - 0x27, 0x11, 0x26, 0x02, 0x01, 0x48, 0x1b, 0x2f, 0x0c, 0x19, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, - 0xfe, 0x42, 0x04, 0xdd, 0x05, 0xb8, 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x51, 0x02, 0x19, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, - 0x0d, 0x25, 0x1e, 0x0b, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xa4, 0xfe, 0x42, 0x04, 0x16, 0x04, 0x4a, 0x02, 0x26, 0x00, 0x58, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x51, 0x02, 0xb8, 0x00, 0x00, 0x00, 0x0b, - 0xb6, 0x01, 0x0e, 0x21, 0x21, 0x1a, 0x1a, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x14, 0x00, 0x00, 0x06, 0xfe, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x3a, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0x01, 0x3b, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x2b, 0x05, 0x26, 0x01, 0x00, 0x33, 0x2b, - 0x1e, 0x0e, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x14, 0x00, 0x00, 0x05, 0xe3, 0x06, 0x21, 0x02, 0x26, 0x00, 0x5a, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4b, 0x00, 0xae, 0x00, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x30, 0x11, 0x26, 0x01, 0x00, 0x38, 0x30, 0x11, 0x2e, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x37, 0x07, 0x73, 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4b, 0xff, 0xd0, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x09, 0x05, 0x26, 0x01, 0x02, 0x11, 0x09, 0x07, 0x02, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, - 0x03, 0xdf, 0x06, 0x21, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x4b, 0xa9, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x23, 0x11, 0x26, - 0x01, 0x02, 0x2b, 0x23, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, 0x07, 0x2b, - 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0xce, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x12, 0x05, 0x26, 0x02, - 0x01, 0x01, 0x09, 0x1d, 0x07, 0x02, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x03, 0xfe, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x3d, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, - 0x00, 0x39, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x16, 0x05, 0x26, - 0x01, 0x5e, 0x0a, 0x10, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x03, 0x35, 0x06, 0x21, - 0x02, 0x26, 0x00, 0x5d, 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0xd6, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x16, 0x11, 0x26, 0x01, 0x60, 0x0a, 0x10, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x52, 0x00, 0x00, 0x03, 0xfe, 0x07, 0x37, 0x02, 0x26, 0x00, 0x3d, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x4f, 0x01, 0x29, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x15, 0x05, 0x26, 0x01, 0x0b, 0x0a, 0x12, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, - 0x00, 0x00, 0x03, 0x35, 0x05, 0xe5, 0x02, 0x26, 0x00, 0x5d, 0x00, 0x00, - 0x01, 0x07, 0x01, 0x4f, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x15, 0x11, 0x26, 0x01, 0x14, 0x0a, 0x12, 0x01, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, - 0x03, 0xfe, 0x07, 0x73, 0x02, 0x26, 0x00, 0x3d, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4c, 0xff, 0xe0, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0f, - 0x05, 0x26, 0x01, 0x06, 0x15, 0x0a, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x03, 0x35, - 0x06, 0x21, 0x02, 0x26, 0x00, 0x5d, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4c, - 0x86, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0f, 0x11, 0x26, 0x01, 0x10, - 0x15, 0x0a, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x02, 0xbe, 0x06, 0x1f, 0x00, 0x13, - 0x00, 0x25, 0x40, 0x15, 0x09, 0x09, 0x15, 0x00, 0x15, 0x10, 0x15, 0x20, - 0x15, 0x03, 0x13, 0x47, 0x00, 0x54, 0x14, 0x0d, 0x50, 0x06, 0x01, 0x00, - 0x15, 0x00, 0x3f, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x11, 0x33, - 0x2f, 0x31, 0x30, 0x33, 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, - 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0xae, 0x2d, 0x55, - 0x7c, 0x4e, 0x3b, 0x63, 0x26, 0x2f, 0x1f, 0x48, 0x28, 0x28, 0x3a, 0x27, - 0x13, 0x04, 0xb0, 0x6b, 0x8d, 0x54, 0x23, 0x17, 0x0e, 0x8d, 0x0b, 0x11, - 0x13, 0x30, 0x53, 0x41, 0xfb, 0x4e, 0x00, 0x01, 0x00, 0xcb, 0xfe, 0x14, - 0x03, 0xe9, 0x05, 0xcb, 0x00, 0x2b, 0x00, 0x4a, 0x40, 0x2a, 0x30, 0x2d, - 0x01, 0x29, 0x1f, 0x1f, 0x01, 0x47, 0x12, 0x16, 0x12, 0x14, 0x14, 0x12, - 0x0a, 0x0a, 0x00, 0x12, 0x10, 0x12, 0x30, 0x12, 0x40, 0x12, 0x04, 0x07, - 0x12, 0x13, 0x00, 0x60, 0x16, 0x29, 0x29, 0x0d, 0x23, 0x50, 0x1c, 0x07, - 0x0d, 0x50, 0x06, 0x1b, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, - 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0x2f, 0x11, 0x33, 0x2f, - 0x11, 0x33, 0x10, 0xe1, 0x32, 0x2f, 0x32, 0x5d, 0x31, 0x30, 0x01, 0x11, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x11, 0x23, 0x35, 0x37, 0x35, 0x34, 0x3e, 0x02, 0x33, - 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, - 0x33, 0x15, 0x02, 0x8f, 0x2d, 0x55, 0x7b, 0x4e, 0x20, 0x3d, 0x1c, 0x1a, - 0x39, 0x1f, 0x28, 0x3b, 0x26, 0x13, 0xc2, 0xc2, 0x2d, 0x55, 0x7c, 0x4e, - 0x3b, 0x63, 0x26, 0x2f, 0x1f, 0x48, 0x28, 0x28, 0x3a, 0x27, 0x13, 0xf6, - 0x03, 0x44, 0xfc, 0x3f, 0x6b, 0x8d, 0x54, 0x23, 0x09, 0x06, 0x99, 0x08, - 0x0a, 0x13, 0x30, 0x53, 0x41, 0x03, 0xc3, 0x4b, 0x44, 0x89, 0x6b, 0x8d, - 0x54, 0x23, 0x17, 0x0e, 0x8d, 0x0b, 0x11, 0x13, 0x30, 0x53, 0x41, 0x91, - 0x89, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x07, 0xaa, - 0x00, 0x16, 0x00, 0x23, 0x00, 0x31, 0x00, 0x3e, 0x01, 0x01, 0x40, 0x5e, - 0x89, 0x29, 0x01, 0x29, 0xbe, 0x2a, 0x2a, 0x30, 0x31, 0x31, 0x1d, 0x38, - 0x83, 0x0f, 0x0d, 0x1f, 0x0d, 0x02, 0x10, 0x0d, 0x20, 0x0d, 0x02, 0x0d, - 0x0d, 0x56, 0x23, 0x66, 0x23, 0x02, 0x23, 0x07, 0x08, 0x59, 0x17, 0x69, - 0x17, 0x02, 0x06, 0x17, 0x05, 0x1d, 0x32, 0x83, 0x0f, 0x00, 0x1f, 0x00, - 0x6f, 0x00, 0x03, 0x00, 0x00, 0xd6, 0x0a, 0x01, 0x37, 0x0a, 0x47, 0x0a, - 0x57, 0x0a, 0xc7, 0x0a, 0x04, 0x0a, 0xd9, 0x03, 0x01, 0x38, 0x03, 0x48, - 0x03, 0x58, 0x03, 0xc8, 0x03, 0x04, 0x03, 0x1d, 0x1d, 0x09, 0x05, 0x10, - 0x04, 0x01, 0x80, 0x04, 0x90, 0x04, 0xd0, 0x04, 0x03, 0x04, 0xb8, 0xff, - 0xc0, 0x40, 0x18, 0x06, 0x0a, 0x48, 0x04, 0x10, 0x04, 0x04, 0x40, 0x0f, - 0x40, 0x1f, 0x40, 0x2f, 0x40, 0x8f, 0x40, 0x9f, 0x40, 0xdf, 0x40, 0x06, - 0x07, 0x08, 0x09, 0xb8, 0xff, 0xf0, 0x40, 0x31, 0x09, 0x07, 0x5f, 0x23, - 0x1d, 0x20, 0x0a, 0x0e, 0x48, 0x1d, 0x0a, 0x03, 0x3c, 0x19, 0x35, 0x01, - 0x35, 0x8c, 0x12, 0x10, 0x3c, 0x01, 0x8f, 0x12, 0xef, 0x12, 0x02, 0x60, - 0x12, 0x01, 0x10, 0x31, 0x20, 0x31, 0x02, 0x23, 0x3c, 0x12, 0x31, 0x31, - 0x12, 0x3c, 0x23, 0x04, 0x04, 0x29, 0x09, 0x04, 0x12, 0x00, 0x3f, 0x33, - 0x2f, 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, - 0x10, 0xe1, 0x5d, 0x11, 0x33, 0x33, 0x33, 0x2b, 0x10, 0xe1, 0x01, 0x2f, - 0x38, 0x33, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x71, 0x33, - 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x5d, 0x5d, 0x33, 0x5d, 0x5d, 0x33, 0x18, - 0x2f, 0x5d, 0xe1, 0x11, 0x12, 0x39, 0x39, 0x5d, 0x12, 0x39, 0x39, 0x5d, - 0x33, 0x2f, 0x5d, 0x71, 0xe1, 0x11, 0x33, 0x2f, 0x33, 0x33, 0x2f, 0xed, - 0x5d, 0x31, 0x30, 0x01, 0x14, 0x06, 0x07, 0x01, 0x23, 0x03, 0x21, 0x03, - 0x23, 0x01, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, - 0x03, 0x03, 0x2e, 0x03, 0x27, 0x0e, 0x03, 0x07, 0x03, 0x13, 0x3e, 0x03, - 0x37, 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, 0x13, 0x34, 0x26, 0x23, 0x22, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x33, 0x32, 0x36, 0x03, 0x50, 0x3c, 0x33, - 0x01, 0xfc, 0xbe, 0x9a, 0xfd, 0xd3, 0x9c, 0xbc, 0x01, 0xf8, 0x33, 0x3a, - 0x20, 0x3b, 0x52, 0x32, 0x31, 0x54, 0x3e, 0x23, 0x0c, 0x94, 0x06, 0x11, - 0x12, 0x12, 0x08, 0x07, 0x12, 0x12, 0x11, 0x06, 0x91, 0x85, 0x15, 0x30, - 0x2f, 0x2a, 0x10, 0xdb, 0x10, 0x3f, 0x4d, 0x51, 0x23, 0x79, 0xbc, 0x3f, - 0x32, 0x31, 0x3f, 0x33, 0x31, 0x0c, 0x32, 0x3f, 0x05, 0x9c, 0x46, 0x60, - 0x19, 0xfb, 0x23, 0x01, 0x87, 0xfe, 0x79, 0x04, 0xdb, 0x19, 0x60, 0x46, - 0x33, 0x4f, 0x38, 0x1d, 0x1d, 0x37, 0x4f, 0xfc, 0x5f, 0x01, 0x7d, 0x10, - 0x2e, 0x36, 0x3b, 0x1c, 0x1c, 0x3c, 0x36, 0x2e, 0x0f, 0xfe, 0x83, 0x04, - 0x8b, 0x18, 0x3d, 0x41, 0x40, 0x1c, 0x10, 0x16, 0x41, 0x47, 0x42, 0x16, - 0xfe, 0xf6, 0x34, 0x3c, 0x3c, 0x34, 0x33, 0x3b, 0x03, 0x3c, 0x00, 0x05, - 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x07, 0xaa, 0x00, 0x0d, 0x00, 0x31, - 0x00, 0x40, 0x00, 0x54, 0x00, 0x60, 0x00, 0x9c, 0x40, 0x23, 0x55, 0x83, - 0x0f, 0x41, 0x1f, 0x41, 0x2f, 0x41, 0x03, 0x41, 0x41, 0x5b, 0x83, 0x4b, - 0x06, 0x0d, 0x4b, 0x0d, 0x4b, 0x0d, 0x1a, 0x1e, 0x0f, 0x37, 0x47, 0x31, - 0x55, 0x62, 0x3f, 0x62, 0x01, 0x3e, 0x48, 0x1a, 0x28, 0xb8, 0xff, 0xd0, - 0x40, 0x3a, 0x0d, 0x11, 0x48, 0x28, 0x10, 0x09, 0x0c, 0x48, 0x28, 0x28, - 0x1a, 0x56, 0x61, 0x58, 0x8c, 0x50, 0x50, 0x0d, 0x60, 0x0d, 0x70, 0x0d, - 0x03, 0x0d, 0x0d, 0x50, 0x50, 0x05, 0x5e, 0x8c, 0x40, 0x46, 0x50, 0x46, - 0x02, 0x46, 0x46, 0x27, 0x24, 0x50, 0x2b, 0x38, 0x52, 0x1e, 0x1e, 0x2b, - 0x10, 0x32, 0x50, 0x0f, 0x15, 0x16, 0x0e, 0x15, 0x0f, 0x05, 0x01, 0x05, - 0x00, 0x2f, 0x5d, 0x3f, 0x3f, 0x33, 0xe1, 0x3f, 0x39, 0x2f, 0xe1, 0x10, - 0xe1, 0x32, 0x33, 0x2f, 0x5d, 0xe1, 0x11, 0x39, 0x2f, 0x33, 0x2f, 0x5d, - 0x10, 0xe1, 0x01, 0x10, 0xe6, 0x32, 0x2f, 0x2b, 0x2b, 0x10, 0xe1, 0x5d, - 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x10, 0xcd, - 0x10, 0xe1, 0x33, 0x2f, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, - 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, 0x01, 0x27, 0x23, 0x0e, 0x03, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x37, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x11, 0x25, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x07, 0x0e, 0x03, 0x15, 0x14, - 0x16, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x32, 0x1e, 0x02, 0x07, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, - 0x14, 0x16, 0x33, 0x32, 0x36, 0x01, 0xc7, 0x15, 0x30, 0x2f, 0x2a, 0x10, - 0xdb, 0x10, 0x3f, 0x4d, 0x52, 0x23, 0x78, 0x01, 0x52, 0x25, 0x08, 0x21, - 0x42, 0x4e, 0x60, 0x3f, 0x45, 0x74, 0x55, 0x30, 0xe7, 0xec, 0xb8, 0x1d, - 0x37, 0x51, 0x34, 0x53, 0x8f, 0x42, 0x40, 0x4a, 0xb6, 0x64, 0x66, 0x95, - 0x61, 0x30, 0xfe, 0x2f, 0x3d, 0x68, 0x4c, 0x2b, 0x8f, 0x5a, 0x7a, 0x49, - 0x20, 0x61, 0x01, 0x86, 0x23, 0x3d, 0x54, 0x31, 0x32, 0x52, 0x3b, 0x21, - 0x21, 0x3b, 0x52, 0x32, 0x30, 0x54, 0x3e, 0x23, 0x75, 0x3f, 0x31, 0x32, - 0x3f, 0x39, 0x38, 0x31, 0x3f, 0x06, 0xb8, 0x18, 0x3d, 0x41, 0x40, 0x1c, - 0x10, 0x16, 0x41, 0x47, 0x42, 0x16, 0xf9, 0x5c, 0x98, 0x2d, 0x41, 0x2a, - 0x14, 0x27, 0x51, 0x7b, 0x54, 0xa4, 0xb0, 0x08, 0x07, 0x45, 0x43, 0x5a, - 0x37, 0x18, 0x30, 0x22, 0x89, 0x28, 0x38, 0x29, 0x59, 0x8a, 0x62, 0xfd, - 0x10, 0x7f, 0x26, 0x4d, 0x75, 0x4f, 0x63, 0x07, 0x04, 0x20, 0x39, 0x51, - 0x33, 0x5c, 0x56, 0x05, 0x08, 0x33, 0x51, 0x38, 0x1d, 0x1d, 0x38, 0x4f, - 0x33, 0x33, 0x4f, 0x38, 0x1d, 0x1d, 0x37, 0x4f, 0x34, 0x35, 0x3c, 0x3c, - 0x35, 0x35, 0x3c, 0x3c, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x06, 0x56, - 0x07, 0x73, 0x02, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, - 0x02, 0x25, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x20, 0x05, 0x26, 0x02, - 0xb8, 0x01, 0x48, 0xb4, 0x14, 0x1a, 0x05, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x06, 0x44, - 0x06, 0x21, 0x02, 0x26, 0x00, 0xa8, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, - 0x01, 0x75, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x03, 0x5d, 0x11, 0x26, - 0x03, 0x71, 0x51, 0x57, 0x00, 0x1c, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xb4, 0x05, 0x71, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x9a, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x01, 0x02, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x03, 0x3e, 0x05, 0x26, 0x03, 0x58, - 0x32, 0x38, 0x11, 0x04, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x73, 0xff, 0xb4, 0x04, 0x2f, 0x06, 0x21, 0x02, 0x26, - 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0x50, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x03, 0x3a, 0x11, 0x26, 0x03, 0x4c, 0x2e, 0x34, 0x0d, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x68, - 0xfe, 0x3b, 0x03, 0xc9, 0x05, 0xcb, 0x02, 0x26, 0x00, 0x36, 0x00, 0x00, - 0x01, 0x06, 0x02, 0x39, 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x01, 0xff, - 0xda, 0xb4, 0x34, 0x3a, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, 0xff, 0xff, - 0x00, 0x5a, 0xfe, 0x3b, 0x03, 0x3f, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x56, - 0x00, 0x00, 0x01, 0x06, 0x02, 0x39, 0xbb, 0x00, 0x00, 0x0e, 0xb9, 0x00, - 0x01, 0xff, 0xe1, 0xb4, 0x36, 0x3c, 0x08, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x01, 0x01, 0x02, 0x04, 0xd9, 0x03, 0x9a, 0x06, 0x21, 0x00, 0x14, - 0x00, 0x25, 0x40, 0x11, 0x0f, 0x0e, 0x04, 0x04, 0x00, 0xc0, 0x08, 0x04, - 0x0e, 0x80, 0x00, 0x0f, 0x08, 0x5f, 0x08, 0x02, 0x08, 0x00, 0x2f, 0x5d, - 0x33, 0x1a, 0xcc, 0x32, 0x01, 0x2f, 0x1a, 0xcc, 0x39, 0x3d, 0x2f, 0x33, - 0x33, 0x31, 0x30, 0x01, 0x23, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x23, - 0x35, 0x3e, 0x03, 0x37, 0x33, 0x1e, 0x03, 0x17, 0x03, 0x9a, 0x79, 0x33, - 0x6c, 0x34, 0x36, 0x6a, 0x33, 0x79, 0x1a, 0x44, 0x43, 0x3b, 0x10, 0xc0, - 0x10, 0x3b, 0x43, 0x45, 0x19, 0x04, 0xd9, 0x22, 0x61, 0x37, 0x37, 0x61, - 0x22, 0x1b, 0x1d, 0x4c, 0x51, 0x51, 0x22, 0x22, 0x51, 0x51, 0x4c, 0x1d, - 0x00, 0x01, 0x01, 0x02, 0x04, 0xd9, 0x03, 0x9a, 0x06, 0x21, 0x00, 0x14, - 0x00, 0x25, 0x40, 0x11, 0x06, 0x05, 0x10, 0x10, 0x00, 0xc0, 0x0b, 0x13, - 0x0d, 0x80, 0x10, 0x0f, 0x06, 0x5f, 0x06, 0x02, 0x06, 0x00, 0x2f, 0x5d, - 0x33, 0x1a, 0xcd, 0x32, 0x01, 0x2f, 0x1a, 0xcc, 0x39, 0x3d, 0x2f, 0x33, - 0x33, 0x31, 0x30, 0x01, 0x0e, 0x03, 0x07, 0x23, 0x2e, 0x03, 0x27, 0x35, - 0x33, 0x16, 0x16, 0x17, 0x36, 0x36, 0x37, 0x33, 0x03, 0x9a, 0x19, 0x45, - 0x43, 0x3b, 0x10, 0xc0, 0x10, 0x3b, 0x43, 0x44, 0x1a, 0x79, 0x33, 0x6a, - 0x36, 0x34, 0x6c, 0x33, 0x79, 0x06, 0x06, 0x1d, 0x4c, 0x51, 0x50, 0x23, - 0x23, 0x50, 0x51, 0x4c, 0x1d, 0x1b, 0x22, 0x61, 0x38, 0x38, 0x61, 0x22, - 0x00, 0x01, 0x01, 0x1b, 0x04, 0xd9, 0x03, 0x5a, 0x05, 0x6f, 0x00, 0x03, - 0x00, 0x15, 0x40, 0x0a, 0x01, 0x00, 0x00, 0x8f, 0x0f, 0x03, 0x5f, 0x03, - 0x02, 0x03, 0x00, 0x2f, 0x5d, 0xe1, 0x01, 0x2f, 0xcd, 0x31, 0x30, 0x01, - 0x21, 0x15, 0x21, 0x01, 0x1b, 0x02, 0x3f, 0xfd, 0xc1, 0x05, 0x6f, 0x96, - 0x00, 0x01, 0x01, 0x21, 0x04, 0xd9, 0x03, 0x7b, 0x05, 0xee, 0x00, 0x15, - 0x00, 0x2f, 0x40, 0x1c, 0x15, 0x83, 0xff, 0x00, 0x01, 0x00, 0xc0, 0x0b, - 0x83, 0x0a, 0x00, 0x7f, 0x0a, 0x8f, 0x0a, 0x9f, 0x0a, 0x03, 0x0a, 0x80, - 0x10, 0x8f, 0x0f, 0x05, 0x5f, 0x05, 0x02, 0x05, 0x00, 0x2f, 0x5d, 0xe1, - 0x1a, 0xcd, 0x5d, 0x32, 0x01, 0x2f, 0xe1, 0x1a, 0xdc, 0x5d, 0xe1, 0x31, - 0x30, 0x01, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0x03, 0x7b, 0x04, 0x2c, 0x4d, 0x6d, 0x47, - 0x49, 0x6d, 0x49, 0x27, 0x03, 0x6c, 0x04, 0x1c, 0x30, 0x43, 0x2c, 0x24, - 0x41, 0x33, 0x22, 0x04, 0x05, 0xee, 0x3d, 0x65, 0x4a, 0x29, 0x27, 0x49, - 0x66, 0x3f, 0x2b, 0x32, 0x19, 0x07, 0x09, 0x1b, 0x31, 0x28, 0x00, 0x01, - 0x00, 0xa0, 0x05, 0x00, 0x01, 0x75, 0x05, 0xe5, 0x00, 0x0d, 0x00, 0x1c, - 0x40, 0x10, 0x08, 0x87, 0x00, 0x03, 0x91, 0x9f, 0x0b, 0xcf, 0x0b, 0xef, - 0x0b, 0x03, 0x30, 0x0b, 0x01, 0x0b, 0x00, 0x2f, 0x5d, 0x5d, 0xe5, 0x01, - 0x2f, 0xe1, 0x31, 0x30, 0x13, 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x14, 0x06, 0x23, 0x22, 0x26, 0xa0, 0x3d, 0x2d, 0x16, 0x27, 0x1d, 0x11, - 0x3f, 0x2c, 0x2d, 0x3d, 0x05, 0x73, 0x3c, 0x36, 0x0d, 0x1c, 0x2b, 0x1e, - 0x3a, 0x39, 0x38, 0x00, 0x00, 0x02, 0x01, 0x6d, 0x04, 0xd9, 0x03, 0x31, - 0x06, 0x87, 0x00, 0x13, 0x00, 0x1f, 0x00, 0x40, 0x40, 0x2d, 0x14, 0x83, - 0x0f, 0x00, 0x3f, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x04, 0x00, 0x1a, 0x83, - 0x30, 0x0a, 0x01, 0x0a, 0x17, 0x8c, 0x0f, 0x0f, 0x1f, 0x0f, 0x3f, 0x0f, - 0x4f, 0x0f, 0x5f, 0x0f, 0xaf, 0x0f, 0xff, 0x0f, 0x07, 0x06, 0x0f, 0x1d, - 0x8c, 0x0f, 0x05, 0x5f, 0x05, 0x02, 0x05, 0x00, 0x2f, 0x5d, 0xe1, 0xd4, - 0x5e, 0x5d, 0xe1, 0x01, 0x2f, 0x5d, 0xe1, 0xd4, 0x5d, 0xe1, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x1e, 0x02, 0x07, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, - 0x16, 0x33, 0x32, 0x36, 0x03, 0x31, 0x23, 0x3d, 0x54, 0x31, 0x32, 0x52, - 0x3b, 0x20, 0x20, 0x3b, 0x52, 0x32, 0x30, 0x54, 0x3e, 0x23, 0x75, 0x3f, - 0x31, 0x32, 0x3f, 0x39, 0x38, 0x31, 0x3f, 0x05, 0xb2, 0x33, 0x51, 0x38, - 0x1d, 0x1d, 0x38, 0x4f, 0x33, 0x33, 0x4f, 0x38, 0x1d, 0x1d, 0x37, 0x4f, - 0x34, 0x35, 0x3c, 0x3c, 0x35, 0x35, 0x3c, 0x3c, 0x00, 0x01, 0x00, 0x1f, - 0xfe, 0x42, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x14, 0x00, 0x16, 0x40, 0x09, - 0x06, 0x80, 0x00, 0x84, 0x0d, 0x12, 0x03, 0x8e, 0x0a, 0x00, 0x2f, 0xe1, - 0x2f, 0x01, 0x2f, 0xe1, 0x1a, 0xcc, 0x31, 0x30, 0x17, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x3e, - 0x02, 0x37, 0x33, 0x06, 0xb4, 0x34, 0x22, 0x19, 0x2d, 0x0e, 0x1a, 0x40, - 0x1d, 0x64, 0x64, 0x1e, 0x2f, 0x38, 0x1a, 0x81, 0x8b, 0xee, 0x2d, 0x2b, - 0x05, 0x04, 0x71, 0x08, 0x08, 0x68, 0x5a, 0x2a, 0x4b, 0x40, 0x34, 0x13, - 0x85, 0x00, 0x00, 0x01, 0x01, 0x02, 0x04, 0xd9, 0x03, 0xd1, 0x05, 0xe3, - 0x00, 0x1b, 0x00, 0x38, 0x40, 0x23, 0x0f, 0x17, 0x2f, 0x17, 0x02, 0x17, - 0x00, 0x09, 0x20, 0x09, 0x02, 0x07, 0x09, 0x16, 0x05, 0x8f, 0x0e, 0x40, - 0x10, 0x13, 0x48, 0x0e, 0x40, 0x07, 0x0b, 0x48, 0x0e, 0x0e, 0x13, 0x8f, - 0x09, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x2f, 0x5d, 0x32, 0xe1, 0x33, 0x2f, - 0x2b, 0x2b, 0xe1, 0x33, 0x01, 0x2f, 0x5e, 0x5d, 0xcc, 0x5d, 0x31, 0x30, - 0x01, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3e, 0x03, 0x33, - 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x0e, 0x03, 0x02, 0xfe, - 0x28, 0x4f, 0x4c, 0x46, 0x20, 0x2d, 0x30, 0x0e, 0x68, 0x05, 0x21, 0x35, - 0x4a, 0x2e, 0x2a, 0x51, 0x4c, 0x45, 0x1d, 0x2d, 0x2e, 0x0f, 0x69, 0x05, - 0x21, 0x35, 0x4a, 0x04, 0xdb, 0x23, 0x2b, 0x23, 0x35, 0x3e, 0x3c, 0x62, - 0x45, 0x25, 0x23, 0x2a, 0x23, 0x34, 0x3e, 0x3c, 0x61, 0x45, 0x26, 0x00, - 0x00, 0x02, 0x00, 0xdf, 0x04, 0xd9, 0x03, 0xbe, 0x06, 0x21, 0x00, 0x0d, - 0x00, 0x1b, 0x00, 0x2d, 0x40, 0x19, 0x14, 0x0e, 0x0e, 0x07, 0x40, 0x50, - 0x00, 0x01, 0x3f, 0x00, 0x4f, 0x00, 0x02, 0x00, 0x13, 0x05, 0x92, 0x80, - 0x1b, 0x0f, 0x0c, 0x5f, 0x0c, 0x02, 0x0c, 0x00, 0x2f, 0x5d, 0x33, 0x1a, - 0xed, 0x32, 0x01, 0x2f, 0x5d, 0x5d, 0x1a, 0xcd, 0x39, 0x2f, 0xcd, 0x31, - 0x30, 0x13, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, 0x25, - 0x3e, 0x03, 0x37, 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, 0xdf, 0x16, 0x2f, - 0x2f, 0x2a, 0x10, 0xc7, 0x10, 0x3f, 0x4d, 0x51, 0x23, 0x65, 0x01, 0x6b, - 0x15, 0x30, 0x2f, 0x2a, 0x10, 0xc6, 0x10, 0x3f, 0x4d, 0x51, 0x23, 0x64, - 0x04, 0xf4, 0x1d, 0x4c, 0x51, 0x51, 0x22, 0x15, 0x1b, 0x51, 0x58, 0x53, - 0x1c, 0x1b, 0x1d, 0x4c, 0x51, 0x51, 0x22, 0x15, 0x1b, 0x51, 0x58, 0x53, - 0x1c, 0x00, 0x00, 0x01, 0x01, 0xf8, 0x04, 0xd9, 0x03, 0x04, 0x06, 0x21, - 0x00, 0x0d, 0x00, 0x27, 0x40, 0x16, 0x05, 0x10, 0x0c, 0x11, 0x48, 0x05, - 0x06, 0x40, 0x0c, 0x00, 0x00, 0x01, 0x00, 0x05, 0x92, 0x80, 0x0f, 0x0c, - 0x5f, 0x0c, 0x02, 0x0c, 0x00, 0x2f, 0x5d, 0x1a, 0xed, 0x01, 0x2f, 0x5d, - 0x33, 0x1a, 0xcd, 0x32, 0x2b, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, - 0x15, 0x0e, 0x03, 0x07, 0x23, 0x01, 0xf8, 0x0a, 0x14, 0x13, 0x10, 0x04, - 0xc7, 0x06, 0x21, 0x2d, 0x34, 0x18, 0x6c, 0x04, 0xf4, 0x1e, 0x4d, 0x51, - 0x50, 0x21, 0x15, 0x18, 0x4e, 0x57, 0x56, 0x20, 0x00, 0x03, 0x01, 0x14, - 0x05, 0x0c, 0x03, 0x89, 0x06, 0xb4, 0x00, 0x0d, 0x00, 0x1b, 0x00, 0x29, - 0x00, 0x66, 0x40, 0x19, 0x1c, 0x84, 0x0f, 0x24, 0x1f, 0x24, 0x02, 0x0f, - 0x24, 0x1f, 0x24, 0xcf, 0x24, 0x03, 0x24, 0x40, 0x09, 0x0c, 0x48, 0x24, - 0x24, 0x0d, 0x16, 0x84, 0x0e, 0xb8, 0xff, 0xc0, 0x40, 0x27, 0x09, 0x0d, - 0x48, 0x0e, 0x0e, 0x05, 0x10, 0x0c, 0x11, 0x48, 0x05, 0x06, 0x0c, 0x0d, - 0x05, 0x92, 0x0c, 0x0c, 0x1f, 0x11, 0x91, 0x27, 0xff, 0x19, 0x01, 0x60, - 0x19, 0xb0, 0x19, 0xd0, 0x19, 0x03, 0x0f, 0x19, 0x1f, 0x19, 0x02, 0x06, - 0x19, 0x00, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x33, 0xe5, 0x32, 0x39, 0x2f, - 0xed, 0x01, 0x2f, 0x33, 0xcd, 0x32, 0x2b, 0x33, 0x2f, 0x2b, 0xe1, 0x11, - 0x33, 0x2f, 0x2b, 0x5d, 0x71, 0xe1, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, - 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, 0x27, 0x34, 0x36, 0x33, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x25, 0x34, 0x36, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0xfe, 0x0b, 0x19, - 0x18, 0x16, 0x08, 0xcf, 0x12, 0x30, 0x38, 0x3d, 0x20, 0x52, 0xea, 0x38, - 0x29, 0x13, 0x23, 0x1a, 0x10, 0x3a, 0x26, 0x29, 0x38, 0x01, 0xb5, 0x38, - 0x28, 0x13, 0x23, 0x1a, 0x10, 0x3a, 0x26, 0x28, 0x38, 0x05, 0x87, 0x1e, - 0x4b, 0x4f, 0x51, 0x24, 0x14, 0x20, 0x4d, 0x50, 0x51, 0x25, 0x06, 0x36, - 0x30, 0x0c, 0x19, 0x26, 0x1b, 0x35, 0x32, 0x32, 0x35, 0x36, 0x30, 0x0c, - 0x19, 0x26, 0x1b, 0x35, 0x32, 0x32, 0xff, 0xff, 0xff, 0xe9, 0x00, 0x00, - 0x04, 0xdd, 0x05, 0xbc, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x54, 0xfd, 0xf1, 0xff, 0x97, 0x00, 0x18, 0xb6, 0x02, 0x1a, 0x03, - 0x02, 0x30, 0x22, 0x01, 0xb8, 0xff, 0xe9, 0xb4, 0x22, 0x22, 0x04, 0x04, - 0x25, 0x01, 0x2b, 0x5d, 0x35, 0x00, 0x3f, 0x35, 0x00, 0x01, 0x00, 0x93, - 0x02, 0x48, 0x01, 0x91, 0x03, 0x5e, 0x00, 0x13, 0x00, 0x33, 0x40, 0x1a, - 0x10, 0x15, 0x80, 0x15, 0x90, 0x15, 0xa0, 0x15, 0x04, 0x0a, 0x96, 0xc0, - 0x00, 0xd0, 0x00, 0x02, 0x34, 0x00, 0x44, 0x00, 0x64, 0x00, 0x74, 0x00, - 0x04, 0x00, 0xb8, 0xff, 0xc0, 0xb6, 0x07, 0x0a, 0x48, 0x00, 0x05, 0x9b, - 0x0f, 0x00, 0x2f, 0xe5, 0x01, 0x2f, 0x2b, 0x5d, 0x5d, 0xed, 0x5d, 0x31, - 0x30, 0x13, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x2e, 0x02, 0x93, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, - 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x02, 0xd3, - 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x34, 0x22, 0x10, - 0x10, 0x22, 0x34, 0x00, 0xff, 0xff, 0xff, 0xe7, 0x00, 0x00, 0x04, 0x4d, - 0x05, 0xb8, 0x00, 0x27, 0x00, 0x28, 0x00, 0x8f, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, 0x00, 0x2e, 0xb4, 0x01, 0x11, 0x03, - 0x01, 0x12, 0xb8, 0xff, 0xc0, 0xb2, 0x08, 0x0f, 0x48, 0xb8, 0xff, 0x9d, - 0x40, 0x0f, 0x12, 0x12, 0x02, 0x02, 0x25, 0x00, 0x00, 0x67, 0x1b, 0xbf, - 0x1b, 0x01, 0x0f, 0x1b, 0x01, 0x01, 0x5d, 0x5d, 0x10, 0xfe, 0x34, 0x01, - 0x2b, 0x2b, 0x35, 0x00, 0x3f, 0x35, 0xff, 0xff, 0xff, 0xe7, 0x00, 0x00, - 0x05, 0x50, 0x05, 0xb8, 0x00, 0x26, 0x00, 0x2b, 0x7b, 0x00, 0x01, 0x07, - 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, 0x00, 0x31, 0xb4, 0x01, 0x11, 0x03, - 0x01, 0x12, 0xb8, 0xff, 0xc0, 0xb2, 0x08, 0x11, 0x48, 0xb8, 0xff, 0xb1, - 0x40, 0x12, 0x12, 0x12, 0x06, 0x06, 0x25, 0x00, 0x00, 0x65, 0x6f, 0x1b, - 0x01, 0x2f, 0x1b, 0x01, 0x10, 0x1b, 0x01, 0x1b, 0x01, 0x10, 0x5d, 0x5d, - 0x5d, 0xfe, 0x34, 0x2b, 0x2b, 0x35, 0x00, 0x3f, 0x35, 0x00, 0xff, 0xff, - 0xff, 0xe7, 0x00, 0x00, 0x03, 0x60, 0x05, 0xb8, 0x00, 0x27, 0x00, 0x2c, - 0x00, 0xfc, 0x00, 0x00, 0x01, 0x07, 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, - 0x00, 0x66, 0x40, 0x16, 0x01, 0x11, 0x03, 0x01, 0xc0, 0x12, 0x01, 0xa0, - 0x12, 0x01, 0x30, 0x12, 0x01, 0x20, 0x12, 0x01, 0x10, 0x12, 0x01, 0x00, - 0x12, 0x01, 0xb8, 0xff, 0xa5, 0x40, 0x2f, 0x12, 0x12, 0x06, 0x06, 0x25, - 0x00, 0xf0, 0x00, 0x01, 0xd0, 0x00, 0x01, 0xc0, 0x00, 0x01, 0xaf, 0x00, - 0x01, 0x70, 0x00, 0x01, 0x60, 0x00, 0x01, 0x50, 0x00, 0x01, 0x40, 0x00, - 0x01, 0x3f, 0x00, 0x01, 0x00, 0x20, 0x1b, 0x01, 0x1b, 0x40, 0x07, 0x07, - 0x48, 0x1b, 0x40, 0x07, 0x09, 0x48, 0x01, 0x2b, 0x2b, 0x5d, 0x11, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x2b, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x00, 0x3f, 0x35, 0xff, 0xff, 0xff, 0xe7, - 0xff, 0xec, 0x05, 0xc3, 0x05, 0xcd, 0x00, 0x26, 0x00, 0x32, 0x52, 0x00, - 0x01, 0x07, 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, 0x00, 0x47, 0x40, 0x30, - 0x02, 0x2d, 0x03, 0x02, 0xa0, 0x2e, 0x01, 0x80, 0x2e, 0x01, 0x70, 0x2e, - 0x01, 0x50, 0x2e, 0x01, 0x20, 0x2e, 0x01, 0x10, 0x2e, 0x01, 0x00, 0x2e, - 0x01, 0x24, 0x2e, 0x2e, 0x0a, 0x0a, 0x25, 0x01, 0x00, 0x50, 0x00, 0x01, - 0x50, 0x00, 0x01, 0x00, 0x67, 0xbf, 0x37, 0x01, 0x0f, 0x37, 0x01, 0x37, - 0x01, 0x10, 0x5d, 0x5d, 0xfe, 0x5d, 0x5d, 0x34, 0x34, 0x2b, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x00, 0x3f, 0x35, 0x00, 0xff, 0xff, - 0xff, 0xe7, 0x00, 0x00, 0x05, 0x54, 0x05, 0xb8, 0x00, 0x27, 0x00, 0x3c, - 0x01, 0x1d, 0x00, 0x00, 0x01, 0x07, 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, - 0x00, 0x4b, 0xb4, 0x01, 0x0e, 0x03, 0x01, 0x0f, 0xb8, 0xff, 0xc0, 0xb6, - 0x16, 0x17, 0x48, 0xa0, 0x0f, 0x01, 0x0f, 0xb8, 0xff, 0xc0, 0xb2, 0x09, - 0x11, 0x48, 0xb8, 0xff, 0xd6, 0x40, 0x1c, 0x0f, 0x0f, 0x07, 0x07, 0x25, - 0x00, 0xc0, 0x05, 0x01, 0xb0, 0x05, 0x01, 0x7f, 0x05, 0x01, 0x20, 0x05, - 0x01, 0x05, 0x3f, 0x18, 0x01, 0x2f, 0x18, 0x01, 0x0f, 0x18, 0x01, 0x01, - 0x5d, 0x5d, 0x5d, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x2b, 0x2b, 0x5d, - 0x2b, 0x35, 0x00, 0x3f, 0x35, 0x00, 0xff, 0xff, 0xff, 0xe7, 0x00, 0x00, - 0x06, 0x00, 0x05, 0xcd, 0x00, 0x26, 0x01, 0x76, 0x5a, 0x00, 0x01, 0x07, - 0x01, 0x54, 0xfd, 0xef, 0xff, 0x97, 0x00, 0x35, 0x40, 0x23, 0x01, 0x35, - 0x03, 0x01, 0x20, 0x36, 0x01, 0x10, 0x36, 0x01, 0x00, 0x36, 0x01, 0x16, - 0x36, 0x36, 0x13, 0x13, 0x25, 0x00, 0x50, 0x1d, 0x01, 0x50, 0x1d, 0x01, - 0x1d, 0x67, 0xbf, 0x3f, 0x01, 0x0f, 0x3f, 0x01, 0x3f, 0x01, 0x10, 0x5d, - 0x5d, 0xfe, 0x5d, 0x5d, 0x34, 0x2b, 0x5d, 0x5d, 0x5d, 0x35, 0x00, 0x3f, - 0x35, 0x00, 0xff, 0xff, 0xff, 0xe4, 0xff, 0xec, 0x02, 0x77, 0x06, 0xb4, - 0x02, 0x26, 0x01, 0x86, 0x00, 0x00, 0x01, 0x07, 0x01, 0x55, 0xfe, 0xd0, - 0x00, 0x00, 0x00, 0x18, 0x40, 0x0f, 0x03, 0x02, 0x01, 0xc0, 0x24, 0x01, - 0x40, 0x24, 0x01, 0x20, 0x24, 0x3a, 0x15, 0x00, 0x25, 0x01, 0x2b, 0x5d, - 0x5d, 0x35, 0x35, 0x35, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, - 0x05, 0xbc, 0x02, 0x06, 0x00, 0x24, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0x87, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x25, 0x00, 0x00, - 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x05, - 0x00, 0x43, 0x40, 0x0a, 0xc4, 0x00, 0xf4, 0x00, 0x02, 0xb0, 0x00, 0x01, - 0x02, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x1f, 0x08, 0x13, 0x48, 0x00, 0x00, - 0x07, 0x0f, 0x07, 0x2f, 0x07, 0x4f, 0x07, 0x6f, 0x07, 0x04, 0x07, 0x40, - 0x11, 0x18, 0x48, 0x03, 0x5a, 0x04, 0x64, 0x06, 0x02, 0x5f, 0x05, 0x03, - 0x03, 0x12, 0x00, 0x3f, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x2b, 0x5d, - 0x11, 0x33, 0x2f, 0x2b, 0x5f, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x15, 0x21, - 0x11, 0x23, 0x11, 0x03, 0xbe, 0xfd, 0xc3, 0xba, 0x05, 0xb6, 0xa6, 0xfa, - 0xf0, 0x05, 0xb6, 0x00, 0x00, 0x02, 0x00, 0x25, 0x00, 0x00, 0x04, 0x68, - 0x05, 0xb6, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x58, 0x40, 0x11, 0x05, 0x04, - 0x06, 0x06, 0x02, 0x0b, 0x5b, 0x60, 0x01, 0x70, 0x01, 0xb0, 0x01, 0xf0, - 0x01, 0x04, 0x01, 0xb8, 0xff, 0xc0, 0x40, 0x27, 0x06, 0x0a, 0x48, 0x01, - 0x01, 0x10, 0x2f, 0x10, 0x5f, 0x10, 0x6f, 0x10, 0x7f, 0x10, 0x9f, 0x10, - 0xbf, 0x10, 0x06, 0x10, 0x40, 0x06, 0x09, 0x48, 0x0a, 0x5b, 0x02, 0x06, - 0x20, 0x0a, 0x11, 0x48, 0x06, 0x04, 0x03, 0x0a, 0x5f, 0x02, 0x12, 0x00, - 0x3f, 0xe1, 0x3f, 0x33, 0x2b, 0x01, 0x2f, 0xe1, 0x2b, 0x5d, 0x11, 0x33, - 0x2f, 0x2b, 0x5d, 0xe1, 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, - 0x25, 0x15, 0x21, 0x35, 0x01, 0x33, 0x07, 0x06, 0x06, 0x07, 0x03, 0x21, - 0x03, 0x26, 0x26, 0x04, 0x68, 0xfb, 0xbd, 0x01, 0xc2, 0xbb, 0x5e, 0x11, - 0x2a, 0x1d, 0xfe, 0x02, 0xae, 0xfc, 0x1f, 0x2e, 0x7d, 0x7d, 0x85, 0x05, - 0x31, 0xcd, 0x4a, 0xa8, 0x5b, 0xfd, 0x0a, 0x02, 0xf0, 0x61, 0xa8, 0x00, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x06, - 0x00, 0x28, 0x00, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x03, 0xfe, - 0x05, 0xb6, 0x02, 0x06, 0x00, 0x3d, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0xd5, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2b, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x05, 0xcd, 0x00, 0x03, - 0x00, 0x17, 0x00, 0x2b, 0x00, 0x53, 0x40, 0x34, 0x00, 0x01, 0x00, 0x01, - 0x0e, 0x22, 0x5b, 0x04, 0x67, 0x2d, 0xd0, 0x2d, 0x01, 0xcf, 0x2d, 0x01, - 0x80, 0x2d, 0x01, 0x3f, 0x2d, 0x6f, 0x2d, 0x02, 0x18, 0x5b, 0x0e, 0x66, - 0x2c, 0x03, 0x60, 0x0f, 0x00, 0xaf, 0x00, 0xdf, 0x00, 0xff, 0x00, 0x04, - 0x08, 0x00, 0x00, 0x1d, 0x27, 0x5f, 0x13, 0x04, 0x1d, 0x5f, 0x09, 0x13, - 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x31, 0x30, 0x01, 0x21, 0x15, 0x21, 0x25, 0x14, 0x02, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x16, 0x12, 0x05, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x01, 0xec, 0x02, - 0x16, 0xfd, 0xea, 0x03, 0x85, 0x51, 0xa0, 0xed, 0x9b, 0xa3, 0xef, 0x9d, - 0x4c, 0x4c, 0x9e, 0xf0, 0xa3, 0x9b, 0xeb, 0xa0, 0x51, 0xfb, 0xd1, 0x34, - 0x6b, 0xa5, 0x72, 0x72, 0xa5, 0x6b, 0x32, 0x32, 0x6a, 0xa4, 0x72, 0x72, - 0xa6, 0x6c, 0x34, 0x03, 0x39, 0xa1, 0x45, 0xa9, 0xfe, 0xea, 0xc6, 0x6c, - 0x6c, 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, 0x15, 0xc4, 0x6b, 0x6b, 0xc5, - 0xfe, 0xeb, 0xab, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, 0xdb, 0x89, 0x8a, - 0xda, 0x97, 0x51, 0x51, 0x97, 0xda, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, - 0x02, 0x64, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2c, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa2, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2e, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x8b, 0x05, 0xb6, - 0x00, 0x0c, 0x00, 0x5f, 0x40, 0x1c, 0x2f, 0x0e, 0xef, 0x0e, 0xff, 0x0e, - 0x03, 0x0e, 0x40, 0x12, 0x15, 0x48, 0x0e, 0x40, 0x0d, 0x10, 0x48, 0x0e, - 0x40, 0x06, 0x09, 0x48, 0x0c, 0x0b, 0x05, 0x05, 0x09, 0x0a, 0xb8, 0xff, - 0xf0, 0x40, 0x22, 0x0a, 0x01, 0x2f, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x9f, - 0x00, 0xaf, 0x00, 0xcf, 0x00, 0xef, 0x00, 0x07, 0x10, 0x00, 0x01, 0x00, - 0x10, 0x00, 0x05, 0x20, 0x0a, 0x0e, 0x48, 0x05, 0x0b, 0x03, 0x0a, 0x00, - 0x12, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x2b, 0x01, 0x2f, 0x38, 0x5d, 0x5d, - 0x32, 0x2f, 0x38, 0x33, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x2b, 0x2b, 0x2b, - 0x5d, 0x31, 0x30, 0x21, 0x23, 0x01, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, - 0x01, 0x23, 0x01, 0x33, 0x04, 0x8b, 0xc6, 0xfe, 0xdb, 0x1f, 0x2e, 0x0f, - 0x11, 0x2a, 0x1d, 0xfe, 0xd9, 0xc5, 0x01, 0xe7, 0xbb, 0x03, 0x9a, 0x61, - 0xa8, 0x4b, 0x4b, 0xa8, 0x5b, 0xfc, 0x60, 0x05, 0xb6, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x06, 0x2f, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x30, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x05, 0x0e, 0x05, 0xb6, - 0x02, 0x06, 0x00, 0x31, 0x00, 0x00, 0x00, 0x03, 0x00, 0x52, 0x00, 0x00, - 0x03, 0xee, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x63, - 0x40, 0x3e, 0x14, 0x00, 0x01, 0x1b, 0x01, 0x01, 0x00, 0x01, 0x00, 0x01, - 0x0b, 0x06, 0x06, 0x00, 0x08, 0x01, 0xc0, 0x08, 0x01, 0x3f, 0x08, 0x01, - 0x08, 0x0d, 0x4f, 0x0d, 0x6f, 0x0d, 0x02, 0x30, 0x0d, 0x01, 0x07, 0x07, - 0x70, 0x0b, 0x80, 0x0b, 0x02, 0x4f, 0x0b, 0x01, 0x0b, 0x03, 0x5f, 0x0f, - 0x00, 0xaf, 0x00, 0x02, 0x08, 0x00, 0x00, 0x04, 0x0b, 0x5f, 0x0a, 0x12, - 0x07, 0x5f, 0x04, 0x03, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, - 0x5e, 0x5d, 0xe1, 0x01, 0x2f, 0x5d, 0x5d, 0x33, 0x2f, 0x5d, 0x5d, 0x10, - 0xce, 0x5d, 0x5d, 0x71, 0x32, 0x2f, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, - 0x5d, 0x31, 0x30, 0x13, 0x21, 0x15, 0x21, 0x03, 0x21, 0x15, 0x21, 0x01, - 0x15, 0x21, 0x35, 0xcd, 0x02, 0xa6, 0xfd, 0x5a, 0x52, 0x03, 0x4a, 0xfc, - 0xb6, 0x03, 0x73, 0xfc, 0x64, 0x03, 0x4e, 0xa2, 0x03, 0x0a, 0xa4, 0xfb, - 0x92, 0xa4, 0xa4, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, - 0x05, 0xcd, 0x02, 0x06, 0x00, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0xc1, 0x05, 0xb6, 0x00, 0x07, 0x00, 0x31, 0x40, 0x1e, - 0x01, 0x5a, 0x00, 0x65, 0x09, 0xb0, 0x09, 0x01, 0x6f, 0x09, 0x9f, 0x09, - 0xaf, 0x09, 0x03, 0x10, 0x09, 0x01, 0x04, 0x5a, 0x05, 0x64, 0x08, 0x03, - 0x5f, 0x06, 0x03, 0x05, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x3f, 0xe1, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x21, - 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x04, 0xc1, 0xbb, 0xfd, 0x7b, - 0xba, 0x03, 0xfa, 0x05, 0x12, 0xfa, 0xee, 0x05, 0xb6, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x33, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x4e, 0x00, 0x00, 0x04, 0x12, 0x05, 0xb6, - 0x00, 0x0b, 0x00, 0x5a, 0x40, 0x0d, 0x08, 0x5b, 0x06, 0x20, 0x14, 0x17, - 0x48, 0x02, 0x06, 0x02, 0x06, 0x01, 0x0a, 0xb8, 0xff, 0xc0, 0x40, 0x26, - 0x06, 0x15, 0x48, 0x0a, 0x0a, 0x0d, 0x0f, 0x0d, 0x2f, 0x0d, 0x6f, 0x0d, - 0x8f, 0x0d, 0x04, 0x06, 0x07, 0x09, 0x5b, 0x03, 0x2f, 0x01, 0x3f, 0x01, - 0x02, 0x01, 0x08, 0x02, 0x02, 0x09, 0x07, 0x5f, 0x04, 0x03, 0x09, 0x5f, - 0x00, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x3d, 0x2f, 0x33, - 0x01, 0x18, 0x2f, 0x5d, 0x33, 0xe1, 0x32, 0x5e, 0x5d, 0x11, 0x33, 0x2f, - 0x2b, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x2b, 0xe1, 0x31, 0x30, 0x33, 0x35, - 0x01, 0x01, 0x35, 0x21, 0x15, 0x21, 0x01, 0x01, 0x21, 0x15, 0x4e, 0x01, - 0x9e, 0xfe, 0x6e, 0x03, 0x7d, 0xfd, 0x58, 0x01, 0x85, 0xfe, 0x67, 0x02, - 0xf7, 0x98, 0x02, 0x66, 0x02, 0x25, 0x93, 0xa4, 0xfd, 0xee, 0xfd, 0xa4, - 0xa4, 0x00, 0xff, 0xff, 0x00, 0x14, 0x00, 0x00, 0x04, 0x12, 0x05, 0xb6, - 0x02, 0x06, 0x00, 0x37, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0x37, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x03, - 0x00, 0x68, 0xff, 0xec, 0x05, 0xba, 0x05, 0xcb, 0x00, 0x21, 0x00, 0x2e, - 0x00, 0x3b, 0x00, 0x81, 0x40, 0x50, 0x22, 0x02, 0x67, 0x11, 0x01, 0x11, - 0x5a, 0x3b, 0x21, 0x9a, 0x12, 0x01, 0x87, 0x12, 0x01, 0x7a, 0x12, 0x01, - 0x12, 0x12, 0x1b, 0x28, 0x5b, 0x08, 0x67, 0x3d, 0x2f, 0x3d, 0x01, 0x00, - 0x3d, 0x01, 0xd0, 0x3d, 0x01, 0xaf, 0x3d, 0xbf, 0x3d, 0x02, 0x90, 0x3d, - 0x01, 0x5f, 0x3d, 0x01, 0x30, 0x3d, 0x01, 0x0f, 0x3d, 0x1f, 0x3d, 0x02, - 0x06, 0x35, 0x5b, 0x1b, 0x66, 0x3c, 0x22, 0x3b, 0x60, 0x13, 0x10, 0x13, - 0x2e, 0x2f, 0x60, 0x21, 0x02, 0x21, 0x13, 0x21, 0x13, 0x21, 0x11, 0x13, - 0x00, 0x04, 0x00, 0x3f, 0x3f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x10, - 0xe1, 0x32, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x5e, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x71, 0x10, 0xf6, 0xe1, 0x11, - 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x33, 0x33, 0xe1, 0x5d, 0x32, 0x32, 0x31, - 0x30, 0x01, 0x33, 0x15, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x04, - 0x23, 0x23, 0x15, 0x23, 0x35, 0x23, 0x22, 0x2e, 0x04, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x33, 0x13, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, - 0x2b, 0x03, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x33, 0x02, - 0xb4, 0xbb, 0x49, 0x86, 0xc2, 0x7e, 0x3c, 0x18, 0x34, 0x54, 0x78, 0x9f, - 0x65, 0x2f, 0xbb, 0x2f, 0x65, 0x9f, 0x78, 0x54, 0x35, 0x18, 0x3d, 0x7e, - 0xc2, 0x85, 0x4a, 0xbb, 0x1a, 0x5d, 0x8b, 0x5b, 0x2e, 0x29, 0x53, 0x7f, - 0x57, 0x39, 0xbb, 0x39, 0x57, 0x7f, 0x54, 0x28, 0x2e, 0x5b, 0x8b, 0x5d, - 0x1a, 0x05, 0xcb, 0xb4, 0x5e, 0x99, 0xc4, 0x66, 0x3d, 0x81, 0x7b, 0x6e, - 0x52, 0x30, 0xe1, 0xe1, 0x30, 0x52, 0x6e, 0x7b, 0x81, 0x3d, 0x66, 0xc4, - 0x99, 0x5e, 0xfc, 0x53, 0x3b, 0x69, 0x94, 0x58, 0x4e, 0x8b, 0x68, 0x3c, - 0x3c, 0x68, 0x8b, 0x4e, 0x58, 0x94, 0x69, 0x3b, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x60, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x3b, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x68, 0x00, 0x00, 0x05, 0xba, 0x05, 0xb6, 0x00, 0x25, - 0x00, 0x70, 0x40, 0x47, 0x1f, 0x67, 0x09, 0x01, 0x09, 0x5a, 0x1c, 0x9a, - 0x0a, 0x01, 0x87, 0x0a, 0x01, 0x7a, 0x0a, 0x01, 0x0a, 0x0a, 0x13, 0x23, - 0x5b, 0x00, 0x67, 0x27, 0x2f, 0x27, 0x01, 0x00, 0x27, 0x01, 0xd0, 0x27, - 0x01, 0xaf, 0x27, 0xbf, 0x27, 0x02, 0x90, 0x27, 0x01, 0x5f, 0x27, 0x01, - 0x30, 0x27, 0x01, 0x0f, 0x27, 0x1f, 0x27, 0x02, 0x06, 0x16, 0x5b, 0x13, - 0x66, 0x26, 0x1f, 0x1c, 0x60, 0x08, 0x0b, 0x0b, 0x09, 0x24, 0x1d, 0x14, - 0x03, 0x09, 0x12, 0x00, 0x3f, 0x3f, 0x33, 0x33, 0x12, 0x39, 0x2f, 0x33, - 0xe1, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x71, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, - 0x33, 0xe1, 0x5d, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x04, 0x23, 0x23, - 0x11, 0x23, 0x11, 0x23, 0x22, 0x2e, 0x04, 0x35, 0x11, 0x33, 0x11, 0x14, - 0x1e, 0x02, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x32, 0x36, 0x35, 0x11, - 0x33, 0x05, 0xba, 0x18, 0x34, 0x54, 0x78, 0x9f, 0x65, 0x2f, 0xbb, 0x2f, - 0x65, 0x9f, 0x78, 0x54, 0x35, 0x18, 0xc1, 0x2e, 0x5b, 0x8b, 0x5d, 0x1a, - 0xbb, 0x1a, 0xba, 0xb7, 0xc0, 0x03, 0xd7, 0x3d, 0x7f, 0x77, 0x6a, 0x4e, - 0x2e, 0xfe, 0x42, 0x01, 0xbe, 0x2d, 0x4e, 0x68, 0x77, 0x7e, 0x3d, 0x01, - 0xe3, 0xfe, 0x21, 0x58, 0x8d, 0x62, 0x34, 0x03, 0x5a, 0xfc, 0xa6, 0xc6, - 0xb1, 0x01, 0xe3, 0x00, 0x00, 0x01, 0x00, 0x4e, 0x00, 0x00, 0x05, 0xa6, - 0x05, 0xcd, 0x00, 0x2f, 0x00, 0x7c, 0x40, 0x51, 0x0e, 0x5b, 0x0b, 0x22, - 0x5b, 0x25, 0x20, 0x0b, 0x30, 0x0b, 0x02, 0x04, 0x0b, 0x01, 0x2f, 0x25, - 0x3f, 0x25, 0xdf, 0x25, 0xef, 0x25, 0x04, 0x0b, 0x25, 0x01, 0x07, 0x0b, - 0x25, 0x0b, 0x25, 0x13, 0x2b, 0x5b, 0x06, 0x23, 0x16, 0x23, 0x02, 0x23, - 0x1d, 0x67, 0x31, 0xd0, 0x31, 0x01, 0xcf, 0x31, 0x01, 0x80, 0x31, 0x01, - 0x3f, 0x31, 0x6f, 0x31, 0x02, 0x09, 0x0d, 0x19, 0x0d, 0x02, 0x08, 0x0d, - 0x05, 0x5b, 0x13, 0x66, 0x30, 0x00, 0x5f, 0x18, 0x04, 0x26, 0x22, 0x0a, - 0x0d, 0x5f, 0x25, 0x0c, 0x12, 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x32, 0x32, - 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x10, 0xf6, 0x32, 0x5d, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x22, - 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x15, 0x21, 0x35, 0x21, 0x2e, - 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x07, 0x21, 0x15, 0x21, 0x35, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, - 0x02, 0xfa, 0x72, 0xa4, 0x6a, 0x32, 0x23, 0x51, 0x83, 0x5f, 0xfd, 0xb0, - 0x01, 0x62, 0x40, 0x6f, 0x50, 0x2e, 0x51, 0xa0, 0xec, 0x9a, 0x9b, 0xeb, - 0xa0, 0x51, 0x2e, 0x50, 0x6e, 0x41, 0x01, 0x62, 0xfd, 0xb0, 0x5f, 0x83, - 0x51, 0x23, 0x32, 0x6a, 0xa4, 0x05, 0x29, 0x44, 0x81, 0xba, 0x75, 0x64, - 0xbb, 0xab, 0x97, 0x41, 0x93, 0xa4, 0x30, 0x87, 0xa8, 0xc7, 0x6f, 0x96, - 0xf4, 0xac, 0x5e, 0x5e, 0xac, 0xf4, 0x96, 0x6f, 0xc7, 0xa8, 0x87, 0x30, - 0xa4, 0x93, 0x41, 0x97, 0xab, 0xbb, 0x64, 0x75, 0xba, 0x81, 0x44, 0x00, - 0xff, 0xff, 0x00, 0x40, 0x00, 0x00, 0x02, 0x77, 0x07, 0x2b, 0x02, 0x26, - 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0x0d, 0x01, 0x52, - 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x15, 0x05, 0x26, 0x02, 0x01, 0x00, - 0x0c, 0x20, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, 0x07, 0x2b, - 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0xce, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x12, 0x05, 0x26, 0x02, - 0x01, 0x01, 0x09, 0x1d, 0x07, 0x02, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x91, - 0x06, 0x21, 0x02, 0x26, 0x01, 0x7e, 0x00, 0x00, 0x01, 0x06, 0x01, 0x54, - 0x19, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x4a, 0x11, 0x26, 0x02, 0x16, - 0x3e, 0x44, 0x16, 0x2f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x5a, 0xff, 0xec, 0x03, 0x5c, 0x06, 0x21, 0x02, 0x26, - 0x01, 0x82, 0x00, 0x00, 0x01, 0x06, 0x01, 0x54, 0xca, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x46, 0x11, 0x26, 0x01, 0x6d, 0x3a, 0x40, 0x18, 0x2d, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x12, 0x06, 0x21, 0x02, 0x26, 0x01, 0x84, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x54, 0x44, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x25, - 0x11, 0x26, 0x01, 0x62, 0x19, 0x1f, 0x0b, 0x17, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x02, 0x77, - 0x06, 0x21, 0x02, 0x26, 0x01, 0x86, 0x00, 0x00, 0x01, 0x07, 0x01, 0x54, - 0xfe, 0xce, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x22, 0x11, 0x26, 0x01, - 0xb8, 0xff, 0xfd, 0xb4, 0x16, 0x22, 0x15, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x3d, - 0x06, 0xb4, 0x02, 0x26, 0x01, 0x92, 0x00, 0x00, 0x01, 0x06, 0x01, 0x55, - 0x10, 0x00, 0x00, 0x12, 0xb2, 0x03, 0x02, 0x01, 0xb8, 0xff, 0xee, 0xb4, - 0x2c, 0x42, 0x05, 0x1b, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x35, 0x00, 0x02, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x91, 0x04, 0x5e, 0x00, 0x10, 0x00, 0x3d, - 0x00, 0x38, 0x40, 0x1e, 0x38, 0x1e, 0x05, 0x47, 0x2f, 0x28, 0x3f, 0x10, - 0x3f, 0x01, 0x0e, 0x48, 0x16, 0x56, 0x3e, 0x22, 0x0f, 0x1e, 0x0b, 0x50, - 0x1b, 0x0f, 0x38, 0x2f, 0x2c, 0x00, 0x50, 0x33, 0x11, 0x16, 0x00, 0x3f, - 0x33, 0xe1, 0x32, 0x32, 0x32, 0x3f, 0xe1, 0x33, 0x3f, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x10, 0xd4, 0x32, 0xe1, 0x32, 0x32, 0x31, 0x30, 0x25, 0x32, - 0x3e, 0x02, 0x37, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, - 0x17, 0x33, 0x36, 0x36, 0x37, 0x33, 0x0e, 0x03, 0x15, 0x11, 0x14, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x27, - 0x23, 0x0e, 0x03, 0x02, 0x35, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, 0x41, - 0x6c, 0x51, 0x87, 0x7f, 0x7f, 0x66, 0x5d, 0x9a, 0x6e, 0x3c, 0x3d, 0x71, - 0xa2, 0x64, 0x70, 0x90, 0x31, 0x0c, 0x0a, 0x21, 0x19, 0x8f, 0x0b, 0x13, - 0x0d, 0x08, 0x32, 0x22, 0x0e, 0x25, 0x08, 0x0f, 0x41, 0x22, 0x26, 0x3f, - 0x32, 0x24, 0x0c, 0x0c, 0x16, 0x3b, 0x4d, 0x60, 0x83, 0x2f, 0x62, 0x98, - 0x68, 0x0f, 0x65, 0x9d, 0x6b, 0x37, 0xda, 0xcc, 0xd1, 0xcd, 0x97, 0x48, - 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x53, 0x55, 0x23, 0x52, 0x1f, - 0x21, 0x68, 0x79, 0x7e, 0x37, 0xfe, 0x5d, 0x3c, 0x33, 0x07, 0x03, 0x85, - 0x09, 0x11, 0x10, 0x27, 0x40, 0x30, 0x22, 0x3d, 0x2e, 0x1a, 0x00, 0x02, - 0x00, 0xae, 0xfe, 0x14, 0x04, 0x75, 0x06, 0x1f, 0x00, 0x1b, 0x00, 0x3d, - 0x00, 0x59, 0x40, 0x34, 0x39, 0x48, 0x05, 0x08, 0x05, 0x1f, 0x33, 0x2f, - 0x33, 0x02, 0x33, 0x05, 0x33, 0x05, 0x15, 0x2c, 0x47, 0x0c, 0x57, 0x3f, - 0x20, 0x3f, 0x30, 0x3f, 0x02, 0x22, 0x15, 0x47, 0x16, 0x54, 0x3e, 0x15, - 0x1b, 0x08, 0x32, 0x50, 0x0f, 0x33, 0x01, 0x08, 0x33, 0x33, 0x00, 0x22, - 0x27, 0x50, 0x11, 0x16, 0x1c, 0x50, 0x00, 0x01, 0x00, 0x3f, 0xe1, 0x3f, - 0xe1, 0x32, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x39, 0x3f, 0x01, 0x10, - 0xf6, 0xe1, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, - 0x5d, 0x12, 0x39, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x32, 0x1e, 0x02, 0x15, - 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x26, 0x27, 0x11, 0x23, 0x11, 0x34, 0x3e, 0x02, 0x17, 0x22, 0x0e, 0x02, - 0x15, 0x11, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x02, - 0x77, 0x60, 0xa3, 0x76, 0x43, 0x98, 0x8f, 0xb0, 0xb9, 0x3f, 0x78, 0xad, - 0x6d, 0x60, 0xa4, 0x3c, 0xb6, 0x45, 0x79, 0xa8, 0x63, 0x38, 0x64, 0x4b, - 0x2c, 0x20, 0x4e, 0x52, 0x52, 0x24, 0x50, 0x6f, 0x46, 0x1f, 0x35, 0x60, - 0x84, 0x4f, 0x66, 0x4d, 0x52, 0x77, 0x4e, 0x25, 0x26, 0x44, 0x5f, 0x06, - 0x1f, 0x31, 0x62, 0x94, 0x62, 0x95, 0xad, 0x17, 0x06, 0x15, 0xca, 0xba, - 0x6c, 0xa2, 0x6d, 0x37, 0x20, 0x1f, 0xfd, 0xe9, 0x06, 0x34, 0x7b, 0xb2, - 0x73, 0x37, 0x96, 0x1f, 0x4c, 0x7f, 0x60, 0xfc, 0x92, 0x12, 0x1e, 0x15, - 0x0b, 0x28, 0x4d, 0x6f, 0x47, 0x50, 0x75, 0x4d, 0x25, 0x98, 0x28, 0x49, - 0x66, 0x3d, 0x3f, 0x5e, 0x3e, 0x1f, 0x00, 0x01, 0x00, 0x0a, 0xfe, 0x14, - 0x03, 0xdf, 0x04, 0x4a, 0x00, 0x1b, 0x00, 0x63, 0x40, 0x16, 0x1d, 0x40, - 0x12, 0x15, 0x48, 0x50, 0x1d, 0x01, 0x0f, 0x1d, 0x2f, 0x1d, 0x4f, 0x1d, - 0x03, 0x07, 0x1a, 0x05, 0x01, 0x05, 0x48, 0x06, 0xb8, 0xff, 0xf0, 0x40, - 0x15, 0x06, 0x06, 0x0b, 0x00, 0x13, 0x13, 0x0c, 0x1a, 0x00, 0x1b, 0x20, - 0x1b, 0x40, 0x1b, 0x03, 0x08, 0x1b, 0x10, 0x1b, 0x0d, 0x0c, 0xb8, 0xff, - 0xf0, 0x40, 0x0a, 0x0c, 0x1a, 0x0c, 0x0f, 0x13, 0x00, 0x0b, 0x15, 0x05, - 0x1b, 0x00, 0x3f, 0x3f, 0x33, 0x33, 0x3f, 0x33, 0x01, 0x2f, 0x38, 0x33, - 0x2f, 0x38, 0x5e, 0x5d, 0x33, 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x33, - 0x18, 0x2f, 0x38, 0xe1, 0x5d, 0x5e, 0x5d, 0x5d, 0x2b, 0x31, 0x30, 0x25, - 0x0e, 0x03, 0x15, 0x23, 0x34, 0x3e, 0x02, 0x37, 0x01, 0x33, 0x13, 0x1e, - 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x02, 0x60, 0x16, 0x22, - 0x18, 0x0c, 0xbe, 0x0f, 0x1b, 0x25, 0x15, 0xfe, 0x60, 0xbd, 0xd9, 0x0e, - 0x1e, 0x1a, 0x14, 0x04, 0x06, 0x05, 0x14, 0x19, 0x1b, 0x0b, 0xc7, 0xbc, - 0x12, 0x3e, 0x88, 0x86, 0x7e, 0x34, 0x2a, 0x79, 0x89, 0x8d, 0x3f, 0x04, - 0x3e, 0xfd, 0xba, 0x28, 0x5d, 0x5a, 0x50, 0x1b, 0x1a, 0x52, 0x5d, 0x5a, - 0x21, 0x02, 0x4c, 0x00, 0x00, 0x02, 0x00, 0x6f, 0xff, 0xec, 0x04, 0x2d, - 0x06, 0x1f, 0x00, 0x32, 0x00, 0x44, 0x00, 0x51, 0x40, 0x2e, 0x1a, 0x46, - 0x00, 0x38, 0x05, 0x05, 0x2e, 0x33, 0x48, 0x0f, 0x24, 0x57, 0x46, 0x40, - 0x46, 0xd0, 0x46, 0xe0, 0x46, 0x03, 0x0f, 0x46, 0x01, 0x06, 0x3d, 0x48, - 0x2e, 0x56, 0x45, 0x00, 0x24, 0x42, 0x1a, 0x0a, 0x38, 0x38, 0x0a, 0x42, - 0x50, 0x29, 0x16, 0x15, 0x50, 0x10, 0x0a, 0x01, 0x00, 0x3f, 0x33, 0xe1, - 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x12, 0x39, 0x12, 0x39, 0x33, 0x01, 0x10, - 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x11, 0x39, 0x2f, - 0x39, 0x39, 0xe1, 0x31, 0x30, 0x01, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, - 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x01, 0x34, 0x2e, 0x02, 0x27, - 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x02, 0x14, 0x38, - 0x5d, 0x43, 0x25, 0x33, 0x5c, 0x7d, 0x4a, 0x44, 0x71, 0x60, 0x51, 0x23, - 0x4a, 0x20, 0x49, 0x51, 0x5b, 0x33, 0x2a, 0x3c, 0x27, 0x12, 0x1b, 0x3c, - 0x62, 0x47, 0x55, 0x86, 0x5c, 0x31, 0x45, 0x7f, 0xb2, 0x6d, 0x67, 0xae, - 0x7f, 0x47, 0x43, 0x72, 0x99, 0x01, 0xb4, 0x1e, 0x39, 0x52, 0x35, 0x3a, - 0x7e, 0x68, 0x44, 0x26, 0x49, 0x69, 0x43, 0x8e, 0x99, 0x03, 0xaa, 0x20, - 0x4b, 0x56, 0x62, 0x39, 0x48, 0x69, 0x46, 0x22, 0x14, 0x1f, 0x27, 0x13, - 0x91, 0x14, 0x26, 0x1e, 0x12, 0x17, 0x25, 0x32, 0x1b, 0x25, 0x3e, 0x3d, - 0x41, 0x29, 0x31, 0x6c, 0x7e, 0x93, 0x58, 0x7f, 0xc1, 0x83, 0x43, 0x3d, - 0x75, 0xaa, 0x6e, 0x6a, 0xa3, 0x7a, 0x53, 0xfe, 0x51, 0x45, 0x6f, 0x59, - 0x49, 0x1f, 0x10, 0x3a, 0x62, 0x91, 0x67, 0x42, 0x6f, 0x51, 0x2d, 0xb4, - 0x00, 0x01, 0x00, 0x5a, 0xff, 0xec, 0x03, 0x5c, 0x04, 0x5e, 0x00, 0x39, - 0x00, 0x59, 0x40, 0x37, 0x1d, 0x23, 0x01, 0x01, 0x18, 0x10, 0x2d, 0x57, - 0x3b, 0xa0, 0x3b, 0xb0, 0x3b, 0xc0, 0x3b, 0x03, 0x3f, 0x3b, 0x5f, 0x3b, - 0x02, 0x10, 0x3b, 0x01, 0x34, 0x46, 0x23, 0x23, 0x05, 0x47, 0x18, 0x56, - 0x3a, 0x1e, 0x02, 0x50, 0xbf, 0x39, 0x01, 0x79, 0x39, 0x89, 0x39, 0x02, - 0x39, 0x39, 0x0a, 0x31, 0x50, 0x28, 0x10, 0x0a, 0x50, 0x13, 0x16, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0xe1, 0x39, 0x01, - 0x10, 0xf6, 0xe1, 0x33, 0x2f, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xe6, 0x32, - 0x11, 0x39, 0x2f, 0x12, 0x39, 0x31, 0x30, 0x01, 0x15, 0x23, 0x22, 0x06, - 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, 0x06, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x35, 0x2e, 0x03, - 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x02, 0x9c, 0x81, 0x8a, - 0x85, 0x29, 0x46, 0x60, 0x37, 0x33, 0x5c, 0x51, 0x47, 0x1f, 0x3b, 0x9e, - 0x6d, 0x71, 0xa6, 0x6c, 0x35, 0x26, 0x3f, 0x52, 0x2c, 0x2b, 0x46, 0x33, - 0x1c, 0x3a, 0x69, 0x90, 0x56, 0x35, 0x5a, 0x52, 0x4d, 0x28, 0x3f, 0x4b, - 0x81, 0x47, 0x6c, 0x73, 0x27, 0x48, 0x64, 0x3d, 0x02, 0x87, 0x99, 0x5b, - 0x5e, 0x33, 0x45, 0x2a, 0x12, 0x0f, 0x18, 0x1f, 0x10, 0xa0, 0x22, 0x29, - 0x31, 0x56, 0x75, 0x43, 0x3e, 0x58, 0x3e, 0x29, 0x0f, 0x0b, 0x0e, 0x2b, - 0x3e, 0x50, 0x32, 0x46, 0x6d, 0x4a, 0x26, 0x09, 0x13, 0x1c, 0x14, 0x93, - 0x22, 0x26, 0x4d, 0x4d, 0x2d, 0x40, 0x27, 0x12, 0x00, 0x01, 0x00, 0x71, - 0xfe, 0x6f, 0x03, 0x6a, 0x06, 0x14, 0x00, 0x33, 0x00, 0x39, 0x40, 0x1f, - 0x2e, 0x03, 0x03, 0x1f, 0x46, 0x1a, 0x20, 0x14, 0x01, 0x14, 0x35, 0x10, - 0x35, 0xc0, 0x35, 0x02, 0x0a, 0x48, 0x29, 0x00, 0x00, 0x29, 0x56, 0x34, - 0x19, 0x2e, 0x03, 0x00, 0x50, 0x01, 0x00, 0x00, 0x3f, 0xe1, 0x32, 0x32, - 0x2f, 0x01, 0x10, 0xe6, 0x32, 0x2f, 0x10, 0xe1, 0x5d, 0x10, 0xd6, 0x5d, - 0x32, 0xe1, 0x33, 0x2f, 0x33, 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x0e, - 0x05, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, - 0x07, 0x23, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x03, 0x35, - 0x34, 0x12, 0x36, 0x36, 0x37, 0x06, 0x07, 0x06, 0x06, 0x23, 0xae, 0x02, - 0xb6, 0x80, 0xb8, 0x7e, 0x4c, 0x28, 0x0d, 0x2d, 0x54, 0x78, 0x4b, 0x47, - 0x5f, 0x3a, 0x19, 0x15, 0x22, 0x2b, 0x16, 0xaa, 0x18, 0x2b, 0x22, 0x14, - 0x0e, 0x30, 0x5b, 0x4d, 0x59, 0x87, 0x5c, 0x2e, 0x5c, 0x9a, 0xc9, 0x6c, - 0x2b, 0x2f, 0x28, 0x60, 0x2f, 0x05, 0x7b, 0x99, 0x8d, 0x76, 0xcd, 0xb3, - 0x9a, 0x85, 0x6f, 0x30, 0x59, 0x6c, 0x40, 0x23, 0x11, 0x0f, 0x2e, 0x3b, - 0x48, 0x2a, 0x2d, 0x58, 0x52, 0x4b, 0x1f, 0x20, 0x48, 0x48, 0x43, 0x1d, - 0x14, 0x25, 0x22, 0x1f, 0x0f, 0x11, 0x42, 0x6c, 0x98, 0x66, 0x94, 0x01, - 0x01, 0xe8, 0xd9, 0x6c, 0x03, 0x03, 0x02, 0x04, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x12, 0x04, 0x5e, 0x00, 0x18, 0x00, 0x31, 0x40, 0x1d, - 0x00, 0x47, 0x18, 0x55, 0x1a, 0x10, 0x1a, 0x60, 0x1a, 0x80, 0x1a, 0x03, - 0x0e, 0x0a, 0x47, 0x0b, 0x54, 0x19, 0x0e, 0x04, 0x50, 0x14, 0x10, 0x0c, - 0x0f, 0x0b, 0x15, 0x00, 0x1b, 0x00, 0x3f, 0x3f, 0x3f, 0x3f, 0xe1, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, - 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x33, - 0x17, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, 0x11, 0x03, 0x5c, 0x69, - 0x70, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x94, 0x1a, 0x0a, 0x19, 0x45, 0x52, - 0x5c, 0x30, 0xb7, 0xb9, 0xfe, 0x14, 0x04, 0xaf, 0x82, 0x82, 0x34, 0x66, - 0x94, 0x60, 0xfd, 0xc7, 0x04, 0x4a, 0x94, 0x2b, 0x3f, 0x2a, 0x14, 0xbf, - 0xd2, 0xfb, 0x47, 0x00, 0x00, 0x03, 0x00, 0x71, 0xff, 0xec, 0x04, 0x17, - 0x06, 0x2b, 0x00, 0x13, 0x00, 0x1e, 0x00, 0x27, 0x00, 0x5b, 0x40, 0x3a, - 0x25, 0x19, 0x47, 0x00, 0x57, 0x29, 0x0f, 0x29, 0x01, 0xd0, 0x29, 0x01, - 0x7f, 0x29, 0x9f, 0x29, 0x02, 0x40, 0x29, 0x01, 0x0f, 0x29, 0x01, 0x06, - 0x24, 0x1a, 0x47, 0x0a, 0x56, 0x28, 0x1a, 0x50, 0xcb, 0x24, 0x01, 0xba, - 0x24, 0x01, 0x89, 0x24, 0x99, 0x24, 0x02, 0x0f, 0x24, 0x01, 0x08, 0x24, - 0x24, 0x14, 0x1f, 0x50, 0x0f, 0x01, 0x14, 0x50, 0x05, 0x16, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x10, - 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, - 0x12, 0x01, 0x32, 0x3e, 0x02, 0x37, 0x21, 0x1e, 0x03, 0x13, 0x22, 0x0e, - 0x02, 0x07, 0x21, 0x02, 0x02, 0x04, 0x17, 0x34, 0x70, 0xb3, 0x7e, 0x76, - 0xaf, 0x74, 0x38, 0x33, 0x6f, 0xb1, 0x7e, 0x76, 0xb0, 0x75, 0x3a, 0xfe, - 0x2b, 0x49, 0x68, 0x45, 0x23, 0x03, 0xfd, 0xcb, 0x02, 0x21, 0x44, 0x68, - 0x4a, 0x47, 0x66, 0x44, 0x23, 0x05, 0x02, 0x33, 0x09, 0x84, 0x03, 0x0c, - 0xbc, 0xfe, 0xd7, 0xce, 0x6d, 0x6d, 0xce, 0x01, 0x29, 0xbc, 0xbc, 0x01, - 0x29, 0xce, 0x6c, 0x6b, 0xcd, 0xfe, 0xd7, 0xfc, 0xb9, 0x4a, 0x94, 0xdf, - 0x95, 0x93, 0xdf, 0x95, 0x4b, 0x05, 0x10, 0x45, 0x89, 0xcd, 0x89, 0x01, - 0x11, 0x01, 0x13, 0x00, 0x00, 0x01, 0x00, 0xa4, 0xff, 0xec, 0x02, 0x77, - 0x04, 0x48, 0x00, 0x15, 0x00, 0x35, 0x40, 0x23, 0x30, 0x09, 0x01, 0x09, - 0x09, 0x17, 0x00, 0x17, 0x10, 0x17, 0x20, 0x17, 0x60, 0x17, 0x70, 0x17, - 0x90, 0x17, 0xc0, 0x17, 0xd0, 0x17, 0x08, 0x08, 0x01, 0x47, 0x14, 0x54, - 0x16, 0x04, 0x50, 0x0f, 0x16, 0x00, 0x0f, 0x00, 0x3f, 0x3f, 0xe1, 0x01, - 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x5d, 0x31, 0x30, 0x01, - 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x11, 0x01, 0x5a, 0x3f, 0x48, 0x12, 0x2d, 0x2a, - 0x24, 0x09, 0x0d, 0x29, 0x30, 0x34, 0x18, 0x3e, 0x6a, 0x4d, 0x2c, 0x04, - 0x48, 0xfc, 0xfc, 0x61, 0x62, 0x04, 0x06, 0x08, 0x03, 0x8a, 0x06, 0x0c, - 0x09, 0x05, 0x20, 0x4e, 0x85, 0x65, 0x03, 0x04, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x03, 0xf0, 0x04, 0x4a, 0x02, 0x06, 0x00, 0xfa, 0x00, 0x00, - 0x00, 0x01, 0xff, 0xf2, 0xff, 0xec, 0x04, 0x17, 0x06, 0x21, 0x00, 0x2e, - 0x00, 0x68, 0x40, 0x2a, 0x22, 0x15, 0x15, 0x1a, 0x12, 0x12, 0x01, 0x29, - 0x0a, 0x29, 0x0a, 0x29, 0x00, 0x50, 0x1a, 0x01, 0x34, 0x1a, 0x44, 0x1a, - 0x02, 0x00, 0x1a, 0x10, 0x1a, 0x20, 0x1a, 0x03, 0x1a, 0x1a, 0x30, 0x60, - 0x30, 0x90, 0x30, 0x02, 0x0f, 0x30, 0x01, 0x06, 0x2e, 0x00, 0xb8, 0xff, - 0xf0, 0x40, 0x0f, 0x00, 0x2e, 0x15, 0x29, 0x01, 0x01, 0x0e, 0x17, 0x50, - 0x1e, 0x16, 0x07, 0x50, 0x0e, 0x01, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, - 0x39, 0x2f, 0x33, 0x3f, 0x01, 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x5d, 0x11, - 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x12, 0x39, 0x39, 0x3d, 0x2f, 0x18, 0x2f, - 0x11, 0x33, 0x33, 0x11, 0x12, 0x39, 0x11, 0x33, 0x31, 0x30, 0x23, 0x01, - 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, 0x36, 0x33, 0x32, - 0x1e, 0x02, 0x17, 0x01, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, - 0x06, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x03, 0x2e, 0x03, 0x27, 0x23, 0x06, - 0x06, 0x07, 0x03, 0x0e, 0x01, 0xb8, 0x35, 0x0d, 0x1f, 0x2b, 0x3d, 0x2b, - 0x22, 0x32, 0x14, 0x1a, 0x42, 0x23, 0x4a, 0x69, 0x4f, 0x3f, 0x1f, 0x01, - 0x48, 0x12, 0x2e, 0x26, 0x0e, 0x26, 0x08, 0x17, 0x37, 0x25, 0x27, 0x3b, - 0x2f, 0x25, 0x0f, 0x87, 0x0b, 0x1d, 0x1b, 0x16, 0x05, 0x06, 0x0d, 0x35, - 0x1f, 0xe5, 0x04, 0x33, 0xa0, 0x29, 0x43, 0x31, 0x1b, 0x07, 0x05, 0x91, - 0x07, 0x0a, 0x2a, 0x59, 0x87, 0x5d, 0xfc, 0x36, 0x36, 0x39, 0x07, 0x03, - 0x85, 0x0c, 0x0e, 0x11, 0x28, 0x40, 0x2e, 0x01, 0xa2, 0x21, 0x5e, 0x61, - 0x57, 0x19, 0x4d, 0xaa, 0x4f, 0xfd, 0xc1, 0x00, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x12, 0x04, 0x4a, 0x00, 0x1d, 0x00, 0x3f, 0x40, 0x26, - 0x0d, 0x0c, 0x09, 0x47, 0x0a, 0x55, 0x1f, 0x10, 0x1f, 0x20, 0x1f, 0x60, - 0x1f, 0x70, 0x1f, 0x80, 0x1f, 0x05, 0x14, 0x00, 0x1a, 0x47, 0x1b, 0x54, - 0x1e, 0x1a, 0x1b, 0x14, 0x0d, 0x03, 0x50, 0x11, 0x16, 0x0b, 0x15, 0x1c, - 0x09, 0x0f, 0x00, 0x3f, 0x33, 0x3f, 0x3f, 0xe1, 0x33, 0x33, 0x3f, 0x01, - 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x31, - 0x30, 0x01, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, - 0x23, 0x27, 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x11, 0x23, 0x11, 0x33, 0x01, 0x64, 0x6a, 0x6f, 0x52, 0x6e, - 0x43, 0x1c, 0xb6, 0x93, 0x1b, 0x0a, 0x30, 0x90, 0x67, 0x48, 0x6a, 0x23, - 0x01, 0x02, 0x02, 0x01, 0xb6, 0xb6, 0x01, 0x87, 0x82, 0x82, 0x34, 0x65, - 0x94, 0x60, 0x02, 0x3a, 0xfb, 0xb6, 0x93, 0x53, 0x54, 0x2e, 0x2a, 0x26, - 0x28, 0x23, 0x55, 0x2a, 0xfe, 0xc0, 0x06, 0x36, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x03, 0xcf, 0x04, 0x4a, 0x00, 0x14, 0x00, 0x3b, 0x40, 0x16, - 0x14, 0x13, 0x07, 0x07, 0x00, 0x0d, 0x47, 0x0e, 0x57, 0x16, 0x10, 0x16, - 0x01, 0xb0, 0x16, 0x01, 0x0f, 0x16, 0x01, 0x06, 0x01, 0x00, 0xb8, 0xff, - 0xf0, 0xb6, 0x00, 0x07, 0x14, 0x15, 0x0d, 0x00, 0x0f, 0x00, 0x3f, 0x32, - 0x3f, 0x33, 0x01, 0x2f, 0x38, 0x32, 0x5e, 0x5d, 0x5d, 0x71, 0x10, 0xf6, - 0xe1, 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, 0x11, 0x33, 0x13, - 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x02, 0x12, 0x35, 0x33, 0x14, 0x02, 0x02, - 0x06, 0x07, 0x23, 0xbc, 0xc9, 0x0c, 0x1f, 0x1e, 0x19, 0x05, 0x06, 0x5a, - 0x72, 0x42, 0x19, 0xb6, 0x25, 0x5c, 0x9a, 0x75, 0xc0, 0x04, 0x4a, 0xfd, - 0xb0, 0x21, 0x63, 0x67, 0x5c, 0x19, 0x60, 0xcd, 0xe7, 0x01, 0x05, 0x97, - 0xa3, 0xfe, 0xe0, 0xfe, 0xf5, 0xfd, 0x7f, 0x00, 0x00, 0x01, 0x00, 0x71, - 0xfe, 0x6f, 0x03, 0x6a, 0x06, 0x14, 0x00, 0x46, 0x00, 0x7e, 0x40, 0x4e, - 0x32, 0x3b, 0x3b, 0x11, 0x2a, 0x01, 0x41, 0x46, 0x38, 0x2d, 0x2d, 0x24, - 0x1c, 0x00, 0x01, 0x10, 0x01, 0x20, 0x01, 0x03, 0x08, 0x01, 0x01, 0x1c, - 0x46, 0x20, 0x11, 0x01, 0x11, 0x48, 0x3f, 0x48, 0x5f, 0x48, 0x7f, 0x48, - 0xef, 0x48, 0x04, 0x10, 0x48, 0x01, 0x07, 0x48, 0x24, 0x56, 0x47, 0x3c, - 0x32, 0x38, 0x50, 0x39, 0x2a, 0x00, 0x49, 0x1c, 0x59, 0x1c, 0x69, 0x1c, - 0x03, 0x38, 0x1c, 0x01, 0x07, 0x24, 0x1c, 0x03, 0x16, 0x01, 0x4f, 0x00, - 0x00, 0x16, 0x39, 0x00, 0x16, 0xfa, 0x00, 0x3f, 0x3f, 0x12, 0x39, 0x2f, - 0xe1, 0x11, 0x17, 0x39, 0x5d, 0x5d, 0x11, 0x39, 0x10, 0xe1, 0x32, 0x32, - 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x10, 0xd6, 0x5d, 0xf1, 0xc0, 0x2f, - 0x5e, 0x5d, 0x11, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x12, 0x39, 0x11, 0x33, - 0x2f, 0x33, 0x31, 0x30, 0x01, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, - 0x1e, 0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x23, 0x3e, - 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, - 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x23, 0x35, 0x21, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, - 0x1e, 0x02, 0x33, 0x03, 0x23, 0xa2, 0x51, 0x7f, 0x57, 0x2d, 0x2d, 0x54, - 0x78, 0x4b, 0x47, 0x5f, 0x3a, 0x19, 0x15, 0x22, 0x2b, 0x16, 0xaa, 0x18, - 0x2b, 0x22, 0x14, 0x0e, 0x30, 0x5b, 0x4d, 0xb2, 0xb8, 0x2f, 0x4e, 0x66, - 0x37, 0x65, 0x72, 0x2d, 0x4f, 0x6b, 0x3e, 0x22, 0x27, 0x21, 0x55, 0x2e, - 0x3e, 0x02, 0x81, 0x37, 0x49, 0x91, 0x73, 0x47, 0x20, 0x46, 0x72, 0x51, - 0x03, 0x77, 0x89, 0x31, 0x55, 0x71, 0x41, 0x4e, 0x60, 0x3b, 0x22, 0x11, - 0x0f, 0x2e, 0x3b, 0x48, 0x2a, 0x2d, 0x58, 0x52, 0x4b, 0x1f, 0x20, 0x48, - 0x48, 0x43, 0x1d, 0x14, 0x25, 0x22, 0x1f, 0x0f, 0x22, 0xc7, 0xb5, 0x4d, - 0x7f, 0x63, 0x43, 0x11, 0x0c, 0x1c, 0x86, 0x75, 0x48, 0x66, 0x49, 0x31, - 0x13, 0x03, 0x03, 0x02, 0x04, 0x99, 0x8d, 0x26, 0x4e, 0x75, 0x4e, 0x35, - 0x51, 0x37, 0x1c, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x04, 0x5e, 0x02, 0x06, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, - 0xff, 0xec, 0x04, 0xc9, 0x04, 0x4a, 0x00, 0x18, 0x00, 0x58, 0x40, 0x38, - 0x0a, 0x47, 0x8f, 0x16, 0x01, 0x16, 0x16, 0x0e, 0x03, 0x14, 0x14, 0x00, - 0x03, 0x10, 0x03, 0x02, 0x03, 0x03, 0x1a, 0x2f, 0x1a, 0x9f, 0x1a, 0xef, - 0x1a, 0x03, 0x10, 0x0d, 0x47, 0x2f, 0x0e, 0xef, 0x0e, 0xff, 0x0e, 0x03, - 0x0e, 0x40, 0x10, 0x15, 0x48, 0x0e, 0x54, 0x19, 0x15, 0x0c, 0x10, 0x50, - 0x12, 0x0f, 0x0e, 0x15, 0x00, 0x50, 0x07, 0x16, 0x00, 0x3f, 0xe1, 0x3f, - 0x3f, 0xe1, 0x32, 0x32, 0x01, 0x10, 0xf6, 0x2b, 0x5d, 0xe1, 0x33, 0x5d, - 0x11, 0x33, 0x2f, 0x5d, 0x33, 0x2f, 0x11, 0x12, 0x39, 0x2f, 0x5d, 0xe1, - 0x31, 0x30, 0x25, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x35, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x35, 0x37, 0x21, 0x15, 0x23, - 0x11, 0x14, 0x16, 0x04, 0x50, 0x1c, 0x2f, 0x0f, 0x0f, 0x4a, 0x30, 0x71, - 0x71, 0xfe, 0x6d, 0xb6, 0xdd, 0x89, 0x04, 0x27, 0xd3, 0x2f, 0x81, 0x0d, - 0x08, 0x90, 0x09, 0x11, 0x84, 0x82, 0x02, 0xbe, 0xfc, 0x50, 0x03, 0xb0, - 0x4a, 0x50, 0x9a, 0xfd, 0x4e, 0x46, 0x37, 0x00, 0x00, 0x02, 0x00, 0xa4, - 0xfe, 0x14, 0x04, 0x2d, 0x04, 0x5e, 0x00, 0x1a, 0x00, 0x27, 0x00, 0x39, - 0x40, 0x21, 0x25, 0x48, 0x00, 0x57, 0x29, 0xcf, 0x29, 0x01, 0x40, 0x29, - 0x01, 0x0f, 0x29, 0x01, 0x06, 0x1f, 0x09, 0x0f, 0x47, 0x10, 0x54, 0x28, - 0x1b, 0x50, 0x16, 0x10, 0x0f, 0x1b, 0x22, 0x50, 0x08, 0x05, 0x16, 0x00, - 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, - 0x5e, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x26, 0x27, 0x23, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, - 0x23, 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x22, 0x06, - 0x07, 0x11, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x04, 0x2d, - 0x3f, 0x75, 0xa7, 0x68, 0x4b, 0x8f, 0x36, 0x06, 0x01, 0x02, 0x02, 0x01, - 0xb6, 0x41, 0x78, 0xa9, 0x69, 0x61, 0xa3, 0x77, 0x43, 0xfe, 0x3b, 0x89, - 0x82, 0x03, 0x36, 0x8f, 0x4b, 0x8c, 0x7b, 0x7d, 0x02, 0x27, 0x89, 0xd5, - 0x91, 0x4c, 0x2d, 0x2d, 0x2b, 0x2e, 0x27, 0x61, 0x2e, 0xfe, 0xdd, 0x04, - 0x13, 0x88, 0xd3, 0x91, 0x4b, 0x4b, 0x91, 0xd3, 0x01, 0x18, 0xc4, 0xc8, - 0xfe, 0xac, 0x33, 0x31, 0xd3, 0xd1, 0xd1, 0xcf, 0x00, 0x01, 0x00, 0x71, - 0xfe, 0x6f, 0x03, 0x6f, 0x04, 0x5e, 0x00, 0x31, 0x00, 0x51, 0x40, 0x36, - 0x27, 0x27, 0x15, 0x46, 0x10, 0x00, 0x0a, 0x10, 0x0a, 0x20, 0x0a, 0x03, - 0x0a, 0x33, 0x3f, 0x33, 0x5f, 0x33, 0x7f, 0x33, 0xef, 0x33, 0x04, 0x10, - 0x33, 0x01, 0x00, 0x48, 0x1f, 0x56, 0x32, 0x28, 0x2d, 0x51, 0x37, 0x0a, - 0x01, 0x28, 0x15, 0x38, 0x15, 0x48, 0x15, 0x03, 0x15, 0x0a, 0x1f, 0x00, - 0x04, 0x0f, 0x24, 0x10, 0x0f, 0xfa, 0x00, 0x3f, 0x3f, 0x12, 0x17, 0x39, - 0x5d, 0x5d, 0xe1, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x10, 0xd6, - 0x5d, 0x32, 0xe1, 0x33, 0x2f, 0x31, 0x30, 0x01, 0x14, 0x1e, 0x02, 0x17, - 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x23, 0x3e, 0x03, 0x35, 0x34, - 0x2e, 0x02, 0x27, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, - 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x01, 0x2d, 0x1c, 0x49, - 0x7e, 0x61, 0x47, 0x5f, 0x3a, 0x19, 0x15, 0x22, 0x2b, 0x16, 0xaa, 0x18, - 0x2b, 0x22, 0x14, 0x0e, 0x30, 0x5b, 0x4d, 0x4d, 0x84, 0x62, 0x37, 0x49, - 0x83, 0xb3, 0x6a, 0x4e, 0x95, 0x32, 0x36, 0x17, 0x38, 0x3c, 0x3a, 0x1a, - 0x50, 0x72, 0x49, 0x22, 0x02, 0x06, 0x60, 0x79, 0x4e, 0x2f, 0x16, 0x0f, - 0x2e, 0x3b, 0x48, 0x2a, 0x2d, 0x58, 0x52, 0x4b, 0x1f, 0x20, 0x48, 0x48, - 0x43, 0x1d, 0x14, 0x25, 0x22, 0x1f, 0x0f, 0x0f, 0x41, 0x76, 0xb4, 0x82, - 0x9a, 0xe2, 0x95, 0x49, 0x22, 0x19, 0x9a, 0x0a, 0x13, 0x0f, 0x09, 0x39, - 0x70, 0xa4, 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x04, 0x85, 0x04, 0x4a, - 0x00, 0x16, 0x00, 0x29, 0x00, 0x36, 0x40, 0x21, 0x24, 0x21, 0x48, 0x12, - 0x10, 0x00, 0x57, 0x2b, 0x10, 0x2b, 0x90, 0x2b, 0xa0, 0x2b, 0xb0, 0x2b, - 0xe0, 0x2b, 0x05, 0x17, 0x48, 0x0a, 0x56, 0x2a, 0x12, 0x25, 0x50, 0x0f, - 0x0f, 0x1c, 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x32, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0x32, 0x32, 0xe1, 0x32, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x21, 0x15, 0x21, 0x1e, 0x03, 0x05, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x23, 0x22, 0x0e, 0x02, 0x04, 0x2d, - 0x3e, 0x7a, 0xb4, 0x75, 0x6b, 0xaf, 0x7d, 0x44, 0x4d, 0x90, 0xce, 0x80, - 0x01, 0xe9, 0xfe, 0xf6, 0x25, 0x41, 0x30, 0x1c, 0xfd, 0x00, 0x21, 0x47, - 0x6e, 0x4d, 0x4c, 0x6d, 0x47, 0x21, 0x4f, 0x4b, 0x3b, 0x5f, 0x8b, 0x5a, - 0x2b, 0x01, 0xf8, 0x6f, 0xc0, 0x8d, 0x50, 0x46, 0x8a, 0xcb, 0x85, 0x9c, - 0xda, 0x8a, 0x3e, 0x9a, 0x29, 0x5d, 0x6c, 0x7c, 0x36, 0x55, 0x90, 0x69, - 0x3b, 0x37, 0x62, 0x86, 0x4e, 0x90, 0xd7, 0x59, 0x2c, 0x63, 0xa1, 0x00, - 0x00, 0x01, 0x00, 0x12, 0xff, 0xe5, 0x03, 0x66, 0x04, 0x4a, 0x00, 0x1c, - 0x00, 0x3a, 0x40, 0x24, 0x01, 0x0f, 0x0d, 0x1f, 0x0d, 0x02, 0x06, 0x0d, - 0x57, 0x1e, 0x10, 0x1e, 0x01, 0x2b, 0x1a, 0x3b, 0x1a, 0x02, 0x1a, 0x03, - 0x47, 0x10, 0x18, 0xe0, 0x18, 0x02, 0x18, 0x02, 0x19, 0x50, 0x1c, 0x0f, - 0x08, 0x50, 0x13, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x32, 0x01, 0x2f, - 0x5d, 0xe1, 0xc6, 0x5d, 0x5d, 0x10, 0xe6, 0x5e, 0x5d, 0x32, 0x31, 0x30, - 0x01, 0x15, 0x21, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, - 0x15, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x21, 0x35, 0x37, - 0x03, 0x66, 0xfe, 0x8c, 0x19, 0x2d, 0x3e, 0x24, 0x12, 0x2a, 0x28, 0x24, - 0x0d, 0x0d, 0x27, 0x2e, 0x35, 0x1b, 0x40, 0x75, 0x59, 0x34, 0xfe, 0xd7, - 0x86, 0x04, 0x4a, 0x9a, 0xfd, 0xa2, 0x3b, 0x52, 0x33, 0x17, 0x03, 0x06, - 0x07, 0x04, 0x87, 0x06, 0x0c, 0x0b, 0x06, 0x1d, 0x4d, 0x86, 0x68, 0x02, - 0x73, 0x4a, 0x50, 0x00, 0x00, 0x01, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x3d, - 0x04, 0x4a, 0x00, 0x1d, 0x00, 0x29, 0x40, 0x18, 0x10, 0x47, 0x1b, 0x57, - 0x1f, 0x10, 0x1f, 0x60, 0x1f, 0x80, 0x1f, 0x03, 0x08, 0x47, 0x05, 0x54, - 0x1e, 0x15, 0x06, 0x0f, 0x0d, 0x50, 0x00, 0x16, 0x00, 0x3f, 0xe1, 0x3f, - 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x05, - 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, 0x15, 0x10, 0x02, - 0x02, 0x5c, 0x81, 0xaa, 0x64, 0x29, 0xb6, 0x20, 0x42, 0x66, 0x46, 0x92, - 0x8d, 0x09, 0x10, 0x17, 0x0f, 0xb6, 0x0f, 0x18, 0x10, 0x08, 0xf4, 0x14, - 0x50, 0x8c, 0xbd, 0x6d, 0x02, 0x58, 0xfd, 0xb2, 0x56, 0x8c, 0x63, 0x36, - 0xe8, 0xf7, 0x47, 0x7d, 0x75, 0x74, 0x3d, 0x3d, 0x72, 0x77, 0x81, 0x4b, - 0xfe, 0xc1, 0xfe, 0xd3, 0x00, 0x02, 0x00, 0x71, 0xfe, 0x14, 0x05, 0x25, - 0x04, 0x5e, 0x00, 0x25, 0x00, 0x35, 0x00, 0x5e, 0x40, 0x3c, 0x31, 0x25, - 0x47, 0x16, 0x96, 0x00, 0xa6, 0x00, 0x02, 0x00, 0x00, 0x06, 0x26, 0x48, - 0x1f, 0x57, 0x37, 0x20, 0x37, 0x01, 0x0f, 0x37, 0x01, 0xe0, 0x37, 0x01, - 0x6f, 0x37, 0x7f, 0x37, 0x9f, 0x37, 0x03, 0x40, 0x37, 0x01, 0x0f, 0x37, - 0x1f, 0x37, 0x02, 0x06, 0x11, 0x47, 0x06, 0x56, 0x36, 0x2b, 0x50, 0x0b, - 0x1a, 0x10, 0x31, 0x16, 0x50, 0x24, 0x01, 0x16, 0x00, 0x1b, 0x00, 0x3f, - 0x3f, 0x33, 0xe1, 0x32, 0x3f, 0x33, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5e, - 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, - 0x5d, 0x33, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x11, 0x2e, 0x03, 0x35, 0x34, - 0x3e, 0x02, 0x37, 0x17, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x11, - 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x11, - 0x01, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x3e, 0x03, - 0x02, 0x66, 0x6d, 0xb7, 0x86, 0x4b, 0x20, 0x38, 0x4e, 0x2d, 0x8d, 0x25, - 0x3f, 0x2d, 0x19, 0x33, 0x58, 0x74, 0x40, 0xa5, 0x91, 0x5a, 0x92, 0x66, - 0x37, 0x56, 0x90, 0xbe, 0x68, 0x01, 0x4f, 0x1e, 0x36, 0x49, 0x2b, 0x1b, - 0x31, 0x25, 0x16, 0x48, 0x7b, 0x59, 0x33, 0xfe, 0x14, 0x01, 0xda, 0x05, - 0x43, 0x89, 0xd5, 0x97, 0x53, 0x98, 0x8a, 0x7d, 0x37, 0x60, 0x33, 0x68, - 0x72, 0x7d, 0x47, 0x6f, 0x99, 0x61, 0x30, 0x07, 0x02, 0x5e, 0xbc, 0xc1, - 0x50, 0x90, 0xc9, 0x7a, 0x95, 0xd9, 0x90, 0x4a, 0x05, 0xfe, 0x26, 0x04, - 0x25, 0x62, 0x94, 0x65, 0x33, 0x17, 0x35, 0x57, 0x41, 0xfd, 0xa0, 0x07, - 0x3b, 0x6b, 0x9f, 0x00, 0x00, 0x01, 0xff, 0xec, 0xfe, 0x14, 0x04, 0x25, - 0x04, 0x4e, 0x00, 0x28, 0x00, 0xa0, 0x40, 0x1a, 0x68, 0x1f, 0x78, 0x1f, - 0x02, 0x1f, 0x67, 0x09, 0x77, 0x09, 0xc7, 0x09, 0x03, 0x09, 0x06, 0x76, - 0x1c, 0x01, 0x37, 0x1c, 0x01, 0x1c, 0x1c, 0x1e, 0x07, 0x08, 0xb8, 0xff, - 0xc0, 0x40, 0x0e, 0x13, 0x16, 0x48, 0x34, 0x08, 0x01, 0x08, 0x10, 0x08, - 0x08, 0xc0, 0x12, 0x01, 0x12, 0xb8, 0xff, 0xc0, 0x40, 0x19, 0x06, 0x0b, - 0x48, 0x12, 0x12, 0x2a, 0x0f, 0x2a, 0x3f, 0x2a, 0x4f, 0x2a, 0xcf, 0x2a, - 0x04, 0x06, 0xb0, 0x25, 0xc0, 0x25, 0x02, 0x25, 0x25, 0x1d, 0x1e, 0xb8, - 0xff, 0xf0, 0x40, 0x1f, 0x1e, 0x1e, 0x29, 0x1e, 0x1b, 0x17, 0x06, 0x27, - 0x06, 0x02, 0x18, 0x1c, 0x28, 0x1c, 0x02, 0x1c, 0x09, 0x1f, 0x06, 0x04, - 0x00, 0x0f, 0x50, 0x16, 0x1b, 0x07, 0x0f, 0x23, 0x50, 0x00, 0x0f, 0x00, - 0x3f, 0xe1, 0x3f, 0x3f, 0xe1, 0x12, 0x17, 0x39, 0x5d, 0x5d, 0x3f, 0x11, - 0x01, 0x33, 0x2f, 0x38, 0x33, 0x33, 0x2f, 0x5d, 0x5e, 0x5d, 0x11, 0x33, - 0x2f, 0x2b, 0x5d, 0x33, 0x2f, 0x38, 0x5d, 0x2b, 0x33, 0x12, 0x39, 0x3d, - 0x2f, 0x5d, 0x5d, 0x33, 0x33, 0x5d, 0x33, 0x5d, 0x31, 0x30, 0x13, 0x32, - 0x1e, 0x02, 0x17, 0x13, 0x01, 0x33, 0x01, 0x13, 0x1e, 0x03, 0x33, 0x32, - 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x03, 0x01, - 0x23, 0x01, 0x03, 0x26, 0x26, 0x23, 0x22, 0x07, 0x35, 0x36, 0x36, 0xbc, - 0x2d, 0x49, 0x3a, 0x31, 0x15, 0x7b, 0x01, 0x1f, 0xb2, 0xfe, 0x73, 0xb2, - 0x0e, 0x1d, 0x26, 0x34, 0x25, 0x1a, 0x2e, 0x10, 0x16, 0x39, 0x28, 0x43, - 0x5f, 0x47, 0x33, 0x17, 0x83, 0xfe, 0xb6, 0xc2, 0x01, 0xc6, 0xa0, 0x1b, - 0x47, 0x35, 0x24, 0x1c, 0x16, 0x3e, 0x04, 0x4e, 0x1f, 0x3e, 0x5c, 0x3d, - 0xfe, 0xa8, 0x02, 0x4a, 0xfc, 0xf8, 0xfe, 0x20, 0x26, 0x42, 0x33, 0x1d, - 0x05, 0x03, 0x8d, 0x06, 0x0b, 0x26, 0x46, 0x66, 0x41, 0x01, 0x6a, 0xfd, - 0x83, 0x03, 0x3e, 0x01, 0xbe, 0x4f, 0x59, 0x0a, 0x8f, 0x07, 0x0a, 0x00, - 0x00, 0x01, 0x00, 0xa4, 0xfe, 0x14, 0x05, 0x71, 0x06, 0x12, 0x00, 0x27, - 0x00, 0x4c, 0x40, 0x2f, 0x01, 0x17, 0x47, 0x26, 0x18, 0x18, 0x1e, 0x06, - 0x47, 0x11, 0x57, 0x29, 0x30, 0x29, 0x40, 0x29, 0x90, 0x29, 0xb0, 0x29, - 0xc0, 0x29, 0x05, 0x0f, 0x29, 0x1f, 0x29, 0x02, 0x06, 0x21, 0x47, 0x1e, - 0x54, 0x28, 0x0b, 0x1f, 0x0f, 0x01, 0x26, 0x50, 0x16, 0x19, 0x16, 0x17, - 0x1b, 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f, 0x33, 0xe1, 0x32, 0x3f, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, - 0x2f, 0x33, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x11, 0x3e, 0x03, 0x35, 0x34, - 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x11, - 0x23, 0x11, 0x2e, 0x03, 0x35, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x17, - 0x11, 0x03, 0x56, 0x4e, 0x83, 0x5f, 0x34, 0x08, 0x0f, 0x18, 0x10, 0xb6, - 0x10, 0x18, 0x10, 0x08, 0x57, 0x93, 0xc4, 0x6d, 0xb2, 0x6f, 0xbc, 0x89, - 0x4c, 0xb6, 0x36, 0x5a, 0x78, 0x42, 0x06, 0x12, 0xfa, 0x73, 0x09, 0x3c, - 0x6c, 0x9c, 0x67, 0x47, 0x80, 0x7e, 0x83, 0x49, 0x48, 0x83, 0x7e, 0x7e, - 0x44, 0x9d, 0xdc, 0x8c, 0x45, 0x07, 0xfe, 0x26, 0x01, 0xda, 0x04, 0x41, - 0x88, 0xd6, 0x9a, 0x02, 0x1f, 0xfd, 0xd9, 0x72, 0x9a, 0x61, 0x2e, 0x05, - 0x05, 0x8f, 0x00, 0x01, 0x00, 0x71, 0xff, 0xec, 0x05, 0x96, 0x04, 0x4a, - 0x00, 0x3b, 0x00, 0x70, 0x40, 0x48, 0x38, 0x67, 0x1d, 0x01, 0x1d, 0x47, - 0xd5, 0x1a, 0x01, 0xb7, 0x1a, 0x01, 0xa9, 0x1a, 0x01, 0x9a, 0x1a, 0x01, - 0x03, 0x1a, 0x1a, 0x05, 0x25, 0x48, 0x30, 0x57, 0x3d, 0x04, 0x3d, 0x14, - 0x3d, 0x02, 0xc4, 0x3d, 0xf4, 0x3d, 0x02, 0x7b, 0x3d, 0x9b, 0x3d, 0x02, - 0x40, 0x3d, 0x01, 0x02, 0x30, 0x3d, 0x01, 0x0f, 0x3d, 0x1f, 0x3d, 0x02, - 0x06, 0x10, 0x48, 0x05, 0x56, 0x3c, 0x1b, 0x1b, 0x2a, 0x0a, 0x0f, 0x20, - 0x15, 0x50, 0x39, 0x35, 0x00, 0x16, 0x00, 0x3f, 0x32, 0x32, 0xe1, 0x32, - 0x3f, 0x33, 0x39, 0x2f, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5f, - 0x5d, 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5f, 0x5d, - 0x5d, 0x5d, 0x5d, 0xe1, 0x5d, 0x39, 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, - 0x35, 0x34, 0x3e, 0x02, 0x37, 0x33, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, - 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x23, 0x06, 0x06, 0x01, 0xe9, 0x5a, - 0x8c, 0x60, 0x32, 0x0f, 0x1f, 0x2f, 0x20, 0xba, 0x20, 0x2f, 0x1f, 0x0f, - 0x1d, 0x36, 0x4b, 0x2d, 0x2e, 0x44, 0x2c, 0x16, 0xb2, 0x63, 0x51, 0x2d, - 0x4b, 0x36, 0x1d, 0x0f, 0x1f, 0x2f, 0x20, 0xbb, 0x20, 0x2f, 0x1f, 0x0f, - 0x32, 0x60, 0x8d, 0x5a, 0x6b, 0x8b, 0x1f, 0x0a, 0x1f, 0x8b, 0x14, 0x52, - 0x92, 0xcb, 0x79, 0x51, 0x8f, 0x87, 0x87, 0x48, 0x49, 0x86, 0x87, 0x8e, - 0x52, 0x62, 0x96, 0x65, 0x34, 0x29, 0x48, 0x62, 0x39, 0x01, 0x32, 0xfe, - 0xce, 0x81, 0x8b, 0x34, 0x65, 0x96, 0x62, 0x52, 0x8e, 0x87, 0x86, 0x49, - 0x48, 0x87, 0x87, 0x8f, 0x51, 0x79, 0xcb, 0x92, 0x52, 0x57, 0x5b, 0x5b, - 0x57, 0x00, 0xff, 0xff, 0x00, 0x15, 0xff, 0xec, 0x02, 0x77, 0x05, 0xd9, - 0x02, 0x26, 0x01, 0x86, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xfe, 0xe2, - 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x1f, 0x11, 0x26, 0x02, - 0x01, 0x32, 0x16, 0x2a, 0x14, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x3d, - 0x05, 0xd9, 0x02, 0x26, 0x01, 0x92, 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, - 0x00, 0x00, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x27, 0x11, 0x26, 0x02, 0x01, - 0xb8, 0xff, 0xde, 0xb4, 0x1e, 0x32, 0x05, 0x1b, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x04, 0x2d, 0x06, 0x21, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x54, 0x0e, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2c, 0x11, 0x26, - 0x02, 0x3d, 0x20, 0x26, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x3d, 0x06, 0x21, - 0x02, 0x26, 0x01, 0x92, 0x00, 0x00, 0x01, 0x06, 0x01, 0x54, 0x10, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x2a, 0x11, 0x26, 0x01, 0x1d, 0x1e, 0x24, - 0x05, 0x1b, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x05, 0x96, 0x06, 0x21, 0x02, 0x26, 0x01, 0x96, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x54, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x21, - 0x40, 0x09, 0x01, 0x48, 0x11, 0x26, 0x01, 0x60, 0x3c, 0x01, 0x3c, 0xb8, - 0xff, 0xc0, 0x40, 0x09, 0x09, 0x0b, 0x48, 0x3d, 0x3c, 0x42, 0x05, 0x30, - 0x25, 0x01, 0x2b, 0x2b, 0x5d, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x28, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0xf5, 0x01, 0x52, 0x00, 0x17, - 0x40, 0x0d, 0x02, 0x01, 0x15, 0x05, 0x26, 0x02, 0x01, 0x01, 0x0c, 0x20, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0x00, 0x01, 0x00, 0x14, 0xff, 0xec, 0x05, 0x06, 0x05, 0xb6, 0x00, 0x25, - 0x00, 0x85, 0x40, 0x5a, 0x04, 0x04, 0x13, 0x0c, 0x5a, 0x0f, 0x21, 0x01, - 0xdf, 0x21, 0xff, 0x21, 0x02, 0x21, 0x55, 0x27, 0x0f, 0x27, 0x6f, 0x27, - 0x7f, 0x27, 0x03, 0x06, 0x1a, 0xf4, 0x18, 0x01, 0xa0, 0x18, 0xb0, 0x18, - 0x02, 0x74, 0x18, 0x01, 0x18, 0x18, 0x12, 0x5a, 0x13, 0x00, 0x15, 0x30, - 0x15, 0x40, 0x15, 0x50, 0x15, 0xc0, 0x15, 0x05, 0x15, 0x15, 0xb0, 0x13, - 0x01, 0x67, 0x13, 0x77, 0x13, 0x02, 0x5e, 0x13, 0x01, 0x3f, 0x13, 0x4f, - 0x13, 0x02, 0x00, 0x13, 0x01, 0x13, 0x11, 0x5f, 0x1a, 0x1a, 0x07, 0x19, - 0x15, 0x5f, 0x16, 0x03, 0x13, 0x12, 0x07, 0x5f, 0x00, 0x13, 0x00, 0x3f, - 0xe1, 0x3f, 0x3f, 0xe1, 0x32, 0x12, 0x39, 0x2f, 0xe1, 0x01, 0x2f, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x2f, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5d, - 0x5d, 0x5d, 0x32, 0x5e, 0x5d, 0x10, 0xf6, 0x5d, 0x71, 0xe1, 0x12, 0x39, - 0x2f, 0x31, 0x30, 0x05, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x21, 0x11, 0x23, 0x11, 0x21, - 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x32, 0x1e, 0x02, 0x15, 0x15, 0x14, - 0x0e, 0x02, 0x03, 0x9e, 0x2f, 0x46, 0x19, 0x1d, 0x44, 0x27, 0x20, 0x40, - 0x33, 0x21, 0x69, 0x7b, 0xfe, 0xbb, 0xbb, 0xfe, 0xac, 0x03, 0xb1, 0xfe, - 0x5e, 0x01, 0x5a, 0x5d, 0x92, 0x65, 0x35, 0x35, 0x5f, 0x84, 0x14, 0x0d, - 0x0b, 0xa0, 0x09, 0x0c, 0x13, 0x33, 0x57, 0x45, 0x85, 0x73, 0x74, 0xfd, - 0x23, 0x05, 0x12, 0xa4, 0xa4, 0xfe, 0x6f, 0x31, 0x5e, 0x8b, 0x59, 0x89, - 0x69, 0x9a, 0x65, 0x31, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, - 0x07, 0x73, 0x02, 0x26, 0x01, 0x61, 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, - 0x00, 0x33, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x12, 0x05, 0x26, - 0x01, 0x3e, 0x06, 0x0c, 0x04, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0x00, 0x01, 0x00, 0x7d, 0xff, 0xec, 0x04, 0x98, 0x05, 0xcb, - 0x00, 0x26, 0x00, 0x5f, 0x40, 0x13, 0x11, 0x40, 0x13, 0x18, 0x48, 0x07, - 0x11, 0x07, 0x11, 0x1b, 0xca, 0x23, 0x01, 0x70, 0x23, 0x80, 0x23, 0x02, - 0x23, 0xb8, 0xff, 0xc0, 0x40, 0x24, 0x07, 0x0a, 0x48, 0x23, 0x23, 0x28, - 0xbf, 0x28, 0x01, 0x05, 0x08, 0x5b, 0x1b, 0x66, 0x27, 0x08, 0x5f, 0x0f, - 0x05, 0xaf, 0x05, 0x02, 0x08, 0x05, 0x05, 0x0d, 0x24, 0x00, 0x5f, 0x20, - 0x04, 0x0d, 0x5f, 0x10, 0x16, 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, - 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x5d, 0x12, 0x39, 0x39, 0x2f, 0x2f, - 0x2b, 0x31, 0x30, 0x01, 0x22, 0x0e, 0x02, 0x07, 0x21, 0x15, 0x21, 0x1e, - 0x03, 0x33, 0x32, 0x36, 0x37, 0x15, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x26, - 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, - 0x26, 0x03, 0x19, 0x5f, 0xa0, 0x78, 0x4d, 0x0d, 0x02, 0x74, 0xfd, 0x86, - 0x05, 0x40, 0x76, 0xab, 0x71, 0x59, 0xa0, 0x4e, 0x27, 0x4e, 0x55, 0x61, - 0x3b, 0xa4, 0xf0, 0x9d, 0x4c, 0x57, 0xa9, 0xfa, 0xa2, 0x6c, 0xc4, 0x4f, - 0x4e, 0x3f, 0x94, 0x05, 0x27, 0x41, 0x7a, 0xaf, 0x6f, 0xa2, 0x82, 0xc9, - 0x8a, 0x48, 0x23, 0x17, 0xa2, 0x0f, 0x17, 0x0e, 0x07, 0x6c, 0xc6, 0x01, - 0x16, 0xa9, 0xa6, 0x01, 0x14, 0xc6, 0x6e, 0x2c, 0x2a, 0x9c, 0x20, 0x2e, - 0xff, 0xff, 0x00, 0x68, 0xff, 0xec, 0x03, 0xc9, 0x05, 0xcb, 0x02, 0x06, - 0x00, 0x36, 0x00, 0x00, 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x02, 0x64, - 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2c, 0x00, 0x00, 0xff, 0xff, 0x00, 0x40, - 0x00, 0x00, 0x02, 0x77, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0xff, 0x0d, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x02, 0x01, 0x15, 0x05, 0x26, 0x02, 0x01, 0x00, 0x0c, 0x20, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0xff, 0x48, 0xfe, 0x7b, 0x01, 0x73, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2d, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xff, 0xe9, 0x06, 0xdf, 0x05, 0xb6, - 0x00, 0x2a, 0x00, 0x35, 0x00, 0x8d, 0xb5, 0x25, 0x2b, 0x5a, 0x06, 0x0d, - 0x08, 0xb8, 0xff, 0xf8, 0x40, 0x53, 0x14, 0x17, 0x48, 0x08, 0x5a, 0x23, - 0x99, 0x1e, 0x01, 0x1e, 0x10, 0x1e, 0x23, 0x00, 0x06, 0x90, 0x06, 0x02, - 0x06, 0xe0, 0x23, 0x01, 0xb4, 0x23, 0xc4, 0x23, 0xd4, 0x23, 0x03, 0x00, - 0x23, 0x50, 0x23, 0x90, 0x23, 0xa0, 0x23, 0x04, 0x07, 0x06, 0x23, 0x06, - 0x23, 0x15, 0x2f, 0x5b, 0x00, 0x67, 0x37, 0xcf, 0x37, 0x01, 0x37, 0x40, - 0x06, 0x09, 0x48, 0x15, 0x15, 0x36, 0x35, 0x5f, 0x0f, 0x25, 0xaf, 0x25, - 0x02, 0x08, 0x25, 0x25, 0x2b, 0x08, 0x5f, 0x23, 0x03, 0x19, 0x60, 0x12, - 0x13, 0x2b, 0x60, 0x06, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0xe1, - 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0x2b, 0x5d, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x5e, 0x5d, 0x11, 0x33, 0x38, 0x5d, 0x10, 0xe1, 0x2b, 0x32, 0x10, 0xe1, - 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x21, 0x0e, - 0x03, 0x07, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, - 0x32, 0x3e, 0x02, 0x37, 0x36, 0x36, 0x12, 0x12, 0x37, 0x21, 0x11, 0x33, - 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, - 0x23, 0x06, 0xdf, 0x3c, 0x7e, 0xc2, 0x86, 0xfe, 0xbf, 0xfe, 0xc2, 0x0f, - 0x1f, 0x21, 0x22, 0x10, 0x14, 0x35, 0x4f, 0x6e, 0x4e, 0x23, 0x4a, 0x1c, - 0x17, 0x3a, 0x20, 0x30, 0x3e, 0x2a, 0x1a, 0x0c, 0x0c, 0x20, 0x27, 0x2b, - 0x16, 0x02, 0x93, 0x6d, 0x98, 0xcf, 0x7e, 0x37, 0xfd, 0x77, 0x77, 0xae, - 0xa4, 0x2e, 0x5b, 0x8b, 0x5d, 0x58, 0x01, 0xac, 0x61, 0x9e, 0x70, 0x3d, - 0x05, 0x12, 0x71, 0xf4, 0xec, 0xd4, 0x51, 0x67, 0xa2, 0x6f, 0x3b, 0x0e, - 0x0b, 0x9a, 0x0d, 0x10, 0x3f, 0x62, 0x75, 0x36, 0x39, 0xc8, 0x01, 0x06, - 0x01, 0x3a, 0xaa, 0xfd, 0x98, 0x42, 0x71, 0x98, 0xfe, 0x9d, 0x84, 0x88, - 0x46, 0x61, 0x3c, 0x1b, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x07, 0x0c, - 0x05, 0xb6, 0x00, 0x16, 0x00, 0x21, 0x00, 0x53, 0x40, 0x32, 0x11, 0x17, - 0x5a, 0x0e, 0x06, 0x06, 0x0a, 0x1b, 0x5b, 0x00, 0x67, 0x23, 0x0f, 0x23, - 0x01, 0x0f, 0x23, 0x1f, 0x23, 0x7f, 0x23, 0xff, 0x23, 0x04, 0x0d, 0x09, - 0x5a, 0x0a, 0x64, 0x22, 0x21, 0x08, 0x5f, 0x11, 0x0f, 0x0d, 0xaf, 0x0d, - 0x02, 0x08, 0x0d, 0x0d, 0x0f, 0x0b, 0x03, 0x17, 0x60, 0x0a, 0x06, 0x12, - 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0xe1, - 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, - 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, - 0x21, 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, - 0x33, 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x23, 0x07, 0x0c, 0x3c, 0x7e, 0xc2, 0x86, 0xfe, 0xbf, 0xfd, 0xb8, - 0xba, 0xba, 0x02, 0x48, 0xba, 0x6d, 0x98, 0xcf, 0x7e, 0x37, 0xfd, 0x77, - 0x77, 0xae, 0xa4, 0x2e, 0x5b, 0x8b, 0x5d, 0x58, 0x01, 0xac, 0x61, 0x9e, - 0x70, 0x3d, 0x02, 0xaa, 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, - 0xfd, 0x98, 0x42, 0x71, 0x98, 0xfe, 0x9d, 0x84, 0x88, 0x46, 0x61, 0x3c, - 0x1b, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x05, 0x06, 0x05, 0xb6, - 0x00, 0x15, 0x00, 0x73, 0x40, 0x4d, 0x08, 0x5a, 0x07, 0x55, 0x17, 0x0f, - 0x17, 0x6f, 0x17, 0x7f, 0x17, 0x03, 0x06, 0xf4, 0x14, 0x01, 0xa0, 0x14, - 0xb0, 0x14, 0x02, 0x74, 0x14, 0x01, 0x14, 0x14, 0x00, 0x0e, 0x5a, 0x0f, - 0x00, 0x11, 0x30, 0x11, 0x40, 0x11, 0x50, 0x11, 0xc0, 0x11, 0x05, 0x11, - 0x11, 0xb0, 0x0f, 0x01, 0x67, 0x0f, 0x77, 0x0f, 0x02, 0x5e, 0x0f, 0x01, - 0x3f, 0x0f, 0x4f, 0x0f, 0x02, 0x00, 0x0f, 0x01, 0x0f, 0x15, 0x11, 0x5f, - 0x12, 0x0d, 0x5f, 0x00, 0x00, 0x07, 0x12, 0x03, 0x0f, 0x07, 0x12, 0x00, - 0x3f, 0x33, 0x3f, 0x12, 0x39, 0x2f, 0xe1, 0x10, 0xe1, 0x32, 0x01, 0x2f, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x2f, 0x5d, 0x10, 0xe1, 0x32, 0x32, - 0x2f, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, - 0x21, 0x32, 0x1e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x21, - 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x02, 0x23, 0x01, 0x5a, - 0x5d, 0x92, 0x65, 0x35, 0xba, 0x69, 0x7b, 0xfe, 0xbb, 0xbb, 0xfe, 0xac, - 0x03, 0xb1, 0xfe, 0x5e, 0x03, 0x81, 0x31, 0x5e, 0x8b, 0x59, 0xfd, 0xf2, - 0x01, 0xf6, 0x73, 0x74, 0xfd, 0x23, 0x05, 0x12, 0xa4, 0xa4, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa2, 0x07, 0x73, 0x02, 0x26, 0x01, 0xb4, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x00, 0x89, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x17, 0x05, 0x26, 0x01, 0x22, 0x0b, 0x11, 0x04, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x19, - 0xff, 0xec, 0x04, 0xae, 0x07, 0x69, 0x02, 0x26, 0x01, 0xbd, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x36, 0x00, 0x23, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x27, 0x05, 0x26, 0x01, 0x0d, 0x2c, 0x22, 0x13, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7f, - 0x04, 0xc1, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x63, 0x40, 0x41, 0xc6, 0x02, - 0xd6, 0x02, 0x02, 0x02, 0x5a, 0xc5, 0x03, 0xd5, 0x03, 0x02, 0xa8, 0x03, - 0x01, 0x96, 0x03, 0x01, 0x03, 0x10, 0x0e, 0x11, 0x48, 0x47, 0x03, 0x01, - 0x3a, 0x03, 0x01, 0x03, 0x03, 0x05, 0x09, 0x5a, 0x00, 0x65, 0x0d, 0xb0, - 0x0d, 0x01, 0x6f, 0x0d, 0x9f, 0x0d, 0xaf, 0x0d, 0x03, 0x10, 0x0d, 0x01, - 0x08, 0x5a, 0x05, 0x64, 0x0c, 0x0a, 0x06, 0x03, 0x08, 0x5f, 0x05, 0x02, - 0x02, 0x01, 0x05, 0x00, 0x2f, 0x33, 0x33, 0x2f, 0x10, 0xe1, 0x3f, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, - 0x2f, 0x5d, 0x5d, 0x2b, 0x5d, 0x5d, 0x5d, 0xe1, 0x5d, 0x31, 0x30, 0x21, - 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x04, - 0xc1, 0xfe, 0x5a, 0xb1, 0xfe, 0x5d, 0xba, 0x02, 0x85, 0xbb, 0xfe, 0x7f, - 0x01, 0x81, 0x05, 0xb6, 0xfa, 0xf0, 0x05, 0x10, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0xdd, 0x05, 0xbc, 0x02, 0x06, 0x00, 0x24, 0x00, 0x00, - 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, 0x00, 0x10, - 0x00, 0x1b, 0x00, 0x4b, 0x40, 0x2e, 0x5f, 0x08, 0x01, 0x08, 0x08, 0x11, - 0x15, 0x5b, 0x00, 0x67, 0x1d, 0x0f, 0x1d, 0x5f, 0x1d, 0x7f, 0x1d, 0xcf, - 0x1d, 0x04, 0x06, 0x0b, 0x11, 0x5a, 0x06, 0x64, 0x1c, 0x1b, 0x5f, 0x0f, - 0x0b, 0xaf, 0x0b, 0x02, 0x08, 0x0b, 0x0b, 0x11, 0x0a, 0x5f, 0x07, 0x03, - 0x11, 0x60, 0x06, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, - 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x10, 0xf6, - 0xe1, 0x12, 0x39, 0x2f, 0x5d, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, - 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x04, 0x33, 0x3c, 0x7e, - 0xc2, 0x86, 0xfe, 0x96, 0x03, 0x14, 0xfd, 0xa6, 0x96, 0x98, 0xcf, 0x7e, - 0x37, 0xfd, 0x4e, 0xa0, 0xae, 0xa4, 0x2e, 0x5b, 0x8b, 0x5d, 0x81, 0x01, - 0xac, 0x61, 0x9e, 0x70, 0x3d, 0x05, 0xb6, 0xa4, 0xfe, 0x3c, 0x42, 0x71, - 0x98, 0xfe, 0x9d, 0x84, 0x88, 0x46, 0x61, 0x3c, 0x1b, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0x87, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x25, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, - 0x02, 0x06, 0x01, 0x61, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0e, 0xfe, 0x7f, - 0x05, 0x0a, 0x05, 0xb6, 0x00, 0x11, 0x00, 0x1b, 0x00, 0x8b, 0x40, 0x0b, - 0x18, 0x1b, 0x28, 0x1b, 0x02, 0x1b, 0x07, 0x37, 0x14, 0x01, 0x14, 0xb8, - 0xff, 0xf8, 0x40, 0x0b, 0x14, 0x17, 0x48, 0x14, 0x5a, 0x0e, 0x0f, 0x07, - 0x01, 0x07, 0x07, 0xb8, 0xff, 0xf0, 0x40, 0x10, 0x30, 0x0e, 0xc0, 0x0e, - 0x02, 0x07, 0x0e, 0x07, 0x0e, 0x05, 0x12, 0x5a, 0x10, 0x01, 0x5a, 0x00, - 0xb8, 0xff, 0xc0, 0x40, 0x25, 0x10, 0x15, 0x48, 0x00, 0x00, 0x10, 0x65, - 0x1d, 0x20, 0x1d, 0x01, 0x0f, 0x1d, 0x01, 0x08, 0x04, 0x5a, 0x05, 0x05, - 0x1c, 0x14, 0x5f, 0x0e, 0x03, 0x09, 0x51, 0x08, 0x1b, 0x10, 0x06, 0x5f, - 0x03, 0x00, 0x05, 0x05, 0x03, 0x12, 0x00, 0x3f, 0x33, 0x2f, 0x33, 0x10, - 0xe1, 0x32, 0x32, 0x2f, 0xe2, 0x3f, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0xe1, - 0x5e, 0x5d, 0x5d, 0x10, 0xe4, 0x32, 0x2f, 0x2b, 0xe1, 0x10, 0xe1, 0x11, - 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x38, 0x5e, 0x5d, 0x10, 0xe1, 0x2b, 0x5d, - 0x11, 0x33, 0x5d, 0x31, 0x30, 0x01, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, - 0x33, 0x3e, 0x05, 0x37, 0x21, 0x11, 0x33, 0x21, 0x11, 0x21, 0x0e, 0x05, - 0x07, 0x05, 0x0a, 0xb0, 0xfc, 0x64, 0xb0, 0x71, 0x2f, 0x56, 0x4d, 0x41, - 0x30, 0x1d, 0x04, 0x02, 0x65, 0xc2, 0xfe, 0x83, 0xfe, 0xfa, 0x04, 0x1f, - 0x2e, 0x3d, 0x46, 0x4d, 0x27, 0xfe, 0x7f, 0x01, 0x81, 0xfe, 0x7f, 0x02, - 0x27, 0x55, 0xc8, 0xd9, 0xe6, 0xe8, 0xe3, 0x69, 0xfa, 0xf0, 0x04, 0x6a, - 0x4c, 0xb9, 0xca, 0xd1, 0xc8, 0xb7, 0x4b, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x28, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x06, 0x81, 0x05, 0xb6, 0x00, 0x11, - 0x00, 0xcb, 0x40, 0x4e, 0x66, 0x09, 0x76, 0x09, 0x86, 0x09, 0x03, 0x37, - 0x09, 0x47, 0x09, 0x57, 0x09, 0x03, 0x09, 0x06, 0x06, 0x47, 0x0d, 0xf7, - 0x0d, 0x02, 0x0d, 0x5a, 0x69, 0x00, 0x79, 0x00, 0x89, 0x00, 0x03, 0x38, - 0x00, 0x48, 0x00, 0x58, 0x00, 0x03, 0x00, 0x03, 0x03, 0xa8, 0x0e, 0xb8, - 0x0e, 0x02, 0x99, 0x0e, 0x01, 0x86, 0x0e, 0x01, 0x57, 0x0e, 0x67, 0x0e, - 0x77, 0x0e, 0x03, 0x0e, 0x0e, 0x11, 0x0a, 0x07, 0x08, 0x08, 0x0b, 0x00, - 0x0a, 0x01, 0x70, 0x0a, 0x80, 0x0a, 0xc0, 0x0a, 0x03, 0x0a, 0xb8, 0xff, - 0xc0, 0x40, 0x26, 0x07, 0x0a, 0x48, 0x0a, 0x10, 0x0a, 0x0a, 0x13, 0xf0, - 0x13, 0x01, 0xbf, 0x13, 0xcf, 0x13, 0xdf, 0x13, 0x03, 0xa0, 0x13, 0x01, - 0x8f, 0x13, 0x01, 0x40, 0x13, 0x01, 0x0f, 0x13, 0x1f, 0x13, 0x02, 0x08, - 0x02, 0x01, 0x01, 0x10, 0x11, 0xb8, 0xff, 0xf0, 0x40, 0x0f, 0x11, 0x11, - 0x12, 0x06, 0x03, 0x03, 0x04, 0x11, 0x0a, 0x0e, 0x12, 0x07, 0x01, 0x04, - 0x03, 0x00, 0x3f, 0x33, 0x33, 0x3f, 0x33, 0x33, 0x12, 0x39, 0x11, 0x33, - 0x11, 0x01, 0x33, 0x2f, 0x38, 0x33, 0x33, 0x11, 0x33, 0x5e, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x71, 0x33, - 0x33, 0x11, 0x33, 0x11, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, - 0x11, 0x33, 0x5d, 0x5d, 0xe1, 0x5d, 0x32, 0x11, 0x33, 0x5d, 0x5d, 0x31, - 0x30, 0x01, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, 0x01, 0x33, 0x01, 0x01, - 0x23, 0x01, 0x11, 0x23, 0x11, 0x01, 0x23, 0x02, 0x25, 0xfd, 0xed, 0xcd, - 0x02, 0x0a, 0xb3, 0x02, 0x0a, 0xcd, 0xfd, 0xed, 0x02, 0x21, 0xd3, 0xfd, - 0xee, 0xb3, 0xfd, 0xee, 0xd3, 0x02, 0xf2, 0x02, 0xc4, 0xfd, 0x3c, 0x02, - 0xc4, 0xfd, 0x3c, 0x02, 0xc4, 0xfd, 0x3c, 0xfd, 0x0e, 0x02, 0xe5, 0xfd, - 0x1b, 0x02, 0xe5, 0xfd, 0x1b, 0x00, 0x00, 0x01, 0x00, 0x48, 0xff, 0xec, - 0x03, 0xec, 0x05, 0xcb, 0x00, 0x39, 0x00, 0x68, 0x40, 0x3f, 0x27, 0x5b, - 0x00, 0x05, 0x21, 0x00, 0x30, 0x21, 0x00, 0x00, 0x21, 0x30, 0x03, 0x13, - 0x1c, 0x5b, 0x0b, 0x67, 0x3b, 0x9f, 0x3b, 0x01, 0x70, 0x13, 0x80, 0x13, - 0x02, 0x3f, 0x13, 0x4f, 0x13, 0x5f, 0x13, 0x03, 0x13, 0x13, 0x3a, 0x05, - 0x20, 0x60, 0xaa, 0x21, 0x01, 0x78, 0x21, 0x01, 0x0f, 0x21, 0x01, 0x08, - 0x21, 0x21, 0x19, 0x2f, 0x2c, 0x60, 0x35, 0x04, 0x19, 0x60, 0x14, 0x10, - 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0xe1, 0x39, 0x11, 0x01, 0x33, 0x2f, 0x5d, 0x5d, 0x5d, - 0x10, 0xf6, 0xe1, 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x11, 0x12, 0x39, - 0x10, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, - 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, - 0x32, 0x1e, 0x02, 0x03, 0xd1, 0x33, 0x5b, 0x7d, 0x4b, 0x57, 0x8a, 0x5e, - 0x32, 0x43, 0x88, 0xcd, 0x89, 0x6e, 0xc0, 0x55, 0x2b, 0x60, 0x63, 0x63, - 0x2e, 0xb2, 0xb0, 0xcf, 0xba, 0xbf, 0xb0, 0x5c, 0x8e, 0x61, 0x32, 0x25, - 0x44, 0x5f, 0x3a, 0x6e, 0xa9, 0x4b, 0x5c, 0x26, 0x62, 0x74, 0x83, 0x47, - 0x6d, 0xa6, 0x71, 0x39, 0x04, 0x60, 0x49, 0x78, 0x58, 0x39, 0x0c, 0x06, - 0x0b, 0x39, 0x59, 0x77, 0x48, 0x60, 0xa0, 0x74, 0x40, 0x22, 0x2d, 0xaa, - 0x17, 0x24, 0x18, 0x0d, 0x94, 0x87, 0x87, 0x81, 0x97, 0x27, 0x48, 0x65, - 0x3d, 0x36, 0x53, 0x3a, 0x1e, 0x43, 0x36, 0x7d, 0x1f, 0x36, 0x29, 0x18, - 0x36, 0x61, 0x85, 0x00, 0x00, 0x01, 0x00, 0xc9, 0x00, 0x00, 0x05, 0x10, - 0x05, 0xb6, 0x00, 0x17, 0x00, 0x6b, 0x40, 0x1b, 0x14, 0x0b, 0x0e, 0x5a, - 0x0d, 0x65, 0x19, 0xd0, 0x19, 0x01, 0xaf, 0x19, 0x01, 0x20, 0x19, 0x30, - 0x19, 0x02, 0x16, 0x09, 0x02, 0x5a, 0x17, 0x64, 0x18, 0x17, 0x09, 0xb8, - 0xff, 0xe8, 0xb3, 0x14, 0x18, 0x48, 0x09, 0xb8, 0xff, 0xe0, 0x40, 0x23, - 0x0a, 0x13, 0x48, 0x06, 0x09, 0x16, 0x09, 0x26, 0x09, 0x03, 0x09, 0x0d, - 0x12, 0x14, 0x18, 0x14, 0x18, 0x48, 0x14, 0x20, 0x0a, 0x13, 0x48, 0x09, - 0x14, 0x19, 0x14, 0x29, 0x14, 0x03, 0x07, 0x14, 0x0b, 0x00, 0x03, 0x00, - 0x3f, 0x32, 0x32, 0x5e, 0x5d, 0x2b, 0x2b, 0x3f, 0x33, 0x5d, 0x2b, 0x2b, - 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, - 0xe1, 0x32, 0x32, 0x31, 0x30, 0x13, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x07, - 0x06, 0x07, 0x33, 0x01, 0x33, 0x11, 0x23, 0x11, 0x34, 0x36, 0x37, 0x36, - 0x37, 0x23, 0x01, 0x23, 0xc9, 0xae, 0x01, 0x02, 0x02, 0x02, 0x04, 0x04, - 0x07, 0x02, 0xcc, 0xd5, 0xac, 0x06, 0x04, 0x04, 0x05, 0x08, 0xfd, 0x31, - 0xd7, 0x05, 0xb6, 0xfc, 0xe0, 0x1a, 0x3e, 0x43, 0x43, 0x20, 0x4a, 0x4c, - 0x04, 0xb4, 0xfa, 0x4a, 0x03, 0x19, 0x39, 0x8e, 0x41, 0x4c, 0x4d, 0xfb, - 0x46, 0x00, 0xff, 0xff, 0x00, 0xc9, 0x00, 0x00, 0x05, 0x10, 0x07, 0x69, - 0x02, 0x26, 0x01, 0xb2, 0x00, 0x00, 0x01, 0x07, 0x02, 0x36, 0x00, 0x89, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x1d, 0x05, 0x26, 0x01, 0xb8, 0xff, - 0xeb, 0xb4, 0x22, 0x18, 0x00, 0x0c, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa2, 0x05, 0xb6, - 0x00, 0x0a, 0x00, 0x5e, 0x40, 0x21, 0x08, 0x09, 0x09, 0x10, 0x09, 0x01, - 0x00, 0x00, 0x10, 0x00, 0x02, 0x07, 0x00, 0x10, 0x00, 0x00, 0x0c, 0xb0, - 0x0c, 0x01, 0x2f, 0x0c, 0x01, 0x10, 0x0c, 0x01, 0x97, 0x0a, 0x01, 0x56, - 0x0a, 0x01, 0x0a, 0xb8, 0xff, 0xf8, 0x40, 0x14, 0x08, 0x0c, 0x48, 0x0a, - 0x07, 0x07, 0x03, 0x5a, 0x04, 0x64, 0x0b, 0x07, 0x02, 0x04, 0x08, 0x05, - 0x03, 0x04, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x12, 0x39, 0x39, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x33, 0x2b, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x5e, 0x5d, 0x33, 0x33, 0x38, 0x11, 0x33, - 0x31, 0x30, 0x21, 0x23, 0x01, 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, 0x33, - 0x01, 0x04, 0xa2, 0xdb, 0xfd, 0xba, 0xba, 0xba, 0x02, 0x35, 0xcf, 0xfd, - 0xcb, 0x02, 0xe5, 0xfd, 0x1b, 0x05, 0xb6, 0xfd, 0x3c, 0x02, 0xc4, 0xfd, - 0x42, 0x00, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe9, 0x04, 0x93, 0x05, 0xb6, - 0x00, 0x1f, 0x00, 0x62, 0xb1, 0x08, 0x03, 0xb8, 0xff, 0xf8, 0x40, 0x3b, - 0x14, 0x17, 0x48, 0x03, 0x5a, 0x89, 0x19, 0x01, 0x19, 0x10, 0x19, 0xe0, - 0x1e, 0x01, 0xb4, 0x1e, 0xc4, 0x1e, 0xd4, 0x1e, 0x03, 0x00, 0x1e, 0x50, - 0x1e, 0x80, 0x1e, 0x03, 0x07, 0x1e, 0x1e, 0x10, 0x01, 0x5a, 0x00, 0x65, - 0x21, 0x0f, 0x21, 0x1f, 0x21, 0x7f, 0x21, 0x03, 0x08, 0x10, 0x10, 0x20, - 0x03, 0x5f, 0x1e, 0x03, 0x14, 0x60, 0x11, 0x0d, 0x13, 0x00, 0x12, 0x00, - 0x3f, 0x3f, 0x33, 0xe1, 0x3f, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0x5e, 0x5d, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x33, 0x38, - 0x5d, 0xe1, 0x2b, 0x32, 0x31, 0x30, 0x21, 0x23, 0x11, 0x21, 0x0e, 0x03, - 0x07, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x37, 0x36, 0x36, 0x12, 0x12, 0x37, 0x21, 0x04, 0x93, 0xba, - 0xfe, 0x85, 0x0f, 0x1f, 0x21, 0x22, 0x10, 0x14, 0x35, 0x4f, 0x6e, 0x4e, - 0x23, 0x4a, 0x1c, 0x17, 0x3a, 0x20, 0x30, 0x3e, 0x2a, 0x1a, 0x0c, 0x0c, - 0x20, 0x27, 0x2b, 0x16, 0x02, 0xd0, 0x05, 0x12, 0x71, 0xf4, 0xec, 0xd4, - 0x51, 0x67, 0xa2, 0x6f, 0x3b, 0x0e, 0x0b, 0x9a, 0x0d, 0x10, 0x3f, 0x62, - 0x75, 0x36, 0x39, 0xc8, 0x01, 0x06, 0x01, 0x3a, 0xaa, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x06, 0x2f, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x30, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xd5, 0x05, 0xb6, - 0x02, 0x06, 0x00, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x05, 0x71, 0x05, 0xcd, 0x02, 0x06, 0x00, 0x32, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0xc1, 0x05, 0xb6, 0x02, 0x06, 0x01, 0x6e, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, - 0x02, 0x06, 0x00, 0x33, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x04, 0x98, 0x05, 0xcb, 0x02, 0x06, 0x00, 0x26, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x14, 0x00, 0x00, 0x04, 0x12, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x37, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, 0xff, 0xec, 0x04, 0xae, 0x05, 0xb6, - 0x00, 0x21, 0x00, 0x6f, 0x40, 0x10, 0x12, 0x01, 0x1b, 0x1b, 0x13, 0x21, - 0x60, 0x00, 0x70, 0x00, 0xb0, 0x00, 0xf0, 0x00, 0x04, 0x00, 0xb8, 0xff, - 0xc0, 0x40, 0x10, 0x06, 0x0a, 0x48, 0x00, 0x10, 0x00, 0x00, 0x23, 0x0f, - 0x23, 0x7f, 0x23, 0x02, 0x14, 0x09, 0x13, 0xb8, 0xff, 0xf0, 0x40, 0x0c, - 0x13, 0x13, 0x22, 0xe7, 0x1a, 0xf7, 0x1a, 0x02, 0xd6, 0x1a, 0x01, 0x1a, - 0xb8, 0xff, 0xe0, 0x40, 0x10, 0x0a, 0x0e, 0x48, 0x12, 0x01, 0x1a, 0x03, - 0x00, 0x0d, 0x5f, 0x0a, 0x06, 0x13, 0x13, 0x00, 0x03, 0x00, 0x3f, 0x32, - 0x3f, 0x33, 0xe1, 0x11, 0x17, 0x39, 0x2b, 0x5d, 0x5d, 0x11, 0x01, 0x33, - 0x2f, 0x38, 0x33, 0x33, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x2b, 0x5d, 0x33, - 0x12, 0x39, 0x11, 0x33, 0x33, 0x31, 0x30, 0x01, 0x01, 0x0e, 0x03, 0x23, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x01, - 0x33, 0x01, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x01, 0x04, 0xae, - 0xfe, 0x54, 0x26, 0x53, 0x70, 0x9c, 0x6f, 0x33, 0x5a, 0x25, 0x25, 0x59, - 0x34, 0x35, 0x52, 0x42, 0x38, 0x1c, 0xfd, 0xee, 0xcc, 0x01, 0x7f, 0x05, - 0x0a, 0x09, 0x09, 0x04, 0x02, 0x03, 0x0b, 0x0b, 0x0b, 0x03, 0x01, 0x37, - 0x05, 0xb6, 0xfb, 0xfa, 0x5d, 0xa4, 0x7b, 0x48, 0x0f, 0x0f, 0xb9, 0x14, - 0x19, 0x17, 0x35, 0x56, 0x3f, 0x04, 0x3f, 0xfc, 0xd7, 0x0a, 0x18, 0x1a, - 0x17, 0x09, 0x09, 0x1f, 0x21, 0x1d, 0x07, 0x03, 0x18, 0x00, 0xff, 0xff, - 0x00, 0x68, 0xff, 0xec, 0x05, 0xba, 0x05, 0xcb, 0x02, 0x06, 0x01, 0x73, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x60, 0x05, 0xb6, - 0x02, 0x06, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7f, - 0x05, 0x71, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x3b, 0x40, 0x21, 0x03, 0x5a, - 0x02, 0x02, 0x09, 0x5a, 0x00, 0x0d, 0xb0, 0x0d, 0x01, 0xaf, 0x0d, 0x01, - 0x10, 0x0d, 0x01, 0x08, 0x5a, 0x05, 0x64, 0x0c, 0x0a, 0x06, 0x03, 0x00, - 0x08, 0x5f, 0x05, 0x02, 0x02, 0x05, 0x12, 0x00, 0x3f, 0x33, 0x2f, 0x10, - 0xe1, 0x32, 0x3f, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, - 0xd4, 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x25, 0x33, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x04, 0xc1, 0xb0, 0xb0, 0xfc, - 0x06, 0xba, 0x02, 0x85, 0xbb, 0xa6, 0xfd, 0xd9, 0x01, 0x81, 0x05, 0xb6, - 0xfa, 0xf0, 0x05, 0x10, 0x00, 0x01, 0x00, 0xa6, 0x00, 0x00, 0x04, 0x81, - 0x05, 0xb6, 0x00, 0x15, 0x00, 0x48, 0x40, 0x1d, 0x13, 0x01, 0x5a, 0x00, - 0x65, 0x17, 0x70, 0x17, 0xa0, 0x17, 0x02, 0x2f, 0x17, 0x01, 0x10, 0x17, - 0x01, 0x0d, 0x5a, 0x60, 0x0a, 0x70, 0x0a, 0xa0, 0x0a, 0xb0, 0x0a, 0x04, - 0x0a, 0xb8, 0xff, 0xc0, 0x40, 0x0e, 0x07, 0x0a, 0x48, 0x0a, 0x13, 0x10, - 0x5f, 0x05, 0x05, 0x14, 0x0b, 0x03, 0x00, 0x12, 0x00, 0x3f, 0x3f, 0x33, - 0x39, 0x2f, 0xe1, 0x33, 0x01, 0x2f, 0x2b, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, - 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x21, 0x23, 0x11, 0x06, 0x06, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x11, 0x33, 0x04, 0x81, 0xba, 0x73, 0xc3, 0x62, 0x5d, 0x92, 0x65, - 0x35, 0xba, 0x69, 0x7b, 0x5a, 0xb9, 0x70, 0xba, 0x02, 0x56, 0x2c, 0x2e, - 0x31, 0x5f, 0x8a, 0x59, 0x02, 0x47, 0xfd, 0xd1, 0x73, 0x74, 0x28, 0x28, - 0x02, 0xc6, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x07, 0x33, 0x05, 0xb6, - 0x00, 0x0b, 0x00, 0x60, 0x40, 0x42, 0x56, 0x08, 0x01, 0x08, 0x5a, 0x17, - 0x05, 0x01, 0x86, 0x05, 0x96, 0x05, 0xa6, 0x05, 0x03, 0x67, 0x05, 0x77, - 0x05, 0x02, 0x05, 0x05, 0x01, 0x09, 0x5a, 0x00, 0x65, 0x0d, 0x00, 0x0d, - 0x10, 0x0d, 0x02, 0x20, 0x0d, 0x50, 0x0d, 0x70, 0x0d, 0x80, 0x0d, 0xc0, - 0x0d, 0xd0, 0x0d, 0xe0, 0x0d, 0x07, 0x0f, 0x0d, 0x01, 0x07, 0x04, 0x5a, - 0x01, 0x64, 0x0c, 0x0a, 0x06, 0x02, 0x03, 0x08, 0x04, 0x5f, 0x01, 0x12, - 0x00, 0x3f, 0xe1, 0x32, 0x3f, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5e, - 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x71, - 0xe1, 0x5d, 0x31, 0x30, 0x21, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, - 0x11, 0x21, 0x11, 0x33, 0x07, 0x33, 0xf9, 0x94, 0xba, 0x02, 0x1f, 0xba, - 0x02, 0x1f, 0xba, 0x05, 0xb6, 0xfa, 0xf0, 0x05, 0x10, 0xfa, 0xf0, 0x05, - 0x10, 0x00, 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7f, 0x07, 0xe3, 0x05, 0xb6, - 0x00, 0x0f, 0x00, 0x71, 0x40, 0x4b, 0x56, 0x0c, 0x01, 0x0c, 0x5a, 0x17, - 0x09, 0x01, 0x86, 0x09, 0x96, 0x09, 0xa6, 0x09, 0x03, 0x67, 0x09, 0x77, - 0x09, 0x02, 0x09, 0x09, 0x05, 0x0d, 0x5a, 0x00, 0x03, 0x5a, 0x02, 0x02, - 0x00, 0x65, 0x11, 0x00, 0x11, 0x10, 0x11, 0x02, 0x20, 0x11, 0x50, 0x11, - 0x70, 0x11, 0x80, 0x11, 0xc0, 0x11, 0xd0, 0x11, 0xe0, 0x11, 0x07, 0x0f, - 0x11, 0x01, 0x07, 0x08, 0x5a, 0x05, 0x64, 0x10, 0x0e, 0x0a, 0x06, 0x03, - 0x0c, 0x00, 0x08, 0x5f, 0x05, 0x02, 0x02, 0x05, 0x12, 0x00, 0x3f, 0x33, - 0x2f, 0x10, 0xe1, 0x32, 0x32, 0x3f, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, - 0x5e, 0x5d, 0x5d, 0x71, 0x10, 0xe4, 0x32, 0x2f, 0xe1, 0x10, 0xe1, 0x11, - 0x39, 0x2f, 0x5d, 0x5d, 0x71, 0xe1, 0x5d, 0x31, 0x30, 0x25, 0x33, 0x11, - 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x33, 0x07, 0x33, 0xb0, 0xb0, 0xf9, 0x94, 0xba, 0x02, 0x1f, 0xba, 0x02, - 0x1f, 0xba, 0xa6, 0xfd, 0xd9, 0x01, 0x81, 0x05, 0xb6, 0xfa, 0xf0, 0x05, - 0x10, 0xfa, 0xf0, 0x05, 0x10, 0x00, 0x00, 0x02, 0x00, 0x14, 0x00, 0x00, - 0x04, 0xd5, 0x05, 0xb6, 0x00, 0x10, 0x00, 0x1b, 0x00, 0x52, 0x40, 0x33, - 0x0b, 0x11, 0x5a, 0x90, 0x06, 0x01, 0x06, 0x06, 0x08, 0x15, 0x5b, 0x00, - 0x67, 0x1d, 0x0f, 0x1d, 0x01, 0x0f, 0x1d, 0x2f, 0x1d, 0x3f, 0x1d, 0x5f, - 0x1d, 0xaf, 0x1d, 0x05, 0x06, 0x08, 0x08, 0x1c, 0x1b, 0x5f, 0x0f, 0x0b, - 0xaf, 0x0b, 0x02, 0x08, 0x0b, 0x0b, 0x11, 0x08, 0x5f, 0x09, 0x03, 0x11, - 0x60, 0x06, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, - 0x5d, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0x5e, 0x5d, 0x71, 0x10, 0xf6, 0xe1, - 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, - 0x23, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x01, - 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x04, 0xd5, 0x3c, - 0x7e, 0xc2, 0x86, 0xfe, 0x95, 0xfe, 0xac, 0x02, 0x0f, 0x95, 0x98, 0xcf, - 0x7f, 0x37, 0xfd, 0x4e, 0xa0, 0xae, 0xa3, 0x2d, 0x5c, 0x8a, 0x5d, 0x81, - 0x01, 0xac, 0x61, 0x9e, 0x70, 0x3d, 0x05, 0x12, 0xa4, 0xfd, 0x98, 0x42, - 0x71, 0x98, 0xfe, 0x9d, 0x84, 0x88, 0x46, 0x61, 0x3c, 0x1b, 0x00, 0x03, - 0x00, 0xc7, 0x00, 0x00, 0x05, 0xcf, 0x05, 0xb6, 0x00, 0x0e, 0x00, 0x19, - 0x00, 0x1d, 0x00, 0x49, 0x40, 0x2b, 0x13, 0x5b, 0x00, 0x00, 0x01, 0x00, - 0x00, 0x06, 0x1a, 0x5a, 0x1d, 0x65, 0x1f, 0x0f, 0x1f, 0x9f, 0x1f, 0x02, - 0x06, 0x09, 0x0f, 0x5a, 0x06, 0x64, 0x1e, 0x19, 0x5f, 0x0f, 0x09, 0xaf, - 0x09, 0x02, 0x08, 0x09, 0x09, 0x1b, 0x07, 0x03, 0x0f, 0x60, 0x1a, 0x06, - 0x12, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, - 0x2f, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, - 0x33, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x2e, 0x02, 0x23, 0x23, 0x01, 0x11, 0x33, 0x11, 0x04, 0x33, 0x3c, 0x7e, - 0xc2, 0x86, 0xfe, 0x96, 0xba, 0x96, 0x98, 0xcf, 0x7e, 0x37, 0xfd, 0x4e, - 0xa0, 0xae, 0xa4, 0x2e, 0x5b, 0x8b, 0x5d, 0x81, 0x03, 0x93, 0xbb, 0x01, - 0xac, 0x61, 0x9e, 0x70, 0x3d, 0x05, 0xb6, 0xfd, 0x98, 0x42, 0x71, 0x98, - 0xfe, 0x9d, 0x84, 0x88, 0x46, 0x61, 0x3c, 0x1b, 0xfd, 0x56, 0x05, 0xb6, - 0xfa, 0x4a, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, - 0x00, 0x0e, 0x00, 0x19, 0x00, 0x48, 0x40, 0x2e, 0x13, 0x5b, 0x90, 0x00, - 0x01, 0x00, 0x67, 0x1b, 0x0f, 0x1b, 0x5f, 0x1b, 0x02, 0x06, 0x1b, 0x40, - 0x15, 0x18, 0x48, 0x1b, 0x40, 0x0d, 0x13, 0x48, 0x09, 0x0f, 0x5a, 0x06, - 0x64, 0x1a, 0x19, 0x5f, 0x0f, 0x09, 0xaf, 0x09, 0x02, 0x08, 0x09, 0x09, - 0x07, 0x03, 0x0f, 0x60, 0x06, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x2f, - 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2b, 0x2b, 0x5e, 0x5d, - 0x10, 0xf6, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x21, - 0x11, 0x33, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, 0x36, 0x35, - 0x34, 0x2e, 0x02, 0x23, 0x23, 0x04, 0x33, 0x3c, 0x7e, 0xc2, 0x86, 0xfe, - 0x96, 0xba, 0x96, 0x98, 0xcf, 0x7e, 0x37, 0xfd, 0x4e, 0xa0, 0xae, 0xa4, - 0x2e, 0x5b, 0x8b, 0x5d, 0x81, 0x01, 0xac, 0x61, 0x9e, 0x70, 0x3d, 0x05, - 0xb6, 0xfd, 0x98, 0x42, 0x71, 0x98, 0xfe, 0x9d, 0x84, 0x88, 0x46, 0x61, - 0x3c, 0x1b, 0x00, 0x01, 0x00, 0x3b, 0xff, 0xec, 0x04, 0x44, 0x05, 0xcb, - 0x00, 0x24, 0x00, 0x51, 0x40, 0x2f, 0x1d, 0x20, 0x5b, 0x0c, 0x16, 0x1e, - 0x16, 0x1e, 0x04, 0x0c, 0x67, 0x26, 0xbf, 0x26, 0xcf, 0x26, 0xdf, 0x26, - 0x03, 0x04, 0x04, 0x25, 0x1e, 0x5f, 0xaa, 0x1f, 0x01, 0x78, 0x1f, 0x01, - 0x0f, 0x1f, 0x01, 0x08, 0x1f, 0x1f, 0x07, 0x1a, 0x5f, 0x17, 0x11, 0x13, - 0x03, 0x00, 0x5f, 0x07, 0x04, 0x00, 0x3f, 0xe1, 0x33, 0x3f, 0x33, 0xe1, - 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x11, 0x01, 0x33, 0x2f, - 0x5d, 0x10, 0xe6, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x10, 0xe1, 0x32, 0x31, - 0x30, 0x01, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, - 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x35, - 0x16, 0x16, 0x33, 0x32, 0x12, 0x13, 0x21, 0x35, 0x21, 0x2e, 0x03, 0x01, - 0xba, 0x5e, 0x94, 0x3f, 0x4e, 0x4f, 0xc4, 0x6c, 0xa2, 0xf4, 0xa2, 0x52, - 0x52, 0xa5, 0xf7, 0xa4, 0x3a, 0x61, 0x56, 0x4e, 0x27, 0x4e, 0xa0, 0x59, - 0xed, 0xf7, 0x06, 0xfd, 0x8b, 0x02, 0x71, 0x09, 0x47, 0x73, 0x9d, 0x05, - 0x27, 0x2e, 0x20, 0x9c, 0x2a, 0x2c, 0x6d, 0xc1, 0xfe, 0xf6, 0x9d, 0xb3, - 0xfe, 0xe0, 0xca, 0x6d, 0x07, 0x0e, 0x17, 0x0f, 0xa2, 0x17, 0x23, 0x01, - 0x17, 0x01, 0x06, 0xa2, 0x6f, 0xb0, 0x7a, 0x40, 0x00, 0x02, 0x00, 0xc7, - 0xff, 0xec, 0x07, 0x9e, 0x05, 0xcd, 0x00, 0x1a, 0x00, 0x2e, 0x00, 0x5e, - 0x40, 0x3c, 0x1b, 0x5b, 0x0a, 0x90, 0x11, 0x01, 0x11, 0x11, 0x0d, 0x25, - 0x5b, 0x00, 0x67, 0x30, 0x0f, 0x30, 0x01, 0x3f, 0x30, 0x6f, 0x30, 0x7f, - 0x30, 0xef, 0x30, 0xff, 0x30, 0x05, 0x30, 0x40, 0x11, 0x14, 0x48, 0x10, - 0x0c, 0x5a, 0x0d, 0x64, 0x2f, 0x2a, 0x5f, 0x16, 0x04, 0x0b, 0x5f, 0x0f, - 0x10, 0x01, 0x08, 0x10, 0x10, 0x0d, 0x0e, 0x03, 0x0d, 0x12, 0x20, 0x5f, - 0x05, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0x12, 0x39, 0x2f, 0x5e, 0x5d, - 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2b, 0x5d, 0x71, 0x10, - 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x33, 0xe1, 0x31, 0x30, 0x01, 0x14, - 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x27, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x16, 0x12, 0x05, - 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, - 0x22, 0x0e, 0x02, 0x07, 0x9e, 0x4f, 0x9b, 0xe5, 0x96, 0x97, 0xe1, 0x98, - 0x50, 0x06, 0xfe, 0xae, 0xba, 0xba, 0x01, 0x56, 0x0b, 0x55, 0x98, 0xdb, - 0x91, 0x95, 0xe5, 0x9a, 0x4f, 0xfb, 0xfa, 0x31, 0x67, 0x9d, 0x6c, 0x6d, - 0x9d, 0x66, 0x30, 0x30, 0x65, 0x9d, 0x6c, 0x6d, 0x9e, 0x67, 0x31, 0x02, - 0xdd, 0xa9, 0xfe, 0xea, 0xc6, 0x6c, 0x64, 0xb7, 0x01, 0x03, 0xa0, 0xfd, - 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x92, 0xec, 0xa7, 0x5a, 0x6b, 0xc5, 0xfe, - 0xeb, 0xab, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, 0xdb, 0x89, 0x8a, 0xda, - 0x97, 0x51, 0x51, 0x97, 0xda, 0x00, 0x00, 0x02, 0x00, 0x19, 0x00, 0x00, - 0x03, 0xf2, 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x1c, 0x00, 0x9b, 0x40, 0x09, - 0x06, 0x00, 0x01, 0xe6, 0x00, 0xf6, 0x00, 0x02, 0x00, 0xb8, 0xff, 0xf8, - 0x40, 0x24, 0x0b, 0x0f, 0x48, 0x1c, 0x0e, 0x5a, 0x03, 0x00, 0x00, 0x08, - 0x0d, 0x65, 0x1e, 0x3f, 0x1e, 0x8f, 0x1e, 0x9f, 0x1e, 0xbf, 0x1e, 0xdf, - 0x1e, 0x05, 0x20, 0x1e, 0x01, 0x06, 0x01, 0x01, 0xe6, 0x01, 0xf6, 0x01, - 0x02, 0x01, 0xb8, 0xff, 0xf8, 0x40, 0x0d, 0x0b, 0x0f, 0x48, 0x01, 0x4b, - 0x02, 0x01, 0x02, 0x40, 0x08, 0x0b, 0x48, 0x02, 0xb8, 0xff, 0xf0, 0x40, - 0x26, 0x02, 0x02, 0x16, 0x5b, 0xdf, 0x08, 0xef, 0x08, 0xff, 0x08, 0x03, - 0x08, 0x40, 0x0f, 0x13, 0x48, 0x07, 0x08, 0x17, 0x08, 0x02, 0x08, 0x08, - 0x66, 0x1d, 0x1c, 0x60, 0x03, 0x0f, 0x0f, 0x01, 0x11, 0x60, 0x0b, 0x03, - 0x0e, 0x01, 0x12, 0x00, 0x3f, 0x33, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x33, - 0xe1, 0x01, 0x10, 0xf6, 0x5e, 0x5d, 0x2b, 0x5d, 0xe1, 0x33, 0x2f, 0x38, - 0x2b, 0x5d, 0x33, 0x2b, 0x5d, 0x71, 0x5d, 0x5d, 0x10, 0xf6, 0x11, 0x39, - 0x11, 0x33, 0xe1, 0x32, 0x2b, 0x5d, 0x71, 0x31, 0x30, 0x01, 0x01, 0x23, - 0x01, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x33, 0x21, 0x11, 0x23, 0x11, 0x11, - 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x33, 0x02, 0x42, - 0xfe, 0xb2, 0xdb, 0x01, 0x7d, 0x37, 0x63, 0x4b, 0x2c, 0xfd, 0xfb, 0x01, - 0x75, 0xbb, 0xbc, 0x4a, 0x73, 0x4f, 0x29, 0x27, 0x4e, 0x77, 0x51, 0xb4, - 0x02, 0x5c, 0xfd, 0xa4, 0x02, 0x8f, 0x14, 0x3e, 0x61, 0x88, 0x5d, 0xc6, - 0xc9, 0xfa, 0x4a, 0x02, 0x5c, 0x02, 0xbb, 0x1d, 0x3e, 0x61, 0x44, 0x42, - 0x69, 0x4a, 0x28, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, - 0x04, 0x5e, 0x02, 0x06, 0x00, 0x44, 0x00, 0x00, 0x00, 0x02, 0x00, 0x75, - 0xff, 0xec, 0x04, 0x21, 0x06, 0x23, 0x00, 0x27, 0x00, 0x3b, 0x00, 0x49, - 0x40, 0x2c, 0x2d, 0x48, 0x09, 0x1e, 0x57, 0x3d, 0xd0, 0x3d, 0x01, 0x7f, - 0x3d, 0x01, 0x40, 0x3d, 0x01, 0x0f, 0x3d, 0x01, 0x06, 0x13, 0x37, 0x48, - 0x00, 0x56, 0x3c, 0x32, 0x50, 0x13, 0x19, 0x19, 0x08, 0x28, 0x50, 0x23, - 0x16, 0x09, 0x08, 0x0b, 0x10, 0x48, 0x09, 0x51, 0x08, 0x01, 0x00, 0x3f, - 0xe1, 0x2b, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x33, 0xe1, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x31, - 0x30, 0x13, 0x34, 0x12, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, 0x0e, - 0x03, 0x07, 0x0e, 0x03, 0x07, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, - 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x01, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x14, 0x1e, 0x02, - 0x75, 0x31, 0x68, 0xa2, 0x71, 0x7d, 0xf2, 0x66, 0x21, 0x32, 0x7b, 0x7d, - 0x75, 0x2c, 0x3e, 0x64, 0x48, 0x29, 0x04, 0x0d, 0x12, 0x3e, 0x54, 0x6b, - 0x40, 0x63, 0x96, 0x65, 0x32, 0x45, 0x7c, 0xae, 0x68, 0x6b, 0xad, 0x7b, - 0x42, 0x01, 0xe1, 0x3c, 0x62, 0x46, 0x26, 0x1a, 0x3a, 0x5a, 0x41, 0x3d, - 0x6a, 0x53, 0x39, 0x0d, 0x19, 0x41, 0x72, 0x02, 0x93, 0xb5, 0x01, 0x19, - 0xcb, 0x7e, 0x19, 0x1b, 0x31, 0x14, 0xa0, 0x08, 0x16, 0x18, 0x18, 0x0a, - 0x0e, 0x42, 0x71, 0xa5, 0x71, 0x1d, 0x3c, 0x31, 0x20, 0x49, 0x83, 0xb4, - 0x6c, 0x89, 0xce, 0x8a, 0x45, 0x59, 0xad, 0xfd, 0xfe, 0x94, 0x27, 0x58, - 0x8f, 0x69, 0x54, 0x86, 0x5f, 0x33, 0x30, 0x44, 0x49, 0x1a, 0x64, 0xbc, - 0x93, 0x59, 0x00, 0x03, 0x00, 0xae, 0x00, 0x00, 0x04, 0x19, 0x04, 0x4a, - 0x00, 0x15, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x5c, 0x40, 0x3a, 0x03, 0x1b, - 0x21, 0x46, 0x00, 0x00, 0x0f, 0x16, 0x47, 0x09, 0x57, 0x2d, 0x20, 0x2d, - 0x01, 0x40, 0x2d, 0x90, 0x2d, 0xb0, 0x2d, 0xd0, 0x2d, 0xf0, 0x2d, 0x05, - 0x0f, 0x2d, 0x01, 0x06, 0x26, 0x1b, 0x47, 0x0f, 0x54, 0x2c, 0x03, 0x1a, - 0x50, 0xbf, 0x26, 0x01, 0x79, 0x26, 0x89, 0x26, 0x02, 0x26, 0x26, 0x1b, - 0x25, 0x50, 0x10, 0x0f, 0x1b, 0x50, 0x0f, 0x15, 0x00, 0x3f, 0xe1, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0xe1, 0x39, 0x01, 0x10, 0xf6, 0xe1, - 0x32, 0x5e, 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x12, 0x39, 0x2f, 0xe1, - 0x12, 0x39, 0x31, 0x30, 0x01, 0x14, 0x06, 0x07, 0x15, 0x1e, 0x03, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x21, 0x32, 0x1e, 0x02, 0x03, 0x34, - 0x26, 0x23, 0x21, 0x11, 0x21, 0x32, 0x3e, 0x02, 0x03, 0x34, 0x26, 0x23, - 0x21, 0x11, 0x33, 0x32, 0x3e, 0x02, 0x03, 0xf6, 0x7b, 0x6b, 0x38, 0x61, - 0x47, 0x29, 0x2f, 0x65, 0x9f, 0x71, 0xfe, 0x39, 0x01, 0xc5, 0x53, 0x8e, - 0x67, 0x3b, 0x90, 0x82, 0x80, 0xff, 0x00, 0x01, 0x04, 0x38, 0x5d, 0x43, - 0x26, 0x1e, 0x6d, 0x6c, 0xfe, 0xf5, 0xec, 0x3e, 0x5c, 0x3f, 0x1f, 0x03, - 0x35, 0x68, 0x75, 0x12, 0x07, 0x07, 0x24, 0x3d, 0x5b, 0x3f, 0x43, 0x74, - 0x56, 0x30, 0x04, 0x4a, 0x1c, 0x40, 0x6b, 0xfd, 0xc7, 0x5c, 0x48, 0xfe, - 0xa8, 0x12, 0x2a, 0x45, 0x02, 0x0c, 0x4d, 0x40, 0xfe, 0xd7, 0x0f, 0x24, - 0x3c, 0x00, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x03, 0x0a, 0x04, 0x4a, - 0x00, 0x05, 0x00, 0x2f, 0x40, 0x1c, 0x00, 0x00, 0x10, 0x00, 0x02, 0x00, - 0x00, 0x07, 0xa0, 0x07, 0x01, 0x81, 0x07, 0x01, 0x50, 0x07, 0x01, 0x02, - 0x47, 0x03, 0x54, 0x06, 0x01, 0x50, 0x04, 0x0f, 0x02, 0x15, 0x00, 0x3f, - 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, - 0x5d, 0x31, 0x30, 0x01, 0x21, 0x11, 0x23, 0x11, 0x21, 0x03, 0x0a, 0xfe, - 0x5a, 0xb6, 0x02, 0x5c, 0x03, 0xb0, 0xfc, 0x50, 0x04, 0x4a, 0x00, 0x02, - 0x00, 0x29, 0xfe, 0x83, 0x04, 0x37, 0x04, 0x4a, 0x00, 0x0f, 0x00, 0x17, - 0x00, 0x79, 0x40, 0x10, 0x17, 0x07, 0x12, 0x46, 0x0c, 0x2f, 0x07, 0x3f, - 0x07, 0x02, 0x0b, 0x07, 0x1b, 0x07, 0x02, 0x07, 0xb8, 0xff, 0xf0, 0x40, - 0x39, 0xa2, 0x0c, 0xb2, 0x0c, 0x02, 0x04, 0x0c, 0x14, 0x0c, 0x02, 0x07, - 0x0c, 0x07, 0x0c, 0x05, 0x10, 0x47, 0x0e, 0x01, 0x46, 0x00, 0x00, 0x20, - 0x0e, 0x01, 0x0e, 0x55, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0x02, 0x30, 0x19, - 0x01, 0x2f, 0x19, 0x01, 0x04, 0x46, 0x05, 0x05, 0x18, 0x12, 0x4f, 0x0c, - 0x0f, 0x17, 0x0e, 0x06, 0x50, 0x03, 0x15, 0x05, 0x00, 0xfb, 0x00, 0x3f, - 0x32, 0x3f, 0xe1, 0x32, 0x32, 0x3f, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0xe1, - 0x5d, 0x5d, 0x5d, 0x10, 0xe4, 0x5d, 0x32, 0x2f, 0xe1, 0x10, 0xe1, 0x11, - 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, 0x38, 0x5d, 0x5d, 0x10, 0xe1, 0x11, - 0x33, 0x31, 0x30, 0x01, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x3e, - 0x02, 0x12, 0x37, 0x21, 0x11, 0x33, 0x21, 0x11, 0x23, 0x0e, 0x03, 0x07, - 0x04, 0x37, 0xae, 0xfd, 0x4e, 0xae, 0x56, 0x41, 0x63, 0x43, 0x22, 0x01, - 0x02, 0x17, 0x97, 0xfe, 0xb2, 0xc0, 0x07, 0x24, 0x3a, 0x51, 0x34, 0xfe, - 0x83, 0x01, 0x7d, 0xfe, 0x83, 0x02, 0x17, 0x5f, 0xdf, 0xf3, 0x01, 0x00, - 0x7f, 0xfc, 0x50, 0x03, 0x24, 0x67, 0xd7, 0xd1, 0xc2, 0x53, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x04, 0x5e, 0x02, 0x06, 0x00, 0x48, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x05, 0xbe, 0x04, 0x4a, - 0x00, 0x11, 0x00, 0x9c, 0x40, 0x1f, 0x06, 0x03, 0x03, 0x0a, 0x46, 0x0f, - 0x00, 0x00, 0xd6, 0x0b, 0x01, 0xb9, 0x0b, 0xc9, 0x0b, 0x02, 0xa6, 0x0b, - 0x01, 0x97, 0x0b, 0x01, 0x0b, 0x0b, 0x0e, 0x07, 0x04, 0x05, 0x05, 0x08, - 0x07, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x07, 0xb8, 0xff, 0xc0, - 0x40, 0x24, 0x07, 0x0b, 0x48, 0x0f, 0x07, 0x01, 0x06, 0x07, 0x10, 0x07, - 0x07, 0x13, 0x00, 0x13, 0x10, 0x13, 0x02, 0xdf, 0x13, 0x01, 0x30, 0x13, - 0x70, 0x13, 0x90, 0x13, 0x03, 0x0f, 0x13, 0x01, 0x07, 0x11, 0x10, 0x10, - 0x0d, 0x0e, 0xb8, 0xff, 0xf0, 0x40, 0x0f, 0x0e, 0x0e, 0x12, 0x03, 0x00, - 0x00, 0x01, 0x0d, 0x08, 0x0a, 0x15, 0x11, 0x04, 0x01, 0x0f, 0x00, 0x3f, - 0x33, 0x33, 0x3f, 0x33, 0x33, 0x12, 0x39, 0x11, 0x33, 0x11, 0x01, 0x33, - 0x2f, 0x38, 0x33, 0x33, 0x11, 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x71, 0x11, - 0x33, 0x2f, 0x38, 0x5e, 0x5d, 0x2b, 0x2b, 0x33, 0x33, 0x11, 0x33, 0x11, - 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x11, 0x33, 0xe1, 0x32, - 0x11, 0x33, 0x31, 0x30, 0x01, 0x11, 0x33, 0x11, 0x01, 0x33, 0x01, 0x01, - 0x23, 0x01, 0x11, 0x23, 0x11, 0x01, 0x23, 0x01, 0x01, 0x33, 0x02, 0x8f, - 0xa4, 0x01, 0xa0, 0xc5, 0xfe, 0x58, 0x01, 0xce, 0xce, 0xfe, 0x43, 0xa4, - 0xfe, 0x44, 0xcf, 0x01, 0xcf, 0xfe, 0x58, 0xc5, 0x02, 0x35, 0x02, 0x15, - 0xfd, 0xeb, 0x02, 0x15, 0xfd, 0xeb, 0xfd, 0xcb, 0x02, 0x2d, 0xfd, 0xd3, - 0x02, 0x2d, 0xfd, 0xd3, 0x02, 0x35, 0x02, 0x15, 0x00, 0x01, 0x00, 0x44, - 0xff, 0xec, 0x03, 0x52, 0x04, 0x5e, 0x00, 0x39, 0x00, 0x5f, 0x40, 0x3a, - 0x05, 0x46, 0x16, 0x1b, 0x16, 0x39, 0x16, 0x39, 0x16, 0x0c, 0x34, 0x47, - 0x21, 0x57, 0x3b, 0xb0, 0x3b, 0xc0, 0x3b, 0xd0, 0x3b, 0x03, 0x6f, 0x3b, - 0x01, 0x20, 0x3b, 0x01, 0x29, 0x0c, 0x56, 0x3a, 0x1b, 0x38, 0x50, 0xcf, - 0x39, 0x01, 0x89, 0x39, 0x99, 0x39, 0x02, 0x0f, 0x39, 0x01, 0x08, 0x39, - 0x39, 0x11, 0x2f, 0x50, 0x26, 0x16, 0x08, 0x50, 0x11, 0x10, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x39, - 0x01, 0x10, 0xe6, 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x12, 0x39, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x01, 0x71, 0x3d, 0x64, - 0x48, 0x27, 0x73, 0x6c, 0x47, 0x81, 0x4b, 0x3f, 0x28, 0x4d, 0x52, 0x5a, - 0x35, 0x56, 0x90, 0x69, 0x3a, 0x1c, 0x33, 0x46, 0x2b, 0x2c, 0x52, 0x3f, - 0x26, 0x35, 0x6c, 0xa6, 0x71, 0x6d, 0xaf, 0x3a, 0x1f, 0x4c, 0x57, 0x61, - 0x33, 0x37, 0x60, 0x46, 0x29, 0x85, 0x8a, 0x81, 0x02, 0x87, 0x12, 0x27, - 0x40, 0x2d, 0x4d, 0x4d, 0x26, 0x22, 0x93, 0x14, 0x1c, 0x13, 0x09, 0x26, - 0x4a, 0x6d, 0x46, 0x32, 0x4d, 0x3b, 0x29, 0x0e, 0x0b, 0x0e, 0x2c, 0x42, - 0x5a, 0x3e, 0x43, 0x75, 0x56, 0x31, 0x23, 0x22, 0xa6, 0x10, 0x1f, 0x18, - 0x0f, 0x12, 0x2a, 0x45, 0x33, 0x5e, 0x5b, 0x99, 0x00, 0x01, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x3b, 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x51, 0x40, 0x1b, - 0x03, 0x10, 0x09, 0x18, 0x48, 0x03, 0x06, 0x46, 0x05, 0x55, 0x0d, 0x00, - 0x0d, 0x10, 0x0d, 0x20, 0x0d, 0xa0, 0x0d, 0xc0, 0x0d, 0xd0, 0x0d, 0xf0, - 0x0d, 0x07, 0x0d, 0xb8, 0xff, 0xc0, 0xb3, 0x0e, 0x11, 0x48, 0x09, 0xb8, - 0xff, 0xf0, 0x40, 0x11, 0x09, 0x18, 0x48, 0x09, 0x00, 0x46, 0x0a, 0x54, - 0x0c, 0x08, 0x03, 0x0b, 0x0f, 0x06, 0x02, 0x0a, 0x15, 0x00, 0x3f, 0x33, - 0x33, 0x3f, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2b, 0x2b, 0x5d, - 0x10, 0xf6, 0xe1, 0x32, 0x2b, 0x31, 0x30, 0x01, 0x11, 0x07, 0x01, 0x33, - 0x11, 0x23, 0x11, 0x13, 0x01, 0x23, 0x11, 0x01, 0x5a, 0x0c, 0x02, 0x04, - 0xe9, 0xac, 0x0b, 0xfd, 0xfe, 0xea, 0x04, 0x4a, 0xfd, 0x64, 0xfc, 0x03, - 0x98, 0xfb, 0xb6, 0x02, 0x87, 0x01, 0x0f, 0xfc, 0x6a, 0x04, 0x4a, 0x00, - 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x3b, 0x06, 0x17, 0x02, 0x26, - 0x01, 0xd2, 0x00, 0x00, 0x01, 0x06, 0x02, 0x36, 0x25, 0x00, 0x00, 0x15, - 0xb4, 0x01, 0x11, 0x11, 0x26, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x16, 0x0c, - 0x0a, 0x04, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, - 0x00, 0xae, 0x00, 0x00, 0x03, 0xe5, 0x04, 0x4a, 0x00, 0x0a, 0x00, 0x41, - 0x40, 0x23, 0x00, 0x01, 0x01, 0x04, 0x00, 0x03, 0x10, 0x03, 0x02, 0x03, - 0x10, 0x03, 0x03, 0x0c, 0x0f, 0x0c, 0x01, 0x0a, 0x02, 0x06, 0x47, 0x07, - 0x54, 0x0b, 0x05, 0x02, 0x0a, 0x0a, 0x07, 0x00, 0x08, 0x0f, 0x04, 0x07, - 0x15, 0x00, 0x3f, 0x33, 0x3f, 0x33, 0x12, 0x39, 0x11, 0x33, 0x33, 0x01, - 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x11, 0x33, 0x2f, 0x38, 0x5d, 0x33, - 0x33, 0x11, 0x33, 0x31, 0x30, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x02, 0xfa, 0xc4, 0xfe, 0x61, 0x01, 0xc6, 0xce, - 0xfe, 0x4b, 0xb4, 0xb4, 0x04, 0x4a, 0xfd, 0xf1, 0xfd, 0xc5, 0x02, 0x2d, - 0xfd, 0xd3, 0x04, 0x4a, 0xfd, 0xeb, 0x00, 0x01, 0x00, 0x10, 0xff, 0xf2, - 0x03, 0xb0, 0x04, 0x4a, 0x00, 0x14, 0x00, 0x4c, 0x40, 0x31, 0x03, 0x46, - 0x04, 0x13, 0x01, 0xf4, 0x13, 0x01, 0x80, 0x13, 0x90, 0x13, 0xc0, 0x13, - 0xd0, 0x13, 0x04, 0x54, 0x13, 0x01, 0x13, 0x13, 0x0b, 0x01, 0x47, 0x00, - 0x55, 0x16, 0x0f, 0x16, 0x2f, 0x16, 0xff, 0x16, 0x03, 0x06, 0x0b, 0x0b, - 0x15, 0x03, 0x50, 0x13, 0x0f, 0x0e, 0x4f, 0x08, 0x16, 0x01, 0x15, 0x00, - 0x3f, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0x5e, 0x5d, 0x10, - 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0xe1, 0x31, 0x30, - 0x21, 0x23, 0x11, 0x21, 0x02, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x35, 0x16, 0x33, 0x32, 0x36, 0x36, 0x12, 0x37, 0x21, 0x03, 0xb0, 0xb6, - 0xfe, 0xfe, 0x14, 0x40, 0x5f, 0x82, 0x56, 0x1c, 0x31, 0x10, 0x17, 0x1b, - 0x37, 0x59, 0x45, 0x33, 0x12, 0x02, 0x54, 0x03, 0xb0, 0xfe, 0xfd, 0xfe, - 0x94, 0xe6, 0x69, 0x06, 0x06, 0x83, 0x06, 0x75, 0xf1, 0x01, 0x6f, 0xfa, - 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x05, 0x10, 0x04, 0x4a, 0x00, 0x20, - 0x00, 0x5e, 0x40, 0x3f, 0x1f, 0x01, 0x46, 0x00, 0x55, 0x22, 0xcf, 0x22, - 0x01, 0x40, 0x22, 0x50, 0x22, 0x02, 0x0f, 0x22, 0x01, 0x06, 0x13, 0x10, - 0x46, 0x11, 0x54, 0x21, 0x02, 0x0f, 0x3b, 0x0f, 0x4b, 0x0f, 0x5b, 0x0f, - 0x03, 0x09, 0x0f, 0x19, 0x0f, 0x29, 0x0f, 0x03, 0x0f, 0x1f, 0x12, 0x0f, - 0x34, 0x19, 0x44, 0x19, 0x54, 0x19, 0x03, 0x06, 0x19, 0x16, 0x19, 0x26, - 0x19, 0x03, 0x19, 0x09, 0x01, 0x11, 0x15, 0x00, 0x3f, 0x33, 0x33, 0x33, - 0x5d, 0x5d, 0x3f, 0x33, 0x33, 0x5d, 0x5d, 0x11, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, - 0x21, 0x23, 0x11, 0x0e, 0x03, 0x07, 0x01, 0x23, 0x01, 0x2e, 0x03, 0x27, - 0x11, 0x23, 0x11, 0x33, 0x01, 0x1e, 0x03, 0x17, 0x3e, 0x03, 0x37, 0x01, - 0x33, 0x05, 0x10, 0xa1, 0x06, 0x11, 0x14, 0x12, 0x07, 0xfe, 0xf8, 0x87, - 0xfe, 0xf7, 0x05, 0x11, 0x14, 0x12, 0x07, 0xa2, 0xdd, 0x01, 0x0b, 0x0d, - 0x16, 0x13, 0x0f, 0x04, 0x06, 0x0e, 0x13, 0x16, 0x0d, 0x01, 0x0e, 0xd9, - 0x03, 0x81, 0x15, 0x39, 0x3b, 0x36, 0x12, 0xfd, 0x50, 0x02, 0xb0, 0x0d, - 0x31, 0x3b, 0x3e, 0x1a, 0xfc, 0x7f, 0x04, 0x4a, 0xfd, 0x47, 0x22, 0x43, - 0x3c, 0x32, 0x10, 0x11, 0x31, 0x3b, 0x41, 0x21, 0x02, 0xbd, 0x00, 0x01, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x3b, 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x5b, - 0x40, 0x17, 0x02, 0x06, 0x47, 0x05, 0x55, 0x0d, 0x00, 0x0d, 0x20, 0x0d, - 0x02, 0x30, 0x0d, 0x40, 0x0d, 0x50, 0x0d, 0xd0, 0x0d, 0xf0, 0x0d, 0x05, - 0x0d, 0xb8, 0xff, 0xc0, 0x40, 0x23, 0x0e, 0x11, 0x48, 0x01, 0x09, 0x47, - 0x0a, 0x54, 0x0c, 0x08, 0x50, 0xeb, 0x01, 0x01, 0xa9, 0x01, 0xb9, 0x01, - 0x02, 0x0f, 0x01, 0x1f, 0x01, 0x2f, 0x01, 0x03, 0x06, 0x01, 0x01, 0x0a, - 0x05, 0x15, 0x03, 0x00, 0x0f, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x39, 0x2f, - 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2b, 0x5d, - 0x71, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x11, 0x21, 0x11, 0x33, - 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x01, 0x64, 0x02, 0x21, 0xb6, - 0xb6, 0xfd, 0xdf, 0xb6, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, 0xfb, 0xb6, - 0x01, 0xe9, 0xfe, 0x17, 0x04, 0x4a, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x04, 0x2d, 0x04, 0x5e, 0x02, 0x06, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x12, 0x04, 0x4a, 0x00, 0x07, 0x00, 0x2d, - 0x40, 0x1c, 0x05, 0x47, 0x04, 0x55, 0x09, 0x10, 0x09, 0x20, 0x09, 0x60, - 0x09, 0x70, 0x09, 0x80, 0x09, 0x05, 0x00, 0x47, 0x01, 0x54, 0x08, 0x07, - 0x50, 0x02, 0x0f, 0x05, 0x00, 0x15, 0x00, 0x3f, 0x32, 0x3f, 0xe1, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x21, 0x23, 0x11, - 0x21, 0x11, 0x23, 0x11, 0x21, 0x01, 0x64, 0xb6, 0x03, 0x64, 0xb6, 0xfe, - 0x08, 0x04, 0x4a, 0xfb, 0xb6, 0x03, 0xb0, 0x00, 0xff, 0xff, 0x00, 0xae, - 0xfe, 0x14, 0x04, 0x3f, 0x04, 0x5e, 0x02, 0x06, 0x00, 0x53, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0x6f, 0x04, 0x5e, 0x02, 0x06, - 0x00, 0x46, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x00, 0x00, 0x03, 0x5e, - 0x04, 0x4a, 0x00, 0x07, 0x00, 0x58, 0x40, 0x3c, 0x20, 0x09, 0x01, 0xdf, - 0x09, 0x01, 0x70, 0x09, 0x80, 0x09, 0x02, 0x5f, 0x09, 0x01, 0x0f, 0x00, - 0x01, 0xcc, 0x00, 0x01, 0x0f, 0x00, 0xbf, 0x00, 0x02, 0x06, 0x00, 0x00, - 0x02, 0x47, 0x03, 0x60, 0x05, 0x70, 0x05, 0xd0, 0x05, 0x03, 0x1f, 0x05, - 0x01, 0x05, 0x05, 0x00, 0x03, 0x10, 0x03, 0xb0, 0x03, 0xc0, 0x03, 0x04, - 0x03, 0x01, 0x05, 0x50, 0x06, 0x0f, 0x02, 0x15, 0x00, 0x3f, 0x3f, 0xe1, - 0x32, 0x01, 0x2f, 0x5d, 0x33, 0x2f, 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, - 0x5e, 0x5d, 0x5d, 0x71, 0x5d, 0x5d, 0x5d, 0x71, 0x31, 0x30, 0x01, 0x21, - 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, 0x03, 0x5e, 0xfe, 0xc1, 0xb7, 0xfe, - 0xc1, 0x03, 0x35, 0x03, 0xb0, 0xfc, 0x50, 0x03, 0xb0, 0x9a, 0xff, 0xff, - 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, 0x04, 0x4a, 0x02, 0x06, 0x00, 0x5c, - 0x00, 0x00, 0x00, 0x03, 0x00, 0x71, 0xfe, 0x14, 0x05, 0x23, 0x06, 0x14, - 0x00, 0x19, 0x00, 0x22, 0x00, 0x29, 0x00, 0x74, 0x40, 0x4b, 0x27, 0x00, - 0x0b, 0x46, 0x1d, 0x17, 0x0c, 0x0d, 0x13, 0x49, 0xb9, 0x0c, 0xc9, 0x0c, - 0x02, 0x97, 0x0c, 0xa7, 0x0c, 0x02, 0x0c, 0x0c, 0x12, 0x23, 0x48, 0x05, - 0x57, 0x2b, 0x20, 0x2b, 0x01, 0x0f, 0x2b, 0x01, 0x9f, 0x2b, 0xef, 0x2b, - 0x02, 0x80, 0x2b, 0x01, 0x6f, 0x2b, 0x01, 0x40, 0x2b, 0x01, 0x0f, 0x2b, - 0x1f, 0x2b, 0x02, 0x06, 0x1a, 0x48, 0x12, 0x56, 0x2a, 0x18, 0x00, 0x26, - 0x1e, 0x50, 0x00, 0x17, 0x10, 0x27, 0x1d, 0x50, 0x0a, 0x0d, 0x16, 0x0b, - 0x1b, 0x00, 0x3f, 0x3f, 0x33, 0xe1, 0x32, 0x3f, 0x33, 0xe1, 0x32, 0x3f, - 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x71, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x2b, 0x33, 0x33, 0xe1, - 0x32, 0x32, 0x31, 0x30, 0x01, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, - 0x11, 0x23, 0x11, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x11, 0x33, - 0x01, 0x14, 0x16, 0x17, 0x11, 0x0e, 0x03, 0x05, 0x34, 0x26, 0x27, 0x11, - 0x36, 0x36, 0x03, 0x21, 0x71, 0xbd, 0x88, 0x4c, 0x47, 0x86, 0xbe, 0x77, - 0xaa, 0x72, 0xbf, 0x89, 0x4c, 0x47, 0x85, 0xc1, 0x79, 0xaa, 0xfe, 0x0c, - 0x9c, 0xae, 0x58, 0x7d, 0x50, 0x25, 0x03, 0x39, 0x9b, 0xaa, 0xac, 0x99, - 0x04, 0x5a, 0x0c, 0x55, 0x8f, 0xc6, 0x7d, 0x7d, 0xc8, 0x91, 0x56, 0x0b, - 0xfe, 0x24, 0x01, 0xdc, 0x0a, 0x56, 0x90, 0xc9, 0x7e, 0x7d, 0xc7, 0x8f, - 0x55, 0x0b, 0x01, 0xba, 0xfc, 0x13, 0xbb, 0xd2, 0x13, 0x03, 0x3c, 0x09, - 0x3d, 0x67, 0x91, 0x5e, 0xba, 0xcc, 0x14, 0xfc, 0xc6, 0x14, 0xd1, 0x00, - 0xff, 0xff, 0x00, 0x23, 0x00, 0x00, 0x03, 0xdb, 0x04, 0x4a, 0x02, 0x06, - 0x00, 0x5b, 0x00, 0x00, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, 0x04, 0xb2, - 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x44, 0x40, 0x2b, 0x01, 0x47, 0x0f, 0x00, - 0x01, 0x06, 0x00, 0x00, 0x07, 0x47, 0x8f, 0x0a, 0x01, 0x0a, 0x0d, 0x10, - 0x0d, 0x20, 0x0d, 0x60, 0x0d, 0x70, 0x0d, 0x80, 0x0d, 0xc0, 0x0d, 0x06, - 0x06, 0x47, 0x03, 0x54, 0x0c, 0x08, 0x04, 0x0f, 0x0a, 0x06, 0x50, 0x03, - 0x15, 0x01, 0xfb, 0x00, 0x3f, 0x3f, 0xe1, 0x32, 0x3f, 0x33, 0x01, 0x10, - 0xf6, 0xe1, 0x5d, 0x10, 0xd4, 0x5d, 0xe1, 0x33, 0x2f, 0x5e, 0x5d, 0xe1, - 0x31, 0x30, 0x01, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, - 0x11, 0x33, 0x04, 0xb2, 0xb6, 0xfc, 0xb2, 0xb6, 0x01, 0xf8, 0xb6, 0xa0, - 0xfe, 0x83, 0x01, 0x7d, 0x04, 0x4a, 0xfc, 0x50, 0x03, 0xb0, 0xfc, 0x50, - 0x00, 0x01, 0x00, 0x9a, 0x00, 0x00, 0x03, 0xfe, 0x04, 0x4a, 0x00, 0x18, - 0x00, 0x31, 0x40, 0x1c, 0x08, 0x0c, 0x47, 0x0b, 0x55, 0x1a, 0x10, 0x1a, - 0x60, 0x1a, 0x80, 0x1a, 0x03, 0x01, 0x47, 0x17, 0x54, 0x19, 0x08, 0x03, - 0x50, 0x12, 0x12, 0x0b, 0x15, 0x09, 0x00, 0x0f, 0x00, 0x3f, 0x32, 0x3f, - 0x39, 0x2f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, - 0x32, 0x31, 0x30, 0x01, 0x11, 0x14, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, - 0x33, 0x11, 0x23, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, - 0x01, 0x50, 0xb8, 0x2d, 0x50, 0x4c, 0x4d, 0x2a, 0xb6, 0xb6, 0x2c, 0x50, - 0x55, 0x5e, 0x3a, 0x4e, 0x7a, 0x52, 0x2b, 0x04, 0x4a, 0xfe, 0x66, 0xae, - 0x0f, 0x1c, 0x2c, 0x1c, 0x01, 0xd5, 0xfb, 0xb6, 0x01, 0xe9, 0x1e, 0x30, - 0x20, 0x11, 0x2f, 0x54, 0x73, 0x44, 0x01, 0xa6, 0x00, 0x01, 0x00, 0xae, - 0x00, 0x00, 0x06, 0x46, 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x66, 0x40, 0x43, - 0x00, 0x47, 0xb6, 0x09, 0xc6, 0x09, 0x02, 0xa9, 0x09, 0x01, 0x03, 0x74, - 0x09, 0x84, 0x09, 0x94, 0x09, 0x03, 0x67, 0x09, 0x01, 0x06, 0x09, 0x09, - 0x05, 0x01, 0x47, 0x04, 0x55, 0x0d, 0x20, 0x0d, 0x01, 0x0f, 0x0d, 0x01, - 0x80, 0x0d, 0xf0, 0x0d, 0x02, 0x6f, 0x0d, 0x01, 0x40, 0x0d, 0x01, 0x0f, - 0x0d, 0x2f, 0x0d, 0x02, 0x06, 0x08, 0x47, 0x05, 0x54, 0x0c, 0x00, 0x08, - 0x50, 0x05, 0x15, 0x0a, 0x06, 0x02, 0x0f, 0x00, 0x3f, 0x33, 0x33, 0x3f, - 0xe1, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, - 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5f, 0x5d, 0x5d, 0x5f, 0x5d, - 0x5d, 0xe1, 0x31, 0x30, 0x25, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, - 0x11, 0x21, 0x11, 0x33, 0x03, 0xd5, 0x01, 0xba, 0xb7, 0xfa, 0x68, 0xb6, - 0x01, 0xbb, 0xb6, 0x9a, 0x03, 0xb0, 0xfb, 0xb6, 0x04, 0x4a, 0xfc, 0x50, - 0x03, 0xb0, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, 0x06, 0xe5, 0x04, 0x4a, - 0x00, 0x0f, 0x00, 0x77, 0x40, 0x4e, 0x0a, 0x47, 0xb6, 0x07, 0xc6, 0x07, - 0x02, 0xa9, 0x07, 0x01, 0x03, 0x74, 0x07, 0x84, 0x07, 0x94, 0x07, 0x03, - 0x67, 0x07, 0x01, 0x06, 0x07, 0x07, 0x03, 0x0b, 0x47, 0x0e, 0x01, 0x47, - 0x0e, 0x00, 0x01, 0x00, 0x00, 0xbf, 0x0e, 0x01, 0x0e, 0x11, 0x20, 0x11, - 0x01, 0x0f, 0x11, 0x01, 0x40, 0x11, 0x80, 0x11, 0xe0, 0x11, 0xf0, 0x11, - 0x04, 0x0f, 0x11, 0x2f, 0x11, 0x02, 0x06, 0x06, 0x47, 0x03, 0x54, 0x10, - 0x0c, 0x08, 0x04, 0x0f, 0x0e, 0x0a, 0x06, 0x50, 0x03, 0x15, 0x01, 0xfb, - 0x00, 0x3f, 0x3f, 0xe1, 0x32, 0x32, 0x3f, 0x33, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x5e, 0x5d, 0x5d, 0x71, 0x71, 0x10, 0xc4, 0x5d, 0x32, 0x2f, 0x5d, - 0xe1, 0x10, 0xe1, 0x11, 0x39, 0x2f, 0x5f, 0x5d, 0x5d, 0x5f, 0x5d, 0x5d, - 0xe1, 0x31, 0x30, 0x01, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x06, 0xe5, 0xb6, 0xfa, 0x7f, - 0xb6, 0x01, 0xbb, 0xb6, 0x01, 0xba, 0xb7, 0x9f, 0xfe, 0x83, 0x01, 0x7d, - 0x04, 0x4a, 0xfc, 0x50, 0x03, 0xb0, 0xfc, 0x50, 0x03, 0xb0, 0xfc, 0x50, - 0x00, 0x02, 0x00, 0x29, 0x00, 0x00, 0x04, 0xfc, 0x04, 0x4a, 0x00, 0x0e, - 0x00, 0x1b, 0x00, 0x5c, 0x40, 0x3e, 0x0f, 0x47, 0x04, 0x57, 0x1d, 0x50, - 0x1d, 0x60, 0x1d, 0x90, 0x1d, 0xe0, 0x1d, 0x04, 0x3f, 0x1d, 0x01, 0x00, - 0x16, 0x47, 0x0a, 0x00, 0x0c, 0x10, 0x0c, 0x02, 0xb0, 0x0c, 0xf0, 0x0c, - 0x02, 0x0c, 0x0c, 0x00, 0x0a, 0x10, 0x0a, 0x50, 0x0a, 0x60, 0x0a, 0xa0, - 0x0a, 0x05, 0x08, 0x0a, 0x15, 0x50, 0xbf, 0x00, 0x01, 0x00, 0x00, 0x16, - 0x0c, 0x50, 0x0d, 0x0f, 0x16, 0x50, 0x0a, 0x15, 0x00, 0x3f, 0xe1, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0x2f, - 0x5d, 0x71, 0x10, 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, - 0x01, 0x21, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x21, - 0x35, 0x21, 0x01, 0x34, 0x2e, 0x02, 0x23, 0x21, 0x11, 0x21, 0x32, 0x3e, - 0x02, 0x02, 0x48, 0x01, 0x14, 0xd4, 0xcc, 0x2f, 0x65, 0x9f, 0x71, 0xfe, - 0x39, 0xfe, 0x98, 0x02, 0x1f, 0x02, 0x02, 0x21, 0x41, 0x60, 0x40, 0xff, - 0x00, 0x01, 0x04, 0x37, 0x5d, 0x44, 0x26, 0x02, 0x87, 0x9c, 0x9b, 0x4d, - 0x7c, 0x58, 0x2f, 0x03, 0xb0, 0x9a, 0xfc, 0xf8, 0x31, 0x42, 0x28, 0x11, - 0xfe, 0xa8, 0x11, 0x29, 0x42, 0x00, 0x00, 0x03, 0x00, 0xae, 0x00, 0x00, - 0x05, 0x50, 0x04, 0x4a, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x1d, 0x00, 0x61, - 0x40, 0x40, 0x18, 0x47, 0x00, 0x04, 0x10, 0x04, 0x20, 0x04, 0x70, 0x04, - 0xd0, 0x04, 0x05, 0x06, 0x04, 0x04, 0x0a, 0x0e, 0x47, 0x0d, 0x55, 0x1f, - 0x0f, 0x1f, 0x01, 0xbf, 0x1f, 0xcf, 0x1f, 0xdf, 0x1f, 0xff, 0x1f, 0x04, - 0xa0, 0x1f, 0x01, 0x0f, 0x1f, 0x7f, 0x1f, 0x02, 0x07, 0x00, 0x12, 0x47, - 0x0a, 0x54, 0x1e, 0x11, 0x50, 0xbf, 0x00, 0x01, 0x00, 0x00, 0x0f, 0x0b, - 0x0f, 0x12, 0x50, 0x0e, 0x0a, 0x15, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, - 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x5d, - 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x31, - 0x30, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, - 0x33, 0x01, 0x23, 0x11, 0x33, 0x01, 0x11, 0x33, 0x32, 0x3e, 0x02, 0x35, - 0x34, 0x2e, 0x02, 0x23, 0x01, 0x64, 0xec, 0xd4, 0xcc, 0x2f, 0x65, 0x9f, - 0x71, 0xfe, 0x62, 0xb6, 0x03, 0xec, 0xb6, 0xb6, 0xfc, 0x14, 0xdb, 0x38, - 0x5d, 0x43, 0x26, 0x21, 0x41, 0x60, 0x40, 0x02, 0x87, 0x9c, 0x9b, 0x4d, - 0x7c, 0x58, 0x2f, 0x04, 0x4a, 0xfb, 0xb6, 0x04, 0x4a, 0xfd, 0xa4, 0xfe, - 0xa8, 0x11, 0x29, 0x42, 0x30, 0x31, 0x42, 0x28, 0x11, 0x00, 0x00, 0x02, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x19, 0x04, 0x4a, 0x00, 0x0c, 0x00, 0x19, - 0x00, 0x40, 0x40, 0x29, 0x14, 0x47, 0x04, 0x57, 0x1b, 0x00, 0x1b, 0x01, - 0x00, 0x1b, 0x20, 0x1b, 0x70, 0x1b, 0x90, 0x1b, 0xb0, 0x1b, 0xd0, 0x1b, - 0x06, 0x08, 0x00, 0x0e, 0x47, 0x0a, 0x54, 0x1a, 0x0d, 0x50, 0xbf, 0x00, - 0x01, 0x00, 0x00, 0x0b, 0x0f, 0x0e, 0x50, 0x0a, 0x15, 0x00, 0x3f, 0xe1, - 0x3f, 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5e, 0x5d, - 0x71, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x21, 0x32, 0x16, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x21, 0x11, 0x33, 0x11, 0x11, 0x21, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x2e, 0x02, 0x23, 0x01, 0x64, 0x01, 0x15, 0xd4, 0xcc, 0x2f, - 0x65, 0x9f, 0x71, 0xfe, 0x39, 0xb6, 0x01, 0x04, 0x38, 0x5d, 0x43, 0x26, - 0x21, 0x41, 0x60, 0x40, 0x02, 0x87, 0x9c, 0x9b, 0x4d, 0x7c, 0x58, 0x2f, - 0x04, 0x4a, 0xfd, 0xa4, 0xfe, 0xa8, 0x11, 0x29, 0x42, 0x30, 0x31, 0x42, - 0x28, 0x11, 0x00, 0x01, 0x00, 0x37, 0xff, 0xec, 0x03, 0x42, 0x04, 0x5e, - 0x00, 0x26, 0x00, 0x5e, 0x40, 0x3e, 0x0e, 0x0e, 0x04, 0x0c, 0x0f, 0x48, - 0x22, 0x57, 0x28, 0x8f, 0x28, 0xaf, 0x28, 0x02, 0x40, 0x28, 0x01, 0x18, - 0x0f, 0x04, 0x1f, 0x04, 0x2f, 0x04, 0x03, 0x04, 0x40, 0x0c, 0x11, 0x48, - 0x04, 0x58, 0x27, 0x0d, 0x50, 0xef, 0x0e, 0x01, 0xa9, 0x0e, 0xb9, 0x0e, - 0x02, 0x0f, 0x0e, 0x1f, 0x0e, 0x2f, 0x0e, 0x03, 0x06, 0x0e, 0x0e, 0x07, - 0x12, 0x51, 0x1d, 0x10, 0x07, 0x51, 0x00, 0x16, 0x00, 0x3f, 0xe1, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x01, 0x10, 0xe6, - 0x2b, 0x71, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x39, 0x2f, - 0x31, 0x30, 0x05, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, - 0x02, 0x37, 0x21, 0x35, 0x21, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, - 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x01, - 0x42, 0x59, 0x7c, 0x36, 0x36, 0x83, 0x52, 0x49, 0x74, 0x52, 0x30, 0x04, - 0xfe, 0x23, 0x01, 0xdb, 0x0d, 0x92, 0x8c, 0x19, 0x3b, 0x3c, 0x38, 0x17, - 0x35, 0x18, 0x40, 0x48, 0x4e, 0x26, 0x66, 0xb3, 0x84, 0x4d, 0x51, 0x8c, - 0xba, 0x14, 0x1e, 0x1d, 0xa2, 0x19, 0x25, 0x28, 0x54, 0x84, 0x5c, 0x9a, - 0xa6, 0x97, 0x09, 0x0f, 0x13, 0x0a, 0x9a, 0x0c, 0x16, 0x10, 0x09, 0x3e, - 0x89, 0xdb, 0x9d, 0x92, 0xd4, 0x8a, 0x43, 0x00, 0x00, 0x02, 0x00, 0xae, - 0xff, 0xec, 0x06, 0x08, 0x04, 0x5e, 0x00, 0x1a, 0x00, 0x26, 0x00, 0x72, - 0x40, 0x4b, 0x1b, 0x48, 0x0a, 0x20, 0x11, 0x01, 0x4f, 0x11, 0x01, 0x11, - 0x11, 0x0d, 0x21, 0x48, 0x00, 0x57, 0x28, 0x0f, 0x28, 0x2f, 0x28, 0x02, - 0xef, 0x28, 0xff, 0x28, 0x02, 0x47, 0x28, 0x01, 0x0f, 0x28, 0x2f, 0x28, - 0x02, 0x10, 0x0c, 0x47, 0x0d, 0x54, 0x27, 0x24, 0x50, 0x16, 0x10, 0x0b, - 0x50, 0xef, 0x10, 0x01, 0xa9, 0x10, 0xb9, 0x10, 0x02, 0x2c, 0x10, 0x01, - 0x0b, 0x10, 0x1b, 0x10, 0x02, 0x06, 0x10, 0x10, 0x0d, 0x0e, 0x0f, 0x0d, - 0x15, 0x1e, 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, - 0x5d, 0x71, 0x33, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x27, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x3e, 0x03, - 0x33, 0x32, 0x1e, 0x02, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x06, 0x08, 0x40, 0x78, 0xab, 0x6a, 0x62, 0xa2, - 0x75, 0x46, 0x07, 0xfe, 0xef, 0xb6, 0xb6, 0x01, 0x13, 0x0a, 0x48, 0x76, - 0xa0, 0x63, 0x62, 0xa7, 0x79, 0x44, 0xfd, 0x29, 0x80, 0x8e, 0x8f, 0x7e, - 0x80, 0x8f, 0x8e, 0x7e, 0x02, 0x27, 0x89, 0xd5, 0x91, 0x4c, 0x42, 0x81, - 0xbe, 0x7c, 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x74, 0xb1, 0x78, 0x3e, - 0x4b, 0x91, 0xd3, 0x88, 0xd1, 0xd3, 0xd3, 0xd1, 0xd1, 0xcf, 0xcf, 0x00, - 0x00, 0x02, 0x00, 0x23, 0x00, 0x00, 0x03, 0x91, 0x04, 0x4a, 0x00, 0x11, - 0x00, 0x1c, 0x00, 0x53, 0x40, 0x14, 0x02, 0x11, 0x11, 0x07, 0x18, 0x0f, - 0x47, 0x0e, 0x55, 0x1e, 0x0f, 0x1e, 0x6f, 0x1e, 0x8f, 0x1e, 0x03, 0x06, - 0x00, 0x01, 0xb8, 0xff, 0xf0, 0x40, 0x19, 0x01, 0x01, 0x12, 0x46, 0x07, - 0x40, 0x12, 0x15, 0x48, 0x07, 0x56, 0x1d, 0x02, 0x10, 0x50, 0x18, 0x18, - 0x00, 0x19, 0x50, 0x0d, 0x0f, 0x0f, 0x00, 0x15, 0x00, 0x3f, 0x32, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0xe1, 0x32, 0x01, 0x10, 0xf6, 0x2b, 0xe1, 0x33, - 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x39, 0x11, - 0x33, 0x31, 0x30, 0x33, 0x23, 0x01, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x21, 0x11, 0x23, 0x11, 0x23, 0x03, 0x14, 0x1e, 0x02, 0x33, 0x33, - 0x11, 0x23, 0x22, 0x06, 0xe9, 0xc6, 0x01, 0x23, 0x2d, 0x54, 0x41, 0x28, - 0x38, 0x64, 0x8a, 0x53, 0x01, 0xbc, 0xb6, 0xf4, 0xdd, 0x25, 0x41, 0x5a, - 0x36, 0xdb, 0xfe, 0x6b, 0x68, 0x01, 0xcd, 0x0c, 0x30, 0x4c, 0x6c, 0x47, - 0x4e, 0x79, 0x51, 0x2a, 0xfb, 0xb6, 0x01, 0xb0, 0x01, 0x54, 0x30, 0x46, - 0x2e, 0x16, 0x01, 0x66, 0x5f, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x03, 0xe1, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x6a, 0xda, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x31, 0x11, - 0x26, 0x03, 0x02, 0x00, 0x28, 0x3c, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0x00, 0x01, 0x00, 0x12, 0xfe, 0x14, - 0x04, 0x12, 0x06, 0x14, 0x00, 0x31, 0x00, 0x53, 0x40, 0x32, 0x1f, 0x17, - 0x0c, 0x47, 0x2d, 0x55, 0x33, 0x10, 0x33, 0x60, 0x33, 0x80, 0x33, 0x03, - 0x23, 0x22, 0x1e, 0x16, 0x47, 0x1b, 0x17, 0x54, 0x32, 0x21, 0x19, 0x4f, - 0x1e, 0x1a, 0x1a, 0x1c, 0x23, 0x10, 0x50, 0x00, 0x29, 0x10, 0x29, 0x20, - 0x29, 0x03, 0x29, 0x0f, 0x1c, 0x00, 0x17, 0x15, 0x07, 0x50, 0x00, 0x1b, - 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0x3f, 0x5d, 0xe1, 0x33, 0x12, 0x39, 0x2f, - 0x33, 0xe1, 0x32, 0x01, 0x10, 0xf6, 0x32, 0xe1, 0x32, 0x32, 0x32, 0x5d, - 0x10, 0xf6, 0xe1, 0x12, 0x39, 0x31, 0x30, 0x01, 0x22, 0x26, 0x27, 0x35, - 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, - 0x0e, 0x02, 0x15, 0x11, 0x23, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, - 0x21, 0x15, 0x21, 0x15, 0x07, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, - 0x11, 0x14, 0x0e, 0x02, 0x02, 0xf0, 0x30, 0x3f, 0x17, 0x1a, 0x36, 0x23, - 0x1b, 0x2e, 0x23, 0x13, 0x69, 0x70, 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x9c, - 0x9c, 0xb6, 0x01, 0x7b, 0xfe, 0x85, 0x08, 0x0a, 0x19, 0x45, 0x52, 0x5c, - 0x30, 0xb7, 0xb9, 0x22, 0x48, 0x6d, 0xfe, 0x14, 0x0e, 0x0b, 0x94, 0x0a, - 0x0b, 0x0f, 0x27, 0x41, 0x33, 0x03, 0x44, 0x82, 0x82, 0x34, 0x66, 0x94, - 0x60, 0xfd, 0xf0, 0x04, 0xd5, 0x89, 0xb6, 0xb6, 0x89, 0xb8, 0x90, 0x2b, - 0x3f, 0x2a, 0x14, 0xbf, 0xd2, 0xfc, 0xbe, 0x4d, 0x7b, 0x57, 0x2f, 0x00, - 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x03, 0x0a, 0x06, 0x21, 0x02, 0x26, - 0x01, 0xcd, 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0xd4, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x12, 0x11, 0x26, 0x01, 0x45, 0x06, 0x0c, 0x03, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0x71, - 0xff, 0xec, 0x03, 0x6f, 0x04, 0x5e, 0x00, 0x22, 0x00, 0x4f, 0x40, 0x31, - 0x17, 0x17, 0x16, 0x1f, 0x0d, 0x24, 0x8f, 0x24, 0xaf, 0x24, 0x02, 0x40, - 0x24, 0x01, 0x16, 0x19, 0x48, 0x05, 0x56, 0x23, 0x19, 0x50, 0xef, 0x16, - 0x01, 0xa9, 0x16, 0xb9, 0x16, 0x02, 0x0f, 0x16, 0x1f, 0x16, 0x2f, 0x16, - 0x03, 0x06, 0x16, 0x16, 0x1c, 0x13, 0x51, 0x0a, 0x10, 0x1c, 0x51, 0x00, - 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, - 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xce, 0x32, - 0x11, 0x39, 0x2f, 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x07, - 0x21, 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, - 0x02, 0x52, 0x65, 0xb0, 0x82, 0x4a, 0x4c, 0x85, 0xb2, 0x66, 0x4e, 0x95, - 0x32, 0x36, 0x17, 0x38, 0x3c, 0x3a, 0x1a, 0x8b, 0x92, 0x0e, 0x01, 0xdb, - 0xfe, 0x23, 0x09, 0x92, 0x8a, 0x51, 0x83, 0x36, 0x36, 0x7b, 0x14, 0x3f, - 0x89, 0xd5, 0x96, 0x9d, 0xdb, 0x89, 0x3e, 0x22, 0x19, 0x9a, 0x0a, 0x13, - 0x0f, 0x09, 0x97, 0xa6, 0x9a, 0xb8, 0xa4, 0x25, 0x19, 0xa2, 0x1d, 0x1e, - 0xff, 0xff, 0x00, 0x5a, 0xff, 0xec, 0x03, 0x3f, 0x04, 0x5e, 0x02, 0x06, - 0x00, 0x56, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa0, 0x00, 0x00, 0x01, 0x75, - 0x05, 0xe5, 0x02, 0x06, 0x00, 0x4c, 0x00, 0x00, 0xff, 0xff, 0xff, 0xee, - 0x00, 0x00, 0x02, 0x25, 0x05, 0xd9, 0x02, 0x26, 0x00, 0xf3, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0xfe, 0xbb, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x02, 0x01, 0x0d, 0x11, 0x26, 0x02, 0x01, 0x00, 0x04, 0x18, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0xff, 0xbc, 0xfe, 0x14, 0x01, 0x75, 0x05, 0xe5, 0x02, 0x06, 0x00, 0x4d, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x10, 0xff, 0xf2, 0x06, 0x12, 0x04, 0x4a, - 0x00, 0x1d, 0x00, 0x2a, 0x00, 0x6b, 0x40, 0x45, 0x0c, 0x46, 0x1c, 0x00, - 0x25, 0x47, 0x0a, 0xd4, 0x1c, 0x01, 0x90, 0x1c, 0xa0, 0x1c, 0x02, 0x24, - 0x1c, 0x01, 0x00, 0x1c, 0x01, 0x1c, 0x0a, 0x1c, 0x0a, 0x14, 0x1e, 0x47, - 0x04, 0x57, 0x2c, 0x0f, 0x2c, 0x2f, 0x2c, 0x3f, 0x2c, 0x5f, 0x2c, 0x7f, - 0x2c, 0xbf, 0x2c, 0xef, 0x2c, 0x07, 0x14, 0x14, 0x2b, 0x24, 0x50, 0xbf, - 0x00, 0x01, 0x00, 0x00, 0x25, 0x0c, 0x50, 0x1c, 0x0f, 0x17, 0x4f, 0x11, - 0x16, 0x25, 0x50, 0x0a, 0x15, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0xe1, - 0x12, 0x39, 0x2f, 0x5d, 0xe1, 0x11, 0x01, 0x33, 0x2f, 0x5d, 0x10, 0xf6, - 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, - 0x32, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x21, 0x11, 0x23, 0x02, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x35, 0x16, 0x33, 0x32, 0x36, 0x36, 0x12, 0x37, 0x21, 0x01, 0x34, - 0x2e, 0x02, 0x23, 0x23, 0x11, 0x33, 0x32, 0x3e, 0x02, 0x03, 0x87, 0xec, - 0xd4, 0xcb, 0x2e, 0x65, 0x9f, 0x71, 0xfe, 0x62, 0xd9, 0x14, 0x40, 0x5f, - 0x82, 0x56, 0x1c, 0x31, 0x10, 0x17, 0x1b, 0x37, 0x59, 0x45, 0x33, 0x12, - 0x02, 0x2b, 0x01, 0xd9, 0x21, 0x41, 0x60, 0x40, 0xd7, 0xdb, 0x38, 0x5d, - 0x43, 0x26, 0x02, 0x87, 0x9c, 0x9b, 0x4d, 0x7c, 0x58, 0x2f, 0x03, 0xb0, - 0xfe, 0xfd, 0xfe, 0x94, 0xe6, 0x69, 0x06, 0x06, 0x83, 0x06, 0x75, 0xf1, - 0x01, 0x6f, 0xfa, 0xfc, 0xf8, 0x31, 0x42, 0x28, 0x11, 0xfe, 0xa8, 0x11, - 0x29, 0x42, 0x00, 0x02, 0x00, 0xae, 0x00, 0x00, 0x06, 0x75, 0x04, 0x4a, - 0x00, 0x14, 0x00, 0x21, 0x00, 0x53, 0x40, 0x30, 0x05, 0x1c, 0x47, 0x02, - 0x0f, 0x0f, 0x13, 0x15, 0x47, 0x09, 0x57, 0x23, 0xef, 0x23, 0x01, 0x80, - 0x23, 0x01, 0x3f, 0x23, 0x01, 0x10, 0x23, 0x01, 0x01, 0x12, 0x47, 0x13, - 0x54, 0x22, 0x1b, 0x11, 0x50, 0x05, 0xbf, 0x01, 0x01, 0x01, 0x01, 0x00, - 0x1c, 0x50, 0x13, 0x0f, 0x15, 0x03, 0x00, 0x0f, 0x00, 0x3f, 0x32, 0x3f, - 0x33, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x33, 0xe1, 0x32, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, - 0x33, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, - 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x01, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x11, 0x33, 0x32, 0x3e, 0x02, - 0x01, 0x64, 0x01, 0xcf, 0xb6, 0xec, 0xd4, 0xcc, 0x2f, 0x65, 0x9f, 0x71, - 0xfe, 0x62, 0xfe, 0x31, 0xb6, 0x05, 0x15, 0x21, 0x41, 0x61, 0x3f, 0xd8, - 0xdc, 0x37, 0x5d, 0x44, 0x26, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, 0xfe, - 0x3d, 0x9c, 0x9b, 0x4d, 0x7c, 0x58, 0x2f, 0x01, 0xe9, 0xfe, 0x17, 0x04, - 0x4a, 0xfc, 0xf8, 0x31, 0x42, 0x28, 0x11, 0xfe, 0xa8, 0x11, 0x29, 0x42, - 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x04, 0x12, 0x06, 0x14, 0x00, 0x21, - 0x00, 0x53, 0x40, 0x32, 0x68, 0x14, 0x01, 0x14, 0x0b, 0x00, 0x47, 0x21, - 0x55, 0x23, 0x10, 0x23, 0x60, 0x23, 0x80, 0x23, 0x03, 0x17, 0x16, 0x12, - 0x0a, 0x47, 0x0f, 0x0b, 0x54, 0x22, 0x15, 0x0d, 0x4f, 0x12, 0x0e, 0x0e, - 0x10, 0x17, 0x04, 0x50, 0x00, 0x1d, 0x10, 0x1d, 0x20, 0x1d, 0x03, 0x1d, - 0x0f, 0x10, 0x00, 0x0b, 0x00, 0x15, 0x00, 0x3f, 0x32, 0x3f, 0x3f, 0x5d, - 0xe1, 0x33, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x01, 0x10, 0xf6, 0x32, - 0xe1, 0x32, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x5d, 0x31, - 0x30, 0x21, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23, - 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x07, - 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x15, 0x11, 0x03, 0x5c, 0x69, 0x70, - 0x51, 0x6e, 0x43, 0x1d, 0xb6, 0x9c, 0x9c, 0xb6, 0x01, 0x7b, 0xfe, 0x85, - 0x08, 0x0a, 0x19, 0x45, 0x52, 0x5c, 0x30, 0xb7, 0xb9, 0x02, 0x9a, 0x82, - 0x82, 0x34, 0x66, 0x94, 0x60, 0xfd, 0xf0, 0x04, 0xd5, 0x89, 0xb6, 0xb6, - 0x89, 0xb8, 0x90, 0x2b, 0x3f, 0x2a, 0x14, 0xbf, 0xd2, 0xfd, 0x5c, 0x00, - 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x03, 0xe5, 0x06, 0x21, 0x02, 0x26, - 0x01, 0xd4, 0x00, 0x00, 0x01, 0x06, 0x00, 0x76, 0x08, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x17, 0x11, 0x26, 0x01, 0x0c, 0x0b, 0x11, 0x07, 0x03, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, - 0xfe, 0x14, 0x03, 0xdf, 0x06, 0x17, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, - 0x01, 0x06, 0x02, 0x36, 0xb1, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x28, - 0x11, 0x26, 0x01, 0x0a, 0x2d, 0x23, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, 0x04, 0x12, - 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x59, 0x40, 0x3d, 0xd6, 0x06, 0x01, 0xb7, - 0x06, 0xc7, 0x06, 0x02, 0x06, 0x47, 0xb5, 0x07, 0xc5, 0x07, 0xd5, 0x07, - 0x03, 0x76, 0x07, 0x86, 0x07, 0x02, 0x4a, 0x07, 0x5a, 0x07, 0x02, 0x07, - 0x07, 0x09, 0x01, 0x47, 0x04, 0x55, 0x0d, 0x10, 0x0d, 0x20, 0x0d, 0x60, - 0x0d, 0x70, 0x0d, 0x80, 0x0d, 0x05, 0x00, 0x47, 0x09, 0x54, 0x0c, 0x05, - 0x00, 0x50, 0x09, 0x15, 0x06, 0xfb, 0x0a, 0x02, 0x0f, 0x00, 0x3f, 0x33, - 0x3f, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, - 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0xe1, 0x5d, 0x5d, 0x31, 0x30, 0x25, - 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x01, - 0x64, 0x01, 0xf8, 0xb6, 0xfe, 0xb3, 0xb7, 0xfe, 0xa0, 0xb6, 0x9a, 0x03, - 0xb0, 0xfb, 0xb6, 0xfe, 0x83, 0x01, 0x7d, 0x04, 0x4a, 0x00, 0x00, 0x01, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x06, 0xe3, 0x00, 0x07, 0x00, 0x44, - 0x40, 0x2c, 0x00, 0x5a, 0xdf, 0x03, 0xef, 0x03, 0xff, 0x03, 0x03, 0x00, - 0x03, 0x10, 0x03, 0x02, 0x03, 0x03, 0x09, 0xb0, 0x09, 0xd0, 0x09, 0x02, - 0x0f, 0x09, 0xaf, 0x09, 0x02, 0x05, 0x5a, 0x06, 0x64, 0x08, 0x04, 0x5f, - 0x07, 0x20, 0x01, 0x01, 0x01, 0x01, 0x07, 0x03, 0x06, 0x12, 0x00, 0x3f, - 0x3f, 0x33, 0x2f, 0x5d, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, - 0x11, 0x33, 0x2f, 0x5d, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x11, 0x33, 0x11, - 0x21, 0x11, 0x23, 0x11, 0x03, 0x0e, 0xb0, 0xfd, 0xc3, 0xba, 0x05, 0xb6, - 0x01, 0x2d, 0xfe, 0x2d, 0xfa, 0xf0, 0x05, 0xb6, 0x00, 0x01, 0x00, 0xae, - 0x00, 0x00, 0x03, 0x0a, 0x05, 0x89, 0x00, 0x07, 0x00, 0x30, 0x40, 0x1c, - 0x05, 0x47, 0x00, 0x00, 0x10, 0x00, 0x02, 0x00, 0x00, 0x09, 0x02, 0x47, - 0x03, 0x54, 0x08, 0x10, 0x06, 0x20, 0x06, 0x02, 0x06, 0x06, 0x01, 0x4f, - 0x04, 0x0f, 0x02, 0x15, 0x00, 0x3f, 0x3f, 0xe1, 0x33, 0x2f, 0x5d, 0x01, - 0x10, 0xf6, 0xe1, 0x11, 0x33, 0x2f, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x21, - 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x03, 0x0a, 0xfe, 0x5a, 0xb6, 0x01, - 0xa6, 0xb6, 0x03, 0xc1, 0xfc, 0x3f, 0x04, 0x4a, 0x01, 0x3f, 0xff, 0xff, - 0x00, 0x14, 0x00, 0x00, 0x06, 0xfe, 0x07, 0x73, 0x02, 0x26, 0x00, 0x3a, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0x00, 0xe7, 0x01, 0x52, 0x00, 0x15, - 0xb4, 0x01, 0x2b, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xac, 0xb4, 0x31, 0x2b, - 0x1e, 0x0e, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x14, 0x00, 0x00, 0x05, 0xe3, 0x06, 0x21, 0x02, 0x26, 0x00, 0x5a, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0x4c, 0x00, 0x00, 0x15, 0xb4, 0x01, - 0x30, 0x11, 0x26, 0x01, 0xb8, 0xff, 0x9e, 0xb4, 0x36, 0x30, 0x11, 0x2e, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x14, - 0x00, 0x00, 0x06, 0xfe, 0x07, 0x73, 0x02, 0x26, 0x00, 0x3a, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x01, 0xa0, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x37, 0x05, 0x26, 0x01, 0x64, 0x2b, 0x31, 0x1e, 0x0e, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x14, 0x00, 0x00, - 0x05, 0xe3, 0x06, 0x21, 0x02, 0x26, 0x00, 0x5a, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x76, 0x01, 0x17, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x3c, - 0x11, 0x26, 0x01, 0x69, 0x30, 0x36, 0x11, 0x2e, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x14, 0x00, 0x00, 0x06, 0xfe, - 0x07, 0x2b, 0x02, 0x26, 0x00, 0x3a, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, - 0x01, 0x39, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x34, 0x05, 0x26, - 0x02, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x2b, 0x3f, 0x1e, 0x0e, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x14, - 0x00, 0x00, 0x05, 0xe3, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x5a, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0xac, 0x00, 0x00, 0x00, 0x19, 0xb6, 0x02, - 0x01, 0x39, 0x11, 0x26, 0x02, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x30, 0x44, - 0x11, 0x2e, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x3c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xff, 0x72, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x01, 0x09, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xa4, 0xb4, - 0x0f, 0x09, 0x07, 0x02, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x5c, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xff, 0x4b, 0x00, 0x00, - 0x00, 0x15, 0xb4, 0x01, 0x23, 0x11, 0x26, 0x01, 0xb8, 0xff, 0xa4, 0xb4, - 0x29, 0x23, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0x00, 0x01, 0x00, 0x52, 0x01, 0xd1, 0x03, 0xae, 0x02, 0x79, 0x00, 0x03, - 0x00, 0x1d, 0xb9, 0x00, 0x02, 0xff, 0xc0, 0x40, 0x0b, 0x06, 0x0c, 0x48, - 0x02, 0x02, 0x05, 0x00, 0x00, 0xb9, 0x01, 0xbd, 0x00, 0x3f, 0xe1, 0x01, - 0x2f, 0x11, 0x33, 0x2f, 0x2b, 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x52, - 0x03, 0x5c, 0x01, 0xd1, 0xa8, 0xa8, 0x00, 0x01, 0x00, 0x52, 0x01, 0xd1, - 0x07, 0xae, 0x02, 0x79, 0x00, 0x03, 0x00, 0x1d, 0xb9, 0x00, 0x02, 0xff, - 0xc0, 0x40, 0x0b, 0x06, 0x0c, 0x48, 0x02, 0x02, 0x05, 0x00, 0x00, 0xb9, - 0x01, 0xbd, 0x00, 0x3f, 0xe1, 0x01, 0x2f, 0x11, 0x33, 0x2f, 0x2b, 0x31, - 0x30, 0x13, 0x35, 0x21, 0x15, 0x52, 0x07, 0x5c, 0x01, 0xd1, 0xa8, 0xa8, - 0x00, 0x01, 0x00, 0x52, 0x01, 0xd1, 0x07, 0xae, 0x02, 0x79, 0x00, 0x03, - 0x00, 0x1d, 0xb9, 0x00, 0x02, 0xff, 0xc0, 0x40, 0x0b, 0x06, 0x0c, 0x48, - 0x02, 0x02, 0x05, 0x00, 0x00, 0xb9, 0x01, 0xbd, 0x00, 0x3f, 0xe1, 0x01, - 0x2f, 0x11, 0x33, 0x2f, 0x2b, 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x52, - 0x07, 0x5c, 0x01, 0xd1, 0xa8, 0xa8, 0x00, 0x02, 0xff, 0xfc, 0xfe, 0x31, - 0x03, 0x4e, 0xff, 0xd3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x2a, 0x40, 0x18, - 0x04, 0x00, 0x00, 0x09, 0x05, 0x01, 0x05, 0xba, 0xef, 0x06, 0xff, 0x06, - 0x02, 0x06, 0x02, 0xba, 0x00, 0x01, 0x10, 0x01, 0x20, 0x01, 0x03, 0x01, - 0x00, 0x2f, 0x5d, 0xe1, 0x2f, 0x5d, 0xe1, 0x01, 0x2f, 0x33, 0x11, 0x33, - 0x2f, 0x33, 0x31, 0x30, 0x01, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, - 0x03, 0x4e, 0xfc, 0xae, 0x03, 0x52, 0xfc, 0xae, 0x03, 0x52, 0xfe, 0x31, - 0x8b, 0x8c, 0x8b, 0x00, 0x00, 0x01, 0x00, 0x17, 0x03, 0xc1, 0x01, 0x50, - 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x25, 0x40, 0x17, 0x5f, 0x0e, 0x01, 0x06, - 0x0f, 0x07, 0x5f, 0x07, 0x6f, 0x07, 0xbf, 0x07, 0xcf, 0x07, 0x05, 0x07, - 0x0c, 0x98, 0x01, 0x0c, 0x9c, 0x06, 0x03, 0x00, 0x3f, 0xe5, 0x01, 0x2f, - 0xe1, 0x2f, 0x5d, 0x33, 0x5d, 0x31, 0x30, 0x13, 0x27, 0x3e, 0x03, 0x37, - 0x33, 0x0e, 0x03, 0x07, 0x25, 0x0e, 0x0e, 0x27, 0x2e, 0x34, 0x19, 0x89, - 0x0f, 0x1d, 0x1a, 0x16, 0x08, 0x03, 0xc1, 0x16, 0x36, 0x7a, 0x7c, 0x7b, - 0x38, 0x3d, 0x84, 0x83, 0x7c, 0x35, 0x00, 0x01, 0x00, 0x17, 0x03, 0xc1, - 0x01, 0x50, 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x25, 0x40, 0x17, 0x5f, 0x0e, - 0x01, 0x06, 0x07, 0x0c, 0x98, 0x0f, 0x01, 0x5f, 0x01, 0x6f, 0x01, 0xbf, - 0x01, 0xcf, 0x01, 0x05, 0x01, 0x06, 0x9c, 0x00, 0x03, 0x00, 0x3f, 0xe5, - 0x01, 0x2f, 0x5d, 0xe1, 0x2f, 0x33, 0x5d, 0x31, 0x30, 0x01, 0x17, 0x0e, - 0x03, 0x07, 0x23, 0x3e, 0x03, 0x37, 0x01, 0x42, 0x0e, 0x0e, 0x27, 0x2f, - 0x33, 0x19, 0x89, 0x0e, 0x1d, 0x1b, 0x16, 0x08, 0x05, 0xb6, 0x16, 0x37, - 0x79, 0x7d, 0x7a, 0x38, 0x3c, 0x84, 0x84, 0x7c, 0x35, 0x00, 0x00, 0x01, - 0x00, 0x3f, 0xfe, 0xf8, 0x01, 0x79, 0x00, 0xee, 0x00, 0x0c, 0x00, 0x35, - 0xb9, 0x00, 0x0e, 0xff, 0xc0, 0x40, 0x14, 0x0a, 0x18, 0x48, 0x0c, 0x98, - 0x0f, 0x01, 0x5f, 0x01, 0x6f, 0x01, 0x7f, 0x01, 0xcf, 0x01, 0x05, 0x01, - 0x01, 0x06, 0x07, 0xb8, 0xff, 0xc0, 0xb7, 0x10, 0x15, 0x48, 0x07, 0x06, - 0x9c, 0x00, 0xa8, 0x00, 0x3f, 0xe5, 0x01, 0x2f, 0x2b, 0x33, 0x33, 0x2f, - 0x5d, 0xe1, 0x2b, 0x31, 0x30, 0x25, 0x17, 0x0e, 0x03, 0x07, 0x23, 0x3e, - 0x03, 0x37, 0x01, 0x6a, 0x0f, 0x0e, 0x27, 0x2f, 0x33, 0x19, 0x8a, 0x0f, - 0x1d, 0x1b, 0x16, 0x08, 0xee, 0x17, 0x36, 0x7a, 0x7c, 0x7b, 0x38, 0x3d, - 0x84, 0x83, 0x7d, 0x35, 0x00, 0x01, 0x00, 0x19, 0x03, 0xc1, 0x01, 0x52, - 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x2b, 0x40, 0x1c, 0x5f, 0x0e, 0x01, 0x06, - 0x0f, 0x05, 0x5f, 0x05, 0x6f, 0x05, 0x7f, 0x05, 0xbf, 0x05, 0xcf, 0x05, - 0xdf, 0x05, 0x07, 0x05, 0x05, 0x00, 0x98, 0x0b, 0x06, 0x9c, 0x00, 0x03, - 0x00, 0x3f, 0xe5, 0x01, 0x2f, 0xe1, 0x33, 0x2f, 0x5d, 0x33, 0x5d, 0x31, - 0x30, 0x13, 0x1e, 0x03, 0x17, 0x23, 0x2e, 0x03, 0x27, 0x37, 0xee, 0x08, - 0x16, 0x1a, 0x1d, 0x0f, 0x89, 0x19, 0x34, 0x2e, 0x27, 0x0e, 0x0e, 0x05, - 0xb6, 0x35, 0x7c, 0x84, 0x84, 0x3c, 0x38, 0x7a, 0x7d, 0x79, 0x37, 0x16, - 0x00, 0x02, 0x00, 0x17, 0x03, 0xc1, 0x02, 0xd1, 0x05, 0xb6, 0x00, 0x0c, - 0x00, 0x19, 0x00, 0x62, 0x40, 0x48, 0xbf, 0x1b, 0x01, 0x90, 0x1b, 0x01, - 0x0f, 0x1b, 0x5f, 0x1b, 0x6f, 0x1b, 0x03, 0x13, 0x0f, 0x14, 0x5f, 0x14, - 0x6f, 0x14, 0x7f, 0x14, 0xbf, 0x14, 0xcf, 0x14, 0xdf, 0x14, 0x07, 0x14, - 0x14, 0x19, 0x98, 0x0e, 0x0c, 0x98, 0x00, 0x01, 0x50, 0x01, 0x60, 0x01, - 0x70, 0x01, 0xb0, 0x01, 0xc0, 0x01, 0xd0, 0x01, 0x07, 0x01, 0x01, 0x06, - 0x0f, 0x07, 0x5f, 0x07, 0x6f, 0x07, 0xbf, 0x07, 0xcf, 0x07, 0x05, 0x07, - 0x19, 0x0c, 0x9c, 0x13, 0x06, 0x03, 0x00, 0x3f, 0x33, 0xe5, 0x32, 0x01, - 0x2f, 0x5d, 0x33, 0x33, 0x2f, 0x5d, 0xe1, 0x2f, 0xe1, 0x33, 0x2f, 0x5d, - 0x33, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x27, 0x3e, 0x03, 0x37, 0x33, - 0x0e, 0x03, 0x07, 0x21, 0x27, 0x3e, 0x03, 0x37, 0x33, 0x0e, 0x03, 0x07, - 0x01, 0xa6, 0x0e, 0x0e, 0x27, 0x2e, 0x34, 0x19, 0x89, 0x0f, 0x1d, 0x1a, - 0x16, 0x08, 0xfd, 0xb8, 0x0e, 0x0e, 0x27, 0x2e, 0x34, 0x19, 0x89, 0x0f, - 0x1d, 0x1a, 0x16, 0x08, 0x03, 0xc1, 0x16, 0x36, 0x7a, 0x7c, 0x7b, 0x38, - 0x3d, 0x84, 0x83, 0x7c, 0x35, 0x16, 0x36, 0x7a, 0x7c, 0x7b, 0x38, 0x3d, - 0x84, 0x83, 0x7c, 0x35, 0x00, 0x02, 0x00, 0x17, 0x03, 0xc1, 0x02, 0xd1, - 0x05, 0xb6, 0x00, 0x0c, 0x00, 0x19, 0x00, 0x62, 0x40, 0x48, 0xbf, 0x1b, - 0x01, 0x90, 0x1b, 0x01, 0x0f, 0x1b, 0x5f, 0x1b, 0x6f, 0x1b, 0x03, 0x13, - 0x00, 0x14, 0x50, 0x14, 0x60, 0x14, 0x70, 0x14, 0xb0, 0x14, 0xc0, 0x14, - 0xd0, 0x14, 0x07, 0x14, 0x14, 0x19, 0x98, 0x0f, 0x0e, 0x5f, 0x0e, 0x6f, - 0x0e, 0xbf, 0x0e, 0xcf, 0x0e, 0x05, 0x0e, 0x0c, 0x98, 0x0f, 0x01, 0x5f, - 0x01, 0x6f, 0x01, 0x7f, 0x01, 0xbf, 0x01, 0xcf, 0x01, 0xdf, 0x01, 0x07, - 0x01, 0x01, 0x06, 0x07, 0x13, 0x06, 0x9c, 0x0d, 0x00, 0x03, 0x00, 0x3f, - 0x32, 0xe5, 0x32, 0x01, 0x2f, 0x33, 0x33, 0x2f, 0x5d, 0xe1, 0x2f, 0x5d, - 0xe1, 0x33, 0x2f, 0x5d, 0x33, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x17, - 0x0e, 0x03, 0x07, 0x23, 0x3e, 0x03, 0x37, 0x21, 0x17, 0x0e, 0x03, 0x07, - 0x23, 0x3e, 0x03, 0x37, 0x01, 0x42, 0x0e, 0x0e, 0x27, 0x2f, 0x33, 0x19, - 0x89, 0x0e, 0x1d, 0x1b, 0x16, 0x08, 0x02, 0x48, 0x0e, 0x0e, 0x27, 0x2f, - 0x33, 0x19, 0x89, 0x0e, 0x1d, 0x1b, 0x16, 0x08, 0x05, 0xb6, 0x16, 0x37, - 0x79, 0x7d, 0x7a, 0x38, 0x3c, 0x84, 0x84, 0x7c, 0x35, 0x16, 0x37, 0x79, - 0x7d, 0x7a, 0x38, 0x3c, 0x84, 0x84, 0x7c, 0x35, 0x00, 0x02, 0x00, 0x3f, - 0xfe, 0xf8, 0x02, 0xfa, 0x00, 0xee, 0x00, 0x0c, 0x00, 0x19, 0x00, 0x7e, - 0x40, 0x51, 0xd0, 0x1b, 0xe0, 0x1b, 0xf0, 0x1b, 0x03, 0xa4, 0x1b, 0xb4, - 0x1b, 0xc4, 0x1b, 0x03, 0x90, 0x1b, 0x01, 0x02, 0x20, 0x1b, 0x30, 0x1b, - 0x40, 0x1b, 0x60, 0x1b, 0x70, 0x1b, 0x80, 0x1b, 0x06, 0x13, 0x00, 0x14, - 0x50, 0x14, 0x60, 0x14, 0x70, 0x14, 0xc0, 0x14, 0xd0, 0x14, 0x06, 0x14, - 0x14, 0x19, 0x98, 0x90, 0x0e, 0xe0, 0x0e, 0xf0, 0x0e, 0x03, 0x0f, 0x0e, - 0x5f, 0x0e, 0x02, 0x0e, 0x0c, 0x98, 0x0f, 0x01, 0x5f, 0x01, 0x6f, 0x01, - 0x7f, 0x01, 0xcf, 0x01, 0xdf, 0x01, 0x06, 0x01, 0x01, 0x06, 0x07, 0xb8, - 0xff, 0xc0, 0x40, 0x0a, 0x10, 0x18, 0x48, 0x07, 0x13, 0x06, 0x9c, 0x0d, - 0x00, 0xa8, 0x00, 0x3f, 0x32, 0xe5, 0x32, 0x01, 0x2f, 0x2b, 0x33, 0x33, - 0x2f, 0x5d, 0xe1, 0x2f, 0x5d, 0x5d, 0xe1, 0x33, 0x2f, 0x5d, 0x33, 0x5d, - 0x5f, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x25, 0x17, 0x0e, 0x03, 0x07, 0x23, - 0x3e, 0x03, 0x37, 0x21, 0x17, 0x0e, 0x03, 0x07, 0x23, 0x3e, 0x03, 0x37, - 0x01, 0x6a, 0x0f, 0x0e, 0x27, 0x2f, 0x33, 0x19, 0x8a, 0x0f, 0x1d, 0x1b, - 0x16, 0x08, 0x02, 0x48, 0x0e, 0x0e, 0x27, 0x2f, 0x33, 0x19, 0x89, 0x0e, - 0x1d, 0x1b, 0x16, 0x08, 0xee, 0x17, 0x36, 0x7a, 0x7c, 0x7b, 0x38, 0x3d, - 0x84, 0x83, 0x7d, 0x35, 0x17, 0x36, 0x7a, 0x7c, 0x7b, 0x38, 0x3d, 0x84, - 0x83, 0x7d, 0x35, 0x00, 0x00, 0x01, 0x00, 0x7b, 0x00, 0x00, 0x03, 0x68, - 0x06, 0x14, 0x00, 0x0b, 0x00, 0x7c, 0x40, 0x52, 0x90, 0x0d, 0xa0, 0x0d, - 0xe0, 0x0d, 0xf0, 0x0d, 0x04, 0x6f, 0x0d, 0x01, 0x10, 0x0d, 0x30, 0x0d, - 0x40, 0x0d, 0x03, 0x07, 0x06, 0xc0, 0x04, 0x08, 0x08, 0x03, 0xe4, 0x0b, - 0xf4, 0x0b, 0x02, 0xd6, 0x0b, 0x01, 0x77, 0x0b, 0x01, 0x6a, 0x0b, 0x01, - 0x54, 0x0b, 0x01, 0x45, 0x0b, 0x01, 0x26, 0x0b, 0x01, 0x0b, 0xc0, 0x09, - 0x0a, 0x01, 0x09, 0x09, 0x36, 0x02, 0x01, 0x02, 0xbe, 0x00, 0x03, 0x10, - 0x03, 0xa0, 0x03, 0x03, 0x03, 0x04, 0x01, 0x00, 0x05, 0xbf, 0x0b, 0x0a, - 0x07, 0x06, 0xc2, 0x08, 0x00, 0x03, 0x00, 0x2f, 0x3f, 0xf6, 0x32, 0x32, - 0x32, 0xe1, 0x32, 0x32, 0x32, 0x01, 0x2f, 0x5d, 0xe1, 0x5d, 0x32, 0x11, - 0x33, 0x33, 0x10, 0xe6, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, - 0x33, 0x2f, 0x33, 0xe6, 0x33, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x25, - 0x13, 0x23, 0x13, 0x05, 0x35, 0x05, 0x03, 0x33, 0x03, 0x25, 0x03, 0x68, - 0xfe, 0xb5, 0x37, 0xd9, 0x37, 0xfe, 0xc9, 0x01, 0x37, 0x37, 0xd9, 0x37, - 0x01, 0x4b, 0x03, 0xdd, 0x1f, 0xfc, 0x04, 0x03, 0xfc, 0x1f, 0xb4, 0x1e, - 0x01, 0xa1, 0xfe, 0x5f, 0x1e, 0x00, 0x00, 0x01, 0x00, 0x7b, 0x00, 0x00, - 0x03, 0x7d, 0x06, 0x14, 0x00, 0x15, 0x00, 0xb0, 0x40, 0x71, 0x00, 0x17, - 0x01, 0xa0, 0x17, 0xb0, 0x17, 0xf0, 0x17, 0x03, 0x7f, 0x17, 0x01, 0x20, - 0x17, 0x40, 0x17, 0x50, 0x17, 0x03, 0x08, 0x0d, 0xc0, 0x0e, 0x0b, 0x0f, - 0x0f, 0x05, 0x01, 0x04, 0x12, 0x01, 0xf4, 0x12, 0x01, 0xe6, 0x12, 0x01, - 0x87, 0x12, 0x01, 0x7a, 0x12, 0x01, 0x64, 0x12, 0x01, 0x55, 0x12, 0x01, - 0x36, 0x12, 0x46, 0x12, 0x02, 0x12, 0xc0, 0x10, 0x14, 0x11, 0x10, 0x10, - 0x15, 0x03, 0x00, 0x04, 0xbe, 0x05, 0x0a, 0x0a, 0x09, 0x06, 0x00, 0x05, - 0x01, 0x00, 0x05, 0x10, 0x05, 0x20, 0x05, 0x50, 0x05, 0xa0, 0x05, 0xb0, - 0x05, 0x06, 0x08, 0x05, 0x14, 0x13, 0x0b, 0x0c, 0xbf, 0x12, 0x11, 0x0e, - 0x0d, 0xc2, 0x0f, 0x00, 0x09, 0x01, 0x00, 0x08, 0xbf, 0x06, 0x03, 0x02, - 0x07, 0xc2, 0x05, 0x00, 0x2f, 0xf6, 0x32, 0x32, 0x32, 0xe1, 0x32, 0x32, - 0x32, 0x3f, 0xf6, 0x32, 0x32, 0x32, 0xe1, 0x32, 0x32, 0x32, 0x01, 0x2f, - 0x5e, 0x5d, 0x71, 0x33, 0x33, 0x33, 0x2f, 0x10, 0xe1, 0x32, 0x32, 0x32, - 0x32, 0x11, 0x33, 0x33, 0x10, 0xe6, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x71, 0x32, 0x11, 0x33, 0x2f, 0x33, 0x33, 0xe6, 0x32, 0x5d, 0x5d, - 0x5d, 0x71, 0x31, 0x30, 0x01, 0x25, 0x15, 0x25, 0x13, 0x23, 0x13, 0x05, - 0x35, 0x05, 0x03, 0x13, 0x05, 0x35, 0x05, 0x03, 0x33, 0x03, 0x25, 0x15, - 0x25, 0x13, 0x02, 0x31, 0x01, 0x4c, 0xfe, 0xb4, 0x37, 0xd9, 0x38, 0xfe, - 0xb4, 0x01, 0x4c, 0x2f, 0x2f, 0xfe, 0xb4, 0x01, 0x4c, 0x38, 0xd9, 0x37, - 0x01, 0x4c, 0xfe, 0xb4, 0x2f, 0x01, 0xf0, 0x1e, 0xb4, 0x1f, 0xfe, 0x87, - 0x01, 0x79, 0x1f, 0xb4, 0x1e, 0x01, 0x22, 0x01, 0x13, 0x1f, 0xb4, 0x1e, - 0x01, 0x78, 0xfe, 0x88, 0x1e, 0xb4, 0x1f, 0xfe, 0xed, 0x00, 0x00, 0x01, - 0x00, 0x96, 0x01, 0xe5, 0x02, 0x6d, 0x03, 0xf2, 0x00, 0x13, 0x00, 0x46, - 0x40, 0x24, 0x2f, 0x15, 0x5f, 0x15, 0x6f, 0x15, 0x7f, 0x15, 0xcf, 0x15, - 0xef, 0x15, 0xff, 0x15, 0x07, 0x10, 0x15, 0x01, 0x5f, 0x0a, 0x6f, 0x0a, - 0x9f, 0x0a, 0xaf, 0x0a, 0xdf, 0x0a, 0xef, 0x0a, 0x06, 0x0a, 0xd0, 0x00, - 0x01, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x0c, 0x07, 0x0a, 0x48, 0x00, 0x1f, - 0x0f, 0x01, 0x0f, 0x10, 0x05, 0x01, 0x05, 0x00, 0x2f, 0x5d, 0xc5, 0x5d, - 0x01, 0x2f, 0x2b, 0x5d, 0xc5, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x13, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x96, 0x24, 0x3f, 0x56, 0x32, 0x31, 0x56, 0x40, 0x25, 0x25, - 0x40, 0x56, 0x31, 0x32, 0x56, 0x3f, 0x24, 0x02, 0xec, 0x47, 0x64, 0x3f, - 0x1c, 0x1c, 0x3f, 0x64, 0x47, 0x46, 0x64, 0x3f, 0x1e, 0x1e, 0x3f, 0x64, - 0x00, 0x03, 0x00, 0x93, 0xff, 0xe3, 0x05, 0xdb, 0x00, 0xfa, 0x00, 0x13, - 0x00, 0x27, 0x00, 0x39, 0x00, 0xa8, 0x40, 0x76, 0x14, 0x3b, 0x24, 0x3b, - 0x02, 0xfb, 0x3b, 0x01, 0xe4, 0x3b, 0x01, 0xbb, 0x3b, 0xcb, 0x3b, 0x02, - 0xa4, 0x3b, 0x01, 0x8b, 0x3b, 0x01, 0x64, 0x3b, 0x74, 0x3b, 0x02, 0x4b, - 0x3b, 0x01, 0x34, 0x3b, 0x01, 0x0b, 0x3b, 0x01, 0x1e, 0x96, 0x66, 0x14, - 0x76, 0x14, 0x02, 0x14, 0x14, 0x00, 0x28, 0x96, 0x24, 0x32, 0x01, 0xfb, - 0x32, 0x01, 0xe0, 0x32, 0x01, 0xd4, 0x32, 0x01, 0xbb, 0x32, 0x01, 0xa4, - 0x32, 0x01, 0x8b, 0x32, 0x01, 0x72, 0x32, 0x01, 0x66, 0x32, 0x01, 0x4b, - 0x32, 0x01, 0x30, 0x32, 0x01, 0x02, 0x20, 0x32, 0x01, 0x0f, 0x32, 0x01, - 0x06, 0x32, 0x0a, 0x96, 0xe0, 0x00, 0xf0, 0x00, 0x02, 0x54, 0x00, 0x64, - 0x00, 0x02, 0x00, 0x00, 0x10, 0x00, 0x20, 0x00, 0x03, 0x07, 0x00, 0x2d, - 0x19, 0x05, 0x9b, 0x37, 0x23, 0x0f, 0x00, 0x2f, 0x33, 0x33, 0xed, 0x32, - 0x32, 0x01, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xed, 0x2f, 0x5e, 0x5d, 0x5d, - 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, - 0xed, 0x11, 0x39, 0x2f, 0x5d, 0xed, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x71, 0x31, 0x30, 0x37, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x25, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x25, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x26, 0x93, 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, - 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x1b, 0x2e, 0x22, 0x14, 0x02, 0x25, - 0x14, 0x22, 0x2e, 0x1b, 0x1a, 0x2f, 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, - 0x1b, 0x2e, 0x22, 0x14, 0x02, 0x25, 0x13, 0x23, 0x2e, 0x1b, 0x1a, 0x2f, - 0x22, 0x14, 0x14, 0x22, 0x2f, 0x1a, 0x36, 0x49, 0x6f, 0x26, 0x35, 0x21, - 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x35, 0x22, 0x10, 0x10, 0x22, 0x35, - 0x25, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, 0x26, 0x25, 0x35, 0x22, - 0x10, 0x10, 0x22, 0x35, 0x25, 0x26, 0x35, 0x21, 0x0f, 0x0f, 0x21, 0x35, - 0x26, 0x25, 0x35, 0x22, 0x10, 0x42, 0x00, 0x07, 0x00, 0x66, 0xff, 0xec, - 0x08, 0xf4, 0x05, 0xcb, 0x00, 0x09, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x3b, - 0x00, 0x3f, 0x00, 0x49, 0x00, 0x5d, 0x00, 0x89, 0x40, 0x5c, 0x40, 0xb4, - 0x54, 0xb5, 0x4a, 0x1e, 0xb4, 0x32, 0xb5, 0x23, 0xb4, 0x28, 0xa0, 0x3e, - 0x01, 0x30, 0x3c, 0x40, 0x3c, 0xb0, 0x3c, 0x03, 0x30, 0x28, 0x40, 0x28, - 0x02, 0x3e, 0x3c, 0x28, 0x28, 0x3c, 0x3e, 0x03, 0x14, 0x45, 0xb4, 0x4a, - 0x5f, 0x3f, 0x5f, 0x4f, 0x5f, 0x5f, 0x5f, 0x7f, 0x5f, 0xaf, 0x5f, 0x05, - 0x05, 0xb4, 0x0a, 0xb5, 0x00, 0xb4, 0x10, 0x14, 0x20, 0x14, 0x30, 0x14, - 0x03, 0x14, 0x47, 0xb6, 0x59, 0xb7, 0x43, 0xb6, 0x4f, 0x19, 0x3f, 0x06, - 0x3e, 0x18, 0x25, 0xb6, 0x37, 0xb7, 0x21, 0xb6, 0x2d, 0x19, 0x03, 0xb6, - 0x0f, 0xb7, 0x07, 0xb6, 0x19, 0x07, 0x00, 0x3f, 0xe1, 0xf4, 0xe1, 0x3f, - 0xe1, 0xf4, 0xe1, 0x3f, 0x3f, 0x3f, 0xe1, 0xf4, 0xe1, 0x01, 0x2f, 0x5d, - 0xe1, 0xf4, 0xe1, 0x5d, 0x10, 0xde, 0xe1, 0x12, 0x17, 0x39, 0x2f, 0x2f, - 0x2f, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, 0xf4, 0xe1, 0x10, 0xf4, 0xe1, 0x31, - 0x30, 0x13, 0x14, 0x16, 0x33, 0x32, 0x11, 0x10, 0x23, 0x22, 0x06, 0x05, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, - 0x32, 0x1e, 0x02, 0x01, 0x14, 0x16, 0x33, 0x32, 0x11, 0x10, 0x23, 0x22, - 0x06, 0x05, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, - 0x02, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x01, 0x23, 0x01, 0x01, 0x14, 0x16, - 0x33, 0x32, 0x11, 0x10, 0x23, 0x22, 0x06, 0x05, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0xfa, - 0x47, 0x50, 0x9c, 0x9c, 0x50, 0x47, 0x01, 0xc7, 0x24, 0x4a, 0x73, 0x4f, - 0x49, 0x70, 0x4c, 0x26, 0x23, 0x49, 0x71, 0x4e, 0x4b, 0x71, 0x4d, 0x27, - 0x01, 0xac, 0x47, 0x50, 0x9c, 0x9c, 0x50, 0x47, 0x01, 0xc6, 0x23, 0x4a, - 0x73, 0x4f, 0x4a, 0x70, 0x4b, 0x26, 0x23, 0x49, 0x71, 0x4e, 0x4b, 0x71, - 0x4c, 0x27, 0xff, 0x00, 0xfc, 0xd5, 0x9e, 0x03, 0x2c, 0x02, 0x97, 0x47, - 0x51, 0x9b, 0x9b, 0x51, 0x47, 0x01, 0xc7, 0x23, 0x4a, 0x73, 0x4f, 0x4a, - 0x70, 0x4b, 0x26, 0x23, 0x49, 0x71, 0x4e, 0x4a, 0x72, 0x4c, 0x27, 0x04, - 0x02, 0xa5, 0xa5, 0x01, 0x4a, 0x01, 0x48, 0xa3, 0xa5, 0x6c, 0xac, 0x76, - 0x3f, 0x3f, 0x76, 0xac, 0x6c, 0x6c, 0xaa, 0x75, 0x3e, 0x3e, 0x75, 0xaa, - 0xfd, 0x4a, 0xa5, 0xa4, 0x01, 0x49, 0x01, 0x48, 0xa3, 0xa5, 0x6c, 0xab, - 0x76, 0x3f, 0x3f, 0x76, 0xab, 0x6c, 0x6c, 0xaa, 0x75, 0x3e, 0x3e, 0x75, - 0xaa, 0x03, 0x92, 0xfa, 0x4a, 0x05, 0xb6, 0xfc, 0x02, 0xa5, 0xa4, 0x01, - 0x49, 0x01, 0x48, 0xa3, 0xa5, 0x6c, 0xab, 0x76, 0x3f, 0x3f, 0x76, 0xab, - 0x6c, 0x6c, 0xaa, 0x75, 0x3e, 0x3e, 0x75, 0xaa, 0xff, 0xff, 0x00, 0x85, - 0x03, 0xa6, 0x01, 0x4a, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x0a, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x85, 0x03, 0xa6, 0x02, 0xb2, 0x05, 0xb6, 0x02, 0x06, - 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x52, 0x00, 0x73, 0x01, 0xfc, - 0x03, 0xc7, 0x00, 0x06, 0x00, 0x3c, 0xb1, 0x04, 0x02, 0xb8, 0xff, 0xc0, - 0x40, 0x1f, 0x09, 0x0c, 0x48, 0x02, 0x08, 0x3f, 0x08, 0x9f, 0x08, 0xaf, - 0x08, 0xdf, 0x08, 0xef, 0x08, 0xff, 0x08, 0x06, 0x06, 0xeb, 0x9f, 0x03, - 0x01, 0x03, 0x06, 0x00, 0x03, 0x03, 0x01, 0x05, 0x01, 0x00, 0x2f, 0x2f, - 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x01, 0x18, 0x2f, 0x5d, 0xe1, 0x5d, - 0x10, 0xc6, 0x2b, 0x32, 0x31, 0x30, 0x13, 0x01, 0x17, 0x03, 0x13, 0x07, - 0x01, 0x52, 0x01, 0x35, 0x75, 0xee, 0xee, 0x75, 0xfe, 0xcb, 0x02, 0x29, - 0x01, 0x9e, 0x4e, 0xfe, 0xa4, 0xfe, 0xa4, 0x4e, 0x01, 0x9b, 0x00, 0x01, - 0x00, 0x52, 0x00, 0x73, 0x01, 0xfc, 0x03, 0xc7, 0x00, 0x06, 0x00, 0x3f, - 0x40, 0x28, 0x00, 0xeb, 0xdf, 0x03, 0xef, 0x03, 0xff, 0x03, 0x03, 0x10, - 0x03, 0x20, 0x03, 0x02, 0x03, 0x3f, 0x08, 0x9f, 0x08, 0xaf, 0x08, 0xdf, - 0x08, 0xef, 0x08, 0xff, 0x08, 0x06, 0x04, 0x3f, 0x02, 0x01, 0x02, 0x06, - 0x00, 0x03, 0x03, 0x01, 0x05, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x39, 0x3d, - 0x2f, 0x33, 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x33, 0x5d, 0x2f, 0x5d, 0x5d, - 0xe1, 0x31, 0x30, 0x01, 0x01, 0x27, 0x13, 0x03, 0x37, 0x01, 0x01, 0xfc, - 0xfe, 0xcb, 0x75, 0xed, 0xed, 0x75, 0x01, 0x35, 0x02, 0x0e, 0xfe, 0x65, - 0x4e, 0x01, 0x5c, 0x01, 0x5c, 0x4e, 0xfe, 0x62, 0xff, 0xff, 0x00, 0x93, - 0xff, 0xe3, 0x03, 0x62, 0x05, 0xb6, 0x00, 0x27, 0x00, 0x04, 0x01, 0xd1, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x04, 0x00, 0x00, 0x00, 0x09, 0xb5, 0x2f, - 0x31, 0x01, 0x10, 0x31, 0x01, 0x5d, 0x5d, 0x00, 0x00, 0x01, 0xfe, 0xa0, - 0x00, 0x00, 0x02, 0x68, 0x05, 0xb6, 0x00, 0x03, 0x00, 0x1d, 0xb1, 0x01, - 0x02, 0xb8, 0xff, 0xf0, 0x40, 0x09, 0x02, 0x03, 0x00, 0x10, 0x00, 0x01, - 0x12, 0x00, 0x03, 0x00, 0x3f, 0x3f, 0x01, 0x2f, 0x38, 0x32, 0x2f, 0x38, - 0x33, 0x31, 0x30, 0x01, 0x01, 0x23, 0x01, 0x02, 0x68, 0xfc, 0xd5, 0x9d, - 0x03, 0x2b, 0x05, 0xb6, 0xfa, 0x4a, 0x05, 0xb6, 0x00, 0x01, 0x00, 0x6a, - 0x03, 0x1d, 0x02, 0x93, 0x05, 0xc7, 0x00, 0x14, 0x00, 0x41, 0x40, 0x17, - 0x00, 0xe0, 0x00, 0x14, 0x01, 0x14, 0x16, 0x60, 0x16, 0xc0, 0x16, 0xe0, - 0x16, 0xf0, 0x16, 0x04, 0x0f, 0x16, 0x01, 0x0e, 0x0a, 0xe0, 0x0b, 0xb8, - 0xff, 0xc0, 0x40, 0x0e, 0x0a, 0x0f, 0x48, 0x0b, 0x0a, 0x00, 0xc0, 0x0e, - 0x04, 0xe4, 0x11, 0xde, 0x0c, 0xdc, 0x00, 0x3f, 0x3f, 0xe1, 0x33, 0x1a, - 0xcc, 0x32, 0x01, 0x2f, 0x2b, 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xd6, 0x5d, - 0xe1, 0x31, 0x30, 0x01, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, - 0x11, 0x23, 0x11, 0x33, 0x17, 0x33, 0x36, 0x33, 0x32, 0x15, 0x11, 0x02, - 0x14, 0x3f, 0x3f, 0x2d, 0x41, 0x2a, 0x15, 0x7f, 0x69, 0x10, 0x09, 0x40, - 0x82, 0xe5, 0x03, 0x1d, 0x01, 0xa6, 0x51, 0x44, 0x15, 0x34, 0x57, 0x41, - 0xfe, 0xa6, 0x02, 0x9d, 0x58, 0x65, 0xfa, 0xfe, 0x50, 0x00, 0x00, 0x01, - 0x00, 0x60, 0x00, 0x00, 0x04, 0x00, 0x05, 0xb6, 0x00, 0x11, 0x00, 0x76, - 0x40, 0x48, 0x02, 0x10, 0x02, 0x10, 0x05, 0x00, 0x0b, 0x10, 0x0b, 0x20, - 0x0b, 0x03, 0x0b, 0x0b, 0x13, 0x30, 0x13, 0x01, 0x0e, 0x00, 0x04, 0x5a, - 0x05, 0x09, 0x05, 0xdf, 0x07, 0x01, 0x07, 0x07, 0x00, 0x05, 0x10, 0x05, - 0xc0, 0x05, 0x03, 0x07, 0x05, 0x03, 0x07, 0x60, 0x08, 0x00, 0x08, 0x11, - 0x5f, 0x0e, 0x0f, 0x0e, 0x3f, 0x0e, 0x6f, 0x0e, 0x03, 0x08, 0x0e, 0x40, - 0x10, 0x15, 0x48, 0x08, 0x0e, 0x08, 0x0e, 0x04, 0x0d, 0x5f, 0x0a, 0x03, - 0x04, 0x12, 0x00, 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x2b, - 0x5e, 0x5d, 0x10, 0xe1, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x01, 0x2f, 0x5e, - 0x5d, 0x33, 0x2f, 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x32, 0x5d, 0x11, - 0x33, 0x2f, 0x5d, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x31, 0x30, 0x01, 0x21, - 0x15, 0x21, 0x11, 0x23, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x21, 0x15, 0x21, 0x01, 0xc3, 0x01, 0x24, 0xfe, 0xdc, 0xb3, 0xb0, - 0xb0, 0x02, 0xf0, 0xfd, 0xc3, 0x02, 0x16, 0xfd, 0xea, 0x01, 0x8f, 0x89, - 0xfe, 0xfa, 0x01, 0x06, 0x89, 0x04, 0x27, 0xa4, 0xfd, 0xfc, 0xa4, 0x00, - 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x04, 0x23, 0x05, 0xc9, 0x00, 0x30, - 0x00, 0x87, 0x40, 0x10, 0x11, 0x0d, 0x15, 0x6f, 0x2b, 0x27, 0x23, 0x0f, - 0x13, 0x23, 0x13, 0x23, 0x13, 0x1e, 0x03, 0x1b, 0xb8, 0xff, 0xc0, 0x40, - 0x3e, 0x09, 0x0e, 0x48, 0x1b, 0x1b, 0x32, 0x10, 0x32, 0x01, 0x29, 0x25, - 0x1e, 0x40, 0x0b, 0x0e, 0x48, 0x1e, 0x14, 0x25, 0x75, 0x26, 0x11, 0x26, - 0x10, 0x29, 0x75, 0x2a, 0x0d, 0x2a, 0x6f, 0x26, 0x01, 0xd0, 0x2a, 0x01, - 0x0f, 0x2a, 0x1f, 0x2a, 0x3f, 0x2a, 0x4f, 0x2a, 0xaf, 0x2a, 0xbf, 0x2a, - 0x06, 0x26, 0x2a, 0x26, 0x2a, 0x00, 0x1e, 0x1a, 0x74, 0x1d, 0x18, 0x07, - 0x73, 0x00, 0x07, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x32, 0x11, 0x39, 0x39, - 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x11, 0x33, - 0x10, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x33, 0x33, 0x5d, 0x11, 0x33, 0x2f, - 0x2b, 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x33, - 0xe1, 0x32, 0x32, 0x31, 0x30, 0x01, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, - 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, - 0x21, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x21, 0x15, 0x21, 0x35, 0x3e, 0x03, - 0x35, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3e, - 0x02, 0x02, 0x9a, 0x6a, 0xae, 0x42, 0x42, 0x38, 0x8d, 0x4b, 0x30, 0x52, - 0x3c, 0x21, 0x01, 0x78, 0xfe, 0x88, 0x01, 0x78, 0xfe, 0x88, 0x17, 0x27, - 0x33, 0x1b, 0x02, 0xec, 0xfc, 0x21, 0x2c, 0x49, 0x35, 0x1e, 0xc6, 0xc6, - 0xc6, 0xc6, 0x3b, 0x69, 0x92, 0x05, 0xc9, 0x2d, 0x23, 0x90, 0x1d, 0x2b, - 0x1b, 0x3b, 0x5e, 0x42, 0xc0, 0x89, 0x9e, 0x89, 0x13, 0x3e, 0x59, 0x40, - 0x2b, 0x10, 0xa6, 0x9a, 0x0b, 0x29, 0x44, 0x61, 0x43, 0x15, 0x89, 0x9e, - 0x89, 0xdd, 0x57, 0x89, 0x5f, 0x32, 0x00, 0x03, 0x00, 0x96, 0xff, 0xec, - 0x05, 0xb6, 0x05, 0xb6, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x35, 0x00, 0x79, - 0x40, 0x18, 0x31, 0x6f, 0x1c, 0x12, 0x10, 0x0f, 0x6e, 0x18, 0x15, 0x18, - 0x1c, 0x18, 0x1c, 0x18, 0x24, 0xff, 0x05, 0x01, 0x05, 0x40, 0x12, 0x15, - 0x48, 0x05, 0xb8, 0xff, 0xc0, 0x40, 0x2c, 0x09, 0x0e, 0x48, 0x05, 0x05, - 0x37, 0x0f, 0x37, 0x01, 0x37, 0x40, 0x0b, 0x10, 0x48, 0x2b, 0x23, 0x6e, - 0x24, 0x7c, 0x36, 0x0f, 0x18, 0x75, 0x15, 0x12, 0x15, 0x2b, 0x73, 0x22, - 0x15, 0x22, 0x15, 0x22, 0x24, 0x35, 0x73, 0x25, 0x06, 0x24, 0x18, 0x00, - 0x75, 0x09, 0x19, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x39, - 0x2f, 0x2f, 0x10, 0xe1, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x2b, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x2b, 0x5d, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x32, 0x10, 0xe1, 0x31, - 0x30, 0x25, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x11, 0x23, 0x35, 0x37, 0x37, 0x33, 0x15, 0x33, 0x15, 0x23, - 0x11, 0x14, 0x16, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x23, 0x11, - 0x33, 0x32, 0x1e, 0x02, 0x01, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, - 0x23, 0x23, 0x05, 0x3b, 0x0f, 0x24, 0x23, 0x1e, 0x07, 0x17, 0x50, 0x3f, - 0x35, 0x58, 0x40, 0x24, 0x9c, 0x9c, 0x41, 0x6b, 0xd1, 0xd1, 0x34, 0xfe, - 0x8c, 0x34, 0x7c, 0xcc, 0x98, 0x2f, 0xb2, 0xfb, 0x86, 0xbf, 0x7b, 0x3a, - 0xfd, 0xbd, 0x1a, 0x5d, 0x8b, 0x5b, 0x2e, 0xa4, 0xae, 0x39, 0x81, 0x04, - 0x06, 0x08, 0x03, 0x8a, 0x0c, 0x14, 0x22, 0x46, 0x6a, 0x48, 0x01, 0xbf, - 0x52, 0x4d, 0xbd, 0xd3, 0x89, 0xfe, 0x56, 0x4c, 0x4e, 0x03, 0x89, 0x5b, - 0xa8, 0x81, 0x4d, 0xfd, 0xc7, 0x05, 0xb6, 0x39, 0x6d, 0xa0, 0xfe, 0x67, - 0x20, 0x47, 0x71, 0x51, 0x8e, 0x89, 0x00, 0x01, 0x00, 0x3f, 0xff, 0xec, - 0x04, 0x4a, 0x05, 0xcb, 0x00, 0x39, 0x00, 0x86, 0xb4, 0x12, 0x07, 0x28, - 0x36, 0x19, 0xb8, 0xff, 0xc0, 0x40, 0x4b, 0x09, 0x0d, 0x48, 0x19, 0x19, - 0x3b, 0x10, 0x3b, 0x01, 0x2c, 0x23, 0x23, 0x13, 0x05, 0x0d, 0x6f, 0x2e, - 0x22, 0x63, 0x28, 0x01, 0x28, 0x28, 0x3a, 0x13, 0x23, 0x60, 0x24, 0x10, - 0x24, 0x08, 0x2c, 0x60, 0x2d, 0x05, 0x2d, 0x5f, 0x24, 0x7f, 0x24, 0x8f, - 0x24, 0xef, 0x24, 0xff, 0x24, 0x05, 0x0f, 0x2d, 0x1f, 0x2d, 0x2f, 0x2d, - 0x5f, 0x2d, 0x9f, 0x2d, 0xcf, 0x2d, 0x06, 0x24, 0x2d, 0x24, 0x2d, 0x16, - 0x37, 0x00, 0x74, 0x33, 0x07, 0x16, 0x5f, 0x19, 0x1d, 0x19, 0x00, 0x3f, - 0x33, 0xe1, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, - 0x11, 0x33, 0x10, 0xe1, 0x32, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x11, 0x01, - 0x33, 0x2f, 0x5d, 0x33, 0x33, 0xe1, 0x32, 0x32, 0x33, 0x11, 0x33, 0x5d, - 0x11, 0x33, 0x2f, 0x2b, 0x33, 0x12, 0x39, 0x39, 0x31, 0x30, 0x01, 0x22, - 0x0e, 0x02, 0x07, 0x21, 0x15, 0x21, 0x14, 0x07, 0x06, 0x14, 0x15, 0x14, - 0x14, 0x17, 0x21, 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, - 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x23, 0x35, 0x33, 0x26, 0x34, - 0x35, 0x34, 0x36, 0x35, 0x23, 0x35, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, - 0x17, 0x07, 0x26, 0x26, 0x03, 0x08, 0x45, 0x76, 0x5e, 0x43, 0x12, 0x01, - 0xb0, 0xfe, 0x41, 0x01, 0x01, 0x02, 0x01, 0x81, 0xfe, 0x92, 0x22, 0xb9, - 0x95, 0x4b, 0x87, 0x3b, 0x3b, 0x85, 0x5b, 0x73, 0xb6, 0x87, 0x58, 0x15, - 0xa4, 0x94, 0x02, 0x02, 0x94, 0xa0, 0x12, 0x58, 0x87, 0xb8, 0x72, 0x61, - 0xa0, 0x4f, 0x50, 0x33, 0x77, 0x05, 0x27, 0x34, 0x63, 0x8f, 0x5b, 0x89, - 0x0f, 0x0e, 0x0c, 0x1a, 0x09, 0x13, 0x29, 0x16, 0x89, 0xaf, 0xb8, 0x20, - 0x1a, 0xa2, 0x1c, 0x1f, 0x49, 0x87, 0xc1, 0x79, 0x89, 0x17, 0x1e, 0x1d, - 0x16, 0x2e, 0x08, 0x89, 0x7d, 0xca, 0x90, 0x4e, 0x2b, 0x31, 0x92, 0x1f, - 0x2b, 0x00, 0x00, 0x04, 0x00, 0x8d, 0xff, 0xf8, 0x05, 0xdb, 0x05, 0xc1, - 0x00, 0x03, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x48, 0x00, 0x86, 0x40, 0x0a, - 0x01, 0x02, 0x39, 0x46, 0x18, 0xb4, 0x0e, 0x03, 0x00, 0x02, 0xb8, 0xff, - 0xf0, 0x40, 0x4a, 0x70, 0x46, 0x90, 0x46, 0xa0, 0x46, 0xd0, 0x46, 0x04, - 0xdf, 0x0e, 0x01, 0x00, 0x10, 0x02, 0x46, 0x0e, 0x00, 0x00, 0x0e, 0x46, - 0x02, 0x04, 0x31, 0x22, 0xb4, 0x0f, 0x04, 0x01, 0xef, 0x04, 0xff, 0x04, - 0x02, 0x04, 0x4a, 0x40, 0xb4, 0x00, 0x31, 0x01, 0x00, 0x31, 0x10, 0x31, - 0x20, 0x31, 0xe0, 0x31, 0xf0, 0x31, 0x05, 0x08, 0x31, 0x42, 0xfc, 0x2c, - 0xfd, 0x3d, 0xfc, 0x36, 0x07, 0x27, 0xfc, 0x13, 0xfd, 0x1d, 0xfc, 0x09, - 0x19, 0x03, 0x06, 0x01, 0x18, 0x00, 0x3f, 0x3f, 0x3f, 0xe1, 0xf4, 0xe1, - 0x3f, 0xe1, 0xf4, 0xe1, 0x01, 0x2f, 0x5e, 0x5d, 0x71, 0xe1, 0x10, 0xde, - 0x5d, 0x71, 0xe1, 0x11, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2f, 0x38, 0x5d, - 0x5d, 0x38, 0x11, 0x33, 0x10, 0xe1, 0x11, 0x33, 0x11, 0x33, 0x31, 0x30, - 0x01, 0x01, 0x23, 0x01, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, - 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x05, 0x14, 0x1e, 0x02, - 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, - 0x01, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, - 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x33, 0x32, 0x36, 0x37, - 0x15, 0x06, 0x06, 0x05, 0x0a, 0xfc, 0xd5, 0x9d, 0x03, 0x2b, 0x01, 0x6e, - 0x2d, 0x50, 0x70, 0x44, 0x3f, 0x6e, 0x51, 0x2f, 0x2c, 0x50, 0x71, 0x44, - 0x3e, 0x6e, 0x52, 0x2f, 0xfe, 0x33, 0x11, 0x26, 0x3c, 0x2b, 0x2a, 0x3c, - 0x25, 0x11, 0x11, 0x25, 0x3c, 0x2a, 0x2b, 0x3c, 0x26, 0x11, 0xfd, 0xcb, - 0x45, 0x79, 0x5a, 0x34, 0x35, 0x5c, 0x7d, 0x48, 0x33, 0x64, 0x20, 0x21, - 0x1f, 0x55, 0x22, 0x67, 0x5f, 0xc2, 0x33, 0x5a, 0x23, 0x23, 0x63, 0x05, - 0xb6, 0xfa, 0x4a, 0x05, 0xb6, 0xfb, 0x98, 0x53, 0x7f, 0x57, 0x2d, 0x2d, - 0x57, 0x7f, 0x53, 0x53, 0x7f, 0x57, 0x2d, 0x2d, 0x57, 0x7f, 0x53, 0x33, - 0x56, 0x3e, 0x23, 0x23, 0x3e, 0x56, 0x33, 0x34, 0x55, 0x3d, 0x21, 0x21, - 0x3d, 0x55, 0x01, 0x92, 0x26, 0x52, 0x80, 0x5a, 0x5f, 0x84, 0x52, 0x26, - 0x16, 0x0f, 0x6b, 0x0d, 0x14, 0x74, 0x76, 0xe5, 0x11, 0x10, 0x6b, 0x12, - 0x13, 0x00, 0x00, 0x02, 0x00, 0x77, 0xff, 0xec, 0x03, 0x7b, 0x05, 0xcb, - 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x55, 0x40, 0x32, 0x2e, 0x70, 0x23, 0x40, - 0x10, 0x14, 0x48, 0x23, 0x23, 0x11, 0x05, 0x06, 0x3c, 0x35, 0x28, 0x6e, - 0x19, 0x14, 0x10, 0x11, 0x20, 0x11, 0x30, 0x11, 0x80, 0x11, 0x90, 0x11, - 0x05, 0x11, 0x18, 0x15, 0x36, 0x76, 0x14, 0x11, 0x28, 0x28, 0x00, 0x30, - 0x76, 0x1e, 0x07, 0x00, 0x75, 0x0b, 0x06, 0x06, 0x0b, 0x19, 0x00, 0x3f, - 0x33, 0x2f, 0x10, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x33, 0x33, 0xe1, - 0x32, 0x32, 0x01, 0x2f, 0x5d, 0xc5, 0x33, 0xe1, 0x32, 0x10, 0xd6, 0xc1, - 0x12, 0x39, 0x2f, 0x2b, 0xe1, 0x31, 0x30, 0x25, 0x32, 0x3e, 0x02, 0x37, - 0x33, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, 0x06, 0x06, 0x07, - 0x35, 0x36, 0x36, 0x37, 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, - 0x15, 0x14, 0x0e, 0x02, 0x07, 0x11, 0x14, 0x1e, 0x02, 0x13, 0x34, 0x23, - 0x22, 0x0e, 0x02, 0x15, 0x11, 0x3e, 0x03, 0x02, 0x6f, 0x20, 0x39, 0x2e, - 0x1e, 0x03, 0x64, 0x04, 0x26, 0x46, 0x69, 0x46, 0x3a, 0x6a, 0x51, 0x30, - 0x2e, 0x61, 0x31, 0x34, 0x5f, 0x2d, 0x1c, 0x40, 0x68, 0x4b, 0x36, 0x57, - 0x3d, 0x21, 0x35, 0x5c, 0x7c, 0x47, 0x11, 0x24, 0x37, 0x63, 0x66, 0x20, - 0x29, 0x17, 0x09, 0x36, 0x4e, 0x33, 0x18, 0x77, 0x16, 0x32, 0x52, 0x3b, - 0x53, 0x83, 0x5a, 0x30, 0x25, 0x54, 0x88, 0x63, 0xe7, 0x11, 0x1c, 0x0c, - 0x79, 0x0e, 0x1e, 0x0f, 0x01, 0xee, 0x3b, 0x6c, 0x53, 0x31, 0x2a, 0x4f, - 0x6f, 0x45, 0x63, 0xa6, 0x86, 0x68, 0x26, 0xfe, 0xd3, 0x30, 0x51, 0x3b, - 0x21, 0x04, 0x21, 0xbc, 0x1b, 0x32, 0x45, 0x2a, 0xfe, 0x6a, 0x21, 0x4e, - 0x62, 0x79, 0x00, 0x04, 0x00, 0xc7, 0x00, 0x00, 0x07, 0x89, 0x05, 0xb6, - 0x00, 0x17, 0x00, 0x2b, 0x00, 0x37, 0x00, 0x3b, 0x00, 0xba, 0x40, 0x72, - 0x0e, 0x01, 0x15, 0x5a, 0x00, 0x39, 0x39, 0x2c, 0xe1, 0x22, 0x10, 0x00, - 0x01, 0xb0, 0x00, 0x01, 0x9f, 0x00, 0x01, 0x30, 0x00, 0x40, 0x00, 0x02, - 0x00, 0x22, 0x00, 0x22, 0x0a, 0x32, 0xe1, 0x18, 0x0f, 0x3a, 0x1f, 0x3a, - 0x2f, 0x3a, 0x03, 0x3a, 0x3a, 0xef, 0x18, 0x01, 0x18, 0x67, 0x3d, 0x6f, - 0x3d, 0xbf, 0x3d, 0xcf, 0x3d, 0x03, 0x40, 0x3d, 0x01, 0x0c, 0x08, 0x03, - 0x09, 0x5a, 0x0a, 0x64, 0x3c, 0x2f, 0xe5, 0x1d, 0x35, 0xe5, 0x27, 0xcf, - 0x1d, 0xdf, 0x1d, 0xef, 0x1d, 0x03, 0x1d, 0x40, 0x06, 0x0b, 0x48, 0x0f, - 0x27, 0x1f, 0x27, 0x5f, 0x27, 0x6f, 0x27, 0x7f, 0x27, 0xef, 0x27, 0x06, - 0x06, 0x1d, 0x27, 0x1d, 0x27, 0x16, 0x03, 0x10, 0x06, 0x18, 0x48, 0x03, - 0x0b, 0x03, 0x39, 0xe5, 0x38, 0x0e, 0xb8, 0xff, 0xf0, 0xb6, 0x06, 0x18, - 0x48, 0x0e, 0x01, 0x0a, 0x12, 0x00, 0x3f, 0x33, 0x33, 0x2b, 0x33, 0xe0, - 0x3f, 0x33, 0x2b, 0x33, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x2b, 0x5d, - 0x10, 0xe1, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x32, 0x5d, - 0x5d, 0x10, 0xe6, 0x5d, 0x32, 0x2f, 0x71, 0x10, 0xe1, 0x11, 0x39, 0x39, - 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0x10, 0xe1, 0x33, 0x2f, 0x10, 0xe1, - 0x32, 0x32, 0x31, 0x30, 0x21, 0x23, 0x01, 0x23, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x11, 0x23, 0x11, 0x33, 0x01, 0x33, 0x26, 0x27, 0x2e, 0x03, 0x35, - 0x11, 0x33, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, - 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x03, 0x35, 0x21, 0x15, 0x04, 0xa8, - 0xcd, 0xfd, 0x87, 0x08, 0x06, 0x04, 0x04, 0x05, 0xa6, 0xcf, 0x02, 0x76, - 0x06, 0x03, 0x04, 0x01, 0x03, 0x02, 0x01, 0xa4, 0x02, 0xe1, 0x29, 0x4d, - 0x6d, 0x44, 0x3f, 0x6b, 0x4d, 0x2c, 0x29, 0x4d, 0x6d, 0x44, 0x3e, 0x6b, - 0x4e, 0x2c, 0xfe, 0x42, 0x48, 0x51, 0x51, 0x47, 0x47, 0x51, 0x51, 0x48, - 0x63, 0x01, 0xf0, 0x04, 0xba, 0x4d, 0x4c, 0x41, 0x8e, 0x39, 0xfc, 0xe7, - 0x05, 0xb6, 0xfb, 0x4c, 0x4c, 0x4a, 0x20, 0x43, 0x43, 0x3e, 0x1a, 0x03, - 0x20, 0xfc, 0xb9, 0x53, 0x82, 0x59, 0x2f, 0x2f, 0x59, 0x82, 0x53, 0x53, - 0x81, 0x58, 0x2e, 0x2e, 0x58, 0x81, 0x53, 0x71, 0x73, 0x73, 0x71, 0x72, - 0x6d, 0x6d, 0xfd, 0x1f, 0x93, 0x93, 0x00, 0x02, 0x00, 0x25, 0x02, 0xe5, - 0x05, 0x50, 0x05, 0xb6, 0x00, 0x07, 0x00, 0x20, 0x00, 0xa3, 0x40, 0x5d, - 0x00, 0xc4, 0x01, 0x13, 0x0a, 0x10, 0xc4, 0x11, 0xc0, 0x06, 0xd0, 0x06, - 0xe0, 0x06, 0x03, 0x6f, 0x06, 0x01, 0x30, 0x06, 0x40, 0x06, 0x50, 0x06, - 0x03, 0x1f, 0x06, 0x01, 0x04, 0x06, 0x01, 0x20, 0x11, 0xd0, 0x11, 0x02, - 0x01, 0x06, 0x11, 0x11, 0x06, 0x01, 0x03, 0x03, 0x1e, 0x19, 0x15, 0x18, - 0xc4, 0x9f, 0x17, 0xaf, 0x17, 0x02, 0x17, 0x22, 0x0f, 0x22, 0x2f, 0x22, - 0x3f, 0x22, 0x03, 0x22, 0x40, 0x15, 0x18, 0x48, 0x22, 0x40, 0x0f, 0x12, - 0x48, 0xcf, 0x03, 0xef, 0x03, 0x02, 0x03, 0x1f, 0x09, 0x09, 0x20, 0x0c, - 0x18, 0x48, 0x09, 0x07, 0x03, 0xc8, 0x04, 0x18, 0x14, 0xb8, 0xff, 0xe0, - 0x40, 0x0c, 0x0c, 0x18, 0x48, 0x14, 0x11, 0x08, 0x01, 0x01, 0x15, 0x12, - 0x04, 0x03, 0x00, 0x3f, 0x33, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x33, 0x2b, - 0x33, 0x10, 0xe1, 0x32, 0x33, 0x2b, 0x11, 0x33, 0x01, 0x2f, 0x5d, 0x2b, - 0x2b, 0x5d, 0x10, 0xd6, 0x5d, 0xe1, 0x32, 0x32, 0x32, 0x11, 0x17, 0x39, - 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, 0x32, - 0x32, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x23, 0x11, 0x23, 0x35, 0x21, 0x15, - 0x23, 0x01, 0x03, 0x23, 0x1e, 0x03, 0x15, 0x11, 0x23, 0x11, 0x33, 0x13, - 0x13, 0x33, 0x11, 0x23, 0x11, 0x34, 0x3e, 0x02, 0x37, 0x23, 0x03, 0x01, - 0x68, 0x7f, 0xc4, 0x02, 0x0a, 0xc7, 0x02, 0x40, 0xba, 0x07, 0x01, 0x02, - 0x01, 0x01, 0x7b, 0xba, 0xb4, 0xbf, 0xb2, 0x7f, 0x01, 0x01, 0x01, 0x01, - 0x06, 0xc3, 0x02, 0xe5, 0x02, 0x65, 0x6c, 0x6c, 0xfd, 0x9b, 0x02, 0x25, - 0x10, 0x22, 0x1e, 0x18, 0x06, 0xfe, 0x49, 0x02, 0xd1, 0xfd, 0xd9, 0x02, - 0x27, 0xfd, 0x2f, 0x01, 0xac, 0x09, 0x1e, 0x23, 0x23, 0x0c, 0xfd, 0xdb, - 0xff, 0xff, 0x00, 0x4e, 0x00, 0x00, 0x05, 0xa6, 0x05, 0xcd, 0x02, 0x06, - 0x01, 0x76, 0x00, 0x00, 0x00, 0x02, 0x00, 0x66, 0xff, 0xdd, 0x04, 0x8b, - 0x04, 0x48, 0x00, 0x22, 0x00, 0x2f, 0x00, 0x3b, 0x40, 0x21, 0x23, 0x4a, - 0x1e, 0x11, 0x31, 0x2f, 0x13, 0x4a, 0x10, 0x05, 0x01, 0x05, 0x1d, 0x1d, - 0x18, 0x12, 0x4e, 0x2b, 0x2f, 0x3b, 0x2f, 0x02, 0x2f, 0x2f, 0x18, 0x29, - 0x4e, 0x0c, 0x0f, 0x18, 0x4e, 0x00, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, - 0x12, 0x39, 0x2f, 0x5d, 0xe1, 0x11, 0x39, 0x2f, 0x01, 0x2f, 0x5d, 0xe1, - 0x32, 0x10, 0xde, 0x32, 0xe1, 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x35, - 0x34, 0x3e, 0x04, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x21, 0x11, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0x17, 0x0e, 0x03, 0x13, 0x11, 0x2e, 0x03, - 0x23, 0x22, 0x0e, 0x02, 0x07, 0x11, 0x02, 0x79, 0x82, 0xc6, 0x86, 0x45, - 0x2c, 0x4c, 0x66, 0x76, 0x80, 0x3f, 0x71, 0xc2, 0x8e, 0x51, 0xfc, 0xc5, - 0x16, 0x40, 0x4d, 0x58, 0x2e, 0x4a, 0x74, 0x5e, 0x4d, 0x22, 0x48, 0x24, - 0x53, 0x6e, 0x8f, 0xcc, 0x13, 0x3b, 0x4d, 0x5d, 0x35, 0x33, 0x57, 0x49, - 0x3c, 0x18, 0x23, 0x5e, 0x9d, 0xcc, 0x6e, 0x63, 0xa0, 0x7e, 0x5c, 0x3c, - 0x1d, 0x4f, 0x93, 0xd1, 0x83, 0xfe, 0x9c, 0x18, 0x2c, 0x22, 0x15, 0x20, - 0x3c, 0x57, 0x37, 0x29, 0x39, 0x65, 0x4d, 0x2c, 0x02, 0x8b, 0x01, 0x15, - 0x14, 0x2a, 0x23, 0x16, 0x13, 0x21, 0x2a, 0x17, 0xfe, 0xe9, 0xff, 0xff, - 0x00, 0x53, 0xff, 0xec, 0x05, 0xd3, 0x05, 0xb6, 0x00, 0x26, 0x00, 0x7b, - 0x14, 0x00, 0x00, 0x27, 0x02, 0x17, 0x02, 0x5e, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x40, 0x03, 0x62, 0xfd, 0xb3, 0x00, 0x30, 0x40, 0x1f, 0x04, 0x03, - 0x02, 0x27, 0x19, 0x01, 0xf4, 0x11, 0x01, 0xe4, 0x11, 0x01, 0xd0, 0x11, - 0x01, 0xb0, 0x11, 0x01, 0xa0, 0x11, 0x01, 0x30, 0x11, 0x01, 0x11, 0x2f, - 0x59, 0x01, 0x0f, 0x59, 0x01, 0x5d, 0x5d, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x35, 0x00, 0x3f, 0x35, 0x35, 0x35, 0xff, 0xff, 0x00, 0x33, - 0xff, 0xec, 0x05, 0xd3, 0x05, 0xc9, 0x00, 0x26, 0x00, 0x75, 0x14, 0x00, - 0x00, 0x27, 0x02, 0x17, 0x02, 0x8b, 0x00, 0x00, 0x01, 0x07, 0x02, 0x40, - 0x03, 0x62, 0xfd, 0xb3, 0x00, 0x3c, 0x40, 0x28, 0x04, 0x03, 0x02, 0x49, - 0x19, 0x01, 0xf0, 0x33, 0x01, 0xd0, 0x33, 0x01, 0xc4, 0x33, 0x01, 0xb4, - 0x33, 0x01, 0xa0, 0x33, 0x01, 0x94, 0x33, 0x01, 0x60, 0x33, 0x01, 0x30, - 0x33, 0x01, 0x24, 0x33, 0x01, 0x33, 0x2f, 0x7b, 0x01, 0x0f, 0x7b, 0x01, - 0x5d, 0x5d, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x35, 0x00, 0x3f, 0x35, 0x35, 0x35, 0xff, 0xff, 0x00, 0x4f, 0xff, 0xec, - 0x05, 0xd3, 0x05, 0xb6, 0x00, 0x26, 0x02, 0x3d, 0x14, 0x00, 0x00, 0x27, - 0x02, 0x17, 0x02, 0x8b, 0x00, 0x00, 0x01, 0x07, 0x02, 0x40, 0x03, 0x62, - 0xfd, 0xb3, 0x00, 0x3c, 0x40, 0x28, 0x04, 0x03, 0x02, 0x3d, 0x19, 0x01, - 0xf0, 0x27, 0x01, 0xd0, 0x27, 0x01, 0xc4, 0x27, 0x01, 0xb4, 0x27, 0x01, - 0xa0, 0x27, 0x01, 0x94, 0x27, 0x01, 0x60, 0x27, 0x01, 0x30, 0x27, 0x01, - 0x24, 0x27, 0x01, 0x27, 0x2f, 0x6f, 0x01, 0x0f, 0x6f, 0x01, 0x5d, 0x5d, - 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x00, - 0x3f, 0x35, 0x35, 0x35, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x05, 0xd3, - 0x05, 0xb6, 0x00, 0x26, 0x02, 0x3f, 0x42, 0x00, 0x00, 0x27, 0x02, 0x17, - 0x02, 0x39, 0x00, 0x00, 0x01, 0x07, 0x02, 0x40, 0x03, 0x62, 0xfd, 0xb3, - 0x00, 0x34, 0x40, 0x22, 0x04, 0x03, 0x02, 0x1f, 0x19, 0x01, 0xf4, 0x09, - 0x01, 0xeb, 0x09, 0x01, 0xcb, 0x09, 0x01, 0xb4, 0x09, 0x01, 0x9b, 0x09, - 0x01, 0x7f, 0x09, 0x01, 0x2b, 0x09, 0x01, 0x09, 0x2f, 0x51, 0x01, 0x0f, - 0x51, 0x01, 0x5d, 0x5d, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x35, 0x00, 0x3f, 0x35, 0x35, 0x35, 0x00, 0x02, 0x00, 0x62, 0xff, 0xec, - 0x04, 0x3b, 0x05, 0xc5, 0x00, 0x2b, 0x00, 0x43, 0x00, 0x3b, 0x40, 0x21, - 0x33, 0x19, 0x47, 0x00, 0x57, 0x45, 0x40, 0x45, 0x01, 0x0f, 0x45, 0x01, - 0x06, 0x3f, 0x48, 0x21, 0x0c, 0x56, 0x44, 0x38, 0x4f, 0x13, 0x13, 0x2c, - 0x21, 0x1c, 0x50, 0x27, 0x04, 0x2c, 0x50, 0x07, 0x16, 0x00, 0x3f, 0xe1, - 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x2f, 0xe1, 0x01, 0x10, 0xf6, 0x32, 0xe1, - 0x5e, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, - 0x04, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x04, 0x33, 0x32, 0x16, - 0x17, 0x36, 0x34, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x35, - 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x32, 0x3e, 0x04, 0x37, 0x2e, - 0x03, 0x23, 0x22, 0x0e, 0x04, 0x15, 0x14, 0x1e, 0x02, 0x04, 0x3b, 0x20, - 0x41, 0x65, 0x8a, 0xb1, 0x6d, 0x6a, 0x8c, 0x53, 0x22, 0x17, 0x32, 0x51, - 0x73, 0x99, 0x62, 0x5b, 0x93, 0x2d, 0x02, 0x8b, 0x89, 0x1f, 0x44, 0x43, - 0x41, 0x1b, 0x18, 0x43, 0x4b, 0x4f, 0x25, 0x7d, 0xa6, 0x63, 0x2a, 0xfd, - 0x9e, 0x35, 0x5e, 0x51, 0x43, 0x35, 0x25, 0x0a, 0x0a, 0x29, 0x3b, 0x49, - 0x2a, 0x3e, 0x66, 0x4f, 0x3a, 0x25, 0x12, 0x15, 0x2d, 0x46, 0x03, 0xa6, - 0x6a, 0xe1, 0xd4, 0xbc, 0x8d, 0x52, 0x42, 0x6e, 0x8f, 0x4c, 0x3c, 0x8d, - 0x8d, 0x83, 0x65, 0x3d, 0x4f, 0x45, 0x13, 0x2a, 0x0b, 0xbe, 0xc9, 0x0c, - 0x16, 0x1f, 0x13, 0xae, 0x0c, 0x17, 0x11, 0x0a, 0x59, 0x96, 0xc4, 0xfc, - 0x73, 0x2c, 0x4d, 0x68, 0x7a, 0x85, 0x43, 0x28, 0x45, 0x33, 0x1e, 0x30, - 0x51, 0x68, 0x6f, 0x6e, 0x2f, 0x32, 0x56, 0x40, 0x24, 0x00, 0x00, 0x02, - 0x00, 0x29, 0x00, 0x00, 0x04, 0x62, 0x05, 0xb6, 0x00, 0x05, 0x00, 0x0e, - 0x00, 0x58, 0x40, 0x11, 0x02, 0x01, 0x09, 0x09, 0x05, 0x0e, 0x5b, 0x60, - 0x04, 0x70, 0x04, 0xb0, 0x04, 0xf0, 0x04, 0x04, 0x04, 0xb8, 0xff, 0xc0, - 0x40, 0x27, 0x06, 0x0a, 0x48, 0x04, 0x04, 0x10, 0x2f, 0x10, 0x5f, 0x10, - 0x6f, 0x10, 0x7f, 0x10, 0x9f, 0x10, 0xbf, 0x10, 0x06, 0x10, 0x40, 0x06, - 0x09, 0x48, 0x0d, 0x5b, 0x05, 0x0d, 0x5f, 0x05, 0x12, 0x09, 0x20, 0x0a, - 0x11, 0x48, 0x09, 0x01, 0x03, 0x00, 0x3f, 0x33, 0x2b, 0x3f, 0xe1, 0x01, - 0x2f, 0xe1, 0x2b, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0xe1, 0x12, 0x39, - 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, 0x37, 0x01, 0x33, 0x01, 0x15, 0x21, - 0x01, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x03, 0x21, 0x29, 0x01, 0xbe, - 0xbb, 0x01, 0xc0, 0xfb, 0xc7, 0x02, 0x77, 0x20, 0x2d, 0x0f, 0x11, 0x2a, - 0x1d, 0xfa, 0x02, 0xa6, 0x71, 0x05, 0x45, 0xfa, 0xb9, 0x6f, 0x03, 0x9a, - 0x61, 0xa8, 0x4b, 0x4b, 0xa8, 0x5b, 0xfd, 0x04, 0x00, 0x01, 0x00, 0xc7, - 0xfe, 0x14, 0x05, 0x27, 0x05, 0xb6, 0x00, 0x07, 0x00, 0x37, 0x40, 0x11, - 0x00, 0x5a, 0x07, 0x65, 0x09, 0x00, 0x09, 0x30, 0x09, 0x40, 0x09, 0x70, - 0x09, 0x80, 0x09, 0x05, 0x09, 0xb8, 0xff, 0xc0, 0x40, 0x0f, 0x14, 0x18, - 0x48, 0x03, 0x5a, 0x04, 0x64, 0x08, 0x02, 0x5f, 0x05, 0x03, 0x04, 0x00, - 0x1b, 0x00, 0x3f, 0x32, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x2b, 0x5d, - 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, - 0x11, 0x04, 0x6d, 0xfd, 0x14, 0xba, 0x04, 0x60, 0xfe, 0x14, 0x06, 0xfc, - 0xf9, 0x04, 0x07, 0xa2, 0xf8, 0x5e, 0x00, 0x01, 0x00, 0x4a, 0xfe, 0x14, - 0x04, 0xe3, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x5c, 0x40, 0x0b, 0x08, 0x5b, - 0x70, 0x06, 0x01, 0x02, 0x06, 0x02, 0x06, 0x00, 0x0a, 0xb8, 0xff, 0xc0, - 0xb7, 0x09, 0x0e, 0x48, 0x0a, 0x0a, 0x0d, 0x07, 0x09, 0xb8, 0xff, 0xe0, - 0x40, 0x09, 0x0f, 0x18, 0x48, 0x09, 0x03, 0x00, 0x00, 0x0c, 0x0d, 0xb8, - 0xff, 0xc0, 0x40, 0x0f, 0x13, 0x18, 0x48, 0x08, 0x02, 0x02, 0x09, 0x07, - 0x5f, 0x04, 0x03, 0x09, 0x5f, 0x00, 0x1b, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, - 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x01, 0x2b, 0x11, 0x33, 0x18, 0x2f, 0x33, - 0x33, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x2b, 0x12, 0x39, 0x39, 0x2f, 0x2f, - 0x5d, 0xe1, 0x31, 0x30, 0x13, 0x35, 0x01, 0x01, 0x35, 0x21, 0x15, 0x21, - 0x01, 0x01, 0x21, 0x15, 0x4a, 0x02, 0x70, 0xfd, 0xa0, 0x04, 0x48, 0xfc, - 0xbc, 0x02, 0x3a, 0xfd, 0xb0, 0x03, 0x9b, 0xfe, 0x14, 0x73, 0x03, 0x92, - 0x03, 0x2b, 0x72, 0xa4, 0xfd, 0x09, 0xfc, 0x9d, 0xa4, 0x00, 0x00, 0x01, - 0x00, 0x66, 0x02, 0x87, 0x04, 0x02, 0x03, 0x1d, 0x00, 0x03, 0x00, 0x32, - 0x40, 0x1f, 0x02, 0x05, 0x96, 0x00, 0x01, 0x8b, 0x00, 0x01, 0x79, 0x00, - 0x01, 0x56, 0x00, 0x01, 0x4b, 0x00, 0x01, 0x38, 0x00, 0x01, 0x14, 0x00, - 0x01, 0x09, 0x00, 0x01, 0x00, 0x00, 0xad, 0x01, 0xb3, 0x00, 0x3f, 0xe1, - 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xce, - 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x66, 0x03, 0x9c, 0x02, 0x87, 0x96, - 0x96, 0x00, 0x00, 0x01, 0x00, 0x25, 0xff, 0xf2, 0x04, 0xc5, 0x06, 0xa0, - 0x00, 0x08, 0x00, 0x2c, 0x40, 0x13, 0x01, 0x00, 0x06, 0x05, 0x02, 0x06, - 0x02, 0x06, 0x07, 0x08, 0x10, 0x08, 0x03, 0x03, 0xae, 0x04, 0x04, 0x07, - 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0xe1, 0x01, 0x2f, 0x2f, 0x38, 0x33, - 0x39, 0x39, 0x19, 0x2f, 0x18, 0x2f, 0x33, 0x11, 0x33, 0x33, 0x31, 0x30, - 0x05, 0x23, 0x01, 0x23, 0x35, 0x21, 0x13, 0x01, 0x33, 0x02, 0x73, 0x85, - 0xfe, 0xeb, 0xb4, 0x01, 0x29, 0xe5, 0x02, 0x00, 0x92, 0x0e, 0x03, 0x0a, - 0x8f, 0xfd, 0x69, 0x05, 0xac, 0x00, 0x00, 0x03, 0x00, 0x77, 0x01, 0x91, - 0x05, 0x31, 0x04, 0x0e, 0x00, 0x23, 0x00, 0x33, 0x00, 0x43, 0x00, 0x76, - 0x40, 0x4f, 0x49, 0x17, 0x01, 0x48, 0x0d, 0x01, 0xf0, 0x45, 0x01, 0x2f, - 0x45, 0x5f, 0x45, 0x02, 0x3a, 0x27, 0x4a, 0x27, 0x6a, 0x27, 0x03, 0x2a, - 0x37, 0x01, 0x37, 0x1a, 0x08, 0x27, 0x04, 0x3f, 0x77, 0x2f, 0x97, 0x2f, - 0x02, 0x2f, 0xaa, 0x20, 0x12, 0x30, 0x12, 0x02, 0x12, 0x78, 0x3f, 0x01, - 0x3f, 0xab, 0x00, 0x34, 0x2a, 0xae, 0x17, 0x3a, 0x24, 0xae, 0x08, 0x37, - 0x27, 0x1a, 0x04, 0x17, 0x05, 0x00, 0x0d, 0x10, 0x0d, 0x02, 0x07, 0x0d, - 0x0d, 0x1f, 0x9f, 0x17, 0x01, 0x20, 0x17, 0x01, 0x17, 0x00, 0x2f, 0x5d, - 0x5d, 0x33, 0x33, 0x2f, 0x5e, 0x5d, 0x33, 0x12, 0x17, 0x39, 0xe1, 0x32, - 0x10, 0xe1, 0x32, 0x01, 0x2f, 0xe1, 0x5d, 0x2f, 0x5d, 0xe1, 0x5d, 0x12, - 0x17, 0x39, 0x5d, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x5d, 0x5d, 0x01, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, - 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x3e, 0x03, 0x33, 0x32, - 0x1e, 0x02, 0x05, 0x32, 0x36, 0x37, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, - 0x15, 0x14, 0x1e, 0x02, 0x01, 0x22, 0x06, 0x07, 0x16, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x05, 0x31, 0x2b, 0x4d, 0x6d, 0x42, - 0x5d, 0x9b, 0x41, 0x1d, 0x46, 0x4e, 0x53, 0x2b, 0x41, 0x6e, 0x4f, 0x2d, - 0x2b, 0x4e, 0x6f, 0x43, 0x55, 0x9e, 0x3e, 0x1d, 0x44, 0x4f, 0x57, 0x30, - 0x42, 0x6d, 0x4d, 0x2b, 0xfc, 0x7b, 0x3f, 0x6c, 0x34, 0x31, 0x6b, 0x45, - 0x28, 0x40, 0x2c, 0x18, 0x15, 0x2c, 0x41, 0x02, 0x7c, 0x3f, 0x6b, 0x37, - 0x33, 0x6c, 0x44, 0x27, 0x40, 0x2d, 0x18, 0x19, 0x2e, 0x40, 0x02, 0xcd, - 0x3f, 0x72, 0x57, 0x34, 0x69, 0x73, 0x30, 0x4f, 0x38, 0x1e, 0x2c, 0x52, - 0x75, 0x48, 0x41, 0x73, 0x56, 0x31, 0x6b, 0x70, 0x30, 0x4e, 0x38, 0x1f, - 0x2d, 0x52, 0x75, 0xf9, 0x57, 0x61, 0x5e, 0x5a, 0x1d, 0x33, 0x44, 0x26, - 0x24, 0x42, 0x32, 0x1e, 0x01, 0x6a, 0x57, 0x61, 0x5d, 0x5c, 0x1d, 0x33, - 0x44, 0x27, 0x26, 0x43, 0x31, 0x1c, 0x00, 0x01, 0x00, 0x10, 0xfe, 0x14, - 0x03, 0x06, 0x06, 0x14, 0x00, 0x23, 0x00, 0x37, 0x40, 0x23, 0x10, 0x25, - 0xd0, 0x25, 0x02, 0x14, 0x04, 0x01, 0x06, 0x04, 0x01, 0x04, 0x0d, 0xac, - 0x1b, 0x15, 0x01, 0x09, 0x15, 0x01, 0x15, 0x10, 0x1e, 0x20, 0x1e, 0x02, - 0x1e, 0x19, 0xae, 0x12, 0x1c, 0x07, 0xae, 0x00, 0x00, 0x00, 0x3f, 0xe1, - 0x3f, 0xe1, 0x01, 0x2f, 0x5d, 0x33, 0x5d, 0x5d, 0xe1, 0x32, 0x5d, 0x5d, - 0x5d, 0x31, 0x30, 0x01, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, - 0x0e, 0x02, 0x15, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, - 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x34, 0x3e, 0x02, 0x02, - 0x83, 0x22, 0x4b, 0x16, 0x12, 0x3d, 0x24, 0x33, 0x42, 0x27, 0x10, 0x32, - 0x59, 0x7c, 0x4a, 0x24, 0x4b, 0x17, 0x14, 0x3e, 0x23, 0x33, 0x45, 0x2a, - 0x12, 0x2f, 0x57, 0x79, 0x06, 0x14, 0x09, 0x09, 0x93, 0x09, 0x11, 0x27, - 0x41, 0x54, 0x2d, 0xfa, 0xd7, 0x5e, 0x86, 0x56, 0x29, 0x0b, 0x08, 0x93, - 0x08, 0x10, 0x25, 0x40, 0x54, 0x30, 0x05, 0x27, 0x5e, 0x86, 0x56, 0x28, - 0x00, 0x02, 0x00, 0x66, 0x01, 0x7b, 0x04, 0x02, 0x04, 0x25, 0x00, 0x23, - 0x00, 0x47, 0x00, 0x4b, 0x40, 0x2e, 0x41, 0x1d, 0x49, 0x10, 0x49, 0x01, - 0x2e, 0x10, 0x0a, 0x20, 0x0a, 0x02, 0x0a, 0x40, 0x29, 0xad, 0x31, 0xaf, - 0x43, 0x17, 0xad, 0x0a, 0x1f, 0xaf, 0x1c, 0x05, 0xad, 0xdf, 0x0d, 0xef, - 0x0d, 0xff, 0x0d, 0x03, 0x0d, 0x40, 0x0f, 0x12, 0x48, 0x0d, 0x0d, 0x3b, - 0xad, 0x2e, 0x43, 0xb3, 0x00, 0x3f, 0x33, 0xe1, 0x33, 0x2f, 0x2b, 0x5d, - 0xe1, 0x33, 0xf5, 0x32, 0xe1, 0x10, 0xf5, 0xe1, 0x33, 0x01, 0x2f, 0x5d, - 0x33, 0x5d, 0x10, 0xce, 0x32, 0x31, 0x30, 0x01, 0x2e, 0x03, 0x23, 0x22, - 0x0e, 0x02, 0x07, 0x35, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x03, - 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x35, 0x36, 0x33, 0x32, 0x1e, - 0x02, 0x17, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x06, 0x23, - 0x22, 0x2e, 0x02, 0x02, 0x12, 0x25, 0x37, 0x2d, 0x29, 0x16, 0x1c, 0x3c, - 0x3b, 0x38, 0x19, 0x64, 0x94, 0x1d, 0x32, 0x37, 0x43, 0x2f, 0x25, 0x37, - 0x2f, 0x28, 0x16, 0x1c, 0x3c, 0x3b, 0x38, 0x18, 0x63, 0x95, 0x1d, 0x32, - 0x37, 0x43, 0x2f, 0x25, 0x37, 0x2d, 0x29, 0x16, 0x1c, 0x3c, 0x3b, 0x38, - 0x19, 0x64, 0x94, 0x1d, 0x32, 0x37, 0x43, 0x2f, 0x25, 0x37, 0x2f, 0x28, - 0x16, 0x1c, 0x3c, 0x3b, 0x38, 0x18, 0x61, 0x97, 0x1d, 0x32, 0x37, 0x43, - 0x01, 0xbc, 0x10, 0x16, 0x0d, 0x05, 0x13, 0x21, 0x2c, 0x19, 0xa2, 0x6c, - 0x05, 0x0d, 0x19, 0x14, 0x10, 0x16, 0x0d, 0x05, 0x13, 0x21, 0x2c, 0x19, - 0xa2, 0x6c, 0x05, 0x0d, 0x19, 0x01, 0xae, 0x10, 0x15, 0x0d, 0x05, 0x13, - 0x20, 0x2c, 0x1a, 0xa2, 0x6d, 0x05, 0x0e, 0x19, 0x14, 0x10, 0x15, 0x0d, - 0x05, 0x13, 0x20, 0x2d, 0x19, 0xa2, 0x6c, 0x05, 0x0d, 0x19, 0x00, 0x01, - 0x00, 0x66, 0x00, 0xa4, 0x04, 0x02, 0x05, 0x04, 0x00, 0x13, 0x00, 0xa6, - 0x40, 0x11, 0x0a, 0x0d, 0x0e, 0x11, 0x12, 0x09, 0x12, 0x12, 0x00, 0x03, - 0x04, 0x07, 0x08, 0x13, 0x08, 0x09, 0x13, 0xb8, 0xff, 0xf0, 0x40, 0x4f, - 0x09, 0x10, 0x13, 0x09, 0x13, 0x09, 0x06, 0x10, 0x0b, 0x15, 0x40, 0x15, - 0x01, 0x01, 0xc6, 0x06, 0x01, 0xbb, 0x06, 0x01, 0xa9, 0x06, 0x01, 0x86, - 0x06, 0x01, 0x7b, 0x06, 0x01, 0x68, 0x06, 0x01, 0x42, 0x06, 0x01, 0x39, - 0x06, 0x01, 0x06, 0x09, 0x08, 0x08, 0x0d, 0x04, 0xad, 0x07, 0x13, 0x12, - 0x12, 0x11, 0x00, 0xad, 0x0e, 0x1f, 0x03, 0x2f, 0x03, 0x02, 0x7f, 0x03, - 0x01, 0x00, 0x03, 0x10, 0x03, 0x02, 0x06, 0x03, 0x03, 0x0a, 0xf0, 0x07, - 0x01, 0x0f, 0x07, 0x6f, 0x07, 0x02, 0x07, 0x00, 0x2f, 0x5d, 0x5d, 0x33, - 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x71, 0x33, 0xe1, 0x32, 0x32, 0x11, 0x33, - 0x10, 0xe1, 0x32, 0x33, 0x11, 0x33, 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x5d, 0x10, 0xce, 0x32, 0x11, 0x39, 0x39, - 0x2f, 0x2f, 0x38, 0x38, 0x11, 0x33, 0x7d, 0x87, 0xc4, 0xc4, 0xc4, 0xc4, - 0x01, 0x33, 0x10, 0x87, 0xc4, 0xc4, 0xc4, 0xc4, 0x31, 0x30, 0x01, 0x23, - 0x35, 0x21, 0x13, 0x21, 0x35, 0x21, 0x13, 0x17, 0x07, 0x33, 0x15, 0x21, - 0x03, 0x21, 0x15, 0x21, 0x03, 0x27, 0x01, 0x5e, 0xf8, 0x01, 0x3e, 0x79, - 0xfe, 0x49, 0x01, 0xfc, 0x85, 0x8a, 0x69, 0xfa, 0xfe, 0xc1, 0x7b, 0x01, - 0xba, 0xfe, 0x00, 0x81, 0x89, 0x01, 0xba, 0x96, 0x01, 0x04, 0x95, 0x01, - 0x1b, 0x3b, 0xe0, 0x95, 0xfe, 0xfc, 0x96, 0xfe, 0xea, 0x39, 0x00, 0x02, - 0x00, 0x66, 0x00, 0x00, 0x04, 0x02, 0x04, 0xdd, 0x00, 0x06, 0x00, 0x0a, - 0x00, 0x52, 0x40, 0x32, 0x09, 0x00, 0x0c, 0x40, 0x0c, 0x01, 0x08, 0x40, - 0x01, 0x01, 0x01, 0x02, 0x01, 0x05, 0x05, 0x03, 0x06, 0x6f, 0x00, 0x7f, - 0x00, 0x02, 0x30, 0x00, 0x01, 0x00, 0x00, 0x04, 0x20, 0x03, 0x01, 0x50, - 0x03, 0x70, 0x03, 0x80, 0x03, 0xd0, 0x03, 0xf0, 0x03, 0x05, 0x3f, 0x03, - 0x01, 0x00, 0x03, 0x01, 0x06, 0x03, 0x00, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x71, 0x33, 0x33, 0x2f, 0x5d, 0x5d, 0x32, 0x12, 0x39, 0x3d, 0x2f, 0x33, - 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x33, 0x5d, 0x10, 0xce, 0x32, 0x31, 0x30, - 0x25, 0x01, 0x35, 0x01, 0x15, 0x09, 0x02, 0x35, 0x21, 0x15, 0x04, 0x02, - 0xfc, 0x64, 0x03, 0x9c, 0xfd, 0x21, 0x02, 0xdf, 0xfc, 0x64, 0x03, 0x9c, - 0xee, 0x01, 0xa8, 0x66, 0x01, 0xe1, 0xa0, 0xfe, 0x94, 0xfe, 0xbe, 0xfe, - 0x71, 0x96, 0x96, 0x00, 0x00, 0x02, 0x00, 0x66, 0x00, 0x00, 0x04, 0x02, - 0x04, 0xdd, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x52, 0x40, 0x32, 0x09, 0x05, - 0x0c, 0x40, 0x0c, 0x01, 0x08, 0x40, 0x06, 0x01, 0x06, 0x05, 0x04, 0x01, - 0x01, 0x03, 0x00, 0x6f, 0x06, 0x7f, 0x06, 0x02, 0x30, 0x06, 0x01, 0x06, - 0x06, 0x02, 0x20, 0x03, 0x01, 0x50, 0x03, 0x70, 0x03, 0x80, 0x03, 0xd0, - 0x03, 0xf0, 0x03, 0x05, 0x3f, 0x03, 0x01, 0x00, 0x03, 0x01, 0x06, 0x03, - 0x00, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x71, 0x33, 0x33, 0x2f, 0x5d, 0x5d, - 0x33, 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x01, 0x18, 0x2f, 0x5d, 0x33, - 0x5d, 0x10, 0xce, 0x32, 0x31, 0x30, 0x13, 0x01, 0x01, 0x35, 0x01, 0x15, - 0x01, 0x15, 0x35, 0x21, 0x15, 0x66, 0x02, 0xe2, 0xfd, 0x1e, 0x03, 0x9c, - 0xfc, 0x64, 0x03, 0x9c, 0x01, 0x8f, 0x01, 0x42, 0x01, 0x6a, 0xa2, 0xfe, - 0x1f, 0x66, 0xfe, 0x58, 0xee, 0x96, 0x96, 0x00, 0x00, 0x02, 0x00, 0x6d, - 0x00, 0x00, 0x04, 0x3f, 0x05, 0xc3, 0x00, 0x05, 0x00, 0x09, 0x00, 0x5d, - 0x40, 0x36, 0x02, 0x01, 0x09, 0x05, 0x04, 0x07, 0x09, 0x07, 0x03, 0x06, - 0xac, 0x00, 0x0b, 0xff, 0x0b, 0x01, 0x40, 0x0b, 0x50, 0x0b, 0x80, 0x0b, - 0xb0, 0x0b, 0xc0, 0x0b, 0x05, 0x0f, 0x0b, 0x2f, 0x0b, 0x02, 0x08, 0xaa, - 0x10, 0x03, 0x01, 0x03, 0x03, 0x08, 0x00, 0x06, 0x08, 0x06, 0x08, 0x06, - 0x02, 0x07, 0xad, 0x04, 0x07, 0x09, 0xad, 0x02, 0x00, 0x2f, 0xe1, 0x3f, - 0xe1, 0x12, 0x39, 0x39, 0x3d, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x01, - 0x18, 0x2f, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xde, 0xe1, 0x12, 0x39, - 0x39, 0x11, 0x33, 0x33, 0x11, 0x33, 0x33, 0x31, 0x30, 0x01, 0x01, 0x23, - 0x01, 0x01, 0x33, 0x09, 0x03, 0x04, 0x3f, 0xfe, 0x3c, 0x4c, 0xfe, 0x3e, - 0x01, 0xc2, 0x4c, 0x01, 0x0c, 0xfe, 0xcf, 0xfe, 0xcf, 0x01, 0x31, 0x02, - 0xe1, 0xfd, 0x1f, 0x02, 0xdf, 0x02, 0xe4, 0xfd, 0x1e, 0x02, 0x00, 0xfe, - 0x00, 0xfd, 0xfe, 0x00, 0xff, 0xff, 0x00, 0x1d, 0x00, 0x00, 0x04, 0x17, - 0x06, 0x1f, 0x00, 0x26, 0x00, 0x49, 0x00, 0x00, 0x01, 0x07, 0x00, 0x4c, - 0x02, 0xa2, 0x00, 0x00, 0x00, 0x24, 0x40, 0x18, 0x02, 0x01, 0xaf, 0x1d, - 0x01, 0x50, 0x1d, 0x01, 0x1f, 0x1d, 0x01, 0x0f, 0x1d, 0x01, 0x1d, 0xaf, - 0x2f, 0x01, 0x40, 0x2f, 0x01, 0x0f, 0x2f, 0x01, 0x5d, 0x5d, 0x5d, 0x11, - 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x35, 0xff, 0xff, 0x00, 0x1d, 0x00, 0x00, - 0x04, 0x06, 0x06, 0x1f, 0x00, 0x26, 0x00, 0x49, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x4f, 0x02, 0xa2, 0x00, 0x00, 0x00, 0x22, 0x40, 0x17, 0x01, 0xaf, - 0x1d, 0x01, 0x50, 0x1d, 0x01, 0x1f, 0x1d, 0x01, 0x0f, 0x1d, 0x01, 0x1d, - 0xaf, 0x21, 0x01, 0x40, 0x21, 0x01, 0x0f, 0x21, 0x01, 0x5d, 0x5d, 0x5d, - 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x00, 0x01, 0x00, 0xcf, 0x04, 0xd9, - 0x03, 0xcd, 0x06, 0x17, 0x00, 0x15, 0x00, 0x3f, 0x40, 0x29, 0x00, 0x17, - 0x20, 0x17, 0x02, 0xaf, 0x17, 0xcf, 0x17, 0x02, 0x30, 0x17, 0x70, 0x17, - 0x02, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x30, 0x0a, 0x02, 0x06, - 0x0a, 0x0a, 0x7f, 0x00, 0x01, 0x00, 0x40, 0x06, 0x09, 0x48, 0x00, 0x00, - 0x10, 0x8e, 0x05, 0x00, 0x2f, 0xe1, 0x33, 0x2f, 0x2b, 0x5d, 0x33, 0x01, - 0x2f, 0x5e, 0x5d, 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0x31, 0x30, 0x01, - 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, 0x33, 0x32, - 0x3e, 0x02, 0x37, 0x03, 0xcd, 0x06, 0x31, 0x5d, 0x8d, 0x64, 0x67, 0x8c, - 0x58, 0x29, 0x05, 0xaa, 0x05, 0x1b, 0x32, 0x4c, 0x35, 0x2c, 0x49, 0x36, - 0x22, 0x06, 0x06, 0x17, 0x4e, 0x76, 0x51, 0x29, 0x27, 0x50, 0x77, 0x50, - 0x39, 0x49, 0x29, 0x10, 0x13, 0x2b, 0x48, 0x35, 0x00, 0x01, 0xff, 0xbc, - 0xfe, 0x14, 0x01, 0x64, 0x04, 0x4a, 0x00, 0x13, 0x00, 0x23, 0x40, 0x13, - 0x10, 0x15, 0x20, 0x15, 0x02, 0x0f, 0x47, 0x0c, 0x03, 0x03, 0x0c, 0x54, - 0x14, 0x0d, 0x0f, 0x07, 0x50, 0x00, 0x1b, 0x00, 0x3f, 0xe1, 0x3f, 0x01, - 0x10, 0xe6, 0x32, 0x2f, 0x10, 0xe1, 0x5d, 0x31, 0x30, 0x13, 0x22, 0x26, - 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, - 0x14, 0x0e, 0x02, 0x42, 0x30, 0x3f, 0x17, 0x1a, 0x36, 0x23, 0x1b, 0x2e, - 0x23, 0x13, 0xb6, 0x22, 0x48, 0x6d, 0xfe, 0x14, 0x0e, 0x0b, 0x94, 0x0a, - 0x0b, 0x0f, 0x27, 0x41, 0x33, 0x04, 0xf4, 0xfb, 0x18, 0x4d, 0x7b, 0x57, - 0x2f, 0x00, 0x00, 0x01, 0x01, 0x87, 0x04, 0xcd, 0x02, 0x79, 0x06, 0x14, - 0x00, 0x0d, 0x00, 0x19, 0x40, 0x0c, 0x05, 0x85, 0x3f, 0x06, 0x01, 0x06, - 0x0c, 0x00, 0x0c, 0x92, 0x05, 0x00, 0x00, 0x3f, 0xe5, 0x01, 0x2f, 0x33, - 0xdd, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x0e, - 0x03, 0x07, 0x23, 0x01, 0x87, 0x09, 0x12, 0x11, 0x0e, 0x04, 0xb4, 0x06, - 0x1f, 0x29, 0x2e, 0x16, 0x60, 0x04, 0xe7, 0x1e, 0x4d, 0x51, 0x50, 0x21, - 0x14, 0x19, 0x4e, 0x56, 0x56, 0x20, 0x00, 0x01, 0x01, 0x6f, 0xfe, 0x3b, - 0x02, 0x75, 0xff, 0x83, 0x00, 0x0d, 0x00, 0x16, 0x40, 0x09, 0x0c, 0x00, - 0x00, 0x05, 0x85, 0x06, 0x0c, 0x92, 0x05, 0x00, 0x2f, 0xe5, 0x01, 0x2f, - 0xe1, 0x32, 0x2f, 0x33, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, - 0x0e, 0x03, 0x07, 0x23, 0x01, 0x6f, 0x0b, 0x1a, 0x18, 0x13, 0x04, 0xb2, - 0x06, 0x1f, 0x2c, 0x36, 0x1d, 0x62, 0xfe, 0x56, 0x19, 0x4c, 0x54, 0x53, - 0x21, 0x14, 0x19, 0x4d, 0x57, 0x56, 0x21, 0x00, 0x00, 0x01, 0x01, 0x7d, - 0x04, 0xd9, 0x02, 0x83, 0x06, 0x21, 0x00, 0x0d, 0x00, 0x17, 0x40, 0x0a, - 0x0c, 0x00, 0x00, 0x05, 0x85, 0x06, 0x05, 0x92, 0x0c, 0x00, 0x00, 0x3f, - 0xe5, 0x01, 0x2f, 0xe1, 0x32, 0x2f, 0x33, 0x31, 0x30, 0x01, 0x0e, 0x03, - 0x07, 0x23, 0x35, 0x3e, 0x03, 0x37, 0x33, 0x02, 0x83, 0x0c, 0x1a, 0x18, - 0x12, 0x04, 0xb2, 0x05, 0x1f, 0x2d, 0x37, 0x1c, 0x62, 0x06, 0x06, 0x19, - 0x4c, 0x54, 0x53, 0x21, 0x15, 0x18, 0x4e, 0x56, 0x56, 0x21, 0x00, 0x02, - 0x00, 0x25, 0x02, 0x39, 0x02, 0x7f, 0x05, 0xc7, 0x00, 0x0b, 0x00, 0x1d, - 0x00, 0x2a, 0x40, 0x19, 0x06, 0xe1, 0x0c, 0x1f, 0x4f, 0x1f, 0x7f, 0x1f, - 0x02, 0x1f, 0x40, 0x06, 0x0a, 0x48, 0x00, 0xe1, 0x16, 0x09, 0xe5, 0x1b, - 0xde, 0x03, 0xe5, 0x11, 0xdf, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x01, 0x2f, - 0xe1, 0x2b, 0x5d, 0x10, 0xde, 0xe1, 0x31, 0x30, 0x13, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0xb8, - 0x47, 0x51, 0x4e, 0x4e, 0x4e, 0x4e, 0x51, 0x47, 0x01, 0xc7, 0x23, 0x4a, - 0x73, 0x4f, 0x4a, 0x70, 0x4b, 0x26, 0x23, 0x49, 0x71, 0x4e, 0x95, 0x9a, - 0x04, 0x02, 0xa5, 0xa1, 0x9f, 0xa7, 0xa5, 0x9f, 0x9f, 0xa5, 0x6c, 0xaa, - 0x75, 0x3e, 0x3e, 0x75, 0xaa, 0x6c, 0x6c, 0xa9, 0x74, 0x3c, 0xec, 0x00, - 0x00, 0x02, 0x00, 0x0c, 0x02, 0x4a, 0x02, 0x8f, 0x05, 0xbc, 0x00, 0x0a, - 0x00, 0x15, 0x00, 0x46, 0x40, 0x2a, 0x09, 0x02, 0xe1, 0x0b, 0x07, 0x03, - 0x03, 0x17, 0x5f, 0x17, 0x8f, 0x17, 0x02, 0x17, 0x40, 0x06, 0x0a, 0x48, - 0x15, 0xe1, 0x05, 0x01, 0x04, 0xe5, 0x09, 0x0f, 0x0b, 0x1f, 0x0b, 0x2f, - 0x0b, 0x03, 0x08, 0x0b, 0x0b, 0x02, 0x0f, 0xe5, 0x07, 0xdc, 0x02, 0xdd, - 0x00, 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0xe1, 0x32, - 0x01, 0x2f, 0xe1, 0x2b, 0x5d, 0x12, 0x39, 0x2f, 0x33, 0x33, 0xe1, 0x32, - 0x31, 0x30, 0x01, 0x23, 0x15, 0x23, 0x35, 0x21, 0x35, 0x01, 0x33, 0x11, - 0x33, 0x21, 0x35, 0x34, 0x36, 0x37, 0x0e, 0x03, 0x07, 0x07, 0x02, 0x8f, - 0x7d, 0x8f, 0xfe, 0x89, 0x01, 0x79, 0x8d, 0x7d, 0xfe, 0xf4, 0x03, 0x03, - 0x05, 0x14, 0x16, 0x18, 0x09, 0x9b, 0x03, 0x0a, 0xc0, 0xc0, 0x6f, 0x02, - 0x43, 0xfd, 0xcd, 0xc3, 0x2a, 0x63, 0x31, 0x0b, 0x25, 0x2a, 0x28, 0x0f, - 0xf0, 0x00, 0x00, 0x01, 0x00, 0x3b, 0x02, 0x37, 0x02, 0x66, 0x05, 0xb6, - 0x00, 0x24, 0x00, 0x4a, 0x40, 0x17, 0x21, 0x22, 0x22, 0x1e, 0x1d, 0x1d, - 0x0b, 0x20, 0x14, 0xe1, 0x05, 0x26, 0x4f, 0x26, 0x7f, 0x26, 0x02, 0x26, - 0x40, 0x06, 0x0a, 0x48, 0x0b, 0xb8, 0xff, 0xc0, 0x40, 0x11, 0x12, 0x18, - 0x48, 0x0b, 0x17, 0xe5, 0x00, 0x00, 0x11, 0x21, 0xe5, 0x1e, 0xdc, 0x11, - 0xe5, 0x08, 0xdf, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0xe1, - 0x01, 0x2f, 0x2b, 0x2b, 0x5d, 0x10, 0xde, 0xe1, 0x33, 0x12, 0x39, 0x2f, - 0x33, 0x33, 0x11, 0x33, 0x31, 0x30, 0x01, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x35, - 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, - 0x07, 0x36, 0x36, 0x01, 0x42, 0x3d, 0x6b, 0x4f, 0x2d, 0xa6, 0xa1, 0x3f, - 0x79, 0x2c, 0x1a, 0x3c, 0x3d, 0x3b, 0x18, 0x55, 0x5f, 0x5f, 0x59, 0x0d, - 0x25, 0x27, 0x25, 0x0e, 0x43, 0x21, 0x01, 0xba, 0xfe, 0xbe, 0x12, 0x14, - 0x39, 0x04, 0x6d, 0x23, 0x44, 0x65, 0x41, 0x8c, 0x9d, 0x1c, 0x1a, 0x8d, - 0x12, 0x1b, 0x13, 0x0a, 0x4c, 0x58, 0x4d, 0x55, 0x04, 0x06, 0x07, 0x02, - 0x2b, 0x01, 0xa8, 0x7b, 0xd7, 0x03, 0x06, 0x00, 0x00, 0x02, 0x00, 0x25, - 0x02, 0x39, 0x02, 0x7f, 0x05, 0xd5, 0x00, 0x1d, 0x00, 0x2d, 0x00, 0x38, - 0x40, 0x20, 0x10, 0x0a, 0x21, 0xe1, 0x00, 0x2f, 0x4f, 0x2f, 0x7f, 0x2f, - 0x02, 0x2f, 0x40, 0x06, 0x0a, 0x48, 0x15, 0x29, 0xe1, 0x0a, 0x24, 0xe4, - 0x15, 0x19, 0x19, 0x10, 0x0f, 0xde, 0x1e, 0xe5, 0x05, 0xdf, 0x00, 0x3f, - 0xe1, 0x3f, 0x33, 0x39, 0x2f, 0x33, 0xe1, 0x01, 0x2f, 0xe1, 0x32, 0x2b, - 0x5d, 0x10, 0xde, 0xe1, 0x12, 0x39, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x17, 0x0e, 0x03, - 0x07, 0x33, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x05, 0x32, 0x36, 0x35, - 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x02, 0x7f, - 0x2a, 0x4e, 0x6f, 0x44, 0x40, 0x6e, 0x52, 0x2f, 0x45, 0x7e, 0xb2, 0x6e, - 0x2d, 0x4f, 0x7f, 0x60, 0x40, 0x0f, 0x0b, 0x1b, 0x63, 0x4a, 0x36, 0x5a, - 0x40, 0x24, 0xfe, 0xdb, 0x44, 0x54, 0x4d, 0x47, 0x27, 0x3f, 0x2d, 0x19, - 0x19, 0x2d, 0x3d, 0x03, 0x66, 0x41, 0x6f, 0x50, 0x2d, 0x2d, 0x58, 0x80, - 0x53, 0x6e, 0xb3, 0x8f, 0x6d, 0x27, 0x6d, 0x1b, 0x40, 0x4f, 0x60, 0x3b, - 0x2b, 0x31, 0x25, 0x48, 0x69, 0xf7, 0x5c, 0x56, 0x52, 0x5a, 0x19, 0x29, - 0x37, 0x1e, 0x2c, 0x49, 0x35, 0x1d, 0x00, 0x01, 0x00, 0x2f, 0x02, 0x4a, - 0x02, 0x64, 0x05, 0xb6, 0x00, 0x06, 0x00, 0x38, 0xb9, 0x00, 0x00, 0xff, - 0xf0, 0x40, 0x1f, 0x00, 0x00, 0x02, 0x01, 0xe1, 0x05, 0x08, 0x4f, 0x08, - 0x7f, 0x08, 0x02, 0x08, 0x40, 0x06, 0x0a, 0x48, 0xd0, 0x02, 0xe0, 0x02, - 0xf0, 0x02, 0x03, 0x02, 0x02, 0xe5, 0x03, 0xdc, 0x00, 0xdd, 0x00, 0x3f, - 0x3f, 0xe1, 0x01, 0x2f, 0x5d, 0x2b, 0x5d, 0x10, 0xde, 0xe1, 0x11, 0x39, - 0x2f, 0x38, 0x31, 0x30, 0x13, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x8d, - 0x01, 0x40, 0xfe, 0x62, 0x02, 0x35, 0xfe, 0xbf, 0x02, 0x4a, 0x02, 0xf1, - 0x7b, 0x64, 0xfc, 0xf8, 0x00, 0x03, 0x00, 0x31, 0x02, 0x39, 0x02, 0x71, - 0x05, 0xc7, 0x00, 0x25, 0x00, 0x34, 0x00, 0x44, 0x00, 0x77, 0x40, 0x22, - 0x38, 0xe1, 0x21, 0x42, 0xe1, 0x05, 0x0a, 0x3d, 0x32, 0x1c, 0x04, 0x05, - 0x21, 0x05, 0x21, 0x05, 0x17, 0x2c, 0xe1, 0x0f, 0x46, 0x4f, 0x46, 0x7f, - 0x46, 0x02, 0x46, 0x40, 0x06, 0x0a, 0x48, 0x26, 0xe1, 0x17, 0xb8, 0xff, - 0xc0, 0x40, 0x27, 0x15, 0x18, 0x48, 0x17, 0x0a, 0x1c, 0x3d, 0x32, 0x4b, - 0x32, 0x5b, 0x32, 0x6b, 0x32, 0x9b, 0x32, 0xab, 0x32, 0x05, 0x32, 0x14, - 0x35, 0xb6, 0x3d, 0xc6, 0x3d, 0xd6, 0x3d, 0x03, 0x3d, 0x00, 0x29, 0xe5, - 0x14, 0xdf, 0x35, 0xe5, 0x00, 0xde, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x11, - 0x39, 0x5d, 0x11, 0x12, 0x39, 0x5d, 0x11, 0x12, 0x39, 0x39, 0x01, 0x2f, - 0x2b, 0xe1, 0x2b, 0x5d, 0x10, 0xde, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, - 0x12, 0x17, 0x39, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x2e, 0x03, 0x35, 0x34, - 0x3e, 0x02, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, - 0x27, 0x27, 0x06, 0x06, 0x13, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, - 0x3e, 0x03, 0x35, 0x34, 0x26, 0x01, 0x52, 0x34, 0x5e, 0x46, 0x2a, 0x16, - 0x27, 0x34, 0x1e, 0x22, 0x3e, 0x30, 0x1c, 0x2a, 0x4d, 0x69, 0x3f, 0x8b, - 0x96, 0x19, 0x2a, 0x38, 0x1f, 0x1b, 0x2e, 0x23, 0x13, 0x2b, 0x48, 0x5f, - 0x62, 0x4a, 0x48, 0x4a, 0x4b, 0x16, 0x27, 0x37, 0x21, 0x0f, 0x41, 0x42, - 0x94, 0x38, 0x3f, 0x12, 0x20, 0x2d, 0x1a, 0x18, 0x2c, 0x20, 0x13, 0x41, - 0x05, 0xc7, 0x1b, 0x37, 0x54, 0x38, 0x25, 0x3e, 0x32, 0x28, 0x11, 0x13, - 0x2d, 0x37, 0x45, 0x2a, 0x39, 0x5d, 0x42, 0x24, 0x83, 0x73, 0x2a, 0x45, - 0x38, 0x2b, 0x11, 0x14, 0x2b, 0x35, 0x3e, 0x25, 0x38, 0x53, 0x37, 0x1c, - 0xfd, 0x68, 0x3b, 0x46, 0x46, 0x3b, 0x1e, 0x30, 0x27, 0x20, 0x0f, 0x06, - 0x22, 0x4d, 0x01, 0xe8, 0x37, 0x36, 0x1b, 0x2a, 0x24, 0x1d, 0x0d, 0x0c, - 0x1c, 0x23, 0x2c, 0x1c, 0x36, 0x37, 0x00, 0x02, 0x00, 0x21, 0x02, 0x39, - 0x02, 0x7b, 0x05, 0xc9, 0x00, 0x25, 0x00, 0x35, 0x00, 0x3b, 0x40, 0x22, - 0x31, 0x11, 0xe0, 0x09, 0x1c, 0x00, 0x37, 0x4f, 0x37, 0x7f, 0x37, 0x02, - 0x37, 0x40, 0x06, 0x0a, 0x48, 0x29, 0xe1, 0x1c, 0x2c, 0xe4, 0x11, 0x17, - 0x17, 0x05, 0x26, 0xe5, 0x21, 0xde, 0x0c, 0xe5, 0x05, 0xdf, 0x00, 0x3f, - 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x01, 0x2f, 0xe1, 0x2b, - 0x5d, 0x10, 0xde, 0x11, 0x39, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, - 0x37, 0x23, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x1e, 0x02, 0x25, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x02, 0x7b, 0x21, 0x5a, 0xa2, 0x81, - 0x19, 0x40, 0x15, 0x15, 0x36, 0x19, 0x53, 0x6c, 0x40, 0x1d, 0x03, 0x09, - 0x0d, 0x24, 0x30, 0x3d, 0x26, 0x3c, 0x60, 0x44, 0x24, 0x29, 0x4b, 0x6c, - 0x43, 0x41, 0x72, 0x54, 0x30, 0xfe, 0xcb, 0x44, 0x56, 0x4a, 0x4c, 0x26, - 0x3f, 0x2d, 0x18, 0x15, 0x2a, 0x3e, 0x04, 0x42, 0x60, 0xbb, 0x93, 0x5b, - 0x08, 0x07, 0x7d, 0x0d, 0x0a, 0x35, 0x57, 0x72, 0x3d, 0x12, 0x24, 0x1b, - 0x11, 0x25, 0x47, 0x66, 0x41, 0x42, 0x6f, 0x51, 0x2d, 0x2f, 0x61, 0x93, - 0xac, 0x5e, 0x58, 0x4c, 0x58, 0x19, 0x29, 0x33, 0x1a, 0x24, 0x48, 0x3b, - 0x24, 0x00, 0x00, 0x16, 0x00, 0x54, 0xfe, 0x81, 0x07, 0xc1, 0x05, 0xee, - 0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1b, 0x00, 0x1f, - 0x00, 0x23, 0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x37, - 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x53, 0x00, 0x5f, - 0x00, 0x6f, 0x00, 0x78, 0x00, 0x81, 0x00, 0x90, 0x00, 0xe4, 0x40, 0x59, - 0x34, 0x2c, 0x20, 0x1c, 0x38, 0x18, 0x57, 0x51, 0x7a, 0x70, 0x6f, 0x74, - 0x67, 0x64, 0x64, 0x82, 0x7e, 0x6b, 0x70, 0x51, 0xc0, 0x51, 0xd0, 0x51, - 0x03, 0x51, 0x6f, 0x6b, 0x6b, 0x6f, 0x51, 0x03, 0x5d, 0x89, 0x4f, 0x8c, - 0x5f, 0x8c, 0x02, 0x8c, 0x8c, 0x44, 0x28, 0x24, 0x09, 0x17, 0x5d, 0x50, - 0x4b, 0x60, 0x4b, 0x02, 0x4b, 0x4b, 0x41, 0x3d, 0x31, 0x00, 0x0c, 0x2a, - 0x42, 0x46, 0x3e, 0x26, 0x32, 0x86, 0x8f, 0x8f, 0x6f, 0x79, 0x67, 0x70, - 0x70, 0x7a, 0x60, 0x7a, 0x6f, 0x54, 0x48, 0x48, 0x70, 0x6f, 0x80, 0x6f, - 0x02, 0x61, 0x6f, 0x01, 0x6f, 0xb8, 0xff, 0xc0, 0x40, 0x25, 0x07, 0x0c, - 0x48, 0x6f, 0x6f, 0x60, 0x5a, 0x4e, 0x4e, 0x8a, 0x78, 0x1f, 0x60, 0x2f, - 0x60, 0x3f, 0x60, 0x6f, 0x60, 0x04, 0x60, 0x60, 0x01, 0x2c, 0x1c, 0x18, - 0x12, 0x0c, 0x39, 0x35, 0x21, 0x07, 0x0f, 0x01, 0x01, 0x07, 0x01, 0x00, - 0x2f, 0x5e, 0x5d, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x33, 0x33, - 0x12, 0x39, 0x2f, 0x5d, 0x33, 0x33, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, - 0x2b, 0x5d, 0x5d, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x12, 0x39, 0x2f, - 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, - 0x01, 0x2f, 0x33, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x5d, 0x33, 0x2f, 0x33, - 0x33, 0x33, 0x33, 0x33, 0x2f, 0x5d, 0x33, 0x12, 0x17, 0x39, 0x2f, 0x2f, - 0x2f, 0x5d, 0x11, 0x33, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x33, - 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x31, 0x30, 0x13, 0x11, - 0x21, 0x15, 0x23, 0x15, 0x25, 0x35, 0x21, 0x11, 0x23, 0x35, 0x01, 0x11, - 0x33, 0x15, 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, 0x11, 0x21, 0x35, - 0x21, 0x15, 0x21, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, 0x23, - 0x11, 0x33, 0x11, 0x23, 0x11, 0x33, 0x01, 0x35, 0x21, 0x15, 0x01, 0x23, - 0x11, 0x33, 0x01, 0x35, 0x21, 0x15, 0x33, 0x35, 0x21, 0x15, 0x01, 0x23, - 0x11, 0x33, 0x35, 0x23, 0x11, 0x33, 0x01, 0x23, 0x11, 0x33, 0x01, 0x22, - 0x26, 0x35, 0x34, 0x36, 0x37, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, - 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x33, - 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x23, 0x23, 0x13, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x15, - 0x15, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x05, 0x35, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x54, - 0x01, 0x2f, 0xc0, 0x05, 0xce, 0x01, 0x30, 0x6d, 0xf9, 0x00, 0x6f, 0xc0, - 0x05, 0x0e, 0xc3, 0x6d, 0xfd, 0x49, 0x01, 0x11, 0xfb, 0xe1, 0x01, 0x0e, - 0xfe, 0xf2, 0x01, 0x0e, 0x04, 0xb7, 0x6d, 0x6d, 0x6d, 0x6d, 0xfb, 0xc2, - 0x01, 0x10, 0xfc, 0x30, 0x6f, 0x6f, 0x02, 0xc0, 0x01, 0x10, 0x77, 0x01, - 0x11, 0xfa, 0xa8, 0x6f, 0x6f, 0x6f, 0x6f, 0x06, 0xfe, 0x6d, 0x6d, 0xfa, - 0x99, 0x7f, 0x87, 0x87, 0x7f, 0x7f, 0x87, 0x87, 0x7f, 0x48, 0x3f, 0x3f, - 0x48, 0x45, 0x42, 0x42, 0x01, 0x9f, 0xac, 0x6d, 0x70, 0x2d, 0x2d, 0x38, - 0x33, 0x6d, 0x5e, 0xcf, 0x7b, 0x42, 0x2e, 0x24, 0x29, 0x30, 0x3b, 0x4a, - 0x31, 0x25, 0x26, 0x34, 0x01, 0x0e, 0x10, 0x20, 0x14, 0x25, 0x31, 0x7d, - 0x68, 0x5f, 0x3d, 0x04, 0xbe, 0x01, 0x30, 0x6f, 0xc1, 0xc1, 0x6f, 0xfe, - 0xd0, 0xc1, 0xf9, 0x02, 0x01, 0x2f, 0xc2, 0x6d, 0x6d, 0xc2, 0xfe, 0xd1, - 0x6d, 0x6d, 0x6d, 0x6d, 0x06, 0xfe, 0x6f, 0x6f, 0xfa, 0xa8, 0x01, 0x0e, - 0x02, 0x02, 0x01, 0x0f, 0xfa, 0x3b, 0x6d, 0x6d, 0x01, 0xa6, 0x01, 0x0e, - 0x04, 0x4a, 0x6f, 0x6f, 0x6f, 0x6f, 0xfc, 0x2f, 0x01, 0x10, 0x79, 0x01, - 0x0f, 0xfd, 0x68, 0x01, 0x10, 0xfe, 0x8a, 0x9f, 0x8e, 0x91, 0x9b, 0x01, - 0x9c, 0x91, 0x8e, 0x9f, 0x68, 0x67, 0x5e, 0x5e, 0x66, 0x66, 0x5e, 0x5e, - 0x67, 0x01, 0xea, 0x43, 0x53, 0x31, 0x44, 0x08, 0x04, 0x0b, 0x44, 0x3a, - 0x51, 0x59, 0x01, 0x62, 0x22, 0x20, 0x22, 0x1d, 0xe3, 0x9a, 0x2b, 0x25, - 0x20, 0x2a, 0xfc, 0x66, 0x03, 0x05, 0x24, 0x32, 0x01, 0x92, 0xfe, 0x72, - 0x5e, 0x64, 0x00, 0x03, 0x00, 0x54, 0xfe, 0xc1, 0x07, 0xaa, 0x06, 0x14, - 0x00, 0x03, 0x00, 0x23, 0x00, 0x2f, 0x00, 0x50, 0x40, 0x28, 0x04, 0x23, - 0x23, 0x24, 0x20, 0x2a, 0x30, 0x2a, 0x40, 0x2a, 0x03, 0x2a, 0x2a, 0x4f, - 0x24, 0x01, 0x24, 0x24, 0x02, 0x1c, 0x0b, 0x0b, 0x02, 0x15, 0x15, 0x02, - 0x23, 0x23, 0x30, 0x2d, 0x01, 0x2d, 0x2d, 0x27, 0x27, 0x03, 0x19, 0x10, - 0x10, 0x03, 0x00, 0x19, 0x2f, 0x33, 0x18, 0x2f, 0x33, 0x11, 0x33, 0x2f, - 0x33, 0x2f, 0x5d, 0x33, 0x2f, 0x01, 0x19, 0x2f, 0x33, 0x18, 0x2f, 0x11, - 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x5d, 0x33, 0x2f, 0x5d, 0x11, 0x33, - 0x2f, 0x33, 0x31, 0x30, 0x09, 0x03, 0x05, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x17, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, - 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x03, 0xfe, 0x03, 0xac, 0xfc, 0x54, 0xfc, 0x56, 0x03, 0xeb, 0x21, 0x4c, - 0x63, 0x4d, 0x31, 0x5b, 0x83, 0x51, 0x2b, 0x5a, 0x57, 0x52, 0x22, 0x52, - 0x44, 0x7e, 0x38, 0x3f, 0x3e, 0x27, 0x52, 0x45, 0x4a, 0x1b, 0x47, 0x46, - 0x44, 0x47, 0x47, 0x44, 0x46, 0x47, 0x06, 0x14, 0xfc, 0x56, 0xfc, 0x57, - 0x03, 0xa9, 0xfb, 0x2f, 0x2c, 0x3e, 0x3a, 0x4c, 0x83, 0x59, 0x45, 0x6b, - 0x4a, 0x27, 0x10, 0x1b, 0x23, 0x14, 0xb2, 0x22, 0x2e, 0x3a, 0x2f, 0x31, - 0x44, 0x41, 0x35, 0x79, 0x50, 0x3b, 0xfe, 0xed, 0x3e, 0x49, 0x49, 0x3e, - 0x40, 0x49, 0x49, 0x00, 0xff, 0xff, 0xff, 0xbc, 0xfe, 0x14, 0x02, 0x55, - 0x06, 0x21, 0x02, 0x26, 0x02, 0x37, 0x00, 0x00, 0x00, 0x07, 0x01, 0x4c, - 0xfe, 0xbb, 0x00, 0x00, 0xff, 0xff, 0x00, 0x17, 0x03, 0xc1, 0x01, 0x50, - 0x05, 0xb6, 0x02, 0x06, 0x02, 0x07, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, - 0xff, 0xec, 0x04, 0xb2, 0x06, 0x2b, 0x00, 0x0c, 0x00, 0x4f, 0x00, 0x75, - 0x40, 0x47, 0x4d, 0x0d, 0x43, 0x10, 0x3e, 0x00, 0x3b, 0x08, 0x47, 0x43, - 0x43, 0x1a, 0x3b, 0x47, 0x4f, 0x00, 0x10, 0x01, 0x10, 0x10, 0x51, 0xa0, - 0x51, 0x01, 0x3f, 0x51, 0x01, 0x33, 0x47, 0x00, 0x1a, 0x10, 0x1a, 0x20, - 0x1a, 0x03, 0x1a, 0x22, 0x50, 0x29, 0x3e, 0x4f, 0x4f, 0x4e, 0x00, 0x4e, - 0x00, 0x29, 0x10, 0x29, 0x30, 0x29, 0x40, 0x29, 0x50, 0x29, 0x05, 0x06, - 0x29, 0x4e, 0x29, 0x4e, 0x38, 0x05, 0x50, 0x48, 0x01, 0x38, 0x50, 0x15, - 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5e, - 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x10, 0xe1, 0x01, 0x2f, 0x5d, 0xe1, - 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x5d, 0x33, 0xe1, 0x11, 0x39, 0x2f, 0xe1, - 0x11, 0x39, 0x39, 0x11, 0x12, 0x39, 0x39, 0x31, 0x30, 0x01, 0x2e, 0x03, - 0x23, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x05, 0x16, 0x16, 0x15, 0x14, - 0x02, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x35, - 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x12, - 0x11, 0x34, 0x26, 0x27, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x1e, 0x02, 0x17, 0x33, 0x15, 0x03, 0x6a, 0x0d, 0x39, 0x4d, 0x5b, 0x30, - 0x4c, 0x56, 0x2e, 0x6a, 0xab, 0x01, 0x3c, 0x02, 0x02, 0x40, 0x81, 0xc4, - 0x83, 0x6f, 0x92, 0x56, 0x22, 0x0a, 0x0b, 0x0a, 0x1f, 0x1f, 0x18, 0x36, - 0x10, 0x25, 0x25, 0x64, 0x36, 0x32, 0x45, 0x2c, 0x13, 0x0a, 0x0b, 0x0a, - 0x15, 0x30, 0x4e, 0x3a, 0xa4, 0xa4, 0x02, 0x02, 0xae, 0xf2, 0x96, 0x43, - 0x27, 0x51, 0x7f, 0x59, 0x68, 0xa1, 0x75, 0x4b, 0x12, 0x8f, 0x03, 0xd1, - 0x6c, 0xaa, 0x74, 0x3d, 0x58, 0x48, 0x38, 0x69, 0x52, 0x33, 0x8a, 0x16, - 0x3a, 0x1f, 0x9f, 0xfe, 0xee, 0xc9, 0x73, 0x37, 0x5f, 0x7d, 0x45, 0x28, - 0x5d, 0x59, 0x4b, 0x18, 0x2d, 0x21, 0x0f, 0x0a, 0x7f, 0x11, 0x1a, 0x1c, - 0x32, 0x44, 0x28, 0x23, 0x56, 0x5d, 0x61, 0x2d, 0x2a, 0x4a, 0x36, 0x1f, - 0x01, 0x32, 0x01, 0x30, 0x17, 0x3e, 0x14, 0x02, 0x4b, 0x78, 0x9a, 0x51, - 0x43, 0x70, 0x52, 0x2e, 0x54, 0x9c, 0xdf, 0x8b, 0x89, 0x00, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x04, 0x48, 0x05, 0xc3, 0x00, 0x22, 0x00, 0x8f, - 0x40, 0x1b, 0xaf, 0x24, 0xef, 0x24, 0x02, 0x24, 0x40, 0x09, 0x0c, 0x48, - 0x22, 0xab, 0x21, 0x01, 0x98, 0x21, 0x01, 0x40, 0x21, 0x01, 0x1b, 0x21, - 0x01, 0x0f, 0x21, 0x01, 0x21, 0xb8, 0xff, 0xf0, 0x40, 0x44, 0x21, 0x21, - 0x00, 0x1f, 0x1b, 0x0d, 0x01, 0x0f, 0x0d, 0x01, 0x0d, 0x20, 0x12, 0x16, - 0x48, 0x9f, 0x0d, 0xaf, 0x0d, 0x02, 0x7d, 0x0d, 0x01, 0x6b, 0x0d, 0x01, - 0x5a, 0x0d, 0x01, 0x4f, 0x0d, 0x01, 0x2b, 0x0d, 0x3b, 0x0d, 0x02, 0x0d, - 0x0d, 0x1e, 0x5a, 0x77, 0x1f, 0x87, 0x1f, 0x97, 0x1f, 0x03, 0x4f, 0x1f, - 0x01, 0x00, 0x1f, 0x10, 0x1f, 0x02, 0x07, 0x1f, 0x1d, 0x00, 0x1f, 0x21, - 0x03, 0x1f, 0x12, 0x11, 0x0a, 0x04, 0x00, 0x3f, 0xc1, 0x3f, 0x3f, 0x12, - 0x39, 0x39, 0x01, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x32, 0x2f, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x2b, 0x71, 0x71, 0x11, 0x39, 0x33, 0x2f, - 0x38, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x2b, 0x5d, 0x31, 0x30, 0x01, - 0x3e, 0x03, 0x37, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, - 0x23, 0x22, 0x0e, 0x02, 0x07, 0x0e, 0x05, 0x07, 0x11, 0x23, 0x11, 0x01, - 0x33, 0x02, 0x1d, 0x19, 0x3d, 0x3f, 0x3c, 0x18, 0x16, 0x2f, 0x35, 0x40, - 0x29, 0x23, 0x2b, 0x11, 0x0d, 0x20, 0x0d, 0x0b, 0x1c, 0x20, 0x23, 0x13, - 0x0d, 0x28, 0x32, 0x36, 0x36, 0x32, 0x13, 0xbb, 0xfe, 0x42, 0xcb, 0x02, - 0xdb, 0x4b, 0xa8, 0xa0, 0x89, 0x2c, 0x28, 0x3d, 0x27, 0x14, 0x09, 0x08, - 0x91, 0x03, 0x05, 0x07, 0x17, 0x2a, 0x23, 0x18, 0x55, 0x6e, 0x80, 0x85, - 0x85, 0x3c, 0xfd, 0xe3, 0x02, 0x2f, 0x03, 0x87, 0x00, 0x02, 0x00, 0x12, - 0xff, 0xec, 0x06, 0x60, 0x04, 0x4a, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x8f, - 0x40, 0x47, 0x19, 0x67, 0x2f, 0x01, 0x2f, 0x47, 0xd5, 0x2c, 0x01, 0xb7, - 0x2c, 0x01, 0xa9, 0x2c, 0x01, 0x9a, 0x2c, 0x01, 0x03, 0x2c, 0x2c, 0x03, - 0x37, 0x48, 0xab, 0x12, 0xbb, 0x12, 0x02, 0x12, 0x12, 0x3e, 0x14, 0x3e, - 0x01, 0x54, 0x3e, 0x64, 0x3e, 0x84, 0x3e, 0xa4, 0x3e, 0xb4, 0x3e, 0x05, - 0x40, 0x3e, 0x01, 0x02, 0x30, 0x3e, 0x01, 0x0f, 0x3e, 0x01, 0x22, 0x48, - 0x00, 0x03, 0x10, 0x03, 0x30, 0x03, 0x40, 0x03, 0x50, 0x03, 0x05, 0x06, - 0x03, 0xb8, 0xff, 0xc0, 0x40, 0x15, 0x12, 0x15, 0x48, 0x03, 0x1a, 0x00, - 0x2d, 0x2d, 0x27, 0x1d, 0x0e, 0x08, 0x50, 0x0b, 0x0f, 0x32, 0x27, 0x50, - 0x16, 0x00, 0x16, 0x00, 0x3f, 0x32, 0xe1, 0x32, 0x3f, 0xe1, 0x32, 0x32, - 0x12, 0x39, 0x2f, 0x12, 0x39, 0x01, 0x2f, 0x2b, 0x5e, 0x5d, 0xe1, 0x5d, - 0x5d, 0x5f, 0x5d, 0x5d, 0x71, 0x11, 0x33, 0x2f, 0x5d, 0xe1, 0x11, 0x39, - 0x2f, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, 0x5d, 0x39, 0x31, 0x30, 0x05, - 0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x21, 0x35, 0x37, 0x21, 0x15, - 0x23, 0x1e, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x06, - 0x06, 0x03, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, - 0x2e, 0x02, 0x27, 0x02, 0x29, 0xb6, 0xc3, 0x12, 0x20, 0x2b, 0x1a, 0xfe, - 0xeb, 0x86, 0x05, 0xc8, 0xf3, 0x18, 0x26, 0x1b, 0x0f, 0xc4, 0xb5, 0x6a, - 0x8b, 0x1f, 0x0b, 0x1f, 0x8b, 0xba, 0x16, 0x28, 0x1f, 0x12, 0x1d, 0x36, - 0x4b, 0x2d, 0x2e, 0x44, 0x2c, 0x16, 0xb3, 0x62, 0x52, 0x2d, 0x4b, 0x36, - 0x1d, 0x0f, 0x19, 0x24, 0x15, 0x14, 0xea, 0xf3, 0x39, 0x7d, 0x7e, 0x7b, - 0x38, 0x4a, 0x50, 0x9a, 0x38, 0x7b, 0x7e, 0x7d, 0x39, 0xf3, 0xea, 0x57, - 0x5b, 0x5b, 0x57, 0x03, 0xc4, 0x36, 0x76, 0x79, 0x7a, 0x3a, 0x62, 0x83, - 0x4e, 0x21, 0x29, 0x48, 0x62, 0x39, 0xb0, 0xb0, 0x82, 0x8a, 0x21, 0x4e, - 0x83, 0x62, 0x3a, 0x7a, 0x79, 0x76, 0x36, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x06, 0x2f, 0x07, 0x75, 0x02, 0x26, 0x00, 0x30, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x01, 0x79, 0x01, 0x54, 0x00, 0x13, 0x40, 0x0b, - 0x01, 0x27, 0x05, 0x26, 0x01, 0x4b, 0x1a, 0x20, 0x09, 0x0f, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x06, 0x87, 0x06, 0x21, 0x02, 0x26, 0x00, 0x50, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x76, 0x01, 0xc7, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x3a, - 0x11, 0x26, 0x01, 0x7a, 0x2d, 0x33, 0x16, 0x2b, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfd, 0xd5, 0x04, 0xdd, - 0x05, 0xbc, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x02, 0x5b, - 0x01, 0x1b, 0x00, 0x00, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x01, 0x1f, 0x15, - 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, - 0xfd, 0xd5, 0x03, 0x9c, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x5b, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x0d, 0xb7, 0x03, - 0x02, 0x14, 0x3d, 0x33, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0xfe, 0xd3, 0xff, 0xec, 0x05, 0xc3, 0x05, 0xcd, 0x00, 0x26, - 0x00, 0x32, 0x52, 0x00, 0x01, 0x07, 0x02, 0x5c, 0xfe, 0x40, 0x00, 0x00, - 0x00, 0x3f, 0xb6, 0x03, 0x02, 0x2d, 0x03, 0x03, 0x02, 0x35, 0xb8, 0xff, - 0xc0, 0xb2, 0x09, 0x0f, 0x48, 0xb8, 0xff, 0x21, 0x40, 0x1a, 0x35, 0x35, - 0x0a, 0x0a, 0x25, 0x01, 0x00, 0xb0, 0x00, 0x01, 0x80, 0x00, 0x01, 0x7f, - 0x00, 0x01, 0x50, 0x00, 0x01, 0x40, 0x00, 0x01, 0x1f, 0x00, 0x01, 0x00, - 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x35, 0x2b, 0x2b, 0x35, - 0x35, 0x00, 0x3f, 0x35, 0x35, 0x00, 0x00, 0x02, 0x00, 0x73, 0xfd, 0xd5, - 0x02, 0x37, 0xff, 0x83, 0x00, 0x13, 0x00, 0x1f, 0x00, 0x3a, 0x40, 0x28, - 0x14, 0x83, 0x0f, 0x00, 0x3f, 0x00, 0x4f, 0x00, 0x5f, 0x00, 0x04, 0x00, - 0x1a, 0x83, 0x30, 0x0a, 0x01, 0x0a, 0x1d, 0x8c, 0x00, 0x05, 0x10, 0x05, - 0x30, 0x05, 0x40, 0x05, 0x50, 0x05, 0xa0, 0x05, 0xf0, 0x05, 0x07, 0x06, - 0x05, 0x17, 0x8c, 0x0f, 0x00, 0x2f, 0xe1, 0xd4, 0x5e, 0x5d, 0xe1, 0x01, - 0x2f, 0x5d, 0xe1, 0xd4, 0x5d, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, - 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, - 0x07, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, - 0x02, 0x37, 0x23, 0x3d, 0x54, 0x31, 0x32, 0x52, 0x3b, 0x20, 0x20, 0x3b, - 0x52, 0x32, 0x30, 0x54, 0x3e, 0x23, 0x74, 0x40, 0x31, 0x32, 0x3f, 0x39, - 0x38, 0x31, 0x40, 0xfe, 0xae, 0x33, 0x51, 0x38, 0x1d, 0x1d, 0x38, 0x4f, - 0x33, 0x33, 0x4f, 0x38, 0x1d, 0x1d, 0x37, 0x4f, 0x34, 0x35, 0x3c, 0x3c, - 0x35, 0x35, 0x3c, 0x3c, 0x00, 0x02, 0x00, 0x93, 0x04, 0x68, 0x02, 0xd9, - 0x05, 0xc7, 0x00, 0x0d, 0x00, 0x1f, 0x00, 0x42, 0x40, 0x09, 0x15, 0x30, - 0x0e, 0x40, 0x0e, 0x02, 0x0e, 0x11, 0x1a, 0xb8, 0xff, 0xc0, 0x40, 0x1c, - 0x09, 0x10, 0x48, 0x1a, 0x1a, 0x2b, 0x0d, 0x01, 0x04, 0x0d, 0x14, 0x0d, - 0x02, 0x0d, 0x06, 0x05, 0x0c, 0x05, 0x0c, 0x3f, 0x11, 0x4f, 0x11, 0x5f, - 0x11, 0x03, 0x11, 0x1d, 0x00, 0x2f, 0xcc, 0x5d, 0x39, 0x39, 0x2f, 0x2f, - 0x01, 0x2f, 0xcd, 0x5d, 0x5d, 0x32, 0x2f, 0x2b, 0x33, 0xcd, 0x5d, 0x39, - 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, - 0x25, 0x34, 0x36, 0x37, 0x15, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x15, - 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0xb0, 0x0b, 0x19, 0x18, 0x16, 0x08, - 0xcf, 0x12, 0x30, 0x38, 0x3e, 0x1f, 0x52, 0xfe, 0xe3, 0x78, 0x7a, 0x3c, - 0x39, 0x1f, 0x25, 0x1f, 0x32, 0x2f, 0x3a, 0x45, 0x04, 0x89, 0x1e, 0x4b, - 0x4f, 0x51, 0x24, 0x14, 0x20, 0x4d, 0x50, 0x51, 0x25, 0x78, 0x4e, 0x73, - 0x1f, 0x4c, 0x16, 0x2e, 0x18, 0x13, 0x12, 0x10, 0x1a, 0x1c, 0x25, 0x27, - 0x46, 0x00, 0xff, 0xff, 0x00, 0x1d, 0x00, 0x00, 0x06, 0xb9, 0x06, 0x1f, - 0x00, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x27, 0x00, 0x49, 0x02, 0xa2, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x4c, 0x05, 0x44, 0x00, 0x00, 0x00, 0x38, - 0x40, 0x26, 0x03, 0x02, 0x8f, 0x39, 0x01, 0x70, 0x39, 0x01, 0x40, 0x39, - 0x01, 0x2f, 0x39, 0x01, 0x0f, 0x39, 0x01, 0x39, 0x01, 0xe0, 0x1f, 0x01, - 0xb0, 0x1f, 0x01, 0x1f, 0xaf, 0x4b, 0x01, 0x70, 0x4b, 0x01, 0x40, 0x4b, - 0x01, 0x0f, 0x4b, 0x01, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x5d, 0x5d, 0x35, - 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, 0x35, 0xff, 0xff, 0x00, 0x1d, - 0x00, 0x00, 0x06, 0xa8, 0x06, 0x1f, 0x00, 0x26, 0x00, 0x49, 0x00, 0x00, - 0x00, 0x27, 0x00, 0x49, 0x02, 0xa2, 0x00, 0x00, 0x01, 0x07, 0x00, 0x4f, - 0x05, 0x44, 0x00, 0x00, 0x00, 0x36, 0x40, 0x25, 0x02, 0x8f, 0x39, 0x01, - 0x70, 0x39, 0x01, 0x40, 0x39, 0x01, 0x2f, 0x39, 0x01, 0x0f, 0x39, 0x01, - 0x39, 0x01, 0xe0, 0x1f, 0x01, 0xb0, 0x1f, 0x01, 0x1f, 0xaf, 0x3d, 0x01, - 0x70, 0x3d, 0x01, 0x40, 0x3d, 0x01, 0x0f, 0x3d, 0x01, 0x5d, 0x5d, 0x5d, - 0x5d, 0x11, 0x5d, 0x5d, 0x35, 0x11, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x35, - 0x00, 0x02, 0x00, 0x7d, 0xff, 0xec, 0x06, 0x25, 0x06, 0x14, 0x00, 0x20, - 0x00, 0x34, 0x00, 0x4b, 0x40, 0x2c, 0x1b, 0x06, 0x13, 0x09, 0x20, 0x5b, - 0x01, 0x01, 0x2b, 0x5b, 0x09, 0x67, 0x36, 0xc0, 0x36, 0x01, 0xbf, 0x36, - 0x01, 0x70, 0x36, 0x01, 0x2f, 0x36, 0x5f, 0x36, 0x02, 0x21, 0x5b, 0x13, - 0x66, 0x35, 0x06, 0x1b, 0x0e, 0x30, 0x5f, 0x20, 0x18, 0x04, 0x26, 0x5f, - 0x0e, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0xce, 0xe1, 0x12, 0x39, 0x39, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x33, 0x2f, - 0xe1, 0x11, 0x12, 0x39, 0x39, 0x31, 0x30, 0x01, 0x17, 0x0e, 0x03, 0x07, - 0x16, 0x16, 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, - 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x3e, 0x03, 0x35, - 0x01, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, - 0x23, 0x22, 0x0e, 0x02, 0x06, 0x17, 0x0e, 0x0c, 0x28, 0x3f, 0x5a, 0x3f, - 0x2b, 0x2d, 0x51, 0xa0, 0xed, 0x9b, 0xa3, 0xef, 0x9d, 0x4c, 0x4c, 0x9e, - 0xef, 0xa4, 0x9e, 0xec, 0x51, 0x29, 0x31, 0x19, 0x08, 0xfb, 0xf2, 0x34, - 0x6b, 0xa5, 0x72, 0x72, 0xa5, 0x6b, 0x32, 0x32, 0x6a, 0xa4, 0x72, 0x72, - 0xa6, 0x6c, 0x34, 0x06, 0x14, 0x16, 0x3c, 0x70, 0x61, 0x4c, 0x18, 0x59, - 0xd8, 0x7f, 0xaa, 0xfe, 0xeb, 0xc6, 0x6c, 0x6c, 0xc6, 0x01, 0x17, 0xaa, - 0xaa, 0x01, 0x15, 0xc4, 0x6b, 0x6f, 0x66, 0x0c, 0x35, 0x4a, 0x5d, 0x34, - 0xfc, 0xc9, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, 0xdb, 0x89, 0x8a, 0xda, - 0x97, 0x51, 0x51, 0x97, 0xda, 0x00, 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, - 0x04, 0xf4, 0x04, 0xf2, 0x00, 0x20, 0x00, 0x2c, 0x00, 0x4a, 0x40, 0x2c, - 0x17, 0x4a, 0x19, 0x19, 0x1e, 0x12, 0x0a, 0x27, 0x48, 0x00, 0x00, 0x10, - 0x00, 0x02, 0x07, 0x00, 0x00, 0x2e, 0x10, 0x2e, 0x90, 0x2e, 0xa0, 0x2e, - 0xb0, 0x2e, 0x04, 0x21, 0x48, 0x0a, 0x56, 0x2d, 0x12, 0x1e, 0x05, 0x2a, - 0x50, 0x17, 0x0f, 0x10, 0x24, 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, - 0xc6, 0xe1, 0x12, 0x39, 0x39, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x11, 0x33, - 0x2f, 0x5e, 0x5d, 0xe1, 0x12, 0x39, 0x39, 0x33, 0x2f, 0xe1, 0x31, 0x30, - 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, - 0x33, 0x32, 0x16, 0x17, 0x3e, 0x03, 0x35, 0x33, 0x17, 0x0e, 0x03, 0x07, - 0x16, 0x16, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x04, 0x2d, 0x43, 0x7d, 0xb2, 0x6f, 0x67, 0xae, 0x7f, 0x47, - 0x43, 0x7c, 0xb3, 0x6f, 0x64, 0xa9, 0x3f, 0x2e, 0x34, 0x19, 0x06, 0xc6, - 0x0f, 0x10, 0x2d, 0x3f, 0x56, 0x39, 0x20, 0x24, 0xfd, 0x00, 0x89, 0x9a, - 0x9a, 0x87, 0x89, 0x9a, 0x9a, 0x87, 0x02, 0x27, 0x89, 0xd5, 0x91, 0x4c, - 0x4c, 0x91, 0xd5, 0x89, 0x88, 0xd3, 0x91, 0x4b, 0x47, 0x44, 0x0d, 0x37, - 0x4b, 0x5d, 0x33, 0x17, 0x4a, 0x78, 0x5e, 0x43, 0x14, 0x41, 0x9e, 0x5e, - 0xd1, 0xd3, 0xd3, 0xd1, 0xd0, 0xd0, 0xd0, 0x00, 0x00, 0x01, 0x00, 0xb8, - 0xff, 0xec, 0x06, 0x4e, 0x06, 0x14, 0x00, 0x24, 0x00, 0x51, 0x40, 0x32, - 0x06, 0x5b, 0x08, 0x08, 0x23, 0x5a, 0x01, 0x9f, 0x0e, 0x01, 0xb0, 0x0e, - 0x01, 0xaf, 0x0e, 0x01, 0x0e, 0x0e, 0x26, 0x70, 0x26, 0x80, 0x26, 0xf0, - 0x26, 0x03, 0x5f, 0x26, 0x01, 0x00, 0x26, 0x10, 0x26, 0x02, 0x1b, 0x5a, - 0x18, 0x64, 0x25, 0x01, 0x0d, 0x0d, 0x24, 0x06, 0x19, 0x03, 0x1e, 0x5f, - 0x13, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0xce, 0x33, 0x33, 0x2f, 0x33, 0x01, - 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x5d, 0x5d, 0x71, - 0x33, 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x15, 0x3e, 0x03, 0x35, - 0x33, 0x17, 0x0e, 0x03, 0x07, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, - 0x11, 0x04, 0xdd, 0x34, 0x3e, 0x20, 0x0a, 0xc6, 0x0f, 0x0f, 0x32, 0x55, - 0x80, 0x5b, 0x42, 0x85, 0xc9, 0x88, 0x80, 0xc4, 0x85, 0x44, 0xbb, 0xac, - 0xb0, 0x59, 0x80, 0x52, 0x28, 0x01, 0x05, 0xb6, 0xc4, 0x06, 0x32, 0x4e, - 0x64, 0x38, 0x16, 0x47, 0x82, 0x69, 0x4a, 0x0f, 0xfd, 0x91, 0x72, 0xc4, - 0x90, 0x52, 0x4d, 0x8e, 0xc7, 0x7a, 0x03, 0xae, 0xfc, 0x48, 0xb0, 0xbf, - 0x36, 0x62, 0x88, 0x51, 0x03, 0xb6, 0x00, 0x01, 0x00, 0xa4, 0xff, 0xec, - 0x05, 0x79, 0x04, 0xf2, 0x00, 0x27, 0x00, 0x54, 0x40, 0x33, 0x1f, 0x4a, - 0x21, 0x21, 0x01, 0x17, 0x47, 0x1a, 0x27, 0x27, 0x29, 0x10, 0x29, 0x01, - 0x80, 0x29, 0xa0, 0x29, 0xe0, 0x29, 0x03, 0x6f, 0x29, 0x01, 0x00, 0x29, - 0x20, 0x29, 0x30, 0x29, 0x03, 0x07, 0x0f, 0x47, 0x0c, 0x54, 0x28, 0x1a, - 0x26, 0x26, 0x1f, 0x18, 0x0d, 0x0f, 0x12, 0x50, 0x02, 0x07, 0x16, 0x00, - 0x15, 0x00, 0x3f, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0xc6, 0x33, 0x2f, 0x33, - 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x33, 0x2f, - 0x33, 0xe1, 0x32, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x21, 0x27, 0x23, 0x0e, - 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, - 0x32, 0x3e, 0x02, 0x35, 0x11, 0x33, 0x15, 0x3e, 0x03, 0x35, 0x33, 0x17, - 0x0e, 0x03, 0x07, 0x11, 0x03, 0x75, 0x1b, 0x0a, 0x19, 0x45, 0x52, 0x5c, - 0x30, 0x5b, 0x8a, 0x5c, 0x2f, 0xb6, 0x6a, 0x6f, 0x51, 0x6e, 0x43, 0x1d, - 0xb6, 0x34, 0x3e, 0x20, 0x0a, 0xc6, 0x0f, 0x0f, 0x32, 0x55, 0x80, 0x5b, - 0x93, 0x2b, 0x3f, 0x29, 0x14, 0x2e, 0x62, 0x98, 0x69, 0x02, 0xcd, 0xfd, - 0x3d, 0x82, 0x82, 0x34, 0x65, 0x94, 0x60, 0x02, 0x3a, 0x7b, 0x06, 0x32, - 0x4e, 0x65, 0x38, 0x17, 0x47, 0x88, 0x6d, 0x48, 0x07, 0xfc, 0xb0, 0x00, - 0x00, 0x01, 0xfc, 0x8f, 0x04, 0xd9, 0xfe, 0x19, 0x06, 0x21, 0x00, 0x0d, - 0x00, 0x16, 0x40, 0x0a, 0x00, 0x06, 0x08, 0x80, 0x0f, 0x00, 0x5f, 0x00, - 0x02, 0x00, 0x00, 0x2f, 0x5d, 0x1a, 0xcc, 0x01, 0x2f, 0xcd, 0x31, 0x30, - 0x01, 0x23, 0x2e, 0x03, 0x27, 0x35, 0x33, 0x1e, 0x03, 0x17, 0xfe, 0x19, - 0x79, 0x23, 0x51, 0x4d, 0x40, 0x10, 0xdb, 0x10, 0x2b, 0x2e, 0x30, 0x16, - 0x04, 0xd9, 0x1c, 0x53, 0x58, 0x51, 0x1b, 0x15, 0x23, 0x50, 0x51, 0x4c, - 0x1d, 0x00, 0x00, 0x01, 0xfd, 0x48, 0x04, 0xd9, 0xfe, 0xd1, 0x06, 0x21, - 0x00, 0x0d, 0x00, 0x16, 0x40, 0x0a, 0x06, 0x00, 0x05, 0x80, 0x0f, 0x0c, - 0x5f, 0x0c, 0x02, 0x0c, 0x00, 0x2f, 0x5d, 0x1a, 0xcd, 0x01, 0x2f, 0xcd, - 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x0e, 0x03, 0x07, 0x23, - 0xfd, 0x48, 0x15, 0x30, 0x2e, 0x2b, 0x10, 0xdb, 0x10, 0x3f, 0x4d, 0x52, - 0x22, 0x79, 0x04, 0xf4, 0x1d, 0x4c, 0x51, 0x50, 0x23, 0x15, 0x1b, 0x51, - 0x58, 0x53, 0x1c, 0x00, 0x00, 0x01, 0xfc, 0x46, 0x04, 0xd9, 0xff, 0x14, - 0x05, 0xe3, 0x00, 0x1b, 0x00, 0x38, 0x40, 0x23, 0x0f, 0x17, 0x2f, 0x17, - 0x02, 0x17, 0x00, 0x09, 0x20, 0x09, 0x02, 0x07, 0x09, 0x16, 0x05, 0x8f, - 0x0e, 0x40, 0x10, 0x13, 0x48, 0x0e, 0x40, 0x07, 0x0b, 0x48, 0x0e, 0x0e, - 0x13, 0x8f, 0x09, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x2f, 0x5d, 0x32, 0xe1, - 0x33, 0x2f, 0x2b, 0x2b, 0xe1, 0x33, 0x01, 0x2f, 0x5e, 0x5d, 0xcc, 0x5d, - 0x31, 0x30, 0x01, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3e, - 0x03, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x0e, 0x03, - 0xfe, 0x42, 0x28, 0x4f, 0x4c, 0x47, 0x1f, 0x2d, 0x30, 0x0e, 0x68, 0x05, - 0x21, 0x35, 0x4a, 0x2e, 0x29, 0x51, 0x4d, 0x45, 0x1d, 0x2d, 0x2e, 0x0f, - 0x68, 0x05, 0x21, 0x35, 0x49, 0x04, 0xdb, 0x23, 0x2b, 0x23, 0x35, 0x3e, - 0x3c, 0x61, 0x45, 0x26, 0x23, 0x2a, 0x23, 0x34, 0x3e, 0x3c, 0x61, 0x45, - 0x26, 0x00, 0x00, 0x01, 0xfd, 0x04, 0x04, 0xb8, 0xfe, 0x79, 0x06, 0x8f, - 0x00, 0x1b, 0x00, 0x26, 0x40, 0x12, 0x05, 0x08, 0x08, 0x0d, 0x00, 0x15, - 0x05, 0x08, 0x08, 0x12, 0x0f, 0x19, 0x1f, 0x19, 0x02, 0x19, 0x80, 0x06, - 0x00, 0x2f, 0x1a, 0xcc, 0x5d, 0x32, 0x39, 0x11, 0x33, 0x01, 0x2f, 0xcc, - 0x32, 0x39, 0x11, 0x33, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x07, - 0x23, 0x27, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, - 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, 0xfe, 0x79, 0x1b, 0x2d, 0x3c, 0x22, - 0x0a, 0x71, 0x0e, 0x25, 0x3c, 0x2a, 0x17, 0x15, 0x24, 0x32, 0x1d, 0x1c, - 0x34, 0x10, 0x10, 0x32, 0x29, 0x85, 0x85, 0x05, 0xd3, 0x27, 0x3a, 0x29, - 0x1b, 0x07, 0x6f, 0xb0, 0x06, 0x10, 0x18, 0x21, 0x18, 0x18, 0x20, 0x13, - 0x07, 0x03, 0x03, 0x6c, 0x03, 0x05, 0x5b, 0x00, 0x00, 0x01, 0xfd, 0x31, - 0xfe, 0x98, 0xfe, 0x06, 0xff, 0x7d, 0x00, 0x0d, 0x00, 0x0f, 0xb5, 0x08, - 0x87, 0x00, 0x0b, 0x91, 0x03, 0x00, 0x2f, 0xe5, 0x01, 0x2f, 0xe1, 0x31, - 0x30, 0x05, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x26, 0xfd, 0x31, 0x3e, 0x2d, 0x2b, 0x3f, 0x11, 0x1d, 0x27, 0x15, - 0x2d, 0x3e, 0xf6, 0x3c, 0x37, 0x37, 0x3c, 0x1d, 0x2b, 0x1c, 0x0e, 0x37, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x73, 0x02, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0xff, 0xb7, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x01, 0x0c, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xc2, 0xb4, - 0x12, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xc9, 0x00, 0x00, 0x05, 0x10, 0x07, 0x73, 0x02, 0x26, - 0x01, 0xb2, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0x00, 0x42, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x01, 0x18, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xa3, 0xb4, - 0x1e, 0x18, 0x00, 0x0c, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x06, 0x21, 0x02, 0x26, - 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0x94, 0x00, 0x00, 0x15, - 0xb4, 0x02, 0x28, 0x11, 0x26, 0x02, 0xb8, 0xff, 0xb9, 0xb4, 0x2e, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x3b, 0x06, 0x21, 0x02, 0x26, 0x01, 0xd2, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0xca, 0x00, 0x00, 0x15, 0xb4, 0x01, - 0x0c, 0x11, 0x26, 0x01, 0xb8, 0xff, 0xa3, 0xb4, 0x12, 0x0c, 0x0a, 0x04, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0x7d, - 0xff, 0xec, 0x07, 0x5e, 0x05, 0xc9, 0x00, 0x45, 0x00, 0x71, 0x40, 0x48, - 0x14, 0x04, 0x39, 0x5a, 0x25, 0xc5, 0x36, 0x01, 0x96, 0x36, 0xa6, 0x36, - 0x02, 0x89, 0x36, 0x01, 0x36, 0x36, 0x1d, 0x41, 0x5b, 0x0c, 0x67, 0x47, - 0x00, 0x47, 0x10, 0x47, 0x02, 0x00, 0x47, 0x20, 0x47, 0x50, 0x47, 0x70, - 0x47, 0xd0, 0x47, 0xe0, 0x47, 0x06, 0x07, 0x2e, 0x5b, 0x1d, 0x66, 0x46, - 0x37, 0x37, 0x33, 0x00, 0x29, 0x5f, 0x03, 0x26, 0x26, 0x07, 0x22, 0x04, - 0x14, 0x20, 0x09, 0x0e, 0x48, 0x14, 0x3c, 0x33, 0x5f, 0x11, 0x18, 0x13, - 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x32, 0x2b, 0x3f, 0x33, 0x33, 0x11, 0x33, - 0xe1, 0x32, 0x12, 0x39, 0x2f, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x71, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x33, 0xe1, 0x32, - 0x39, 0x31, 0x30, 0x01, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, - 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x05, 0x68, 0x3c, - 0x5e, 0x2a, 0x4c, 0x3b, 0x8f, 0x51, 0x77, 0xb7, 0x7d, 0x40, 0x3f, 0x81, - 0xc6, 0x88, 0x6f, 0xaa, 0x49, 0x02, 0x4b, 0xa8, 0x6e, 0x88, 0xc6, 0x81, - 0x3f, 0x40, 0x7d, 0xb7, 0x77, 0x51, 0x8f, 0x3b, 0x4c, 0x29, 0x5f, 0x3c, - 0x45, 0x71, 0x50, 0x2b, 0x2e, 0x5c, 0x8a, 0x5c, 0x39, 0x76, 0x2e, 0xbb, - 0x2e, 0x76, 0x3b, 0x5c, 0x8b, 0x5c, 0x2e, 0x2c, 0x50, 0x71, 0x05, 0x25, - 0x2e, 0x20, 0x9c, 0x2a, 0x2c, 0x63, 0xb8, 0xfe, 0xf8, 0xa6, 0xaa, 0xfe, - 0xdf, 0xd2, 0x77, 0x32, 0x30, 0x30, 0x32, 0x77, 0xd2, 0x01, 0x21, 0xaa, - 0xa6, 0x01, 0x08, 0xb8, 0x63, 0x2c, 0x2a, 0x9c, 0x20, 0x2e, 0x46, 0x8a, - 0xcf, 0x88, 0x8d, 0xe5, 0xa4, 0x59, 0x24, 0x26, 0x01, 0xbd, 0xfe, 0x43, - 0x26, 0x24, 0x59, 0xa4, 0xe5, 0x8d, 0x88, 0xcf, 0x8a, 0x46, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x05, 0xf4, 0x04, 0x4a, 0x00, 0x2c, 0x00, 0xe7, - 0x40, 0x09, 0x65, 0x10, 0x01, 0xc9, 0x22, 0xf9, 0x22, 0x02, 0x21, 0xb8, - 0xff, 0xf0, 0xb3, 0x0a, 0x10, 0x48, 0x2c, 0xb8, 0xff, 0xf0, 0xb3, 0x12, - 0x1b, 0x48, 0x2c, 0xb8, 0xff, 0xf0, 0x40, 0x19, 0x0a, 0x0f, 0x48, 0x00, - 0x10, 0x0a, 0x1b, 0x48, 0x26, 0x0d, 0x22, 0x0e, 0x21, 0x22, 0x15, 0x2c, - 0x00, 0x06, 0x56, 0x0f, 0x66, 0x0f, 0x02, 0x0f, 0x0e, 0xb8, 0xff, 0xf0, - 0x40, 0x48, 0x1f, 0x0e, 0x01, 0x6f, 0x0e, 0x7f, 0x0e, 0x9f, 0x0e, 0xdf, - 0x0e, 0x04, 0x59, 0x0e, 0x01, 0x4f, 0x0e, 0x01, 0x74, 0x15, 0x01, 0x6b, - 0x15, 0x01, 0x24, 0x15, 0x34, 0x15, 0x02, 0x24, 0x06, 0x34, 0x06, 0x44, - 0x06, 0x74, 0x06, 0x94, 0x06, 0x05, 0x0e, 0x06, 0x15, 0x15, 0x0e, 0x06, - 0x03, 0x01, 0x1b, 0x47, 0x00, 0x1c, 0x10, 0x1c, 0x02, 0x07, 0x1c, 0x1c, - 0x2e, 0x10, 0x2e, 0x20, 0x2e, 0x30, 0x2e, 0xd0, 0x2e, 0xe0, 0x2e, 0x05, - 0x02, 0x01, 0xb8, 0xff, 0xf0, 0x40, 0x1e, 0x01, 0x26, 0x40, 0x15, 0x1d, - 0x48, 0x26, 0x20, 0x0c, 0x14, 0x48, 0x26, 0x0d, 0x10, 0x03, 0x1b, 0x0e, - 0x01, 0x0f, 0x15, 0x06, 0x26, 0x06, 0x36, 0x06, 0x02, 0x06, 0x22, 0x00, - 0x15, 0x00, 0x3f, 0x32, 0x32, 0x5d, 0x11, 0x33, 0x3f, 0x33, 0x33, 0x17, - 0x39, 0x2b, 0x2b, 0x01, 0x2f, 0x38, 0x33, 0x5d, 0x11, 0x33, 0x2f, 0x5e, - 0x5d, 0xe1, 0x12, 0x17, 0x39, 0x3d, 0x2f, 0x2f, 0x18, 0x2f, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x38, 0x33, 0x5d, 0x11, 0x33, 0x33, - 0x11, 0x33, 0x33, 0x11, 0x12, 0x39, 0x39, 0x2b, 0x2b, 0x2b, 0x2b, 0x5d, - 0x31, 0x30, 0x5d, 0x21, 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x33, 0x3e, - 0x03, 0x37, 0x13, 0x03, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, - 0x35, 0x33, 0x14, 0x02, 0x02, 0x06, 0x07, 0x23, 0x03, 0x26, 0x26, 0x35, - 0x0e, 0x03, 0x07, 0x03, 0x01, 0x77, 0xfe, 0x89, 0xbc, 0xe0, 0x1c, 0x26, - 0x09, 0x07, 0x07, 0x15, 0x1a, 0x1d, 0x0f, 0x77, 0xa2, 0xbc, 0xc9, 0x0c, - 0x1f, 0x1e, 0x18, 0x05, 0x07, 0x5a, 0x72, 0x41, 0x19, 0xb7, 0x25, 0x5c, - 0x9a, 0x75, 0xc0, 0x77, 0x0c, 0x0d, 0x01, 0x06, 0x09, 0x0a, 0x04, 0x98, - 0x04, 0x4a, 0xfd, 0x56, 0x57, 0x9d, 0x33, 0x16, 0x3a, 0x41, 0x45, 0x20, - 0x01, 0x0c, 0x01, 0xcf, 0xfd, 0xb0, 0x21, 0x63, 0x67, 0x5c, 0x19, 0x67, - 0xd0, 0xe2, 0xff, 0x98, 0xa3, 0xfe, 0xdf, 0xfe, 0xf5, 0xfc, 0x7f, 0x01, - 0x54, 0x20, 0x35, 0x03, 0x01, 0x13, 0x1b, 0x1d, 0x0a, 0xfe, 0xaa, 0x00, - 0x00, 0x02, 0x00, 0x14, 0x00, 0x00, 0x04, 0xbc, 0x06, 0x14, 0x00, 0x16, - 0x00, 0x21, 0x00, 0x9b, 0x40, 0x0a, 0x13, 0x00, 0x17, 0x5a, 0x0c, 0x15, - 0x15, 0x06, 0x10, 0x0c, 0xb8, 0xff, 0xc0, 0x40, 0x0d, 0x1a, 0x27, 0x48, - 0x20, 0x0c, 0x01, 0x02, 0x90, 0x0c, 0xa0, 0x0c, 0x02, 0x0c, 0xb8, 0xff, - 0xc0, 0xb3, 0x13, 0x18, 0x48, 0x0c, 0xb8, 0xff, 0xc0, 0x40, 0x40, 0x0b, - 0x0e, 0x48, 0x0c, 0x0c, 0x0e, 0x1b, 0x5b, 0x06, 0x67, 0x23, 0x00, 0x23, - 0x30, 0x23, 0x50, 0x23, 0x60, 0x23, 0x80, 0x23, 0x05, 0xe0, 0x23, 0x01, - 0x9f, 0x23, 0x01, 0x50, 0x23, 0x01, 0x0e, 0x21, 0x5f, 0x00, 0x16, 0x0d, - 0x5f, 0x10, 0x13, 0x10, 0xb0, 0x00, 0x01, 0x89, 0x00, 0x01, 0x4f, 0x00, - 0x01, 0x0f, 0x10, 0x01, 0x07, 0x00, 0x10, 0x00, 0x10, 0x11, 0x00, 0x17, - 0x60, 0x0c, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x39, 0x2f, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x10, 0xe1, 0x01, - 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x2b, - 0x2b, 0x5d, 0x5f, 0x71, 0x2b, 0x33, 0x12, 0x39, 0x2f, 0x10, 0xe1, 0x32, - 0x32, 0x31, 0x30, 0x01, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, - 0x23, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x02, 0x0a, - 0x96, 0x98, 0xcf, 0x7e, 0x37, 0x3c, 0x7e, 0xc2, 0x86, 0xfe, 0x96, 0xfe, - 0xc4, 0x01, 0x3c, 0xba, 0x01, 0x79, 0xfe, 0x87, 0xa0, 0xae, 0xa4, 0x2e, - 0x5b, 0x8b, 0x5d, 0x81, 0x03, 0x4e, 0x42, 0x71, 0x98, 0x57, 0x61, 0x9e, - 0x70, 0x3d, 0x04, 0x60, 0xa4, 0x01, 0x10, 0xfe, 0xf0, 0xa4, 0xfc, 0x40, - 0x84, 0x88, 0x46, 0x61, 0x3c, 0x1b, 0x00, 0x02, 0x00, 0x14, 0x00, 0x00, - 0x04, 0x6d, 0x05, 0x27, 0x00, 0x14, 0x00, 0x21, 0x00, 0x81, 0x40, 0x09, - 0x13, 0x02, 0x16, 0x47, 0x10, 0x00, 0x0c, 0x01, 0x0c, 0xb8, 0xff, 0xc0, - 0x40, 0x47, 0x0d, 0x1a, 0x48, 0x0c, 0x00, 0x0c, 0x00, 0x0e, 0x1c, 0x47, - 0x06, 0x57, 0x23, 0x00, 0x23, 0x10, 0x23, 0x02, 0x70, 0x23, 0x90, 0x23, - 0xc0, 0x23, 0xe0, 0x23, 0x04, 0x0e, 0x15, 0x50, 0x02, 0x01, 0x0d, 0x50, - 0x10, 0x13, 0x10, 0x0f, 0x02, 0x1f, 0x02, 0x02, 0x02, 0x40, 0x0c, 0x1e, - 0x48, 0x0f, 0x10, 0x01, 0x0f, 0x10, 0x1f, 0x10, 0x02, 0x07, 0x02, 0x10, - 0x02, 0x10, 0x7f, 0x11, 0x01, 0x30, 0x11, 0x01, 0x11, 0x16, 0x50, 0x0c, - 0x15, 0x00, 0x3f, 0xe1, 0x2f, 0x5d, 0x5d, 0x39, 0x39, 0x2f, 0x2f, 0x5e, - 0x5d, 0x71, 0x2b, 0x5d, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x10, 0xe1, 0x01, - 0x2f, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x2b, - 0x5d, 0x33, 0xe1, 0x32, 0x32, 0x31, 0x30, 0x01, 0x21, 0x11, 0x21, 0x32, - 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x23, 0x35, 0x33, 0x35, - 0x33, 0x15, 0x21, 0x01, 0x11, 0x21, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, - 0x02, 0x23, 0x02, 0xe3, 0xfe, 0xd5, 0x01, 0x15, 0xd3, 0xcd, 0x2f, 0x65, - 0x9f, 0x71, 0xfe, 0x39, 0xee, 0xee, 0xb6, 0x01, 0x2b, 0xfe, 0xd5, 0x01, - 0x04, 0x37, 0x5e, 0x43, 0x26, 0x21, 0x41, 0x60, 0x40, 0x03, 0xb0, 0xfe, - 0xd7, 0x9c, 0x9b, 0x4d, 0x7c, 0x58, 0x2f, 0x03, 0xb0, 0x9a, 0xdd, 0xdd, - 0xfd, 0xa4, 0xfe, 0xa8, 0x11, 0x29, 0x42, 0x30, 0x31, 0x42, 0x28, 0x11, - 0x00, 0x01, 0x00, 0xc7, 0xff, 0xec, 0x06, 0xec, 0x05, 0xcb, 0x00, 0x2d, - 0x00, 0x58, 0x40, 0x2f, 0x08, 0x05, 0x5b, 0x1b, 0x22, 0x07, 0x11, 0x11, - 0x07, 0x22, 0x03, 0x1e, 0x2a, 0x2a, 0x2f, 0x21, 0x1d, 0x5a, 0x1e, 0x64, - 0x2e, 0x2b, 0x00, 0x5f, 0x27, 0x04, 0x1b, 0x08, 0x1c, 0x5f, 0x22, 0x05, - 0x0f, 0x21, 0x01, 0x08, 0x21, 0x21, 0x1f, 0x03, 0x1e, 0x12, 0x0d, 0x5f, - 0x10, 0x16, 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0x39, 0x2f, 0x5e, - 0x5d, 0x33, 0x33, 0xe1, 0x32, 0x32, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x12, 0x17, 0x39, 0x18, 0x2f, 0x2f, - 0x2f, 0x33, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x22, 0x0e, 0x02, 0x07, 0x21, - 0x15, 0x21, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x37, 0x15, 0x0e, 0x03, 0x23, - 0x22, 0x26, 0x26, 0x02, 0x27, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, - 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x05, 0x6d, 0x5f, - 0xa0, 0x78, 0x4d, 0x0d, 0x02, 0x74, 0xfd, 0x86, 0x05, 0x40, 0x75, 0xac, - 0x71, 0x59, 0xa0, 0x4e, 0x27, 0x4e, 0x56, 0x61, 0x3a, 0x9e, 0xeb, 0x9d, - 0x52, 0x05, 0xfe, 0xb0, 0xba, 0xba, 0x01, 0x56, 0x0e, 0x63, 0xa7, 0xe9, - 0x95, 0x6c, 0xc4, 0x4f, 0x4e, 0x3f, 0x95, 0x05, 0x27, 0x41, 0x7a, 0xaf, - 0x6f, 0xa2, 0x82, 0xc9, 0x8a, 0x48, 0x23, 0x17, 0xa2, 0x0f, 0x17, 0x0e, - 0x07, 0x64, 0xb8, 0x01, 0x03, 0x9f, 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, - 0x8f, 0xeb, 0xa7, 0x5c, 0x2c, 0x2a, 0x9c, 0x20, 0x2e, 0x00, 0x00, 0x01, - 0x00, 0xae, 0xff, 0xec, 0x05, 0x71, 0x04, 0x5e, 0x00, 0x29, 0x00, 0x64, - 0x40, 0x39, 0x20, 0x1d, 0x48, 0x05, 0x4f, 0x0c, 0x01, 0x0c, 0x1f, 0x0c, - 0x1f, 0x08, 0x27, 0x14, 0x14, 0x2b, 0x0b, 0x07, 0x47, 0x08, 0x54, 0x2a, - 0x1a, 0x51, 0x15, 0x11, 0x10, 0x20, 0x05, 0x06, 0x50, 0x1d, 0x0c, 0xa9, - 0x0b, 0xb9, 0x0b, 0x02, 0x0f, 0x0b, 0x1f, 0x0b, 0x2f, 0x0b, 0x03, 0x06, - 0x0b, 0x0b, 0x09, 0x0f, 0x08, 0x15, 0x23, 0x51, 0x26, 0x00, 0x16, 0x00, - 0x3f, 0x32, 0xe1, 0x3f, 0x3f, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x33, 0x33, - 0xe1, 0x32, 0x32, 0x3f, 0x33, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x11, - 0x33, 0x7d, 0x2f, 0x33, 0x12, 0x39, 0x39, 0x18, 0x2f, 0x2f, 0x5d, 0x33, - 0xe1, 0x32, 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x27, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, - 0x03, 0x23, 0x22, 0x06, 0x07, 0x21, 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x15, 0x06, 0x06, 0x04, 0x54, 0x61, 0xa9, 0x81, 0x4f, 0x07, - 0xfe, 0xf1, 0xb6, 0xb6, 0x01, 0x13, 0x0c, 0x55, 0x81, 0xa5, 0x5e, 0x4e, - 0x95, 0x32, 0x36, 0x17, 0x38, 0x3c, 0x3b, 0x19, 0x8c, 0x91, 0x0e, 0x01, - 0xdb, 0xfe, 0x23, 0x09, 0x92, 0x8a, 0x52, 0x82, 0x36, 0x35, 0x7c, 0x14, - 0x3a, 0x7b, 0xc1, 0x87, 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x80, 0xb5, - 0x72, 0x34, 0x22, 0x19, 0x9a, 0x0a, 0x13, 0x0f, 0x09, 0x97, 0xa6, 0x9a, - 0xb8, 0xa4, 0x25, 0x19, 0xa2, 0x1d, 0x1e, 0x00, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x00, 0x05, 0x2f, 0x05, 0xb6, 0x00, 0x0b, 0x00, 0x18, 0x00, 0xae, - 0x40, 0x49, 0x08, 0x06, 0x01, 0xd8, 0x06, 0xe8, 0x06, 0x02, 0x07, 0x07, - 0x01, 0xd7, 0x07, 0xe7, 0x07, 0x02, 0xa6, 0x07, 0x01, 0x9b, 0x01, 0x01, - 0x77, 0x00, 0xa7, 0x00, 0x02, 0x0d, 0x0a, 0x09, 0x0c, 0x03, 0x04, 0x07, - 0x06, 0x13, 0x13, 0x08, 0xa7, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x09, - 0x00, 0x08, 0x01, 0x00, 0x08, 0x10, 0x08, 0x20, 0x08, 0x70, 0x08, 0x80, - 0x08, 0xc0, 0x08, 0x06, 0x08, 0x10, 0x08, 0x08, 0x1a, 0x90, 0x1a, 0xa0, - 0x1a, 0x02, 0x1a, 0xb8, 0xff, 0xc0, 0x40, 0x0f, 0x15, 0x18, 0x48, 0x8f, - 0x1a, 0x01, 0x40, 0x1a, 0x01, 0x0f, 0x1a, 0x01, 0x08, 0x04, 0x05, 0xb8, - 0xff, 0xf0, 0x40, 0x13, 0x05, 0x0b, 0x03, 0x5f, 0x13, 0x10, 0x0a, 0x0e, - 0x48, 0x13, 0x0c, 0x0c, 0x06, 0x04, 0x00, 0x09, 0x12, 0x06, 0x03, 0x00, - 0x3f, 0x3f, 0x33, 0x33, 0x12, 0x39, 0x2f, 0x39, 0x2b, 0xe1, 0x32, 0x01, - 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x2b, 0x5d, 0x11, 0x33, 0x2f, - 0x38, 0x5d, 0x71, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x5d, 0x11, 0x39, 0x3d, - 0x2f, 0x33, 0x33, 0x12, 0x39, 0x39, 0x12, 0x39, 0x39, 0x5d, 0x5d, 0x5d, - 0x5d, 0x71, 0x5d, 0x71, 0x31, 0x30, 0x21, 0x23, 0x11, 0x23, 0x01, 0x23, - 0x01, 0x33, 0x01, 0x23, 0x01, 0x23, 0x27, 0x21, 0x27, 0x2e, 0x03, 0x27, - 0x0e, 0x03, 0x07, 0x02, 0xec, 0xa6, 0x7f, 0xfe, 0xfe, 0xc5, 0x02, 0x39, - 0xbb, 0x02, 0x3b, 0xc7, 0xfe, 0xfe, 0x7a, 0xe8, 0x01, 0x23, 0x35, 0x12, - 0x1c, 0x16, 0x11, 0x07, 0x09, 0x11, 0x15, 0x19, 0x11, 0x02, 0xaa, 0xfd, - 0x56, 0x05, 0xb6, 0xfa, 0x4a, 0x02, 0xaa, 0xa4, 0x8f, 0x30, 0x4c, 0x43, - 0x41, 0x25, 0x25, 0x41, 0x43, 0x49, 0x2d, 0x00, 0x00, 0x02, 0x00, 0x0a, - 0x00, 0x00, 0x04, 0x5a, 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x17, 0x00, 0xcf, - 0x40, 0x38, 0x39, 0x02, 0x59, 0x02, 0x79, 0x02, 0x89, 0x02, 0x04, 0x1b, - 0x02, 0x2b, 0x02, 0x02, 0xb5, 0x05, 0x01, 0x96, 0x05, 0xa6, 0x05, 0x02, - 0x87, 0x05, 0x01, 0x09, 0x03, 0x19, 0x03, 0x02, 0x06, 0x08, 0x16, 0x08, - 0x02, 0x09, 0x12, 0x19, 0x12, 0x02, 0x06, 0x11, 0x16, 0x11, 0x02, 0x07, - 0x12, 0x03, 0x02, 0x11, 0x08, 0x09, 0xb6, 0x00, 0x01, 0x00, 0xb8, 0xff, - 0xf8, 0x40, 0x1b, 0x0a, 0x0f, 0x48, 0xb9, 0x0b, 0x01, 0x0b, 0x08, 0x0a, - 0x0f, 0x48, 0x00, 0x0b, 0xb4, 0x0c, 0x01, 0x0c, 0x0c, 0x05, 0x05, 0x06, - 0x06, 0x0a, 0x01, 0x10, 0x02, 0x01, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, - 0x48, 0x01, 0xb8, 0xff, 0xc0, 0x40, 0x18, 0x07, 0x0b, 0x48, 0x01, 0x01, - 0x19, 0xc0, 0x19, 0xe0, 0x19, 0x02, 0xaf, 0x19, 0x01, 0x50, 0x19, 0x01, - 0x0f, 0x19, 0x1f, 0x19, 0x02, 0x09, 0x0a, 0xb8, 0xff, 0xf0, 0x40, 0x0f, - 0x0a, 0x04, 0x08, 0x50, 0x0c, 0x0b, 0x11, 0x11, 0x01, 0x0b, 0x0f, 0x0a, - 0x06, 0x01, 0x15, 0x00, 0x3f, 0x33, 0x33, 0x3f, 0x12, 0x39, 0x2f, 0x12, - 0x39, 0xe1, 0x32, 0x01, 0x2f, 0x38, 0x33, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, - 0x33, 0x2f, 0x2b, 0x2b, 0x33, 0x38, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, - 0x3d, 0x2f, 0x5d, 0x33, 0x33, 0x2b, 0x5d, 0x2b, 0x5d, 0x12, 0x39, 0x39, - 0x12, 0x39, 0x39, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x31, - 0x30, 0x5d, 0x5d, 0x01, 0x01, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, - 0x03, 0x23, 0x01, 0x17, 0x0e, 0x03, 0x07, 0x33, 0x2e, 0x03, 0x27, 0x02, - 0xa6, 0x01, 0xb4, 0xbc, 0xbb, 0x60, 0xa2, 0x60, 0xba, 0xbd, 0x01, 0xb4, - 0x71, 0x05, 0x1b, 0x23, 0x25, 0x0d, 0xf0, 0x0e, 0x25, 0x23, 0x1b, 0x04, - 0x04, 0x4a, 0xfb, 0xb6, 0x01, 0xe9, 0xfe, 0x17, 0x01, 0xe9, 0xfe, 0x17, - 0x04, 0x4a, 0x79, 0x19, 0x55, 0x60, 0x5e, 0x22, 0x22, 0x5f, 0x60, 0x54, - 0x19, 0x00, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x07, 0x29, 0x05, 0xb6, - 0x00, 0x13, 0x00, 0x20, 0x00, 0xbf, 0x40, 0x1b, 0x9b, 0x01, 0x01, 0x77, - 0x00, 0xa7, 0x00, 0x02, 0x0d, 0x06, 0x0e, 0x05, 0x15, 0x12, 0x11, 0x14, - 0x03, 0x1b, 0x04, 0x04, 0x05, 0x00, 0x01, 0x0f, 0x0e, 0x1b, 0x05, 0xb8, - 0xff, 0xf0, 0x40, 0x5d, 0x80, 0x01, 0x01, 0xcb, 0x1b, 0x01, 0x84, 0x1b, - 0x01, 0x2b, 0x1b, 0x7b, 0x1b, 0x02, 0x0f, 0x05, 0x1f, 0x05, 0x2f, 0x05, - 0x7f, 0x05, 0xcf, 0x05, 0xdf, 0x05, 0xff, 0x05, 0x07, 0x08, 0x05, 0x01, - 0x1b, 0x1b, 0x01, 0x05, 0x03, 0x11, 0x10, 0x10, 0x00, 0x10, 0x10, 0x10, - 0x70, 0x10, 0xb0, 0x10, 0xf0, 0x10, 0x05, 0x10, 0x10, 0x22, 0x30, 0x22, - 0x50, 0x22, 0xc0, 0x22, 0xd0, 0x22, 0xe0, 0x22, 0x05, 0x0c, 0x08, 0x5a, - 0x09, 0x64, 0x21, 0x13, 0x06, 0x03, 0x5f, 0x0d, 0x1b, 0x20, 0x09, 0x10, - 0x48, 0x1b, 0x14, 0x14, 0x0e, 0x09, 0x04, 0x01, 0x11, 0x12, 0x0a, 0x0e, - 0x03, 0x00, 0x3f, 0x33, 0x3f, 0x33, 0x33, 0x33, 0x12, 0x39, 0x2f, 0x39, - 0x2b, 0x33, 0xe1, 0x32, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x11, - 0x33, 0x2f, 0x5d, 0x38, 0x33, 0x17, 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x2f, - 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x38, 0x11, 0x33, 0x33, 0x11, 0x33, - 0x11, 0x33, 0x11, 0x12, 0x39, 0x39, 0x11, 0x39, 0x39, 0x11, 0x12, 0x39, - 0x39, 0x5d, 0x5d, 0x31, 0x30, 0x21, 0x23, 0x11, 0x23, 0x01, 0x23, 0x01, - 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x13, 0x33, 0x01, 0x23, 0x01, - 0x23, 0x27, 0x21, 0x27, 0x2e, 0x03, 0x27, 0x0e, 0x03, 0x07, 0x04, 0xe7, - 0xa5, 0x81, 0xfe, 0xfd, 0xc4, 0x01, 0x08, 0xfe, 0x7f, 0xba, 0xba, 0x01, - 0xc1, 0xf1, 0xbb, 0x02, 0x3b, 0xc7, 0xfe, 0xfe, 0x79, 0xe9, 0x01, 0x23, - 0x35, 0x13, 0x1c, 0x15, 0x11, 0x08, 0x08, 0x11, 0x15, 0x19, 0x11, 0x02, - 0xaa, 0xfd, 0x56, 0x02, 0xaa, 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, - 0x68, 0xfa, 0x4a, 0x02, 0xaa, 0xa4, 0x8f, 0x30, 0x4c, 0x43, 0x41, 0x25, - 0x25, 0x41, 0x43, 0x49, 0x2d, 0x00, 0x00, 0x02, 0x00, 0xae, 0x00, 0x00, - 0x06, 0x08, 0x04, 0x4a, 0x00, 0x13, 0x00, 0x1f, 0x00, 0xeb, 0x40, 0x31, - 0xa5, 0x05, 0x01, 0x86, 0x05, 0x96, 0x05, 0x02, 0x77, 0x05, 0x01, 0x06, - 0x09, 0x16, 0x09, 0x02, 0x19, 0x02, 0x29, 0x02, 0x49, 0x02, 0x69, 0x02, - 0x79, 0x02, 0x05, 0x0b, 0x02, 0x01, 0x1a, 0x03, 0x02, 0x19, 0x08, 0x14, - 0x09, 0x12, 0x0b, 0x13, 0x0a, 0x11, 0x0d, 0x47, 0x0e, 0xc6, 0x00, 0x01, - 0x00, 0xb8, 0xff, 0xf8, 0x40, 0x17, 0x0a, 0x0f, 0x48, 0xc9, 0x13, 0x01, - 0x13, 0x08, 0x0a, 0x0f, 0x48, 0x00, 0x13, 0xc4, 0x14, 0x01, 0x14, 0x14, - 0x05, 0x05, 0x06, 0x09, 0x0a, 0xb8, 0xff, 0xf0, 0x40, 0x13, 0x2f, 0x0a, - 0x3f, 0x0a, 0xaf, 0x0a, 0x03, 0x0a, 0x06, 0x0a, 0x06, 0x01, 0x0e, 0x54, - 0x20, 0x02, 0x01, 0x10, 0x01, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, - 0x01, 0xb8, 0xff, 0xc0, 0x40, 0x2c, 0x07, 0x0b, 0x48, 0x01, 0x01, 0x21, - 0xd0, 0x21, 0x01, 0xbf, 0x21, 0x01, 0x60, 0x21, 0x70, 0x21, 0x90, 0x21, - 0x03, 0x4f, 0x21, 0x01, 0x00, 0x21, 0x01, 0x08, 0x0b, 0x04, 0x08, 0x50, - 0x12, 0x14, 0x13, 0x19, 0x19, 0x02, 0x0f, 0x13, 0x0f, 0x0e, 0x09, 0x06, - 0x02, 0x15, 0x00, 0x3f, 0x33, 0x33, 0x33, 0x3f, 0x33, 0x12, 0x39, 0x2f, - 0x12, 0x39, 0x33, 0xe1, 0x32, 0x32, 0x01, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x2b, 0x38, 0x33, 0x10, 0xe6, 0x11, 0x39, - 0x39, 0x2f, 0x2f, 0x5d, 0x38, 0x33, 0x11, 0x33, 0x12, 0x39, 0x3d, 0x2f, - 0x5d, 0x33, 0x33, 0x2b, 0x5d, 0x2b, 0x5d, 0x10, 0xe1, 0x32, 0x11, 0x12, - 0x39, 0x39, 0x11, 0x12, 0x39, 0x39, 0x11, 0x39, 0x39, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x01, 0x23, 0x03, 0x23, 0x11, 0x23, - 0x11, 0x23, 0x03, 0x23, 0x13, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, - 0x13, 0x17, 0x0e, 0x03, 0x07, 0x33, 0x2e, 0x03, 0x27, 0x04, 0x54, 0x01, - 0xb4, 0xbc, 0xbb, 0x60, 0xa2, 0x60, 0xba, 0xbd, 0xc3, 0xfe, 0xe9, 0xb6, - 0xb6, 0x01, 0x54, 0xb5, 0x70, 0x05, 0x1b, 0x23, 0x25, 0x0d, 0xf0, 0x0e, - 0x25, 0x23, 0x1b, 0x04, 0x04, 0x4a, 0xfb, 0xb6, 0x01, 0xe9, 0xfe, 0x17, - 0x01, 0xe9, 0xfe, 0x17, 0x01, 0xe9, 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, - 0x01, 0xc7, 0x79, 0x19, 0x54, 0x60, 0x5f, 0x22, 0x22, 0x5f, 0x60, 0x54, - 0x19, 0x00, 0x00, 0x02, 0x00, 0x14, 0x00, 0x00, 0x05, 0x6a, 0x05, 0xb6, - 0x00, 0x23, 0x00, 0x26, 0x00, 0xc0, 0x40, 0x11, 0x86, 0x22, 0x01, 0x86, - 0x1a, 0x01, 0x59, 0x12, 0x89, 0x12, 0x02, 0x25, 0x10, 0x09, 0x0c, 0x48, - 0x26, 0xb8, 0xff, 0xf0, 0x40, 0x2c, 0x09, 0x0c, 0x48, 0x25, 0x0a, 0x0b, - 0x06, 0x24, 0x24, 0x1a, 0x5a, 0x1b, 0x26, 0x07, 0x00, 0x0a, 0x10, 0x0a, - 0x20, 0x0a, 0x03, 0x0a, 0x1b, 0x07, 0x07, 0x1b, 0x0a, 0x03, 0x00, 0x12, - 0x10, 0x11, 0x20, 0x11, 0x02, 0xd0, 0x11, 0x01, 0x80, 0x11, 0x90, 0x11, - 0x02, 0x11, 0xb8, 0xff, 0xc0, 0x40, 0x3b, 0x07, 0x0a, 0x48, 0x11, 0x11, - 0x28, 0x1f, 0x28, 0x01, 0xf0, 0x28, 0x01, 0xcf, 0x28, 0xdf, 0x28, 0x02, - 0x40, 0x28, 0x50, 0x28, 0x70, 0x28, 0x03, 0x0f, 0x28, 0x3f, 0x28, 0x02, - 0x07, 0x23, 0x00, 0x19, 0x1c, 0x61, 0x24, 0x0b, 0x4f, 0x06, 0x01, 0x0f, - 0x06, 0xaf, 0x06, 0x02, 0x08, 0x06, 0x06, 0x00, 0x0a, 0x07, 0x26, 0x5f, - 0x08, 0x03, 0x1b, 0x12, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x32, 0x3f, 0xe1, - 0x32, 0x32, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0x33, 0x33, 0xe1, 0x32, - 0x01, 0x2f, 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x33, 0x2f, - 0x2b, 0x5d, 0x5d, 0x71, 0x33, 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x5d, - 0x11, 0x33, 0x10, 0xe1, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2b, - 0x2b, 0x5d, 0x5d, 0x31, 0x30, 0x5d, 0x33, 0x13, 0x3e, 0x03, 0x37, 0x01, - 0x35, 0x21, 0x15, 0x01, 0x1e, 0x03, 0x17, 0x13, 0x23, 0x03, 0x2e, 0x03, - 0x23, 0x23, 0x11, 0x23, 0x11, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x03, 0x01, - 0x01, 0x21, 0x14, 0x7b, 0x18, 0x36, 0x54, 0x7c, 0x5f, 0xfe, 0x90, 0x04, - 0x49, 0xfe, 0x85, 0x61, 0x80, 0x56, 0x37, 0x18, 0x7a, 0xbe, 0x7b, 0x14, - 0x26, 0x36, 0x4f, 0x3d, 0x18, 0xbb, 0x18, 0x3d, 0x4f, 0x36, 0x26, 0x14, - 0x7b, 0x01, 0xeb, 0x01, 0x4a, 0xfd, 0x6f, 0x01, 0xc5, 0x55, 0x88, 0x62, - 0x3a, 0x06, 0x01, 0xe7, 0x8b, 0x8b, 0xfe, 0x19, 0x06, 0x38, 0x62, 0x89, - 0x56, 0xfe, 0x3b, 0x01, 0xc1, 0x48, 0x5f, 0x39, 0x17, 0xfd, 0x48, 0x02, - 0xb8, 0x17, 0x39, 0x5f, 0x48, 0xfe, 0x3f, 0x03, 0x5a, 0x01, 0xb8, 0x00, - 0x00, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x04, 0xe5, 0x04, 0x4a, 0x00, 0x23, - 0x00, 0x26, 0x00, 0xc7, 0x40, 0x0d, 0x76, 0x1a, 0x86, 0x1a, 0x96, 0x1a, - 0x03, 0x25, 0x10, 0x07, 0x0c, 0x48, 0x26, 0xb8, 0xff, 0xf0, 0x40, 0x18, - 0x07, 0x0c, 0x48, 0x09, 0x12, 0x01, 0x06, 0x23, 0x01, 0x0b, 0x06, 0x24, - 0x24, 0x1a, 0x46, 0x1b, 0x25, 0x0a, 0x26, 0x07, 0xa7, 0x1b, 0x01, 0x0a, - 0xb8, 0xff, 0xc0, 0x40, 0x10, 0x16, 0x19, 0x48, 0x0a, 0x1b, 0x07, 0x07, - 0x1b, 0x0a, 0x03, 0x00, 0x12, 0x20, 0x11, 0x01, 0x11, 0xb8, 0xff, 0xc0, - 0xb3, 0x12, 0x15, 0x48, 0x11, 0xb8, 0xff, 0xc0, 0x40, 0x3f, 0x07, 0x0b, - 0x48, 0x11, 0x11, 0x28, 0x10, 0x28, 0x01, 0xcf, 0x28, 0xdf, 0x28, 0x02, - 0x60, 0x28, 0x90, 0x28, 0x02, 0x1f, 0x28, 0x4f, 0x28, 0x02, 0x23, 0x00, - 0x0a, 0x07, 0x26, 0x50, 0x08, 0x19, 0x1c, 0x52, 0x16, 0x24, 0x26, 0x24, - 0x36, 0x24, 0xa6, 0x24, 0x04, 0x24, 0x0b, 0x0f, 0x06, 0x1f, 0x06, 0x4f, - 0x06, 0x5f, 0x06, 0x04, 0x07, 0x06, 0x06, 0x08, 0x0f, 0x1b, 0x12, 0x00, - 0x15, 0x00, 0x3f, 0x32, 0x32, 0x3f, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0x33, - 0x5d, 0xe1, 0x32, 0x10, 0xe1, 0x32, 0x32, 0x01, 0x2f, 0x33, 0x5d, 0x5d, - 0x5d, 0x71, 0x11, 0x33, 0x2f, 0x2b, 0x2b, 0x71, 0x33, 0x12, 0x17, 0x39, - 0x2f, 0x2f, 0x2f, 0x2b, 0x5d, 0x11, 0x33, 0x11, 0x33, 0x10, 0xe1, 0x39, - 0x3d, 0x2f, 0x33, 0x33, 0x5d, 0x5d, 0x2b, 0x2b, 0x5d, 0x31, 0x30, 0x33, - 0x13, 0x3e, 0x03, 0x37, 0x01, 0x35, 0x21, 0x15, 0x01, 0x1e, 0x03, 0x17, - 0x13, 0x23, 0x03, 0x2e, 0x03, 0x23, 0x23, 0x11, 0x23, 0x11, 0x23, 0x22, - 0x0e, 0x02, 0x07, 0x03, 0x01, 0x13, 0x21, 0x0a, 0x7b, 0x16, 0x2c, 0x42, - 0x67, 0x53, 0xfe, 0xce, 0x03, 0xcf, 0xfe, 0xc9, 0x53, 0x68, 0x43, 0x2c, - 0x17, 0x7b, 0xba, 0x7b, 0x14, 0x24, 0x30, 0x44, 0x35, 0x04, 0xa6, 0x04, - 0x35, 0x46, 0x30, 0x25, 0x14, 0x7a, 0x01, 0xb4, 0xfc, 0xfe, 0x0a, 0x01, - 0x54, 0x3d, 0x65, 0x4d, 0x31, 0x09, 0x01, 0x64, 0x69, 0x69, 0xfe, 0x9c, - 0x08, 0x31, 0x4c, 0x67, 0x3d, 0xfe, 0xac, 0x01, 0x50, 0x36, 0x48, 0x2b, - 0x11, 0xfd, 0xf6, 0x02, 0x0a, 0x11, 0x2b, 0x48, 0x36, 0xfe, 0xb0, 0x02, - 0x83, 0x01, 0x2d, 0x00, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x07, 0x89, - 0x05, 0xb6, 0x00, 0x28, 0x00, 0x2b, 0x00, 0xca, 0x40, 0x15, 0x86, 0x1f, - 0x01, 0x59, 0x17, 0x89, 0x17, 0x02, 0x10, 0x0b, 0x29, 0x29, 0x1f, 0x5a, - 0x20, 0x2a, 0x10, 0x09, 0x0c, 0x48, 0x2b, 0xb8, 0xff, 0xf0, 0x40, 0x33, - 0x09, 0x0c, 0x48, 0x2a, 0x0f, 0x2b, 0x0c, 0x00, 0x0f, 0x10, 0x0f, 0x20, - 0x0f, 0x03, 0x07, 0x0f, 0x0c, 0x20, 0x20, 0x0c, 0x0f, 0x03, 0x16, 0x28, - 0xb0, 0x00, 0xc0, 0x00, 0x02, 0x0f, 0x00, 0x1f, 0x00, 0x02, 0x00, 0x00, - 0x07, 0x17, 0x00, 0x16, 0x10, 0x16, 0x02, 0x70, 0x16, 0x80, 0x16, 0xc0, - 0x16, 0x03, 0x16, 0xb8, 0xff, 0xc0, 0x40, 0x34, 0x07, 0x0a, 0x48, 0x16, - 0x16, 0x2d, 0xe0, 0x2d, 0x01, 0x9f, 0x2d, 0xbf, 0x2d, 0x02, 0x40, 0x2d, - 0x01, 0x2f, 0x2d, 0x01, 0x0a, 0x06, 0x5a, 0x07, 0x64, 0x2c, 0x0f, 0x0c, - 0x2b, 0x5f, 0x0d, 0x1e, 0x05, 0x21, 0x61, 0x29, 0x10, 0x0f, 0x0b, 0x01, - 0x08, 0x0b, 0x0b, 0x08, 0x0d, 0x03, 0x07, 0x17, 0x20, 0x03, 0x00, 0x12, - 0x00, 0x3f, 0x17, 0x32, 0x3f, 0x33, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0x33, - 0xe1, 0x32, 0x32, 0x10, 0xe1, 0x32, 0x32, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x71, 0x33, 0x12, - 0x39, 0x2f, 0x5d, 0x5d, 0x33, 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x5e, - 0x5d, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x2b, 0x10, 0xe1, 0x39, 0x3d, 0x2f, - 0x33, 0x33, 0x5d, 0x5d, 0x31, 0x30, 0x21, 0x13, 0x36, 0x36, 0x37, 0x21, - 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x01, 0x35, 0x21, 0x15, 0x01, 0x1e, - 0x03, 0x17, 0x13, 0x23, 0x03, 0x2e, 0x03, 0x23, 0x23, 0x11, 0x23, 0x11, - 0x23, 0x22, 0x0e, 0x02, 0x07, 0x03, 0x01, 0x01, 0x21, 0x02, 0x33, 0x7b, - 0x13, 0x29, 0x1c, 0xfe, 0x7b, 0xba, 0xba, 0x02, 0xa4, 0xfe, 0x95, 0x04, - 0x4a, 0xfe, 0x85, 0x61, 0x80, 0x55, 0x37, 0x18, 0x7b, 0xbe, 0x7b, 0x14, - 0x26, 0x36, 0x4f, 0x3d, 0x19, 0xba, 0x19, 0x3c, 0x4f, 0x36, 0x26, 0x14, - 0x7b, 0x01, 0xeb, 0x01, 0x4a, 0xfd, 0x6f, 0x01, 0xc5, 0x44, 0x73, 0x2e, - 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x01, 0xdd, 0x8b, 0x8b, 0xfe, 0x19, - 0x06, 0x38, 0x62, 0x89, 0x56, 0xfe, 0x3b, 0x01, 0xc1, 0x48, 0x5f, 0x39, - 0x17, 0xfd, 0x48, 0x02, 0xb8, 0x17, 0x39, 0x5f, 0x48, 0xfe, 0x3f, 0x03, - 0x5a, 0x01, 0xb8, 0x00, 0x00, 0x02, 0x00, 0xae, 0x00, 0x00, 0x06, 0x98, - 0x04, 0x4a, 0x00, 0x28, 0x00, 0x2b, 0x00, 0xcf, 0x40, 0x0d, 0x76, 0x1f, - 0x86, 0x1f, 0x96, 0x1f, 0x03, 0x2a, 0x10, 0x07, 0x0c, 0x48, 0x2b, 0xb8, - 0xff, 0xf0, 0x40, 0x2c, 0x07, 0x0c, 0x48, 0x09, 0x17, 0x01, 0x10, 0x0b, - 0x29, 0x29, 0x1f, 0x46, 0x20, 0x2a, 0x0f, 0x2b, 0x0c, 0xa7, 0x20, 0x01, - 0x0f, 0x20, 0x0c, 0x0c, 0x20, 0x0f, 0x03, 0x16, 0x1f, 0x00, 0x2f, 0x00, - 0x02, 0xff, 0x00, 0x01, 0x00, 0x00, 0x07, 0x17, 0x20, 0x16, 0x01, 0x16, - 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x16, 0xb8, 0xff, 0xc0, 0x40, - 0x3f, 0x07, 0x0b, 0x48, 0x16, 0x16, 0x2d, 0xcf, 0x2d, 0x01, 0xb0, 0x2d, - 0x01, 0x9f, 0x2d, 0x01, 0x60, 0x2d, 0x01, 0x4f, 0x2d, 0x01, 0x00, 0x2d, - 0x30, 0x2d, 0x02, 0x0a, 0x06, 0x47, 0x07, 0x54, 0x2c, 0x0f, 0x0c, 0x2b, - 0x50, 0x0d, 0x1e, 0x05, 0x21, 0x52, 0xa6, 0x29, 0x01, 0x29, 0x10, 0x0f, - 0x0b, 0x1f, 0x0b, 0x02, 0x07, 0x0b, 0x0b, 0x08, 0x0d, 0x0f, 0x07, 0x17, - 0x20, 0x03, 0x00, 0x15, 0x00, 0x3f, 0x17, 0x32, 0x3f, 0x33, 0x39, 0x2f, - 0x5e, 0x5d, 0x33, 0x33, 0x5d, 0xe1, 0x32, 0x32, 0x10, 0xe1, 0x32, 0x32, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, - 0x33, 0x2f, 0x2b, 0x2b, 0x71, 0x33, 0x12, 0x39, 0x2f, 0x5d, 0x71, 0x12, - 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x5d, 0x11, 0x33, 0x11, 0x33, 0x10, 0xe1, - 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x5d, 0x2b, 0x2b, 0x5d, 0x31, 0x30, 0x21, - 0x13, 0x36, 0x36, 0x37, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x01, - 0x35, 0x21, 0x15, 0x01, 0x1e, 0x03, 0x17, 0x13, 0x23, 0x03, 0x2e, 0x03, - 0x23, 0x23, 0x11, 0x23, 0x11, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x03, 0x01, - 0x13, 0x21, 0x01, 0xbc, 0x7b, 0x10, 0x1d, 0x13, 0xfe, 0xed, 0xb6, 0xb6, - 0x02, 0x0b, 0xfe, 0xd5, 0x03, 0xce, 0xfe, 0xc9, 0x53, 0x68, 0x43, 0x2d, - 0x17, 0x7b, 0xbb, 0x7b, 0x14, 0x24, 0x30, 0x44, 0x35, 0x04, 0xa6, 0x04, - 0x35, 0x45, 0x31, 0x24, 0x14, 0x7b, 0x01, 0xb4, 0xfc, 0xfe, 0x0a, 0x01, - 0x54, 0x2a, 0x4b, 0x20, 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0x5e, - 0x69, 0x69, 0xfe, 0x9c, 0x08, 0x31, 0x4c, 0x67, 0x3d, 0xfe, 0xac, 0x01, - 0x50, 0x36, 0x48, 0x2b, 0x11, 0xfd, 0xf6, 0x02, 0x0a, 0x11, 0x2b, 0x48, - 0x36, 0xfe, 0xb0, 0x02, 0x83, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x00, 0x39, - 0xfe, 0x46, 0x03, 0xec, 0x06, 0xd5, 0x00, 0x76, 0x00, 0x9f, 0x40, 0x27, - 0x21, 0x18, 0x09, 0x0e, 0x48, 0x59, 0x62, 0x59, 0x51, 0x4d, 0x4d, 0x47, - 0x51, 0x3b, 0x5b, 0x67, 0x6c, 0x51, 0x67, 0x44, 0x35, 0x67, 0x14, 0x51, - 0x14, 0x67, 0x51, 0x35, 0x44, 0x05, 0x24, 0x2e, 0x5b, 0x72, 0x67, 0x78, - 0x05, 0x5a, 0x24, 0xb8, 0xff, 0xc0, 0x40, 0x36, 0x14, 0x18, 0x48, 0x24, - 0x5d, 0x52, 0x4d, 0x8f, 0x56, 0x9f, 0x56, 0xaf, 0x56, 0x03, 0x56, 0x40, - 0x07, 0x0b, 0x48, 0x56, 0x56, 0x47, 0x6c, 0x34, 0x60, 0x4f, 0x35, 0x01, - 0x0f, 0x35, 0xaf, 0x35, 0x02, 0x08, 0x35, 0x35, 0x29, 0x43, 0x51, 0x62, - 0x03, 0x40, 0x61, 0x47, 0x03, 0x15, 0x0a, 0x5f, 0x1f, 0xfb, 0x29, 0x60, - 0x00, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x17, 0x33, - 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0xe1, 0x39, 0x11, 0x33, 0x2f, 0x2b, - 0x5d, 0x33, 0xe1, 0x01, 0x2f, 0x2b, 0xe1, 0x10, 0xf6, 0xe1, 0x12, 0x17, - 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x2f, 0x2f, 0x2f, 0x11, 0x12, 0x39, 0x10, - 0xe1, 0x11, 0x33, 0x33, 0x2f, 0x11, 0x33, 0x33, 0x2f, 0x31, 0x30, 0x00, - 0x2b, 0x05, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, - 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x15, 0x2e, 0x03, 0x23, 0x22, 0x0e, - 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x37, - 0x2e, 0x03, 0x27, 0x35, 0x33, 0x16, 0x16, 0x17, 0x3e, 0x03, 0x33, 0x32, - 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x1e, 0x03, - 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, - 0x01, 0xe1, 0x47, 0x5a, 0x34, 0x14, 0x0e, 0x24, 0x3d, 0x2f, 0x41, 0x61, - 0x53, 0x51, 0x32, 0x2b, 0x42, 0x31, 0x23, 0x0c, 0x08, 0x1f, 0x36, 0x4d, - 0x35, 0x31, 0x47, 0x4a, 0x5c, 0x46, 0x68, 0x88, 0x4f, 0x20, 0x31, 0x66, - 0x9d, 0x6c, 0x59, 0x80, 0x51, 0x26, 0x39, 0x67, 0x91, 0x58, 0xbf, 0xb0, - 0x5c, 0x8e, 0x61, 0x32, 0x25, 0x44, 0x5f, 0x3a, 0x6e, 0xa9, 0x4b, 0x5c, - 0x3b, 0xa6, 0x67, 0x18, 0x37, 0x36, 0x32, 0x14, 0x79, 0x33, 0x61, 0x36, - 0x1a, 0x3b, 0x43, 0x4b, 0x2a, 0x1f, 0x2f, 0x0e, 0x0b, 0x22, 0x11, 0x16, - 0x30, 0x30, 0x2e, 0x14, 0x52, 0x7e, 0x55, 0x2b, 0x33, 0x5b, 0x7d, 0x4b, - 0x57, 0x8a, 0x5e, 0x32, 0x43, 0x83, 0xc4, 0x14, 0x12, 0x20, 0x29, 0x18, - 0x16, 0x24, 0x1a, 0x0e, 0x04, 0x04, 0x04, 0x07, 0x0a, 0x0f, 0x07, 0xb6, - 0x07, 0x12, 0x10, 0x0c, 0x03, 0x03, 0x02, 0x29, 0x48, 0x60, 0x37, 0x3c, - 0x62, 0x46, 0x26, 0x26, 0x48, 0x69, 0x44, 0x47, 0x65, 0x3f, 0x1d, 0x97, - 0x27, 0x48, 0x64, 0x3e, 0x36, 0x53, 0x3a, 0x1e, 0x43, 0x36, 0x7d, 0x30, - 0x4b, 0x11, 0x1e, 0x41, 0x3f, 0x3a, 0x17, 0x1b, 0x22, 0x61, 0x38, 0x24, - 0x46, 0x38, 0x23, 0x09, 0x05, 0x77, 0x05, 0x07, 0x17, 0x29, 0x38, 0x21, - 0x0d, 0x3f, 0x5c, 0x76, 0x45, 0x4a, 0x77, 0x58, 0x39, 0x0c, 0x06, 0x0b, - 0x39, 0x59, 0x77, 0x48, 0x60, 0xa0, 0x74, 0x40, 0x00, 0x01, 0x00, 0x17, - 0xfe, 0x73, 0x03, 0x52, 0x05, 0x52, 0x00, 0x70, 0x00, 0xb7, 0x40, 0x71, - 0x40, 0x18, 0x09, 0x0e, 0x48, 0x68, 0x68, 0x62, 0x6c, 0x03, 0x0c, 0x03, - 0x6c, 0x58, 0x46, 0x11, 0x16, 0x6c, 0x11, 0xe0, 0x5f, 0x01, 0x5f, 0x52, - 0x11, 0x33, 0x6c, 0x33, 0x11, 0x6c, 0x52, 0x5f, 0x05, 0x43, 0x4d, 0x47, - 0x1c, 0x57, 0x72, 0xc0, 0x72, 0xd0, 0x72, 0xe0, 0x72, 0x03, 0x7f, 0x72, - 0x01, 0x30, 0x72, 0x01, 0x0f, 0x72, 0x01, 0x07, 0x26, 0x46, 0x43, 0x40, - 0x0c, 0x11, 0x48, 0x43, 0x16, 0x16, 0x51, 0x50, 0x89, 0x52, 0x99, 0x52, - 0x02, 0x0f, 0x52, 0x01, 0x08, 0x52, 0x52, 0x62, 0x48, 0x68, 0x07, 0x52, - 0x00, 0x40, 0x10, 0x14, 0x48, 0x00, 0x40, 0x07, 0x0c, 0x48, 0x00, 0x5e, - 0x6c, 0x00, 0x03, 0x5b, 0x50, 0x0c, 0x62, 0x10, 0x34, 0x2b, 0x50, 0x3e, - 0xfb, 0x48, 0x50, 0x21, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x33, 0x3f, - 0x33, 0xe1, 0x17, 0x33, 0x2f, 0x2b, 0x2b, 0xe1, 0x33, 0x11, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0x5d, 0xe1, 0x39, 0x3d, 0x2f, 0x01, 0x18, 0x2f, 0x2b, - 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x17, 0x39, - 0x3d, 0x2f, 0x18, 0x2f, 0x2f, 0x2f, 0x2f, 0x5d, 0x11, 0x12, 0x39, 0x10, - 0xe1, 0x11, 0x33, 0x33, 0x2f, 0x11, 0x33, 0x33, 0x2f, 0x31, 0x30, 0x00, - 0x2b, 0x01, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, - 0x07, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, - 0x32, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x15, 0x2e, 0x03, 0x23, 0x22, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x37, 0x2e, - 0x03, 0x27, 0x35, 0x33, 0x16, 0x16, 0x17, 0x3e, 0x03, 0x02, 0xcf, 0x1f, - 0x2f, 0x0e, 0x0b, 0x21, 0x11, 0x15, 0x2e, 0x2e, 0x2d, 0x13, 0x37, 0x59, - 0x3f, 0x23, 0x1c, 0x33, 0x46, 0x2b, 0x2c, 0x52, 0x3f, 0x26, 0x35, 0x6c, - 0xa6, 0x71, 0x4b, 0x59, 0x2f, 0x0f, 0x0e, 0x22, 0x3a, 0x2c, 0x32, 0x63, - 0x5d, 0x53, 0x21, 0x42, 0x47, 0x0d, 0x09, 0x22, 0x28, 0x2c, 0x13, 0x20, - 0x55, 0x64, 0x6f, 0x39, 0x58, 0x70, 0x40, 0x18, 0x22, 0x56, 0x90, 0x6e, - 0x37, 0x64, 0x4c, 0x2c, 0x85, 0x8a, 0x81, 0x61, 0x3d, 0x64, 0x48, 0x27, - 0x73, 0x6c, 0x47, 0x81, 0x4b, 0x3f, 0x39, 0x6b, 0x41, 0x17, 0x31, 0x30, - 0x2c, 0x12, 0x79, 0x33, 0x62, 0x36, 0x1a, 0x3a, 0x43, 0x4b, 0x05, 0x52, - 0x09, 0x05, 0x77, 0x05, 0x07, 0x15, 0x26, 0x33, 0x1f, 0x0e, 0x31, 0x45, - 0x58, 0x35, 0x32, 0x4d, 0x3b, 0x29, 0x0e, 0x0b, 0x0e, 0x2c, 0x42, 0x5b, - 0x3d, 0x44, 0x74, 0x56, 0x31, 0x0e, 0x1a, 0x26, 0x17, 0x16, 0x23, 0x18, - 0x0d, 0x03, 0x04, 0x03, 0x16, 0x13, 0x97, 0x0a, 0x0f, 0x0a, 0x06, 0x03, - 0x03, 0x03, 0x2e, 0x47, 0x56, 0x29, 0x2f, 0x59, 0x46, 0x2a, 0x13, 0x2b, - 0x45, 0x33, 0x5e, 0x5b, 0x99, 0x12, 0x27, 0x40, 0x2d, 0x4d, 0x4d, 0x26, - 0x22, 0x93, 0x1c, 0x22, 0x08, 0x1c, 0x3b, 0x37, 0x32, 0x15, 0x1b, 0x22, - 0x61, 0x38, 0x24, 0x46, 0x38, 0x23, 0xff, 0xff, 0x00, 0x68, 0x00, 0x00, - 0x05, 0xba, 0x05, 0xb6, 0x02, 0x06, 0x01, 0x75, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xa4, 0xfe, 0x14, 0x05, 0x71, 0x06, 0x12, 0x02, 0x06, 0x01, 0x95, - 0x00, 0x00, 0x00, 0x03, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x05, 0xcd, - 0x00, 0x13, 0x00, 0x1e, 0x00, 0x29, 0x00, 0x4f, 0x40, 0x32, 0x25, 0x19, - 0x5b, 0x00, 0x67, 0x2b, 0xd0, 0x2b, 0x01, 0xcf, 0x2b, 0x01, 0x80, 0x2b, - 0x01, 0x3f, 0x2b, 0x6f, 0x2b, 0x02, 0x24, 0x1a, 0x5b, 0x0a, 0x66, 0x2a, - 0x1a, 0x60, 0x4f, 0x24, 0x01, 0x0f, 0x24, 0xaf, 0x24, 0xdf, 0x24, 0x03, - 0x08, 0x24, 0x24, 0x14, 0x1f, 0x5f, 0x0f, 0x04, 0x14, 0x5f, 0x05, 0x13, - 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0xe1, - 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, - 0x32, 0x31, 0x30, 0x01, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, - 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, 0x01, - 0x32, 0x3e, 0x02, 0x37, 0x21, 0x1e, 0x03, 0x13, 0x22, 0x0e, 0x02, 0x07, - 0x21, 0x2e, 0x03, 0x05, 0x71, 0x51, 0xa0, 0xed, 0x9b, 0xa3, 0xef, 0x9d, - 0x4c, 0x4c, 0x9e, 0xef, 0xa4, 0x9a, 0xec, 0xa0, 0x51, 0xfd, 0x87, 0x6a, - 0x9e, 0x6b, 0x39, 0x06, 0xfc, 0x9a, 0x06, 0x3a, 0x6b, 0x9e, 0x6d, 0x69, - 0x9c, 0x6c, 0x3d, 0x08, 0x03, 0x64, 0x08, 0x3b, 0x69, 0x9b, 0x02, 0xdd, - 0xaa, 0xfe, 0xeb, 0xc6, 0x6c, 0x6c, 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, - 0x15, 0xc4, 0x6b, 0x6b, 0xc5, 0xfe, 0xeb, 0xfd, 0x07, 0x47, 0x86, 0xc2, - 0x7a, 0x7a, 0xc2, 0x86, 0x47, 0x04, 0x9a, 0x43, 0x80, 0xb8, 0x75, 0x75, - 0xb8, 0x80, 0x43, 0x00, 0x00, 0x03, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x04, 0x5e, 0x00, 0x13, 0x00, 0x1a, 0x00, 0x21, 0x00, 0x4f, 0x40, 0x33, - 0x1f, 0x17, 0x48, 0x00, 0x57, 0x23, 0x40, 0x23, 0xd0, 0x23, 0xe0, 0x23, - 0x03, 0x0f, 0x23, 0x01, 0x1e, 0x18, 0x48, 0x0a, 0x56, 0x22, 0x18, 0x50, - 0xef, 0x1e, 0x01, 0xa9, 0x1e, 0xb9, 0x1e, 0x02, 0x0f, 0x1e, 0x1f, 0x1e, - 0x2f, 0x1e, 0x03, 0x06, 0x1e, 0x1e, 0x14, 0x1b, 0x50, 0x0f, 0x10, 0x14, - 0x50, 0x05, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x10, - 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x01, 0x32, 0x36, - 0x37, 0x21, 0x16, 0x16, 0x13, 0x22, 0x06, 0x07, 0x21, 0x26, 0x26, 0x04, - 0x2d, 0x43, 0x7d, 0xb2, 0x6f, 0x67, 0xae, 0x7f, 0x47, 0x43, 0x7c, 0xb3, - 0x6f, 0x67, 0xae, 0x7f, 0x47, 0xfe, 0x23, 0x8d, 0x88, 0x0a, 0xfd, 0xbe, - 0x09, 0x8c, 0x8c, 0x89, 0x88, 0x0e, 0x02, 0x3e, 0x0d, 0x8a, 0x02, 0x27, - 0x89, 0xd5, 0x91, 0x4c, 0x4c, 0x91, 0xd5, 0x89, 0x88, 0xd3, 0x91, 0x4b, - 0x4b, 0x91, 0xd3, 0xfd, 0xd4, 0xb2, 0xb2, 0xb2, 0xb2, 0x03, 0x44, 0xa2, - 0xa4, 0xa4, 0xa2, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x02, - 0x05, 0xc3, 0x00, 0x1c, 0x00, 0x5a, 0x40, 0x29, 0x07, 0x06, 0x0b, 0x0d, - 0x01, 0xfb, 0x0d, 0x01, 0x0d, 0x0d, 0x08, 0x90, 0x19, 0xd0, 0x19, 0x02, - 0x19, 0x19, 0x1e, 0x00, 0x1e, 0x01, 0xb0, 0x1e, 0x01, 0x0f, 0x1e, 0x1f, - 0x1e, 0x2f, 0x1e, 0x4f, 0x1e, 0x5f, 0x1e, 0x7f, 0x1e, 0x06, 0x07, 0x09, - 0x08, 0xb8, 0xff, 0xf0, 0x40, 0x0c, 0x08, 0x00, 0x60, 0x16, 0x04, 0x09, - 0x08, 0x03, 0x0d, 0x06, 0x07, 0x12, 0x00, 0x3f, 0x33, 0x33, 0x3f, 0x33, - 0x3f, 0xe1, 0x01, 0x2f, 0x38, 0x33, 0x5e, 0x5d, 0x5d, 0x71, 0x11, 0x33, - 0x2f, 0x5d, 0x12, 0x39, 0x3d, 0x2f, 0x5d, 0x71, 0x33, 0x33, 0x31, 0x30, - 0x01, 0x22, 0x0e, 0x02, 0x07, 0x01, 0x23, 0x01, 0x33, 0x01, 0x16, 0x16, - 0x17, 0x36, 0x36, 0x37, 0x13, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x15, - 0x26, 0x26, 0x04, 0x96, 0x24, 0x35, 0x2a, 0x24, 0x12, 0xfe, 0xd7, 0xcd, - 0xfe, 0x19, 0xc5, 0x01, 0x27, 0x1d, 0x2e, 0x11, 0x0e, 0x2a, 0x1a, 0x8d, - 0x1f, 0x3d, 0x4c, 0x67, 0x4b, 0x23, 0x44, 0x1a, 0x17, 0x35, 0x05, 0x2d, - 0x25, 0x48, 0x67, 0x42, 0xfb, 0xe9, 0x05, 0xb6, 0xfc, 0x61, 0x5b, 0xaf, - 0x4f, 0x4e, 0xbc, 0x61, 0x02, 0x00, 0x71, 0x9c, 0x62, 0x2b, 0x0d, 0x08, - 0x97, 0x09, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0e, - 0x04, 0x52, 0x00, 0x1f, 0x00, 0x6d, 0xb9, 0x00, 0x1e, 0xff, 0xf8, 0x40, - 0x16, 0x0a, 0x0e, 0x48, 0x1f, 0x08, 0x0a, 0x0e, 0x48, 0x1f, 0x1e, 0x07, - 0x20, 0x0d, 0x11, 0x48, 0x07, 0x07, 0x00, 0xe0, 0x16, 0x01, 0x16, 0xb8, - 0xff, 0xe0, 0x40, 0x1a, 0x07, 0x0a, 0x48, 0x16, 0x16, 0x21, 0xbf, 0x21, - 0xcf, 0x21, 0xef, 0x21, 0x03, 0x50, 0x21, 0x01, 0x0f, 0x21, 0x2f, 0x21, - 0x4f, 0x21, 0x03, 0x07, 0x01, 0x00, 0xb8, 0xff, 0xf0, 0x40, 0x0c, 0x00, - 0x1e, 0x07, 0x1f, 0x15, 0x1a, 0x4f, 0x13, 0x0f, 0x01, 0x00, 0x0f, 0x00, - 0x3f, 0x32, 0x3f, 0xe1, 0x3f, 0x33, 0x33, 0x01, 0x2f, 0x38, 0x33, 0x5e, - 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x12, 0x39, 0x3d, 0x2f, - 0x2b, 0x33, 0x33, 0x2b, 0x2b, 0x31, 0x30, 0x11, 0x33, 0x13, 0x1e, 0x03, - 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, - 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x03, 0x23, 0xbc, 0xc9, 0x0b, - 0x20, 0x1f, 0x1a, 0x05, 0x06, 0x04, 0x14, 0x18, 0x19, 0x09, 0x56, 0x19, - 0x35, 0x43, 0x58, 0x3c, 0x1a, 0x22, 0x11, 0x0b, 0x26, 0x12, 0x2f, 0x3a, - 0x18, 0xe0, 0xf3, 0x04, 0x4a, 0xfd, 0xa2, 0x21, 0x6a, 0x6e, 0x61, 0x19, - 0x19, 0x5f, 0x6c, 0x67, 0x21, 0x01, 0x40, 0x5e, 0x75, 0x42, 0x18, 0x05, - 0x05, 0x87, 0x03, 0x05, 0x50, 0x58, 0xfc, 0xdf, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x05, 0x02, 0x07, 0x73, 0x02, 0x26, 0x02, 0x80, 0x00, 0x00, - 0x01, 0x07, 0x03, 0x76, 0x04, 0xb8, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, - 0x01, 0x1d, 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, 0x82, 0xb4, 0x31, 0x1d, - 0x08, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0e, 0x06, 0x21, 0x02, 0x26, - 0x02, 0x81, 0x00, 0x00, 0x01, 0x07, 0x03, 0x76, 0x04, 0x50, 0x00, 0x00, - 0x00, 0x19, 0xb6, 0x02, 0x01, 0x20, 0x11, 0x26, 0x02, 0x01, 0xb8, 0xff, - 0x94, 0xb4, 0x34, 0x20, 0x00, 0x16, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0x00, 0x03, 0x00, 0x7d, 0xfe, 0x14, 0x09, 0x5a, - 0x05, 0xcd, 0x00, 0x13, 0x00, 0x27, 0x00, 0x4a, 0x00, 0xa1, 0x40, 0x0a, - 0x00, 0x5b, 0x1e, 0x38, 0x4a, 0x2f, 0x2f, 0x37, 0x29, 0x28, 0xb8, 0xff, - 0xf0, 0x40, 0x23, 0x28, 0x28, 0x40, 0x00, 0x40, 0x10, 0x40, 0x02, 0xf0, - 0x40, 0x01, 0x1f, 0x40, 0x2f, 0x40, 0x3f, 0x40, 0x03, 0x00, 0x1e, 0x01, - 0x1e, 0x40, 0x1e, 0x40, 0x0a, 0x36, 0x37, 0x10, 0xd0, 0x37, 0xe0, 0x37, - 0x02, 0x37, 0xb8, 0xff, 0xc0, 0x40, 0x34, 0x07, 0x0b, 0x48, 0x37, 0x37, - 0x4c, 0x0f, 0x4c, 0x01, 0x0f, 0x4c, 0x1f, 0x4c, 0x2f, 0x4c, 0x4f, 0x4c, - 0x7f, 0x4c, 0xbf, 0x4c, 0xdf, 0x4c, 0xef, 0x4c, 0x08, 0x07, 0x14, 0x5b, - 0x0a, 0x66, 0x4b, 0x38, 0x2f, 0x4a, 0x4a, 0x28, 0x44, 0x50, 0x3d, 0x1b, - 0x36, 0x28, 0x0f, 0x23, 0x5f, 0x0f, 0x04, 0x19, 0x5f, 0x05, 0x13, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0x33, 0x3f, 0xe1, 0x11, 0x39, 0x11, 0x33, - 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x71, 0x11, 0x33, 0x2f, 0x2b, - 0x5d, 0x38, 0xc1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x71, - 0x11, 0x33, 0x2f, 0x38, 0xc1, 0x12, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x10, - 0xe1, 0x31, 0x30, 0x01, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, - 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, 0x05, - 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, - 0x22, 0x0e, 0x02, 0x25, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, - 0x37, 0x13, 0x33, 0x01, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, - 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x37, 0x05, 0x1f, 0x4c, 0x96, 0xdd, - 0x91, 0x98, 0xe0, 0x93, 0x47, 0x47, 0x93, 0xe1, 0x99, 0x90, 0xdd, 0x95, - 0x4c, 0xfc, 0x23, 0x2f, 0x61, 0x96, 0x67, 0x67, 0x96, 0x60, 0x2e, 0x2e, - 0x60, 0x94, 0x67, 0x68, 0x97, 0x61, 0x2f, 0x04, 0x43, 0xbd, 0xd7, 0x0d, - 0x1d, 0x19, 0x13, 0x04, 0x06, 0x04, 0x17, 0x1b, 0x1d, 0x0b, 0xc7, 0xbc, - 0xfe, 0x4e, 0x1d, 0x40, 0x56, 0x74, 0x50, 0x34, 0x4c, 0x1b, 0x15, 0x40, - 0x23, 0x30, 0x46, 0x34, 0x25, 0x0f, 0x39, 0x02, 0xdd, 0xaa, 0xfe, 0xeb, - 0xc6, 0x6c, 0x6c, 0xc6, 0x01, 0x17, 0xaa, 0xaa, 0x01, 0x15, 0xc4, 0x6b, - 0x6b, 0xc5, 0xfe, 0xeb, 0xab, 0x89, 0xdb, 0x99, 0x51, 0x51, 0x99, 0xdb, - 0x89, 0x8a, 0xda, 0x97, 0x51, 0x51, 0x97, 0xda, 0xe3, 0xfd, 0x9b, 0x28, - 0x58, 0x58, 0x53, 0x22, 0x19, 0x56, 0x61, 0x5e, 0x21, 0x02, 0x63, 0xfb, - 0x27, 0x51, 0x81, 0x5a, 0x31, 0x0b, 0x06, 0x91, 0x05, 0x07, 0x17, 0x2c, - 0x40, 0x29, 0xa0, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0x14, 0x08, 0x4e, - 0x04, 0x5e, 0x00, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x07, 0x00, 0x5c, - 0x04, 0x6f, 0x00, 0x00, 0x00, 0x11, 0xb1, 0x02, 0x02, 0xb8, 0x04, 0x14, - 0xb4, 0x20, 0x2f, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x7d, 0xff, 0x83, 0x05, 0xc3, 0x06, 0x31, 0x00, 0x1f, - 0x00, 0x3f, 0x00, 0x52, 0x40, 0x33, 0x30, 0x5b, 0x00, 0x67, 0x41, 0xb4, - 0x41, 0xc4, 0x41, 0x02, 0x90, 0x41, 0x01, 0x02, 0x30, 0x41, 0x80, 0x41, - 0x02, 0x20, 0x5b, 0x10, 0x66, 0x40, 0x19, 0x18, 0x01, 0x0b, 0x18, 0x01, - 0x04, 0x08, 0x14, 0x08, 0x02, 0x07, 0x38, 0x35, 0x3b, 0x5f, 0x1b, 0x18, - 0x15, 0x03, 0x28, 0x25, 0x5f, 0x08, 0x05, 0x0b, 0x12, 0x00, 0x3f, 0x33, - 0x33, 0xe1, 0x32, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x32, 0x5e, 0x5d, 0x5d, - 0x5d, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5f, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, - 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x1e, 0x03, 0x05, 0x14, 0x1e, 0x02, 0x17, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x0e, 0x03, 0x05, 0xc3, 0x49, 0x89, 0xc5, 0x7c, - 0x0e, 0x4a, 0x37, 0x3b, 0x48, 0x0d, 0x81, 0xc7, 0x87, 0x45, 0x45, 0x87, - 0xc7, 0x81, 0x0d, 0x48, 0x3b, 0x37, 0x4a, 0x0e, 0x7b, 0xc5, 0x89, 0x4a, - 0xfb, 0x7f, 0x2d, 0x57, 0x7f, 0x53, 0x11, 0x43, 0x35, 0x31, 0x45, 0x11, - 0x52, 0x80, 0x57, 0x2d, 0x2d, 0x57, 0x80, 0x52, 0x10, 0x46, 0x31, 0x35, - 0x43, 0x11, 0x53, 0x7f, 0x57, 0x2d, 0x02, 0xdd, 0x95, 0xfc, 0xc0, 0x7d, - 0x17, 0x3f, 0x36, 0x36, 0x3f, 0x16, 0x7d, 0xc0, 0xfe, 0x96, 0x96, 0xfb, - 0xbf, 0x7b, 0x17, 0x3f, 0x31, 0x33, 0x3d, 0x17, 0x7d, 0xbf, 0xfb, 0x96, - 0x74, 0xc0, 0x92, 0x62, 0x15, 0x30, 0x26, 0x28, 0x2e, 0x15, 0x62, 0x92, - 0xc0, 0x74, 0x73, 0xbf, 0x92, 0x62, 0x16, 0x32, 0x29, 0x29, 0x30, 0x16, - 0x61, 0x91, 0xbf, 0x00, 0x00, 0x02, 0x00, 0x71, 0xff, 0x91, 0x04, 0xa8, - 0x04, 0xb6, 0x00, 0x1f, 0x00, 0x37, 0x00, 0x54, 0xb5, 0x2c, 0x48, 0x00, - 0x57, 0x39, 0x39, 0xb8, 0xff, 0xc0, 0xb3, 0x0e, 0x14, 0x48, 0x39, 0xb8, - 0xff, 0xc0, 0x40, 0x24, 0x09, 0x0c, 0x48, 0x20, 0x48, 0x10, 0x56, 0x38, - 0x19, 0x18, 0x01, 0x0b, 0x18, 0x01, 0x04, 0x08, 0x14, 0x08, 0x02, 0x07, - 0x32, 0x2f, 0x35, 0x50, 0x1b, 0x02, 0x15, 0x0f, 0x29, 0x26, 0x23, 0x50, - 0x08, 0x05, 0x0b, 0x16, 0x00, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x32, 0x3f, - 0x33, 0x33, 0xe1, 0x32, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x01, 0x10, 0xf6, - 0xe1, 0x2b, 0x2b, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2e, 0x03, 0x35, 0x34, 0x3e, - 0x02, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1e, 0x03, 0x05, 0x14, - 0x16, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x04, 0xa8, - 0x39, 0x6b, 0x99, 0x5f, 0x09, 0x3c, 0x38, 0x3a, 0x3b, 0x08, 0x5d, 0x99, - 0x6e, 0x3d, 0x39, 0x6c, 0x9a, 0x62, 0x08, 0x3b, 0x3a, 0x37, 0x3d, 0x09, - 0x5b, 0x98, 0x6d, 0x3c, 0xfc, 0x85, 0x6f, 0x7b, 0x0b, 0x39, 0x34, 0x32, - 0x39, 0x0c, 0x79, 0x6d, 0x6e, 0x78, 0x0c, 0x39, 0x32, 0x34, 0x39, 0x0b, - 0x7b, 0x6f, 0x02, 0x27, 0x76, 0xbf, 0x8e, 0x5a, 0x12, 0x39, 0x2e, 0x2d, - 0x38, 0x12, 0x5a, 0x8e, 0xc0, 0x77, 0x75, 0xbf, 0x8d, 0x5a, 0x12, 0x39, - 0x29, 0x2a, 0x3a, 0x12, 0x5b, 0x8d, 0xbc, 0x75, 0xac, 0xcd, 0x1f, 0x2c, - 0x20, 0x20, 0x2a, 0x1f, 0xcc, 0xab, 0xa9, 0xc8, 0x20, 0x2b, 0x20, 0x20, - 0x2d, 0x1f, 0xc8, 0x00, 0x00, 0x03, 0x00, 0x7d, 0xff, 0xec, 0x07, 0x35, - 0x08, 0x3d, 0x00, 0x45, 0x00, 0x5b, 0x00, 0x6d, 0x00, 0xda, 0x40, 0x92, - 0x37, 0x14, 0x24, 0x04, 0x14, 0x04, 0x14, 0x24, 0x03, 0x1c, 0x41, 0x5b, - 0x0c, 0x67, 0x6f, 0x00, 0x6f, 0x10, 0x6f, 0x02, 0x00, 0x6f, 0x20, 0x6f, - 0x50, 0x6f, 0x80, 0x6f, 0x90, 0x6f, 0xa0, 0x6f, 0xd0, 0x6f, 0xe0, 0x6f, - 0x08, 0x2d, 0x5b, 0x1c, 0x66, 0x6e, 0x63, 0x68, 0x47, 0x47, 0x5c, 0x68, - 0x51, 0x40, 0x52, 0x50, 0x52, 0x60, 0x52, 0x03, 0x52, 0x52, 0x5f, 0x00, - 0x68, 0x10, 0x68, 0x20, 0x68, 0x80, 0x68, 0x90, 0x68, 0x05, 0x07, 0x68, - 0xe0, 0x4d, 0x01, 0x4d, 0xbf, 0x56, 0xcf, 0x56, 0x02, 0x56, 0x52, 0xef, - 0x46, 0x01, 0x46, 0x47, 0x47, 0x4f, 0x52, 0x01, 0x52, 0x52, 0x60, 0x6b, - 0xc0, 0x6b, 0xd0, 0x6b, 0xe0, 0x6b, 0x04, 0x6b, 0x6f, 0x5f, 0x7f, 0x5f, - 0xaf, 0x5f, 0xef, 0x5f, 0x04, 0x10, 0x5f, 0x01, 0x5f, 0x32, 0x3c, 0x5f, - 0x11, 0x14, 0x7f, 0x37, 0x8f, 0x37, 0x02, 0x37, 0x40, 0x07, 0x0a, 0x48, - 0x37, 0x37, 0x17, 0x11, 0x13, 0x25, 0x03, 0x03, 0x28, 0x00, 0x5f, 0x21, - 0x07, 0x04, 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x33, 0x11, 0x33, 0x3f, 0x33, - 0x33, 0x2f, 0x2b, 0x5d, 0x33, 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x5d, 0xcc, - 0x5d, 0x32, 0x2f, 0x71, 0x33, 0x10, 0xcd, 0x5d, 0x10, 0xdd, 0x5d, 0xcd, - 0x5d, 0x01, 0x2f, 0x5e, 0x5d, 0x33, 0x33, 0x2f, 0x5d, 0xcd, 0x10, 0xcd, - 0x32, 0x2f, 0x11, 0x39, 0x10, 0xf6, 0xe1, 0x5d, 0x71, 0x10, 0xf6, 0xe1, - 0x12, 0x17, 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x2f, 0x11, 0x33, 0x31, 0x30, - 0x01, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, - 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x35, - 0x34, 0x2e, 0x02, 0x03, 0x15, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, - 0x15, 0x15, 0x23, 0x35, 0x34, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x05, - 0x14, 0x06, 0x07, 0x35, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, - 0x36, 0x33, 0x32, 0x16, 0x05, 0x3f, 0x3c, 0x5e, 0x2a, 0x4c, 0x3b, 0x8f, - 0x51, 0x77, 0xb7, 0x7d, 0x40, 0x3f, 0x81, 0xc6, 0x88, 0x67, 0xa2, 0x45, - 0x47, 0xa0, 0x67, 0x88, 0xc6, 0x81, 0x3f, 0x40, 0x7d, 0xb7, 0x77, 0x51, - 0x8f, 0x3b, 0x4c, 0x29, 0x5f, 0x3c, 0x45, 0x71, 0x50, 0x2b, 0x2e, 0x5c, - 0x8a, 0x5c, 0x2a, 0x56, 0x4e, 0x42, 0x17, 0x17, 0x42, 0x4e, 0x56, 0x2a, - 0x5c, 0x8b, 0x5c, 0x2e, 0x2c, 0x50, 0x71, 0x03, 0x10, 0x56, 0x90, 0x7a, - 0x64, 0x2a, 0x2e, 0x3a, 0x85, 0x7c, 0x6d, 0x3a, 0x70, 0x77, 0x85, 0x4e, - 0xfe, 0xef, 0x78, 0x79, 0x3c, 0x38, 0x1f, 0x24, 0x1f, 0x32, 0x2e, 0x3b, - 0x44, 0x05, 0x25, 0x2e, 0x20, 0x9c, 0x2a, 0x2c, 0x63, 0xb8, 0xfe, 0xf8, - 0xa6, 0xaa, 0xfe, 0xdf, 0xd2, 0x77, 0x2a, 0x2c, 0x2c, 0x2a, 0x77, 0xd2, - 0x01, 0x21, 0xaa, 0xa6, 0x01, 0x08, 0xb8, 0x63, 0x2c, 0x2a, 0x9c, 0x20, - 0x2e, 0x46, 0x8a, 0xcf, 0x88, 0x8d, 0xe5, 0xa4, 0x59, 0x13, 0x23, 0x2f, - 0x1c, 0x1c, 0x2f, 0x23, 0x13, 0x59, 0xa4, 0xe5, 0x8d, 0x88, 0xcf, 0x8a, - 0x46, 0x02, 0xa6, 0x81, 0x24, 0x2a, 0x24, 0x2d, 0x35, 0x10, 0x23, 0x6b, - 0x65, 0x24, 0x2a, 0x24, 0xe2, 0x4d, 0x73, 0x1f, 0x4c, 0x16, 0x2d, 0x19, - 0x13, 0x12, 0x10, 0x1a, 0x1c, 0x25, 0x26, 0x46, 0x00, 0x03, 0x00, 0x71, - 0xff, 0xec, 0x05, 0xdf, 0x07, 0x08, 0x00, 0x43, 0x00, 0x59, 0x00, 0x6c, - 0x00, 0xb2, 0x40, 0x6b, 0x60, 0x67, 0x45, 0x45, 0x5a, 0x67, 0x4f, 0x40, - 0x50, 0x50, 0x50, 0x02, 0x50, 0x50, 0x5d, 0x6f, 0x67, 0x9f, 0x67, 0x02, - 0x10, 0x67, 0x01, 0x67, 0x24, 0x15, 0x0b, 0x35, 0x3f, 0x03, 0x03, 0x0b, - 0x2c, 0x48, 0x3f, 0x57, 0x6e, 0x1e, 0x48, 0x0b, 0x56, 0x6d, 0x00, 0x4b, - 0x01, 0x4b, 0xdf, 0x54, 0x01, 0x54, 0x50, 0x0f, 0x44, 0x01, 0x44, 0x45, - 0x45, 0x6f, 0x50, 0x01, 0x50, 0x50, 0x00, 0x6a, 0x01, 0xe0, 0x6a, 0xf0, - 0x6a, 0x02, 0x6a, 0x0f, 0x5d, 0x7f, 0x5d, 0x02, 0x07, 0x5d, 0x2f, 0x1b, - 0x51, 0x34, 0x16, 0x16, 0x3a, 0x10, 0x10, 0x21, 0x29, 0x51, 0x00, 0x03, - 0x24, 0x40, 0x10, 0x15, 0x48, 0x24, 0x40, 0x07, 0x0c, 0x48, 0x24, 0x24, - 0x06, 0x00, 0x16, 0x00, 0x3f, 0x32, 0x32, 0x2f, 0x2b, 0x2b, 0x33, 0x10, - 0xe1, 0x32, 0x3f, 0x33, 0x33, 0x11, 0x33, 0xe1, 0x32, 0x2f, 0x5e, 0x5d, - 0xcc, 0x5d, 0x71, 0x32, 0x2f, 0x71, 0x33, 0x10, 0xcd, 0x71, 0x10, 0xdd, - 0x5d, 0xcd, 0x71, 0x01, 0x10, 0xf6, 0xe1, 0x10, 0xf6, 0xe1, 0x12, 0x39, - 0x3d, 0x2f, 0x12, 0x39, 0x12, 0x39, 0x33, 0x18, 0x2f, 0x5d, 0x5d, 0x33, - 0x33, 0x2f, 0x5d, 0xcd, 0x10, 0xcd, 0x32, 0x2f, 0x11, 0x39, 0x31, 0x30, - 0x05, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, - 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x1e, 0x03, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x27, 0x3e, 0x03, - 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x13, 0x15, 0x23, 0x22, - 0x2e, 0x02, 0x23, 0x22, 0x06, 0x15, 0x15, 0x23, 0x35, 0x34, 0x36, 0x33, - 0x32, 0x1e, 0x02, 0x33, 0x05, 0x14, 0x06, 0x07, 0x35, 0x36, 0x35, 0x34, - 0x2e, 0x04, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x04, 0x10, 0x51, 0x6d, - 0x2b, 0x2b, 0x6a, 0x50, 0x5f, 0xa9, 0x7f, 0x4a, 0x3f, 0x6d, 0x93, 0x54, - 0x1f, 0x40, 0x3c, 0x34, 0x14, 0x3f, 0x11, 0x29, 0x2b, 0x2b, 0x12, 0x70, - 0x69, 0x8d, 0x88, 0x49, 0x73, 0x29, 0x16, 0x31, 0x39, 0x42, 0x29, 0x85, - 0x8c, 0x69, 0x70, 0x12, 0x2b, 0x2b, 0x29, 0x11, 0x40, 0x14, 0x35, 0x3c, - 0x3f, 0x20, 0x54, 0x93, 0x6d, 0x3f, 0x4a, 0x7e, 0xa9, 0x3a, 0x10, 0x56, - 0x90, 0x7a, 0x64, 0x2a, 0x2e, 0x3a, 0x86, 0x7c, 0x6e, 0x39, 0x70, 0x78, - 0x85, 0x4e, 0xfe, 0xef, 0x78, 0x79, 0x74, 0x0f, 0x15, 0x1a, 0x15, 0x0f, - 0x32, 0x2e, 0x3b, 0x44, 0x14, 0x23, 0x20, 0x20, 0x23, 0x3f, 0x89, 0xd5, - 0x96, 0x9d, 0xdb, 0x89, 0x3e, 0x09, 0x10, 0x16, 0x0c, 0x9a, 0x0a, 0x13, - 0x0f, 0x09, 0xca, 0xd3, 0xd3, 0xc3, 0x34, 0x20, 0x10, 0x1e, 0x18, 0x0e, - 0xc3, 0xd3, 0xd3, 0xca, 0x09, 0x0f, 0x13, 0x0a, 0x9a, 0x0c, 0x16, 0x10, - 0x09, 0x3e, 0x89, 0xdb, 0x9d, 0x96, 0xd5, 0x89, 0x3f, 0x06, 0xaa, 0x82, - 0x24, 0x2b, 0x24, 0x2e, 0x34, 0x11, 0x23, 0x6c, 0x65, 0x24, 0x2a, 0x24, - 0xe2, 0x4d, 0x73, 0x1f, 0x4c, 0x29, 0x33, 0x0d, 0x0f, 0x0c, 0x0a, 0x0f, - 0x17, 0x12, 0x26, 0x26, 0x46, 0x00, 0x00, 0x02, 0x00, 0x7d, 0xff, 0xec, - 0x07, 0x5e, 0x07, 0x04, 0x00, 0x0d, 0x00, 0x53, 0x00, 0x9b, 0x40, 0x62, - 0x23, 0x12, 0x47, 0x5a, 0x33, 0xc5, 0x44, 0x01, 0x96, 0x44, 0xa6, 0x44, - 0x02, 0x89, 0x44, 0x01, 0x44, 0x44, 0x2b, 0x4f, 0x5b, 0x1a, 0x00, 0x0d, - 0x00, 0x0d, 0x2b, 0x1a, 0x67, 0x55, 0x00, 0x55, 0x10, 0x55, 0x02, 0x00, - 0x55, 0x20, 0x55, 0x50, 0x55, 0x70, 0x55, 0xd0, 0x55, 0xe0, 0x55, 0x06, - 0x07, 0x3c, 0x5b, 0x2b, 0x66, 0x54, 0x45, 0x45, 0x41, 0x0e, 0x37, 0x5f, - 0x30, 0x11, 0x34, 0x09, 0x04, 0x04, 0x00, 0x80, 0x0a, 0x06, 0x3f, 0x02, - 0x7f, 0x02, 0xcf, 0x02, 0xdf, 0x02, 0xef, 0x02, 0x05, 0x02, 0x34, 0x15, - 0x30, 0x04, 0x4a, 0x23, 0x20, 0x09, 0x0e, 0x48, 0x23, 0x41, 0x5f, 0x1f, - 0x26, 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x2b, 0x32, 0x3f, 0x33, 0x33, - 0x2f, 0x5d, 0x33, 0x33, 0x1a, 0xcd, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x10, - 0xe1, 0x32, 0x12, 0x39, 0x2f, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x71, - 0x10, 0xe6, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x10, 0xe1, 0x11, 0x39, 0x2f, - 0x5d, 0x5d, 0x5d, 0x33, 0xe1, 0x32, 0x39, 0x31, 0x30, 0x01, 0x15, 0x07, - 0x23, 0x27, 0x23, 0x07, 0x23, 0x27, 0x23, 0x07, 0x23, 0x27, 0x35, 0x01, - 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x12, 0x15, - 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, - 0x33, 0x32, 0x36, 0x37, 0x11, 0x33, 0x11, 0x16, 0x16, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x2e, 0x02, 0x05, 0x8b, 0x52, 0x22, 0x32, 0xb8, 0x31, - 0x23, 0x31, 0xb8, 0x32, 0x22, 0x50, 0x03, 0x1c, 0x3c, 0x5e, 0x2a, 0x4c, - 0x3b, 0x8f, 0x51, 0x77, 0xb7, 0x7d, 0x40, 0x3f, 0x81, 0xc6, 0x88, 0x6f, - 0xaa, 0x49, 0x02, 0x4b, 0xa8, 0x6e, 0x88, 0xc6, 0x81, 0x3f, 0x40, 0x7d, - 0xb7, 0x77, 0x51, 0x8f, 0x3b, 0x4c, 0x29, 0x5f, 0x3c, 0x45, 0x71, 0x50, - 0x2b, 0x2e, 0x5c, 0x8a, 0x5c, 0x39, 0x76, 0x2e, 0xbb, 0x2e, 0x76, 0x3b, - 0x5c, 0x8b, 0x5c, 0x2e, 0x2c, 0x50, 0x71, 0x07, 0x04, 0x1b, 0xac, 0x67, - 0x67, 0x67, 0x67, 0xac, 0x1b, 0xfe, 0x21, 0x2e, 0x20, 0x9c, 0x2a, 0x2c, - 0x63, 0xb8, 0xfe, 0xf8, 0xa6, 0xaa, 0xfe, 0xdf, 0xd2, 0x77, 0x32, 0x30, - 0x30, 0x32, 0x77, 0xd2, 0x01, 0x21, 0xaa, 0xa6, 0x01, 0x08, 0xb8, 0x63, - 0x2c, 0x2a, 0x9c, 0x20, 0x2e, 0x46, 0x8a, 0xcf, 0x88, 0x8d, 0xe5, 0xa4, - 0x59, 0x24, 0x26, 0x01, 0xbd, 0xfe, 0x43, 0x26, 0x24, 0x59, 0xa4, 0xe5, - 0x8d, 0x88, 0xcf, 0x8a, 0x46, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x05, 0xf4, 0x05, 0xa4, 0x00, 0x0d, 0x00, 0x3a, 0x01, 0x23, 0x40, 0x0d, - 0x00, 0x0d, 0x00, 0x0d, 0x2a, 0x0f, 0xb9, 0x30, 0x01, 0x82, 0x30, 0x01, - 0x2f, 0xb8, 0xff, 0xf0, 0xb3, 0x0a, 0x10, 0x48, 0x3a, 0xb8, 0xff, 0xf0, - 0xb3, 0x13, 0x1b, 0x48, 0x3a, 0xb8, 0xff, 0xf0, 0x40, 0x19, 0x0a, 0x0f, - 0x48, 0xa9, 0x0e, 0x01, 0x0e, 0x10, 0x13, 0x1b, 0x48, 0x0e, 0x10, 0x0a, - 0x0f, 0x48, 0x30, 0x1b, 0x1c, 0x34, 0x66, 0x1d, 0x01, 0x1d, 0x1c, 0xb8, - 0xff, 0xf0, 0x40, 0x53, 0x0f, 0x1c, 0x1f, 0x1c, 0x3f, 0x1c, 0x03, 0x4f, - 0x1c, 0x6f, 0x1c, 0x7f, 0x1c, 0x9f, 0x1c, 0xbf, 0x1c, 0x05, 0x1c, 0x1c, - 0x34, 0x30, 0x2f, 0x23, 0x90, 0x23, 0x01, 0x74, 0x23, 0x01, 0x6b, 0x23, - 0x01, 0x24, 0x23, 0x34, 0x23, 0x02, 0x3a, 0x0e, 0x14, 0x90, 0x34, 0x01, - 0x24, 0x14, 0x34, 0x14, 0x44, 0x14, 0x74, 0x14, 0x94, 0x14, 0x05, 0x23, - 0x34, 0x14, 0x14, 0x34, 0x23, 0x03, 0x0f, 0x29, 0x47, 0x00, 0x2a, 0x10, - 0x2a, 0x02, 0x07, 0x2a, 0x2a, 0x3c, 0x10, 0x3c, 0x20, 0x3c, 0x30, 0x3c, - 0x03, 0x10, 0x0f, 0xb8, 0xff, 0xf0, 0x40, 0x35, 0x0f, 0x09, 0x04, 0x04, - 0x00, 0x80, 0x0a, 0x06, 0x0f, 0x02, 0x7f, 0x02, 0x8f, 0x02, 0x9f, 0x02, - 0x04, 0x02, 0x40, 0x14, 0x17, 0x48, 0x02, 0x34, 0x40, 0x15, 0x1d, 0x48, - 0x34, 0x20, 0x0c, 0x14, 0x48, 0x1b, 0x34, 0x1e, 0x03, 0x0e, 0x29, 0x1c, - 0x0f, 0x0f, 0x23, 0x14, 0x26, 0x14, 0x36, 0x14, 0x02, 0x14, 0x30, 0x0e, - 0x15, 0x00, 0x3f, 0x33, 0x33, 0x5d, 0x11, 0x33, 0x3f, 0x33, 0x33, 0x12, - 0x17, 0x39, 0x2b, 0x2b, 0x2f, 0x2b, 0x5d, 0x33, 0x33, 0x1a, 0xcd, 0x39, - 0x2f, 0x33, 0x01, 0x2f, 0x38, 0x33, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, - 0xe1, 0x12, 0x17, 0x39, 0x3d, 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x11, 0x33, - 0x33, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x33, 0x11, 0x33, 0x18, 0x2f, - 0x5d, 0x71, 0x38, 0x33, 0x5d, 0x87, 0xc0, 0xc0, 0x01, 0x2b, 0x2b, 0x5d, - 0x2b, 0x2b, 0x2b, 0x5d, 0x5d, 0x11, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x31, - 0x30, 0x01, 0x15, 0x07, 0x23, 0x27, 0x23, 0x07, 0x23, 0x27, 0x23, 0x07, - 0x23, 0x27, 0x35, 0x03, 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x33, 0x3e, - 0x03, 0x37, 0x13, 0x03, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, - 0x35, 0x33, 0x14, 0x02, 0x02, 0x06, 0x07, 0x23, 0x03, 0x26, 0x26, 0x35, - 0x0e, 0x03, 0x07, 0x03, 0x04, 0xba, 0x52, 0x22, 0x32, 0xb8, 0x31, 0x23, - 0x31, 0xb8, 0x31, 0x23, 0x50, 0x04, 0xfe, 0x89, 0xbc, 0xe0, 0x1c, 0x26, - 0x09, 0x07, 0x07, 0x15, 0x1a, 0x1d, 0x0f, 0x77, 0xa2, 0xbc, 0xc9, 0x0c, - 0x1f, 0x1e, 0x18, 0x05, 0x07, 0x5a, 0x72, 0x41, 0x19, 0xb7, 0x25, 0x5c, - 0x9a, 0x75, 0xc0, 0x77, 0x0c, 0x0d, 0x01, 0x06, 0x09, 0x0a, 0x04, 0x98, - 0x05, 0xa4, 0x1b, 0xac, 0x67, 0x67, 0x67, 0x67, 0xac, 0x1b, 0xfa, 0x5c, - 0x04, 0x4a, 0xfd, 0x56, 0x57, 0x9d, 0x33, 0x16, 0x3a, 0x41, 0x45, 0x20, - 0x01, 0x0c, 0x01, 0xcf, 0xfd, 0xb0, 0x21, 0x63, 0x67, 0x5c, 0x19, 0x67, - 0xd0, 0xe2, 0xff, 0x98, 0xa3, 0xfe, 0xdf, 0xfe, 0xf5, 0xfc, 0x7f, 0x01, - 0x54, 0x20, 0x35, 0x03, 0x01, 0x13, 0x1b, 0x1d, 0x0a, 0xfe, 0xaa, 0x00, - 0x00, 0x01, 0x00, 0x7d, 0xfe, 0x14, 0x04, 0x98, 0x05, 0xcb, 0x00, 0x23, - 0x00, 0x54, 0x40, 0x17, 0x11, 0x5a, 0x0f, 0x10, 0x01, 0x07, 0x10, 0x40, - 0x0f, 0x12, 0x48, 0x10, 0x10, 0x18, 0xba, 0x20, 0x01, 0x60, 0x20, 0x70, - 0x20, 0x02, 0x20, 0xb8, 0xff, 0xc0, 0x40, 0x1a, 0x06, 0x0a, 0x48, 0x20, - 0x20, 0x25, 0xaf, 0x25, 0x01, 0x05, 0x5b, 0x18, 0x66, 0x24, 0x21, 0x00, - 0x5f, 0x1d, 0x04, 0x0f, 0x0a, 0x5f, 0x13, 0x13, 0x10, 0x1b, 0x00, 0x3f, - 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x11, - 0x33, 0x2f, 0x2b, 0x5d, 0x5d, 0x12, 0x39, 0x2f, 0x2b, 0x5e, 0x5d, 0xe1, - 0x31, 0x30, 0x01, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x37, 0x11, 0x23, 0x11, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, - 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x03, - 0x19, 0x6b, 0xae, 0x7b, 0x43, 0x3b, 0x76, 0xb0, 0x76, 0x1d, 0x2d, 0x28, - 0x25, 0x15, 0xbb, 0x10, 0xa4, 0xf0, 0x9d, 0x4c, 0x57, 0xa9, 0xfa, 0xa2, - 0x6c, 0xc4, 0x4f, 0x4e, 0x3f, 0x94, 0x05, 0x27, 0x51, 0x98, 0xda, 0x89, - 0x8d, 0xdb, 0x96, 0x4e, 0x04, 0x09, 0x0d, 0x09, 0xfd, 0x62, 0x01, 0xd8, - 0x6c, 0xc6, 0x01, 0x15, 0xaa, 0xa6, 0x01, 0x14, 0xc6, 0x6e, 0x2c, 0x2a, - 0x9c, 0x20, 0x2e, 0x00, 0x00, 0x01, 0x00, 0x71, 0xfe, 0x14, 0x03, 0x6f, - 0x04, 0x5e, 0x00, 0x1f, 0x00, 0x3e, 0x40, 0x25, 0x1d, 0x47, 0x1c, 0x40, - 0x0e, 0x11, 0x48, 0x1c, 0x1c, 0x04, 0x0c, 0x21, 0x5f, 0x21, 0x7f, 0x21, - 0x02, 0x10, 0x21, 0x01, 0x15, 0x48, 0x04, 0x56, 0x20, 0x1b, 0x18, 0x51, - 0x1f, 0x16, 0x1c, 0x1b, 0x12, 0x51, 0x0d, 0x09, 0x10, 0x00, 0x3f, 0x33, - 0xe1, 0x3f, 0x3f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x10, - 0xce, 0x11, 0x39, 0x2f, 0x2b, 0xe1, 0x31, 0x30, 0x04, 0x2e, 0x02, 0x35, - 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, 0x03, 0x23, 0x22, - 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x11, 0x23, 0x11, 0x23, - 0x01, 0xed, 0xb0, 0x82, 0x4a, 0x4c, 0x85, 0xb2, 0x66, 0x4e, 0x95, 0x32, - 0x36, 0x17, 0x38, 0x3c, 0x3b, 0x19, 0x9d, 0x90, 0x91, 0x94, 0x3e, 0x68, - 0x23, 0xb7, 0x12, 0x14, 0x3f, 0x89, 0xd5, 0x96, 0x9d, 0xdb, 0x89, 0x3e, - 0x22, 0x19, 0x9a, 0x0a, 0x13, 0x0f, 0x09, 0xca, 0xd3, 0xd3, 0xc3, 0x1b, - 0x14, 0xfd, 0x5a, 0x01, 0xd8, 0x00, 0x00, 0x01, 0x00, 0x68, 0xff, 0xfa, - 0x04, 0x79, 0x05, 0x0a, 0x00, 0x13, 0x01, 0x25, 0x40, 0x67, 0x0d, 0x11, - 0x1d, 0x11, 0x02, 0x0d, 0x01, 0x1d, 0x01, 0x02, 0x02, 0x0b, 0x12, 0x0b, - 0x02, 0x02, 0x07, 0x12, 0x07, 0x02, 0x07, 0x10, 0x11, 0x0c, 0x13, 0x12, - 0x0b, 0x00, 0x01, 0x08, 0x03, 0x02, 0x07, 0x04, 0x0f, 0x04, 0x0d, 0x11, - 0x0c, 0x0a, 0x12, 0x0b, 0x09, 0x01, 0x08, 0x06, 0x02, 0x07, 0x05, 0x0e, - 0x05, 0x0d, 0x10, 0x11, 0x0c, 0x11, 0x0a, 0x13, 0x12, 0x0b, 0x12, 0x09, - 0x00, 0x01, 0x08, 0x01, 0x06, 0x03, 0x02, 0x07, 0x02, 0x04, 0x05, 0x0c, - 0x0b, 0x02, 0x01, 0x0e, 0x0f, 0x4f, 0x01, 0x01, 0x40, 0x0b, 0x01, 0x05, - 0x0b, 0x01, 0x0f, 0x0f, 0x01, 0x0b, 0x05, 0x04, 0x12, 0x60, 0x11, 0x70, - 0x11, 0xf0, 0x11, 0x03, 0x11, 0xb8, 0xff, 0xc0, 0x40, 0x4d, 0x07, 0x0a, - 0x48, 0x11, 0x08, 0x07, 0x11, 0x15, 0x20, 0x15, 0x30, 0x15, 0x02, 0x03, - 0x06, 0x00, 0x09, 0x04, 0x07, 0x01, 0x01, 0x02, 0x13, 0x0a, 0x10, 0x0d, - 0x04, 0x0b, 0x11, 0x11, 0x12, 0x04, 0x07, 0x01, 0x07, 0x07, 0x08, 0x0b, - 0x0b, 0x01, 0x0b, 0x0b, 0x0c, 0xb0, 0x0c, 0xc0, 0x0c, 0x02, 0x0f, 0x12, - 0x1f, 0x12, 0x02, 0x00, 0x08, 0x10, 0x08, 0x02, 0x02, 0x12, 0x08, 0x0c, - 0x0c, 0x08, 0x12, 0x02, 0x04, 0x04, 0x0f, 0x0e, 0x40, 0x07, 0x0d, 0x48, - 0x0e, 0x05, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x2b, 0x33, 0x12, 0x17, 0x39, - 0x2f, 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x71, 0x11, - 0x33, 0x2f, 0x71, 0x11, 0x33, 0x2f, 0x12, 0x17, 0x39, 0x11, 0x33, 0x2f, - 0x12, 0x17, 0x39, 0x01, 0x5d, 0x11, 0x33, 0x2f, 0x32, 0x2f, 0x2b, 0x5d, - 0x33, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2f, 0x5d, 0x5d, 0x11, 0x33, 0x11, - 0x33, 0x11, 0x33, 0x11, 0x33, 0x10, 0x87, 0xc0, 0xc0, 0x10, 0x87, 0xc0, - 0xc0, 0x10, 0x87, 0xc0, 0xc0, 0x10, 0x87, 0xc0, 0xc0, 0x10, 0x87, 0x08, - 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x10, 0x87, 0x08, 0xc0, 0x08, - 0xc0, 0x08, 0xc0, 0x08, 0xc0, 0x31, 0x30, 0x00, 0x5e, 0x5d, 0x5d, 0x5d, - 0x5d, 0x01, 0x05, 0x07, 0x25, 0x03, 0x27, 0x13, 0x25, 0x37, 0x05, 0x13, - 0x25, 0x37, 0x05, 0x13, 0x17, 0x03, 0x05, 0x07, 0x25, 0x02, 0x4c, 0x01, - 0x1c, 0x47, 0xfe, 0xe3, 0xb4, 0x81, 0xb4, 0xfe, 0xe5, 0x46, 0x01, 0x1f, - 0xc6, 0xfe, 0xe4, 0x47, 0x01, 0x1d, 0xb6, 0x7f, 0xb6, 0x01, 0x1f, 0x4a, - 0xfe, 0xe5, 0x01, 0xb0, 0xa6, 0x7b, 0xa4, 0xfe, 0xc7, 0x4a, 0x01, 0x3b, - 0xa4, 0x7b, 0xa4, 0x01, 0x5a, 0xa4, 0x7d, 0xa4, 0x01, 0x39, 0x49, 0xfe, - 0xc4, 0xa4, 0x7b, 0xa4, 0x00, 0x01, 0x00, 0xc9, 0x04, 0x8f, 0x03, 0xb0, - 0x05, 0xb8, 0x00, 0x15, 0x00, 0x42, 0xb5, 0x0f, 0x20, 0x07, 0x0a, 0x48, - 0x03, 0xb8, 0xff, 0xe0, 0x40, 0x1e, 0x07, 0x0a, 0x48, 0x0c, 0x12, 0x12, - 0x17, 0x00, 0x00, 0x06, 0x10, 0x06, 0x20, 0x06, 0x90, 0x06, 0xa0, 0x06, - 0x05, 0x07, 0x06, 0x06, 0x16, 0x0f, 0x0f, 0x0b, 0x00, 0x03, 0x03, 0x00, - 0x00, 0x2f, 0x32, 0x2f, 0x10, 0xcd, 0x32, 0x2f, 0x11, 0x01, 0x33, 0x2f, - 0x5e, 0x5d, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x00, 0x2b, 0x2b, 0x31, 0x30, - 0x01, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x21, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x01, 0x8b, 0x06, - 0x2c, 0x30, 0x38, 0x28, 0x09, 0x17, 0x25, 0x1d, 0x01, 0xc1, 0x05, 0x2d, - 0x30, 0x38, 0x2a, 0x2b, 0x39, 0x04, 0xee, 0x2c, 0x33, 0x33, 0x38, 0x1c, - 0x25, 0x16, 0x09, 0x2d, 0x31, 0x32, 0x36, 0x39, 0x29, 0x00, 0x00, 0x01, - 0x00, 0xf4, 0x04, 0xe5, 0x03, 0xdf, 0x05, 0xd9, 0x00, 0x15, 0x00, 0x42, - 0x40, 0x11, 0x80, 0x08, 0x90, 0x08, 0x02, 0x08, 0x08, 0x17, 0x00, 0x14, - 0x10, 0x14, 0x20, 0x14, 0x03, 0x07, 0x14, 0xb8, 0xff, 0xc0, 0x40, 0x12, - 0x0d, 0x10, 0x48, 0x14, 0x14, 0x16, 0x15, 0x14, 0x14, 0x09, 0x0e, 0x40, - 0xbf, 0x05, 0x01, 0x05, 0x80, 0x09, 0x00, 0x2f, 0x1a, 0xdd, 0x5d, 0x1a, - 0xcd, 0x11, 0x33, 0x2f, 0xcd, 0x11, 0x01, 0x33, 0x2f, 0x2b, 0x5e, 0x5d, - 0x11, 0x33, 0x2f, 0x5d, 0x31, 0x30, 0x01, 0x32, 0x3e, 0x02, 0x33, 0x32, - 0x16, 0x15, 0x15, 0x23, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x23, - 0x23, 0x35, 0x01, 0x02, 0x4e, 0x85, 0x77, 0x70, 0x3a, 0x6d, 0x7c, 0x85, - 0x3a, 0x2e, 0x2a, 0x65, 0x79, 0x91, 0x55, 0x10, 0x05, 0x66, 0x24, 0x2b, - 0x24, 0x65, 0x6c, 0x23, 0x11, 0x34, 0x2e, 0x24, 0x2b, 0x24, 0x81, 0x00, - 0x00, 0x01, 0x01, 0xe1, 0x04, 0xd7, 0x02, 0xd3, 0x06, 0x35, 0x00, 0x11, - 0x00, 0x20, 0x40, 0x12, 0x0b, 0x0e, 0x3f, 0x06, 0x4f, 0x06, 0x02, 0x06, - 0x00, 0x3f, 0x03, 0x4f, 0x03, 0x5f, 0x03, 0x03, 0x03, 0x0f, 0x00, 0x2f, - 0xcc, 0x5d, 0x01, 0x2f, 0xcd, 0x5d, 0x32, 0x39, 0x31, 0x30, 0x01, 0x34, - 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x17, - 0x15, 0x26, 0x26, 0x01, 0xe1, 0x44, 0x3b, 0x2f, 0x32, 0x1f, 0x25, 0x1f, - 0x39, 0x3c, 0x7a, 0x78, 0x05, 0xb6, 0x39, 0x46, 0x26, 0x26, 0x1b, 0x1a, - 0x11, 0x11, 0x13, 0x19, 0x2e, 0x15, 0x4c, 0x1f, 0x73, 0x00, 0x00, 0x01, - 0x01, 0xe1, 0x04, 0xd7, 0x02, 0xd3, 0x06, 0x35, 0x00, 0x13, 0x00, 0x20, - 0x40, 0x12, 0x07, 0x3f, 0x00, 0x4f, 0x00, 0x02, 0x00, 0x03, 0x0e, 0x3f, - 0x11, 0x4f, 0x11, 0x5f, 0x11, 0x03, 0x11, 0x03, 0x00, 0x2f, 0xcc, 0x5d, - 0x01, 0x2f, 0x33, 0xcd, 0x5d, 0x39, 0x31, 0x30, 0x01, 0x14, 0x06, 0x07, - 0x35, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x04, 0x35, 0x34, 0x36, 0x33, 0x32, - 0x16, 0x02, 0xd3, 0x78, 0x7a, 0x3c, 0x39, 0x0f, 0x15, 0x1a, 0x15, 0x0f, - 0x32, 0x2e, 0x3b, 0x44, 0x05, 0xb6, 0x4d, 0x73, 0x1f, 0x4c, 0x15, 0x2e, - 0x19, 0x0d, 0x0f, 0x0c, 0x0a, 0x0f, 0x17, 0x12, 0x26, 0x26, 0x46, 0x00, - 0x00, 0x08, 0x00, 0x29, 0xfe, 0xc1, 0x07, 0xc1, 0x05, 0x91, 0x00, 0x13, - 0x00, 0x27, 0x00, 0x3b, 0x00, 0x4f, 0x00, 0x63, 0x00, 0x77, 0x00, 0x8b, - 0x00, 0x9f, 0x00, 0x00, 0x01, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, - 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x03, 0x2e, 0x03, 0x23, - 0x22, 0x0e, 0x02, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, - 0x01, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x23, 0x36, 0x36, 0x33, - 0x32, 0x1e, 0x02, 0x17, 0x21, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, - 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x01, 0x2e, 0x03, 0x23, - 0x22, 0x0e, 0x02, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, - 0x21, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x23, 0x36, 0x36, 0x33, - 0x32, 0x1e, 0x02, 0x17, 0x01, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x07, - 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x21, 0x2e, 0x03, 0x23, - 0x22, 0x0e, 0x02, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x17, - 0x04, 0x6f, 0x03, 0x18, 0x24, 0x2e, 0x19, 0x1e, 0x2f, 0x21, 0x14, 0x03, - 0x4b, 0x05, 0x64, 0x67, 0x31, 0x4d, 0x36, 0x1e, 0x03, 0x4f, 0x03, 0x18, - 0x24, 0x2e, 0x19, 0x1e, 0x2f, 0x21, 0x14, 0x03, 0x4b, 0x05, 0x64, 0x67, - 0x31, 0x4d, 0x36, 0x1e, 0x03, 0x01, 0xf4, 0x03, 0x17, 0x24, 0x2e, 0x19, - 0x1f, 0x2f, 0x21, 0x13, 0x03, 0x4c, 0x05, 0x65, 0x67, 0x31, 0x4d, 0x36, - 0x1e, 0x03, 0xfb, 0x2f, 0x03, 0x17, 0x24, 0x2e, 0x19, 0x1f, 0x2f, 0x21, - 0x13, 0x03, 0x4c, 0x05, 0x65, 0x67, 0x31, 0x4d, 0x36, 0x1e, 0x03, 0x04, - 0x31, 0x03, 0x17, 0x24, 0x2e, 0x19, 0x1f, 0x2f, 0x21, 0x13, 0x03, 0x4c, - 0x05, 0x65, 0x67, 0x31, 0x4d, 0x36, 0x1e, 0x03, 0xfb, 0x2f, 0x03, 0x17, - 0x24, 0x2e, 0x19, 0x1f, 0x2f, 0x21, 0x13, 0x03, 0x4c, 0x05, 0x65, 0x67, - 0x31, 0x4d, 0x36, 0x1e, 0x03, 0x04, 0xf0, 0x03, 0x18, 0x24, 0x2d, 0x19, - 0x1f, 0x2f, 0x21, 0x14, 0x03, 0x4b, 0x05, 0x64, 0x68, 0x31, 0x4c, 0x36, - 0x1f, 0x03, 0xf9, 0xbe, 0x03, 0x17, 0x24, 0x2e, 0x19, 0x1f, 0x2f, 0x21, - 0x13, 0x03, 0x4c, 0x05, 0x65, 0x67, 0x31, 0x4d, 0x36, 0x1e, 0x03, 0x04, - 0xcf, 0x1c, 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, 0x68, 0x1c, - 0x33, 0x48, 0x2b, 0xf9, 0xf2, 0x1c, 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, - 0x1e, 0x59, 0x69, 0x1d, 0x33, 0x47, 0x2b, 0x01, 0x16, 0x1c, 0x23, 0x13, - 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, 0x69, 0x1d, 0x33, 0x48, 0x2b, 0x1c, - 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, 0x69, 0x1d, 0x33, 0x48, - 0x2b, 0x03, 0xdb, 0x1c, 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, - 0x69, 0x1d, 0x33, 0x48, 0x2b, 0x1c, 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, - 0x1e, 0x5a, 0x69, 0x1d, 0x33, 0x48, 0x2b, 0xfe, 0x19, 0x1c, 0x23, 0x13, - 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, 0x68, 0x1d, 0x33, 0x47, 0x2b, 0x1c, - 0x23, 0x13, 0x06, 0x05, 0x12, 0x23, 0x1e, 0x5a, 0x68, 0x1d, 0x33, 0x47, - 0x2b, 0x00, 0x00, 0x08, 0x00, 0x29, 0xfe, 0x7f, 0x07, 0x7d, 0x05, 0xd3, - 0x00, 0x0c, 0x00, 0x19, 0x00, 0x26, 0x00, 0x33, 0x00, 0x40, 0x00, 0x4d, - 0x00, 0x5a, 0x00, 0x67, 0x00, 0x00, 0x05, 0x17, 0x0e, 0x03, 0x07, 0x23, - 0x3e, 0x03, 0x37, 0x03, 0x27, 0x3e, 0x03, 0x37, 0x33, 0x0e, 0x03, 0x07, - 0x01, 0x37, 0x1e, 0x03, 0x17, 0x15, 0x2e, 0x03, 0x27, 0x05, 0x07, 0x2e, - 0x03, 0x27, 0x35, 0x1e, 0x03, 0x17, 0x01, 0x37, 0x3e, 0x03, 0x37, 0x17, - 0x0e, 0x03, 0x07, 0x01, 0x07, 0x0e, 0x03, 0x07, 0x27, 0x3e, 0x03, 0x37, - 0x03, 0x27, 0x2e, 0x03, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x01, 0x17, 0x1e, - 0x03, 0x17, 0x07, 0x2e, 0x03, 0x27, 0x04, 0x37, 0x0b, 0x0a, 0x1c, 0x20, - 0x23, 0x12, 0x61, 0x0a, 0x15, 0x12, 0x10, 0x05, 0x3b, 0x0b, 0x0a, 0x1c, - 0x20, 0x23, 0x12, 0x61, 0x0a, 0x15, 0x12, 0x10, 0x05, 0x02, 0x23, 0x0e, - 0x26, 0x55, 0x57, 0x57, 0x27, 0x2a, 0x5d, 0x5b, 0x57, 0x25, 0xfb, 0x68, - 0x0e, 0x27, 0x55, 0x57, 0x56, 0x27, 0x2a, 0x5d, 0x5b, 0x57, 0x25, 0x03, - 0xa6, 0x02, 0x22, 0x50, 0x54, 0x56, 0x28, 0x45, 0x25, 0x4f, 0x4e, 0x49, - 0x1e, 0xfc, 0xea, 0x02, 0x23, 0x4f, 0x54, 0x56, 0x28, 0x45, 0x25, 0x4f, - 0x4e, 0x49, 0x1e, 0x2b, 0x11, 0x14, 0x29, 0x27, 0x24, 0x0f, 0x43, 0x17, - 0x33, 0x34, 0x32, 0x17, 0x03, 0x6a, 0x11, 0x14, 0x28, 0x27, 0x25, 0x0f, - 0x43, 0x17, 0x34, 0x34, 0x32, 0x16, 0x23, 0x0e, 0x27, 0x55, 0x57, 0x56, - 0x27, 0x2a, 0x5d, 0x5b, 0x57, 0x25, 0x04, 0x98, 0x0e, 0x26, 0x55, 0x57, - 0x57, 0x27, 0x2a, 0x5d, 0x5b, 0x57, 0x25, 0xfe, 0x16, 0x0b, 0x0a, 0x1c, - 0x20, 0x23, 0x12, 0x61, 0x0a, 0x15, 0x12, 0x10, 0x05, 0x3b, 0x0b, 0x0a, - 0x1c, 0x20, 0x23, 0x12, 0x61, 0x0a, 0x15, 0x12, 0x10, 0x05, 0x01, 0xaa, - 0x10, 0x14, 0x29, 0x27, 0x25, 0x0f, 0x44, 0x17, 0x33, 0x34, 0x32, 0x16, - 0xfc, 0x95, 0x10, 0x14, 0x29, 0x27, 0x25, 0x0f, 0x44, 0x17, 0x33, 0x34, - 0x32, 0x16, 0x02, 0xde, 0x02, 0x22, 0x50, 0x54, 0x55, 0x28, 0x46, 0x25, - 0x4f, 0x4e, 0x49, 0x1e, 0xfc, 0xe9, 0x02, 0x23, 0x4f, 0x54, 0x55, 0x28, - 0x46, 0x25, 0x4f, 0x4e, 0x49, 0x1e, 0x00, 0x02, 0x00, 0xc9, 0xfe, 0x7f, - 0x05, 0xd3, 0x07, 0x68, 0x00, 0x1b, 0x00, 0x31, 0x00, 0xb3, 0x40, 0x48, - 0x1c, 0x1c, 0x30, 0x26, 0x01, 0xd0, 0x26, 0x01, 0xaf, 0x26, 0xcf, 0x26, - 0x02, 0x20, 0x26, 0x30, 0x26, 0x80, 0x26, 0x03, 0x26, 0x26, 0x17, 0x0a, - 0x19, 0x1a, 0x1a, 0x18, 0x1b, 0x15, 0x07, 0x00, 0x5a, 0x17, 0x65, 0x33, - 0xd0, 0x33, 0x01, 0xaf, 0x33, 0x01, 0x20, 0x33, 0x30, 0x33, 0x02, 0x13, - 0x08, 0x0c, 0x5a, 0x09, 0x64, 0x32, 0x26, 0x9f, 0x1c, 0x01, 0x1c, 0x40, - 0x06, 0x09, 0x48, 0x1c, 0x1c, 0x2c, 0x8e, 0x21, 0x05, 0x1a, 0xfb, 0x13, - 0xb8, 0xff, 0xe8, 0xb3, 0x14, 0x18, 0x48, 0x13, 0xb8, 0xff, 0xe0, 0x40, - 0x26, 0x0a, 0x13, 0x48, 0x06, 0x13, 0x16, 0x13, 0x26, 0x13, 0x03, 0x09, - 0x13, 0x17, 0x5f, 0x00, 0x12, 0x06, 0x18, 0x14, 0x18, 0x48, 0x06, 0x20, - 0x0a, 0x13, 0x48, 0x09, 0x06, 0x19, 0x06, 0x29, 0x06, 0x03, 0x07, 0x06, - 0x16, 0x0a, 0x03, 0x00, 0x3f, 0x33, 0x33, 0x5e, 0x5d, 0x2b, 0x2b, 0x3f, - 0xe1, 0x33, 0x33, 0x5d, 0x2b, 0x2b, 0x3f, 0x3f, 0xe1, 0x33, 0x2f, 0x2b, - 0x5d, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x5d, 0x5d, 0x10, - 0xf4, 0xe1, 0x32, 0x32, 0x33, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x12, 0x39, - 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0x33, 0x2f, 0x31, 0x30, 0x21, 0x11, 0x34, - 0x36, 0x37, 0x36, 0x37, 0x23, 0x01, 0x23, 0x11, 0x33, 0x11, 0x14, 0x0e, - 0x02, 0x07, 0x06, 0x07, 0x33, 0x01, 0x33, 0x11, 0x33, 0x03, 0x23, 0x13, - 0x03, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x33, 0x1e, 0x03, 0x33, - 0x32, 0x3e, 0x02, 0x37, 0x04, 0x64, 0x05, 0x04, 0x04, 0x06, 0x08, 0xfd, - 0x31, 0xd7, 0xae, 0x01, 0x03, 0x03, 0x01, 0x04, 0x03, 0x07, 0x02, 0xcc, - 0xd5, 0xc3, 0x8f, 0xda, 0xa6, 0x9d, 0x06, 0x31, 0x5d, 0x8d, 0x64, 0x67, - 0x8c, 0x58, 0x2a, 0x04, 0xaa, 0x04, 0x1c, 0x32, 0x4c, 0x35, 0x2b, 0x49, - 0x37, 0x22, 0x06, 0x03, 0x19, 0x38, 0x8f, 0x41, 0x4c, 0x4d, 0xfb, 0x46, - 0x05, 0xb6, 0xfc, 0xe0, 0x1a, 0x3e, 0x43, 0x44, 0x1f, 0x4a, 0x4c, 0x04, - 0xb4, 0xfa, 0xf0, 0xfd, 0xd9, 0x01, 0x81, 0x07, 0x68, 0x4d, 0x77, 0x50, - 0x29, 0x27, 0x4f, 0x77, 0x50, 0x39, 0x48, 0x29, 0x10, 0x12, 0x2c, 0x47, - 0x35, 0x00, 0x00, 0x02, 0x00, 0xae, 0xfe, 0x83, 0x04, 0xf2, 0x06, 0x17, - 0x00, 0x0f, 0x00, 0x25, 0x00, 0x96, 0x40, 0x3a, 0x10, 0x10, 0x04, 0x1a, - 0x34, 0x1a, 0x84, 0x1a, 0x03, 0x07, 0x1a, 0x1a, 0x0b, 0x05, 0x0d, 0x0e, - 0x0e, 0x0f, 0x0c, 0x09, 0x10, 0x09, 0x18, 0x48, 0x09, 0x02, 0x00, 0x46, - 0x0b, 0x55, 0x27, 0xa4, 0x27, 0xc4, 0x27, 0xd4, 0x27, 0xf4, 0x27, 0x04, - 0x80, 0x27, 0x01, 0x02, 0x00, 0x27, 0x10, 0x27, 0x20, 0x27, 0x50, 0x27, - 0x60, 0x27, 0x70, 0x27, 0x06, 0x03, 0xb8, 0xff, 0xf0, 0x40, 0x25, 0x09, - 0x18, 0x48, 0x03, 0x08, 0x07, 0x46, 0x04, 0x54, 0x26, 0x1a, 0x7f, 0x10, - 0x01, 0x10, 0x40, 0x06, 0x09, 0x48, 0x10, 0x10, 0x20, 0x8e, 0x15, 0x11, - 0x0e, 0xfb, 0x09, 0x02, 0x05, 0x0f, 0x0b, 0x60, 0x08, 0x04, 0x00, 0x15, - 0x00, 0x3f, 0x32, 0x32, 0xe1, 0x3f, 0x33, 0x33, 0x3f, 0x3f, 0xe1, 0x33, - 0x2f, 0x2b, 0x5d, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x2b, 0x5d, - 0x5f, 0x5d, 0x5d, 0x10, 0xf4, 0xe1, 0x32, 0x32, 0x2b, 0x33, 0x33, 0x39, - 0x2f, 0x33, 0x11, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0x2f, 0x31, 0x30, - 0x21, 0x11, 0x13, 0x01, 0x23, 0x11, 0x33, 0x11, 0x07, 0x01, 0x33, 0x11, - 0x33, 0x03, 0x23, 0x13, 0x03, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x27, - 0x33, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x03, 0x8f, 0x0b, 0xfd, - 0xfe, 0xea, 0xac, 0x0c, 0x02, 0x04, 0xe9, 0xb7, 0x7b, 0xb6, 0x7a, 0x47, - 0x06, 0x31, 0x5d, 0x8d, 0x64, 0x67, 0x8c, 0x58, 0x2a, 0x04, 0xaa, 0x04, - 0x1c, 0x32, 0x4c, 0x35, 0x2b, 0x49, 0x37, 0x22, 0x06, 0x02, 0x87, 0x01, - 0x0f, 0xfc, 0x6a, 0x04, 0x4a, 0xfd, 0x64, 0xfc, 0x03, 0x98, 0xfc, 0x50, - 0xfd, 0xe9, 0x01, 0x7d, 0x06, 0x17, 0x4e, 0x76, 0x51, 0x29, 0x27, 0x50, - 0x77, 0x50, 0x39, 0x49, 0x29, 0x10, 0x12, 0x2c, 0x48, 0x35, 0x00, 0x02, - 0x00, 0x2f, 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, 0x00, 0x16, 0x00, 0x21, - 0x00, 0x52, 0x40, 0x2c, 0x13, 0x00, 0x17, 0x5a, 0x0c, 0x15, 0x15, 0x06, - 0x10, 0x0c, 0x0c, 0x0e, 0x1b, 0x5b, 0x06, 0x67, 0x23, 0x0e, 0x21, 0x5f, - 0x00, 0x16, 0x0d, 0x5f, 0x10, 0x13, 0x10, 0x89, 0x00, 0x01, 0x0f, 0x10, - 0x01, 0x07, 0x00, 0x10, 0x00, 0x10, 0x11, 0x03, 0x17, 0x60, 0x0c, 0x12, - 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x11, - 0x33, 0x10, 0xe1, 0x32, 0x10, 0xe1, 0x01, 0x2f, 0x10, 0xf6, 0xe1, 0x11, - 0x39, 0x2f, 0x33, 0x12, 0x39, 0x2f, 0x10, 0xe1, 0x32, 0x32, 0x31, 0x30, - 0x01, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, - 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x21, 0x15, 0x21, 0x11, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x01, 0x81, 0x96, 0x98, 0xcf, - 0x7e, 0x37, 0x3c, 0x7e, 0xc2, 0x86, 0xfe, 0x96, 0x98, 0x98, 0xba, 0x01, - 0x3b, 0xfe, 0xc5, 0xa0, 0xae, 0xa4, 0x2e, 0x5b, 0x8b, 0x5d, 0x81, 0x03, - 0x4e, 0x42, 0x71, 0x98, 0x57, 0x61, 0x9e, 0x70, 0x3d, 0x04, 0x60, 0xa4, - 0xb2, 0xb2, 0xa4, 0xfc, 0x40, 0x84, 0x88, 0x46, 0x61, 0x3c, 0x1b, 0x00, - 0x00, 0x02, 0x00, 0x12, 0x00, 0x00, 0x04, 0x19, 0x06, 0x14, 0x00, 0x14, - 0x00, 0x21, 0x00, 0x61, 0x40, 0x3b, 0x01, 0x01, 0x0e, 0x1c, 0x47, 0x08, - 0x57, 0x23, 0x6f, 0x23, 0xbf, 0x23, 0xdf, 0x23, 0xff, 0x23, 0x04, 0x03, - 0x00, 0x16, 0x47, 0x12, 0x11, 0x0e, 0x54, 0x22, 0x15, 0x50, 0x04, 0x03, - 0x0f, 0x50, 0x12, 0x00, 0x12, 0x04, 0x40, 0x07, 0x24, 0x48, 0x0f, 0x12, - 0x01, 0x0f, 0x12, 0x1f, 0x12, 0x02, 0x07, 0x04, 0x12, 0x04, 0x12, 0x13, - 0x00, 0x16, 0x50, 0x0e, 0x15, 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x39, 0x2f, - 0x2f, 0x5e, 0x5d, 0x71, 0x2b, 0x11, 0x33, 0x10, 0xe1, 0x32, 0x10, 0xe1, - 0x01, 0x10, 0xf6, 0xc4, 0x33, 0xe1, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0xe1, - 0x12, 0x39, 0x2f, 0x31, 0x30, 0x01, 0x21, 0x15, 0x21, 0x11, 0x21, 0x32, - 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x21, 0x11, 0x23, 0x35, 0x33, 0x35, - 0x33, 0x11, 0x11, 0x21, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, - 0x01, 0x64, 0x01, 0x17, 0xfe, 0xe9, 0x01, 0x15, 0xd3, 0xcd, 0x2f, 0x65, - 0x9f, 0x71, 0xfe, 0x39, 0x9c, 0x9c, 0xb6, 0x01, 0x04, 0x37, 0x5e, 0x43, - 0x26, 0x21, 0x41, 0x60, 0x40, 0x05, 0x21, 0x89, 0xfd, 0xef, 0x9c, 0x9b, - 0x4d, 0x7c, 0x58, 0x2f, 0x04, 0x98, 0x89, 0xf3, 0xfb, 0xda, 0xfe, 0xa8, - 0x11, 0x29, 0x42, 0x30, 0x31, 0x42, 0x28, 0x11, 0x00, 0x02, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0x33, 0x05, 0xb6, 0x00, 0x13, 0x00, 0x22, 0x00, 0x88, - 0x40, 0x4f, 0x1b, 0x05, 0x1a, 0x06, 0x1a, 0x18, 0x08, 0x19, 0x07, 0x07, - 0x06, 0x19, 0x06, 0x19, 0x06, 0x0c, 0x1e, 0x5b, 0x28, 0x00, 0x38, 0x00, - 0x48, 0x00, 0x03, 0x00, 0x67, 0x24, 0xcf, 0x24, 0x01, 0x40, 0x24, 0x01, - 0x0f, 0x24, 0x01, 0x06, 0x14, 0x0c, 0x5a, 0x0d, 0x64, 0x23, 0x19, 0x18, - 0x1b, 0xaf, 0x1a, 0x01, 0x1a, 0x1a, 0x14, 0x22, 0x06, 0xb0, 0x07, 0x01, - 0x07, 0x07, 0x0c, 0x05, 0x08, 0x14, 0x60, 0x30, 0x0b, 0x40, 0x0b, 0x02, - 0x0b, 0x0b, 0x0c, 0x22, 0x60, 0x0e, 0x03, 0x0c, 0x12, 0x00, 0x3f, 0x3f, - 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x39, 0x39, 0x12, 0x39, 0x2f, 0x5d, - 0x33, 0x11, 0x12, 0x39, 0x2f, 0x5d, 0x39, 0x39, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5e, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x5d, 0xe1, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x12, 0x39, 0x39, 0x32, 0x11, 0x12, - 0x39, 0x39, 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x17, 0x07, 0x27, - 0x06, 0x23, 0x23, 0x11, 0x23, 0x11, 0x21, 0x32, 0x1e, 0x02, 0x01, 0x33, - 0x32, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x23, 0x04, 0x33, 0x16, 0x2f, 0x4b, 0x36, 0x6e, 0x6a, 0x81, 0x5d, 0x7c, - 0x96, 0xba, 0x01, 0x6a, 0x86, 0xc2, 0x7e, 0x3c, 0xfd, 0x4e, 0x81, 0x26, - 0x44, 0x1f, 0x5c, 0x6d, 0x70, 0x33, 0x34, 0xa4, 0xae, 0xa0, 0x04, 0x0a, - 0x3a, 0x6f, 0x64, 0x56, 0x20, 0x9b, 0x4e, 0xb6, 0x1b, 0xfd, 0xc7, 0x05, - 0xb6, 0x39, 0x6d, 0xa0, 0xfe, 0x67, 0x05, 0x05, 0x85, 0x4c, 0xa0, 0x24, - 0x73, 0x57, 0x8e, 0x89, 0x00, 0x02, 0x00, 0xae, 0xfe, 0x14, 0x04, 0x3f, - 0x04, 0x5e, 0x00, 0x23, 0x00, 0x39, 0x00, 0x72, 0x40, 0x40, 0x34, 0x35, - 0x32, 0x33, 0x33, 0x2a, 0x20, 0x1e, 0x1f, 0x1f, 0x37, 0x48, 0x21, 0x2a, - 0x1b, 0x57, 0x3b, 0x30, 0x3b, 0x01, 0x2a, 0x10, 0x0c, 0x47, 0x0d, 0x54, - 0x3a, 0x33, 0x35, 0x32, 0x2f, 0x0f, 0x34, 0x1f, 0x34, 0x6f, 0x34, 0xcf, - 0x34, 0x04, 0x07, 0x34, 0x34, 0x2f, 0x24, 0x50, 0x10, 0x16, 0x10, 0x0e, - 0x0f, 0x1f, 0x20, 0x20, 0x00, 0x0c, 0x1b, 0x21, 0x1e, 0x2f, 0x50, 0x06, - 0x00, 0x16, 0x00, 0x3f, 0x32, 0xe1, 0x39, 0x39, 0x3f, 0x12, 0x39, 0x2f, - 0x33, 0x3f, 0x3f, 0x33, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x12, 0x39, - 0x39, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, 0x5d, 0x10, 0xf6, 0x11, - 0x39, 0xe1, 0x39, 0x2f, 0x39, 0x33, 0x11, 0x39, 0x2f, 0x39, 0x39, 0x33, - 0x31, 0x30, 0x05, 0x22, 0x2e, 0x02, 0x27, 0x23, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x11, 0x23, 0x11, 0x33, 0x17, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x1e, - 0x02, 0x15, 0x14, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x06, 0x03, 0x22, - 0x0e, 0x02, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x27, - 0x37, 0x17, 0x36, 0x35, 0x34, 0x26, 0x02, 0x9e, 0x3b, 0x60, 0x4d, 0x3c, - 0x16, 0x0c, 0x03, 0x03, 0x02, 0x04, 0xb6, 0x94, 0x1a, 0x08, 0x16, 0x3b, - 0x4d, 0x60, 0x3c, 0x5e, 0x99, 0x6e, 0x3c, 0x5a, 0x52, 0x6d, 0x6a, 0x75, - 0x1f, 0x41, 0x46, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, 0x41, 0x6c, 0x51, - 0x11, 0x21, 0x0f, 0x6a, 0x6d, 0x6e, 0x54, 0x7f, 0x14, 0x19, 0x2c, 0x3a, - 0x20, 0x22, 0x1f, 0x1a, 0x37, 0x10, 0xfe, 0x2b, 0x06, 0x36, 0x94, 0x22, - 0x3e, 0x2d, 0x1b, 0x48, 0x8f, 0xd4, 0x8c, 0xaf, 0xf2, 0x44, 0x9a, 0x4e, - 0xa6, 0x09, 0x0b, 0x03, 0xdb, 0x2e, 0x5e, 0x8d, 0x5e, 0x29, 0x65, 0x9d, - 0x6b, 0x37, 0x03, 0x05, 0x98, 0x4c, 0x9e, 0x6a, 0xee, 0xd0, 0xce, 0x00, - 0x00, 0x01, 0x00, 0x2f, 0x00, 0x00, 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x0d, - 0x00, 0x89, 0x40, 0x15, 0x1f, 0x05, 0x2f, 0x05, 0x02, 0x05, 0x05, 0x08, - 0x0f, 0x00, 0x1f, 0x00, 0x02, 0x90, 0x00, 0xa0, 0x00, 0xe0, 0x00, 0x03, - 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x1e, 0x07, 0x0a, 0x48, 0x00, 0x00, 0x0f, - 0x1f, 0x0f, 0x3f, 0x0f, 0x9f, 0x0f, 0xbf, 0x0f, 0x04, 0x03, 0x07, 0x5a, - 0x0c, 0x00, 0x0a, 0x01, 0x06, 0x0a, 0x80, 0x08, 0xc0, 0x08, 0x02, 0x08, - 0xb8, 0xff, 0xc0, 0x40, 0x26, 0x06, 0x0a, 0x48, 0x08, 0x06, 0x09, 0x5f, - 0x03, 0x0f, 0x0c, 0x2f, 0x0c, 0x3f, 0x0c, 0x4f, 0x0c, 0x04, 0x0f, 0x0c, - 0x3f, 0x0c, 0xaf, 0x0c, 0xdf, 0x0c, 0xff, 0x0c, 0x05, 0x08, 0x0c, 0x0c, - 0x07, 0x02, 0x5f, 0x0d, 0x03, 0x07, 0x12, 0x00, 0x3f, 0x3f, 0xe1, 0x12, - 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5d, - 0xc6, 0x5e, 0x5d, 0x33, 0xe1, 0x32, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, - 0x71, 0x12, 0x39, 0x2f, 0x5d, 0x31, 0x30, 0x01, 0x15, 0x21, 0x11, 0x21, - 0x15, 0x21, 0x11, 0x23, 0x11, 0x23, 0x35, 0x33, 0x11, 0x03, 0xbe, 0xfd, - 0xc3, 0x01, 0x50, 0xfe, 0xb0, 0xba, 0x98, 0x98, 0x05, 0xb6, 0xa6, 0xfe, - 0x15, 0xa2, 0xfd, 0x7d, 0x02, 0x83, 0xa2, 0x02, 0x91, 0x00, 0x00, 0x01, - 0x00, 0x12, 0x00, 0x00, 0x03, 0x0a, 0x04, 0x4a, 0x00, 0x0d, 0x00, 0x6e, - 0x40, 0x1d, 0x0b, 0x0b, 0x00, 0x20, 0x06, 0x30, 0x06, 0x02, 0x06, 0x06, - 0x0f, 0x70, 0x0f, 0xa0, 0x0f, 0xc0, 0x0f, 0x03, 0x09, 0x0d, 0x47, 0x04, - 0xdf, 0x02, 0xef, 0x02, 0x02, 0x02, 0x00, 0xb8, 0xff, 0xc0, 0xb3, 0x12, - 0x15, 0x48, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x21, 0x06, 0x0b, 0x48, 0x00, - 0x0c, 0x01, 0x4f, 0x09, 0x4f, 0x04, 0x5f, 0x04, 0x02, 0x04, 0x40, 0x17, - 0x1c, 0x48, 0x0b, 0x04, 0x1b, 0x04, 0x02, 0x07, 0x04, 0x04, 0x00, 0x08, - 0x50, 0x05, 0x0f, 0x00, 0x15, 0x00, 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x2f, - 0x5e, 0x5d, 0x2b, 0x5d, 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x2b, 0xc6, - 0x5d, 0x33, 0xe1, 0x32, 0x5d, 0x11, 0x33, 0x2f, 0x5d, 0x12, 0x39, 0x2f, - 0x31, 0x30, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, - 0x21, 0x15, 0x21, 0x11, 0xae, 0x9c, 0x9c, 0x02, 0x5c, 0xfe, 0x5a, 0x01, - 0x17, 0xfe, 0xe9, 0x01, 0xe1, 0x89, 0x01, 0xe0, 0x9a, 0xfe, 0xba, 0x89, - 0xfe, 0x1f, 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x00, 0x04, 0x98, 0x05, 0xb6, - 0x00, 0x26, 0x00, 0x66, 0x40, 0x41, 0x09, 0x15, 0x01, 0x07, 0x07, 0x07, - 0x05, 0x22, 0x5b, 0x12, 0x28, 0xc0, 0x28, 0x01, 0x7f, 0x28, 0x8f, 0x28, - 0x02, 0x10, 0x28, 0x40, 0x28, 0x02, 0x1c, 0x1c, 0x0a, 0x04, 0x5a, 0x05, - 0x64, 0x27, 0x1d, 0x20, 0x5f, 0x17, 0x1c, 0x00, 0x60, 0x0f, 0x0d, 0x2f, - 0x0d, 0x3f, 0x0d, 0x03, 0x0f, 0x0d, 0x3f, 0x0d, 0xdf, 0x0d, 0xff, 0x0d, - 0x04, 0x08, 0x0d, 0x0d, 0x05, 0x09, 0x5f, 0x06, 0x03, 0x05, 0x12, 0x00, - 0x3f, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, 0xe1, 0x3f, 0xe1, - 0x33, 0x01, 0x10, 0xf6, 0xf1, 0x32, 0xc0, 0x2f, 0x5d, 0x5d, 0x5d, 0x10, - 0xde, 0xe1, 0x12, 0x39, 0x2f, 0x31, 0x30, 0x00, 0x5e, 0x5d, 0x01, 0x22, - 0x06, 0x07, 0x11, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x36, 0x36, 0x33, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x27, - 0x35, 0x16, 0x16, 0x33, 0x20, 0x11, 0x34, 0x2e, 0x02, 0x01, 0xfc, 0x25, - 0x3c, 0x1a, 0xba, 0x02, 0xf7, 0xfd, 0xc3, 0x1d, 0x47, 0x2d, 0x9a, 0xf0, - 0xa5, 0x57, 0x52, 0x92, 0xc9, 0x76, 0x31, 0x4e, 0x44, 0x3d, 0x1f, 0x3f, - 0x7f, 0x48, 0x01, 0x77, 0x43, 0x7b, 0xae, 0x02, 0x83, 0x05, 0x05, 0xfd, - 0x87, 0x05, 0xb6, 0xa6, 0xfe, 0x0b, 0x05, 0x03, 0x5c, 0xab, 0xf2, 0x97, - 0xaa, 0xf8, 0xa2, 0x4f, 0x06, 0x0c, 0x13, 0x0c, 0xa2, 0x17, 0x18, 0x01, - 0xef, 0x79, 0xb9, 0x7e, 0x40, 0x00, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x0a, - 0x03, 0xc5, 0x04, 0x4a, 0x00, 0x23, 0x00, 0x5c, 0x40, 0x39, 0x09, 0x22, - 0x19, 0x22, 0x29, 0x22, 0x03, 0x14, 0x14, 0x12, 0x0a, 0x48, 0x1f, 0x25, - 0x0f, 0x25, 0x1f, 0x25, 0x02, 0x5f, 0x25, 0x7f, 0x25, 0xff, 0x25, 0x03, - 0x03, 0x03, 0x17, 0x11, 0x47, 0x12, 0x54, 0x24, 0x04, 0x00, 0x0d, 0x51, - 0x0b, 0x1a, 0x1b, 0x1a, 0x02, 0x07, 0x1a, 0x1a, 0x12, 0x16, 0x50, 0x13, - 0x0f, 0x12, 0x15, 0x07, 0x51, 0x00, 0x1b, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, - 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe9, 0x11, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x39, 0x2f, 0x5d, 0x71, 0x10, 0xde, 0xe1, 0x12, 0x39, 0x2f, - 0x31, 0x30, 0x00, 0x5d, 0x01, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x11, 0x23, 0x11, - 0x21, 0x15, 0x21, 0x11, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, - 0x0e, 0x02, 0x02, 0x29, 0x4b, 0x6a, 0x2e, 0x2b, 0x6a, 0x42, 0x76, 0x75, - 0x90, 0x9d, 0x1a, 0x3e, 0x1f, 0xb6, 0x02, 0x5c, 0xfe, 0x5a, 0x1d, 0x3b, - 0x1f, 0x66, 0xb3, 0x85, 0x4c, 0x40, 0x6f, 0x96, 0xfe, 0x0a, 0x1f, 0x1d, - 0xa1, 0x18, 0x25, 0xc3, 0xd2, 0xd4, 0xca, 0x0a, 0x08, 0xfe, 0x35, 0x04, - 0x4a, 0x9a, 0xfe, 0xc3, 0x05, 0x05, 0x3e, 0x8a, 0xdb, 0x9d, 0x96, 0xd5, - 0x88, 0x40, 0x00, 0x01, 0x00, 0x04, 0xfe, 0x7f, 0x06, 0xcb, 0x05, 0xb6, - 0x00, 0x15, 0x00, 0xe2, 0x40, 0x57, 0x11, 0x40, 0x14, 0x18, 0x48, 0x11, - 0x20, 0x09, 0x13, 0x48, 0x0a, 0x11, 0x1a, 0x11, 0x02, 0x00, 0x40, 0x14, - 0x18, 0x48, 0x00, 0x20, 0x09, 0x13, 0x48, 0x0a, 0x00, 0x1a, 0x00, 0x02, - 0x07, 0x10, 0x0d, 0x0d, 0x02, 0x5a, 0x07, 0x0a, 0x0a, 0xa8, 0x03, 0xb8, - 0x03, 0x02, 0x99, 0x03, 0x01, 0x8d, 0x03, 0x01, 0x57, 0x03, 0x67, 0x03, - 0x77, 0x03, 0x03, 0x03, 0x03, 0x03, 0x12, 0x06, 0x00, 0x0e, 0x0f, 0x10, - 0x0f, 0x40, 0x0c, 0x18, 0x48, 0x0f, 0x11, 0x0f, 0x15, 0x5a, 0x04, 0x12, - 0x01, 0x74, 0x12, 0x84, 0x12, 0xc4, 0x12, 0x03, 0x12, 0xb8, 0xff, 0xc0, - 0x40, 0x27, 0x07, 0x0a, 0x48, 0x12, 0x12, 0x17, 0x04, 0x17, 0x01, 0xf0, - 0x17, 0x01, 0xe4, 0x17, 0x01, 0xa0, 0x17, 0x01, 0x02, 0x20, 0x17, 0x30, - 0x17, 0x60, 0x17, 0x70, 0x17, 0x90, 0x17, 0x05, 0x0f, 0x17, 0x01, 0x08, - 0x09, 0x08, 0x05, 0x08, 0x06, 0xb8, 0xff, 0xf0, 0x40, 0x13, 0x06, 0x06, - 0x16, 0x13, 0xfb, 0x0d, 0x0a, 0x0a, 0x00, 0x0f, 0x08, 0x0b, 0x03, 0x11, - 0x5f, 0x05, 0x03, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x32, 0xe1, 0x3f, 0x33, - 0x33, 0x12, 0x39, 0x11, 0x33, 0x3f, 0x11, 0x01, 0x33, 0x2f, 0x38, 0x33, - 0x33, 0x11, 0x33, 0x5e, 0x5d, 0x5d, 0x5f, 0x5d, 0x5d, 0x5d, 0x71, 0x11, - 0x33, 0x2f, 0x2b, 0x5d, 0x71, 0xe1, 0x33, 0x33, 0x2f, 0x2b, 0x38, 0x33, - 0x32, 0x11, 0x12, 0x39, 0x2f, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x11, - 0x33, 0xe1, 0x32, 0x11, 0x33, 0x5e, 0x5d, 0x2b, 0x2b, 0x5d, 0x2b, 0x2b, - 0x31, 0x30, 0x21, 0x01, 0x11, 0x23, 0x11, 0x01, 0x23, 0x01, 0x01, 0x33, - 0x01, 0x11, 0x33, 0x11, 0x01, 0x33, 0x01, 0x01, 0x33, 0x11, 0x23, 0x11, - 0x05, 0xae, 0xfd, 0xee, 0xb3, 0xfd, 0xee, 0xd3, 0x02, 0x21, 0xfd, 0xed, - 0xcd, 0x02, 0x0a, 0xb3, 0x02, 0x0a, 0xcd, 0xfd, 0xed, 0x01, 0xa8, 0xc3, - 0xb0, 0x02, 0xe5, 0xfd, 0x1b, 0x02, 0xe5, 0xfd, 0x1b, 0x02, 0xf2, 0x02, - 0xc4, 0xfd, 0x3c, 0x02, 0xc4, 0xfd, 0x3c, 0x02, 0xc4, 0xfd, 0x3c, 0xfd, - 0xb4, 0xfd, 0xd9, 0x01, 0x81, 0x00, 0x00, 0x01, 0x00, 0x04, 0xfe, 0x83, - 0x06, 0x04, 0x04, 0x4a, 0x00, 0x15, 0x01, 0x11, 0x40, 0x6c, 0x27, 0x10, - 0x37, 0x10, 0x02, 0x29, 0x0e, 0x39, 0x0e, 0x02, 0x26, 0x09, 0x36, 0x09, - 0x02, 0x27, 0x0a, 0x37, 0x0a, 0x02, 0x27, 0x04, 0x37, 0x04, 0x02, 0x27, - 0x04, 0x37, 0x04, 0x02, 0x27, 0x01, 0x37, 0x01, 0x02, 0x11, 0x40, 0x14, - 0x18, 0x48, 0x11, 0x20, 0x09, 0x13, 0x48, 0x0a, 0x11, 0x1a, 0x11, 0x02, - 0x00, 0x40, 0x14, 0x18, 0x48, 0x00, 0x20, 0x09, 0x13, 0x48, 0x0a, 0x00, - 0x1a, 0x00, 0x02, 0x10, 0x0d, 0x0d, 0x02, 0x46, 0x07, 0x0a, 0x0a, 0xcd, - 0x03, 0x01, 0xb9, 0x03, 0x01, 0xa9, 0x03, 0x01, 0x96, 0x03, 0x01, 0x87, - 0x03, 0x01, 0x03, 0x03, 0x03, 0x12, 0x06, 0x00, 0x0e, 0x0f, 0x10, 0x0f, - 0x40, 0x0a, 0x18, 0x48, 0x0f, 0x11, 0x0f, 0x15, 0x46, 0x12, 0xb8, 0xff, - 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x12, 0xb8, 0xff, 0xc0, 0x40, 0x17, 0x07, - 0x0b, 0x48, 0x12, 0x12, 0x17, 0x10, 0x17, 0x01, 0x00, 0x17, 0x01, 0xe4, - 0x17, 0xf4, 0x17, 0x02, 0xb4, 0x17, 0xc4, 0x17, 0x02, 0x17, 0xb8, 0xff, - 0xc0, 0x40, 0x13, 0x0d, 0x11, 0x48, 0x30, 0x17, 0x01, 0x02, 0x20, 0x17, - 0x01, 0x0f, 0x17, 0x01, 0x07, 0x09, 0x08, 0x05, 0x08, 0x06, 0xb8, 0xff, - 0xf0, 0x40, 0x13, 0x06, 0x06, 0x16, 0x13, 0xfb, 0x0d, 0x0a, 0x0a, 0x00, - 0x0f, 0x08, 0x0b, 0x0f, 0x11, 0x60, 0x05, 0x03, 0x00, 0x15, 0x00, 0x3f, - 0x32, 0x32, 0xe1, 0x3f, 0x33, 0x33, 0x12, 0x39, 0x11, 0x33, 0x3f, 0x11, - 0x01, 0x33, 0x2f, 0x38, 0x33, 0x33, 0x11, 0x33, 0x5e, 0x5d, 0x5d, 0x5f, - 0x5d, 0x2b, 0x5d, 0x5d, 0x71, 0x71, 0x11, 0x33, 0x2f, 0x2b, 0x2b, 0xe1, - 0x33, 0x33, 0x2f, 0x2b, 0x38, 0x33, 0x32, 0x11, 0x12, 0x39, 0x2f, 0x5f, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0x11, 0x33, 0xe1, 0x32, 0x11, 0x33, - 0x5d, 0x2b, 0x2b, 0x5d, 0x2b, 0x2b, 0x31, 0x30, 0x00, 0x5d, 0x5d, 0x01, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x21, 0x01, 0x11, 0x23, 0x11, 0x01, 0x23, - 0x01, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, 0x01, 0x33, 0x01, 0x01, 0x33, - 0x11, 0x23, 0x11, 0x04, 0xf0, 0xfe, 0x43, 0xa4, 0xfe, 0x44, 0xcf, 0x01, - 0xcf, 0xfe, 0x58, 0xc5, 0x01, 0x9f, 0xa4, 0x01, 0xa0, 0xc5, 0xfe, 0x58, - 0x01, 0x4f, 0xc5, 0xae, 0x02, 0x2d, 0xfd, 0xd3, 0x02, 0x2d, 0xfd, 0xd3, - 0x02, 0x35, 0x02, 0x15, 0xfd, 0xeb, 0x02, 0x15, 0xfd, 0xeb, 0x02, 0x15, - 0xfd, 0xeb, 0xfe, 0x65, 0xfd, 0xe9, 0x01, 0x7d, 0xff, 0xff, 0x00, 0x48, - 0xfe, 0x42, 0x03, 0xec, 0x05, 0xcb, 0x02, 0x26, 0x01, 0xb1, 0x00, 0x00, - 0x01, 0x07, 0x03, 0x7f, 0x01, 0x48, 0x00, 0x00, 0x00, 0x11, 0xb1, 0x01, - 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x48, 0x42, 0x13, 0x0b, 0x25, 0x01, 0x2b, - 0x35, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0x44, 0xfe, 0x42, 0x03, 0x52, - 0x04, 0x5e, 0x02, 0x26, 0x01, 0xd1, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7f, - 0x00, 0xf2, 0x00, 0x00, 0x00, 0x11, 0xb1, 0x01, 0x01, 0xb8, 0xff, 0xf8, - 0xb4, 0x48, 0x42, 0x29, 0x21, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x35, 0x00, - 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7f, 0x04, 0xec, 0x05, 0xb6, 0x00, 0x10, - 0x00, 0xa6, 0x40, 0x59, 0x05, 0x40, 0x14, 0x18, 0x48, 0xbd, 0x05, 0xcd, - 0x05, 0xdd, 0x05, 0x03, 0x05, 0x20, 0x09, 0x10, 0x48, 0x1a, 0x05, 0x2a, - 0x05, 0x02, 0x00, 0x40, 0x14, 0x18, 0x48, 0xbd, 0x00, 0xcd, 0x00, 0xdd, - 0x00, 0x03, 0x00, 0x20, 0x09, 0x10, 0x48, 0x1a, 0x00, 0x2a, 0x00, 0x02, - 0x06, 0x10, 0x10, 0x08, 0x0e, 0x0f, 0x10, 0x7f, 0x0f, 0x9f, 0x0f, 0x02, - 0x00, 0x0f, 0x30, 0x0f, 0x40, 0x0f, 0x03, 0x06, 0x0f, 0x0f, 0x05, 0x04, - 0x5a, 0x00, 0x00, 0x01, 0x10, 0x01, 0x02, 0x07, 0x01, 0x01, 0x12, 0xb0, - 0x12, 0x01, 0x0c, 0x08, 0x5a, 0x09, 0x64, 0x11, 0x0c, 0xb8, 0xff, 0xf0, - 0x40, 0x16, 0x0b, 0x10, 0x48, 0x06, 0x10, 0x0b, 0x10, 0x48, 0x0c, 0x06, - 0x09, 0x0f, 0x0a, 0x03, 0x00, 0x5f, 0x05, 0x05, 0x09, 0x12, 0x02, 0xfb, - 0x00, 0x3f, 0x3f, 0x33, 0x2f, 0xe1, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x2b, - 0x2b, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, - 0x33, 0xe1, 0x32, 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x38, 0x33, 0x12, 0x39, - 0x11, 0x33, 0x5d, 0x2b, 0x5d, 0x2b, 0x5d, 0x2b, 0x5d, 0x2b, 0x31, 0x30, - 0x25, 0x33, 0x11, 0x23, 0x11, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x37, 0x01, 0x33, 0x01, 0x04, 0x35, 0xb7, 0xb1, 0x6c, 0xfe, 0x3d, - 0x8b, 0xba, 0xba, 0x79, 0x01, 0xc4, 0xd1, 0xfd, 0xf8, 0xa6, 0xfd, 0xd9, - 0x01, 0x81, 0x02, 0xba, 0x72, 0xfd, 0xb8, 0x05, 0xb6, 0xfd, 0x25, 0xa8, - 0x02, 0x33, 0xfd, 0x83, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, 0x04, 0x2b, - 0x04, 0x4a, 0x00, 0x0e, 0x00, 0x99, 0x40, 0x6a, 0x08, 0x40, 0x14, 0x18, - 0x48, 0xbd, 0x08, 0xcd, 0x08, 0xdd, 0x08, 0x03, 0x08, 0x20, 0x09, 0x10, - 0x48, 0x1a, 0x08, 0x2a, 0x08, 0x02, 0x03, 0x40, 0x14, 0x18, 0x48, 0xbd, - 0x03, 0xcd, 0x03, 0xdd, 0x03, 0x03, 0x03, 0x20, 0x09, 0x10, 0x48, 0x1a, - 0x03, 0x2a, 0x03, 0x02, 0x08, 0x07, 0x46, 0x00, 0x01, 0x76, 0x01, 0x86, - 0x01, 0x02, 0x6d, 0x01, 0x01, 0x55, 0x01, 0x01, 0x2b, 0x01, 0x3b, 0x01, - 0x4b, 0x01, 0x03, 0x14, 0x01, 0x01, 0x0b, 0x01, 0x01, 0x06, 0x03, 0x01, - 0x00, 0x04, 0x10, 0x04, 0x02, 0x04, 0x04, 0x10, 0x0e, 0x02, 0x0a, 0x47, - 0x0b, 0x54, 0x0f, 0x09, 0x02, 0x0e, 0x0e, 0x00, 0x0b, 0x03, 0x50, 0x08, - 0x15, 0x05, 0xfb, 0x0c, 0x00, 0x0f, 0x00, 0x3f, 0x32, 0x3f, 0x3f, 0xe1, - 0x33, 0x12, 0x39, 0x11, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, - 0x11, 0x33, 0x2f, 0x5d, 0x33, 0x33, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x11, 0x33, 0xe1, 0x32, 0x5d, 0x2b, 0x5d, 0x2b, 0x5d, 0x2b, 0x5d, - 0x2b, 0x31, 0x30, 0x01, 0x33, 0x01, 0x01, 0x33, 0x11, 0x23, 0x11, 0x23, - 0x01, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0xfa, 0xc4, 0xfe, 0x61, 0x01, - 0x4b, 0xc1, 0xae, 0x66, 0xfe, 0x4b, 0xb4, 0xb4, 0x04, 0x4a, 0xfd, 0xf1, - 0xfe, 0x5f, 0xfd, 0xe9, 0x01, 0x7d, 0x02, 0x2d, 0xfd, 0xd3, 0x04, 0x4a, - 0xfd, 0xeb, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa2, 0x05, 0xb6, - 0x00, 0x12, 0x00, 0x97, 0xb9, 0x00, 0x0f, 0xff, 0xe0, 0x40, 0x5d, 0x12, - 0x15, 0x48, 0x50, 0x0f, 0x60, 0x0f, 0x02, 0x22, 0x0f, 0x32, 0x0f, 0x42, - 0x0f, 0x03, 0x02, 0x40, 0x09, 0x0d, 0x48, 0x0b, 0x07, 0x5a, 0x08, 0x34, - 0x12, 0x54, 0x12, 0x02, 0x12, 0x0f, 0x57, 0x03, 0x01, 0x03, 0x0c, 0x1d, - 0x04, 0x01, 0x0b, 0x04, 0x01, 0x04, 0x04, 0x00, 0x08, 0x64, 0x13, 0x10, - 0x11, 0x11, 0x01, 0x00, 0x10, 0x00, 0x00, 0x10, 0x00, 0x02, 0x07, 0x00, - 0x00, 0x14, 0xb0, 0x14, 0x01, 0x2f, 0x14, 0x01, 0x10, 0x14, 0x01, 0x0b, - 0x05, 0x09, 0x08, 0x20, 0x04, 0x30, 0x04, 0x40, 0x04, 0x03, 0x04, 0x0d, - 0x04, 0x0d, 0x10, 0x09, 0x03, 0x08, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x3f, - 0x33, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x11, 0x12, 0x39, 0x39, 0x01, 0x5d, - 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, 0x38, 0x33, 0x33, 0x11, 0x33, - 0x10, 0xe6, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x33, 0xc1, 0x5d, 0x32, 0x32, - 0x5d, 0x10, 0xe1, 0x32, 0x31, 0x30, 0x00, 0x2b, 0x5d, 0x5d, 0x2b, 0x21, - 0x23, 0x01, 0x15, 0x23, 0x11, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x37, - 0x11, 0x33, 0x15, 0x01, 0x33, 0x01, 0x04, 0xa2, 0xd3, 0xfe, 0xae, 0x85, - 0x77, 0xba, 0xba, 0x77, 0x85, 0x01, 0x41, 0xd1, 0xfd, 0xf8, 0x01, 0xf4, - 0xcd, 0x01, 0x64, 0x62, 0xfd, 0xd7, 0x05, 0xb6, 0xfd, 0x06, 0xa4, 0x01, - 0x63, 0xb3, 0x01, 0xa6, 0xfd, 0x65, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x23, 0x04, 0x4a, 0x00, 0x13, 0x00, 0x9c, 0xb5, 0x11, 0x40, 0x0b, - 0x11, 0x48, 0x0a, 0xb8, 0xff, 0xc0, 0xb3, 0x0b, 0x11, 0x48, 0x0e, 0xb8, - 0xff, 0xf0, 0x40, 0x57, 0x08, 0x0d, 0x48, 0x0e, 0x0a, 0x26, 0x12, 0x01, - 0x12, 0x07, 0x89, 0x13, 0x99, 0x13, 0xa9, 0x13, 0x03, 0x1f, 0x13, 0x2f, - 0x13, 0x3f, 0x13, 0x03, 0x0b, 0x13, 0x01, 0x13, 0x13, 0x0f, 0x06, 0x02, - 0x47, 0x03, 0x54, 0x14, 0x0b, 0x0c, 0x0c, 0x10, 0x0f, 0x10, 0x20, 0x0f, - 0x30, 0x0f, 0x02, 0x0f, 0x0f, 0x15, 0x00, 0x15, 0x10, 0x15, 0x02, 0x00, - 0x15, 0x40, 0x15, 0x60, 0x15, 0x80, 0x15, 0xa0, 0x15, 0xc0, 0x15, 0xe0, - 0x15, 0x07, 0x07, 0x0e, 0x0d, 0x06, 0x06, 0x08, 0x13, 0x08, 0x13, 0x08, - 0x02, 0x0b, 0x04, 0x0f, 0x10, 0x02, 0x15, 0x00, 0x3f, 0x33, 0x3f, 0x33, - 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x12, 0x39, 0x11, 0x33, 0x33, 0x01, 0x5e, - 0x5d, 0x71, 0x11, 0x33, 0x2f, 0x5d, 0x38, 0x33, 0x33, 0x11, 0x33, 0x10, - 0xf6, 0xe1, 0x32, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x33, 0xc1, 0x5d, - 0x32, 0x32, 0x2b, 0x31, 0x30, 0x00, 0x2b, 0x2b, 0x01, 0x27, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x37, 0x11, 0x33, 0x15, 0x13, 0x33, 0x01, 0x15, 0x01, - 0x23, 0x01, 0x15, 0x23, 0x01, 0xcf, 0x6d, 0xb4, 0xb4, 0x6d, 0x7d, 0xeb, - 0xc5, 0xfe, 0x50, 0x01, 0xd7, 0xcf, 0xfe, 0xf8, 0x7d, 0x01, 0xb2, 0x7b, - 0xfd, 0xd3, 0x04, 0x4a, 0xfd, 0xeb, 0x7b, 0x01, 0x46, 0xb9, 0x01, 0x0d, - 0xfe, 0x16, 0x49, 0xfd, 0xe9, 0x01, 0x27, 0xcd, 0x00, 0x01, 0x00, 0x2f, - 0x00, 0x00, 0x04, 0xa2, 0x05, 0xb6, 0x00, 0x14, 0x00, 0x85, 0x40, 0x40, - 0x02, 0x14, 0x66, 0x14, 0x01, 0x14, 0x13, 0x04, 0x40, 0x0e, 0x50, 0x0e, - 0x02, 0x0e, 0x0e, 0x00, 0x10, 0x0c, 0x04, 0x5a, 0x09, 0x07, 0x05, 0x64, - 0x15, 0x12, 0x13, 0x10, 0x13, 0x13, 0x01, 0x00, 0x10, 0x00, 0x00, 0x10, - 0x00, 0x02, 0x07, 0x00, 0x00, 0x16, 0xb0, 0x16, 0x01, 0x2f, 0x16, 0x01, - 0x10, 0x16, 0x01, 0x0f, 0x06, 0x5f, 0x0c, 0x09, 0x09, 0x00, 0x02, 0x10, - 0x0b, 0x10, 0x48, 0x10, 0xb8, 0xff, 0xf0, 0x40, 0x0c, 0x0b, 0x10, 0x48, - 0x10, 0x02, 0x05, 0x12, 0x0a, 0x03, 0x05, 0x00, 0x12, 0x00, 0x3f, 0x32, - 0x3f, 0x33, 0x12, 0x39, 0x39, 0x2b, 0x2b, 0x12, 0x39, 0x2f, 0x33, 0xe1, - 0x32, 0x01, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, 0x38, 0x33, - 0x33, 0x2f, 0x38, 0x33, 0x10, 0xf6, 0xc6, 0x33, 0xe1, 0x32, 0x32, 0x12, - 0x39, 0x2f, 0x5d, 0x11, 0x12, 0x39, 0x5d, 0x11, 0x33, 0x31, 0x30, 0x21, - 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, - 0x33, 0x15, 0x23, 0x11, 0x37, 0x01, 0x33, 0x01, 0x04, 0xa2, 0xd3, 0xfe, - 0x3d, 0x8b, 0xba, 0x98, 0x98, 0xba, 0xd5, 0xd5, 0x79, 0x01, 0xc4, 0xd1, - 0xfd, 0xf8, 0x02, 0xba, 0x72, 0xfd, 0xb8, 0x04, 0x60, 0xa4, 0xb2, 0xb2, - 0xa4, 0xfe, 0x7b, 0xa8, 0x02, 0x33, 0xfd, 0x83, 0x00, 0x01, 0x00, 0x12, - 0x00, 0x00, 0x03, 0xf0, 0x06, 0x14, 0x00, 0x16, 0x00, 0x84, 0x40, 0x0f, - 0x11, 0x0e, 0x0e, 0x0f, 0x04, 0x08, 0x09, 0x03, 0x13, 0x47, 0x14, 0x00, - 0x06, 0x01, 0x06, 0xb8, 0xff, 0xc0, 0xb3, 0x10, 0x15, 0x48, 0x06, 0xb8, - 0xff, 0xc0, 0x40, 0x35, 0x09, 0x0e, 0x48, 0x06, 0x06, 0x0f, 0x16, 0x01, - 0x14, 0x54, 0x17, 0x0c, 0x0d, 0x10, 0x0d, 0x0f, 0x10, 0x35, 0x0f, 0x01, - 0x00, 0x0f, 0x10, 0x0f, 0x20, 0x0f, 0x03, 0x08, 0x0f, 0x0f, 0x18, 0x0f, - 0x18, 0x01, 0x09, 0x11, 0x02, 0x14, 0x14, 0x0f, 0x07, 0x15, 0x4f, 0x04, - 0x01, 0x01, 0x02, 0x0f, 0x15, 0x0c, 0x0f, 0x02, 0x00, 0x00, 0x3f, 0x3f, - 0x3f, 0x12, 0x39, 0x2f, 0x33, 0xe1, 0x32, 0x11, 0x33, 0x11, 0x12, 0x39, - 0x39, 0x01, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x38, 0x33, 0x33, - 0x11, 0x33, 0x10, 0xf6, 0x32, 0xc6, 0x12, 0x39, 0x2f, 0x2b, 0x2b, 0x71, - 0x10, 0xe1, 0x17, 0x32, 0x11, 0x39, 0x11, 0x33, 0x31, 0x30, 0x13, 0x33, - 0x35, 0x33, 0x15, 0x21, 0x15, 0x21, 0x11, 0x03, 0x33, 0x37, 0x01, 0x33, - 0x01, 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x23, 0x12, 0x9c, 0xb4, - 0x01, 0x7b, 0xfe, 0x85, 0x10, 0x04, 0x87, 0x01, 0x25, 0xd3, 0xfe, 0x6f, - 0x01, 0xac, 0xd1, 0xfe, 0xb0, 0x6d, 0xb4, 0x9c, 0x05, 0x5e, 0xb6, 0xb6, - 0x89, 0xfe, 0x75, 0xfe, 0xed, 0xaa, 0x01, 0x69, 0xfe, 0x25, 0xfd, 0x91, - 0x01, 0xf8, 0x52, 0xfe, 0x5a, 0x04, 0xd5, 0x00, 0x00, 0x01, 0x00, 0x14, - 0x00, 0x00, 0x05, 0x44, 0x05, 0xb6, 0x00, 0x0e, 0x00, 0x57, 0x40, 0x33, - 0x02, 0x0e, 0x0e, 0x0d, 0x0a, 0x04, 0x5a, 0x20, 0x05, 0x30, 0x05, 0x40, - 0x05, 0x80, 0x05, 0xf0, 0x05, 0x05, 0x05, 0x05, 0x00, 0x07, 0x0c, 0x0d, - 0x0d, 0x01, 0x00, 0x10, 0x00, 0x00, 0x10, 0x00, 0x02, 0x07, 0x00, 0x00, - 0x10, 0x10, 0x10, 0x01, 0x02, 0x0a, 0x05, 0x0c, 0x07, 0x5f, 0x08, 0x03, - 0x05, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x39, - 0x01, 0x5d, 0x11, 0x33, 0x2f, 0x5e, 0x5d, 0x38, 0x33, 0x33, 0x11, 0x33, - 0x2f, 0x12, 0x39, 0x2f, 0x5d, 0xe1, 0x32, 0x11, 0x39, 0x11, 0x33, 0x31, - 0x30, 0x21, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x37, 0x01, 0x33, 0x01, 0x05, 0x44, 0xd3, 0xfe, 0x3d, 0x8b, 0xbb, 0xfe, - 0xac, 0x02, 0x0f, 0x79, 0x01, 0xc4, 0xd1, 0xfd, 0xf8, 0x02, 0xba, 0x72, - 0xfd, 0xb8, 0x05, 0x12, 0xa4, 0xfd, 0x25, 0xa8, 0x02, 0x33, 0xfd, 0x83, - 0x00, 0x01, 0x00, 0x29, 0x00, 0x00, 0x04, 0xc9, 0x04, 0x4a, 0x00, 0x0d, - 0x00, 0x67, 0x40, 0x40, 0x02, 0x0d, 0x0d, 0x0b, 0x06, 0x47, 0x00, 0x07, - 0x01, 0x00, 0x07, 0x10, 0x07, 0x20, 0x07, 0x60, 0x07, 0xc0, 0x07, 0x05, - 0x08, 0x07, 0x07, 0x03, 0x09, 0x00, 0x01, 0xd5, 0x01, 0xf5, 0x01, 0x02, - 0x01, 0x04, 0x03, 0x10, 0x00, 0x03, 0x10, 0x03, 0x02, 0x03, 0x03, 0x0f, - 0x40, 0x0f, 0xe0, 0x0f, 0x02, 0x0f, 0x0f, 0x01, 0x02, 0x0d, 0x0d, 0x07, - 0x09, 0x50, 0x00, 0x0a, 0x0f, 0x07, 0x03, 0x15, 0x00, 0x3f, 0x33, 0x3f, - 0x33, 0xe1, 0x12, 0x39, 0x11, 0x33, 0x01, 0x5d, 0x5d, 0x11, 0x33, 0x2f, - 0x5d, 0x38, 0x33, 0x33, 0x5d, 0x11, 0x33, 0x2f, 0x12, 0x39, 0x2f, 0x5e, - 0x5d, 0x71, 0xe1, 0x32, 0x32, 0x11, 0x33, 0x31, 0x30, 0x01, 0x33, 0x01, - 0x01, 0x23, 0x01, 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, 0x07, 0x11, 0x03, - 0xdd, 0xc5, 0xfe, 0x60, 0x01, 0xc7, 0xcf, 0xfe, 0x4c, 0xb5, 0xfe, 0x98, - 0x02, 0x1f, 0x02, 0x04, 0x4a, 0xfd, 0xf1, 0xfd, 0xc5, 0x02, 0x2d, 0xfd, - 0xd3, 0x03, 0xb0, 0x9a, 0x02, 0xfd, 0xed, 0x00, 0x00, 0x01, 0x00, 0xe5, - 0xfe, 0x7f, 0x05, 0xa4, 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x63, 0x40, 0x3f, - 0x04, 0x5a, 0x04, 0x01, 0x01, 0x74, 0x01, 0x84, 0x01, 0x94, 0x01, 0x03, - 0x01, 0x01, 0x11, 0x0d, 0x05, 0x5a, 0x00, 0x11, 0xe4, 0x11, 0xf4, 0x11, - 0x02, 0xc0, 0x11, 0x01, 0x02, 0x10, 0x11, 0x20, 0x11, 0x40, 0x11, 0x80, - 0x11, 0x04, 0x0c, 0x08, 0x5a, 0x09, 0x64, 0x10, 0x07, 0x5f, 0x0f, 0x0c, - 0x01, 0x08, 0x0c, 0x0c, 0x05, 0x0e, 0x0a, 0x03, 0x09, 0x00, 0x5f, 0x05, - 0x12, 0x02, 0xfb, 0x00, 0x3f, 0x3f, 0xe1, 0x33, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5f, 0x5d, - 0x5d, 0x10, 0xdc, 0xe1, 0x32, 0x11, 0x33, 0x2f, 0x5d, 0x71, 0xe1, 0x31, - 0x30, 0x25, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x33, 0x04, 0xf4, 0xb0, 0xb0, 0xbb, 0xfd, 0x67, - 0xbb, 0xbb, 0x02, 0x99, 0xbb, 0xa6, 0xfd, 0xd9, 0x01, 0x81, 0x02, 0xaa, - 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x83, 0x04, 0xdb, 0x04, 0x4a, 0x00, 0x0f, 0x00, 0x79, 0x40, 0x52, - 0x08, 0x00, 0x47, 0x04, 0x0b, 0x01, 0x0b, 0x0b, 0x0f, 0x47, 0xc4, 0x0c, - 0xd4, 0x0c, 0x02, 0x0c, 0x0c, 0x11, 0x04, 0x11, 0x24, 0x11, 0x02, 0xd4, - 0x11, 0xf4, 0x11, 0x02, 0xb0, 0x11, 0x01, 0x02, 0x30, 0x11, 0x40, 0x11, - 0x50, 0x11, 0x80, 0x11, 0x90, 0x11, 0xa0, 0x11, 0x06, 0x07, 0x03, 0x47, - 0x04, 0x54, 0x10, 0x0d, 0xfb, 0x02, 0x50, 0xeb, 0x07, 0x01, 0xa9, 0x07, - 0xb9, 0x07, 0x02, 0x0f, 0x07, 0x1f, 0x07, 0x2f, 0x07, 0x03, 0x06, 0x07, - 0x07, 0x00, 0x09, 0x05, 0x0f, 0x0b, 0x50, 0x04, 0x00, 0x15, 0x00, 0x3f, - 0x32, 0xe1, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, - 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5f, 0x5d, 0x5d, 0x71, 0x11, - 0x33, 0x2f, 0x5d, 0xe1, 0x33, 0x2f, 0x5d, 0xe1, 0x32, 0x31, 0x30, 0x21, - 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, - 0x11, 0x23, 0x11, 0x03, 0x85, 0xfd, 0xdf, 0xb6, 0xb6, 0x02, 0x21, 0xb6, - 0xa0, 0xb6, 0x01, 0xe9, 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, - 0xfc, 0x50, 0xfd, 0xe9, 0x01, 0x7d, 0x00, 0x01, 0x00, 0xe5, 0x00, 0x00, - 0x06, 0x48, 0x05, 0xb6, 0x00, 0x0d, 0x00, 0x5d, 0x40, 0x3b, 0x09, 0x01, - 0x5a, 0x00, 0x00, 0x05, 0x40, 0x0b, 0x01, 0xe0, 0x0b, 0x01, 0x0b, 0x0f, - 0x20, 0x0f, 0x01, 0x00, 0x0f, 0x10, 0x0f, 0x30, 0x0f, 0x40, 0x0f, 0x60, - 0x0f, 0xa0, 0x0f, 0xb0, 0x0f, 0xe0, 0x0f, 0x08, 0x06, 0x08, 0x04, 0x5a, - 0x05, 0x64, 0x0e, 0x0d, 0x5f, 0x0a, 0x0a, 0x06, 0x03, 0x5f, 0x0f, 0x08, - 0x01, 0x08, 0x08, 0x08, 0x06, 0x03, 0x05, 0x00, 0x12, 0x00, 0x3f, 0x32, - 0x3f, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x11, 0x33, 0x2f, 0xe1, 0x01, 0x10, - 0xf6, 0xe1, 0x32, 0x5e, 0x5d, 0x71, 0x10, 0xc6, 0x5d, 0x71, 0x11, 0x39, - 0x2f, 0xe1, 0x32, 0x31, 0x30, 0x21, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x04, 0xf4, 0xbb, 0xfd, 0x67, - 0xbb, 0xbb, 0x02, 0x99, 0x02, 0x0f, 0xfe, 0xac, 0x02, 0xaa, 0xfd, 0x56, - 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0xa4, 0x00, 0x00, 0x01, 0x00, 0xae, - 0x00, 0x00, 0x05, 0xa4, 0x04, 0x4a, 0x00, 0x0d, 0x00, 0x68, 0x40, 0x21, - 0x08, 0x04, 0x47, 0x05, 0x09, 0x01, 0x47, 0x00, 0x00, 0x0b, 0x05, 0x54, - 0x0e, 0x0b, 0x0b, 0x0f, 0x00, 0x0f, 0x20, 0x0f, 0x02, 0x90, 0x0f, 0xb0, - 0x0f, 0xc0, 0x0f, 0xd0, 0x0f, 0xf0, 0x0f, 0x05, 0x0f, 0xb8, 0xff, 0xc0, - 0x40, 0x1f, 0x07, 0x0c, 0x48, 0x03, 0x50, 0xeb, 0x08, 0x01, 0xa9, 0x08, - 0xb9, 0x08, 0x02, 0x0f, 0x08, 0x1f, 0x08, 0x2f, 0x08, 0x03, 0x06, 0x08, - 0x08, 0x00, 0x0d, 0x0a, 0x06, 0x0f, 0x05, 0x00, 0x15, 0x00, 0x3f, 0x32, - 0x3f, 0x33, 0xc4, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x01, - 0x2b, 0x5d, 0x71, 0x11, 0x33, 0x2f, 0x10, 0xe6, 0x11, 0x39, 0x2f, 0xe1, - 0x32, 0x10, 0xe1, 0x32, 0x31, 0x30, 0x21, 0x23, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x04, 0x3b, 0xb6, 0xfd, - 0xdf, 0xb6, 0xb6, 0x02, 0x21, 0x02, 0x1f, 0xfe, 0x97, 0x01, 0xe9, 0xfe, - 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, 0x9a, 0x00, 0x01, 0x00, 0xc7, - 0xfe, 0x00, 0x07, 0xdb, 0x05, 0xb6, 0x00, 0x27, 0x00, 0x5f, 0x40, 0x3a, - 0x09, 0x0b, 0x01, 0x07, 0x12, 0x12, 0x00, 0x20, 0x5a, 0x21, 0x21, 0x25, - 0x18, 0x5b, 0x08, 0x29, 0x6f, 0x29, 0x01, 0x24, 0x5a, 0x25, 0x64, 0x28, - 0x1d, 0x60, 0x0f, 0x03, 0x2f, 0x03, 0x3f, 0x03, 0x03, 0x0f, 0x03, 0x3f, - 0x03, 0xdf, 0x03, 0xff, 0x03, 0x04, 0x08, 0x03, 0x03, 0x25, 0x23, 0x5f, - 0x26, 0x03, 0x21, 0x25, 0x12, 0x13, 0x16, 0x5f, 0x0d, 0x1c, 0x00, 0x3f, - 0xe1, 0x33, 0x3f, 0x33, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x71, - 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xde, 0xe1, 0x11, 0x39, 0x2f, - 0xe1, 0x32, 0x39, 0x2f, 0x31, 0x30, 0x00, 0x5e, 0x5d, 0x01, 0x36, 0x36, - 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, - 0x27, 0x35, 0x16, 0x16, 0x33, 0x20, 0x11, 0x34, 0x2e, 0x02, 0x23, 0x22, - 0x07, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x04, 0xc1, 0x1e, - 0x49, 0x2e, 0x9a, 0xf0, 0xa5, 0x56, 0x52, 0x92, 0xc9, 0x76, 0x31, 0x4e, - 0x43, 0x3d, 0x1f, 0x3f, 0x7e, 0x49, 0x01, 0x77, 0x43, 0x7c, 0xae, 0x6b, - 0x4b, 0x33, 0xbb, 0xfd, 0x7b, 0xba, 0x03, 0xfa, 0x03, 0x1b, 0x05, 0x03, - 0x5c, 0xab, 0xf2, 0x97, 0xaa, 0xf8, 0xa2, 0x4f, 0x06, 0x0c, 0x13, 0x0c, - 0xa2, 0x17, 0x18, 0x01, 0xef, 0x79, 0xb9, 0x7e, 0x40, 0x0c, 0xfd, 0x89, - 0x05, 0x12, 0xfa, 0xee, 0x05, 0xb6, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x0a, - 0x06, 0x75, 0x04, 0x4a, 0x00, 0x24, 0x00, 0x77, 0x40, 0x4e, 0x0b, 0x23, - 0x1b, 0x23, 0x02, 0x03, 0x03, 0x19, 0x11, 0x47, 0x02, 0x12, 0x01, 0xc2, - 0x12, 0x01, 0xa6, 0x12, 0xb6, 0x12, 0x02, 0x77, 0x12, 0x87, 0x12, 0x02, - 0x12, 0x12, 0x16, 0x0a, 0x48, 0x20, 0x26, 0x0f, 0x26, 0x1f, 0x26, 0x02, - 0x4f, 0x26, 0x5f, 0x26, 0xaf, 0x26, 0xff, 0x26, 0x04, 0x10, 0x26, 0x01, - 0x15, 0x47, 0x16, 0x54, 0x25, 0x0d, 0x51, 0x0b, 0x1b, 0x1b, 0x1b, 0x02, - 0x07, 0x1b, 0x1b, 0x16, 0x14, 0x50, 0x17, 0x0f, 0x12, 0x16, 0x15, 0x04, - 0x07, 0x51, 0x00, 0x1b, 0x00, 0x3f, 0xe1, 0x33, 0x3f, 0x33, 0x3f, 0xe1, - 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, - 0x71, 0x10, 0xde, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0x71, 0xe1, - 0x32, 0x39, 0x2f, 0x31, 0x30, 0x00, 0x5d, 0x01, 0x22, 0x26, 0x27, 0x35, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x36, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x04, 0xd9, 0x4b, 0x6a, 0x2e, 0x2b, - 0x6a, 0x42, 0x76, 0x75, 0x90, 0x9d, 0x1c, 0x3e, 0x1f, 0xb6, 0xfe, 0x08, - 0xb6, 0x03, 0x64, 0x3a, 0x3f, 0x66, 0xb3, 0x85, 0x4c, 0x40, 0x6f, 0x96, - 0xfe, 0x0a, 0x1f, 0x1d, 0xa1, 0x18, 0x25, 0xc3, 0xd2, 0xd4, 0xca, 0x0a, - 0x08, 0xfe, 0x35, 0x03, 0xb0, 0xfc, 0x50, 0x04, 0x4a, 0xfe, 0x27, 0x0c, - 0x3e, 0x8a, 0xdb, 0x9d, 0x96, 0xd5, 0x88, 0x40, 0x00, 0x02, 0x00, 0x7d, - 0xff, 0xac, 0x05, 0x96, 0x05, 0xcd, 0x00, 0x3e, 0x00, 0x52, 0x00, 0x7a, - 0x40, 0x50, 0x05, 0x4e, 0x10, 0x32, 0x04, 0x00, 0x49, 0x5b, 0x00, 0x20, - 0x10, 0x20, 0x02, 0x35, 0x20, 0x35, 0x20, 0x18, 0x3f, 0x5b, 0x00, 0x67, - 0x54, 0x0f, 0x54, 0x1f, 0x54, 0x4f, 0x54, 0x5f, 0x54, 0x7f, 0x54, 0x9f, - 0x54, 0xaf, 0x54, 0x07, 0x07, 0x2b, 0x5b, 0x18, 0x66, 0x53, 0x44, 0x60, - 0x4e, 0x05, 0x00, 0x3a, 0x10, 0x3a, 0x20, 0x3a, 0x60, 0x3a, 0x70, 0x3a, - 0x80, 0x3a, 0x06, 0x3a, 0x3a, 0x07, 0x26, 0x5f, 0x21, 0x1d, 0x04, 0x10, - 0x32, 0x30, 0x5f, 0x13, 0x07, 0x5f, 0x0e, 0x0e, 0x13, 0x13, 0x00, 0x3f, - 0x33, 0x2f, 0xe1, 0x10, 0xe1, 0x32, 0x39, 0x3f, 0x33, 0xe1, 0x12, 0x39, - 0x2f, 0x5d, 0x39, 0x39, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x10, - 0xf6, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0xe1, 0x12, 0x17, 0x39, - 0x31, 0x30, 0x01, 0x14, 0x0e, 0x02, 0x07, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x15, 0x06, 0x06, 0x23, 0x22, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, - 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, - 0x03, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x37, - 0x26, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x07, 0x34, - 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x3e, - 0x03, 0x05, 0x6f, 0x27, 0x41, 0x55, 0x2d, 0x36, 0x51, 0x25, 0x46, 0x1f, - 0x1d, 0x4f, 0x26, 0xa6, 0x8b, 0x32, 0x7c, 0x3c, 0x96, 0xe8, 0x9d, 0x51, - 0x4d, 0x9e, 0xf2, 0xa6, 0x42, 0x78, 0x25, 0x35, 0x0a, 0x28, 0x30, 0x33, - 0x15, 0x76, 0xa9, 0x6c, 0x33, 0x3c, 0x70, 0xa0, 0x64, 0x30, 0x26, 0x4f, - 0x5b, 0x37, 0x60, 0x83, 0x4c, 0x4b, 0x85, 0x62, 0x39, 0xc5, 0x16, 0x2a, - 0x3d, 0x27, 0x29, 0x3d, 0x29, 0x15, 0x18, 0x29, 0x36, 0x1f, 0x2a, 0x42, - 0x2e, 0x18, 0x02, 0xa6, 0x65, 0xaf, 0x90, 0x6f, 0x24, 0x19, 0x0e, 0x0b, - 0xaa, 0x0d, 0x0c, 0x62, 0x11, 0x11, 0x6a, 0xc0, 0x01, 0x0e, 0xa5, 0xb5, - 0x01, 0x1f, 0xc7, 0x69, 0x16, 0x0f, 0x9c, 0x05, 0x0a, 0x09, 0x05, 0x51, - 0x9a, 0xde, 0x8d, 0x94, 0xda, 0x90, 0x46, 0x07, 0x69, 0x01, 0x16, 0x9b, - 0x85, 0xc1, 0x7b, 0x3b, 0x38, 0x7b, 0xc6, 0x95, 0x54, 0x89, 0x63, 0x36, - 0x37, 0x62, 0x87, 0x50, 0x48, 0x85, 0x76, 0x65, 0x27, 0x21, 0x62, 0x77, - 0x88, 0x00, 0x00, 0x02, 0x00, 0x71, 0xff, 0xc5, 0x04, 0xa4, 0x04, 0x5e, - 0x00, 0x0d, 0x00, 0x4d, 0x00, 0x79, 0x40, 0x49, 0x44, 0x05, 0x11, 0x32, - 0x04, 0x3f, 0x00, 0x48, 0x54, 0x21, 0x64, 0x21, 0x02, 0x35, 0x21, 0x35, - 0x21, 0x19, 0x08, 0x48, 0x3f, 0x4a, 0x4a, 0x3f, 0x57, 0x4f, 0x7b, 0x4f, - 0x8b, 0x4f, 0xbb, 0x4f, 0x03, 0x5f, 0x4f, 0x6f, 0x4f, 0x02, 0x1b, 0x4f, - 0x01, 0x0f, 0x4f, 0x01, 0x07, 0x02, 0x2a, 0x48, 0x19, 0x56, 0x4e, 0x0b, - 0x44, 0x05, 0x3a, 0x3a, 0x47, 0x25, 0x50, 0x22, 0x1e, 0x10, 0x11, 0x32, - 0x2f, 0x50, 0x14, 0x47, 0x50, 0x0e, 0x0e, 0x14, 0x16, 0x00, 0x3f, 0x33, - 0x2f, 0xe1, 0x10, 0xe1, 0x32, 0x39, 0x3f, 0x33, 0xe9, 0x12, 0x39, 0x2f, - 0x39, 0x39, 0xc1, 0x01, 0x10, 0xf6, 0xe1, 0x5f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x5d, 0x10, 0xe6, 0x32, 0x2f, 0x10, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, - 0x5d, 0xe1, 0x12, 0x17, 0x39, 0x31, 0x30, 0x01, 0x14, 0x1e, 0x02, 0x17, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x22, 0x26, 0x27, - 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, - 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x36, 0x37, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x15, 0x06, 0x06, 0x02, 0xdd, 0x14, 0x20, 0x2a, 0x15, 0x39, - 0x48, 0x38, 0x3d, 0x3e, 0x41, 0x01, 0x4c, 0x45, 0x88, 0x39, 0x28, 0x62, - 0x47, 0x75, 0xb3, 0x7a, 0x3f, 0x3c, 0x78, 0xb4, 0x79, 0x42, 0x52, 0x1a, - 0x29, 0x13, 0x4a, 0x2a, 0x54, 0x70, 0x43, 0x1c, 0x1e, 0x43, 0x6e, 0x50, - 0x25, 0x32, 0x03, 0x39, 0x4a, 0x31, 0x55, 0x72, 0x41, 0x40, 0x6f, 0x52, - 0x2e, 0x1e, 0x34, 0x45, 0x27, 0x14, 0x37, 0x1d, 0x1a, 0x39, 0x1c, 0x19, - 0x42, 0x01, 0xf4, 0x35, 0x5c, 0x4b, 0x39, 0x12, 0x28, 0x96, 0x6b, 0x67, - 0x7a, 0x7a, 0xfd, 0x68, 0x2a, 0x25, 0x11, 0x17, 0x57, 0x97, 0xcc, 0x75, - 0x83, 0xd6, 0x97, 0x53, 0x10, 0x06, 0x96, 0x05, 0x10, 0x3a, 0x6f, 0xa0, - 0x67, 0x59, 0x94, 0x6b, 0x3c, 0x08, 0x02, 0x42, 0xb4, 0x77, 0x5e, 0x88, - 0x59, 0x2b, 0x27, 0x56, 0x8a, 0x63, 0x46, 0x78, 0x63, 0x4d, 0x1b, 0x0a, - 0x0d, 0x06, 0x08, 0x93, 0x09, 0x07, 0xff, 0xff, 0x00, 0x7d, 0xfe, 0x42, - 0x04, 0x98, 0x05, 0xcb, 0x02, 0x26, 0x00, 0x26, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x7f, 0x02, 0x2f, 0x00, 0x00, 0x00, 0x0e, 0xb7, 0x01, 0x01, 0x75, - 0x32, 0x2c, 0x18, 0x20, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x35, 0xff, 0xff, - 0x00, 0x71, 0xfe, 0x42, 0x03, 0x6f, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x46, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x7f, 0x01, 0x71, 0x00, 0x00, 0x00, 0x0e, - 0xb7, 0x01, 0x01, 0x52, 0x2e, 0x28, 0x05, 0x0d, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x35, 0x00, 0x01, 0x00, 0x14, 0xfe, 0x7f, 0x04, 0x12, 0x05, 0xb6, - 0x00, 0x0b, 0x00, 0x6f, 0x40, 0x39, 0x1f, 0x0d, 0x01, 0xe0, 0x0d, 0x01, - 0x5f, 0x0d, 0xdf, 0x0d, 0x02, 0x20, 0x0d, 0x30, 0x0d, 0x40, 0x0d, 0x03, - 0x04, 0x5a, 0x0f, 0x01, 0x1f, 0x01, 0x02, 0x07, 0x01, 0x01, 0xaf, 0x0a, - 0xef, 0x0a, 0x02, 0x0a, 0x0a, 0x0b, 0x5a, 0x06, 0x40, 0x07, 0xe0, 0x07, - 0x02, 0x0f, 0x07, 0x01, 0x08, 0x07, 0x07, 0x57, 0x06, 0x67, 0x06, 0x77, - 0x06, 0x03, 0x06, 0xb8, 0xff, 0xc0, 0x40, 0x0f, 0x07, 0x0a, 0x48, 0x06, - 0x0b, 0x07, 0x5f, 0x08, 0x03, 0x00, 0x5f, 0x05, 0x12, 0x02, 0xfb, 0x00, - 0x3f, 0x3f, 0xe1, 0x3f, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5d, 0x33, 0x2f, - 0x5e, 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x39, 0x2f, 0x5e, 0x5d, - 0xe1, 0x5d, 0x5d, 0x5d, 0x71, 0x31, 0x30, 0x25, 0x33, 0x11, 0x23, 0x11, - 0x23, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x02, 0x71, 0xb0, 0xb0, 0xbb, - 0xfe, 0x5e, 0x03, 0xfe, 0xfe, 0x5f, 0xa6, 0xfd, 0xd9, 0x01, 0x81, 0x05, - 0x12, 0xa4, 0xa4, 0x00, 0x00, 0x01, 0x00, 0x29, 0xfe, 0x83, 0x03, 0x5e, - 0x04, 0x4a, 0x00, 0x0b, 0x00, 0x6f, 0x40, 0x4d, 0xf0, 0x0d, 0x01, 0xaf, - 0x0d, 0x01, 0x40, 0x0d, 0x50, 0x0d, 0x02, 0x2f, 0x0d, 0x01, 0x0b, 0x47, - 0xaf, 0x08, 0xbf, 0x08, 0xcf, 0x08, 0x03, 0x08, 0x40, 0x07, 0x0a, 0x48, - 0x08, 0x08, 0xdf, 0x05, 0x01, 0x9d, 0x05, 0x01, 0x8f, 0x05, 0x01, 0x05, - 0x05, 0x07, 0x47, 0x00, 0x60, 0x02, 0x70, 0x02, 0xd0, 0x02, 0x03, 0x1f, - 0x02, 0x01, 0x02, 0x02, 0x00, 0x00, 0x10, 0x00, 0xb0, 0x00, 0xc0, 0x00, - 0x04, 0x00, 0x09, 0xfb, 0x06, 0x02, 0x50, 0x03, 0x0f, 0x07, 0x50, 0x00, - 0x15, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x32, 0x3f, 0x01, 0x2f, 0x5d, 0x33, - 0x2f, 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x5d, 0x5d, 0x39, 0x2f, - 0x2b, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x21, 0x11, 0x21, - 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x01, 0x68, 0xfe, - 0xc1, 0x03, 0x35, 0xfe, 0xc1, 0x9f, 0xb6, 0x03, 0xb0, 0x9a, 0x9a, 0xfc, - 0xea, 0xfd, 0xe9, 0x01, 0x7d, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0x37, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x01, - 0x00, 0x00, 0xfe, 0x14, 0x03, 0xd5, 0x04, 0x4a, 0x00, 0x13, 0x00, 0x7c, - 0x40, 0x13, 0x0a, 0x0a, 0x00, 0x47, 0xa6, 0x01, 0x01, 0x87, 0x01, 0x97, - 0x01, 0x02, 0x01, 0x01, 0x03, 0x11, 0x12, 0x10, 0x12, 0xb8, 0xff, 0xc0, - 0xb3, 0x12, 0x15, 0x48, 0x12, 0xb8, 0xff, 0xc0, 0x40, 0x20, 0x07, 0x0b, - 0x48, 0x12, 0x12, 0x15, 0xf0, 0x15, 0x01, 0xdf, 0x15, 0xef, 0x15, 0x02, - 0x50, 0x15, 0x90, 0x15, 0xa0, 0x15, 0x03, 0x4f, 0x15, 0x01, 0x30, 0x15, - 0x01, 0x0f, 0x15, 0x01, 0x04, 0x03, 0xb8, 0xff, 0xf0, 0x40, 0x10, 0x03, - 0x11, 0x03, 0x0f, 0x05, 0x0a, 0x15, 0x0a, 0x02, 0x07, 0x13, 0x0a, 0x02, - 0x15, 0x00, 0x1b, 0x00, 0x3f, 0x3f, 0x33, 0x33, 0x5e, 0x5d, 0x3f, 0x33, - 0x01, 0x2f, 0x38, 0x33, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, - 0x2f, 0x2b, 0x2b, 0x38, 0x33, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0xe1, 0x39, - 0x3d, 0x2f, 0x31, 0x30, 0x01, 0x23, 0x11, 0x01, 0x33, 0x13, 0x1e, 0x03, - 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, 0x01, 0x02, 0x46, 0xb7, 0xfe, - 0x71, 0xbc, 0xc7, 0x10, 0x20, 0x1b, 0x14, 0x05, 0x07, 0x04, 0x15, 0x1b, - 0x20, 0x10, 0xc7, 0xbc, 0xfe, 0x71, 0xfe, 0x14, 0x01, 0xe8, 0x04, 0x4e, - 0xfd, 0xcf, 0x2e, 0x64, 0x5e, 0x4f, 0x19, 0x19, 0x4f, 0x5e, 0x64, 0x2e, - 0x02, 0x31, 0xfb, 0xb2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, - 0x05, 0xb6, 0x00, 0x10, 0x00, 0x9f, 0x40, 0x19, 0xef, 0x12, 0x01, 0x12, - 0x40, 0x09, 0x0c, 0x48, 0x00, 0x00, 0x04, 0x08, 0x5a, 0x09, 0x0d, 0x09, - 0x96, 0x09, 0x01, 0x77, 0x09, 0x87, 0x09, 0x02, 0x06, 0xb8, 0xff, 0xc0, - 0x40, 0x0d, 0x15, 0x18, 0x48, 0x0b, 0x09, 0x06, 0x06, 0x09, 0x0b, 0x03, - 0x02, 0x10, 0x0f, 0xb8, 0xff, 0xf0, 0x40, 0x38, 0xab, 0x0f, 0x01, 0x90, - 0x0f, 0x01, 0x14, 0x0f, 0x01, 0x0f, 0x01, 0x02, 0x10, 0x10, 0x02, 0x01, - 0xef, 0x02, 0x01, 0xd0, 0x02, 0x01, 0xbf, 0x02, 0x01, 0x80, 0x02, 0x01, - 0x4f, 0x02, 0x5f, 0x02, 0x02, 0x14, 0x02, 0x01, 0x00, 0x02, 0x01, 0x07, - 0x02, 0x02, 0x12, 0x07, 0x0a, 0x5f, 0x04, 0x00, 0x0d, 0x0d, 0x01, 0x08, - 0x12, 0x0f, 0x01, 0x03, 0x00, 0x3f, 0x33, 0x3f, 0x12, 0x39, 0x2f, 0x39, - 0x33, 0xe1, 0x32, 0x11, 0x01, 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x5d, 0x71, 0x38, 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x38, 0x33, - 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2b, 0x5d, 0x5d, 0x11, 0x33, 0x10, - 0xe1, 0x32, 0x39, 0x3d, 0x2f, 0x2b, 0x5d, 0x31, 0x30, 0x01, 0x01, 0x33, - 0x01, 0x15, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, 0x35, - 0x01, 0x33, 0x02, 0x1b, 0x01, 0x54, 0xc8, 0xfe, 0x42, 0x01, 0x27, 0xfe, - 0xd9, 0xbb, 0xfe, 0xda, 0x01, 0x26, 0xfe, 0x42, 0xcb, 0x02, 0xd3, 0x02, - 0xe3, 0xfc, 0x83, 0x3d, 0xa4, 0xfe, 0xa8, 0x01, 0x58, 0xa4, 0x33, 0x03, - 0x87, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x14, 0x03, 0xd5, 0x04, 0x4a, - 0x00, 0x19, 0x00, 0x85, 0x40, 0x15, 0x0e, 0x0e, 0x17, 0x01, 0x47, 0x06, - 0xa6, 0x02, 0x01, 0x87, 0x02, 0x97, 0x02, 0x02, 0x02, 0x02, 0x07, 0x15, - 0x16, 0x10, 0x16, 0xb8, 0xff, 0xc0, 0xb3, 0x12, 0x15, 0x48, 0x16, 0xb8, - 0xff, 0xc0, 0x40, 0x20, 0x07, 0x0b, 0x48, 0x16, 0x16, 0x1b, 0xf0, 0x1b, - 0x01, 0xdf, 0x1b, 0xef, 0x1b, 0x02, 0x50, 0x1b, 0x90, 0x1b, 0xa0, 0x1b, - 0x03, 0x4f, 0x1b, 0x01, 0x30, 0x1b, 0x01, 0x0f, 0x1b, 0x01, 0x08, 0x07, - 0xb8, 0xff, 0xf0, 0x40, 0x13, 0x07, 0x15, 0x07, 0x0f, 0x00, 0x03, 0x4f, - 0x05, 0x0e, 0x15, 0x0e, 0x02, 0x07, 0x0e, 0x17, 0x06, 0x15, 0x01, 0x1b, - 0x00, 0x3f, 0x3f, 0x33, 0x33, 0x5e, 0x5d, 0xe1, 0x32, 0x3f, 0x33, 0x01, - 0x2f, 0x38, 0x33, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x11, 0x33, 0x2f, - 0x2b, 0x2b, 0x38, 0x33, 0x12, 0x39, 0x2f, 0x5d, 0x5d, 0x33, 0xe1, 0x32, - 0x39, 0x3d, 0x2f, 0x31, 0x30, 0x05, 0x11, 0x23, 0x11, 0x21, 0x35, 0x21, - 0x01, 0x33, 0x13, 0x1e, 0x03, 0x17, 0x33, 0x3e, 0x03, 0x37, 0x13, 0x33, - 0x01, 0x21, 0x15, 0x02, 0x46, 0xb7, 0xfe, 0xf6, 0x01, 0x08, 0xfe, 0x73, - 0xbc, 0xc7, 0x10, 0x20, 0x1b, 0x14, 0x05, 0x07, 0x04, 0x15, 0x1b, 0x20, - 0x10, 0xc7, 0xbc, 0xfe, 0x71, 0x01, 0x0a, 0x89, 0xfe, 0x9d, 0x01, 0x63, - 0x89, 0x04, 0x4a, 0xfd, 0xcf, 0x2e, 0x64, 0x5e, 0x4f, 0x19, 0x19, 0x4f, - 0x5e, 0x64, 0x2e, 0x02, 0x31, 0xfb, 0xb6, 0x89, 0x00, 0x01, 0x00, 0x00, - 0xfe, 0x7f, 0x04, 0xb4, 0x05, 0xb6, 0x00, 0x0f, 0x01, 0x06, 0x40, 0x88, - 0x47, 0x0f, 0x01, 0x48, 0x09, 0x01, 0x03, 0x0f, 0x00, 0x0b, 0x06, 0x05, - 0x0a, 0x07, 0x0e, 0x07, 0x0c, 0x00, 0x0b, 0x09, 0x05, 0x0a, 0x08, 0x0d, - 0x08, 0x0c, 0x0f, 0x00, 0x0b, 0x00, 0x09, 0x06, 0x05, 0x0a, 0x05, 0x09, - 0x0c, 0x0f, 0x03, 0x06, 0x06, 0x0e, 0x08, 0x0a, 0x05, 0x01, 0xaa, 0x05, - 0xba, 0x05, 0xca, 0x05, 0xea, 0x05, 0xfa, 0x05, 0x05, 0x05, 0x30, 0x0b, - 0x0e, 0x48, 0x05, 0x04, 0x5a, 0x01, 0x0d, 0x0e, 0x10, 0x0b, 0x0e, 0x01, - 0xab, 0x0e, 0xbb, 0x0e, 0xcb, 0x0e, 0xeb, 0x0e, 0xfb, 0x0e, 0x05, 0x0e, - 0x40, 0x0b, 0x0e, 0x48, 0x0e, 0x0a, 0x00, 0x01, 0xaa, 0x00, 0xba, 0x00, - 0xca, 0x00, 0xea, 0x00, 0xfa, 0x00, 0x05, 0x00, 0x30, 0x0b, 0x0e, 0x48, - 0x0e, 0x00, 0x04, 0x01, 0x14, 0x01, 0x02, 0x07, 0x01, 0x01, 0x11, 0xd4, - 0x11, 0xe4, 0x11, 0xf4, 0x11, 0x03, 0xc0, 0x11, 0x01, 0x02, 0x20, 0x11, - 0x40, 0x11, 0x02, 0x11, 0xb8, 0xff, 0xc0, 0x40, 0x0b, 0x10, 0x14, 0x48, - 0x0f, 0x11, 0x01, 0x0b, 0x0a, 0x0a, 0x07, 0x08, 0xb8, 0xff, 0xf0, 0x40, - 0x14, 0x08, 0x28, 0x06, 0x01, 0x27, 0x0c, 0x01, 0x0c, 0x06, 0x05, 0x0d, - 0x0a, 0x03, 0x07, 0x00, 0x5f, 0x05, 0x12, 0x02, 0xfb, 0x00, 0x3f, 0x3f, - 0xe1, 0x33, 0x3f, 0x33, 0x12, 0x39, 0x39, 0x5d, 0x5d, 0x01, 0x2f, 0x38, - 0x33, 0x33, 0x11, 0x33, 0x5d, 0x2b, 0x5d, 0x5f, 0x5d, 0x5d, 0x11, 0x33, - 0x2f, 0x5e, 0x5d, 0x33, 0x33, 0x2b, 0x5d, 0x71, 0x2f, 0x2b, 0x5d, 0x71, - 0x38, 0x33, 0x10, 0xe1, 0x32, 0x2b, 0x5d, 0x71, 0x11, 0x12, 0x39, 0x3d, - 0x2f, 0x17, 0x33, 0x10, 0x87, 0x0e, 0xc0, 0x04, 0xc0, 0x10, 0x87, 0xc0, - 0x0e, 0xc0, 0x10, 0x87, 0x08, 0xc0, 0x08, 0xc0, 0x10, 0x87, 0x08, 0xc0, - 0x08, 0xc0, 0x01, 0x5f, 0x5d, 0x5d, 0x31, 0x30, 0x25, 0x33, 0x11, 0x23, - 0x11, 0x23, 0x01, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, - 0x03, 0xfe, 0xb6, 0xb0, 0x77, 0xfe, 0x9e, 0xfe, 0x91, 0xbc, 0x01, 0xc5, - 0xfe, 0x5a, 0xc6, 0x01, 0x4c, 0x01, 0x4e, 0xbe, 0xfe, 0x5b, 0xa6, 0xfd, - 0xd9, 0x01, 0x81, 0x02, 0x7b, 0xfd, 0x85, 0x02, 0xfc, 0x02, 0xba, 0xfd, - 0xd1, 0x02, 0x2f, 0xfd, 0x4c, 0x00, 0x00, 0x01, 0x00, 0x23, 0xfe, 0x83, - 0x04, 0x1f, 0x04, 0x4a, 0x00, 0x0f, 0x01, 0x39, 0x40, 0x25, 0x59, 0x0d, - 0x01, 0x56, 0x03, 0x01, 0xb4, 0x0c, 0x01, 0x0c, 0x20, 0x0e, 0x11, 0x48, - 0x3d, 0x0c, 0x01, 0x29, 0x0c, 0x01, 0x0b, 0x0c, 0x1b, 0x0c, 0x02, 0x0c, - 0x0b, 0x46, 0x08, 0x00, 0x03, 0x06, 0x03, 0x0d, 0x0d, 0x01, 0x04, 0xb8, - 0xff, 0xf0, 0x40, 0x71, 0x15, 0x18, 0x48, 0xb5, 0x04, 0x01, 0x99, 0x04, - 0xa9, 0x04, 0x02, 0x6a, 0x04, 0x7a, 0x04, 0x8a, 0x04, 0x03, 0x45, 0x04, - 0x55, 0x04, 0x02, 0x06, 0x04, 0x01, 0x04, 0x05, 0xdb, 0x02, 0xeb, 0x02, - 0xfb, 0x02, 0x03, 0xc9, 0x02, 0x01, 0xbb, 0x02, 0x01, 0x96, 0x02, 0xa6, - 0x02, 0x02, 0x65, 0x02, 0x75, 0x02, 0x85, 0x02, 0x03, 0x4a, 0x02, 0x5a, - 0x02, 0x02, 0x02, 0x01, 0xdf, 0x05, 0xef, 0x05, 0xff, 0x05, 0x03, 0x05, - 0x40, 0x0e, 0x11, 0x48, 0x3b, 0x05, 0x4b, 0x05, 0x02, 0x27, 0x05, 0x01, - 0x0a, 0x05, 0x1a, 0x05, 0x02, 0x34, 0x01, 0x44, 0x01, 0x02, 0x28, 0x01, - 0x01, 0x05, 0x01, 0x15, 0x01, 0x02, 0x05, 0x01, 0x05, 0x01, 0x0f, 0x3b, - 0x07, 0x01, 0x07, 0x20, 0x0e, 0x11, 0x48, 0x07, 0x08, 0xb8, 0xff, 0xc0, - 0x40, 0x49, 0x07, 0x0c, 0x48, 0x08, 0x08, 0x11, 0x60, 0x11, 0x80, 0x11, - 0x90, 0x11, 0xb0, 0x11, 0xd0, 0x11, 0xe0, 0x11, 0xf0, 0x11, 0x07, 0xdb, - 0x0e, 0x01, 0xc9, 0x0e, 0x01, 0xba, 0x0e, 0x01, 0x65, 0x0e, 0x75, 0x0e, - 0x85, 0x0e, 0x03, 0x4a, 0x0e, 0x5a, 0x0e, 0x02, 0x09, 0x0e, 0x01, 0x0e, - 0x3b, 0x0f, 0x4b, 0x0f, 0x02, 0x28, 0x0f, 0x01, 0x05, 0x0f, 0x15, 0x0f, - 0x02, 0x0f, 0x03, 0x0d, 0x01, 0x0e, 0x07, 0x50, 0x0c, 0x15, 0x09, 0xfb, - 0x04, 0x01, 0x0f, 0x00, 0x3f, 0x33, 0x3f, 0x3f, 0xe1, 0x33, 0x12, 0x39, - 0x39, 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0xc5, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x33, 0x2b, 0x5d, 0x12, 0x39, 0x39, - 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x2b, 0x5d, 0x10, 0xc5, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xc5, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x2b, 0x12, 0x39, 0x3d, 0x2f, 0x17, 0x33, 0x10, 0xe1, 0x32, 0x5d, - 0x5d, 0x5d, 0x2b, 0x5d, 0x31, 0x30, 0x00, 0x5d, 0x5d, 0x01, 0x01, 0x33, - 0x13, 0x13, 0x33, 0x01, 0x01, 0x33, 0x11, 0x23, 0x11, 0x23, 0x01, 0x01, - 0x23, 0x01, 0x98, 0xfe, 0x9f, 0xcf, 0xfa, 0xfa, 0xcf, 0xfe, 0x9d, 0x01, - 0x0f, 0xaa, 0xae, 0x65, 0xfe, 0xf4, 0xfe, 0xf2, 0xcf, 0x02, 0x33, 0x02, - 0x17, 0xfe, 0x66, 0x01, 0x9a, 0xfd, 0xe9, 0xfe, 0x67, 0xfd, 0xe9, 0x01, - 0x7d, 0x01, 0xb4, 0xfe, 0x4c, 0x00, 0x00, 0x01, 0x00, 0x14, 0xfe, 0x7f, - 0x06, 0x60, 0x05, 0xb6, 0x00, 0x0f, 0x00, 0x94, 0x40, 0x0d, 0x01, 0x5a, - 0x04, 0x04, 0x08, 0x5a, 0x10, 0x05, 0x01, 0xd0, 0x05, 0x01, 0x05, 0xb8, - 0xff, 0xc0, 0x40, 0x44, 0x07, 0x12, 0x48, 0x05, 0x05, 0x11, 0xdf, 0x11, - 0x01, 0xa0, 0x11, 0x01, 0x0f, 0x11, 0x2f, 0x11, 0x4f, 0x11, 0x8f, 0x11, - 0x04, 0x07, 0x10, 0x0e, 0x20, 0x0e, 0x40, 0x0e, 0x50, 0x0e, 0x60, 0x0e, - 0x80, 0x0e, 0x06, 0x0e, 0x0e, 0x00, 0x5a, 0x09, 0x0f, 0x0b, 0x1f, 0x0b, - 0x2f, 0x0b, 0x5f, 0x0b, 0x6f, 0x0b, 0xaf, 0x0b, 0x06, 0x08, 0x0b, 0x0b, - 0x30, 0x09, 0x40, 0x09, 0x50, 0x09, 0x80, 0x09, 0x90, 0x09, 0x05, 0x09, - 0xb8, 0xff, 0xc0, 0x40, 0x11, 0x07, 0x0a, 0x48, 0x09, 0x0f, 0x0b, 0x5f, - 0x02, 0x0c, 0x03, 0x04, 0x00, 0x5f, 0x09, 0x12, 0x06, 0xfb, 0x00, 0x3f, - 0x3f, 0xe1, 0x32, 0x3f, 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5d, 0x33, - 0x2f, 0x5e, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x5e, 0x5d, 0x5d, 0x5d, - 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x71, 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, - 0x25, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x21, - 0x35, 0x21, 0x15, 0x21, 0x02, 0x71, 0x02, 0x85, 0xba, 0xb0, 0xb0, 0xfc, - 0x06, 0xfe, 0x5e, 0x03, 0xfe, 0xfe, 0x5f, 0xa6, 0x05, 0x10, 0xfa, 0xf0, - 0xfd, 0xd9, 0x01, 0x81, 0x05, 0x12, 0xa4, 0xa4, 0x00, 0x01, 0x00, 0x29, - 0xfe, 0x83, 0x05, 0x6d, 0x04, 0x4a, 0x00, 0x0f, 0x00, 0x80, 0xb6, 0x0b, - 0x47, 0x0e, 0x0e, 0x02, 0x47, 0x0f, 0xb8, 0xff, 0xc0, 0xb3, 0x0e, 0x18, - 0x48, 0x0f, 0xb8, 0xff, 0xc0, 0x40, 0x33, 0x07, 0x0b, 0x48, 0x0f, 0x0f, - 0x11, 0x0f, 0x11, 0x1f, 0x11, 0x2f, 0x11, 0x4f, 0x11, 0xbf, 0x11, 0xdf, - 0x11, 0x06, 0x07, 0x60, 0x08, 0xe0, 0x08, 0xf0, 0x08, 0x03, 0x08, 0x08, - 0x0a, 0x47, 0x03, 0x1f, 0x05, 0xef, 0x05, 0xff, 0x05, 0x03, 0x05, 0x05, - 0x00, 0x03, 0x10, 0x03, 0x60, 0x03, 0x70, 0x03, 0x04, 0x03, 0xb8, 0xff, - 0xc0, 0x40, 0x11, 0x14, 0x18, 0x48, 0x03, 0x09, 0x05, 0x50, 0x0c, 0x06, - 0x0f, 0x0e, 0x0a, 0x50, 0x03, 0x15, 0x00, 0xfb, 0x00, 0x3f, 0x3f, 0xe1, - 0x32, 0x3f, 0x33, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5d, 0x33, 0x2f, 0x5d, - 0x10, 0xe1, 0x32, 0x2f, 0x5d, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x2b, - 0xe1, 0x33, 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x23, 0x11, 0x21, 0x11, 0x21, - 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x05, 0x6d, - 0xb7, 0xfc, 0xb2, 0xfe, 0xc1, 0x03, 0x35, 0xfe, 0xc1, 0x01, 0xf8, 0xb6, - 0xa0, 0xfe, 0x83, 0x01, 0x7d, 0x03, 0xb0, 0x9a, 0x9a, 0xfc, 0xea, 0x03, - 0xb0, 0xfc, 0x50, 0x00, 0x00, 0x01, 0x00, 0xa6, 0xfe, 0x7f, 0x05, 0x31, - 0x05, 0xb6, 0x00, 0x1d, 0x00, 0x63, 0x40, 0x12, 0x0b, 0x0d, 0x1b, 0x0d, - 0x02, 0x1a, 0x04, 0x5a, 0x90, 0x1d, 0xa0, 0x1d, 0x02, 0x1d, 0x1d, 0x03, - 0x5a, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x2c, 0x07, 0x10, 0x48, 0x00, 0x00, - 0x1f, 0x0f, 0x1f, 0x1f, 0x1f, 0x2f, 0x1f, 0x4f, 0x1f, 0x5f, 0x1f, 0x7f, - 0x1f, 0xaf, 0x1f, 0xbf, 0x1f, 0x08, 0x07, 0x12, 0x5a, 0x0f, 0x64, 0x1e, - 0x15, 0x5f, 0x1a, 0x0a, 0x0a, 0x04, 0x1b, 0x10, 0x03, 0x1d, 0x5f, 0x04, - 0x12, 0x01, 0xfb, 0x00, 0x3f, 0x3f, 0xe1, 0x3f, 0x33, 0x12, 0x39, 0x2f, - 0x33, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x2b, - 0xe1, 0x33, 0x2f, 0x5d, 0xe1, 0x32, 0x31, 0x30, 0x5d, 0x25, 0x11, 0x23, - 0x11, 0x23, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, - 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, 0x33, 0x11, 0x05, - 0x31, 0xb0, 0xba, 0x3a, 0x69, 0x63, 0x61, 0x31, 0x5d, 0x92, 0x65, 0x35, - 0xba, 0x69, 0x7b, 0x2d, 0x5a, 0x5e, 0x66, 0x38, 0xba, 0xa6, 0xfd, 0xd9, - 0x01, 0x81, 0x02, 0x56, 0x16, 0x22, 0x16, 0x0c, 0x31, 0x5e, 0x8b, 0x59, - 0x02, 0x47, 0xfd, 0xd1, 0x73, 0x74, 0x0a, 0x14, 0x1e, 0x14, 0x02, 0xc6, - 0xfa, 0xf0, 0x00, 0x01, 0x00, 0x9a, 0xfe, 0x83, 0x04, 0x9e, 0x04, 0x4a, - 0x00, 0x1c, 0x00, 0x61, 0x40, 0x17, 0x0b, 0x09, 0x1b, 0x09, 0x2b, 0x09, - 0x03, 0x07, 0x15, 0x00, 0x47, 0x18, 0x18, 0x1c, 0x47, 0x00, 0x19, 0x10, - 0x19, 0x20, 0x19, 0x03, 0x19, 0xb8, 0xff, 0xc0, 0x40, 0x25, 0x0e, 0x15, - 0x48, 0x19, 0x19, 0x1e, 0x0f, 0x1e, 0x5f, 0x1e, 0x7f, 0x1e, 0xbf, 0x1e, - 0xcf, 0x1e, 0x05, 0x0e, 0x47, 0x0b, 0x54, 0x1d, 0x1a, 0xfb, 0x15, 0x10, - 0x50, 0x06, 0x06, 0x00, 0x16, 0x0c, 0x0f, 0x18, 0x50, 0x00, 0x15, 0x00, - 0x3f, 0xe1, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0xe1, 0x33, 0x3f, 0x01, 0x10, - 0xf6, 0xe1, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0xe1, 0x33, 0x2f, 0xe1, - 0x32, 0x31, 0x30, 0x5e, 0x5d, 0x21, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, - 0x33, 0x11, 0x33, 0x11, 0x23, 0x11, 0x03, 0x48, 0x2c, 0x50, 0x55, 0x5e, - 0x3a, 0x4e, 0x7a, 0x52, 0x2b, 0xb6, 0xb8, 0x2d, 0x50, 0x4c, 0x4d, 0x2a, - 0xb6, 0xa0, 0xb7, 0x01, 0xe9, 0x1e, 0x30, 0x20, 0x11, 0x2f, 0x54, 0x73, - 0x44, 0x01, 0xa6, 0xfe, 0x66, 0xae, 0x0f, 0x1c, 0x2b, 0x1d, 0x01, 0xd5, - 0xfc, 0x50, 0xfd, 0xe9, 0x01, 0x7d, 0x00, 0x01, 0x00, 0xa6, 0x00, 0x00, - 0x04, 0x81, 0x05, 0xb6, 0x00, 0x1d, 0x00, 0x70, 0x40, 0x2e, 0x0b, 0x04, - 0x1b, 0x04, 0x02, 0x1c, 0x0f, 0x1d, 0x04, 0x0e, 0x14, 0x0e, 0x02, 0x07, - 0x0e, 0x0e, 0x06, 0x13, 0x17, 0x5a, 0x16, 0x65, 0x1f, 0x70, 0x1f, 0xa0, - 0x1f, 0x02, 0x2f, 0x1f, 0x01, 0x10, 0x1f, 0x01, 0x09, 0x5a, 0x60, 0x06, - 0x70, 0x06, 0xa0, 0x06, 0xb0, 0x06, 0x04, 0x06, 0xb8, 0xff, 0xc0, 0x40, - 0x16, 0x07, 0x0a, 0x48, 0x06, 0x0e, 0x10, 0x0e, 0x1d, 0x13, 0x1b, 0x1d, - 0x03, 0x0c, 0x5f, 0x01, 0x01, 0x17, 0x14, 0x07, 0x03, 0x17, 0x12, 0x00, - 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0xe1, 0x17, 0x33, 0x2f, 0x32, 0x32, - 0x2f, 0x01, 0x2f, 0x2b, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, - 0x32, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x33, 0xc1, 0x32, 0x31, 0x30, 0x5d, - 0x01, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, - 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x11, 0x33, 0x11, 0x23, 0x11, - 0x06, 0x06, 0x07, 0x11, 0x23, 0x02, 0x50, 0x21, 0x5d, 0x92, 0x65, 0x35, - 0xba, 0x69, 0x7b, 0x0c, 0x85, 0x38, 0x76, 0x44, 0xba, 0xba, 0x42, 0x77, - 0x39, 0x85, 0x01, 0xfc, 0x31, 0x5e, 0x8b, 0x59, 0x02, 0x47, 0xfd, 0xd1, - 0x73, 0x74, 0x01, 0x58, 0xfe, 0xb4, 0x09, 0x22, 0x19, 0x02, 0xc6, 0xfa, - 0x4a, 0x02, 0x56, 0x1a, 0x25, 0x0b, 0xfe, 0xc9, 0x00, 0x01, 0x00, 0x9a, - 0x00, 0x00, 0x03, 0xfe, 0x04, 0x4a, 0x00, 0x1c, 0x00, 0x6b, 0x40, 0x42, - 0x0b, 0x04, 0x1b, 0x04, 0x02, 0x07, 0x1b, 0x0e, 0x1c, 0x50, 0x0d, 0x01, - 0x04, 0x0d, 0x14, 0x0d, 0x24, 0x0d, 0x03, 0x08, 0x0d, 0x0d, 0x06, 0x12, - 0x16, 0x5a, 0x15, 0x55, 0x1e, 0x10, 0x1e, 0x60, 0x1e, 0x80, 0x1e, 0x03, - 0x09, 0x5a, 0x06, 0x54, 0x1d, 0x20, 0x0d, 0x30, 0x0d, 0x40, 0x0d, 0x03, - 0x0d, 0x0f, 0x0d, 0x1c, 0x12, 0x1a, 0x1c, 0x03, 0x0b, 0x5f, 0x01, 0x01, - 0x16, 0x13, 0x07, 0x0f, 0x16, 0x15, 0x00, 0x3f, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0xe1, 0x17, 0x33, 0x2f, 0x32, 0x32, 0x2f, 0x5d, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, - 0x33, 0xc1, 0x32, 0x31, 0x30, 0x5e, 0x5d, 0x31, 0x30, 0x01, 0x23, 0x22, - 0x2e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x33, 0x33, 0x11, 0x33, 0x11, - 0x36, 0x36, 0x37, 0x11, 0x33, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x11, - 0x23, 0x02, 0x0e, 0x2f, 0x4e, 0x7a, 0x52, 0x2b, 0xb6, 0xb8, 0x06, 0x7d, - 0x2f, 0x5b, 0x33, 0xb6, 0xb6, 0x32, 0x59, 0x32, 0x7d, 0x01, 0x6a, 0x2f, - 0x54, 0x73, 0x44, 0x01, 0xa6, 0xfe, 0x66, 0xae, 0x01, 0x2d, 0xfe, 0xe5, - 0x0e, 0x30, 0x23, 0x01, 0xd5, 0xfb, 0xb6, 0x01, 0xe9, 0x23, 0x33, 0x10, - 0xff, 0x00, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x04, 0xa2, 0x05, 0xb6, - 0x00, 0x17, 0x00, 0x50, 0x40, 0x36, 0x04, 0x07, 0x14, 0x07, 0x02, 0x07, - 0x0c, 0x5a, 0x0b, 0x65, 0x19, 0x2f, 0x19, 0x5f, 0x19, 0x6f, 0x19, 0x8f, - 0x19, 0x9f, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xff, 0x19, 0x09, - 0x10, 0x19, 0x01, 0x02, 0x16, 0x5a, 0x17, 0x64, 0x18, 0x15, 0x10, 0x5f, - 0x00, 0x05, 0x10, 0x05, 0x02, 0x05, 0x05, 0x17, 0x0b, 0x12, 0x00, 0x03, - 0x00, 0x3f, 0x3f, 0x33, 0x39, 0x2f, 0x5d, 0xe1, 0x33, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x00, 0x5e, 0x5d, - 0x13, 0x33, 0x11, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x11, 0x23, - 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x11, 0x23, 0xc7, 0xba, - 0x73, 0xc3, 0x62, 0x5d, 0x92, 0x65, 0x35, 0xbb, 0x68, 0x7b, 0x2d, 0x5a, - 0x5f, 0x65, 0x38, 0xba, 0x05, 0xb6, 0xfd, 0xaa, 0x2d, 0x2d, 0x31, 0x5e, - 0x8a, 0x59, 0xfd, 0xb8, 0x02, 0x2f, 0x73, 0x75, 0x0a, 0x14, 0x1e, 0x14, - 0xfd, 0x39, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x12, 0x04, 0x4a, - 0x00, 0x18, 0x00, 0x3f, 0xb9, 0x00, 0x14, 0xff, 0xe0, 0x40, 0x22, 0x07, - 0x0a, 0x48, 0x00, 0x47, 0x18, 0x55, 0x1a, 0xef, 0x1a, 0x01, 0x10, 0x1a, - 0x60, 0x1a, 0x80, 0x1a, 0x03, 0x0d, 0x09, 0x47, 0x0a, 0x54, 0x19, 0x08, - 0x03, 0x50, 0x12, 0x12, 0x0b, 0x0f, 0x0a, 0x00, 0x15, 0x00, 0x3f, 0x32, - 0x3f, 0x39, 0x2f, 0xe1, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, - 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x00, 0x2b, 0x21, 0x11, 0x34, 0x23, 0x22, - 0x0e, 0x02, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x3e, 0x03, 0x33, 0x32, - 0x1e, 0x02, 0x15, 0x11, 0x03, 0x5c, 0xb8, 0x2d, 0x50, 0x4c, 0x4d, 0x2a, - 0xb6, 0xb6, 0x2c, 0x50, 0x55, 0x5e, 0x3a, 0x4e, 0x7a, 0x52, 0x2b, 0x01, - 0x9a, 0xae, 0x0f, 0x1c, 0x2c, 0x1c, 0xfe, 0x2b, 0x04, 0x4a, 0xfe, 0x16, - 0x1f, 0x2f, 0x20, 0x11, 0x2f, 0x53, 0x73, 0x44, 0xfe, 0x5a, 0x00, 0x02, - 0x00, 0x3d, 0xff, 0xec, 0x06, 0x06, 0x05, 0xcd, 0x00, 0x2b, 0x00, 0x36, - 0x00, 0x64, 0x40, 0x3e, 0x32, 0x5b, 0x14, 0x0b, 0x67, 0x38, 0x0f, 0x38, - 0x1f, 0x38, 0x02, 0x29, 0x20, 0x22, 0x01, 0x22, 0x22, 0x31, 0x0c, 0x5b, - 0x00, 0x70, 0x1f, 0x80, 0x1f, 0xc0, 0x1f, 0x03, 0x1f, 0x37, 0x1f, 0x0c, - 0x60, 0x31, 0x4f, 0x2b, 0x01, 0x0f, 0x2b, 0xaf, 0x2b, 0xff, 0x2b, 0x03, - 0x0f, 0x25, 0x01, 0x08, 0x2b, 0x25, 0x2b, 0x25, 0x05, 0x11, 0x5f, 0x14, - 0x1a, 0x13, 0x2c, 0x5f, 0x05, 0x04, 0x00, 0x3f, 0xe1, 0x3f, 0x33, 0xe1, - 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x71, 0x33, 0xe1, 0x32, - 0x01, 0x10, 0xd6, 0x5d, 0x32, 0xe1, 0x32, 0x33, 0x2f, 0x5d, 0xc1, 0x5d, - 0x10, 0xf6, 0x32, 0xe1, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x33, 0x32, 0x16, - 0x16, 0x12, 0x15, 0x15, 0x21, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x37, 0x15, - 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, - 0x37, 0x33, 0x06, 0x06, 0x15, 0x14, 0x33, 0x01, 0x22, 0x0e, 0x02, 0x07, - 0x21, 0x34, 0x2e, 0x02, 0x01, 0x66, 0x0a, 0x5b, 0x9c, 0xdd, 0x8d, 0x99, - 0xd6, 0x88, 0x3e, 0xfc, 0x25, 0x07, 0x3f, 0x74, 0xa9, 0x70, 0x80, 0xcf, - 0x5b, 0x2a, 0x5b, 0x69, 0x7c, 0x4c, 0x98, 0xeb, 0xa4, 0x5c, 0x09, 0x8f, - 0x9a, 0x12, 0x0b, 0x9c, 0x06, 0x0f, 0x67, 0x02, 0x89, 0x5b, 0x95, 0x6e, - 0x41, 0x07, 0x03, 0x12, 0x25, 0x56, 0x8b, 0x03, 0x39, 0x9a, 0xf4, 0xab, - 0x5b, 0x6b, 0xc5, 0xfe, 0xeb, 0xab, 0x45, 0x7a, 0xc2, 0x86, 0x47, 0x2c, - 0x20, 0xaa, 0x0f, 0x1a, 0x12, 0x0a, 0x61, 0xb3, 0xfd, 0x9b, 0x75, 0x7a, - 0x2a, 0x42, 0x17, 0x0f, 0x3e, 0x23, 0x61, 0x01, 0xf0, 0x41, 0x7e, 0xb9, - 0x78, 0x75, 0xb8, 0x80, 0x43, 0x00, 0x00, 0x02, 0x00, 0x33, 0xff, 0xec, - 0x04, 0xb6, 0x04, 0x5e, 0x00, 0x2c, 0x00, 0x35, 0x00, 0x84, 0x40, 0x2b, - 0x31, 0x48, 0x27, 0x1e, 0x57, 0x37, 0xff, 0x37, 0x01, 0x90, 0x37, 0xb0, - 0x37, 0x02, 0x1f, 0x37, 0x7f, 0x37, 0x02, 0x30, 0x1f, 0x48, 0x05, 0x0f, - 0xdf, 0x08, 0x01, 0x08, 0x08, 0x13, 0x00, 0x05, 0x10, 0x05, 0x20, 0x05, - 0x03, 0x40, 0x05, 0x50, 0x05, 0x02, 0x05, 0xb8, 0xff, 0xc0, 0x40, 0x28, - 0x10, 0x13, 0x48, 0x05, 0x36, 0x05, 0x1f, 0x50, 0x30, 0x1b, 0x12, 0x2b, - 0x12, 0x02, 0x0f, 0x12, 0x01, 0x1b, 0x0b, 0x2b, 0x0b, 0x02, 0x0f, 0x0b, - 0x01, 0x06, 0x12, 0x0b, 0x12, 0x0b, 0x22, 0x2d, 0x50, 0x18, 0x10, 0x22, - 0x51, 0x27, 0x00, 0x16, 0x00, 0x3f, 0x32, 0xe1, 0x3f, 0xe1, 0x12, 0x39, - 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x33, 0xe1, 0x32, 0x01, - 0x10, 0xc6, 0x2b, 0x5d, 0x71, 0x32, 0x32, 0x2f, 0x5d, 0xc1, 0x10, 0xe1, - 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x31, 0x30, 0x05, 0x22, - 0x2e, 0x02, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x33, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x33, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, - 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, 0x0e, 0x03, - 0x03, 0x22, 0x06, 0x07, 0x21, 0x34, 0x2e, 0x02, 0x03, 0x35, 0x6b, 0xb3, - 0x82, 0x4b, 0x04, 0x85, 0x8e, 0x12, 0x09, 0x95, 0x06, 0x0e, 0x31, 0x31, - 0x1b, 0x0e, 0x4c, 0x74, 0x98, 0x5a, 0x63, 0x9e, 0x6e, 0x3b, 0xfd, 0x4c, - 0x05, 0x99, 0x97, 0x33, 0x57, 0x51, 0x4c, 0x27, 0x28, 0x4d, 0x51, 0x57, - 0x60, 0x72, 0x85, 0x0b, 0x01, 0xec, 0x1b, 0x39, 0x59, 0x14, 0x46, 0x88, - 0xc7, 0x81, 0x02, 0x6f, 0x72, 0x27, 0x3f, 0x15, 0x0e, 0x3a, 0x22, 0x2f, - 0x31, 0x6c, 0xa9, 0x75, 0x3e, 0x47, 0x81, 0xb5, 0x6e, 0x71, 0xc1, 0xb6, - 0x0a, 0x13, 0x1d, 0x12, 0xa2, 0x13, 0x1c, 0x12, 0x08, 0x03, 0xdb, 0x9c, - 0x95, 0x44, 0x71, 0x50, 0x2c, 0x00, 0x00, 0x02, 0x00, 0x3d, 0xfe, 0x7f, - 0x06, 0x06, 0x05, 0xcd, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x72, 0x40, 0x46, - 0x1b, 0x5a, 0x1c, 0x1c, 0x22, 0x35, 0x5b, 0x14, 0x0b, 0x67, 0x3b, 0x0f, - 0x3b, 0x1f, 0x3b, 0x02, 0x2c, 0x20, 0x25, 0x01, 0x25, 0x25, 0x34, 0x0c, - 0x5b, 0x00, 0x70, 0x22, 0x80, 0x22, 0xc0, 0x22, 0x03, 0x22, 0x3a, 0x22, - 0x0c, 0x60, 0x34, 0x4f, 0x2e, 0x01, 0x0f, 0x2e, 0x3f, 0x2e, 0xaf, 0x2e, - 0x03, 0x0f, 0x28, 0x01, 0x08, 0x2e, 0x28, 0x2e, 0x28, 0x05, 0x1a, 0x14, - 0x11, 0x60, 0x1d, 0x12, 0x1b, 0xfb, 0x2f, 0x5f, 0x05, 0x04, 0x00, 0x3f, - 0xe1, 0x3f, 0x3f, 0xe1, 0x33, 0x33, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5e, - 0x5d, 0x5d, 0x71, 0x33, 0xe1, 0x32, 0x01, 0x10, 0xd6, 0x5d, 0x32, 0xe1, - 0x32, 0x33, 0x2f, 0x5d, 0xc1, 0x5d, 0x10, 0xf6, 0x32, 0xe1, 0x12, 0x39, - 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x16, 0x12, - 0x15, 0x15, 0x21, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x37, 0x15, 0x0e, 0x03, - 0x07, 0x11, 0x23, 0x11, 0x2e, 0x03, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, - 0x37, 0x33, 0x06, 0x06, 0x15, 0x14, 0x33, 0x01, 0x22, 0x0e, 0x02, 0x07, - 0x21, 0x34, 0x2e, 0x02, 0x01, 0x66, 0x0a, 0x5b, 0x9c, 0xdd, 0x8d, 0x99, - 0xd6, 0x88, 0x3e, 0xfc, 0x25, 0x07, 0x3f, 0x74, 0xa9, 0x70, 0x80, 0xcf, - 0x5b, 0x25, 0x4e, 0x58, 0x64, 0x3a, 0xb6, 0x80, 0xc4, 0x8a, 0x4d, 0x08, - 0x8f, 0x9a, 0x12, 0x0b, 0x9c, 0x06, 0x0f, 0x67, 0x02, 0x89, 0x5b, 0x95, - 0x6e, 0x41, 0x07, 0x03, 0x12, 0x25, 0x56, 0x8b, 0x03, 0x39, 0x9a, 0xf4, - 0xab, 0x5b, 0x6b, 0xc5, 0xfe, 0xeb, 0xab, 0x45, 0x7a, 0xc2, 0x86, 0x47, - 0x2c, 0x20, 0xaa, 0x0e, 0x17, 0x11, 0x0b, 0x02, 0xfe, 0x91, 0x01, 0x73, - 0x10, 0x6d, 0xb0, 0xeb, 0x8e, 0x75, 0x7a, 0x2a, 0x42, 0x17, 0x0f, 0x3e, - 0x23, 0x61, 0x01, 0xf0, 0x41, 0x7e, 0xb9, 0x78, 0x75, 0xb8, 0x80, 0x43, - 0x00, 0x02, 0x00, 0x33, 0xfe, 0x83, 0x04, 0xb6, 0x04, 0x5e, 0x00, 0x2d, - 0x00, 0x36, 0x00, 0x92, 0x40, 0x30, 0x04, 0x47, 0x05, 0x05, 0x0b, 0x32, - 0x48, 0x2d, 0x24, 0x57, 0x38, 0xff, 0x38, 0x01, 0x90, 0x38, 0xb0, 0x38, - 0x02, 0x1f, 0x38, 0x7f, 0x38, 0x02, 0x31, 0x25, 0x48, 0x0b, 0x15, 0xdf, - 0x0e, 0x01, 0x0e, 0x0e, 0x19, 0x00, 0x0b, 0x10, 0x0b, 0x20, 0x0b, 0x03, - 0x40, 0x0b, 0x50, 0x0b, 0x02, 0x0b, 0xb8, 0xff, 0xc0, 0x40, 0x2b, 0x10, - 0x13, 0x48, 0x0b, 0x37, 0x0b, 0x25, 0x50, 0x31, 0x1b, 0x18, 0x2b, 0x18, - 0x02, 0x0f, 0x18, 0x01, 0x1b, 0x11, 0x2b, 0x11, 0x02, 0x0f, 0x11, 0x01, - 0x06, 0x18, 0x11, 0x18, 0x11, 0x28, 0x2e, 0x50, 0x1e, 0x10, 0x28, 0x51, - 0x2d, 0x03, 0x06, 0x16, 0x04, 0xfb, 0x00, 0x3f, 0x3f, 0x33, 0x33, 0xe1, - 0x3f, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, - 0x33, 0xe1, 0x32, 0x01, 0x10, 0xc6, 0x2b, 0x5d, 0x71, 0x32, 0x32, 0x2f, - 0x5d, 0xc1, 0x10, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0x32, 0xe1, - 0x12, 0x39, 0x2f, 0xe1, 0x31, 0x30, 0x25, 0x06, 0x06, 0x07, 0x11, 0x23, - 0x11, 0x2e, 0x03, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x33, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, - 0x15, 0x15, 0x21, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x01, 0x22, - 0x06, 0x07, 0x21, 0x34, 0x2e, 0x02, 0x04, 0x85, 0x42, 0x80, 0x4c, 0xb6, - 0x54, 0x89, 0x63, 0x38, 0x03, 0x85, 0x8e, 0x12, 0x09, 0x95, 0x06, 0x0e, - 0x31, 0x31, 0x1b, 0x0e, 0x4c, 0x74, 0x98, 0x5a, 0x63, 0x9e, 0x6e, 0x3b, - 0xfd, 0x4c, 0x05, 0x99, 0x97, 0x33, 0x57, 0x51, 0x4c, 0x27, 0xfe, 0x83, - 0x72, 0x85, 0x0b, 0x01, 0xec, 0x1b, 0x39, 0x59, 0x35, 0x20, 0x23, 0x04, - 0xfe, 0x95, 0x01, 0x75, 0x11, 0x54, 0x84, 0xb2, 0x6f, 0x02, 0x6f, 0x72, - 0x27, 0x3f, 0x15, 0x0e, 0x3a, 0x22, 0x2f, 0x31, 0x6c, 0xa9, 0x75, 0x3e, - 0x47, 0x81, 0xb5, 0x6e, 0x71, 0xc1, 0xb6, 0x0a, 0x13, 0x1d, 0x12, 0x02, - 0xf0, 0x9c, 0x95, 0x44, 0x71, 0x50, 0x2c, 0x00, 0xff, 0xff, 0x00, 0x52, - 0x00, 0x00, 0x02, 0x64, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2c, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x04, 0x00, 0x00, 0x06, 0x81, 0x07, 0x69, 0x02, 0x26, - 0x01, 0xb0, 0x00, 0x00, 0x01, 0x07, 0x02, 0x36, 0x00, 0xf4, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x17, 0x05, 0x26, 0x01, 0x00, 0x1c, 0x12, - 0x11, 0x0a, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x04, 0x00, 0x00, 0x05, 0xbe, 0x06, 0x17, 0x02, 0x26, 0x01, 0xd0, - 0x00, 0x00, 0x01, 0x07, 0x02, 0x36, 0x00, 0x93, 0x00, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x17, 0x11, 0x26, 0x01, 0x00, 0x1c, 0x12, 0x0e, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0x00, 0x01, 0x00, 0xc7, - 0xfe, 0x00, 0x04, 0xe1, 0x05, 0xb6, 0x00, 0x25, 0x00, 0x67, 0x40, 0x3f, - 0x1b, 0x1b, 0x05, 0x21, 0x5b, 0x11, 0x09, 0x0a, 0x10, 0x0a, 0x40, 0x0c, - 0x18, 0x48, 0x0a, 0x0a, 0x04, 0x11, 0x27, 0x10, 0x27, 0x40, 0x27, 0x02, - 0x0b, 0x08, 0x08, 0x04, 0x5a, 0x05, 0x64, 0x26, 0x1f, 0x5f, 0x1c, 0x16, - 0x1c, 0x08, 0x03, 0x00, 0x60, 0x2f, 0x0c, 0x5f, 0x0c, 0xef, 0x0c, 0xff, - 0x0c, 0x04, 0x0c, 0x40, 0x10, 0x15, 0x48, 0x0c, 0x0c, 0x05, 0x09, 0x06, - 0x03, 0x05, 0x12, 0x00, 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x2b, 0x5d, - 0xe1, 0x33, 0x33, 0x3f, 0x33, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x11, - 0x33, 0x5d, 0x10, 0xce, 0x11, 0x39, 0x2f, 0x2b, 0x38, 0x33, 0x10, 0xe1, - 0x11, 0x39, 0x2f, 0x31, 0x30, 0x01, 0x22, 0x06, 0x07, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x01, 0x33, 0x01, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x2e, 0x02, 0x27, 0x35, 0x16, 0x16, 0x33, 0x20, 0x11, - 0x34, 0x2e, 0x02, 0x02, 0x46, 0x41, 0x5c, 0x28, 0xba, 0xba, 0x02, 0x35, - 0xcf, 0xfd, 0xd1, 0x06, 0x9a, 0xf0, 0xa5, 0x56, 0x52, 0x92, 0xc9, 0x76, - 0x31, 0x4e, 0x43, 0x3d, 0x1f, 0x3f, 0x7f, 0x48, 0x01, 0x77, 0x43, 0x7c, - 0xae, 0x02, 0x6f, 0x11, 0x0e, 0xfd, 0xb0, 0x05, 0xb6, 0xfd, 0x3c, 0x02, - 0xc4, 0xfd, 0x58, 0x55, 0xa3, 0xec, 0x97, 0xaa, 0xf8, 0xa2, 0x4f, 0x06, - 0x0c, 0x13, 0x0c, 0xa2, 0x17, 0x18, 0x01, 0xef, 0x79, 0xb3, 0x76, 0x3a, - 0x00, 0x01, 0x00, 0xae, 0xfe, 0x0a, 0x03, 0xe9, 0x04, 0x4a, 0x00, 0x23, - 0x00, 0x72, 0x40, 0x47, 0x0b, 0x08, 0x1b, 0x08, 0x02, 0x22, 0x23, 0x10, - 0x1f, 0x23, 0x01, 0x23, 0x23, 0x1d, 0x05, 0x0d, 0x0d, 0x1e, 0x14, 0x48, - 0x05, 0x25, 0x0f, 0x25, 0x01, 0x5f, 0x25, 0x6f, 0x25, 0x7f, 0x25, 0x9f, - 0x25, 0xbf, 0x25, 0xdf, 0x25, 0xff, 0x25, 0x07, 0x00, 0x21, 0x21, 0x1d, - 0x47, 0x1e, 0x54, 0x24, 0x21, 0x1c, 0x19, 0x51, 0x0b, 0x00, 0x1b, 0x00, - 0x02, 0x07, 0x00, 0x00, 0x1e, 0x22, 0x1f, 0x0f, 0x1e, 0x15, 0x11, 0x51, - 0x0e, 0x0a, 0x1b, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0xe1, 0x33, 0x33, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x11, - 0x33, 0x5d, 0x71, 0x10, 0xde, 0xe1, 0x11, 0x39, 0x2f, 0x11, 0x12, 0x39, - 0x2f, 0x71, 0x38, 0x33, 0x31, 0x30, 0x00, 0x5d, 0x01, 0x1e, 0x03, 0x15, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x01, 0x33, 0x02, 0x2b, 0x5e, 0xa3, 0x78, 0x45, 0x3f, 0x6f, - 0x96, 0x57, 0x4c, 0x69, 0x2f, 0x2c, 0x69, 0x43, 0x76, 0x75, 0x23, 0x4a, - 0x72, 0x4e, 0x20, 0x55, 0x29, 0xb4, 0xb4, 0x01, 0x98, 0xc4, 0x02, 0x6a, - 0x05, 0x40, 0x84, 0xd0, 0x94, 0x96, 0xd5, 0x88, 0x40, 0x1f, 0x1d, 0xa1, - 0x18, 0x25, 0xc3, 0xd2, 0x6a, 0x97, 0x60, 0x2d, 0x10, 0x0d, 0xfe, 0x50, - 0x04, 0x4a, 0xfe, 0x0a, 0x01, 0xf6, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x7f, - 0x05, 0x56, 0x05, 0xb6, 0x00, 0x23, 0x00, 0x73, 0xb1, 0x07, 0x02, 0xb8, - 0xff, 0xf8, 0x40, 0x46, 0x14, 0x17, 0x48, 0x02, 0x5a, 0x89, 0x18, 0x01, - 0x18, 0x10, 0x18, 0xe0, 0x1d, 0x01, 0xb4, 0x1d, 0xc4, 0x1d, 0xd4, 0x1d, - 0x03, 0x00, 0x1d, 0x50, 0x1d, 0x02, 0x07, 0x1d, 0x1d, 0x1f, 0x0f, 0x21, - 0x22, 0x22, 0x00, 0x5a, 0x23, 0x20, 0x1f, 0x25, 0x90, 0x25, 0xc0, 0x25, - 0xf0, 0x25, 0x03, 0x0f, 0x25, 0x1f, 0x25, 0x7f, 0x25, 0x03, 0x08, 0x0f, - 0x21, 0xfb, 0x02, 0x5f, 0x1d, 0x03, 0x13, 0x60, 0x0c, 0x13, 0x1f, 0x5f, - 0x00, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0xe1, 0x3f, 0x01, 0x2f, - 0x5e, 0x5d, 0x5d, 0x10, 0xd4, 0x32, 0x32, 0xe1, 0x39, 0x2f, 0x33, 0x11, - 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x33, 0x38, 0x5d, 0xe1, 0x2b, - 0x32, 0x31, 0x30, 0x21, 0x11, 0x21, 0x0e, 0x03, 0x07, 0x0e, 0x03, 0x23, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x36, - 0x36, 0x12, 0x12, 0x37, 0x21, 0x11, 0x33, 0x03, 0x23, 0x13, 0x03, 0xd9, - 0xfe, 0x85, 0x0f, 0x20, 0x21, 0x21, 0x10, 0x14, 0x35, 0x4f, 0x6e, 0x4e, - 0x23, 0x4a, 0x1c, 0x17, 0x3a, 0x20, 0x30, 0x3e, 0x2a, 0x1a, 0x0c, 0x0c, - 0x20, 0x27, 0x2b, 0x16, 0x02, 0xd0, 0xc3, 0x8f, 0xd9, 0xa5, 0x05, 0x12, - 0x71, 0xf5, 0xeb, 0xd4, 0x51, 0x67, 0xa2, 0x6f, 0x3b, 0x0e, 0x0b, 0x9a, - 0x0d, 0x10, 0x3f, 0x62, 0x75, 0x36, 0x39, 0xc8, 0x01, 0x06, 0x01, 0x3a, - 0xaa, 0xfa, 0xf0, 0xfd, 0xd9, 0x01, 0x81, 0x00, 0x00, 0x01, 0x00, 0x10, - 0xfe, 0x83, 0x04, 0x66, 0x04, 0x4a, 0x00, 0x18, 0x00, 0x58, 0x40, 0x38, - 0x02, 0x46, 0xd4, 0x12, 0xe4, 0x12, 0x02, 0x60, 0x12, 0x70, 0x12, 0xa0, - 0x12, 0xb0, 0x12, 0x04, 0x34, 0x12, 0x01, 0x12, 0x12, 0x0a, 0x16, 0x17, - 0x17, 0x00, 0x47, 0x18, 0x15, 0x14, 0x55, 0x1a, 0x20, 0x1a, 0xb0, 0x1a, - 0x02, 0x0f, 0x1a, 0x01, 0x08, 0x0a, 0x16, 0xfb, 0x02, 0x50, 0x12, 0x0f, - 0x0d, 0x4f, 0x07, 0x16, 0x14, 0x50, 0x00, 0x15, 0x00, 0x3f, 0xe1, 0x3f, - 0xe1, 0x3f, 0xe1, 0x3f, 0x01, 0x2f, 0x5e, 0x5d, 0x5d, 0x10, 0xf4, 0x32, - 0x32, 0xe1, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x5d, 0x5d, 0x5d, 0xe1, - 0x31, 0x30, 0x21, 0x11, 0x21, 0x02, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x35, 0x16, 0x33, 0x32, 0x36, 0x36, 0x12, 0x37, 0x21, 0x11, 0x33, - 0x03, 0x23, 0x13, 0x02, 0xfa, 0xfe, 0xfe, 0x14, 0x40, 0x5f, 0x82, 0x56, - 0x1c, 0x31, 0x10, 0x16, 0x1c, 0x37, 0x59, 0x45, 0x33, 0x12, 0x02, 0x54, - 0xb6, 0x7a, 0xb7, 0x7b, 0x03, 0xb0, 0xfe, 0xfd, 0xfe, 0x94, 0xe6, 0x69, - 0x06, 0x06, 0x83, 0x06, 0x75, 0xf1, 0x01, 0x6f, 0xfa, 0xfc, 0x50, 0xfd, - 0xe9, 0x01, 0x7d, 0x00, 0x00, 0x01, 0x00, 0xe5, 0xfe, 0x00, 0x04, 0xf4, - 0x05, 0xb6, 0x00, 0x1b, 0x00, 0x4b, 0x40, 0x2b, 0x05, 0x05, 0x10, 0x14, - 0x0c, 0x5a, 0x17, 0x65, 0x1d, 0xc0, 0x1d, 0x01, 0xbf, 0x1d, 0x01, 0x20, - 0x1d, 0x01, 0x13, 0x0f, 0x5a, 0x10, 0x64, 0x1c, 0x0e, 0x5f, 0x0f, 0x13, - 0x01, 0x08, 0x13, 0x13, 0x10, 0x15, 0x11, 0x03, 0x10, 0x12, 0x09, 0x5f, - 0x06, 0x00, 0x1c, 0x00, 0x3f, 0x32, 0xe1, 0x3f, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x5d, - 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x39, 0x2f, 0x31, 0x30, 0x01, 0x22, 0x2e, - 0x02, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x21, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x02, - 0xd1, 0x31, 0x4e, 0x44, 0x3d, 0x1f, 0x3f, 0x7f, 0x48, 0xbb, 0xc6, 0xfd, - 0x67, 0xbb, 0xbb, 0x02, 0x99, 0xbb, 0x52, 0x92, 0xc9, 0xfe, 0x00, 0x06, - 0x0c, 0x13, 0x0c, 0xa2, 0x17, 0x18, 0xf0, 0xf7, 0x02, 0x1f, 0xfd, 0x56, - 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0xfa, 0xdd, 0xaa, 0xf8, 0xa2, 0x4f, - 0x00, 0x01, 0x00, 0xae, 0xfe, 0x0a, 0x04, 0x3b, 0x04, 0x4a, 0x00, 0x1b, - 0x00, 0x69, 0x40, 0x1a, 0x03, 0x03, 0x10, 0x14, 0x0c, 0x47, 0x17, 0x55, - 0x1d, 0x00, 0x1d, 0x20, 0x1d, 0x02, 0x30, 0x1d, 0x40, 0x1d, 0x50, 0x1d, - 0xd0, 0x1d, 0xf0, 0x1d, 0x05, 0x1d, 0xb8, 0xff, 0xc0, 0x40, 0x28, 0x0e, - 0x11, 0x48, 0x13, 0x0f, 0x47, 0x10, 0x54, 0x1c, 0x0e, 0x50, 0xeb, 0x13, - 0x01, 0xa9, 0x13, 0xb9, 0x13, 0x02, 0x0f, 0x13, 0x1f, 0x13, 0x2f, 0x13, - 0x03, 0x06, 0x13, 0x13, 0x10, 0x15, 0x11, 0x0f, 0x10, 0x15, 0x07, 0x51, - 0x04, 0x00, 0x1b, 0x00, 0x3f, 0x32, 0xe1, 0x3f, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2b, - 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x32, 0x11, 0x39, 0x2f, 0x31, 0x30, 0x01, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, - 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x14, 0x0e, - 0x02, 0x02, 0xa0, 0x4c, 0x69, 0x2f, 0x2c, 0x69, 0x42, 0x3b, 0x5b, 0x3d, - 0x1f, 0xfd, 0xdf, 0xb6, 0xb6, 0x02, 0x21, 0xb6, 0x3f, 0x6f, 0x96, 0xfe, - 0x0a, 0x1f, 0x1d, 0xa1, 0x18, 0x25, 0x2d, 0x61, 0x96, 0x69, 0x01, 0xb2, - 0xfe, 0x17, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, 0xfb, 0xf3, 0x96, 0xd5, - 0x88, 0x40, 0x00, 0x01, 0x00, 0xe5, 0xfe, 0x7f, 0x05, 0xb6, 0x05, 0xb6, - 0x00, 0x0f, 0x00, 0x52, 0x40, 0x32, 0x02, 0x03, 0x03, 0x0d, 0x05, 0x5a, - 0x04, 0x01, 0x00, 0x11, 0x10, 0x11, 0x20, 0x11, 0x40, 0x11, 0x80, 0x11, - 0xc0, 0x11, 0xe0, 0x11, 0xf0, 0x11, 0x07, 0x0c, 0x08, 0x5a, 0x09, 0x64, - 0x10, 0x07, 0x5f, 0x0f, 0x0c, 0x01, 0x08, 0x0c, 0x0c, 0x05, 0x0e, 0x0a, - 0x03, 0x09, 0x00, 0x5f, 0x05, 0x12, 0x02, 0xfb, 0x00, 0x3f, 0x3f, 0xe1, - 0x33, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0xe1, 0x01, 0x10, 0xf6, - 0xe1, 0x32, 0x5d, 0x10, 0xd4, 0x32, 0x32, 0xe1, 0x32, 0x39, 0x2f, 0x33, - 0x31, 0x30, 0x25, 0x33, 0x03, 0x23, 0x13, 0x23, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x04, 0xf4, 0xc2, 0x8f, 0xd9, 0xa6, - 0xbb, 0xfd, 0x67, 0xbb, 0xbb, 0x02, 0x99, 0xbb, 0xa6, 0xfd, 0xd9, 0x01, - 0x81, 0x02, 0xaa, 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0x00, - 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, 0x04, 0xf2, 0x04, 0x4a, 0x00, 0x0f, - 0x00, 0x76, 0x40, 0x4f, 0x0d, 0x0e, 0x0e, 0x08, 0x00, 0x47, 0x0f, 0x0c, - 0xab, 0x0b, 0xbb, 0x0b, 0x02, 0x0b, 0x11, 0x04, 0x11, 0x24, 0x11, 0x02, - 0xd4, 0x11, 0xf4, 0x11, 0x02, 0xb0, 0x11, 0x01, 0x02, 0x30, 0x11, 0x40, - 0x11, 0x50, 0x11, 0x80, 0x11, 0x90, 0x11, 0xa0, 0x11, 0x06, 0x07, 0x03, - 0x47, 0x04, 0x54, 0x10, 0x0d, 0xfb, 0x02, 0x50, 0xeb, 0x07, 0x01, 0xa9, - 0x07, 0xb9, 0x07, 0x02, 0x0f, 0x07, 0x1f, 0x07, 0x2f, 0x07, 0x03, 0x06, - 0x07, 0x07, 0x00, 0x09, 0x05, 0x0f, 0x0b, 0x50, 0x04, 0x00, 0x15, 0x00, - 0x3f, 0x32, 0xe1, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0xe1, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5f, 0x5d, 0x5d, 0x71, - 0x10, 0xd4, 0x5d, 0x32, 0x32, 0xe1, 0x32, 0x39, 0x2f, 0x33, 0x31, 0x30, - 0x21, 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, - 0x33, 0x03, 0x23, 0x13, 0x03, 0x85, 0xfd, 0xdf, 0xb6, 0xb6, 0x02, 0x21, - 0xb6, 0xb7, 0x7b, 0xb6, 0x7a, 0x01, 0xe9, 0xfe, 0x17, 0x04, 0x4a, 0xfe, - 0x39, 0x01, 0xc7, 0xfc, 0x50, 0xfd, 0xe9, 0x01, 0x7d, 0x00, 0x00, 0x01, - 0x00, 0xa6, 0xfe, 0x7f, 0x04, 0x81, 0x05, 0xb6, 0x00, 0x1d, 0x00, 0x59, - 0x40, 0x21, 0x1d, 0x5a, 0x1a, 0x1a, 0x16, 0x00, 0x5a, 0x19, 0x65, 0x1f, - 0x70, 0x1f, 0xa0, 0x1f, 0x02, 0x2f, 0x1f, 0x01, 0x10, 0x1f, 0x01, 0x0e, - 0x5a, 0x60, 0x0b, 0x70, 0x0b, 0xa0, 0x0b, 0xb0, 0x0b, 0x04, 0x0b, 0xb8, - 0xff, 0xc0, 0x40, 0x14, 0x07, 0x0a, 0x48, 0x0b, 0x16, 0x11, 0x5f, 0x06, - 0x06, 0x0c, 0x1a, 0x1b, 0xfb, 0x1d, 0x5f, 0x1a, 0x12, 0x17, 0x0c, 0x03, - 0x00, 0x3f, 0x33, 0x3f, 0xe1, 0x3f, 0x11, 0x12, 0x39, 0x2f, 0xe1, 0x33, - 0x01, 0x2f, 0x2b, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, - 0x32, 0x2f, 0xe1, 0x31, 0x30, 0x25, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, - 0x11, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0x03, 0xc7, 0x3a, 0x69, 0x63, - 0x61, 0x31, 0x5d, 0x92, 0x65, 0x35, 0xba, 0x69, 0x7b, 0x2d, 0x5a, 0x5e, - 0x66, 0x38, 0xba, 0xba, 0xb0, 0xa6, 0x01, 0xb0, 0x16, 0x22, 0x16, 0x0c, - 0x31, 0x5e, 0x8b, 0x59, 0x02, 0x47, 0xfd, 0xd1, 0x73, 0x74, 0x0a, 0x14, - 0x1e, 0x14, 0x02, 0xc6, 0xfa, 0x4a, 0xfe, 0x7f, 0x02, 0x27, 0x00, 0x01, - 0x00, 0x9a, 0xfe, 0x83, 0x03, 0xfe, 0x04, 0x4a, 0x00, 0x1c, 0x00, 0x40, - 0x40, 0x25, 0x1b, 0x47, 0x18, 0x18, 0x14, 0x1c, 0x47, 0x17, 0x55, 0x1e, - 0x10, 0x1e, 0x60, 0x1e, 0x80, 0x1e, 0x03, 0x0d, 0x47, 0x0a, 0x54, 0x1d, - 0x19, 0xfb, 0x14, 0x0f, 0x50, 0x05, 0x05, 0x0b, 0x1b, 0x50, 0x18, 0x15, - 0x15, 0x0b, 0x0f, 0x00, 0x3f, 0x33, 0x3f, 0xe1, 0x12, 0x39, 0x2f, 0xe1, - 0x33, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x32, - 0x2f, 0xe1, 0x31, 0x30, 0x01, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, - 0x11, 0x33, 0x11, 0x14, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x11, 0x33, 0x11, - 0x23, 0x11, 0x23, 0x11, 0x33, 0x03, 0x48, 0x2c, 0x50, 0x55, 0x5e, 0x3a, - 0x4e, 0x7a, 0x52, 0x2b, 0xb6, 0xb8, 0x2d, 0x50, 0x4c, 0x4d, 0x2a, 0xb6, - 0xa0, 0xb6, 0xa0, 0x01, 0xe9, 0x1e, 0x30, 0x20, 0x11, 0x2f, 0x54, 0x73, - 0x44, 0x01, 0xa6, 0xfe, 0x66, 0xae, 0x0f, 0x1c, 0x2b, 0x1d, 0x01, 0xd5, - 0xfb, 0xb6, 0xfe, 0x83, 0x02, 0x17, 0x00, 0x01, 0x00, 0xc7, 0xfe, 0x7f, - 0x06, 0xf2, 0x05, 0xb6, 0x00, 0x1f, 0x00, 0x9a, 0xb6, 0x36, 0x1f, 0x01, - 0x39, 0x00, 0x01, 0x1f, 0xb8, 0xff, 0xf8, 0x40, 0x2c, 0x0c, 0x0f, 0x48, - 0x1f, 0x00, 0x08, 0x0c, 0x0f, 0x48, 0x00, 0x0d, 0x0d, 0x0c, 0x10, 0x09, - 0x12, 0x13, 0x13, 0x0e, 0x08, 0x0c, 0x0f, 0x48, 0x39, 0x0e, 0x01, 0x0e, - 0x1d, 0x15, 0x5a, 0x14, 0x11, 0x10, 0x21, 0x20, 0x21, 0xc0, 0x21, 0x02, - 0x0f, 0x21, 0x01, 0x08, 0x0b, 0xb8, 0xff, 0xf8, 0x40, 0x10, 0x0c, 0x0f, - 0x48, 0x26, 0x0b, 0x01, 0x0b, 0x02, 0x08, 0x5a, 0x09, 0x64, 0x20, 0x10, - 0x5f, 0x0c, 0xb8, 0xff, 0xf0, 0x40, 0x16, 0x09, 0x12, 0x48, 0x00, 0x09, - 0x0c, 0x03, 0x15, 0x12, 0x12, 0xfb, 0x1e, 0x01, 0x01, 0x10, 0x09, 0x12, - 0x48, 0x01, 0x0e, 0x0a, 0x03, 0x00, 0x3f, 0x33, 0x33, 0x2b, 0x11, 0x33, - 0x3f, 0x3f, 0x17, 0x33, 0x2b, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x32, - 0x5d, 0x2b, 0x5e, 0x5d, 0x5d, 0x10, 0xd4, 0x32, 0x32, 0xe1, 0x32, 0x32, - 0x5d, 0x2b, 0x39, 0x2f, 0x33, 0x11, 0x12, 0x39, 0x39, 0x11, 0x33, 0x2b, - 0x33, 0x2b, 0x31, 0x30, 0x5d, 0x5d, 0x21, 0x01, 0x23, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x11, 0x23, 0x11, 0x21, 0x01, 0x33, 0x01, 0x21, 0x11, 0x33, - 0x03, 0x23, 0x13, 0x23, 0x11, 0x34, 0x3e, 0x02, 0x37, 0x36, 0x37, 0x23, - 0x01, 0x03, 0x23, 0xfe, 0x45, 0x08, 0x05, 0x04, 0x04, 0x06, 0xac, 0x01, - 0x14, 0x01, 0x9c, 0x06, 0x01, 0x9e, 0x01, 0x14, 0xc3, 0x90, 0xd9, 0xa6, - 0xba, 0x01, 0x02, 0x02, 0x02, 0x03, 0x04, 0x08, 0xfe, 0x41, 0x05, 0x00, - 0x4a, 0x49, 0x3f, 0x8b, 0x39, 0xfc, 0x96, 0x05, 0xb6, 0xfb, 0x58, 0x04, - 0xa8, 0xfa, 0xf0, 0xfd, 0xd9, 0x01, 0x81, 0x03, 0x77, 0x19, 0x3d, 0x41, - 0x42, 0x1e, 0x47, 0x49, 0xfb, 0x02, 0x00, 0x01, 0x00, 0xae, 0xfe, 0x83, - 0x05, 0xc7, 0x04, 0x4a, 0x00, 0x24, 0x00, 0x87, 0x40, 0x5a, 0x08, 0x07, - 0x18, 0x18, 0x10, 0x20, 0x22, 0x23, 0x23, 0x1e, 0x00, 0x46, 0x24, 0x21, - 0xaf, 0x20, 0xbf, 0x20, 0x02, 0x20, 0x26, 0xe0, 0x26, 0x01, 0xcf, 0x26, - 0x01, 0x30, 0x26, 0x40, 0x26, 0x50, 0x26, 0xa0, 0x26, 0x04, 0x0f, 0x26, - 0x01, 0x06, 0x12, 0x0f, 0x46, 0x10, 0x54, 0x25, 0x22, 0xfb, 0x01, 0x3b, - 0x0e, 0x4b, 0x0e, 0x5b, 0x0e, 0x03, 0x0b, 0x0e, 0x1b, 0x0e, 0x2b, 0x0e, - 0x03, 0x0e, 0x0e, 0x1e, 0x11, 0x0f, 0x20, 0x50, 0x34, 0x18, 0x44, 0x18, - 0x54, 0x18, 0x03, 0x05, 0x18, 0x15, 0x18, 0x25, 0x18, 0x03, 0x08, 0x10, - 0x18, 0x03, 0x00, 0x15, 0x00, 0x3f, 0x17, 0x32, 0x5d, 0x5d, 0xe1, 0x3f, - 0x33, 0x33, 0x2f, 0x5d, 0x5d, 0x33, 0x3f, 0x01, 0x10, 0xf6, 0xe1, 0x32, - 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xd4, 0x5d, 0x32, 0x32, 0xe1, 0x32, - 0x39, 0x2f, 0x33, 0x11, 0x12, 0x39, 0x11, 0x33, 0x33, 0x31, 0x30, 0x21, - 0x11, 0x0e, 0x03, 0x07, 0x01, 0x23, 0x01, 0x2e, 0x03, 0x27, 0x11, 0x23, - 0x11, 0x33, 0x01, 0x1e, 0x03, 0x17, 0x3e, 0x03, 0x37, 0x01, 0x33, 0x11, - 0x33, 0x03, 0x23, 0x13, 0x04, 0x6f, 0x06, 0x11, 0x14, 0x12, 0x07, 0xfe, - 0xf8, 0x87, 0xfe, 0xf7, 0x05, 0x11, 0x14, 0x12, 0x07, 0xa2, 0xdd, 0x01, - 0x0b, 0x0d, 0x16, 0x13, 0x0e, 0x05, 0x06, 0x0e, 0x13, 0x16, 0x0d, 0x01, - 0x0e, 0xd9, 0xb7, 0x7b, 0xb6, 0x7a, 0x03, 0x81, 0x15, 0x39, 0x3b, 0x36, - 0x12, 0xfd, 0x50, 0x02, 0xb0, 0x0d, 0x31, 0x3b, 0x3e, 0x1a, 0xfc, 0x7f, - 0x04, 0x4a, 0xfd, 0x47, 0x22, 0x43, 0x3c, 0x32, 0x10, 0x11, 0x31, 0x3b, - 0x41, 0x21, 0x02, 0xbd, 0xfc, 0x50, 0xfd, 0xe9, 0x01, 0x7d, 0xff, 0xff, - 0x00, 0x52, 0x00, 0x00, 0x02, 0x64, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x2c, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x07, 0x69, - 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x02, 0x36, 0x00, 0x21, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x1a, 0x05, 0x26, 0x02, 0x00, - 0x1f, 0x15, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0xa1, 0x06, 0x17, 0x02, 0x26, - 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, 0x02, 0x36, 0xd4, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x02, 0x38, 0x11, 0x26, 0x02, 0x25, 0x3d, 0x33, 0x0c, 0x22, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0xdd, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0x21, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x1e, 0x05, 0x26, 0x03, 0x02, 0x01, 0x15, 0x29, 0x04, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xde, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x3c, 0x11, 0x26, 0x03, 0x02, 0x2f, 0x33, 0x47, 0x0c, 0x22, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0xff, 0xfe, 0x00, 0x00, 0x06, 0x56, 0x05, 0xb6, 0x02, 0x06, 0x00, 0x88, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x06, 0x44, 0x04, 0x5e, - 0x02, 0x06, 0x00, 0xa8, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, - 0x03, 0xc8, 0x07, 0x69, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x36, 0xff, 0xfb, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x11, - 0x05, 0x26, 0x01, 0x06, 0x16, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, - 0x06, 0x17, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x06, 0x02, 0x36, - 0xea, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2d, 0x11, 0x26, 0x02, 0x0f, - 0x32, 0x28, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x05, 0x12, 0x05, 0xcd, 0x00, 0x1e, - 0x00, 0x29, 0x00, 0x49, 0x40, 0x2f, 0x24, 0x1a, 0x5b, 0x0e, 0x67, 0x2b, - 0x0f, 0x2b, 0x8f, 0x2b, 0xaf, 0x2b, 0xbf, 0x2b, 0x04, 0x2b, 0x40, 0x0b, - 0x0f, 0x48, 0x25, 0x5b, 0x03, 0x19, 0x66, 0x2a, 0x25, 0x5f, 0x2f, 0x19, - 0x5f, 0x19, 0x7f, 0x19, 0x03, 0x19, 0x19, 0x09, 0x1f, 0x5f, 0x13, 0x13, - 0x03, 0x00, 0x5f, 0x09, 0x04, 0x00, 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x11, - 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0x32, 0xe1, 0x2b, 0x5d, 0x10, - 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x22, 0x06, 0x07, 0x35, 0x3e, 0x03, - 0x33, 0x32, 0x16, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x26, 0x02, 0x35, 0x35, 0x21, 0x2e, 0x03, 0x03, 0x32, 0x3e, 0x02, - 0x37, 0x21, 0x14, 0x1e, 0x02, 0x02, 0x79, 0x80, 0xcf, 0x5b, 0x2a, 0x5a, - 0x69, 0x7d, 0x4c, 0xa0, 0xf4, 0xa5, 0x54, 0x51, 0x9d, 0xe8, 0x96, 0x99, - 0xd7, 0x87, 0x3e, 0x03, 0xdb, 0x07, 0x40, 0x73, 0xa9, 0x43, 0x5b, 0x95, - 0x6d, 0x42, 0x07, 0xfc, 0xed, 0x26, 0x55, 0x8c, 0x05, 0x29, 0x2c, 0x20, - 0xaa, 0x0f, 0x1a, 0x13, 0x0a, 0x6c, 0xc6, 0xfe, 0xe9, 0xab, 0xae, 0xfe, - 0xeb, 0xc2, 0x68, 0x6b, 0xc4, 0x01, 0x15, 0xab, 0x46, 0x7a, 0xc1, 0x86, - 0x47, 0xfb, 0x66, 0x41, 0x7e, 0xb9, 0x78, 0x75, 0xb8, 0x7f, 0x44, 0x00, - 0x00, 0x02, 0x00, 0x66, 0xff, 0xec, 0x03, 0xd7, 0x04, 0x5e, 0x00, 0x1e, - 0x00, 0x27, 0x00, 0x43, 0x40, 0x29, 0x22, 0x11, 0x48, 0x05, 0x57, 0x29, - 0xb0, 0x29, 0x01, 0x3f, 0x29, 0x01, 0x23, 0x48, 0x19, 0x10, 0x56, 0x28, - 0x23, 0x50, 0x9f, 0x10, 0xaf, 0x10, 0xcf, 0x10, 0xdf, 0x10, 0x04, 0x10, - 0x10, 0x00, 0x1f, 0x50, 0x0a, 0x16, 0x19, 0x14, 0x51, 0x00, 0x10, 0x00, - 0x3f, 0xe1, 0x33, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, - 0xf6, 0x32, 0xe1, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x01, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, - 0x35, 0x21, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x35, 0x3e, 0x03, - 0x13, 0x32, 0x36, 0x37, 0x21, 0x14, 0x1e, 0x02, 0x01, 0xe7, 0x6e, 0xb6, - 0x83, 0x49, 0x42, 0x78, 0xa7, 0x66, 0x63, 0x9e, 0x6e, 0x3b, 0x02, 0xb5, - 0x05, 0x9a, 0x97, 0x33, 0x57, 0x50, 0x4c, 0x27, 0x28, 0x4c, 0x51, 0x57, - 0x60, 0x73, 0x85, 0x0b, 0xfe, 0x14, 0x1b, 0x39, 0x58, 0x04, 0x5e, 0x4a, - 0x8e, 0xd2, 0x87, 0x88, 0xd6, 0x95, 0x4e, 0x47, 0x81, 0xb5, 0x6e, 0x71, - 0xc0, 0xb6, 0x0a, 0x13, 0x1c, 0x12, 0xa1, 0x13, 0x1c, 0x12, 0x09, 0xfc, - 0x25, 0x9c, 0x95, 0x44, 0x71, 0x50, 0x2c, 0x00, 0xff, 0xff, 0x00, 0x71, - 0xff, 0xec, 0x05, 0x12, 0x07, 0x2b, 0x02, 0x26, 0x02, 0xe1, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0x46, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x03, - 0x02, 0x33, 0x05, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xd3, 0xb4, 0x2a, 0x3e, - 0x18, 0x0e, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x66, 0xff, 0xec, 0x03, 0xd7, 0x05, 0xd9, 0x02, 0x26, - 0x02, 0xe2, 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xc4, 0x00, 0x00, 0x19, - 0xb6, 0x03, 0x02, 0x31, 0x11, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xf4, 0xb4, - 0x28, 0x3c, 0x0f, 0x05, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x04, 0x00, 0x00, 0x06, 0x81, 0x07, 0x2b, - 0x02, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0x00, 0xf4, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x1b, 0x05, 0x26, 0x02, - 0x01, 0x00, 0x12, 0x26, 0x11, 0x0a, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x04, 0x00, 0x00, 0x05, 0xbe, - 0x05, 0xd9, 0x02, 0x26, 0x01, 0xd0, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, - 0x00, 0x91, 0x00, 0x00, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x1b, 0x11, 0x26, - 0x02, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x12, 0x26, 0x0e, 0x07, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x48, - 0xff, 0xec, 0x03, 0xec, 0x07, 0x2b, 0x02, 0x26, 0x01, 0xb1, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0xff, 0xbf, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, - 0x01, 0x43, 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, 0xf4, 0xb4, 0x3a, 0x4e, - 0x13, 0x0b, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x44, 0xff, 0xec, 0x03, 0x52, 0x05, 0xd9, 0x02, 0x26, - 0x01, 0xd1, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0x55, 0x00, 0x00, - 0x00, 0x19, 0xb6, 0x02, 0x01, 0x43, 0x11, 0x26, 0x02, 0x01, 0xb8, 0xff, - 0xd9, 0xb4, 0x3a, 0x4e, 0x29, 0x21, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0x00, 0x01, 0x00, 0x48, 0xff, 0xec, 0x03, 0xec, - 0x05, 0xb6, 0x00, 0x20, 0x00, 0x72, 0x40, 0x2d, 0x00, 0x5b, 0x1b, 0x1c, - 0x5b, 0x20, 0x20, 0x40, 0x10, 0x18, 0x48, 0x1d, 0x1b, 0x20, 0x20, 0x1b, - 0x1d, 0x03, 0x0d, 0x16, 0x5b, 0x05, 0x67, 0x22, 0x9f, 0x22, 0x01, 0x70, - 0x0d, 0x80, 0x0d, 0x02, 0x3f, 0x0d, 0x4f, 0x0d, 0x5f, 0x0d, 0x03, 0x0d, - 0x20, 0x1d, 0x5f, 0x1e, 0x1b, 0xb8, 0xff, 0xf0, 0x40, 0x18, 0x07, 0x0d, - 0x48, 0x1b, 0x19, 0xaa, 0x00, 0x01, 0x78, 0x00, 0x01, 0x0f, 0x00, 0x01, - 0x08, 0x00, 0x00, 0x1e, 0x03, 0x13, 0x60, 0x0e, 0x0a, 0x13, 0x00, 0x3f, - 0x33, 0xe1, 0x3f, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x33, 0x33, 0x2b, - 0x10, 0xe1, 0x32, 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x12, - 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2b, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, - 0x01, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, - 0x1e, 0x03, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x01, - 0x21, 0x35, 0x21, 0x15, 0x01, 0xf4, 0x73, 0xba, 0x84, 0x47, 0x43, 0x88, - 0xcd, 0x89, 0x6e, 0xc0, 0x55, 0x2b, 0x60, 0x63, 0x63, 0x2e, 0xb2, 0xb0, - 0xcf, 0xba, 0x7b, 0x01, 0xa6, 0xfd, 0xa6, 0x03, 0x3d, 0x03, 0x3b, 0x05, - 0x35, 0x64, 0x97, 0x66, 0x60, 0xa0, 0x74, 0x40, 0x22, 0x2d, 0xaa, 0x17, - 0x24, 0x18, 0x0d, 0x94, 0x87, 0x87, 0x81, 0x97, 0x01, 0xd1, 0xa6, 0x91, - 0x00, 0x01, 0x00, 0x1b, 0xfe, 0x14, 0x03, 0x75, 0x04, 0x4a, 0x00, 0x24, - 0x00, 0x64, 0x40, 0x3e, 0x00, 0x4a, 0x1f, 0x20, 0x4a, 0x24, 0x24, 0x40, - 0x13, 0x18, 0x48, 0x21, 0x1f, 0x24, 0x24, 0x1f, 0x21, 0x03, 0x0d, 0x18, - 0x47, 0x05, 0x57, 0x26, 0x6f, 0x26, 0x9f, 0x26, 0x02, 0x30, 0x26, 0x01, - 0x0f, 0x26, 0x01, 0x07, 0x0d, 0x40, 0x0c, 0x11, 0x48, 0x0d, 0x24, 0x21, - 0x50, 0x22, 0x1f, 0x1d, 0x00, 0x20, 0x09, 0x0c, 0x48, 0x00, 0x00, 0x22, - 0x0f, 0x13, 0x50, 0x0e, 0x0a, 0x1b, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x39, - 0x2f, 0x2b, 0x33, 0x33, 0x10, 0xe1, 0x32, 0x01, 0x2f, 0x2b, 0x5e, 0x5d, - 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x12, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x2b, - 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x1e, 0x03, 0x15, 0x14, 0x0e, - 0x02, 0x23, 0x22, 0x26, 0x27, 0x35, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, - 0x35, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, - 0x01, 0xa8, 0x5f, 0xa8, 0x7d, 0x49, 0x47, 0x84, 0xba, 0x73, 0x73, 0xb5, - 0x3a, 0x1f, 0x4e, 0x5b, 0x66, 0x36, 0x47, 0x77, 0x56, 0x30, 0x37, 0x63, - 0x8b, 0x54, 0x6d, 0x01, 0x92, 0xfd, 0xc6, 0x03, 0x06, 0x01, 0xd5, 0x07, - 0x41, 0x75, 0xa6, 0x6c, 0x6e, 0xb7, 0x84, 0x49, 0x24, 0x22, 0xa6, 0x10, - 0x1f, 0x18, 0x0f, 0x2e, 0x57, 0x7d, 0x4e, 0x56, 0x7d, 0x52, 0x27, 0x7d, - 0x01, 0xed, 0x9a, 0x85, 0xff, 0xff, 0x00, 0xc9, 0x00, 0x00, 0x05, 0x10, - 0x06, 0xc1, 0x02, 0x26, 0x01, 0xb2, 0x00, 0x00, 0x01, 0x07, 0x01, 0x4d, - 0x00, 0xb0, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x1a, 0x05, 0x26, 0x01, - 0xb8, 0xff, 0xfe, 0xb4, 0x18, 0x19, 0x00, 0x0c, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x3b, - 0x05, 0x6f, 0x02, 0x26, 0x01, 0xd2, 0x00, 0x00, 0x01, 0x06, 0x01, 0x4d, - 0x39, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x0e, 0x11, 0x26, 0x01, 0xb8, 0xff, - 0xff, 0xb4, 0x0c, 0x0d, 0x0a, 0x04, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc9, 0x00, 0x00, 0x05, 0x10, 0x07, 0x2b, - 0x02, 0x26, 0x01, 0xb2, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0x00, 0x9c, - 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x21, 0x05, 0x26, 0x02, 0x01, - 0xb8, 0xff, 0xfe, 0xb4, 0x18, 0x2c, 0x00, 0x0c, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x3b, 0x05, 0xd9, 0x02, 0x26, 0x01, 0xd2, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x6a, 0x25, 0x00, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x15, 0x11, 0x26, - 0x02, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x0c, 0x20, 0x0a, 0x04, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, - 0xff, 0xec, 0x05, 0x71, 0x07, 0x2b, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0xaa, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x31, 0x05, 0x26, 0x03, 0x02, 0x01, 0x28, 0x3c, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0xf9, 0x00, 0x00, 0x19, 0xb6, 0x03, - 0x02, 0x29, 0x11, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xf9, 0xb4, 0x20, 0x34, - 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x05, 0xcd, 0x02, 0x06, - 0x02, 0x7e, 0x00, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x04, 0x5e, 0x02, 0x06, 0x02, 0x7f, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7d, - 0xff, 0xec, 0x05, 0x71, 0x07, 0x2b, 0x02, 0x26, 0x02, 0x7e, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0xaa, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x04, 0x03, 0x33, 0x05, 0x26, 0x04, 0x03, 0x01, 0x2a, 0x3e, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x05, 0xd9, 0x02, 0x26, 0x02, 0x7f, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x04, 0x03, 0x2b, 0x11, 0x26, 0x04, 0x03, 0x00, 0x22, 0x36, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x3b, 0xff, 0xec, 0x04, 0x44, 0x07, 0x2b, 0x02, 0x26, 0x01, 0xc7, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0x97, 0x01, 0x52, 0x00, 0x19, - 0xb6, 0x02, 0x01, 0x2e, 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, 0xa6, 0xb4, - 0x25, 0x39, 0x04, 0x0c, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x37, 0xff, 0xec, 0x03, 0x42, 0x05, 0xd9, - 0x02, 0x26, 0x01, 0xe7, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0xff, 0x38, - 0x00, 0x00, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x30, 0x11, 0x26, 0x02, 0x01, - 0xb8, 0xff, 0xca, 0xb4, 0x27, 0x3b, 0x03, 0x22, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xec, - 0x04, 0xae, 0x06, 0xc1, 0x02, 0x26, 0x01, 0xbd, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x4d, 0x00, 0x27, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x24, 0x05, - 0x26, 0x01, 0xb8, 0xff, 0xfe, 0xb4, 0x22, 0x23, 0x13, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, - 0x03, 0xdf, 0x05, 0x6f, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, 0x01, 0x06, - 0x01, 0x4d, 0xbb, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x25, 0x11, 0x26, - 0x01, 0x01, 0x23, 0x24, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xec, 0x04, 0xae, 0x07, 0x2b, - 0x02, 0x26, 0x01, 0xbd, 0x00, 0x00, 0x01, 0x07, 0x00, 0x6a, 0x00, 0x12, - 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x2b, 0x05, 0x26, 0x02, 0x01, - 0xb8, 0xff, 0xfd, 0xb4, 0x22, 0x36, 0x13, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, - 0x03, 0xdf, 0x05, 0xd9, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x6a, 0xa7, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, 0x2c, 0x11, - 0x26, 0x02, 0x01, 0x01, 0x23, 0x37, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xec, - 0x04, 0xae, 0x07, 0x73, 0x02, 0x26, 0x01, 0xbd, 0x00, 0x00, 0x01, 0x07, - 0x01, 0x53, 0x00, 0x66, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, - 0x2e, 0x05, 0x26, 0x02, 0x01, 0x51, 0x22, 0x36, 0x13, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, - 0xfe, 0x14, 0x03, 0xdf, 0x06, 0x21, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x53, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x02, 0x01, - 0x2f, 0x11, 0x26, 0x02, 0x01, 0x5a, 0x23, 0x37, 0x00, 0x0f, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa6, - 0x00, 0x00, 0x04, 0x81, 0x07, 0x2b, 0x02, 0x26, 0x01, 0xc1, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0x54, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x02, 0x01, 0x1f, 0x05, 0x26, 0x02, 0x01, 0x0f, 0x16, 0x2a, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x9a, 0x00, 0x00, 0x03, 0xfe, 0x05, 0xd9, 0x02, 0x26, 0x01, 0xe1, - 0x00, 0x00, 0x01, 0x06, 0x00, 0x6a, 0x06, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x02, 0x01, 0x22, 0x11, 0x26, 0x02, 0x01, 0x08, 0x19, 0x2d, 0x17, 0x0a, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0x00, 0x01, - 0x00, 0xc7, 0xfe, 0x7f, 0x03, 0xbe, 0x05, 0xb6, 0x00, 0x09, 0x00, 0x64, - 0x40, 0x0b, 0x14, 0x00, 0x01, 0xe4, 0x00, 0x01, 0xd0, 0x00, 0x01, 0x02, - 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x35, 0x08, 0x13, 0x48, 0x00, 0x00, 0x0b, - 0x2f, 0x0b, 0x4f, 0x0b, 0x6f, 0x0b, 0x8f, 0x0b, 0x04, 0x0b, 0x40, 0x11, - 0x18, 0x48, 0x07, 0x5a, 0xbf, 0x04, 0xcf, 0x04, 0x02, 0x84, 0x04, 0x01, - 0x0f, 0x04, 0x1f, 0x04, 0x02, 0x07, 0x04, 0x04, 0x03, 0x5a, 0x08, 0x64, - 0x0a, 0x02, 0x5f, 0x09, 0x03, 0x03, 0x5f, 0x07, 0x12, 0x06, 0xfb, 0x00, - 0x3f, 0x3f, 0xe1, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x2f, 0x5e, - 0x5d, 0x5d, 0x5d, 0xe1, 0x2b, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5f, 0x5d, - 0x5d, 0x71, 0x31, 0x30, 0x01, 0x15, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, - 0x23, 0x11, 0x03, 0xbe, 0xfd, 0xc3, 0xb0, 0xb0, 0xba, 0x05, 0xb6, 0xa6, - 0xfb, 0x96, 0xfd, 0xd9, 0x01, 0x81, 0x05, 0xb6, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x83, 0x03, 0x0a, 0x04, 0x4a, 0x00, 0x09, 0x00, 0x4e, 0x40, 0x32, - 0x20, 0x02, 0x30, 0x02, 0x02, 0x02, 0x02, 0x0b, 0xc0, 0x0b, 0x01, 0xa1, - 0x0b, 0x01, 0x70, 0x0b, 0x01, 0x09, 0x47, 0xbf, 0x06, 0xcf, 0x06, 0x02, - 0x84, 0x06, 0x01, 0x0f, 0x06, 0x1f, 0x06, 0x02, 0x07, 0x06, 0x06, 0x05, - 0x47, 0x00, 0x54, 0x0a, 0x05, 0x50, 0x09, 0x15, 0x08, 0xfb, 0x04, 0x50, - 0x01, 0x0f, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, - 0x32, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x5d, 0x5d, 0x5d, 0x11, 0x33, - 0x2f, 0x5d, 0x31, 0x30, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, - 0x23, 0x11, 0xae, 0x02, 0x5c, 0xfe, 0x5a, 0xa0, 0xb6, 0x04, 0x4a, 0x9a, - 0xfc, 0xea, 0xfd, 0xe9, 0x01, 0x7d, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, - 0x05, 0xcf, 0x07, 0x2b, 0x02, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x6a, 0x00, 0xfc, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x04, 0x03, - 0x27, 0x05, 0x26, 0x04, 0x03, 0x00, 0x1e, 0x32, 0x06, 0x1c, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x05, 0x50, 0x05, 0xd9, 0x02, 0x26, 0x01, 0xe5, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x6a, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, - 0x04, 0x03, 0x27, 0x11, 0x26, 0x04, 0x03, 0x00, 0x1e, 0x32, 0x0a, 0x0d, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x2f, 0xfe, 0x6d, 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x26, 0x02, 0x9b, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x80, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x0a, - 0xb3, 0x01, 0x1f, 0x1f, 0x07, 0x01, 0x10, 0x3c, 0x11, 0x35, 0xff, 0xff, - 0x00, 0x12, 0xfe, 0x6d, 0x03, 0x0a, 0x04, 0x4a, 0x02, 0x26, 0x02, 0x9c, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x81, 0x00, 0x89, 0x00, 0x00, 0x00, 0x0a, - 0xb3, 0x01, 0x1f, 0x1f, 0x0d, 0x01, 0x10, 0x3c, 0x11, 0x35, 0xff, 0xff, - 0x00, 0x00, 0xfe, 0x6d, 0x04, 0x9a, 0x05, 0xb6, 0x00, 0x26, 0x00, 0x3b, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x80, 0x03, 0x23, 0x00, 0x00, 0x00, 0x17, - 0xb1, 0x01, 0x1d, 0xb8, 0xff, 0xc0, 0xb2, 0x13, 0x15, 0x48, 0xb8, 0xff, - 0x9e, 0xb4, 0x1d, 0x1d, 0x00, 0x00, 0x25, 0x01, 0x2b, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x23, 0xfe, 0x6d, 0x04, 0x11, 0x04, 0x4a, 0x00, 0x26, - 0x00, 0x5b, 0x00, 0x00, 0x01, 0x07, 0x03, 0x81, 0x02, 0x9a, 0x00, 0x00, - 0x00, 0x12, 0xb3, 0x01, 0x50, 0x1d, 0x01, 0xb8, 0xff, 0x9a, 0xb4, 0x1d, - 0x1d, 0x07, 0x07, 0x25, 0x01, 0x2b, 0x5d, 0x35, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x60, 0x05, 0xb6, 0x00, 0x11, 0x00, 0xb2, 0x40, 0x27, - 0x46, 0x0f, 0x56, 0x0f, 0x02, 0x49, 0x09, 0x59, 0x09, 0x02, 0x36, 0x00, - 0x01, 0x39, 0x06, 0x01, 0x06, 0x09, 0x0f, 0x00, 0x04, 0x0c, 0x03, 0x03, - 0x01, 0x30, 0x11, 0x01, 0x3f, 0x07, 0x01, 0x07, 0x11, 0x07, 0x11, 0x05, - 0x01, 0x0b, 0x0a, 0xb8, 0xff, 0xf0, 0xb3, 0x0a, 0x0a, 0x04, 0x05, 0xb8, - 0xff, 0xf0, 0x40, 0x14, 0x05, 0x0d, 0x0e, 0x10, 0x0e, 0x0e, 0x02, 0x01, - 0x10, 0x00, 0x01, 0x01, 0x70, 0x01, 0x80, 0x01, 0xc0, 0x01, 0x03, 0x01, - 0xb8, 0xff, 0xc0, 0x40, 0x27, 0x07, 0x0a, 0x48, 0x01, 0x01, 0x13, 0x0f, - 0x13, 0x1f, 0x13, 0x2f, 0x13, 0x7f, 0x13, 0x04, 0x08, 0x00, 0x06, 0x5f, - 0x0f, 0x09, 0x28, 0x03, 0x01, 0x27, 0x0c, 0x01, 0x03, 0x0c, 0x0a, 0x09, - 0x09, 0x01, 0x0d, 0x0a, 0x03, 0x05, 0x01, 0x12, 0x00, 0x3f, 0x33, 0x3f, - 0x33, 0x12, 0x39, 0x2f, 0x11, 0x39, 0x39, 0x5d, 0x5d, 0x11, 0x33, 0xe1, - 0x32, 0x01, 0x5e, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, 0x71, 0x38, 0x33, - 0x33, 0x2f, 0x38, 0x33, 0x2f, 0x38, 0x33, 0x33, 0x2f, 0x38, 0x33, 0x11, - 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x5d, 0x11, 0x39, 0x3d, 0x2f, 0x33, - 0x17, 0x33, 0x5d, 0x5d, 0x5d, 0x5d, 0x31, 0x30, 0x01, 0x01, 0x23, 0x01, - 0x01, 0x23, 0x01, 0x21, 0x35, 0x21, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, - 0x21, 0x15, 0x02, 0xc5, 0x01, 0x9b, 0xd3, 0xfe, 0x9e, 0xfe, 0x91, 0xbc, - 0x01, 0x9a, 0xfe, 0xdf, 0x01, 0x14, 0xfe, 0x92, 0xc6, 0x01, 0x4c, 0x01, - 0x4e, 0xbe, 0xfe, 0x8e, 0x01, 0x1c, 0x02, 0xb4, 0xfd, 0x4c, 0x02, 0x7b, - 0xfd, 0x85, 0x02, 0xb4, 0xa4, 0x02, 0x5e, 0xfd, 0xd1, 0x02, 0x2f, 0xfd, - 0xa2, 0xa4, 0x00, 0x01, 0x00, 0x23, 0x00, 0x00, 0x03, 0xdb, 0x04, 0x4a, - 0x00, 0x11, 0x01, 0x17, 0x40, 0xbf, 0x80, 0x08, 0x90, 0x08, 0x02, 0x08, - 0x00, 0x08, 0x00, 0x0b, 0x0f, 0x06, 0x05, 0x01, 0xf7, 0x05, 0x01, 0xe5, - 0x05, 0x01, 0x36, 0x05, 0x01, 0x05, 0x06, 0x07, 0x0a, 0x0a, 0x04, 0x0d, - 0x01, 0x10, 0x10, 0x0d, 0x09, 0x03, 0x01, 0xf8, 0x03, 0x01, 0xea, 0x03, - 0x01, 0x39, 0x03, 0x01, 0x03, 0x02, 0x6b, 0x06, 0x7b, 0x06, 0x02, 0x57, - 0x06, 0x01, 0x3a, 0x06, 0x4a, 0x06, 0x02, 0x64, 0x02, 0x74, 0x02, 0x02, - 0x58, 0x02, 0x01, 0x35, 0x02, 0x45, 0x02, 0x02, 0x06, 0x02, 0x0d, 0x02, - 0x0d, 0x06, 0x03, 0x0f, 0x06, 0x0c, 0x01, 0xf7, 0x0c, 0x01, 0xe5, 0x0c, - 0x01, 0x36, 0x0c, 0x01, 0x0c, 0x0b, 0x40, 0x16, 0x19, 0x48, 0x0b, 0x40, - 0x0e, 0x11, 0x48, 0x6b, 0x0b, 0x7b, 0x0b, 0x02, 0x57, 0x0b, 0x01, 0x3a, - 0x0b, 0x4a, 0x0b, 0x02, 0x0b, 0x0b, 0x13, 0x10, 0x13, 0x30, 0x13, 0x02, - 0x90, 0x13, 0xb0, 0x13, 0x02, 0x0f, 0x13, 0x01, 0x09, 0x0e, 0x01, 0xf8, - 0x0e, 0x01, 0xea, 0x0e, 0x01, 0x39, 0x0e, 0x01, 0x0e, 0x6b, 0x0f, 0x7b, - 0x0f, 0x02, 0x58, 0x0f, 0x01, 0x35, 0x0f, 0x45, 0x0f, 0x02, 0x0f, 0x0d, - 0x0a, 0x10, 0x4f, 0x04, 0x07, 0xef, 0x01, 0x01, 0x0b, 0x01, 0x1b, 0x01, - 0x2b, 0x01, 0x5b, 0x01, 0x6b, 0x01, 0x05, 0x06, 0x01, 0x01, 0x02, 0x0f, - 0x0b, 0x15, 0x05, 0x02, 0x0f, 0x00, 0x3f, 0x33, 0x3f, 0x33, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0x5d, 0x33, 0x33, 0xe1, 0x32, 0x32, 0x01, 0x2f, 0x5d, - 0x5d, 0x5d, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x5d, 0x5d, 0x71, 0x10, 0xce, - 0x2f, 0x5d, 0x5d, 0x5d, 0x2b, 0x2b, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x12, - 0x17, 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, - 0x5d, 0x10, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x33, 0x11, 0x33, 0x11, - 0x33, 0x33, 0x11, 0x33, 0x10, 0xc1, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x12, - 0x39, 0x39, 0x2f, 0x2f, 0x5d, 0x31, 0x30, 0x13, 0x21, 0x01, 0x33, 0x13, - 0x13, 0x33, 0x01, 0x21, 0x15, 0x21, 0x01, 0x23, 0x01, 0x01, 0x23, 0x01, - 0x21, 0x68, 0x01, 0x00, 0xfe, 0xcf, 0xcf, 0xfa, 0xfa, 0xcf, 0xfe, 0xcd, - 0x01, 0x04, 0xfe, 0xf7, 0x01, 0x4a, 0xcf, 0xfe, 0xf4, 0xfe, 0xf2, 0xcf, - 0x01, 0x4a, 0xfe, 0xfb, 0x02, 0x7b, 0x01, 0xcf, 0xfe, 0x66, 0x01, 0x9a, - 0xfe, 0x31, 0x89, 0xfe, 0x0e, 0x01, 0xb4, 0xfe, 0x4c, 0x01, 0xf2, 0x00, - 0x00, 0x02, 0x00, 0x89, 0x00, 0x00, 0x03, 0xf6, 0x05, 0xb6, 0x00, 0x0e, - 0x00, 0x19, 0x00, 0x40, 0x40, 0x29, 0x06, 0x19, 0x5a, 0x09, 0x65, 0x1b, - 0x9f, 0x1b, 0x01, 0x10, 0x1b, 0x01, 0x15, 0x5b, 0x00, 0x66, 0x1a, 0x0f, - 0x5f, 0x3f, 0x06, 0x4f, 0x06, 0x6f, 0x06, 0x9f, 0x06, 0xbf, 0x06, 0xdf, - 0x06, 0x06, 0x06, 0x06, 0x07, 0x19, 0x5f, 0x09, 0x12, 0x07, 0x03, 0x00, - 0x3f, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x01, 0x10, 0xf6, 0xe1, - 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x32, 0x31, 0x30, 0x13, 0x34, 0x3e, 0x02, - 0x33, 0x33, 0x11, 0x33, 0x11, 0x21, 0x22, 0x2e, 0x02, 0x01, 0x23, 0x22, - 0x0e, 0x02, 0x15, 0x14, 0x16, 0x33, 0x33, 0x89, 0x37, 0x7f, 0xcf, 0x98, - 0x95, 0xbb, 0xfe, 0x95, 0x86, 0xc2, 0x7e, 0x3c, 0x02, 0xb2, 0x81, 0x5d, - 0x8a, 0x5b, 0x2e, 0xa3, 0xaf, 0x9f, 0x01, 0xac, 0x57, 0x98, 0x71, 0x42, - 0x02, 0x68, 0xfa, 0x4a, 0x3d, 0x70, 0x9e, 0x01, 0x5f, 0x1b, 0x3c, 0x61, - 0x46, 0x88, 0x84, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x02, - 0x06, 0x14, 0x02, 0x06, 0x00, 0x47, 0x00, 0x00, 0x00, 0x02, 0x00, 0x89, - 0xff, 0xec, 0x06, 0x3b, 0x05, 0xb6, 0x00, 0x23, 0x00, 0x32, 0x00, 0x63, - 0x40, 0x3f, 0x18, 0x09, 0x32, 0x5a, 0x1a, 0x1a, 0x11, 0x22, 0x5a, 0x01, - 0x65, 0x34, 0x0f, 0x34, 0x01, 0x6f, 0x34, 0x9f, 0x34, 0xef, 0x34, 0x03, - 0x40, 0x34, 0x50, 0x34, 0x02, 0x0f, 0x34, 0x01, 0x06, 0x2a, 0x5b, 0x11, - 0x66, 0x33, 0x24, 0x5f, 0x17, 0x23, 0x23, 0x3f, 0x17, 0x4f, 0x17, 0x6f, - 0x17, 0xbf, 0x17, 0xdf, 0x17, 0x05, 0x17, 0x17, 0x18, 0x03, 0x1d, 0x2d, - 0x60, 0x09, 0x06, 0x0e, 0x13, 0x00, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x3f, - 0x39, 0x2f, 0x5d, 0x33, 0x2f, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5e, - 0x5d, 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0xe1, 0x39, - 0x32, 0x31, 0x30, 0x01, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, - 0x0e, 0x03, 0x23, 0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x33, 0x11, - 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x05, 0x23, - 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x06, - 0x3b, 0x2d, 0x5b, 0x8c, 0x5e, 0x72, 0x99, 0x2b, 0x18, 0x3f, 0x52, 0x67, - 0x3f, 0xd7, 0xe4, 0x41, 0x8a, 0xd7, 0x96, 0x7a, 0xbb, 0x67, 0x61, 0x2c, - 0x48, 0x33, 0x1c, 0xfd, 0xba, 0x81, 0x5d, 0x8b, 0x5b, 0x2d, 0x7e, 0x86, - 0x43, 0x5b, 0x38, 0x17, 0x03, 0x50, 0xfe, 0x18, 0x51, 0x8b, 0x66, 0x3a, - 0x61, 0x4d, 0x26, 0x3f, 0x2e, 0x19, 0xd2, 0xd6, 0x67, 0xa3, 0x72, 0x3c, - 0x02, 0x68, 0xfb, 0xb2, 0x70, 0x69, 0x1e, 0x39, 0x50, 0x32, 0x01, 0xe8, - 0xa6, 0x1e, 0x43, 0x6b, 0x4d, 0x80, 0x82, 0x25, 0x3e, 0x4d, 0x29, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x06, 0x5a, 0x06, 0x14, 0x00, 0x32, - 0x00, 0x43, 0x00, 0x5c, 0x40, 0x39, 0x10, 0x2c, 0x38, 0x47, 0x50, 0x2e, - 0x01, 0x2e, 0x2e, 0x1b, 0x03, 0x47, 0x06, 0x55, 0x45, 0x6f, 0x45, 0x7f, - 0x45, 0x9f, 0x45, 0xcf, 0x45, 0xef, 0x45, 0x05, 0x40, 0x45, 0x01, 0x0f, - 0x45, 0x2f, 0x45, 0x02, 0x06, 0x41, 0x48, 0x1b, 0x56, 0x44, 0x04, 0x04, - 0x33, 0x3e, 0x50, 0x25, 0x20, 0x10, 0x2c, 0x00, 0x00, 0x33, 0x50, 0x10, - 0x0b, 0x16, 0x16, 0x00, 0x3f, 0x33, 0x33, 0xe1, 0x32, 0x3f, 0x3f, 0x33, - 0xe1, 0x12, 0x39, 0x2f, 0x01, 0x10, 0xf6, 0xe1, 0x5e, 0x5d, 0x5d, 0x5d, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x32, 0x39, 0x31, 0x30, - 0x25, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x27, 0x23, 0x0e, 0x03, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, - 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x33, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x11, 0x33, 0x11, 0x1e, 0x03, 0x21, 0x32, 0x3e, 0x02, 0x37, 0x35, - 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x04, 0xd3, 0x6f, - 0x62, 0xb6, 0x2f, 0x5c, 0x8b, 0x5b, 0x41, 0x67, 0x51, 0x3d, 0x17, 0x06, - 0x1b, 0x44, 0x5b, 0x79, 0x51, 0x5d, 0x9a, 0x6e, 0x3c, 0x3c, 0x6e, 0x9a, - 0x5d, 0x3b, 0x60, 0x4d, 0x3b, 0x17, 0x0c, 0x03, 0x03, 0x02, 0x04, 0xb6, - 0x01, 0x0f, 0x2c, 0x51, 0xfd, 0xa6, 0x4c, 0x69, 0x41, 0x1f, 0x02, 0x1b, - 0x41, 0x6c, 0x51, 0x87, 0x7f, 0x7f, 0x83, 0x82, 0x82, 0x01, 0x35, 0xfe, - 0xc1, 0x69, 0x98, 0x62, 0x2e, 0x1e, 0x36, 0x4a, 0x2c, 0x29, 0x4a, 0x37, - 0x20, 0x48, 0x8f, 0xd4, 0x8c, 0x8d, 0xd5, 0x90, 0x49, 0x1a, 0x2c, 0x3a, - 0x20, 0x22, 0x1f, 0x1a, 0x36, 0x11, 0x01, 0xb4, 0xfb, 0x92, 0x3e, 0x6a, - 0x4e, 0x2d, 0x2e, 0x5e, 0x8c, 0x5f, 0x29, 0x65, 0x9d, 0x6b, 0x37, 0xda, - 0xcc, 0xd1, 0xcd, 0x00, 0x00, 0x01, 0x00, 0x4e, 0xff, 0xec, 0x06, 0x44, - 0x05, 0xcb, 0x00, 0x3f, 0x00, 0x85, 0x40, 0x56, 0x0d, 0x5b, 0x20, 0x00, - 0x5b, 0x2b, 0x25, 0x20, 0x07, 0x20, 0x2b, 0x2b, 0x20, 0x07, 0x03, 0x16, - 0x33, 0x5a, 0x36, 0x65, 0x41, 0x7f, 0x41, 0x8f, 0x41, 0x9f, 0x41, 0xef, - 0x41, 0xff, 0x41, 0x05, 0x00, 0x41, 0x20, 0x41, 0x30, 0x41, 0x03, 0x70, - 0x16, 0x80, 0x16, 0x02, 0x3f, 0x16, 0x4f, 0x16, 0x02, 0x16, 0x16, 0x40, - 0x25, 0x06, 0x60, 0x07, 0x00, 0x34, 0x01, 0x34, 0x34, 0xdf, 0x07, 0x01, - 0xaa, 0x07, 0x01, 0x78, 0x07, 0x01, 0x0f, 0x07, 0x01, 0x08, 0x07, 0x07, - 0x1b, 0x30, 0x5f, 0x3b, 0x13, 0x15, 0x12, 0x60, 0x1b, 0x04, 0x00, 0x3f, - 0xe1, 0x33, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, - 0x33, 0x2f, 0x5d, 0x10, 0xe1, 0x39, 0x11, 0x01, 0x33, 0x2f, 0x5d, 0x5d, - 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x17, 0x39, 0x2f, 0x2f, 0x2f, 0x12, - 0x39, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x34, 0x2e, 0x02, 0x23, - 0x23, 0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, - 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, - 0x02, 0x07, 0x15, 0x1e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, - 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x03, - 0x29, 0x35, 0x65, 0x92, 0x5d, 0xbf, 0xb0, 0x5c, 0x8e, 0x61, 0x32, 0x25, - 0x44, 0x5f, 0x3a, 0x6e, 0xa9, 0x4b, 0x5c, 0x26, 0x62, 0x74, 0x83, 0x47, - 0x6d, 0xa6, 0x71, 0x39, 0x33, 0x5b, 0x7d, 0x4b, 0x57, 0x8a, 0x5e, 0x32, - 0x18, 0x32, 0x4f, 0x37, 0x6f, 0x62, 0xb7, 0x38, 0x66, 0x91, 0x59, 0x57, - 0x94, 0x6c, 0x3c, 0x01, 0x87, 0x4d, 0x6d, 0x46, 0x21, 0x97, 0x27, 0x48, - 0x64, 0x3e, 0x36, 0x53, 0x3a, 0x1e, 0x43, 0x36, 0x7d, 0x1f, 0x36, 0x29, - 0x18, 0x36, 0x61, 0x85, 0x4f, 0x4a, 0x77, 0x58, 0x39, 0x0c, 0x06, 0x0b, - 0x39, 0x59, 0x77, 0x48, 0x4a, 0x68, 0x41, 0x1e, 0x77, 0x81, 0x01, 0xc9, - 0xfe, 0x2d, 0x69, 0x98, 0x62, 0x2e, 0x2f, 0x64, 0x9c, 0x00, 0x00, 0x01, - 0x00, 0x50, 0xff, 0xec, 0x05, 0xa2, 0x04, 0x5e, 0x00, 0x3b, 0x00, 0x81, - 0x40, 0x23, 0x15, 0x47, 0x00, 0x20, 0x46, 0x31, 0x36, 0x31, 0x19, 0x00, - 0x31, 0x19, 0x19, 0x31, 0x00, 0x03, 0x27, 0x08, 0x47, 0x0b, 0x55, 0x3d, - 0x0f, 0x3d, 0x01, 0xd0, 0x3d, 0x01, 0xbf, 0x3d, 0x01, 0x30, 0x3d, 0x01, - 0x27, 0xb8, 0xff, 0xc0, 0x40, 0x29, 0x12, 0x15, 0x48, 0x5f, 0x27, 0x01, - 0x27, 0x27, 0x3c, 0x36, 0x19, 0x50, 0x1a, 0x09, 0x09, 0xdf, 0x1a, 0x01, - 0x99, 0x1a, 0xa9, 0x1a, 0x02, 0x0b, 0x1a, 0x1b, 0x1a, 0x02, 0x07, 0x1a, - 0x1a, 0x05, 0x26, 0x23, 0x50, 0x2c, 0x10, 0x05, 0x50, 0x10, 0x16, 0x00, - 0x3f, 0xe1, 0x3f, 0xe1, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x33, 0x2f, 0x10, 0xe1, 0x39, 0x11, 0x01, 0x33, 0x2f, 0x5d, 0x2b, 0x5d, - 0x5d, 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x11, 0x17, 0x39, 0x2f, 0x2f, 0x2f, - 0x11, 0x12, 0x39, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x1e, - 0x02, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, - 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, 0x33, - 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, 0x03, - 0x52, 0x15, 0x31, 0x50, 0x3b, 0x69, 0x60, 0xb6, 0x2f, 0x5f, 0x8f, 0x60, - 0x5c, 0x90, 0x64, 0x35, 0x85, 0x8a, 0x81, 0x61, 0x3d, 0x64, 0x48, 0x27, - 0x73, 0x6c, 0x47, 0x81, 0x4b, 0x3f, 0x28, 0x4d, 0x52, 0x5a, 0x35, 0x56, - 0x90, 0x69, 0x3a, 0x1c, 0x33, 0x46, 0x2b, 0x32, 0x53, 0x3c, 0x22, 0x01, - 0x4c, 0x27, 0x49, 0x38, 0x21, 0x82, 0x82, 0x01, 0x35, 0xfe, 0xc1, 0x69, - 0x98, 0x62, 0x2e, 0x2b, 0x54, 0x7b, 0x4f, 0x5e, 0x5b, 0x99, 0x12, 0x27, - 0x40, 0x2d, 0x4d, 0x4d, 0x26, 0x22, 0x93, 0x13, 0x1d, 0x13, 0x09, 0x26, - 0x4a, 0x6d, 0x46, 0x32, 0x4d, 0x3b, 0x29, 0x0e, 0x0b, 0x09, 0x29, 0x3e, - 0x52, 0x00, 0x00, 0x01, 0x00, 0x4e, 0xfe, 0x7f, 0x04, 0x9c, 0x05, 0xcb, - 0x00, 0x31, 0x00, 0x83, 0x40, 0x54, 0x0f, 0x5b, 0x27, 0x09, 0x22, 0x09, - 0x22, 0x09, 0x18, 0x01, 0x5a, 0x70, 0x2e, 0x80, 0x2e, 0x02, 0x2e, 0x2e, - 0x00, 0x5a, 0x2f, 0x2f, 0x33, 0x00, 0x33, 0x01, 0xc0, 0x33, 0xd0, 0x33, - 0x02, 0x9f, 0x33, 0x01, 0x00, 0x33, 0x20, 0x33, 0x30, 0x33, 0x03, 0x70, - 0x18, 0x80, 0x18, 0x02, 0x3f, 0x18, 0x4f, 0x18, 0x02, 0x18, 0x18, 0x32, - 0x30, 0xfb, 0x27, 0x08, 0x60, 0xdf, 0x09, 0x01, 0xaa, 0x09, 0x01, 0x78, - 0x09, 0x01, 0x0f, 0x09, 0x01, 0x08, 0x09, 0x09, 0x01, 0x17, 0x14, 0x60, - 0x1d, 0x04, 0x2e, 0x5f, 0x01, 0x12, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, 0x33, - 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0xe1, 0x39, 0x3f, 0x11, - 0x01, 0x33, 0x2f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x71, 0x11, 0x33, 0x2f, - 0xe1, 0x32, 0x2f, 0x5d, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x12, 0x39, - 0xe1, 0x31, 0x30, 0x21, 0x23, 0x11, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, - 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, - 0x27, 0x3e, 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, - 0x15, 0x1e, 0x03, 0x15, 0x15, 0x33, 0x11, 0x23, 0x03, 0xec, 0xbb, 0x38, - 0x67, 0x95, 0x5d, 0xbf, 0xb0, 0x5c, 0x8e, 0x61, 0x32, 0x25, 0x44, 0x5f, - 0x3a, 0x6e, 0xa9, 0x4b, 0x5c, 0x26, 0x62, 0x74, 0x83, 0x47, 0x6d, 0xa6, - 0x71, 0x39, 0x33, 0x5b, 0x7d, 0x4b, 0x57, 0x8a, 0x5e, 0x32, 0xb0, 0xb0, - 0x01, 0xa0, 0x43, 0x64, 0x41, 0x20, 0x97, 0x27, 0x48, 0x64, 0x3e, 0x36, - 0x53, 0x3a, 0x1e, 0x43, 0x36, 0x7d, 0x1f, 0x36, 0x29, 0x18, 0x36, 0x61, - 0x85, 0x4f, 0x4a, 0x77, 0x58, 0x39, 0x0c, 0x06, 0x0b, 0x39, 0x59, 0x77, - 0x48, 0xfa, 0xfd, 0xd9, 0x00, 0x01, 0x00, 0x50, 0xfe, 0x83, 0x03, 0xf2, - 0x04, 0x5e, 0x00, 0x2d, 0x00, 0x8d, 0x40, 0x1a, 0x0c, 0x46, 0x1d, 0x22, - 0x1d, 0x06, 0x1d, 0x06, 0x1d, 0x13, 0x00, 0x47, 0x29, 0x29, 0x2d, 0x47, - 0x20, 0x2a, 0x30, 0x2a, 0x40, 0x2a, 0x60, 0x2a, 0x04, 0x2a, 0xb8, 0xff, - 0xc0, 0x40, 0x0e, 0x0f, 0x13, 0x48, 0x2a, 0x2a, 0x2f, 0xc0, 0x2f, 0xd0, - 0x2f, 0xe0, 0x2f, 0x03, 0x13, 0xb8, 0xff, 0xc0, 0x40, 0x2d, 0x12, 0x15, - 0x48, 0x5f, 0x13, 0x01, 0x13, 0x13, 0x2e, 0x2b, 0xfb, 0x22, 0x05, 0x50, - 0xdf, 0x06, 0x01, 0x99, 0x06, 0xa9, 0x06, 0x02, 0x4f, 0x06, 0x5f, 0x06, - 0x02, 0x0b, 0x06, 0x1b, 0x06, 0x02, 0x07, 0x06, 0x06, 0x00, 0x12, 0x0f, - 0x50, 0x18, 0x10, 0x29, 0x50, 0x00, 0x15, 0x00, 0x3f, 0xe1, 0x3f, 0xe1, - 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0xe9, 0x39, 0x3f, - 0x11, 0x01, 0x33, 0x2f, 0x5d, 0x2b, 0x5d, 0x11, 0x33, 0x2f, 0x2b, 0x5d, - 0xe1, 0x32, 0x2f, 0xe1, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x12, 0x39, 0x10, - 0xe1, 0x31, 0x30, 0x21, 0x11, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3e, 0x03, - 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x15, 0x1e, 0x03, - 0x15, 0x15, 0x33, 0x11, 0x23, 0x11, 0x02, 0x9c, 0x81, 0x8a, 0x81, 0x61, - 0x3d, 0x64, 0x48, 0x27, 0x73, 0x6c, 0x47, 0x81, 0x4b, 0x3f, 0x28, 0x4d, - 0x52, 0x5a, 0x35, 0x56, 0x90, 0x69, 0x3a, 0x1c, 0x33, 0x46, 0x2b, 0x2c, - 0x52, 0x3f, 0x26, 0xa0, 0xb7, 0x01, 0x2b, 0x5e, 0x65, 0x99, 0x12, 0x27, - 0x40, 0x2d, 0x4d, 0x4d, 0x26, 0x22, 0x93, 0x13, 0x1d, 0x13, 0x09, 0x26, - 0x4a, 0x6d, 0x46, 0x32, 0x4d, 0x3b, 0x29, 0x0e, 0x0b, 0x0e, 0x2c, 0x42, - 0x5b, 0x3d, 0x91, 0xfd, 0xe9, 0x01, 0x7d, 0x00, 0x00, 0x01, 0x00, 0x00, - 0xff, 0xe9, 0x06, 0xec, 0x05, 0xb6, 0x00, 0x31, 0x00, 0x92, 0x40, 0x65, - 0xd7, 0x06, 0xe7, 0x06, 0x02, 0x06, 0x07, 0x01, 0x01, 0xd7, 0x01, 0xf7, - 0x01, 0x02, 0x01, 0x5a, 0x1c, 0x17, 0x10, 0x10, 0x18, 0x48, 0x8b, 0x17, - 0x01, 0x17, 0x10, 0x07, 0x0e, 0x48, 0x17, 0x1c, 0x31, 0x5a, 0x1e, 0xb0, - 0x1e, 0x01, 0xe0, 0x1c, 0x01, 0xb4, 0x1c, 0xc4, 0x1c, 0xd4, 0x1c, 0x03, - 0x00, 0x1c, 0x50, 0x1c, 0x90, 0x1c, 0xa0, 0x1c, 0x04, 0x07, 0x1c, 0x1e, - 0x1c, 0x1e, 0x0e, 0x24, 0x5a, 0x27, 0x65, 0x33, 0x4f, 0x33, 0x6f, 0x33, - 0x7f, 0x33, 0x9f, 0x33, 0xaf, 0x33, 0xdf, 0x33, 0x06, 0x20, 0x33, 0x01, - 0x0f, 0x33, 0x01, 0x0e, 0x25, 0x25, 0x12, 0x01, 0x5f, 0x1c, 0x03, 0x21, - 0x12, 0x60, 0x2c, 0x0b, 0x13, 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x3f, 0xe1, - 0x12, 0x39, 0x2f, 0x01, 0x2f, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, - 0x39, 0x39, 0x2f, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, 0x11, - 0x33, 0x2b, 0x5d, 0x2b, 0x10, 0xe1, 0x5d, 0x71, 0x32, 0x5d, 0x31, 0x30, - 0x01, 0x21, 0x0e, 0x03, 0x07, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, - 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x36, 0x36, 0x12, 0x12, 0x37, - 0x21, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x03, 0xd9, 0xfe, 0x85, 0x0f, - 0x20, 0x21, 0x21, 0x10, 0x14, 0x35, 0x4f, 0x6e, 0x4e, 0x23, 0x4a, 0x1c, - 0x17, 0x3a, 0x20, 0x30, 0x3e, 0x2a, 0x1a, 0x0c, 0x0c, 0x20, 0x27, 0x2b, - 0x16, 0x02, 0xd0, 0x63, 0x6e, 0x6f, 0x62, 0xb7, 0x38, 0x66, 0x91, 0x59, - 0x57, 0x92, 0x68, 0x3a, 0x05, 0x12, 0x71, 0xf5, 0xeb, 0xd4, 0x51, 0x67, - 0xa2, 0x6f, 0x3b, 0x0e, 0x0b, 0x9a, 0x0d, 0x10, 0x3f, 0x62, 0x75, 0x36, - 0x39, 0xc8, 0x01, 0x06, 0x01, 0x3a, 0xaa, 0xfb, 0xd1, 0x81, 0x77, 0x77, - 0x81, 0x01, 0xc9, 0xfe, 0x2d, 0x69, 0x98, 0x62, 0x2e, 0x2c, 0x60, 0x99, - 0x6c, 0x00, 0x00, 0x01, 0x00, 0x10, 0xff, 0xec, 0x06, 0x00, 0x04, 0x4a, - 0x00, 0x28, 0x00, 0x5c, 0x40, 0x39, 0x01, 0x46, 0x11, 0x28, 0x47, 0x13, - 0xa0, 0x13, 0x01, 0xdb, 0x11, 0x01, 0xc4, 0x11, 0x01, 0x90, 0x11, 0xa0, - 0x11, 0x02, 0x24, 0x11, 0x01, 0x10, 0x11, 0x01, 0x11, 0x13, 0x11, 0x13, - 0x09, 0x1b, 0x47, 0x1e, 0x55, 0x2a, 0x7f, 0x2a, 0xcf, 0x2a, 0xef, 0x2a, - 0x03, 0x09, 0x1c, 0x1c, 0x0c, 0x01, 0x50, 0x11, 0x0f, 0x18, 0x0c, 0x4f, - 0x23, 0x06, 0x16, 0x00, 0x3f, 0x33, 0xe1, 0x32, 0x3f, 0xe1, 0x12, 0x39, - 0x2f, 0x01, 0x2f, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x39, 0x2f, 0x2f, - 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xe1, 0x10, 0xe1, 0x31, 0x30, - 0x01, 0x21, 0x02, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, - 0x33, 0x32, 0x36, 0x36, 0x12, 0x37, 0x21, 0x11, 0x14, 0x1e, 0x02, 0x33, - 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, - 0x02, 0x35, 0x02, 0xfa, 0xfe, 0xfe, 0x14, 0x40, 0x5f, 0x82, 0x56, 0x1c, - 0x31, 0x10, 0x16, 0x1c, 0x37, 0x59, 0x45, 0x33, 0x12, 0x02, 0x54, 0x15, - 0x31, 0x50, 0x3b, 0x69, 0x60, 0xb6, 0x2f, 0x5f, 0x8f, 0x60, 0x5c, 0x91, - 0x66, 0x36, 0x03, 0xb0, 0xfe, 0xfd, 0xfe, 0x94, 0xe6, 0x69, 0x06, 0x06, - 0x83, 0x06, 0x75, 0xf1, 0x01, 0x6f, 0xfa, 0xfd, 0x3d, 0x41, 0x62, 0x41, - 0x20, 0x82, 0x82, 0x01, 0x35, 0xfe, 0xc1, 0x69, 0x98, 0x62, 0x2e, 0x2e, - 0x62, 0x96, 0x69, 0x00, 0x00, 0x01, 0x00, 0xc7, 0xff, 0xec, 0x07, 0x2d, - 0x05, 0xb6, 0x00, 0x1d, 0x00, 0x5c, 0x40, 0x37, 0x1b, 0x13, 0x5a, 0xa0, - 0x00, 0x01, 0x00, 0x00, 0x17, 0x06, 0x5a, 0x09, 0x65, 0x1f, 0xc0, 0x1f, - 0x01, 0xaf, 0x1f, 0xbf, 0x1f, 0x02, 0x20, 0x1f, 0x01, 0x0f, 0x1f, 0x01, - 0x1a, 0x16, 0x5a, 0x17, 0x64, 0x1e, 0x15, 0x5f, 0x1a, 0x07, 0x07, 0x0f, - 0x1a, 0x01, 0x08, 0x1a, 0x1a, 0x17, 0x1c, 0x18, 0x03, 0x17, 0x12, 0x03, - 0x5f, 0x0e, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x2f, - 0x5e, 0x5d, 0x33, 0x2f, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, - 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0x5d, 0xe1, 0x32, - 0x31, 0x30, 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, - 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x04, 0xd5, 0x62, 0x6f, 0x6e, 0x63, - 0xb6, 0x38, 0x66, 0x90, 0x59, 0x58, 0x91, 0x68, 0x3a, 0xfd, 0x66, 0xba, - 0xba, 0x02, 0x9a, 0xba, 0x01, 0x87, 0x81, 0x77, 0x77, 0x81, 0x01, 0xc9, - 0xfe, 0x2d, 0x69, 0x98, 0x62, 0x2e, 0x2c, 0x60, 0x99, 0x6c, 0x01, 0x2d, - 0xfd, 0x56, 0x05, 0xb6, 0xfd, 0x98, 0x02, 0x68, 0x00, 0x01, 0x00, 0xae, - 0xff, 0xec, 0x06, 0x8b, 0x04, 0x4a, 0x00, 0x1f, 0x00, 0x6c, 0x40, 0x47, - 0x02, 0x1a, 0x47, 0x05, 0x05, 0x1e, 0x0d, 0x47, 0x10, 0x55, 0x21, 0x00, - 0x21, 0x20, 0x21, 0x02, 0x40, 0x21, 0x50, 0x21, 0x80, 0x21, 0x90, 0x21, - 0xb0, 0x21, 0xf0, 0x21, 0x06, 0x0f, 0x21, 0x01, 0x01, 0x1d, 0x47, 0x1e, - 0x54, 0x20, 0x1c, 0x50, 0x01, 0x0e, 0x0e, 0xeb, 0x01, 0x01, 0xa9, 0x01, - 0xb9, 0x01, 0x02, 0x0f, 0x01, 0x1f, 0x01, 0x2f, 0x01, 0x03, 0x06, 0x01, - 0x01, 0x1e, 0x03, 0x1f, 0x0f, 0x1e, 0x15, 0x0a, 0x50, 0x15, 0x16, 0x00, - 0x3f, 0xe1, 0x3f, 0x3f, 0x33, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, - 0x33, 0x2f, 0x10, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x32, 0x5d, 0x5d, 0x71, - 0x10, 0xf6, 0xe1, 0x11, 0x39, 0x2f, 0xe1, 0x32, 0x31, 0x30, 0x01, 0x11, - 0x21, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x35, 0x11, - 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, 0x21, - 0x11, 0x23, 0x11, 0x01, 0x64, 0x02, 0x21, 0xb6, 0x15, 0x31, 0x50, 0x3b, - 0x6a, 0x5f, 0xb6, 0x2f, 0x5f, 0x8f, 0x60, 0x5b, 0x92, 0x66, 0x36, 0xfd, - 0xdf, 0xb6, 0x04, 0x4a, 0xfe, 0x39, 0x01, 0xc7, 0xfd, 0x3d, 0x41, 0x62, - 0x41, 0x20, 0x82, 0x82, 0x01, 0x35, 0xfe, 0xc1, 0x69, 0x98, 0x62, 0x2e, - 0x2e, 0x62, 0x96, 0x69, 0x6e, 0xfe, 0x17, 0x04, 0x4a, 0x00, 0x00, 0x01, - 0x00, 0x7d, 0xff, 0xec, 0x05, 0x52, 0x05, 0xcb, 0x00, 0x2a, 0x00, 0x47, - 0x40, 0x29, 0x2a, 0x2a, 0x0c, 0x29, 0x5b, 0x01, 0x14, 0x40, 0x09, 0x0e, - 0x48, 0x14, 0x14, 0x01, 0x67, 0x2c, 0xbf, 0x2c, 0x01, 0x70, 0x2c, 0x01, - 0x1f, 0x5b, 0x0c, 0x66, 0x2b, 0x2a, 0x5f, 0x00, 0x00, 0x24, 0x1a, 0x5f, - 0x15, 0x11, 0x04, 0x24, 0x5f, 0x07, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0x33, - 0xe1, 0x12, 0x39, 0x2f, 0xe1, 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x10, - 0xe6, 0x32, 0x2f, 0x2b, 0x10, 0xe1, 0x12, 0x39, 0x2f, 0x31, 0x30, 0x01, - 0x21, 0x15, 0x14, 0x02, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, - 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2e, 0x03, 0x23, - 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, - 0x21, 0x03, 0x17, 0x02, 0x3b, 0x42, 0x8e, 0xde, 0x9c, 0x9d, 0xf2, 0xa6, - 0x56, 0x5f, 0xb6, 0x01, 0x0b, 0xab, 0x6f, 0xcc, 0x58, 0x48, 0x24, 0x53, - 0x58, 0x5d, 0x2e, 0x7a, 0xbc, 0x7f, 0x42, 0x36, 0x70, 0xab, 0x75, 0x6c, - 0x95, 0x5d, 0x29, 0xfe, 0x88, 0x02, 0xf6, 0x56, 0xa8, 0xfe, 0xfe, 0xaf, - 0x5b, 0x69, 0xc3, 0x01, 0x17, 0xae, 0xac, 0x01, 0x16, 0xc3, 0x69, 0x2c, - 0x2a, 0xa2, 0x11, 0x1e, 0x17, 0x0e, 0x51, 0x98, 0xda, 0x89, 0x82, 0xd8, - 0x9c, 0x56, 0x42, 0x77, 0xa6, 0x64, 0x00, 0x01, 0x00, 0x71, 0xff, 0xec, - 0x04, 0x7b, 0x04, 0x5e, 0x00, 0x28, 0x00, 0x81, 0x40, 0x5a, 0x28, 0x28, - 0x0c, 0x27, 0x47, 0x01, 0x14, 0x40, 0x0c, 0x11, 0x48, 0x14, 0x14, 0x01, - 0x57, 0x2a, 0x14, 0x2a, 0x24, 0x2a, 0x02, 0xe4, 0x2a, 0xf4, 0x2a, 0x02, - 0xd0, 0x2a, 0x01, 0x02, 0x40, 0x2a, 0x50, 0x2a, 0x80, 0x2a, 0xa0, 0x2a, - 0xc0, 0x2a, 0x05, 0x1d, 0x48, 0x0c, 0x56, 0x29, 0x28, 0x50, 0x00, 0x40, - 0x15, 0x19, 0x48, 0xcb, 0x00, 0xdb, 0x00, 0xeb, 0x00, 0x03, 0xa9, 0x00, - 0xb9, 0x00, 0x02, 0x8f, 0x00, 0x9f, 0x00, 0x02, 0x0b, 0x00, 0x1b, 0x00, - 0x2b, 0x00, 0x03, 0x06, 0x00, 0x00, 0x22, 0x18, 0x50, 0x15, 0x11, 0x10, - 0x22, 0x50, 0x07, 0x16, 0x00, 0x3f, 0xe1, 0x3f, 0x33, 0xe1, 0x12, 0x39, - 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x2b, 0xe1, 0x01, 0x10, 0xf6, 0xe1, - 0x5d, 0x5f, 0x5d, 0x5d, 0x71, 0x10, 0xe6, 0x32, 0x2f, 0x2b, 0x10, 0xe1, - 0x12, 0x39, 0x2f, 0x31, 0x30, 0x01, 0x21, 0x15, 0x14, 0x0e, 0x02, 0x23, - 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, - 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, - 0x3e, 0x02, 0x35, 0x21, 0x02, 0x7b, 0x02, 0x00, 0x39, 0x78, 0xba, 0x81, - 0x87, 0xcb, 0x88, 0x44, 0x4c, 0x95, 0xdb, 0x8f, 0x6f, 0xad, 0x4d, 0x3e, - 0x3c, 0x94, 0x5b, 0x61, 0x95, 0x65, 0x34, 0x29, 0x56, 0x87, 0x5e, 0x51, - 0x74, 0x4a, 0x23, 0xfe, 0xb8, 0x02, 0x4a, 0x44, 0x82, 0xc8, 0x89, 0x47, - 0x4f, 0x93, 0xd3, 0x84, 0x82, 0xd3, 0x94, 0x50, 0x25, 0x27, 0x8d, 0x1d, - 0x29, 0x3a, 0x6d, 0x9d, 0x62, 0x5d, 0x9b, 0x70, 0x3e, 0x2d, 0x50, 0x70, - 0x44, 0x00, 0x00, 0x01, 0x00, 0x14, 0xff, 0xec, 0x04, 0xc9, 0x05, 0xb6, - 0x00, 0x19, 0x00, 0x65, 0x40, 0x2f, 0x06, 0x5a, 0x09, 0x65, 0x1b, 0x4f, - 0x1b, 0x7f, 0x1b, 0x9f, 0x1b, 0xaf, 0x1b, 0x04, 0x00, 0x1b, 0x01, 0xaf, - 0x18, 0xef, 0x18, 0x02, 0x84, 0x18, 0x01, 0x18, 0x18, 0x00, 0x5a, 0x13, - 0x40, 0x15, 0x01, 0x0f, 0x15, 0x01, 0x08, 0x15, 0x15, 0x57, 0x13, 0x67, - 0x13, 0x77, 0x13, 0x03, 0x13, 0xb8, 0xff, 0xc0, 0x40, 0x10, 0x07, 0x0a, - 0x48, 0x13, 0x19, 0x15, 0x5f, 0x16, 0x07, 0x07, 0x16, 0x03, 0x03, 0x5f, - 0x0e, 0x13, 0x00, 0x3f, 0xe1, 0x3f, 0x39, 0x2f, 0x10, 0xe1, 0x32, 0x01, - 0x2f, 0x2b, 0x5d, 0x33, 0x2f, 0x5e, 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, - 0x5d, 0x5d, 0x5d, 0x5d, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x01, 0x14, 0x16, - 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0e, 0x02, 0x23, 0x22, - 0x2e, 0x02, 0x35, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x02, 0x71, 0x62, - 0x6f, 0x6e, 0x62, 0xb7, 0x38, 0x66, 0x90, 0x59, 0x58, 0x91, 0x69, 0x3a, - 0xfe, 0x5e, 0x03, 0xfe, 0xfe, 0x5f, 0x01, 0x87, 0x81, 0x77, 0x77, 0x81, - 0x01, 0xc9, 0xfe, 0x2d, 0x69, 0x98, 0x62, 0x2e, 0x2c, 0x60, 0x99, 0x6c, - 0x03, 0x95, 0xa4, 0xa4, 0x00, 0x01, 0x00, 0x29, 0xff, 0xec, 0x04, 0x6f, - 0x04, 0x4a, 0x00, 0x1b, 0x00, 0x6d, 0x40, 0x4a, 0x0d, 0x47, 0x10, 0x55, - 0x1d, 0x0f, 0x1d, 0x01, 0xcf, 0x1d, 0xef, 0x1d, 0xff, 0x1d, 0x03, 0x30, - 0x1d, 0x40, 0x1d, 0x60, 0x1d, 0x03, 0x0f, 0x1d, 0x1f, 0x1d, 0x02, 0x0f, - 0x03, 0x01, 0xcc, 0x03, 0x01, 0x0f, 0x03, 0xbf, 0x03, 0x02, 0x06, 0x03, - 0x03, 0x05, 0x47, 0x1a, 0x60, 0x00, 0x70, 0x00, 0xd0, 0x00, 0x03, 0x1f, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x10, 0x1a, 0x02, 0x1a, 0x0e, 0x0e, - 0x01, 0x0a, 0x50, 0x15, 0x16, 0x04, 0x00, 0x50, 0x01, 0x0f, 0x00, 0x3f, - 0xe1, 0x32, 0x3f, 0xe1, 0x11, 0x39, 0x2f, 0x01, 0x2f, 0x5d, 0x33, 0x2f, - 0x5d, 0x5d, 0x10, 0xe1, 0x32, 0x2f, 0x5e, 0x5d, 0x5d, 0x71, 0x5d, 0x5d, - 0x5d, 0x71, 0x10, 0xf6, 0xe1, 0x31, 0x30, 0x13, 0x35, 0x21, 0x15, 0x21, - 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, - 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x11, 0x29, 0x03, 0x35, 0xfe, - 0xc1, 0x15, 0x31, 0x50, 0x3b, 0x69, 0x5f, 0xb7, 0x2f, 0x5f, 0x8f, 0x60, - 0x5c, 0x92, 0x66, 0x36, 0x03, 0xb0, 0x9a, 0x9a, 0xfd, 0xd7, 0x41, 0x62, - 0x41, 0x20, 0x82, 0x82, 0x01, 0x35, 0xfe, 0xc1, 0x69, 0x98, 0x62, 0x2e, - 0x2e, 0x62, 0x96, 0x69, 0x02, 0x35, 0x00, 0x01, 0x00, 0x6f, 0xff, 0xec, - 0x04, 0x0c, 0x05, 0xcb, 0x00, 0x39, 0x00, 0x5d, 0xb4, 0x13, 0x5b, 0x34, - 0x1a, 0x00, 0xb8, 0xff, 0xc0, 0x40, 0x2e, 0x17, 0x1a, 0x48, 0x00, 0x1a, - 0x00, 0x1a, 0x2f, 0x0a, 0x0a, 0x27, 0x3b, 0x9f, 0x3b, 0x01, 0x20, 0x5b, - 0x2f, 0x66, 0x3a, 0x34, 0x1b, 0x60, 0xaa, 0x18, 0x01, 0x78, 0x18, 0x01, - 0x0f, 0x18, 0x01, 0x08, 0x18, 0x18, 0x05, 0x23, 0x60, 0x26, 0x2a, 0x13, - 0x0e, 0x60, 0x0b, 0x05, 0x04, 0x00, 0x3f, 0x33, 0xe1, 0x3f, 0x33, 0xe1, - 0x11, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x39, 0x01, 0x10, 0xf6, - 0xe1, 0x5d, 0x10, 0xce, 0x32, 0x2f, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x2b, - 0x12, 0x39, 0xe1, 0x31, 0x30, 0x13, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, - 0x02, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, - 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, - 0x3e, 0x02, 0x37, 0x35, 0x2e, 0x03, 0x9c, 0x3b, 0x73, 0xa9, 0x6d, 0x48, - 0x7b, 0x69, 0x5a, 0x26, 0x5c, 0x4b, 0xa2, 0x67, 0x39, 0x5f, 0x44, 0x26, - 0x2c, 0x57, 0x82, 0x57, 0xc3, 0xbf, 0x5d, 0x92, 0x65, 0x35, 0xaa, 0xa4, - 0x6c, 0xcc, 0x53, 0x53, 0xc0, 0x80, 0x80, 0xc3, 0x83, 0x42, 0x31, 0x5f, - 0x89, 0x57, 0x4a, 0x78, 0x54, 0x2d, 0x04, 0x60, 0x4f, 0x85, 0x61, 0x36, - 0x18, 0x29, 0x36, 0x1f, 0x7d, 0x36, 0x43, 0x1e, 0x3a, 0x53, 0x36, 0x3e, - 0x64, 0x48, 0x27, 0x97, 0x21, 0x43, 0x65, 0x43, 0x89, 0x8e, 0x31, 0x2b, - 0xaa, 0x26, 0x25, 0x3c, 0x6f, 0x9c, 0x60, 0x48, 0x7b, 0x5e, 0x3d, 0x0b, - 0x06, 0x0c, 0x39, 0x58, 0x77, 0x00, 0x00, 0x01, 0x00, 0x5c, 0xff, 0xec, - 0x03, 0x6a, 0x04, 0x5e, 0x00, 0x37, 0x00, 0x6d, 0xb4, 0x32, 0x46, 0x1e, - 0x01, 0x23, 0xb8, 0xff, 0xc0, 0x40, 0x3d, 0x17, 0x1a, 0x48, 0x23, 0x01, - 0x23, 0x01, 0x18, 0x2b, 0x0f, 0x39, 0xd0, 0x39, 0xe0, 0x39, 0xf0, 0x39, - 0x03, 0x8f, 0x39, 0x01, 0x40, 0x39, 0x01, 0x05, 0x47, 0x18, 0x56, 0x38, - 0x1d, 0x02, 0x50, 0xef, 0x37, 0x01, 0xa9, 0x37, 0xb9, 0x37, 0x02, 0x0f, - 0x37, 0x1f, 0x37, 0x2f, 0x37, 0x03, 0x06, 0x37, 0x37, 0x0a, 0x2f, 0x50, - 0x2c, 0x28, 0x10, 0x0a, 0x50, 0x0f, 0x13, 0x16, 0x00, 0x3f, 0x33, 0xe1, - 0x3f, 0x33, 0xe1, 0x12, 0x39, 0x2f, 0x5e, 0x5d, 0x5d, 0x5d, 0xe1, 0x39, - 0x01, 0x10, 0xf6, 0xe1, 0x5d, 0x5d, 0x5d, 0x10, 0xce, 0x32, 0x11, 0x39, - 0x39, 0x2f, 0x2f, 0x2b, 0x12, 0x39, 0xe1, 0x31, 0x30, 0x01, 0x15, 0x23, - 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x37, 0x15, - 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x35, - 0x2e, 0x03, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x02, 0x9e, 0x81, - 0x8a, 0x85, 0x29, 0x46, 0x60, 0x37, 0x33, 0x61, 0x57, 0x4d, 0x1e, 0x3c, - 0xaf, 0x73, 0x6e, 0xa2, 0x6b, 0x35, 0x28, 0x43, 0x59, 0x30, 0x2b, 0x49, - 0x35, 0x1e, 0x3a, 0x69, 0x90, 0x56, 0x5a, 0xa2, 0x50, 0x3f, 0x4b, 0x83, - 0x47, 0x66, 0x6d, 0x26, 0x44, 0x5f, 0x39, 0x02, 0x87, 0x99, 0x5b, 0x5e, - 0x33, 0x45, 0x2a, 0x12, 0x0e, 0x16, 0x1e, 0x10, 0xa2, 0x1d, 0x28, 0x30, - 0x56, 0x78, 0x47, 0x3d, 0x5b, 0x40, 0x29, 0x0d, 0x0b, 0x0e, 0x29, 0x3b, - 0x4d, 0x32, 0x46, 0x6d, 0x4a, 0x26, 0x25, 0x27, 0x93, 0x22, 0x26, 0x4d, - 0x4d, 0x2d, 0x40, 0x27, 0x12, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0x6d, - 0x05, 0x2f, 0x05, 0xb6, 0x02, 0x26, 0x01, 0xb5, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x80, 0x03, 0xb8, 0x00, 0x00, 0x00, 0x0d, 0xb4, 0x01, 0x01, 0x31, - 0x31, 0x00, 0x01, 0x10, 0x3c, 0x11, 0x35, 0x00, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x10, 0xfe, 0x6d, 0x04, 0x4c, 0x04, 0x4a, 0x02, 0x26, 0x01, 0xd5, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x81, 0x02, 0xd5, 0x00, 0x00, 0x00, 0x0d, - 0xb4, 0x01, 0x01, 0x26, 0x26, 0x00, 0x01, 0x10, 0x3c, 0x11, 0x35, 0x00, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0x98, 0x04, 0xdd, 0x05, 0xbc, - 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0xd3, - 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x18, 0x14, 0x27, 0x02, 0x00, - 0x15, 0x1b, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x5e, 0xfe, 0x98, 0x03, 0x9c, 0x04, 0x5e, 0x02, 0x26, - 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0x6f, 0x00, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x36, 0x17, 0x27, 0x02, 0x0d, 0x33, 0x39, - 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x07, 0xe1, 0x02, 0x26, 0x00, 0x24, - 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0xd1, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x02, 0x1b, 0x05, 0x26, 0x02, 0x21, 0x2a, 0x15, 0x04, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, - 0xff, 0xec, 0x03, 0x9c, 0x06, 0x8f, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x66, 0x04, 0x75, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x39, 0x11, 0x26, 0x02, 0x36, 0x48, 0x33, 0x0c, 0x22, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0xdd, 0x07, 0xd1, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x77, 0x04, 0xcb, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x03, 0x02, 0x15, - 0x05, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xff, 0xb4, 0x1d, 0x15, 0x04, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x04, 0x47, 0x06, 0x7f, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x77, 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x03, 0x02, 0x33, 0x11, 0x26, 0x03, 0x02, 0x33, 0x3b, 0x33, - 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x07, 0xd1, 0x02, 0x26, - 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x03, 0x78, 0x04, 0xcb, 0x01, 0x52, - 0x00, 0x19, 0xb6, 0x03, 0x02, 0x1d, 0x05, 0x26, 0x03, 0x02, 0xb8, 0xff, - 0xff, 0xb4, 0x25, 0x1d, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x12, 0xff, 0xec, 0x03, 0x9c, - 0x06, 0x7f, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, 0x03, 0x78, - 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x3b, 0x11, - 0x26, 0x03, 0x02, 0x33, 0x43, 0x3b, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x04, 0xdd, 0x08, 0x4a, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x79, 0x04, 0xcb, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x03, 0x02, 0x15, - 0x05, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xff, 0xb4, 0x1d, 0x15, 0x04, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x04, 0x06, 0x06, 0xf8, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x79, 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x03, 0x02, 0x33, 0x11, 0x26, 0x03, 0x02, 0x33, 0x3b, 0x33, - 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x08, 0x62, 0x02, 0x26, - 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0x04, 0xcb, 0x01, 0x52, - 0x00, 0x19, 0xb6, 0x03, 0x02, 0x1d, 0x05, 0x26, 0x03, 0x02, 0xb8, 0xff, - 0xff, 0xb4, 0x25, 0x1d, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, - 0x07, 0x10, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, - 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x3b, 0x11, - 0x26, 0x03, 0x02, 0x0b, 0x3b, 0x33, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0x98, - 0x04, 0xdd, 0x07, 0x73, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x00, 0x27, - 0x01, 0x4b, 0x00, 0x1f, 0x01, 0x52, 0x01, 0x07, 0x02, 0x67, 0x04, 0xd3, - 0x00, 0x00, 0x00, 0x25, 0x40, 0x10, 0x03, 0x2d, 0x14, 0x27, 0x02, 0x15, - 0x05, 0x26, 0x03, 0x00, 0x2a, 0x30, 0x04, 0x07, 0x25, 0x02, 0xb8, 0xff, - 0xff, 0xb4, 0x1d, 0x15, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xfe, 0x98, - 0x03, 0x9c, 0x06, 0x21, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x00, 0x26, - 0x01, 0x4b, 0xd4, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0x6f, 0x00, 0x00, - 0x00, 0x22, 0x40, 0x16, 0x03, 0x4b, 0x17, 0x27, 0x02, 0x33, 0x11, 0x26, - 0x03, 0x0d, 0x48, 0x4e, 0x0c, 0x22, 0x25, 0x02, 0x25, 0x3b, 0x33, 0x0c, - 0x22, 0x25, 0x01, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x08, 0x13, 0x02, 0x26, - 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7b, 0x04, 0xcb, 0x01, 0x52, - 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x26, 0x05, 0x26, 0x03, 0x02, 0x00, - 0x29, 0x21, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x06, 0xc1, - 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7b, 0x04, 0x7b, - 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x44, 0x11, 0x26, 0x03, - 0x02, 0x1e, 0x47, 0x3f, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, - 0x08, 0x13, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7c, - 0x04, 0xcb, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x26, 0x05, - 0x26, 0x03, 0x02, 0x00, 0x29, 0x21, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, - 0x03, 0x9c, 0x06, 0xc1, 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x7c, 0x04, 0x7b, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, - 0x44, 0x11, 0x26, 0x03, 0x02, 0x1e, 0x47, 0x3f, 0x0c, 0x22, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, - 0x00, 0x00, 0x04, 0xdd, 0x08, 0x58, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, - 0x01, 0x07, 0x03, 0x7d, 0x04, 0xcb, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x1a, 0x05, 0x26, 0x03, 0x02, 0x00, 0x1d, 0x15, 0x04, 0x07, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x07, 0x06, 0x02, 0x26, 0x00, 0x44, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x7d, 0x04, 0x7b, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x03, 0x02, 0x38, 0x11, 0x26, 0x03, 0x02, 0x1e, 0x3b, 0x33, - 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdd, 0x08, 0x62, 0x02, 0x26, - 0x00, 0x24, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7e, 0x04, 0xcb, 0x01, 0x52, - 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x1a, 0x05, 0x26, 0x03, 0x02, 0x00, - 0x1d, 0x15, 0x04, 0x07, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x03, 0x9c, 0x07, 0x10, - 0x02, 0x26, 0x00, 0x44, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7e, 0x04, 0x7b, - 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x38, 0x11, 0x26, 0x03, - 0x02, 0x1e, 0x50, 0x5e, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0x98, 0x04, 0xdd, - 0x07, 0x5b, 0x02, 0x26, 0x00, 0x24, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4e, - 0x00, 0x21, 0x01, 0x6d, 0x01, 0x07, 0x02, 0x67, 0x04, 0xd3, 0x00, 0x00, - 0x00, 0x22, 0x40, 0x16, 0x03, 0x2e, 0x14, 0x27, 0x02, 0x1a, 0x05, 0x26, - 0x03, 0x00, 0x2b, 0x31, 0x04, 0x07, 0x25, 0x02, 0x00, 0x1f, 0x15, 0x04, - 0x07, 0x25, 0x01, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0x5e, 0xfe, 0x98, 0x03, 0x9c, 0x05, 0xee, 0x02, 0x26, - 0x00, 0x44, 0x00, 0x00, 0x00, 0x26, 0x01, 0x4e, 0xd4, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x04, 0x6f, 0x00, 0x00, 0x00, 0x22, 0x40, 0x16, 0x03, 0x4c, - 0x17, 0x27, 0x02, 0x38, 0x11, 0x26, 0x03, 0x0d, 0x49, 0x4f, 0x0c, 0x22, - 0x25, 0x02, 0x1e, 0x3d, 0x33, 0x0c, 0x22, 0x25, 0x01, 0x2b, 0x35, 0x2b, - 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x98, - 0x03, 0xbe, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x04, 0xaa, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0f, - 0x14, 0x27, 0x01, 0x03, 0x0c, 0x12, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0x98, 0x03, 0xe1, - 0x04, 0x5e, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, - 0x04, 0xbe, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2b, 0x17, 0x27, - 0x02, 0x30, 0x28, 0x2e, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0xe1, - 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0x91, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x12, 0x05, 0x26, 0x01, 0x0d, - 0x21, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x06, 0x8f, 0x02, 0x26, - 0x00, 0x48, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0x98, 0x00, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2e, 0x11, 0x26, 0x02, 0x2d, 0x3d, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x07, 0x35, 0x02, 0x26, 0x00, 0x28, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0xff, 0xd4, 0x01, 0x52, 0x00, 0x15, - 0xb4, 0x01, 0x14, 0x05, 0x26, 0x01, 0xb8, 0xff, 0xfb, 0xb4, 0x15, 0x23, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, 0x05, 0xe3, 0x02, 0x26, 0x00, 0x48, - 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, 0xde, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x30, 0x11, 0x26, 0x02, 0x1e, 0x31, 0x3f, 0x05, 0x0f, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0x5c, 0x07, 0xd1, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x77, 0x04, 0x9e, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x0c, - 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, 0xfd, 0xb4, 0x14, 0x0c, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x47, 0x06, 0x7f, 0x02, 0x26, 0x00, 0x48, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x77, 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x03, 0x02, 0x28, 0x11, 0x26, 0x03, 0x02, 0x03, 0x30, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x27, 0x00, 0x00, 0x03, 0xbe, 0x07, 0xd1, 0x02, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x03, 0x78, 0x04, 0x9e, 0x01, 0x52, - 0x00, 0x19, 0xb6, 0x02, 0x01, 0x14, 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, - 0xfd, 0xb4, 0x1c, 0x14, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x12, 0xff, 0xec, 0x03, 0xe1, - 0x06, 0x7f, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x07, 0x03, 0x78, - 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x30, 0x11, - 0x26, 0x03, 0x02, 0x03, 0x38, 0x30, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0x1b, 0x08, 0x4a, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, - 0x03, 0x79, 0x04, 0x9e, 0x01, 0x52, 0x00, 0x19, 0xb6, 0x02, 0x01, 0x0c, - 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, 0xfd, 0xb4, 0x14, 0x0c, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x06, 0x06, 0xf8, 0x02, 0x26, 0x00, 0x48, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x79, 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, - 0x40, 0x0d, 0x03, 0x02, 0x28, 0x11, 0x26, 0x03, 0x02, 0x03, 0x30, 0x28, - 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xc7, 0x00, 0x00, 0x03, 0xbe, 0x08, 0x62, 0x02, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0x04, 0x9e, 0x01, 0x52, - 0x00, 0x19, 0xb6, 0x02, 0x01, 0x14, 0x05, 0x26, 0x02, 0x01, 0xb8, 0xff, - 0xfd, 0xb4, 0x1c, 0x14, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x03, 0xe1, - 0x07, 0x10, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, - 0x04, 0x89, 0x00, 0x00, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x30, 0x11, - 0x26, 0x03, 0x02, 0x03, 0x38, 0x30, 0x05, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0x98, - 0x03, 0xbe, 0x07, 0x73, 0x02, 0x26, 0x00, 0x28, 0x00, 0x00, 0x00, 0x27, - 0x01, 0x4b, 0xff, 0xf1, 0x01, 0x52, 0x01, 0x07, 0x02, 0x67, 0x04, 0xaa, - 0x00, 0x00, 0x00, 0x25, 0x40, 0x10, 0x02, 0x24, 0x14, 0x27, 0x01, 0x0c, - 0x05, 0x26, 0x02, 0x03, 0x21, 0x27, 0x01, 0x00, 0x25, 0x01, 0xb8, 0xff, - 0xfd, 0xb4, 0x14, 0x0c, 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0x98, - 0x03, 0xe1, 0x06, 0x21, 0x02, 0x26, 0x00, 0x48, 0x00, 0x00, 0x00, 0x26, - 0x01, 0x4b, 0xde, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0xaa, 0x00, 0x00, - 0x00, 0x22, 0x40, 0x16, 0x03, 0x40, 0x17, 0x27, 0x02, 0x28, 0x11, 0x26, - 0x03, 0x1c, 0x3d, 0x43, 0x05, 0x0f, 0x25, 0x02, 0x03, 0x30, 0x28, 0x05, - 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, - 0xff, 0xff, 0x00, 0x52, 0x00, 0x00, 0x02, 0x64, 0x07, 0xe1, 0x02, 0x26, - 0x00, 0x2c, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x03, 0xb0, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x12, 0x05, 0x26, 0x01, 0x13, 0x21, 0x0c, - 0x01, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x62, 0x00, 0x00, 0x01, 0xd7, 0x06, 0x8f, 0x02, 0x26, 0x00, 0xf3, - 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x03, 0x5e, 0x00, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x0a, 0x11, 0x26, 0x01, 0x13, 0x19, 0x04, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x52, - 0xfe, 0x98, 0x02, 0x64, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x2c, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x67, 0x03, 0xbe, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, - 0x0f, 0x14, 0x27, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x0c, 0x12, 0x01, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x9e, - 0xfe, 0x98, 0x01, 0x75, 0x05, 0xe5, 0x02, 0x26, 0x00, 0x4c, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x67, 0x03, 0x6d, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, - 0x15, 0x17, 0x27, 0x02, 0xb8, 0xff, 0xfe, 0xb4, 0x12, 0x18, 0x04, 0x0c, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, - 0xfe, 0x98, 0x05, 0x71, 0x05, 0xcd, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x67, 0x05, 0x5c, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, - 0x02, 0x2b, 0x14, 0x27, 0x02, 0x00, 0x28, 0x2e, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0x98, - 0x04, 0x2d, 0x04, 0x5e, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x04, 0xb2, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x23, 0x17, - 0x27, 0x02, 0xb8, 0xff, 0xff, 0xb4, 0x20, 0x26, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x05, 0x71, 0x07, 0xe1, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x66, 0x05, 0x4e, 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x2e, - 0x05, 0x26, 0x02, 0x15, 0x3d, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x06, 0x8f, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, - 0x04, 0xa4, 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x02, 0x26, 0x11, 0x26, - 0x02, 0x13, 0x35, 0x20, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x07, 0xd1, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x03, 0x77, 0x05, 0x58, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x28, 0x05, 0x26, 0x03, - 0x02, 0x05, 0x30, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x68, - 0x06, 0x7f, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x07, 0x03, 0x77, - 0x04, 0xaa, 0x00, 0x00, 0x00, 0x19, 0xb6, 0x03, 0x02, 0x20, 0x11, 0x26, - 0x03, 0x02, 0xb8, 0xff, 0xfa, 0xb4, 0x28, 0x20, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, - 0xff, 0xec, 0x05, 0x71, 0x07, 0xd1, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, - 0x01, 0x07, 0x03, 0x78, 0x05, 0x58, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x30, 0x05, 0x26, 0x03, 0x02, 0x05, 0x38, 0x30, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x33, 0xff, 0xec, 0x04, 0x2d, 0x06, 0x7f, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x78, 0x04, 0xaa, 0x00, 0x00, 0x00, 0x19, - 0xb6, 0x03, 0x02, 0x28, 0x11, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xfa, 0xb4, - 0x30, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x05, 0x71, 0x08, 0x4a, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x01, 0x07, 0x03, 0x79, 0x05, 0x58, - 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, 0x03, 0x02, 0x28, 0x05, 0x26, 0x03, - 0x02, 0x05, 0x30, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, - 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, - 0x06, 0xf8, 0x02, 0x26, 0x00, 0x52, 0x00, 0x00, 0x01, 0x07, 0x03, 0x79, - 0x04, 0xaa, 0x00, 0x00, 0x00, 0x19, 0xb6, 0x03, 0x02, 0x20, 0x11, 0x26, - 0x03, 0x02, 0xb8, 0xff, 0xfa, 0xb4, 0x28, 0x20, 0x0a, 0x00, 0x25, 0x01, - 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, - 0xff, 0xec, 0x05, 0x71, 0x08, 0x62, 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, - 0x01, 0x07, 0x03, 0x7a, 0x05, 0x58, 0x01, 0x52, 0x00, 0x17, 0x40, 0x0d, - 0x03, 0x02, 0x30, 0x05, 0x26, 0x03, 0x02, 0x05, 0x38, 0x30, 0x0a, 0x00, - 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x71, 0xff, 0xec, 0x04, 0x2d, 0x07, 0x10, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0x04, 0xaa, 0x00, 0x00, 0x00, 0x19, - 0xb6, 0x03, 0x02, 0x28, 0x11, 0x26, 0x03, 0x02, 0xb8, 0xff, 0xfa, 0xb4, - 0x30, 0x28, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x35, 0x00, 0x2b, 0x35, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xfe, 0x98, 0x05, 0x71, 0x07, 0x73, - 0x02, 0x26, 0x00, 0x32, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4b, 0x00, 0xae, - 0x01, 0x52, 0x01, 0x07, 0x02, 0x67, 0x05, 0x5c, 0x00, 0x00, 0x00, 0x22, - 0x40, 0x16, 0x03, 0x40, 0x14, 0x27, 0x02, 0x28, 0x05, 0x26, 0x03, 0x00, - 0x3d, 0x43, 0x0a, 0x00, 0x25, 0x02, 0x05, 0x30, 0x28, 0x0a, 0x00, 0x25, - 0x01, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, 0xff, 0xff, - 0x00, 0x71, 0xfe, 0x98, 0x04, 0x2d, 0x06, 0x21, 0x02, 0x26, 0x00, 0x52, - 0x00, 0x00, 0x00, 0x26, 0x01, 0x4b, 0xfb, 0x00, 0x01, 0x07, 0x02, 0x67, - 0x04, 0xb2, 0x00, 0x00, 0x00, 0x28, 0x40, 0x09, 0x03, 0x38, 0x17, 0x27, - 0x02, 0x20, 0x11, 0x26, 0x03, 0xb8, 0xff, 0xff, 0xb5, 0x35, 0x3b, 0x0a, - 0x00, 0x25, 0x02, 0xb8, 0xff, 0xfa, 0xb4, 0x28, 0x20, 0x0a, 0x00, 0x25, - 0x01, 0x2b, 0x35, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x2b, 0x35, 0xff, 0xff, - 0x00, 0x7d, 0xff, 0xec, 0x06, 0x25, 0x07, 0x73, 0x02, 0x26, 0x02, 0x5f, - 0x00, 0x00, 0x01, 0x07, 0x00, 0x76, 0x01, 0x06, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x02, 0x41, 0x05, 0x26, 0x02, 0x02, 0x35, 0x3b, 0x13, 0x01, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, - 0xff, 0xec, 0x04, 0xf4, 0x06, 0x21, 0x02, 0x26, 0x02, 0x60, 0x00, 0x00, - 0x01, 0x06, 0x00, 0x76, 0x50, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x3a, 0x11, - 0x26, 0x02, 0xb8, 0xff, 0xeb, 0xb4, 0x2d, 0x33, 0x0a, 0x19, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, - 0x06, 0x25, 0x07, 0x73, 0x02, 0x26, 0x02, 0x5f, 0x00, 0x00, 0x01, 0x07, - 0x00, 0x43, 0x00, 0x54, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x35, 0x05, - 0x26, 0x02, 0xb8, 0xff, 0x51, 0xb4, 0x3b, 0x35, 0x13, 0x01, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, - 0x04, 0xf4, 0x06, 0x21, 0x02, 0x26, 0x02, 0x60, 0x00, 0x00, 0x01, 0x06, - 0x00, 0x43, 0xd8, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x2e, 0x11, 0x26, 0x02, - 0xb8, 0xff, 0xd7, 0xb4, 0x34, 0x2d, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x06, 0x25, - 0x07, 0xe1, 0x02, 0x26, 0x02, 0x5f, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, - 0x05, 0x4e, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x3c, 0x05, 0x26, 0x02, - 0xb8, 0xff, 0xbc, 0xb4, 0x4a, 0x35, 0x13, 0x01, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0xf4, - 0x06, 0x8f, 0x02, 0x26, 0x02, 0x60, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, - 0x04, 0xa4, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x34, 0x11, 0x26, 0x02, - 0xb8, 0xff, 0xb0, 0xb4, 0x42, 0x2d, 0x0a, 0x19, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x06, 0x25, - 0x07, 0x35, 0x02, 0x26, 0x02, 0x5f, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, - 0x00, 0x7d, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x02, 0x3d, 0x05, 0x26, 0x02, - 0xb8, 0xff, 0x96, 0xb4, 0x3e, 0x4c, 0x13, 0x01, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xff, 0xec, 0x04, 0xf4, - 0x05, 0xe3, 0x02, 0x26, 0x02, 0x60, 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, - 0xe2, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x2d, 0x11, 0x26, 0x02, 0xb8, 0xff, - 0xfd, 0xb4, 0x36, 0x44, 0x0a, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x7d, 0xfe, 0x98, 0x06, 0x25, 0x06, 0x14, - 0x02, 0x26, 0x02, 0x5f, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x05, 0x5c, - 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x38, 0x14, 0x27, 0x02, 0xb8, 0xff, - 0xa7, 0xb4, 0x35, 0x3b, 0x13, 0x01, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0x98, 0x04, 0xf4, 0x04, 0xf2, - 0x02, 0x26, 0x02, 0x60, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0xb2, - 0x00, 0x00, 0x00, 0x15, 0xb4, 0x02, 0x30, 0x17, 0x27, 0x02, 0xb8, 0xff, - 0x9b, 0xb4, 0x2d, 0x33, 0x0a, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xfe, 0x98, 0x04, 0xdd, 0x05, 0xb8, - 0x02, 0x26, 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x05, 0x2f, - 0x00, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x1b, 0x14, 0x27, 0x01, 0x00, - 0x18, 0x1e, 0x0b, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xa4, 0xfe, 0x98, 0x04, 0x08, 0x04, 0x4a, 0x02, 0x26, - 0x00, 0x58, 0x00, 0x00, 0x01, 0x07, 0x02, 0x67, 0x04, 0xb8, 0x00, 0x00, - 0x00, 0x15, 0xb4, 0x01, 0x1e, 0x17, 0x27, 0x01, 0xb8, 0xff, 0xfe, 0xb4, - 0x1b, 0x21, 0x0c, 0x19, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0xdd, 0x07, 0xe1, 0x02, 0x26, - 0x00, 0x38, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x05, 0x1d, 0x01, 0x52, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x1e, 0x05, 0x26, 0x01, 0x11, 0x2d, 0x18, - 0x0b, 0x00, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x08, 0x06, 0x8f, 0x02, 0x26, 0x00, 0x58, - 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0xa6, 0x00, 0x00, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x21, 0x11, 0x26, 0x01, 0x0e, 0x30, 0x1b, 0x0c, 0x19, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x06, 0x4e, 0x07, 0x73, 0x02, 0x26, 0x02, 0x61, 0x00, 0x00, - 0x01, 0x07, 0x00, 0x76, 0x00, 0xc5, 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, - 0x31, 0x05, 0x26, 0x01, 0xb8, 0xff, 0x90, 0xb4, 0x25, 0x2b, 0x18, 0x08, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x05, 0x79, 0x06, 0x21, 0x02, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x01, 0x06, 0x00, 0x76, 0x60, 0x00, 0x00, 0x11, 0xb1, 0x01, 0x01, 0xb8, - 0xff, 0x9f, 0xb4, 0x28, 0x2e, 0x0c, 0x21, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x06, 0x4e, 0x07, 0x73, - 0x02, 0x26, 0x02, 0x61, 0x00, 0x00, 0x01, 0x07, 0x00, 0x43, 0x00, 0x3d, - 0x01, 0x52, 0x00, 0x15, 0xb4, 0x01, 0x25, 0x05, 0x26, 0x01, 0xb8, 0xff, - 0x08, 0xb4, 0x2b, 0x25, 0x18, 0x08, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, - 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x05, 0x79, 0x06, 0x21, - 0x02, 0x26, 0x02, 0x62, 0x00, 0x00, 0x01, 0x06, 0x00, 0x43, 0xa3, 0x00, - 0x00, 0x11, 0xb1, 0x01, 0x01, 0xb8, 0xfe, 0xe2, 0xb4, 0x2e, 0x28, 0x0c, - 0x21, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x06, 0x4e, 0x07, 0xe1, 0x02, 0x26, 0x02, 0x61, 0x00, 0x00, - 0x01, 0x07, 0x02, 0x66, 0x05, 0x1d, 0x01, 0x52, 0x00, 0x11, 0xb1, 0x01, - 0x01, 0xb8, 0xff, 0x59, 0xb4, 0x3a, 0x25, 0x18, 0x08, 0x25, 0x01, 0x2b, - 0x35, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x05, 0x79, - 0x06, 0x8f, 0x02, 0x26, 0x02, 0x62, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, - 0x04, 0xa6, 0x00, 0x00, 0x00, 0x11, 0xb1, 0x01, 0x01, 0xb8, 0xff, 0x56, - 0xb4, 0x3d, 0x28, 0x0c, 0x21, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x06, 0x4e, 0x07, 0x35, 0x02, 0x26, - 0x02, 0x61, 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0x00, 0x60, 0x01, 0x52, - 0x00, 0x15, 0xb4, 0x01, 0x2d, 0x05, 0x26, 0x01, 0xb8, 0xff, 0x47, 0xb4, - 0x2e, 0x3c, 0x18, 0x08, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x05, 0x79, 0x05, 0xe3, 0x02, 0x26, - 0x02, 0x62, 0x00, 0x00, 0x01, 0x06, 0x01, 0x52, 0xf3, 0x00, 0x00, 0x11, - 0xb1, 0x01, 0x01, 0xb8, 0xff, 0x4e, 0xb4, 0x31, 0x3f, 0x0c, 0x21, 0x25, - 0x01, 0x2b, 0x35, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xfe, 0x98, - 0x06, 0x4e, 0x06, 0x14, 0x02, 0x26, 0x02, 0x61, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x05, 0x2f, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x28, 0x14, - 0x27, 0x01, 0xb8, 0xff, 0x48, 0xb4, 0x25, 0x2b, 0x18, 0x08, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xfe, 0x98, - 0x05, 0x79, 0x04, 0xf2, 0x02, 0x26, 0x02, 0x62, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x04, 0xb8, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x2b, 0x17, - 0x27, 0x01, 0xb8, 0xff, 0x45, 0xb4, 0x28, 0x2e, 0x0c, 0x21, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0xfe, 0x98, - 0x04, 0x37, 0x05, 0xb6, 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x04, 0x7f, 0x00, 0x00, 0x00, 0x15, 0xb4, 0x01, 0x0c, 0x14, - 0x27, 0x01, 0xb8, 0xff, 0xff, 0xb4, 0x09, 0x0f, 0x07, 0x02, 0x25, 0x01, - 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, - 0x03, 0xdf, 0x04, 0x4a, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, 0x01, 0x07, - 0x02, 0x67, 0x05, 0x8b, 0x00, 0x00, 0x00, 0x11, 0xb1, 0x01, 0x01, 0xb8, - 0x01, 0x32, 0xb4, 0x23, 0x29, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, - 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, 0x07, 0xe1, - 0x02, 0x26, 0x00, 0x3c, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0x71, - 0x01, 0x52, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x0f, 0x05, 0x26, 0x01, 0x14, - 0x1e, 0x09, 0x07, 0x02, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, - 0xff, 0xff, 0x00, 0x0a, 0xfe, 0x14, 0x03, 0xdf, 0x06, 0x8f, 0x02, 0x26, - 0x00, 0x5c, 0x00, 0x00, 0x01, 0x07, 0x02, 0x66, 0x04, 0x4a, 0x00, 0x00, - 0x00, 0x13, 0x40, 0x0b, 0x01, 0x29, 0x11, 0x26, 0x01, 0x14, 0x38, 0x23, - 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x00, 0x04, 0x37, 0x07, 0x35, 0x02, 0x26, 0x00, 0x3c, - 0x00, 0x00, 0x01, 0x07, 0x01, 0x52, 0xff, 0xb3, 0x01, 0x52, 0x00, 0x13, - 0x40, 0x0b, 0x01, 0x11, 0x05, 0x26, 0x01, 0x01, 0x12, 0x20, 0x07, 0x02, - 0x25, 0x01, 0x2b, 0x35, 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x0a, - 0xfe, 0x14, 0x03, 0xdf, 0x05, 0xe3, 0x02, 0x26, 0x00, 0x5c, 0x00, 0x00, - 0x01, 0x06, 0x01, 0x52, 0x8c, 0x00, 0x00, 0x13, 0x40, 0x0b, 0x01, 0x2b, - 0x11, 0x26, 0x01, 0x01, 0x2c, 0x3a, 0x00, 0x0f, 0x25, 0x01, 0x2b, 0x35, - 0x00, 0x2b, 0x35, 0x00, 0xff, 0xff, 0x00, 0x71, 0xfe, 0xbc, 0x04, 0x9e, - 0x06, 0x14, 0x02, 0x26, 0x00, 0xd3, 0x00, 0x00, 0x01, 0x07, 0x00, 0x42, - 0x00, 0xb4, 0x00, 0x00, 0x00, 0x0e, 0xb9, 0x00, 0x02, 0xff, 0xd2, 0xb4, - 0x3a, 0x39, 0x0b, 0x23, 0x25, 0x01, 0x2b, 0x35, 0x00, 0x02, 0xfb, 0xdb, - 0x04, 0xd9, 0xfe, 0xba, 0x06, 0x21, 0x00, 0x0d, 0x00, 0x1b, 0x00, 0x2d, - 0x40, 0x19, 0x14, 0x0e, 0x0e, 0x07, 0x40, 0x50, 0x00, 0x01, 0x3f, 0x00, - 0x4f, 0x00, 0x02, 0x00, 0x15, 0x07, 0x92, 0x80, 0x0f, 0x0f, 0x01, 0x5f, - 0x01, 0x02, 0x01, 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xed, 0x32, 0x01, 0x2f, - 0x5d, 0x5d, 0x1a, 0xcd, 0x39, 0x2f, 0xcd, 0x31, 0x30, 0x01, 0x23, 0x2e, - 0x03, 0x27, 0x35, 0x33, 0x1e, 0x03, 0x17, 0x05, 0x23, 0x2e, 0x03, 0x27, - 0x35, 0x33, 0x1e, 0x03, 0x17, 0xfe, 0xba, 0x64, 0x23, 0x51, 0x4d, 0x3f, - 0x10, 0xc6, 0x10, 0x2a, 0x2f, 0x30, 0x15, 0xfe, 0x96, 0x64, 0x23, 0x52, - 0x4d, 0x3f, 0x10, 0xc7, 0x10, 0x2a, 0x2f, 0x30, 0x15, 0x04, 0xd9, 0x1c, - 0x53, 0x58, 0x51, 0x1b, 0x15, 0x23, 0x50, 0x51, 0x4c, 0x1d, 0x1b, 0x1c, - 0x53, 0x58, 0x51, 0x1b, 0x15, 0x23, 0x50, 0x51, 0x4c, 0x1d, 0x00, 0x02, - 0xfc, 0x6a, 0x04, 0xd9, 0xff, 0xbe, 0x06, 0x7f, 0x00, 0x10, 0x00, 0x1c, - 0x00, 0x52, 0x40, 0x31, 0x0d, 0x0c, 0x04, 0x10, 0x17, 0x01, 0x17, 0x40, - 0x2f, 0x1c, 0x3f, 0x1c, 0x4f, 0x1c, 0x03, 0x1c, 0x04, 0x04, 0x1c, 0x2f, - 0x00, 0x5f, 0x00, 0x8f, 0x00, 0x9f, 0x00, 0x04, 0x00, 0xc0, 0x08, 0x16, - 0x1b, 0x1b, 0x04, 0x7f, 0x0c, 0x8f, 0x0c, 0x02, 0x0c, 0x80, 0x00, 0x0f, - 0x08, 0x5f, 0x08, 0x02, 0x08, 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xcc, 0x5d, - 0x32, 0x39, 0x2f, 0xcd, 0x01, 0x2f, 0x1a, 0xcc, 0x5d, 0x39, 0x39, 0x3d, - 0x2f, 0x18, 0x2f, 0x5d, 0x1a, 0xcd, 0x5d, 0x11, 0x33, 0x33, 0x31, 0x30, - 0x01, 0x23, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x23, 0x35, 0x36, 0x36, - 0x37, 0x33, 0x16, 0x16, 0x17, 0x27, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x06, - 0x06, 0x07, 0x23, 0xfe, 0xd9, 0x64, 0x33, 0x6c, 0x34, 0x36, 0x6a, 0x33, - 0x65, 0x33, 0x75, 0x30, 0xc0, 0x30, 0x74, 0x33, 0x4e, 0x14, 0x21, 0x1d, - 0x1d, 0x10, 0xb4, 0x2d, 0x6a, 0x37, 0x65, 0x04, 0xd9, 0x22, 0x54, 0x30, - 0x30, 0x54, 0x22, 0x1b, 0x3b, 0x84, 0x45, 0x45, 0x84, 0x3b, 0xc2, 0x19, - 0x2d, 0x2e, 0x34, 0x21, 0x15, 0x3c, 0x67, 0x2b, 0x00, 0x02, 0xfb, 0x89, - 0x04, 0xd9, 0xfe, 0xdd, 0x06, 0x7f, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x4a, - 0x40, 0x2a, 0x04, 0x03, 0x0c, 0x1f, 0x16, 0x01, 0x16, 0x40, 0x1c, 0x0c, - 0x0c, 0x1c, 0x2f, 0x08, 0x5f, 0x08, 0x8f, 0x08, 0x9f, 0x08, 0x04, 0x08, - 0xc0, 0x00, 0x16, 0x12, 0x12, 0x0c, 0x7f, 0x03, 0x8f, 0x03, 0x02, 0x03, - 0x80, 0x10, 0x0f, 0x08, 0x5f, 0x08, 0x02, 0x08, 0x00, 0x2f, 0x5d, 0x33, - 0x1a, 0xcd, 0x5d, 0x32, 0x39, 0x2f, 0xcd, 0x01, 0x2f, 0x1a, 0xcc, 0x5d, - 0x39, 0x39, 0x3d, 0x2f, 0x18, 0x2f, 0x1a, 0xcd, 0x5d, 0x11, 0x33, 0x33, - 0x31, 0x30, 0x01, 0x36, 0x36, 0x37, 0x33, 0x16, 0x16, 0x17, 0x15, 0x23, - 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x23, 0x37, 0x23, 0x26, 0x26, 0x27, - 0x35, 0x33, 0x1e, 0x03, 0x17, 0xfc, 0x6f, 0x33, 0x74, 0x30, 0xc0, 0x30, - 0x74, 0x33, 0x64, 0x33, 0x6a, 0x36, 0x35, 0x6b, 0x33, 0x64, 0x4d, 0x64, - 0x38, 0x6a, 0x2d, 0xb4, 0x10, 0x1d, 0x1e, 0x20, 0x14, 0x04, 0xf4, 0x3b, - 0x84, 0x45, 0x45, 0x84, 0x3b, 0x1b, 0x22, 0x54, 0x30, 0x30, 0x54, 0x22, - 0xc3, 0x2b, 0x67, 0x3c, 0x15, 0x21, 0x34, 0x2e, 0x2d, 0x19, 0x00, 0x02, - 0xfc, 0x6a, 0x04, 0xd9, 0xff, 0x7d, 0x06, 0xf8, 0x00, 0x10, 0x00, 0x28, - 0x00, 0x5e, 0x40, 0x38, 0x16, 0x19, 0x19, 0x20, 0x06, 0x0e, 0x48, 0x19, - 0x1c, 0x11, 0x80, 0x2f, 0x23, 0x3f, 0x23, 0x4f, 0x23, 0x03, 0x23, 0x04, - 0x04, 0x23, 0x2f, 0x00, 0x5f, 0x00, 0x8f, 0x00, 0x9f, 0x00, 0x04, 0x00, - 0xc0, 0x08, 0x16, 0x19, 0x19, 0x1f, 0x26, 0x18, 0x18, 0x04, 0x7f, 0x0c, - 0x8f, 0x0c, 0x02, 0x0c, 0x80, 0x00, 0x0f, 0x08, 0x5f, 0x08, 0x02, 0x08, - 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xcc, 0x5d, 0x32, 0x39, 0x2f, 0xcc, 0x32, - 0x39, 0x11, 0x33, 0x01, 0x2f, 0x1a, 0xcc, 0x5d, 0x39, 0x39, 0x3d, 0x2f, - 0x18, 0x2f, 0x5d, 0x1a, 0xcd, 0x32, 0x39, 0x2b, 0x11, 0x33, 0x31, 0x30, - 0x01, 0x23, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x23, 0x35, 0x36, 0x36, - 0x37, 0x33, 0x16, 0x16, 0x17, 0x13, 0x14, 0x0e, 0x02, 0x07, 0x07, 0x23, - 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, - 0x36, 0x33, 0x32, 0x16, 0xfe, 0xd9, 0x64, 0x33, 0x6c, 0x34, 0x36, 0x6a, - 0x33, 0x65, 0x33, 0x75, 0x30, 0xc0, 0x30, 0x74, 0x33, 0xa4, 0x14, 0x22, - 0x2e, 0x19, 0x06, 0x56, 0x0a, 0x37, 0x41, 0x39, 0x2b, 0x16, 0x27, 0x0b, - 0x0b, 0x26, 0x1f, 0x63, 0x64, 0x04, 0xd9, 0x22, 0x54, 0x30, 0x30, 0x54, - 0x22, 0x1b, 0x3b, 0x84, 0x45, 0x45, 0x84, 0x3b, 0x01, 0x76, 0x1d, 0x2b, - 0x1e, 0x15, 0x06, 0x51, 0x83, 0x09, 0x1f, 0x25, 0x25, 0x19, 0x03, 0x03, - 0x52, 0x03, 0x03, 0x45, 0x00, 0x02, 0xfc, 0x64, 0x04, 0xd9, 0xfe, 0xe9, - 0x07, 0x10, 0x00, 0x10, 0x00, 0x2c, 0x00, 0x61, 0x40, 0x3b, 0x04, 0x03, - 0x0c, 0x0c, 0x00, 0x28, 0x28, 0x2f, 0x08, 0x5f, 0x08, 0x8f, 0x08, 0x9f, - 0x08, 0x04, 0x08, 0x00, 0xc0, 0x1a, 0x1a, 0x00, 0x27, 0x16, 0x8e, 0xcf, - 0x1f, 0xdf, 0x1f, 0xef, 0x1f, 0x03, 0x1f, 0x40, 0x09, 0x0d, 0x48, 0x1f, - 0x1f, 0x24, 0x8e, 0x19, 0x11, 0x11, 0x0c, 0x7f, 0x03, 0x8f, 0x03, 0x02, - 0x03, 0x80, 0x10, 0x0f, 0x08, 0x5f, 0x08, 0x02, 0x08, 0x00, 0x2f, 0x5d, - 0x33, 0x1a, 0xcd, 0x5d, 0x32, 0x32, 0x2f, 0x33, 0xe1, 0x33, 0x2f, 0x2b, - 0x5d, 0xe1, 0x33, 0x01, 0x2f, 0x33, 0x2f, 0x1a, 0x10, 0xcc, 0x5d, 0x32, - 0x2f, 0x11, 0x39, 0x3d, 0x2f, 0x33, 0x33, 0x31, 0x30, 0x01, 0x36, 0x36, - 0x37, 0x33, 0x16, 0x16, 0x17, 0x15, 0x23, 0x26, 0x26, 0x27, 0x06, 0x06, - 0x07, 0x23, 0x01, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3e, - 0x03, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x0e, 0x03, - 0xfc, 0x6f, 0x33, 0x74, 0x30, 0xc0, 0x30, 0x74, 0x33, 0x64, 0x33, 0x6a, - 0x36, 0x35, 0x6b, 0x33, 0x64, 0x01, 0xbe, 0x24, 0x47, 0x45, 0x40, 0x1c, - 0x28, 0x2a, 0x0e, 0x5d, 0x05, 0x1d, 0x30, 0x41, 0x2a, 0x25, 0x4a, 0x45, - 0x3e, 0x1a, 0x28, 0x2a, 0x0e, 0x5c, 0x05, 0x1c, 0x30, 0x41, 0x04, 0xf4, - 0x3b, 0x84, 0x45, 0x45, 0x84, 0x3b, 0x1b, 0x22, 0x54, 0x30, 0x30, 0x54, - 0x22, 0x01, 0x5a, 0x1c, 0x22, 0x1c, 0x2a, 0x32, 0x30, 0x51, 0x3b, 0x21, - 0x1c, 0x22, 0x1c, 0x2b, 0x31, 0x30, 0x51, 0x3b, 0x21, 0x00, 0x00, 0x02, - 0xfc, 0x73, 0x04, 0xd9, 0xfe, 0xcd, 0x06, 0xc1, 0x00, 0x0b, 0x00, 0x1f, - 0x00, 0x32, 0x40, 0x19, 0x06, 0x80, 0x0b, 0x0b, 0x1f, 0x2f, 0x0c, 0x01, - 0x0c, 0xc0, 0x15, 0x14, 0x05, 0x0b, 0x0b, 0x1f, 0x14, 0x80, 0x1a, 0x0f, - 0x11, 0x5f, 0x11, 0x02, 0x11, 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xcd, 0x32, - 0x32, 0x2f, 0xcc, 0x01, 0x2f, 0x33, 0x1a, 0xcc, 0x5d, 0x32, 0x39, 0x2f, - 0x1a, 0xcd, 0x31, 0x30, 0x01, 0x3e, 0x03, 0x37, 0x33, 0x15, 0x06, 0x06, - 0x07, 0x23, 0x25, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x33, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0xfd, 0x5e, 0x14, 0x20, 0x1e, 0x1d, 0x10, - 0xb4, 0x2d, 0x6a, 0x37, 0x65, 0x01, 0x6f, 0x05, 0x2b, 0x4d, 0x6e, 0x46, - 0x92, 0x91, 0x06, 0x6c, 0x04, 0x1b, 0x30, 0x44, 0x2c, 0x24, 0x41, 0x33, - 0x21, 0x05, 0x05, 0xf8, 0x19, 0x2c, 0x2e, 0x35, 0x21, 0x15, 0x3c, 0x67, - 0x2c, 0x06, 0x3c, 0x63, 0x45, 0x26, 0x8c, 0x7e, 0x2b, 0x32, 0x19, 0x07, - 0x09, 0x1b, 0x31, 0x28, 0x00, 0x02, 0xfc, 0x73, 0x04, 0xd9, 0xfe, 0xcd, - 0x06, 0xc1, 0x00, 0x0b, 0x00, 0x1f, 0x00, 0x38, 0x40, 0x1e, 0x05, 0x80, - 0x0b, 0x40, 0x13, 0x16, 0x48, 0x0b, 0x0b, 0x1f, 0x2f, 0x0c, 0x01, 0x0c, - 0xc0, 0x15, 0x14, 0x05, 0x00, 0x00, 0x1f, 0x14, 0x80, 0x1a, 0x0f, 0x11, - 0x5f, 0x11, 0x02, 0x11, 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xcd, 0x32, 0x32, - 0x2f, 0xcd, 0x01, 0x2f, 0x33, 0x1a, 0xcc, 0x5d, 0x32, 0x39, 0x2f, 0x2b, - 0x1a, 0xcd, 0x31, 0x30, 0x01, 0x23, 0x26, 0x26, 0x27, 0x35, 0x33, 0x1e, - 0x03, 0x17, 0x17, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x33, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0xfd, 0xd1, 0x64, 0x38, 0x6a, 0x2d, 0xb4, - 0x10, 0x1d, 0x1e, 0x20, 0x14, 0xfc, 0x05, 0x2b, 0x4d, 0x6e, 0x46, 0x92, - 0x91, 0x06, 0x6c, 0x04, 0x1b, 0x30, 0x44, 0x2c, 0x24, 0x41, 0x33, 0x21, - 0x05, 0x05, 0xdd, 0x2c, 0x67, 0x3c, 0x15, 0x21, 0x35, 0x2e, 0x2c, 0x19, - 0x15, 0x3c, 0x63, 0x45, 0x26, 0x8c, 0x7e, 0x2b, 0x32, 0x19, 0x07, 0x09, - 0x1b, 0x31, 0x28, 0x00, 0x00, 0x02, 0xfc, 0x73, 0x04, 0xd9, 0xfe, 0xcd, - 0x07, 0x06, 0x00, 0x13, 0x00, 0x2a, 0x00, 0x42, 0x40, 0x21, 0x19, 0x1c, - 0x1c, 0x1f, 0x14, 0x80, 0x25, 0x25, 0x13, 0x2f, 0x00, 0x01, 0x00, 0x09, - 0x08, 0x19, 0x1c, 0x1c, 0x22, 0x28, 0xc0, 0x1b, 0x1b, 0x13, 0x08, 0x80, - 0x0e, 0x0f, 0x05, 0x5f, 0x05, 0x02, 0x05, 0x00, 0x2f, 0x5d, 0x33, 0x1a, - 0xcd, 0x32, 0x39, 0x2f, 0x1a, 0xcc, 0x32, 0x39, 0x11, 0x33, 0x01, 0x2f, - 0x33, 0xcc, 0x5d, 0x32, 0x39, 0x2f, 0x1a, 0xcc, 0x32, 0x39, 0x11, 0x33, - 0x31, 0x30, 0x01, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x33, 0x1e, 0x03, - 0x33, 0x32, 0x3e, 0x02, 0x37, 0x27, 0x14, 0x0e, 0x02, 0x07, 0x07, 0x23, - 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, - 0x33, 0x32, 0x16, 0xfe, 0xcd, 0x05, 0x2b, 0x4d, 0x6e, 0x46, 0x92, 0x91, - 0x06, 0x6c, 0x04, 0x1b, 0x30, 0x44, 0x2c, 0x24, 0x41, 0x33, 0x21, 0x05, - 0x2b, 0x14, 0x22, 0x2e, 0x19, 0x06, 0x56, 0x0a, 0x38, 0x41, 0x39, 0x2c, - 0x15, 0x27, 0x0b, 0x15, 0x3a, 0x64, 0x63, 0x05, 0xe3, 0x3c, 0x63, 0x45, - 0x26, 0x8c, 0x7e, 0x2b, 0x32, 0x19, 0x07, 0x09, 0x1b, 0x31, 0x28, 0x96, - 0x1d, 0x2b, 0x1f, 0x14, 0x06, 0x29, 0x5a, 0x09, 0x20, 0x25, 0x25, 0x18, - 0x03, 0x03, 0x52, 0x06, 0x45, 0x00, 0x00, 0x02, 0xfc, 0x64, 0x04, 0xd9, - 0xfe, 0xe9, 0x07, 0x10, 0x00, 0x13, 0x00, 0x2f, 0x00, 0x48, 0x40, 0x27, - 0x1c, 0x1d, 0x1d, 0x08, 0x2a, 0x2b, 0x2b, 0x13, 0x2f, 0x00, 0x01, 0x00, - 0xc0, 0x09, 0x08, 0x2a, 0x19, 0xcf, 0x22, 0xdf, 0x22, 0xef, 0x22, 0x03, - 0x22, 0x27, 0x1c, 0x14, 0x14, 0x13, 0x08, 0x80, 0x0e, 0x0f, 0x05, 0x5f, - 0x05, 0x02, 0x05, 0x00, 0x2f, 0x5d, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x2f, - 0x33, 0x33, 0xcd, 0x5d, 0x32, 0x32, 0x01, 0x2f, 0x33, 0x1a, 0xcc, 0x5d, - 0x32, 0x32, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x31, 0x30, 0x01, 0x0e, - 0x03, 0x23, 0x22, 0x26, 0x27, 0x33, 0x1e, 0x03, 0x33, 0x32, 0x3e, 0x02, - 0x37, 0x27, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3e, 0x03, - 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x0e, 0x03, 0xfe, - 0xcd, 0x05, 0x2b, 0x4d, 0x6e, 0x46, 0x92, 0x91, 0x06, 0x6c, 0x04, 0x1b, - 0x30, 0x44, 0x2c, 0x24, 0x41, 0x33, 0x21, 0x05, 0x2f, 0x24, 0x47, 0x45, - 0x40, 0x1c, 0x28, 0x2a, 0x0e, 0x5d, 0x05, 0x1d, 0x30, 0x41, 0x2a, 0x25, - 0x4a, 0x45, 0x3e, 0x1a, 0x28, 0x2a, 0x0e, 0x5c, 0x05, 0x1c, 0x30, 0x41, - 0x05, 0xe3, 0x3c, 0x63, 0x45, 0x26, 0x8c, 0x7e, 0x2b, 0x32, 0x19, 0x07, - 0x09, 0x1b, 0x31, 0x28, 0x50, 0x1c, 0x22, 0x1c, 0x2a, 0x32, 0x30, 0x51, - 0x3b, 0x21, 0x1c, 0x22, 0x1c, 0x2b, 0x31, 0x30, 0x51, 0x3b, 0x21, 0x00, - 0x00, 0x01, 0x00, 0x31, 0xfe, 0x42, 0x01, 0x71, 0x00, 0x00, 0x00, 0x14, - 0x00, 0x18, 0x40, 0x09, 0x0f, 0x80, 0x00, 0x08, 0x08, 0x02, 0x12, 0x0b, - 0x02, 0x00, 0x2f, 0x2f, 0x33, 0x01, 0x2f, 0x33, 0x2f, 0x33, 0x1a, 0xcc, - 0x31, 0x30, 0x17, 0x34, 0x27, 0x33, 0x1e, 0x03, 0x15, 0x14, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0xdb, 0x8b, 0x81, - 0x1a, 0x39, 0x2f, 0x1e, 0x65, 0x64, 0x1d, 0x40, 0x1a, 0x0e, 0x2d, 0x19, - 0x22, 0x34, 0xee, 0x69, 0x85, 0x13, 0x34, 0x40, 0x4b, 0x2a, 0x5a, 0x68, - 0x08, 0x08, 0x71, 0x04, 0x05, 0x2b, 0x00, 0x01, 0x00, 0x10, 0xfe, 0x6d, - 0x01, 0x77, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x12, 0xb6, 0x09, 0x01, 0x10, - 0x0d, 0x06, 0xfa, 0x00, 0x00, 0x2f, 0x3f, 0x33, 0x01, 0x2f, 0x33, 0xc4, - 0x31, 0x30, 0x25, 0x11, 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x01, 0x77, 0x01, 0x1a, 0x39, 0x59, - 0x3f, 0x26, 0x3f, 0x16, 0x0e, 0x3b, 0x22, 0x2e, 0x32, 0xa6, 0xfe, 0xd9, - 0x42, 0x66, 0x46, 0x24, 0x11, 0x09, 0x96, 0x07, 0x0e, 0x31, 0x31, 0x01, - 0x3c, 0x00, 0x00, 0x01, 0x00, 0x10, 0xfe, 0x6d, 0x01, 0x77, 0x00, 0x9a, - 0x00, 0x11, 0x00, 0x12, 0xb6, 0x09, 0x01, 0x10, 0x0d, 0x06, 0xfa, 0x00, - 0x00, 0x2f, 0x3f, 0x33, 0x01, 0x2f, 0x33, 0xc4, 0x31, 0x30, 0x25, 0x11, - 0x0e, 0x03, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x35, 0x11, 0x01, 0x77, 0x01, 0x1a, 0x39, 0x59, 0x3f, 0x26, 0x3f, 0x16, - 0x0e, 0x3b, 0x22, 0x2e, 0x32, 0x9a, 0xfe, 0xe5, 0x42, 0x66, 0x46, 0x24, - 0x11, 0x09, 0x96, 0x07, 0x0e, 0x31, 0x31, 0x01, 0x30, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x1b, 0x01, 0x4a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x0a, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x02, 0x00, 0x07, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x15, 0x00, 0x45, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x04, 0x00, 0x0a, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x05, 0x00, 0x0c, 0x00, 0x5a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x06, 0x00, 0x09, 0x00, 0x66, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x07, 0x00, 0x4e, 0x00, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x08, 0x00, 0x14, 0x00, 0xbd, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x0a, 0x00, 0x67, 0x00, 0xd1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x0d, 0x00, 0x2e, 0x01, 0x38, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x0e, 0x00, 0x2a, 0x01, 0x66, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x12, 0x00, 0x0a, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x00, 0x00, 0x68, 0x01, 0x90, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x01, 0x00, 0x14, 0x01, 0xf8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x02, 0x00, 0x0e, 0x02, 0x0c, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x03, 0x00, 0x2a, 0x02, 0x1a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x04, 0x00, 0x14, 0x01, 0xf8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x05, 0x00, 0x2c, 0x02, 0x44, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x06, 0x00, 0x12, 0x02, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x07, 0x00, 0x9c, 0x02, 0x82, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x08, 0x00, 0x28, 0x03, 0x1e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0a, 0x00, 0xce, 0x03, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0b, 0x00, 0x38, 0x04, 0x14, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0c, 0x00, 0x5c, 0x04, 0x4c, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0d, 0x00, 0x5c, 0x04, 0xa8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0e, 0x00, 0x54, 0x05, 0x04, 0x44, 0x69, 0x67, 0x69, 0x74, 0x69, - 0x7a, 0x65, 0x64, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x63, 0x6f, 0x70, - 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0xa9, 0x20, 0x32, 0x30, 0x30, - 0x37, 0x2c, 0x20, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x43, 0x6f, - 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x72, - 0x6f, 0x69, 0x64, 0x20, 0x53, 0x61, 0x6e, 0x73, 0x52, 0x65, 0x67, 0x75, - 0x6c, 0x61, 0x72, 0x41, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x20, - 0x2d, 0x20, 0x44, 0x72, 0x6f, 0x69, 0x64, 0x20, 0x53, 0x61, 0x6e, 0x73, - 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x31, 0x2e, 0x30, 0x30, - 0x44, 0x72, 0x6f, 0x69, 0x64, 0x53, 0x61, 0x6e, 0x73, 0x44, 0x72, 0x6f, - 0x69, 0x64, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x74, 0x72, 0x61, 0x64, - 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x20, 0x6f, 0x66, 0x20, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x6d, 0x61, 0x79, 0x20, - 0x62, 0x65, 0x20, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, - 0x64, 0x20, 0x69, 0x6e, 0x20, 0x63, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, - 0x20, 0x6a, 0x75, 0x72, 0x69, 0x73, 0x64, 0x69, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2e, 0x41, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x20, - 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, - 0x72, 0x6f, 0x69, 0x64, 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x69, 0x73, - 0x20, 0x61, 0x20, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x20, - 0x73, 0x61, 0x6e, 0x73, 0x20, 0x73, 0x65, 0x72, 0x69, 0x66, 0x20, 0x74, - 0x79, 0x70, 0x65, 0x66, 0x61, 0x63, 0x65, 0x20, 0x64, 0x65, 0x73, 0x69, - 0x67, 0x6e, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x75, 0x73, 0x65, - 0x72, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, - 0x20, 0x61, 0x6e, 0x64, 0x20, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, - 0x6e, 0x69, 0x63, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, - 0x65, 0x64, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, - 0x20, 0x41, 0x70, 0x61, 0x63, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x63, 0x65, - 0x6e, 0x73, 0x65, 0x2c, 0x20, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x20, 0x32, 0x2e, 0x30, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, - 0x77, 0x77, 0x2e, 0x61, 0x70, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x6f, 0x72, - 0x67, 0x2f, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x73, 0x2f, 0x4c, - 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, 0x2d, 0x32, 0x2e, 0x30, 0x00, 0x44, - 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x69, 0x00, 0x7a, - 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x74, - 0x00, 0x61, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x70, 0x00, 0x79, - 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, - 0x00, 0xa9, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x37, - 0x00, 0x2c, 0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, - 0x00, 0x6c, 0x00, 0x65, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x72, - 0x00, 0x70, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0x44, 0x00, 0x72, 0x00, 0x6f, - 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6e, - 0x00, 0x73, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6c, - 0x00, 0x61, 0x00, 0x72, 0x00, 0x41, 0x00, 0x73, 0x00, 0x63, 0x00, 0x65, - 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x2d, - 0x00, 0x20, 0x00, 0x44, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x69, 0x00, 0x64, - 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x56, - 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, - 0x00, 0x20, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, 0x00, 0x20, - 0x00, 0x62, 0x00, 0x75, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x64, 0x00, 0x20, - 0x00, 0x31, 0x00, 0x31, 0x00, 0x33, 0x00, 0x44, 0x00, 0x72, 0x00, 0x6f, - 0x00, 0x69, 0x00, 0x64, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x44, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x69, 0x00, 0x64, 0x00, 0x20, - 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, - 0x00, 0x72, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x61, - 0x00, 0x72, 0x00, 0x6b, 0x00, 0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x20, - 0x00, 0x47, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, - 0x00, 0x20, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6d, - 0x00, 0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x62, 0x00, 0x65, 0x00, 0x20, - 0x00, 0x72, 0x00, 0x65, 0x00, 0x67, 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, - 0x00, 0x65, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x69, - 0x00, 0x6e, 0x00, 0x20, 0x00, 0x63, 0x00, 0x65, 0x00, 0x72, 0x00, 0x74, - 0x00, 0x61, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x6a, 0x00, 0x75, - 0x00, 0x72, 0x00, 0x69, 0x00, 0x73, 0x00, 0x64, 0x00, 0x69, 0x00, 0x63, - 0x00, 0x74, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x2e, - 0x00, 0x41, 0x00, 0x73, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x64, - 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x72, - 0x00, 0x70, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x44, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x69, - 0x00, 0x64, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, - 0x00, 0x68, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x61, 0x00, 0x6e, 0x00, 0x69, - 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6e, - 0x00, 0x73, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, - 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, - 0x00, 0x66, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0x64, - 0x00, 0x65, 0x00, 0x73, 0x00, 0x69, 0x00, 0x67, 0x00, 0x6e, 0x00, 0x65, - 0x00, 0x64, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x20, - 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, - 0x00, 0x6e, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, - 0x00, 0x63, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6e, - 0x00, 0x64, 0x00, 0x20, 0x00, 0x65, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x63, - 0x00, 0x74, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x69, 0x00, 0x63, - 0x00, 0x20, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x6d, 0x00, 0x75, - 0x00, 0x6e, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x2e, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, - 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, - 0x00, 0x77, 0x00, 0x2e, 0x00, 0x61, 0x00, 0x73, 0x00, 0x63, 0x00, 0x65, - 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, 0x00, 0x63, 0x00, 0x6f, - 0x00, 0x72, 0x00, 0x70, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, - 0x00, 0x2f, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, - 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, - 0x00, 0x61, 0x00, 0x73, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x64, - 0x00, 0x65, 0x00, 0x72, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x70, - 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, 0x00, 0x74, - 0x00, 0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x64, 0x00, 0x65, 0x00, 0x73, - 0x00, 0x69, 0x00, 0x67, 0x00, 0x6e, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, - 0x00, 0x2e, 0x00, 0x68, 0x00, 0x74, 0x00, 0x6d, 0x00, 0x6c, 0x00, 0x4c, - 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, - 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65, - 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, - 0x00, 0x41, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x65, - 0x00, 0x20, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, - 0x00, 0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, - 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, - 0x00, 0x32, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, - 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, - 0x00, 0x77, 0x00, 0x2e, 0x00, 0x61, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, - 0x00, 0x68, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, - 0x00, 0x2f, 0x00, 0x6c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, - 0x00, 0x73, 0x00, 0x65, 0x00, 0x73, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x49, - 0x00, 0x43, 0x00, 0x45, 0x00, 0x4e, 0x00, 0x53, 0x00, 0x45, 0x00, 0x2d, - 0x00, 0x32, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xff, 0x66, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x03, 0x82, 0x00, 0x00, 0x01, 0x02, 0x00, 0x02, - 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, - 0x00, 0x09, 0x00, 0x0a, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x0e, - 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, - 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1a, - 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x20, - 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, - 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2a, 0x00, 0x2b, 0x00, 0x2c, - 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, - 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, - 0x00, 0x39, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3c, 0x00, 0x3d, 0x00, 0x3e, - 0x00, 0x3f, 0x00, 0x40, 0x00, 0x41, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44, - 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a, - 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50, - 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, - 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x5b, 0x00, 0x5c, - 0x00, 0x5d, 0x00, 0x5e, 0x00, 0x5f, 0x00, 0x60, 0x00, 0x61, 0x00, 0xac, - 0x00, 0xa3, 0x00, 0x84, 0x00, 0x85, 0x00, 0xbd, 0x00, 0x96, 0x00, 0xe8, - 0x00, 0x86, 0x00, 0x8e, 0x00, 0x8b, 0x00, 0x9d, 0x00, 0xa9, 0x00, 0xa4, - 0x01, 0x03, 0x00, 0x8a, 0x01, 0x04, 0x00, 0x83, 0x00, 0x93, 0x00, 0xf2, - 0x00, 0xf3, 0x00, 0x8d, 0x00, 0x97, 0x00, 0x88, 0x01, 0x05, 0x00, 0xde, - 0x00, 0xf1, 0x00, 0x9e, 0x00, 0xaa, 0x00, 0xf5, 0x00, 0xf4, 0x00, 0xf6, - 0x00, 0xa2, 0x00, 0xad, 0x00, 0xc9, 0x00, 0xc7, 0x00, 0xae, 0x00, 0x62, - 0x00, 0x63, 0x00, 0x90, 0x00, 0x64, 0x00, 0xcb, 0x00, 0x65, 0x00, 0xc8, - 0x00, 0xca, 0x00, 0xcf, 0x00, 0xcc, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xe9, - 0x00, 0x66, 0x00, 0xd3, 0x00, 0xd0, 0x00, 0xd1, 0x00, 0xaf, 0x00, 0x67, - 0x00, 0xf0, 0x00, 0x91, 0x00, 0xd6, 0x00, 0xd4, 0x00, 0xd5, 0x00, 0x68, - 0x00, 0xeb, 0x00, 0xed, 0x00, 0x89, 0x00, 0x6a, 0x00, 0x69, 0x00, 0x6b, - 0x00, 0x6d, 0x00, 0x6c, 0x00, 0x6e, 0x00, 0xa0, 0x00, 0x6f, 0x00, 0x71, - 0x00, 0x70, 0x00, 0x72, 0x00, 0x73, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, - 0x00, 0x77, 0x00, 0xea, 0x00, 0x78, 0x00, 0x7a, 0x00, 0x79, 0x00, 0x7b, - 0x00, 0x7d, 0x00, 0x7c, 0x00, 0xb8, 0x00, 0xa1, 0x00, 0x7f, 0x00, 0x7e, - 0x00, 0x80, 0x00, 0x81, 0x00, 0xec, 0x00, 0xee, 0x00, 0xba, 0x01, 0x06, - 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x01, 0x0a, 0x01, 0x0b, 0x00, 0xfd, - 0x00, 0xfe, 0x01, 0x0c, 0x01, 0x0d, 0x01, 0x0e, 0x01, 0x0f, 0x00, 0xff, - 0x01, 0x00, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12, 0x01, 0x13, 0x01, 0x14, - 0x01, 0x15, 0x01, 0x16, 0x01, 0x17, 0x01, 0x18, 0x01, 0x19, 0x01, 0x1a, - 0x01, 0x1b, 0x01, 0x1c, 0x01, 0x1d, 0x01, 0x1e, 0x01, 0x1f, 0x00, 0xf8, - 0x00, 0xf9, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x01, 0x24, - 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, 0x01, 0x2a, - 0x01, 0x2b, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x2e, 0x01, 0x2f, 0x01, 0x30, - 0x00, 0xd7, 0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, - 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3b, - 0x01, 0x3c, 0x01, 0x3d, 0x01, 0x3e, 0x01, 0x3f, 0x00, 0xe2, 0x00, 0xe3, - 0x01, 0x40, 0x01, 0x41, 0x01, 0x42, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, - 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4a, 0x01, 0x4b, - 0x01, 0x4c, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0xb0, 0x00, 0xb1, 0x01, 0x4f, - 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53, 0x01, 0x54, 0x01, 0x55, - 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x00, 0xfb, 0x00, 0xfc, 0x00, 0xe4, - 0x00, 0xe5, 0x01, 0x59, 0x01, 0x5a, 0x01, 0x5b, 0x01, 0x5c, 0x01, 0x5d, - 0x01, 0x5e, 0x01, 0x5f, 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, - 0x01, 0x64, 0x01, 0x65, 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, - 0x01, 0x6a, 0x01, 0x6b, 0x01, 0x6c, 0x01, 0x6d, 0x01, 0x6e, 0x00, 0xbb, - 0x01, 0x6f, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x00, 0xe6, 0x00, 0xe7, - 0x01, 0x73, 0x00, 0xa6, 0x01, 0x74, 0x01, 0x75, 0x01, 0x76, 0x01, 0x77, - 0x01, 0x78, 0x01, 0x79, 0x01, 0x7a, 0x01, 0x7b, 0x00, 0xd8, 0x00, 0xe1, - 0x01, 0x7c, 0x00, 0xdb, 0x00, 0xdc, 0x00, 0xdd, 0x00, 0xe0, 0x00, 0xd9, - 0x00, 0xdf, 0x01, 0x7d, 0x01, 0x7e, 0x01, 0x7f, 0x01, 0x80, 0x01, 0x81, - 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, - 0x01, 0x88, 0x01, 0x89, 0x01, 0x8a, 0x01, 0x8b, 0x01, 0x8c, 0x01, 0x8d, - 0x01, 0x8e, 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91, 0x01, 0x92, 0x01, 0x93, - 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, - 0x01, 0x9a, 0x01, 0x9b, 0x01, 0x9c, 0x01, 0x9d, 0x01, 0x9e, 0x01, 0x9f, - 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x01, 0xa3, 0x01, 0xa4, 0x01, 0xa5, - 0x01, 0xa6, 0x01, 0xa7, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xaa, 0x01, 0xab, - 0x01, 0xac, 0x01, 0xad, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xb0, 0x01, 0xb1, - 0x01, 0xb2, 0x01, 0xb3, 0x01, 0xb4, 0x01, 0xb5, 0x00, 0x9b, 0x01, 0xb6, - 0x01, 0xb7, 0x01, 0xb8, 0x01, 0xb9, 0x01, 0xba, 0x01, 0xbb, 0x01, 0xbc, - 0x01, 0xbd, 0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc0, 0x01, 0xc1, 0x01, 0xc2, - 0x01, 0xc3, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xc6, 0x01, 0xc7, 0x01, 0xc8, - 0x01, 0xc9, 0x01, 0xca, 0x01, 0xcb, 0x01, 0xcc, 0x01, 0xcd, 0x01, 0xce, - 0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd4, - 0x01, 0xd5, 0x01, 0xd6, 0x01, 0xd7, 0x01, 0xd8, 0x01, 0xd9, 0x01, 0xda, - 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, 0x01, 0xdf, 0x01, 0xe0, - 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe6, - 0x01, 0xe7, 0x01, 0xe8, 0x01, 0xe9, 0x01, 0xea, 0x01, 0xeb, 0x01, 0xec, - 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1, 0x01, 0xf2, - 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, - 0x01, 0xf9, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc, 0x01, 0xfd, 0x01, 0xfe, - 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, - 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, - 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x0d, 0x02, 0x0e, 0x02, 0x0f, 0x02, 0x10, - 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, - 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, 0x02, 0x1b, 0x02, 0x1c, - 0x02, 0x1d, 0x02, 0x1e, 0x02, 0x1f, 0x02, 0x20, 0x02, 0x21, 0x02, 0x22, - 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, - 0x02, 0x29, 0x00, 0xb2, 0x00, 0xb3, 0x02, 0x2a, 0x02, 0x2b, 0x00, 0xb6, - 0x00, 0xb7, 0x00, 0xc4, 0x02, 0x2c, 0x00, 0xb4, 0x00, 0xb5, 0x00, 0xc5, - 0x00, 0x82, 0x00, 0xc2, 0x00, 0x87, 0x00, 0xab, 0x00, 0xc6, 0x02, 0x2d, - 0x02, 0x2e, 0x00, 0xbe, 0x00, 0xbf, 0x02, 0x2f, 0x00, 0xbc, 0x02, 0x30, - 0x00, 0xf7, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, - 0x02, 0x36, 0x00, 0x8c, 0x00, 0x9f, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, - 0x02, 0x3a, 0x02, 0x3b, 0x00, 0x98, 0x02, 0x3c, 0x00, 0x9a, 0x00, 0x99, - 0x00, 0xef, 0x00, 0xa5, 0x00, 0x92, 0x00, 0x9c, 0x00, 0xa7, 0x00, 0x8f, - 0x00, 0x94, 0x00, 0x95, 0x00, 0xb9, 0x02, 0x3d, 0x02, 0x3e, 0x02, 0x3f, - 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, - 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, 0x02, 0x4a, 0x02, 0x4b, - 0x02, 0x4c, 0x02, 0x4d, 0x02, 0x4e, 0x02, 0x4f, 0x02, 0x50, 0x02, 0x51, - 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, - 0x02, 0x58, 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, - 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, - 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, - 0x02, 0x6a, 0x02, 0x6b, 0x02, 0x6c, 0x02, 0x6d, 0x02, 0x6e, 0x02, 0x6f, - 0x02, 0x70, 0x02, 0x71, 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, - 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, 0x02, 0x79, 0x02, 0x7a, 0x02, 0x7b, - 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, 0x02, 0x7f, 0x02, 0x80, 0x02, 0x81, - 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, - 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, 0x02, 0x8b, 0x02, 0x8c, 0x02, 0x8d, - 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, - 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, - 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, - 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2, 0x02, 0xa3, 0x02, 0xa4, 0x02, 0xa5, - 0x02, 0xa6, 0x02, 0xa7, 0x02, 0xa8, 0x02, 0xa9, 0x02, 0xaa, 0x02, 0xab, - 0x02, 0xac, 0x02, 0xad, 0x02, 0xae, 0x02, 0xaf, 0x02, 0xb0, 0x02, 0xb1, - 0x02, 0xb2, 0x02, 0xb3, 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb7, - 0x02, 0xb8, 0x02, 0xb9, 0x02, 0xba, 0x02, 0xbb, 0x02, 0xbc, 0x02, 0xbd, - 0x02, 0xbe, 0x02, 0xbf, 0x02, 0xc0, 0x02, 0xc1, 0x02, 0xc2, 0x02, 0xc3, - 0x02, 0xc4, 0x02, 0xc5, 0x02, 0xc6, 0x02, 0xc7, 0x02, 0xc8, 0x02, 0xc9, - 0x02, 0xca, 0x02, 0xcb, 0x02, 0xcc, 0x02, 0xcd, 0x02, 0xce, 0x02, 0xcf, - 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd2, 0x02, 0xd3, 0x02, 0xd4, 0x02, 0xd5, - 0x02, 0xd6, 0x02, 0xd7, 0x02, 0xd8, 0x02, 0xd9, 0x02, 0xda, 0x02, 0xdb, - 0x02, 0xdc, 0x02, 0xdd, 0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x02, 0xe1, - 0x02, 0xe2, 0x02, 0xe3, 0x02, 0xe4, 0x02, 0xe5, 0x02, 0xe6, 0x02, 0xe7, - 0x02, 0xe8, 0x02, 0xe9, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, - 0x02, 0xee, 0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x02, 0xf2, 0x02, 0xf3, - 0x02, 0xf4, 0x02, 0xf5, 0x02, 0xf6, 0x02, 0xf7, 0x02, 0xf8, 0x02, 0xf9, - 0x02, 0xfa, 0x02, 0xfb, 0x02, 0xfc, 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, - 0x03, 0x00, 0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, - 0x03, 0x06, 0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, - 0x03, 0x0c, 0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, 0x03, 0x10, 0x03, 0x11, - 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, 0x03, 0x15, 0x03, 0x16, 0x03, 0x17, - 0x03, 0x18, 0x03, 0x19, 0x03, 0x1a, 0x03, 0x1b, 0x03, 0x1c, 0x03, 0x1d, - 0x03, 0x1e, 0x03, 0x1f, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, - 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, - 0x03, 0x2a, 0x03, 0x2b, 0x03, 0x2c, 0x03, 0x2d, 0x03, 0x2e, 0x03, 0x2f, - 0x03, 0x30, 0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, - 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x03, 0x3b, - 0x03, 0x3c, 0x03, 0x3d, 0x03, 0x3e, 0x03, 0x3f, 0x03, 0x40, 0x03, 0x41, - 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, - 0x03, 0x48, 0x03, 0x49, 0x03, 0x4a, 0x03, 0x4b, 0x03, 0x4c, 0x03, 0x4d, - 0x03, 0x4e, 0x03, 0x4f, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, - 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x03, 0x58, 0x03, 0x59, - 0x03, 0x5a, 0x03, 0x5b, 0x03, 0x5c, 0x03, 0x5d, 0x03, 0x5e, 0x03, 0x5f, - 0x03, 0x60, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, - 0x03, 0x66, 0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6a, 0x03, 0x6b, - 0x03, 0x6c, 0x03, 0x6d, 0x03, 0x6e, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, - 0x03, 0x72, 0x03, 0x73, 0x03, 0x74, 0x03, 0x75, 0x03, 0x76, 0x03, 0x77, - 0x03, 0x78, 0x03, 0x79, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d, - 0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, - 0x03, 0x84, 0x03, 0x85, 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, - 0x03, 0x8a, 0x05, 0x2e, 0x6e, 0x75, 0x6c, 0x6c, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x30, 0x41, 0x44, 0x09, 0x6f, 0x76, 0x65, 0x72, 0x73, 0x63, 0x6f, - 0x72, 0x65, 0x0e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63, 0x65, 0x6e, - 0x74, 0x65, 0x72, 0x65, 0x64, 0x07, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f, - 0x6e, 0x07, 0x61, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x06, 0x41, 0x62, - 0x72, 0x65, 0x76, 0x65, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, - 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x61, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x0b, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x63, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x04, 0x43, 0x64, 0x6f, 0x74, 0x04, 0x63, 0x64, 0x6f, - 0x74, 0x06, 0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x64, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61, 0x74, 0x06, 0x64, - 0x63, 0x72, 0x6f, 0x61, 0x74, 0x07, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, - 0x6e, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x06, 0x45, 0x62, - 0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0a, - 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x0a, 0x65, - 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x45, 0x6f, - 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e, 0x65, - 0x6b, 0x06, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x65, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x0b, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x04, 0x47, 0x64, 0x6f, 0x74, 0x04, 0x67, 0x64, 0x6f, - 0x74, 0x0c, 0x47, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x0c, 0x67, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, - 0x65, 0x6e, 0x74, 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x04, 0x48, 0x62, 0x61, 0x72, 0x04, 0x68, 0x62, 0x61, - 0x72, 0x06, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x06, 0x69, 0x74, 0x69, - 0x6c, 0x64, 0x65, 0x07, 0x49, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, - 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x06, 0x49, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x49, 0x6f, - 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x69, 0x6f, 0x67, 0x6f, 0x6e, 0x65, - 0x6b, 0x0a, 0x49, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x02, 0x49, 0x4a, 0x02, 0x69, 0x6a, 0x0b, 0x4a, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0b, 0x6a, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x4b, 0x63, 0x6f, 0x6d, 0x6d, - 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x0c, 0x6b, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x0c, 0x6b, 0x67, 0x72, - 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x63, 0x06, 0x4c, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x06, 0x6c, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0c, - 0x4c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x0c, 0x6c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, - 0x74, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x6c, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x04, 0x4c, 0x64, 0x6f, 0x74, 0x04, 0x6c, 0x64, 0x6f, - 0x74, 0x06, 0x4e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6e, 0x61, 0x63, - 0x75, 0x74, 0x65, 0x0c, 0x4e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x0c, 0x6e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, - 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, - 0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x6e, 0x61, 0x70, 0x6f, - 0x73, 0x74, 0x72, 0x6f, 0x70, 0x68, 0x65, 0x03, 0x45, 0x6e, 0x67, 0x03, - 0x65, 0x6e, 0x67, 0x07, 0x4f, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, - 0x6f, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x06, 0x4f, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x06, 0x6f, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0d, 0x4f, 0x68, - 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x0d, - 0x6f, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, - 0x74, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x61, 0x63, - 0x75, 0x74, 0x65, 0x0c, 0x52, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x0c, 0x72, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, - 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x52, 0x63, 0x61, 0x72, 0x6f, 0x6e, - 0x06, 0x72, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x53, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x53, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0b, 0x73, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x54, 0x63, - 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x0c, 0x74, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, - 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x04, 0x54, 0x62, 0x61, 0x72, 0x04, 0x74, 0x62, 0x61, 0x72, 0x06, - 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x06, 0x75, 0x74, 0x69, 0x6c, 0x64, - 0x65, 0x07, 0x55, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6d, - 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x06, 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x55, 0x72, 0x69, 0x6e, - 0x67, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, 0x0d, 0x55, 0x68, 0x75, 0x6e, - 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x0d, 0x75, 0x68, - 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, - 0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x75, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x0b, 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x77, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x0b, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x06, 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x7a, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x5a, 0x64, 0x6f, 0x74, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x0a, 0x7a, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, - 0x65, 0x6e, 0x74, 0x05, 0x6c, 0x6f, 0x6e, 0x67, 0x73, 0x0a, 0x41, 0x72, - 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x61, 0x72, 0x69, - 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61, 0x63, - 0x75, 0x74, 0x65, 0x07, 0x61, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, - 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, - 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0c, - 0x53, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x0c, 0x73, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, - 0x74, 0x06, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x05, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x0d, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x0a, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x09, 0x61, 0x6e, 0x6f, 0x74, 0x65, 0x6c, 0x65, 0x69, - 0x61, 0x0c, 0x45, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x08, 0x45, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x09, - 0x49, 0x6f, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x4f, 0x6d, - 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x55, - 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0a, - 0x4f, 0x6d, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x11, 0x69, - 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x05, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x04, 0x42, - 0x65, 0x74, 0x61, 0x05, 0x47, 0x61, 0x6d, 0x6d, 0x61, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x33, 0x39, 0x34, 0x07, 0x45, 0x70, 0x73, 0x69, 0x6c, 0x6f, - 0x6e, 0x04, 0x5a, 0x65, 0x74, 0x61, 0x03, 0x45, 0x74, 0x61, 0x05, 0x54, - 0x68, 0x65, 0x74, 0x61, 0x04, 0x49, 0x6f, 0x74, 0x61, 0x05, 0x4b, 0x61, - 0x70, 0x70, 0x61, 0x06, 0x4c, 0x61, 0x6d, 0x62, 0x64, 0x61, 0x02, 0x4d, - 0x75, 0x02, 0x4e, 0x75, 0x02, 0x58, 0x69, 0x07, 0x4f, 0x6d, 0x69, 0x63, - 0x72, 0x6f, 0x6e, 0x02, 0x50, 0x69, 0x03, 0x52, 0x68, 0x6f, 0x05, 0x53, - 0x69, 0x67, 0x6d, 0x61, 0x03, 0x54, 0x61, 0x75, 0x07, 0x55, 0x70, 0x73, - 0x69, 0x6c, 0x6f, 0x6e, 0x03, 0x50, 0x68, 0x69, 0x03, 0x43, 0x68, 0x69, - 0x03, 0x50, 0x73, 0x69, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x41, 0x39, - 0x0c, 0x49, 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, - 0x73, 0x0f, 0x55, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, - 0x72, 0x65, 0x73, 0x69, 0x73, 0x0a, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x65, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, - 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x08, 0x65, 0x74, 0x61, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x09, 0x69, 0x6f, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, - 0x14, 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x05, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x04, 0x62, 0x65, 0x74, 0x61, 0x05, 0x67, 0x61, 0x6d, - 0x6d, 0x61, 0x05, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x07, 0x65, 0x70, 0x73, - 0x69, 0x6c, 0x6f, 0x6e, 0x04, 0x7a, 0x65, 0x74, 0x61, 0x03, 0x65, 0x74, - 0x61, 0x05, 0x74, 0x68, 0x65, 0x74, 0x61, 0x04, 0x69, 0x6f, 0x74, 0x61, - 0x05, 0x6b, 0x61, 0x70, 0x70, 0x61, 0x06, 0x6c, 0x61, 0x6d, 0x62, 0x64, - 0x61, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x42, 0x43, 0x02, 0x6e, 0x75, - 0x02, 0x78, 0x69, 0x07, 0x6f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x03, - 0x72, 0x68, 0x6f, 0x06, 0x73, 0x69, 0x67, 0x6d, 0x61, 0x31, 0x05, 0x73, - 0x69, 0x67, 0x6d, 0x61, 0x03, 0x74, 0x61, 0x75, 0x07, 0x75, 0x70, 0x73, - 0x69, 0x6c, 0x6f, 0x6e, 0x03, 0x70, 0x68, 0x69, 0x03, 0x63, 0x68, 0x69, - 0x03, 0x70, 0x73, 0x69, 0x05, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x0c, 0x69, - 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x0f, - 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, - 0x73, 0x69, 0x73, 0x0c, 0x6f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, - 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0a, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x32, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x31, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x32, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x33, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x35, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x35, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x35, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x37, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x38, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x39, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x36, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x36, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x36, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x34, 0x35, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x31, 0x37, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x31, 0x38, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x31, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x32, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x32, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x32, 0x32, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x32, 0x34, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x32, 0x35, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x32, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x32, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x32, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x32, 0x39, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x33, 0x30, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x33, 0x31, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x33, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x33, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x33, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x33, 0x35, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x33, 0x36, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x33, 0x37, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x33, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x33, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x34, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x31, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x32, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x33, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x34, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x34, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x34, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x37, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x38, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x34, 0x39, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x36, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x36, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x36, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x36, 0x38, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x36, 0x39, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x37, 0x30, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x37, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x37, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x37, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x37, 0x35, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x37, 0x36, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x37, 0x37, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x37, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x37, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x38, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x31, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x32, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x33, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x38, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x38, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x38, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x37, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x38, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x38, 0x39, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x39, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x39, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x39, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x33, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x34, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x35, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x30, 0x39, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x30, 0x39, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, - 0x37, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x39, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x30, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x31, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x31, 0x30, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x31, 0x30, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, - 0x30, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x35, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x36, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x37, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x31, 0x30, 0x31, 0x30, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, - 0x30, 0x31, 0x30, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, - 0x31, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x39, 0x33, - 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x30, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x38, 0x06, 0x57, 0x67, 0x72, - 0x61, 0x76, 0x65, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x57, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x09, 0x77, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x59, 0x67, 0x72, - 0x61, 0x76, 0x65, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x30, 0x30, 0x32, 0x30, 0x38, 0x0d, 0x75, 0x6e, 0x64, - 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x64, 0x62, 0x6c, 0x0d, 0x71, - 0x75, 0x6f, 0x74, 0x65, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, - 0x06, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6f, - 0x6e, 0x64, 0x09, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x64, 0x62, 0x6c, - 0x09, 0x6e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x09, 0x61, - 0x66, 0x69, 0x69, 0x30, 0x38, 0x39, 0x34, 0x31, 0x06, 0x70, 0x65, 0x73, - 0x65, 0x74, 0x61, 0x04, 0x45, 0x75, 0x72, 0x6f, 0x09, 0x61, 0x66, 0x69, - 0x69, 0x36, 0x31, 0x32, 0x34, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x36, - 0x31, 0x32, 0x38, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x36, 0x31, 0x33, - 0x35, 0x32, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, - 0x09, 0x6f, 0x6e, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0c, 0x74, - 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0b, - 0x66, 0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0c, - 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, - 0x05, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x42, - 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x42, 0x30, 0x32, 0x0d, 0x63, - 0x79, 0x72, 0x69, 0x6c, 0x6c, 0x69, 0x63, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x08, 0x64, 0x6f, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x6a, 0x10, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x0b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x0c, 0x7a, 0x65, 0x72, - 0x6f, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x0c, 0x66, 0x6f, - 0x75, 0x72, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x0c, 0x66, - 0x69, 0x76, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x0b, - 0x73, 0x69, 0x78, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x0d, - 0x73, 0x65, 0x76, 0x65, 0x6e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, - 0x72, 0x0d, 0x65, 0x69, 0x67, 0x68, 0x74, 0x73, 0x75, 0x70, 0x65, 0x72, - 0x69, 0x6f, 0x72, 0x0c, 0x6e, 0x69, 0x6e, 0x65, 0x73, 0x75, 0x70, 0x65, - 0x72, 0x69, 0x6f, 0x72, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x30, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x30, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x30, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x45, 0x46, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x46, 0x46, 0x46, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x46, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x33, 0x44, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x33, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x46, 0x34, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x46, 0x33, 0x09, 0x64, 0x61, 0x73, - 0x69, 0x61, 0x6f, 0x78, 0x69, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x42, - 0x30, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x42, 0x30, 0x34, 0x05, 0x4f, - 0x68, 0x6f, 0x72, 0x6e, 0x05, 0x6f, 0x68, 0x6f, 0x72, 0x6e, 0x05, 0x55, - 0x68, 0x6f, 0x72, 0x6e, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x33, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, - 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x33, 0x04, 0x68, - 0x6f, 0x6f, 0x6b, 0x08, 0x64, 0x6f, 0x74, 0x62, 0x65, 0x6c, 0x6f, 0x77, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x36, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x41, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x46, 0x13, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x63, 0x6f, 0x6d, 0x62, 0x13, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, - 0x12, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x68, - 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, 0x62, 0x13, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, - 0x6f, 0x6d, 0x62, 0x0e, 0x62, 0x72, 0x65, 0x76, 0x65, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x0e, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x0d, 0x62, 0x72, - 0x65, 0x76, 0x65, 0x68, 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, 0x62, 0x0e, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, - 0x6d, 0x62, 0x10, 0x63, 0x79, 0x72, 0x69, 0x6c, 0x6c, 0x69, 0x63, 0x68, - 0x6f, 0x6f, 0x6b, 0x6c, 0x65, 0x66, 0x74, 0x11, 0x63, 0x79, 0x72, 0x69, - 0x6c, 0x6c, 0x69, 0x63, 0x62, 0x69, 0x67, 0x68, 0x6f, 0x6f, 0x6b, 0x55, - 0x43, 0x11, 0x63, 0x79, 0x72, 0x69, 0x6c, 0x6c, 0x69, 0x63, 0x62, 0x69, - 0x67, 0x68, 0x6f, 0x6f, 0x6b, 0x4c, 0x43, 0x00, 0x00, 0x00, 0x00, 0x02, - 0x00, 0x05, 0x00, 0x02, 0xff, 0xff, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x0c, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, - 0x00, 0x00, 0x03, 0x81, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x1e, - 0x00, 0x2c, 0x00, 0x01, 0x6c, 0x61, 0x74, 0x6e, 0x00, 0x08, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, - 0x6b, 0x65, 0x72, 0x6e, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, - 0x00, 0x01, 0xa5, 0x3a, 0x00, 0x04, 0x00, 0x00, 0x01, 0xf0, 0x03, 0xea, - 0x03, 0xea, 0x07, 0x4c, 0x07, 0x5a, 0x08, 0xd4, 0x07, 0x5a, 0x09, 0x32, - 0x0a, 0xc0, 0x0b, 0x22, 0x0c, 0x10, 0x0d, 0x3e, 0x0e, 0x24, 0x0f, 0x0a, - 0x0f, 0xf0, 0x11, 0x7e, 0x12, 0xac, 0x13, 0x82, 0x14, 0xb0, 0x14, 0xde, - 0x19, 0x60, 0x19, 0xee, 0x1d, 0x90, 0x21, 0x36, 0x23, 0x68, 0x27, 0x82, - 0x07, 0x4c, 0x28, 0x68, 0x28, 0x68, 0x28, 0x6e, 0x28, 0x68, 0x28, 0x80, - 0x29, 0x1a, 0x29, 0x30, 0x29, 0x36, 0x28, 0x68, 0x28, 0x68, 0x29, 0x48, - 0x29, 0x56, 0x28, 0x6e, 0x29, 0xd4, 0x29, 0xea, 0x29, 0xea, 0x2a, 0x00, - 0x2a, 0xda, 0x2a, 0xf0, 0x07, 0x4c, 0x2b, 0xba, 0x2b, 0xc8, 0x2b, 0xd6, - 0x2e, 0x24, 0x2e, 0x24, 0x2b, 0xd6, 0x30, 0x66, 0x32, 0xac, 0x0b, 0x22, - 0x34, 0xfe, 0x35, 0xe4, 0x34, 0xfe, 0x34, 0xfe, 0x0e, 0x24, 0x0e, 0x24, - 0x0e, 0x24, 0x0e, 0x24, 0x36, 0xc2, 0x37, 0x44, 0x37, 0x44, 0x37, 0x44, - 0x37, 0x44, 0x37, 0x44, 0x11, 0x7e, 0x38, 0x9e, 0x38, 0x9e, 0x38, 0x9e, - 0x38, 0x9e, 0x39, 0xa8, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, - 0x28, 0x68, 0x28, 0x68, 0x29, 0x48, 0x28, 0x6e, 0x3e, 0x62, 0x3e, 0x62, - 0x3e, 0x62, 0x3e, 0x62, 0x3e, 0x6c, 0x3e, 0x7a, 0x3e, 0x7a, 0x3e, 0x7a, - 0x3e, 0x7a, 0x3e, 0x7a, 0x29, 0x48, 0x3e, 0x94, 0x3e, 0x94, 0x3e, 0x94, - 0x3e, 0x94, 0x3e, 0x9e, 0x40, 0x24, 0x09, 0x32, 0x28, 0x68, 0x09, 0x32, - 0x28, 0x68, 0x40, 0x42, 0x28, 0x68, 0x0b, 0x22, 0x28, 0x6e, 0x28, 0x6e, - 0x28, 0x6e, 0x0b, 0x22, 0x28, 0x6e, 0x41, 0xd4, 0x28, 0x68, 0x28, 0x68, - 0x28, 0x68, 0x42, 0x52, 0x28, 0x68, 0x28, 0x68, 0x0e, 0x24, 0x42, 0x58, - 0x0e, 0x24, 0x0f, 0x0a, 0x29, 0x36, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, - 0x41, 0xd4, 0x0f, 0xf0, 0x0f, 0xf0, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, - 0x11, 0x7e, 0x29, 0x48, 0x29, 0x48, 0x11, 0x7e, 0x29, 0x48, 0x29, 0x48, - 0x28, 0x6e, 0x28, 0x6e, 0x28, 0x6e, 0x43, 0x42, 0x28, 0x6e, 0x44, 0x4c, - 0x44, 0x4c, 0x41, 0xd4, 0x19, 0x60, 0x19, 0x60, 0x19, 0x60, 0x19, 0x60, - 0x1d, 0x90, 0x29, 0xea, 0x23, 0x68, 0x2a, 0xda, 0x48, 0xc2, 0x27, 0x82, - 0x27, 0x82, 0x4d, 0x38, 0x50, 0x4e, 0x09, 0x32, 0x28, 0x68, 0x28, 0x6e, - 0x51, 0x1c, 0x51, 0x4a, 0x51, 0x58, 0x51, 0x86, 0x52, 0x18, 0x52, 0x26, - 0x52, 0x8c, 0x53, 0xca, 0x54, 0x28, 0x55, 0xee, 0x58, 0xb8, 0x58, 0xda, - 0x59, 0xf4, 0x5a, 0x0a, 0x5a, 0xb4, 0x5d, 0xf2, 0x5e, 0x00, 0x5f, 0x1a, - 0x5f, 0xf4, 0x60, 0x9a, 0x64, 0x40, 0x64, 0xf6, 0x65, 0x20, 0x65, 0x7e, - 0x65, 0xb0, 0x65, 0xbe, 0x66, 0x70, 0x6a, 0x2a, 0x6a, 0x30, 0x28, 0x68, - 0x6a, 0x4a, 0x6a, 0x2a, 0x6a, 0x9c, 0x6a, 0xa2, 0x6a, 0xd0, 0x6a, 0xda, - 0x6b, 0x08, 0x28, 0x68, 0x6b, 0x7a, 0x6b, 0xbc, 0x6b, 0xe2, 0x6c, 0x18, - 0x6c, 0x36, 0x6c, 0x44, 0x6c, 0x5a, 0x6c, 0x44, 0x6c, 0x6c, 0x6c, 0x8a, - 0x6c, 0xc4, 0x6c, 0xd6, 0x29, 0x48, 0x6d, 0x2c, 0x6d, 0x3e, 0x29, 0x48, - 0x29, 0x48, 0x6d, 0x8c, 0x6e, 0x6e, 0x6f, 0x64, 0x72, 0xb6, 0x73, 0x34, - 0x73, 0x4a, 0x73, 0xb4, 0x74, 0x92, 0x75, 0x64, 0x76, 0x2a, 0x76, 0xa0, - 0x78, 0x56, 0x79, 0xf4, 0x7c, 0x1a, 0x7c, 0xc4, 0x7d, 0x4a, 0x7f, 0x88, - 0x80, 0x92, 0x81, 0x58, 0x81, 0xf2, 0x83, 0x24, 0x84, 0x7e, 0x85, 0x94, - 0x86, 0x9e, 0x8b, 0xe8, 0x8d, 0x76, 0x8e, 0x20, 0x8e, 0xda, 0x8f, 0x9c, - 0x90, 0x96, 0x91, 0x10, 0x91, 0x92, 0x92, 0x20, 0x92, 0x96, 0x92, 0xfc, - 0x93, 0x82, 0x94, 0x14, 0x94, 0x32, 0x94, 0x74, 0x94, 0xaa, 0x95, 0x2c, - 0x95, 0xa2, 0x96, 0x28, 0x96, 0xb2, 0x97, 0x00, 0x97, 0x5e, 0x98, 0x20, - 0x98, 0xb2, 0x99, 0x24, 0x99, 0x9a, 0x99, 0xf0, 0x9a, 0x4a, 0x28, 0x6e, - 0x9a, 0xb0, 0x9b, 0x22, 0x9b, 0x68, 0x28, 0x6e, 0x9b, 0xaa, 0x9b, 0xb8, - 0x28, 0x6e, 0x28, 0x6e, 0x9c, 0x2a, 0x9c, 0x34, 0x9c, 0xba, 0x9d, 0x38, - 0x9d, 0x3e, 0x9d, 0xb0, 0x9e, 0x26, 0x94, 0x14, 0x1d, 0x90, 0x29, 0xea, - 0x1d, 0x90, 0x29, 0xea, 0x1d, 0x90, 0x29, 0xea, 0x23, 0x68, 0x2a, 0xda, - 0xa1, 0x90, 0xa1, 0x90, 0xa1, 0x9e, 0xa1, 0x9e, 0x09, 0x32, 0x09, 0x32, - 0xa4, 0xac, 0xa4, 0xee, 0x94, 0x74, 0x83, 0x24, 0x98, 0x20, 0x91, 0x10, - 0x96, 0x28, 0x85, 0x94, 0x97, 0x00, 0x79, 0xf4, 0x79, 0xf4, 0x80, 0x92, - 0x94, 0xaa, 0x80, 0x92, 0x94, 0xaa, 0x83, 0x24, 0x96, 0x28, 0x84, 0x7e, - 0x83, 0x24, 0x96, 0x28, 0x8b, 0xe8, 0x98, 0x20, 0x8b, 0xe8, 0x98, 0x20, - 0x98, 0x20, 0x98, 0x20, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, - 0x83, 0x24, 0x98, 0x20, 0xa5, 0x30, 0x8e, 0xda, 0x99, 0x9a, 0x91, 0x10, - 0x96, 0x28, 0x84, 0x7e, 0x96, 0x28, 0x86, 0x9e, 0x97, 0x5e, 0x76, 0x2a, - 0x8e, 0xda, 0x99, 0x9a, 0x96, 0x28, 0x8e, 0xda, 0x99, 0x9a, 0x80, 0x92, - 0x94, 0xaa, 0x80, 0x92, 0x94, 0xaa, 0x80, 0x92, 0x94, 0xaa, 0x8e, 0xda, - 0x99, 0x9a, 0x86, 0x9e, 0x97, 0x5e, 0x76, 0x2a, 0x83, 0x24, 0x96, 0x28, - 0x85, 0x94, 0x97, 0x00, 0x86, 0x9e, 0x97, 0x5e, 0x86, 0x9e, 0x98, 0x20, - 0x86, 0x9e, 0x98, 0x20, 0x8e, 0xda, 0x99, 0x9a, 0x8e, 0xda, 0x99, 0x9a, - 0x8e, 0xda, 0x99, 0x9a, 0x76, 0x2a, 0x83, 0x24, 0x83, 0x24, 0x73, 0x4a, - 0x80, 0x92, 0x94, 0xaa, 0x76, 0x2a, 0x8e, 0xda, 0x99, 0x9a, 0x8e, 0xda, - 0x99, 0x9a, 0x8e, 0xda, 0x99, 0x9a, 0x73, 0x4a, 0x79, 0xf4, 0x79, 0xf4, - 0x94, 0x74, 0x94, 0x74, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, - 0x80, 0x92, 0x94, 0xaa, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, 0x83, 0x24, - 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, - 0x96, 0x28, 0x8b, 0xe8, 0x98, 0x20, 0x8b, 0xe8, 0x98, 0x20, 0x8b, 0xe8, - 0x98, 0x20, 0x86, 0x9e, 0x97, 0x5e, 0x86, 0x9e, 0x97, 0x5e, 0x8e, 0xda, - 0x99, 0x9a, 0x80, 0x92, 0x94, 0xaa, 0x83, 0x24, 0x96, 0x28, 0x8b, 0xe8, - 0x96, 0x28, 0x8e, 0xda, 0x99, 0x9a, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, - 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, 0x83, 0x24, 0x96, 0x28, 0x85, 0x94, - 0x97, 0x00, 0x8e, 0xda, 0x99, 0x9a, 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, - 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, - 0x09, 0x32, 0x09, 0x32, 0x09, 0x32, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, - 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, 0x28, 0x68, 0x0e, 0x24, - 0x0e, 0x24, 0x11, 0x7e, 0x29, 0x48, 0x11, 0x7e, 0x29, 0x48, 0x11, 0x7e, - 0x29, 0x48, 0x11, 0x7e, 0x29, 0x48, 0x11, 0x7e, 0x29, 0x48, 0x11, 0x7e, - 0x29, 0x48, 0x11, 0x7e, 0x29, 0x48, 0xa4, 0xac, 0xa4, 0xac, 0xa4, 0xac, - 0xa4, 0xac, 0xa4, 0xac, 0x19, 0x60, 0x19, 0x60, 0xa4, 0xee, 0xa4, 0xee, - 0xa4, 0xee, 0xa4, 0xee, 0xa4, 0xee, 0x23, 0x68, 0x2a, 0xda, 0x23, 0x68, - 0x2a, 0xda, 0x23, 0x68, 0x2a, 0xda, 0x00, 0xd8, 0x00, 0x24, 0xff, 0xae, - 0x00, 0x2c, 0x00, 0x29, 0x00, 0x37, 0x00, 0x52, 0x00, 0x39, 0x00, 0x52, - 0x00, 0x3a, 0x00, 0x66, 0x00, 0x3b, 0x00, 0x29, 0x00, 0x3c, 0x00, 0x52, - 0x00, 0x3d, 0x00, 0x29, 0x00, 0x46, 0xff, 0xc3, 0x00, 0x47, 0xff, 0xc3, - 0x00, 0x48, 0xff, 0xc3, 0x00, 0x4a, 0xff, 0xd7, 0x00, 0x52, 0xff, 0xc3, - 0x00, 0x54, 0xff, 0xc3, 0x00, 0x57, 0x00, 0x29, 0x00, 0x59, 0x00, 0x29, - 0x00, 0x5a, 0x00, 0x14, 0x00, 0x5c, 0x00, 0x29, 0x00, 0x82, 0xff, 0xae, - 0x00, 0x83, 0xff, 0xae, 0x00, 0x84, 0xff, 0xae, 0x00, 0x85, 0xff, 0xae, - 0x00, 0x86, 0xff, 0xae, 0x00, 0x87, 0xff, 0xae, 0x00, 0x88, 0xff, 0x5c, - 0x00, 0x8e, 0x00, 0x29, 0x00, 0x8f, 0x00, 0x29, 0x00, 0x90, 0x00, 0x29, - 0x00, 0x91, 0x00, 0x29, 0x00, 0x9f, 0x00, 0x52, 0x00, 0xa8, 0xff, 0xc3, - 0x00, 0xa9, 0xff, 0xc3, 0x00, 0xaa, 0xff, 0xc3, 0x00, 0xab, 0xff, 0xc3, - 0x00, 0xac, 0xff, 0xc3, 0x00, 0xad, 0xff, 0xc3, 0x00, 0xb4, 0xff, 0xc3, - 0x00, 0xb5, 0xff, 0xc3, 0x00, 0xb6, 0xff, 0xc3, 0x00, 0xb7, 0xff, 0xc3, - 0x00, 0xb8, 0xff, 0xc3, 0x00, 0xba, 0xff, 0xc3, 0x00, 0xbf, 0x00, 0x29, - 0x00, 0xc1, 0x00, 0x29, 0x00, 0xc2, 0xff, 0xae, 0x00, 0xc4, 0xff, 0xae, - 0x00, 0xc6, 0xff, 0xae, 0x00, 0xc9, 0xff, 0xc3, 0x00, 0xcb, 0xff, 0xc3, - 0x00, 0xcd, 0xff, 0xc3, 0x00, 0xcf, 0xff, 0xc3, 0x00, 0xd5, 0xff, 0xc3, - 0x00, 0xd7, 0xff, 0xc3, 0x00, 0xd9, 0xff, 0xc3, 0x00, 0xdb, 0xff, 0xc3, - 0x00, 0xdd, 0xff, 0xc3, 0x00, 0xec, 0x00, 0x29, 0x00, 0xf0, 0x00, 0x29, - 0x00, 0xf2, 0x00, 0x29, 0x01, 0x0f, 0xff, 0xc3, 0x01, 0x11, 0xff, 0xc3, - 0x01, 0x13, 0xff, 0xc3, 0x01, 0x15, 0xff, 0xc3, 0x01, 0x24, 0x00, 0x52, - 0x01, 0x26, 0x00, 0x52, 0x01, 0x36, 0x00, 0x66, 0x01, 0x37, 0x00, 0x14, - 0x01, 0x38, 0x00, 0x52, 0x01, 0x39, 0x00, 0x29, 0x01, 0x3a, 0x00, 0x52, - 0x01, 0x3b, 0x00, 0x29, 0x01, 0x3d, 0x00, 0x29, 0x01, 0x3f, 0x00, 0x29, - 0x01, 0x43, 0xff, 0xae, 0x01, 0x5f, 0xff, 0xae, 0x01, 0x69, 0xff, 0xae, - 0x01, 0x71, 0x00, 0x52, 0x01, 0x79, 0xff, 0xc3, 0x01, 0x7e, 0xff, 0xc3, - 0x01, 0x80, 0x00, 0x29, 0x01, 0x82, 0xff, 0xc3, 0x01, 0x8a, 0x00, 0x29, - 0x01, 0x8c, 0xff, 0xc3, 0x01, 0x8e, 0xff, 0xc3, 0x01, 0x90, 0xff, 0xc3, - 0x01, 0x91, 0x00, 0x29, 0x01, 0x93, 0xff, 0xc3, 0x01, 0x94, 0x00, 0x29, - 0x01, 0x96, 0xff, 0xc3, 0x01, 0x99, 0xff, 0xc3, 0x01, 0x9b, 0xff, 0xc3, - 0x01, 0x9d, 0x00, 0x52, 0x01, 0xa4, 0xff, 0x9a, 0x01, 0xa6, 0x00, 0x52, - 0x01, 0xa8, 0x00, 0x3d, 0x01, 0xaa, 0xff, 0xae, 0x01, 0xae, 0xff, 0x85, - 0x01, 0xb0, 0x00, 0x3d, 0x01, 0xb1, 0x00, 0x14, 0x01, 0xb5, 0xff, 0x85, - 0x01, 0xbc, 0x00, 0x52, 0x01, 0xbd, 0x00, 0x3d, 0x01, 0xbf, 0x00, 0x29, - 0x01, 0xc4, 0x00, 0x52, 0x01, 0xcf, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0xc3, - 0x01, 0xdb, 0xff, 0xc3, 0x01, 0xdc, 0x00, 0x29, 0x01, 0xdd, 0x00, 0x29, - 0x01, 0xde, 0xff, 0xc3, 0x01, 0xea, 0xff, 0xc3, 0x01, 0xed, 0xff, 0xc3, - 0x01, 0xfa, 0x00, 0x66, 0x01, 0xfb, 0x00, 0x14, 0x01, 0xfc, 0x00, 0x66, - 0x01, 0xfd, 0x00, 0x14, 0x01, 0xfe, 0x00, 0x66, 0x01, 0xff, 0x00, 0x14, - 0x02, 0x00, 0x00, 0x52, 0x02, 0x01, 0x00, 0x29, 0x02, 0x28, 0xff, 0xae, - 0x02, 0x58, 0xff, 0xae, 0x02, 0x60, 0xff, 0xc3, 0x02, 0x6a, 0xff, 0xc3, - 0x02, 0x6d, 0x00, 0x29, 0x02, 0x72, 0xff, 0xae, 0x02, 0x76, 0x00, 0x3d, - 0x02, 0x7f, 0xff, 0xc3, 0x02, 0x81, 0x00, 0x29, 0x02, 0x83, 0x00, 0x29, - 0x02, 0x85, 0xff, 0xc3, 0x02, 0x87, 0xff, 0xc3, 0x02, 0x89, 0xff, 0xc3, - 0x02, 0x8b, 0x00, 0x29, 0x02, 0x8d, 0xff, 0xc3, 0x02, 0x9f, 0x00, 0x3d, - 0x02, 0xa9, 0x00, 0x52, 0x02, 0xaa, 0x00, 0x29, 0x02, 0xb2, 0xff, 0xc3, - 0x02, 0xb4, 0xff, 0xc3, 0x02, 0xb5, 0x00, 0x52, 0x02, 0xb6, 0x00, 0x29, - 0x02, 0xb7, 0x00, 0x52, 0x02, 0xb8, 0x00, 0x29, 0x02, 0xb9, 0x00, 0x52, - 0x02, 0xba, 0x00, 0x29, 0x02, 0xbb, 0x00, 0x3d, 0x02, 0xbd, 0x00, 0x52, - 0x02, 0xca, 0x00, 0x3d, 0x02, 0xce, 0xff, 0x85, 0x02, 0xd9, 0xff, 0xae, - 0x02, 0xdb, 0xff, 0xae, 0x02, 0xdd, 0xff, 0xae, 0x02, 0xe0, 0xff, 0xc3, - 0x02, 0xe5, 0x00, 0x3d, 0x02, 0xf0, 0xff, 0xc3, 0x02, 0xf2, 0xff, 0xc3, - 0x02, 0xf4, 0xff, 0xc3, 0x02, 0xf7, 0x00, 0x3d, 0x02, 0xf8, 0x00, 0x29, - 0x02, 0xf9, 0x00, 0x3d, 0x02, 0xfa, 0x00, 0x29, 0x02, 0xfb, 0x00, 0x3d, - 0x02, 0xfc, 0x00, 0x29, 0x03, 0x05, 0x00, 0x3d, 0x03, 0x07, 0x00, 0x3d, - 0x03, 0x0a, 0xff, 0xc3, 0x03, 0x0c, 0xff, 0xc3, 0x03, 0x0e, 0x00, 0x29, - 0x03, 0x10, 0x00, 0x29, 0x03, 0x11, 0xff, 0x85, 0x03, 0x16, 0xff, 0xc3, - 0x03, 0x17, 0x00, 0x52, 0x03, 0x18, 0x00, 0x29, 0x03, 0x1a, 0xff, 0xc3, - 0x03, 0x1b, 0xff, 0x85, 0x03, 0x1d, 0xff, 0xae, 0x03, 0x1f, 0xff, 0xae, - 0x03, 0x21, 0xff, 0xae, 0x03, 0x23, 0xff, 0xae, 0x03, 0x25, 0xff, 0xae, - 0x03, 0x27, 0xff, 0xae, 0x03, 0x29, 0xff, 0xae, 0x03, 0x2b, 0xff, 0xae, - 0x03, 0x2d, 0xff, 0xae, 0x03, 0x2f, 0xff, 0xae, 0x03, 0x31, 0xff, 0xae, - 0x03, 0x33, 0xff, 0xae, 0x03, 0x36, 0xff, 0xc3, 0x03, 0x38, 0xff, 0xc3, - 0x03, 0x3a, 0xff, 0xc3, 0x03, 0x3c, 0xff, 0xc3, 0x03, 0x3e, 0xff, 0xc3, - 0x03, 0x40, 0xff, 0xc3, 0x03, 0x42, 0xff, 0xc3, 0x03, 0x44, 0xff, 0xc3, - 0x03, 0x45, 0x00, 0x29, 0x03, 0x47, 0x00, 0x29, 0x03, 0x4a, 0xff, 0xc3, - 0x03, 0x4c, 0xff, 0xc3, 0x03, 0x4e, 0xff, 0xc3, 0x03, 0x50, 0xff, 0xc3, - 0x03, 0x52, 0xff, 0xc3, 0x03, 0x54, 0xff, 0xc3, 0x03, 0x56, 0xff, 0xc3, - 0x03, 0x58, 0xff, 0xc3, 0x03, 0x5a, 0xff, 0xc3, 0x03, 0x5c, 0xff, 0xc3, - 0x03, 0x5e, 0xff, 0xc3, 0x03, 0x60, 0xff, 0xc3, 0x03, 0x6f, 0x00, 0x52, - 0x03, 0x70, 0x00, 0x29, 0x03, 0x71, 0x00, 0x52, 0x03, 0x72, 0x00, 0x29, - 0x03, 0x73, 0x00, 0x52, 0x03, 0x74, 0x00, 0x29, 0x00, 0x03, 0x00, 0x2d, - 0x00, 0x7b, 0x00, 0xf6, 0x00, 0x7b, 0x01, 0xa3, 0x00, 0x7b, 0x00, 0x5e, - 0x00, 0x26, 0xff, 0xc3, 0x00, 0x2a, 0xff, 0xc3, 0x00, 0x32, 0xff, 0xc3, - 0x00, 0x34, 0xff, 0xc3, 0x00, 0x37, 0xff, 0x9a, 0x00, 0x38, 0xff, 0xd7, - 0x00, 0x39, 0xff, 0x9a, 0x00, 0x3a, 0xff, 0xae, 0x00, 0x3c, 0xff, 0x9a, - 0x00, 0x89, 0xff, 0xc3, 0x00, 0x94, 0xff, 0xc3, 0x00, 0x95, 0xff, 0xc3, - 0x00, 0x96, 0xff, 0xc3, 0x00, 0x97, 0xff, 0xc3, 0x00, 0x98, 0xff, 0xc3, - 0x00, 0x9a, 0xff, 0xc3, 0x00, 0x9b, 0xff, 0xd7, 0x00, 0x9c, 0xff, 0xd7, - 0x00, 0x9d, 0xff, 0xd7, 0x00, 0x9e, 0xff, 0xd7, 0x00, 0x9f, 0xff, 0x9a, - 0x00, 0xc8, 0xff, 0xc3, 0x00, 0xce, 0xff, 0xc3, 0x00, 0xde, 0xff, 0xc3, - 0x00, 0xe0, 0xff, 0xc3, 0x00, 0xe2, 0xff, 0xc3, 0x00, 0xe4, 0xff, 0xc3, - 0x01, 0x0e, 0xff, 0xc3, 0x01, 0x12, 0xff, 0xc3, 0x01, 0x24, 0xff, 0x9a, - 0x01, 0x26, 0xff, 0x9a, 0x01, 0x2c, 0xff, 0xd7, 0x01, 0x30, 0xff, 0xd7, - 0x01, 0x32, 0xff, 0xd7, 0x01, 0x34, 0xff, 0xd7, 0x01, 0x36, 0xff, 0xae, - 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x66, 0xff, 0xc3, - 0x01, 0x6d, 0xff, 0xc3, 0x01, 0x71, 0xff, 0x9a, 0x01, 0xb8, 0xff, 0xc3, - 0x01, 0xbb, 0xff, 0xc3, 0x01, 0xbc, 0xff, 0x9a, 0x01, 0xfa, 0xff, 0xae, - 0x01, 0xfc, 0xff, 0xae, 0x01, 0xfe, 0xff, 0xae, 0x02, 0x00, 0xff, 0x9a, - 0x02, 0x5f, 0xff, 0xc3, 0x02, 0x61, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xc3, - 0x02, 0x7e, 0xff, 0xc3, 0x02, 0x84, 0xff, 0xc3, 0x02, 0x86, 0xff, 0xc3, - 0x02, 0x88, 0xff, 0xc3, 0x02, 0x8a, 0xff, 0xc3, 0x02, 0x8c, 0xff, 0xc3, - 0x02, 0xa9, 0xff, 0x9a, 0x02, 0xb1, 0xff, 0xc3, 0x02, 0xb3, 0xff, 0xc3, - 0x02, 0xb5, 0xff, 0x9a, 0x02, 0xb7, 0xff, 0x9a, 0x02, 0xb9, 0xff, 0x9a, - 0x02, 0xbd, 0xff, 0x9a, 0x02, 0xe1, 0xff, 0xc3, 0x02, 0xe3, 0xff, 0xc3, - 0x02, 0xef, 0xff, 0xc3, 0x02, 0xf1, 0xff, 0xc3, 0x02, 0xf3, 0xff, 0xc3, - 0x03, 0x15, 0xff, 0xc3, 0x03, 0x17, 0xff, 0x9a, 0x03, 0x19, 0xff, 0xc3, - 0x03, 0x49, 0xff, 0xc3, 0x03, 0x4b, 0xff, 0xc3, 0x03, 0x4d, 0xff, 0xc3, - 0x03, 0x4f, 0xff, 0xc3, 0x03, 0x51, 0xff, 0xc3, 0x03, 0x53, 0xff, 0xc3, - 0x03, 0x55, 0xff, 0xc3, 0x03, 0x57, 0xff, 0xc3, 0x03, 0x59, 0xff, 0xc3, - 0x03, 0x5b, 0xff, 0xc3, 0x03, 0x5d, 0xff, 0xc3, 0x03, 0x5f, 0xff, 0xc3, - 0x03, 0x61, 0xff, 0xd7, 0x03, 0x63, 0xff, 0xd7, 0x03, 0x65, 0xff, 0xd7, - 0x03, 0x67, 0xff, 0xd7, 0x03, 0x69, 0xff, 0xd7, 0x03, 0x6b, 0xff, 0xd7, - 0x03, 0x6d, 0xff, 0xd7, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, - 0x03, 0x73, 0xff, 0x9a, 0x00, 0x17, 0x00, 0x37, 0xff, 0x9a, 0x01, 0x71, - 0xff, 0x9a, 0x01, 0x72, 0xff, 0xc3, 0x01, 0xb0, 0xff, 0xd7, 0x01, 0xb5, - 0xff, 0xd7, 0x01, 0xbc, 0xff, 0x9a, 0x01, 0xc4, 0xff, 0xae, 0x02, 0x76, - 0xff, 0xd7, 0x02, 0x9f, 0xff, 0xd7, 0x02, 0xa9, 0xff, 0x9a, 0x02, 0xb5, - 0xff, 0x9a, 0x02, 0xb7, 0xff, 0x9a, 0x02, 0xb9, 0xff, 0x9a, 0x02, 0xbb, - 0xff, 0xd7, 0x02, 0xbd, 0xff, 0x9a, 0x02, 0xca, 0xff, 0xd7, 0x02, 0xce, - 0xff, 0xd7, 0x02, 0xe5, 0xff, 0xd7, 0x03, 0x05, 0xff, 0xd7, 0x03, 0x07, - 0xff, 0xd7, 0x03, 0x11, 0xff, 0xd7, 0x03, 0x17, 0xff, 0x9a, 0x03, 0x1b, - 0xff, 0xd7, 0x00, 0x63, 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, - 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, - 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, - 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, - 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, - 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, - 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, - 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, - 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, - 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, - 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, - 0x01, 0x36, 0xff, 0xd7, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, - 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, - 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, - 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfc, 0xff, 0xd7, 0x01, 0xfe, 0xff, 0xd7, - 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, - 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, - 0x02, 0x7e, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, - 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, - 0x02, 0xa9, 0xff, 0x85, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, - 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, - 0x02, 0xbd, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, - 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, - 0x03, 0x15, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x19, 0xff, 0xec, - 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, - 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, - 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, - 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, - 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, - 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, - 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, - 0x03, 0x73, 0xff, 0x9a, 0x00, 0x18, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x37, - 0xff, 0xec, 0x00, 0x39, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xec, 0x00, 0x3c, - 0xff, 0xec, 0x00, 0x9f, 0xff, 0xec, 0x01, 0x24, 0xff, 0xec, 0x01, 0x26, - 0xff, 0xec, 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xec, 0x01, 0x71, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0xec, 0x02, 0x00, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0xec, 0x02, 0xb5, 0xff, 0xec, 0x02, 0xb7, 0xff, 0xec, 0x02, 0xb9, - 0xff, 0xec, 0x02, 0xbd, 0xff, 0xec, 0x03, 0x17, 0xff, 0xec, 0x03, 0x45, - 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xec, 0x03, 0x71, - 0xff, 0xec, 0x03, 0x73, 0xff, 0xec, 0x00, 0x3b, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x00, 0x0c, 0x00, 0x29, 0x00, 0x26, 0xff, 0xd7, - 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, - 0x00, 0x40, 0x00, 0x29, 0x00, 0x60, 0x00, 0x29, 0x00, 0x89, 0xff, 0xd7, - 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, - 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, - 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, 0x00, 0xde, 0xff, 0xd7, - 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, - 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xd7, - 0x01, 0x6d, 0xff, 0xd7, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, - 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xd7, - 0x02, 0x86, 0xff, 0xd7, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x8a, 0xff, 0xd7, - 0x02, 0x8c, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, - 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, - 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf3, 0xff, 0xd7, 0x03, 0x15, 0xff, 0xd7, - 0x03, 0x19, 0xff, 0xd7, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, - 0x03, 0x4d, 0xff, 0xd7, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, - 0x03, 0x53, 0xff, 0xd7, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, - 0x03, 0x59, 0xff, 0xd7, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, - 0x03, 0x5f, 0xff, 0xd7, 0x00, 0x4b, 0x00, 0x0f, 0xff, 0xc3, 0x00, 0x11, - 0xff, 0xc3, 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x37, - 0xff, 0xc3, 0x00, 0x39, 0xff, 0xec, 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, - 0xff, 0xec, 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x82, - 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, - 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0x88, - 0xff, 0xc3, 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, 0x00, 0x90, - 0xff, 0xec, 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, 0x00, 0xc2, - 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x00, 0xec, - 0xff, 0xec, 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, 0xff, 0xec, 0x01, 0x24, - 0xff, 0xc3, 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, 0x01, 0x38, - 0xff, 0xd7, 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, - 0xff, 0xec, 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x5f, - 0xff, 0xec, 0x01, 0x69, 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0xaa, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, - 0xff, 0xec, 0x01, 0xfe, 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, - 0xff, 0xec, 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0xc3, 0x02, 0xb5, 0xff, 0xc3, 0x02, 0xb7, 0xff, 0xc3, 0x02, 0xb9, - 0xff, 0xc3, 0x02, 0xbd, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, - 0xff, 0xec, 0x02, 0xdd, 0xff, 0xec, 0x03, 0x17, 0xff, 0xc3, 0x03, 0x1d, - 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, 0x03, 0x23, - 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, 0x03, 0x29, - 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2f, - 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, 0x03, 0x45, - 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x71, - 0xff, 0xd7, 0x03, 0x73, 0xff, 0xd7, 0x00, 0x39, 0x00, 0x05, 0x00, 0x3d, - 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x0c, 0x00, 0x29, 0x00, 0x0f, 0xff, 0x9a, - 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, 0x00, 0x24, 0xff, 0xd7, - 0x00, 0x39, 0x00, 0x14, 0x00, 0x3a, 0x00, 0x14, 0x00, 0x3c, 0x00, 0x14, - 0x00, 0x40, 0x00, 0x29, 0x00, 0x60, 0x00, 0x29, 0x00, 0x82, 0xff, 0xd7, - 0x00, 0x83, 0xff, 0xd7, 0x00, 0x84, 0xff, 0xd7, 0x00, 0x85, 0xff, 0xd7, - 0x00, 0x86, 0xff, 0xd7, 0x00, 0x87, 0xff, 0xd7, 0x00, 0x88, 0xff, 0xc3, - 0x00, 0x9f, 0x00, 0x14, 0x00, 0xc2, 0xff, 0xd7, 0x00, 0xc4, 0xff, 0xd7, - 0x00, 0xc6, 0xff, 0xd7, 0x01, 0x36, 0x00, 0x14, 0x01, 0x38, 0x00, 0x14, - 0x01, 0x3a, 0x00, 0x14, 0x01, 0x43, 0xff, 0xd7, 0x01, 0x5f, 0xff, 0xd7, - 0x01, 0x69, 0xff, 0xd7, 0x01, 0xaa, 0xff, 0xd7, 0x01, 0xfa, 0x00, 0x14, - 0x01, 0xfc, 0x00, 0x14, 0x01, 0xfe, 0x00, 0x14, 0x02, 0x00, 0x00, 0x14, - 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x28, 0xff, 0xd7, - 0x02, 0x58, 0xff, 0xd7, 0x02, 0x72, 0xff, 0xd7, 0x02, 0xd9, 0xff, 0xd7, - 0x02, 0xdb, 0xff, 0xd7, 0x02, 0xdd, 0xff, 0xd7, 0x03, 0x1d, 0xff, 0xd7, - 0x03, 0x1f, 0xff, 0xd7, 0x03, 0x21, 0xff, 0xd7, 0x03, 0x23, 0xff, 0xd7, - 0x03, 0x25, 0xff, 0xd7, 0x03, 0x27, 0xff, 0xd7, 0x03, 0x29, 0xff, 0xd7, - 0x03, 0x2b, 0xff, 0xd7, 0x03, 0x2d, 0xff, 0xd7, 0x03, 0x2f, 0xff, 0xd7, - 0x03, 0x31, 0xff, 0xd7, 0x03, 0x33, 0xff, 0xd7, 0x03, 0x6f, 0x00, 0x14, - 0x03, 0x71, 0x00, 0x14, 0x03, 0x73, 0x00, 0x14, 0x00, 0x39, 0x00, 0x05, - 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, - 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, - 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, - 0xff, 0xec, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0xb8, - 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, - 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x00, 0x39, - 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xd7, - 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, - 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, - 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, - 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, - 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, - 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, - 0x01, 0x14, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, 0xff, 0xd7, - 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xd7, - 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x86, 0xff, 0xd7, - 0x02, 0x88, 0xff, 0xd7, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xd7, - 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xe1, 0xff, 0xd7, - 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf1, 0xff, 0xd7, - 0x02, 0xf3, 0xff, 0xd7, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, - 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xd7, - 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xd7, - 0x03, 0x55, 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xd7, - 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xd7, - 0x00, 0x63, 0x00, 0x05, 0xff, 0x9a, 0x00, 0x0a, 0xff, 0x9a, 0x00, 0x26, - 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, - 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, - 0xff, 0xae, 0x00, 0x3a, 0xff, 0xc3, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, - 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, 0x01, 0x24, - 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, - 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, - 0xff, 0xc3, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0xb8, - 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xfa, - 0xff, 0xc3, 0x01, 0xfc, 0xff, 0xc3, 0x01, 0xfe, 0xff, 0xc3, 0x02, 0x00, - 0xff, 0x9a, 0x02, 0x07, 0xff, 0x9a, 0x02, 0x0b, 0xff, 0x9a, 0x02, 0x5f, - 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xb5, - 0xff, 0x85, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbd, - 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, - 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x03, 0x15, - 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x61, - 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, - 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, - 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x73, - 0xff, 0x9a, 0x00, 0x4b, 0x00, 0x0f, 0xff, 0xc3, 0x00, 0x11, 0xff, 0xc3, - 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x37, 0xff, 0xc3, - 0x00, 0x39, 0xff, 0xd7, 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xd7, - 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x82, 0xff, 0xec, - 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, - 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0x88, 0xff, 0xd7, - 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, 0x00, 0x90, 0xff, 0xec, - 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xec, - 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x00, 0xec, 0xff, 0xec, - 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, 0xff, 0xec, 0x01, 0x24, 0xff, 0xc3, - 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, 0x01, 0x38, 0xff, 0xd7, - 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, 0xff, 0xec, - 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x5f, 0xff, 0xec, - 0x01, 0x69, 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0xaa, 0xff, 0xec, - 0x01, 0xbc, 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, - 0x01, 0xfe, 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, - 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, 0x02, 0xa9, 0xff, 0xc3, - 0x02, 0xb5, 0xff, 0xc3, 0x02, 0xb7, 0xff, 0xc3, 0x02, 0xb9, 0xff, 0xc3, - 0x02, 0xbd, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, - 0x02, 0xdd, 0xff, 0xec, 0x03, 0x17, 0xff, 0xc3, 0x03, 0x1d, 0xff, 0xec, - 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, - 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, - 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, - 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, 0x03, 0x45, 0xff, 0xec, - 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x71, 0xff, 0xd7, - 0x03, 0x73, 0xff, 0xd7, 0x00, 0x35, 0x00, 0x0f, 0xff, 0x33, 0x00, 0x11, - 0xff, 0x33, 0x00, 0x24, 0xff, 0xae, 0x00, 0x26, 0xff, 0xec, 0x00, 0x3b, - 0xff, 0xec, 0x00, 0x3c, 0xff, 0xec, 0x00, 0x3d, 0xff, 0xd7, 0x00, 0x82, - 0xff, 0xae, 0x00, 0x83, 0xff, 0xae, 0x00, 0x84, 0xff, 0xae, 0x00, 0x85, - 0xff, 0xae, 0x00, 0x86, 0xff, 0xae, 0x00, 0x87, 0xff, 0xae, 0x00, 0x88, - 0xff, 0x71, 0x00, 0x89, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xec, 0x00, 0xc2, - 0xff, 0xae, 0x00, 0xc4, 0xff, 0xae, 0x00, 0xc6, 0xff, 0xae, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, - 0xff, 0xec, 0x01, 0x3b, 0xff, 0xd7, 0x01, 0x3d, 0xff, 0xd7, 0x01, 0x3f, - 0xff, 0xd7, 0x01, 0x43, 0xff, 0xae, 0x01, 0x5f, 0xff, 0xae, 0x01, 0x69, - 0xff, 0xae, 0x01, 0xaa, 0xff, 0xae, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x00, - 0xff, 0xec, 0x02, 0x28, 0xff, 0xae, 0x02, 0x58, 0xff, 0xae, 0x02, 0x72, - 0xff, 0xae, 0x02, 0xd9, 0xff, 0xae, 0x02, 0xdb, 0xff, 0xae, 0x02, 0xdd, - 0xff, 0xae, 0x03, 0x1d, 0xff, 0xae, 0x03, 0x1f, 0xff, 0xae, 0x03, 0x21, - 0xff, 0xae, 0x03, 0x23, 0xff, 0xae, 0x03, 0x25, 0xff, 0xae, 0x03, 0x27, - 0xff, 0xae, 0x03, 0x29, 0xff, 0xae, 0x03, 0x2b, 0xff, 0xae, 0x03, 0x2d, - 0xff, 0xae, 0x03, 0x2f, 0xff, 0xae, 0x03, 0x31, 0xff, 0xae, 0x03, 0x33, - 0xff, 0xae, 0x03, 0x6f, 0xff, 0xec, 0x03, 0x71, 0xff, 0xec, 0x03, 0x73, - 0xff, 0xec, 0x00, 0x4b, 0x00, 0x0f, 0xff, 0xc3, 0x00, 0x11, 0xff, 0xc3, - 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x37, 0xff, 0xc3, - 0x00, 0x39, 0xff, 0xd7, 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xd7, - 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x82, 0xff, 0xec, - 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, - 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0x88, 0xff, 0xc3, - 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, 0x00, 0x90, 0xff, 0xec, - 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xec, - 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x00, 0xec, 0xff, 0xec, - 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, 0xff, 0xec, 0x01, 0x24, 0xff, 0xc3, - 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, 0x01, 0x38, 0xff, 0xd7, - 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, 0xff, 0xec, - 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x5f, 0xff, 0xec, - 0x01, 0x69, 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0xaa, 0xff, 0xec, - 0x01, 0xbc, 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, - 0x01, 0xfe, 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, - 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, 0x02, 0xa9, 0xff, 0xc3, - 0x02, 0xb5, 0xff, 0xc3, 0x02, 0xb7, 0xff, 0xc3, 0x02, 0xb9, 0xff, 0xc3, - 0x02, 0xbd, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, - 0x02, 0xdd, 0xff, 0xec, 0x03, 0x17, 0xff, 0xc3, 0x03, 0x1d, 0xff, 0xec, - 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, - 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, - 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, - 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, 0x03, 0x45, 0xff, 0xec, - 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x71, 0xff, 0xd7, - 0x03, 0x73, 0xff, 0xd7, 0x00, 0x0b, 0x00, 0x37, 0xff, 0xec, 0x01, 0x24, - 0xff, 0xec, 0x01, 0x26, 0xff, 0xec, 0x01, 0x71, 0xff, 0xec, 0x01, 0xbc, - 0xff, 0xec, 0x02, 0xa9, 0xff, 0xec, 0x02, 0xb5, 0xff, 0xec, 0x02, 0xb7, - 0xff, 0xec, 0x02, 0xb9, 0xff, 0xec, 0x02, 0xbd, 0xff, 0xec, 0x03, 0x17, - 0xff, 0xec, 0x01, 0x20, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x10, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, - 0x00, 0x22, 0x00, 0x29, 0x00, 0x24, 0xff, 0x85, 0x00, 0x26, 0xff, 0xc3, - 0x00, 0x2a, 0xff, 0xc3, 0x00, 0x32, 0xff, 0xc3, 0x00, 0x34, 0xff, 0xc3, - 0x00, 0x36, 0xff, 0xec, 0x00, 0x37, 0x00, 0x14, 0x00, 0x44, 0xff, 0x85, - 0x00, 0x46, 0xff, 0x85, 0x00, 0x47, 0xff, 0x85, 0x00, 0x48, 0xff, 0x85, - 0x00, 0x4a, 0xff, 0x9a, 0x00, 0x50, 0xff, 0xae, 0x00, 0x51, 0xff, 0xae, - 0x00, 0x52, 0xff, 0x85, 0x00, 0x53, 0xff, 0xae, 0x00, 0x54, 0xff, 0x85, - 0x00, 0x55, 0xff, 0xae, 0x00, 0x56, 0xff, 0x85, 0x00, 0x58, 0xff, 0xae, - 0x00, 0x59, 0xff, 0xc3, 0x00, 0x5a, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xc3, - 0x00, 0x5c, 0xff, 0xc3, 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x82, 0xff, 0x85, - 0x00, 0x83, 0xff, 0x85, 0x00, 0x84, 0xff, 0x85, 0x00, 0x85, 0xff, 0x85, - 0x00, 0x86, 0xff, 0x85, 0x00, 0x87, 0xff, 0x85, 0x00, 0x88, 0xff, 0x71, - 0x00, 0x89, 0xff, 0xc3, 0x00, 0x94, 0xff, 0xc3, 0x00, 0x95, 0xff, 0xc3, - 0x00, 0x96, 0xff, 0xc3, 0x00, 0x97, 0xff, 0xc3, 0x00, 0x98, 0xff, 0xc3, - 0x00, 0x9a, 0xff, 0xc3, 0x00, 0xa2, 0xff, 0x85, 0x00, 0xa3, 0xff, 0x85, - 0x00, 0xa4, 0xff, 0x85, 0x00, 0xa5, 0xff, 0x85, 0x00, 0xa6, 0xff, 0x85, - 0x00, 0xa7, 0xff, 0x85, 0x00, 0xa8, 0xff, 0x85, 0x00, 0xa9, 0xff, 0x85, - 0x00, 0xaa, 0xff, 0x85, 0x00, 0xab, 0xff, 0x85, 0x00, 0xac, 0xff, 0x85, - 0x00, 0xad, 0xff, 0x85, 0x00, 0xb3, 0xff, 0xae, 0x00, 0xb4, 0xff, 0x85, - 0x00, 0xb5, 0xff, 0x85, 0x00, 0xb6, 0xff, 0x85, 0x00, 0xb7, 0xff, 0x85, - 0x00, 0xb8, 0xff, 0x85, 0x00, 0xba, 0xff, 0x85, 0x00, 0xbb, 0xff, 0xae, - 0x00, 0xbc, 0xff, 0xae, 0x00, 0xbd, 0xff, 0xae, 0x00, 0xbe, 0xff, 0xae, - 0x00, 0xbf, 0xff, 0xc3, 0x00, 0xc1, 0xff, 0xc3, 0x00, 0xc2, 0xff, 0x85, - 0x00, 0xc3, 0xff, 0x85, 0x00, 0xc4, 0xff, 0x85, 0x00, 0xc5, 0xff, 0x85, - 0x00, 0xc6, 0xff, 0x85, 0x00, 0xc7, 0xff, 0x85, 0x00, 0xc8, 0xff, 0xc3, - 0x00, 0xc9, 0xff, 0x85, 0x00, 0xcb, 0xff, 0x85, 0x00, 0xcd, 0xff, 0x85, - 0x00, 0xce, 0xff, 0xc3, 0x00, 0xcf, 0xff, 0x85, 0x00, 0xd5, 0xff, 0x85, - 0x00, 0xd7, 0xff, 0x85, 0x00, 0xd9, 0xff, 0x85, 0x00, 0xdb, 0xff, 0x85, - 0x00, 0xdd, 0xff, 0x85, 0x00, 0xde, 0xff, 0xc3, 0x00, 0xe0, 0xff, 0xc3, - 0x00, 0xe2, 0xff, 0xc3, 0x00, 0xe4, 0xff, 0xc3, 0x01, 0x06, 0xff, 0xae, - 0x01, 0x08, 0xff, 0xae, 0x01, 0x0a, 0xff, 0xae, 0x01, 0x0e, 0xff, 0xc3, - 0x01, 0x0f, 0xff, 0x85, 0x01, 0x11, 0xff, 0x85, 0x01, 0x12, 0xff, 0xc3, - 0x01, 0x13, 0xff, 0x85, 0x01, 0x14, 0xff, 0xc3, 0x01, 0x15, 0xff, 0x85, - 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, 0xff, 0x85, 0x01, 0x1f, 0xff, 0x85, - 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, 0xff, 0x85, 0x01, 0x22, 0xff, 0xec, - 0x01, 0x23, 0xff, 0x85, 0x01, 0x24, 0x00, 0x14, 0x01, 0x26, 0x00, 0x14, - 0x01, 0x37, 0xff, 0xc3, 0x01, 0x39, 0xff, 0xc3, 0x01, 0x40, 0xff, 0xc3, - 0x01, 0x43, 0xff, 0x85, 0x01, 0x44, 0xff, 0x85, 0x01, 0x4a, 0xff, 0x85, - 0x01, 0x5f, 0xff, 0x85, 0x01, 0x66, 0xff, 0xc3, 0x01, 0x69, 0xff, 0x85, - 0x01, 0x6d, 0xff, 0xc3, 0x01, 0x71, 0x00, 0x14, 0x01, 0x79, 0xff, 0x85, - 0x01, 0x7b, 0xff, 0xae, 0x01, 0x7e, 0xff, 0x85, 0x01, 0x80, 0xff, 0xc3, - 0x01, 0x82, 0xff, 0x85, 0x01, 0x84, 0xff, 0xae, 0x01, 0x8a, 0xff, 0xc3, - 0x01, 0x8c, 0xff, 0x85, 0x01, 0x8e, 0xff, 0x85, 0x01, 0x90, 0xff, 0x85, - 0x01, 0x91, 0xff, 0xc3, 0x01, 0x93, 0xff, 0x85, 0x01, 0x94, 0xff, 0xc3, - 0x01, 0x96, 0xff, 0x85, 0x01, 0x99, 0xff, 0x85, 0x01, 0x9b, 0xff, 0x85, - 0x01, 0xa0, 0xff, 0xec, 0x01, 0xaa, 0xff, 0x85, 0x01, 0xb8, 0xff, 0xc3, - 0x01, 0xbb, 0xff, 0xc3, 0x01, 0xbc, 0x00, 0x14, 0x01, 0xca, 0xff, 0x85, - 0x01, 0xcf, 0xff, 0x85, 0x01, 0xd8, 0xff, 0x85, 0x01, 0xdb, 0xff, 0x85, - 0x01, 0xdc, 0xff, 0xc3, 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, 0xff, 0x85, - 0x01, 0xea, 0xff, 0x85, 0x01, 0xed, 0xff, 0x85, 0x01, 0xee, 0xff, 0x85, - 0x01, 0xfb, 0xff, 0xc3, 0x01, 0xfd, 0xff, 0xc3, 0x01, 0xff, 0xff, 0xc3, - 0x02, 0x01, 0xff, 0xc3, 0x02, 0x02, 0xff, 0xae, 0x02, 0x03, 0xff, 0x9a, - 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0x85, - 0x02, 0x58, 0xff, 0x85, 0x02, 0x59, 0xff, 0x85, 0x02, 0x5f, 0xff, 0xc3, - 0x02, 0x60, 0xff, 0x85, 0x02, 0x6a, 0xff, 0x85, 0x02, 0x6c, 0xff, 0xc3, - 0x02, 0x6d, 0xff, 0xc3, 0x02, 0x72, 0xff, 0x85, 0x02, 0x7e, 0xff, 0xc3, - 0x02, 0x7f, 0xff, 0x85, 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, - 0x02, 0x84, 0xff, 0xc3, 0x02, 0x85, 0xff, 0x85, 0x02, 0x86, 0xff, 0xc3, - 0x02, 0x87, 0xff, 0x85, 0x02, 0x88, 0xff, 0xc3, 0x02, 0x89, 0xff, 0x85, - 0x02, 0x8a, 0xff, 0xc3, 0x02, 0x8b, 0xff, 0xc3, 0x02, 0x8c, 0xff, 0xc3, - 0x02, 0x8d, 0xff, 0x85, 0x02, 0xa9, 0x00, 0x14, 0x02, 0xaa, 0xff, 0xc3, - 0x02, 0xb1, 0xff, 0xc3, 0x02, 0xb2, 0xff, 0x85, 0x02, 0xb3, 0xff, 0xc3, - 0x02, 0xb4, 0xff, 0x85, 0x02, 0xb5, 0x00, 0x14, 0x02, 0xb6, 0xff, 0xc3, - 0x02, 0xb7, 0x00, 0x14, 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xb9, 0x00, 0x14, - 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbd, 0x00, 0x14, 0x02, 0xd9, 0xff, 0x85, - 0x02, 0xda, 0xff, 0x85, 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, - 0x02, 0xdd, 0xff, 0x85, 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xc3, - 0x02, 0xe3, 0xff, 0xc3, 0x02, 0xef, 0xff, 0xc3, 0x02, 0xf0, 0xff, 0x85, - 0x02, 0xf1, 0xff, 0xc3, 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xc3, - 0x02, 0xf4, 0xff, 0x85, 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, - 0x02, 0xfc, 0xff, 0xc3, 0x03, 0x0a, 0xff, 0x85, 0x03, 0x0c, 0xff, 0x85, - 0x03, 0x0e, 0xff, 0xc3, 0x03, 0x10, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xc3, - 0x03, 0x16, 0xff, 0x85, 0x03, 0x17, 0x00, 0x14, 0x03, 0x18, 0xff, 0xc3, - 0x03, 0x19, 0xff, 0xc3, 0x03, 0x1a, 0xff, 0x85, 0x03, 0x1d, 0xff, 0x85, - 0x03, 0x1e, 0xff, 0x85, 0x03, 0x1f, 0xff, 0x85, 0x03, 0x21, 0xff, 0x85, - 0x03, 0x22, 0xff, 0x85, 0x03, 0x23, 0xff, 0x85, 0x03, 0x24, 0xff, 0x85, - 0x03, 0x25, 0xff, 0x85, 0x03, 0x26, 0xff, 0x85, 0x03, 0x27, 0xff, 0x85, - 0x03, 0x28, 0xff, 0x85, 0x03, 0x29, 0xff, 0x85, 0x03, 0x2a, 0xff, 0x85, - 0x03, 0x2b, 0xff, 0x85, 0x03, 0x2c, 0xff, 0x85, 0x03, 0x2d, 0xff, 0x85, - 0x03, 0x2e, 0xff, 0x85, 0x03, 0x2f, 0xff, 0x85, 0x03, 0x30, 0xff, 0x85, - 0x03, 0x31, 0xff, 0x85, 0x03, 0x32, 0xff, 0x85, 0x03, 0x33, 0xff, 0x85, - 0x03, 0x34, 0xff, 0x85, 0x03, 0x36, 0xff, 0x85, 0x03, 0x38, 0xff, 0x85, - 0x03, 0x3a, 0xff, 0x85, 0x03, 0x3c, 0xff, 0x85, 0x03, 0x3e, 0xff, 0x85, - 0x03, 0x40, 0xff, 0x85, 0x03, 0x42, 0xff, 0x85, 0x03, 0x44, 0xff, 0x85, - 0x03, 0x49, 0xff, 0xc3, 0x03, 0x4a, 0xff, 0x85, 0x03, 0x4b, 0xff, 0xc3, - 0x03, 0x4c, 0xff, 0x85, 0x03, 0x4d, 0xff, 0xc3, 0x03, 0x4e, 0xff, 0x85, - 0x03, 0x4f, 0xff, 0xc3, 0x03, 0x50, 0xff, 0x85, 0x03, 0x51, 0xff, 0xc3, - 0x03, 0x52, 0xff, 0x85, 0x03, 0x53, 0xff, 0xc3, 0x03, 0x54, 0xff, 0x85, - 0x03, 0x55, 0xff, 0xc3, 0x03, 0x56, 0xff, 0x85, 0x03, 0x57, 0xff, 0xc3, - 0x03, 0x58, 0xff, 0x85, 0x03, 0x59, 0xff, 0xc3, 0x03, 0x5a, 0xff, 0x85, - 0x03, 0x5b, 0xff, 0xc3, 0x03, 0x5c, 0xff, 0x85, 0x03, 0x5d, 0xff, 0xc3, - 0x03, 0x5e, 0xff, 0x85, 0x03, 0x5f, 0xff, 0xc3, 0x03, 0x60, 0xff, 0x85, - 0x03, 0x62, 0xff, 0xae, 0x03, 0x64, 0xff, 0xae, 0x03, 0x66, 0xff, 0xae, - 0x03, 0x68, 0xff, 0xae, 0x03, 0x6a, 0xff, 0xae, 0x03, 0x6c, 0xff, 0xae, - 0x03, 0x6e, 0xff, 0xae, 0x03, 0x70, 0xff, 0xc3, 0x03, 0x72, 0xff, 0xc3, - 0x03, 0x74, 0xff, 0xc3, 0x00, 0x23, 0x00, 0x0f, 0xff, 0xd7, 0x00, 0x11, - 0xff, 0xd7, 0x00, 0x24, 0xff, 0xec, 0x00, 0x82, 0xff, 0xec, 0x00, 0x83, - 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, 0x00, 0x86, - 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0x88, 0xff, 0xd7, 0x00, 0xc2, - 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x01, 0x43, - 0xff, 0xec, 0x01, 0x5f, 0xff, 0xec, 0x01, 0x69, 0xff, 0xec, 0x01, 0xaa, - 0xff, 0xec, 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, - 0xff, 0xec, 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, 0x02, 0xdd, - 0xff, 0xec, 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, - 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, - 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, - 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, - 0xff, 0xec, 0x00, 0xe8, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, - 0x00, 0x24, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, - 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x44, 0xff, 0xc3, - 0x00, 0x46, 0xff, 0xc3, 0x00, 0x47, 0xff, 0xc3, 0x00, 0x48, 0xff, 0xc3, - 0x00, 0x4a, 0xff, 0xc3, 0x00, 0x50, 0xff, 0xd7, 0x00, 0x51, 0xff, 0xd7, - 0x00, 0x52, 0xff, 0xc3, 0x00, 0x53, 0xff, 0xd7, 0x00, 0x54, 0xff, 0xc3, - 0x00, 0x55, 0xff, 0xd7, 0x00, 0x56, 0xff, 0xd7, 0x00, 0x58, 0xff, 0xd7, - 0x00, 0x82, 0xff, 0xc3, 0x00, 0x83, 0xff, 0xc3, 0x00, 0x84, 0xff, 0xc3, - 0x00, 0x85, 0xff, 0xc3, 0x00, 0x86, 0xff, 0xc3, 0x00, 0x87, 0xff, 0xc3, - 0x00, 0x88, 0xff, 0x85, 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, - 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, - 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xa2, 0xff, 0xc3, - 0x00, 0xa3, 0xff, 0xc3, 0x00, 0xa4, 0xff, 0xc3, 0x00, 0xa5, 0xff, 0xc3, - 0x00, 0xa6, 0xff, 0xc3, 0x00, 0xa7, 0xff, 0xc3, 0x00, 0xa8, 0xff, 0xc3, - 0x00, 0xa9, 0xff, 0xc3, 0x00, 0xaa, 0xff, 0xc3, 0x00, 0xab, 0xff, 0xc3, - 0x00, 0xac, 0xff, 0xc3, 0x00, 0xad, 0xff, 0xc3, 0x00, 0xb3, 0xff, 0xd7, - 0x00, 0xb4, 0xff, 0xc3, 0x00, 0xb5, 0xff, 0xc3, 0x00, 0xb6, 0xff, 0xc3, - 0x00, 0xb7, 0xff, 0xc3, 0x00, 0xb8, 0xff, 0xc3, 0x00, 0xba, 0xff, 0xc3, - 0x00, 0xbb, 0xff, 0xd7, 0x00, 0xbc, 0xff, 0xd7, 0x00, 0xbd, 0xff, 0xd7, - 0x00, 0xbe, 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xc3, 0x00, 0xc3, 0xff, 0xc3, - 0x00, 0xc4, 0xff, 0xc3, 0x00, 0xc5, 0xff, 0xc3, 0x00, 0xc6, 0xff, 0xc3, - 0x00, 0xc7, 0xff, 0xc3, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xc9, 0xff, 0xc3, - 0x00, 0xcb, 0xff, 0xc3, 0x00, 0xcd, 0xff, 0xc3, 0x00, 0xce, 0xff, 0xd7, - 0x00, 0xcf, 0xff, 0xc3, 0x00, 0xd5, 0xff, 0xc3, 0x00, 0xd7, 0xff, 0xc3, - 0x00, 0xd9, 0xff, 0xc3, 0x00, 0xdb, 0xff, 0xc3, 0x00, 0xdd, 0xff, 0xc3, - 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, - 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x06, 0xff, 0xd7, 0x01, 0x08, 0xff, 0xd7, - 0x01, 0x0a, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x0f, 0xff, 0xc3, - 0x01, 0x11, 0xff, 0xc3, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x13, 0xff, 0xc3, - 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, 0xff, 0xc3, 0x01, 0x1d, 0xff, 0xd7, - 0x01, 0x1f, 0xff, 0xd7, 0x01, 0x21, 0xff, 0xd7, 0x01, 0x23, 0xff, 0xd7, - 0x01, 0x43, 0xff, 0xc3, 0x01, 0x44, 0xff, 0xc3, 0x01, 0x4a, 0xff, 0xd7, - 0x01, 0x5f, 0xff, 0xc3, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x69, 0xff, 0xc3, - 0x01, 0x6d, 0xff, 0xd7, 0x01, 0x79, 0xff, 0xc3, 0x01, 0x7b, 0xff, 0xd7, - 0x01, 0x7e, 0xff, 0xc3, 0x01, 0x82, 0xff, 0xc3, 0x01, 0x84, 0xff, 0xd7, - 0x01, 0x8c, 0xff, 0xc3, 0x01, 0x8e, 0xff, 0xc3, 0x01, 0x90, 0xff, 0xc3, - 0x01, 0x93, 0xff, 0xc3, 0x01, 0x96, 0xff, 0xc3, 0x01, 0x99, 0xff, 0xc3, - 0x01, 0x9b, 0xff, 0xc3, 0x01, 0xaa, 0xff, 0xc3, 0x01, 0xb8, 0xff, 0xd7, - 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xca, 0xff, 0xc3, 0x01, 0xcf, 0xff, 0xc3, - 0x01, 0xd8, 0xff, 0xc3, 0x01, 0xdb, 0xff, 0xc3, 0x01, 0xde, 0xff, 0xc3, - 0x01, 0xea, 0xff, 0xc3, 0x01, 0xed, 0xff, 0xc3, 0x01, 0xee, 0xff, 0xd7, - 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0xc3, - 0x02, 0x58, 0xff, 0xc3, 0x02, 0x59, 0xff, 0xc3, 0x02, 0x5f, 0xff, 0xd7, - 0x02, 0x60, 0xff, 0xc3, 0x02, 0x6a, 0xff, 0xc3, 0x02, 0x6c, 0xff, 0xd7, - 0x02, 0x72, 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0xc3, - 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xc3, 0x02, 0x86, 0xff, 0xd7, - 0x02, 0x87, 0xff, 0xc3, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, 0xff, 0xc3, - 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0xc3, - 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xc3, 0x02, 0xb3, 0xff, 0xd7, - 0x02, 0xb4, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0xc3, 0x02, 0xda, 0xff, 0xc3, - 0x02, 0xdb, 0xff, 0xc3, 0x02, 0xdc, 0xff, 0xc3, 0x02, 0xdd, 0xff, 0xc3, - 0x02, 0xe0, 0xff, 0xc3, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, - 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xc3, 0x02, 0xf1, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0xc3, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xc3, - 0x03, 0x0a, 0xff, 0xc3, 0x03, 0x0c, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xd7, - 0x03, 0x16, 0xff, 0xc3, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0xc3, - 0x03, 0x1d, 0xff, 0xc3, 0x03, 0x1e, 0xff, 0xc3, 0x03, 0x1f, 0xff, 0xc3, - 0x03, 0x21, 0xff, 0xc3, 0x03, 0x22, 0xff, 0xc3, 0x03, 0x23, 0xff, 0xc3, - 0x03, 0x24, 0xff, 0xc3, 0x03, 0x25, 0xff, 0xc3, 0x03, 0x26, 0xff, 0xc3, - 0x03, 0x27, 0xff, 0xc3, 0x03, 0x28, 0xff, 0xc3, 0x03, 0x29, 0xff, 0xc3, - 0x03, 0x2a, 0xff, 0xc3, 0x03, 0x2b, 0xff, 0xc3, 0x03, 0x2c, 0xff, 0xc3, - 0x03, 0x2d, 0xff, 0xc3, 0x03, 0x2e, 0xff, 0xc3, 0x03, 0x2f, 0xff, 0xc3, - 0x03, 0x30, 0xff, 0xc3, 0x03, 0x31, 0xff, 0xc3, 0x03, 0x32, 0xff, 0xc3, - 0x03, 0x33, 0xff, 0xc3, 0x03, 0x34, 0xff, 0xc3, 0x03, 0x36, 0xff, 0xc3, - 0x03, 0x38, 0xff, 0xc3, 0x03, 0x3a, 0xff, 0xc3, 0x03, 0x3c, 0xff, 0xc3, - 0x03, 0x3e, 0xff, 0xc3, 0x03, 0x40, 0xff, 0xc3, 0x03, 0x42, 0xff, 0xc3, - 0x03, 0x44, 0xff, 0xc3, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, 0xff, 0xc3, - 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0xc3, 0x03, 0x4d, 0xff, 0xd7, - 0x03, 0x4e, 0xff, 0xc3, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, 0xff, 0xc3, - 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0xc3, 0x03, 0x53, 0xff, 0xd7, - 0x03, 0x54, 0xff, 0xc3, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, 0xff, 0xc3, - 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0xc3, 0x03, 0x59, 0xff, 0xd7, - 0x03, 0x5a, 0xff, 0xc3, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, 0xff, 0xc3, - 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0xc3, 0x03, 0x5f, 0xff, 0xd7, - 0x03, 0x60, 0xff, 0xc3, 0x03, 0x62, 0xff, 0xd7, 0x03, 0x64, 0xff, 0xd7, - 0x03, 0x66, 0xff, 0xd7, 0x03, 0x68, 0xff, 0xd7, 0x03, 0x6a, 0xff, 0xd7, - 0x03, 0x6c, 0xff, 0xd7, 0x03, 0x6e, 0xff, 0xd7, 0x00, 0xe9, 0x00, 0x05, - 0x00, 0x66, 0x00, 0x0a, 0x00, 0x66, 0x00, 0x0f, 0xff, 0xae, 0x00, 0x11, - 0xff, 0xae, 0x00, 0x24, 0xff, 0xd7, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x44, - 0xff, 0xd7, 0x00, 0x46, 0xff, 0xd7, 0x00, 0x47, 0xff, 0xd7, 0x00, 0x48, - 0xff, 0xd7, 0x00, 0x4a, 0xff, 0xec, 0x00, 0x50, 0xff, 0xec, 0x00, 0x51, - 0xff, 0xec, 0x00, 0x52, 0xff, 0xd7, 0x00, 0x53, 0xff, 0xec, 0x00, 0x54, - 0xff, 0xd7, 0x00, 0x55, 0xff, 0xec, 0x00, 0x56, 0xff, 0xd7, 0x00, 0x58, - 0xff, 0xec, 0x00, 0x5d, 0xff, 0xec, 0x00, 0x82, 0xff, 0xd7, 0x00, 0x83, - 0xff, 0xd7, 0x00, 0x84, 0xff, 0xd7, 0x00, 0x85, 0xff, 0xd7, 0x00, 0x86, - 0xff, 0xd7, 0x00, 0x87, 0xff, 0xd7, 0x00, 0x88, 0xff, 0xae, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0xa2, 0xff, 0xd7, 0x00, 0xa3, 0xff, 0xd7, 0x00, 0xa4, - 0xff, 0xd7, 0x00, 0xa5, 0xff, 0xd7, 0x00, 0xa6, 0xff, 0xd7, 0x00, 0xa7, - 0xff, 0xd7, 0x00, 0xa8, 0xff, 0xd7, 0x00, 0xa9, 0xff, 0xd7, 0x00, 0xaa, - 0xff, 0xd7, 0x00, 0xab, 0xff, 0xd7, 0x00, 0xac, 0xff, 0xd7, 0x00, 0xad, - 0xff, 0xd7, 0x00, 0xb3, 0xff, 0xec, 0x00, 0xb4, 0xff, 0xd7, 0x00, 0xb5, - 0xff, 0xd7, 0x00, 0xb6, 0xff, 0xd7, 0x00, 0xb7, 0xff, 0xd7, 0x00, 0xb8, - 0xff, 0xd7, 0x00, 0xba, 0xff, 0xd7, 0x00, 0xbb, 0xff, 0xec, 0x00, 0xbc, - 0xff, 0xec, 0x00, 0xbd, 0xff, 0xec, 0x00, 0xbe, 0xff, 0xec, 0x00, 0xc2, - 0xff, 0xd7, 0x00, 0xc3, 0xff, 0xd7, 0x00, 0xc4, 0xff, 0xd7, 0x00, 0xc5, - 0xff, 0xd7, 0x00, 0xc6, 0xff, 0xd7, 0x00, 0xc7, 0xff, 0xd7, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xc9, 0xff, 0xd7, 0x00, 0xcb, 0xff, 0xd7, 0x00, 0xcd, - 0xff, 0xd7, 0x00, 0xce, 0xff, 0xec, 0x00, 0xcf, 0xff, 0xd7, 0x00, 0xd5, - 0xff, 0xd7, 0x00, 0xd7, 0xff, 0xd7, 0x00, 0xd9, 0xff, 0xd7, 0x00, 0xdb, - 0xff, 0xd7, 0x00, 0xdd, 0xff, 0xd7, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x06, - 0xff, 0xec, 0x01, 0x08, 0xff, 0xec, 0x01, 0x0a, 0xff, 0xec, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x0f, 0xff, 0xd7, 0x01, 0x11, 0xff, 0xd7, 0x01, 0x12, - 0xff, 0xec, 0x01, 0x13, 0xff, 0xd7, 0x01, 0x14, 0xff, 0xec, 0x01, 0x15, - 0xff, 0xd7, 0x01, 0x1d, 0xff, 0xd7, 0x01, 0x1f, 0xff, 0xd7, 0x01, 0x21, - 0xff, 0xd7, 0x01, 0x23, 0xff, 0xd7, 0x01, 0x40, 0xff, 0xec, 0x01, 0x43, - 0xff, 0xd7, 0x01, 0x44, 0xff, 0xd7, 0x01, 0x4a, 0xff, 0xd7, 0x01, 0x5f, - 0xff, 0xd7, 0x01, 0x66, 0xff, 0xec, 0x01, 0x69, 0xff, 0xd7, 0x01, 0x6d, - 0xff, 0xec, 0x01, 0x79, 0xff, 0xd7, 0x01, 0x7b, 0xff, 0xec, 0x01, 0x7e, - 0xff, 0xd7, 0x01, 0x82, 0xff, 0xd7, 0x01, 0x84, 0xff, 0xec, 0x01, 0x8c, - 0xff, 0xd7, 0x01, 0x8e, 0xff, 0xd7, 0x01, 0x90, 0xff, 0xd7, 0x01, 0x93, - 0xff, 0xd7, 0x01, 0x96, 0xff, 0xd7, 0x01, 0x99, 0xff, 0xd7, 0x01, 0x9b, - 0xff, 0xd7, 0x01, 0xaa, 0xff, 0xd7, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xca, 0xff, 0xd7, 0x01, 0xcf, 0xff, 0xd7, 0x01, 0xd8, - 0xff, 0xd7, 0x01, 0xdb, 0xff, 0xd7, 0x01, 0xde, 0xff, 0xd7, 0x01, 0xea, - 0xff, 0xd7, 0x01, 0xed, 0xff, 0xd7, 0x01, 0xee, 0xff, 0xd7, 0x02, 0x07, - 0x00, 0x66, 0x02, 0x0b, 0x00, 0x66, 0x02, 0x28, 0xff, 0xd7, 0x02, 0x58, - 0xff, 0xd7, 0x02, 0x59, 0xff, 0xd7, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x60, - 0xff, 0xd7, 0x02, 0x6a, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x72, - 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x84, - 0xff, 0xec, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x86, 0xff, 0xec, 0x02, 0x87, - 0xff, 0xd7, 0x02, 0x88, 0xff, 0xec, 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8a, - 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0x8d, 0xff, 0xd7, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb2, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xb4, - 0xff, 0xd7, 0x02, 0xd9, 0xff, 0xd7, 0x02, 0xda, 0xff, 0xd7, 0x02, 0xdb, - 0xff, 0xd7, 0x02, 0xdc, 0xff, 0xd7, 0x02, 0xdd, 0xff, 0xd7, 0x02, 0xe0, - 0xff, 0xd7, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, - 0xff, 0xec, 0x02, 0xf0, 0xff, 0xd7, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf2, - 0xff, 0xd7, 0x02, 0xf3, 0xff, 0xec, 0x02, 0xf4, 0xff, 0xd7, 0x03, 0x0a, - 0xff, 0xd7, 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x15, 0xff, 0xec, 0x03, 0x16, - 0xff, 0xd7, 0x03, 0x19, 0xff, 0xec, 0x03, 0x1a, 0xff, 0xd7, 0x03, 0x1d, - 0xff, 0xd7, 0x03, 0x1e, 0xff, 0xd7, 0x03, 0x1f, 0xff, 0xd7, 0x03, 0x21, - 0xff, 0xd7, 0x03, 0x22, 0xff, 0xd7, 0x03, 0x23, 0xff, 0xd7, 0x03, 0x24, - 0xff, 0xd7, 0x03, 0x25, 0xff, 0xd7, 0x03, 0x26, 0xff, 0xd7, 0x03, 0x27, - 0xff, 0xd7, 0x03, 0x28, 0xff, 0xd7, 0x03, 0x29, 0xff, 0xd7, 0x03, 0x2a, - 0xff, 0xd7, 0x03, 0x2b, 0xff, 0xd7, 0x03, 0x2c, 0xff, 0xd7, 0x03, 0x2d, - 0xff, 0xd7, 0x03, 0x2e, 0xff, 0xd7, 0x03, 0x2f, 0xff, 0xd7, 0x03, 0x30, - 0xff, 0xd7, 0x03, 0x31, 0xff, 0xd7, 0x03, 0x32, 0xff, 0xd7, 0x03, 0x33, - 0xff, 0xd7, 0x03, 0x34, 0xff, 0xd7, 0x03, 0x36, 0xff, 0xd7, 0x03, 0x38, - 0xff, 0xd7, 0x03, 0x3a, 0xff, 0xd7, 0x03, 0x3c, 0xff, 0xd7, 0x03, 0x3e, - 0xff, 0xd7, 0x03, 0x40, 0xff, 0xd7, 0x03, 0x42, 0xff, 0xd7, 0x03, 0x44, - 0xff, 0xd7, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4a, 0xff, 0xd7, 0x03, 0x4b, - 0xff, 0xec, 0x03, 0x4c, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4e, - 0xff, 0xd7, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x50, 0xff, 0xd7, 0x03, 0x51, - 0xff, 0xec, 0x03, 0x52, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xec, 0x03, 0x54, - 0xff, 0xd7, 0x03, 0x55, 0xff, 0xec, 0x03, 0x56, 0xff, 0xd7, 0x03, 0x57, - 0xff, 0xec, 0x03, 0x58, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5a, - 0xff, 0xd7, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5c, 0xff, 0xd7, 0x03, 0x5d, - 0xff, 0xec, 0x03, 0x5e, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x60, - 0xff, 0xd7, 0x03, 0x62, 0xff, 0xec, 0x03, 0x64, 0xff, 0xec, 0x03, 0x66, - 0xff, 0xec, 0x03, 0x68, 0xff, 0xec, 0x03, 0x6a, 0xff, 0xec, 0x03, 0x6c, - 0xff, 0xec, 0x03, 0x6e, 0xff, 0xec, 0x00, 0x8c, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, - 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x46, 0xff, 0xec, - 0x00, 0x47, 0xff, 0xec, 0x00, 0x48, 0xff, 0xec, 0x00, 0x52, 0xff, 0xec, - 0x00, 0x54, 0xff, 0xec, 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, - 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, - 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xa8, 0xff, 0xec, - 0x00, 0xa9, 0xff, 0xec, 0x00, 0xaa, 0xff, 0xec, 0x00, 0xab, 0xff, 0xec, - 0x00, 0xac, 0xff, 0xec, 0x00, 0xad, 0xff, 0xec, 0x00, 0xb4, 0xff, 0xec, - 0x00, 0xb5, 0xff, 0xec, 0x00, 0xb6, 0xff, 0xec, 0x00, 0xb7, 0xff, 0xec, - 0x00, 0xb8, 0xff, 0xec, 0x00, 0xba, 0xff, 0xec, 0x00, 0xc8, 0xff, 0xd7, - 0x00, 0xc9, 0xff, 0xec, 0x00, 0xcb, 0xff, 0xec, 0x00, 0xcd, 0xff, 0xec, - 0x00, 0xce, 0xff, 0xd7, 0x00, 0xcf, 0xff, 0xec, 0x00, 0xd5, 0xff, 0xec, - 0x00, 0xd7, 0xff, 0xec, 0x00, 0xd9, 0xff, 0xec, 0x00, 0xdb, 0xff, 0xec, - 0x00, 0xdd, 0xff, 0xec, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, - 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, - 0x01, 0x0f, 0xff, 0xec, 0x01, 0x11, 0xff, 0xec, 0x01, 0x12, 0xff, 0xd7, - 0x01, 0x13, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, 0xff, 0xec, - 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, 0xff, 0xd7, 0x01, 0x79, 0xff, 0xec, - 0x01, 0x7e, 0xff, 0xec, 0x01, 0x82, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xec, - 0x01, 0x8e, 0xff, 0xec, 0x01, 0x90, 0xff, 0xec, 0x01, 0x93, 0xff, 0xec, - 0x01, 0x96, 0xff, 0xec, 0x01, 0x99, 0xff, 0xec, 0x01, 0x9b, 0xff, 0xec, - 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xcf, 0xff, 0xec, - 0x01, 0xd8, 0xff, 0xec, 0x01, 0xdb, 0xff, 0xec, 0x01, 0xde, 0xff, 0xec, - 0x01, 0xea, 0xff, 0xec, 0x01, 0xed, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x60, 0xff, 0xec, - 0x02, 0x6a, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0xec, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xec, - 0x02, 0x86, 0xff, 0xd7, 0x02, 0x87, 0xff, 0xec, 0x02, 0x88, 0xff, 0xd7, - 0x02, 0x89, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xd7, - 0x02, 0x8d, 0xff, 0xec, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xec, - 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xe0, 0xff, 0xec, - 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, - 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf2, 0xff, 0xec, - 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xec, 0x03, 0x0a, 0xff, 0xec, - 0x03, 0x0c, 0xff, 0xec, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xec, - 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0xec, 0x03, 0x36, 0xff, 0xec, - 0x03, 0x38, 0xff, 0xec, 0x03, 0x3a, 0xff, 0xec, 0x03, 0x3c, 0xff, 0xec, - 0x03, 0x3e, 0xff, 0xec, 0x03, 0x40, 0xff, 0xec, 0x03, 0x42, 0xff, 0xec, - 0x03, 0x44, 0xff, 0xec, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, 0xff, 0xec, - 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xd7, - 0x03, 0x4e, 0xff, 0xec, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, 0xff, 0xec, - 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0xec, 0x03, 0x53, 0xff, 0xd7, - 0x03, 0x54, 0xff, 0xec, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, 0xff, 0xec, - 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0xec, 0x03, 0x59, 0xff, 0xd7, - 0x03, 0x5a, 0xff, 0xec, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, 0xff, 0xec, - 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xd7, - 0x03, 0x60, 0xff, 0xec, 0x01, 0x06, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, - 0x00, 0x52, 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, - 0x00, 0x29, 0x00, 0x24, 0xff, 0x9a, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, - 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x36, - 0xff, 0xec, 0x00, 0x44, 0xff, 0x9a, 0x00, 0x46, 0xff, 0x9a, 0x00, 0x47, - 0xff, 0x9a, 0x00, 0x48, 0xff, 0x9a, 0x00, 0x4a, 0xff, 0x9a, 0x00, 0x50, - 0xff, 0xc3, 0x00, 0x51, 0xff, 0xc3, 0x00, 0x52, 0xff, 0x9a, 0x00, 0x53, - 0xff, 0xc3, 0x00, 0x54, 0xff, 0x9a, 0x00, 0x55, 0xff, 0xc3, 0x00, 0x56, - 0xff, 0xae, 0x00, 0x58, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5c, - 0xff, 0xec, 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x82, 0xff, 0x9a, 0x00, 0x83, - 0xff, 0x9a, 0x00, 0x84, 0xff, 0x9a, 0x00, 0x85, 0xff, 0x9a, 0x00, 0x86, - 0xff, 0x9a, 0x00, 0x87, 0xff, 0x9a, 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, - 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, - 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, - 0xff, 0xd7, 0x00, 0xa2, 0xff, 0x9a, 0x00, 0xa3, 0xff, 0x9a, 0x00, 0xa4, - 0xff, 0x9a, 0x00, 0xa5, 0xff, 0x9a, 0x00, 0xa6, 0xff, 0x9a, 0x00, 0xa7, - 0xff, 0x9a, 0x00, 0xa8, 0xff, 0x9a, 0x00, 0xa9, 0xff, 0x9a, 0x00, 0xaa, - 0xff, 0x9a, 0x00, 0xab, 0xff, 0x9a, 0x00, 0xac, 0xff, 0x9a, 0x00, 0xad, - 0xff, 0x9a, 0x00, 0xb3, 0xff, 0xc3, 0x00, 0xb4, 0xff, 0x9a, 0x00, 0xb5, - 0xff, 0x9a, 0x00, 0xb6, 0xff, 0x9a, 0x00, 0xb7, 0xff, 0x9a, 0x00, 0xb8, - 0xff, 0x9a, 0x00, 0xba, 0xff, 0x9a, 0x00, 0xbb, 0xff, 0xc3, 0x00, 0xbc, - 0xff, 0xc3, 0x00, 0xbd, 0xff, 0xc3, 0x00, 0xbe, 0xff, 0xc3, 0x00, 0xbf, - 0xff, 0xec, 0x00, 0xc1, 0xff, 0xec, 0x00, 0xc2, 0xff, 0x9a, 0x00, 0xc3, - 0xff, 0x9a, 0x00, 0xc4, 0xff, 0x9a, 0x00, 0xc5, 0xff, 0x9a, 0x00, 0xc6, - 0xff, 0x9a, 0x00, 0xc7, 0xff, 0x9a, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xc9, - 0xff, 0x9a, 0x00, 0xcb, 0xff, 0x9a, 0x00, 0xcd, 0xff, 0x9a, 0x00, 0xce, - 0xff, 0xd7, 0x00, 0xcf, 0xff, 0x9a, 0x00, 0xd5, 0xff, 0x9a, 0x00, 0xd7, - 0xff, 0x9a, 0x00, 0xd9, 0xff, 0x9a, 0x00, 0xdb, 0xff, 0x9a, 0x00, 0xdd, - 0xff, 0x9a, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, - 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x06, 0xff, 0xc3, 0x01, 0x08, - 0xff, 0xc3, 0x01, 0x0a, 0xff, 0xc3, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x0f, - 0xff, 0x9a, 0x01, 0x11, 0xff, 0x9a, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x13, - 0xff, 0x9a, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, 0xff, 0x9a, 0x01, 0x1c, - 0xff, 0xec, 0x01, 0x1d, 0xff, 0xae, 0x01, 0x1f, 0xff, 0xae, 0x01, 0x20, - 0xff, 0xec, 0x01, 0x21, 0xff, 0xae, 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, - 0xff, 0xae, 0x01, 0x39, 0xff, 0xec, 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, - 0xff, 0x9a, 0x01, 0x44, 0xff, 0x9a, 0x01, 0x4a, 0xff, 0xae, 0x01, 0x5f, - 0xff, 0x9a, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x69, 0xff, 0x9a, 0x01, 0x6d, - 0xff, 0xd7, 0x01, 0x79, 0xff, 0x9a, 0x01, 0x7b, 0xff, 0xc3, 0x01, 0x7e, - 0xff, 0x9a, 0x01, 0x80, 0xff, 0xec, 0x01, 0x82, 0xff, 0x9a, 0x01, 0x84, - 0xff, 0xc3, 0x01, 0x8a, 0xff, 0xec, 0x01, 0x8c, 0xff, 0x9a, 0x01, 0x8e, - 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, 0x01, 0x93, 0xff, 0x9a, 0x01, 0x96, - 0xff, 0x9a, 0x01, 0x99, 0xff, 0x9a, 0x01, 0x9b, 0xff, 0x9a, 0x01, 0xa0, - 0xff, 0xec, 0x01, 0xaa, 0xff, 0x9a, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, - 0xff, 0xd7, 0x01, 0xca, 0xff, 0x9a, 0x01, 0xcf, 0xff, 0x9a, 0x01, 0xd8, - 0xff, 0x9a, 0x01, 0xdb, 0xff, 0x9a, 0x01, 0xdd, 0xff, 0xec, 0x01, 0xde, - 0xff, 0x9a, 0x01, 0xea, 0xff, 0x9a, 0x01, 0xed, 0xff, 0x9a, 0x01, 0xee, - 0xff, 0xae, 0x02, 0x01, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, - 0x00, 0x52, 0x02, 0x28, 0xff, 0x9a, 0x02, 0x58, 0xff, 0x9a, 0x02, 0x59, - 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x60, 0xff, 0x9a, 0x02, 0x6a, - 0xff, 0x9a, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x72, - 0xff, 0x9a, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0x9a, 0x02, 0x81, - 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, - 0xff, 0x9a, 0x02, 0x86, 0xff, 0xd7, 0x02, 0x87, 0xff, 0x9a, 0x02, 0x88, - 0xff, 0xd7, 0x02, 0x89, 0xff, 0x9a, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8b, - 0xff, 0xec, 0x02, 0x8c, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0x9a, 0x02, 0xb1, - 0xff, 0xd7, 0x02, 0xb2, 0xff, 0x9a, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, - 0xff, 0x9a, 0x02, 0xb8, 0xff, 0xec, 0x02, 0xba, 0xff, 0xec, 0x02, 0xd9, - 0xff, 0x9a, 0x02, 0xda, 0xff, 0x9a, 0x02, 0xdb, 0xff, 0x9a, 0x02, 0xdc, - 0xff, 0x9a, 0x02, 0xdd, 0xff, 0x9a, 0x02, 0xe0, 0xff, 0x9a, 0x02, 0xe1, - 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, - 0xff, 0x9a, 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf2, 0xff, 0x9a, 0x02, 0xf3, - 0xff, 0xd7, 0x02, 0xf4, 0xff, 0x9a, 0x02, 0xf8, 0xff, 0xec, 0x02, 0xfa, - 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x03, 0x0a, 0xff, 0x9a, 0x03, 0x0c, - 0xff, 0x9a, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, 0xff, 0xec, 0x03, 0x15, - 0xff, 0xd7, 0x03, 0x16, 0xff, 0x9a, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, - 0xff, 0x9a, 0x03, 0x1d, 0xff, 0x9a, 0x03, 0x1e, 0xff, 0x9a, 0x03, 0x1f, - 0xff, 0x9a, 0x03, 0x21, 0xff, 0x9a, 0x03, 0x22, 0xff, 0x9a, 0x03, 0x23, - 0xff, 0x9a, 0x03, 0x24, 0xff, 0x9a, 0x03, 0x25, 0xff, 0x9a, 0x03, 0x26, - 0xff, 0x9a, 0x03, 0x27, 0xff, 0x9a, 0x03, 0x28, 0xff, 0x9a, 0x03, 0x29, - 0xff, 0x9a, 0x03, 0x2a, 0xff, 0x9a, 0x03, 0x2b, 0xff, 0x9a, 0x03, 0x2c, - 0xff, 0x9a, 0x03, 0x2d, 0xff, 0x9a, 0x03, 0x2e, 0xff, 0x9a, 0x03, 0x2f, - 0xff, 0x9a, 0x03, 0x30, 0xff, 0x9a, 0x03, 0x31, 0xff, 0x9a, 0x03, 0x32, - 0xff, 0x9a, 0x03, 0x33, 0xff, 0x9a, 0x03, 0x34, 0xff, 0x9a, 0x03, 0x36, - 0xff, 0x9a, 0x03, 0x38, 0xff, 0x9a, 0x03, 0x3a, 0xff, 0x9a, 0x03, 0x3c, - 0xff, 0x9a, 0x03, 0x3e, 0xff, 0x9a, 0x03, 0x40, 0xff, 0x9a, 0x03, 0x42, - 0xff, 0x9a, 0x03, 0x44, 0xff, 0x9a, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, - 0xff, 0x9a, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0x9a, 0x03, 0x4d, - 0xff, 0xd7, 0x03, 0x4e, 0xff, 0x9a, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, - 0xff, 0x9a, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0x9a, 0x03, 0x53, - 0xff, 0xd7, 0x03, 0x54, 0xff, 0x9a, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, - 0xff, 0x9a, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0x9a, 0x03, 0x59, - 0xff, 0xd7, 0x03, 0x5a, 0xff, 0x9a, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, - 0xff, 0x9a, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0x9a, 0x03, 0x5f, - 0xff, 0xd7, 0x03, 0x60, 0xff, 0x9a, 0x03, 0x62, 0xff, 0xc3, 0x03, 0x64, - 0xff, 0xc3, 0x03, 0x66, 0xff, 0xc3, 0x03, 0x68, 0xff, 0xc3, 0x03, 0x6a, - 0xff, 0xc3, 0x03, 0x6c, 0xff, 0xc3, 0x03, 0x6e, 0xff, 0xc3, 0x03, 0x70, - 0xff, 0xec, 0x03, 0x72, 0xff, 0xec, 0x03, 0x74, 0xff, 0xec, 0x00, 0x39, - 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xec, - 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, - 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, - 0x00, 0x9a, 0xff, 0xec, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, - 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, - 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, - 0x01, 0x14, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, - 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, - 0x02, 0x7e, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, - 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, - 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, - 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, - 0x02, 0xf3, 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, - 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, - 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, - 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, - 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, - 0x00, 0x01, 0x00, 0x0a, 0xff, 0xd7, 0x00, 0x04, 0x00, 0x05, 0x00, 0x3d, - 0x00, 0x0a, 0x00, 0x3d, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, - 0x00, 0x26, 0x00, 0x05, 0x00, 0x66, 0x00, 0x0a, 0x00, 0x66, 0x00, 0x59, - 0x00, 0x14, 0x00, 0x5a, 0x00, 0x14, 0x00, 0x5c, 0x00, 0x14, 0x00, 0xbf, - 0x00, 0x14, 0x00, 0xc1, 0x00, 0x14, 0x01, 0x37, 0x00, 0x14, 0x01, 0x39, - 0x00, 0x14, 0x01, 0x80, 0x00, 0x14, 0x01, 0x8a, 0x00, 0x14, 0x01, 0x91, - 0x00, 0x14, 0x01, 0x94, 0x00, 0x14, 0x01, 0xdc, 0x00, 0x14, 0x01, 0xdd, - 0x00, 0x14, 0x01, 0xfb, 0x00, 0x14, 0x01, 0xfd, 0x00, 0x14, 0x01, 0xff, - 0x00, 0x14, 0x02, 0x01, 0x00, 0x14, 0x02, 0x07, 0x00, 0x66, 0x02, 0x0b, - 0x00, 0x66, 0x02, 0x6d, 0x00, 0x14, 0x02, 0x81, 0x00, 0x14, 0x02, 0x83, - 0x00, 0x14, 0x02, 0x8b, 0x00, 0x14, 0x02, 0xaa, 0x00, 0x14, 0x02, 0xb6, - 0x00, 0x14, 0x02, 0xb8, 0x00, 0x14, 0x02, 0xba, 0x00, 0x14, 0x02, 0xf8, - 0x00, 0x14, 0x02, 0xfa, 0x00, 0x14, 0x02, 0xfc, 0x00, 0x14, 0x03, 0x0e, - 0x00, 0x14, 0x03, 0x10, 0x00, 0x14, 0x03, 0x18, 0x00, 0x14, 0x03, 0x70, - 0x00, 0x14, 0x03, 0x72, 0x00, 0x14, 0x03, 0x74, 0x00, 0x14, 0x00, 0x05, - 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x4a, 0x00, 0x14, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x00, 0x01, 0x00, 0x0a, - 0xff, 0xc3, 0x00, 0x04, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x00, 0x03, 0x00, 0x5b, - 0xff, 0xd7, 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, 0x00, 0x1f, - 0x00, 0x05, 0x00, 0x66, 0x00, 0x0a, 0x00, 0x66, 0x00, 0x44, 0xff, 0xec, - 0x00, 0x4a, 0xff, 0xec, 0x00, 0xa2, 0xff, 0xec, 0x00, 0xa3, 0xff, 0xec, - 0x00, 0xa4, 0xff, 0xec, 0x00, 0xa5, 0xff, 0xec, 0x00, 0xa6, 0xff, 0xec, - 0x00, 0xa7, 0xff, 0xec, 0x00, 0xc3, 0xff, 0xec, 0x00, 0xc5, 0xff, 0xec, - 0x00, 0xc7, 0xff, 0xec, 0x01, 0x44, 0xff, 0xec, 0x01, 0xca, 0xff, 0xec, - 0x02, 0x07, 0x00, 0x66, 0x02, 0x0b, 0x00, 0x66, 0x02, 0x59, 0xff, 0xec, - 0x02, 0xda, 0xff, 0xec, 0x02, 0xdc, 0xff, 0xec, 0x03, 0x1e, 0xff, 0xec, - 0x03, 0x22, 0xff, 0xec, 0x03, 0x24, 0xff, 0xec, 0x03, 0x26, 0xff, 0xec, - 0x03, 0x28, 0xff, 0xec, 0x03, 0x2a, 0xff, 0xec, 0x03, 0x2c, 0xff, 0xec, - 0x03, 0x2e, 0xff, 0xec, 0x03, 0x30, 0xff, 0xec, 0x03, 0x32, 0xff, 0xec, - 0x03, 0x34, 0xff, 0xec, 0x00, 0x05, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, - 0x00, 0x52, 0x00, 0x57, 0x00, 0x14, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, - 0x00, 0x52, 0x00, 0x05, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x00, 0x49, 0x00, 0x14, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, - 0x00, 0x36, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x52, - 0xff, 0xd7, 0x00, 0xa8, 0xff, 0xd7, 0x00, 0xb4, 0xff, 0xd7, 0x00, 0xb5, - 0xff, 0xd7, 0x00, 0xb6, 0xff, 0xd7, 0x00, 0xb7, 0xff, 0xd7, 0x00, 0xb8, - 0xff, 0xd7, 0x00, 0xba, 0xff, 0xd7, 0x01, 0x0f, 0xff, 0xd7, 0x01, 0x11, - 0xff, 0xd7, 0x01, 0x13, 0xff, 0xd7, 0x01, 0x15, 0xff, 0xd7, 0x01, 0x8c, - 0xff, 0xd7, 0x01, 0x8e, 0xff, 0xd7, 0x01, 0x90, 0xff, 0xd7, 0x01, 0x93, - 0xff, 0xd7, 0x01, 0x96, 0xff, 0xd7, 0x01, 0x99, 0xff, 0xd7, 0x01, 0x9b, - 0xff, 0xd7, 0x01, 0xd8, 0xff, 0xd7, 0x01, 0xde, 0xff, 0xd7, 0x02, 0x07, - 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x60, 0xff, 0xd7, 0x02, 0x6a, - 0xff, 0xd7, 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x87, - 0xff, 0xd7, 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0xd7, 0x02, 0xb2, - 0xff, 0xd7, 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, - 0xff, 0xd7, 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x03, 0x0a, - 0xff, 0xd7, 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xd7, 0x03, 0x1a, - 0xff, 0xd7, 0x03, 0x4a, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0xd7, 0x03, 0x4e, - 0xff, 0xd7, 0x03, 0x50, 0xff, 0xd7, 0x03, 0x52, 0xff, 0xd7, 0x03, 0x54, - 0xff, 0xd7, 0x03, 0x56, 0xff, 0xd7, 0x03, 0x58, 0xff, 0xd7, 0x03, 0x5a, - 0xff, 0xd7, 0x03, 0x5c, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0xd7, 0x03, 0x60, - 0xff, 0xd7, 0x00, 0x05, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, - 0x00, 0x49, 0x00, 0x14, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, - 0x00, 0x32, 0x00, 0x52, 0xff, 0xec, 0x00, 0xa8, 0xff, 0xec, 0x00, 0xb4, - 0xff, 0xec, 0x00, 0xb5, 0xff, 0xec, 0x00, 0xb6, 0xff, 0xec, 0x00, 0xb7, - 0xff, 0xec, 0x00, 0xb8, 0xff, 0xec, 0x00, 0xba, 0xff, 0xec, 0x01, 0x0f, - 0xff, 0xec, 0x01, 0x11, 0xff, 0xec, 0x01, 0x13, 0xff, 0xec, 0x01, 0x15, - 0xff, 0xec, 0x01, 0x8c, 0xff, 0xec, 0x01, 0x8e, 0xff, 0xec, 0x01, 0x90, - 0xff, 0xec, 0x01, 0x93, 0xff, 0xec, 0x01, 0x96, 0xff, 0xec, 0x01, 0x99, - 0xff, 0xec, 0x01, 0x9b, 0xff, 0xec, 0x01, 0xd8, 0xff, 0xec, 0x01, 0xde, - 0xff, 0xec, 0x02, 0x60, 0xff, 0xec, 0x02, 0x6a, 0xff, 0xec, 0x02, 0x7f, - 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, 0x02, 0x87, 0xff, 0xec, 0x02, 0x89, - 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, 0x02, 0xb2, 0xff, 0xec, 0x02, 0xb4, - 0xff, 0xec, 0x02, 0xe0, 0xff, 0xec, 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf2, - 0xff, 0xec, 0x02, 0xf4, 0xff, 0xec, 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, - 0xff, 0xec, 0x03, 0x16, 0xff, 0xec, 0x03, 0x1a, 0xff, 0xec, 0x03, 0x4a, - 0xff, 0xec, 0x03, 0x4c, 0xff, 0xec, 0x03, 0x4e, 0xff, 0xec, 0x03, 0x50, - 0xff, 0xec, 0x03, 0x52, 0xff, 0xec, 0x03, 0x54, 0xff, 0xec, 0x03, 0x56, - 0xff, 0xec, 0x03, 0x58, 0xff, 0xec, 0x03, 0x5a, 0xff, 0xec, 0x03, 0x5c, - 0xff, 0xec, 0x03, 0x5e, 0xff, 0xec, 0x03, 0x60, 0xff, 0xec, 0x00, 0x03, - 0x01, 0x71, 0xff, 0xd7, 0x01, 0x78, 0xff, 0xd7, 0x01, 0x91, 0x00, 0x29, - 0x00, 0x03, 0x01, 0x71, 0xff, 0x9a, 0x01, 0x72, 0xff, 0xc3, 0x01, 0x78, - 0xff, 0xc3, 0x00, 0x93, 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, - 0x00, 0x0d, 0xff, 0x85, 0x00, 0x0f, 0x00, 0x44, 0x00, 0x1e, 0x00, 0x44, - 0x00, 0x22, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, - 0x00, 0x2d, 0x00, 0x5e, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, - 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xc3, - 0x00, 0x3a, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x3d, 0x00, 0x3b, - 0x00, 0x49, 0xff, 0xec, 0x00, 0x57, 0xff, 0xec, 0x00, 0x59, 0xff, 0xd7, - 0x00, 0x5a, 0xff, 0xec, 0x00, 0x5c, 0xff, 0xd7, 0x00, 0x82, 0xff, 0xd7, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, - 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, - 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, - 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, - 0x00, 0xbf, 0xff, 0xd7, 0x00, 0xc1, 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xec, - 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, - 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x00, 0xf6, 0x00, 0x5e, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, - 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, - 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, - 0x01, 0x36, 0xff, 0xd7, 0x01, 0x37, 0xff, 0xec, 0x01, 0x38, 0xff, 0x9a, - 0x01, 0x39, 0xff, 0xd7, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x3b, 0x00, 0x3b, - 0x01, 0x3d, 0x00, 0x3b, 0x01, 0x3f, 0x00, 0x3b, 0x01, 0x66, 0xff, 0xec, - 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0x80, 0xff, 0xd7, - 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x94, 0xff, 0xd7, - 0x01, 0xa3, 0x00, 0x5e, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, - 0x01, 0xbc, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xd7, - 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfb, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xd7, - 0x01, 0xfd, 0xff, 0xec, 0x01, 0xfe, 0xff, 0xd7, 0x01, 0xff, 0xff, 0xec, - 0x02, 0x00, 0xff, 0x9a, 0x02, 0x01, 0xff, 0xd7, 0x02, 0x07, 0xff, 0xae, - 0x02, 0x0b, 0xff, 0xae, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, - 0x02, 0x6c, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xec, - 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xec, - 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, - 0x02, 0x8b, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, 0xff, 0x85, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, - 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb7, 0xff, 0x85, - 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, 0xff, 0xd7, - 0x02, 0xbd, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, - 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, - 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, 0xff, 0xd7, - 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x15, 0xff, 0xec, - 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xec, - 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, - 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, - 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, - 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, - 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, - 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, - 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x70, 0xff, 0xd7, - 0x03, 0x71, 0xff, 0x9a, 0x03, 0x72, 0xff, 0xd7, 0x03, 0x73, 0xff, 0x9a, - 0x03, 0x74, 0xff, 0xd7, 0x00, 0x90, 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, - 0xff, 0xae, 0x00, 0x0d, 0xff, 0x85, 0x00, 0x0f, 0x00, 0x44, 0x00, 0x1e, - 0x00, 0x44, 0x00, 0x22, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, - 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, - 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x49, - 0xff, 0xec, 0x00, 0x57, 0xff, 0xec, 0x00, 0x59, 0xff, 0xd7, 0x00, 0x5a, - 0xff, 0xec, 0x00, 0x5c, 0xff, 0xd7, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, - 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, - 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, - 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, - 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xbf, 0xff, 0xd7, 0x00, 0xc1, - 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, - 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, - 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, - 0xff, 0xd7, 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, - 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, - 0xff, 0xec, 0x01, 0x36, 0xff, 0xd7, 0x01, 0x37, 0xff, 0xec, 0x01, 0x38, - 0xff, 0x9a, 0x01, 0x39, 0xff, 0xd7, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x3b, - 0x00, 0x3b, 0x01, 0x3d, 0x00, 0x3b, 0x01, 0x3f, 0x00, 0x3b, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0x80, - 0xff, 0xd7, 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x94, - 0xff, 0xd7, 0x01, 0xa3, 0x00, 0x5e, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, - 0xff, 0xd7, 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfb, 0xff, 0xec, 0x01, 0xfc, - 0xff, 0xd7, 0x01, 0xfd, 0xff, 0xec, 0x01, 0xfe, 0xff, 0xd7, 0x01, 0xff, - 0xff, 0xec, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x01, 0xff, 0xd7, 0x02, 0x07, - 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, - 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xd7, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, 0x02, 0x84, - 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, - 0xff, 0xec, 0x02, 0x8b, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, - 0xff, 0xec, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb7, - 0xff, 0x85, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, - 0xff, 0xd7, 0x02, 0xbd, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, - 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x15, - 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x19, - 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, - 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, - 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, - 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x70, - 0xff, 0xd7, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x72, 0xff, 0xd7, 0x03, 0x73, - 0xff, 0x9a, 0x03, 0x74, 0xff, 0xd7, 0x00, 0x91, 0x00, 0x05, 0xff, 0xae, - 0x00, 0x0a, 0xff, 0xae, 0x00, 0x0d, 0xff, 0x7f, 0x00, 0x0f, 0x00, 0x44, - 0x00, 0x1e, 0x00, 0x44, 0x00, 0x22, 0xff, 0xd7, 0x00, 0x26, 0xff, 0xec, - 0x00, 0x2a, 0xff, 0xec, 0x00, 0x2d, 0x00, 0x5e, 0x00, 0x32, 0xff, 0xec, - 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, - 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, - 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x57, 0xff, 0xe5, 0x00, 0x59, 0xff, 0xd5, - 0x00, 0x5a, 0xff, 0xe5, 0x00, 0x5c, 0xff, 0xdb, 0x00, 0x89, 0xff, 0xec, - 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, - 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, - 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, - 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xbf, 0xff, 0xdb, - 0x00, 0xc1, 0xff, 0xdb, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, - 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, - 0x00, 0xe4, 0xff, 0xec, 0x00, 0xf6, 0x00, 0x5e, 0x01, 0x0e, 0xff, 0xec, - 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x24, 0xff, 0x85, - 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, - 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, 0xff, 0xd7, - 0x01, 0x37, 0xff, 0xe5, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x39, 0xff, 0xdb, - 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x3b, 0x00, 0x3b, 0x01, 0x3d, 0x00, 0x3b, - 0x01, 0x3f, 0x00, 0x3b, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, - 0x01, 0x71, 0xff, 0x85, 0x01, 0x80, 0xff, 0xdb, 0x01, 0x8a, 0xff, 0xd5, - 0x01, 0x91, 0xff, 0xd5, 0x01, 0x94, 0xff, 0xd5, 0x01, 0xa3, 0x00, 0x5e, - 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, - 0x01, 0xdc, 0xff, 0xd5, 0x01, 0xdd, 0xff, 0xdb, 0x01, 0xfa, 0xff, 0xd7, - 0x01, 0xfb, 0xff, 0xe5, 0x01, 0xfc, 0xff, 0xd7, 0x01, 0xfd, 0xff, 0xe5, - 0x01, 0xfe, 0xff, 0xd7, 0x01, 0xff, 0xff, 0xe5, 0x02, 0x00, 0xff, 0x9a, - 0x02, 0x01, 0xff, 0xdb, 0x02, 0x07, 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, - 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, - 0x02, 0x6d, 0xff, 0xdb, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x81, 0xff, 0xdb, - 0x02, 0x83, 0xff, 0xdb, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, - 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xdb, - 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd5, - 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xb5, 0xff, 0x85, - 0x02, 0xb6, 0xff, 0xd5, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb8, 0xff, 0xdb, - 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, 0xff, 0xdb, 0x02, 0xbd, 0xff, 0x85, - 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, - 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x02, 0xf8, 0xff, 0xdb, - 0x02, 0xfa, 0xff, 0xdb, 0x02, 0xfc, 0xff, 0xdb, 0x03, 0x0e, 0xff, 0xdb, - 0x03, 0x10, 0xff, 0xdb, 0x03, 0x15, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, - 0x03, 0x18, 0xff, 0xd5, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, - 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, - 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, - 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, - 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, - 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, - 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, - 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x70, 0xff, 0xdb, 0x03, 0x71, 0xff, 0x9a, - 0x03, 0x72, 0xff, 0xdb, 0x03, 0x73, 0xff, 0x9a, 0x03, 0x74, 0xff, 0xdb, - 0x00, 0x94, 0x00, 0x05, 0xff, 0x66, 0x00, 0x0a, 0xff, 0x66, 0x00, 0x0d, - 0xff, 0x7f, 0x00, 0x0f, 0x00, 0x44, 0x00, 0x1e, 0x00, 0x44, 0x00, 0x22, - 0xff, 0xd7, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x2d, - 0x00, 0x5e, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, - 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, - 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x3d, 0x00, 0x3b, 0x00, 0x57, - 0xff, 0xe5, 0x00, 0x59, 0xff, 0xd5, 0x00, 0x5a, 0xff, 0xe5, 0x00, 0x5c, - 0xff, 0xdb, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, - 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, - 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, - 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, - 0xff, 0x9a, 0x00, 0xbf, 0xff, 0xdb, 0x00, 0xc1, 0xff, 0xdb, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x00, 0xf6, - 0x00, 0x5e, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, - 0xff, 0xd7, 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, - 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, - 0xff, 0xec, 0x01, 0x36, 0xff, 0xd7, 0x01, 0x37, 0xff, 0xe5, 0x01, 0x38, - 0xff, 0x9a, 0x01, 0x39, 0xff, 0xdb, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x3b, - 0x00, 0x3b, 0x01, 0x3d, 0x00, 0x3b, 0x01, 0x3f, 0x00, 0x3b, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0x80, - 0xff, 0xdb, 0x01, 0x8a, 0xff, 0xd5, 0x01, 0x91, 0xff, 0xd5, 0x01, 0x94, - 0xff, 0xd5, 0x01, 0xa3, 0x00, 0x5e, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd5, 0x01, 0xdd, - 0xff, 0xdb, 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfb, 0xff, 0xe5, 0x01, 0xfc, - 0xff, 0xd7, 0x01, 0xfd, 0xff, 0xe5, 0x01, 0xfe, 0xff, 0xd7, 0x01, 0xff, - 0xff, 0xe5, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x01, 0xff, 0xdb, 0x02, 0x06, - 0xff, 0x66, 0x02, 0x07, 0xff, 0xae, 0x02, 0x0a, 0xff, 0x66, 0x02, 0x0b, - 0xff, 0xae, 0x02, 0x20, 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, - 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xdb, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x81, 0xff, 0xdb, 0x02, 0x83, 0xff, 0xdb, 0x02, 0x84, - 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, - 0xff, 0xec, 0x02, 0x8b, 0xff, 0xdb, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd5, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, - 0xff, 0xec, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd5, 0x02, 0xb7, - 0xff, 0x85, 0x02, 0xb8, 0xff, 0xdb, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, - 0xff, 0xdb, 0x02, 0xbd, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x02, 0xf8, 0xff, 0xdb, 0x02, 0xfa, 0xff, 0xdb, 0x02, 0xfc, - 0xff, 0xdb, 0x03, 0x0e, 0xff, 0xdb, 0x03, 0x10, 0xff, 0xdb, 0x03, 0x15, - 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd5, 0x03, 0x19, - 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, - 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, - 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, - 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x70, - 0xff, 0xdb, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x72, 0xff, 0xdb, 0x03, 0x73, - 0xff, 0x9a, 0x03, 0x74, 0xff, 0xdb, 0x00, 0x39, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x00, 0x10, 0xff, 0xd7, 0x00, 0x26, 0xff, 0xec, - 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x8a, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, - 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, - 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, - 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xf6, 0x00, 0x3d, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x66, 0xff, 0xec, - 0x01, 0x6d, 0xff, 0xec, 0x01, 0xa3, 0x00, 0x3d, 0x01, 0xb8, 0xff, 0xec, - 0x01, 0xbb, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, - 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, 0xff, 0xec, - 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, - 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, 0xff, 0xec, - 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, - 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, - 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, - 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, - 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, - 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, - 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x00, 0x37, 0x00, 0x05, - 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x10, 0xff, 0xd7, 0x00, 0x26, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x8b, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, - 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, - 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, - 0xff, 0xec, 0x00, 0xf6, 0x00, 0x3d, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, - 0xff, 0xec, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0xa3, - 0x00, 0x3d, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x07, - 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, - 0xff, 0xec, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, - 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, - 0xff, 0xec, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, - 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, - 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, - 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, - 0xff, 0xec, 0x00, 0x20, 0x00, 0x24, 0xff, 0xec, 0x00, 0x82, 0xff, 0xec, - 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, - 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0xc2, 0xff, 0xec, - 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, - 0x01, 0x5f, 0xff, 0xec, 0x01, 0x69, 0xff, 0xec, 0x01, 0xaa, 0xff, 0xec, - 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, - 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, 0x02, 0xdd, 0xff, 0xec, - 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, - 0x03, 0x23, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, - 0x03, 0x29, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, - 0x03, 0x2f, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, - 0x00, 0x56, 0x00, 0x0c, 0xff, 0xd7, 0x00, 0x0f, 0xff, 0xc3, 0x00, 0x11, - 0xff, 0xc3, 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x2d, - 0xff, 0xf6, 0x00, 0x36, 0xff, 0xec, 0x00, 0x37, 0xff, 0xc3, 0x00, 0x39, - 0xff, 0xd7, 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xd7, 0x00, 0x3c, - 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x40, 0xff, 0xd7, 0x00, 0x60, - 0xff, 0xd7, 0x00, 0x82, 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, - 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, - 0xff, 0xec, 0x00, 0x88, 0xff, 0xd7, 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, - 0xff, 0xec, 0x00, 0x90, 0xff, 0xec, 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, - 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, - 0xff, 0xec, 0x00, 0xec, 0xff, 0xec, 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, - 0xff, 0xec, 0x00, 0xf6, 0xff, 0xf6, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x20, - 0xff, 0xec, 0x01, 0x22, 0xff, 0xec, 0x01, 0x24, 0xff, 0xc3, 0x01, 0x26, - 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, 0x01, 0x38, 0xff, 0xd7, 0x01, 0x3a, - 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, 0xff, 0xec, 0x01, 0x3f, - 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x5f, 0xff, 0xec, 0x01, 0x69, - 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0xa0, 0xff, 0xec, 0x01, 0xa3, - 0xff, 0xf6, 0x01, 0xaa, 0xff, 0xec, 0x01, 0xbc, 0xff, 0xc3, 0x01, 0xfa, - 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, 0x01, 0xfe, 0xff, 0xec, 0x02, 0x00, - 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, 0xff, 0xec, 0x02, 0x72, - 0xff, 0xec, 0x02, 0xa9, 0xff, 0xc3, 0x02, 0xb5, 0xff, 0xc3, 0x02, 0xb7, - 0xff, 0xc3, 0x02, 0xb9, 0xff, 0xc3, 0x02, 0xbd, 0xff, 0xc3, 0x02, 0xd9, - 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, 0x02, 0xdd, 0xff, 0xec, 0x03, 0x17, - 0xff, 0xc3, 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, - 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, - 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, - 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, - 0xff, 0xec, 0x03, 0x45, 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, - 0xff, 0xd7, 0x03, 0x71, 0xff, 0xd7, 0x03, 0x73, 0xff, 0xd7, 0x00, 0x42, - 0x00, 0x0f, 0xff, 0xd7, 0x00, 0x11, 0xff, 0xd7, 0x00, 0x24, 0xff, 0xec, - 0x00, 0x30, 0xff, 0xec, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x44, 0xff, 0xec, - 0x00, 0x82, 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, - 0x00, 0x85, 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, - 0x00, 0x88, 0xff, 0xd7, 0x00, 0xa2, 0xff, 0xec, 0x00, 0xa3, 0xff, 0xec, - 0x00, 0xa4, 0xff, 0xec, 0x00, 0xa5, 0xff, 0xec, 0x00, 0xa6, 0xff, 0xec, - 0x00, 0xa7, 0xff, 0xec, 0x00, 0xc2, 0xff, 0xec, 0x00, 0xc3, 0xff, 0xec, - 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc5, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, - 0x00, 0xc7, 0xff, 0xec, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, 0xff, 0xec, - 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x44, 0xff, 0xec, - 0x01, 0x5f, 0xff, 0xec, 0x01, 0x69, 0xff, 0xec, 0x01, 0xaa, 0xff, 0xec, - 0x01, 0xca, 0xff, 0xec, 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, 0xff, 0xec, - 0x02, 0x59, 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, 0x02, 0xd9, 0xff, 0xec, - 0x02, 0xda, 0xff, 0xec, 0x02, 0xdb, 0xff, 0xec, 0x02, 0xdc, 0xff, 0xec, - 0x02, 0xdd, 0xff, 0xec, 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1e, 0xff, 0xec, - 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, 0x03, 0x22, 0xff, 0xec, - 0x03, 0x23, 0xff, 0xec, 0x03, 0x24, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, - 0x03, 0x26, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, 0x03, 0x28, 0xff, 0xec, - 0x03, 0x29, 0xff, 0xec, 0x03, 0x2a, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, - 0x03, 0x2c, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2e, 0xff, 0xec, - 0x03, 0x2f, 0xff, 0xec, 0x03, 0x30, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, - 0x03, 0x32, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, 0x03, 0x34, 0xff, 0xec, - 0x01, 0x2e, 0x00, 0x05, 0x00, 0x52, 0x00, 0x09, 0xff, 0xc3, 0x00, 0x0a, - 0x00, 0x52, 0x00, 0x0c, 0x00, 0x3d, 0x00, 0x0d, 0x00, 0x29, 0x00, 0x0f, - 0xff, 0x9a, 0x00, 0x10, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, - 0x00, 0x29, 0x00, 0x24, 0xff, 0x9a, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, - 0xff, 0xd7, 0x00, 0x2d, 0xff, 0xbe, 0x00, 0x30, 0xff, 0xc3, 0x00, 0x32, - 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x36, 0xff, 0xec, 0x00, 0x37, - 0x00, 0x27, 0x00, 0x39, 0x00, 0x29, 0x00, 0x3a, 0x00, 0x14, 0x00, 0x40, - 0x00, 0x3d, 0x00, 0x44, 0xff, 0x9a, 0x00, 0x46, 0xff, 0x9a, 0x00, 0x47, - 0xff, 0x9a, 0x00, 0x48, 0xff, 0x9a, 0x00, 0x49, 0xff, 0xe5, 0x00, 0x4a, - 0xff, 0x9a, 0x00, 0x50, 0xff, 0xc3, 0x00, 0x51, 0xff, 0xc3, 0x00, 0x52, - 0xff, 0x9a, 0x00, 0x53, 0xff, 0xc3, 0x00, 0x54, 0xff, 0x9a, 0x00, 0x55, - 0xff, 0xc3, 0x00, 0x56, 0xff, 0xae, 0x00, 0x58, 0xff, 0xc3, 0x00, 0x59, - 0xff, 0xd7, 0x00, 0x5a, 0xff, 0xec, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5c, - 0xff, 0xec, 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x60, 0x00, 0x3d, 0x00, 0x82, - 0xff, 0x9a, 0x00, 0x83, 0xff, 0x9a, 0x00, 0x84, 0xff, 0x9a, 0x00, 0x85, - 0xff, 0x9a, 0x00, 0x86, 0xff, 0x9a, 0x00, 0x87, 0xff, 0x9a, 0x00, 0x88, - 0xff, 0x71, 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, - 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, - 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xa2, 0xff, 0x9a, 0x00, 0xa3, - 0xff, 0x9a, 0x00, 0xa4, 0xff, 0x9a, 0x00, 0xa5, 0xff, 0x9a, 0x00, 0xa6, - 0xff, 0x9a, 0x00, 0xa7, 0xff, 0x9a, 0x00, 0xa8, 0xff, 0x9a, 0x00, 0xa9, - 0xff, 0x9a, 0x00, 0xaa, 0xff, 0x9a, 0x00, 0xab, 0xff, 0x9a, 0x00, 0xac, - 0xff, 0x9a, 0x00, 0xad, 0xff, 0x9a, 0x00, 0xb3, 0xff, 0xc3, 0x00, 0xb4, - 0xff, 0x9a, 0x00, 0xb5, 0xff, 0x9a, 0x00, 0xb6, 0xff, 0x9a, 0x00, 0xb7, - 0xff, 0x9a, 0x00, 0xb8, 0xff, 0x9a, 0x00, 0xba, 0xff, 0x9a, 0x00, 0xbb, - 0xff, 0xc3, 0x00, 0xbc, 0xff, 0xc3, 0x00, 0xbd, 0xff, 0xc3, 0x00, 0xbe, - 0xff, 0xc3, 0x00, 0xbf, 0xff, 0xec, 0x00, 0xc1, 0xff, 0xec, 0x00, 0xc2, - 0xff, 0x9a, 0x00, 0xc3, 0xff, 0x9a, 0x00, 0xc4, 0xff, 0x9a, 0x00, 0xc5, - 0xff, 0x9a, 0x00, 0xc6, 0xff, 0x9a, 0x00, 0xc7, 0xff, 0x9a, 0x00, 0xc8, - 0xff, 0xd7, 0x00, 0xc9, 0xff, 0x9a, 0x00, 0xcb, 0xff, 0x9a, 0x00, 0xcd, - 0xff, 0x9a, 0x00, 0xce, 0xff, 0xd7, 0x00, 0xcf, 0xff, 0x9a, 0x00, 0xd5, - 0xff, 0x9a, 0x00, 0xd7, 0xff, 0x9a, 0x00, 0xd9, 0xff, 0x9a, 0x00, 0xdb, - 0xff, 0x9a, 0x00, 0xdd, 0xff, 0x9a, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, - 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x00, 0xf6, - 0xff, 0xbe, 0x01, 0x06, 0xff, 0xc3, 0x01, 0x08, 0xff, 0xc3, 0x01, 0x0a, - 0xff, 0xc3, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x0f, 0xff, 0x9a, 0x01, 0x11, - 0xff, 0x9a, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x13, 0xff, 0x9a, 0x01, 0x14, - 0xff, 0xd7, 0x01, 0x15, 0xff, 0x9a, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, - 0xff, 0xae, 0x01, 0x1f, 0xff, 0xae, 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, - 0xff, 0xae, 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0xae, 0x01, 0x24, - 0x00, 0x27, 0x01, 0x26, 0x00, 0x27, 0x01, 0x36, 0x00, 0x14, 0x01, 0x37, - 0xff, 0xec, 0x01, 0x39, 0xff, 0xec, 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, - 0xff, 0x9a, 0x01, 0x44, 0xff, 0x9a, 0x01, 0x4a, 0xff, 0xae, 0x01, 0x5f, - 0xff, 0x9a, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x69, 0xff, 0x9a, 0x01, 0x6d, - 0xff, 0xd7, 0x01, 0x71, 0x00, 0x27, 0x01, 0x79, 0xff, 0x9a, 0x01, 0x7b, - 0xff, 0xc3, 0x01, 0x7e, 0xff, 0x9a, 0x01, 0x80, 0xff, 0xec, 0x01, 0x82, - 0xff, 0x9a, 0x01, 0x84, 0xff, 0xc3, 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x8c, - 0xff, 0x9a, 0x01, 0x8e, 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, 0x01, 0x91, - 0xff, 0xd7, 0x01, 0x93, 0xff, 0x9a, 0x01, 0x94, 0xff, 0xd7, 0x01, 0x96, - 0xff, 0x9a, 0x01, 0x99, 0xff, 0x9a, 0x01, 0x9b, 0xff, 0x9a, 0x01, 0xa0, - 0xff, 0xec, 0x01, 0xa3, 0xff, 0xbe, 0x01, 0xaa, 0xff, 0x9a, 0x01, 0xb8, - 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbc, 0x00, 0x27, 0x01, 0xca, - 0xff, 0x9a, 0x01, 0xcf, 0xff, 0x9a, 0x01, 0xd8, 0xff, 0x9a, 0x01, 0xdb, - 0xff, 0x9a, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xec, 0x01, 0xde, - 0xff, 0x9a, 0x01, 0xea, 0xff, 0x9a, 0x01, 0xed, 0xff, 0x9a, 0x01, 0xee, - 0xff, 0xae, 0x01, 0xfa, 0x00, 0x14, 0x01, 0xfb, 0xff, 0xec, 0x01, 0xfc, - 0x00, 0x14, 0x01, 0xfd, 0xff, 0xec, 0x01, 0xfe, 0x00, 0x14, 0x01, 0xff, - 0xff, 0xec, 0x02, 0x01, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, - 0x00, 0x52, 0x02, 0x28, 0xff, 0x9a, 0x02, 0x58, 0xff, 0x9a, 0x02, 0x59, - 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x60, 0xff, 0x9a, 0x02, 0x6a, - 0xff, 0x9a, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x72, - 0xff, 0x9a, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0x9a, 0x02, 0x81, - 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, - 0xff, 0x9a, 0x02, 0x86, 0xff, 0xd7, 0x02, 0x87, 0xff, 0x9a, 0x02, 0x88, - 0xff, 0xd7, 0x02, 0x89, 0xff, 0x9a, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8b, - 0xff, 0xec, 0x02, 0x8c, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0x9a, 0x02, 0xa9, - 0x00, 0x27, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, - 0xff, 0x9a, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0x9a, 0x02, 0xb5, - 0x00, 0x27, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb7, 0x00, 0x27, 0x02, 0xb8, - 0xff, 0xec, 0x02, 0xb9, 0x00, 0x27, 0x02, 0xba, 0xff, 0xec, 0x02, 0xbd, - 0x00, 0x27, 0x02, 0xd9, 0xff, 0x9a, 0x02, 0xda, 0xff, 0x9a, 0x02, 0xdb, - 0xff, 0x9a, 0x02, 0xdc, 0xff, 0x9a, 0x02, 0xdd, 0xff, 0x9a, 0x02, 0xe0, - 0xff, 0x9a, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, - 0xff, 0xd7, 0x02, 0xf0, 0xff, 0x9a, 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf2, - 0xff, 0x9a, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0x9a, 0x02, 0xf8, - 0xff, 0xec, 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x03, 0x0a, - 0xff, 0x9a, 0x03, 0x0c, 0xff, 0x9a, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, - 0xff, 0xec, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, 0xff, 0x9a, 0x03, 0x17, - 0x00, 0x27, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, - 0xff, 0x9a, 0x03, 0x1d, 0xff, 0x9a, 0x03, 0x1e, 0xff, 0x9a, 0x03, 0x1f, - 0xff, 0x9a, 0x03, 0x21, 0xff, 0x9a, 0x03, 0x22, 0xff, 0x9a, 0x03, 0x23, - 0xff, 0x9a, 0x03, 0x24, 0xff, 0x9a, 0x03, 0x25, 0xff, 0x9a, 0x03, 0x26, - 0xff, 0x9a, 0x03, 0x27, 0xff, 0x9a, 0x03, 0x28, 0xff, 0x9a, 0x03, 0x29, - 0xff, 0x9a, 0x03, 0x2a, 0xff, 0x9a, 0x03, 0x2b, 0xff, 0x9a, 0x03, 0x2c, - 0xff, 0x9a, 0x03, 0x2d, 0xff, 0x9a, 0x03, 0x2e, 0xff, 0x9a, 0x03, 0x2f, - 0xff, 0x9a, 0x03, 0x30, 0xff, 0x9a, 0x03, 0x31, 0xff, 0x9a, 0x03, 0x32, - 0xff, 0x9a, 0x03, 0x33, 0xff, 0x9a, 0x03, 0x34, 0xff, 0x9a, 0x03, 0x36, - 0xff, 0x9a, 0x03, 0x38, 0xff, 0x9a, 0x03, 0x3a, 0xff, 0x9a, 0x03, 0x3c, - 0xff, 0x9a, 0x03, 0x3e, 0xff, 0x9a, 0x03, 0x40, 0xff, 0x9a, 0x03, 0x42, - 0xff, 0x9a, 0x03, 0x44, 0xff, 0x9a, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, - 0xff, 0x9a, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0x9a, 0x03, 0x4d, - 0xff, 0xd7, 0x03, 0x4e, 0xff, 0x9a, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, - 0xff, 0x9a, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0x9a, 0x03, 0x53, - 0xff, 0xd7, 0x03, 0x54, 0xff, 0x9a, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, - 0xff, 0x9a, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0x9a, 0x03, 0x59, - 0xff, 0xd7, 0x03, 0x5a, 0xff, 0x9a, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, - 0xff, 0x9a, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0x9a, 0x03, 0x5f, - 0xff, 0xd7, 0x03, 0x60, 0xff, 0x9a, 0x03, 0x62, 0xff, 0xc3, 0x03, 0x64, - 0xff, 0xc3, 0x03, 0x66, 0xff, 0xc3, 0x03, 0x68, 0xff, 0xc3, 0x03, 0x6a, - 0xff, 0xc3, 0x03, 0x6c, 0xff, 0xc3, 0x03, 0x6e, 0xff, 0xc3, 0x03, 0x70, - 0xff, 0xec, 0x03, 0x72, 0xff, 0xec, 0x03, 0x74, 0xff, 0xec, 0x00, 0x02, - 0x00, 0x05, 0xff, 0x98, 0x00, 0x0a, 0xff, 0xd7, 0x00, 0x03, 0x00, 0x05, - 0xff, 0x98, 0x00, 0x0a, 0xff, 0xd7, 0x02, 0x0b, 0xff, 0xd7, 0x00, 0x06, - 0x00, 0x05, 0xff, 0x6f, 0x00, 0x0a, 0xff, 0x6f, 0x00, 0x49, 0xff, 0xdb, - 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, - 0x00, 0x02, 0x00, 0x05, 0xff, 0xbe, 0x00, 0x0a, 0xff, 0xbe, 0x00, 0x61, - 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x0f, 0xff, 0xbe, - 0x00, 0x11, 0xff, 0xbe, 0x00, 0x22, 0xff, 0xb4, 0x00, 0x46, 0xff, 0xf6, - 0x00, 0x47, 0xff, 0xf6, 0x00, 0x48, 0xff, 0xf6, 0x00, 0x49, 0x00, 0x14, - 0x00, 0x4a, 0xff, 0xf6, 0x00, 0x52, 0xff, 0xf6, 0x00, 0x54, 0xff, 0xf6, - 0x00, 0x57, 0x00, 0x06, 0x00, 0xa8, 0xff, 0xf6, 0x00, 0xa9, 0xff, 0xf6, - 0x00, 0xaa, 0xff, 0xf6, 0x00, 0xab, 0xff, 0xf6, 0x00, 0xac, 0xff, 0xf6, - 0x00, 0xad, 0xff, 0xf6, 0x00, 0xb4, 0xff, 0xf6, 0x00, 0xb5, 0xff, 0xf6, - 0x00, 0xb6, 0xff, 0xf6, 0x00, 0xb7, 0xff, 0xf6, 0x00, 0xb8, 0xff, 0xf6, - 0x00, 0xba, 0xff, 0xf6, 0x00, 0xc9, 0xff, 0xf6, 0x00, 0xcb, 0xff, 0xf6, - 0x00, 0xcd, 0xff, 0xf6, 0x00, 0xcf, 0xff, 0xf6, 0x00, 0xd5, 0xff, 0xf6, - 0x00, 0xd7, 0xff, 0xf6, 0x00, 0xd9, 0xff, 0xf6, 0x00, 0xdb, 0xff, 0xf6, - 0x00, 0xdd, 0xff, 0xf6, 0x01, 0x0f, 0xff, 0xf6, 0x01, 0x11, 0xff, 0xf6, - 0x01, 0x13, 0xff, 0xf6, 0x01, 0x15, 0xff, 0xf6, 0x01, 0x79, 0xff, 0xf6, - 0x01, 0x7e, 0xff, 0xf6, 0x01, 0x82, 0xff, 0xf6, 0x01, 0x8c, 0xff, 0xf6, - 0x01, 0x8e, 0xff, 0xf6, 0x01, 0x90, 0xff, 0xf6, 0x01, 0x93, 0xff, 0xf6, - 0x01, 0x96, 0xff, 0xf6, 0x01, 0x99, 0xff, 0xf6, 0x01, 0x9b, 0xff, 0xf6, - 0x01, 0xcf, 0xff, 0xf6, 0x01, 0xd8, 0xff, 0xf6, 0x01, 0xdb, 0xff, 0xf6, - 0x01, 0xde, 0xff, 0xf6, 0x01, 0xea, 0xff, 0xf6, 0x01, 0xed, 0xff, 0xf6, - 0x02, 0x07, 0x00, 0x3d, 0x02, 0x08, 0xff, 0x8d, 0x02, 0x0b, 0x00, 0x3d, - 0x02, 0x0c, 0xff, 0x8d, 0x02, 0x10, 0xff, 0x81, 0x02, 0x15, 0x00, 0x0c, - 0x02, 0x60, 0xff, 0xf6, 0x02, 0x6a, 0xff, 0xf6, 0x02, 0x7f, 0xff, 0xf6, - 0x02, 0x85, 0xff, 0xf6, 0x02, 0x87, 0xff, 0xf6, 0x02, 0x89, 0xff, 0xf6, - 0x02, 0x8d, 0xff, 0xf6, 0x02, 0xb2, 0xff, 0xf6, 0x02, 0xb4, 0xff, 0xf6, - 0x02, 0xe0, 0xff, 0xf6, 0x02, 0xf0, 0xff, 0xf6, 0x02, 0xf2, 0xff, 0xf6, - 0x02, 0xf4, 0xff, 0xf6, 0x03, 0x0a, 0xff, 0xf6, 0x03, 0x0c, 0xff, 0xf6, - 0x03, 0x16, 0xff, 0xf6, 0x03, 0x1a, 0xff, 0xf6, 0x03, 0x36, 0xff, 0xf6, - 0x03, 0x38, 0xff, 0xf6, 0x03, 0x3a, 0xff, 0xf6, 0x03, 0x3c, 0xff, 0xf6, - 0x03, 0x3e, 0xff, 0xf6, 0x03, 0x40, 0xff, 0xf6, 0x03, 0x42, 0xff, 0xf6, - 0x03, 0x44, 0xff, 0xf6, 0x03, 0x4a, 0xff, 0xf6, 0x03, 0x4c, 0xff, 0xf6, - 0x03, 0x4e, 0xff, 0xf6, 0x03, 0x50, 0xff, 0xf6, 0x03, 0x52, 0xff, 0xf6, - 0x03, 0x54, 0xff, 0xf6, 0x03, 0x56, 0xff, 0xf6, 0x03, 0x58, 0xff, 0xf6, - 0x03, 0x5a, 0xff, 0xf6, 0x03, 0x5c, 0xff, 0xf6, 0x03, 0x5e, 0xff, 0xf6, - 0x03, 0x60, 0xff, 0xf6, 0x00, 0x07, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, - 0x00, 0x3d, 0x00, 0x0f, 0xff, 0xbe, 0x00, 0x11, 0xff, 0xbe, 0x00, 0x49, - 0x00, 0x14, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x00, 0x64, - 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, 0x00, 0x26, 0xff, 0xec, - 0x00, 0x2a, 0xff, 0xec, 0x00, 0x2d, 0x00, 0xe1, 0x00, 0x32, 0xff, 0xec, - 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, - 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, - 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, - 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, - 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, - 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, - 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, - 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, - 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, - 0x01, 0x36, 0xff, 0xd7, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, - 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, - 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, - 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfc, 0xff, 0xd7, 0x01, 0xfe, 0xff, 0xd7, - 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, - 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, - 0x02, 0x7e, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, - 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, - 0x02, 0xa9, 0xff, 0x85, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, - 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, - 0x02, 0xbd, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, - 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, - 0x03, 0x15, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x19, 0xff, 0xec, - 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, - 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, - 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, - 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, - 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, - 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, - 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, - 0x03, 0x73, 0xff, 0x9a, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x66, 0x00, 0x0a, - 0x00, 0x66, 0x00, 0x0c, 0x00, 0x8f, 0x00, 0x22, 0x00, 0xa4, 0x00, 0x40, - 0x00, 0xa4, 0x00, 0x45, 0x00, 0x52, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x4c, - 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x3d, 0x00, 0x4e, 0x00, 0x52, 0x00, 0x4f, - 0x00, 0x52, 0x00, 0x60, 0x00, 0xb8, 0x00, 0xae, 0x00, 0xf6, 0x00, 0xb0, - 0x00, 0xcd, 0x00, 0xb1, 0x00, 0xcd, 0x00, 0xe7, 0x00, 0x52, 0x00, 0xe9, - 0x00, 0xa4, 0x00, 0xeb, 0x01, 0x0a, 0x00, 0xed, 0x00, 0xcd, 0x00, 0xef, - 0x00, 0xf6, 0x00, 0xf1, 0x00, 0x29, 0x00, 0xf5, 0x00, 0x3d, 0x00, 0xf7, - 0x00, 0xe1, 0x00, 0xf9, 0x00, 0x52, 0x00, 0xfc, 0x00, 0x52, 0x00, 0xfe, - 0x00, 0x52, 0x01, 0x00, 0x00, 0x52, 0x01, 0x02, 0x00, 0x52, 0x01, 0x04, - 0x00, 0x52, 0x02, 0x07, 0x00, 0x8f, 0x02, 0x0b, 0x00, 0x8f, 0x00, 0x01, - 0x00, 0x2d, 0x00, 0x66, 0x00, 0x3a, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, - 0x00, 0x29, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x2d, - 0x00, 0x52, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, - 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, - 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, - 0xff, 0xec, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0xb8, - 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, - 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x00, 0x42, - 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x30, 0x00, 0x14, - 0x00, 0x36, 0xff, 0xec, 0x00, 0x37, 0xff, 0xd7, 0x00, 0x39, 0xff, 0xec, - 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0xd7, - 0x00, 0x59, 0xff, 0xec, 0x00, 0x5c, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, - 0x00, 0xbf, 0xff, 0xec, 0x00, 0xc1, 0xff, 0xec, 0x01, 0x1c, 0xff, 0xec, - 0x01, 0x20, 0xff, 0xec, 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0xec, - 0x01, 0x24, 0xff, 0xd7, 0x01, 0x26, 0xff, 0xd7, 0x01, 0x36, 0xff, 0xec, - 0x01, 0x38, 0xff, 0xd7, 0x01, 0x39, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xd7, - 0x01, 0x71, 0xff, 0xd7, 0x01, 0x80, 0xff, 0xec, 0x01, 0x8a, 0xff, 0xec, - 0x01, 0x91, 0xff, 0xec, 0x01, 0x94, 0xff, 0xec, 0x01, 0xa0, 0xff, 0xec, - 0x01, 0xbc, 0xff, 0xd7, 0x01, 0xdc, 0xff, 0xec, 0x01, 0xdd, 0xff, 0xec, - 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, 0x01, 0xfe, 0xff, 0xec, - 0x02, 0x00, 0xff, 0xd7, 0x02, 0x01, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x81, 0xff, 0xec, - 0x02, 0x83, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, 0x02, 0xa9, 0xff, 0xd7, - 0x02, 0xaa, 0xff, 0xec, 0x02, 0xb5, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xec, - 0x02, 0xb7, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xec, 0x02, 0xb9, 0xff, 0xd7, - 0x02, 0xba, 0xff, 0xec, 0x02, 0xbd, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xec, - 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x03, 0x0e, 0xff, 0xec, - 0x03, 0x10, 0xff, 0xec, 0x03, 0x17, 0xff, 0xd7, 0x03, 0x18, 0xff, 0xec, - 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x70, 0xff, 0xec, 0x03, 0x71, 0xff, 0xd7, - 0x03, 0x72, 0xff, 0xec, 0x03, 0x73, 0xff, 0xd7, 0x03, 0x74, 0xff, 0xec, - 0x01, 0x1d, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x0f, - 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, 0x00, 0x24, - 0xff, 0x85, 0x00, 0x26, 0xff, 0xc3, 0x00, 0x2a, 0xff, 0xc3, 0x00, 0x32, - 0xff, 0xc3, 0x00, 0x34, 0xff, 0xc3, 0x00, 0x36, 0xff, 0xec, 0x00, 0x37, - 0x00, 0x14, 0x00, 0x44, 0xff, 0x85, 0x00, 0x46, 0xff, 0x85, 0x00, 0x47, - 0xff, 0x85, 0x00, 0x48, 0xff, 0x85, 0x00, 0x4a, 0xff, 0x9a, 0x00, 0x50, - 0xff, 0xae, 0x00, 0x51, 0xff, 0xae, 0x00, 0x52, 0xff, 0x85, 0x00, 0x53, - 0xff, 0xae, 0x00, 0x54, 0xff, 0x85, 0x00, 0x55, 0xff, 0xae, 0x00, 0x56, - 0xff, 0x85, 0x00, 0x58, 0xff, 0xae, 0x00, 0x59, 0xff, 0xc3, 0x00, 0x5a, - 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xc3, 0x00, 0x5c, 0xff, 0xc3, 0x00, 0x5d, - 0xff, 0xc3, 0x00, 0x82, 0xff, 0x85, 0x00, 0x83, 0xff, 0x85, 0x00, 0x84, - 0xff, 0x85, 0x00, 0x85, 0xff, 0x85, 0x00, 0x86, 0xff, 0x85, 0x00, 0x87, - 0xff, 0x85, 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, 0xff, 0xc3, 0x00, 0x94, - 0xff, 0xc3, 0x00, 0x95, 0xff, 0xc3, 0x00, 0x96, 0xff, 0xc3, 0x00, 0x97, - 0xff, 0xc3, 0x00, 0x98, 0xff, 0xc3, 0x00, 0x9a, 0xff, 0xc3, 0x00, 0xa2, - 0xff, 0x85, 0x00, 0xa3, 0xff, 0x85, 0x00, 0xa4, 0xff, 0x85, 0x00, 0xa5, - 0xff, 0x85, 0x00, 0xa6, 0xff, 0x85, 0x00, 0xa7, 0xff, 0x85, 0x00, 0xa8, - 0xff, 0x85, 0x00, 0xa9, 0xff, 0x85, 0x00, 0xaa, 0xff, 0x85, 0x00, 0xab, - 0xff, 0x85, 0x00, 0xac, 0xff, 0x85, 0x00, 0xad, 0xff, 0x85, 0x00, 0xb3, - 0xff, 0xae, 0x00, 0xb4, 0xff, 0x85, 0x00, 0xb5, 0xff, 0x85, 0x00, 0xb6, - 0xff, 0x85, 0x00, 0xb7, 0xff, 0x85, 0x00, 0xb8, 0xff, 0x85, 0x00, 0xba, - 0xff, 0x85, 0x00, 0xbb, 0xff, 0xae, 0x00, 0xbc, 0xff, 0xae, 0x00, 0xbd, - 0xff, 0xae, 0x00, 0xbe, 0xff, 0xae, 0x00, 0xbf, 0xff, 0xc3, 0x00, 0xc1, - 0xff, 0xc3, 0x00, 0xc2, 0xff, 0x85, 0x00, 0xc3, 0xff, 0x85, 0x00, 0xc4, - 0xff, 0x85, 0x00, 0xc5, 0xff, 0x85, 0x00, 0xc6, 0xff, 0x85, 0x00, 0xc7, - 0xff, 0x85, 0x00, 0xc8, 0xff, 0xc3, 0x00, 0xc9, 0xff, 0x85, 0x00, 0xcb, - 0xff, 0x85, 0x00, 0xcd, 0xff, 0x85, 0x00, 0xce, 0xff, 0xc3, 0x00, 0xcf, - 0xff, 0x85, 0x00, 0xd5, 0xff, 0x85, 0x00, 0xd7, 0xff, 0x85, 0x00, 0xd9, - 0xff, 0x85, 0x00, 0xdb, 0xff, 0x85, 0x00, 0xdd, 0xff, 0x85, 0x00, 0xde, - 0xff, 0xc3, 0x00, 0xe0, 0xff, 0xc3, 0x00, 0xe2, 0xff, 0xc3, 0x00, 0xe4, - 0xff, 0xc3, 0x01, 0x06, 0xff, 0xae, 0x01, 0x08, 0xff, 0xae, 0x01, 0x0a, - 0xff, 0xae, 0x01, 0x0e, 0xff, 0xc3, 0x01, 0x0f, 0xff, 0x85, 0x01, 0x11, - 0xff, 0x85, 0x01, 0x12, 0xff, 0xc3, 0x01, 0x13, 0xff, 0x85, 0x01, 0x14, - 0xff, 0xc3, 0x01, 0x15, 0xff, 0x85, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, - 0xff, 0x85, 0x01, 0x1f, 0xff, 0x85, 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, - 0xff, 0x85, 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0x85, 0x01, 0x24, - 0x00, 0x14, 0x01, 0x26, 0x00, 0x14, 0x01, 0x37, 0xff, 0xc3, 0x01, 0x39, - 0xff, 0xc3, 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, 0xff, 0x85, 0x01, 0x44, - 0xff, 0x85, 0x01, 0x4a, 0xff, 0x85, 0x01, 0x5f, 0xff, 0x85, 0x01, 0x66, - 0xff, 0xc3, 0x01, 0x69, 0xff, 0x85, 0x01, 0x6d, 0xff, 0xc3, 0x01, 0x71, - 0x00, 0x14, 0x01, 0x79, 0xff, 0x85, 0x01, 0x7b, 0xff, 0xae, 0x01, 0x7e, - 0xff, 0x85, 0x01, 0x80, 0xff, 0xc3, 0x01, 0x82, 0xff, 0x85, 0x01, 0x84, - 0xff, 0xae, 0x01, 0x8a, 0xff, 0xc3, 0x01, 0x8c, 0xff, 0x85, 0x01, 0x8e, - 0xff, 0x85, 0x01, 0x90, 0xff, 0x85, 0x01, 0x91, 0xff, 0xc3, 0x01, 0x93, - 0xff, 0x85, 0x01, 0x94, 0xff, 0xc3, 0x01, 0x96, 0xff, 0x85, 0x01, 0x99, - 0xff, 0x85, 0x01, 0x9b, 0xff, 0x85, 0x01, 0xa0, 0xff, 0xec, 0x01, 0xaa, - 0xff, 0x85, 0x01, 0xb8, 0xff, 0xc3, 0x01, 0xbb, 0xff, 0xc3, 0x01, 0xbc, - 0x00, 0x14, 0x01, 0xca, 0xff, 0x85, 0x01, 0xcf, 0xff, 0x85, 0x01, 0xd8, - 0xff, 0x85, 0x01, 0xdb, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xc3, 0x01, 0xdd, - 0xff, 0xc3, 0x01, 0xde, 0xff, 0x85, 0x01, 0xea, 0xff, 0x85, 0x01, 0xed, - 0xff, 0x85, 0x01, 0xee, 0xff, 0x85, 0x01, 0xfb, 0xff, 0xc3, 0x01, 0xfd, - 0xff, 0xc3, 0x01, 0xff, 0xff, 0xc3, 0x02, 0x01, 0xff, 0xc3, 0x02, 0x07, - 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0x85, 0x02, 0x58, - 0xff, 0x85, 0x02, 0x59, 0xff, 0x85, 0x02, 0x5f, 0xff, 0xc3, 0x02, 0x60, - 0xff, 0x85, 0x02, 0x6a, 0xff, 0x85, 0x02, 0x6c, 0xff, 0xc3, 0x02, 0x6d, - 0xff, 0xc3, 0x02, 0x72, 0xff, 0x85, 0x02, 0x7e, 0xff, 0xc3, 0x02, 0x7f, - 0xff, 0x85, 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, 0x02, 0x84, - 0xff, 0xc3, 0x02, 0x85, 0xff, 0x85, 0x02, 0x86, 0xff, 0xc3, 0x02, 0x87, - 0xff, 0x85, 0x02, 0x88, 0xff, 0xc3, 0x02, 0x89, 0xff, 0x85, 0x02, 0x8a, - 0xff, 0xc3, 0x02, 0x8b, 0xff, 0xc3, 0x02, 0x8c, 0xff, 0xc3, 0x02, 0x8d, - 0xff, 0x85, 0x02, 0xa9, 0x00, 0x14, 0x02, 0xaa, 0xff, 0xc3, 0x02, 0xb1, - 0xff, 0xc3, 0x02, 0xb2, 0xff, 0x85, 0x02, 0xb3, 0xff, 0xc3, 0x02, 0xb4, - 0xff, 0x85, 0x02, 0xb5, 0x00, 0x14, 0x02, 0xb6, 0xff, 0xc3, 0x02, 0xb7, - 0x00, 0x14, 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xb9, 0x00, 0x14, 0x02, 0xba, - 0xff, 0xc3, 0x02, 0xbd, 0x00, 0x14, 0x02, 0xd9, 0xff, 0x85, 0x02, 0xda, - 0xff, 0x85, 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, 0x02, 0xdd, - 0xff, 0x85, 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xc3, 0x02, 0xe3, - 0xff, 0xc3, 0x02, 0xef, 0xff, 0xc3, 0x02, 0xf0, 0xff, 0x85, 0x02, 0xf1, - 0xff, 0xc3, 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xc3, 0x02, 0xf4, - 0xff, 0x85, 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, 0x02, 0xfc, - 0xff, 0xc3, 0x03, 0x0a, 0xff, 0x85, 0x03, 0x0c, 0xff, 0x85, 0x03, 0x0e, - 0xff, 0xc3, 0x03, 0x10, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xc3, 0x03, 0x16, - 0xff, 0x85, 0x03, 0x17, 0x00, 0x14, 0x03, 0x18, 0xff, 0xc3, 0x03, 0x19, - 0xff, 0xc3, 0x03, 0x1a, 0xff, 0x85, 0x03, 0x1d, 0xff, 0x85, 0x03, 0x1e, - 0xff, 0x85, 0x03, 0x1f, 0xff, 0x85, 0x03, 0x21, 0xff, 0x85, 0x03, 0x22, - 0xff, 0x85, 0x03, 0x23, 0xff, 0x85, 0x03, 0x24, 0xff, 0x85, 0x03, 0x25, - 0xff, 0x85, 0x03, 0x26, 0xff, 0x85, 0x03, 0x27, 0xff, 0x85, 0x03, 0x28, - 0xff, 0x85, 0x03, 0x29, 0xff, 0x85, 0x03, 0x2a, 0xff, 0x85, 0x03, 0x2b, - 0xff, 0x85, 0x03, 0x2c, 0xff, 0x85, 0x03, 0x2d, 0xff, 0x85, 0x03, 0x2e, - 0xff, 0x85, 0x03, 0x2f, 0xff, 0x85, 0x03, 0x30, 0xff, 0x85, 0x03, 0x31, - 0xff, 0x85, 0x03, 0x32, 0xff, 0x85, 0x03, 0x33, 0xff, 0x85, 0x03, 0x34, - 0xff, 0x85, 0x03, 0x36, 0xff, 0x85, 0x03, 0x38, 0xff, 0x85, 0x03, 0x3a, - 0xff, 0x85, 0x03, 0x3c, 0xff, 0x85, 0x03, 0x3e, 0xff, 0x85, 0x03, 0x40, - 0xff, 0x85, 0x03, 0x42, 0xff, 0x85, 0x03, 0x44, 0xff, 0x85, 0x03, 0x49, - 0xff, 0xc3, 0x03, 0x4a, 0xff, 0x85, 0x03, 0x4b, 0xff, 0xc3, 0x03, 0x4c, - 0xff, 0x85, 0x03, 0x4d, 0xff, 0xc3, 0x03, 0x4e, 0xff, 0x85, 0x03, 0x4f, - 0xff, 0xc3, 0x03, 0x50, 0xff, 0x85, 0x03, 0x51, 0xff, 0xc3, 0x03, 0x52, - 0xff, 0x85, 0x03, 0x53, 0xff, 0xc3, 0x03, 0x54, 0xff, 0x85, 0x03, 0x55, - 0xff, 0xc3, 0x03, 0x56, 0xff, 0x85, 0x03, 0x57, 0xff, 0xc3, 0x03, 0x58, - 0xff, 0x85, 0x03, 0x59, 0xff, 0xc3, 0x03, 0x5a, 0xff, 0x85, 0x03, 0x5b, - 0xff, 0xc3, 0x03, 0x5c, 0xff, 0x85, 0x03, 0x5d, 0xff, 0xc3, 0x03, 0x5e, - 0xff, 0x85, 0x03, 0x5f, 0xff, 0xc3, 0x03, 0x60, 0xff, 0x85, 0x03, 0x62, - 0xff, 0xae, 0x03, 0x64, 0xff, 0xae, 0x03, 0x66, 0xff, 0xae, 0x03, 0x68, - 0xff, 0xae, 0x03, 0x6a, 0xff, 0xae, 0x03, 0x6c, 0xff, 0xae, 0x03, 0x6e, - 0xff, 0xae, 0x03, 0x70, 0xff, 0xc3, 0x03, 0x72, 0xff, 0xc3, 0x03, 0x74, - 0xff, 0xc3, 0x01, 0x1d, 0x00, 0x05, 0x00, 0x52, 0x00, 0x09, 0xff, 0xc3, - 0x00, 0x0a, 0x00, 0x52, 0x00, 0x0c, 0x00, 0x3d, 0x00, 0x0d, 0x00, 0x29, - 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x10, 0xff, 0x5c, 0x00, 0x11, 0xff, 0x9a, - 0x00, 0x22, 0x00, 0x29, 0x00, 0x24, 0xff, 0x9a, 0x00, 0x26, 0xff, 0xd7, - 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x2d, 0xff, 0xbe, 0x00, 0x30, 0xff, 0xec, - 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x36, 0xff, 0xec, - 0x00, 0x37, 0x00, 0x27, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x44, 0xff, 0x9a, - 0x00, 0x46, 0xff, 0x9a, 0x00, 0x47, 0xff, 0x9a, 0x00, 0x48, 0xff, 0x9a, - 0x00, 0x49, 0xff, 0xe5, 0x00, 0x4a, 0xff, 0x9a, 0x00, 0x50, 0xff, 0xc3, - 0x00, 0x51, 0xff, 0xc3, 0x00, 0x52, 0xff, 0x9a, 0x00, 0x53, 0xff, 0xc3, - 0x00, 0x54, 0xff, 0x9a, 0x00, 0x55, 0xff, 0xc3, 0x00, 0x56, 0xff, 0xae, - 0x00, 0x58, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5c, 0xff, 0xec, - 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x60, 0x00, 0x3d, 0x00, 0x82, 0xff, 0x9a, - 0x00, 0x83, 0xff, 0x9a, 0x00, 0x84, 0xff, 0x9a, 0x00, 0x85, 0xff, 0x9a, - 0x00, 0x86, 0xff, 0x9a, 0x00, 0x87, 0xff, 0x9a, 0x00, 0x88, 0xff, 0x71, - 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, - 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, - 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xa2, 0xff, 0x9a, 0x00, 0xa3, 0xff, 0x9a, - 0x00, 0xa4, 0xff, 0x9a, 0x00, 0xa5, 0xff, 0x9a, 0x00, 0xa6, 0xff, 0x9a, - 0x00, 0xa7, 0xff, 0x9a, 0x00, 0xa8, 0xff, 0x9a, 0x00, 0xa9, 0xff, 0x9a, - 0x00, 0xaa, 0xff, 0x9a, 0x00, 0xab, 0xff, 0x9a, 0x00, 0xac, 0xff, 0x9a, - 0x00, 0xad, 0xff, 0x9a, 0x00, 0xb3, 0xff, 0xc3, 0x00, 0xb4, 0xff, 0x9a, - 0x00, 0xb5, 0xff, 0x9a, 0x00, 0xb6, 0xff, 0x9a, 0x00, 0xb7, 0xff, 0x9a, - 0x00, 0xb8, 0xff, 0x9a, 0x00, 0xba, 0xff, 0x9a, 0x00, 0xbb, 0xff, 0xc3, - 0x00, 0xbc, 0xff, 0xc3, 0x00, 0xbd, 0xff, 0xc3, 0x00, 0xbe, 0xff, 0xc3, - 0x00, 0xbf, 0xff, 0xec, 0x00, 0xc1, 0xff, 0xec, 0x00, 0xc2, 0xff, 0x9a, - 0x00, 0xc3, 0xff, 0x9a, 0x00, 0xc4, 0xff, 0x9a, 0x00, 0xc5, 0xff, 0x9a, - 0x00, 0xc6, 0xff, 0x9a, 0x00, 0xc7, 0xff, 0x9a, 0x00, 0xc8, 0xff, 0xd7, - 0x00, 0xc9, 0xff, 0x9a, 0x00, 0xcb, 0xff, 0x9a, 0x00, 0xcd, 0xff, 0x9a, - 0x00, 0xce, 0xff, 0xd7, 0x00, 0xcf, 0xff, 0x9a, 0x00, 0xd5, 0xff, 0x9a, - 0x00, 0xd7, 0xff, 0x9a, 0x00, 0xd9, 0xff, 0x9a, 0x00, 0xdb, 0xff, 0x9a, - 0x00, 0xdd, 0xff, 0x9a, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, - 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x00, 0xf6, 0xff, 0xbe, - 0x01, 0x06, 0xff, 0xc3, 0x01, 0x08, 0xff, 0xc3, 0x01, 0x0a, 0xff, 0xc3, - 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x0f, 0xff, 0x9a, 0x01, 0x11, 0xff, 0x9a, - 0x01, 0x12, 0xff, 0xd7, 0x01, 0x13, 0xff, 0x9a, 0x01, 0x14, 0xff, 0xd7, - 0x01, 0x15, 0xff, 0x9a, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, 0xff, 0xae, - 0x01, 0x1f, 0xff, 0xae, 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, 0xff, 0xae, - 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0xae, 0x01, 0x24, 0x00, 0x27, - 0x01, 0x26, 0x00, 0x27, 0x01, 0x39, 0xff, 0xec, 0x01, 0x40, 0xff, 0xc3, - 0x01, 0x43, 0xff, 0x9a, 0x01, 0x44, 0xff, 0x9a, 0x01, 0x4a, 0xff, 0xae, - 0x01, 0x5f, 0xff, 0x9a, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x69, 0xff, 0x9a, - 0x01, 0x6d, 0xff, 0xd7, 0x01, 0x71, 0x00, 0x27, 0x01, 0x79, 0xff, 0x9a, - 0x01, 0x7b, 0xff, 0xc3, 0x01, 0x7e, 0xff, 0x9a, 0x01, 0x80, 0xff, 0xec, - 0x01, 0x82, 0xff, 0x9a, 0x01, 0x84, 0xff, 0xc3, 0x01, 0x8a, 0xff, 0xec, - 0x01, 0x8c, 0xff, 0x9a, 0x01, 0x8e, 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, - 0x01, 0x93, 0xff, 0x9a, 0x01, 0x96, 0xff, 0x9a, 0x01, 0x99, 0xff, 0x9a, - 0x01, 0x9b, 0xff, 0x9a, 0x01, 0xa0, 0xff, 0xec, 0x01, 0xa3, 0xff, 0xbe, - 0x01, 0xaa, 0xff, 0x9a, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, - 0x01, 0xbc, 0x00, 0x27, 0x01, 0xca, 0xff, 0x9a, 0x01, 0xcf, 0xff, 0x9a, - 0x01, 0xd8, 0xff, 0x9a, 0x01, 0xdb, 0xff, 0x9a, 0x01, 0xdd, 0xff, 0xec, - 0x01, 0xde, 0xff, 0x9a, 0x01, 0xea, 0xff, 0x9a, 0x01, 0xed, 0xff, 0x9a, - 0x01, 0xee, 0xff, 0xae, 0x02, 0x01, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x02, 0x0f, 0xff, 0xd7, 0x02, 0x28, 0xff, 0x9a, - 0x02, 0x58, 0xff, 0x9a, 0x02, 0x59, 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xd7, - 0x02, 0x60, 0xff, 0x9a, 0x02, 0x6a, 0xff, 0x9a, 0x02, 0x6c, 0xff, 0xd7, - 0x02, 0x6d, 0xff, 0xec, 0x02, 0x72, 0xff, 0x9a, 0x02, 0x7e, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0x9a, 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, - 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, 0xff, 0x9a, 0x02, 0x86, 0xff, 0xd7, - 0x02, 0x87, 0xff, 0x9a, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, 0xff, 0x9a, - 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8b, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xd7, - 0x02, 0x8d, 0xff, 0x9a, 0x02, 0xa9, 0x00, 0x27, 0x02, 0xb1, 0xff, 0xd7, - 0x02, 0xb2, 0xff, 0x9a, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0x9a, - 0x02, 0xb5, 0x00, 0x27, 0x02, 0xb7, 0x00, 0x27, 0x02, 0xb8, 0xff, 0xec, - 0x02, 0xb9, 0x00, 0x27, 0x02, 0xba, 0xff, 0xec, 0x02, 0xbd, 0x00, 0x27, - 0x02, 0xd9, 0xff, 0x9a, 0x02, 0xda, 0xff, 0x9a, 0x02, 0xdb, 0xff, 0x9a, - 0x02, 0xdc, 0xff, 0x9a, 0x02, 0xdd, 0xff, 0x9a, 0x02, 0xe0, 0xff, 0x9a, - 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, - 0x02, 0xf0, 0xff, 0x9a, 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf2, 0xff, 0x9a, - 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0x9a, 0x02, 0xf8, 0xff, 0xec, - 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x03, 0x0a, 0xff, 0x9a, - 0x03, 0x0c, 0xff, 0x9a, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, 0xff, 0xec, - 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, 0xff, 0x9a, 0x03, 0x17, 0x00, 0x27, - 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0x9a, 0x03, 0x1d, 0xff, 0x9a, - 0x03, 0x1e, 0xff, 0x9a, 0x03, 0x1f, 0xff, 0x9a, 0x03, 0x21, 0xff, 0x9a, - 0x03, 0x22, 0xff, 0x9a, 0x03, 0x23, 0xff, 0x9a, 0x03, 0x24, 0xff, 0x9a, - 0x03, 0x25, 0xff, 0x9a, 0x03, 0x26, 0xff, 0x9a, 0x03, 0x27, 0xff, 0x9a, - 0x03, 0x28, 0xff, 0x9a, 0x03, 0x29, 0xff, 0x9a, 0x03, 0x2a, 0xff, 0x9a, - 0x03, 0x2b, 0xff, 0x9a, 0x03, 0x2c, 0xff, 0x9a, 0x03, 0x2d, 0xff, 0x9a, - 0x03, 0x2e, 0xff, 0x9a, 0x03, 0x2f, 0xff, 0x9a, 0x03, 0x30, 0xff, 0x9a, - 0x03, 0x31, 0xff, 0x9a, 0x03, 0x32, 0xff, 0x9a, 0x03, 0x33, 0xff, 0x9a, - 0x03, 0x34, 0xff, 0x9a, 0x03, 0x36, 0xff, 0x9a, 0x03, 0x38, 0xff, 0x9a, - 0x03, 0x3a, 0xff, 0x9a, 0x03, 0x3c, 0xff, 0x9a, 0x03, 0x3e, 0xff, 0x9a, - 0x03, 0x40, 0xff, 0x9a, 0x03, 0x42, 0xff, 0x9a, 0x03, 0x44, 0xff, 0x9a, - 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, 0xff, 0x9a, 0x03, 0x4b, 0xff, 0xd7, - 0x03, 0x4c, 0xff, 0x9a, 0x03, 0x4d, 0xff, 0xd7, 0x03, 0x4e, 0xff, 0x9a, - 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, 0xff, 0x9a, 0x03, 0x51, 0xff, 0xd7, - 0x03, 0x52, 0xff, 0x9a, 0x03, 0x53, 0xff, 0xd7, 0x03, 0x54, 0xff, 0x9a, - 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, 0xff, 0x9a, 0x03, 0x57, 0xff, 0xd7, - 0x03, 0x58, 0xff, 0x9a, 0x03, 0x59, 0xff, 0xd7, 0x03, 0x5a, 0xff, 0x9a, - 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, 0xff, 0x9a, 0x03, 0x5d, 0xff, 0xd7, - 0x03, 0x5e, 0xff, 0x9a, 0x03, 0x5f, 0xff, 0xd7, 0x03, 0x60, 0xff, 0x9a, - 0x03, 0x62, 0xff, 0xc3, 0x03, 0x64, 0xff, 0xc3, 0x03, 0x66, 0xff, 0xc3, - 0x03, 0x68, 0xff, 0xc3, 0x03, 0x6a, 0xff, 0xc3, 0x03, 0x6c, 0xff, 0xc3, - 0x03, 0x6e, 0xff, 0xc3, 0x03, 0x70, 0xff, 0xec, 0x03, 0x72, 0xff, 0xec, - 0x03, 0x74, 0xff, 0xec, 0x00, 0xc5, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, - 0x00, 0x29, 0x00, 0x10, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x36, - 0xff, 0xd7, 0x00, 0x38, 0xff, 0xec, 0x00, 0x46, 0xff, 0xec, 0x00, 0x47, - 0xff, 0xec, 0x00, 0x48, 0xff, 0xec, 0x00, 0x52, 0xff, 0xec, 0x00, 0x54, - 0xff, 0xec, 0x00, 0x59, 0xff, 0xd7, 0x00, 0x5a, 0xff, 0xd7, 0x00, 0x5c, - 0xff, 0xd7, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, - 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, - 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, - 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0xa8, - 0xff, 0xec, 0x00, 0xa9, 0xff, 0xec, 0x00, 0xaa, 0xff, 0xec, 0x00, 0xab, - 0xff, 0xec, 0x00, 0xac, 0xff, 0xec, 0x00, 0xad, 0xff, 0xec, 0x00, 0xb4, - 0xff, 0xec, 0x00, 0xb5, 0xff, 0xec, 0x00, 0xb6, 0xff, 0xec, 0x00, 0xb7, - 0xff, 0xec, 0x00, 0xb8, 0xff, 0xec, 0x00, 0xba, 0xff, 0xec, 0x00, 0xbf, - 0xff, 0xd7, 0x00, 0xc1, 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xc9, - 0xff, 0xec, 0x00, 0xcb, 0xff, 0xec, 0x00, 0xcd, 0xff, 0xec, 0x00, 0xce, - 0xff, 0xec, 0x00, 0xcf, 0xff, 0xec, 0x00, 0xd5, 0xff, 0xec, 0x00, 0xd7, - 0xff, 0xec, 0x00, 0xd9, 0xff, 0xec, 0x00, 0xdb, 0xff, 0xec, 0x00, 0xdd, - 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, - 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x0f, - 0xff, 0xec, 0x01, 0x11, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x13, - 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, 0xff, 0xec, 0x01, 0x1c, - 0xff, 0xd7, 0x01, 0x20, 0xff, 0xd7, 0x01, 0x22, 0xff, 0xd7, 0x01, 0x2c, - 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, - 0xff, 0xec, 0x01, 0x37, 0xff, 0xd7, 0x01, 0x39, 0xff, 0xd7, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x79, 0xff, 0xec, 0x01, 0x7e, - 0xff, 0xec, 0x01, 0x80, 0xff, 0xd7, 0x01, 0x82, 0xff, 0xec, 0x01, 0x8a, - 0xff, 0xd7, 0x01, 0x8c, 0xff, 0xec, 0x01, 0x8e, 0xff, 0xec, 0x01, 0x90, - 0xff, 0xec, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x93, 0xff, 0xec, 0x01, 0x94, - 0xff, 0xd7, 0x01, 0x96, 0xff, 0xec, 0x01, 0x99, 0xff, 0xec, 0x01, 0x9b, - 0xff, 0xec, 0x01, 0xa0, 0xff, 0xd7, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xcf, 0xff, 0xec, 0x01, 0xd8, 0xff, 0xec, 0x01, 0xdb, - 0xff, 0xec, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xd7, 0x01, 0xde, - 0xff, 0xec, 0x01, 0xea, 0xff, 0xec, 0x01, 0xed, 0xff, 0xec, 0x01, 0xfb, - 0xff, 0xd7, 0x01, 0xfd, 0xff, 0xd7, 0x01, 0xff, 0xff, 0xd7, 0x02, 0x01, - 0xff, 0xd7, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, - 0xff, 0xec, 0x02, 0x60, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6a, - 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xd7, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x7f, 0xff, 0xec, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, - 0xff, 0xd7, 0x02, 0x84, 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, 0x02, 0x86, - 0xff, 0xec, 0x02, 0x87, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x89, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xd7, 0x02, 0x8c, - 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb2, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xb4, - 0xff, 0xec, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, - 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf1, - 0xff, 0xec, 0x02, 0xf2, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x02, 0xf4, - 0xff, 0xec, 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, - 0xff, 0xd7, 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, 0xff, 0xec, 0x03, 0x0e, - 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x15, 0xff, 0xec, 0x03, 0x16, - 0xff, 0xec, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xec, 0x03, 0x1a, - 0xff, 0xec, 0x03, 0x36, 0xff, 0xec, 0x03, 0x38, 0xff, 0xec, 0x03, 0x3a, - 0xff, 0xec, 0x03, 0x3c, 0xff, 0xec, 0x03, 0x3e, 0xff, 0xec, 0x03, 0x40, - 0xff, 0xec, 0x03, 0x42, 0xff, 0xec, 0x03, 0x44, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4a, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4c, - 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4e, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x50, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x52, - 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x54, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x56, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x58, - 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5a, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5c, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5e, - 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x60, 0xff, 0xec, 0x03, 0x61, - 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, - 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, - 0xff, 0xec, 0x03, 0x70, 0xff, 0xd7, 0x03, 0x72, 0xff, 0xd7, 0x03, 0x74, - 0xff, 0xd7, 0x00, 0x33, 0x00, 0x52, 0xff, 0xec, 0x00, 0xa8, 0xff, 0xec, - 0x00, 0xb4, 0xff, 0xec, 0x00, 0xb5, 0xff, 0xec, 0x00, 0xb6, 0xff, 0xec, - 0x00, 0xb7, 0xff, 0xec, 0x00, 0xb8, 0xff, 0xec, 0x00, 0xba, 0xff, 0xec, - 0x01, 0x0f, 0xff, 0xec, 0x01, 0x11, 0xff, 0xec, 0x01, 0x13, 0xff, 0xec, - 0x01, 0x15, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xec, 0x01, 0x8e, 0xff, 0xec, - 0x01, 0x90, 0xff, 0xec, 0x01, 0x93, 0xff, 0xec, 0x01, 0x96, 0xff, 0xec, - 0x01, 0x99, 0xff, 0xec, 0x01, 0x9b, 0xff, 0xec, 0x01, 0xd8, 0xff, 0xec, - 0x01, 0xde, 0xff, 0xec, 0x02, 0x0b, 0x00, 0x14, 0x02, 0x60, 0xff, 0xec, - 0x02, 0x6a, 0xff, 0xec, 0x02, 0x7f, 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, - 0x02, 0x87, 0xff, 0xec, 0x02, 0x89, 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, - 0x02, 0xb2, 0xff, 0xec, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xe0, 0xff, 0xec, - 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf2, 0xff, 0xec, 0x02, 0xf4, 0xff, 0xec, - 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, 0xff, 0xec, 0x03, 0x16, 0xff, 0xec, - 0x03, 0x1a, 0xff, 0xec, 0x03, 0x4a, 0xff, 0xec, 0x03, 0x4c, 0xff, 0xec, - 0x03, 0x4e, 0xff, 0xec, 0x03, 0x50, 0xff, 0xec, 0x03, 0x52, 0xff, 0xec, - 0x03, 0x54, 0xff, 0xec, 0x03, 0x56, 0xff, 0xec, 0x03, 0x58, 0xff, 0xec, - 0x03, 0x5a, 0xff, 0xec, 0x03, 0x5c, 0xff, 0xec, 0x03, 0x5e, 0xff, 0xec, - 0x03, 0x60, 0xff, 0xec, 0x00, 0x0b, 0x01, 0x62, 0x00, 0x29, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x69, 0x00, 0x29, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, - 0xff, 0x85, 0x01, 0x72, 0xff, 0x9a, 0x01, 0x73, 0xff, 0xd7, 0x01, 0x75, - 0xff, 0xd7, 0x01, 0x78, 0xff, 0x9a, 0x01, 0x88, 0x00, 0x29, 0x01, 0x91, - 0xff, 0xc3, 0x00, 0x03, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, - 0x01, 0x73, 0xff, 0xec, 0x00, 0x0b, 0x01, 0x5f, 0xff, 0xec, 0x01, 0x64, - 0xff, 0xec, 0x01, 0x67, 0xff, 0xec, 0x01, 0x6c, 0xff, 0xec, 0x01, 0x70, - 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, 0xff, 0xd7, 0x01, 0x74, - 0xff, 0xd7, 0x01, 0x77, 0xff, 0xec, 0x01, 0x78, 0xff, 0xd7, 0x01, 0x88, - 0xff, 0xec, 0x00, 0x24, 0x00, 0x10, 0xff, 0xc3, 0x00, 0x6d, 0xff, 0xc3, - 0x01, 0x5f, 0xff, 0x9a, 0x01, 0x62, 0xff, 0xc3, 0x01, 0x66, 0xff, 0xd7, - 0x01, 0x69, 0xff, 0xc3, 0x01, 0x73, 0xff, 0xd7, 0x01, 0x76, 0xff, 0xd7, - 0x01, 0x79, 0xff, 0x9a, 0x01, 0x7a, 0xff, 0x9a, 0x01, 0x7b, 0xff, 0xc3, - 0x01, 0x7d, 0xff, 0xc3, 0x01, 0x7e, 0xff, 0x9a, 0x01, 0x81, 0xff, 0xae, - 0x01, 0x82, 0xff, 0x9a, 0x01, 0x83, 0xff, 0xd7, 0x01, 0x84, 0xff, 0xc3, - 0x01, 0x85, 0xff, 0xd7, 0x01, 0x86, 0xff, 0xc3, 0x01, 0x87, 0xff, 0xc3, - 0x01, 0x89, 0xff, 0xc3, 0x01, 0x8c, 0xff, 0x9a, 0x01, 0x8e, 0xff, 0x9a, - 0x01, 0x8f, 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, 0x01, 0x92, 0xff, 0xc3, - 0x01, 0x93, 0xff, 0xae, 0x01, 0x94, 0xff, 0xd7, 0x01, 0x95, 0xff, 0xc3, - 0x01, 0x96, 0xff, 0xae, 0x01, 0x98, 0xff, 0xd7, 0x01, 0x99, 0xff, 0x9a, - 0x01, 0x9a, 0xff, 0xc3, 0x01, 0x9b, 0xff, 0xae, 0x02, 0x02, 0xff, 0xc3, - 0x02, 0x03, 0xff, 0xc3, 0x00, 0x03, 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, - 0xff, 0xc3, 0x01, 0x78, 0xff, 0xc3, 0x00, 0x19, 0x01, 0x79, 0xff, 0xd7, - 0x01, 0x7d, 0xff, 0xd7, 0x01, 0x7e, 0xff, 0xd7, 0x01, 0x80, 0xff, 0xd7, - 0x01, 0x81, 0xff, 0xd7, 0x01, 0x83, 0xff, 0xec, 0x01, 0x85, 0xff, 0xd7, - 0x01, 0x86, 0xff, 0xd7, 0x01, 0x88, 0x00, 0x29, 0x01, 0x8a, 0xff, 0xd7, - 0x01, 0x8b, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xd7, 0x01, 0x8d, 0xff, 0xec, - 0x01, 0x8f, 0xff, 0xec, 0x01, 0x90, 0xff, 0xd7, 0x01, 0x91, 0xff, 0xec, - 0x01, 0x92, 0xff, 0xd7, 0x01, 0x93, 0xff, 0xd7, 0x01, 0x94, 0xff, 0xec, - 0x01, 0x95, 0xff, 0xd7, 0x01, 0x96, 0xff, 0xec, 0x01, 0x98, 0xff, 0xd7, - 0x01, 0x99, 0xff, 0xd7, 0x01, 0x9a, 0xff, 0xd7, 0x01, 0x9b, 0xff, 0xd7, - 0x00, 0x4f, 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, 0x00, 0x26, - 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, - 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, - 0xff, 0xc3, 0x00, 0x3a, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, - 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x24, - 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, - 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, - 0xff, 0xd7, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0x72, - 0xff, 0x9a, 0x01, 0x73, 0xff, 0xd7, 0x01, 0x75, 0xff, 0xc3, 0x01, 0x78, - 0xff, 0x9a, 0x01, 0x91, 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfc, - 0xff, 0xd7, 0x01, 0xfe, 0xff, 0xd7, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, - 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, - 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, - 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, - 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, - 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, - 0xff, 0x9a, 0x03, 0x73, 0xff, 0x9a, 0x00, 0x17, 0x00, 0x37, 0xff, 0xec, - 0x00, 0x39, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xec, 0x00, 0x3c, 0xff, 0xec, - 0x00, 0x9f, 0xff, 0xec, 0x01, 0x24, 0xff, 0xec, 0x01, 0x26, 0xff, 0xec, - 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xec, 0x01, 0x67, 0xff, 0xec, - 0x01, 0x6c, 0xff, 0xd7, 0x01, 0x70, 0xff, 0xec, 0x01, 0x71, 0xff, 0xec, - 0x01, 0x72, 0xff, 0xec, 0x01, 0x74, 0xff, 0xec, 0x01, 0x77, 0xff, 0xec, - 0x01, 0x78, 0xff, 0xec, 0x01, 0x91, 0xff, 0xec, 0x01, 0x94, 0xff, 0xec, - 0x02, 0x00, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xec, 0x03, 0x71, 0xff, 0xec, - 0x03, 0x73, 0xff, 0xec, 0x00, 0x71, 0x00, 0x05, 0xff, 0x9a, 0x00, 0x0a, - 0xff, 0x9a, 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x10, 0xff, 0x9a, 0x00, 0x11, - 0xff, 0x9a, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, - 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, - 0xff, 0xec, 0x00, 0x39, 0xff, 0xae, 0x00, 0x3a, 0xff, 0xc3, 0x00, 0x3c, - 0xff, 0x9a, 0x00, 0x6d, 0xff, 0x9a, 0x00, 0x7d, 0xff, 0xae, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, - 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, - 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, - 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, 0x01, 0x24, - 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, - 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, - 0xff, 0xc3, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x5f, - 0xff, 0x85, 0x01, 0x62, 0xff, 0x9a, 0x01, 0x66, 0xff, 0xec, 0x01, 0x69, - 0xff, 0x9a, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x73, 0xff, 0xae, 0x01, 0x76, - 0xff, 0xd7, 0x01, 0x79, 0xff, 0x85, 0x01, 0x7a, 0xff, 0x85, 0x01, 0x7b, - 0xff, 0xae, 0x01, 0x7e, 0xff, 0x85, 0x01, 0x80, 0xff, 0xc3, 0x01, 0x81, - 0xff, 0x9a, 0x01, 0x82, 0xff, 0x85, 0x01, 0x84, 0xff, 0xc3, 0x01, 0x86, - 0xff, 0xc3, 0x01, 0x87, 0xff, 0xc3, 0x01, 0x89, 0xff, 0xc3, 0x01, 0x8a, - 0xff, 0xc3, 0x01, 0x8c, 0xff, 0x85, 0x01, 0x8d, 0xff, 0xc3, 0x01, 0x8e, - 0xff, 0x9a, 0x01, 0x8f, 0xff, 0x85, 0x01, 0x90, 0xff, 0x85, 0x01, 0x91, - 0xff, 0xc3, 0x01, 0x92, 0xff, 0xc3, 0x01, 0x93, 0xff, 0x85, 0x01, 0x94, - 0xff, 0xc3, 0x01, 0x95, 0xff, 0xc3, 0x01, 0x96, 0xff, 0x9a, 0x01, 0x97, - 0x00, 0x29, 0x01, 0x98, 0xff, 0xc3, 0x01, 0x99, 0xff, 0x85, 0x01, 0x9a, - 0xff, 0xc3, 0x01, 0x9b, 0xff, 0x9a, 0x01, 0xfa, 0xff, 0xc3, 0x01, 0xfc, - 0xff, 0xc3, 0x01, 0xfe, 0xff, 0xc3, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x02, - 0xff, 0x9a, 0x02, 0x03, 0xff, 0x9a, 0x02, 0x07, 0xff, 0x9a, 0x02, 0x0b, - 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x61, - 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, - 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, - 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x73, - 0xff, 0x9a, 0x00, 0xb2, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, - 0x00, 0x24, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, - 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x44, 0xff, 0xc3, - 0x00, 0x46, 0xff, 0xc3, 0x00, 0x47, 0xff, 0xc3, 0x00, 0x48, 0xff, 0xc3, - 0x00, 0x4a, 0xff, 0xc3, 0x00, 0x50, 0xff, 0xd7, 0x00, 0x51, 0xff, 0xd7, - 0x00, 0x52, 0xff, 0xc3, 0x00, 0x53, 0xff, 0xd7, 0x00, 0x54, 0xff, 0xc3, - 0x00, 0x55, 0xff, 0xd7, 0x00, 0x56, 0xff, 0xd7, 0x00, 0x58, 0xff, 0xd7, - 0x00, 0x82, 0xff, 0xc3, 0x00, 0x83, 0xff, 0xc3, 0x00, 0x84, 0xff, 0xc3, - 0x00, 0x85, 0xff, 0xc3, 0x00, 0x86, 0xff, 0xc3, 0x00, 0x87, 0xff, 0xc3, - 0x00, 0x88, 0xff, 0x85, 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, - 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, - 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xa2, 0xff, 0xc3, - 0x00, 0xa3, 0xff, 0xc3, 0x00, 0xa4, 0xff, 0xc3, 0x00, 0xa5, 0xff, 0xc3, - 0x00, 0xa6, 0xff, 0xc3, 0x00, 0xa7, 0xff, 0xc3, 0x00, 0xa8, 0xff, 0xc3, - 0x00, 0xa9, 0xff, 0xc3, 0x00, 0xaa, 0xff, 0xc3, 0x00, 0xab, 0xff, 0xc3, - 0x00, 0xac, 0xff, 0xc3, 0x00, 0xad, 0xff, 0xc3, 0x00, 0xb3, 0xff, 0xd7, - 0x00, 0xb4, 0xff, 0xc3, 0x00, 0xb5, 0xff, 0xc3, 0x00, 0xb6, 0xff, 0xc3, - 0x00, 0xb7, 0xff, 0xc3, 0x00, 0xb8, 0xff, 0xc3, 0x00, 0xba, 0xff, 0xc3, - 0x00, 0xbb, 0xff, 0xd7, 0x00, 0xbc, 0xff, 0xd7, 0x00, 0xbd, 0xff, 0xd7, - 0x00, 0xbe, 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xc3, 0x00, 0xc3, 0xff, 0xc3, - 0x00, 0xc4, 0xff, 0xc3, 0x00, 0xc5, 0xff, 0xc3, 0x00, 0xc6, 0xff, 0xc3, - 0x00, 0xc7, 0xff, 0xc3, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xc9, 0xff, 0xc3, - 0x00, 0xcb, 0xff, 0xc3, 0x00, 0xcd, 0xff, 0xc3, 0x00, 0xce, 0xff, 0xd7, - 0x00, 0xcf, 0xff, 0xc3, 0x00, 0xd5, 0xff, 0xc3, 0x00, 0xd7, 0xff, 0xc3, - 0x00, 0xd9, 0xff, 0xc3, 0x00, 0xdb, 0xff, 0xc3, 0x00, 0xdd, 0xff, 0xc3, - 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, - 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x06, 0xff, 0xd7, 0x01, 0x08, 0xff, 0xd7, - 0x01, 0x0a, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x0f, 0xff, 0xc3, - 0x01, 0x11, 0xff, 0xc3, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x13, 0xff, 0xc3, - 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, 0xff, 0xc3, 0x01, 0x1d, 0xff, 0xd7, - 0x01, 0x1f, 0xff, 0xd7, 0x01, 0x21, 0xff, 0xd7, 0x01, 0x23, 0xff, 0xd7, - 0x01, 0x43, 0xff, 0xc3, 0x01, 0x44, 0xff, 0xc3, 0x01, 0x4a, 0xff, 0xd7, - 0x01, 0x62, 0x00, 0x14, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, 0xff, 0xd7, - 0x01, 0x71, 0xff, 0x9a, 0x01, 0x72, 0xff, 0xc3, 0x01, 0x73, 0xff, 0xd7, - 0x01, 0x75, 0xff, 0xd7, 0x01, 0x78, 0xff, 0xc3, 0x01, 0x79, 0xff, 0xc3, - 0x01, 0x88, 0x00, 0x29, 0x01, 0x8d, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0xc3, 0x02, 0x58, 0xff, 0xc3, - 0x02, 0x59, 0xff, 0xc3, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x60, 0xff, 0xc3, - 0x03, 0x1d, 0xff, 0xc3, 0x03, 0x1e, 0xff, 0xc3, 0x03, 0x1f, 0xff, 0xc3, - 0x03, 0x21, 0xff, 0xc3, 0x03, 0x22, 0xff, 0xc3, 0x03, 0x23, 0xff, 0xc3, - 0x03, 0x24, 0xff, 0xc3, 0x03, 0x25, 0xff, 0xc3, 0x03, 0x26, 0xff, 0xc3, - 0x03, 0x27, 0xff, 0xc3, 0x03, 0x28, 0xff, 0xc3, 0x03, 0x29, 0xff, 0xc3, - 0x03, 0x2a, 0xff, 0xc3, 0x03, 0x2b, 0xff, 0xc3, 0x03, 0x2c, 0xff, 0xc3, - 0x03, 0x2d, 0xff, 0xc3, 0x03, 0x2e, 0xff, 0xc3, 0x03, 0x2f, 0xff, 0xc3, - 0x03, 0x30, 0xff, 0xc3, 0x03, 0x31, 0xff, 0xc3, 0x03, 0x32, 0xff, 0xc3, - 0x03, 0x33, 0xff, 0xc3, 0x03, 0x34, 0xff, 0xc3, 0x03, 0x36, 0xff, 0xc3, - 0x03, 0x38, 0xff, 0xc3, 0x03, 0x3a, 0xff, 0xc3, 0x03, 0x3c, 0xff, 0xc3, - 0x03, 0x3e, 0xff, 0xc3, 0x03, 0x40, 0xff, 0xc3, 0x03, 0x42, 0xff, 0xc3, - 0x03, 0x44, 0xff, 0xc3, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, 0xff, 0xc3, - 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0xc3, 0x03, 0x4d, 0xff, 0xd7, - 0x03, 0x4e, 0xff, 0xc3, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, 0xff, 0xc3, - 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0xc3, 0x03, 0x53, 0xff, 0xd7, - 0x03, 0x54, 0xff, 0xc3, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, 0xff, 0xc3, - 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0xc3, 0x03, 0x59, 0xff, 0xd7, - 0x03, 0x5a, 0xff, 0xc3, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, 0xff, 0xc3, - 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0xc3, 0x03, 0x5f, 0xff, 0xd7, - 0x03, 0x60, 0xff, 0xc3, 0x03, 0x62, 0xff, 0xd7, 0x03, 0x64, 0xff, 0xd7, - 0x03, 0x66, 0xff, 0xd7, 0x03, 0x68, 0xff, 0xd7, 0x03, 0x6a, 0xff, 0xd7, - 0x03, 0x6c, 0xff, 0xd7, 0x03, 0x6e, 0xff, 0xd7, 0x00, 0x08, 0x01, 0x66, - 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x73, 0xff, 0xec, 0x01, 0x92, - 0xff, 0xd7, 0x01, 0x95, 0xff, 0xd7, 0x01, 0x97, 0x00, 0x29, 0x01, 0x98, - 0xff, 0xd7, 0x01, 0x9a, 0xff, 0xd7, 0x00, 0x46, 0x00, 0x0f, 0xff, 0xc3, - 0x00, 0x11, 0xff, 0xc3, 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, - 0x00, 0x37, 0xff, 0xc3, 0x00, 0x39, 0xff, 0xd7, 0x00, 0x3a, 0xff, 0xec, - 0x00, 0x3b, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, - 0x00, 0x82, 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, - 0x00, 0x85, 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, - 0x00, 0x88, 0xff, 0xd7, 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, - 0x00, 0x90, 0xff, 0xec, 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, - 0x00, 0xc2, 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, - 0x00, 0xec, 0xff, 0xec, 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, 0xff, 0xec, - 0x01, 0x24, 0xff, 0xc3, 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, - 0x01, 0x38, 0xff, 0xd7, 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, - 0x01, 0x3d, 0xff, 0xec, 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, - 0x01, 0x5f, 0xff, 0xec, 0x01, 0x62, 0xff, 0xd7, 0x01, 0x67, 0xff, 0xec, - 0x01, 0x69, 0xff, 0xec, 0x01, 0x6c, 0xff, 0xec, 0x01, 0x70, 0xff, 0xec, - 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, 0xff, 0xd7, 0x01, 0x74, 0xff, 0xd7, - 0x01, 0x78, 0xff, 0xd7, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, - 0x01, 0xfe, 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, - 0x02, 0x58, 0xff, 0xec, 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, - 0x03, 0x21, 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, - 0x03, 0x27, 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, - 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, - 0x03, 0x33, 0xff, 0xec, 0x03, 0x45, 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, - 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x71, 0xff, 0xd7, 0x03, 0x73, 0xff, 0xd7, - 0x00, 0x05, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x73, - 0xff, 0xec, 0x01, 0x81, 0xff, 0xec, 0x01, 0x88, 0x00, 0x29, 0x00, 0x2a, - 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xd7, - 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, - 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, - 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, - 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, - 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, - 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, - 0x01, 0x14, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, 0xff, 0xd7, - 0x01, 0x73, 0xff, 0xae, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x97, 0x00, 0x29, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, - 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xd7, - 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xd7, - 0x03, 0x55, 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xd7, - 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xd7, - 0x00, 0xcf, 0x00, 0x05, 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, 0x00, 0x22, - 0x00, 0x29, 0x00, 0x24, 0xff, 0xc3, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, - 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, - 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x44, 0xff, 0xc3, 0x00, 0x46, - 0xff, 0xc3, 0x00, 0x47, 0xff, 0xc3, 0x00, 0x48, 0xff, 0xc3, 0x00, 0x4a, - 0xff, 0xc3, 0x00, 0x50, 0xff, 0xd7, 0x00, 0x51, 0xff, 0xd7, 0x00, 0x52, - 0xff, 0xc3, 0x00, 0x53, 0xff, 0xd7, 0x00, 0x54, 0xff, 0xc3, 0x00, 0x55, - 0xff, 0xd7, 0x00, 0x56, 0xff, 0xd7, 0x00, 0x58, 0xff, 0xd7, 0x00, 0x82, - 0xff, 0xc3, 0x00, 0x83, 0xff, 0xc3, 0x00, 0x84, 0xff, 0xc3, 0x00, 0x85, - 0xff, 0xc3, 0x00, 0x86, 0xff, 0xc3, 0x00, 0x87, 0xff, 0xc3, 0x00, 0x88, - 0xff, 0x85, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, - 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, - 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, - 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, - 0xff, 0x9a, 0x00, 0xa2, 0xff, 0xc3, 0x00, 0xa3, 0xff, 0xc3, 0x00, 0xa4, - 0xff, 0xc3, 0x00, 0xa5, 0xff, 0xc3, 0x00, 0xa6, 0xff, 0xc3, 0x00, 0xa7, - 0xff, 0xc3, 0x00, 0xa8, 0xff, 0xc3, 0x00, 0xa9, 0xff, 0xc3, 0x00, 0xaa, - 0xff, 0xc3, 0x00, 0xab, 0xff, 0xc3, 0x00, 0xac, 0xff, 0xc3, 0x00, 0xad, - 0xff, 0xc3, 0x00, 0xb3, 0xff, 0xd7, 0x00, 0xb4, 0xff, 0xc3, 0x00, 0xb5, - 0xff, 0xc3, 0x00, 0xb6, 0xff, 0xc3, 0x00, 0xb7, 0xff, 0xc3, 0x00, 0xb8, - 0xff, 0xc3, 0x00, 0xba, 0xff, 0xc3, 0x00, 0xbb, 0xff, 0xd7, 0x00, 0xbc, - 0xff, 0xd7, 0x00, 0xbd, 0xff, 0xd7, 0x00, 0xbe, 0xff, 0xd7, 0x00, 0xc2, - 0xff, 0xc3, 0x00, 0xc3, 0xff, 0xc3, 0x00, 0xc4, 0xff, 0xc3, 0x00, 0xc5, - 0xff, 0xc3, 0x00, 0xc6, 0xff, 0xc3, 0x00, 0xc7, 0xff, 0xc3, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xc9, 0xff, 0xc3, 0x00, 0xcb, 0xff, 0xc3, 0x00, 0xcd, - 0xff, 0xc3, 0x00, 0xce, 0xff, 0xec, 0x00, 0xcf, 0xff, 0xc3, 0x00, 0xd5, - 0xff, 0xc3, 0x00, 0xd7, 0xff, 0xc3, 0x00, 0xd9, 0xff, 0xc3, 0x00, 0xdb, - 0xff, 0xc3, 0x00, 0xdd, 0xff, 0xc3, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x06, - 0xff, 0xd7, 0x01, 0x08, 0xff, 0xd7, 0x01, 0x0a, 0xff, 0xd7, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x0f, 0xff, 0xc3, 0x01, 0x11, 0xff, 0xc3, 0x01, 0x12, - 0xff, 0xec, 0x01, 0x13, 0xff, 0xc3, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, - 0xff, 0xc3, 0x01, 0x1d, 0xff, 0xd7, 0x01, 0x1f, 0xff, 0xd7, 0x01, 0x21, - 0xff, 0xd7, 0x01, 0x23, 0xff, 0xd7, 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, - 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, - 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, 0xff, 0xd7, 0x01, 0x38, - 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x43, 0xff, 0xc3, 0x01, 0x44, - 0xff, 0xc3, 0x01, 0x4a, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, - 0xff, 0xec, 0x01, 0x71, 0xff, 0x85, 0x01, 0x72, 0xff, 0x9a, 0x01, 0x73, - 0xff, 0xd7, 0x01, 0x75, 0xff, 0xc3, 0x01, 0x78, 0xff, 0x9a, 0x01, 0x91, - 0xff, 0xd7, 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfc, 0xff, 0xd7, 0x01, 0xfe, - 0xff, 0xd7, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, 0xff, 0xae, 0x02, 0x0b, - 0xff, 0xae, 0x02, 0x28, 0xff, 0xc3, 0x02, 0x58, 0xff, 0xc3, 0x02, 0x59, - 0xff, 0xc3, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x60, 0xff, 0xc3, 0x02, 0x61, - 0xff, 0xec, 0x03, 0x1d, 0xff, 0xc3, 0x03, 0x1e, 0xff, 0xc3, 0x03, 0x1f, - 0xff, 0xc3, 0x03, 0x21, 0xff, 0xc3, 0x03, 0x22, 0xff, 0xc3, 0x03, 0x23, - 0xff, 0xc3, 0x03, 0x24, 0xff, 0xc3, 0x03, 0x25, 0xff, 0xc3, 0x03, 0x26, - 0xff, 0xc3, 0x03, 0x27, 0xff, 0xc3, 0x03, 0x28, 0xff, 0xc3, 0x03, 0x29, - 0xff, 0xc3, 0x03, 0x2a, 0xff, 0xc3, 0x03, 0x2b, 0xff, 0xc3, 0x03, 0x2c, - 0xff, 0xc3, 0x03, 0x2d, 0xff, 0xc3, 0x03, 0x2e, 0xff, 0xc3, 0x03, 0x2f, - 0xff, 0xc3, 0x03, 0x30, 0xff, 0xc3, 0x03, 0x31, 0xff, 0xc3, 0x03, 0x32, - 0xff, 0xc3, 0x03, 0x33, 0xff, 0xc3, 0x03, 0x34, 0xff, 0xc3, 0x03, 0x36, - 0xff, 0xc3, 0x03, 0x38, 0xff, 0xc3, 0x03, 0x3a, 0xff, 0xc3, 0x03, 0x3c, - 0xff, 0xc3, 0x03, 0x3e, 0xff, 0xc3, 0x03, 0x40, 0xff, 0xc3, 0x03, 0x42, - 0xff, 0xc3, 0x03, 0x44, 0xff, 0xc3, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4a, - 0xff, 0xc3, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4c, 0xff, 0xc3, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4e, 0xff, 0xc3, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x50, - 0xff, 0xc3, 0x03, 0x51, 0xff, 0xec, 0x03, 0x52, 0xff, 0xc3, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x54, 0xff, 0xc3, 0x03, 0x55, 0xff, 0xec, 0x03, 0x56, - 0xff, 0xc3, 0x03, 0x57, 0xff, 0xec, 0x03, 0x58, 0xff, 0xc3, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5a, 0xff, 0xc3, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5c, - 0xff, 0xc3, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5e, 0xff, 0xc3, 0x03, 0x5f, - 0xff, 0xec, 0x03, 0x60, 0xff, 0xc3, 0x03, 0x61, 0xff, 0xec, 0x03, 0x62, - 0xff, 0xd7, 0x03, 0x63, 0xff, 0xec, 0x03, 0x64, 0xff, 0xd7, 0x03, 0x65, - 0xff, 0xec, 0x03, 0x66, 0xff, 0xd7, 0x03, 0x67, 0xff, 0xec, 0x03, 0x68, - 0xff, 0xd7, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6a, 0xff, 0xd7, 0x03, 0x6b, - 0xff, 0xec, 0x03, 0x6c, 0xff, 0xd7, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6e, - 0xff, 0xd7, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x73, - 0xff, 0x9a, 0x00, 0x03, 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, - 0x01, 0x88, 0x00, 0x29, 0x00, 0x46, 0x00, 0x0f, 0xff, 0xc3, 0x00, 0x11, - 0xff, 0xc3, 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, 0xff, 0xec, 0x00, 0x37, - 0xff, 0xc3, 0x00, 0x39, 0xff, 0xd7, 0x00, 0x3a, 0xff, 0xec, 0x00, 0x3b, - 0xff, 0xd7, 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, 0xff, 0xec, 0x00, 0x82, - 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x85, - 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, 0xff, 0xec, 0x00, 0x88, - 0xff, 0xd7, 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, 0x00, 0x90, - 0xff, 0xec, 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xd7, 0x00, 0xc2, - 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, 0xff, 0xec, 0x00, 0xec, - 0xff, 0xec, 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, 0xff, 0xec, 0x01, 0x24, - 0xff, 0xc3, 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, 0xff, 0xec, 0x01, 0x38, - 0xff, 0xd7, 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, 0xff, 0xec, 0x01, 0x3d, - 0xff, 0xec, 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, 0xff, 0xec, 0x01, 0x5f, - 0xff, 0xec, 0x01, 0x67, 0xff, 0xec, 0x01, 0x69, 0xff, 0xec, 0x01, 0x6c, - 0xff, 0xec, 0x01, 0x70, 0xff, 0xec, 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, - 0xff, 0xd7, 0x01, 0x74, 0xff, 0xd7, 0x01, 0x77, 0xff, 0xec, 0x01, 0x78, - 0xff, 0xd7, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, 0x01, 0xfe, - 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, - 0xff, 0xec, 0x03, 0x1d, 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, - 0xff, 0xec, 0x03, 0x23, 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, - 0xff, 0xec, 0x03, 0x29, 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, - 0xff, 0xec, 0x03, 0x2f, 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, - 0xff, 0xec, 0x03, 0x45, 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, - 0xff, 0xd7, 0x03, 0x71, 0xff, 0xd7, 0x03, 0x73, 0xff, 0xd7, 0x00, 0x36, - 0x00, 0x0f, 0xff, 0x33, 0x00, 0x11, 0xff, 0x33, 0x00, 0x24, 0xff, 0xae, - 0x00, 0x26, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xec, 0x00, 0x3c, 0xff, 0xec, - 0x00, 0x3d, 0xff, 0xd7, 0x00, 0x82, 0xff, 0xae, 0x00, 0x83, 0xff, 0xae, - 0x00, 0x84, 0xff, 0xae, 0x00, 0x85, 0xff, 0xae, 0x00, 0x86, 0xff, 0xae, - 0x00, 0x87, 0xff, 0xae, 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, 0xff, 0xec, - 0x00, 0x9f, 0xff, 0xec, 0x00, 0xc2, 0xff, 0xae, 0x00, 0xc4, 0xff, 0xae, - 0x00, 0xc6, 0xff, 0xae, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, - 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xec, 0x01, 0x3b, 0xff, 0xd7, - 0x01, 0x3d, 0xff, 0xd7, 0x01, 0x3f, 0xff, 0xd7, 0x01, 0x43, 0xff, 0xae, - 0x01, 0x5f, 0xff, 0xae, 0x01, 0x62, 0xff, 0xae, 0x01, 0x64, 0xff, 0xec, - 0x01, 0x69, 0xff, 0xae, 0x01, 0x74, 0xff, 0xec, 0x01, 0x78, 0xff, 0xec, - 0x01, 0x81, 0xff, 0xd7, 0x01, 0x88, 0xff, 0xd7, 0x01, 0x8e, 0xff, 0xd7, - 0x02, 0x00, 0xff, 0xec, 0x02, 0x28, 0xff, 0xae, 0x02, 0x58, 0xff, 0xae, - 0x03, 0x1d, 0xff, 0xae, 0x03, 0x1f, 0xff, 0xae, 0x03, 0x21, 0xff, 0xae, - 0x03, 0x23, 0xff, 0xae, 0x03, 0x25, 0xff, 0xae, 0x03, 0x27, 0xff, 0xae, - 0x03, 0x29, 0xff, 0xae, 0x03, 0x2b, 0xff, 0xae, 0x03, 0x2d, 0xff, 0xae, - 0x03, 0x2f, 0xff, 0xae, 0x03, 0x31, 0xff, 0xae, 0x03, 0x33, 0xff, 0xae, - 0x03, 0x6f, 0xff, 0xec, 0x03, 0x71, 0xff, 0xec, 0x03, 0x73, 0xff, 0xec, - 0x00, 0x29, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, - 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, - 0xff, 0xd7, 0x00, 0x89, 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, - 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, - 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, - 0xff, 0xd7, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, - 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, - 0xff, 0xd7, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, - 0xff, 0xd7, 0x01, 0x73, 0xff, 0xd7, 0x01, 0x88, 0x00, 0x29, 0x02, 0x07, - 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, 0x03, 0x49, - 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xd7, 0x03, 0x4f, - 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xd7, 0x03, 0x55, - 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xd7, 0x03, 0x5b, - 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xd7, 0x00, 0xe9, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x0f, 0xff, 0x9a, - 0x00, 0x10, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, - 0x00, 0x24, 0xff, 0x85, 0x00, 0x26, 0xff, 0xc3, 0x00, 0x2a, 0xff, 0xc3, - 0x00, 0x32, 0xff, 0xc3, 0x00, 0x34, 0xff, 0xc3, 0x00, 0x36, 0xff, 0xec, - 0x00, 0x37, 0x00, 0x14, 0x00, 0x44, 0xff, 0x85, 0x00, 0x46, 0xff, 0x85, - 0x00, 0x47, 0xff, 0x85, 0x00, 0x48, 0xff, 0x85, 0x00, 0x4a, 0xff, 0x9a, - 0x00, 0x50, 0xff, 0xae, 0x00, 0x51, 0xff, 0xae, 0x00, 0x52, 0xff, 0x85, - 0x00, 0x53, 0xff, 0xae, 0x00, 0x54, 0xff, 0x85, 0x00, 0x55, 0xff, 0xae, - 0x00, 0x56, 0xff, 0x85, 0x00, 0x58, 0xff, 0xae, 0x00, 0x59, 0xff, 0xc3, - 0x00, 0x5a, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xc3, 0x00, 0x5c, 0xff, 0xc3, - 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x6d, 0xff, 0x9a, 0x00, 0x7d, 0xff, 0xd7, - 0x00, 0x82, 0xff, 0x85, 0x00, 0x83, 0xff, 0x85, 0x00, 0x84, 0xff, 0x85, - 0x00, 0x85, 0xff, 0x85, 0x00, 0x86, 0xff, 0x85, 0x00, 0x87, 0xff, 0x85, - 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, 0xff, 0xc3, 0x00, 0x94, 0xff, 0xc3, - 0x00, 0x95, 0xff, 0xc3, 0x00, 0x96, 0xff, 0xc3, 0x00, 0x97, 0xff, 0xc3, - 0x00, 0x98, 0xff, 0xc3, 0x00, 0x9a, 0xff, 0xc3, 0x00, 0xa2, 0xff, 0x85, - 0x00, 0xa3, 0xff, 0x85, 0x00, 0xa4, 0xff, 0x85, 0x00, 0xa5, 0xff, 0x85, - 0x00, 0xa6, 0xff, 0x85, 0x00, 0xa7, 0xff, 0x85, 0x00, 0xa8, 0xff, 0x85, - 0x00, 0xa9, 0xff, 0x85, 0x00, 0xaa, 0xff, 0x85, 0x00, 0xab, 0xff, 0x85, - 0x00, 0xac, 0xff, 0x85, 0x00, 0xad, 0xff, 0x85, 0x00, 0xb3, 0xff, 0xae, - 0x00, 0xb4, 0xff, 0x85, 0x00, 0xb5, 0xff, 0x85, 0x00, 0xb6, 0xff, 0x85, - 0x00, 0xb7, 0xff, 0x85, 0x00, 0xb8, 0xff, 0x85, 0x00, 0xba, 0xff, 0x85, - 0x00, 0xbb, 0xff, 0xae, 0x00, 0xbc, 0xff, 0xae, 0x00, 0xbd, 0xff, 0xae, - 0x00, 0xbe, 0xff, 0xae, 0x00, 0xbf, 0xff, 0xc3, 0x00, 0xc1, 0xff, 0xc3, - 0x00, 0xc2, 0xff, 0x85, 0x00, 0xc3, 0xff, 0x85, 0x00, 0xc4, 0xff, 0x85, - 0x00, 0xc5, 0xff, 0x85, 0x00, 0xc6, 0xff, 0x85, 0x00, 0xc7, 0xff, 0x85, - 0x00, 0xc8, 0xff, 0xc3, 0x00, 0xc9, 0xff, 0x85, 0x00, 0xcb, 0xff, 0x85, - 0x00, 0xcd, 0xff, 0x85, 0x00, 0xce, 0xff, 0xc3, 0x00, 0xcf, 0xff, 0x85, - 0x00, 0xd5, 0xff, 0x85, 0x00, 0xd7, 0xff, 0x85, 0x00, 0xd9, 0xff, 0x85, - 0x00, 0xdb, 0xff, 0x85, 0x00, 0xdd, 0xff, 0x85, 0x00, 0xde, 0xff, 0xc3, - 0x00, 0xe0, 0xff, 0xc3, 0x00, 0xe2, 0xff, 0xc3, 0x00, 0xe4, 0xff, 0xc3, - 0x01, 0x06, 0xff, 0xae, 0x01, 0x08, 0xff, 0xae, 0x01, 0x0a, 0xff, 0xae, - 0x01, 0x0e, 0xff, 0xc3, 0x01, 0x0f, 0xff, 0x85, 0x01, 0x11, 0xff, 0x85, - 0x01, 0x12, 0xff, 0xc3, 0x01, 0x13, 0xff, 0x85, 0x01, 0x14, 0xff, 0xc3, - 0x01, 0x15, 0xff, 0x85, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, 0xff, 0x85, - 0x01, 0x1f, 0xff, 0x85, 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, 0xff, 0x85, - 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0x85, 0x01, 0x24, 0x00, 0x14, - 0x01, 0x26, 0x00, 0x14, 0x01, 0x37, 0xff, 0xc3, 0x01, 0x39, 0xff, 0xc3, - 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, 0xff, 0x85, 0x01, 0x44, 0xff, 0x85, - 0x01, 0x4a, 0xff, 0x85, 0x01, 0x5f, 0xff, 0x85, 0x01, 0x62, 0xff, 0x9a, - 0x01, 0x66, 0xff, 0xc3, 0x01, 0x69, 0xff, 0x85, 0x01, 0x6d, 0xff, 0xc3, - 0x01, 0x71, 0x00, 0x14, 0x01, 0x73, 0xff, 0xc3, 0x01, 0x76, 0xff, 0xc3, - 0x01, 0x79, 0xff, 0x85, 0x01, 0x7a, 0xff, 0x85, 0x01, 0x7b, 0xff, 0xae, - 0x01, 0x7d, 0xff, 0xae, 0x01, 0x7e, 0xff, 0x85, 0x01, 0x80, 0xff, 0xc3, - 0x01, 0x81, 0xff, 0xae, 0x01, 0x82, 0xff, 0x85, 0x01, 0x84, 0xff, 0xae, - 0x01, 0x86, 0xff, 0xae, 0x01, 0x87, 0xff, 0xae, 0x01, 0x88, 0x00, 0x14, - 0x01, 0x89, 0xff, 0xae, 0x01, 0x8a, 0xff, 0xc3, 0x01, 0x8c, 0xff, 0x85, - 0x01, 0x8e, 0xff, 0x85, 0x01, 0x8f, 0xff, 0x85, 0x01, 0x90, 0xff, 0x85, - 0x01, 0x91, 0xff, 0xc3, 0x01, 0x92, 0xff, 0xae, 0x01, 0x93, 0xff, 0x85, - 0x01, 0x94, 0xff, 0xc3, 0x01, 0x95, 0xff, 0xae, 0x01, 0x96, 0xff, 0x85, - 0x01, 0x97, 0x00, 0x3d, 0x01, 0x98, 0xff, 0xae, 0x01, 0x99, 0xff, 0x85, - 0x01, 0x9a, 0xff, 0xae, 0x01, 0x9b, 0xff, 0x85, 0x01, 0xfb, 0xff, 0xc3, - 0x01, 0xfd, 0xff, 0xc3, 0x01, 0xff, 0xff, 0xc3, 0x02, 0x01, 0xff, 0xc3, - 0x02, 0x02, 0xff, 0x9a, 0x02, 0x03, 0xff, 0x9a, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0x85, 0x02, 0x58, 0xff, 0x85, - 0x02, 0x59, 0xff, 0x85, 0x02, 0x5f, 0xff, 0xc3, 0x02, 0x60, 0xff, 0x85, - 0x03, 0x1d, 0xff, 0x85, 0x03, 0x1e, 0xff, 0x85, 0x03, 0x1f, 0xff, 0x85, - 0x03, 0x21, 0xff, 0x85, 0x03, 0x22, 0xff, 0x85, 0x03, 0x23, 0xff, 0x85, - 0x03, 0x24, 0xff, 0x85, 0x03, 0x25, 0xff, 0x85, 0x03, 0x26, 0xff, 0x85, - 0x03, 0x27, 0xff, 0x85, 0x03, 0x28, 0xff, 0x85, 0x03, 0x29, 0xff, 0x85, - 0x03, 0x2a, 0xff, 0x85, 0x03, 0x2b, 0xff, 0x85, 0x03, 0x2c, 0xff, 0x85, - 0x03, 0x2d, 0xff, 0x85, 0x03, 0x2e, 0xff, 0x85, 0x03, 0x2f, 0xff, 0x85, - 0x03, 0x30, 0xff, 0x85, 0x03, 0x31, 0xff, 0x85, 0x03, 0x32, 0xff, 0x85, - 0x03, 0x33, 0xff, 0x85, 0x03, 0x34, 0xff, 0x85, 0x03, 0x36, 0xff, 0x85, - 0x03, 0x38, 0xff, 0x85, 0x03, 0x3a, 0xff, 0x85, 0x03, 0x3c, 0xff, 0x85, - 0x03, 0x3e, 0xff, 0x85, 0x03, 0x40, 0xff, 0x85, 0x03, 0x42, 0xff, 0x85, - 0x03, 0x44, 0xff, 0x85, 0x03, 0x49, 0xff, 0xc3, 0x03, 0x4a, 0xff, 0x85, - 0x03, 0x4b, 0xff, 0xc3, 0x03, 0x4c, 0xff, 0x85, 0x03, 0x4d, 0xff, 0xc3, - 0x03, 0x4e, 0xff, 0x85, 0x03, 0x4f, 0xff, 0xc3, 0x03, 0x50, 0xff, 0x85, - 0x03, 0x51, 0xff, 0xc3, 0x03, 0x52, 0xff, 0x85, 0x03, 0x53, 0xff, 0xc3, - 0x03, 0x54, 0xff, 0x85, 0x03, 0x55, 0xff, 0xc3, 0x03, 0x56, 0xff, 0x85, - 0x03, 0x57, 0xff, 0xc3, 0x03, 0x58, 0xff, 0x85, 0x03, 0x59, 0xff, 0xc3, - 0x03, 0x5a, 0xff, 0x85, 0x03, 0x5b, 0xff, 0xc3, 0x03, 0x5c, 0xff, 0x85, - 0x03, 0x5d, 0xff, 0xc3, 0x03, 0x5e, 0xff, 0x85, 0x03, 0x5f, 0xff, 0xc3, - 0x03, 0x60, 0xff, 0x85, 0x03, 0x62, 0xff, 0xae, 0x03, 0x64, 0xff, 0xae, - 0x03, 0x66, 0xff, 0xae, 0x03, 0x68, 0xff, 0xae, 0x03, 0x6a, 0xff, 0xae, - 0x03, 0x6c, 0xff, 0xae, 0x03, 0x6e, 0xff, 0xae, 0x03, 0x70, 0xff, 0xc3, - 0x03, 0x72, 0xff, 0xc3, 0x03, 0x74, 0xff, 0xc3, 0x00, 0x2d, 0x00, 0x0f, - 0xff, 0x9a, 0x00, 0x10, 0xff, 0xc3, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x6d, - 0xff, 0xc3, 0x01, 0x5f, 0xff, 0x9a, 0x01, 0x62, 0xff, 0xc3, 0x01, 0x66, - 0xff, 0xd7, 0x01, 0x69, 0xff, 0x9a, 0x01, 0x6d, 0xff, 0xd7, 0x01, 0x73, - 0xff, 0xc3, 0x01, 0x76, 0xff, 0xd7, 0x01, 0x79, 0xff, 0x9a, 0x01, 0x7a, - 0xff, 0xae, 0x01, 0x7b, 0xff, 0xc3, 0x01, 0x7c, 0xff, 0xec, 0x01, 0x7d, - 0xff, 0xd7, 0x01, 0x7e, 0xff, 0x9a, 0x01, 0x7f, 0xff, 0xd7, 0x01, 0x81, - 0xff, 0x9a, 0x01, 0x82, 0xff, 0xae, 0x01, 0x83, 0xff, 0xd7, 0x01, 0x84, - 0xff, 0xc3, 0x01, 0x85, 0xff, 0xd7, 0x01, 0x86, 0xff, 0xc3, 0x01, 0x87, - 0xff, 0xc3, 0x01, 0x88, 0x00, 0x14, 0x01, 0x89, 0xff, 0xc3, 0x01, 0x8b, - 0xff, 0xec, 0x01, 0x8c, 0xff, 0x9a, 0x01, 0x8e, 0xff, 0x9a, 0x01, 0x8f, - 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, 0x01, 0x91, 0xff, 0xec, 0x01, 0x92, - 0xff, 0xc3, 0x01, 0x93, 0xff, 0x9a, 0x01, 0x94, 0xff, 0xd7, 0x01, 0x95, - 0xff, 0xc3, 0x01, 0x96, 0xff, 0xae, 0x01, 0x97, 0x00, 0x29, 0x01, 0x98, - 0xff, 0xc3, 0x01, 0x99, 0xff, 0x9a, 0x01, 0x9a, 0xff, 0xc3, 0x01, 0x9b, - 0xff, 0xae, 0x02, 0x02, 0xff, 0xc3, 0x02, 0x03, 0xff, 0xc3, 0x00, 0x0a, - 0x01, 0x5f, 0xff, 0xd7, 0x01, 0x62, 0xff, 0xd7, 0x01, 0x67, 0xff, 0xec, - 0x01, 0x69, 0xff, 0xd7, 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, 0xff, 0xc3, - 0x01, 0x74, 0xff, 0xc3, 0x01, 0x77, 0xff, 0xd7, 0x01, 0x78, 0xff, 0xc3, - 0x01, 0x88, 0xff, 0xd7, 0x00, 0x17, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x6d, - 0xff, 0xd7, 0x01, 0x73, 0xff, 0xc3, 0x01, 0x79, 0xff, 0xec, 0x01, 0x7c, - 0xff, 0xec, 0x01, 0x7d, 0xff, 0xec, 0x01, 0x7e, 0xff, 0xec, 0x01, 0x81, - 0xff, 0xec, 0x01, 0x85, 0xff, 0xec, 0x01, 0x86, 0xff, 0xec, 0x01, 0x88, - 0x00, 0x14, 0x01, 0x8c, 0xff, 0xec, 0x01, 0x8f, 0xff, 0xec, 0x01, 0x90, - 0xff, 0xec, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x92, 0xff, 0xd7, 0x01, 0x93, - 0xff, 0xec, 0x01, 0x95, 0xff, 0xd7, 0x01, 0x96, 0xff, 0xec, 0x01, 0x98, - 0xff, 0xd7, 0x01, 0x99, 0xff, 0xec, 0x01, 0x9a, 0xff, 0xd7, 0x01, 0x9b, - 0xff, 0xec, 0x00, 0x0c, 0x00, 0x0f, 0xff, 0xae, 0x00, 0x11, 0xff, 0xae, - 0x01, 0x5f, 0xff, 0xc3, 0x01, 0x62, 0xff, 0xd7, 0x01, 0x69, 0xff, 0xc3, - 0x01, 0x81, 0xff, 0xd7, 0x01, 0x8e, 0xff, 0xd7, 0x01, 0x90, 0xff, 0xec, - 0x01, 0x93, 0xff, 0xec, 0x01, 0x96, 0xff, 0xec, 0x01, 0x99, 0xff, 0xec, - 0x01, 0x9b, 0xff, 0xec, 0x00, 0x03, 0x01, 0x71, 0xff, 0xc3, 0x01, 0x72, - 0xff, 0xd7, 0x01, 0x78, 0xff, 0xd7, 0x00, 0x2c, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, - 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x89, 0xff, 0xec, - 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, - 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, - 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, - 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, - 0x01, 0x66, 0xff, 0xec, 0x01, 0x6d, 0xff, 0xec, 0x01, 0x73, 0xff, 0xd7, - 0x01, 0x80, 0xff, 0xec, 0x01, 0x81, 0xff, 0xec, 0x01, 0x88, 0x00, 0x14, - 0x01, 0x91, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, - 0x02, 0x5f, 0xff, 0xec, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, - 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, - 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, - 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, - 0x03, 0x5f, 0xff, 0xec, 0x00, 0xee, 0x00, 0x05, 0x00, 0x52, 0x00, 0x09, - 0xff, 0xc3, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x0c, 0x00, 0x3d, 0x00, 0x0d, - 0x00, 0x29, 0x00, 0x0f, 0xff, 0x9a, 0x00, 0x10, 0xff, 0x5c, 0x00, 0x11, - 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, 0x00, 0x24, 0xff, 0x9a, 0x00, 0x26, - 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x2d, 0xff, 0xbe, 0x00, 0x30, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x36, - 0xff, 0xec, 0x00, 0x37, 0x00, 0x27, 0x00, 0x40, 0x00, 0x3d, 0x00, 0x44, - 0xff, 0x9a, 0x00, 0x46, 0xff, 0x9a, 0x00, 0x47, 0xff, 0x9a, 0x00, 0x48, - 0xff, 0x9a, 0x00, 0x49, 0xff, 0xe5, 0x00, 0x4a, 0xff, 0x9a, 0x00, 0x50, - 0xff, 0xc3, 0x00, 0x51, 0xff, 0xc3, 0x00, 0x52, 0xff, 0x9a, 0x00, 0x53, - 0xff, 0xc3, 0x00, 0x54, 0xff, 0x9a, 0x00, 0x55, 0xff, 0xc3, 0x00, 0x56, - 0xff, 0xae, 0x00, 0x58, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5c, - 0xff, 0xec, 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x60, 0x00, 0x3d, 0x00, 0x6d, - 0xff, 0xc3, 0x00, 0x7d, 0xff, 0xd7, 0x00, 0x82, 0xff, 0x9a, 0x00, 0x83, - 0xff, 0x9a, 0x00, 0x84, 0xff, 0x9a, 0x00, 0x85, 0xff, 0x9a, 0x00, 0x86, - 0xff, 0x9a, 0x00, 0x87, 0xff, 0x9a, 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, - 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, - 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, - 0xff, 0xd7, 0x00, 0xa2, 0xff, 0x9a, 0x00, 0xa3, 0xff, 0x9a, 0x00, 0xa4, - 0xff, 0x9a, 0x00, 0xa5, 0xff, 0x9a, 0x00, 0xa6, 0xff, 0x9a, 0x00, 0xa7, - 0xff, 0x9a, 0x00, 0xa8, 0xff, 0x9a, 0x00, 0xa9, 0xff, 0x9a, 0x00, 0xaa, - 0xff, 0x9a, 0x00, 0xab, 0xff, 0x9a, 0x00, 0xac, 0xff, 0x9a, 0x00, 0xad, - 0xff, 0x9a, 0x00, 0xb3, 0xff, 0xc3, 0x00, 0xb4, 0xff, 0x9a, 0x00, 0xb5, - 0xff, 0x9a, 0x00, 0xb6, 0xff, 0x9a, 0x00, 0xb7, 0xff, 0x9a, 0x00, 0xb8, - 0xff, 0x9a, 0x00, 0xba, 0xff, 0x9a, 0x00, 0xbb, 0xff, 0xc3, 0x00, 0xbc, - 0xff, 0xc3, 0x00, 0xbd, 0xff, 0xc3, 0x00, 0xbe, 0xff, 0xc3, 0x00, 0xbf, - 0xff, 0xec, 0x00, 0xc1, 0xff, 0xec, 0x00, 0xc2, 0xff, 0x9a, 0x00, 0xc3, - 0xff, 0x9a, 0x00, 0xc4, 0xff, 0x9a, 0x00, 0xc5, 0xff, 0x9a, 0x00, 0xc6, - 0xff, 0x9a, 0x00, 0xc7, 0xff, 0x9a, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xc9, - 0xff, 0x9a, 0x00, 0xcb, 0xff, 0x9a, 0x00, 0xcd, 0xff, 0x9a, 0x00, 0xce, - 0xff, 0xd7, 0x00, 0xcf, 0xff, 0x9a, 0x00, 0xd5, 0xff, 0x9a, 0x00, 0xd7, - 0xff, 0x9a, 0x00, 0xd9, 0xff, 0x9a, 0x00, 0xdb, 0xff, 0x9a, 0x00, 0xdd, - 0xff, 0x9a, 0x00, 0xde, 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, - 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, 0x00, 0xf6, 0xff, 0xbe, 0x01, 0x06, - 0xff, 0xc3, 0x01, 0x08, 0xff, 0xc3, 0x01, 0x0a, 0xff, 0xc3, 0x01, 0x0e, - 0xff, 0xd7, 0x01, 0x0f, 0xff, 0x9a, 0x01, 0x11, 0xff, 0x9a, 0x01, 0x12, - 0xff, 0xd7, 0x01, 0x13, 0xff, 0x9a, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x15, - 0xff, 0x9a, 0x01, 0x1c, 0xff, 0xec, 0x01, 0x1d, 0xff, 0xae, 0x01, 0x1f, - 0xff, 0xae, 0x01, 0x20, 0xff, 0xec, 0x01, 0x21, 0xff, 0xae, 0x01, 0x22, - 0xff, 0xec, 0x01, 0x23, 0xff, 0xae, 0x01, 0x24, 0x00, 0x27, 0x01, 0x26, - 0x00, 0x27, 0x01, 0x39, 0xff, 0xec, 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, - 0xff, 0x9a, 0x01, 0x44, 0xff, 0x9a, 0x01, 0x4a, 0xff, 0xae, 0x01, 0x5f, - 0xff, 0x9a, 0x01, 0x62, 0xff, 0xc3, 0x01, 0x66, 0xff, 0xd7, 0x01, 0x69, - 0xff, 0x9a, 0x01, 0x6d, 0xff, 0xd7, 0x01, 0x73, 0xff, 0xc3, 0x01, 0x76, - 0xff, 0xd7, 0x01, 0x79, 0xff, 0x9a, 0x01, 0x7a, 0xff, 0xae, 0x01, 0x7b, - 0xff, 0xc3, 0x01, 0x7c, 0xff, 0xec, 0x01, 0x7d, 0xff, 0xc3, 0x01, 0x7e, - 0xff, 0x9a, 0x01, 0x7f, 0xff, 0xd7, 0x01, 0x80, 0xff, 0xec, 0x01, 0x81, - 0xff, 0x9a, 0x01, 0x82, 0xff, 0x9a, 0x01, 0x83, 0xff, 0xd7, 0x01, 0x84, - 0xff, 0xc3, 0x01, 0x86, 0xff, 0xc3, 0x01, 0x87, 0xff, 0xc3, 0x01, 0x89, - 0xff, 0xc3, 0x01, 0x8a, 0xff, 0xec, 0x01, 0x8b, 0xff, 0xec, 0x01, 0x8c, - 0xff, 0x9a, 0x01, 0x8d, 0xff, 0xd7, 0x01, 0x8e, 0xff, 0x9a, 0x01, 0x8f, - 0xff, 0x9a, 0x01, 0x90, 0xff, 0x9a, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x92, - 0xff, 0xc3, 0x01, 0x93, 0xff, 0x9a, 0x01, 0x94, 0xff, 0xd7, 0x01, 0x95, - 0xff, 0xc3, 0x01, 0x96, 0xff, 0x9a, 0x01, 0x97, 0x00, 0x29, 0x01, 0x98, - 0xff, 0xc3, 0x01, 0x99, 0xff, 0x9a, 0x01, 0x9a, 0xff, 0xc3, 0x01, 0x9b, - 0xff, 0x9a, 0x02, 0x01, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, - 0x00, 0x52, 0x02, 0x0f, 0xff, 0xd7, 0x02, 0x28, 0xff, 0x9a, 0x02, 0x58, - 0xff, 0x9a, 0x02, 0x59, 0xff, 0x9a, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x60, - 0xff, 0x9a, 0x03, 0x1d, 0xff, 0x9a, 0x03, 0x1e, 0xff, 0x9a, 0x03, 0x1f, - 0xff, 0x9a, 0x03, 0x21, 0xff, 0x9a, 0x03, 0x22, 0xff, 0x9a, 0x03, 0x23, - 0xff, 0x9a, 0x03, 0x24, 0xff, 0x9a, 0x03, 0x25, 0xff, 0x9a, 0x03, 0x26, - 0xff, 0x9a, 0x03, 0x27, 0xff, 0x9a, 0x03, 0x28, 0xff, 0x9a, 0x03, 0x29, - 0xff, 0x9a, 0x03, 0x2a, 0xff, 0x9a, 0x03, 0x2b, 0xff, 0x9a, 0x03, 0x2c, - 0xff, 0x9a, 0x03, 0x2d, 0xff, 0x9a, 0x03, 0x2e, 0xff, 0x9a, 0x03, 0x2f, - 0xff, 0x9a, 0x03, 0x30, 0xff, 0x9a, 0x03, 0x31, 0xff, 0x9a, 0x03, 0x32, - 0xff, 0x9a, 0x03, 0x33, 0xff, 0x9a, 0x03, 0x34, 0xff, 0x9a, 0x03, 0x36, - 0xff, 0x9a, 0x03, 0x38, 0xff, 0x9a, 0x03, 0x3a, 0xff, 0x9a, 0x03, 0x3c, - 0xff, 0x9a, 0x03, 0x3e, 0xff, 0x9a, 0x03, 0x40, 0xff, 0x9a, 0x03, 0x42, - 0xff, 0x9a, 0x03, 0x44, 0xff, 0x9a, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4a, - 0xff, 0x9a, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4c, 0xff, 0x9a, 0x03, 0x4d, - 0xff, 0xd7, 0x03, 0x4e, 0xff, 0x9a, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x50, - 0xff, 0x9a, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x52, 0xff, 0x9a, 0x03, 0x53, - 0xff, 0xd7, 0x03, 0x54, 0xff, 0x9a, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x56, - 0xff, 0x9a, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x58, 0xff, 0x9a, 0x03, 0x59, - 0xff, 0xd7, 0x03, 0x5a, 0xff, 0x9a, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5c, - 0xff, 0x9a, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5e, 0xff, 0x9a, 0x03, 0x5f, - 0xff, 0xd7, 0x03, 0x60, 0xff, 0x9a, 0x03, 0x62, 0xff, 0xc3, 0x03, 0x64, - 0xff, 0xc3, 0x03, 0x66, 0xff, 0xc3, 0x03, 0x68, 0xff, 0xc3, 0x03, 0x6a, - 0xff, 0xc3, 0x03, 0x6c, 0xff, 0xc3, 0x03, 0x6e, 0xff, 0xc3, 0x03, 0x70, - 0xff, 0xec, 0x03, 0x72, 0xff, 0xec, 0x03, 0x74, 0xff, 0xec, 0x00, 0x01, - 0x01, 0x88, 0x00, 0x29, 0x00, 0x06, 0x01, 0x79, 0xff, 0xd7, 0x01, 0x7e, - 0xff, 0xec, 0x01, 0x81, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xec, 0x01, 0x90, - 0xff, 0xec, 0x01, 0x93, 0xff, 0xec, 0x00, 0x14, 0x01, 0x79, 0xff, 0xec, - 0x01, 0x7c, 0xff, 0xec, 0x01, 0x7d, 0xff, 0xec, 0x01, 0x80, 0xff, 0xec, - 0x01, 0x81, 0xff, 0xec, 0x01, 0x85, 0xff, 0xec, 0x01, 0x86, 0xff, 0xec, - 0x01, 0x88, 0x00, 0x29, 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x8c, 0xff, 0xec, - 0x01, 0x8d, 0xff, 0xec, 0x01, 0x8f, 0xff, 0xec, 0x01, 0x90, 0xff, 0xec, - 0x01, 0x91, 0xff, 0xd7, 0x01, 0x92, 0xff, 0xec, 0x01, 0x95, 0xff, 0xec, - 0x01, 0x97, 0xff, 0xec, 0x01, 0x98, 0xff, 0xec, 0x01, 0x99, 0xff, 0xec, - 0x01, 0x9a, 0xff, 0xec, 0x00, 0x01, 0x01, 0x94, 0xff, 0xec, 0x00, 0x0b, - 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x49, 0x00, 0x14, - 0x01, 0x81, 0xff, 0xec, 0x01, 0x8d, 0x00, 0x29, 0x01, 0x8e, 0xff, 0xec, - 0x01, 0x91, 0x00, 0x14, 0x01, 0x94, 0x00, 0x14, 0x01, 0x96, 0x00, 0x14, - 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x00, 0x02, 0x01, 0x91, - 0xff, 0xec, 0x01, 0x94, 0xff, 0xd7, 0x00, 0x0b, 0x00, 0x05, 0x00, 0x3d, - 0x00, 0x0a, 0x00, 0x3d, 0x01, 0x79, 0xff, 0xd7, 0x01, 0x81, 0xff, 0xec, - 0x01, 0x8c, 0xff, 0xd7, 0x01, 0x8f, 0xff, 0xec, 0x01, 0x90, 0xff, 0xd7, - 0x01, 0x93, 0xff, 0xd7, 0x01, 0x99, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x3d, - 0x02, 0x0b, 0x00, 0x3d, 0x00, 0x1c, 0x01, 0x79, 0xff, 0xae, 0x01, 0x7a, - 0xff, 0xd7, 0x01, 0x7d, 0xff, 0xd7, 0x01, 0x7e, 0xff, 0xc3, 0x01, 0x80, - 0xff, 0xd7, 0x01, 0x81, 0xff, 0xc3, 0x01, 0x82, 0xff, 0xd7, 0x01, 0x83, - 0xff, 0xd7, 0x01, 0x84, 0xff, 0xd7, 0x01, 0x85, 0xff, 0xd7, 0x01, 0x86, - 0xff, 0xd7, 0x01, 0x87, 0xff, 0xec, 0x01, 0x88, 0x00, 0x29, 0x01, 0x8a, - 0xff, 0xd7, 0x01, 0x8b, 0xff, 0xd7, 0x01, 0x8c, 0xff, 0xc3, 0x01, 0x8d, - 0xff, 0xc3, 0x01, 0x8f, 0xff, 0xc3, 0x01, 0x90, 0xff, 0xc3, 0x01, 0x91, - 0xff, 0xc3, 0x01, 0x92, 0xff, 0xc3, 0x01, 0x93, 0xff, 0xc3, 0x01, 0x95, - 0xff, 0xc3, 0x01, 0x96, 0xff, 0xc3, 0x01, 0x98, 0xff, 0xc3, 0x01, 0x99, - 0xff, 0xc3, 0x01, 0x9a, 0xff, 0xc3, 0x01, 0x9b, 0xff, 0xc3, 0x00, 0x10, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x01, 0x79, 0xff, 0xd7, - 0x01, 0x7d, 0xff, 0xec, 0x01, 0x7e, 0xff, 0xec, 0x01, 0x80, 0xff, 0xd7, - 0x01, 0x85, 0xff, 0xd7, 0x01, 0x86, 0xff, 0xec, 0x01, 0x88, 0x00, 0x29, - 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x8d, 0xff, 0xd7, 0x01, 0x91, 0xff, 0xd7, - 0x01, 0x93, 0xff, 0xd7, 0x01, 0x97, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x00, 0x09, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, - 0x00, 0x29, 0x01, 0x79, 0xff, 0xd7, 0x01, 0x7e, 0xff, 0xd7, 0x01, 0x81, - 0xff, 0xd7, 0x01, 0x82, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xec, 0x02, 0x07, - 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x3d, - 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x49, 0x00, 0x14, 0x01, 0x7d, 0xff, 0xec, - 0x01, 0x80, 0xff, 0xec, 0x01, 0x85, 0xff, 0xd7, 0x01, 0x88, 0x00, 0x3d, - 0x01, 0x8a, 0xff, 0xd7, 0x01, 0x8d, 0xff, 0xd7, 0x01, 0x91, 0xff, 0xc3, - 0x01, 0x94, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, - 0x00, 0x07, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x49, - 0x00, 0x14, 0x01, 0x8d, 0x00, 0x14, 0x01, 0x8e, 0xff, 0xec, 0x02, 0x07, - 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x00, 0x03, 0x00, 0x1e, 0x00, 0x3d, - 0x01, 0x7e, 0xff, 0xec, 0x01, 0x88, 0x00, 0x29, 0x00, 0x05, 0x00, 0x5b, - 0xff, 0xd7, 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, 0x01, 0x91, - 0xff, 0xec, 0x01, 0x94, 0xff, 0xd7, 0x00, 0x04, 0x01, 0x7e, 0xff, 0xec, - 0x01, 0x80, 0x00, 0x14, 0x01, 0x8a, 0x00, 0x29, 0x01, 0x91, 0x00, 0x14, - 0x00, 0x07, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, - 0xff, 0xec, 0x01, 0x80, 0x00, 0x14, 0x01, 0x8a, 0x00, 0x14, 0x01, 0x8d, - 0x00, 0x14, 0x01, 0x91, 0x00, 0x29, 0x00, 0x0e, 0x00, 0x05, 0x00, 0x52, - 0x00, 0x0a, 0x00, 0x52, 0x00, 0x49, 0x00, 0x14, 0x00, 0x7d, 0x00, 0x29, - 0x01, 0x80, 0x00, 0x14, 0x01, 0x81, 0xff, 0xec, 0x01, 0x8a, 0x00, 0x29, - 0x01, 0x8c, 0xff, 0xd7, 0x01, 0x8d, 0x00, 0x14, 0x01, 0x8f, 0xff, 0xd7, - 0x01, 0x90, 0xff, 0xec, 0x01, 0x91, 0x00, 0x14, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x00, 0x04, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5d, - 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, 0x01, 0x94, 0xff, 0xec, 0x00, 0x15, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x49, 0x00, 0x14, - 0x01, 0x79, 0xff, 0xd7, 0x01, 0x7a, 0xff, 0xd7, 0x01, 0x7e, 0xff, 0xd7, - 0x01, 0x80, 0x00, 0x14, 0x01, 0x81, 0xff, 0xd7, 0x01, 0x82, 0xff, 0xd7, - 0x01, 0x85, 0xff, 0xec, 0x01, 0x8c, 0xff, 0xd7, 0x01, 0x8f, 0xff, 0xd7, - 0x01, 0x90, 0xff, 0xd7, 0x01, 0x92, 0xff, 0xec, 0x01, 0x93, 0xff, 0xec, - 0x01, 0x94, 0x00, 0x29, 0x01, 0x95, 0xff, 0xd7, 0x01, 0x96, 0xff, 0xd7, - 0x01, 0x99, 0xff, 0xec, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, - 0x00, 0x04, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, - 0xff, 0xec, 0x01, 0x80, 0x00, 0x14, 0x00, 0x13, 0x01, 0x79, 0xff, 0xec, - 0x01, 0x7d, 0xff, 0xec, 0x01, 0x7e, 0xff, 0xd7, 0x01, 0x80, 0xff, 0xd7, - 0x01, 0x81, 0xff, 0xec, 0x01, 0x85, 0xff, 0xd7, 0x01, 0x88, 0x00, 0x29, - 0x01, 0x8c, 0xff, 0xec, 0x01, 0x8d, 0xff, 0xd7, 0x01, 0x8f, 0xff, 0xec, - 0x01, 0x90, 0xff, 0xec, 0x01, 0x91, 0xff, 0xd7, 0x01, 0x92, 0xff, 0xec, - 0x01, 0x94, 0xff, 0xec, 0x01, 0x95, 0xff, 0xd7, 0x01, 0x98, 0xff, 0xec, - 0x01, 0x99, 0xff, 0xec, 0x01, 0x9a, 0xff, 0xec, 0x01, 0x9b, 0xff, 0xec, - 0x00, 0x38, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x10, - 0xff, 0xd7, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2d, 0x00, 0x3d, 0x00, 0x32, - 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x84, 0xff, 0xec, 0x00, 0x89, - 0xff, 0xec, 0x00, 0x8a, 0xff, 0xec, 0x00, 0x8f, 0xff, 0xec, 0x00, 0x94, - 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, - 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xf6, 0x00, 0x3d, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xbe, 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, - 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x00, 0x3d, - 0x00, 0x05, 0xff, 0xc3, 0x00, 0x0a, 0xff, 0xc3, 0x01, 0x9d, 0xff, 0x85, - 0x01, 0xa6, 0xff, 0x85, 0x01, 0xb0, 0xff, 0xd7, 0x01, 0xbc, 0xff, 0x85, - 0x01, 0xbd, 0xff, 0xd7, 0x01, 0xbf, 0xff, 0xec, 0x01, 0xc1, 0xff, 0xc3, - 0x01, 0xc4, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xc3, 0x01, 0xdd, 0xff, 0xec, - 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xae, - 0x02, 0x07, 0xff, 0xc3, 0x02, 0x0b, 0xff, 0xc3, 0x02, 0x6d, 0xff, 0xec, - 0x02, 0x76, 0xff, 0xd7, 0x02, 0x7c, 0xff, 0xc3, 0x02, 0x7d, 0xff, 0xc3, - 0x02, 0x80, 0xff, 0xc3, 0x02, 0x81, 0xff, 0xec, 0x02, 0x82, 0xff, 0xc3, - 0x02, 0x83, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, 0x02, 0x9f, 0xff, 0xd7, - 0x02, 0xa9, 0xff, 0x85, 0x02, 0xaa, 0xff, 0xc3, 0x02, 0xb5, 0xff, 0x85, - 0x02, 0xb6, 0xff, 0xc3, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb8, 0xff, 0xec, - 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, 0xff, 0xec, 0x02, 0xbb, 0xff, 0xd7, - 0x02, 0xbd, 0xff, 0x85, 0x02, 0xbf, 0xff, 0xc3, 0x02, 0xc0, 0xff, 0xc3, - 0x02, 0xc1, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xca, 0xff, 0xd7, - 0x02, 0xd4, 0xff, 0xc3, 0x02, 0xd5, 0xff, 0xc3, 0x02, 0xe5, 0xff, 0xd7, - 0x02, 0xf7, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xec, 0x02, 0xf9, 0xff, 0xd7, - 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfb, 0xff, 0xd7, 0x02, 0xfc, 0xff, 0xec, - 0x02, 0xfd, 0xff, 0xc3, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x05, 0xff, 0xd7, - 0x03, 0x07, 0xff, 0xd7, 0x03, 0x0d, 0xff, 0xc3, 0x03, 0x0e, 0xff, 0xec, - 0x03, 0x0f, 0xff, 0xc3, 0x03, 0x10, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, - 0x03, 0x18, 0xff, 0xc3, 0x00, 0xd4, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, - 0x00, 0x52, 0x00, 0x10, 0xff, 0x5c, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, - 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xae, 0x00, 0x3a, - 0xff, 0xc3, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, - 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, - 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, - 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, - 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, - 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, - 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, - 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, - 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, - 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, 0xff, 0xc3, 0x01, 0x38, - 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x9f, 0xff, 0xec, 0x01, 0xa4, - 0xff, 0x9a, 0x01, 0xaa, 0xff, 0x85, 0x01, 0xae, 0xff, 0x85, 0x01, 0xb5, - 0xff, 0x85, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbe, - 0xff, 0xc3, 0x01, 0xca, 0xff, 0x85, 0x01, 0xcb, 0xff, 0xd7, 0x01, 0xcc, - 0xff, 0xc3, 0x01, 0xcd, 0xff, 0xc3, 0x01, 0xce, 0xff, 0x5c, 0x01, 0xcf, - 0xff, 0x85, 0x01, 0xd0, 0xff, 0xc3, 0x01, 0xd1, 0xff, 0xc3, 0x01, 0xd2, - 0xff, 0xc3, 0x01, 0xd3, 0xff, 0xc3, 0x01, 0xd4, 0xff, 0xc3, 0x01, 0xd5, - 0xff, 0x5c, 0x01, 0xd6, 0xff, 0xc3, 0x01, 0xd7, 0xff, 0xc3, 0x01, 0xd8, - 0xff, 0x85, 0x01, 0xd9, 0xff, 0xc3, 0x01, 0xda, 0xff, 0xc3, 0x01, 0xdb, - 0xff, 0x85, 0x01, 0xdc, 0xff, 0xc3, 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, - 0xff, 0x85, 0x01, 0xdf, 0xff, 0xc3, 0x01, 0xe0, 0xff, 0xc3, 0x01, 0xe1, - 0xff, 0xc3, 0x01, 0xe2, 0xff, 0xc3, 0x01, 0xe3, 0xff, 0xc3, 0x01, 0xe4, - 0xff, 0xc3, 0x01, 0xe5, 0xff, 0xc3, 0x01, 0xe6, 0xff, 0xc3, 0x01, 0xe7, - 0xff, 0xc3, 0x01, 0xe8, 0xff, 0xc3, 0x01, 0xe9, 0xff, 0x9a, 0x01, 0xea, - 0xff, 0x85, 0x01, 0xec, 0xff, 0xc3, 0x01, 0xed, 0xff, 0x85, 0x01, 0xee, - 0xff, 0xae, 0x01, 0xf0, 0x00, 0x3d, 0x01, 0xf2, 0xff, 0x5c, 0x01, 0xf3, - 0xff, 0xc3, 0x01, 0xf5, 0xff, 0xc3, 0x01, 0xf7, 0xff, 0xc3, 0x01, 0xf9, - 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xc3, 0x01, 0xfc, 0xff, 0xc3, 0x01, 0xfe, - 0xff, 0xc3, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, - 0x00, 0x52, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, 0xff, 0xec, 0x02, 0x6a, - 0xff, 0x85, 0x02, 0x6b, 0xff, 0xc3, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, - 0xff, 0xc3, 0x02, 0x72, 0xff, 0x85, 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7e, - 0xff, 0xd7, 0x02, 0x7f, 0xff, 0x85, 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, - 0xff, 0xc3, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, 0xff, 0x85, 0x02, 0x86, - 0xff, 0xd7, 0x02, 0x87, 0xff, 0x85, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, - 0xff, 0x85, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8b, 0xff, 0xc3, 0x02, 0x8c, - 0xff, 0xd7, 0x02, 0x8d, 0xff, 0x85, 0x02, 0x96, 0xff, 0xc3, 0x02, 0x9a, - 0xff, 0xc3, 0x02, 0xa0, 0xff, 0xc3, 0x02, 0xa4, 0xff, 0xc3, 0x02, 0xa6, - 0xff, 0xc3, 0x02, 0xaa, 0xff, 0xc3, 0x02, 0xac, 0xff, 0xc3, 0x02, 0xae, - 0xff, 0xc3, 0x02, 0xb0, 0xff, 0xc3, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, - 0xff, 0x85, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0x85, 0x02, 0xb6, - 0xff, 0xc3, 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbc, - 0xff, 0xc3, 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xc4, - 0xff, 0xc3, 0x02, 0xc5, 0xff, 0xae, 0x02, 0xc6, 0xff, 0x71, 0x02, 0xc7, - 0xff, 0xae, 0x02, 0xcb, 0xff, 0xc3, 0x02, 0xce, 0xff, 0x85, 0x02, 0xcf, - 0xff, 0x5c, 0x02, 0xd1, 0xff, 0xc3, 0x02, 0xd3, 0xff, 0xc3, 0x02, 0xd5, - 0xff, 0xc3, 0x02, 0xd7, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0x85, 0x02, 0xda, - 0xff, 0x85, 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, 0x02, 0xdd, - 0xff, 0x85, 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, - 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xc3, 0x02, 0xec, 0xff, 0xc3, 0x02, 0xee, - 0xff, 0xc3, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0x85, 0x02, 0xf1, - 0xff, 0xd7, 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, - 0xff, 0x85, 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, 0x02, 0xfc, - 0xff, 0xc3, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x00, 0xff, 0xc3, 0x03, 0x06, - 0xff, 0xc3, 0x03, 0x08, 0xff, 0xc3, 0x03, 0x09, 0xff, 0x5c, 0x03, 0x0a, - 0xff, 0x85, 0x03, 0x0b, 0xff, 0x5c, 0x03, 0x0c, 0xff, 0x85, 0x03, 0x0e, - 0xff, 0xc3, 0x03, 0x10, 0xff, 0xc3, 0x03, 0x11, 0xff, 0x85, 0x03, 0x12, - 0xff, 0x5c, 0x03, 0x14, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, - 0xff, 0x85, 0x03, 0x18, 0xff, 0xc3, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, - 0xff, 0x85, 0x03, 0x1b, 0xff, 0x85, 0x03, 0x1c, 0xff, 0x5c, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x03, 0x61, - 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, - 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, - 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, 0xff, 0x9a, 0x03, 0x73, - 0xff, 0x9a, 0x00, 0x1f, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, - 0x01, 0x9f, 0xff, 0xd7, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xd7, - 0x01, 0xbe, 0xff, 0xec, 0x01, 0xde, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xd7, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6c, 0xff, 0xec, - 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, - 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, - 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, - 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, - 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, - 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x02, 0xfe, 0xff, 0xd7, - 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x00, 0x05, 0x01, 0xa0, - 0xff, 0xec, 0x01, 0xdc, 0xff, 0xd7, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, - 0xff, 0xd7, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x1a, 0x01, 0x9f, 0xff, 0xec, - 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xe4, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x7d, 0xff, 0xd7, - 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xec, - 0x02, 0xba, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, - 0x02, 0xc5, 0xff, 0xd7, 0x02, 0xc7, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, - 0x02, 0xf8, 0xff, 0xec, 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, - 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, 0xff, 0xec, - 0x03, 0x18, 0xff, 0xd7, 0x00, 0x37, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, - 0x00, 0x29, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, - 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, - 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, - 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0xc8, - 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, - 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, - 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, 0x01, 0x9f, - 0xff, 0xec, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x02, 0x0b, - 0x00, 0x29, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7e, - 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xb1, - 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, 0xff, 0xec, 0x03, 0x49, - 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, - 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, - 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, - 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, 0xff, 0xec, 0x00, 0x34, - 0x00, 0x05, 0xff, 0x9a, 0x00, 0x0a, 0xff, 0x9a, 0x01, 0xa6, 0xff, 0x85, - 0x01, 0xa8, 0xff, 0xd7, 0x01, 0xb0, 0xff, 0xd7, 0x01, 0xb5, 0xff, 0xec, - 0x01, 0xbc, 0xff, 0x85, 0x01, 0xbd, 0xff, 0xec, 0x01, 0xbf, 0xff, 0xec, - 0x01, 0xc1, 0xff, 0xae, 0x01, 0xc4, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd7, - 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe4, 0xff, 0xc3, 0x02, 0x07, 0xff, 0x9a, - 0x02, 0x0b, 0xff, 0x9a, 0x02, 0x76, 0xff, 0xd7, 0x02, 0x7c, 0xff, 0xae, - 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x80, 0xff, 0xae, 0x02, 0x82, 0xff, 0xae, - 0x02, 0x9f, 0xff, 0xd7, 0x02, 0xa9, 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd7, - 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb7, 0xff, 0x85, - 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbb, 0xff, 0xd7, 0x02, 0xbd, 0xff, 0x85, - 0x02, 0xbf, 0xff, 0xae, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc1, 0xff, 0xae, - 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xca, 0xff, 0xd7, 0x02, 0xce, 0xff, 0xec, - 0x02, 0xd4, 0xff, 0xae, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xe5, 0xff, 0xd7, - 0x02, 0xf7, 0xff, 0xec, 0x02, 0xf9, 0xff, 0xec, 0x02, 0xfb, 0xff, 0xec, - 0x02, 0xfd, 0xff, 0xae, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x05, 0xff, 0xd7, - 0x03, 0x07, 0xff, 0xd7, 0x03, 0x0d, 0xff, 0xae, 0x03, 0x0f, 0xff, 0xae, - 0x03, 0x11, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, - 0x03, 0x1b, 0xff, 0xec, 0x00, 0x31, 0x00, 0x05, 0xff, 0x9a, 0x00, 0x0a, - 0xff, 0x9a, 0x01, 0x9d, 0xff, 0x85, 0x01, 0xa6, 0xff, 0x85, 0x01, 0xa8, - 0xff, 0xd7, 0x01, 0xb0, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xbd, - 0xff, 0xd7, 0x01, 0xc1, 0xff, 0xae, 0x01, 0xc4, 0xff, 0x85, 0x01, 0xdc, - 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, - 0xff, 0xd7, 0x02, 0x07, 0xff, 0x9a, 0x02, 0x0b, 0xff, 0x9a, 0x02, 0x76, - 0xff, 0xec, 0x02, 0x7c, 0xff, 0xae, 0x02, 0x7d, 0xff, 0xec, 0x02, 0x80, - 0xff, 0xae, 0x02, 0x82, 0xff, 0xae, 0x02, 0x9f, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, - 0xff, 0xd7, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbb, - 0xff, 0xec, 0x02, 0xbd, 0xff, 0x85, 0x02, 0xbf, 0xff, 0xae, 0x02, 0xc0, - 0xff, 0xec, 0x02, 0xc1, 0xff, 0xae, 0x02, 0xc2, 0xff, 0xec, 0x02, 0xca, - 0xff, 0xec, 0x02, 0xd4, 0xff, 0xae, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xe5, - 0xff, 0xec, 0x02, 0xf7, 0xff, 0xd7, 0x02, 0xf9, 0xff, 0xd7, 0x02, 0xfb, - 0xff, 0xd7, 0x02, 0xfd, 0xff, 0xae, 0x02, 0xfe, 0xff, 0xec, 0x03, 0x05, - 0xff, 0xec, 0x03, 0x07, 0xff, 0xec, 0x03, 0x0d, 0xff, 0xae, 0x03, 0x0f, - 0xff, 0xae, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x1d, - 0x01, 0x9d, 0xff, 0x9a, 0x01, 0xa6, 0xff, 0x9a, 0x01, 0xc4, 0xff, 0x85, - 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xe4, 0xff, 0xc3, 0x01, 0xf6, 0xff, 0xec, 0x02, 0x6d, 0xff, 0xec, - 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, - 0x02, 0x8b, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, - 0x02, 0xb8, 0xff, 0xec, 0x02, 0xba, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xd7, - 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xc5, 0xff, 0xd7, 0x02, 0xc7, 0xff, 0xd7, - 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xec, 0x02, 0xfa, 0xff, 0xec, - 0x02, 0xfc, 0xff, 0xec, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xec, - 0x03, 0x10, 0xff, 0xec, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x6d, 0x00, 0x05, - 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, - 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x89, - 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, - 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, - 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, 0x00, 0xde, - 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, - 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x14, - 0xff, 0xd7, 0x01, 0x9f, 0xff, 0xd7, 0x01, 0xa4, 0x00, 0x29, 0x01, 0xb5, - 0x00, 0x29, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, - 0xff, 0xae, 0x01, 0xcb, 0xff, 0xec, 0x01, 0xce, 0x00, 0x14, 0x01, 0xcf, - 0xff, 0xd7, 0x01, 0xd8, 0xff, 0xd7, 0x01, 0xdb, 0xff, 0xd7, 0x01, 0xdc, - 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xd7, 0x01, 0xde, 0xff, 0xd7, 0x01, 0xe1, - 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xea, 0xff, 0xd7, 0x01, 0xed, - 0xff, 0xd7, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, - 0xff, 0xd7, 0x02, 0x6a, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, - 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x7f, - 0xff, 0xd7, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, 0x02, 0x84, - 0xff, 0xd7, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x86, 0xff, 0xd7, 0x02, 0x87, - 0xff, 0xd7, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8a, - 0xff, 0xd7, 0x02, 0x8b, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xd7, 0x02, 0x8d, - 0xff, 0xd7, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, - 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xb6, - 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, 0xff, 0xd7, 0x02, 0xc0, - 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xce, 0x00, 0x29, 0x02, 0xd5, - 0xff, 0xc3, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, - 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, 0x02, 0xf1, - 0xff, 0xd7, 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, - 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, - 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x0a, 0xff, 0xd7, 0x03, 0x0c, - 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x11, - 0x00, 0x29, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xd7, 0x03, 0x18, - 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0xd7, 0x03, 0x1b, - 0x00, 0x29, 0x03, 0x49, 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, - 0xff, 0xd7, 0x03, 0x4f, 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, - 0xff, 0xd7, 0x03, 0x55, 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, - 0xff, 0xd7, 0x03, 0x5b, 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, - 0xff, 0xd7, 0x00, 0x67, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x01, 0xa4, 0xff, 0x9a, 0x01, 0xaa, 0xff, 0x85, 0x01, 0xae, 0xff, 0x71, - 0x01, 0xb5, 0xff, 0x9a, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbc, 0x00, 0x29, - 0x01, 0xbe, 0xff, 0xd7, 0x01, 0xc4, 0x00, 0x14, 0x01, 0xc9, 0xff, 0xec, - 0x01, 0xca, 0xff, 0xae, 0x01, 0xcc, 0xff, 0xd7, 0x01, 0xcd, 0xff, 0xd7, - 0x01, 0xce, 0xff, 0x5c, 0x01, 0xcf, 0xff, 0xae, 0x01, 0xd1, 0xff, 0xd7, - 0x01, 0xd2, 0xff, 0xd7, 0x01, 0xd3, 0xff, 0xd7, 0x01, 0xd4, 0xff, 0xd7, - 0x01, 0xd5, 0xff, 0x5c, 0x01, 0xd6, 0xff, 0xd7, 0x01, 0xd7, 0xff, 0xd7, - 0x01, 0xd8, 0xff, 0xae, 0x01, 0xd9, 0xff, 0xd7, 0x01, 0xda, 0xff, 0xd7, - 0x01, 0xdb, 0xff, 0xae, 0x01, 0xde, 0xff, 0xae, 0x01, 0xe0, 0xff, 0xd7, - 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe2, 0xff, 0xd7, 0x01, 0xe3, 0xff, 0xd7, - 0x01, 0xe5, 0xff, 0xd7, 0x01, 0xe6, 0xff, 0xd7, 0x01, 0xe8, 0xff, 0xd7, - 0x01, 0xe9, 0xff, 0xd7, 0x01, 0xea, 0xff, 0xd7, 0x01, 0xec, 0xff, 0xd7, - 0x01, 0xed, 0xff, 0xae, 0x01, 0xee, 0xff, 0xd7, 0x01, 0xf0, 0x00, 0x52, - 0x01, 0xf2, 0xff, 0x71, 0x01, 0xf3, 0xff, 0xd7, 0x01, 0xf5, 0xff, 0xd7, - 0x01, 0xf7, 0xff, 0xd7, 0x01, 0xf9, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x02, 0x6a, 0xff, 0xae, 0x02, 0x6b, 0xff, 0xd7, - 0x02, 0x72, 0xff, 0x85, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0xae, - 0x02, 0x85, 0xff, 0xae, 0x02, 0x87, 0xff, 0xae, 0x02, 0x89, 0xff, 0xae, - 0x02, 0x8d, 0xff, 0xae, 0x02, 0x96, 0xff, 0xd7, 0x02, 0x9a, 0xff, 0xd7, - 0x02, 0xa4, 0xff, 0xd7, 0x02, 0xa6, 0xff, 0xd7, 0x02, 0xa9, 0x00, 0x29, - 0x02, 0xac, 0xff, 0xd7, 0x02, 0xae, 0xff, 0xd7, 0x02, 0xb0, 0xff, 0xd7, - 0x02, 0xb2, 0xff, 0xae, 0x02, 0xb4, 0xff, 0xae, 0x02, 0xb5, 0x00, 0x29, - 0x02, 0xb7, 0x00, 0x29, 0x02, 0xb9, 0x00, 0x29, 0x02, 0xbd, 0x00, 0x29, - 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xc4, 0xff, 0xd7, - 0x02, 0xce, 0xff, 0x9a, 0x02, 0xcf, 0xff, 0x5c, 0x02, 0xd1, 0xff, 0xd7, - 0x02, 0xd3, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xd7, 0xff, 0xd7, - 0x02, 0xd9, 0xff, 0x85, 0x02, 0xda, 0xff, 0xae, 0x02, 0xdb, 0xff, 0x85, - 0x02, 0xdc, 0xff, 0xae, 0x02, 0xdd, 0xff, 0x85, 0x02, 0xe0, 0xff, 0xae, - 0x02, 0xec, 0xff, 0xd7, 0x02, 0xee, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xae, - 0x02, 0xf2, 0xff, 0xae, 0x02, 0xf4, 0xff, 0xae, 0x02, 0xfe, 0xff, 0xd7, - 0x03, 0x00, 0xff, 0xd7, 0x03, 0x0a, 0xff, 0xae, 0x03, 0x0c, 0xff, 0xae, - 0x03, 0x11, 0xff, 0x9a, 0x03, 0x12, 0xff, 0x5c, 0x03, 0x14, 0xff, 0xd7, - 0x03, 0x16, 0xff, 0xae, 0x03, 0x17, 0x00, 0x29, 0x03, 0x1a, 0xff, 0xae, - 0x03, 0x1b, 0xff, 0x9a, 0x03, 0x1c, 0xff, 0x5c, 0x00, 0x89, 0x00, 0x05, - 0xff, 0xae, 0x00, 0x0a, 0xff, 0xae, 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, - 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, - 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, 0x00, 0x39, 0xff, 0xc3, 0x00, 0x3a, - 0xff, 0xd7, 0x00, 0x3c, 0xff, 0x9a, 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, - 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, - 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, - 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, - 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, - 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, - 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, - 0xff, 0xec, 0x01, 0x14, 0xff, 0xd7, 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, - 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, - 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, 0x01, 0x36, 0xff, 0xd7, 0x01, 0x38, - 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, 0x01, 0x9d, 0xff, 0x9a, 0x01, 0x9f, - 0xff, 0xec, 0x01, 0xa4, 0x00, 0x3d, 0x01, 0xa6, 0xff, 0x85, 0x01, 0xae, - 0x00, 0x29, 0x01, 0xb5, 0x00, 0x29, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xbe, 0xff, 0xd7, 0x01, 0xc1, - 0xff, 0xae, 0x01, 0xc4, 0xff, 0x9a, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xdc, - 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xc3, 0x01, 0xe7, - 0x00, 0x29, 0x01, 0xf2, 0x00, 0x29, 0x01, 0xfa, 0xff, 0xd7, 0x01, 0xfc, - 0xff, 0xd7, 0x01, 0xfe, 0xff, 0xd7, 0x02, 0x00, 0xff, 0x9a, 0x02, 0x07, - 0xff, 0xae, 0x02, 0x0b, 0xff, 0xae, 0x02, 0x5f, 0xff, 0xec, 0x02, 0x61, - 0xff, 0xec, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7c, 0xff, 0xae, 0x02, 0x7d, - 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x80, 0xff, 0xae, 0x02, 0x82, - 0xff, 0xae, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, 0xff, 0xec, 0x02, 0x88, - 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, 0xff, 0xec, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, - 0xff, 0xec, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb7, - 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbd, 0xff, 0x85, 0x02, 0xbf, - 0xff, 0xae, 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc1, 0xff, 0xae, 0x02, 0xc2, - 0xff, 0xc3, 0x02, 0xc5, 0xff, 0xae, 0x02, 0xc6, 0xff, 0xc3, 0x02, 0xc7, - 0xff, 0xae, 0x02, 0xce, 0x00, 0x29, 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd4, - 0xff, 0xae, 0x02, 0xd5, 0xff, 0xc3, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x02, 0xfd, 0xff, 0xae, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x0d, - 0xff, 0xae, 0x03, 0x0f, 0xff, 0xae, 0x03, 0x11, 0x00, 0x29, 0x03, 0x12, - 0x00, 0x29, 0x03, 0x15, 0xff, 0xec, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, - 0xff, 0xd7, 0x03, 0x19, 0xff, 0xec, 0x03, 0x1b, 0x00, 0x29, 0x03, 0x1c, - 0x00, 0x29, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, 0x03, 0x4d, - 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, 0x03, 0x53, - 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, 0x03, 0x59, - 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, 0x03, 0x5f, - 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, 0x03, 0x65, - 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, 0x03, 0x6b, - 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, 0x03, 0x71, - 0xff, 0x9a, 0x03, 0x73, 0xff, 0x9a, 0x00, 0x2a, 0x01, 0x9d, 0xff, 0xd7, - 0x01, 0xbc, 0xff, 0xd7, 0x01, 0xbd, 0xff, 0xd7, 0x01, 0xbf, 0xff, 0xec, - 0x01, 0xc1, 0xff, 0xc3, 0x01, 0xc4, 0xff, 0xd7, 0x01, 0xd0, 0xff, 0xec, - 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe4, 0xff, 0xd7, - 0x02, 0x7c, 0xff, 0xc3, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x80, 0xff, 0xc3, - 0x02, 0x82, 0xff, 0xc3, 0x02, 0xa0, 0xff, 0xec, 0x02, 0xa9, 0xff, 0xd7, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb5, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, - 0x02, 0xb7, 0xff, 0xd7, 0x02, 0xb9, 0xff, 0xd7, 0x02, 0xbc, 0xff, 0xec, - 0x02, 0xbd, 0xff, 0xd7, 0x02, 0xbf, 0xff, 0xc3, 0x02, 0xc0, 0xff, 0xd7, - 0x02, 0xc1, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xcb, 0xff, 0xec, - 0x02, 0xd4, 0xff, 0xc3, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xec, - 0x02, 0xf7, 0xff, 0xd7, 0x02, 0xf9, 0xff, 0xd7, 0x02, 0xfb, 0xff, 0xd7, - 0x02, 0xfd, 0xff, 0xc3, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x06, 0xff, 0xec, - 0x03, 0x08, 0xff, 0xec, 0x03, 0x0d, 0xff, 0xc3, 0x03, 0x0f, 0xff, 0xc3, - 0x03, 0x17, 0xff, 0xd7, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x21, 0x00, 0x37, - 0xff, 0xec, 0x00, 0x39, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xec, 0x00, 0x3c, - 0xff, 0xec, 0x00, 0x9f, 0xff, 0xec, 0x01, 0x24, 0xff, 0xec, 0x01, 0x26, - 0xff, 0xec, 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xec, 0x01, 0xb0, - 0xff, 0xec, 0x01, 0xbc, 0xff, 0xec, 0x01, 0xbd, 0xff, 0xec, 0x01, 0xbf, - 0xff, 0xec, 0x02, 0x00, 0xff, 0xec, 0x02, 0x76, 0xff, 0xec, 0x02, 0x9f, - 0xff, 0xec, 0x02, 0xa9, 0xff, 0xec, 0x02, 0xb5, 0xff, 0xec, 0x02, 0xb7, - 0xff, 0xec, 0x02, 0xb9, 0xff, 0xec, 0x02, 0xbb, 0xff, 0xec, 0x02, 0xbd, - 0xff, 0xec, 0x02, 0xca, 0xff, 0xec, 0x02, 0xe5, 0xff, 0xec, 0x02, 0xf7, - 0xff, 0xec, 0x02, 0xf9, 0xff, 0xec, 0x02, 0xfb, 0xff, 0xec, 0x03, 0x05, - 0xff, 0xec, 0x03, 0x07, 0xff, 0xec, 0x03, 0x17, 0xff, 0xec, 0x03, 0x6f, - 0xff, 0xec, 0x03, 0x71, 0xff, 0xec, 0x03, 0x73, 0xff, 0xec, 0x00, 0x8f, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x10, 0xff, 0x5c, - 0x01, 0x9f, 0xff, 0xec, 0x01, 0xa4, 0xff, 0x9a, 0x01, 0xaa, 0xff, 0x85, - 0x01, 0xae, 0xff, 0x85, 0x01, 0xb5, 0xff, 0x85, 0x01, 0xb8, 0xff, 0xd7, - 0x01, 0xbe, 0xff, 0xc3, 0x01, 0xca, 0xff, 0x85, 0x01, 0xcc, 0xff, 0xc3, - 0x01, 0xcd, 0xff, 0xc3, 0x01, 0xce, 0xff, 0x5c, 0x01, 0xcf, 0xff, 0x85, - 0x01, 0xd0, 0xff, 0xc3, 0x01, 0xd1, 0xff, 0xc3, 0x01, 0xd2, 0xff, 0xc3, - 0x01, 0xd3, 0xff, 0xc3, 0x01, 0xd4, 0xff, 0xc3, 0x01, 0xd5, 0xff, 0x5c, - 0x01, 0xd6, 0xff, 0xc3, 0x01, 0xd7, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0x85, - 0x01, 0xd9, 0xff, 0xc3, 0x01, 0xda, 0xff, 0xc3, 0x01, 0xdb, 0xff, 0x85, - 0x01, 0xdc, 0xff, 0xc3, 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, 0xff, 0x85, - 0x01, 0xdf, 0xff, 0xc3, 0x01, 0xe0, 0xff, 0xc3, 0x01, 0xe1, 0xff, 0xc3, - 0x01, 0xe2, 0xff, 0xc3, 0x01, 0xe3, 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xc3, - 0x01, 0xe5, 0xff, 0xc3, 0x01, 0xe6, 0xff, 0xc3, 0x01, 0xe7, 0xff, 0xc3, - 0x01, 0xe8, 0xff, 0xc3, 0x01, 0xe9, 0xff, 0x9a, 0x01, 0xea, 0xff, 0x85, - 0x01, 0xec, 0xff, 0xc3, 0x01, 0xed, 0xff, 0x85, 0x01, 0xee, 0xff, 0xae, - 0x01, 0xf0, 0x00, 0x3d, 0x01, 0xf2, 0xff, 0x5c, 0x01, 0xf3, 0xff, 0xc3, - 0x01, 0xf5, 0xff, 0xc3, 0x01, 0xf7, 0xff, 0xc3, 0x01, 0xf9, 0xff, 0xc3, - 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x6a, 0xff, 0x85, - 0x02, 0x6b, 0xff, 0xc3, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xc3, - 0x02, 0x72, 0xff, 0x85, 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0x85, 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, - 0x02, 0x84, 0xff, 0xd7, 0x02, 0x85, 0xff, 0x85, 0x02, 0x86, 0xff, 0xd7, - 0x02, 0x87, 0xff, 0x85, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, 0xff, 0x85, - 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8b, 0xff, 0xc3, 0x02, 0x8c, 0xff, 0xd7, - 0x02, 0x8d, 0xff, 0x85, 0x02, 0x96, 0xff, 0xc3, 0x02, 0x9a, 0xff, 0xc3, - 0x02, 0xa0, 0xff, 0xc3, 0x02, 0xa4, 0xff, 0xc3, 0x02, 0xa6, 0xff, 0xc3, - 0x02, 0xaa, 0xff, 0xc3, 0x02, 0xac, 0xff, 0xc3, 0x02, 0xae, 0xff, 0xc3, - 0x02, 0xb0, 0xff, 0xc3, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0x85, - 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xc3, - 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbc, 0xff, 0xc3, - 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xc4, 0xff, 0xc3, - 0x02, 0xc5, 0xff, 0xae, 0x02, 0xc6, 0xff, 0x71, 0x02, 0xc7, 0xff, 0xae, - 0x02, 0xcb, 0xff, 0xc3, 0x02, 0xce, 0xff, 0x85, 0x02, 0xcf, 0xff, 0x5c, - 0x02, 0xd1, 0xff, 0xc3, 0x02, 0xd3, 0xff, 0xc3, 0x02, 0xd5, 0xff, 0xc3, - 0x02, 0xd7, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0x85, 0x02, 0xda, 0xff, 0x85, - 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, 0x02, 0xdd, 0xff, 0x85, - 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, - 0x02, 0xe6, 0xff, 0xc3, 0x02, 0xec, 0xff, 0xc3, 0x02, 0xee, 0xff, 0xc3, - 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0x85, 0x02, 0xf1, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0x85, - 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, 0x02, 0xfc, 0xff, 0xc3, - 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x00, 0xff, 0xc3, 0x03, 0x06, 0xff, 0xc3, - 0x03, 0x08, 0xff, 0xc3, 0x03, 0x09, 0xff, 0x5c, 0x03, 0x0a, 0xff, 0x85, - 0x03, 0x0b, 0xff, 0x5c, 0x03, 0x0c, 0xff, 0x85, 0x03, 0x0e, 0xff, 0xc3, - 0x03, 0x10, 0xff, 0xc3, 0x03, 0x11, 0xff, 0x85, 0x03, 0x12, 0xff, 0x5c, - 0x03, 0x14, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x16, 0xff, 0x85, - 0x03, 0x18, 0xff, 0xc3, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0x85, - 0x03, 0x1b, 0xff, 0x85, 0x03, 0x1c, 0xff, 0x5c, 0x00, 0x42, 0x01, 0x9d, - 0xff, 0xd7, 0x01, 0xa3, 0x00, 0xf6, 0x01, 0xa4, 0x00, 0x29, 0x01, 0xa6, - 0xff, 0xd7, 0x01, 0xaa, 0x00, 0x14, 0x01, 0xae, 0x00, 0x29, 0x01, 0xb5, - 0x00, 0x29, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, - 0xff, 0xd7, 0x01, 0xbe, 0xff, 0xec, 0x01, 0xc1, 0xff, 0xd7, 0x01, 0xc4, - 0xff, 0xd7, 0x01, 0xce, 0x00, 0x29, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xe1, - 0xff, 0xd7, 0x01, 0xe7, 0x00, 0x29, 0x01, 0xf1, 0x00, 0x66, 0x01, 0xf2, - 0x00, 0x29, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x72, 0x00, 0x14, 0x02, 0x7c, - 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x80, - 0xff, 0xd7, 0x02, 0x82, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, - 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, - 0xff, 0xec, 0x02, 0xa9, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, - 0xff, 0xec, 0x02, 0xb5, 0xff, 0xd7, 0x02, 0xb7, 0xff, 0xd7, 0x02, 0xb9, - 0xff, 0xd7, 0x02, 0xbd, 0xff, 0xd7, 0x02, 0xbf, 0xff, 0xd7, 0x02, 0xc0, - 0xff, 0xd7, 0x02, 0xc1, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xc6, - 0xff, 0xd7, 0x02, 0xce, 0x00, 0x29, 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd4, - 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xd9, 0x00, 0x14, 0x02, 0xdb, - 0x00, 0x14, 0x02, 0xdd, 0x00, 0x14, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, - 0xff, 0xec, 0x02, 0xef, 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, - 0xff, 0xec, 0x02, 0xfd, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0d, - 0xff, 0xd7, 0x03, 0x0f, 0xff, 0xd7, 0x03, 0x11, 0x00, 0x29, 0x03, 0x12, - 0x00, 0x29, 0x03, 0x15, 0xff, 0xec, 0x03, 0x17, 0xff, 0xd7, 0x03, 0x19, - 0xff, 0xec, 0x03, 0x1b, 0x00, 0x29, 0x03, 0x1c, 0x00, 0x29, 0x00, 0x31, - 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x10, 0xff, 0xd7, - 0x01, 0x9f, 0xff, 0xd7, 0x01, 0xa4, 0x00, 0x29, 0x01, 0xb5, 0x00, 0x29, - 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, 0xff, 0xc3, - 0x01, 0xcb, 0xff, 0xd7, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xdc, 0xff, 0xd7, - 0x01, 0xe1, 0xff, 0xae, 0x01, 0xf2, 0x00, 0x29, 0x02, 0x07, 0x00, 0x3d, - 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xae, - 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x86, 0xff, 0xd7, - 0x02, 0x88, 0xff, 0xd7, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8c, 0xff, 0xd7, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, - 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xae, 0x02, 0xc2, 0xff, 0xae, - 0x02, 0xc5, 0xff, 0xc3, 0x02, 0xc6, 0xff, 0x9a, 0x02, 0xc7, 0xff, 0xc3, - 0x02, 0xce, 0x00, 0x29, 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd5, 0xff, 0xae, - 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, - 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xae, - 0x03, 0x11, 0x00, 0x29, 0x03, 0x12, 0x00, 0x29, 0x03, 0x15, 0xff, 0xd7, - 0x03, 0x18, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1b, 0x00, 0x29, - 0x03, 0x1c, 0x00, 0x29, 0x00, 0x26, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, - 0x00, 0x29, 0x01, 0xb1, 0xff, 0xec, 0x01, 0xb5, 0xff, 0xd7, 0x01, 0xbc, - 0xff, 0xd7, 0x01, 0xbd, 0xff, 0xec, 0x01, 0xbe, 0xff, 0xec, 0x01, 0xbf, - 0xff, 0xd7, 0x01, 0xc1, 0xff, 0xec, 0x01, 0xc4, 0xff, 0xec, 0x01, 0xc7, - 0xff, 0xec, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x7c, - 0xff, 0xec, 0x02, 0x80, 0xff, 0xec, 0x02, 0x82, 0xff, 0xec, 0x02, 0xa1, - 0xff, 0xec, 0x02, 0xa9, 0xff, 0xd7, 0x02, 0xb5, 0xff, 0xd7, 0x02, 0xb7, - 0xff, 0xd7, 0x02, 0xb9, 0xff, 0xd7, 0x02, 0xbd, 0xff, 0xd7, 0x02, 0xbf, - 0xff, 0xec, 0x02, 0xc1, 0xff, 0xec, 0x02, 0xce, 0xff, 0xd7, 0x02, 0xd4, - 0xff, 0xec, 0x02, 0xe7, 0xff, 0xec, 0x02, 0xe9, 0xff, 0xec, 0x02, 0xf5, - 0xff, 0xec, 0x02, 0xf7, 0xff, 0xec, 0x02, 0xf9, 0xff, 0xec, 0x02, 0xfb, - 0xff, 0xec, 0x02, 0xfd, 0xff, 0xec, 0x03, 0x0d, 0xff, 0xec, 0x03, 0x0f, - 0xff, 0xec, 0x03, 0x11, 0xff, 0xd7, 0x03, 0x17, 0xff, 0xd7, 0x03, 0x1b, - 0xff, 0xd7, 0x00, 0x4c, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, - 0x00, 0x10, 0xff, 0xd7, 0x00, 0x26, 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, - 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, 0xff, 0xd7, 0x00, 0x89, 0xff, 0xd7, - 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, 0xff, 0xd7, - 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, 0xff, 0xd7, - 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, 0x00, 0xde, 0xff, 0xd7, - 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, 0xff, 0xd7, - 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x14, 0xff, 0xd7, - 0x01, 0x9f, 0xff, 0xd7, 0x01, 0xa4, 0x00, 0x3d, 0x01, 0xb5, 0x00, 0x29, - 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, 0xff, 0xae, - 0x01, 0xcb, 0xff, 0xd7, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xe1, 0xff, 0xae, - 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xf2, 0x00, 0x29, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xd7, - 0x02, 0x7d, 0xff, 0xae, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xd7, - 0x02, 0x86, 0xff, 0xd7, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x8a, 0xff, 0xd7, - 0x02, 0x8c, 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, - 0x02, 0xc0, 0xff, 0xae, 0x02, 0xc2, 0xff, 0xae, 0x02, 0xce, 0x00, 0x29, - 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd5, 0xff, 0xae, 0x02, 0xe1, 0xff, 0xd7, - 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf1, 0xff, 0xd7, - 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xae, 0x03, 0x11, 0x00, 0x29, - 0x03, 0x12, 0x00, 0x29, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, - 0x03, 0x1b, 0x00, 0x29, 0x03, 0x1c, 0x00, 0x29, 0x03, 0x49, 0xff, 0xd7, - 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xd7, 0x03, 0x4f, 0xff, 0xd7, - 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xd7, 0x03, 0x55, 0xff, 0xd7, - 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xd7, 0x03, 0x5b, 0xff, 0xd7, - 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xd7, 0x00, 0x56, 0x00, 0x0f, - 0xff, 0xc3, 0x00, 0x11, 0xff, 0xc3, 0x00, 0x24, 0xff, 0xec, 0x00, 0x2c, - 0xff, 0xec, 0x00, 0x37, 0xff, 0xc3, 0x00, 0x39, 0xff, 0xd7, 0x00, 0x3a, - 0xff, 0xec, 0x00, 0x3b, 0xff, 0xd7, 0x00, 0x3c, 0xff, 0xd7, 0x00, 0x3d, - 0xff, 0xec, 0x00, 0x82, 0xff, 0xec, 0x00, 0x83, 0xff, 0xec, 0x00, 0x84, - 0xff, 0xec, 0x00, 0x85, 0xff, 0xec, 0x00, 0x86, 0xff, 0xec, 0x00, 0x87, - 0xff, 0xec, 0x00, 0x88, 0xff, 0xd7, 0x00, 0x8e, 0xff, 0xec, 0x00, 0x8f, - 0xff, 0xec, 0x00, 0x90, 0xff, 0xec, 0x00, 0x91, 0xff, 0xec, 0x00, 0x9f, - 0xff, 0xd7, 0x00, 0xc2, 0xff, 0xec, 0x00, 0xc4, 0xff, 0xec, 0x00, 0xc6, - 0xff, 0xec, 0x00, 0xec, 0xff, 0xec, 0x00, 0xf0, 0xff, 0xec, 0x00, 0xf2, - 0xff, 0xec, 0x01, 0x24, 0xff, 0xc3, 0x01, 0x26, 0xff, 0xc3, 0x01, 0x36, - 0xff, 0xec, 0x01, 0x38, 0xff, 0xd7, 0x01, 0x3a, 0xff, 0xd7, 0x01, 0x3b, - 0xff, 0xec, 0x01, 0x3d, 0xff, 0xec, 0x01, 0x3f, 0xff, 0xec, 0x01, 0x43, - 0xff, 0xec, 0x01, 0x9d, 0xff, 0xd7, 0x01, 0xa4, 0xff, 0xd7, 0x01, 0xa6, - 0xff, 0xd7, 0x01, 0xaa, 0xff, 0xec, 0x01, 0xae, 0xff, 0xec, 0x01, 0xb0, - 0xff, 0xd7, 0x01, 0xbc, 0xff, 0xc3, 0x01, 0xbf, 0xff, 0xec, 0x01, 0xc4, - 0xff, 0xd7, 0x01, 0xfa, 0xff, 0xec, 0x01, 0xfc, 0xff, 0xec, 0x01, 0xfe, - 0xff, 0xec, 0x02, 0x00, 0xff, 0xd7, 0x02, 0x28, 0xff, 0xec, 0x02, 0x58, - 0xff, 0xec, 0x02, 0x72, 0xff, 0xec, 0x02, 0x76, 0xff, 0xd7, 0x02, 0x9f, - 0xff, 0xd7, 0x02, 0xa9, 0xff, 0xc3, 0x02, 0xb5, 0xff, 0xc3, 0x02, 0xb7, - 0xff, 0xc3, 0x02, 0xb9, 0xff, 0xc3, 0x02, 0xbb, 0xff, 0xd7, 0x02, 0xbd, - 0xff, 0xc3, 0x02, 0xca, 0xff, 0xd7, 0x02, 0xd9, 0xff, 0xec, 0x02, 0xdb, - 0xff, 0xec, 0x02, 0xdd, 0xff, 0xec, 0x02, 0xe5, 0xff, 0xd7, 0x03, 0x05, - 0xff, 0xd7, 0x03, 0x07, 0xff, 0xd7, 0x03, 0x17, 0xff, 0xc3, 0x03, 0x1d, - 0xff, 0xec, 0x03, 0x1f, 0xff, 0xec, 0x03, 0x21, 0xff, 0xec, 0x03, 0x23, - 0xff, 0xec, 0x03, 0x25, 0xff, 0xec, 0x03, 0x27, 0xff, 0xec, 0x03, 0x29, - 0xff, 0xec, 0x03, 0x2b, 0xff, 0xec, 0x03, 0x2d, 0xff, 0xec, 0x03, 0x2f, - 0xff, 0xec, 0x03, 0x31, 0xff, 0xec, 0x03, 0x33, 0xff, 0xec, 0x03, 0x45, - 0xff, 0xec, 0x03, 0x47, 0xff, 0xec, 0x03, 0x6f, 0xff, 0xd7, 0x03, 0x71, - 0xff, 0xd7, 0x03, 0x73, 0xff, 0xd7, 0x00, 0x45, 0x00, 0x05, 0x00, 0x3d, - 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x0f, 0xff, 0x33, 0x00, 0x11, 0xff, 0x33, - 0x00, 0x24, 0xff, 0xae, 0x00, 0x26, 0xff, 0xec, 0x00, 0x3b, 0xff, 0xec, - 0x00, 0x3c, 0xff, 0xec, 0x00, 0x3d, 0xff, 0xd7, 0x00, 0x82, 0xff, 0xae, - 0x00, 0x83, 0xff, 0xae, 0x00, 0x84, 0xff, 0xae, 0x00, 0x85, 0xff, 0xae, - 0x00, 0x86, 0xff, 0xae, 0x00, 0x87, 0xff, 0xae, 0x00, 0x88, 0xff, 0x71, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x9f, 0xff, 0xec, 0x00, 0xc2, 0xff, 0xae, - 0x00, 0xc4, 0xff, 0xae, 0x00, 0xc6, 0xff, 0xae, 0x00, 0xc8, 0xff, 0xec, - 0x00, 0xce, 0xff, 0xec, 0x01, 0x38, 0xff, 0xec, 0x01, 0x3a, 0xff, 0xec, - 0x01, 0x3b, 0xff, 0xd7, 0x01, 0x3d, 0xff, 0xd7, 0x01, 0x3f, 0xff, 0xd7, - 0x01, 0x43, 0xff, 0xae, 0x01, 0xa4, 0xff, 0xae, 0x01, 0xaa, 0xff, 0xae, - 0x01, 0xae, 0xff, 0x9a, 0x01, 0xb5, 0xff, 0x9a, 0x01, 0xbb, 0xff, 0xec, - 0x01, 0xce, 0xff, 0x9a, 0x01, 0xd5, 0xff, 0xae, 0x01, 0xf2, 0xff, 0xae, - 0x02, 0x00, 0xff, 0xec, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, - 0x02, 0x28, 0xff, 0xae, 0x02, 0x58, 0xff, 0xae, 0x02, 0x72, 0xff, 0xae, - 0x02, 0xce, 0xff, 0x9a, 0x02, 0xcf, 0xff, 0xae, 0x02, 0xd9, 0xff, 0xae, - 0x02, 0xdb, 0xff, 0xae, 0x02, 0xdd, 0xff, 0xae, 0x03, 0x09, 0xff, 0xae, - 0x03, 0x0b, 0xff, 0xae, 0x03, 0x11, 0xff, 0x9a, 0x03, 0x12, 0xff, 0xae, - 0x03, 0x1b, 0xff, 0x9a, 0x03, 0x1c, 0xff, 0xae, 0x03, 0x1d, 0xff, 0xae, - 0x03, 0x1f, 0xff, 0xae, 0x03, 0x21, 0xff, 0xae, 0x03, 0x23, 0xff, 0xae, - 0x03, 0x25, 0xff, 0xae, 0x03, 0x27, 0xff, 0xae, 0x03, 0x29, 0xff, 0xae, - 0x03, 0x2b, 0xff, 0xae, 0x03, 0x2d, 0xff, 0xae, 0x03, 0x2f, 0xff, 0xae, - 0x03, 0x31, 0xff, 0xae, 0x03, 0x33, 0xff, 0xae, 0x03, 0x6f, 0xff, 0xec, - 0x03, 0x71, 0xff, 0xec, 0x03, 0x73, 0xff, 0xec, 0x00, 0x42, 0x00, 0x05, - 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x00, 0x0c, 0x00, 0x29, 0x00, 0x26, - 0xff, 0xd7, 0x00, 0x2a, 0xff, 0xd7, 0x00, 0x32, 0xff, 0xd7, 0x00, 0x34, - 0xff, 0xd7, 0x00, 0x40, 0x00, 0x29, 0x00, 0x60, 0x00, 0x29, 0x00, 0x89, - 0xff, 0xd7, 0x00, 0x94, 0xff, 0xd7, 0x00, 0x95, 0xff, 0xd7, 0x00, 0x96, - 0xff, 0xd7, 0x00, 0x97, 0xff, 0xd7, 0x00, 0x98, 0xff, 0xd7, 0x00, 0x9a, - 0xff, 0xd7, 0x00, 0xc8, 0xff, 0xd7, 0x00, 0xce, 0xff, 0xd7, 0x00, 0xde, - 0xff, 0xd7, 0x00, 0xe0, 0xff, 0xd7, 0x00, 0xe2, 0xff, 0xd7, 0x00, 0xe4, - 0xff, 0xd7, 0x01, 0x0e, 0xff, 0xd7, 0x01, 0x12, 0xff, 0xd7, 0x01, 0x9f, - 0xff, 0xd7, 0x01, 0xb8, 0xff, 0xd7, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, - 0xff, 0xc3, 0x01, 0xe1, 0xff, 0xc3, 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, - 0x00, 0x29, 0x02, 0x5f, 0xff, 0xd7, 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x7d, - 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x84, 0xff, 0xd7, 0x02, 0x86, - 0xff, 0xd7, 0x02, 0x88, 0xff, 0xd7, 0x02, 0x8a, 0xff, 0xd7, 0x02, 0x8c, - 0xff, 0xd7, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xc0, - 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xc6, 0xff, 0xae, 0x02, 0xd5, - 0xff, 0xc3, 0x02, 0xe1, 0xff, 0xd7, 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xef, - 0xff, 0xd7, 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf3, 0xff, 0xd7, 0x02, 0xfe, - 0xff, 0xc3, 0x03, 0x15, 0xff, 0xd7, 0x03, 0x19, 0xff, 0xd7, 0x03, 0x49, - 0xff, 0xd7, 0x03, 0x4b, 0xff, 0xd7, 0x03, 0x4d, 0xff, 0xd7, 0x03, 0x4f, - 0xff, 0xd7, 0x03, 0x51, 0xff, 0xd7, 0x03, 0x53, 0xff, 0xd7, 0x03, 0x55, - 0xff, 0xd7, 0x03, 0x57, 0xff, 0xd7, 0x03, 0x59, 0xff, 0xd7, 0x03, 0x5b, - 0xff, 0xd7, 0x03, 0x5d, 0xff, 0xd7, 0x03, 0x5f, 0xff, 0xd7, 0x01, 0x52, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x0f, 0xff, 0x9a, - 0x00, 0x10, 0xff, 0x9a, 0x00, 0x11, 0xff, 0x9a, 0x00, 0x22, 0x00, 0x29, - 0x00, 0x24, 0xff, 0x85, 0x00, 0x26, 0xff, 0xc3, 0x00, 0x2a, 0xff, 0xc3, - 0x00, 0x32, 0xff, 0xc3, 0x00, 0x34, 0xff, 0xc3, 0x00, 0x36, 0xff, 0xec, - 0x00, 0x37, 0x00, 0x14, 0x00, 0x44, 0xff, 0x85, 0x00, 0x46, 0xff, 0x85, - 0x00, 0x47, 0xff, 0x85, 0x00, 0x48, 0xff, 0x85, 0x00, 0x4a, 0xff, 0x9a, - 0x00, 0x50, 0xff, 0xae, 0x00, 0x51, 0xff, 0xae, 0x00, 0x52, 0xff, 0x85, - 0x00, 0x53, 0xff, 0xae, 0x00, 0x54, 0xff, 0x85, 0x00, 0x55, 0xff, 0xae, - 0x00, 0x56, 0xff, 0x85, 0x00, 0x58, 0xff, 0xae, 0x00, 0x59, 0xff, 0xc3, - 0x00, 0x5a, 0xff, 0xc3, 0x00, 0x5b, 0xff, 0xc3, 0x00, 0x5c, 0xff, 0xc3, - 0x00, 0x5d, 0xff, 0xc3, 0x00, 0x82, 0xff, 0x85, 0x00, 0x83, 0xff, 0x85, - 0x00, 0x84, 0xff, 0x85, 0x00, 0x85, 0xff, 0x85, 0x00, 0x86, 0xff, 0x85, - 0x00, 0x87, 0xff, 0x85, 0x00, 0x88, 0xff, 0x71, 0x00, 0x89, 0xff, 0xc3, - 0x00, 0x94, 0xff, 0xc3, 0x00, 0x95, 0xff, 0xc3, 0x00, 0x96, 0xff, 0xc3, - 0x00, 0x97, 0xff, 0xc3, 0x00, 0x98, 0xff, 0xc3, 0x00, 0x9a, 0xff, 0xc3, - 0x00, 0xa2, 0xff, 0x85, 0x00, 0xa3, 0xff, 0x85, 0x00, 0xa4, 0xff, 0x85, - 0x00, 0xa5, 0xff, 0x85, 0x00, 0xa6, 0xff, 0x85, 0x00, 0xa7, 0xff, 0x85, - 0x00, 0xa8, 0xff, 0x85, 0x00, 0xa9, 0xff, 0x85, 0x00, 0xaa, 0xff, 0x85, - 0x00, 0xab, 0xff, 0x85, 0x00, 0xac, 0xff, 0x85, 0x00, 0xad, 0xff, 0x85, - 0x00, 0xb3, 0xff, 0xae, 0x00, 0xb4, 0xff, 0x85, 0x00, 0xb5, 0xff, 0x85, - 0x00, 0xb6, 0xff, 0x85, 0x00, 0xb7, 0xff, 0x85, 0x00, 0xb8, 0xff, 0x85, - 0x00, 0xba, 0xff, 0x85, 0x00, 0xbb, 0xff, 0xae, 0x00, 0xbc, 0xff, 0xae, - 0x00, 0xbd, 0xff, 0xae, 0x00, 0xbe, 0xff, 0xae, 0x00, 0xbf, 0xff, 0xc3, - 0x00, 0xc1, 0xff, 0xc3, 0x00, 0xc2, 0xff, 0x85, 0x00, 0xc3, 0xff, 0x85, - 0x00, 0xc4, 0xff, 0x85, 0x00, 0xc5, 0xff, 0x85, 0x00, 0xc6, 0xff, 0x85, - 0x00, 0xc7, 0xff, 0x85, 0x00, 0xc8, 0xff, 0xc3, 0x00, 0xc9, 0xff, 0x85, - 0x00, 0xcb, 0xff, 0x85, 0x00, 0xcd, 0xff, 0x85, 0x00, 0xce, 0xff, 0xc3, - 0x00, 0xcf, 0xff, 0x85, 0x00, 0xd5, 0xff, 0x85, 0x00, 0xd7, 0xff, 0x85, - 0x00, 0xd9, 0xff, 0x85, 0x00, 0xdb, 0xff, 0x85, 0x00, 0xdd, 0xff, 0x85, - 0x00, 0xde, 0xff, 0xc3, 0x00, 0xe0, 0xff, 0xc3, 0x00, 0xe2, 0xff, 0xc3, - 0x00, 0xe4, 0xff, 0xc3, 0x01, 0x06, 0xff, 0xae, 0x01, 0x08, 0xff, 0xae, - 0x01, 0x0a, 0xff, 0xae, 0x01, 0x0e, 0xff, 0xc3, 0x01, 0x0f, 0xff, 0x85, - 0x01, 0x11, 0xff, 0x85, 0x01, 0x12, 0xff, 0xc3, 0x01, 0x13, 0xff, 0x85, - 0x01, 0x14, 0xff, 0xc3, 0x01, 0x15, 0xff, 0x85, 0x01, 0x1c, 0xff, 0xec, - 0x01, 0x1d, 0xff, 0x85, 0x01, 0x1f, 0xff, 0x85, 0x01, 0x20, 0xff, 0xec, - 0x01, 0x21, 0xff, 0x85, 0x01, 0x22, 0xff, 0xec, 0x01, 0x23, 0xff, 0x85, - 0x01, 0x24, 0x00, 0x14, 0x01, 0x26, 0x00, 0x14, 0x01, 0x37, 0xff, 0xc3, - 0x01, 0x39, 0xff, 0xc3, 0x01, 0x40, 0xff, 0xc3, 0x01, 0x43, 0xff, 0x85, - 0x01, 0x44, 0xff, 0x85, 0x01, 0x4a, 0xff, 0x85, 0x01, 0x9f, 0xff, 0xc3, - 0x01, 0xa0, 0xff, 0xec, 0x01, 0xa4, 0xff, 0xae, 0x01, 0xaa, 0xff, 0x85, - 0x01, 0xae, 0xff, 0x9a, 0x01, 0xb5, 0xff, 0x9a, 0x01, 0xb8, 0xff, 0xc3, - 0x01, 0xbb, 0xff, 0xc3, 0x01, 0xbc, 0x00, 0x14, 0x01, 0xbe, 0xff, 0xc3, - 0x01, 0xc4, 0x00, 0x14, 0x01, 0xca, 0xff, 0x85, 0x01, 0xcc, 0xff, 0xc3, - 0x01, 0xcd, 0xff, 0xc3, 0x01, 0xce, 0xff, 0x71, 0x01, 0xcf, 0xff, 0x85, - 0x01, 0xd0, 0xff, 0xc3, 0x01, 0xd1, 0xff, 0xc3, 0x01, 0xd2, 0xff, 0xc3, - 0x01, 0xd4, 0xff, 0xc3, 0x01, 0xd5, 0xff, 0x71, 0x01, 0xd6, 0xff, 0xc3, - 0x01, 0xd7, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0x85, 0x01, 0xd9, 0xff, 0xc3, - 0x01, 0xda, 0xff, 0xc3, 0x01, 0xdb, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xc3, - 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, 0xff, 0x85, 0x01, 0xdf, 0xff, 0xc3, - 0x01, 0xe0, 0xff, 0xc3, 0x01, 0xe1, 0xff, 0xc3, 0x01, 0xe2, 0xff, 0xc3, - 0x01, 0xe3, 0xff, 0xc3, 0x01, 0xe5, 0xff, 0xc3, 0x01, 0xe6, 0xff, 0xc3, - 0x01, 0xe8, 0xff, 0xc3, 0x01, 0xe9, 0xff, 0xc3, 0x01, 0xea, 0xff, 0x85, - 0x01, 0xeb, 0x00, 0x29, 0x01, 0xec, 0xff, 0xc3, 0x01, 0xed, 0xff, 0x85, - 0x01, 0xee, 0xff, 0x85, 0x01, 0xf0, 0x00, 0x52, 0x01, 0xf2, 0xff, 0x85, - 0x01, 0xf3, 0xff, 0xc3, 0x01, 0xf5, 0xff, 0xc3, 0x01, 0xf7, 0xff, 0xc3, - 0x01, 0xf9, 0xff, 0xc3, 0x01, 0xfb, 0xff, 0xc3, 0x01, 0xfd, 0xff, 0xc3, - 0x01, 0xff, 0xff, 0xc3, 0x02, 0x01, 0xff, 0xc3, 0x02, 0x07, 0x00, 0x52, - 0x02, 0x0b, 0x00, 0x52, 0x02, 0x28, 0xff, 0x85, 0x02, 0x58, 0xff, 0x85, - 0x02, 0x59, 0xff, 0x85, 0x02, 0x5f, 0xff, 0xc3, 0x02, 0x60, 0xff, 0x85, - 0x02, 0x6a, 0xff, 0x85, 0x02, 0x6b, 0xff, 0xc3, 0x02, 0x6c, 0xff, 0xc3, - 0x02, 0x6d, 0xff, 0xc3, 0x02, 0x72, 0xff, 0x85, 0x02, 0x7d, 0xff, 0xc3, - 0x02, 0x7e, 0xff, 0xc3, 0x02, 0x7f, 0xff, 0x85, 0x02, 0x81, 0xff, 0xc3, - 0x02, 0x83, 0xff, 0xc3, 0x02, 0x84, 0xff, 0xc3, 0x02, 0x85, 0xff, 0x85, - 0x02, 0x86, 0xff, 0xc3, 0x02, 0x87, 0xff, 0x85, 0x02, 0x88, 0xff, 0xc3, - 0x02, 0x89, 0xff, 0x85, 0x02, 0x8a, 0xff, 0xc3, 0x02, 0x8b, 0xff, 0xc3, - 0x02, 0x8c, 0xff, 0xc3, 0x02, 0x8d, 0xff, 0x85, 0x02, 0x96, 0xff, 0xc3, - 0x02, 0x9a, 0xff, 0xc3, 0x02, 0xa0, 0xff, 0xc3, 0x02, 0xa4, 0xff, 0xc3, - 0x02, 0xa6, 0xff, 0xc3, 0x02, 0xa9, 0x00, 0x14, 0x02, 0xaa, 0xff, 0xc3, - 0x02, 0xac, 0xff, 0xc3, 0x02, 0xae, 0xff, 0xc3, 0x02, 0xb0, 0xff, 0xc3, - 0x02, 0xb1, 0xff, 0xc3, 0x02, 0xb2, 0xff, 0x85, 0x02, 0xb3, 0xff, 0xc3, - 0x02, 0xb4, 0xff, 0x85, 0x02, 0xb5, 0x00, 0x14, 0x02, 0xb6, 0xff, 0xc3, - 0x02, 0xb7, 0x00, 0x14, 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xb9, 0x00, 0x14, - 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbc, 0xff, 0xc3, 0x02, 0xbd, 0x00, 0x14, - 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, 0x02, 0xc4, 0xff, 0xc3, - 0x02, 0xc5, 0xff, 0xc3, 0x02, 0xc6, 0xff, 0x85, 0x02, 0xc7, 0xff, 0xc3, - 0x02, 0xcb, 0xff, 0xc3, 0x02, 0xce, 0xff, 0x9a, 0x02, 0xcf, 0xff, 0x71, - 0x02, 0xd1, 0xff, 0xc3, 0x02, 0xd3, 0xff, 0xc3, 0x02, 0xd5, 0xff, 0xc3, - 0x02, 0xd7, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0x85, 0x02, 0xda, 0xff, 0x85, - 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, 0x02, 0xdd, 0xff, 0x85, - 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xc3, 0x02, 0xe3, 0xff, 0xc3, - 0x02, 0xe6, 0xff, 0xc3, 0x02, 0xec, 0xff, 0xc3, 0x02, 0xee, 0xff, 0xc3, - 0x02, 0xef, 0xff, 0xc3, 0x02, 0xf0, 0xff, 0x85, 0x02, 0xf1, 0xff, 0xc3, - 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xc3, 0x02, 0xf4, 0xff, 0x85, - 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, 0x02, 0xfc, 0xff, 0xc3, - 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x00, 0xff, 0xc3, 0x03, 0x06, 0xff, 0xc3, - 0x03, 0x08, 0xff, 0xc3, 0x03, 0x09, 0xff, 0x85, 0x03, 0x0a, 0xff, 0x85, - 0x03, 0x0b, 0xff, 0x85, 0x03, 0x0c, 0xff, 0x85, 0x03, 0x0e, 0xff, 0xc3, - 0x03, 0x10, 0xff, 0xc3, 0x03, 0x11, 0xff, 0x9a, 0x03, 0x12, 0xff, 0x71, - 0x03, 0x14, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xc3, 0x03, 0x16, 0xff, 0x85, - 0x03, 0x17, 0x00, 0x14, 0x03, 0x18, 0xff, 0xc3, 0x03, 0x19, 0xff, 0xc3, - 0x03, 0x1a, 0xff, 0x85, 0x03, 0x1b, 0xff, 0x9a, 0x03, 0x1c, 0xff, 0x71, - 0x03, 0x1d, 0xff, 0x85, 0x03, 0x1e, 0xff, 0x85, 0x03, 0x1f, 0xff, 0x85, - 0x03, 0x21, 0xff, 0x85, 0x03, 0x22, 0xff, 0x85, 0x03, 0x23, 0xff, 0x85, - 0x03, 0x24, 0xff, 0x85, 0x03, 0x25, 0xff, 0x85, 0x03, 0x26, 0xff, 0x85, - 0x03, 0x27, 0xff, 0x85, 0x03, 0x28, 0xff, 0x85, 0x03, 0x29, 0xff, 0x85, - 0x03, 0x2a, 0xff, 0x85, 0x03, 0x2b, 0xff, 0x85, 0x03, 0x2c, 0xff, 0x85, - 0x03, 0x2d, 0xff, 0x85, 0x03, 0x2e, 0xff, 0x85, 0x03, 0x2f, 0xff, 0x85, - 0x03, 0x30, 0xff, 0x85, 0x03, 0x31, 0xff, 0x85, 0x03, 0x32, 0xff, 0x85, - 0x03, 0x33, 0xff, 0x85, 0x03, 0x34, 0xff, 0x85, 0x03, 0x36, 0xff, 0x85, - 0x03, 0x38, 0xff, 0x85, 0x03, 0x3a, 0xff, 0x85, 0x03, 0x3c, 0xff, 0x85, - 0x03, 0x3e, 0xff, 0x85, 0x03, 0x40, 0xff, 0x85, 0x03, 0x42, 0xff, 0x85, - 0x03, 0x44, 0xff, 0x85, 0x03, 0x49, 0xff, 0xc3, 0x03, 0x4a, 0xff, 0x85, - 0x03, 0x4b, 0xff, 0xc3, 0x03, 0x4c, 0xff, 0x85, 0x03, 0x4d, 0xff, 0xc3, - 0x03, 0x4e, 0xff, 0x85, 0x03, 0x4f, 0xff, 0xc3, 0x03, 0x50, 0xff, 0x85, - 0x03, 0x51, 0xff, 0xc3, 0x03, 0x52, 0xff, 0x85, 0x03, 0x53, 0xff, 0xc3, - 0x03, 0x54, 0xff, 0x85, 0x03, 0x55, 0xff, 0xc3, 0x03, 0x56, 0xff, 0x85, - 0x03, 0x57, 0xff, 0xc3, 0x03, 0x58, 0xff, 0x85, 0x03, 0x59, 0xff, 0xc3, - 0x03, 0x5a, 0xff, 0x85, 0x03, 0x5b, 0xff, 0xc3, 0x03, 0x5c, 0xff, 0x85, - 0x03, 0x5d, 0xff, 0xc3, 0x03, 0x5e, 0xff, 0x85, 0x03, 0x5f, 0xff, 0xc3, - 0x03, 0x60, 0xff, 0x85, 0x03, 0x62, 0xff, 0xae, 0x03, 0x64, 0xff, 0xae, - 0x03, 0x66, 0xff, 0xae, 0x03, 0x68, 0xff, 0xae, 0x03, 0x6a, 0xff, 0xae, - 0x03, 0x6c, 0xff, 0xae, 0x03, 0x6e, 0xff, 0xae, 0x03, 0x70, 0xff, 0xc3, - 0x03, 0x72, 0xff, 0xc3, 0x03, 0x74, 0xff, 0xc3, 0x00, 0x63, 0x00, 0x05, - 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x00, 0x10, 0xff, 0xd7, 0x01, 0x9f, - 0xff, 0xd7, 0x01, 0xa4, 0xff, 0xae, 0x01, 0xaa, 0xff, 0x9a, 0x01, 0xae, - 0xff, 0x85, 0x01, 0xb5, 0xff, 0x9a, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, - 0xff, 0xec, 0x01, 0xc4, 0x00, 0x29, 0x01, 0xca, 0xff, 0xae, 0x01, 0xcc, - 0xff, 0xc3, 0x01, 0xcd, 0xff, 0xc3, 0x01, 0xce, 0xff, 0x71, 0x01, 0xcf, - 0xff, 0xc3, 0x01, 0xd2, 0xff, 0xc3, 0x01, 0xd3, 0xff, 0xc3, 0x01, 0xd4, - 0xff, 0xc3, 0x01, 0xd5, 0xff, 0x71, 0x01, 0xd6, 0xff, 0xc3, 0x01, 0xd7, - 0xff, 0xc3, 0x01, 0xd8, 0xff, 0x9a, 0x01, 0xd9, 0xff, 0xc3, 0x01, 0xda, - 0xff, 0xc3, 0x01, 0xdb, 0xff, 0xc3, 0x01, 0xde, 0xff, 0xae, 0x01, 0xe0, - 0xff, 0xc3, 0x01, 0xe1, 0xff, 0xc3, 0x01, 0xe2, 0xff, 0xc3, 0x01, 0xe3, - 0xff, 0xc3, 0x01, 0xe5, 0xff, 0xc3, 0x01, 0xe6, 0xff, 0xc3, 0x01, 0xe8, - 0xff, 0xc3, 0x01, 0xe9, 0xff, 0xc3, 0x01, 0xea, 0xff, 0xc3, 0x01, 0xec, - 0xff, 0xc3, 0x01, 0xed, 0xff, 0xc3, 0x01, 0xee, 0xff, 0xc3, 0x01, 0xf0, - 0x00, 0x3d, 0x01, 0xf2, 0xff, 0x85, 0x01, 0xf3, 0xff, 0xc3, 0x01, 0xf5, - 0xff, 0xc3, 0x01, 0xf7, 0xff, 0xc3, 0x01, 0xf9, 0xff, 0xc3, 0x02, 0x07, - 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6a, 0xff, 0x9a, 0x02, 0x6b, - 0xff, 0xc3, 0x02, 0x72, 0xff, 0x9a, 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7f, - 0xff, 0x9a, 0x02, 0x85, 0xff, 0x9a, 0x02, 0x87, 0xff, 0x9a, 0x02, 0x89, - 0xff, 0x9a, 0x02, 0x8d, 0xff, 0x9a, 0x02, 0x96, 0xff, 0xc3, 0x02, 0x9a, - 0xff, 0xc3, 0x02, 0xa4, 0xff, 0xc3, 0x02, 0xa6, 0xff, 0xc3, 0x02, 0xac, - 0xff, 0xc3, 0x02, 0xae, 0xff, 0xc3, 0x02, 0xb0, 0xff, 0xc3, 0x02, 0xb2, - 0xff, 0x9a, 0x02, 0xb4, 0xff, 0x9a, 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc2, - 0xff, 0xc3, 0x02, 0xc4, 0xff, 0xc3, 0x02, 0xc6, 0xff, 0xae, 0x02, 0xce, - 0xff, 0x9a, 0x02, 0xcf, 0xff, 0x71, 0x02, 0xd1, 0xff, 0xc3, 0x02, 0xd3, - 0xff, 0xc3, 0x02, 0xd5, 0xff, 0xc3, 0x02, 0xd7, 0xff, 0xc3, 0x02, 0xd9, - 0xff, 0x9a, 0x02, 0xda, 0xff, 0xae, 0x02, 0xdb, 0xff, 0x9a, 0x02, 0xdc, - 0xff, 0xae, 0x02, 0xdd, 0xff, 0x9a, 0x02, 0xe0, 0xff, 0x9a, 0x02, 0xec, - 0xff, 0xc3, 0x02, 0xee, 0xff, 0xc3, 0x02, 0xf0, 0xff, 0x9a, 0x02, 0xf2, - 0xff, 0x9a, 0x02, 0xf4, 0xff, 0x9a, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x00, - 0xff, 0xc3, 0x03, 0x09, 0xff, 0x85, 0x03, 0x0a, 0xff, 0x9a, 0x03, 0x0b, - 0xff, 0x85, 0x03, 0x0c, 0xff, 0x9a, 0x03, 0x11, 0xff, 0x9a, 0x03, 0x12, - 0xff, 0x71, 0x03, 0x14, 0xff, 0xc3, 0x03, 0x16, 0xff, 0x9a, 0x03, 0x1a, - 0xff, 0x9a, 0x03, 0x1b, 0xff, 0x9a, 0x03, 0x1c, 0xff, 0x71, 0x00, 0x2a, - 0x01, 0x9d, 0xff, 0xd7, 0x01, 0xa4, 0xff, 0xd7, 0x01, 0xa6, 0xff, 0xc3, - 0x01, 0xa8, 0xff, 0xec, 0x01, 0xaa, 0xff, 0xd7, 0x01, 0xae, 0xff, 0xd7, - 0x01, 0xb0, 0xff, 0xc3, 0x01, 0xb5, 0xff, 0xd7, 0x01, 0xbc, 0xff, 0xc3, - 0x01, 0xbf, 0xff, 0xd7, 0x01, 0xc4, 0xff, 0xc3, 0x01, 0xc7, 0xff, 0xd7, - 0x01, 0xce, 0xff, 0xc3, 0x01, 0xd5, 0xff, 0xc3, 0x01, 0xf2, 0xff, 0xc3, - 0x02, 0x72, 0xff, 0xd7, 0x02, 0x76, 0xff, 0xc3, 0x02, 0x9f, 0xff, 0xc3, - 0x02, 0xa1, 0xff, 0xd7, 0x02, 0xa9, 0xff, 0xc3, 0x02, 0xb5, 0xff, 0xc3, - 0x02, 0xb7, 0xff, 0xc3, 0x02, 0xb9, 0xff, 0xc3, 0x02, 0xbb, 0xff, 0xc3, - 0x02, 0xbd, 0xff, 0xc3, 0x02, 0xca, 0xff, 0xc3, 0x02, 0xce, 0xff, 0xd7, - 0x02, 0xcf, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0xd7, 0x02, 0xdb, 0xff, 0xd7, - 0x02, 0xdd, 0xff, 0xd7, 0x02, 0xe5, 0xff, 0xc3, 0x02, 0xe7, 0xff, 0xd7, - 0x02, 0xe9, 0xff, 0xd7, 0x02, 0xf5, 0xff, 0xd7, 0x03, 0x05, 0xff, 0xc3, - 0x03, 0x07, 0xff, 0xc3, 0x03, 0x11, 0xff, 0xd7, 0x03, 0x12, 0xff, 0xc3, - 0x03, 0x17, 0xff, 0xc3, 0x03, 0x1b, 0xff, 0xd7, 0x03, 0x1c, 0xff, 0xc3, - 0x00, 0x2e, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, 0x01, 0x9f, - 0xff, 0xd7, 0x01, 0xa4, 0x00, 0x3d, 0x01, 0xae, 0x00, 0x29, 0x01, 0xb5, - 0x00, 0x29, 0x01, 0xb8, 0xff, 0xec, 0x01, 0xbb, 0xff, 0xd7, 0x01, 0xbe, - 0xff, 0xd7, 0x01, 0xc1, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xc3, 0x02, 0x07, - 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6c, 0xff, 0xec, 0x02, 0x7c, - 0xff, 0xec, 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xec, 0x02, 0x80, - 0xff, 0xec, 0x02, 0x82, 0xff, 0xec, 0x02, 0x84, 0xff, 0xec, 0x02, 0x86, - 0xff, 0xec, 0x02, 0x88, 0xff, 0xec, 0x02, 0x8a, 0xff, 0xec, 0x02, 0x8c, - 0xff, 0xec, 0x02, 0xb1, 0xff, 0xec, 0x02, 0xb3, 0xff, 0xec, 0x02, 0xbf, - 0xff, 0xec, 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc1, 0xff, 0xec, 0x02, 0xc2, - 0xff, 0xc3, 0x02, 0xce, 0x00, 0x29, 0x02, 0xd4, 0xff, 0xec, 0x02, 0xd5, - 0xff, 0xc3, 0x02, 0xe1, 0xff, 0xec, 0x02, 0xe3, 0xff, 0xec, 0x02, 0xef, - 0xff, 0xec, 0x02, 0xf1, 0xff, 0xec, 0x02, 0xf3, 0xff, 0xec, 0x02, 0xfd, - 0xff, 0xec, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x0d, 0xff, 0xec, 0x03, 0x0f, - 0xff, 0xec, 0x03, 0x11, 0x00, 0x29, 0x03, 0x15, 0xff, 0xec, 0x03, 0x19, - 0xff, 0xec, 0x03, 0x1b, 0x00, 0x29, 0x00, 0x30, 0x01, 0xa3, 0x00, 0xf6, - 0x01, 0xa4, 0x00, 0x29, 0x01, 0xaa, 0x00, 0x14, 0x01, 0xae, 0x00, 0x29, - 0x01, 0xb5, 0x00, 0x29, 0x01, 0xbc, 0xff, 0xec, 0x01, 0xbe, 0xff, 0xec, - 0x01, 0xbf, 0x00, 0x14, 0x01, 0xc1, 0xff, 0xec, 0x01, 0xce, 0x00, 0x29, - 0x01, 0xd5, 0x00, 0x14, 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe7, 0x00, 0x29, - 0x01, 0xf1, 0x00, 0x66, 0x01, 0xf2, 0x00, 0x29, 0x02, 0x72, 0x00, 0x14, - 0x02, 0x7c, 0xff, 0xec, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x80, 0xff, 0xec, - 0x02, 0x82, 0xff, 0xec, 0x02, 0xa9, 0xff, 0xec, 0x02, 0xb5, 0xff, 0xec, - 0x02, 0xb7, 0xff, 0xec, 0x02, 0xb9, 0xff, 0xec, 0x02, 0xbd, 0xff, 0xec, - 0x02, 0xbf, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc1, 0xff, 0xec, - 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xc5, 0xff, 0xd7, 0x02, 0xc6, 0xff, 0xd7, - 0x02, 0xc7, 0xff, 0xd7, 0x02, 0xce, 0x00, 0x29, 0x02, 0xcf, 0x00, 0x14, - 0x02, 0xd4, 0xff, 0xec, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xd9, 0x00, 0x14, - 0x02, 0xdb, 0x00, 0x14, 0x02, 0xdd, 0x00, 0x14, 0x02, 0xfd, 0xff, 0xec, - 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0d, 0xff, 0xec, 0x03, 0x0f, 0xff, 0xec, - 0x03, 0x11, 0x00, 0x29, 0x03, 0x12, 0x00, 0x14, 0x03, 0x17, 0xff, 0xec, - 0x03, 0x1b, 0x00, 0x29, 0x03, 0x1c, 0x00, 0x14, 0x00, 0x3e, 0x01, 0x9d, - 0xff, 0xec, 0x01, 0xa3, 0x00, 0xe1, 0x01, 0xa4, 0x00, 0x3d, 0x01, 0xaa, - 0x00, 0x29, 0x01, 0xae, 0x00, 0x29, 0x01, 0xb5, 0x00, 0x29, 0x01, 0xbc, - 0xff, 0xec, 0x01, 0xbd, 0x00, 0x29, 0x01, 0xbe, 0xff, 0xec, 0x01, 0xbf, - 0x00, 0x14, 0x01, 0xc1, 0xff, 0xec, 0x01, 0xc4, 0xff, 0xec, 0x01, 0xc7, - 0x00, 0x14, 0x01, 0xce, 0x00, 0x3d, 0x01, 0xd1, 0x00, 0x14, 0x01, 0xd5, - 0x00, 0x29, 0x01, 0xdc, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe4, - 0xff, 0xec, 0x01, 0xe7, 0x00, 0x29, 0x01, 0xf1, 0x00, 0x66, 0x01, 0xf2, - 0x00, 0x29, 0x02, 0x72, 0x00, 0x29, 0x02, 0x7c, 0xff, 0xec, 0x02, 0x7d, - 0xff, 0xd7, 0x02, 0x80, 0xff, 0xec, 0x02, 0x82, 0xff, 0xec, 0x02, 0xa1, - 0x00, 0x14, 0x02, 0xa9, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xec, 0x02, 0xb5, - 0xff, 0xec, 0x02, 0xb6, 0xff, 0xec, 0x02, 0xb7, 0xff, 0xec, 0x02, 0xb9, - 0xff, 0xec, 0x02, 0xbd, 0xff, 0xec, 0x02, 0xbf, 0xff, 0xec, 0x02, 0xc0, - 0xff, 0xd7, 0x02, 0xc1, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xce, - 0x00, 0x29, 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd4, 0xff, 0xec, 0x02, 0xd5, - 0xff, 0xd7, 0x02, 0xd9, 0x00, 0x29, 0x02, 0xdb, 0x00, 0x29, 0x02, 0xdd, - 0x00, 0x29, 0x02, 0xe7, 0x00, 0x14, 0x02, 0xe9, 0x00, 0x14, 0x02, 0xf5, - 0x00, 0x14, 0x02, 0xf7, 0x00, 0x29, 0x02, 0xf9, 0x00, 0x29, 0x02, 0xfb, - 0x00, 0x29, 0x02, 0xfd, 0xff, 0xec, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0d, - 0xff, 0xec, 0x03, 0x0f, 0xff, 0xec, 0x03, 0x11, 0x00, 0x29, 0x03, 0x12, - 0x00, 0x29, 0x03, 0x17, 0xff, 0xec, 0x03, 0x18, 0xff, 0xec, 0x03, 0x1b, - 0x00, 0x29, 0x03, 0x1c, 0x00, 0x29, 0x00, 0x1e, 0x00, 0x05, 0xff, 0xc3, - 0x00, 0x0a, 0xff, 0xc3, 0x01, 0x9d, 0xff, 0x85, 0x01, 0xa6, 0xff, 0x71, - 0x01, 0xa8, 0xff, 0xd7, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xc1, 0xff, 0xc3, - 0x01, 0xc4, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xe4, 0xff, 0xd7, - 0x02, 0x07, 0xff, 0xc3, 0x02, 0x0b, 0xff, 0xc3, 0x02, 0x7c, 0xff, 0xc3, - 0x02, 0x80, 0xff, 0xc3, 0x02, 0x82, 0xff, 0xc3, 0x02, 0xa9, 0xff, 0x85, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, 0xff, 0xd7, - 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbd, 0xff, 0x85, - 0x02, 0xbf, 0xff, 0xc3, 0x02, 0xc1, 0xff, 0xc3, 0x02, 0xd4, 0xff, 0xc3, - 0x02, 0xfd, 0xff, 0xc3, 0x03, 0x0d, 0xff, 0xc3, 0x03, 0x0f, 0xff, 0xc3, - 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x20, 0x00, 0x05, - 0xff, 0x9a, 0x00, 0x0a, 0xff, 0x9a, 0x01, 0x9d, 0xff, 0x85, 0x01, 0xa6, - 0xff, 0x85, 0x01, 0xa8, 0xff, 0xd7, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xc1, - 0xff, 0xc3, 0x01, 0xc4, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xe4, - 0xff, 0xd7, 0x02, 0x07, 0xff, 0x9a, 0x02, 0x0b, 0xff, 0x9a, 0x02, 0x7c, - 0xff, 0xc3, 0x02, 0x80, 0xff, 0xc3, 0x02, 0x82, 0xff, 0xc3, 0x02, 0xa9, - 0xff, 0x85, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb5, 0xff, 0x85, 0x02, 0xb6, - 0xff, 0xd7, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb9, 0xff, 0x85, 0x02, 0xbd, - 0xff, 0x85, 0x02, 0xbf, 0xff, 0xc3, 0x02, 0xc1, 0xff, 0xc3, 0x02, 0xc5, - 0xff, 0xc3, 0x02, 0xc7, 0xff, 0xc3, 0x02, 0xd4, 0xff, 0xc3, 0x02, 0xfd, - 0xff, 0xc3, 0x03, 0x0d, 0xff, 0xc3, 0x03, 0x0f, 0xff, 0xc3, 0x03, 0x17, - 0xff, 0x85, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x23, 0x01, 0x9d, 0xff, 0xd7, - 0x01, 0xa4, 0xff, 0xd7, 0x01, 0xa6, 0xff, 0xd7, 0x01, 0xa8, 0xff, 0xd7, - 0x01, 0xae, 0xff, 0xd7, 0x01, 0xb0, 0xff, 0xc3, 0x01, 0xb1, 0xff, 0xec, - 0x01, 0xb5, 0xff, 0xc3, 0x01, 0xbc, 0xff, 0xd7, 0x01, 0xbd, 0xff, 0xec, - 0x01, 0xbf, 0xff, 0xd7, 0x01, 0xd5, 0xff, 0xd7, 0x01, 0xf2, 0xff, 0xd7, - 0x02, 0x76, 0xff, 0xc3, 0x02, 0x9f, 0xff, 0xc3, 0x02, 0xa9, 0xff, 0xd7, - 0x02, 0xb5, 0xff, 0xd7, 0x02, 0xb7, 0xff, 0xd7, 0x02, 0xb9, 0xff, 0xd7, - 0x02, 0xbb, 0xff, 0xc3, 0x02, 0xbd, 0xff, 0xd7, 0x02, 0xca, 0xff, 0xc3, - 0x02, 0xce, 0xff, 0xc3, 0x02, 0xcf, 0xff, 0xd7, 0x02, 0xe5, 0xff, 0xc3, - 0x02, 0xf7, 0xff, 0xec, 0x02, 0xf9, 0xff, 0xec, 0x02, 0xfb, 0xff, 0xec, - 0x03, 0x05, 0xff, 0xc3, 0x03, 0x07, 0xff, 0xc3, 0x03, 0x11, 0xff, 0xc3, - 0x03, 0x12, 0xff, 0xd7, 0x03, 0x17, 0xff, 0xd7, 0x03, 0x1b, 0xff, 0xc3, - 0x03, 0x1c, 0xff, 0xd7, 0x00, 0x1d, 0x01, 0x9d, 0xff, 0xd7, 0x01, 0xa4, - 0xff, 0xd7, 0x01, 0xa6, 0xff, 0xd7, 0x01, 0xa8, 0xff, 0xec, 0x01, 0xae, - 0xff, 0xd7, 0x01, 0xb0, 0xff, 0xd7, 0x01, 0xb1, 0xff, 0xec, 0x01, 0xb5, - 0xff, 0xd7, 0x01, 0xbd, 0xff, 0xec, 0x01, 0xbf, 0xff, 0xd7, 0x01, 0xce, - 0xff, 0xd7, 0x01, 0xd5, 0xff, 0xd7, 0x01, 0xf2, 0xff, 0xd7, 0x02, 0x76, - 0xff, 0xd7, 0x02, 0x9f, 0xff, 0xd7, 0x02, 0xbb, 0xff, 0xd7, 0x02, 0xca, - 0xff, 0xd7, 0x02, 0xce, 0xff, 0xd7, 0x02, 0xcf, 0xff, 0xd7, 0x02, 0xe5, - 0xff, 0xd7, 0x02, 0xf7, 0xff, 0xec, 0x02, 0xf9, 0xff, 0xec, 0x02, 0xfb, - 0xff, 0xec, 0x03, 0x05, 0xff, 0xd7, 0x03, 0x07, 0xff, 0xd7, 0x03, 0x11, - 0xff, 0xd7, 0x03, 0x12, 0xff, 0xd7, 0x03, 0x1b, 0xff, 0xd7, 0x03, 0x1c, - 0xff, 0xd7, 0x00, 0x19, 0x00, 0x0a, 0xff, 0xd7, 0x01, 0xdc, 0xff, 0xd7, - 0x01, 0xdd, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, - 0x01, 0xf6, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x7d, 0xff, 0xec, - 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xec, - 0x02, 0xba, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, - 0x02, 0xd5, 0xff, 0xec, 0x02, 0xf8, 0xff, 0xec, 0x02, 0xfa, 0xff, 0xec, - 0x02, 0xfc, 0xff, 0xec, 0x02, 0xfe, 0xff, 0xec, 0x03, 0x0e, 0xff, 0xec, - 0x03, 0x10, 0xff, 0xec, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x21, 0x01, 0xce, - 0xff, 0xd7, 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, - 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, - 0xff, 0xd7, 0x01, 0xf6, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xd7, 0x02, 0x7d, - 0xff, 0xec, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, 0x02, 0x8b, - 0xff, 0xd7, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, - 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, 0xff, 0xd7, 0x02, 0xbc, - 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, 0x02, 0xcb, - 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, 0x02, 0xf8, - 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, 0xff, 0xd7, 0x02, 0xfe, - 0xff, 0xec, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, 0xff, 0xd7, 0x03, 0x0e, - 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x18, 0xff, 0xd7, 0x00, 0x24, - 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x01, 0xd0, 0xff, 0xec, - 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xd7, - 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xf6, 0xff, 0xd7, - 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6d, 0xff, 0xd7, - 0x02, 0x7d, 0xff, 0xec, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, - 0x02, 0x8b, 0xff, 0xd7, 0x02, 0xa0, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xd7, - 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, 0xff, 0xd7, - 0x02, 0xbc, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, - 0x02, 0xcb, 0xff, 0xec, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xe6, 0xff, 0xec, - 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, 0xff, 0xd7, - 0x02, 0xfe, 0xff, 0xec, 0x03, 0x06, 0xff, 0xec, 0x03, 0x08, 0xff, 0xec, - 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x18, 0xff, 0xd7, - 0x00, 0x07, 0x01, 0xce, 0xff, 0x9a, 0x01, 0xd5, 0xff, 0x9a, 0x01, 0xed, - 0xff, 0xec, 0x01, 0xf2, 0xff, 0x9a, 0x02, 0xcf, 0xff, 0x9a, 0x03, 0x12, - 0xff, 0x9a, 0x03, 0x1c, 0xff, 0x9a, 0x00, 0x10, 0x01, 0xca, 0x00, 0x14, - 0x01, 0xce, 0x00, 0x29, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xe4, 0xff, 0xc3, 0x01, 0xf1, 0x00, 0x7b, 0x02, 0x7d, 0xff, 0xd7, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, - 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xda, 0x00, 0x14, - 0x02, 0xdc, 0x00, 0x14, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x18, 0xff, 0xd7, - 0x00, 0x0d, 0x00, 0x0a, 0xff, 0xd7, 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xdc, - 0xff, 0xec, 0x01, 0xdf, 0xff, 0xec, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xaa, - 0xff, 0xec, 0x02, 0xb6, 0xff, 0xec, 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xcb, - 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xd7, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, - 0xff, 0xd7, 0x03, 0x18, 0xff, 0xec, 0x00, 0x20, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x01, 0xcf, 0xff, 0xd7, 0x01, 0xd8, 0xff, 0xd7, - 0x01, 0xdb, 0xff, 0xec, 0x01, 0xde, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xea, 0xff, 0xd7, 0x01, 0xed, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6a, 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x87, 0xff, 0xd7, - 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xd7, - 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, - 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xd7, - 0x03, 0x0a, 0xff, 0xd7, 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xd7, - 0x03, 0x1a, 0xff, 0xd7, 0x00, 0x1d, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, - 0x00, 0x3d, 0x01, 0xd1, 0xff, 0xec, 0x01, 0xdc, 0xff, 0xec, 0x01, 0xdd, - 0xff, 0xec, 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xf6, - 0xff, 0xec, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6d, - 0xff, 0xec, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, - 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xec, 0x02, 0xb6, - 0xff, 0xec, 0x02, 0xb8, 0xff, 0xec, 0x02, 0xba, 0xff, 0xec, 0x02, 0xc0, - 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xf8, - 0xff, 0xec, 0x02, 0xfa, 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x02, 0xfe, - 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, 0xff, 0xec, 0x03, 0x18, - 0xff, 0xec, 0x00, 0x21, 0x00, 0x05, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x29, - 0x01, 0xcb, 0xff, 0xd7, 0x01, 0xcf, 0xff, 0xd7, 0x01, 0xd8, 0xff, 0xd7, - 0x01, 0xdb, 0xff, 0xd7, 0x01, 0xde, 0xff, 0xd7, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xea, 0xff, 0xd7, 0x01, 0xed, 0xff, 0xd7, 0x02, 0x07, 0x00, 0x29, - 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6a, 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x87, 0xff, 0xd7, - 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xd7, - 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, - 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xd7, - 0x03, 0x0a, 0xff, 0xd7, 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xd7, - 0x03, 0x1a, 0xff, 0xd7, 0x00, 0x22, 0x00, 0x5b, 0xff, 0xd7, 0x00, 0x5d, - 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xd1, - 0xff, 0xec, 0x01, 0xd5, 0xff, 0xec, 0x01, 0xdc, 0xff, 0xd7, 0x01, 0xdd, - 0xff, 0xec, 0x01, 0xdf, 0xff, 0xd7, 0x01, 0xf2, 0xff, 0xec, 0x01, 0xf6, - 0xff, 0xec, 0x02, 0x6d, 0xff, 0xec, 0x02, 0x81, 0xff, 0xec, 0x02, 0x83, - 0xff, 0xec, 0x02, 0x8b, 0xff, 0xec, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xaa, - 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xb8, 0xff, 0xec, 0x02, 0xba, - 0xff, 0xec, 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xcb, 0xff, 0xd7, 0x02, 0xcf, - 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xec, 0x02, 0xfa, - 0xff, 0xec, 0x02, 0xfc, 0xff, 0xec, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, - 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xec, 0x03, 0x10, 0xff, 0xec, 0x03, 0x12, - 0xff, 0xec, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x1c, 0xff, 0xec, 0x00, 0x13, - 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xd1, 0xff, 0xec, 0x01, 0xd5, 0xff, 0xec, - 0x01, 0xdc, 0xff, 0xec, 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xec, - 0x01, 0xf2, 0xff, 0xec, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xaa, 0xff, 0xec, - 0x02, 0xb6, 0xff, 0xec, 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xcb, 0xff, 0xd7, - 0x02, 0xcf, 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, 0x03, 0x06, 0xff, 0xd7, - 0x03, 0x08, 0xff, 0xd7, 0x03, 0x12, 0xff, 0xec, 0x03, 0x18, 0xff, 0xec, - 0x03, 0x1c, 0xff, 0xec, 0x00, 0x17, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, - 0x00, 0x3d, 0x01, 0xcf, 0xff, 0xec, 0x01, 0xd8, 0xff, 0xec, 0x01, 0xed, - 0xff, 0xec, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6a, - 0xff, 0xec, 0x02, 0x7f, 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, 0x02, 0x87, - 0xff, 0xec, 0x02, 0x89, 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, 0x02, 0xb2, - 0xff, 0xec, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xe0, 0xff, 0xec, 0x02, 0xf0, - 0xff, 0xec, 0x02, 0xf2, 0xff, 0xec, 0x02, 0xf4, 0xff, 0xec, 0x03, 0x0a, - 0xff, 0xec, 0x03, 0x0c, 0xff, 0xec, 0x03, 0x16, 0xff, 0xec, 0x03, 0x1a, - 0xff, 0xec, 0x00, 0x30, 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, - 0x00, 0x49, 0x00, 0x14, 0x01, 0xca, 0xff, 0xd7, 0x01, 0xce, 0xff, 0x9a, - 0x01, 0xcf, 0xff, 0xec, 0x01, 0xd5, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0xd7, - 0x01, 0xdb, 0xff, 0xd7, 0x01, 0xdd, 0x00, 0x14, 0x01, 0xde, 0xff, 0xd7, - 0x01, 0xed, 0xff, 0xd7, 0x01, 0xf2, 0xff, 0x9a, 0x01, 0xf6, 0x00, 0x14, - 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x6a, 0xff, 0xd7, - 0x02, 0x6d, 0x00, 0x14, 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x81, 0x00, 0x14, - 0x02, 0x83, 0x00, 0x14, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x87, 0xff, 0xd7, - 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8b, 0x00, 0x14, 0x02, 0x8d, 0xff, 0xd7, - 0x02, 0xb2, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xb8, 0x00, 0x14, - 0x02, 0xba, 0x00, 0x14, 0x02, 0xcf, 0xff, 0xc3, 0x02, 0xda, 0xff, 0xd7, - 0x02, 0xdc, 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x02, 0xf8, 0x00, 0x14, - 0x02, 0xfa, 0x00, 0x14, 0x02, 0xfc, 0x00, 0x14, 0x03, 0x0a, 0xff, 0xd7, - 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x0e, 0x00, 0x14, 0x03, 0x10, 0x00, 0x14, - 0x03, 0x12, 0xff, 0xc3, 0x03, 0x16, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0xd7, - 0x03, 0x1c, 0xff, 0xc3, 0x00, 0x24, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, - 0x00, 0x3d, 0x00, 0x49, 0x00, 0x14, 0x01, 0xca, 0xff, 0xec, 0x01, 0xce, - 0xff, 0xc3, 0x01, 0xd5, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0xec, 0x01, 0xdc, - 0x00, 0x14, 0x01, 0xde, 0xff, 0xec, 0x01, 0xf2, 0xff, 0xc3, 0x02, 0x07, - 0x00, 0x3d, 0x02, 0x0b, 0x00, 0x3d, 0x02, 0x6a, 0xff, 0xec, 0x02, 0x7f, - 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, 0x02, 0x87, 0xff, 0xec, 0x02, 0x89, - 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, 0x02, 0xaa, 0x00, 0x14, 0x02, 0xb2, - 0xff, 0xec, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xb6, 0x00, 0x14, 0x02, 0xcf, - 0xff, 0xc3, 0x02, 0xda, 0xff, 0xec, 0x02, 0xdc, 0xff, 0xec, 0x02, 0xe0, - 0xff, 0xec, 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf2, 0xff, 0xec, 0x02, 0xf4, - 0xff, 0xec, 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, 0xff, 0xec, 0x03, 0x12, - 0xff, 0xc3, 0x03, 0x16, 0xff, 0xec, 0x03, 0x18, 0x00, 0x14, 0x03, 0x1a, - 0xff, 0xec, 0x03, 0x1c, 0xff, 0xc3, 0x00, 0x1c, 0x00, 0x5b, 0xff, 0xd7, - 0x00, 0x5d, 0xff, 0xec, 0x01, 0x40, 0xff, 0xec, 0x01, 0xd0, 0xff, 0xd7, - 0x01, 0xd1, 0xff, 0xec, 0x01, 0xd5, 0xff, 0xec, 0x01, 0xdc, 0xff, 0xd7, - 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, - 0x01, 0xf2, 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xec, 0x02, 0xa0, 0xff, 0xd7, - 0x02, 0xaa, 0xff, 0xd7, 0x02, 0xb6, 0xff, 0xd7, 0x02, 0xbc, 0xff, 0xd7, - 0x02, 0xc0, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, 0x02, 0xcb, 0xff, 0xd7, - 0x02, 0xcf, 0xff, 0xec, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, - 0x02, 0xfe, 0xff, 0xec, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, 0xff, 0xd7, - 0x03, 0x12, 0xff, 0xec, 0x03, 0x18, 0xff, 0xd7, 0x03, 0x1c, 0xff, 0xec, - 0x00, 0x1d, 0x01, 0xcb, 0xff, 0xec, 0x01, 0xcf, 0xff, 0xec, 0x01, 0xd8, - 0xff, 0xec, 0x01, 0xdb, 0xff, 0xec, 0x01, 0xde, 0xff, 0xec, 0x01, 0xe1, - 0xff, 0xec, 0x01, 0xea, 0xff, 0xec, 0x01, 0xed, 0xff, 0xec, 0x02, 0x6a, - 0xff, 0xec, 0x02, 0x7d, 0xff, 0xec, 0x02, 0x7f, 0xff, 0xec, 0x02, 0x85, - 0xff, 0xec, 0x02, 0x87, 0xff, 0xec, 0x02, 0x89, 0xff, 0xec, 0x02, 0x8d, - 0xff, 0xec, 0x02, 0xb2, 0xff, 0xec, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xc0, - 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xe0, - 0xff, 0xec, 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf2, 0xff, 0xec, 0x02, 0xf4, - 0xff, 0xec, 0x02, 0xfe, 0xff, 0xec, 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, - 0xff, 0xec, 0x03, 0x16, 0xff, 0xec, 0x03, 0x1a, 0xff, 0xec, 0x00, 0x15, - 0x01, 0xce, 0x00, 0x29, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xdc, 0xff, 0xec, - 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xe7, 0x00, 0x29, - 0x01, 0xe9, 0x00, 0x14, 0x01, 0xf1, 0x00, 0x66, 0x01, 0xf2, 0x00, 0x29, - 0x01, 0xf6, 0x00, 0x14, 0x02, 0x7d, 0xff, 0xec, 0x02, 0xaa, 0xff, 0xec, - 0x02, 0xb6, 0xff, 0xec, 0x02, 0xc0, 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, - 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd5, 0xff, 0xec, 0x02, 0xfe, 0xff, 0xec, - 0x03, 0x12, 0x00, 0x29, 0x03, 0x18, 0xff, 0xec, 0x03, 0x1c, 0x00, 0x29, - 0x00, 0x16, 0x01, 0xce, 0x00, 0x3d, 0x01, 0xd5, 0x00, 0x29, 0x01, 0xdc, - 0xff, 0xec, 0x01, 0xe1, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xec, 0x01, 0xe7, - 0x00, 0x14, 0x01, 0xea, 0xff, 0xec, 0x01, 0xed, 0xff, 0xec, 0x01, 0xf1, - 0x00, 0x66, 0x01, 0xf2, 0x00, 0x29, 0x01, 0xf6, 0x00, 0x14, 0x02, 0x7d, - 0xff, 0xec, 0x02, 0xaa, 0xff, 0xec, 0x02, 0xb6, 0xff, 0xec, 0x02, 0xc0, - 0xff, 0xec, 0x02, 0xc2, 0xff, 0xec, 0x02, 0xcf, 0x00, 0x29, 0x02, 0xd5, - 0xff, 0xec, 0x02, 0xfe, 0xff, 0xec, 0x03, 0x12, 0x00, 0x29, 0x03, 0x18, - 0xff, 0xec, 0x03, 0x1c, 0x00, 0x29, 0x00, 0x19, 0x01, 0xdc, 0xff, 0x9a, - 0x01, 0xdd, 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, - 0x01, 0xe4, 0xff, 0x71, 0x01, 0xf6, 0xff, 0xc3, 0x02, 0x6d, 0xff, 0xd7, - 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, - 0x02, 0x8b, 0xff, 0xd7, 0x02, 0xaa, 0xff, 0x9a, 0x02, 0xb6, 0xff, 0x9a, - 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, - 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xd7, - 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xd7, - 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, 0xff, 0xd7, 0x03, 0x18, 0xff, 0x9a, - 0x00, 0x1c, 0x00, 0x05, 0x00, 0x3d, 0x00, 0x0a, 0x00, 0x3d, 0x01, 0xdc, - 0xff, 0x9a, 0x01, 0xdd, 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe1, - 0xff, 0xd7, 0x01, 0xe4, 0xff, 0x71, 0x02, 0x07, 0x00, 0x3d, 0x02, 0x0b, - 0x00, 0x3d, 0x02, 0x6d, 0xff, 0xd7, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, - 0xff, 0xd7, 0x02, 0x83, 0xff, 0xd7, 0x02, 0x8b, 0xff, 0xd7, 0x02, 0xaa, - 0xff, 0x9a, 0x02, 0xb6, 0xff, 0x9a, 0x02, 0xb8, 0xff, 0xd7, 0x02, 0xba, - 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xd5, - 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xd7, 0x02, 0xfa, 0xff, 0xd7, 0x02, 0xfc, - 0xff, 0xd7, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xd7, 0x03, 0x10, - 0xff, 0xd7, 0x03, 0x18, 0xff, 0x9a, 0x00, 0x11, 0x01, 0xce, 0xff, 0xd7, - 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xd1, 0xff, 0xec, 0x01, 0xd5, 0xff, 0xec, - 0x01, 0xdf, 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xf2, 0xff, 0xec, - 0x01, 0xf6, 0xff, 0xd7, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xbc, 0xff, 0xd7, - 0x02, 0xcb, 0xff, 0xd7, 0x02, 0xcf, 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, - 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, 0xff, 0xd7, 0x03, 0x12, 0xff, 0xec, - 0x03, 0x1c, 0xff, 0xec, 0x00, 0x10, 0x01, 0xce, 0xff, 0xd7, 0x01, 0xd0, - 0xff, 0xd7, 0x01, 0xd1, 0xff, 0xec, 0x01, 0xd5, 0xff, 0xec, 0x01, 0xdf, - 0xff, 0xec, 0x01, 0xe4, 0xff, 0xd7, 0x01, 0xf6, 0xff, 0xec, 0x02, 0xa0, - 0xff, 0xd7, 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xcb, 0xff, 0xd7, 0x02, 0xcf, - 0xff, 0xec, 0x02, 0xe6, 0xff, 0xd7, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, - 0xff, 0xd7, 0x03, 0x12, 0xff, 0xec, 0x03, 0x1c, 0xff, 0xec, 0x00, 0x03, - 0x00, 0x05, 0xff, 0x98, 0x00, 0x0a, 0xff, 0xd7, 0x01, 0xdf, 0xff, 0xec, - 0x00, 0x1c, 0x01, 0xce, 0xff, 0x9a, 0x01, 0xcf, 0xff, 0xd7, 0x01, 0xd5, - 0xff, 0x9a, 0x01, 0xd8, 0xff, 0xd7, 0x01, 0xdb, 0xff, 0xec, 0x01, 0xde, - 0xff, 0xd7, 0x01, 0xea, 0xff, 0xd7, 0x01, 0xed, 0xff, 0xec, 0x01, 0xf2, - 0xff, 0x9a, 0x02, 0x6a, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x85, - 0xff, 0xd7, 0x02, 0x87, 0xff, 0xd7, 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8d, - 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xcf, - 0xff, 0x9a, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, 0x02, 0xf2, - 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x03, 0x0a, 0xff, 0xd7, 0x03, 0x0c, - 0xff, 0xd7, 0x03, 0x12, 0xff, 0x9a, 0x03, 0x16, 0xff, 0xd7, 0x03, 0x1a, - 0xff, 0xd7, 0x03, 0x1c, 0xff, 0x9a, 0x00, 0x02, 0x01, 0xeb, 0x00, 0x3d, - 0x01, 0xf4, 0x00, 0x3d, 0x00, 0x21, 0x01, 0xd0, 0xff, 0xd7, 0x01, 0xdc, - 0xff, 0x9a, 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, 0xff, 0xec, 0x01, 0xdf, - 0xff, 0xec, 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe4, 0xff, 0x9a, 0x01, 0xf6, - 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xc3, 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, - 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, 0x02, 0x8b, 0xff, 0xc3, 0x02, 0xa0, - 0xff, 0xd7, 0x02, 0xaa, 0xff, 0x9a, 0x02, 0xb6, 0xff, 0x9a, 0x02, 0xb8, - 0xff, 0xc3, 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xc0, - 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, 0x02, 0xcb, 0xff, 0xd7, 0x02, 0xd5, - 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xd7, 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, - 0xff, 0xc3, 0x02, 0xfc, 0xff, 0xc3, 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x06, - 0xff, 0xd7, 0x03, 0x08, 0xff, 0xd7, 0x03, 0x0e, 0xff, 0xc3, 0x03, 0x10, - 0xff, 0xc3, 0x03, 0x18, 0xff, 0x9a, 0x00, 0x1f, 0x01, 0xd0, 0xff, 0xd7, - 0x01, 0xdc, 0xff, 0x9a, 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xdf, 0xff, 0xec, - 0x01, 0xe1, 0xff, 0xd7, 0x01, 0xe4, 0xff, 0x9a, 0x02, 0x6d, 0xff, 0xc3, - 0x02, 0x7d, 0xff, 0xd7, 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, - 0x02, 0x8b, 0xff, 0xc3, 0x02, 0xa0, 0xff, 0xd7, 0x02, 0xaa, 0xff, 0x9a, - 0x02, 0xb6, 0xff, 0x9a, 0x02, 0xb8, 0xff, 0xc3, 0x02, 0xba, 0xff, 0xc3, - 0x02, 0xbc, 0xff, 0xd7, 0x02, 0xc0, 0xff, 0xd7, 0x02, 0xc2, 0xff, 0xd7, - 0x02, 0xcb, 0xff, 0xd7, 0x02, 0xd5, 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xd7, - 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, 0x02, 0xfc, 0xff, 0xc3, - 0x02, 0xfe, 0xff, 0xd7, 0x03, 0x06, 0xff, 0xd7, 0x03, 0x08, 0xff, 0xd7, - 0x03, 0x0e, 0xff, 0xc3, 0x03, 0x10, 0xff, 0xc3, 0x03, 0x18, 0xff, 0x9a, - 0x00, 0x01, 0x01, 0xf6, 0xff, 0xd7, 0x00, 0x1c, 0x00, 0x05, 0x00, 0x29, - 0x00, 0x0a, 0x00, 0x29, 0x01, 0xcb, 0xff, 0xec, 0x01, 0xcf, 0xff, 0xd7, - 0x01, 0xd8, 0xff, 0xd7, 0x01, 0xdb, 0xff, 0xec, 0x01, 0xde, 0xff, 0xd7, - 0x01, 0xea, 0xff, 0xd7, 0x01, 0xed, 0xff, 0xd7, 0x01, 0xf6, 0xff, 0xec, - 0x02, 0x07, 0x00, 0x29, 0x02, 0x0b, 0x00, 0x29, 0x02, 0x6a, 0xff, 0xd7, - 0x02, 0x7f, 0xff, 0xd7, 0x02, 0x85, 0xff, 0xd7, 0x02, 0x87, 0xff, 0xd7, - 0x02, 0x89, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0xd7, - 0x02, 0xb4, 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0xd7, - 0x02, 0xf2, 0xff, 0xd7, 0x02, 0xf4, 0xff, 0xd7, 0x03, 0x0a, 0xff, 0xd7, - 0x03, 0x0c, 0xff, 0xd7, 0x03, 0x16, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0xd7, - 0x00, 0x1d, 0x01, 0xca, 0xff, 0xd7, 0x01, 0xd5, 0xff, 0xc3, 0x01, 0xd8, - 0xff, 0xec, 0x01, 0xdc, 0x00, 0x14, 0x01, 0xf2, 0xff, 0xd7, 0x02, 0x6a, - 0xff, 0xec, 0x02, 0x7f, 0xff, 0xec, 0x02, 0x85, 0xff, 0xec, 0x02, 0x87, - 0xff, 0xec, 0x02, 0x89, 0xff, 0xec, 0x02, 0x8d, 0xff, 0xec, 0x02, 0xaa, - 0x00, 0x14, 0x02, 0xb2, 0xff, 0xec, 0x02, 0xb4, 0xff, 0xec, 0x02, 0xb6, - 0x00, 0x14, 0x02, 0xcf, 0xff, 0xc3, 0x02, 0xda, 0xff, 0xd7, 0x02, 0xdc, - 0xff, 0xd7, 0x02, 0xe0, 0xff, 0xec, 0x02, 0xf0, 0xff, 0xec, 0x02, 0xf2, - 0xff, 0xec, 0x02, 0xf4, 0xff, 0xec, 0x03, 0x0a, 0xff, 0xec, 0x03, 0x0c, - 0xff, 0xec, 0x03, 0x12, 0xff, 0xc3, 0x03, 0x16, 0xff, 0xec, 0x03, 0x18, - 0x00, 0x14, 0x03, 0x1a, 0xff, 0xec, 0x03, 0x1c, 0xff, 0xc3, 0x00, 0xda, - 0x00, 0x05, 0x00, 0x52, 0x00, 0x0a, 0x00, 0x52, 0x00, 0x10, 0xff, 0x5c, - 0x00, 0x26, 0xff, 0xec, 0x00, 0x2a, 0xff, 0xec, 0x00, 0x32, 0xff, 0xec, - 0x00, 0x34, 0xff, 0xec, 0x00, 0x37, 0xff, 0x85, 0x00, 0x38, 0xff, 0xec, - 0x00, 0x39, 0xff, 0xae, 0x00, 0x3a, 0xff, 0xc3, 0x00, 0x3c, 0xff, 0x9a, - 0x00, 0x89, 0xff, 0xec, 0x00, 0x94, 0xff, 0xec, 0x00, 0x95, 0xff, 0xec, - 0x00, 0x96, 0xff, 0xec, 0x00, 0x97, 0xff, 0xec, 0x00, 0x98, 0xff, 0xec, - 0x00, 0x9a, 0xff, 0xec, 0x00, 0x9b, 0xff, 0xec, 0x00, 0x9c, 0xff, 0xec, - 0x00, 0x9d, 0xff, 0xec, 0x00, 0x9e, 0xff, 0xec, 0x00, 0x9f, 0xff, 0x9a, - 0x00, 0xc8, 0xff, 0xec, 0x00, 0xce, 0xff, 0xec, 0x00, 0xde, 0xff, 0xec, - 0x00, 0xe0, 0xff, 0xec, 0x00, 0xe2, 0xff, 0xec, 0x00, 0xe4, 0xff, 0xec, - 0x01, 0x0e, 0xff, 0xec, 0x01, 0x12, 0xff, 0xec, 0x01, 0x14, 0xff, 0xec, - 0x01, 0x24, 0xff, 0x85, 0x01, 0x26, 0xff, 0x85, 0x01, 0x2c, 0xff, 0xec, - 0x01, 0x30, 0xff, 0xec, 0x01, 0x32, 0xff, 0xec, 0x01, 0x34, 0xff, 0xec, - 0x01, 0x36, 0xff, 0xc3, 0x01, 0x38, 0xff, 0x9a, 0x01, 0x3a, 0xff, 0x9a, - 0x01, 0x9f, 0xff, 0xec, 0x01, 0xa4, 0xff, 0x9a, 0x01, 0xaa, 0xff, 0x85, - 0x01, 0xae, 0xff, 0x85, 0x01, 0xb5, 0xff, 0x85, 0x01, 0xb8, 0xff, 0xd7, - 0x01, 0xbb, 0xff, 0xec, 0x01, 0xbc, 0xff, 0x85, 0x01, 0xbe, 0xff, 0xc3, - 0x01, 0xca, 0xff, 0x85, 0x01, 0xcc, 0xff, 0xc3, 0x01, 0xcd, 0xff, 0xc3, - 0x01, 0xce, 0xff, 0x5c, 0x01, 0xcf, 0xff, 0x85, 0x01, 0xd0, 0xff, 0xc3, - 0x01, 0xd1, 0xff, 0xc3, 0x01, 0xd2, 0xff, 0xc3, 0x01, 0xd3, 0xff, 0xc3, - 0x01, 0xd4, 0xff, 0xc3, 0x01, 0xd5, 0xff, 0x5c, 0x01, 0xd6, 0xff, 0xc3, - 0x01, 0xd7, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0x85, 0x01, 0xd9, 0xff, 0xc3, - 0x01, 0xda, 0xff, 0xc3, 0x01, 0xdb, 0xff, 0x85, 0x01, 0xdc, 0xff, 0xc3, - 0x01, 0xdd, 0xff, 0xc3, 0x01, 0xde, 0xff, 0x85, 0x01, 0xdf, 0xff, 0xc3, - 0x01, 0xe0, 0xff, 0xc3, 0x01, 0xe1, 0xff, 0xc3, 0x01, 0xe2, 0xff, 0xc3, - 0x01, 0xe3, 0xff, 0xc3, 0x01, 0xe4, 0xff, 0xc3, 0x01, 0xe5, 0xff, 0xc3, - 0x01, 0xe6, 0xff, 0xc3, 0x01, 0xe7, 0xff, 0xc3, 0x01, 0xe8, 0xff, 0xc3, - 0x01, 0xe9, 0xff, 0x9a, 0x01, 0xea, 0xff, 0x85, 0x01, 0xec, 0xff, 0xc3, - 0x01, 0xed, 0xff, 0x85, 0x01, 0xee, 0xff, 0xae, 0x01, 0xf0, 0x00, 0x3d, - 0x01, 0xf2, 0xff, 0x5c, 0x01, 0xf3, 0xff, 0xc3, 0x01, 0xf5, 0xff, 0xc3, - 0x01, 0xf7, 0xff, 0xc3, 0x01, 0xf9, 0xff, 0xc3, 0x01, 0xfa, 0xff, 0xc3, - 0x01, 0xfc, 0xff, 0xc3, 0x01, 0xfe, 0xff, 0xc3, 0x02, 0x00, 0xff, 0x9a, - 0x02, 0x07, 0x00, 0x52, 0x02, 0x0b, 0x00, 0x52, 0x02, 0x5f, 0xff, 0xec, - 0x02, 0x61, 0xff, 0xec, 0x02, 0x6a, 0xff, 0x85, 0x02, 0x6b, 0xff, 0xc3, - 0x02, 0x6c, 0xff, 0xd7, 0x02, 0x6d, 0xff, 0xc3, 0x02, 0x72, 0xff, 0x85, - 0x02, 0x7d, 0xff, 0xc3, 0x02, 0x7e, 0xff, 0xd7, 0x02, 0x7f, 0xff, 0x85, - 0x02, 0x81, 0xff, 0xc3, 0x02, 0x83, 0xff, 0xc3, 0x02, 0x84, 0xff, 0xd7, - 0x02, 0x85, 0xff, 0x85, 0x02, 0x86, 0xff, 0xd7, 0x02, 0x87, 0xff, 0x85, - 0x02, 0x88, 0xff, 0xd7, 0x02, 0x89, 0xff, 0x85, 0x02, 0x8a, 0xff, 0xd7, - 0x02, 0x8b, 0xff, 0xc3, 0x02, 0x8c, 0xff, 0xd7, 0x02, 0x8d, 0xff, 0x85, - 0x02, 0x96, 0xff, 0xc3, 0x02, 0x9a, 0xff, 0xc3, 0x02, 0xa0, 0xff, 0xc3, - 0x02, 0xa4, 0xff, 0xc3, 0x02, 0xa6, 0xff, 0xc3, 0x02, 0xa9, 0xff, 0x85, - 0x02, 0xaa, 0xff, 0xc3, 0x02, 0xac, 0xff, 0xc3, 0x02, 0xae, 0xff, 0xc3, - 0x02, 0xb0, 0xff, 0xc3, 0x02, 0xb1, 0xff, 0xd7, 0x02, 0xb2, 0xff, 0x85, - 0x02, 0xb3, 0xff, 0xd7, 0x02, 0xb4, 0xff, 0x85, 0x02, 0xb5, 0xff, 0x85, - 0x02, 0xb6, 0xff, 0xc3, 0x02, 0xb7, 0xff, 0x85, 0x02, 0xb8, 0xff, 0xc3, - 0x02, 0xb9, 0xff, 0x85, 0x02, 0xba, 0xff, 0xc3, 0x02, 0xbc, 0xff, 0xc3, - 0x02, 0xbd, 0xff, 0x85, 0x02, 0xc0, 0xff, 0xc3, 0x02, 0xc2, 0xff, 0xc3, - 0x02, 0xc4, 0xff, 0xc3, 0x02, 0xc5, 0xff, 0xae, 0x02, 0xc6, 0xff, 0x71, - 0x02, 0xc7, 0xff, 0xae, 0x02, 0xcb, 0xff, 0xc3, 0x02, 0xce, 0xff, 0x85, - 0x02, 0xcf, 0xff, 0x5c, 0x02, 0xd1, 0xff, 0xc3, 0x02, 0xd3, 0xff, 0xc3, - 0x02, 0xd5, 0xff, 0xc3, 0x02, 0xd7, 0xff, 0xc3, 0x02, 0xd9, 0xff, 0x85, - 0x02, 0xda, 0xff, 0x85, 0x02, 0xdb, 0xff, 0x85, 0x02, 0xdc, 0xff, 0x85, - 0x02, 0xdd, 0xff, 0x85, 0x02, 0xe0, 0xff, 0x85, 0x02, 0xe1, 0xff, 0xd7, - 0x02, 0xe3, 0xff, 0xd7, 0x02, 0xe6, 0xff, 0xc3, 0x02, 0xec, 0xff, 0xc3, - 0x02, 0xee, 0xff, 0xc3, 0x02, 0xef, 0xff, 0xd7, 0x02, 0xf0, 0xff, 0x85, - 0x02, 0xf1, 0xff, 0xd7, 0x02, 0xf2, 0xff, 0x85, 0x02, 0xf3, 0xff, 0xd7, - 0x02, 0xf4, 0xff, 0x85, 0x02, 0xf8, 0xff, 0xc3, 0x02, 0xfa, 0xff, 0xc3, - 0x02, 0xfc, 0xff, 0xc3, 0x02, 0xfe, 0xff, 0xc3, 0x03, 0x00, 0xff, 0xc3, - 0x03, 0x06, 0xff, 0xc3, 0x03, 0x08, 0xff, 0xc3, 0x03, 0x09, 0xff, 0x5c, - 0x03, 0x0a, 0xff, 0x85, 0x03, 0x0b, 0xff, 0x5c, 0x03, 0x0c, 0xff, 0x85, - 0x03, 0x0e, 0xff, 0xc3, 0x03, 0x10, 0xff, 0xc3, 0x03, 0x11, 0xff, 0x85, - 0x03, 0x12, 0xff, 0x5c, 0x03, 0x14, 0xff, 0xc3, 0x03, 0x15, 0xff, 0xd7, - 0x03, 0x16, 0xff, 0x85, 0x03, 0x17, 0xff, 0x85, 0x03, 0x18, 0xff, 0xc3, - 0x03, 0x19, 0xff, 0xd7, 0x03, 0x1a, 0xff, 0x85, 0x03, 0x1b, 0xff, 0x85, - 0x03, 0x1c, 0xff, 0x5c, 0x03, 0x49, 0xff, 0xec, 0x03, 0x4b, 0xff, 0xec, - 0x03, 0x4d, 0xff, 0xec, 0x03, 0x4f, 0xff, 0xec, 0x03, 0x51, 0xff, 0xec, - 0x03, 0x53, 0xff, 0xec, 0x03, 0x55, 0xff, 0xec, 0x03, 0x57, 0xff, 0xec, - 0x03, 0x59, 0xff, 0xec, 0x03, 0x5b, 0xff, 0xec, 0x03, 0x5d, 0xff, 0xec, - 0x03, 0x5f, 0xff, 0xec, 0x03, 0x61, 0xff, 0xec, 0x03, 0x63, 0xff, 0xec, - 0x03, 0x65, 0xff, 0xec, 0x03, 0x67, 0xff, 0xec, 0x03, 0x69, 0xff, 0xec, - 0x03, 0x6b, 0xff, 0xec, 0x03, 0x6d, 0xff, 0xec, 0x03, 0x6f, 0xff, 0x9a, - 0x03, 0x71, 0xff, 0x9a, 0x03, 0x73, 0xff, 0x9a, 0x00, 0x03, 0x00, 0x37, - 0xff, 0x9a, 0x01, 0x71, 0xff, 0x9a, 0x01, 0x72, 0xff, 0xc3, 0x00, 0xc3, - 0x00, 0x24, 0xff, 0xae, 0x00, 0x2c, 0x00, 0x29, 0x00, 0x37, 0x00, 0x52, - 0x00, 0x39, 0x00, 0x52, 0x00, 0x3a, 0x00, 0x66, 0x00, 0x3b, 0x00, 0x29, - 0x00, 0x3c, 0x00, 0x52, 0x00, 0x3d, 0x00, 0x29, 0x00, 0x46, 0xff, 0xc3, - 0x00, 0x47, 0xff, 0xc3, 0x00, 0x48, 0xff, 0xc3, 0x00, 0x4a, 0xff, 0xd7, - 0x00, 0x52, 0xff, 0xc3, 0x00, 0x54, 0xff, 0xc3, 0x00, 0x57, 0x00, 0x29, - 0x00, 0x59, 0x00, 0x29, 0x00, 0x5a, 0x00, 0x14, 0x00, 0x82, 0xff, 0xae, - 0x00, 0x83, 0xff, 0xae, 0x00, 0x84, 0xff, 0xae, 0x00, 0x85, 0xff, 0xae, - 0x00, 0x86, 0xff, 0xae, 0x00, 0x87, 0xff, 0xae, 0x00, 0x88, 0xff, 0x5c, - 0x00, 0x8e, 0x00, 0x29, 0x00, 0x8f, 0x00, 0x29, 0x00, 0x90, 0x00, 0x29, - 0x00, 0x91, 0x00, 0x29, 0x00, 0x9f, 0x00, 0x52, 0x00, 0xa8, 0xff, 0xc3, - 0x00, 0xa9, 0xff, 0xc3, 0x00, 0xaa, 0xff, 0xc3, 0x00, 0xab, 0xff, 0xc3, - 0x00, 0xac, 0xff, 0xc3, 0x00, 0xad, 0xff, 0xc3, 0x00, 0xb4, 0xff, 0xc3, - 0x00, 0xb5, 0xff, 0xc3, 0x00, 0xb6, 0xff, 0xc3, 0x00, 0xb7, 0xff, 0xc3, - 0x00, 0xb8, 0xff, 0xc3, 0x00, 0xba, 0xff, 0xc3, 0x00, 0xc2, 0xff, 0xae, - 0x00, 0xc4, 0xff, 0xae, 0x00, 0xc6, 0xff, 0xae, 0x00, 0xc9, 0xff, 0xc3, - 0x00, 0xcb, 0xff, 0xc3, 0x00, 0xcd, 0xff, 0xc3, 0x00, 0xcf, 0xff, 0xc3, - 0x00, 0xd5, 0xff, 0xc3, 0x00, 0xd7, 0xff, 0xc3, 0x00, 0xd9, 0xff, 0xc3, - 0x00, 0xdb, 0xff, 0xc3, 0x00, 0xdd, 0xff, 0xc3, 0x00, 0xec, 0x00, 0x29, - 0x00, 0xf0, 0x00, 0x29, 0x00, 0xf2, 0x00, 0x29, 0x01, 0x0f, 0xff, 0xc3, - 0x01, 0x11, 0xff, 0xc3, 0x01, 0x13, 0xff, 0xc3, 0x01, 0x15, 0xff, 0xc3, - 0x01, 0x24, 0x00, 0x52, 0x01, 0x26, 0x00, 0x52, 0x01, 0x36, 0x00, 0x66, - 0x01, 0x37, 0x00, 0x14, 0x01, 0x38, 0x00, 0x52, 0x01, 0x3a, 0x00, 0x52, - 0x01, 0x3b, 0x00, 0x29, 0x01, 0x3d, 0x00, 0x29, 0x01, 0x3f, 0x00, 0x29, - 0x01, 0x43, 0xff, 0xae, 0x01, 0x5f, 0xff, 0xae, 0x01, 0x69, 0xff, 0xae, - 0x01, 0x71, 0x00, 0x52, 0x01, 0x79, 0xff, 0xc3, 0x01, 0x7e, 0xff, 0xc3, - 0x01, 0x82, 0xff, 0xc3, 0x01, 0x8a, 0x00, 0x29, 0x01, 0x8c, 0xff, 0xc3, - 0x01, 0x8e, 0xff, 0xc3, 0x01, 0x90, 0xff, 0xc3, 0x01, 0x91, 0x00, 0x29, - 0x01, 0x93, 0xff, 0xc3, 0x01, 0x94, 0x00, 0x29, 0x01, 0x96, 0xff, 0xc3, - 0x01, 0x99, 0xff, 0xc3, 0x01, 0x9b, 0xff, 0xc3, 0x01, 0x9d, 0x00, 0x52, - 0x01, 0xa4, 0xff, 0x9a, 0x01, 0xa6, 0x00, 0x52, 0x01, 0xa8, 0x00, 0x3d, - 0x01, 0xaa, 0xff, 0xae, 0x01, 0xae, 0xff, 0x85, 0x01, 0xb0, 0x00, 0x3d, - 0x01, 0xb1, 0x00, 0x14, 0x01, 0xb5, 0xff, 0x85, 0x01, 0xbc, 0x00, 0x52, - 0x01, 0xbd, 0x00, 0x3d, 0x01, 0xbf, 0x00, 0x29, 0x01, 0xc4, 0x00, 0x52, - 0x01, 0xcf, 0xff, 0xc3, 0x01, 0xd8, 0xff, 0xc3, 0x01, 0xdb, 0xff, 0xc3, - 0x01, 0xdc, 0x00, 0x29, 0x01, 0xde, 0xff, 0xc3, 0x01, 0xea, 0xff, 0xc3, - 0x01, 0xed, 0xff, 0xc3, 0x01, 0xfa, 0x00, 0x66, 0x01, 0xfb, 0x00, 0x14, - 0x01, 0xfc, 0x00, 0x66, 0x01, 0xfd, 0x00, 0x14, 0x01, 0xfe, 0x00, 0x66, - 0x01, 0xff, 0x00, 0x14, 0x02, 0x00, 0x00, 0x52, 0x02, 0x28, 0xff, 0xae, - 0x02, 0x58, 0xff, 0xae, 0x02, 0x60, 0xff, 0xc3, 0x02, 0x6a, 0xff, 0xc3, - 0x02, 0x72, 0xff, 0xae, 0x02, 0x76, 0x00, 0x3d, 0x02, 0x7f, 0xff, 0xc3, - 0x02, 0x85, 0xff, 0xc3, 0x02, 0x87, 0xff, 0xc3, 0x02, 0x89, 0xff, 0xc3, - 0x02, 0x8d, 0xff, 0xc3, 0x02, 0x9f, 0x00, 0x3d, 0x02, 0xa9, 0x00, 0x52, - 0x02, 0xaa, 0x00, 0x29, 0x02, 0xb2, 0xff, 0xc3, 0x02, 0xb4, 0xff, 0xc3, - 0x02, 0xb5, 0x00, 0x52, 0x02, 0xb6, 0x00, 0x29, 0x02, 0xb7, 0x00, 0x52, - 0x02, 0xb9, 0x00, 0x52, 0x02, 0xbb, 0x00, 0x3d, 0x02, 0xbd, 0x00, 0x52, - 0x02, 0xca, 0x00, 0x3d, 0x02, 0xce, 0xff, 0x85, 0x02, 0xd9, 0xff, 0xae, - 0x02, 0xdb, 0xff, 0xae, 0x02, 0xdd, 0xff, 0xae, 0x02, 0xe0, 0xff, 0xc3, - 0x02, 0xe5, 0x00, 0x3d, 0x02, 0xf0, 0xff, 0xc3, 0x02, 0xf2, 0xff, 0xc3, - 0x02, 0xf4, 0xff, 0xc3, 0x02, 0xf7, 0x00, 0x3d, 0x02, 0xf9, 0x00, 0x3d, - 0x02, 0xfb, 0x00, 0x3d, 0x03, 0x05, 0x00, 0x3d, 0x03, 0x07, 0x00, 0x3d, - 0x03, 0x0a, 0xff, 0xc3, 0x03, 0x0c, 0xff, 0xc3, 0x03, 0x11, 0xff, 0x85, - 0x03, 0x16, 0xff, 0xc3, 0x03, 0x17, 0x00, 0x52, 0x03, 0x18, 0x00, 0x29, - 0x03, 0x1a, 0xff, 0xc3, 0x03, 0x1b, 0xff, 0x85, 0x03, 0x1d, 0xff, 0xae, - 0x03, 0x1f, 0xff, 0xae, 0x03, 0x21, 0xff, 0xae, 0x03, 0x23, 0xff, 0xae, - 0x03, 0x25, 0xff, 0xae, 0x03, 0x27, 0xff, 0xae, 0x03, 0x29, 0xff, 0xae, - 0x03, 0x2b, 0xff, 0xae, 0x03, 0x2d, 0xff, 0xae, 0x03, 0x2f, 0xff, 0xae, - 0x03, 0x31, 0xff, 0xae, 0x03, 0x33, 0xff, 0xae, 0x03, 0x36, 0xff, 0xc3, - 0x03, 0x38, 0xff, 0xc3, 0x03, 0x3a, 0xff, 0xc3, 0x03, 0x3c, 0xff, 0xc3, - 0x03, 0x3e, 0xff, 0xc3, 0x03, 0x40, 0xff, 0xc3, 0x03, 0x42, 0xff, 0xc3, - 0x03, 0x44, 0xff, 0xc3, 0x03, 0x45, 0x00, 0x29, 0x03, 0x47, 0x00, 0x29, - 0x03, 0x4a, 0xff, 0xc3, 0x03, 0x4c, 0xff, 0xc3, 0x03, 0x4e, 0xff, 0xc3, - 0x03, 0x50, 0xff, 0xc3, 0x03, 0x52, 0xff, 0xc3, 0x03, 0x54, 0xff, 0xc3, - 0x03, 0x56, 0xff, 0xc3, 0x03, 0x58, 0xff, 0xc3, 0x03, 0x5a, 0xff, 0xc3, - 0x03, 0x5c, 0xff, 0xc3, 0x03, 0x5e, 0xff, 0xc3, 0x03, 0x60, 0xff, 0xc3, - 0x03, 0x6f, 0x00, 0x52, 0x03, 0x71, 0x00, 0x52, 0x03, 0x73, 0x00, 0x52, - 0x00, 0x10, 0x00, 0x45, 0x00, 0x3d, 0x00, 0x49, 0x00, 0x66, 0x00, 0x4b, - 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x3d, 0x00, 0x4e, - 0x00, 0x3d, 0x00, 0x4f, 0x00, 0x3d, 0x00, 0x57, 0x00, 0x66, 0x00, 0x59, - 0x00, 0x66, 0x00, 0x5a, 0x00, 0x66, 0x00, 0x5b, 0x00, 0x29, 0x00, 0x5c, - 0x00, 0x66, 0x00, 0x5d, 0x00, 0x29, 0x03, 0x70, 0x00, 0x66, 0x03, 0x72, - 0x00, 0x66, 0x03, 0x74, 0x00, 0x66, 0x00, 0x10, 0x00, 0x45, 0x00, 0x3d, - 0x00, 0x49, 0x00, 0x66, 0x00, 0x4b, 0x00, 0x3d, 0x00, 0x4c, 0x00, 0x3d, - 0x00, 0x4d, 0x00, 0x3d, 0x00, 0x4e, 0x00, 0x3d, 0x00, 0x4f, 0x00, 0x3d, - 0x00, 0x57, 0x00, 0x66, 0x00, 0x59, 0x00, 0x66, 0x00, 0x5a, 0x00, 0x52, - 0x00, 0x5b, 0x00, 0x29, 0x00, 0x5c, 0x00, 0x66, 0x00, 0x5d, 0x00, 0x14, - 0x03, 0x70, 0x00, 0x66, 0x03, 0x72, 0x00, 0x66, 0x03, 0x74, 0x00, 0x66, - 0x00, 0x02, 0x03, 0x09, 0xff, 0x85, 0x03, 0x0b, 0xff, 0x85, 0x00, 0x02, - 0x00, 0x96, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x0b, - 0x00, 0x01, 0x00, 0x0f, 0x00, 0x11, 0x00, 0x03, 0x00, 0x24, 0x00, 0x27, - 0x00, 0x06, 0x00, 0x29, 0x00, 0x29, 0x00, 0x0a, 0x00, 0x2c, 0x00, 0x2c, - 0x00, 0x0b, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x0c, 0x00, 0x32, 0x00, 0x35, - 0x00, 0x0e, 0x00, 0x37, 0x00, 0x3e, 0x00, 0x12, 0x00, 0x44, 0x00, 0x46, - 0x00, 0x1a, 0x00, 0x48, 0x00, 0x4b, 0x00, 0x1d, 0x00, 0x4e, 0x00, 0x4e, - 0x00, 0x21, 0x00, 0x50, 0x00, 0x52, 0x00, 0x22, 0x00, 0x55, 0x00, 0x57, - 0x00, 0x25, 0x00, 0x59, 0x00, 0x5e, 0x00, 0x28, 0x00, 0x6d, 0x00, 0x6d, - 0x00, 0x2e, 0x00, 0x7d, 0x00, 0x7d, 0x00, 0x2f, 0x00, 0x82, 0x00, 0x87, - 0x00, 0x30, 0x00, 0x89, 0x00, 0x92, 0x00, 0x36, 0x00, 0x94, 0x00, 0x98, - 0x00, 0x40, 0x00, 0x9a, 0x00, 0x9f, 0x00, 0x45, 0x00, 0xa2, 0x00, 0xad, - 0x00, 0x4b, 0x00, 0xb3, 0x00, 0xb8, 0x00, 0x57, 0x00, 0xba, 0x00, 0xbf, - 0x00, 0x5d, 0x00, 0xc1, 0x00, 0xc9, 0x00, 0x63, 0x00, 0xcb, 0x00, 0xcb, - 0x00, 0x6c, 0x00, 0xcd, 0x00, 0xcf, 0x00, 0x6d, 0x00, 0xd1, 0x00, 0xd1, - 0x00, 0x70, 0x00, 0xd5, 0x00, 0xd5, 0x00, 0x71, 0x00, 0xd7, 0x00, 0xd7, - 0x00, 0x72, 0x00, 0xd9, 0x00, 0xdb, 0x00, 0x73, 0x00, 0xdd, 0x00, 0xdd, - 0x00, 0x76, 0x00, 0xec, 0x00, 0xec, 0x00, 0x77, 0x00, 0xf0, 0x00, 0xf0, - 0x00, 0x78, 0x00, 0xf2, 0x00, 0xf2, 0x00, 0x79, 0x00, 0xf8, 0x00, 0xf8, - 0x00, 0x7a, 0x00, 0xfa, 0x00, 0xfb, 0x00, 0x7b, 0x00, 0xfd, 0x00, 0xfd, - 0x00, 0x7d, 0x00, 0xff, 0x01, 0x01, 0x00, 0x7e, 0x01, 0x03, 0x01, 0x03, - 0x00, 0x81, 0x01, 0x06, 0x01, 0x06, 0x00, 0x82, 0x01, 0x08, 0x01, 0x08, - 0x00, 0x83, 0x01, 0x0a, 0x01, 0x0a, 0x00, 0x84, 0x01, 0x0e, 0x01, 0x0f, - 0x00, 0x85, 0x01, 0x11, 0x01, 0x13, 0x00, 0x87, 0x01, 0x15, 0x01, 0x15, - 0x00, 0x8a, 0x01, 0x1d, 0x01, 0x1d, 0x00, 0x8b, 0x01, 0x1f, 0x01, 0x1f, - 0x00, 0x8c, 0x01, 0x21, 0x01, 0x24, 0x00, 0x8d, 0x01, 0x26, 0x01, 0x27, - 0x00, 0x91, 0x01, 0x2c, 0x01, 0x2c, 0x00, 0x93, 0x01, 0x30, 0x01, 0x30, - 0x00, 0x94, 0x01, 0x32, 0x01, 0x32, 0x00, 0x95, 0x01, 0x34, 0x01, 0x34, - 0x00, 0x96, 0x01, 0x36, 0x01, 0x3b, 0x00, 0x97, 0x01, 0x3d, 0x01, 0x3d, - 0x00, 0x9d, 0x01, 0x3f, 0x01, 0x40, 0x00, 0x9e, 0x01, 0x43, 0x01, 0x44, - 0x00, 0xa0, 0x01, 0x4a, 0x01, 0x4a, 0x00, 0xa2, 0x01, 0x56, 0x01, 0x56, - 0x00, 0xa3, 0x01, 0x5a, 0x01, 0x62, 0x00, 0xa4, 0x01, 0x64, 0x01, 0x64, - 0x00, 0xad, 0x01, 0x66, 0x01, 0x69, 0x00, 0xae, 0x01, 0x6c, 0x01, 0x6d, - 0x00, 0xb2, 0x01, 0x6f, 0x01, 0x7c, 0x00, 0xb4, 0x01, 0x7e, 0x01, 0x84, - 0x00, 0xc2, 0x01, 0x86, 0x01, 0x88, 0x00, 0xc9, 0x01, 0x8a, 0x01, 0x8e, - 0x00, 0xcc, 0x01, 0x90, 0x01, 0x91, 0x00, 0xd1, 0x01, 0x93, 0x01, 0x97, - 0x00, 0xd3, 0x01, 0x99, 0x01, 0x99, 0x00, 0xd8, 0x01, 0x9b, 0x01, 0xa2, - 0x00, 0xd9, 0x01, 0xa4, 0x01, 0xa8, 0x00, 0xe1, 0x01, 0xaa, 0x01, 0xae, - 0x00, 0xe6, 0x01, 0xb0, 0x01, 0xb1, 0x00, 0xeb, 0x01, 0xb4, 0x01, 0xb4, - 0x00, 0xed, 0x01, 0xb8, 0x01, 0xb8, 0x00, 0xee, 0x01, 0xba, 0x01, 0xc0, - 0x00, 0xef, 0x01, 0xc3, 0x01, 0xc4, 0x00, 0xf6, 0x01, 0xc6, 0x01, 0xc8, - 0x00, 0xf8, 0x01, 0xca, 0x01, 0xd1, 0x00, 0xfb, 0x01, 0xd4, 0x01, 0xd4, - 0x01, 0x03, 0x01, 0xd8, 0x01, 0xd8, 0x01, 0x04, 0x01, 0xda, 0x01, 0xe0, - 0x01, 0x05, 0x01, 0xe3, 0x01, 0xea, 0x01, 0x0c, 0x01, 0xec, 0x01, 0xee, - 0x01, 0x14, 0x01, 0xf0, 0x01, 0xf0, 0x01, 0x17, 0x01, 0xf2, 0x01, 0xf6, - 0x01, 0x18, 0x01, 0xf8, 0x02, 0x03, 0x01, 0x1d, 0x02, 0x06, 0x02, 0x06, - 0x01, 0x29, 0x02, 0x0a, 0x02, 0x0a, 0x01, 0x2a, 0x02, 0x28, 0x02, 0x28, - 0x01, 0x2b, 0x02, 0x58, 0x02, 0x58, 0x01, 0x2c, 0x02, 0x60, 0x02, 0x60, - 0x01, 0x2d, 0x02, 0x62, 0x02, 0x62, 0x01, 0x2e, 0x02, 0x6a, 0x02, 0x6a, - 0x01, 0x2f, 0x02, 0x6c, 0x02, 0x72, 0x01, 0x30, 0x02, 0x74, 0x02, 0x74, - 0x01, 0x37, 0x02, 0x76, 0x02, 0x7c, 0x01, 0x38, 0x02, 0x7e, 0x02, 0x8c, - 0x01, 0x3f, 0x02, 0x95, 0x02, 0x9d, 0x01, 0x4e, 0x02, 0x9f, 0x02, 0xa0, - 0x01, 0x57, 0x02, 0xa2, 0x02, 0xaf, 0x01, 0x59, 0x02, 0xb1, 0x02, 0xc0, - 0x01, 0x67, 0x02, 0xc3, 0x02, 0xc3, 0x01, 0x77, 0x02, 0xc5, 0x02, 0xc5, - 0x01, 0x78, 0x02, 0xc7, 0x02, 0xc7, 0x01, 0x79, 0x02, 0xc9, 0x02, 0xcc, - 0x01, 0x7a, 0x02, 0xce, 0x02, 0xcf, 0x01, 0x7e, 0x02, 0xd2, 0x02, 0xd3, - 0x01, 0x80, 0x02, 0xd6, 0x02, 0xd9, 0x01, 0x82, 0x02, 0xdb, 0x02, 0xdb, - 0x01, 0x86, 0x02, 0xde, 0x02, 0xde, 0x01, 0x87, 0x02, 0xe0, 0x02, 0xe9, - 0x01, 0x88, 0x02, 0xef, 0x02, 0xfc, 0x01, 0x92, 0x02, 0xff, 0x03, 0x00, - 0x01, 0xa0, 0x03, 0x03, 0x03, 0x08, 0x01, 0xa2, 0x03, 0x0b, 0x03, 0x1d, - 0x01, 0xa8, 0x03, 0x1f, 0x03, 0x1f, 0x01, 0xbb, 0x03, 0x21, 0x03, 0x21, - 0x01, 0xbc, 0x03, 0x23, 0x03, 0x23, 0x01, 0xbd, 0x03, 0x25, 0x03, 0x25, - 0x01, 0xbe, 0x03, 0x27, 0x03, 0x27, 0x01, 0xbf, 0x03, 0x29, 0x03, 0x29, - 0x01, 0xc0, 0x03, 0x2b, 0x03, 0x2b, 0x01, 0xc1, 0x03, 0x2d, 0x03, 0x2d, - 0x01, 0xc2, 0x03, 0x2f, 0x03, 0x2f, 0x01, 0xc3, 0x03, 0x31, 0x03, 0x31, - 0x01, 0xc4, 0x03, 0x33, 0x03, 0x33, 0x01, 0xc5, 0x03, 0x36, 0x03, 0x36, - 0x01, 0xc6, 0x03, 0x38, 0x03, 0x38, 0x01, 0xc7, 0x03, 0x3a, 0x03, 0x3a, - 0x01, 0xc8, 0x03, 0x3c, 0x03, 0x3c, 0x01, 0xc9, 0x03, 0x3e, 0x03, 0x3e, - 0x01, 0xca, 0x03, 0x40, 0x03, 0x40, 0x01, 0xcb, 0x03, 0x42, 0x03, 0x42, - 0x01, 0xcc, 0x03, 0x44, 0x03, 0x45, 0x01, 0xcd, 0x03, 0x47, 0x03, 0x47, - 0x01, 0xcf, 0x03, 0x49, 0x03, 0x56, 0x01, 0xd0, 0x03, 0x58, 0x03, 0x58, - 0x01, 0xde, 0x03, 0x5a, 0x03, 0x5a, 0x01, 0xdf, 0x03, 0x5c, 0x03, 0x5c, - 0x01, 0xe0, 0x03, 0x5e, 0x03, 0x5e, 0x01, 0xe1, 0x03, 0x60, 0x03, 0x61, - 0x01, 0xe2, 0x03, 0x63, 0x03, 0x63, 0x01, 0xe4, 0x03, 0x66, 0x03, 0x66, - 0x01, 0xe5, 0x03, 0x68, 0x03, 0x68, 0x01, 0xe6, 0x03, 0x6a, 0x03, 0x6a, - 0x01, 0xe7, 0x03, 0x6c, 0x03, 0x6c, 0x01, 0xe8, 0x03, 0x6e, 0x03, 0x74, - 0x01, 0xe9, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x1c, - 0x00, 0x1e, 0x00, 0x01, 0x6c, 0x61, 0x74, 0x6e, 0x00, 0x08, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -}; - -SDL_RWops *TTF_RW_droid_sans_normal() -{ - return SDL_RWFromConstMem(TTF_droid_sans_normal, sizeof(TTF_droid_sans_normal)); -} - diff --git a/phobia/gp/async.c b/phobia/gp/async.c deleted file mode 100644 index 2070400..0000000 --- a/phobia/gp/async.c +++ /dev/null @@ -1,266 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include - -#include - -#include "async.h" -#include "plot.h" - -static int -async_READ(async_FILE *afd) -{ - int rp, wp, nw, r; - - wp = SDL_AtomicGet(&afd->wp); - - do { - rp = SDL_AtomicGet(&afd->rp); - - nw = rp - (wp + 1); - nw += (nw < 0) ? afd->preload : 0; - - if (nw >= afd->chunk) { - - nw = afd->preload - wp; - nw = (nw > afd->chunk) ? afd->chunk : nw; - - r = fread(afd->stream + wp, 1, nw, afd->fd); - - if (r != 0) { - - wp += r; - wp -= (wp >= afd->preload) ? afd->preload : 0; - - SDL_AtomicSet(&afd->wp, wp); - - afd->waiting = 0; - } - - if (r != nw) { - - if (feof(afd->fd) || ferror(afd->fd)) { - - if (afd->waiting < afd->timeout) { - - clearerr(afd->fd); - - SDL_Delay(10); - - afd->waiting += 10; - } - else { - break; - } - } - } - } - else { - SDL_Delay(1); - } - } - while (SDL_AtomicGet(&afd->flag_break) == 0); - - SDL_AtomicSet(&afd->flag_eof, 1); - - return 0; -} - -async_FILE *async_open(FILE *fd, int preload, int chunk, int timeout) -{ - async_FILE *afd; - - afd = calloc(1, sizeof(async_FILE)); - - afd->preload = preload; - afd->chunk = chunk; - afd->timeout = timeout; - - afd->stream = (char *) malloc(afd->preload); - - if (afd->stream == NULL) { - - ERROR("No memory allocated for async preload\n"); - return NULL; - } - - afd->fd = fd; - afd->thread = SDL_CreateThread((int (*) (void *)) &async_READ, "async_READ", afd); - - return afd; -} - -void async_close(async_FILE *afd) -{ - int t = 0; - - SDL_AtomicSet(&afd->flag_break, 1); - SDL_DetachThread(afd->thread); - - do { - SDL_Delay(10); - - if (SDL_AtomicGet(&afd->flag_eof) != 0) { - - free(afd->stream); - free(afd); - - break; - } - - t += 1; - - if (t >= 200) { - - ERROR("Unable to terminate async_READ (memory leak)\n"); - break; - } - } - while (1); -} - -int async_read(async_FILE *afd, char *sbuf, int n) -{ - int rp, wp, nr; - - rp = SDL_AtomicGet(&afd->rp); - wp = SDL_AtomicGet(&afd->wp); - - nr = wp - rp; - nr += (nr < 0) ? afd->preload : 0; - - if (nr >= n) { - - if (rp + n >= afd->preload) { - - nr = afd->preload - rp; - - memcpy(sbuf, afd->stream + rp, nr); - memcpy(sbuf + nr, afd->stream, n - nr); - - rp += n - afd->preload; - } - else { - memcpy(sbuf, afd->stream + rp, n); - - rp += n; - } - - SDL_AtomicSet(&afd->rp, rp); - - return ASYNC_OK; - } - else if (SDL_AtomicGet(&afd->flag_eof) != 0) { - - return ASYNC_END_OF_FILE; - } - else { - return ASYNC_NO_DATA_READY; - } -} - -int async_gets(async_FILE *afd, char *sbuf, int n) -{ - int rp, wp, eol, nq; - char c; - - rp = SDL_AtomicGet(&afd->rp); - wp = SDL_AtomicGet(&afd->wp); - - if (wp != afd->cached) { - - eol = 0; - nq = 0; - - do { - if (rp == wp) - break; - - c = (int) afd->stream[rp]; - - if (c == '\r' || c == '\n') { - - eol = (nq > 0) ? 1 : 0; - } - else if (eol == 1) { - - break; - } - else if (nq < n - 1) { - - *sbuf++ = (char) c; - nq++; - } - - rp = (rp < afd->preload - 1) ? rp + 1 : 0; - } - while (1); - - afd->cached = rp; - - if (eol != 0) { - - *sbuf = 0; - - SDL_AtomicSet(&afd->rp, rp); - - return ASYNC_OK; - } - - return ASYNC_NO_DATA_READY; - } - else if (SDL_AtomicGet(&afd->flag_eof) != 0) { - - if (rp != wp) { - - nq = 0; - - do { - if (rp == wp) - break; - - c = (int) afd->stream[rp]; - - if (nq < n - 1) { - - *sbuf++ = (char) c; - nq++; - } - - rp = (rp < afd->preload - 1) ? rp + 1 : 0; - } - while (1); - - *sbuf = 0; - - SDL_AtomicSet(&afd->rp, rp); - - return ASYNC_OK; - } - - return ASYNC_END_OF_FILE; - } - else { - return ASYNC_NO_DATA_READY; - } -} - diff --git a/phobia/gp/async.h b/phobia/gp/async.h deleted file mode 100644 index 142b929..0000000 --- a/phobia/gp/async.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_ASYNC_ -#define _H_ASYNC_ - -#include -#include - -#include - -enum { - ASYNC_OK = 0, - ASYNC_NO_DATA_READY, - ASYNC_END_OF_FILE -}; - -typedef struct { - - FILE *fd; - SDL_Thread *thread; - - int preload; - int chunk; - int timeout; - int cached; - int waiting; - - char *stream; - SDL_atomic_t rp; - SDL_atomic_t wp; - - SDL_atomic_t flag_eof; - SDL_atomic_t flag_break; -} -async_FILE; - -async_FILE *async_open(FILE *fd, int preload, int chunk, int timeout); -void async_close(async_FILE *afd); - -int async_read(async_FILE *afd, char *sbuf, int n); -int async_gets(async_FILE *afd, char *sbuf, int n); - -#endif /* _H_ASYNC_ */ - diff --git a/phobia/gp/dirent.c b/phobia/gp/dirent.c deleted file mode 100644 index 3b5e68b..0000000 --- a/phobia/gp/dirent.c +++ /dev/null @@ -1,316 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include - -#include "dirent.h" - -#ifdef _WINDOWS -#include - -struct dirent_priv { - - wchar_t wpath[DIRENT_PATH_MAX]; - - HANDLE hDIR; - WIN32_FIND_DATAW fDATA; - - int first; -}; - -int dirent_open(struct dirent_stat *sb, const char *path) -{ - struct dirent_priv *p; - - if (sb->priv != NULL) { - - memset(sb->priv, 0, sizeof(struct dirent_priv)); - } - else { - sb->priv = calloc(1, sizeof(struct dirent_priv)); - } - - p = sb->priv; - - MultiByteToWideChar(CP_UTF8, 0, path, -1, p->wpath, DIRENT_PATH_MAX); - - wcscat(p->wpath, L"/*"); - - p->hDIR = FindFirstFileW(p->wpath, &p->fDATA); - - if (p->hDIR == INVALID_HANDLE_VALUE) - return ENT_ERROR_UNKNOWN; - - p->first = 1; - - return ENT_OK; -} - -int dirent_rewind(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - if (p == NULL) - return ENT_ERROR_UNKNOWN; - - FindClose(p->hDIR); - - p->hDIR = FindFirstFileW(p->wpath, &p->fDATA); - - if (p->hDIR == INVALID_HANDLE_VALUE) - return ENT_ERROR_UNKNOWN; - - p->first = 1; - - return ENT_OK; -} - -int dirent_read(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - SYSTEMTIME tUTC, tLOC; - - union { - unsigned long long l; - unsigned int w[2]; - } - len; - - if (p == NULL) - return ENT_ERROR_UNKNOWN; - - if (p->first == 0) { - - if (FindNextFileW(p->hDIR, &p->fDATA) == 0) - return ENT_END_OF_DIR; - } - else { - p->first = 0; - } - - if (p->fDATA.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { - - sb->ntype = ENT_TYPE_DIRECTORY; - } - else { - sb->ntype = ENT_TYPE_REGULAR; - } - - len.w[1] = p->fDATA.nFileSizeHigh; - len.w[0] = p->fDATA.nFileSizeLow; - - sb->nsize = len.l; - - WideCharToMultiByte(CP_UTF8, 0, p->fDATA.cFileName, -1, - sb->name, DIRENT_PATH_MAX, NULL, NULL); - - FileTimeToSystemTime(&p->fDATA.ftLastWriteTime, &tUTC); - SystemTimeToTzSpecificLocalTime(NULL, &tUTC, &tLOC); - - sprintf(sb->time, "%04d-%02d-%02d %02d:%02d", - tLOC.wYear, tLOC.wMonth, tLOC.wDay, - tLOC.wHour, tLOC.wMinute); - - return ENT_OK; -} - -void dirent_close(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - if (p != NULL) { - - FindClose(p->hDIR); - } -} - -int file_stat(const char *file, unsigned long long *nsize) -{ - wchar_t wfile[DIRENT_PATH_MAX]; - HANDLE hFile; - LARGE_INTEGER nSize = { 0 } ; - BOOL bSize; - - MultiByteToWideChar(CP_UTF8, 0, file, -1, wfile, DIRENT_PATH_MAX); - - hFile = CreateFileW(wfile, 0, 0, NULL, OPEN_EXISTING, 0, NULL); - - if (hFile == INVALID_HANDLE_VALUE) { - - return ENT_ERROR_UNKNOWN; - } - - bSize = GetFileSizeEx(hFile, &nSize); - - CloseHandle(hFile); - - if (bSize == 0) { - - return ENT_ERROR_UNKNOWN; - } - - *nsize = nSize.QuadPart; - - return ENT_OK; -} - -int file_remove(const char *file) -{ - wchar_t wfile[DIRENT_PATH_MAX]; - - MultiByteToWideChar(CP_UTF8, 0, file, -1, wfile, DIRENT_PATH_MAX); - - return (DeleteFileW(wfile) != 0) ? ENT_OK : ENT_ERROR_UNKNOWN; -} - -#else /* _WINDOWS */ -#include -#include -#include -#include -#include - -struct dirent_priv { - - char path[DIRENT_PATH_MAX]; - int len; - - DIR *dir; - struct stat sb; -}; - -int dirent_open(struct dirent_stat *sb, const char *path) -{ - struct dirent_priv *p; - - if (sb->priv != NULL) { - - memset(sb->priv, 0, sizeof(struct dirent_priv)); - } - else { - sb->priv = calloc(1, sizeof(struct dirent_priv)); - } - - p = sb->priv; - - p->dir = opendir(path); - - if (p->dir == NULL) - return ENT_ERROR_UNKNOWN; - - strcpy(p->path, path); - p->len = strlen(p->path); - - return ENT_OK; -} - -int dirent_rewind(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - if (p == NULL) - return ENT_ERROR_UNKNOWN; - - rewinddir(p->dir); - - return ENT_OK; -} - -int dirent_read(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - struct dirent *en; - struct tm *loc; - - if (p == NULL) - return ENT_ERROR_UNKNOWN; - - en = readdir(p->dir); - - if (en == NULL) - return ENT_ERROR_UNKNOWN; - - p->path[p->len] = 0; - - strcat(p->path, DIRSEP); - strcat(p->path, en->d_name); - - if (stat(p->path, &p->sb) == 0) { - - if (p->sb.st_mode & S_IFDIR) { - - sb->ntype = ENT_TYPE_DIRECTORY; - } - else { - sb->ntype = ENT_TYPE_REGULAR; - } - - sb->nsize = p->sb.st_size; - - loc = localtime(&p->sb.st_mtime); - - sprintf(sb->time, "%04d-%02d-%02d %02d:%02d", - loc->tm_year + 1900, loc->tm_mon + 1, loc->tm_mday, - loc->tm_hour, loc->tm_min); - - strcpy(sb->name, en->d_name); - - return ENT_OK; - } - else { - return ENT_ERROR_UNKNOWN; - } -} - -void dirent_close(struct dirent_stat *sb) -{ - struct dirent_priv *p = sb->priv; - - if (p != NULL) { - - closedir(p->dir); - } -} - -int file_stat(const char *file, unsigned long long *nsize) -{ - struct stat sb; - int rc; - - rc = stat(file, &sb); - - if (rc == 0) { - - *nsize = sb.st_size; - } - - return (rc == 0) ? ENT_OK : ENT_ERROR_UNKNOWN; -} - -int file_remove(const char *file) -{ - return (remove(file) == 0) ? ENT_OK : ENT_ERROR_UNKNOWN; -} - -#endif /* _WINDOWS */ - diff --git a/phobia/gp/dirent.h b/phobia/gp/dirent.h deleted file mode 100644 index 26f62a5..0000000 --- a/phobia/gp/dirent.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_DIRENT_ -#define _H_DIRENT_ - -#define DIRENT_PATH_MAX 272 - -#ifdef _WINDOWS -#define DIRSEP "\\" -#else /* _WINDOWS */ -#define DIRSEP "/" -#endif - -enum { - ENT_TYPE_UNKNOWN = 0, - ENT_TYPE_REGULAR, - ENT_TYPE_DIRECTORY -}; - -enum { - ENT_OK = 0, - ENT_END_OF_DIR, - ENT_ERROR_UNKNOWN -}; - -struct dirent_priv; - -struct dirent_stat { - - unsigned long long nsize; - int ntype; - - char name[DIRENT_PATH_MAX]; - char time[24]; - - struct dirent_priv *priv; -}; - -int dirent_open(struct dirent_stat *sb, const char *path); -int dirent_rewind(struct dirent_stat *sb); -int dirent_read(struct dirent_stat *sb); -void dirent_close(struct dirent_stat *sb); - -int file_stat(const char *file, unsigned long long *nsize); -int file_remove(const char *file); - -#endif /* _H_DIRENT_ */ - diff --git a/phobia/gp/draw.c b/phobia/gp/draw.c deleted file mode 100644 index d56ca59..0000000 --- a/phobia/gp/draw.c +++ /dev/null @@ -1,3473 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include - -#include -#include - -#include "draw.h" -#include "plot.h" -#include "svg.h" - -extern int fp_isfinite(double x); - -void drawDashReset(draw_t *dw) -{ - dw->dash_context = 0; - dw->cached_ncol = -1; -} - -void drawGamma(draw_t *dw) -{ - int n; - - for (n = 0; n < 256; ++n) { - - dw->ltgamma[n] = (Uint8) ceilf(powf(n / 255.f, dw->gamma / 100.f) * 255.f); - dw->ltcomap[n] = (Uint8) ceilf(powf(n / 255.f, 100.f / dw->gamma) * 255.f); - } -} - -Uint32 drawRGBMap(draw_t *dw, Uint32 col) -{ - union { - - Uint32 l; - Uint8 b[4]; - } - vcol = { col }; - - if (dw->antialiasing != DRAW_SOLID) { - - vcol.b[0] = dw->ltcomap[vcol.b[0] & 0xFFU]; - vcol.b[1] = dw->ltcomap[vcol.b[1] & 0xFFU]; - vcol.b[2] = dw->ltcomap[vcol.b[2] & 0xFFU]; - } - - return vcol.l; -} - -void drawClearSurface(draw_t *dw, SDL_Surface *surface, Uint32 col) -{ - Uint32 *pixels = (Uint32 *) surface->pixels; - - int pitch = surface->pitch / 4; - int len, n; - - len = pitch * surface->h; - - for (n = 0; n < len - 15UL; n += 16UL) { - - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - *pixels++ = col; - } - - for (; n < len; n++) - *pixels++ = col; - - drawDashReset(dw); -} - -void drawClearCanvas(draw_t *dw) -{ - int len; - - len = dw->pixmap.yspan * dw->pixmap.h; - - if (dw->antialiasing == DRAW_4X_MSAA) { - - len *= 2; - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - len *= 4; - } - - memset(dw->pixmap.canvas, 0, len); -} - -void drawClearTrial(draw_t *dw) -{ - int len; - - len = dw->pixmap.yspan * dw->pixmap.h; - - if (dw->antialiasing != DRAW_SOLID) { - - len *= 2; - } - - memset(dw->pixmap.trial, 0, len); -} - -void drawPixmapAlloc(draw_t *dw, SDL_Surface *surface) -{ - int w, h, len; - - w = surface->w; - h = surface->h; - - dw->pixmap.w = w; - dw->pixmap.h = h; - - w += (w & 7UL) ? 8UL - (w & 7UL) : 0UL; - h += (h & 7UL) ? 8UL - (h & 7UL) : 0UL; - - len = w * h; - - if (dw->antialiasing == DRAW_4X_MSAA) { - - len *= 2; - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - len *= 4; - } - - dw->pixmap.yspan = w; - - if (dw->pixmap.len < len) { - - if (dw->pixmap.len != 0) { - - free(dw->pixmap.canvas); - free(dw->pixmap.trial); - } - - dw->pixmap.len = len + 1048576UL; - dw->pixmap.canvas = (void *) malloc(dw->pixmap.len); - - if (dw->pixmap.canvas == NULL) { - - ERROR("Unable to allocate memory of the canvas pixmap\n"); - } - - dw->pixmap.trial = (void *) malloc(dw->pixmap.len); - - if (dw->pixmap.trial == NULL) { - - ERROR("Unable to allocate memory of the trial pixmap\n"); - } - } -} - -void drawPixmapClean(draw_t *dw) -{ - if (dw->pixmap.len != 0) { - - free(dw->pixmap.canvas); - free(dw->pixmap.trial); - } -} - -static int -clipCode(clipBox_t *cb, double x, double y) -{ - int cc = 0UL; - - if (x < cb->min_x) - cc |= 0x01UL; - - else if (x > cb->max_x) - cc |= 0x02UL; - - if (y < cb->min_y) - cc |= 0x04UL; - - else if (y > cb->max_y) - cc |= 0x08UL; - - return cc; -} - -int clipBoxTest(clipBox_t *cb, int x, int y) -{ - return (clipCode(cb, x, y) == 0); -} - -static int -clipLine(clipBox_t *cb, double *xs, double *ys, double *xe, double *ye) -{ - double dx, dy; - int s_cc, e_cc; - - s_cc = clipCode(cb, *xs, *ys); - e_cc = clipCode(cb, *xe, *ye); - - do { - if (s_cc & e_cc) - return -1; - - if (!(s_cc | e_cc)) - return 0; - - dx = *xe - *xs; - dy = *ye - *ys; - - if (s_cc != 0) { - - if (s_cc & 0x01UL) { - - *ys = *ye + ((cb->min_x - *xe) * dy) / dx; - *xs = cb->min_x; - } - else if (s_cc & 0x02UL) { - - *ys = *ys + ((cb->max_x - *xs) * dy) / dx; - *xs = cb->max_x; - } - else if (s_cc & 0x04UL) { - - *xs = *xe + ((cb->min_y - *ye) * dx) / dy; - *ys = cb->min_y; - } - else if (s_cc & 0x08UL) { - - *xs = *xs + ((cb->max_y - *ys) * dx) / dy; - *ys = cb->max_y; - } - - s_cc = clipCode(cb, *xs, *ys); - } - else if (e_cc != 0) { - - if (e_cc & 0x01UL) { - - *ye = *ys + ((cb->min_x - *xs) * dy) / dx; - *xe = cb->min_x; - } - else if (e_cc & 0x02UL) { - - *ye = *ye + ((cb->max_x - *xe) * dy) / dx; - *xe = cb->max_x; - } - else if (e_cc & 0x04UL) { - - *xe = *xs + ((cb->min_y - *ys) * dx) / dy; - *ye = cb->min_y; - } - else if (e_cc & 0x08UL) { - - *xe = *xe + ((cb->max_y - *ye) * dx) / dy; - *ye = cb->max_y; - } - - e_cc = clipCode(cb, *xe, *ye); - } - } - while (1); -} - -static void -drawRoughLine(SDL_Surface *surface, int xs, int ys, int xe, int ye, Uint32 col) -{ - Uint32 *pixels = (Uint32 *) surface->pixels; - - int pitch = surface->pitch / 4; - int dx, dy, vx, vy, i; - - if (xs < xe) { - - dx = xe - xs; - vx = 1; - } - else { - dx = xs - xe; - vx = - 1; - } - - if (ys < ye) { - - dy = ye - ys; - vy = 1; - } - else { - dy = ys - ye; - vy = - 1; - } - - pixels += pitch * ys + xs; - - i = 0; - - if (dx < dy) { - - while (ys != ye) { - - *pixels = col; - - ys += vy; - pixels += pitch * vy; - - i += dx; - - if (i >= dy) { - - i -= dy; - pixels += vx; - } - } - } - else if (dx > dy) { - - while (xs != xe) { - - *pixels = col; - - xs += vx; - pixels += vx; - - i += dy; - - if (i >= dx) { - - i -= dx; - pixels += pitch * vy; - } - } - } - else { - while (ys != ye) { - - *pixels = col; - - ys += vy; - pixels += vx + pitch * vy; - } - } - - *pixels = col; -} - -static void -drawRoughDash(draw_t *dw, SDL_Surface *surface, int xs, int ys, int xe, int ye, - Uint32 col, int dash, int space) -{ - Uint32 *pixels = (Uint32 *) surface->pixels; - - int pitch = surface->pitch / 4; - int dx, dy, vx, vy, j, i; - - if (xs < xe) { - - dx = xe - xs; - vx = 1; - } - else { - dx = xs - xe; - vx = -1; - } - - if (ys < ye) { - - dy = ye - ys; - vy = 1; - } - else { - dy = ys - ye; - vy = -1; - } - - pixels += pitch * ys + xs; - - j = dw->dash_context; - i = 0; - - if (dx < dy) { - - while (ys != ye) { - - if (j < dash) *pixels = col; - j++; if (j >= dash + space) { j = 0; } - - ys += vy; - pixels += pitch * vy; - - i += dx; - - if (i >= dy) { - - i -= dy; - pixels += vx; - } - } - } - else if (dx > dy) { - - while (xs != xe) { - - if (j < dash) *pixels = col; - j++; if (j >= dash + space) { j = 0; } - - xs += vx; - pixels += vx; - - i += dy; - - if (i >= dx) { - - i -= dx; - pixels += pitch * vy; - } - } - } - else { - while (ys != ye) { - - if (j < dash) *pixels = col; - j++; if (j >= dash + space) { j = 0; } - - ys += vy; - pixels += vx + pitch * vy; - } - } - - if (j < dash) *pixels = col; - - dw->dash_context = j; -} - -void drawLine(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, Uint32 col) -{ - svg_t *g = (svg_t *) surface->userdata; - int xs, ys, xe, ye, n; - - if (clipLine(cb, &fxs, &fys, &fxe, &fye) < 0) - return ; - - if (g != NULL) { - - svgDrawLine(g, fxs, fys, fxe, fye, (svgCol_t) col, - 1 + dw->thickness, 0, 0); - } - - xs = (int) fxs; - ys = (int) fys; - xe = (int) fxe; - ye = (int) fye; - - drawRoughLine(surface, xs, ys, xe, ye, col); - - for (n = 1; n <= dw->thickness; ++n) { - - if (abs(xs - xe) < abs(ys - ye)) { - - drawRoughLine(surface, xs + n, ys, xe + n, ye, col); - } - else { - drawRoughLine(surface, xs, ys - n, xe, ye - n, col); - } - } -} - -void drawDash(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, Uint32 col, int dash, int space) -{ - svg_t *g = (svg_t *) surface->userdata; - int xs, ys, xe, ye, context, n; - - if (clipLine(cb, &fxs, &fys, &fxe, &fye) < 0) - return ; - - if (g != NULL) { - - svgDrawLine(g, fxs, fys, fxe, fye, (svgCol_t) col, - 1 + dw->thickness, dash + dw->thickness, space); - } - - xs = (int) fxs; - ys = (int) fys; - xe = (int) fxe; - ye = (int) fye; - - context = dw->dash_context; - dash += dw->thickness; - - drawRoughDash(dw, surface, xs, ys, xe, ye, col, dash, space); - - for (n = 1; n <= dw->thickness; ++n) { - - dw->dash_context = context; - - if (abs(xs - xe) < abs(ys - ye)) { - - drawRoughDash(dw, surface, xs + n, ys, xe + n, ye, - col, dash, space); - } - else { - drawRoughDash(dw, surface, xs, ys - n, xe, ye - n, - col, dash, space); - } - } -} - -void drawLineCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness) -{ - svg_t *g = (svg_t *) surface->userdata; - clipBox_t lcb; - - int yspan, xs, ys, xe, ye, x, y, h, l, d, r; - int w1, w2, w3, lw1, lw2, lw3, w1dx, w2dx, w3dx; - int w1dy, w2dy, w3dy, ldxs, ldys, ldxe, ldye, la; - - lcb.min_x = cb->min_x - 16; - lcb.min_y = cb->min_y - 16; - lcb.max_x = cb->max_x + 16; - lcb.max_y = cb->max_y + 16; - - if (clipLine(&lcb, &fxs, &fys, &fxe, &fye) < 0) - return ; - - if (g != NULL) { - - double _fxs = fxs, _fys = fys, _fxe = fxe, _fye = fye; - - if (clipLine(cb, &_fxs, &_fys, &_fxe, &_fye) == 0) { - - svgDrawLine(g, _fxs, _fys, _fxe, _fye, - (svgCol_t) dw->palette[ncol], - thickness, 0, 0); - } - } - - if (fys < fye) { - - xs = (int) (fxe * 16.); - ys = (int) (fye * 16.); - xe = (int) (fxs * 16.); - ye = (int) (fys * 16.); - } - else { - xs = (int) (fxs * 16.); - ys = (int) (fys * 16.); - xe = (int) (fxe * 16.); - ye = (int) (fye * 16.); - } - - h = (thickness > 0) ? thickness * 8 : 5; - h += (dw->antialiasing != DRAW_SOLID) ? 12 : 0; - - if (xs < xe) { - - lcb.min_x = (xs - h) / 16; - lcb.max_x = (xe + h) / 16; - } - else { - lcb.min_x = (xe - h) / 16; - lcb.max_x = (xs + h) / 16; - } - - if (ys < ye) { - - lcb.min_y = (ys - h) / 16; - lcb.max_y = (ye + h) / 16; - } - else { - lcb.min_y = (ye - h) / 16; - lcb.max_y = (ys + h) / 16; - } - - lcb.min_x = (lcb.min_x < cb->min_x) ? cb->min_x : lcb.min_x; - lcb.min_y = (lcb.min_y < cb->min_y) ? cb->min_y : lcb.min_y; - lcb.max_x = (lcb.max_x > cb->max_x) ? cb->max_x : lcb.max_x; - lcb.max_y = (lcb.max_y > cb->max_y) ? cb->max_y : lcb.max_y; - - l = (xs - xe) * (xs - xe) + (ys - ye) * (ys - ye); - d = (int) sqrtf((float) l); - - l = d * h; - r = h * h; - - w1 = (ys - ye) * (lcb.min_x * 16 - xe + 8) - (xs - xe) * (lcb.min_y * 16 - ye + 8); - w2 = (xe - xs) * (lcb.min_x * 16 - xs + 8) + (ye - ys) * (lcb.min_y * 16 - ys + 8); - w3 = (xs - xe) * (lcb.min_x * 16 - xe + 8) + (ys - ye) * (lcb.min_y * 16 - ye + 8); - - w1dx = (ys - ye) * 16; - w2dx = (xe - xs) * 16; - w3dx = (xs - xe) * 16; - - w1dy = - (xs - xe) * 16; - w2dy = (ye - ys) * 16; - w3dy = (ys - ye) * 16; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *canvas = (Uint8 *) dw->pixmap.canvas; - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - lw3 = w3 + w3dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - if (lw2 <= 0) { - - ldxs = x * 16 - xs + 8; - ldys = y * 16 - ys + 8; - - la = ldxs * ldxs + ldys * ldys; - - if (la <= r) { - - *(canvas + x) = ncol; - } - } - else if (lw3 <= 0) { - - ldxe = x * 16 - xe + 8; - ldye = y * 16 - ye + 8; - - la = ldxe * ldxe + ldye * ldye; - - if (la <= r) { - - *(canvas + x) = ncol; - } - } - else if (lw1 < l) { - - if (lw1 >= - l) { - - *(canvas + x) = ncol; - } - } - else { - break; - } - - lw1 += w1dx; - lw2 += w2dx; - lw3 += w3dx; - } - - w1 += w1dy; - w2 += w2dy; - w3 += w3dy; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_4X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - int lk, rk, dk, nw1, nw2, nw3, u1dx, u2dx; - int u3dx, u1dy, u2dy, u3dy, touch; - - lk = d * (h - 12); - rk = (h - 12) * (h - 12); - dk = d * 12; - - u1dx = (ys - ye); - u2dx = (xe - xs); - u3dx = (xs - xe); - - u1dy = - (xs - xe); - u2dy = (ye - ys); - u3dy = (ys - ye); - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - lw3 = w3 + w3dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - touch = 0; - - if (lw2 <= 0) { - - ldxs = x * 16 - xs + 8; - ldys = y * 16 - ys + 8; - - la = ldxs * ldxs + ldys * ldys; - - if (la <= r) { - - touch = 1; - } - } - else if (lw3 <= 0) { - - ldxe = x * 16 - xe + 8; - ldye = y * 16 - ye + 8; - - la = ldxe * ldxe + ldye * ldye; - - if (la <= r) { - - touch = 1; - } - } - else if (lw1 < l) { - - if (lw1 >= - l) { - - touch = 2; - } - } - else { - break; - } - - if ( touch == 2 - && lw2 > dk - && lw3 > dk) { - - Uint16 nb = *(canvas + x); - - nw1 = lw1 - u1dx * 5 + u1dy * 2; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 - u1dy * 7; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx * 4 + u1dy * 10; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 3 - u1dy * 7; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x) = nb; - } - else if (touch != 0) { - - Uint16 nb = *(canvas + x); - - nw1 = lw1 - u1dx * 5 + u1dy * 2; - nw2 = lw2 - u2dx * 5 + u2dy * 2; - nw3 = lw3 - u3dx * 5 + u3dy * 2; - - ldxs = x * 16 - xs + 3; - ldys = y * 16 - ys + 10; - ldxe = x * 16 - xe + 3; - ldye = y * 16 - ye + 10; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - nw3 += u3dx * 3 - u3dy * 7; - - ldxs += 3; - ldys += - 7; - ldxe += 3; - ldye += - 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx * 4 + u1dy * 10; - nw2 += u2dx * 4 + u2dy * 10; - nw3 += u3dx * 4 + u3dy * 10; - - ldxs += 4; - ldys += 10; - ldxe += 4; - ldye += 10; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - nw3 += u3dx * 3 - u3dy * 7; - - ldxs += 3; - ldys += - 7; - ldxe += 3; - ldye += - 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x) = nb; - } - - lw1 += w1dx; - lw2 += w2dx; - lw3 += w3dx; - } - - w1 += w1dy; - w2 += w2dy; - w3 += w3dy; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - int lk, rk, dk, nw1, nw2, nw3, u1dx, u2dx; - int u3dx, u1dy, u2dy, u3dy, touch; - - lk = d * (h - 12); - rk = (h - 12) * (h - 12); - dk = d * 12; - - u1dx = (ys - ye); - u2dx = (xe - xs); - u3dx = (xs - xe); - - u1dy = - (xs - xe); - u2dy = (ye - ys); - u3dy = (ys - ye); - - yspan = dw->pixmap.yspan * 2; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - lw3 = w3 + w3dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - touch = 0; - - if (lw2 <= 0) { - - ldxs = x * 16 - xs + 8; - ldys = y * 16 - ys + 8; - - la = ldxs * ldxs + ldys * ldys; - - if (la <= r) { - - touch = 1; - } - } - else if (lw3 <= 0) { - - ldxe = x * 16 - xe + 8; - ldye = y * 16 - ye + 8; - - la = ldxe * ldxe + ldye * ldye; - - if (la <= r) { - - touch = 1; - } - } - else if (lw1 < l) { - - if (lw1 >= - l) { - - touch = 2; - } - } - else { - break; - } - - if ( touch == 2 - && lw2 > dk - && lw3 > dk) { - - Uint16 nb = *(canvas + x * 2); - - nw1 = lw1 - u1dx * 7 - u1dy; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 2 - u1dy * 6; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx + u1dy * 11; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 2 - u1dy * 7; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2) = nb; - - nb = *(canvas + x * 2 + 1); - - nw1 += u1dx * 2 + u1dy * 5; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 + u1dy * 4; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx - u1dy * 12; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx + u1dy * 6; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2 + 1) = nb; - } - else if (touch != 0) { - - Uint16 nb = *(canvas + x * 2); - - nw1 = lw1 - u1dx * 7 - u1dy; - nw2 = lw2 - u2dx * 7 - u2dy; - nw3 = lw3 - u3dx * 7 - u3dy; - - ldxs = x * 16 - xs + 1; - ldys = y * 16 - ys + 7; - ldxe = x * 16 - xe + 1; - ldye = y * 16 - ye + 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 2 - u1dy * 6; - nw2 += u2dx * 2 - u2dy * 6; - nw3 += u3dx * 2 - u3dy * 6; - - ldxs += 2; - ldys += - 6; - ldxe += 2; - ldye += - 6; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx + u1dy * 11; - nw2 += u2dx + u2dy * 11; - nw3 += u3dx + u3dy * 11; - - ldxs += 1; - ldys += 11; - ldxe += 1; - ldye += 11; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 2 - u1dy * 7; - nw2 += u2dx * 2 - u2dy * 7; - nw3 += u3dx * 2 - u3dy * 7; - - ldxs += 2; - ldys += - 7; - ldxe += 2; - ldye += - 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2) = nb; - - nb = *(canvas + x * 2 + 1); - - nw1 += u1dx * 2 + u1dy * 5; - nw2 += u2dx * 2 + u2dy * 5; - nw3 += u2dx * 2 + u3dy * 5; - - ldxs += 2; - ldys += 5; - ldxe += 2; - ldye += 5; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 + u1dy * 4; - nw2 += u2dx * 3 + u2dy * 4; - nw3 += u3dx * 3 + u3dy * 4; - - ldxs += 3; - ldys += 4; - ldxe += 3; - ldye += 4; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx - u1dy * 12; - nw2 += u2dx - u2dy * 12; - nw3 += u3dx - u3dy * 12; - - ldxs += 1; - ldys += - 12; - ldxe += 1; - ldye += - 12; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx + u1dy * 6; - nw2 += u2dx + u2dy * 6; - nw3 += u3dx + u3dy * 6; - - ldxs += 1; - ldys += 6; - ldxe += 1; - ldye += 6; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2 + 1) = nb; - } - - lw1 += w1dx; - lw2 += w2dx; - lw3 += w3dx; - } - - w1 += w1dy; - w2 += w2dy; - w3 += w3dy; - - canvas += yspan; - } - } -} - -void drawDashCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness, int dash, int space) -{ - svg_t *g = (svg_t *) surface->userdata; - clipBox_t lcb; - - int yspan, xs, ys, xe, ye, x, y, h, m, f, e, l, d, r; - int w1, w2, lw1, lw2, ww2, nw1, nw2, lk, context; - int w1dx, w2dx, w1dy, w2dy, u1dx, u2dx, u1dy, u2dy; - - lcb.min_x = cb->min_x - 16; - lcb.min_y = cb->min_y - 16; - lcb.max_x = cb->max_x + 16; - lcb.max_y = cb->max_y + 16; - - if (clipLine(&lcb, &fxs, &fys, &fxe, &fye) < 0) - return ; - - if (g != NULL) { - - double _fxs = fxs, _fys = fys, _fxe = fxe, _fye = fye; - - if (clipLine(cb, &_fxs, &_fys, &_fxe, &_fye) == 0) { - - svgDrawLine(g, _fxs, _fys, _fxe, _fye, - (svgCol_t) dw->palette[ncol], - thickness, dash + thickness, space); - } - } - - if (fys < fye) { - - xs = (int) (fxe * 16.); - ys = (int) (fye * 16.); - xe = (int) (fxs * 16.); - ye = (int) (fys * 16.); - } - else { - xs = (int) (fxs * 16.); - ys = (int) (fys * 16.); - xe = (int) (fxe * 16.); - ye = (int) (fye * 16.); - } - - h = (thickness > 0) ? thickness * 8 : 5; - h += (dw->antialiasing != DRAW_SOLID) ? 12 : 0; - - m = (dash + thickness) * 16; - f = m + space * 16; - - if (xs < xe) { - - lcb.min_x = (xs - h) / 16; - lcb.max_x = (xe + h) / 16; - } - else { - lcb.min_x = (xe - h) / 16; - lcb.max_x = (xs + h) / 16; - } - - if (ys < ye) { - - lcb.min_y = (ys - h) / 16; - lcb.max_y = (ye + h) / 16; - } - else { - lcb.min_y = (ye - h) / 16; - lcb.max_y = (ys + h) / 16; - } - - lcb.min_x = (lcb.min_x < cb->min_x) ? cb->min_x : lcb.min_x; - lcb.min_y = (lcb.min_y < cb->min_y) ? cb->min_y : lcb.min_y; - lcb.max_x = (lcb.max_x > cb->max_x) ? cb->max_x : lcb.max_x; - lcb.max_y = (lcb.max_y > cb->max_y) ? cb->max_y : lcb.max_y; - - e = (xs - xe) * (xs - xe) + (ys - ye) * (ys - ye); - d = (int) sqrtf((float) e); - - l = d * h; - - w1 = (ys - ye) * (lcb.min_x * 16 - xe + 8) - (xs - xe) * (lcb.min_y * 16 - ye + 8); - w2 = (xe - xs) * (lcb.min_x * 16 - xs + 8) + (ye - ys) * (lcb.min_y * 16 - ys + 8); - - w1dx = (ys - ye) * 16; - w2dx = (xe - xs) * 16; - - w1dy = - (xs - xe) * 16; - w2dy = (ye - ys) * 16; - - context = dw->dash_context; - - ww2 = context * d; - context = (context + d) % f; - - dw->dash_context = context; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *canvas = (Uint8 *) dw->pixmap.canvas; - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - if ( lw1 < l - && lw1 >= - l) { - - if ( lw2 >= 0 - && lw2 < e) { - - r = (lw2 + ww2) / d; - - if ((r % f) < m) { - - *(canvas + x) = ncol; - } - } - } - else if (lw1 > 0) { - - break; - } - - lw1 += w1dx; - lw2 += w2dx; - } - - w1 += w1dy; - w2 += w2dy; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_4X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - lk = d * (h - 12); - - u1dx = (ys - ye); - u2dx = (xe - xs); - - u1dy = - (xs - xe); - u2dy = (ye - ys); - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - if ( lw1 < l - && lw1 >= - l) { - - Uint16 nb = *(canvas + x); - - nw1 = lw1 - u1dx * 5 + u1dy * 2; - nw2 = lw2 - u2dx * 5 + u2dy * 2; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - - nw1 += u1dx * 4 + u1dy * 10; - nw2 += u2dx * 4 + u2dy * 10; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - - *(canvas + x) = nb; - } - else if (lw1 > 0) { - - break; - } - - lw1 += w1dx; - lw2 += w2dx; - } - - w1 += w1dy; - w2 += w2dy; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - lk = d * (h - 12); - - u1dx = (ys - ye); - u2dx = (xe - xs); - - u1dy = - (xs - xe); - u2dy = (ye - ys); - - yspan = dw->pixmap.yspan * 2; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - if ( lw1 < l - && lw1 >= - l) { - - Uint16 nb = *(canvas + x * 2); - - nw1 = lw1 - u1dx * 7 - u1dy; - nw2 = lw2 - u2dx * 7 - u2dy; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - - nw1 += u1dx * 2 - u1dy * 6; - nw2 += u2dx * 2 - u2dy * 6; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - - nw1 += u1dx + u1dy * 11; - nw2 += u2dx + u2dy * 11; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - - nw1 += u1dx * 2 - u1dy * 7; - nw2 += u2dx * 2 - u2dy * 7; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - - *(canvas + x * 2) = nb; - - nb = *(canvas + x * 2 + 1); - - nw1 += u1dx * 2 + u1dy * 5; - nw2 += u2dx * 2 + u2dy * 5; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - - nw1 += u1dx * 3 + u1dy * 4; - nw2 += u2dx * 3 + u2dy * 4; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - - nw1 += u1dx - u1dy * 12; - nw2 += u2dx - u2dy * 12; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - - nw1 += u1dx + u1dy * 6; - nw2 += u2dx + u2dy * 6; - - if ( nw1 < lk - && nw1 >= - lk - && nw2 >= 0 - && nw2 < e) { - - r = (nw2 + ww2) / d; - - if ((r % f) < m) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - - *(canvas + x * 2 + 1) = nb; - } - else if (lw1 > 0) { - - break; - } - - lw1 += w1dx; - lw2 += w2dx; - } - - w1 += w1dy; - w2 += w2dy; - - canvas += yspan; - } - } -} - -int drawLineTrial(draw_t *dw, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness) -{ - clipBox_t lcb; - - int yspan, xs, ys, xe, ye, x, y, h, l, d, r; - int w1, w2, w3, lw1, lw2, lw3, w1dx, w2dx, w3dx; - int w1dy, w2dy, w3dy, ldxs, ldys, ldxe, ldye, la, fill; - - lcb.min_x = cb->min_x - 16; - lcb.min_y = cb->min_y - 16; - lcb.max_x = cb->max_x + 16; - lcb.max_y = cb->max_y + 16; - - if (clipLine(&lcb, &fxs, &fys, &fxe, &fye) < 0) - return 0; - - h = (dw->antialiasing == DRAW_4X_MSAA) ? 2 - : (dw->antialiasing == DRAW_8X_MSAA) ? 3 : 1; - - xs = (int) (fxs * (double) h + .5); - ys = (int) (fys * (double) h + .5); - xe = (int) (fxe * (double) h + .5); - ye = (int) (fye * (double) h + .5); - - if ( ncol == dw->cached_ncol - && xs == xe - && xe == dw->cached_x) { - - if (ys < ye) { - - if (ys >= dw->cached_min_y && ye <= dw->cached_max_y) - return 0; - - dw->cached_min_y = (ys < dw->cached_min_y) ? ys : dw->cached_min_y; - dw->cached_max_y = (ye > dw->cached_max_y) ? ye : dw->cached_max_y; - } - else { - if (ye >= dw->cached_min_y && ys <= dw->cached_max_y) - return 0; - - dw->cached_min_y = (ye < dw->cached_min_y) ? ye : dw->cached_min_y; - dw->cached_max_y = (ys > dw->cached_max_y) ? ys : dw->cached_max_y; - } - } - else { - dw->cached_x = xe; - dw->cached_min_y = lcb.max_y * h; - dw->cached_max_y = lcb.min_y * h; - dw->cached_ncol = ncol; - } - - if (fys < fye) { - - xs = (int) (fxe * 16.); - ys = (int) (fye * 16.); - xe = (int) (fxs * 16.); - ye = (int) (fys * 16.); - } - else { - xs = (int) (fxs * 16.); - ys = (int) (fys * 16.); - xe = (int) (fxe * 16.); - ye = (int) (fye * 16.); - } - - - h = (thickness > 0) ? thickness * 8 : 5; - h += (dw->antialiasing != DRAW_SOLID) ? 12 : 0; - - if (xs < xe) { - - lcb.min_x = (xs - h) / 16; - lcb.max_x = (xe + h) / 16; - } - else { - lcb.min_x = (xe - h) / 16; - lcb.max_x = (xs + h) / 16; - } - - if (ys < ye) { - - lcb.min_y = (ys - h) / 16; - lcb.max_y = (ye + h) / 16; - } - else { - lcb.min_y = (ye - h) / 16; - lcb.max_y = (ys + h) / 16; - } - - lcb.min_x = (lcb.min_x < cb->min_x) ? cb->min_x : lcb.min_x; - lcb.min_y = (lcb.min_y < cb->min_y) ? cb->min_y : lcb.min_y; - lcb.max_x = (lcb.max_x > cb->max_x) ? cb->max_x : lcb.max_x; - lcb.max_y = (lcb.max_y > cb->max_y) ? cb->max_y : lcb.max_y; - - l = (xs - xe) * (xs - xe) + (ys - ye) * (ys - ye); - d = (int) sqrtf((float) l); - - l = d * h; - r = h * h; - - w1 = (ys - ye) * (lcb.min_x * 16 - xe + 8) - (xs - xe) * (lcb.min_y * 16 - ye + 8); - w2 = (xe - xs) * (lcb.min_x * 16 - xs + 8) + (ye - ys) * (lcb.min_y * 16 - ys + 8); - w3 = (xs - xe) * (lcb.min_x * 16 - xe + 8) + (ys - ye) * (lcb.min_y * 16 - ye + 8); - - w1dx = (ys - ye) * 16; - w2dx = (xe - xs) * 16; - w3dx = (xs - xe) * 16; - - w1dy = - (xs - xe) * 16; - w2dy = (ye - ys) * 16; - w3dy = (ys - ye) * 16; - - fill = 0; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *trial = (Uint8 *) dw->pixmap.trial; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - lw3 = w3 + w3dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - if (lw2 <= 0) { - - ldxs = x * 16 - xs + 8; - ldys = y * 16 - ys + 8; - - la = ldxs * ldxs + ldys * ldys; - - if (la <= r) { - - if (*(trial + x) != ncol) { - *(trial + x) = ncol; - fill++; } - } - } - else if (lw3 <= 0) { - - ldxe = x * 16 - xe + 8; - ldye = y * 16 - ye + 8; - - la = ldxe * ldxe + ldye * ldye; - - if (la <= r) { - - if (*(trial + x) != ncol) { - *(trial + x) = ncol; - fill++; } - } - } - else if (lw1 < l) { - - if (lw1 >= - l) { - - if (*(trial + x) != ncol) { - *(trial + x) = ncol; - fill++; } - } - } - else { - break; - } - - lw1 += w1dx; - lw2 += w2dx; - lw3 += w3dx; - } - - w1 += w1dy; - w2 += w2dy; - w3 += w3dy; - - trial += yspan; - } - } - else { - Uint16 *trial = (Uint16 *) dw->pixmap.trial; - - int lk, rk, dk, nw1, nw2, nw3, u1dx, u2dx; - int u3dx, u1dy, u2dy, u3dy, touch; - - lk = d * (h - 12); - rk = (h - 12) * (h - 12); - dk = d * 12; - - u1dx = (ys - ye) * 4; - u2dx = (xe - xs) * 4; - u3dx = (xs - xe) * 4; - - u1dy = - (xs - xe) * 4; - u2dy = (ye - ys) * 4; - u3dy = (ys - ye) * 4; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - x = (w1dx > 0) ? - (l + w1) / w1dx : 0; - x = (x < 0) ? 0 : x; - - lw1 = w1 + w1dx * x; - lw2 = w2 + w2dx * x; - lw3 = w3 + w3dx * x; - - for (x += lcb.min_x; x <= lcb.max_x; ++x) { - - touch = 0; - - if (lw2 <= 0) { - - ldxs = x * 16 - xs + 8; - ldys = y * 16 - ys + 8; - - la = ldxs * ldxs + ldys * ldys; - - if (la <= r) { - - touch = 1; - } - } - else if (lw3 <= 0) { - - ldxe = x * 16 - xe + 8; - ldye = y * 16 - ye + 8; - - la = ldxe * ldxe + ldye * ldye; - - if (la <= r) { - - touch = 1; - } - } - else if (lw1 < l) { - - if (lw1 >= - l) { - - touch = 2; - } - } - else { - break; - } - - if ( touch == 2 - && lw2 > dk - && lw3 > dk) { - - Uint16 nb = *(trial + x); - Uint16 bg = nb; - - nw1 = lw1 - u1dx * 5 + u1dy * 2; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 - u1dy * 7; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx * 4 + u1dy * 10; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 3 - u1dy * 7; - - if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - if (bg != nb) { - *(trial + x) = nb; - fill++; } - } - else if (touch != 0) { - - Uint16 nb = *(trial + x); - Uint16 bg = nb; - - nw1 = lw1 - u1dx * 5 + u1dy * 2; - nw2 = lw2 - u2dx * 5 + u2dy * 2; - nw3 = lw3 - u3dx * 5 + u3dy * 2; - - ldxs = x * 16 - xs + 3; - ldys = y * 16 - ys + 10; - ldxe = x * 16 - xe + 3; - ldye = y * 16 - ye + 10; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - nw3 += u3dx * 3 - u3dy * 7; - - ldxs += 3; - ldys += - 7; - ldxe += 3; - ldye += - 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += u1dx * 4 + u1dy * 10; - nw2 += u2dx * 4 + u2dy * 10; - nw3 += u3dx * 4 + u3dy * 10; - - ldxs += 4; - ldys += 10; - ldxe += 4; - ldye += 10; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += u1dx * 3 - u1dy * 7; - nw2 += u2dx * 3 - u2dy * 7; - nw3 += u3dx * 3 - u3dy * 7; - - ldxs += 3; - ldys += - 7; - ldxe += 3; - ldye += - 7; - - if (nw2 <= 0) { - - la = ldxs * ldxs + ldys * ldys; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw3 <= 0) { - - la = ldxe * ldxe + ldye * ldye; - - if (la <= rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - } - else if (nw1 < lk && nw1 >= - lk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - if (bg != nb) { - *(trial + x) = nb; - fill++; } - } - - lw1 += w1dx; - lw2 += w2dx; - lw3 += w3dx; - } - - w1 += w1dy; - w2 += w2dy; - w3 += w3dy; - - trial += yspan; - } - } - - return fill; -} - -void drawText(draw_t *dw, SDL_Surface *surface, TTF_Font *font, int xs, int ys, - const char *text, int flags, Uint32 col) -{ - svg_t *g = (svg_t *) surface->userdata; - SDL_Surface *textSurface, *surfaceCopy; - SDL_Rect textRect; - SDL_Color textColor; - - int pitch, i, j; - - if (font == NULL) - return ; - - if (text[0] == 0) - return ; - - if (g != NULL) { - - svgDrawText(g, xs, ys, text, (svgCol_t) col, flags); - } - - textColor.a = 0; - textColor.r = (col & 0x00FF0000UL) >> 16; - textColor.g = (col & 0x0000FF00UL) >> 8; - textColor.b = (col & 0x000000FFUL) >> 0; - - if (dw->blendfont != 0) { - - textSurface = TTF_RenderUTF8_Blended(font, text, textColor); - } - else { - textSurface = TTF_RenderUTF8_Solid(font, text, textColor); - } - - if (textSurface == NULL) - return ; - - if (flags & TEXT_VERTICAL) { - - surfaceCopy = SDL_CreateRGBSurfaceWithFormat(0, textSurface->h, textSurface->w, - textSurface->format->BitsPerPixel, textSurface->format->format); - - if (textSurface->format->BitsPerPixel == 8) { - - Uint8 *pixels, *pixelsCopy; - - SDL_SetSurfacePalette(surfaceCopy, textSurface->format->palette); - SDL_SetColorKey(surfaceCopy, SDL_TRUE, 0); - - pixels = (Uint8 *) textSurface->pixels; - pixelsCopy = (Uint8 *) surfaceCopy->pixels; - - SDL_LockSurface(textSurface); - SDL_LockSurface(surfaceCopy); - - pixels += textSurface->w - 1; - pitch = textSurface->pitch; - - for (i = 0; i < surfaceCopy->h; ++i) { - - for (j = 0; j < surfaceCopy->w; ++j) - pixelsCopy[j] = pixels[j * pitch]; - - pixelsCopy += surfaceCopy->pitch; - pixels += -1; - } - - SDL_UnlockSurface(textSurface); - SDL_UnlockSurface(surfaceCopy); - } - else if (textSurface->format->BitsPerPixel == 32) { - - Uint32 *pixels, *pixelsCopy; - - pixels = (Uint32 *) textSurface->pixels; - pixelsCopy = (Uint32 *) surfaceCopy->pixels; - - SDL_LockSurface(textSurface); - SDL_LockSurface(surfaceCopy); - - pixels += textSurface->w - 1; - pitch = textSurface->pitch / 4; - - for (i = 0; i < surfaceCopy->h; ++i) { - - for (j = 0; j < surfaceCopy->w; ++j) - pixelsCopy[j] = pixels[j * pitch]; - - pixelsCopy += surfaceCopy->pitch / 4; - pixels += - 1; - } - - SDL_UnlockSurface(textSurface); - SDL_UnlockSurface(surfaceCopy); - } - - SDL_FreeSurface(textSurface); - textSurface = surfaceCopy; - } - - textRect.w = textSurface->w; - textRect.h = textSurface->h; - textRect.x = xs; - textRect.y = ys; - - if (flags & TEXT_CENTERED_ON_X) { - - textRect.x += - textRect.w / 2; - } - - if (flags & TEXT_CENTERED_ON_Y) { - - textRect.y += - textRect.h / 2; - } - - SDL_BlitSurface(textSurface, NULL, surface, &textRect); - SDL_FreeSurface(textSurface); -} - -void drawFillRect(SDL_Surface *surface, int xs, int ys, - int xe, int ye, Uint32 col) -{ - svg_t *g = (svg_t *) surface->userdata; - Uint32 *pixels = (Uint32 *) surface->pixels; - Uint32 *px, *px_end; - - int pitch, i; - - xs = (xs < 0) ? 0 : xs; - xe = (xe > surface->w - 1) ? surface->w - 1 : xe; - - ys = (ys < 0) ? 0 : ys; - ye = (ye > surface->h - 1) ? surface->h - 1 : ye; - - if (g != NULL) { - - svgDrawRect(g, xs, ys, xe, ye, (svgCol_t) col); - } - - pitch = surface->pitch / 4; - - for (i = ys; i <= ye; i++) { - - px = pixels + pitch * i + xs; - px_end = px + (xe - xs); - - while (px <= px_end) { - - *px++ = col; - } - } -} - -void drawClipRect(SDL_Surface *surface, clipBox_t *cb, int xs, int ys, - int xe, int ye, Uint32 col) -{ - svg_t *g = (svg_t *) surface->userdata; - Uint32 *pixels = (Uint32 *) surface->pixels; - Uint32 *px, *px_end; - - int pitch, i; - - if (xs > cb->max_x || xe < cb->min_x) - return ; - - if (ys > cb->max_y || ye < cb->min_y) - return ; - - xs = (xs < cb->min_x) ? cb->min_x : xs; - xe = (xe > cb->max_x) ? cb->max_x : xe; - - ys = (ys < cb->min_y) ? cb->min_y : ys; - ye = (ye > cb->max_y) ? cb->max_y : ye; - - if (g != NULL) { - - svgDrawRect(g, xs, ys, xe, ye, (svgCol_t) col); - } - - pitch = surface->pitch / 4; - - for (i = ys; i <= ye; i++) { - - px = pixels + pitch * i + xs; - px_end = px + (xe - xs); - - while (px <= px_end) { - - *px++ = col; - } - } -} - -void drawDotCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - int rsize, int ncol, int round) -{ - svg_t *g = (svg_t *) surface->userdata; - clipBox_t lcb; - - int yspan, xs, ys, x, y, h, r; - int w1, w2, lw1, nw1, nw2, lw1a, lw2a; - int ldx, ldy, rk, hk, la; - - if (fxs > cb->max_x + 16 || fxs < cb->min_x - 16) - return ; - - if (fys > cb->max_y + 16 || fys < cb->min_y - 16) - return ; - - if (g != NULL) { - - if ( fxs > cb->min_x && fxs < cb->max_x - && fys > cb->min_y && fys < cb->max_y) { - - if (round == 0) { - - svgDrawRect(g, fxs - rsize * 0.5, fys - rsize * 0.5, - fxs + rsize * 0.5, fys + rsize * 0.5, - (svgCol_t) dw->palette[ncol]); - } - else { - svgDrawCircle(g, fxs, fys, rsize * 0.5, - (svgCol_t) dw->palette[ncol]); - } - } - } - - xs = (int) (fxs * 16.); - ys = (int) (fys * 16.); - - h = (rsize > 0) ? rsize * 8 : 5; - h += (dw->antialiasing != DRAW_SOLID) ? 12 : 0; - - lcb.min_x = (xs - h) / 16; - lcb.max_x = (xs + h) / 16; - lcb.min_y = (ys - h) / 16; - lcb.max_y = (ys + h) / 16; - - lcb.min_x = (lcb.min_x < cb->min_x) ? cb->min_x : lcb.min_x; - lcb.min_y = (lcb.min_y < cb->min_y) ? cb->min_y : lcb.min_y; - lcb.max_x = (lcb.max_x > cb->max_x) ? cb->max_x : lcb.max_x; - lcb.max_y = (lcb.max_y > cb->max_y) ? cb->max_y : lcb.max_y; - - if (round == 0) { - - w1 = lcb.min_x * 16 - xs + 8; - w2 = lcb.min_y * 16 - ys + 8; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *canvas = (Uint8 *) dw->pixmap.canvas; - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - lw1 = w1; - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - lw1a = (lw1 < 0) ? - lw1 : lw1; - lw2a = (w2 < 0) ? - w2 : w2; - - if (lw1a < h && lw2a < h) { - - *(canvas + x) = ncol; - } - - lw1 += 16; - } - - w2 += 16; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_4X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - hk = h - 12; - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - lw1 = w1; - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - lw1a = (lw1 < 0) ? - lw1 : lw1; - lw2a = (w2 < 0) ? - w2 : w2; - - if (lw1a < h && lw2a < h) { - - Uint16 nb = *(canvas + x); - - nw1 = lw1 - 5; - nw2 = w2 + 2; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += 3; - nw2 += - 7; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += 4; - nw2 += 10; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += 3; - nw2 += - 7; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x) = nb; - } - - lw1 += 16; - } - - w2 += 16; - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - hk = h - 12; - - yspan = dw->pixmap.yspan * 2; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - lw1 = w1; - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - lw1a = (lw1 < 0) ? - lw1 : lw1; - lw2a = (w2 < 0) ? - w2 : w2; - - if (lw1a < h && lw2a < h) { - - Uint16 nb = *(canvas + x * 2); - - nw1 = lw1 - 7; - nw2 = w2 - 1; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += 2; - nw2 += - 6; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += 1; - nw2 += 11; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += 2; - nw2 += - 7; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2) = nb; - - nb = *(canvas + x * 2 + 1); - - nw1 += 2; - nw2 += 5; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += 3; - nw2 += 4; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += 1; - nw2 += - 12; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += 1; - nw2 += 6; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2 + 1) = nb; - } - - lw1 += 16; - } - - w2 += 16; - - canvas += yspan; - } - } - } - else { - r = h * h; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *canvas = (Uint8 *) dw->pixmap.canvas; - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - ldx = x * 16 - xs + 8; - ldy = y * 16 - ys + 8; - - la = ldx * ldx + ldy * ldy; - - if (la < r) { - - *(canvas + x) = ncol; - } - } - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_4X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - rk = (h - 12) * (h - 12); - - yspan = dw->pixmap.yspan; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - ldx = x * 16 - xs + 8; - ldy = y * 16 - ys + 8; - - la = ldx * ldx + ldy * ldy; - - if (la < r) { - - Uint16 nb = *(canvas + x); - - ldx = x * 16 - xs + 3; - ldy = y * 16 - ys + 10; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - ldx += 3; - ldy += - 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - ldx += 4; - ldy += 10; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - ldx += 3; - ldy += - 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x) = nb; - } - } - - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - Uint16 *canvas = (Uint16 *) dw->pixmap.canvas; - - rk = (h - 12) * (h - 12); - - yspan = dw->pixmap.yspan * 2; - canvas += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - ldx = x * 16 - xs + 8; - ldy = y * 16 - ys + 8; - - la = ldx * ldx + ldy * ldy; - - if (la < r) { - - Uint16 nb = *(canvas + x * 2); - - ldx = x * 16 - xs + 1; - ldy = y * 16 - ys + 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - ldx += 2; - ldy += - 6; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - ldx += 1; - ldy += 11; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - ldx += 2; - ldy += - 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2) = nb; - - nb = *(canvas + x * 2 + 1); - - ldx += 2; - ldy += 5; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - ldx += 3; - ldy += 4; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - ldx += 1; - ldy += - 12; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - ldx += 1; - ldy += 6; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - *(canvas + x * 2 + 1) = nb; - } - } - - canvas += yspan; - } - } - } -} - -int drawDotTrial(draw_t *dw, clipBox_t *cb, double fxs, double fys, - int rsize, int ncol, int round) -{ - clipBox_t lcb; - - int yspan, xs, ys, x, y, h, r; - int w1, w2, lw1, nw1, nw2, lw1a, lw2a; - int ldx, ldy, rk, hk, la, fill; - - if (fxs > cb->max_x + 16 || fxs < cb->min_x - 16) - return 0; - - if (fys > cb->max_y + 16 || fys < cb->min_y - 16) - return 0; - - xs = (int) (fxs * 16.); - ys = (int) (fys * 16.); - - h = (rsize > 0) ? rsize * 8 : 5; - h += (dw->antialiasing != DRAW_SOLID) ? 12 : 0; - - lcb.min_x = (xs - h) / 16; - lcb.max_x = (xs + h) / 16; - lcb.min_y = (ys - h) / 16; - lcb.max_y = (ys + h) / 16; - - lcb.min_x = (lcb.min_x < cb->min_x) ? cb->min_x : lcb.min_x; - lcb.min_y = (lcb.min_y < cb->min_y) ? cb->min_y : lcb.min_y; - lcb.max_x = (lcb.max_x > cb->max_x) ? cb->max_x : lcb.max_x; - lcb.max_y = (lcb.max_y > cb->max_y) ? cb->max_y : lcb.max_y; - - fill = 0; - - if (round == 0) { - - w1 = lcb.min_x * 16 - xs + 8; - w2 = lcb.min_y * 16 - ys + 8; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *trial = (Uint8 *) dw->pixmap.trial; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - lw2a = (w2 < 0) ? - w2 : w2; - - lw1 = w1; - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - lw1a = (lw1 < 0) ? - lw1 : lw1; - - if (lw1a < h && lw2a < h) { - - if (*(trial + x) != ncol) { - *(trial + x) = ncol; - fill++; } - } - - lw1 += 16; - } - - w2 += 16; - - trial += yspan; - } - } - else { - Uint16 *trial = (Uint16 *) dw->pixmap.trial; - - hk = h - 12; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - lw2a = (w2 < 0) ? - w2 : w2; - - lw1 = w1; - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - lw1a = (lw1 < 0) ? - lw1 : lw1; - - if (lw1a < h && lw2a < h) { - - Uint16 nb = *(trial + x); - Uint16 bg = nb; - - nw1 = lw1 - 5; - nw2 = w2 + 2; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - nw1 += 3; - nw2 += - 7; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - nw1 += 4; - nw2 += 10; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - nw1 += 3; - nw2 += - 7; - - lw1a = (nw1 < 0) ? - nw1 : nw1; - lw2a = (nw2 < 0) ? - nw2 : nw2; - - if (lw1a < hk && lw2a < hk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - if (bg != nb) { - *(trial + x) = nb; - fill++; } - } - - lw1 += 16; - } - - w2 += 16; - - trial += yspan; - } - } - } - else { - r = h * h; - rk = (h - 12) * (h - 12); - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 *trial = (Uint8 *) dw->pixmap.trial; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - ldx = x * 16 - xs + 8; - ldy = y * 16 - ys + 8; - - la = ldx * ldx + ldy * ldy; - - if (la < r) { - - if (*(trial + x) != ncol) { - *(trial + x) = ncol; - fill++; } - } - } - - trial += yspan; - } - } - else { - Uint16 *trial = (Uint16 *) dw->pixmap.trial; - - yspan = dw->pixmap.yspan; - trial += lcb.min_y * yspan; - - for (y = lcb.min_y; y <= lcb.max_y; ++y) { - - for (x = lcb.min_x; x <= lcb.max_x; ++x) { - - ldx = x * 16 - xs + 8; - ldy = y * 16 - ys + 8; - - la = ldx * ldx + ldy * ldy; - - if (la < r) { - - Uint16 nb = *(trial + x); - Uint16 bg = nb; - - ldx = x * 16 - xs + 3; - ldy = y * 16 - ys + 10; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFFF0U) | (ncol << 0); - } - - ldx += 3; - ldy += - 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xFF0FU) | (ncol << 4); - } - - ldx += 4; - ldy += 10; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0xF0FFU) | (ncol << 8); - } - - ldx += 3; - ldy += - 7; - - la = ldx * ldx + ldy * ldy; - - if (la < rk) { - - nb = (nb & 0x0FFFU) | (ncol << 12); - } - - if (bg != nb) { - *(trial + x) = nb; - fill++; } - } - } - - trial += yspan; - } - } - } - - return fill; -} - -void drawMarkCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - int rsize, int shape, int ncol, int thickness) -{ - double r2, r6; - - if (shape == SHAPE_CIRCLE) { - - r2 = (double) rsize * 0.5; - r6 = (double) rsize * 0.86603; - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys, fxs - r6, fys - r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r6, fys - r2, fxs - r2, fys - r6, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys - r6, fxs, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + rsize, fys, fxs + r6, fys - r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r6, fys - r2, fxs + r2, fys - r6, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r2, fys - r6, fxs, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + rsize, fys, fxs + r6, fys + r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r6, fys + r2, fxs + r2, fys + r6, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r2, fys + r6, fxs, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys, fxs - r6, fys + r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r6, fys + r2, fxs - r2, fys + r6, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys + r6, fxs, fys + rsize, ncol, thickness); - } - else if (shape == SHAPE_RECTANGLE) { - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - rsize, fxs + rsize, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys + rsize, fxs + rsize, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - rsize, fxs - rsize, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + rsize, fys - rsize, fxs + rsize, fys + rsize, ncol, thickness); - } - else if (shape == SHAPE_TRIANGLE) { - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - rsize, fxs + rsize, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + rsize, fys - rsize, fxs, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs, fys + rsize, fxs - rsize, fys - rsize, ncol, thickness); - } - else if (shape == SHAPE_ASTERIX) { - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys, fxs + rsize, fys, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs, fys - rsize, fxs, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - rsize, fxs + rsize, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys + rsize, fxs + rsize, fys - rsize, ncol, thickness); - } - else if (shape == SHAPE_STAR) { - - r2 = (double) rsize * 0.5; - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - rsize, fxs, fys - r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs, fys - r2, fxs + rsize, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys + rsize, fxs, fys + r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs, fys + r2, fxs + rsize, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys + rsize, fxs - r2, fys, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys, fxs - rsize, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + rsize, fys + rsize, fxs + r2, fys, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r2, fys, fxs + rsize, fys - rsize, ncol, thickness); - } - else if (shape == SHAPE_SHARP) { - - r2 = (double) rsize * 0.5; - - drawLineCanvas(dw, surface, cb, fxs - rsize, fys - r2, fxs + rsize, fys - r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - rsize, fys + r2, fxs + rsize, fys + r2, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys - rsize, fxs - r2, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r2, fys - rsize, fxs + r2, fys + rsize, ncol, thickness); - } - else if (shape == SHAPE_COLUMN) { - - r2 = (double) rsize * 0.5; - - drawLineCanvas(dw, surface, cb, fxs - r2, fys - rsize, fxs + r2, fys - rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys + rsize, fxs + r2, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs - r2, fys - rsize, fxs - r2, fys + rsize, ncol, thickness); - drawLineCanvas(dw, surface, cb, fxs + r2, fys - rsize, fxs + r2, fys + rsize, ncol, thickness); - } - else if (shape == SHAPE_FILLED) { - - drawDotCanvas(dw, surface, cb, fxs, fys, rsize * 2.0, ncol, 0); - } -} - -void drawFlushCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb) -{ - Uint32 *pixels = (Uint32 *) surface->pixels; - Uint32 *palette = dw->palette; - Uint8 *ltgamma = dw->ltgamma; - - int pitch, x, y; - int yspan, ncol, blend[3]; - - pitch = surface->pitch / 4; - pixels += cb->min_y * pitch; - - if (dw->antialiasing == DRAW_SOLID) { - - Uint8 nb, *canvas = (Uint8 *) dw->pixmap.canvas; - - yspan = dw->pixmap.yspan; - canvas += cb->min_y * yspan; - - for (y = cb->min_y; y <= cb->max_y; ++y) { - - for (x = cb->min_x; x <= cb->max_x; ++x) { - - nb = *(canvas + x); - - if (nb != 0) { - - *(pixels + x) = palette[nb]; - } - } - - pixels += pitch; - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_4X_MSAA) { - - Uint16 nb, *canvas = (Uint16 *) dw->pixmap.canvas; - - union { - - Uint32 l; - Uint8 b[4]; - } - vcol; - - yspan = dw->pixmap.yspan; - canvas += cb->min_y * yspan; - - for (y = cb->min_y; y <= cb->max_y; ++y) { - - for (x = cb->min_x; x <= cb->max_x; ++x) { - - nb = *(canvas + x); - - if (nb != 0) { - - palette[0] = *(pixels + x); - - ncol = (nb & 0x000FU) >> 0; - vcol.l = palette[ncol]; - - blend[0] = vcol.b[0]; - blend[1] = vcol.b[1]; - blend[2] = vcol.b[2]; - - ncol = (nb & 0x00F0U) >> 4; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb & 0x0F00U) >> 8; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb & 0xF000U) >> 12; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - vcol.b[0] = ltgamma[(blend[0] >> 2) & 0xFFU]; - vcol.b[1] = ltgamma[(blend[1] >> 2) & 0xFFU]; - vcol.b[2] = ltgamma[(blend[2] >> 2) & 0xFFU]; - vcol.b[3] = 0; - - *(pixels + x) = vcol.l; - } - } - - pixels += pitch; - canvas += yspan; - } - } - else if (dw->antialiasing == DRAW_8X_MSAA) { - - Uint16 nb[2], *canvas = (Uint16 *) dw->pixmap.canvas; - - union { - - Uint32 l; - Uint8 b[4]; - } - vcol; - - yspan = dw->pixmap.yspan * 2; - canvas += cb->min_y * yspan; - - for (y = cb->min_y; y <= cb->max_y; ++y) { - - for (x = cb->min_x; x <= cb->max_x; ++x) { - - nb[0] = *(canvas + x * 2 + 0); - nb[1] = *(canvas + x * 2 + 1); - - if ( nb[0] != 0 - || nb[1] != 0) { - - palette[0] = *(pixels + x); - - ncol = (nb[0] & 0x000FU) >> 0; - vcol.l = palette[ncol]; - - blend[0] = vcol.b[0]; - blend[1] = vcol.b[1]; - blend[2] = vcol.b[2]; - - ncol = (nb[0] & 0x00F0U) >> 4; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[0] & 0x0F00U) >> 8; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[0] & 0xF000U) >> 12; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[1] & 0x000FU) >> 0; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[1] & 0x00F0U) >> 4; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[1] & 0x0F00U) >> 8; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - ncol = (nb[1] & 0xF000U) >> 12; - vcol.l = palette[ncol]; - - blend[0] += vcol.b[0]; - blend[1] += vcol.b[1]; - blend[2] += vcol.b[2]; - - vcol.b[0] = ltgamma[(blend[0] >> 3) & 0xFFU]; - vcol.b[1] = ltgamma[(blend[1] >> 3) & 0xFFU]; - vcol.b[2] = ltgamma[(blend[2] >> 3) & 0xFFU]; - vcol.b[3] = 0; - - *(pixels + x) = vcol.l; - } - } - - pixels += pitch; - canvas += yspan; - } - } -} - diff --git a/phobia/gp/draw.h b/phobia/gp/draw.h deleted file mode 100644 index e669ed6..0000000 --- a/phobia/gp/draw.h +++ /dev/null @@ -1,141 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_DRAW_ -#define _H_DRAW_ - -#include -#include - -enum { - TEXT_CENTERED_ON_X = 1, - TEXT_CENTERED_ON_Y = 2, - TEXT_CENTERED = 3, - TEXT_VERTICAL = 4 -}; - -enum { - SHAPE_CIRCLE = 0, - SHAPE_RECTANGLE, - SHAPE_TRIANGLE, - SHAPE_ASTERIX, - SHAPE_STAR, - SHAPE_SHARP, - SHAPE_COLUMN, - SHAPE_FILLED, -}; - -enum { - DRAW_SOLID, - DRAW_4X_MSAA, - DRAW_8X_MSAA, -}; - -typedef struct { - - int min_x; - int min_y; - int max_x; - int max_y; -} -clipBox_t; - -typedef struct { - - int antialiasing; - int blendfont; - int thickness; - int gamma; - - int dash_context; - - int cached_x; - int cached_min_y; - int cached_max_y; - int cached_ncol; - - struct { - - int w; - int h; - - int yspan; - int len; - - void *canvas; - void *trial; - } - pixmap; - - Uint32 palette[16]; - Uint8 ltgamma[256]; - Uint8 ltcomap[256]; -} -draw_t; - -void drawDashReset(draw_t *dw); -void drawGamma(draw_t *dw); - -Uint32 drawRGBMap(draw_t *dw, Uint32 col); - -void drawClearSurface(draw_t *dw, SDL_Surface *surface, Uint32 col); -void drawClearCanvas(draw_t *dw); -void drawClearTrial(draw_t *dw); - -void drawPixmapAlloc(draw_t *dw, SDL_Surface *surface); -void drawPixmapClean(draw_t *dw); - -int clipBoxTest(clipBox_t *cb, int x, int y); - -void drawLine(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, Uint32 col); - -void drawDash(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, Uint32 col, int dash, int space); - -void drawLineCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness); - -void drawDashCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness, int dash, int space); - -int drawLineTrial(draw_t *dw, clipBox_t *cb, double fxs, double fys, - double fxe, double fye, int ncol, int thickness); - -void drawText(draw_t *dw, SDL_Surface *surface, TTF_Font *font, int xs, int ys, - const char *text, int flags, Uint32 col); - -void drawFillRect(SDL_Surface *surface, int xs, int ys, - int xe, int ye, Uint32 col); - -void drawClipRect(SDL_Surface *surface, clipBox_t *cb, int xs, int ys, - int xe, int ye, Uint32 col); - -void drawDotCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - int rsize, int ncol, int round); - -int drawDotTrial(draw_t *dw, clipBox_t *cb, double fxs, double fys, - int rsize, int ncol, int round); - -void drawMarkCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb, double fxs, double fys, - int rsize, int shape, int ncol, int thickness); - -void drawFlushCanvas(draw_t *dw, SDL_Surface *surface, clipBox_t *cb); - -#endif /* _H_DRAW_ */ - diff --git a/phobia/gp/edit.c b/phobia/gp/edit.c deleted file mode 100644 index 8f37293..0000000 --- a/phobia/gp/edit.c +++ /dev/null @@ -1,488 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include - -#include -#include - -#include "edit.h" -#include "draw.h" -#include "scheme.h" - -const char *utf8_go_next(const char *s) -{ - if (*s != 0) { - - ++s; - - while ((*s & 0xC0) == 0x80) ++s; - } - - return s; -} - -const char *utf8_go_prev(const char *s) -{ - --s; - - while ((*s & 0xC0) == 0x80) --s; - - return s; -} - -char *utf8_remove_next(char *s) -{ - char *q, *r; - - q = (char *) utf8_go_next(s); - r = s; - - do { - *s = *q; - - if (*q == 0) - break; - - q++; - s++; - } - while (1); - - return r; -} - -char *utf8_remove_prev(char *s) -{ - char *q, *r; - - q = (char *) utf8_go_prev(s); - r = q; - - do { - *q = *s; - - if (*s == 0) - break; - - q++; - s++; - } - while (1); - - return r; -} - -char *utf8_insert_prev(char *s, const char *i) -{ - char *q, *r; - int n; - - q = s + strlen(s); - - n = strlen(i); - r = s + n; - - do { - *(q + n) = *q; - - if (q == s) - break; - - q--; - } - while (1); - - do { - *s++ = *i++; - } - while (*i != 0); - - return r; -} - -char *utf8_backspace(char *s) -{ - return utf8_remove_prev(s + strlen(s)); -} - -int utf8_length(const char *s) -{ - int l = 0; - - do { - if (*s == 0) - break; - - l++; - - s = utf8_go_next(s); - } - while (1); - - return l; -} - -const char *utf8_skip(const char *s, int n) -{ - do { - if (*s == 0) - break; - - if (n > 0) n--; - else break; - - s = (char *) utf8_go_next(s); - } - while (1); - - return s; -} - -const char *utf8_skip_b(const char *s, int n) -{ - char *r; - - do { - if (*s == 0) - break; - - if (n > 0) ; - else break; - - r = (char *) utf8_go_next(s); - n += (int) (s - r); - s = r; - } - while (1); - - return s; -} - -static void -editBuild(edit_t *ed, int rep) -{ - int bT, bMIN, bMAX; - - /* To make it look pretty we force the font height to be odd. - * */ - ed->layout_height += (ed->layout_height & 1) ? 0 : 1; - - TTF_SizeUTF8(ed->font, ed->title, &bT, &bMAX); - TTF_SizeUTF8(ed->font, ed->text, &bMIN, &bMAX); - - bMAX = (bT > bMIN) ? bT : bMIN; - - if (rep == 0) { - - bMIN = (ed->screen.max_x - ed->screen.min_x) / 2; - bT = (bMIN > bMAX) ? bMIN : bMAX; - - ed->size_X = bT + 2 * ed->layout_height; - ed->size_Y = 3 * ed->layout_height; - } - else { - bMAX = bMAX + 2 * ed->layout_height; - ed->size_X = (bMAX > ed->size_X) ? bMAX : ed->size_X; - } - - if (ed->box_X < 0) { - - ed->box_X = (ed->screen.min_x + ed->screen.max_x - ed->size_X) / 2; - } - - if (ed->box_Y < 0) { - - ed->box_Y = (ed->screen.min_y + ed->screen.max_y - ed->size_Y) / 2; - } - - ed->box_X = (ed->box_X > ed->screen.max_x - ed->size_X) - ? ed->screen.max_x - ed->size_X : ed->box_X; - ed->box_Y = (ed->box_Y > ed->screen.max_y - ed->size_Y) - ? ed->screen.max_y - ed->size_Y : ed->box_Y; - - ed->box_X = (ed->box_X < ed->screen.min_x) ? ed->screen.min_x : ed->box_X; - ed->box_Y = (ed->box_Y < ed->screen.min_y) ? ed->screen.min_y : ed->box_Y; -} - -edit_t *editAlloc(draw_t *dw, scheme_t *sch) -{ - edit_t *ed; - - ed = calloc(1, sizeof(edit_t)); - - ed->dw = dw; - ed->sch = sch; - - return ed; -} - -void editClean(edit_t *ed) -{ - free(ed); -} - -void editLayout(edit_t *ed) -{ - if (ed->raised != 0) { - - editBuild(ed, 1); - } -} - -void editRaise(edit_t *ed, int id, const char *title, const char *text, int sx, int sy) -{ - if (ed->raised != 0) - return ; - - ed->raised = 1; - ed->entered = 0; - - ed->id = id; - ed->title = title; - - ed->cur_X = sx; - ed->cur_Y = sy; - - ed->box_X = ed->cur_X; - ed->box_Y = ed->cur_Y; - - strcpy(ed->text, text); - ed->text_cur = ed->text + strlen(ed->text); - - ed->list_fmt = ""; - - editBuild(ed, 0); -} - -void editHalt(edit_t *ed) -{ - ed->raised = 0; -} - -void editEvent(edit_t *ed, int evno, int ex, int ey) -{ - char curbuf[EDIT_STRING_MAX], *clip; - const char *curp, *curp_next; - int min_X, min_Y, max_X, max_Y; - - if (ed->raised == 0) - return ; - - ed->cur_X = ex; - ed->cur_Y = ey; - - if (evno == EDIT_EVNO_CLICK) { - - min_X = ed->box_X + ed->layout_height - ed->layout_height / 2; - min_Y = ed->box_Y + ed->layout_height + ed->layout_height / 2; - - max_X = ed->box_X + ed->size_X - ed->layout_height + ed->layout_height / 2; - max_Y = ed->box_Y + 2 * ed->layout_height + ed->layout_height / 2; - - if ( ed->cur_X > min_X && ed->cur_X < max_X - && ed->cur_Y > min_Y && ed->cur_Y < max_Y) { - - curbuf[0] = 0; - curp = ed->text; - - while (*curp != 0) { - - curp_next = utf8_go_next(curp); - - TTF_SizeUTF8(ed->font, curbuf, &min_X, &min_Y); - - strncat(curbuf, curp, curp_next - curp); - - TTF_SizeUTF8(ed->font, curbuf, &max_X, &min_Y); - - min_X += ed->box_X + ed->layout_height; - max_X += ed->box_X + ed->layout_height; - - if (ed->cur_X >= min_X && ed->cur_X < max_X) { - - ed->text_cur = (char *) curp; - break; - } - - curp = curp_next; - } - - if (*curp == 0) { - - TTF_SizeUTF8(ed->font, curbuf, &min_X, &min_Y); - - min_X += ed->box_X + ed->layout_height; - - if (ed->cur_X >= min_X) { - - ed->text_cur = (char *) curp; - } - } - } - } - else if (evno == EDIT_EVNO_ARROW_LEFT) { - - if (ed->text_cur != ed->text) { - - ed->text_cur = (char *) utf8_go_prev(ed->text_cur); - } - } - else if (evno == EDIT_EVNO_ARROW_RIGHT) { - - ed->text_cur = (char *) utf8_go_next(ed->text_cur); - } - else if (evno == EDIT_EVNO_RETURN) { - - ed->entered = 1; - } - else if (evno == EDIT_EVNO_BACKSPACE) { - - if (ed->text_cur != ed->text) { - - ed->text_cur = utf8_remove_prev(ed->text_cur); - } - } - else if (evno == EDIT_EVNO_DELETE) { - - ed->text_cur = utf8_remove_next(ed->text_cur); - } - else if (evno == EDIT_EVNO_CTRL_X) { - - ed->text[0] = 0; - ed->text_cur = ed->text; - } - else if (evno == EDIT_EVNO_CTRL_C) { - - SDL_SetClipboardText(ed->text); - } - else if (evno == EDIT_EVNO_CTRL_V) { - - if (SDL_HasClipboardText() != 0) { - - clip = SDL_GetClipboardText(); - - if (clip != NULL) { - - if (strlen(ed->text) + strlen(clip) < EDIT_TEXT_SIZE) { - - ed->text_cur = utf8_insert_prev(ed->text_cur, clip); - } - - SDL_free(clip); - } - } - } - else if (evno == EDIT_EVNO_TAB) { - - const char *fmt; - char *eol; - int len; - - if (ed->list_fmt[0] != 0) { - - len = strlen(ed->text); - - if (len > 4) { - - eol = ed->text + (len - 4); - fmt = ed->list_fmt; - - do { - if (strcmp(eol, fmt) == 0) { - - fmt += strlen(fmt) + 1; - fmt = (*fmt == 0) ? ed->list_fmt : fmt; - - strcpy(eol, fmt); - break; - } - - fmt += strlen(fmt) + 1; - } - while (*fmt != 0); - } - } - } - - editBuild(ed, 1); -} - -void editEventText(edit_t *ed, const char *tx) -{ - if (strlen(ed->text) < EDIT_TEXT_SIZE) { - - ed->text_cur = utf8_insert_prev(ed->text_cur, tx); - editBuild(ed, 1); - } -} - -void editDraw(edit_t *ed, SDL_Surface *surface) -{ - char curbuf[EDIT_STRING_MAX]; - int baseX, baseY, endX, endY; - - if (ed->raised == 0) - return ; - - SDL_LockSurface(surface); - - drawFillRect(surface, ed->box_X, ed->box_Y, ed->box_X + ed->size_X, - ed->box_Y + ed->size_Y, ed->sch->menu_background); - - baseX = ed->box_X + ed->layout_height - ed->layout_height / 2; - baseY = ed->box_Y + ed->layout_height + ed->layout_height / 2; - - endX = ed->box_X + ed->size_X - ed->layout_height + ed->layout_height / 2; - endY = ed->box_Y + 2 * ed->layout_height + ed->dw->thickness + ed->layout_height / 2; - - drawLine(ed->dw, surface, &ed->screen, baseX, baseY, endX, baseY, ed->sch->menu_scrollbar); - drawLine(ed->dw, surface, &ed->screen, endX, baseY, endX, endY, ed->sch->menu_scrollbar); - drawLine(ed->dw, surface, &ed->screen, baseX, baseY, baseX, endY, ed->sch->menu_scrollbar); - drawLine(ed->dw, surface, &ed->screen, baseX, endY, endX, endY, ed->sch->menu_scrollbar); - - SDL_UnlockSurface(surface); - - baseX = ed->box_X + (ed->size_X + ed->layout_height) / 2; - baseY = ed->box_Y + ed->layout_height / 2; - - drawText(ed->dw, surface, ed->font, baseX, baseY, ed->title, - TEXT_CENTERED, ed->sch->menu_item_text); - - baseX = ed->box_X + ed->layout_height; - baseY = ed->box_Y + 2 * ed->layout_height; - - drawText(ed->dw, surface, ed->font, baseX, baseY, ed->text, - TEXT_CENTERED_ON_Y, ed->sch->menu_item_text); - - curbuf[0] = 0; - strncat(curbuf, ed->text, ed->text_cur - ed->text); - - TTF_SizeUTF8(ed->font, curbuf, &baseX, &endX); - - baseX += ed->box_X + ed->layout_height; - baseY += - ed->layout_height / 2; - - if (SDL_GetTicks() & 0x0100U) { - - drawFillRect(surface, baseX, baseY + 2, baseX + ed->layout_long - 1, - baseY + ed->layout_height - 4, ed->sch->menu_item_text); - } -} - diff --git a/phobia/gp/edit.h b/phobia/gp/edit.h deleted file mode 100644 index f32c2a2..0000000 --- a/phobia/gp/edit.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_EDIT_ -#define _H_EDIT_ - -#include -#include - -#include "draw.h" -#include "scheme.h" - -#define EDIT_TEXT_SIZE 360 -#define EDIT_STRING_MAX 400 - -typedef struct { - - int raised; - int entered; - int id; - - const char *title; - - int cur_X; - int cur_Y; - - int box_X; - int box_Y; - - int size_X; - int size_Y; - - TTF_Font *font; - clipBox_t screen; - - char text[EDIT_STRING_MAX]; - char *text_cur; - - int layout_height; - int layout_long; - - const char *list_fmt; - - draw_t *dw; - scheme_t *sch; -} -edit_t; - -enum { - EDIT_EVNO_CLICK = 1, - EDIT_EVNO_ARROW_LEFT, - EDIT_EVNO_ARROW_RIGHT, - EDIT_EVNO_RETURN, - EDIT_EVNO_BACKSPACE, - EDIT_EVNO_DELETE, - EDIT_EVNO_CTRL_X, - EDIT_EVNO_CTRL_C, - EDIT_EVNO_CTRL_V, - EDIT_EVNO_TAB, -}; - -const char *utf8_go_next(const char *s); -const char *utf8_go_prev(const char *s); -char *utf8_remove_next(char *s); -char *utf8_remove_prev(char *s); -char *utf8_insert_prev(char *s, const char *i); -char *utf8_backspace(char *s); -int utf8_length(const char *s); -const char *utf8_skip(const char *s, int n); -const char *utf8_skip_b(const char *s, int n); - -edit_t *editAlloc(draw_t *dw, scheme_t *sch); -void editClean(edit_t *ed); - -void editLayout(edit_t *ed); -void editRaise(edit_t *ed, int id, const char *title, const char *text, int sx, int sy); -void editHalt(edit_t *ed); -void editEvent(edit_t *ed, int evno, int ex, int ey); -void editEventText(edit_t *ed, const char *tx); -void editDraw(edit_t *ed, SDL_Surface *surface); - -#endif /* _H_EDIT_ */ - diff --git a/phobia/gp/font.c b/phobia/gp/font.c deleted file mode 100644 index a238547..0000000 --- a/phobia/gp/font.c +++ /dev/null @@ -1,14599 +0,0 @@ -#include - -#include - -/* - * Roboto Mono Regular TTF - * Source: https://github.com/googlefonts/RobotoMono - * - * */ -const unsigned char TTF_roboto_mono_normal[] = { - - 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x80, 0x00, 0x03, 0x00, 0x60, - 0x47, 0x53, 0x55, 0x42, 0x36, 0xbd, 0x35, 0xcb, 0x00, 0x01, 0x50, 0x8c, - 0x00, 0x00, 0x02, 0xa8, 0x4f, 0x53, 0x2f, 0x32, 0x97, 0xb7, 0xc1, 0x74, - 0x00, 0x01, 0x23, 0x54, 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, - 0xe7, 0x70, 0xcc, 0x2e, 0x00, 0x01, 0x53, 0x34, 0x00, 0x00, 0x00, 0x48, - 0x63, 0x6d, 0x61, 0x70, 0xab, 0x9c, 0xd1, 0xb9, 0x00, 0x01, 0x23, 0xb4, - 0x00, 0x00, 0x07, 0x60, 0x67, 0x61, 0x73, 0x70, 0x00, 0x00, 0x00, 0x10, - 0x00, 0x01, 0x50, 0x84, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6c, 0x79, 0x66, - 0xa9, 0xce, 0x15, 0xe8, 0x00, 0x00, 0x00, 0xec, 0x00, 0x01, 0x12, 0x4c, - 0x68, 0x65, 0x61, 0x64, 0x01, 0x35, 0x9c, 0x0e, 0x00, 0x01, 0x1b, 0x28, - 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, 0x0a, 0xb1, 0x01, 0x2a, - 0x00, 0x01, 0x23, 0x30, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6d, 0x74, 0x78, - 0x07, 0x17, 0x13, 0xd1, 0x00, 0x01, 0x1b, 0x60, 0x00, 0x00, 0x07, 0xd0, - 0x6c, 0x6f, 0x63, 0x61, 0x3e, 0xee, 0x82, 0x8b, 0x00, 0x01, 0x13, 0x58, - 0x00, 0x00, 0x07, 0xd0, 0x6d, 0x61, 0x78, 0x70, 0x04, 0x06, 0x01, 0x3a, - 0x00, 0x01, 0x13, 0x38, 0x00, 0x00, 0x00, 0x20, 0x6e, 0x61, 0x6d, 0x65, - 0x60, 0x39, 0x8a, 0xc7, 0x00, 0x01, 0x2b, 0x1c, 0x00, 0x00, 0x03, 0xac, - 0x70, 0x6f, 0x73, 0x74, 0x97, 0xb9, 0xaf, 0x06, 0x00, 0x01, 0x2e, 0xc8, - 0x00, 0x00, 0x21, 0xbc, 0x70, 0x72, 0x65, 0x70, 0x68, 0x06, 0x8c, 0x85, - 0x00, 0x01, 0x2b, 0x14, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x90, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x37, 0x13, 0x13, 0x03, - 0x65, 0x73, 0xb8, 0xfe, 0x32, 0x9b, 0xfe, 0x2a, 0xb9, 0x75, 0x32, 0xc3, - 0xc0, 0x01, 0x79, 0xfe, 0x87, 0x05, 0xb0, 0xfa, 0x50, 0x01, 0x79, 0xa1, - 0x02, 0x78, 0xfd, 0x88, 0x00, 0x03, 0x00, 0xac, 0x00, 0x00, 0x04, 0x60, - 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x39, 0x00, 0x00, 0x73, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x13, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x21, 0x11, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0xac, 0x01, 0xd2, 0x5d, - 0xaf, 0x43, 0x43, 0x50, 0x01, 0x27, 0x23, 0x21, 0x66, 0x37, 0x35, 0x4b, - 0x1f, 0x1e, 0x23, 0x01, 0x01, 0x50, 0x43, 0x43, 0xac, 0x5a, 0xfe, 0x4f, - 0xba, 0x01, 0x27, 0x3b, 0x66, 0x26, 0x26, 0x2b, 0x01, 0x2f, 0x28, 0x28, - 0x68, 0x3a, 0xfe, 0xe3, 0xfd, 0x36, 0x67, 0x28, 0x27, 0x2f, 0x30, 0x27, - 0x27, 0x64, 0x34, 0x01, 0x38, 0x35, 0x34, 0x9c, 0x66, 0x41, 0x70, 0x2d, - 0x29, 0x44, 0x0d, 0x03, 0x17, 0x34, 0x26, 0x25, 0x5e, 0x39, 0x66, 0x92, - 0x2f, 0x2f, 0x2d, 0x01, 0xfc, 0xf9, 0x02, 0x24, 0x21, 0x22, 0x60, 0x3e, - 0x3d, 0x60, 0x21, 0x21, 0x25, 0x01, 0x02, 0xa6, 0x01, 0xcf, 0x01, 0x1a, - 0x1b, 0x1c, 0x56, 0x3d, 0x39, 0x56, 0x1d, 0x1e, 0x1f, 0x01, 0x00, 0x01, - 0x00, 0x6b, 0xff, 0xec, 0x04, 0x5d, 0x05, 0xc4, 0x00, 0x3f, 0x00, 0x00, - 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x04, 0x5d, 0xb9, 0x09, 0x2c, 0x25, 0x25, 0x6b, - 0x49, 0x43, 0x64, 0x25, 0x25, 0x30, 0x0f, 0x0f, 0x0d, 0x0d, 0x0f, 0x0f, - 0x31, 0x25, 0x24, 0x65, 0x42, 0x49, 0x6b, 0x25, 0x25, 0x2c, 0x09, 0xb9, - 0x0c, 0x4b, 0x3e, 0x3e, 0xac, 0x6d, 0x5b, 0x92, 0x39, 0x3a, 0x53, 0x1b, - 0x1c, 0x1b, 0x01, 0x01, 0x1b, 0x1c, 0x1b, 0x53, 0x3a, 0x39, 0x93, 0x5a, - 0x69, 0xab, 0x3f, 0x3e, 0x4e, 0x01, 0xb6, 0x42, 0x71, 0x29, 0x2a, 0x2e, - 0x2b, 0x26, 0x25, 0x62, 0x38, 0x37, 0x73, 0x36, 0xcd, 0x36, 0x73, 0x37, - 0x37, 0x62, 0x25, 0x25, 0x2b, 0x31, 0x2b, 0x2b, 0x72, 0x42, 0x68, 0xac, - 0x3e, 0x3d, 0x43, 0x33, 0x2d, 0x2d, 0x7b, 0x48, 0x48, 0x9e, 0x51, 0xcb, - 0x51, 0x9e, 0x48, 0x48, 0x7a, 0x2d, 0x2d, 0x33, 0x43, 0x3d, 0x3c, 0xa9, - 0x00, 0x02, 0x00, 0x9b, 0x00, 0x00, 0x04, 0x70, 0x05, 0xb0, 0x00, 0x15, - 0x00, 0x2b, 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x17, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, - 0x9b, 0x01, 0x51, 0x69, 0xb5, 0x48, 0x44, 0x6e, 0x24, 0x23, 0x25, 0x01, - 0x27, 0x25, 0x29, 0x89, 0x59, 0x40, 0x97, 0x55, 0xfe, 0xaf, 0xbc, 0x95, - 0x45, 0x74, 0x2f, 0x42, 0x5b, 0x1b, 0x15, 0x15, 0x01, 0x01, 0x14, 0x14, - 0x17, 0x4f, 0x36, 0x33, 0x83, 0x50, 0x95, 0x01, 0x30, 0x2d, 0x2b, 0x7a, - 0x4b, 0x48, 0xac, 0x60, 0x6b, 0x64, 0xb0, 0x4a, 0x57, 0x85, 0x29, 0x1e, - 0x21, 0x01, 0x98, 0x01, 0x1d, 0x1a, 0x23, 0x71, 0x46, 0x36, 0x7d, 0x44, - 0x6d, 0x43, 0x7b, 0x35, 0x41, 0x69, 0x24, 0x23, 0x26, 0x01, 0x00, 0x01, - 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x03, 0xcf, 0xfd, 0xa0, 0x02, 0xbc, 0xfc, 0x8b, 0x03, 0x7e, 0xfd, 0x3b, - 0x02, 0xa1, 0x9d, 0x01, 0xd4, 0x9e, 0xfa, 0x50, 0x9d, 0x02, 0x04, 0x00, - 0x00, 0x01, 0x00, 0xbf, 0x00, 0x00, 0x04, 0x3d, 0x05, 0xb0, 0x00, 0x09, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, - 0x03, 0xd8, 0xfd, 0xa2, 0x02, 0xc3, 0xfc, 0x82, 0xbb, 0x02, 0x83, 0x9d, - 0x01, 0xf2, 0x9e, 0xfa, 0x50, 0x02, 0x83, 0x00, 0x00, 0x01, 0x00, 0x64, - 0xff, 0xeb, 0x04, 0x5c, 0x05, 0xc4, 0x00, 0x43, 0x00, 0x00, 0x65, 0x03, - 0x21, 0x15, 0x21, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x36, 0x37, 0x36, 0x36, 0x04, 0x5c, 0x03, 0xfe, 0x28, 0x01, - 0x28, 0x02, 0x17, 0x44, 0x27, 0x27, 0x53, 0x26, 0x42, 0x68, 0x27, 0x28, - 0x38, 0x12, 0x12, 0x11, 0x01, 0x0e, 0x10, 0x10, 0x32, 0x26, 0x26, 0x66, - 0x42, 0x45, 0x68, 0x26, 0x25, 0x2e, 0x0b, 0xb7, 0x09, 0x4e, 0x40, 0x40, - 0xac, 0x66, 0x5c, 0x94, 0x3a, 0x3b, 0x54, 0x1c, 0x1c, 0x1b, 0x01, 0x01, - 0x1f, 0x1f, 0x1e, 0x5a, 0x3c, 0x3c, 0x97, 0x5a, 0x59, 0xa2, 0x46, 0x29, - 0x4c, 0xbf, 0x02, 0x16, 0x9c, 0xfe, 0xb9, 0x21, 0x29, 0x0c, 0x0c, 0x08, - 0x01, 0x01, 0x2d, 0x26, 0x26, 0x64, 0x38, 0x38, 0x75, 0x37, 0xab, 0x36, - 0x74, 0x38, 0x38, 0x65, 0x26, 0x26, 0x2d, 0x2b, 0x26, 0x26, 0x6b, 0x3f, - 0x66, 0xa5, 0x3b, 0x3a, 0x3f, 0x36, 0x2e, 0x2f, 0x7f, 0x4a, 0x4a, 0xa1, - 0x51, 0xa9, 0x52, 0xa1, 0x49, 0x4a, 0x7e, 0x2e, 0x2f, 0x35, 0x01, 0x01, - 0x29, 0x2a, 0x18, 0x41, 0x00, 0x01, 0x00, 0x8d, 0x00, 0x00, 0x04, 0x3f, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, 0x21, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x04, 0x3f, 0xaf, 0xfd, 0xab, 0xae, - 0xae, 0x02, 0x55, 0x05, 0xb0, 0xfd, 0x8e, 0x02, 0x72, 0xfa, 0x50, 0x02, - 0xa1, 0xfd, 0x5f, 0x00, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, - 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0xae, 0x01, 0x55, 0xfe, 0xab, 0x03, - 0x70, 0xfe, 0xa3, 0x01, 0x5d, 0x05, 0xb0, 0xa1, 0xfb, 0x91, 0xa0, 0xa0, - 0x04, 0x6f, 0xa1, 0x00, 0x00, 0x01, 0x00, 0x62, 0xff, 0xec, 0x04, 0x16, - 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x11, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x03, 0x59, - 0x02, 0x27, 0x24, 0x25, 0x68, 0x42, 0x40, 0x67, 0x25, 0x25, 0x2b, 0x03, - 0xbc, 0x09, 0x4a, 0x3e, 0x3d, 0xa7, 0x66, 0x65, 0xab, 0x3f, 0x3f, 0x49, - 0x02, 0x05, 0xb0, 0xfc, 0x0b, 0x3e, 0x6f, 0x2a, 0x2a, 0x31, 0x2a, 0x27, - 0x26, 0x68, 0x3d, 0x65, 0xa3, 0x39, 0x3a, 0x3e, 0x45, 0x3e, 0x3d, 0xaa, - 0x65, 0x03, 0xf5, 0x00, 0x00, 0x01, 0x00, 0xac, 0x00, 0x00, 0x04, 0xa4, - 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, - 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x0b, 0x01, 0xb8, 0xe1, - 0xfd, 0xe1, 0x01, 0xfd, 0xe1, 0xfe, 0x55, 0x8d, 0xbd, 0xbd, 0x02, 0xa4, - 0xfd, 0x5c, 0x03, 0x33, 0x02, 0x7d, 0xfd, 0xe9, 0xb0, 0x02, 0xc7, 0xfa, - 0x50, 0x01, 0xec, 0x00, 0x00, 0x01, 0x00, 0xc6, 0x00, 0x00, 0x04, 0x47, - 0x05, 0xb0, 0x00, 0x05, 0x00, 0x00, 0x65, 0x11, 0x23, 0x11, 0x21, 0x35, - 0x01, 0x7f, 0xb9, 0x03, 0x81, 0x9d, 0x05, 0x13, 0xfa, 0x50, 0x9d, 0x00, - 0x00, 0x01, 0x00, 0x94, 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb0, 0x00, 0x0e, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x03, 0x13, 0x33, 0x01, 0x03, - 0x11, 0x33, 0x11, 0x23, 0x01, 0x01, 0x79, 0xe5, 0xb4, 0x0f, 0xf7, 0x6a, - 0x01, 0x0d, 0x0f, 0xb4, 0xe6, 0xff, 0x00, 0x05, 0xb0, 0xfa, 0x50, 0x02, - 0x45, 0x02, 0x4b, 0xfd, 0x05, 0x03, 0x10, 0xfd, 0xa0, 0xfd, 0xbb, 0x05, - 0xb0, 0xfd, 0x28, 0x00, 0x00, 0x01, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x3e, - 0x05, 0xb0, 0x00, 0x09, 0x00, 0x00, 0x61, 0x11, 0x23, 0x03, 0x01, 0x23, - 0x11, 0x33, 0x13, 0x01, 0x04, 0x3e, 0xbb, 0x03, 0xfd, 0xcb, 0xbc, 0xbb, - 0x03, 0x02, 0x35, 0x05, 0xb0, 0xfb, 0xc2, 0x04, 0x3e, 0xfa, 0x50, 0x04, - 0x40, 0xfb, 0xc0, 0x00, 0x00, 0x02, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, - 0x05, 0xc4, 0x00, 0x25, 0x00, 0x4b, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x61, 0x01, 0x19, 0x1a, 0x1b, 0x51, 0x38, 0x38, 0x92, 0x5a, 0x5a, - 0x91, 0x38, 0x38, 0x51, 0x1a, 0x1b, 0x19, 0x01, 0x01, 0x1a, 0x1b, 0x1a, - 0x52, 0x38, 0x38, 0x91, 0x5a, 0x5a, 0x91, 0x38, 0x38, 0x51, 0x1a, 0x1a, - 0x19, 0xb6, 0x01, 0x0b, 0x0e, 0x0f, 0x2f, 0x23, 0x24, 0x63, 0x41, 0x41, - 0x62, 0x24, 0x24, 0x30, 0x0f, 0x0f, 0x0d, 0x01, 0x01, 0x0d, 0x0f, 0x0e, - 0x30, 0x24, 0x24, 0x62, 0x40, 0x41, 0x62, 0x24, 0x24, 0x30, 0x0f, 0x0e, - 0x0c, 0x02, 0x84, 0xa6, 0x4e, 0xa0, 0x4a, 0x4a, 0x81, 0x30, 0x30, 0x37, - 0x37, 0x30, 0x31, 0x81, 0x4a, 0x4a, 0x9f, 0x4e, 0xa6, 0x4e, 0x9e, 0x4a, - 0x4a, 0x81, 0x30, 0x30, 0x37, 0x37, 0x30, 0x30, 0x80, 0x4a, 0x4a, 0x9f, - 0xf6, 0xa8, 0x34, 0x72, 0x37, 0x38, 0x65, 0x26, 0x27, 0x2e, 0x2e, 0x27, - 0x26, 0x66, 0x38, 0x37, 0x72, 0x33, 0xa8, 0x33, 0x71, 0x38, 0x37, 0x65, - 0x27, 0x26, 0x2e, 0x2d, 0x26, 0x27, 0x65, 0x37, 0x38, 0x71, 0x00, 0x02, - 0x00, 0xbf, 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x00, 0x10, 0x00, 0x1f, - 0x00, 0x00, 0x41, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, 0x11, 0x11, 0x21, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x78, - 0x01, 0x1f, 0x62, 0xaf, 0x42, 0x42, 0x4d, 0x4d, 0x42, 0x42, 0xaf, 0x62, - 0xfe, 0x28, 0xb9, 0x01, 0x1f, 0x40, 0x6d, 0x28, 0x27, 0x2d, 0x2d, 0x28, - 0x28, 0x6c, 0x40, 0x02, 0x48, 0x01, 0x3a, 0x37, 0x37, 0xa1, 0x69, 0x69, - 0xa2, 0x37, 0x37, 0x3a, 0x02, 0xfa, 0x50, 0x02, 0xe0, 0x02, 0x38, 0x01, - 0x28, 0x25, 0x25, 0x6a, 0x42, 0x42, 0x67, 0x24, 0x24, 0x27, 0x01, 0x00, - 0x00, 0x02, 0x00, 0x5e, 0xff, 0x0a, 0x04, 0x8c, 0x05, 0xc4, 0x00, 0x28, - 0x00, 0x4e, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x05, 0x37, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x04, - 0x6e, 0x01, 0x1a, 0x1a, 0x1b, 0x53, 0x39, 0x3a, 0x95, 0x5d, 0x5d, 0x95, - 0x39, 0x3a, 0x52, 0x1b, 0x1b, 0x1a, 0x01, 0x01, 0x1a, 0x1b, 0x1b, 0x54, - 0x3a, 0x39, 0x94, 0x5d, 0x24, 0x43, 0x1f, 0x01, 0x20, 0x7f, 0xfb, 0x3a, - 0x53, 0x1b, 0x1a, 0x1a, 0xb7, 0x01, 0x0b, 0x0e, 0x0f, 0x30, 0x25, 0x25, - 0x67, 0x45, 0x44, 0x67, 0x25, 0x25, 0x31, 0x0f, 0x0f, 0x0d, 0x0d, 0x0f, - 0x0f, 0x31, 0x25, 0x25, 0x66, 0x44, 0x45, 0x67, 0x25, 0x25, 0x31, 0x0f, - 0x0e, 0x0b, 0x02, 0x97, 0x80, 0x50, 0xa5, 0x4c, 0x4c, 0x85, 0x31, 0x31, - 0x39, 0x39, 0x31, 0x32, 0x85, 0x4c, 0x4c, 0xa4, 0x50, 0x80, 0x50, 0xa3, - 0x4c, 0x4c, 0x85, 0x31, 0x31, 0x39, 0x09, 0x09, 0xf4, 0x79, 0xd1, 0x31, - 0x85, 0x4c, 0x4c, 0xa4, 0xd3, 0x82, 0x37, 0x77, 0x3a, 0x3a, 0x68, 0x27, - 0x28, 0x2f, 0x2f, 0x28, 0x28, 0x68, 0x3a, 0x3a, 0x77, 0x36, 0x82, 0x36, - 0x77, 0x3a, 0x39, 0x68, 0x28, 0x27, 0x2f, 0x2e, 0x27, 0x28, 0x68, 0x39, - 0x3a, 0x77, 0x00, 0x02, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x72, 0x05, 0xb0, - 0x00, 0x14, 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x33, 0x37, 0x01, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, - 0x11, 0x33, 0x11, 0x35, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x02, 0x90, 0x01, 0x1e, 0xc3, 0x01, - 0xfe, 0xcb, 0x3c, 0x64, 0x24, 0x24, 0x29, 0x4d, 0x43, 0x44, 0xb4, 0x66, - 0xfe, 0x55, 0xb8, 0xf3, 0x43, 0x71, 0x29, 0x29, 0x2e, 0x30, 0x29, 0x2a, - 0x6e, 0x3e, 0x02, 0x52, 0xfd, 0xae, 0x0c, 0x02, 0x6e, 0x1a, 0x4a, 0x30, - 0x30, 0x76, 0x47, 0x6e, 0xa3, 0x36, 0x36, 0x36, 0x02, 0xfa, 0x50, 0x02, - 0x52, 0x98, 0x02, 0x2e, 0x01, 0x24, 0x23, 0x24, 0x69, 0x46, 0x42, 0x65, - 0x23, 0x23, 0x25, 0x01, 0x00, 0x01, 0x00, 0x76, 0xff, 0xec, 0x04, 0x69, - 0x05, 0xc4, 0x00, 0x49, 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0xa8, 0x34, 0x29, - 0x29, 0x69, 0x36, 0x44, 0x73, 0x2c, 0x2c, 0x38, 0x09, 0xbd, 0x03, 0x4d, - 0x42, 0x4a, 0xc9, 0x68, 0x57, 0xae, 0x45, 0x45, 0x57, 0x51, 0x42, 0x43, - 0xa2, 0x51, 0x31, 0x6f, 0x2f, 0x30, 0x3e, 0x01, 0x2f, 0x28, 0x27, 0x65, - 0x35, 0x42, 0x69, 0x26, 0x26, 0x2e, 0x08, 0xbe, 0x02, 0x52, 0x44, 0x44, - 0xb0, 0x5f, 0x56, 0xaa, 0x43, 0x43, 0x53, 0x53, 0x42, 0x41, 0x9f, 0x4d, - 0x35, 0x73, 0x30, 0x30, 0x3d, 0x01, 0x70, 0x3c, 0x57, 0x1c, 0x1d, 0x1b, - 0x25, 0x25, 0x24, 0x69, 0x44, 0x5e, 0x99, 0x39, 0x42, 0x46, 0x31, 0x31, - 0x30, 0x92, 0x62, 0x61, 0x94, 0x33, 0x37, 0x47, 0x19, 0x0f, 0x28, 0x1e, - 0x1e, 0x57, 0x3f, 0x3a, 0x58, 0x1e, 0x1e, 0x1e, 0x29, 0x25, 0x25, 0x67, - 0x3f, 0x64, 0xa2, 0x39, 0x39, 0x3f, 0x35, 0x33, 0x33, 0x94, 0x5e, 0x5e, - 0x8b, 0x33, 0x32, 0x47, 0x19, 0x11, 0x2a, 0x1f, 0x20, 0x5c, 0x00, 0x01, - 0x00, 0x4c, 0x00, 0x00, 0x04, 0x84, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x84, 0xfb, 0xc8, - 0x01, 0xc2, 0xb4, 0x05, 0x12, 0x9e, 0x9e, 0xfa, 0xee, 0x05, 0x12, 0x00, - 0x00, 0x01, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x05, 0xb0, 0x00, 0x1d, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, 0x40, 0xb3, 0x03, - 0x02, 0x26, 0x24, 0x25, 0x6c, 0x47, 0x47, 0x6d, 0x24, 0x25, 0x27, 0x01, - 0x04, 0xb0, 0x02, 0x01, 0x46, 0x3e, 0x3e, 0xae, 0x6a, 0x68, 0xae, 0x3f, - 0x3f, 0x48, 0x05, 0xb0, 0xfc, 0x26, 0x41, 0x78, 0x2e, 0x2f, 0x37, 0x38, - 0x2e, 0x2e, 0x78, 0x41, 0x03, 0xda, 0xfc, 0x26, 0x66, 0xb3, 0x42, 0x43, - 0x4c, 0x4d, 0x43, 0x42, 0xb2, 0x66, 0x00, 0x01, 0x00, 0x47, 0x00, 0x00, - 0x04, 0x7f, 0x05, 0xb0, 0x00, 0x08, 0x00, 0x00, 0x61, 0x33, 0x01, 0x23, - 0x01, 0x07, 0x27, 0x01, 0x23, 0x02, 0x13, 0xa1, 0x01, 0xcb, 0xc5, 0xfe, - 0xbe, 0x16, 0x15, 0xfe, 0xc0, 0xc6, 0x05, 0xb0, 0xfb, 0xc3, 0x49, 0x47, - 0x04, 0x3f, 0x00, 0x01, 0x00, 0x49, 0x00, 0x00, 0x04, 0x9e, 0x05, 0xb0, - 0x00, 0x12, 0x00, 0x00, 0x73, 0x33, 0x13, 0x37, 0x17, 0x13, 0x33, 0x13, - 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0xfa, - 0xbe, 0xb2, 0x0b, 0x0a, 0xb1, 0xbd, 0xb1, 0xaf, 0x69, 0x06, 0x0b, 0xb1, - 0xa1, 0xb0, 0x0b, 0x06, 0x69, 0xb0, 0x04, 0x0b, 0x3e, 0x3d, 0xfb, 0xf4, - 0x05, 0xb0, 0xfc, 0x16, 0x3c, 0x3b, 0x03, 0xeb, 0xfc, 0x16, 0x3c, 0x3a, - 0x03, 0xec, 0x00, 0x01, 0x00, 0x57, 0x00, 0x00, 0x04, 0x8f, 0x05, 0xb0, - 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x01, - 0x33, 0x01, 0x01, 0x23, 0x02, 0x71, 0xfe, 0xca, 0xd9, 0x01, 0xa7, 0xfe, - 0x4e, 0xdb, 0x01, 0x43, 0x01, 0x42, 0xd8, 0xfe, 0x4f, 0x01, 0xa7, 0xda, - 0x03, 0x75, 0x02, 0x3b, 0xfd, 0x2e, 0xfd, 0x22, 0x02, 0x46, 0xfd, 0xba, - 0x02, 0xde, 0x02, 0xd2, 0x00, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x04, 0x79, - 0x05, 0xb0, 0x00, 0x08, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x13, 0x33, - 0x13, 0x01, 0x23, 0x02, 0x5b, 0xfe, 0xb5, 0xd3, 0x01, 0xc5, 0x03, 0xac, - 0x03, 0x01, 0xc5, 0xd2, 0x02, 0xd5, 0x02, 0xdb, 0xfc, 0x6f, 0xfd, 0xe1, - 0x02, 0x1f, 0x03, 0x91, 0x00, 0x01, 0x00, 0x72, 0x00, 0x00, 0x04, 0x37, - 0x05, 0xb0, 0x00, 0x09, 0x00, 0x00, 0x65, 0x01, 0x27, 0x21, 0x15, 0x21, - 0x01, 0x17, 0x21, 0x35, 0x01, 0x45, 0x02, 0xd7, 0x02, 0xfc, 0x65, 0x02, - 0xc8, 0xfd, 0x2b, 0x02, 0x03, 0xc3, 0x9d, 0x04, 0x86, 0x8d, 0x9e, 0xfb, - 0x7e, 0x90, 0x9d, 0x00, 0x00, 0x02, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, - 0x04, 0x4e, 0x00, 0x35, 0x00, 0x49, 0x00, 0x00, 0x61, 0x33, 0x35, 0x26, - 0x26, 0x35, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x15, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x16, 0x16, 0x25, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x33, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x75, - 0xc1, 0x12, 0x14, 0x42, 0x39, 0x3a, 0x9e, 0x5c, 0x65, 0x9f, 0x37, 0x38, - 0x3b, 0x01, 0xba, 0x21, 0x1e, 0x1e, 0x57, 0x37, 0x3b, 0x5f, 0x21, 0x21, - 0x24, 0xca, 0x71, 0xb7, 0x41, 0x41, 0x47, 0x35, 0x31, 0x30, 0x8b, 0x56, - 0x35, 0x5e, 0x2a, 0x29, 0x45, 0x1c, 0x03, 0x0d, 0xfe, 0xc4, 0x36, 0x52, - 0x1b, 0x1b, 0x1b, 0x1f, 0x1e, 0x2a, 0x8f, 0x60, 0xac, 0x10, 0x38, 0x26, - 0x27, 0x5e, 0x10, 0x2d, 0x79, 0x36, 0x01, 0xf7, 0x5b, 0x88, 0x2e, 0x2d, - 0x2d, 0x38, 0x2d, 0x2e, 0x72, 0x3b, 0x22, 0x3f, 0x17, 0x17, 0x1c, 0x1e, - 0x1b, 0x1c, 0x4e, 0x31, 0x55, 0x2c, 0x2c, 0x2d, 0x86, 0x59, 0x44, 0x75, - 0x2a, 0x2b, 0x32, 0x16, 0x13, 0x13, 0x32, 0x1c, 0x22, 0x3f, 0x78, 0x1c, - 0x19, 0x18, 0x44, 0x28, 0x2a, 0x42, 0x18, 0x22, 0x21, 0xdb, 0x20, 0x3b, - 0x17, 0x17, 0x1c, 0x00, 0x00, 0x02, 0x00, 0xaf, 0xff, 0xec, 0x04, 0x43, - 0x06, 0x00, 0x00, 0x23, 0x00, 0x43, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x11, 0x23, 0x11, 0x33, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x04, 0x43, 0x1c, 0x1b, 0x1a, 0x44, 0x2b, 0x30, - 0x76, 0x46, 0x38, 0x60, 0x28, 0x20, 0x38, 0x17, 0xb9, 0xaa, 0x09, 0x12, - 0x28, 0x16, 0x2e, 0x73, 0x46, 0x3d, 0x69, 0x2c, 0x3d, 0x57, 0x1b, 0x14, - 0x15, 0xb9, 0x0c, 0x0d, 0x10, 0x36, 0x28, 0x1e, 0x4c, 0x2e, 0x30, 0x50, - 0x20, 0x20, 0x31, 0x12, 0x11, 0x31, 0x20, 0x1f, 0x50, 0x30, 0x2c, 0x48, - 0x1d, 0x2a, 0x3a, 0x12, 0x0d, 0x0d, 0x02, 0x11, 0x15, 0x55, 0x99, 0x3f, - 0x38, 0x5b, 0x20, 0x22, 0x26, 0x16, 0x15, 0x11, 0x2f, 0x1d, 0x02, 0x3a, - 0xfa, 0x00, 0x7b, 0x17, 0x26, 0x10, 0x20, 0x22, 0x1e, 0x1b, 0x27, 0x77, - 0x4b, 0x39, 0x83, 0x5c, 0x15, 0x30, 0x5c, 0x28, 0x35, 0x56, 0x1c, 0x16, - 0x17, 0x19, 0x17, 0x17, 0x3d, 0x24, 0x01, 0xd9, 0x24, 0x3d, 0x17, 0x16, - 0x19, 0x14, 0x12, 0x19, 0x58, 0x35, 0x2b, 0x61, 0x00, 0x01, 0x00, 0x8f, - 0xff, 0xec, 0x04, 0x33, 0x04, 0x4e, 0x00, 0x33, 0x00, 0x00, 0x65, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x02, 0x7b, 0x57, 0x75, 0x23, 0x24, 0x1f, 0x1f, 0x24, 0x24, - 0x75, 0x56, 0x38, 0x61, 0x23, 0x23, 0x29, 0x01, 0xaf, 0x42, 0x3a, 0x3b, - 0xa1, 0x60, 0x7b, 0xb8, 0x3d, 0x3e, 0x3e, 0x3e, 0x3e, 0x3d, 0xb8, 0x7b, - 0x56, 0x9e, 0x3d, 0x3d, 0x49, 0x01, 0xaf, 0x01, 0x2d, 0x25, 0x25, 0x5f, - 0x82, 0x45, 0x38, 0x37, 0x8b, 0x47, 0x2a, 0x46, 0x8a, 0x38, 0x37, 0x45, - 0x26, 0x21, 0x21, 0x57, 0x31, 0x52, 0x90, 0x35, 0x34, 0x3d, 0x58, 0x4a, - 0x4b, 0xc4, 0x6b, 0x2a, 0x6c, 0xc3, 0x4a, 0x4b, 0x58, 0x3b, 0x32, 0x31, - 0x83, 0x48, 0x2d, 0x4d, 0x1c, 0x1d, 0x20, 0x00, 0x00, 0x02, 0x00, 0x8b, - 0xff, 0xec, 0x04, 0x1c, 0x06, 0x00, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x00, - 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, - 0x33, 0x11, 0x23, 0x11, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x11, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x8b, 0x3e, 0x38, 0x38, - 0x9f, 0x62, 0x64, 0x96, 0x36, 0x08, 0xaa, 0xb9, 0x35, 0x91, 0x61, 0x63, - 0xa0, 0x38, 0x39, 0x3d, 0xb9, 0x22, 0x24, 0x23, 0x6f, 0x4e, 0x5b, 0x7a, - 0x24, 0x24, 0x7a, 0x5d, 0x4d, 0x6e, 0x23, 0x24, 0x22, 0x02, 0x26, 0x15, - 0x74, 0xc9, 0x4a, 0x4a, 0x54, 0x44, 0x42, 0x72, 0x06, 0x00, 0xfd, 0xcf, - 0x3e, 0x41, 0x52, 0x49, 0x49, 0xcb, 0x8e, 0x15, 0x4f, 0x8f, 0x37, 0x36, - 0x40, 0x55, 0x42, 0xfe, 0x0a, 0x47, 0x54, 0x3f, 0x36, 0x36, 0x8e, 0x00, - 0x00, 0x02, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x04, 0x4e, 0x00, 0x22, - 0x00, 0x30, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x13, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0x8c, 0x9e, 0xd7, 0x36, 0x71, 0x33, - 0x9a, 0x63, 0x4b, 0x7c, 0x2c, 0x2b, 0x31, 0x07, 0x03, 0x05, 0x39, 0x3a, - 0x3a, 0xaf, 0x75, 0x5d, 0xb1, 0x45, 0x46, 0x54, 0x4c, 0x44, 0x44, 0xbf, - 0x5a, 0x47, 0x67, 0x22, 0x22, 0x26, 0xfd, 0xba, 0x0b, 0x37, 0x28, 0x28, - 0x64, 0x14, 0x7f, 0x52, 0x58, 0x42, 0x50, 0x38, 0x31, 0x2e, 0x78, 0x4f, - 0x07, 0x53, 0x71, 0xc2, 0x48, 0x47, 0x51, 0x4c, 0x47, 0x48, 0xcf, 0x83, - 0x2a, 0x71, 0xc0, 0x46, 0x46, 0x4e, 0x03, 0xca, 0x34, 0x2a, 0x2a, 0x73, - 0x32, 0x09, 0x4b, 0x73, 0x28, 0x27, 0x29, 0x00, 0x00, 0x01, 0x00, 0x98, - 0x00, 0x00, 0x04, 0x6b, 0x06, 0x2b, 0x00, 0x20, 0x00, 0x00, 0x61, 0x33, - 0x11, 0x21, 0x35, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x15, 0x21, 0x15, 0x21, 0x01, 0xc2, 0xba, 0x01, 0xa1, - 0xfe, 0x5f, 0x23, 0x22, 0x20, 0x61, 0x3f, 0x3e, 0x6d, 0x29, 0x16, 0x1a, - 0x32, 0x19, 0x26, 0x4e, 0x28, 0x60, 0x9c, 0x37, 0x38, 0x3d, 0xfe, 0xd6, - 0x01, 0x2a, 0x03, 0xab, 0x8f, 0x4c, 0x44, 0x66, 0x20, 0x1f, 0x1f, 0x15, - 0x0e, 0x99, 0x07, 0x0b, 0x05, 0x07, 0x09, 0x36, 0x35, 0x35, 0x9d, 0x68, - 0x4c, 0x8f, 0x00, 0x02, 0x00, 0x8c, 0xfe, 0x56, 0x04, 0x1d, 0x04, 0x4e, - 0x00, 0x35, 0x00, 0x4f, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x23, - 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x8c, 0x3c, 0x38, 0x37, 0xa0, 0x63, 0x3b, 0x66, 0x2a, 0x1b, - 0x2f, 0x15, 0x28, 0x25, 0x26, 0x6a, 0x42, 0x25, 0x4a, 0x25, 0x25, 0x48, - 0x22, 0x60, 0x25, 0x67, 0x38, 0x37, 0x6c, 0x2a, 0x66, 0xa8, 0x3d, 0x3c, - 0x43, 0xa8, 0x09, 0x13, 0x2b, 0x18, 0x2c, 0x6d, 0x41, 0x65, 0xa0, 0x38, - 0x38, 0x3b, 0xb9, 0x21, 0x24, 0x23, 0x6f, 0x4e, 0x2e, 0x4c, 0x1f, 0x1f, - 0x30, 0x12, 0x12, 0x30, 0x1e, 0x1f, 0x4d, 0x30, 0x4d, 0x6e, 0x23, 0x24, - 0x21, 0x02, 0x26, 0x15, 0x74, 0xc9, 0x4a, 0x4a, 0x54, 0x19, 0x17, 0x0f, - 0x28, 0x18, 0x5d, 0x46, 0x6c, 0x24, 0x25, 0x26, 0x0f, 0x11, 0x11, 0x39, - 0x29, 0x6f, 0x35, 0x48, 0x15, 0x16, 0x13, 0x3c, 0x3a, 0x3a, 0xa6, 0x6b, - 0x04, 0x23, 0x76, 0x18, 0x28, 0x0f, 0x1d, 0x1e, 0x52, 0x49, 0x49, 0xcb, - 0x8e, 0x15, 0x4f, 0x8f, 0x37, 0x36, 0x40, 0x17, 0x14, 0x15, 0x38, 0x22, - 0xfe, 0x10, 0x23, 0x3a, 0x15, 0x15, 0x17, 0x3f, 0x36, 0x36, 0x8e, 0x00, - 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x2c, 0x06, 0x00, 0x00, 0x1f, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x67, - 0xb9, 0xb9, 0x14, 0x33, 0x1e, 0x26, 0x5a, 0x32, 0x3d, 0x5e, 0x1f, 0x1d, - 0x1e, 0xb9, 0x35, 0x31, 0x31, 0x8b, 0x55, 0x41, 0x73, 0x30, 0x1e, 0x36, - 0x03, 0x99, 0x02, 0x67, 0xfa, 0x00, 0x03, 0x12, 0x20, 0x35, 0x14, 0x1a, - 0x1c, 0x01, 0x23, 0x23, 0x20, 0x61, 0x40, 0xfd, 0x55, 0x02, 0xa9, 0x6d, - 0x9f, 0x34, 0x34, 0x31, 0x01, 0x24, 0x23, 0x15, 0x37, 0x00, 0x00, 0x02, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x05, 0xc3, 0x00, 0x09, 0x00, 0x1b, - 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, - 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0xcb, 0x01, 0x70, 0xfe, 0x90, 0x03, - 0x8a, 0xfe, 0x9f, 0xd1, 0x37, 0x38, 0x37, 0x38, 0x10, 0x10, 0x0d, 0x28, - 0x1a, 0x1a, 0x29, 0x0d, 0x10, 0x0f, 0x04, 0x3a, 0xa1, 0xfd, 0x07, 0xa0, - 0xa0, 0x03, 0x9a, 0x01, 0x1c, 0x2d, 0x3c, 0x3c, 0x2d, 0x19, 0x2a, 0x0e, - 0x0d, 0x0f, 0x0f, 0x0d, 0x0f, 0x2a, 0x00, 0x02, 0x00, 0xd3, 0xfe, 0x4b, - 0x03, 0x58, 0x05, 0xc3, 0x00, 0x1d, 0x00, 0x29, 0x00, 0x00, 0x41, 0x15, - 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x01, 0x2b, 0x01, 0x69, 0x27, 0x22, 0x22, 0x5c, - 0x34, 0x0e, 0x31, 0x1a, 0x1b, 0x34, 0x11, 0x0d, 0x19, 0x2e, 0x17, 0x1c, - 0x3a, 0x1f, 0x64, 0x9d, 0x37, 0x36, 0x39, 0xd3, 0x36, 0x38, 0x38, 0x38, - 0x38, 0x38, 0x38, 0x36, 0x04, 0x3a, 0xa1, 0xfc, 0x60, 0x4d, 0x69, 0x20, - 0x20, 0x1b, 0x01, 0x02, 0x01, 0x05, 0x03, 0x98, 0x04, 0x07, 0x02, 0x02, - 0x02, 0x39, 0x37, 0x36, 0xa0, 0x68, 0x04, 0x41, 0x01, 0x1d, 0x2d, 0x3d, - 0x3d, 0x2d, 0x2d, 0x3f, 0x3f, 0x00, 0x00, 0x01, 0x00, 0xb0, 0x00, 0x00, - 0x04, 0x6a, 0x06, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, - 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, 0xf2, 0x01, - 0x8d, 0xeb, 0xfe, 0x07, 0x01, 0xb6, 0xe1, 0xfe, 0x9d, 0x79, 0xba, 0xba, - 0x01, 0xf9, 0xfe, 0x07, 0x02, 0x77, 0x01, 0xc3, 0xfe, 0x9c, 0x82, 0x03, - 0xac, 0xfa, 0x00, 0x01, 0x76, 0x00, 0x00, 0x01, 0x00, 0xcb, 0x00, 0x00, - 0x04, 0x55, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, - 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0xcb, 0x01, 0x70, 0xfe, 0x90, 0x03, - 0x8a, 0xfe, 0x9f, 0x06, 0x00, 0xa1, 0xfb, 0x41, 0xa0, 0xa0, 0x05, 0x60, - 0x00, 0x01, 0x00, 0x5d, 0x00, 0x00, 0x04, 0x72, 0x04, 0x4e, 0x00, 0x3a, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, 0x34, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x11, 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, - 0x07, 0x01, 0x03, 0xa6, 0xb0, 0x06, 0x13, 0x0d, 0x11, 0x31, 0x21, 0x1e, - 0x2d, 0x0f, 0x10, 0x0f, 0xb0, 0x03, 0x12, 0x10, 0x10, 0x30, 0x21, 0x1f, - 0x2f, 0x10, 0x0f, 0x10, 0xb0, 0x24, 0x22, 0x1f, 0x5a, 0x38, 0x29, 0x45, - 0x1c, 0x16, 0x26, 0x0e, 0x0b, 0x1f, 0x13, 0x1a, 0x45, 0x2b, 0x4c, 0x6b, - 0x21, 0x04, 0x3a, 0xfb, 0xc6, 0x03, 0x5d, 0x10, 0x1c, 0x0b, 0x0e, 0x0f, - 0x0f, 0x10, 0x11, 0x34, 0x22, 0xfc, 0xd5, 0x03, 0x2a, 0x06, 0x09, 0x05, - 0x19, 0x29, 0x10, 0x0f, 0x12, 0x10, 0x10, 0x11, 0x34, 0x22, 0xfc, 0xd6, - 0x03, 0x28, 0x4e, 0x73, 0x24, 0x20, 0x21, 0x01, 0x14, 0x11, 0x0f, 0x28, - 0x17, 0x19, 0x28, 0x0e, 0x12, 0x13, 0x01, 0x40, 0x39, 0x00, 0x00, 0x01, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x29, 0x04, 0x4e, 0x00, 0x1f, 0x00, 0x00, - 0x73, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x27, 0x23, 0xae, 0xb9, 0x13, 0x33, - 0x1e, 0x25, 0x58, 0x33, 0x3b, 0x5b, 0x20, 0x1f, 0x20, 0xb9, 0x35, 0x31, - 0x31, 0x8b, 0x55, 0x3f, 0x71, 0x30, 0x20, 0x39, 0x18, 0x0d, 0xa6, 0x03, - 0x08, 0x23, 0x3a, 0x16, 0x19, 0x1d, 0x1c, 0x1f, 0x1f, 0x64, 0x48, 0xfd, - 0x55, 0x02, 0xaf, 0x6c, 0x9d, 0x33, 0x33, 0x30, 0x01, 0x23, 0x20, 0x15, - 0x39, 0x22, 0xa0, 0x00, 0x00, 0x02, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, - 0x04, 0x4e, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x7a, 0x44, 0x40, 0x3f, 0xb7, 0x73, 0x72, 0xb6, 0x40, 0x3f, 0x44, 0x44, - 0x3f, 0x40, 0xb7, 0x73, 0x72, 0xb6, 0x3f, 0x40, 0x44, 0xb9, 0x26, 0x27, - 0x26, 0x72, 0x4d, 0x4d, 0x73, 0x27, 0x26, 0x27, 0x26, 0x26, 0x27, 0x73, - 0x4c, 0x4d, 0x74, 0x26, 0x27, 0x26, 0x02, 0x27, 0x16, 0x75, 0xc8, 0x4a, - 0x4a, 0x54, 0x54, 0x4a, 0x4a, 0xc8, 0x75, 0x16, 0x75, 0xc9, 0x4a, 0x4a, - 0x55, 0x55, 0x4a, 0x4a, 0xc9, 0x8b, 0x16, 0x4f, 0x91, 0x37, 0x37, 0x41, - 0x41, 0x37, 0x37, 0x91, 0x4f, 0x16, 0x50, 0x91, 0x37, 0x37, 0x40, 0x40, - 0x37, 0x37, 0x91, 0x00, 0x00, 0x02, 0x00, 0xad, 0xfe, 0x60, 0x04, 0x3f, - 0x04, 0x4e, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x00, 0x53, 0x33, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x27, 0x23, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0xad, 0xb9, 0x14, 0x2e, 0x1a, 0x2b, 0x6b, 0x3e, - 0x66, 0x9f, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0xa0, 0x68, 0x3b, 0x67, - 0x2a, 0x1e, 0x34, 0x16, 0x09, 0xa9, 0x02, 0xd9, 0x23, 0x24, 0x24, 0x70, - 0x4d, 0x30, 0x4f, 0x20, 0x1c, 0x2c, 0x11, 0x13, 0x32, 0x20, 0x1d, 0x49, - 0x2b, 0x4e, 0x70, 0x25, 0x24, 0x23, 0xfe, 0x60, 0x02, 0x08, 0x16, 0x25, - 0x0f, 0x18, 0x1a, 0x54, 0x4a, 0x4a, 0xc9, 0x74, 0x15, 0x79, 0xcb, 0x49, - 0x49, 0x52, 0x19, 0x18, 0x10, 0x2d, 0x1c, 0x76, 0xfd, 0xec, 0x15, 0x4f, - 0x90, 0x37, 0x37, 0x41, 0x18, 0x15, 0x12, 0x34, 0x1e, 0x02, 0x09, 0x22, - 0x38, 0x13, 0x13, 0x14, 0x40, 0x36, 0x37, 0x8f, 0x00, 0x02, 0x00, 0x8c, - 0xfe, 0x60, 0x04, 0x1c, 0x04, 0x4e, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x00, - 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x11, 0x33, 0x11, 0x23, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x8c, 0x3b, 0x38, 0x38, - 0xa1, 0x67, 0x35, 0x5c, 0x27, 0x1f, 0x35, 0x18, 0xb9, 0xaa, 0x08, 0x15, - 0x30, 0x1b, 0x2a, 0x65, 0x3a, 0x68, 0xa3, 0x38, 0x38, 0x3a, 0xb9, 0x23, - 0x25, 0x24, 0x70, 0x4d, 0x2b, 0x49, 0x1f, 0x1e, 0x31, 0x13, 0x14, 0x32, - 0x20, 0x1e, 0x48, 0x2b, 0x4d, 0x6f, 0x24, 0x24, 0x23, 0x02, 0x26, 0x15, - 0x74, 0xc9, 0x4a, 0x4a, 0x54, 0x14, 0x13, 0x0e, 0x28, 0x19, 0xfd, 0xfe, - 0x05, 0xda, 0x6b, 0x18, 0x28, 0x0f, 0x18, 0x18, 0x52, 0x49, 0x49, 0xcb, - 0x8e, 0x15, 0x4f, 0x90, 0x38, 0x37, 0x42, 0x15, 0x13, 0x13, 0x33, 0x1f, - 0xfd, 0xea, 0x21, 0x37, 0x13, 0x11, 0x14, 0x41, 0x37, 0x37, 0x90, 0x00, - 0x00, 0x01, 0x01, 0x49, 0x00, 0x00, 0x04, 0x31, 0x04, 0x4e, 0x00, 0x15, - 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x27, 0x27, 0x23, 0x11, 0x33, 0x11, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, - 0x03, 0x73, 0x76, 0xb9, 0x42, 0x01, 0x08, 0xb0, 0xba, 0x12, 0x37, 0x25, - 0x29, 0x6e, 0x44, 0x35, 0x61, 0x36, 0x19, 0x1c, 0x6f, 0x04, 0x4e, 0x67, - 0x59, 0x1b, 0x91, 0xfb, 0xc6, 0x02, 0xb6, 0x32, 0x51, 0x1c, 0x20, 0x21, - 0x0b, 0x0c, 0xb5, 0x0c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0xaf, 0xff, 0xec, - 0x04, 0x36, 0x04, 0x4e, 0x00, 0x49, 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0x7d, - 0x14, 0x13, 0x1f, 0x6e, 0x4a, 0x2f, 0x60, 0x27, 0x28, 0x35, 0x04, 0xb9, - 0x3f, 0x3c, 0x3b, 0xac, 0x6e, 0x60, 0xa2, 0x3a, 0x3a, 0x41, 0x39, 0x36, - 0x36, 0x9e, 0x64, 0x4c, 0x63, 0x1d, 0x1e, 0x18, 0x1e, 0x1e, 0x1d, 0x59, - 0x3b, 0x39, 0x5b, 0x20, 0x20, 0x24, 0xb9, 0x3d, 0x38, 0x38, 0xa0, 0x64, - 0x5d, 0x9b, 0x38, 0x38, 0x3e, 0x3c, 0x37, 0x36, 0x99, 0x5d, 0x4c, 0x66, - 0x1f, 0x1f, 0x1a, 0x01, 0x1f, 0x1a, 0x2e, 0x13, 0x1f, 0x23, 0x14, 0x18, - 0x18, 0x4e, 0x39, 0x45, 0x80, 0x30, 0x31, 0x3b, 0x2e, 0x2a, 0x2a, 0x76, - 0x48, 0x43, 0x66, 0x27, 0x26, 0x37, 0x15, 0x0f, 0x20, 0x14, 0x14, 0x32, - 0x20, 0x1f, 0x3a, 0x16, 0x16, 0x1a, 0x20, 0x1a, 0x1a, 0x43, 0x23, 0x47, - 0x7b, 0x2e, 0x2e, 0x34, 0x32, 0x2b, 0x2b, 0x73, 0x42, 0x43, 0x65, 0x25, - 0x26, 0x36, 0x13, 0x0f, 0x25, 0x16, 0x16, 0x35, 0x00, 0x01, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0x29, 0x05, 0x40, 0x00, 0x23, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x21, 0x15, 0x21, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x21, 0x35, 0x21, 0x02, 0x64, - 0xba, 0xfe, 0xe4, 0x01, 0x1c, 0x35, 0x2e, 0x2e, 0x7d, 0x48, 0x2b, 0x57, - 0x27, 0x27, 0x42, 0x17, 0x1a, 0x11, 0x35, 0x1e, 0x1f, 0x40, 0x1e, 0x29, - 0x49, 0x1c, 0x1c, 0x20, 0x01, 0x9c, 0xfe, 0x64, 0x05, 0x40, 0xfe, 0xfa, - 0x8f, 0xfd, 0xb4, 0x64, 0x8d, 0x2c, 0x2d, 0x29, 0x08, 0x08, 0x07, 0x15, - 0x0e, 0x83, 0x04, 0x0b, 0x05, 0x05, 0x07, 0x14, 0x19, 0x18, 0x52, 0x3f, - 0x02, 0x4c, 0x8f, 0x00, 0x00, 0x01, 0x00, 0xb4, 0xff, 0xec, 0x04, 0x1f, - 0x04, 0x3a, 0x00, 0x1c, 0x00, 0x00, 0x61, 0x33, 0x11, 0x23, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, - 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x03, - 0x77, 0xa8, 0xba, 0x0f, 0x2d, 0x1e, 0x24, 0x62, 0x3e, 0x35, 0x51, 0x1c, - 0x1c, 0x1c, 0xb9, 0x35, 0x31, 0x31, 0x8a, 0x55, 0x6a, 0xa2, 0x36, 0x04, - 0x3a, 0xfc, 0xf8, 0x23, 0x3b, 0x15, 0x1a, 0x1d, 0x1c, 0x23, 0x22, 0x74, - 0x58, 0x02, 0x85, 0xfd, 0x7d, 0x79, 0xad, 0x38, 0x38, 0x35, 0x59, 0x50, - 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, 0x04, 0x65, 0x04, 0x3a, 0x00, 0x08, - 0x00, 0x00, 0x61, 0x33, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x02, - 0x1f, 0x8d, 0x01, 0xb9, 0xbd, 0xfe, 0xd1, 0x12, 0x11, 0xfe, 0xca, 0xbe, - 0x04, 0x3a, 0xfc, 0xd0, 0x43, 0x43, 0x03, 0x30, 0x00, 0x01, 0x00, 0x30, - 0x00, 0x00, 0x04, 0xa7, 0x04, 0x3a, 0x00, 0x12, 0x00, 0x00, 0x61, 0x33, - 0x13, 0x37, 0x17, 0x13, 0x33, 0x13, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, - 0x03, 0x07, 0x27, 0x03, 0x23, 0x01, 0x16, 0x92, 0xa7, 0x1b, 0x1c, 0xa9, - 0x92, 0xe6, 0xa4, 0x78, 0x1b, 0x1d, 0xac, 0x77, 0xad, 0x1b, 0x16, 0x7e, - 0xa4, 0x02, 0x97, 0xa8, 0xa8, 0xfd, 0x69, 0x04, 0x3a, 0xfd, 0x4e, 0xaa, - 0xaa, 0x02, 0xb2, 0xfd, 0x4e, 0x9b, 0x9b, 0x02, 0xb2, 0x00, 0x00, 0x01, - 0x00, 0x6e, 0x00, 0x00, 0x04, 0x72, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x01, 0x23, - 0x02, 0x6d, 0xfe, 0xe2, 0xd6, 0x01, 0x93, 0xfe, 0x62, 0xd8, 0x01, 0x2b, - 0x01, 0x2b, 0xd6, 0xfe, 0x62, 0x01, 0x93, 0xd9, 0x02, 0xa9, 0x01, 0x91, - 0xfd, 0xe9, 0xfd, 0xdd, 0x01, 0x9c, 0xfe, 0x64, 0x02, 0x23, 0x02, 0x17, - 0x00, 0x01, 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x04, 0x3a, 0x00, 0x1b, - 0x00, 0x00, 0x41, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x01, 0x23, 0x01, - 0x07, 0x27, 0x01, 0x23, 0x01, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x01, 0x05, 0x49, 0x70, 0x2a, 0x2a, - 0x3b, 0x13, 0x02, 0x25, 0xcf, 0xfe, 0xe9, 0x33, 0x30, 0xfe, 0xd7, 0xcf, - 0x01, 0xd2, 0x4a, 0x0a, 0x23, 0x18, 0x19, 0x3f, 0x26, 0x0e, 0x31, 0x19, - 0x1e, 0x12, 0x46, 0xfe, 0x4b, 0x36, 0x28, 0x28, 0x5e, 0x2a, 0x04, 0xe1, - 0xfd, 0x42, 0x7f, 0x83, 0x02, 0xba, 0xfb, 0xf9, 0x90, 0x14, 0x3e, 0x1d, - 0x1d, 0x2a, 0x03, 0x02, 0x97, 0x04, 0x0c, 0x00, 0x00, 0x01, 0x00, 0xa0, - 0x00, 0x00, 0x04, 0x3d, 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, 0x65, 0x01, - 0x35, 0x21, 0x15, 0x21, 0x01, 0x15, 0x21, 0x35, 0x01, 0x8c, 0x02, 0x8d, - 0xfc, 0x90, 0x02, 0x7d, 0xfd, 0x7a, 0x03, 0x9d, 0x97, 0x03, 0x20, 0x83, - 0x99, 0xfc, 0xe7, 0x88, 0x97, 0x00, 0x00, 0x03, 0x00, 0x91, 0xff, 0xec, - 0x04, 0x40, 0x05, 0xc5, 0x00, 0x19, 0x00, 0x2a, 0x00, 0x3b, 0x00, 0x00, - 0x41, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x25, 0x34, 0x34, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x13, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, 0x14, 0x14, 0x15, - 0x04, 0x40, 0x40, 0x3c, 0x3d, 0xaf, 0x70, 0x6f, 0xaf, 0x3c, 0x3d, 0x40, - 0x40, 0x3d, 0x3d, 0xb0, 0x6f, 0x70, 0xae, 0x3c, 0x3c, 0x40, 0xfd, 0x0b, - 0x29, 0x2a, 0x23, 0x65, 0x42, 0x41, 0x63, 0x22, 0x23, 0x29, 0x08, 0x04, - 0x2b, 0x2e, 0x22, 0x62, 0x3f, 0x3c, 0x60, 0x22, 0x25, 0x2e, 0x09, 0x02, - 0x36, 0x02, 0x2d, 0x01, 0x55, 0x8b, 0xd7, 0x4a, 0x4a, 0x4d, 0x4d, 0x4a, - 0x4a, 0xd7, 0x8b, 0xfe, 0xab, 0x8b, 0xd7, 0x49, 0x4b, 0x4b, 0x4c, 0x4a, - 0x49, 0xd7, 0xb0, 0x1a, 0x32, 0x19, 0xf4, 0x66, 0x9b, 0x31, 0x27, 0x29, - 0x26, 0x26, 0x25, 0x6f, 0x48, 0xfe, 0x01, 0x6b, 0x9e, 0x31, 0x24, 0x26, - 0x23, 0x22, 0x24, 0x6f, 0x49, 0x01, 0xb1, 0x1c, 0x55, 0x0f, 0x00, 0x01, - 0x00, 0xd0, 0x00, 0x00, 0x03, 0x06, 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, - 0x61, 0x11, 0x23, 0x05, 0x15, 0x25, 0x11, 0x03, 0x06, 0x0f, 0xfd, 0xd9, - 0x01, 0x7d, 0x05, 0xb0, 0xd4, 0xa9, 0x91, 0xfb, 0x3c, 0x00, 0x00, 0x01, - 0x00, 0x55, 0x00, 0x00, 0x04, 0x2b, 0x05, 0xc4, 0x00, 0x2a, 0x00, 0x00, - 0x61, 0x35, 0x21, 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x15, 0x04, 0x2b, 0xfd, 0x25, 0x01, - 0x87, 0x37, 0x63, 0x26, 0x25, 0x2c, 0x3d, 0x39, 0x39, 0xa5, 0x67, 0x70, - 0xaf, 0x3c, 0x3d, 0x40, 0xba, 0x23, 0x24, 0x23, 0x6b, 0x49, 0x3c, 0x5f, - 0x22, 0x21, 0x23, 0x16, 0x1a, 0x1a, 0x56, 0x40, 0xfe, 0x23, 0x97, 0x01, - 0xa8, 0x3c, 0x79, 0x3e, 0x3e, 0x7f, 0x41, 0x57, 0x94, 0x36, 0x36, 0x3d, - 0x48, 0x3d, 0x3d, 0xa3, 0x5c, 0x44, 0x6e, 0x27, 0x26, 0x2a, 0x29, 0x23, - 0x23, 0x5f, 0x36, 0x2c, 0x53, 0x2e, 0x2f, 0x6e, 0x47, 0xfd, 0xee, 0x85, - 0x00, 0x01, 0x00, 0x5e, 0xff, 0xec, 0x03, 0xf9, 0x05, 0xc4, 0x00, 0x4c, - 0x00, 0x00, 0x41, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x01, 0x86, 0x84, 0x45, 0x73, - 0x29, 0x28, 0x2d, 0x27, 0x24, 0x24, 0x66, 0x3f, 0x3f, 0x67, 0x24, 0x24, - 0x27, 0xb9, 0x49, 0x3e, 0x3e, 0xa9, 0x60, 0x62, 0xa9, 0x3e, 0x3e, 0x46, - 0x17, 0x1c, 0x1d, 0x5f, 0x47, 0x3b, 0x55, 0x1b, 0x1b, 0x1a, 0x40, 0x3a, - 0x3a, 0xa2, 0x62, 0x65, 0xa5, 0x3b, 0x3b, 0x41, 0xba, 0x26, 0x23, 0x22, - 0x61, 0x3b, 0x3d, 0x5f, 0x20, 0x21, 0x22, 0x26, 0x24, 0x25, 0x6b, 0x46, - 0x03, 0x31, 0x96, 0x20, 0x21, 0x21, 0x63, 0x44, 0x45, 0x65, 0x22, 0x22, - 0x21, 0x24, 0x21, 0x21, 0x5e, 0x39, 0x60, 0x96, 0x34, 0x34, 0x36, 0x39, - 0x37, 0x36, 0x9e, 0x66, 0x32, 0x66, 0x2e, 0x2e, 0x4a, 0x17, 0x19, 0x4b, - 0x2b, 0x2a, 0x5a, 0x2a, 0x65, 0x9a, 0x34, 0x34, 0x35, 0x3f, 0x36, 0x37, - 0x93, 0x53, 0x39, 0x5c, 0x21, 0x21, 0x23, 0x1f, 0x1f, 0x20, 0x61, 0x41, - 0x37, 0x5c, 0x21, 0x21, 0x26, 0x00, 0x00, 0x02, 0x00, 0x4b, 0x00, 0x00, - 0x04, 0x67, 0x05, 0xb0, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x01, 0x15, 0x21, 0x11, 0x33, 0x11, 0x33, 0x35, 0x21, 0x01, 0x37, - 0x11, 0x03, 0x9c, 0xc5, 0xfd, 0x74, 0x02, 0x98, 0xb9, 0xcb, 0xfc, 0xb1, - 0x01, 0xad, 0x1e, 0x01, 0xe9, 0x03, 0xc7, 0xfc, 0x0f, 0x6d, 0xfe, 0xae, - 0x01, 0x52, 0x97, 0x02, 0x99, 0x38, 0xfd, 0x2f, 0x00, 0x01, 0x00, 0xbb, - 0xff, 0xec, 0x04, 0x4f, 0x05, 0xb0, 0x00, 0x30, 0x00, 0x00, 0x53, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x13, 0x21, 0x35, 0x21, 0xf0, - 0x94, 0x19, 0x2f, 0x1b, 0x1b, 0x43, 0x2e, 0x46, 0x6c, 0x25, 0x25, 0x27, - 0x23, 0x22, 0x23, 0x66, 0x42, 0x75, 0x95, 0x11, 0xb0, 0x0a, 0x4f, 0x3e, - 0x3d, 0x9e, 0x59, 0x74, 0xac, 0x39, 0x38, 0x38, 0x3c, 0x38, 0x38, 0xa0, - 0x65, 0x4f, 0x78, 0x2b, 0x29, 0x02, 0x4f, 0xfd, 0x15, 0x02, 0xda, 0x26, - 0x16, 0x22, 0x0c, 0x0c, 0x0d, 0x32, 0x2b, 0x2c, 0x76, 0x44, 0x4b, 0x7a, - 0x2b, 0x2c, 0x2f, 0x80, 0x7c, 0x65, 0x98, 0x32, 0x32, 0x32, 0x49, 0x41, - 0x40, 0xb2, 0x68, 0x6e, 0xb4, 0x40, 0x3f, 0x46, 0x26, 0x19, 0x01, 0x84, - 0xb4, 0x00, 0x00, 0x02, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x25, 0x05, 0xb1, - 0x00, 0x27, 0x00, 0x40, 0x00, 0x00, 0x41, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x02, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x03, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, - 0x58, 0x10, 0x9c, 0xf6, 0x56, 0x7d, 0x56, 0x40, 0x41, 0x3a, 0xaa, 0x70, - 0x6f, 0xa9, 0x39, 0x39, 0x39, 0x30, 0x33, 0x33, 0x9e, 0x6d, 0x32, 0x5b, - 0x27, 0x28, 0x44, 0x1a, 0x06, 0x41, 0x3f, 0x3c, 0xb8, 0x84, 0x10, 0xf2, - 0x43, 0x64, 0x21, 0x21, 0x20, 0x23, 0x22, 0x23, 0x64, 0x41, 0x38, 0x66, - 0x27, 0x27, 0x2e, 0x11, 0x3a, 0x26, 0x26, 0x58, 0x05, 0xb1, 0x57, 0x56, - 0x7d, 0xfe, 0xa0, 0xb6, 0x57, 0x6a, 0xd3, 0x4f, 0x48, 0x5a, 0x4e, 0x44, - 0x43, 0xb4, 0x66, 0x59, 0xac, 0x44, 0x44, 0x53, 0x17, 0x13, 0x14, 0x35, - 0x1f, 0x60, 0xb6, 0x42, 0x3f, 0x4b, 0xfe, 0x16, 0x38, 0x2f, 0x2f, 0x79, - 0x40, 0x48, 0x7b, 0x2c, 0x2c, 0x32, 0x35, 0x33, 0x33, 0x95, 0x60, 0x3e, - 0x2e, 0x4c, 0x1b, 0x1b, 0x1e, 0x00, 0x00, 0x01, 0x00, 0x70, 0x00, 0x00, - 0x04, 0x48, 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x21, 0x01, 0x33, 0x04, 0x48, 0xfc, 0x28, 0x03, 0x14, 0xfd, 0xa7, 0xc2, - 0x05, 0x48, 0x68, 0xa2, 0xfa, 0xf2, 0x00, 0x03, 0x00, 0xb1, 0xff, 0xec, - 0x04, 0x4f, 0x05, 0xc4, 0x00, 0x2f, 0x00, 0x47, 0x00, 0x5f, 0x00, 0x00, - 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x2e, 0x42, 0x3a, 0x3a, 0x9e, 0x5c, 0x5d, 0x9d, 0x38, 0x39, 0x40, - 0x1e, 0x1b, 0x1b, 0x4e, 0x30, 0x38, 0x5a, 0x20, 0x20, 0x22, 0x48, 0x3f, - 0x3e, 0xa9, 0x62, 0x60, 0xa8, 0x3f, 0x3e, 0x49, 0x23, 0x20, 0x21, 0x5b, - 0x38, 0x20, 0x38, 0x17, 0x30, 0x36, 0x97, 0x29, 0x24, 0x25, 0x66, 0x3d, - 0x40, 0x67, 0x24, 0x24, 0x27, 0x27, 0x24, 0x24, 0x66, 0x3f, 0x3d, 0x67, - 0x25, 0x25, 0x29, 0x22, 0x24, 0x20, 0x21, 0x5a, 0x35, 0x36, 0x59, 0x20, - 0x21, 0x23, 0x23, 0x20, 0x20, 0x58, 0x36, 0x36, 0x5a, 0x21, 0x20, 0x25, - 0x04, 0x34, 0x5f, 0x95, 0x33, 0x33, 0x36, 0x36, 0x33, 0x33, 0x95, 0x5f, - 0x36, 0x62, 0x29, 0x2a, 0x43, 0x18, 0x18, 0x48, 0x2d, 0x2e, 0x6d, 0x3d, - 0x64, 0x9a, 0x34, 0x35, 0x36, 0x37, 0x35, 0x34, 0x9a, 0x63, 0x3d, 0x6c, - 0x2e, 0x2e, 0x47, 0x18, 0x10, 0x28, 0x17, 0x30, 0x7f, 0xfd, 0xa2, 0x3f, - 0x63, 0x22, 0x22, 0x24, 0x24, 0x22, 0x22, 0x63, 0x3f, 0x3d, 0x66, 0x25, - 0x24, 0x28, 0x28, 0x24, 0x25, 0x66, 0x02, 0x67, 0x38, 0x5c, 0x20, 0x21, - 0x23, 0x23, 0x21, 0x20, 0x5b, 0x39, 0x39, 0x5d, 0x21, 0x21, 0x23, 0x25, - 0x21, 0x22, 0x5c, 0x00, 0x00, 0x02, 0x00, 0x95, 0xff, 0xff, 0x04, 0x29, - 0x05, 0xc4, 0x00, 0x28, 0x00, 0x41, 0x00, 0x00, 0x65, 0x23, 0x15, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x12, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x13, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x01, 0x75, 0x13, 0x13, 0xb4, 0xfb, 0x47, 0x76, 0x48, 0x42, - 0x42, 0x38, 0xa5, 0x70, 0x70, 0xa9, 0x38, 0x39, 0x39, 0x30, 0x33, 0x33, - 0x9d, 0x6c, 0x38, 0x5f, 0x27, 0x27, 0x3e, 0x18, 0x05, 0x30, 0x45, 0x39, - 0xbb, 0x51, 0x43, 0x63, 0x20, 0x21, 0x20, 0x24, 0x23, 0x22, 0x64, 0x41, - 0x39, 0x65, 0x27, 0x26, 0x2d, 0x11, 0x3b, 0x25, 0x26, 0x59, 0xa4, 0xa5, - 0x63, 0x50, 0x84, 0x01, 0x55, 0xa9, 0x43, 0x77, 0xef, 0x50, 0x44, 0x53, - 0x51, 0x44, 0x45, 0xb7, 0x67, 0x58, 0xae, 0x45, 0x45, 0x55, 0x17, 0x14, - 0x14, 0x35, 0x1e, 0x02, 0x5c, 0xac, 0x4b, 0x3d, 0x43, 0x01, 0xdc, 0x3b, - 0x30, 0x30, 0x7b, 0x40, 0x48, 0x7d, 0x2e, 0x2d, 0x34, 0x38, 0x34, 0x35, - 0x98, 0x61, 0x3c, 0x2f, 0x4d, 0x1c, 0x1d, 0x1f, 0x00, 0x01, 0x01, 0x82, - 0x02, 0x99, 0x02, 0xf6, 0x05, 0xae, 0x00, 0x06, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x05, 0x15, 0x37, 0x11, 0x02, 0xf6, 0x12, 0xfe, 0x9e, 0xd7, 0x02, - 0x99, 0x03, 0x15, 0x75, 0x80, 0x39, 0xfd, 0xa7, 0x00, 0x01, 0x01, 0x3c, - 0x02, 0x9b, 0x03, 0xa6, 0x05, 0xbb, 0x00, 0x2a, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x01, 0x15, 0x03, 0xa6, 0xfe, 0x71, 0xaf, 0x2b, 0x47, - 0x1a, 0x19, 0x1b, 0x28, 0x25, 0x25, 0x6a, 0x42, 0x45, 0x6f, 0x27, 0x27, - 0x2a, 0x9e, 0x12, 0x12, 0x12, 0x37, 0x25, 0x1d, 0x2f, 0x10, 0x10, 0x10, - 0x13, 0x15, 0x0e, 0x29, 0x1a, 0xfe, 0xe0, 0x02, 0x9b, 0x80, 0x91, 0x27, - 0x47, 0x23, 0x22, 0x47, 0x28, 0x37, 0x57, 0x1f, 0x1f, 0x21, 0x29, 0x23, - 0x24, 0x60, 0x36, 0x1d, 0x31, 0x11, 0x12, 0x14, 0x10, 0x0f, 0x0f, 0x28, - 0x18, 0x15, 0x2f, 0x1c, 0x13, 0x2b, 0x18, 0xfe, 0xf1, 0x6c, 0x00, 0x01, - 0x01, 0x43, 0x02, 0x8f, 0x03, 0x9f, 0x05, 0xba, 0x00, 0x4c, 0x00, 0x00, - 0x41, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x02, 0x0e, 0x54, 0x2d, 0x45, 0x14, 0x0c, - 0x0d, 0x10, 0x10, 0x12, 0x39, 0x24, 0x23, 0x39, 0x13, 0x10, 0x12, 0x9e, - 0x33, 0x2a, 0x29, 0x6b, 0x39, 0x40, 0x70, 0x2a, 0x29, 0x2f, 0x14, 0x15, - 0x12, 0x37, 0x24, 0x1b, 0x2c, 0x10, 0x18, 0x19, 0x2b, 0x27, 0x27, 0x6c, - 0x40, 0x3c, 0x68, 0x26, 0x27, 0x2d, 0x9d, 0x0d, 0x0b, 0x11, 0x38, 0x23, - 0x20, 0x31, 0x11, 0x11, 0x12, 0x17, 0x17, 0x12, 0x33, 0x1f, 0x04, 0x65, - 0x74, 0x14, 0x16, 0x0d, 0x24, 0x18, 0x18, 0x27, 0x0e, 0x10, 0x12, 0x12, - 0x10, 0x0e, 0x24, 0x15, 0x3d, 0x58, 0x1c, 0x1d, 0x1b, 0x1f, 0x1d, 0x1d, - 0x56, 0x38, 0x25, 0x3d, 0x17, 0x15, 0x20, 0x0a, 0x0a, 0x1c, 0x11, 0x18, - 0x3b, 0x21, 0x37, 0x54, 0x1d, 0x1c, 0x1d, 0x1f, 0x1c, 0x1d, 0x52, 0x33, - 0x11, 0x1d, 0x0a, 0x12, 0x12, 0x0e, 0x0d, 0x0e, 0x27, 0x17, 0x1c, 0x2c, - 0x0e, 0x0b, 0x0c, 0x00, 0x00, 0x02, 0x01, 0x1c, 0x02, 0xb3, 0x03, 0xb1, - 0x05, 0xc4, 0x00, 0x34, 0x00, 0x48, 0x00, 0x00, 0x41, 0x33, 0x26, 0x26, - 0x35, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x15, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, - 0x16, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x33, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x0c, 0xa5, - 0x0e, 0x0c, 0x2a, 0x25, 0x26, 0x6b, 0x41, 0x45, 0x72, 0x28, 0x29, 0x2d, - 0x01, 0xa1, 0x12, 0x10, 0x13, 0x3b, 0x25, 0x1f, 0x2e, 0x10, 0x10, 0x10, - 0x01, 0x8d, 0x4d, 0x7b, 0x2a, 0x2b, 0x2e, 0x20, 0x1f, 0x20, 0x5e, 0x3c, - 0x30, 0x4e, 0x1e, 0x16, 0x23, 0x0d, 0x03, 0x0b, 0xc9, 0x23, 0x33, 0x10, - 0x0c, 0x0c, 0x12, 0x12, 0x15, 0x45, 0x2c, 0x8c, 0x08, 0x27, 0x19, 0x1a, - 0x3b, 0x02, 0xc1, 0x2d, 0x58, 0x30, 0x01, 0x3a, 0x44, 0x68, 0x23, 0x22, - 0x23, 0x22, 0x1f, 0x1f, 0x56, 0x33, 0x0c, 0x17, 0x25, 0x0d, 0x10, 0x10, - 0x11, 0x10, 0x11, 0x34, 0x21, 0x34, 0x1d, 0x1c, 0x1d, 0x58, 0x39, 0x34, - 0x53, 0x1d, 0x1e, 0x21, 0x01, 0x18, 0x13, 0x0e, 0x23, 0x12, 0x1a, 0x31, - 0x65, 0x10, 0x0f, 0x0b, 0x20, 0x14, 0x16, 0x26, 0x0f, 0x12, 0x16, 0x6d, - 0x12, 0x24, 0x0e, 0x0f, 0x11, 0x00, 0x00, 0x02, 0x01, 0x10, 0x02, 0xb2, - 0x03, 0xbc, 0x05, 0xc4, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x41, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x01, 0x10, 0x30, 0x2d, 0x2c, 0x7f, 0x50, 0x4f, 0x7e, 0x2c, - 0x2c, 0x2f, 0x2f, 0x2c, 0x2d, 0x7f, 0x4f, 0x4f, 0x7e, 0x2c, 0x2d, 0x30, - 0xa3, 0x16, 0x17, 0x16, 0x43, 0x2d, 0x2d, 0x43, 0x17, 0x16, 0x17, 0x17, - 0x16, 0x16, 0x43, 0x2c, 0x2e, 0x44, 0x16, 0x17, 0x16, 0x04, 0x75, 0x75, - 0x48, 0x7b, 0x2c, 0x2d, 0x32, 0x32, 0x2d, 0x2c, 0x7b, 0x48, 0x75, 0x49, - 0x7b, 0x2d, 0x2c, 0x32, 0x32, 0x2c, 0x2d, 0x7b, 0xbe, 0x75, 0x29, 0x47, - 0x1b, 0x1a, 0x1e, 0x1e, 0x1a, 0x1b, 0x47, 0x29, 0x75, 0x2a, 0x47, 0x1a, - 0x1a, 0x1e, 0x1e, 0x1a, 0x1a, 0x47, 0x00, 0x03, 0x00, 0x24, 0x00, 0x00, - 0x04, 0x96, 0x05, 0xb1, 0x00, 0x06, 0x00, 0x31, 0x00, 0x35, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x05, 0x15, 0x37, 0x11, 0x01, 0x35, 0x21, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x05, 0x15, 0x25, 0x01, 0x27, 0x01, 0x01, 0x73, 0x10, 0xfe, 0xc1, 0xc2, - 0x03, 0xb0, 0xfe, 0x99, 0x9d, 0x27, 0x40, 0x17, 0x17, 0x18, 0x24, 0x21, - 0x22, 0x5f, 0x3b, 0x3e, 0x64, 0x23, 0x24, 0x25, 0x8e, 0x01, 0x10, 0x11, - 0x10, 0x31, 0x20, 0x1a, 0x29, 0x0e, 0x0f, 0x10, 0x0e, 0x0f, 0x0d, 0x28, - 0x1b, 0xfe, 0xfd, 0xfe, 0xdb, 0x02, 0x02, 0x72, 0xfd, 0xff, 0x02, 0xeb, - 0x02, 0xc6, 0x69, 0x73, 0x33, 0xfd, 0xe3, 0xfd, 0x15, 0x73, 0x83, 0x23, - 0x40, 0x1f, 0x1f, 0x40, 0x24, 0x31, 0x4f, 0x1b, 0x1c, 0x1e, 0x25, 0x1f, - 0x21, 0x56, 0x31, 0x1b, 0x2c, 0x11, 0x0f, 0x11, 0x0e, 0x0c, 0x0e, 0x25, - 0x16, 0x11, 0x25, 0x16, 0x13, 0x2c, 0x19, 0xf4, 0x61, 0xdd, 0x03, 0xba, - 0x42, 0xfc, 0x46, 0x00, 0x00, 0x04, 0x00, 0x30, 0x00, 0x00, 0x04, 0x8c, - 0x05, 0xb5, 0x00, 0x06, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x05, 0x15, 0x37, 0x11, 0x01, 0x11, 0x23, 0x01, 0x17, - 0x21, 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x37, 0x37, 0x11, 0x05, 0x01, - 0x27, 0x01, 0x01, 0x7f, 0x10, 0xfe, 0xc1, 0xc2, 0x03, 0x3a, 0x91, 0xfe, - 0xad, 0x05, 0x01, 0x52, 0x8d, 0x60, 0xfe, 0x4a, 0xba, 0x0f, 0xfd, 0xf3, - 0x02, 0x02, 0x72, 0xfd, 0xff, 0x02, 0xef, 0x02, 0xc6, 0x69, 0x73, 0x33, - 0xfd, 0xe3, 0xfe, 0x1e, 0x01, 0xb9, 0xfe, 0x2e, 0x5c, 0x98, 0x98, 0x75, - 0xeb, 0x19, 0xfe, 0xfc, 0x30, 0x03, 0xba, 0x42, 0xfc, 0x46, 0x00, 0x04, - 0x00, 0x26, 0x00, 0x00, 0x04, 0xad, 0x05, 0xb8, 0x00, 0x0a, 0x00, 0x0e, - 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x00, 0x41, 0x11, 0x23, 0x01, 0x17, 0x21, - 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x37, 0x37, 0x11, 0x01, 0x15, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x13, 0x01, 0x27, 0x01, 0x04, 0x4d, 0x91, 0xfe, 0xad, 0x05, - 0x01, 0x52, 0x8d, 0x60, 0xfe, 0x4a, 0xba, 0x0f, 0xfd, 0x1d, 0x4b, 0x22, - 0x37, 0x13, 0x11, 0x12, 0x0f, 0x0e, 0x12, 0x31, 0x20, 0x22, 0x34, 0x11, - 0x0e, 0x0e, 0x8e, 0x2e, 0x26, 0x24, 0x61, 0x33, 0x3a, 0x64, 0x26, 0x25, - 0x2a, 0x15, 0x16, 0x10, 0x2e, 0x1e, 0x19, 0x27, 0x10, 0x14, 0x17, 0x27, - 0x23, 0x23, 0x61, 0x3a, 0x36, 0x5d, 0x23, 0x23, 0x28, 0x8d, 0x0e, 0x0c, - 0x10, 0x30, 0x1d, 0x1f, 0x2f, 0x0f, 0x0d, 0x0e, 0x13, 0x12, 0x11, 0x2f, - 0x1f, 0xad, 0x02, 0x02, 0x72, 0xfd, 0xff, 0x01, 0x0d, 0x01, 0xb9, 0xfe, - 0x2e, 0x5c, 0x98, 0x98, 0x75, 0xeb, 0x19, 0xfe, 0xfc, 0x03, 0x78, 0x68, - 0x0d, 0x0d, 0x0c, 0x27, 0x1b, 0x15, 0x24, 0x0d, 0x0e, 0x10, 0x12, 0x10, - 0x0b, 0x20, 0x12, 0x37, 0x4f, 0x19, 0x1b, 0x18, 0x1c, 0x1a, 0x1a, 0x4e, - 0x32, 0x24, 0x3b, 0x15, 0x10, 0x1a, 0x08, 0x09, 0x19, 0x0f, 0x16, 0x35, - 0x1e, 0x31, 0x4c, 0x1a, 0x19, 0x1a, 0x1c, 0x19, 0x1a, 0x4a, 0x2e, 0x11, - 0x1c, 0x0b, 0x0d, 0x0e, 0x0f, 0x0e, 0x0c, 0x21, 0x13, 0x17, 0x26, 0x0d, - 0x0b, 0x0d, 0xfc, 0x57, 0x03, 0xba, 0x42, 0xfc, 0x46, 0x00, 0x00, 0x02, - 0x00, 0x20, 0x00, 0x00, 0x04, 0xab, 0x05, 0xb0, 0x00, 0x0f, 0x00, 0x12, - 0x00, 0x00, 0x61, 0x35, 0x21, 0x03, 0x21, 0x35, 0x21, 0x03, 0x21, 0x35, - 0x21, 0x01, 0x33, 0x13, 0x21, 0x13, 0x03, 0x13, 0x13, 0x04, 0xab, 0xfe, - 0x9b, 0x01, 0x01, 0x2e, 0xfe, 0xd2, 0x02, 0x01, 0x51, 0xfd, 0xbc, 0xfd, - 0xd0, 0xc6, 0x7b, 0x01, 0x36, 0x01, 0xfa, 0xf7, 0x02, 0x97, 0x02, 0x13, - 0x97, 0x01, 0xd7, 0x98, 0xfa, 0x50, 0x01, 0x61, 0xfe, 0x9f, 0x02, 0x0f, - 0x02, 0xc2, 0xfd, 0x3e, 0x00, 0x03, 0x00, 0x2b, 0xff, 0xec, 0x04, 0xa9, - 0x04, 0x4e, 0x00, 0x57, 0x00, 0x70, 0x00, 0x82, 0x00, 0x00, 0x45, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x06, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x25, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x33, 0x14, 0x16, 0x15, 0x14, 0x14, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x01, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x03, 0x80, 0x3b, - 0x5d, 0x23, 0x22, 0x2e, 0x0d, 0x2e, 0x10, 0x26, 0x17, 0x18, 0x3b, 0x26, - 0x3c, 0x57, 0x1c, 0x15, 0x1a, 0x06, 0x07, 0x09, 0x01, 0xf9, 0x2b, 0x2a, - 0x2a, 0x7b, 0x51, 0x2f, 0x52, 0x22, 0x14, 0x25, 0x10, 0x10, 0x27, 0x16, - 0x23, 0x55, 0x32, 0x48, 0x76, 0x29, 0x2a, 0x2d, 0xb3, 0x13, 0x12, 0x13, - 0x35, 0x20, 0x1f, 0x2e, 0x10, 0x13, 0x12, 0x3f, 0x65, 0x9a, 0x33, 0x31, - 0x32, 0x27, 0x25, 0x25, 0x6c, 0x47, 0x30, 0x50, 0x21, 0x21, 0x33, 0x13, - 0x11, 0x2b, 0x19, 0x2a, 0x6a, 0xfe, 0x33, 0x24, 0x37, 0x12, 0x13, 0x13, - 0x1f, 0x1d, 0x1d, 0x54, 0x35, 0x3d, 0x01, 0x0d, 0x1e, 0x10, 0x14, 0x2a, - 0x02, 0x72, 0xfe, 0xb7, 0x09, 0x08, 0x0a, 0x1d, 0x17, 0x11, 0x31, 0x1d, - 0x25, 0x3a, 0x14, 0x14, 0x14, 0x14, 0x13, 0x0d, 0x0d, 0x1d, 0x0a, 0x88, - 0x0b, 0x18, 0x0a, 0x0b, 0x0e, 0x01, 0x21, 0x1b, 0x14, 0x30, 0x1a, 0x1c, - 0x40, 0x24, 0x56, 0xea, 0x54, 0x89, 0x31, 0x30, 0x35, 0x16, 0x16, 0x0c, - 0x20, 0x13, 0x15, 0x23, 0x0c, 0x14, 0x13, 0x2b, 0x27, 0x28, 0x6f, 0x45, - 0x08, 0x25, 0x3a, 0x14, 0x15, 0x16, 0x13, 0x12, 0x16, 0x42, 0x2a, 0x94, - 0x31, 0x2e, 0x2d, 0x81, 0x51, 0x45, 0x71, 0x27, 0x28, 0x2c, 0x18, 0x14, - 0x14, 0x35, 0x1d, 0x1b, 0x2c, 0x12, 0x1c, 0x1d, 0x96, 0x18, 0x15, 0x14, - 0x37, 0x1f, 0x2b, 0x4d, 0x1e, 0x1d, 0x23, 0x41, 0x42, 0x3f, 0x2b, 0x27, - 0x11, 0x0d, 0x18, 0x0a, 0x0b, 0x0e, 0x01, 0xfe, 0x45, 0x1e, 0x3a, 0x1a, - 0x1e, 0x2d, 0x15, 0x0f, 0x10, 0x1f, 0x19, 0x1a, 0x41, 0x23, 0x00, 0x02, - 0x00, 0x4f, 0xff, 0xec, 0x04, 0xa6, 0x05, 0xc4, 0x00, 0x1d, 0x00, 0x31, - 0x00, 0x00, 0x61, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x25, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x11, 0x06, 0x06, 0x04, 0xa6, 0xfe, 0x69, 0x01, 0x58, 0xfe, 0xa8, - 0x01, 0x8d, 0xfe, 0x5e, 0x3e, 0x86, 0x45, 0x61, 0x9b, 0x36, 0x36, 0x3a, - 0x3b, 0x37, 0x36, 0x9b, 0x61, 0x45, 0x84, 0x3e, 0xfe, 0xf9, 0x39, 0x58, - 0x1e, 0x1e, 0x1e, 0x1e, 0x1d, 0x1d, 0x58, 0x39, 0x1a, 0x32, 0x19, 0x19, - 0x31, 0x97, 0x02, 0x0d, 0x98, 0x01, 0xdc, 0x98, 0x08, 0x0c, 0x44, 0x42, - 0x42, 0xc3, 0x80, 0xfe, 0x3d, 0x80, 0xc3, 0x42, 0x42, 0x43, 0x0d, 0x07, - 0x83, 0x25, 0x2b, 0x2b, 0x8f, 0x69, 0x01, 0xc5, 0x69, 0x8d, 0x2b, 0x2b, - 0x25, 0x02, 0x02, 0xfb, 0x5e, 0x01, 0x02, 0x00, 0x00, 0x03, 0x00, 0x2e, - 0xff, 0xec, 0x04, 0xb0, 0x04, 0x4e, 0x00, 0x43, 0x00, 0x63, 0x00, 0x75, - 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x13, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x2e, 0x2d, 0x2c, 0x2c, 0x80, 0x53, 0x34, 0x59, 0x25, 0x15, 0x27, 0x10, - 0x0f, 0x24, 0x14, 0x26, 0x61, 0x39, 0x30, 0x4c, 0x1e, 0x1e, 0x2d, 0x11, - 0x37, 0x10, 0x24, 0x17, 0x17, 0x3a, 0x23, 0x1d, 0x2e, 0x12, 0x13, 0x1e, - 0x0a, 0x08, 0x05, 0x01, 0xca, 0x26, 0x27, 0x28, 0x79, 0x53, 0x2b, 0x50, - 0x22, 0x16, 0x27, 0x11, 0x0f, 0x24, 0x15, 0x25, 0x5c, 0x37, 0x52, 0x80, - 0x2b, 0x2c, 0x2d, 0xba, 0x12, 0x13, 0x12, 0x3b, 0x2a, 0x2a, 0x3d, 0x13, - 0x09, 0x0e, 0x05, 0x04, 0x05, 0x09, 0x06, 0x05, 0x1d, 0x18, 0x0e, 0x2c, - 0x1a, 0x2b, 0x3c, 0x13, 0x13, 0x11, 0x02, 0x87, 0x25, 0x33, 0x11, 0x10, - 0x0f, 0xfe, 0xef, 0x06, 0x04, 0x07, 0x1f, 0x15, 0x0f, 0x22, 0x02, 0x7f, - 0xc6, 0x69, 0xaa, 0x3c, 0x3c, 0x42, 0x1a, 0x19, 0x0f, 0x26, 0x17, 0x15, - 0x24, 0x0e, 0x1c, 0x1c, 0x10, 0x0d, 0x0d, 0x22, 0x12, 0x7e, 0x0e, 0x18, - 0x0a, 0x0a, 0x0c, 0x13, 0x13, 0x14, 0x3e, 0x29, 0x1f, 0x47, 0x27, 0x40, - 0xb5, 0x5b, 0x9c, 0x39, 0x39, 0x40, 0x19, 0x19, 0x0f, 0x28, 0x18, 0x16, - 0x25, 0x0e, 0x1b, 0x1d, 0x42, 0x3d, 0x3d, 0xaa, 0xfe, 0xd1, 0xc6, 0x43, - 0x73, 0x29, 0x29, 0x2f, 0x2e, 0x29, 0x14, 0x31, 0x1b, 0x1c, 0x41, 0x23, - 0xc6, 0x2c, 0x50, 0x22, 0x1d, 0x3f, 0x1a, 0x10, 0x13, 0x2e, 0x29, 0x29, - 0x73, 0x02, 0x41, 0x25, 0x1e, 0x1f, 0x4e, 0x2a, 0x55, 0x04, 0x22, 0x3f, - 0x1b, 0x2d, 0x4e, 0x16, 0x0f, 0x0f, 0x00, 0x02, 0x00, 0x49, 0xff, 0xec, - 0x04, 0x2a, 0x05, 0xf1, 0x00, 0x2b, 0x00, 0x47, 0x00, 0x00, 0x41, 0x37, - 0x27, 0x07, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x07, 0x17, 0x25, - 0x16, 0x16, 0x17, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x35, 0x34, 0x02, 0x01, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x16, - 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x4d, - 0xd3, 0x49, 0xe6, 0x3f, 0x8f, 0x50, 0x39, 0x2e, 0x57, 0x29, 0xef, 0x49, - 0x01, 0x0a, 0x3e, 0x5a, 0x17, 0x39, 0x99, 0x58, 0x69, 0xb3, 0x41, 0x42, - 0x49, 0x48, 0x42, 0x41, 0xb5, 0x6c, 0x47, 0x80, 0x37, 0x3f, 0x62, 0x22, - 0x19, 0x1b, 0x75, 0xfe, 0x84, 0x4a, 0x73, 0x27, 0x28, 0x2a, 0x2a, 0x28, - 0x27, 0x70, 0x45, 0x7d, 0xa0, 0x22, 0x01, 0x12, 0x10, 0x15, 0x3d, 0x27, - 0x21, 0x4f, 0x05, 0x06, 0x79, 0x64, 0x84, 0x33, 0x49, 0x16, 0x9f, 0x10, - 0x29, 0x1b, 0x89, 0x63, 0x98, 0x3f, 0xa8, 0x6e, 0x38, 0x44, 0x49, 0x43, - 0x43, 0xbc, 0x73, 0x66, 0xb2, 0x42, 0x42, 0x4b, 0x23, 0x21, 0x27, 0x78, - 0x4c, 0x3d, 0x91, 0x52, 0x3e, 0xce, 0x01, 0x49, 0xfb, 0xf2, 0x3b, 0x30, - 0x2f, 0x79, 0x3e, 0x49, 0x82, 0x31, 0x31, 0x39, 0x56, 0x36, 0x0d, 0x18, - 0x0d, 0x40, 0x3e, 0x70, 0x2f, 0x3a, 0x56, 0x1b, 0x18, 0x19, 0x00, 0x02, - 0x00, 0xa8, 0x00, 0x00, 0x04, 0x5e, 0x05, 0xb0, 0x00, 0x12, 0x00, 0x21, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x15, 0x21, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, - 0x01, 0x61, 0xb9, 0xb9, 0x01, 0x15, 0x75, 0xb5, 0x3f, 0x3e, 0x41, 0x41, - 0x3e, 0x3f, 0xb5, 0x75, 0xfe, 0xeb, 0x01, 0x15, 0x4e, 0x73, 0x25, 0x25, - 0x24, 0x24, 0x25, 0x26, 0x72, 0x4e, 0xfe, 0xeb, 0x05, 0xb0, 0xfa, 0x50, - 0x01, 0x39, 0x3f, 0x39, 0x38, 0x9c, 0x5d, 0x5d, 0x9c, 0x39, 0x38, 0x3f, - 0x98, 0x2d, 0x26, 0x27, 0x63, 0x36, 0x35, 0x62, 0x25, 0x26, 0x2d, 0x00, - 0x00, 0x02, 0x00, 0xad, 0xfe, 0x60, 0x04, 0x3f, 0x06, 0x16, 0x00, 0x1d, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x3f, 0x36, 0x35, 0x35, 0x9e, 0x68, 0x3a, 0x65, 0x2a, 0x1e, 0x35, - 0x17, 0xb9, 0xb9, 0x17, 0x35, 0x1e, 0x2b, 0x66, 0x3b, 0x66, 0x9c, 0x36, - 0x35, 0x36, 0xb9, 0x22, 0x23, 0x23, 0x6e, 0x4c, 0x32, 0x52, 0x20, 0x1c, - 0x2c, 0x12, 0x12, 0x2f, 0x1e, 0x1f, 0x4f, 0x2f, 0x4d, 0x6e, 0x24, 0x23, - 0x22, 0x02, 0x11, 0x15, 0x79, 0xcb, 0x49, 0x49, 0x52, 0x17, 0x17, 0x10, - 0x2b, 0x1b, 0x02, 0x4c, 0xf8, 0x4a, 0x02, 0x0b, 0x1a, 0x29, 0x0f, 0x16, - 0x17, 0x54, 0x4a, 0x4a, 0xc9, 0x89, 0x15, 0x4f, 0x90, 0x37, 0x37, 0x41, - 0x19, 0x16, 0x13, 0x33, 0x1e, 0x02, 0x06, 0x20, 0x36, 0x13, 0x15, 0x17, - 0x40, 0x36, 0x37, 0x8f, 0x00, 0x01, 0x00, 0xba, 0x00, 0x00, 0x04, 0x72, - 0x04, 0x3a, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, - 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x09, 0x01, 0x7f, 0xea, - 0xfe, 0x14, 0x01, 0xc8, 0xdf, 0xfe, 0x72, 0x6e, 0xb9, 0xb9, 0x01, 0xdd, - 0xfe, 0x23, 0x02, 0x5b, 0x01, 0xdf, 0xfe, 0x65, 0x78, 0x02, 0x13, 0xfb, - 0xc6, 0x01, 0x58, 0x00, 0x00, 0x01, 0x00, 0xa9, 0xff, 0xeb, 0x04, 0x4c, - 0x06, 0x16, 0x00, 0x51, 0x00, 0x00, 0x61, 0x11, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x11, 0x01, 0x61, 0x01, 0x77, 0x63, 0x20, 0x3f, 0x19, - 0x18, 0x1e, 0x14, 0x0f, 0x10, 0x24, 0x0f, 0x10, 0x14, 0x2e, 0x22, 0x22, - 0x50, 0x22, 0x22, 0x2d, 0x15, 0x16, 0x16, 0x44, 0x2f, 0x22, 0x45, 0x1f, - 0x20, 0x35, 0x12, 0x2a, 0x14, 0x44, 0x29, 0x28, 0x58, 0x29, 0x4c, 0x7f, - 0x2e, 0x2e, 0x33, 0x2d, 0x22, 0x22, 0x50, 0x22, 0x22, 0x2d, 0x27, 0x18, - 0x18, 0x28, 0x38, 0x31, 0x31, 0x82, 0x4b, 0x55, 0x90, 0x34, 0x35, 0x3b, - 0x04, 0x3f, 0x9b, 0xa4, 0x1a, 0x19, 0x1a, 0x4b, 0x32, 0x26, 0x3f, 0x1d, - 0x1e, 0x37, 0x1d, 0x1e, 0x42, 0x27, 0x44, 0x67, 0x29, 0x2a, 0x47, 0x22, - 0x23, 0x4d, 0x2f, 0x26, 0x40, 0x18, 0x18, 0x1b, 0x0f, 0x0c, 0x0b, 0x1b, - 0x0b, 0x9b, 0x10, 0x1a, 0x09, 0x0a, 0x0b, 0x2a, 0x2a, 0x2a, 0x7e, 0x55, - 0x41, 0x64, 0x29, 0x29, 0x46, 0x23, 0x23, 0x4a, 0x2e, 0x32, 0x4d, 0x2a, - 0x2a, 0x6b, 0x4f, 0x56, 0x7f, 0x2a, 0x2a, 0x29, 0x3f, 0x3c, 0x3c, 0xb0, - 0x70, 0xfb, 0xc1, 0x00, 0x00, 0x02, 0x00, 0xb1, 0xff, 0xec, 0x04, 0x5f, - 0x04, 0x4f, 0x00, 0x2a, 0x00, 0x38, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x14, 0x16, 0x15, 0x21, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x16, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x03, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0x61, 0x4b, 0x7d, 0x31, 0x32, 0x4b, - 0x1b, 0x49, 0x19, 0x3d, 0x24, 0x2a, 0x67, 0x3d, 0x4e, 0x76, 0x29, 0x25, - 0x2c, 0x05, 0x01, 0xfd, 0x0c, 0x38, 0x39, 0x39, 0xad, 0x75, 0x60, 0xaf, - 0x43, 0x42, 0x4e, 0x47, 0x42, 0x42, 0xbd, 0x5a, 0x47, 0x68, 0x21, 0x22, - 0x21, 0x02, 0x35, 0x0b, 0x32, 0x25, 0x26, 0x61, 0x04, 0x4f, 0x17, 0x13, - 0x13, 0x30, 0x19, 0x7d, 0x15, 0x25, 0x0e, 0x11, 0x13, 0x3a, 0x32, 0x2f, - 0x7b, 0x46, 0x05, 0x0a, 0x05, 0x79, 0x69, 0xb1, 0x40, 0x40, 0x48, 0x01, - 0x50, 0x48, 0x47, 0xc6, 0x75, 0x2c, 0x75, 0xc6, 0x49, 0x48, 0x51, 0xfc, - 0x35, 0x2d, 0x26, 0x26, 0x64, 0x36, 0x1a, 0x40, 0x6e, 0x28, 0x29, 0x2e, - 0x00, 0x01, 0x00, 0xa2, 0xff, 0x30, 0x04, 0x45, 0x06, 0x9c, 0x00, 0x4f, - 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x33, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x35, 0x23, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0x8b, - 0x27, 0x24, 0x24, 0x68, 0x41, 0x33, 0x64, 0x27, 0x28, 0x32, 0xb9, 0x42, - 0x37, 0x37, 0x8f, 0x4e, 0x95, 0x57, 0x8f, 0x32, 0x32, 0x37, 0x37, 0x34, - 0x34, 0x96, 0x5e, 0x4d, 0x6d, 0x22, 0x23, 0x20, 0x1d, 0x1c, 0x1e, 0x5f, - 0x40, 0x3b, 0x5c, 0x20, 0x1f, 0x21, 0xb8, 0x01, 0x3c, 0x39, 0x2c, 0x78, - 0x49, 0x95, 0x51, 0x85, 0x2e, 0x2f, 0x33, 0x3a, 0x36, 0x35, 0x96, 0x5d, - 0x4a, 0x6c, 0x22, 0x22, 0x1f, 0x01, 0x77, 0x37, 0x57, 0x1e, 0x1f, 0x20, - 0x1c, 0x21, 0x21, 0x6f, 0x54, 0x71, 0xa2, 0x35, 0x36, 0x38, 0x08, 0xbf, - 0xc0, 0x09, 0x3c, 0x32, 0x31, 0x8a, 0x57, 0x59, 0x86, 0x33, 0x33, 0x4c, - 0x1f, 0x1a, 0x37, 0x20, 0x20, 0x4e, 0x32, 0x33, 0x53, 0x1e, 0x21, 0x24, - 0x2e, 0x28, 0x29, 0x71, 0x43, 0x73, 0xb1, 0x3c, 0x2d, 0x39, 0x0a, 0xdc, - 0xdc, 0x0a, 0x3e, 0x32, 0x33, 0x88, 0x54, 0x59, 0x88, 0x34, 0x35, 0x4c, - 0x1d, 0x18, 0x39, 0x21, 0x21, 0x4d, 0x00, 0x01, 0x00, 0x93, 0xff, 0x0b, - 0x04, 0x37, 0x05, 0x26, 0x00, 0x39, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, - 0x23, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x15, 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0x7f, 0x57, 0x75, 0x23, 0x24, - 0x1f, 0x1f, 0x24, 0x24, 0x75, 0x56, 0x38, 0x61, 0x23, 0x23, 0x29, 0x01, - 0xaf, 0x35, 0x30, 0x30, 0x84, 0x50, 0xb9, 0x60, 0x91, 0x30, 0x30, 0x31, - 0x31, 0x30, 0x30, 0x91, 0x60, 0xb9, 0x49, 0x83, 0x31, 0x31, 0x3a, 0x01, - 0xaf, 0x01, 0x2d, 0x25, 0x25, 0x5f, 0x82, 0x45, 0x38, 0x37, 0x8b, 0x47, - 0x2a, 0x46, 0x8a, 0x38, 0x37, 0x45, 0x26, 0x21, 0x21, 0x57, 0x31, 0x49, - 0x82, 0x33, 0x33, 0x45, 0x0c, 0xde, 0xe2, 0x12, 0x63, 0x47, 0x48, 0xaf, - 0x5f, 0x2a, 0x5f, 0xb0, 0x47, 0x47, 0x63, 0x12, 0xeb, 0xe8, 0x0c, 0x42, - 0x30, 0x2f, 0x75, 0x40, 0x2d, 0x4d, 0x1c, 0x1d, 0x20, 0x00, 0x00, 0x01, - 0x00, 0x71, 0x00, 0x00, 0x04, 0x7c, 0x05, 0xc4, 0x00, 0x33, 0x00, 0x00, - 0x41, 0x21, 0x35, 0x21, 0x03, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x13, 0x23, 0x15, 0x33, 0x17, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x21, 0x37, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x01, 0xcf, 0x01, 0x3b, 0xfe, 0xc0, 0x08, 0x25, - 0x20, 0x20, 0x59, 0x33, 0x30, 0x57, 0x22, 0x21, 0x27, 0xba, 0x38, 0x34, - 0x35, 0x98, 0x60, 0x60, 0xa4, 0x3b, 0x3b, 0x43, 0x09, 0xa0, 0xa5, 0x08, - 0x08, 0x0b, 0x0b, 0x25, 0x1b, 0x4b, 0x04, 0x06, 0x01, 0xfd, 0x1e, 0x0d, - 0x13, 0x07, 0x0b, 0x0b, 0x02, 0x72, 0x98, 0x01, 0x05, 0x43, 0x6b, 0x25, - 0x24, 0x27, 0x1b, 0x1c, 0x1d, 0x59, 0x3f, 0x57, 0x8e, 0x33, 0x33, 0x38, - 0x3c, 0x38, 0x39, 0xa2, 0x66, 0xfe, 0xfb, 0x98, 0xe2, 0x20, 0x51, 0x24, - 0x25, 0x38, 0x07, 0x97, 0x97, 0x13, 0x2c, 0x18, 0x25, 0x53, 0x2a, 0x00, - 0x00, 0x01, 0x00, 0x21, 0x00, 0x00, 0x04, 0xab, 0x05, 0xb0, 0x00, 0x19, - 0x00, 0x00, 0x61, 0x33, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, - 0x01, 0x23, 0x01, 0x07, 0x23, 0x27, 0x01, 0x23, 0x01, 0x21, 0x15, 0x21, - 0x15, 0x21, 0x15, 0x21, 0x02, 0x06, 0xb9, 0x01, 0x85, 0xfe, 0x7b, 0x01, - 0x85, 0xfe, 0xc2, 0x01, 0xa5, 0xd4, 0xfe, 0xbe, 0x2e, 0x02, 0x2e, 0xfe, - 0xbe, 0xd4, 0x01, 0xa5, 0xfe, 0xc4, 0x01, 0x7c, 0xfe, 0x84, 0x01, 0x7c, - 0x01, 0x46, 0x78, 0xa9, 0x79, 0x02, 0xd0, 0xfd, 0xb1, 0x55, 0x56, 0x02, - 0x4e, 0xfd, 0x30, 0x79, 0xa9, 0x78, 0x00, 0x01, 0x00, 0xa0, 0xfe, 0x4b, - 0x04, 0x4a, 0x06, 0x2b, 0x00, 0x2f, 0x00, 0x00, 0x41, 0x35, 0x23, 0x27, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x23, 0x15, 0x33, 0x11, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x03, 0x7f, 0xd4, 0x01, - 0x1e, 0x20, 0x1f, 0x62, 0x41, 0x28, 0x47, 0x1a, 0x17, 0x2f, 0x59, 0x2f, - 0x60, 0x9a, 0x36, 0x37, 0x3a, 0xb1, 0xb1, 0x01, 0x21, 0x20, 0x15, 0x39, - 0x22, 0x16, 0x5f, 0x1d, 0x0e, 0x27, 0x50, 0x29, 0x55, 0x87, 0x2f, 0x2e, - 0x32, 0x03, 0xab, 0x8f, 0x63, 0x3a, 0x5a, 0x1e, 0x1f, 0x1f, 0x01, 0x10, - 0x0d, 0x93, 0x11, 0x16, 0x34, 0x32, 0x33, 0x95, 0x60, 0x63, 0x8f, 0xfc, - 0x21, 0x41, 0x62, 0x1e, 0x13, 0x15, 0x10, 0x10, 0x94, 0x14, 0x10, 0x33, - 0x31, 0x30, 0x90, 0x5d, 0x03, 0xdf, 0xff, 0xff, 0x00, 0x11, 0x00, 0x00, - 0x04, 0x3d, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x07, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x6a, 0xfe, 0xdc, 0xfe, 0x7f, 0x00, 0x01, 0x00, 0x69, 0x00, 0x00, - 0x04, 0x76, 0x05, 0xc4, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x35, 0x21, 0x27, - 0x21, 0x35, 0x21, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x17, 0x23, 0x15, 0x33, 0x17, 0x23, 0x15, - 0x33, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x21, 0x37, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x27, 0x03, 0x22, 0xfe, 0xa7, - 0x04, 0x01, 0x5d, 0xfe, 0x9f, 0x06, 0x25, 0x20, 0x20, 0x59, 0x33, 0x30, - 0x57, 0x22, 0x21, 0x28, 0xb9, 0x38, 0x34, 0x35, 0x98, 0x60, 0x60, 0xa3, - 0x3b, 0x3c, 0x42, 0x06, 0x9f, 0xa3, 0x05, 0xa8, 0xac, 0x03, 0x09, 0x0b, - 0x0b, 0x24, 0x1b, 0x4b, 0x04, 0x06, 0x01, 0xfd, 0x1e, 0x0e, 0x16, 0x07, - 0x09, 0x08, 0x03, 0x01, 0xd7, 0x7a, 0x8a, 0x7b, 0xb9, 0x43, 0x6b, 0x25, - 0x24, 0x27, 0x1b, 0x1c, 0x1d, 0x59, 0x3f, 0x57, 0x8e, 0x33, 0x33, 0x38, - 0x3c, 0x38, 0x39, 0xa2, 0x66, 0xb9, 0x7b, 0x8a, 0x7a, 0x47, 0x20, 0x51, - 0x24, 0x25, 0x38, 0x07, 0x97, 0x97, 0x16, 0x34, 0x1d, 0x22, 0x4b, 0x25, - 0x47, 0x00, 0x00, 0x02, 0x00, 0x7f, 0xff, 0xec, 0x04, 0xb3, 0x05, 0xb0, - 0x00, 0x2d, 0x00, 0x3c, 0x00, 0x00, 0x41, 0x35, 0x23, 0x11, 0x23, 0x11, - 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x11, 0x33, 0x11, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x11, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x11, 0x05, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x04, 0x9e, 0xb0, 0xb9, 0x59, - 0x08, 0x36, 0x2c, 0x2c, 0x7b, 0x4e, 0xfe, 0xb9, 0x45, 0x4e, 0x7b, 0x2d, - 0x2c, 0x35, 0x08, 0x59, 0x23, 0x20, 0x1f, 0x56, 0x34, 0x2a, 0x51, 0x17, - 0x19, 0x0c, 0x2b, 0x14, 0x15, 0x24, 0x0c, 0x0d, 0x0f, 0xfd, 0x4a, 0x45, - 0x2d, 0x41, 0x14, 0x14, 0x13, 0x13, 0x14, 0x15, 0x40, 0x2d, 0x03, 0xab, - 0x8f, 0x01, 0x06, 0xfe, 0xfa, 0x52, 0x89, 0x32, 0x31, 0x38, 0xfa, 0x50, - 0x02, 0x35, 0x37, 0x32, 0x31, 0x8a, 0x52, 0xfd, 0x7d, 0x53, 0x78, 0x26, - 0x27, 0x24, 0x16, 0x11, 0x84, 0x04, 0x0a, 0x11, 0x13, 0x12, 0x3c, 0x2c, - 0x02, 0x84, 0xdf, 0x02, 0x4c, 0x32, 0x29, 0x2a, 0x6b, 0x38, 0x38, 0x68, - 0x29, 0x29, 0x32, 0x00, 0x00, 0x02, 0x00, 0x67, 0xff, 0xe5, 0x04, 0x92, - 0x04, 0x38, 0x00, 0x23, 0x00, 0x3b, 0x00, 0x00, 0x65, 0x17, 0x37, 0x27, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x37, 0x27, 0x07, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x27, 0x07, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x07, 0x17, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x01, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x03, 0xa3, 0x6b, 0x84, - 0x74, 0x24, 0x28, 0x2c, 0x28, 0x7c, 0x84, 0x78, 0x3c, 0x90, 0x50, 0x50, - 0x8f, 0x3c, 0x75, 0x83, 0x78, 0x2a, 0x2c, 0x28, 0x26, 0x70, 0x83, 0x68, - 0x3e, 0x95, 0x55, 0x55, 0x96, 0xfd, 0xd0, 0x32, 0x2c, 0x2b, 0x77, 0x45, - 0x45, 0x76, 0x2c, 0x2b, 0x31, 0x31, 0x2b, 0x2c, 0x76, 0x45, 0x45, 0x77, - 0x2b, 0x2c, 0x32, 0x54, 0x6f, 0x88, 0x77, 0x3e, 0x91, 0x50, 0x55, 0x98, - 0x40, 0x80, 0x88, 0x7d, 0x2d, 0x31, 0x30, 0x2c, 0x7a, 0x87, 0x7c, 0x41, - 0x9a, 0x56, 0x51, 0x93, 0x3f, 0x73, 0x87, 0x6c, 0x30, 0x36, 0x36, 0x01, - 0xe1, 0x4a, 0x84, 0x32, 0x31, 0x3a, 0x3a, 0x31, 0x32, 0x84, 0x4a, 0x4a, - 0x84, 0x31, 0x32, 0x3b, 0x3b, 0x32, 0x31, 0x84, 0x00, 0x02, 0x01, 0xe6, - 0xff, 0xf5, 0x02, 0xcc, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x02, 0xb2, 0xba, 0x12, 0x39, 0x39, 0x39, 0x3b, - 0x3b, 0x39, 0x39, 0x39, 0x01, 0xd7, 0x03, 0xd9, 0xfc, 0x27, 0xfe, 0x8a, - 0x2e, 0x3e, 0x3e, 0x2e, 0x30, 0x40, 0x40, 0x00, 0x00, 0x02, 0x01, 0xf2, - 0xfe, 0x8c, 0x02, 0xd8, 0x04, 0x4f, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, - 0x41, 0x11, 0x33, 0x11, 0x13, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, - 0x16, 0x33, 0x32, 0x36, 0x02, 0x0a, 0xb9, 0x15, 0x3b, 0x38, 0x39, 0x3a, - 0x3a, 0x39, 0x38, 0x3b, 0x02, 0x63, 0xfc, 0x29, 0x03, 0xd7, 0x01, 0x7b, - 0x30, 0x41, 0x41, 0x30, 0x2e, 0x3f, 0x3f, 0x00, 0x00, 0x02, 0x00, 0xbf, - 0xff, 0xf5, 0x04, 0x1b, 0x05, 0xc4, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x00, - 0x41, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x01, 0xff, 0xb9, 0x04, 0x08, 0x08, 0x21, 0x1e, 0x2f, 0x61, - 0x27, 0x27, 0x32, 0x3a, 0x37, 0x37, 0x9f, 0x65, 0x5b, 0x9d, 0x39, 0x3a, - 0x44, 0x01, 0xb9, 0x2a, 0x23, 0x22, 0x59, 0x2f, 0x3d, 0x5e, 0x1f, 0x1c, - 0x1d, 0x26, 0x1d, 0x1e, 0x47, 0x22, 0x32, 0x3c, 0x10, 0x10, 0x0a, 0x16, - 0x39, 0x39, 0x39, 0x3b, 0x3b, 0x39, 0x39, 0x39, 0x01, 0x9a, 0x27, 0x3d, - 0x1b, 0x1b, 0x34, 0x1d, 0x2a, 0x62, 0x39, 0x38, 0x7f, 0x48, 0x5a, 0x8c, - 0x31, 0x31, 0x33, 0x31, 0x2e, 0x2f, 0x86, 0x54, 0x34, 0x4b, 0x19, 0x18, - 0x17, 0x20, 0x1f, 0x1c, 0x51, 0x34, 0x32, 0x5a, 0x28, 0x29, 0x4a, 0x23, - 0x2e, 0x43, 0x24, 0x25, 0x5d, 0xfe, 0x7f, 0x2e, 0x3e, 0x3e, 0x2e, 0x30, - 0x40, 0x40, 0x00, 0x02, 0x00, 0xcc, 0xfe, 0x78, 0x04, 0x00, 0x04, 0x4d, - 0x00, 0x31, 0x00, 0x3d, 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x02, 0xd4, 0xb9, 0x03, - 0x07, 0x08, 0x20, 0x1d, 0x2d, 0x5b, 0x24, 0x25, 0x2f, 0x37, 0x35, 0x34, - 0x99, 0x61, 0x57, 0x95, 0x37, 0x37, 0x3f, 0x01, 0xb9, 0x26, 0x1f, 0x20, - 0x51, 0x2b, 0x38, 0x57, 0x1c, 0x1b, 0x1b, 0x23, 0x1c, 0x1b, 0x42, 0x1f, - 0x31, 0x3b, 0x0f, 0x0f, 0x09, 0xd6, 0x3a, 0x39, 0x39, 0x3a, 0x3a, 0x39, - 0x39, 0x3a, 0x02, 0xa1, 0x27, 0x3c, 0x1a, 0x1b, 0x32, 0x1d, 0x2b, 0x63, - 0x38, 0x39, 0x80, 0x48, 0x5a, 0x8c, 0x31, 0x31, 0x33, 0x31, 0x2f, 0x2e, - 0x86, 0x54, 0x34, 0x4b, 0x18, 0x19, 0x17, 0x1f, 0x1e, 0x1c, 0x52, 0x35, - 0x33, 0x5a, 0x29, 0x29, 0x4b, 0x23, 0x2d, 0x43, 0x24, 0x24, 0x5c, 0x01, - 0x82, 0x2e, 0x3f, 0x3f, 0x2e, 0x30, 0x41, 0x41, 0x00, 0x01, 0x01, 0x62, - 0xfe, 0xb0, 0x02, 0x83, 0x00, 0xdb, 0x00, 0x09, 0x00, 0x00, 0x65, 0x35, - 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, 0x36, 0x36, 0x02, 0x83, 0xc9, 0x28, - 0x30, 0x73, 0x50, 0x5e, 0x2b, 0xb0, 0xb3, 0x55, 0x9e, 0x46, 0x3f, 0x47, - 0xd0, 0x00, 0x00, 0x01, 0x01, 0xf0, 0xff, 0xed, 0x03, 0x14, 0x01, 0x07, - 0x00, 0x0b, 0x00, 0x00, 0x65, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x01, 0xf0, 0x49, 0x48, 0x47, 0x4c, 0x4b, 0x48, - 0x49, 0x48, 0x78, 0x3a, 0x51, 0x50, 0x3b, 0x3c, 0x53, 0x54, 0xff, 0xff, - 0x02, 0x22, 0xff, 0xed, 0x03, 0x46, 0x04, 0x73, 0x04, 0x26, 0x00, 0x60, - 0x32, 0x00, 0x00, 0x07, 0x00, 0x60, 0x00, 0x32, 0x03, 0x6c, 0xff, 0xff, - 0x01, 0xe6, 0xfe, 0xb0, 0x03, 0x3d, 0x04, 0x73, 0x04, 0x27, 0x00, 0x60, - 0x00, 0x29, 0x03, 0x6c, 0x00, 0x07, 0x00, 0x5f, 0x00, 0x84, 0x00, 0x00, - 0xff, 0xff, 0x01, 0x09, 0xff, 0xed, 0x05, 0x26, 0x01, 0x07, 0x04, 0x27, - 0x00, 0x60, 0xff, 0x19, 0x00, 0x00, 0x00, 0x27, 0x00, 0x60, 0x00, 0x9c, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x60, 0x02, 0x12, 0x00, 0x00, 0x00, 0x01, - 0x01, 0xf8, 0x02, 0x6b, 0x02, 0xde, 0x03, 0x49, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x01, 0xf8, 0x3a, 0x39, 0x38, 0x3b, 0x3b, 0x38, 0x39, 0x3a, 0x02, 0xd9, - 0x2f, 0x3f, 0x3f, 0x2f, 0x30, 0x40, 0x40, 0x00, 0x00, 0x01, 0x01, 0x9a, - 0x02, 0x17, 0x03, 0x31, 0x03, 0xdc, 0x00, 0x19, 0x00, 0x00, 0x41, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x9a, 0x1d, 0x1b, 0x1a, 0x4b, 0x2f, 0x2f, 0x4b, 0x1b, 0x1a, 0x1c, - 0x1c, 0x1a, 0x1b, 0x4c, 0x2f, 0x2f, 0x4b, 0x1a, 0x1a, 0x1d, 0x03, 0x16, - 0x3a, 0x2b, 0x48, 0x1a, 0x1b, 0x1d, 0x1d, 0x1b, 0x1a, 0x48, 0x2b, 0x3a, - 0x2b, 0x49, 0x1a, 0x1a, 0x1e, 0x1e, 0x1a, 0x1a, 0x49, 0x00, 0x00, 0x01, - 0x00, 0x9b, 0xff, 0x69, 0x04, 0x30, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, - 0x45, 0x35, 0x21, 0x15, 0x04, 0x30, 0xfc, 0x6b, 0x97, 0x97, 0x97, 0x00, - 0x00, 0x01, 0x00, 0xda, 0x02, 0x31, 0x03, 0xd7, 0x02, 0xc9, 0x00, 0x03, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x03, 0xd7, 0xfd, 0x03, 0x02, 0x31, - 0x98, 0x98, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x8b, 0x04, 0x87, 0x03, 0x22, - 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x04, 0x87, 0xfb, 0xc3, - 0x02, 0x8b, 0x97, 0x97, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x8b, 0x04, 0x8c, - 0x03, 0x22, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x04, 0x8c, - 0xfb, 0xc3, 0x02, 0x8b, 0x97, 0x97, 0x00, 0x01, 0x01, 0xee, 0x04, 0x21, - 0x02, 0x8d, 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, 0x23, 0x15, - 0x03, 0x33, 0x02, 0x8d, 0x9e, 0x01, 0x8a, 0x05, 0x91, 0x6f, 0x7f, 0xfe, - 0xa0, 0x00, 0x00, 0x02, 0x01, 0x62, 0x04, 0x21, 0x03, 0x5f, 0x06, 0x00, - 0x00, 0x05, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x35, 0x23, 0x15, 0x03, 0x33, - 0x01, 0x37, 0x23, 0x15, 0x03, 0x33, 0x01, 0xf9, 0x96, 0x01, 0x82, 0x01, - 0x7a, 0x01, 0x96, 0x01, 0x81, 0x05, 0x93, 0x6d, 0x7d, 0xfe, 0x9e, 0x01, - 0x72, 0x6d, 0x7d, 0xfe, 0x9e, 0x00, 0x00, 0x01, 0x01, 0xec, 0x04, 0x0f, - 0x02, 0xff, 0x06, 0x1d, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x15, 0x33, 0x35, - 0x34, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0xec, 0xb5, - 0x2f, 0x2f, 0x65, 0x2a, 0x40, 0x16, 0x17, 0x17, 0x04, 0xa1, 0x92, 0x95, - 0x56, 0x94, 0x47, 0x48, 0x24, 0x5c, 0x32, 0x33, 0x68, 0x00, 0x00, 0x01, - 0x01, 0xcd, 0x04, 0x07, 0x02, 0xe0, 0x06, 0x16, 0x00, 0x0c, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x02, 0xe0, 0xb5, 0x2f, 0x2f, 0x65, 0x2a, 0x40, 0x17, 0x16, 0x17, - 0x05, 0x83, 0x93, 0x96, 0x56, 0x94, 0x47, 0x48, 0x24, 0x5c, 0x33, 0x32, - 0x68, 0x00, 0x00, 0x01, 0x01, 0xbc, 0xfe, 0xd1, 0x02, 0xd3, 0x00, 0xe1, - 0x00, 0x0c, 0x00, 0x00, 0x65, 0x35, 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0xd3, 0xb9, 0x2f, 0x2f, 0x69, 0x2a, - 0x40, 0x17, 0x16, 0x17, 0x4c, 0x95, 0x97, 0x56, 0x94, 0x46, 0x49, 0x24, - 0x5d, 0x32, 0x32, 0x67, 0xff, 0xff, 0x01, 0x49, 0x04, 0x0f, 0x03, 0xa1, - 0x06, 0x1d, 0x04, 0x27, 0x00, 0x6c, 0xff, 0x5d, 0x00, 0x00, 0x00, 0x07, - 0x00, 0x6c, 0x00, 0xa2, 0x00, 0x00, 0xff, 0xff, 0x01, 0x2d, 0x04, 0x07, - 0x03, 0x8c, 0x06, 0x16, 0x04, 0x27, 0x00, 0x6d, 0xff, 0x60, 0x00, 0x00, - 0x00, 0x07, 0x00, 0x6d, 0x00, 0xac, 0x00, 0x00, 0x00, 0x02, 0x01, 0x2f, - 0xfe, 0xcf, 0x03, 0x68, 0x00, 0xdf, 0x00, 0x0c, 0x00, 0x19, 0x00, 0x00, - 0x65, 0x35, 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x25, 0x35, 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x02, 0x46, 0xb9, 0x2f, 0x2f, 0x69, 0x2a, 0x40, 0x17, 0x16, - 0x17, 0x01, 0x22, 0xb9, 0x2f, 0x2f, 0x69, 0x2a, 0x40, 0x17, 0x16, 0x17, - 0x4b, 0x94, 0x97, 0x56, 0x94, 0x46, 0x49, 0x24, 0x5d, 0x32, 0x32, 0x68, - 0x2f, 0x94, 0x97, 0x56, 0x94, 0x46, 0x49, 0x24, 0x5d, 0x32, 0x32, 0x68, - 0xff, 0xff, 0x01, 0xee, 0x04, 0x21, 0x02, 0x8d, 0x06, 0x00, 0x06, 0x06, - 0x00, 0x6a, 0x00, 0x00, 0xff, 0xff, 0x01, 0x62, 0x04, 0x21, 0x03, 0x5f, - 0x06, 0x00, 0x06, 0x06, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x01, 0x01, 0x65, - 0xfe, 0x2a, 0x03, 0x75, 0x06, 0x6b, 0x00, 0x27, 0x00, 0x00, 0x41, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x01, 0x65, 0x2d, 0x26, 0x25, 0x63, 0x37, 0x36, 0x6f, 0x32, - 0x27, 0x29, 0x51, 0x26, 0x25, 0x44, 0x1a, 0x18, 0x1c, 0x1e, 0x1b, 0x1c, - 0x54, 0x2e, 0x1f, 0x41, 0x20, 0x27, 0x32, 0x6e, 0x36, 0x37, 0x63, 0x26, - 0x26, 0x2d, 0x02, 0x4f, 0x0a, 0x8f, 0xfc, 0x6b, 0x6c, 0xb1, 0x45, 0x46, - 0x61, 0x1c, 0x71, 0x21, 0x5d, 0x3c, 0x3f, 0x9f, 0x5d, 0x5c, 0xda, 0x7d, - 0x0e, 0x82, 0xe2, 0x5e, 0x68, 0xaf, 0x41, 0x2a, 0x44, 0x18, 0x7a, 0x1c, - 0x62, 0x45, 0x45, 0xb2, 0x6b, 0x6c, 0xfc, 0x00, 0x00, 0x01, 0x01, 0x40, - 0xfe, 0x2a, 0x03, 0x51, 0x06, 0x6b, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x03, 0x51, 0x2f, 0x24, 0x25, 0x62, 0x38, 0x36, 0x70, 0x32, - 0x27, 0x21, 0x46, 0x21, 0x2b, 0x52, 0x1d, 0x14, 0x21, 0x19, 0x17, 0x16, - 0x45, 0x25, 0x27, 0x56, 0x2a, 0x27, 0x32, 0x6f, 0x37, 0x36, 0x63, 0x26, - 0x26, 0x2d, 0x02, 0x45, 0x0a, 0x99, 0xf5, 0x69, 0x6d, 0xae, 0x47, 0x45, - 0x62, 0x1c, 0x71, 0x1b, 0x4d, 0x33, 0x41, 0xaf, 0x6e, 0x4d, 0xdc, 0x87, - 0x0e, 0x77, 0xd1, 0x5a, 0x61, 0xa3, 0x41, 0x40, 0x62, 0x1f, 0x71, 0x1c, - 0x61, 0x46, 0x45, 0xb1, 0x6c, 0x6b, 0xfc, 0x00, 0x00, 0x01, 0x01, 0xaa, - 0xfe, 0xc8, 0x03, 0x36, 0x06, 0x80, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x21, 0x35, 0x23, 0x11, 0x03, 0x36, 0xfe, 0x74, 0x01, 0x8c, - 0xdd, 0x05, 0xe8, 0x98, 0xf8, 0x48, 0x98, 0x06, 0x88, 0x00, 0x00, 0x01, - 0x01, 0x95, 0xfe, 0xc8, 0x03, 0x22, 0x06, 0x80, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x11, 0x01, 0x95, 0xde, 0xde, - 0x01, 0x8d, 0x06, 0x80, 0x98, 0xf9, 0x78, 0x98, 0x07, 0xb8, 0x00, 0x01, - 0x01, 0x43, 0xfe, 0x92, 0x03, 0xe7, 0x06, 0x3d, 0x00, 0x2a, 0x00, 0x00, - 0x41, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x26, 0x26, 0x27, - 0x36, 0x36, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x06, 0x23, 0x15, 0x16, 0x16, - 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x03, 0xd2, 0x15, 0x3e, 0x51, - 0x18, 0x19, 0x14, 0x01, 0x6e, 0x74, 0x74, 0x6f, 0x0c, 0x16, 0x15, 0x55, - 0x48, 0x15, 0x65, 0x8e, 0x2c, 0x2f, 0x2b, 0x89, 0x8d, 0x8d, 0x89, 0x2e, - 0x2d, 0x2f, 0x8e, 0xfe, 0x92, 0x73, 0x02, 0x40, 0x32, 0x31, 0x7b, 0x3e, - 0xa9, 0x77, 0xb5, 0x2e, 0x2f, 0xb5, 0x78, 0xaa, 0x3d, 0x7c, 0x32, 0x31, - 0x40, 0x02, 0x73, 0x03, 0x51, 0x40, 0x43, 0xa9, 0x51, 0xaa, 0x91, 0x81, - 0x91, 0x01, 0x82, 0x90, 0xa9, 0x50, 0xa3, 0x42, 0x45, 0x54, 0x00, 0x01, - 0x01, 0x43, 0xfe, 0x92, 0x03, 0xe7, 0x06, 0x3d, 0x00, 0x36, 0x00, 0x00, - 0x45, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x35, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x01, 0x43, 0x15, 0x62, 0x8e, - 0x2f, 0x2e, 0x2c, 0x20, 0x21, 0x22, 0x6b, 0x48, 0x52, 0x75, 0x21, 0x17, - 0x17, 0x2d, 0x33, 0x2d, 0x8b, 0x61, 0x14, 0x48, 0x54, 0x16, 0x15, 0x0d, - 0x2e, 0x30, 0x19, 0x43, 0x28, 0x27, 0x41, 0x1a, 0x31, 0x2f, 0x15, 0x18, - 0x19, 0x52, 0xfb, 0x73, 0x02, 0x56, 0x43, 0x43, 0xa3, 0x50, 0xa9, 0x46, - 0x66, 0x22, 0x23, 0x21, 0x01, 0x91, 0x2b, 0x2f, 0x21, 0x5b, 0x3c, 0xaa, - 0x54, 0xac, 0x45, 0x3d, 0x4c, 0x03, 0x73, 0x02, 0x40, 0x31, 0x32, 0x7c, - 0x3d, 0xaa, 0x4e, 0x85, 0x32, 0x1b, 0x2c, 0x10, 0x10, 0x2a, 0x1a, 0x31, - 0x86, 0x4f, 0xa9, 0x3e, 0x7b, 0x31, 0x32, 0x40, 0x00, 0x01, 0x01, 0x8c, - 0x00, 0x99, 0x03, 0x40, 0x03, 0xb5, 0x00, 0x06, 0x00, 0x00, 0x41, 0x01, - 0x23, 0x01, 0x15, 0x01, 0x33, 0x02, 0x3e, 0x01, 0x02, 0x8d, 0xfe, 0xd9, - 0x01, 0x27, 0x8d, 0x02, 0x26, 0x01, 0x8f, 0xfe, 0x7b, 0x13, 0xfe, 0x7c, - 0x00, 0x01, 0x01, 0x8c, 0x00, 0x98, 0x03, 0x40, 0x03, 0xb5, 0x00, 0x06, - 0x00, 0x00, 0x41, 0x23, 0x01, 0x01, 0x33, 0x01, 0x35, 0x02, 0x1a, 0x8e, - 0x01, 0x02, 0xfe, 0xfe, 0x8e, 0x01, 0x26, 0x03, 0xb5, 0xfe, 0x71, 0xfe, - 0x72, 0x01, 0x85, 0x13, 0x00, 0x01, 0x00, 0x77, 0x00, 0x92, 0x04, 0x5d, - 0x04, 0xb6, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x15, - 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x02, 0xc6, 0xb9, 0xfe, 0x6a, 0x01, - 0x96, 0xb9, 0x01, 0x97, 0x03, 0x0d, 0x01, 0xa9, 0xfe, 0x57, 0xb8, 0xfe, - 0x3d, 0x01, 0xc3, 0xb8, 0x00, 0x01, 0x00, 0xa9, 0x02, 0x8b, 0x03, 0xec, - 0x03, 0x22, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x03, 0xec, - 0xfc, 0xbd, 0x02, 0x8b, 0x97, 0x97, 0x00, 0x02, 0x00, 0x9c, 0x00, 0x01, - 0x04, 0x30, 0x04, 0xf3, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x03, 0x35, - 0x21, 0x15, 0x02, 0xc5, 0xa8, 0xfe, 0x7f, 0x01, 0x81, 0xa8, 0x01, 0x6b, - 0x2a, 0xfc, 0xbd, 0x03, 0x57, 0x01, 0x9c, 0xfe, 0x64, 0x98, 0xfe, 0x62, - 0x01, 0x9e, 0x98, 0xfc, 0xaa, 0x97, 0x97, 0x00, 0x00, 0x01, 0x00, 0xb5, - 0x00, 0xce, 0x04, 0x3a, 0x04, 0x63, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x17, - 0x01, 0x01, 0x37, 0x01, 0x01, 0x27, 0x01, 0x01, 0x07, 0x01, 0xb5, 0x77, - 0x01, 0x4b, 0x01, 0x4c, 0x77, 0xfe, 0xb5, 0x01, 0x48, 0x77, 0xfe, 0xb7, - 0xfe, 0xb8, 0x77, 0x01, 0x47, 0x01, 0x49, 0x7b, 0x01, 0x51, 0xfe, 0xaf, - 0x7b, 0x01, 0x51, 0x01, 0x4e, 0x7b, 0xfe, 0xb1, 0x01, 0x4f, 0x7b, 0xfe, - 0xb2, 0x00, 0x00, 0x03, 0x00, 0x73, 0x00, 0xb1, 0x04, 0x59, 0x04, 0xb4, - 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x04, 0x59, 0xfc, 0x1a, 0x01, 0x88, 0x37, 0x36, 0x36, 0x38, 0x38, 0x36, - 0x36, 0x37, 0x02, 0x37, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0x37, 0x02, - 0x58, 0xb8, 0xb8, 0x01, 0xf1, 0x2d, 0x3c, 0x3c, 0x2d, 0x2d, 0x3e, 0x3e, - 0xfc, 0xa4, 0x2c, 0x3d, 0x3d, 0x2c, 0x2d, 0x3e, 0x3e, 0x00, 0x00, 0x02, - 0x00, 0xad, 0x01, 0x6d, 0x04, 0x2a, 0x03, 0xad, 0x00, 0x03, 0x00, 0x07, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x04, 0x2a, - 0xfc, 0x83, 0x03, 0x7d, 0xfc, 0x83, 0x03, 0x0c, 0xa1, 0xa1, 0xfe, 0x61, - 0xa0, 0xa0, 0x00, 0x01, 0x00, 0xa9, 0x00, 0xb5, 0x04, 0x26, 0x04, 0x41, - 0x00, 0x13, 0x00, 0x00, 0x41, 0x35, 0x21, 0x37, 0x21, 0x35, 0x23, 0x37, - 0x27, 0x07, 0x21, 0x15, 0x21, 0x07, 0x21, 0x15, 0x21, 0x07, 0x17, 0x37, - 0x04, 0x26, 0xfe, 0x4c, 0x80, 0x01, 0x34, 0xe4, 0x31, 0x4d, 0x4a, 0xfd, - 0xcd, 0x01, 0xe2, 0x80, 0xfe, 0x9e, 0x01, 0x11, 0x42, 0x4e, 0x5c, 0x01, - 0x6d, 0xa0, 0xff, 0xa1, 0x61, 0x33, 0x94, 0xa1, 0xff, 0xa0, 0x85, 0x33, - 0xb8, 0x00, 0x00, 0x02, 0x00, 0x8d, 0x01, 0x14, 0x04, 0x3e, 0x03, 0xff, - 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x53, 0x17, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x03, 0x17, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x97, 0x0a, - 0x2f, 0x7a, 0x43, 0x38, 0x4f, 0x43, 0x45, 0x7e, 0x38, 0x42, 0x7a, 0x30, - 0x0a, 0x2f, 0x7a, 0x43, 0x2c, 0x64, 0x38, 0x44, 0x79, 0x3f, 0x43, 0x7a, - 0x3a, 0x0a, 0x2f, 0x7a, 0x43, 0x39, 0x49, 0x51, 0x51, 0x6a, 0x37, 0x42, - 0x7a, 0x30, 0x0a, 0x2f, 0x7a, 0x43, 0x35, 0x6d, 0x41, 0x49, 0x5f, 0x39, - 0x43, 0x7a, 0x03, 0x69, 0xab, 0x44, 0x4f, 0x18, 0x24, 0x25, 0x2e, 0x4f, - 0x43, 0xab, 0x44, 0x4e, 0x1d, 0x20, 0x27, 0x2a, 0x4e, 0xfe, 0x12, 0xab, - 0x44, 0x4e, 0x17, 0x28, 0x28, 0x27, 0x4e, 0x44, 0xab, 0x44, 0x4f, 0x27, - 0x25, 0x2a, 0x19, 0x4f, 0x00, 0x01, 0x00, 0xaa, 0x00, 0xc4, 0x03, 0xfa, - 0x04, 0x4b, 0x00, 0x08, 0x00, 0x00, 0x65, 0x35, 0x25, 0x27, 0x37, 0x25, - 0x35, 0x01, 0x15, 0x03, 0xfa, 0xfd, 0x9c, 0x35, 0x35, 0x02, 0x64, 0xfc, - 0xb0, 0xc4, 0xc4, 0xec, 0x12, 0x11, 0xf0, 0xc4, 0xfe, 0x86, 0x92, 0x00, - 0x00, 0x01, 0x00, 0xb2, 0x00, 0xc5, 0x04, 0x25, 0x04, 0x4c, 0x00, 0x08, - 0x00, 0x00, 0x77, 0x01, 0x35, 0x01, 0x15, 0x05, 0x17, 0x07, 0x05, 0xb2, - 0x03, 0x73, 0xfc, 0x8d, 0x02, 0x87, 0x3c, 0x3c, 0xfd, 0x79, 0xc5, 0x01, - 0x7b, 0x92, 0x01, 0x7a, 0xbf, 0xf0, 0x13, 0x11, 0xf4, 0x00, 0x00, 0x02, - 0x00, 0xbb, 0x00, 0x09, 0x04, 0x0d, 0x04, 0x99, 0x00, 0x08, 0x00, 0x0c, - 0x00, 0x00, 0x41, 0x35, 0x25, 0x27, 0x37, 0x25, 0x35, 0x01, 0x15, 0x01, - 0x35, 0x21, 0x15, 0x04, 0x0d, 0xfd, 0x9c, 0x35, 0x35, 0x02, 0x64, 0xfc, - 0xb0, 0x03, 0x41, 0xfc, 0xbd, 0x01, 0x6c, 0xb1, 0xd4, 0x10, 0x10, 0xd8, - 0xb0, 0xfe, 0xac, 0x83, 0xfd, 0x47, 0x97, 0x97, 0x00, 0x02, 0x00, 0xc2, - 0x00, 0x07, 0x04, 0x35, 0x04, 0xad, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, - 0x53, 0x01, 0x35, 0x01, 0x15, 0x05, 0x17, 0x07, 0x05, 0x01, 0x35, 0x21, - 0x15, 0xc2, 0x03, 0x73, 0xfc, 0x8d, 0x02, 0x87, 0x3c, 0x3c, 0xfd, 0x79, - 0x03, 0x44, 0xfc, 0xbd, 0x01, 0x80, 0x01, 0x55, 0x84, 0x01, 0x54, 0xac, - 0xd8, 0x11, 0x0f, 0xdc, 0xfd, 0xda, 0x97, 0x97, 0x00, 0x01, 0x00, 0xbd, - 0x01, 0x77, 0x03, 0xfb, 0x03, 0x20, 0x00, 0x05, 0x00, 0x00, 0x41, 0x11, - 0x21, 0x15, 0x21, 0x11, 0x03, 0xfb, 0xfc, 0xc2, 0x02, 0x85, 0x01, 0x77, - 0x01, 0xa9, 0xa1, 0xfe, 0xf8, 0x00, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x83, - 0x04, 0x01, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x45, 0x01, 0x23, 0x01, - 0x01, 0xa2, 0x02, 0x5f, 0xa5, 0xfd, 0xa0, 0x7d, 0x06, 0x2d, 0xf9, 0xd3, - 0x00, 0x01, 0x00, 0xe7, 0xff, 0x83, 0x03, 0xee, 0x05, 0xb0, 0x00, 0x03, - 0x00, 0x00, 0x53, 0x01, 0x33, 0x01, 0xe7, 0x02, 0x60, 0xa7, 0xfd, 0xa0, - 0x05, 0xb0, 0xf9, 0xd3, 0x06, 0x2d, 0x00, 0x01, 0x01, 0x2b, 0x00, 0xd5, - 0x03, 0x9e, 0x04, 0xd1, 0x00, 0x03, 0x00, 0x00, 0x65, 0x01, 0x27, 0x01, - 0x01, 0x9c, 0x02, 0x02, 0x72, 0xfd, 0xff, 0xd5, 0x03, 0xba, 0x42, 0xfc, - 0x46, 0x00, 0x00, 0x05, 0x00, 0x2c, 0xff, 0xeb, 0x04, 0x9e, 0x05, 0xc5, - 0x00, 0x19, 0x00, 0x33, 0x00, 0x4d, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x00, - 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x05, 0x01, 0x27, 0x01, - 0x2c, 0x23, 0x22, 0x22, 0x65, 0x41, 0x41, 0x64, 0x22, 0x21, 0x23, 0x23, - 0x21, 0x22, 0x65, 0x42, 0x41, 0x64, 0x21, 0x22, 0x23, 0x8a, 0x0e, 0x10, - 0x0f, 0x31, 0x23, 0x24, 0x31, 0x10, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x31, - 0x23, 0x24, 0x31, 0x10, 0x10, 0x0e, 0x01, 0xcf, 0x23, 0x22, 0x22, 0x65, - 0x42, 0x41, 0x63, 0x22, 0x22, 0x23, 0x23, 0x22, 0x22, 0x64, 0x42, 0x41, - 0x64, 0x22, 0x22, 0x23, 0x8a, 0x0e, 0x10, 0x0f, 0x31, 0x24, 0x23, 0x32, - 0x10, 0x0f, 0x0e, 0x0e, 0x0f, 0x0f, 0x31, 0x23, 0x24, 0x32, 0x0f, 0x10, - 0x0f, 0xfe, 0x7f, 0x02, 0x37, 0x6f, 0xfd, 0xc9, 0x04, 0xaa, 0x4d, 0x39, - 0x66, 0x26, 0x27, 0x2d, 0x2d, 0x27, 0x26, 0x66, 0x39, 0x4d, 0x39, 0x67, - 0x27, 0x27, 0x2d, 0x2d, 0x27, 0x27, 0x67, 0x86, 0x4d, 0x1f, 0x3b, 0x17, - 0x16, 0x1b, 0x1b, 0x16, 0x17, 0x3b, 0x1f, 0x4d, 0x1f, 0x39, 0x16, 0x17, - 0x1b, 0x1b, 0x17, 0x16, 0x39, 0xfd, 0x14, 0x4e, 0x39, 0x66, 0x26, 0x27, - 0x2d, 0x2d, 0x27, 0x26, 0x66, 0x39, 0x4e, 0x39, 0x66, 0x27, 0x27, 0x2d, - 0x2d, 0x27, 0x27, 0x66, 0x87, 0x4e, 0x1f, 0x3a, 0x17, 0x16, 0x1b, 0x1b, - 0x16, 0x17, 0x3a, 0x1f, 0x4e, 0x1f, 0x3a, 0x16, 0x17, 0x1b, 0x1b, 0x17, - 0x16, 0x3a, 0x29, 0x04, 0x0d, 0x3e, 0xfb, 0xf3, 0x00, 0x06, 0x00, 0x36, - 0xff, 0xeb, 0x04, 0xa0, 0x05, 0xc5, 0x00, 0x31, 0x00, 0x4b, 0x00, 0x65, - 0x00, 0x7f, 0x00, 0x99, 0x00, 0x9d, 0x00, 0x00, 0x41, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x25, 0x01, 0x27, 0x01, 0x01, 0x56, - 0x1f, 0x1f, 0x1f, 0x5c, 0x3d, 0x24, 0x3e, 0x19, 0x0f, 0x1a, 0x0b, 0x0a, - 0x17, 0x0d, 0x1b, 0x42, 0x27, 0x3c, 0x5b, 0x1f, 0x1e, 0x1f, 0x1f, 0x1f, - 0x1f, 0x5b, 0x3d, 0x23, 0x3c, 0x19, 0x10, 0x1c, 0x0c, 0x0d, 0x20, 0x12, - 0x18, 0x39, 0x21, 0x3c, 0x5b, 0x1f, 0x1f, 0x1f, 0xfe, 0xe0, 0x20, 0x1f, - 0x1f, 0x5c, 0x3c, 0x3c, 0x5a, 0x1f, 0x1e, 0x20, 0x1f, 0x1f, 0x1f, 0x5b, - 0x3d, 0x3c, 0x5b, 0x1f, 0x1f, 0x1f, 0x01, 0xab, 0x0b, 0x0d, 0x0c, 0x28, - 0x1d, 0x1e, 0x28, 0x0d, 0x0c, 0x0b, 0x0b, 0x0c, 0x0c, 0x28, 0x1d, 0x1e, - 0x29, 0x0c, 0x0d, 0x0b, 0xfe, 0xe0, 0x0b, 0x0d, 0x0c, 0x28, 0x1d, 0x1e, - 0x28, 0x0d, 0x0c, 0x0b, 0x0b, 0x0c, 0x0d, 0x28, 0x1c, 0x1e, 0x28, 0x0d, - 0x0d, 0x0b, 0x02, 0x80, 0x0b, 0x0d, 0x0c, 0x28, 0x1e, 0x1d, 0x29, 0x0d, - 0x0c, 0x0b, 0x0b, 0x0c, 0x0c, 0x28, 0x1d, 0x1e, 0x29, 0x0d, 0x0d, 0x0b, - 0xfd, 0x6e, 0x03, 0x10, 0x44, 0xfc, 0xf0, 0x01, 0x2f, 0x2c, 0x38, 0x66, - 0x26, 0x27, 0x2d, 0x11, 0x0f, 0x09, 0x16, 0x0d, 0x0b, 0x15, 0x08, 0x11, - 0x13, 0x2d, 0x27, 0x26, 0x66, 0x38, 0x2c, 0x38, 0x65, 0x27, 0x26, 0x2e, - 0x10, 0x0e, 0x0a, 0x17, 0x0e, 0x0f, 0x19, 0x0a, 0x0d, 0x0e, 0x2e, 0x26, - 0x27, 0x65, 0x03, 0x45, 0x2c, 0x38, 0x65, 0x26, 0x26, 0x2e, 0x2e, 0x26, - 0x26, 0x65, 0x38, 0x2c, 0x38, 0x66, 0x27, 0x26, 0x2e, 0x2e, 0x26, 0x27, - 0x66, 0xfc, 0x1f, 0x2c, 0x1e, 0x39, 0x17, 0x16, 0x1c, 0x1c, 0x16, 0x17, - 0x39, 0x1e, 0x2c, 0x1e, 0x3a, 0x16, 0x17, 0x1b, 0x1b, 0x17, 0x16, 0x3a, - 0x03, 0x9b, 0x2c, 0x1e, 0x39, 0x17, 0x16, 0x1c, 0x1c, 0x16, 0x17, 0x39, - 0x1e, 0x2c, 0x1e, 0x39, 0x16, 0x17, 0x1b, 0x1b, 0x17, 0x16, 0x39, 0xfc, - 0xa1, 0x2c, 0x1e, 0x39, 0x17, 0x16, 0x1c, 0x1c, 0x16, 0x17, 0x39, 0x1e, - 0x2c, 0x1e, 0x3a, 0x16, 0x17, 0x1b, 0x1b, 0x17, 0x16, 0x3a, 0xda, 0x02, - 0x81, 0x54, 0xfd, 0x7f, 0x00, 0x01, 0x02, 0x1c, 0xfe, 0x72, 0x02, 0xb1, - 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x02, 0xb1, - 0x95, 0xfe, 0x72, 0x07, 0x3e, 0xf8, 0xc2, 0x00, 0x00, 0x02, 0x01, 0xff, - 0xfe, 0xf2, 0x02, 0xb8, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x33, 0x11, 0x23, 0x37, 0x11, 0x23, 0x11, 0x01, 0xff, 0xb9, 0xb9, - 0xb9, 0xb9, 0xfe, 0xf2, 0x03, 0x17, 0xb1, 0x02, 0xf6, 0xfd, 0x0a, 0x00, - 0x00, 0x01, 0x00, 0x77, 0x00, 0x00, 0x04, 0x55, 0x05, 0xb0, 0x00, 0x0b, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, - 0x33, 0x11, 0x04, 0x55, 0xfe, 0x6b, 0xb9, 0xfe, 0x70, 0x01, 0x90, 0xb9, - 0x03, 0xa1, 0x99, 0x01, 0x76, 0xfe, 0x8a, 0x99, 0xfc, 0x5f, 0x03, 0xa1, - 0x00, 0x01, 0x00, 0x79, 0xfe, 0x60, 0x04, 0x56, 0x05, 0xb0, 0x00, 0x13, - 0x00, 0x00, 0x61, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x23, 0x11, - 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x56, - 0xfe, 0x69, 0x01, 0x97, 0xfe, 0x69, 0xb9, 0xfe, 0x73, 0x01, 0x8d, 0xfe, - 0x73, 0x01, 0x8d, 0xb9, 0x97, 0x03, 0x0a, 0x99, 0x01, 0x76, 0xfe, 0x8a, - 0x99, 0xfc, 0xf6, 0x97, 0xfe, 0x60, 0x01, 0xa0, 0x00, 0x03, 0x00, 0x5a, - 0xff, 0xeb, 0x04, 0x83, 0x04, 0x4e, 0x00, 0x33, 0x00, 0x4b, 0x00, 0x63, - 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x25, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x03, 0x5e, 0x6e, 0x10, 0x10, 0x10, - 0x36, 0x25, 0x26, 0x39, 0x13, 0x13, 0x12, 0x12, 0x13, 0x13, 0x39, 0x26, - 0x25, 0x36, 0x11, 0x10, 0x10, 0x6e, 0x1e, 0x1c, 0x20, 0x61, 0x3f, 0x3e, - 0x60, 0x21, 0x21, 0x24, 0x24, 0x21, 0x21, 0x60, 0x3e, 0x3e, 0x60, 0x20, - 0x1d, 0x1e, 0xfd, 0x53, 0x44, 0x3c, 0x3c, 0xa3, 0x5f, 0x5e, 0xa3, 0x3c, - 0x3c, 0x44, 0x44, 0x3c, 0x3c, 0xa3, 0x5e, 0x5f, 0xa3, 0x3c, 0x3c, 0x44, - 0x57, 0x52, 0x48, 0x47, 0xc3, 0x71, 0x71, 0xc2, 0x48, 0x47, 0x52, 0x52, - 0x47, 0x48, 0xc2, 0x71, 0x6b, 0xc2, 0x48, 0x49, 0x56, 0x01, 0xbb, 0x23, - 0x33, 0x11, 0x12, 0x11, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x58, 0x28, 0x47, - 0x1a, 0x19, 0x1e, 0x11, 0x12, 0x11, 0x33, 0x22, 0x36, 0x54, 0x1e, 0x21, - 0x22, 0x2c, 0x27, 0x27, 0x6b, 0x3e, 0x57, 0x3f, 0x6a, 0x26, 0x27, 0x2c, - 0x21, 0x20, 0x1d, 0x56, 0x9a, 0x61, 0xab, 0x40, 0x40, 0x49, 0x49, 0x40, - 0x40, 0xab, 0x61, 0x62, 0xac, 0x40, 0x41, 0x4b, 0x4a, 0x41, 0x40, 0xad, - 0x62, 0x75, 0xcd, 0x4c, 0x4d, 0x58, 0x58, 0x4d, 0x4c, 0xcd, 0x75, 0x75, - 0xcc, 0x4c, 0x4b, 0x58, 0x53, 0x4a, 0x4a, 0xcf, 0x00, 0x04, 0x00, 0x57, - 0xff, 0xeb, 0x04, 0x80, 0x04, 0x4d, 0x00, 0x17, 0x00, 0x2f, 0x00, 0x3d, - 0x00, 0x49, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x25, 0x33, 0x17, 0x33, 0x03, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x23, 0x23, 0x11, 0x33, 0x11, 0x35, 0x33, 0x32, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x57, 0x52, 0x48, 0x47, 0xc3, 0x71, - 0x71, 0xc2, 0x48, 0x47, 0x52, 0x52, 0x47, 0x48, 0xc2, 0x71, 0x71, 0xc3, - 0x47, 0x48, 0x52, 0x57, 0x44, 0x3c, 0x3c, 0xa3, 0x5f, 0x5e, 0xa3, 0x3c, - 0x3c, 0x44, 0x44, 0x3c, 0x3c, 0xa3, 0x5e, 0x5f, 0xa3, 0x3c, 0x3c, 0x44, - 0x01, 0x4e, 0x7d, 0x78, 0x6e, 0x93, 0x42, 0x46, 0x83, 0x6d, 0xd3, 0x6b, - 0x68, 0x49, 0x3c, 0x13, 0x0f, 0x10, 0x2c, 0x18, 0x02, 0x1c, 0x75, 0xcd, - 0x4b, 0x4c, 0x58, 0x58, 0x4c, 0x4b, 0xcd, 0x75, 0x75, 0xcd, 0x4c, 0x4c, - 0x57, 0x57, 0x4c, 0x4c, 0xcd, 0x75, 0x62, 0xac, 0x40, 0x3f, 0x49, 0x49, - 0x3f, 0x40, 0xac, 0x62, 0x62, 0xab, 0x40, 0x40, 0x4a, 0x4a, 0x40, 0x40, - 0xab, 0x2b, 0xfd, 0x01, 0x1f, 0x16, 0x4e, 0x38, 0x61, 0x5f, 0xfd, 0x85, - 0x01, 0x5e, 0xbc, 0x2c, 0x37, 0x15, 0x20, 0x0c, 0x0b, 0x0c, 0x01, 0x00, - 0x00, 0x02, 0x00, 0x67, 0x03, 0x97, 0x04, 0x37, 0x05, 0xb0, 0x00, 0x0c, - 0x00, 0x14, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x03, 0x03, 0x23, - 0x11, 0x33, 0x11, 0x13, 0x33, 0x01, 0x35, 0x21, 0x15, 0x33, 0x11, 0x33, - 0x11, 0x03, 0xdd, 0x5a, 0x70, 0x90, 0x8f, 0x70, 0x5a, 0x8b, 0x34, 0xfe, - 0x98, 0xfe, 0x7e, 0x93, 0x5b, 0x05, 0x21, 0xfe, 0x76, 0x02, 0x19, 0xfe, - 0x71, 0x01, 0x8f, 0xfd, 0xe7, 0x01, 0x89, 0xfe, 0x77, 0x01, 0xc8, 0x51, - 0x51, 0xfe, 0x38, 0x01, 0xc8, 0x00, 0x00, 0x02, 0x01, 0x69, 0x03, 0xc0, - 0x03, 0x62, 0x05, 0xc4, 0x00, 0x17, 0x00, 0x2f, 0x00, 0x00, 0x41, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x69, - 0x29, 0x23, 0x22, 0x5d, 0x34, 0x33, 0x5b, 0x22, 0x22, 0x28, 0x28, 0x22, - 0x22, 0x5b, 0x33, 0x34, 0x5d, 0x22, 0x23, 0x29, 0x7c, 0x15, 0x12, 0x11, - 0x30, 0x1b, 0x1b, 0x2e, 0x12, 0x11, 0x13, 0x13, 0x11, 0x12, 0x2e, 0x1b, - 0x1b, 0x30, 0x11, 0x12, 0x15, 0x04, 0xc0, 0x36, 0x5d, 0x22, 0x23, 0x28, - 0x28, 0x23, 0x22, 0x5e, 0x35, 0x35, 0x5f, 0x24, 0x23, 0x29, 0x29, 0x23, - 0x24, 0x5f, 0x35, 0x1c, 0x31, 0x12, 0x12, 0x14, 0x14, 0x12, 0x12, 0x31, - 0x1c, 0x1b, 0x2f, 0x11, 0x12, 0x13, 0x13, 0x12, 0x11, 0x2f, 0x00, 0x01, - 0x00, 0xa0, 0x01, 0xd9, 0x04, 0x60, 0x05, 0xb0, 0x00, 0x0e, 0x00, 0x00, - 0x41, 0x01, 0x17, 0x13, 0x13, 0x37, 0x01, 0x25, 0x27, 0x05, 0x13, 0x23, - 0x13, 0x25, 0x07, 0x02, 0x19, 0xfe, 0xfb, 0x92, 0xd4, 0xd6, 0x92, 0xff, - 0x00, 0x01, 0x7e, 0x36, 0xfe, 0x95, 0x1d, 0xb2, 0x19, 0xfe, 0x93, 0x36, - 0x03, 0x93, 0xfe, 0xb9, 0x6a, 0x01, 0x62, 0xfe, 0x95, 0x6e, 0x01, 0x44, - 0x5e, 0xb2, 0x96, 0x01, 0xab, 0xfe, 0x5b, 0x97, 0xaf, 0x00, 0x00, 0x02, - 0x00, 0x3d, 0x00, 0x00, 0x04, 0x99, 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x1f, - 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x33, 0x35, 0x23, 0x13, 0x33, 0x35, - 0x23, 0x13, 0x23, 0x03, 0x21, 0x13, 0x23, 0x03, 0x21, 0x15, 0x21, 0x03, - 0x21, 0x15, 0x33, 0x03, 0x33, 0x13, 0x37, 0x13, 0x21, 0x03, 0x02, 0xc3, - 0x50, 0x8f, 0x50, 0xfc, 0xe2, 0x45, 0xe8, 0xcd, 0x52, 0x8f, 0x52, 0xfe, - 0xf8, 0x52, 0x8f, 0x52, 0xfe, 0xe3, 0x01, 0x02, 0x45, 0xfe, 0xf7, 0xef, - 0x50, 0x8f, 0x50, 0x1a, 0x45, 0x01, 0x08, 0x45, 0x01, 0x9a, 0xfe, 0x66, - 0x01, 0x9a, 0x89, 0x01, 0x62, 0x8b, 0x01, 0xa0, 0xfe, 0x60, 0x01, 0xa0, - 0xfe, 0x60, 0x8b, 0xfe, 0x9e, 0x89, 0xfe, 0x66, 0x01, 0x9a, 0x89, 0x01, - 0x62, 0xfe, 0x9e, 0x00, 0x00, 0x03, 0x00, 0x6b, 0xff, 0xec, 0x04, 0xa9, - 0x05, 0xc5, 0x00, 0x36, 0x00, 0x4a, 0x00, 0x63, 0x00, 0x00, 0x53, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, - 0x33, 0x27, 0x36, 0x36, 0x35, 0x23, 0x06, 0x06, 0x07, 0x01, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x37, 0x01, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x03, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x6b, 0x3d, 0x38, 0x38, 0xa0, 0x63, 0x3d, 0x73, 0x35, 0x20, - 0x3d, 0x1c, 0x53, 0xdd, 0xb5, 0x46, 0x49, 0xa7, 0x01, 0x28, 0x23, 0xfe, - 0xcd, 0x5e, 0x2c, 0x4c, 0x1c, 0x1b, 0x1f, 0x2c, 0x28, 0x29, 0x74, 0x47, - 0x52, 0x84, 0x2f, 0x2f, 0x33, 0x11, 0x0f, 0x13, 0x3a, 0x25, 0x24, 0x31, - 0x51, 0x1f, 0x24, 0x28, 0x01, 0xb0, 0x3d, 0x5c, 0x1f, 0x1f, 0x20, 0x0b, - 0x11, 0x10, 0x3e, 0x32, 0x1c, 0x01, 0x43, 0x18, 0x33, 0x1b, 0x25, 0x50, - 0xa0, 0x16, 0x16, 0x15, 0x41, 0x2b, 0x21, 0x34, 0x13, 0x12, 0x13, 0x09, - 0x0b, 0x0b, 0x28, 0x1f, 0x75, 0x19, 0x26, 0x0c, 0x0a, 0x0a, 0x01, 0x75, - 0x56, 0x91, 0x34, 0x34, 0x3a, 0x1a, 0x19, 0x0f, 0x28, 0x18, 0x6e, 0xed, - 0x58, 0xdb, 0x80, 0x58, 0x98, 0x40, 0x01, 0x93, 0x50, 0x21, 0x44, 0x26, - 0x26, 0x57, 0x35, 0x3e, 0x70, 0x2b, 0x2a, 0x32, 0x2e, 0x2c, 0x2d, 0x83, - 0x55, 0x28, 0x4c, 0x25, 0x2d, 0x5d, 0x32, 0x1a, 0x25, 0x4c, 0x2a, 0x32, - 0x72, 0xfe, 0xca, 0x26, 0x21, 0x21, 0x58, 0x33, 0x13, 0x39, 0x23, 0x22, - 0x4e, 0x29, 0x18, 0xfe, 0x51, 0x14, 0x21, 0x0c, 0x11, 0x12, 0x03, 0xe6, - 0x28, 0x47, 0x1b, 0x1b, 0x20, 0x1b, 0x15, 0x16, 0x39, 0x1e, 0x17, 0x30, - 0x17, 0x18, 0x2e, 0x15, 0x5d, 0x24, 0x44, 0x21, 0x19, 0x33, 0x00, 0x02, - 0x00, 0x40, 0xff, 0xf8, 0x04, 0x8b, 0x05, 0xb2, 0x00, 0x5e, 0x00, 0x75, - 0x00, 0x00, 0x41, 0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x02, 0x07, 0x06, 0x12, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x37, 0x13, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x05, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x03, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x04, 0x87, 0x04, 0x40, 0x40, 0x41, 0xbe, 0x7a, 0x7d, 0xcf, 0x4c, 0x50, - 0x5f, 0x06, 0x05, 0x3b, 0x43, 0x42, 0xd3, 0x93, 0x20, 0x48, 0x23, 0x23, - 0x40, 0x19, 0x20, 0x16, 0x36, 0x1e, 0x1e, 0x3e, 0x1e, 0x70, 0xa5, 0x35, - 0x35, 0x30, 0x05, 0x04, 0x4a, 0x43, 0x3f, 0x9f, 0x61, 0x60, 0x96, 0x34, - 0x33, 0x32, 0x04, 0x01, 0x14, 0x13, 0x13, 0x39, 0x25, 0x10, 0x1c, 0x09, - 0x0a, 0x0a, 0x03, 0x2c, 0x1a, 0x58, 0x43, 0x47, 0x76, 0x2c, 0x2d, 0x38, - 0x09, 0x06, 0x11, 0x17, 0x16, 0x48, 0x31, 0x22, 0x3e, 0x1b, 0x16, 0x27, - 0x10, 0x07, 0x16, 0x0f, 0x15, 0x3a, 0x24, 0x4a, 0x66, 0x21, 0x20, 0x20, - 0xfd, 0x52, 0x08, 0x21, 0x1b, 0x1b, 0x4f, 0x35, 0x0f, 0x1d, 0x0e, 0x26, - 0x01, 0x0b, 0x1a, 0x0e, 0x17, 0x37, 0x1e, 0x18, 0x23, 0x0b, 0x0b, 0x08, - 0x03, 0x15, 0x97, 0xf7, 0x58, 0x58, 0x5f, 0x72, 0x64, 0x69, 0xfe, 0xe0, - 0xa0, 0x99, 0xfe, 0xff, 0x5d, 0x5d, 0x67, 0x09, 0x0a, 0x09, 0x1c, 0x13, - 0x75, 0x0f, 0x18, 0x08, 0x09, 0x09, 0x4d, 0x4a, 0x49, 0xd4, 0x88, 0x91, - 0xf3, 0x56, 0x50, 0x57, 0x4a, 0x46, 0x46, 0xca, 0x7f, 0x49, 0x82, 0x30, - 0x31, 0x39, 0x0a, 0x0f, 0x0e, 0x33, 0x29, 0x01, 0xf8, 0x24, 0x35, 0x43, - 0x3e, 0x3f, 0xb3, 0x6f, 0x4e, 0x82, 0x2f, 0x2f, 0x34, 0x14, 0x12, 0x10, - 0x2a, 0x19, 0x18, 0x27, 0x0f, 0x15, 0x16, 0x56, 0x44, 0x44, 0xa7, 0x23, - 0x52, 0x85, 0x2f, 0x2e, 0x33, 0x06, 0x07, 0xfe, 0x4d, 0x0a, 0x18, 0x25, - 0x0e, 0x16, 0x14, 0x1d, 0x1c, 0x1b, 0x51, 0x00, 0x00, 0x02, 0x00, 0x57, - 0xfe, 0x11, 0x04, 0x74, 0x05, 0xc4, 0x00, 0x6a, 0x00, 0x8b, 0x00, 0x00, - 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x07, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x01, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x04, 0x74, 0x41, 0x3d, - 0x1f, 0x4a, 0x2b, 0x2b, 0x61, 0x36, 0x2f, 0x4f, 0x21, 0x24, 0x3a, 0x15, - 0x29, 0x22, 0x26, 0x27, 0x26, 0x71, 0x4b, 0x49, 0x73, 0x27, 0x27, 0x29, - 0xb9, 0x45, 0x3f, 0x40, 0xb6, 0x72, 0x6d, 0xb4, 0x40, 0x40, 0x47, 0x1e, - 0x1d, 0x10, 0x27, 0x17, 0x1e, 0x35, 0x14, 0x26, 0x29, 0x42, 0x3d, 0x21, - 0x53, 0x2f, 0x3b, 0x8c, 0x3c, 0x3f, 0x5e, 0x20, 0x2a, 0x26, 0x2a, 0x27, - 0x28, 0x70, 0x46, 0x3c, 0x78, 0x30, 0x30, 0x3c, 0xb9, 0x5a, 0x49, 0x49, - 0xbb, 0x62, 0x6d, 0xb3, 0x41, 0x40, 0x47, 0x19, 0x18, 0x11, 0x2f, 0x1d, - 0x1d, 0x33, 0x15, 0x29, 0x2c, 0xfd, 0xe2, 0x34, 0x57, 0x24, 0x1e, 0x32, - 0x14, 0x2b, 0x28, 0x01, 0x1c, 0x1a, 0x14, 0x37, 0x21, 0x25, 0x50, 0x2c, - 0x3e, 0x64, 0x26, 0x55, 0x45, 0x1a, 0x1a, 0x13, 0x35, 0x21, 0x25, 0x51, - 0x01, 0xaf, 0x5e, 0x85, 0x30, 0x18, 0x29, 0x12, 0x12, 0x20, 0x0f, 0x0d, - 0x18, 0x0c, 0x0e, 0x1c, 0x0f, 0x1c, 0x48, 0x34, 0x2d, 0x4e, 0x1d, 0x1c, - 0x21, 0x2c, 0x25, 0x26, 0x67, 0x3a, 0x68, 0xa1, 0x37, 0x36, 0x39, 0x33, - 0x30, 0x30, 0x87, 0x54, 0x41, 0x66, 0x29, 0x15, 0x27, 0x11, 0x0f, 0x24, - 0x15, 0x28, 0x65, 0x3d, 0x5f, 0x86, 0x31, 0x1b, 0x2c, 0x13, 0x18, 0x27, - 0x14, 0x15, 0x28, 0x16, 0x1d, 0x46, 0x30, 0x2f, 0x4e, 0x1c, 0x1c, 0x20, - 0x1d, 0x22, 0x21, 0x6b, 0x4e, 0x02, 0x78, 0xa5, 0x32, 0x33, 0x2d, 0x31, - 0x2f, 0x2f, 0x88, 0x58, 0x3a, 0x5e, 0x25, 0x1c, 0x2f, 0x14, 0x0d, 0x22, - 0x13, 0x28, 0x68, 0x01, 0x45, 0x10, 0x1d, 0x0f, 0x0c, 0x1a, 0x0e, 0x1e, - 0x49, 0x30, 0x28, 0x43, 0x19, 0x14, 0x1d, 0x09, 0x0e, 0x18, 0x0d, 0x11, - 0x20, 0x11, 0x25, 0x58, 0x49, 0x29, 0x44, 0x1a, 0x13, 0x1b, 0x08, 0x0e, - 0x19, 0x00, 0x00, 0x01, 0x00, 0xd3, 0x00, 0x00, 0x03, 0xd0, 0x05, 0xb0, - 0x00, 0x10, 0x00, 0x00, 0x61, 0x33, 0x11, 0x21, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x33, 0x03, 0x16, 0xba, - 0xfe, 0xef, 0x76, 0xb7, 0x3f, 0x3f, 0x41, 0x41, 0x3f, 0x3f, 0xb7, 0x76, - 0x57, 0x05, 0xb0, 0x47, 0x3e, 0x3f, 0xab, 0x65, 0x66, 0xac, 0x3e, 0x3e, - 0x46, 0x00, 0x00, 0x01, 0x00, 0xe7, 0x02, 0xa5, 0x03, 0xe5, 0x05, 0xb0, - 0x00, 0x08, 0x00, 0x00, 0x53, 0x33, 0x13, 0x37, 0x17, 0x13, 0x33, 0x01, - 0x23, 0xe7, 0xac, 0xc3, 0x0f, 0x0f, 0xc6, 0xab, 0xfe, 0xc1, 0x7f, 0x02, - 0xa5, 0x01, 0xe6, 0x44, 0x44, 0xfe, 0x1a, 0x03, 0x0b, 0x00, 0x00, 0x01, - 0x00, 0x30, 0x01, 0x92, 0x04, 0x9c, 0x03, 0x22, 0x00, 0x31, 0x00, 0x00, - 0x41, 0x27, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x06, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x04, 0x9c, 0x86, 0x1a, 0x16, 0x17, 0x3d, 0x23, 0x1e, 0x38, - 0x1b, 0x17, 0x30, 0x1a, 0x27, 0x4b, 0x27, 0x27, 0x53, 0x2e, 0x43, 0x6e, - 0x27, 0x28, 0x2c, 0x86, 0x1a, 0x16, 0x16, 0x3d, 0x23, 0x17, 0x2b, 0x15, - 0x1e, 0x3d, 0x21, 0x28, 0x4b, 0x27, 0x26, 0x51, 0x2f, 0x43, 0x6e, 0x28, - 0x28, 0x2c, 0x02, 0xe4, 0x12, 0x26, 0x46, 0x1a, 0x1b, 0x20, 0x01, 0x0f, - 0x0f, 0x0c, 0x23, 0x16, 0x20, 0x34, 0x12, 0x12, 0x13, 0x35, 0x2d, 0x2d, - 0x78, 0x42, 0x11, 0x26, 0x43, 0x19, 0x18, 0x1d, 0x08, 0x09, 0x0c, 0x29, - 0x1b, 0x22, 0x34, 0x12, 0x12, 0x12, 0x38, 0x2f, 0x2f, 0x7a, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x20, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x85, 0x01, 0x57, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x4a, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x0f, 0x01, 0x98, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x48, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x87, 0x01, 0x5b, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x20, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x0f, 0x01, 0x5b, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x23, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0x99, 0x01, 0x5a, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x06, 0xfa, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, 0x00, 0x13, 0x01, 0x4a, 0x00, 0x02, - 0x00, 0x51, 0xfe, 0x4f, 0x04, 0x90, 0x05, 0xb0, 0x00, 0x23, 0x00, 0x26, - 0x00, 0x00, 0x41, 0x23, 0x01, 0x33, 0x13, 0x21, 0x13, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x33, 0x01, 0x13, 0x13, 0x02, 0xc2, 0x9b, 0xfe, 0x2a, 0xb9, 0x75, - 0x01, 0xe6, 0x6b, 0x1e, 0x34, 0x14, 0x27, 0x30, 0x1e, 0x1a, 0x1a, 0x46, - 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x1d, 0x1b, - 0x16, 0x3b, 0x23, 0x30, 0xfd, 0x21, 0xc3, 0xc0, 0x05, 0xb0, 0xfa, 0x50, - 0x01, 0x79, 0xfe, 0xa0, 0x12, 0x27, 0x18, 0x2e, 0x5e, 0x2f, 0x2f, 0x47, - 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, 0x01, 0x29, 0x22, 0x24, - 0x43, 0x1d, 0x18, 0x2c, 0x13, 0x02, 0x1a, 0x02, 0x78, 0xfd, 0x88, 0x00, - 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x8b, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x62, 0x00, 0x0e, 0x01, 0xa4, - 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x08, 0x18, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6b, 0xff, 0xfc, 0x01, 0xa6, - 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0x52, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x93, 0x01, 0x61, - 0xff, 0xff, 0x00, 0x20, 0x00, 0x00, 0x04, 0xab, 0x07, 0x20, 0x06, 0x26, - 0x00, 0x48, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xd7, 0x01, 0x57, - 0xff, 0xff, 0x00, 0x6b, 0xff, 0xec, 0x04, 0x5d, 0x07, 0x35, 0x06, 0x26, - 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xaa, 0x01, 0x6c, - 0xff, 0xff, 0x00, 0x6b, 0xff, 0xec, 0x04, 0x5d, 0x07, 0x5e, 0x06, 0x26, - 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, 0x00, 0x35, 0x01, 0x71, - 0xff, 0xff, 0x00, 0x6b, 0xfe, 0x4d, 0x04, 0x5d, 0x05, 0xc4, 0x06, 0x26, - 0x00, 0x04, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x36, 0x00, 0xff, 0xff, - 0x00, 0x6b, 0xff, 0xec, 0x04, 0x5d, 0x07, 0x5d, 0x06, 0x26, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0xac, 0x01, 0x70, 0xff, 0xff, - 0x00, 0x9b, 0x00, 0x00, 0x04, 0x70, 0x07, 0x49, 0x06, 0x26, 0x00, 0x05, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, 0xff, 0xda, 0x01, 0x5c, 0x00, 0x02, - 0xff, 0xc5, 0x00, 0x00, 0x04, 0x7f, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x27, - 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x23, 0x15, 0x33, 0x21, 0x35, - 0x23, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x11, 0xaa, 0x01, 0x51, 0x98, 0xef, 0x53, - 0x52, 0x57, 0x01, 0x01, 0x57, 0x52, 0x53, 0xef, 0x98, 0xfe, 0xaf, 0xe5, - 0xe5, 0x01, 0x98, 0xdc, 0x95, 0x76, 0xac, 0x38, 0x38, 0x38, 0x01, 0x01, - 0x37, 0x38, 0x39, 0xac, 0x76, 0x95, 0x01, 0x63, 0x59, 0x58, 0xf7, 0x96, - 0x6b, 0x96, 0xf7, 0x59, 0x58, 0x63, 0x02, 0xfd, 0x81, 0x97, 0x97, 0x01, - 0xe7, 0x02, 0x50, 0x45, 0x46, 0xbd, 0x6f, 0x6d, 0x6f, 0xbe, 0x46, 0x46, - 0x51, 0x01, 0x02, 0x03, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x20, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x7b, 0x01, 0x57, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x4a, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0x00, 0x05, 0x01, 0x98, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x49, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, - 0x00, 0x06, 0x01, 0x5c, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x48, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0x00, 0x7d, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x20, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x05, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x19, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, - 0x00, 0x05, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x23, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, - 0xff, 0x8f, 0x01, 0x5a, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x06, 0xfa, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, - 0x00, 0x09, 0x01, 0x4a, 0x00, 0x01, 0x00, 0xaf, 0xfe, 0x4b, 0x04, 0x1d, - 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, 0x11, 0x01, 0x27, 0x23, - 0x11, 0x33, 0x11, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x04, 0x1c, 0xb9, 0xfe, 0x08, 0x03, 0xb9, 0xb9, 0x01, 0xfb, 0x19, 0x18, - 0x10, 0x29, 0x1a, 0x12, 0x3a, 0x14, 0x0e, 0x1d, 0x33, 0x1e, 0x4c, 0x76, - 0x29, 0x28, 0x2b, 0x05, 0xb0, 0xfb, 0xd5, 0x04, 0x25, 0x06, 0xfa, 0x50, - 0x04, 0x2d, 0xfb, 0xd5, 0x5b, 0x35, 0x53, 0x1a, 0x10, 0x12, 0x07, 0x06, - 0x93, 0x0a, 0x08, 0x2f, 0x2d, 0x2d, 0x81, 0x52, 0x00, 0x01, 0x00, 0xb6, - 0xfe, 0x4f, 0x04, 0x34, 0x05, 0xb0, 0x00, 0x28, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, - 0x35, 0x21, 0x11, 0x03, 0xcf, 0xfd, 0xa0, 0x02, 0xbc, 0xfc, 0x8b, 0x02, - 0x75, 0x1b, 0x2f, 0x11, 0x1e, 0x1f, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, - 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x1e, 0x1b, 0x16, 0x3a, - 0x23, 0x54, 0xfd, 0x3b, 0x02, 0xa1, 0x9d, 0x01, 0xd4, 0x9e, 0xfa, 0x50, - 0x14, 0x2c, 0x17, 0x25, 0x50, 0x27, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, - 0x10, 0x79, 0x08, 0x13, 0x01, 0x29, 0x22, 0x24, 0x44, 0x1d, 0x18, 0x2b, - 0x13, 0x9d, 0x02, 0x04, 0x00, 0x02, 0xff, 0xc5, 0x00, 0x00, 0x04, 0x7f, - 0x05, 0xb0, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, - 0x11, 0x23, 0x15, 0x33, 0x21, 0x35, 0x23, 0x11, 0x33, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x11, - 0xaa, 0x01, 0x51, 0x98, 0xef, 0x53, 0x52, 0x57, 0x01, 0x01, 0x57, 0x52, - 0x53, 0xef, 0x98, 0xfe, 0xaf, 0xe5, 0xe5, 0x01, 0x98, 0xdc, 0x95, 0x76, - 0xac, 0x38, 0x38, 0x38, 0x01, 0x01, 0x37, 0x38, 0x39, 0xac, 0x76, 0x95, - 0x01, 0x63, 0x59, 0x58, 0xf7, 0x96, 0x6b, 0x96, 0xf7, 0x59, 0x58, 0x63, - 0x02, 0xfd, 0x81, 0x97, 0x97, 0x01, 0xe7, 0x02, 0x50, 0x45, 0x46, 0xbd, - 0x6f, 0x6d, 0x6f, 0xbe, 0x46, 0x46, 0x51, 0x01, 0x02, 0x03, 0xff, 0xff, - 0x00, 0x64, 0xff, 0xeb, 0x04, 0x5c, 0x07, 0x5f, 0x06, 0x26, 0x00, 0x08, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x19, 0x01, 0xad, 0xff, 0xff, - 0x00, 0x64, 0xff, 0xeb, 0x04, 0x5c, 0x07, 0x5d, 0x06, 0x26, 0x00, 0x08, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x91, 0x01, 0x70, 0xff, 0xff, - 0x00, 0x64, 0xfe, 0x25, 0x04, 0x5c, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x08, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0xb1, 0xfe, 0xcf, 0x00, 0x02, - 0x00, 0x18, 0x00, 0x00, 0x04, 0xbc, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x17, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, - 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x35, 0x01, 0x35, - 0x21, 0x15, 0x04, 0x3c, 0xaf, 0xfd, 0xab, 0xae, 0x72, 0x72, 0xae, 0x02, - 0x55, 0xaf, 0x80, 0xfc, 0x7c, 0x02, 0x55, 0x04, 0x8f, 0x01, 0x21, 0xfe, - 0xdf, 0x01, 0x21, 0xfe, 0xdf, 0x8f, 0xfc, 0x00, 0x02, 0xa1, 0xfd, 0x5f, - 0x04, 0x00, 0x8f, 0xfe, 0xaf, 0xc2, 0xc2, 0x00, 0xff, 0xff, 0x00, 0x8d, - 0x00, 0x00, 0x04, 0x3f, 0x07, 0x48, 0x06, 0x26, 0x00, 0x09, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0x00, 0x71, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x20, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x47, 0x01, 0x57, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x4a, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5f, 0xff, 0xd2, 0x01, 0x98, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x48, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0x00, 0x49, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x20, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xd2, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x19, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x60, 0xff, 0xd2, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x23, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0x5b, 0x01, 0x5a, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x06, 0xfa, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5e, 0xff, 0xd6, 0x01, 0x4a, 0x00, 0x01, 0x00, 0xae, - 0xfe, 0x4f, 0x04, 0x1e, 0x05, 0xb0, 0x00, 0x28, 0x00, 0x00, 0x53, 0x15, - 0x21, 0x11, 0x21, 0x15, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, - 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, - 0x11, 0x21, 0x35, 0xae, 0x01, 0x55, 0xfe, 0xab, 0x01, 0x97, 0x19, 0x2a, - 0x11, 0x21, 0x23, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, - 0x10, 0x35, 0x20, 0x2a, 0x24, 0x1f, 0x1d, 0x15, 0x39, 0x22, 0x01, 0x24, - 0xfe, 0xa3, 0x01, 0x5d, 0x05, 0xb0, 0xa1, 0xfb, 0x91, 0xa0, 0x12, 0x27, - 0x15, 0x27, 0x55, 0x29, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, - 0x08, 0x13, 0x01, 0x29, 0x22, 0x25, 0x45, 0x1e, 0x17, 0x2a, 0x12, 0xa0, - 0x04, 0x6f, 0xa1, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x07, 0x52, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, - 0x00, 0x55, 0x01, 0x61, 0xff, 0xff, 0x00, 0x62, 0xff, 0xec, 0x04, 0xdf, - 0x07, 0x3b, 0x06, 0x26, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0x01, 0xc1, 0x01, 0x4e, 0xff, 0xff, 0x00, 0xac, 0xfe, 0x3e, 0x04, 0xa4, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, - 0x00, 0xb6, 0xfe, 0xe8, 0xff, 0xff, 0x00, 0xc6, 0x00, 0x00, 0x04, 0x47, - 0x07, 0x00, 0x06, 0x26, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0xff, 0x36, 0x01, 0x37, 0xff, 0xff, 0x00, 0xc6, 0x00, 0x00, 0x04, 0x47, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x07, 0x00, 0x6d, - 0x00, 0xf2, 0xff, 0x9a, 0xff, 0xff, 0x00, 0xc6, 0xfe, 0x38, 0x04, 0x47, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, - 0x00, 0xb7, 0xfe, 0xe2, 0xff, 0xff, 0x00, 0xc6, 0x00, 0x00, 0x04, 0x47, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, - 0x00, 0x74, 0xfd, 0xc5, 0x00, 0x01, 0x00, 0x3a, 0x00, 0x00, 0x04, 0x4b, - 0x05, 0xb0, 0x00, 0x0d, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x07, 0x15, - 0x37, 0x11, 0x21, 0x35, 0x21, 0x11, 0x25, 0x35, 0x01, 0x83, 0xb9, 0x90, - 0x90, 0x03, 0x81, 0xfd, 0x38, 0x01, 0x06, 0x03, 0x4d, 0x02, 0x63, 0xfd, - 0x62, 0x2d, 0xa2, 0x2d, 0xfd, 0x90, 0x9d, 0x02, 0x0e, 0x53, 0xa2, 0x00, - 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x3e, 0x07, 0x20, 0x06, 0x26, - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x5e, 0x01, 0x57, - 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x3e, 0x07, 0x49, 0x06, 0x26, - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, 0xff, 0xea, 0x01, 0x5c, - 0xff, 0xff, 0x00, 0x8f, 0xfe, 0x38, 0x04, 0x3e, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0x84, 0xfe, 0xe2, - 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x3e, 0x07, 0x52, 0x06, 0x26, - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x6c, 0x01, 0x61, - 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0x35, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x89, 0x01, 0x6c, - 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0x5f, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x13, 0x01, 0xad, - 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0x5d, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x8b, 0x01, 0x70, - 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0x35, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x13, 0x01, 0x70, - 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0x38, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0x9d, 0x01, 0x6f, - 0x00, 0x02, 0x00, 0x63, 0xff, 0xec, 0x04, 0xc6, 0x05, 0xfa, 0x00, 0x29, - 0x00, 0x43, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x27, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x02, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x5a, 0x02, 0x28, 0x2c, 0x28, 0x42, 0x18, 0x1f, 0x21, 0x01, 0xa7, - 0x01, 0x0e, 0x0e, 0x0d, 0x26, 0x19, 0x1d, 0x43, 0x27, 0x2c, 0x68, 0x3c, - 0x71, 0xaa, 0x3e, 0x50, 0x52, 0x3e, 0x3b, 0x3c, 0xc1, 0x87, 0x85, 0xbb, - 0x40, 0x3e, 0x3a, 0xb5, 0x02, 0x21, 0x27, 0x25, 0x7c, 0x58, 0x58, 0x78, - 0x23, 0x2d, 0x27, 0x2c, 0x39, 0x24, 0x6f, 0x4d, 0x4f, 0x76, 0x26, 0x30, - 0x2a, 0x02, 0x84, 0xa6, 0x64, 0xca, 0x58, 0x0f, 0x31, 0x20, 0x2c, 0x76, - 0x48, 0x2c, 0x49, 0x1b, 0x18, 0x21, 0x08, 0x21, 0x37, 0x14, 0x17, 0x18, - 0x55, 0x49, 0x5e, 0xfe, 0xed, 0x8b, 0xa6, 0x75, 0xeb, 0x5f, 0x61, 0x78, - 0x73, 0x5f, 0x5b, 0xf5, 0x01, 0x1e, 0xa8, 0x54, 0xbf, 0x48, 0x45, 0x55, - 0x52, 0x3e, 0x4e, 0xc2, 0x55, 0xa8, 0x5b, 0xd4, 0x4f, 0x35, 0x40, 0x49, - 0x3a, 0x49, 0xc5, 0x00, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x6f, - 0x07, 0x5f, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, - 0x00, 0x99, 0x01, 0x70, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, - 0x07, 0x0f, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, - 0x00, 0x17, 0x01, 0x5f, 0x00, 0x03, 0x00, 0x47, 0xff, 0xa3, 0x04, 0x8c, - 0x05, 0xec, 0x00, 0x25, 0x00, 0x39, 0x00, 0x47, 0x00, 0x00, 0x41, 0x37, - 0x36, 0x26, 0x27, 0x13, 0x23, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x03, 0x33, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x25, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x01, 0x26, 0x26, 0x27, 0x26, 0x26, 0x25, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x01, 0x16, 0x16, 0x04, 0x58, - 0x01, 0x01, 0x37, 0x38, 0xa1, 0x8e, 0x63, 0x18, 0x37, 0x1f, 0x2c, 0x68, - 0x3c, 0x82, 0xbc, 0x3b, 0x43, 0x3d, 0x02, 0x10, 0x11, 0x10, 0x32, 0x22, - 0xa0, 0x8e, 0x68, 0x39, 0x8e, 0x5b, 0x7c, 0xb8, 0x3d, 0x46, 0x42, 0xfc, - 0xc0, 0x23, 0x29, 0x25, 0x79, 0x5b, 0x2a, 0x46, 0x1d, 0x1a, 0x2a, 0x11, - 0xfe, 0x0e, 0x0b, 0x11, 0x06, 0x0a, 0x09, 0x02, 0x8a, 0x02, 0x25, 0x3c, - 0x26, 0x6d, 0x4d, 0x42, 0x64, 0x25, 0x01, 0xeb, 0x13, 0x0f, 0x02, 0x84, - 0xa6, 0x6f, 0xe4, 0x5f, 0x01, 0x10, 0xa8, 0x18, 0x29, 0x10, 0x16, 0x19, - 0x71, 0x58, 0x5e, 0xf9, 0x7a, 0xa6, 0x3d, 0x7d, 0x3c, 0x3c, 0x70, 0x31, - 0xfe, 0xf2, 0xb0, 0x30, 0x37, 0x6a, 0x55, 0x60, 0xfd, 0x7c, 0xa8, 0x50, - 0xbb, 0x4d, 0x40, 0x5b, 0x13, 0x12, 0x0f, 0x29, 0x19, 0xfc, 0xb5, 0x1a, - 0x39, 0x1c, 0x2e, 0x5e, 0xd3, 0xa8, 0x5f, 0xcf, 0x53, 0x34, 0x40, 0x2f, - 0x29, 0x03, 0x3e, 0x3e, 0x81, 0x00, 0xff, 0xff, 0x00, 0x47, 0xff, 0xa3, - 0x04, 0x8c, 0x07, 0x5e, 0x06, 0x26, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x7b, 0x01, 0x95, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, - 0x04, 0x61, 0x07, 0x67, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0x97, 0x01, 0x76, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, - 0x04, 0x72, 0x07, 0x14, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x78, 0x01, 0x4b, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, - 0x04, 0x72, 0x07, 0x3d, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0x00, 0x03, 0x01, 0x50, 0xff, 0xff, 0x00, 0xb5, 0xfe, 0x38, - 0x04, 0x72, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x9c, 0xfe, 0xe2, 0xff, 0xff, 0x00, 0x76, 0xff, 0xec, - 0x04, 0x69, 0x07, 0x35, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x82, 0x01, 0x6c, 0xff, 0xff, 0x00, 0x76, 0xff, 0xec, - 0x04, 0x69, 0x07, 0x5e, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0x00, 0x0d, 0x01, 0x71, 0xff, 0xff, 0x00, 0x76, 0xfe, 0x44, - 0x04, 0x69, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x66, 0x51, 0xf7, 0xff, 0xff, 0x00, 0x76, 0xff, 0xec, 0x04, 0x69, - 0x07, 0x5d, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0x00, 0x84, 0x01, 0x70, 0x00, 0x01, 0x00, 0x4c, 0x00, 0x00, 0x04, 0x84, - 0x05, 0xb0, 0x00, 0x0f, 0x00, 0x00, 0x41, 0x35, 0x23, 0x11, 0x21, 0x35, - 0x21, 0x15, 0x21, 0x11, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x03, 0xad, - 0xeb, 0x01, 0xc2, 0xfb, 0xc8, 0x01, 0xc2, 0xde, 0xde, 0xb4, 0x03, 0x37, - 0x97, 0x01, 0x44, 0x9e, 0x9e, 0xfe, 0xbc, 0x97, 0xfc, 0xc9, 0x03, 0x37, - 0xff, 0xff, 0x00, 0x4c, 0x00, 0x00, 0x04, 0x84, 0x07, 0x3d, 0x06, 0x26, - 0x00, 0x15, 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, 0x00, 0x0d, 0x01, 0x50, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0x14, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xa3, 0x01, 0x4b, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0x3e, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x2d, 0x01, 0x8c, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0x3c, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0xa5, 0x01, 0x4f, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0x14, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x2d, 0x01, 0x4f, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0x17, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0xb7, 0x01, 0x4e, - 0x00, 0x01, 0x00, 0x8b, 0xff, 0xec, 0x05, 0x83, 0x05, 0xe8, 0x00, 0x2b, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x03, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x23, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x04, 0x40, - 0xb3, 0x03, 0x02, 0x26, 0x24, 0x25, 0x6c, 0x47, 0x47, 0x6d, 0x24, 0x25, - 0x27, 0x01, 0x04, 0xb0, 0x02, 0x01, 0x46, 0x3e, 0x3e, 0xae, 0x6a, 0x68, - 0xae, 0x3f, 0x3f, 0x48, 0x01, 0x50, 0x78, 0x27, 0x2a, 0x29, 0xa7, 0x0f, - 0x12, 0x12, 0x3c, 0x2d, 0x05, 0xb0, 0xfc, 0x26, 0x41, 0x78, 0x2e, 0x2f, - 0x37, 0x38, 0x2e, 0x2e, 0x78, 0x41, 0x03, 0xda, 0xfc, 0x26, 0x66, 0xb3, - 0x42, 0x43, 0x4c, 0x4d, 0x43, 0x42, 0xb2, 0x66, 0x02, 0x9a, 0x05, 0x31, - 0x2b, 0x2f, 0x8b, 0x5d, 0x38, 0x55, 0x1d, 0x1e, 0x22, 0x06, 0xff, 0xff, - 0x00, 0x8b, 0xff, 0xec, 0x04, 0x89, 0x07, 0x3e, 0x06, 0x26, 0x00, 0x16, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, 0x00, 0xb3, 0x01, 0x4f, 0xff, 0xff, - 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x06, 0xee, 0x06, 0x26, 0x00, 0x16, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, 0x00, 0x31, 0x01, 0x3e, 0x00, 0x01, - 0x00, 0x8b, 0xfe, 0x7e, 0x04, 0x42, 0x05, 0xb0, 0x00, 0x3c, 0x00, 0x00, - 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x32, 0x32, 0x33, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x04, 0x40, 0xb3, 0x03, 0x02, 0x26, 0x24, 0x25, 0x6c, 0x47, 0x47, - 0x6d, 0x24, 0x25, 0x27, 0x01, 0x04, 0xb0, 0x02, 0x01, 0x44, 0x3d, 0x3b, - 0xa6, 0x67, 0x01, 0x03, 0x01, 0x0e, 0x18, 0x09, 0x0f, 0x10, 0x1e, 0x1a, - 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, - 0x0e, 0x0d, 0x12, 0x36, 0x23, 0x3d, 0x64, 0x23, 0x23, 0x28, 0x05, 0xb0, - 0xfc, 0x26, 0x41, 0x78, 0x2e, 0x2f, 0x37, 0x38, 0x2e, 0x2e, 0x78, 0x41, - 0x03, 0xda, 0xfc, 0x26, 0x65, 0xb0, 0x42, 0x41, 0x4e, 0x03, 0x10, 0x20, - 0x11, 0x1b, 0x39, 0x1c, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, - 0x08, 0x13, 0x01, 0x29, 0x22, 0x19, 0x30, 0x16, 0x1c, 0x33, 0x17, 0x1d, - 0x5a, 0x3a, 0x3a, 0x88, 0x4a, 0x00, 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, - 0x04, 0x42, 0x07, 0x7f, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x62, 0x00, 0x2c, 0x01, 0x98, 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, - 0x04, 0x42, 0x07, 0x46, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0xb1, 0x01, 0x55, 0xff, 0xff, 0x00, 0x49, 0x00, 0x00, - 0x04, 0x9e, 0x07, 0x20, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x7d, 0x01, 0x57, 0xff, 0xff, 0x00, 0x49, 0x00, 0x00, - 0x04, 0x9e, 0x07, 0x48, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x7f, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x49, 0x00, 0x00, - 0x04, 0x9e, 0x07, 0x20, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0x00, 0x07, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x49, 0x00, 0x00, - 0x04, 0x9e, 0x07, 0x23, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0x91, 0x01, 0x5a, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, - 0x04, 0x79, 0x07, 0x1f, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x71, 0x01, 0x56, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, - 0x04, 0x79, 0x07, 0x47, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x73, 0x01, 0x5a, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, - 0x04, 0x79, 0x07, 0x1f, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0xff, 0xfc, 0x01, 0x5a, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, - 0x04, 0x79, 0x07, 0x22, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0x85, 0x01, 0x59, 0xff, 0xff, 0x00, 0x72, 0x00, 0x00, - 0x04, 0x37, 0x07, 0x14, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x9d, 0x01, 0x4b, 0xff, 0xff, 0x00, 0x72, 0x00, 0x00, - 0x04, 0x37, 0x07, 0x3d, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0x00, 0x28, 0x01, 0x50, 0xff, 0xff, 0x00, 0x72, 0x00, 0x00, - 0x04, 0x37, 0x07, 0x0d, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x60, 0x00, 0x27, 0x01, 0x4f, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, - 0x04, 0x36, 0x05, 0xde, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x81, 0x00, 0x15, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, - 0x04, 0x36, 0x06, 0x08, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5f, 0x0b, 0x56, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, - 0x06, 0x06, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0x00, 0x83, 0x00, 0x19, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, - 0x05, 0xde, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x0b, 0x19, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x05, 0xe1, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x95, 0x18, - 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x05, 0xb8, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0x0f, 0x08, 0x00, 0x02, - 0x00, 0x9c, 0xfe, 0x4f, 0x04, 0x36, 0x04, 0x4e, 0x00, 0x51, 0x00, 0x65, - 0x00, 0x00, 0x65, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x35, 0x26, 0x26, 0x35, - 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, - 0x25, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x6f, 0x21, 0x37, - 0x15, 0x1e, 0x21, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, - 0x10, 0x35, 0x20, 0x2a, 0x24, 0x14, 0x13, 0x16, 0x44, 0x2b, 0x26, 0x12, - 0x14, 0x42, 0x39, 0x3a, 0x9e, 0x5c, 0x65, 0x9f, 0x37, 0x38, 0x3b, 0x01, - 0xba, 0x21, 0x1e, 0x1e, 0x57, 0x37, 0x3b, 0x5f, 0x21, 0x21, 0x24, 0xca, - 0x71, 0xb7, 0x41, 0x41, 0x47, 0x35, 0x31, 0x30, 0x8b, 0x56, 0x35, 0x5e, - 0x2a, 0x29, 0x45, 0x1c, 0x03, 0x0a, 0xfe, 0xc7, 0x36, 0x52, 0x1b, 0x1b, - 0x1b, 0x1e, 0x1d, 0x2a, 0x90, 0x61, 0xac, 0x10, 0x38, 0x26, 0x27, 0x5e, - 0x0e, 0x16, 0x31, 0x1b, 0x25, 0x52, 0x28, 0x2f, 0x47, 0x18, 0x18, 0x18, - 0x1c, 0x10, 0x79, 0x08, 0x13, 0x01, 0x29, 0x22, 0x1e, 0x38, 0x19, 0x1f, - 0x36, 0x17, 0x10, 0x2d, 0x79, 0x36, 0x01, 0xf7, 0x5b, 0x88, 0x2e, 0x2d, - 0x2d, 0x38, 0x2d, 0x2e, 0x72, 0x3b, 0x22, 0x3f, 0x17, 0x17, 0x1c, 0x1e, - 0x1b, 0x1c, 0x4e, 0x31, 0x55, 0x2c, 0x2c, 0x2d, 0x86, 0x59, 0x44, 0x75, - 0x2a, 0x2b, 0x32, 0x16, 0x13, 0x13, 0x32, 0x1c, 0x1d, 0x36, 0x6a, 0x1c, - 0x19, 0x18, 0x44, 0x28, 0x2a, 0x41, 0x17, 0x23, 0x22, 0xdb, 0x20, 0x3b, - 0x17, 0x17, 0x1c, 0x00, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, - 0x06, 0x49, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x62, - 0x0a, 0x62, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x06, 0xd6, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6b, 0xf8, 0x64, - 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x06, 0x10, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x8f, 0x00, 0x1f, - 0xff, 0xff, 0x00, 0x2b, 0xff, 0xec, 0x04, 0xa9, 0x05, 0xdf, 0x06, 0x26, - 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x98, 0x00, 0x16, - 0xff, 0xff, 0x00, 0x8f, 0xff, 0xec, 0x04, 0x33, 0x05, 0xde, 0x06, 0x26, - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x93, 0x00, 0x15, - 0xff, 0xff, 0x00, 0x8f, 0xff, 0xec, 0x04, 0x33, 0x06, 0x07, 0x06, 0x26, - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x1e, 0x1a, 0xff, 0xff, - 0x00, 0x8f, 0xfe, 0x4d, 0x04, 0x33, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1e, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x4b, 0x00, 0xff, 0xff, 0x00, 0x8f, - 0xff, 0xec, 0x04, 0x33, 0x06, 0x06, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0x00, 0x95, 0x00, 0x19, 0xff, 0xff, 0x00, 0x64, - 0xff, 0xec, 0x05, 0xbf, 0x06, 0x16, 0x04, 0x26, 0x00, 0x1f, 0xd9, 0x00, - 0x00, 0x07, 0x00, 0x6d, 0x02, 0xdf, 0x00, 0x00, 0x00, 0x02, 0x00, 0x7c, - 0xff, 0xec, 0x04, 0xd2, 0x06, 0x00, 0x00, 0x25, 0x00, 0x3f, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, - 0x33, 0x11, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x04, 0xd2, 0xc5, 0xb9, 0xff, 0xff, 0x14, 0x2d, - 0x1a, 0x2a, 0x66, 0x3c, 0x63, 0xa0, 0x38, 0x39, 0x3d, 0x3e, 0x38, 0x38, - 0x9f, 0x62, 0x37, 0x5f, 0x28, 0x21, 0x39, 0x18, 0x08, 0xaa, 0xfd, 0x28, - 0x22, 0x24, 0x23, 0x6f, 0x4e, 0x29, 0x47, 0x1d, 0x22, 0x36, 0x14, 0x12, - 0x30, 0x1f, 0x1f, 0x4c, 0x2f, 0x4d, 0x6e, 0x23, 0x24, 0x22, 0x04, 0xd2, - 0x97, 0x97, 0x97, 0x97, 0xfe, 0xfd, 0x17, 0x27, 0x0f, 0x19, 0x19, 0x52, - 0x49, 0x49, 0xcb, 0x79, 0x15, 0x74, 0xc9, 0x4a, 0x4a, 0x54, 0x15, 0x14, - 0x11, 0x2e, 0x1e, 0x72, 0x04, 0xd2, 0xfd, 0x3f, 0x15, 0x4f, 0x8f, 0x37, - 0x36, 0x40, 0x13, 0x10, 0x14, 0x3c, 0x24, 0xfe, 0x0a, 0x23, 0x39, 0x14, - 0x15, 0x16, 0x3f, 0x36, 0x36, 0x8e, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, - 0x04, 0x45, 0x05, 0xdf, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x7c, 0x16, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, - 0x06, 0x09, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x06, 0x57, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x06, 0x08, - 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x07, 0x1b, - 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x06, 0x07, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x7e, 0x1a, 0xff, 0xff, - 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x05, 0xdf, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x06, 0x1a, 0xff, 0xff, 0x00, 0x87, - 0xff, 0xec, 0x04, 0x45, 0x05, 0xd8, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x60, 0x06, 0x1a, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, - 0x04, 0x45, 0x05, 0xe2, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5a, 0x90, 0x19, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, - 0x05, 0xb9, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, - 0x0a, 0x09, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x4b, 0x04, 0x17, 0x04, 0x4e, - 0x00, 0x32, 0x00, 0x00, 0x73, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x27, 0x27, 0x23, 0xb8, 0xb9, 0x10, 0x29, 0x19, - 0x21, 0x58, 0x36, 0x3e, 0x5b, 0x1d, 0x1b, 0x1b, 0x19, 0x19, 0x10, 0x2d, - 0x1b, 0x13, 0x3c, 0x15, 0x0e, 0x1e, 0x36, 0x1e, 0x49, 0x74, 0x28, 0x2e, - 0x30, 0x32, 0x2f, 0x2f, 0x88, 0x56, 0x44, 0x72, 0x2e, 0x1a, 0x2d, 0x14, - 0x01, 0x0b, 0xa6, 0x03, 0x2a, 0x1a, 0x2d, 0x11, 0x17, 0x18, 0x20, 0x23, - 0x20, 0x64, 0x44, 0xfd, 0x01, 0x35, 0x4e, 0x17, 0x10, 0x10, 0x07, 0x06, - 0x9d, 0x0a, 0x08, 0x2a, 0x27, 0x2c, 0x87, 0x58, 0x03, 0x03, 0x6c, 0x9f, - 0x34, 0x33, 0x32, 0x27, 0x23, 0x14, 0x33, 0x1d, 0x0a, 0x90, 0x00, 0x02, - 0x00, 0x87, 0xfe, 0x61, 0x04, 0x45, 0x04, 0x4e, 0x00, 0x3e, 0x00, 0x4c, - 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x32, 0x32, 0x33, - 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x35, 0x21, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x87, 0x49, 0x43, 0x41, 0xb6, - 0x6e, 0x01, 0x03, 0x01, 0x33, 0x37, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, - 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x20, 0x1c, 0x16, 0x39, - 0x21, 0x45, 0x70, 0x22, 0x71, 0x33, 0x9a, 0x63, 0x4b, 0x7d, 0x2b, 0x31, - 0x32, 0x03, 0x05, 0x39, 0x3a, 0x3a, 0xaf, 0x75, 0x5d, 0xb1, 0x45, 0x46, - 0x54, 0x01, 0xed, 0x47, 0x66, 0x23, 0x1f, 0x29, 0xfd, 0xba, 0x0b, 0x37, - 0x28, 0x28, 0x64, 0x01, 0xf7, 0x6f, 0xbd, 0x45, 0x45, 0x50, 0x04, 0x30, - 0x69, 0x35, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, - 0x01, 0x29, 0x22, 0x26, 0x45, 0x1e, 0x17, 0x29, 0x12, 0x19, 0x5f, 0x33, - 0x58, 0x42, 0x50, 0x39, 0x2f, 0x35, 0x8b, 0x3c, 0x01, 0x53, 0x71, 0xc2, - 0x48, 0x47, 0x51, 0x4c, 0x47, 0x48, 0xcf, 0x83, 0x01, 0x95, 0x34, 0x2a, - 0x26, 0x74, 0x37, 0x07, 0x4b, 0x73, 0x28, 0x27, 0x29, 0x00, 0xff, 0xff, - 0x00, 0x8c, 0xfe, 0x56, 0x04, 0x1d, 0x06, 0x08, 0x06, 0x26, 0x00, 0x22, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0xf6, 0x56, 0xff, 0xff, 0x00, 0x8c, - 0xfe, 0x56, 0x04, 0x1d, 0x06, 0x06, 0x06, 0x26, 0x00, 0x22, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0x6d, 0x19, 0xff, 0xff, 0x00, 0x8c, 0xfe, 0x56, - 0x04, 0x1d, 0x06, 0x93, 0x06, 0x26, 0x00, 0x22, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x4e, 0x07, 0x58, 0x00, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x04, 0x3b, - 0x06, 0x00, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, 0x23, 0x15, - 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x36, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x02, 0x88, - 0xfe, 0xee, 0xb9, 0xb2, 0xb2, 0xb9, 0x14, 0x32, 0x1e, 0x26, 0x5b, 0x32, - 0x3b, 0x5d, 0x1f, 0x1e, 0x20, 0xb9, 0x35, 0x31, 0x31, 0x8b, 0x55, 0x38, - 0x65, 0x2c, 0x27, 0x43, 0x1b, 0x04, 0xd2, 0x97, 0x97, 0x97, 0x97, 0xfb, - 0x2e, 0x03, 0x12, 0x20, 0x35, 0x14, 0x1a, 0x1c, 0x01, 0x21, 0x21, 0x20, - 0x63, 0x42, 0xfd, 0x55, 0x02, 0xa9, 0x6d, 0x9f, 0x34, 0x34, 0x31, 0x01, - 0x1b, 0x1a, 0x17, 0x40, 0x28, 0x01, 0x39, 0x00, 0xff, 0xff, 0xff, 0xe7, - 0x00, 0x00, 0x04, 0x2c, 0x07, 0x6f, 0x06, 0x26, 0x00, 0x23, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0xff, 0x26, 0x01, 0x82, 0xff, 0xff, 0x00, 0xcb, - 0x00, 0x00, 0x04, 0x55, 0x05, 0xc9, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0xaa, 0x00, 0x00, 0xff, 0xff, 0x00, 0xcb, - 0x00, 0x00, 0x04, 0x55, 0x05, 0xf3, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0x34, 0x41, 0xff, 0xff, 0x00, 0xcb, 0x00, 0x00, - 0x04, 0x55, 0x05, 0xf1, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0xac, 0x00, 0x04, 0xff, 0xff, 0x00, 0xcb, 0x00, 0x00, - 0x04, 0x55, 0x05, 0xc9, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0x34, 0x04, 0xff, 0xff, 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, - 0x05, 0xcc, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, - 0xbe, 0x03, 0xff, 0xff, 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x05, 0xa4, - 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0x38, 0xf4, - 0x00, 0x02, 0x00, 0xcb, 0xfe, 0x4f, 0x04, 0x55, 0x05, 0xc3, 0x00, 0x26, - 0x00, 0x32, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0xcb, 0x01, 0x70, 0xfe, 0x90, - 0x01, 0x74, 0x17, 0x29, 0x10, 0x23, 0x25, 0x1e, 0x1a, 0x1a, 0x46, 0x29, - 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x1c, 0x19, 0x16, - 0x3c, 0x25, 0x01, 0x61, 0xfe, 0x9f, 0xd1, 0x37, 0x38, 0x37, 0x38, 0x38, - 0x37, 0x38, 0x37, 0x04, 0x3a, 0xa1, 0xfd, 0x07, 0xa0, 0x11, 0x25, 0x14, - 0x28, 0x56, 0x2b, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, - 0x13, 0x01, 0x29, 0x22, 0x23, 0x41, 0x1c, 0x1a, 0x2d, 0x14, 0xa0, 0x03, - 0x9a, 0x01, 0x1c, 0x2d, 0x3c, 0x3c, 0x2d, 0x2e, 0x3f, 0x3f, 0xff, 0xff, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x05, 0xfb, 0x06, 0x26, 0x01, 0x6d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xb8, 0x00, 0x0a, 0xff, 0xff, - 0x00, 0xb0, 0xfe, 0x4b, 0x03, 0xf5, 0x05, 0xe8, 0x06, 0x26, 0x01, 0x71, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0xd7, 0xff, 0xfb, 0xff, 0xff, - 0x00, 0xb0, 0xfe, 0x40, 0x04, 0x6a, 0x06, 0x00, 0x06, 0x26, 0x00, 0x26, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0x62, 0xfe, 0xea, 0xff, 0xff, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x07, 0x66, 0x06, 0x26, 0x00, 0x27, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xa2, 0x01, 0x9d, 0xff, 0xff, - 0x00, 0x99, 0x00, 0x00, 0x04, 0xaf, 0x06, 0x04, 0x04, 0x26, 0x00, 0x27, - 0xce, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x01, 0xcf, 0xff, 0xee, 0xff, 0xff, - 0x00, 0xcb, 0xfe, 0x39, 0x04, 0x55, 0x06, 0x00, 0x06, 0x26, 0x00, 0x27, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0xd2, 0xfe, 0xe3, 0xff, 0xff, - 0x00, 0x85, 0x00, 0x01, 0x04, 0x12, 0x06, 0x01, 0x04, 0x26, 0x00, 0x27, - 0xba, 0x01, 0x00, 0x07, 0x01, 0x60, 0x01, 0x3a, 0xfd, 0xe7, 0x00, 0x01, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x06, 0x00, 0x00, 0x11, 0x00, 0x00, - 0x41, 0x11, 0x21, 0x15, 0x21, 0x11, 0x05, 0x15, 0x25, 0x11, 0x21, 0x15, - 0x21, 0x35, 0x21, 0x11, 0x25, 0x37, 0x02, 0xf4, 0xfd, 0xd7, 0x01, 0x70, - 0xfe, 0xad, 0x01, 0x53, 0xfe, 0x90, 0x03, 0x8a, 0xfe, 0x9f, 0x01, 0x21, - 0x01, 0x03, 0xcd, 0x02, 0x33, 0xa1, 0xfe, 0x19, 0x9a, 0xa2, 0x9a, 0xfd, - 0xca, 0xa0, 0xa0, 0x02, 0x8b, 0x84, 0xa2, 0x00, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x29, 0x05, 0xde, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5b, 0x6d, 0x15, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x29, 0x06, 0x07, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x64, 0xf9, 0x1a, 0xff, 0xff, 0x00, 0xae, 0xfe, 0x38, 0x04, 0x29, - 0x04, 0x4e, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, - 0x00, 0x93, 0xfe, 0xe2, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x29, - 0x06, 0x10, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5d, - 0x7b, 0x1f, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x05, 0xde, - 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x76, 0x15, - 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x06, 0x08, 0x06, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x00, 0x56, 0xff, 0xff, - 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x06, 0x06, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x78, 0x19, 0xff, 0xff, 0x00, 0x7a, - 0xff, 0xec, 0x04, 0x52, 0x05, 0xde, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0x00, 0x19, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, - 0x04, 0x52, 0x05, 0xe1, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5a, 0x8a, 0x18, 0x00, 0x02, 0x00, 0x77, 0xff, 0xec, 0x04, 0xae, - 0x04, 0xaa, 0x00, 0x26, 0x00, 0x40, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x77, 0x44, 0x40, 0x3f, 0xb7, 0x73, 0x72, 0xb6, 0x40, 0x3f, 0x44, - 0x2a, 0x29, 0x28, 0x3e, 0x17, 0x19, 0x1b, 0x01, 0xa8, 0x0d, 0x0e, 0x0d, - 0x27, 0x1a, 0x3d, 0x9e, 0x60, 0x72, 0xb6, 0x3f, 0x40, 0x44, 0xb9, 0x26, - 0x27, 0x26, 0x72, 0x4d, 0x4d, 0x73, 0x27, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x73, 0x4c, 0x4d, 0x74, 0x26, 0x27, 0x26, 0x02, 0x27, 0x16, 0x75, 0xc8, - 0x4a, 0x4a, 0x54, 0x54, 0x4a, 0x4a, 0xc8, 0x75, 0x16, 0x5c, 0xa4, 0x44, - 0x11, 0x34, 0x24, 0x29, 0x6c, 0x41, 0x2b, 0x45, 0x1a, 0x18, 0x22, 0x08, - 0x35, 0x3b, 0x55, 0x4a, 0x4a, 0xc9, 0x8b, 0x16, 0x4f, 0x91, 0x37, 0x37, - 0x41, 0x41, 0x37, 0x37, 0x91, 0x4f, 0x16, 0x50, 0x91, 0x37, 0x37, 0x40, - 0x40, 0x37, 0x37, 0x91, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x5c, - 0x06, 0x08, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, - 0x00, 0x86, 0x00, 0x19, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, - 0x05, 0xb8, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, - 0x04, 0x08, 0x00, 0x03, 0x00, 0x7a, 0xff, 0x79, 0x04, 0x52, 0x04, 0xb9, - 0x00, 0x22, 0x00, 0x30, 0x00, 0x41, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, - 0x17, 0x07, 0x33, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x37, 0x23, 0x07, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x01, 0x26, 0x26, 0x25, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x01, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x7a, 0x6a, 0x63, 0x65, 0x7b, 0x4a, 0x2b, 0x5f, 0x36, 0x72, - 0xb6, 0x40, 0x3f, 0x44, 0x1d, 0x1b, 0x18, 0x47, 0x2c, 0x65, 0x7b, 0x49, - 0x2d, 0x65, 0x39, 0x72, 0xb6, 0x3f, 0x40, 0x44, 0xb9, 0x26, 0x27, 0x26, - 0x72, 0x4d, 0x26, 0x41, 0x1d, 0xfe, 0xaa, 0x30, 0x30, 0x02, 0x66, 0x26, - 0x26, 0x27, 0x73, 0x4c, 0x22, 0x3d, 0x1c, 0x01, 0x54, 0x12, 0x1c, 0x0b, - 0x10, 0x10, 0x02, 0x27, 0x16, 0x94, 0xee, 0x49, 0xcd, 0x97, 0x11, 0x13, - 0x54, 0x4a, 0x4a, 0xc8, 0x75, 0x16, 0x4c, 0x8b, 0x3b, 0x35, 0x5b, 0x23, - 0xcd, 0x94, 0x14, 0x15, 0x55, 0x4a, 0x4a, 0xc9, 0x8b, 0x16, 0x4f, 0x91, - 0x37, 0x37, 0x41, 0x11, 0x0f, 0xfd, 0x4a, 0x39, 0x9d, 0x71, 0x16, 0x50, - 0x91, 0x37, 0x37, 0x40, 0x0d, 0x0d, 0x02, 0xb1, 0x16, 0x34, 0x1c, 0x2b, - 0x61, 0x00, 0xff, 0xff, 0x00, 0x7a, 0xff, 0x79, 0x04, 0x52, 0x05, 0xdd, - 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x50, 0x14, - 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x06, 0x10, 0x06, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x84, 0x00, 0x1f, - 0xff, 0xff, 0x01, 0x49, 0x00, 0x00, 0x04, 0x31, 0x05, 0xde, 0x06, 0x26, - 0x00, 0x2d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x58, 0x15, 0xff, 0xff, - 0x01, 0x14, 0x00, 0x00, 0x04, 0x31, 0x06, 0x07, 0x06, 0x26, 0x00, 0x2d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xe4, 0x1a, 0xff, 0xff, 0x01, 0x10, - 0xfe, 0x38, 0x04, 0x31, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2d, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0xff, 0xe2, 0xfe, 0xe2, 0xff, 0xff, 0x00, 0xaf, - 0xff, 0xec, 0x04, 0x36, 0x05, 0xde, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x84, 0x00, 0x15, 0xff, 0xff, 0x00, 0xaf, - 0xff, 0xec, 0x04, 0x36, 0x06, 0x07, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0x0f, 0x1a, 0xff, 0xff, 0x00, 0xaf, 0xfe, 0x45, - 0x04, 0x36, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x66, 0x44, 0xf8, 0xff, 0xff, 0x00, 0xaf, 0xff, 0xec, 0x04, 0x36, - 0x06, 0x06, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0x00, 0x86, 0x00, 0x19, 0x00, 0x01, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x29, - 0x05, 0x40, 0x00, 0x2b, 0x00, 0x00, 0x41, 0x23, 0x11, 0x21, 0x15, 0x21, - 0x15, 0x23, 0x15, 0x33, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x33, 0x35, 0x23, 0x35, 0x21, - 0x35, 0x21, 0x02, 0x64, 0xba, 0xfe, 0xe4, 0x01, 0x1c, 0xd9, 0xd9, 0x35, - 0x2e, 0x2e, 0x7d, 0x48, 0x2b, 0x57, 0x27, 0x27, 0x42, 0x17, 0x1a, 0x11, - 0x35, 0x1e, 0x1f, 0x40, 0x1e, 0x29, 0x49, 0x1c, 0x1c, 0x20, 0xea, 0xea, - 0x01, 0x9c, 0xfe, 0x64, 0x05, 0x40, 0xfe, 0xfa, 0x8f, 0xba, 0x97, 0xfb, - 0x64, 0x8d, 0x2c, 0x2d, 0x29, 0x08, 0x08, 0x07, 0x15, 0x0e, 0x83, 0x04, - 0x0b, 0x05, 0x05, 0x07, 0x14, 0x19, 0x18, 0x52, 0x3f, 0xfb, 0x97, 0xba, - 0x8f, 0x00, 0xff, 0xff, 0x00, 0x7f, 0xff, 0xec, 0x04, 0x81, 0x06, 0xb3, - 0x04, 0x26, 0x00, 0x2f, 0xf1, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x01, 0xa1, - 0x00, 0x9d, 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, 0x04, 0x1f, 0x05, 0xca, - 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x75, 0x01, - 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, 0x04, 0x1f, 0x05, 0xf4, 0x06, 0x26, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x00, 0x42, 0xff, 0xff, - 0x00, 0xb4, 0xff, 0xec, 0x04, 0x1f, 0x05, 0xf2, 0x06, 0x26, 0x00, 0x30, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x77, 0x05, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x04, 0x1f, 0x05, 0xca, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0x00, 0x05, 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, - 0x04, 0x1f, 0x05, 0xcd, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5a, 0x89, 0x04, 0x00, 0x01, 0x00, 0xb4, 0xff, 0xec, 0x05, 0x3f, - 0x04, 0x93, 0x00, 0x27, 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x35, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x33, 0x11, 0x36, 0x36, 0x05, 0x3f, - 0xa8, 0x0d, 0x10, 0x0e, 0x2d, 0x20, 0xba, 0x0c, 0x1f, 0x14, 0x26, 0x6f, - 0x4a, 0x35, 0x51, 0x1c, 0x1c, 0x1c, 0xb9, 0x35, 0x31, 0x31, 0x8a, 0x55, - 0x6a, 0xa2, 0x36, 0x0b, 0xa8, 0x93, 0x8c, 0x04, 0x93, 0x35, 0x52, 0x1c, - 0x19, 0x22, 0x08, 0x8d, 0xfc, 0xf8, 0x1b, 0x2f, 0x13, 0x24, 0x29, 0x1c, - 0x23, 0x22, 0x74, 0x58, 0x02, 0x85, 0xfd, 0x7d, 0x79, 0xad, 0x38, 0x38, - 0x35, 0x59, 0x50, 0x95, 0x03, 0x22, 0x13, 0xb4, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x04, 0x5b, 0x05, 0xf4, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x63, 0x00, 0x85, 0x00, 0x05, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x04, 0x1f, 0x05, 0xa5, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5e, 0x03, 0xf5, 0x00, 0x01, 0x00, 0xb4, 0xfe, 0x4f, - 0x04, 0x44, 0x04, 0x3a, 0x00, 0x38, 0x00, 0x00, 0x61, 0x33, 0x11, 0x23, - 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x11, 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x04, 0x1e, 0x01, 0xba, 0x0f, 0x2c, 0x1d, - 0x25, 0x62, 0x3f, 0x35, 0x51, 0x1c, 0x1c, 0x1c, 0xb9, 0x35, 0x31, 0x31, - 0x8a, 0x55, 0x6a, 0xa2, 0x36, 0x0a, 0x19, 0x2b, 0x12, 0x26, 0x29, 0x1e, - 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, - 0x24, 0x17, 0x15, 0x16, 0x42, 0x04, 0x3a, 0xfc, 0xf8, 0x23, 0x3a, 0x15, - 0x1b, 0x1d, 0x1c, 0x23, 0x22, 0x74, 0x58, 0x02, 0x85, 0xfd, 0x7d, 0x79, - 0xad, 0x38, 0x38, 0x35, 0x59, 0x50, 0x8c, 0x11, 0x25, 0x14, 0x2a, 0x5b, - 0x2d, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, 0x01, - 0x29, 0x22, 0x20, 0x3b, 0x1b, 0x1c, 0x33, 0x00, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x04, 0x1f, 0x06, 0x35, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x62, 0xff, 0x4e, 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, - 0x04, 0x1f, 0x05, 0xfc, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0x83, 0x00, 0x0b, 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, - 0x04, 0xa7, 0x05, 0xca, 0x06, 0x26, 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x7c, 0x01, 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, 0x04, 0xa7, - 0x05, 0xf2, 0x06, 0x26, 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0x7e, 0x05, 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, 0x04, 0xa7, 0x05, 0xca, - 0x06, 0x26, 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x06, 0x05, - 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, 0x04, 0xa7, 0x05, 0xcd, 0x06, 0x26, - 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x90, 0x04, 0xff, 0xff, - 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xca, 0x06, 0x26, 0x00, 0x34, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x89, 0x00, 0x01, 0xff, 0xff, - 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xf2, 0x06, 0x26, 0x00, 0x34, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x8b, 0x00, 0x05, 0xff, 0xff, - 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xca, 0x06, 0x26, 0x00, 0x34, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x13, 0x05, 0xff, 0xff, 0x00, 0x44, - 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xcd, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0x9d, 0x04, 0xff, 0xff, 0x00, 0xa0, 0x00, 0x00, - 0x04, 0x3d, 0x05, 0xca, 0x06, 0x26, 0x00, 0x35, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x9a, 0x00, 0x01, 0xff, 0xff, 0x00, 0xa0, 0x00, 0x00, - 0x04, 0x3d, 0x05, 0xf3, 0x06, 0x26, 0x00, 0x35, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x64, 0x25, 0x06, 0xff, 0xff, 0x00, 0xa0, 0x00, 0x00, 0x04, 0x3d, - 0x05, 0xc3, 0x06, 0x26, 0x00, 0x35, 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, - 0x24, 0x05, 0x00, 0x01, 0x01, 0x9f, 0x04, 0xbf, 0x03, 0x2d, 0x05, 0xc9, - 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, 0x23, 0x13, 0x03, 0x2d, 0xaf, 0xdf, - 0xf8, 0x04, 0xbf, 0x01, 0x0a, 0xfe, 0xf6, 0x00, 0x00, 0x01, 0x01, 0x9a, - 0x04, 0xbf, 0x03, 0x32, 0x05, 0xc9, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, - 0x33, 0x01, 0x02, 0x52, 0xb8, 0x8c, 0x01, 0x0c, 0x05, 0xc9, 0xfe, 0xf6, - 0x01, 0x0a, 0x00, 0x01, 0x00, 0xc1, 0x04, 0xe4, 0x03, 0x1e, 0x05, 0xed, - 0x00, 0x08, 0x00, 0x00, 0x41, 0x27, 0x23, 0x07, 0x15, 0x33, 0x37, 0x17, - 0x33, 0x03, 0x1e, 0xf8, 0x70, 0xf5, 0x98, 0x95, 0x96, 0x9a, 0x04, 0xfd, - 0xf0, 0xef, 0x1a, 0x97, 0x97, 0x00, 0x00, 0x01, 0x00, 0x8a, 0x04, 0xe3, - 0x03, 0x3a, 0x05, 0xf1, 0x00, 0x25, 0x00, 0x00, 0x41, 0x27, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x3a, - 0x67, 0x11, 0x0d, 0x0e, 0x26, 0x15, 0x27, 0x41, 0x1f, 0x20, 0x43, 0x2a, - 0x2e, 0x4b, 0x1b, 0x1b, 0x1f, 0x68, 0x01, 0x39, 0x2c, 0x1b, 0x2c, 0x14, - 0x13, 0x26, 0x16, 0x15, 0x34, 0x21, 0x2d, 0x4c, 0x1b, 0x1b, 0x1f, 0x05, - 0xd3, 0x1e, 0x17, 0x29, 0x0f, 0x0f, 0x12, 0x1e, 0x12, 0x11, 0x1e, 0x26, - 0x1f, 0x20, 0x53, 0x2d, 0x18, 0x2e, 0x41, 0x0e, 0x0a, 0x0b, 0x19, 0x0a, - 0x0b, 0x0e, 0x24, 0x1f, 0x1e, 0x52, 0x00, 0x01, 0x01, 0x01, 0x05, 0x21, - 0x03, 0xcb, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x03, 0xcb, 0xfd, 0x36, 0x05, 0x21, 0x8f, 0x8f, 0x00, 0x01, 0x01, 0x3b, - 0x04, 0xa7, 0x03, 0x91, 0x05, 0xb2, 0x00, 0x19, 0x00, 0x00, 0x41, 0x23, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x03, 0x91, 0x96, 0x12, 0x12, 0x12, 0x37, 0x27, 0x28, 0x38, 0x12, 0x12, - 0x12, 0x96, 0x2b, 0x27, 0x27, 0x6e, 0x45, 0x44, 0x6e, 0x27, 0x27, 0x2a, - 0x05, 0xb2, 0x1e, 0x37, 0x14, 0x14, 0x18, 0x18, 0x14, 0x14, 0x37, 0x1e, - 0x3b, 0x63, 0x23, 0x23, 0x27, 0x27, 0x23, 0x23, 0x63, 0x00, 0x00, 0x01, - 0x01, 0xf2, 0x04, 0xe1, 0x02, 0xd8, 0x05, 0xbe, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x01, 0xf2, 0x3a, 0x39, 0x39, 0x3a, 0x3a, 0x39, 0x39, 0x3a, 0x05, 0x4e, - 0x2e, 0x3f, 0x3f, 0x2e, 0x30, 0x40, 0x40, 0x00, 0x00, 0x02, 0x01, 0x1f, - 0x04, 0xf0, 0x03, 0xa8, 0x05, 0xc5, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x00, - 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x01, 0x1f, 0x37, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0x37, 0x01, 0xae, - 0x37, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0x37, 0x05, 0x5b, 0x2d, 0x3c, - 0x3c, 0x2d, 0x2d, 0x3d, 0x3d, 0x2f, 0x2c, 0x3d, 0x3d, 0x2c, 0x2d, 0x3e, - 0x3e, 0x00, 0x00, 0x02, 0x01, 0x9a, 0x04, 0x5e, 0x03, 0x31, 0x05, 0xe7, - 0x00, 0x17, 0x00, 0x2f, 0x00, 0x00, 0x41, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x9a, 0x21, 0x1c, 0x1b, 0x4b, - 0x2a, 0x2a, 0x49, 0x1c, 0x1b, 0x20, 0x20, 0x1b, 0x1c, 0x49, 0x2a, 0x2a, - 0x4b, 0x1b, 0x1c, 0x21, 0x63, 0x12, 0x0f, 0x0e, 0x26, 0x15, 0x16, 0x25, - 0x0e, 0x0e, 0x10, 0x10, 0x0e, 0x0e, 0x25, 0x16, 0x16, 0x26, 0x0e, 0x0f, - 0x11, 0x05, 0x20, 0x2b, 0x48, 0x19, 0x1a, 0x1c, 0x1c, 0x1a, 0x19, 0x48, - 0x2b, 0x2b, 0x49, 0x1b, 0x1a, 0x1e, 0x1e, 0x1a, 0x1b, 0x49, 0x2b, 0x19, - 0x29, 0x0f, 0x0d, 0x0f, 0x0f, 0x0e, 0x0f, 0x29, 0x18, 0x17, 0x26, 0x0e, - 0x0e, 0x10, 0x10, 0x0f, 0x0e, 0x26, 0x00, 0x02, 0x00, 0xf6, 0x04, 0xe2, - 0x03, 0xd6, 0x05, 0xef, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x03, - 0x33, 0x01, 0x21, 0x03, 0x33, 0x13, 0x02, 0xf5, 0xf9, 0xa9, 0x01, 0x31, - 0xfd, 0xdc, 0xbc, 0x96, 0xf5, 0x05, 0xef, 0xfe, 0xf3, 0x01, 0x0d, 0xfe, - 0xf3, 0x01, 0x0d, 0x00, 0x00, 0x01, 0x01, 0x30, 0x04, 0xe3, 0x03, 0x9b, - 0x05, 0xed, 0x00, 0x08, 0x00, 0x00, 0x41, 0x27, 0x23, 0x15, 0x17, 0x33, - 0x37, 0x35, 0x23, 0x02, 0x64, 0x97, 0x9d, 0xfb, 0x72, 0xfe, 0xa0, 0x05, - 0x55, 0x98, 0x15, 0xf5, 0xf8, 0x12, 0x00, 0x01, 0xfd, 0x27, 0xfe, 0xa8, - 0xfe, 0x0d, 0xff, 0x85, 0x00, 0x0b, 0x00, 0x00, 0x45, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0xfd, 0x27, 0x3a, 0x39, - 0x39, 0x3a, 0x3a, 0x39, 0x39, 0x3a, 0xeb, 0x2e, 0x3f, 0x3f, 0x2e, 0x30, - 0x40, 0x40, 0x00, 0x01, 0x01, 0xcd, 0xfe, 0x4d, 0x03, 0x03, 0x00, 0x00, - 0x00, 0x1b, 0x00, 0x00, 0x61, 0x23, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x17, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x02, 0x76, 0x85, 0x1f, - 0x28, 0x3c, 0x15, 0x14, 0x14, 0x1b, 0x16, 0x17, 0x3c, 0x22, 0x07, 0x3d, - 0x65, 0x25, 0x32, 0x36, 0x1a, 0x15, 0x16, 0x37, 0x1d, 0x86, 0x03, 0x0c, - 0x0a, 0x0b, 0x22, 0x19, 0x1b, 0x25, 0x0c, 0x0c, 0x0b, 0x6b, 0x16, 0x13, - 0x1b, 0x56, 0x38, 0x2b, 0x3d, 0x14, 0x14, 0x18, 0x05, 0x00, 0x00, 0x01, - 0x01, 0x8e, 0xfe, 0x4f, 0x03, 0x01, 0x00, 0x38, 0x00, 0x1c, 0x00, 0x00, - 0x61, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x02, 0xdb, 0x57, 0x38, 0x5b, 0x20, 0x20, - 0x23, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, - 0x20, 0x2a, 0x24, 0x20, 0x1d, 0x15, 0x39, 0x38, 0x1b, 0x46, 0x27, 0x27, - 0x53, 0x29, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, - 0x01, 0x29, 0x22, 0x26, 0x45, 0x1f, 0x16, 0x29, 0x00, 0x01, 0x01, 0x2e, - 0xff, 0x56, 0x02, 0x28, 0x00, 0xef, 0x00, 0x09, 0x00, 0x00, 0x65, 0x35, - 0x23, 0x15, 0x14, 0x06, 0x07, 0x17, 0x36, 0x36, 0x02, 0x28, 0xb0, 0x25, - 0x25, 0x69, 0x47, 0x4a, 0xa9, 0x46, 0x49, 0x4b, 0x7f, 0x3e, 0x48, 0x3e, - 0xb7, 0x00, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x76, 0x03, 0xd7, 0x03, 0x92, - 0x04, 0x27, 0x00, 0x7a, 0xff, 0x48, 0xff, 0xdd, 0x00, 0x07, 0x00, 0x7a, - 0x00, 0x97, 0xff, 0xdd, 0x00, 0x01, 0x00, 0xbc, 0xfe, 0x60, 0x04, 0x10, - 0x04, 0x3a, 0x00, 0x1e, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, 0x33, 0x11, 0x23, - 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x01, 0x75, 0xb9, 0xb9, 0x29, 0x72, 0x49, 0x34, 0x57, 0x24, 0x19, - 0x2c, 0x13, 0x09, 0xa7, 0xba, 0x0b, 0x20, 0x16, 0x21, 0x62, 0x41, 0x30, - 0x51, 0x1d, 0x1e, 0x20, 0x04, 0x3a, 0xfa, 0x26, 0x01, 0xd5, 0x24, 0x25, - 0x18, 0x17, 0x11, 0x2d, 0x1b, 0x74, 0x04, 0x3a, 0xfc, 0xe1, 0x1c, 0x2e, - 0x13, 0x1d, 0x1f, 0x1c, 0x25, 0x25, 0x80, 0x64, 0xff, 0xff, 0x00, 0xf1, - 0x00, 0x98, 0x03, 0xfe, 0x03, 0xb5, 0x04, 0x27, 0x00, 0x7b, 0xff, 0x65, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x7b, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x01, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, - 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0xcb, 0x01, - 0x70, 0xfe, 0x90, 0x03, 0x8a, 0xfe, 0x9f, 0x04, 0x3a, 0xa1, 0xfd, 0x07, - 0xa0, 0xa0, 0x03, 0x9a, 0x00, 0x02, 0x00, 0x80, 0xff, 0xed, 0x04, 0x4c, - 0x05, 0xb0, 0x00, 0x03, 0x00, 0x1c, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, - 0x01, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x23, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x11, 0x01, 0x39, 0xb9, 0x03, 0x13, 0x0f, 0x12, 0x12, 0x3c, 0x2e, 0x44, - 0x50, 0xba, 0x32, 0x2c, 0x2c, 0x7b, 0x49, 0x57, 0x81, 0x2b, 0x2a, 0x29, - 0x05, 0xb0, 0xfa, 0x50, 0x05, 0xb0, 0xfb, 0x93, 0x2c, 0x47, 0x18, 0x19, - 0x1b, 0x5a, 0x63, 0x57, 0x80, 0x2a, 0x2a, 0x29, 0x2e, 0x2c, 0x2c, 0x7f, - 0x51, 0x04, 0x6d, 0x00, 0x00, 0x04, 0x00, 0x50, 0xfe, 0x4e, 0x04, 0x4f, - 0x05, 0xbf, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x33, 0x00, 0x3f, 0x00, 0x00, - 0x41, 0x15, 0x33, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, - 0x21, 0x35, 0x23, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x02, 0xae, 0xde, 0x27, 0x22, 0x22, 0x5c, 0x34, - 0x0e, 0x30, 0x1b, 0x1b, 0x34, 0x11, 0x0d, 0x17, 0x2c, 0x15, 0x1e, 0x3c, - 0x21, 0x64, 0x9d, 0x37, 0x36, 0x39, 0xfc, 0x10, 0xea, 0xef, 0x02, 0x88, - 0xdf, 0xca, 0x37, 0x38, 0x37, 0x38, 0x38, 0x37, 0x38, 0x37, 0x02, 0x42, - 0x36, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x36, 0x04, 0x3a, 0xa1, 0xfc, - 0x62, 0x4d, 0x67, 0x1e, 0x1f, 0x19, 0x01, 0x02, 0x01, 0x05, 0x03, 0x9e, - 0x04, 0x06, 0x02, 0x03, 0x02, 0x38, 0x37, 0x37, 0x9f, 0x68, 0x04, 0x3f, - 0xa1, 0xfd, 0x07, 0xa0, 0xa0, 0x03, 0x9a, 0x01, 0x18, 0x2d, 0x3d, 0x3d, - 0x2d, 0x2d, 0x3f, 0x3f, 0x2c, 0x2d, 0x3d, 0x3d, 0x2d, 0x2d, 0x3f, 0x3f, - 0x00, 0x01, 0x01, 0xc8, 0x00, 0x00, 0x04, 0x0b, 0x06, 0x2b, 0x00, 0x15, - 0x00, 0x00, 0x61, 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x01, 0xc8, 0xba, 0x24, 0x23, 0x23, 0x67, 0x44, 0x1d, 0x2e, 0x12, 0x17, - 0x25, 0x47, 0x25, 0x64, 0xa0, 0x38, 0x39, 0x3d, 0x04, 0x66, 0x45, 0x70, - 0x27, 0x27, 0x2a, 0x06, 0x05, 0x8e, 0x09, 0x0c, 0x3c, 0x39, 0x3a, 0xa9, - 0x6d, 0x00, 0x00, 0x01, 0x00, 0xb0, 0xfe, 0x4b, 0x03, 0x2a, 0x04, 0x3a, - 0x00, 0x1d, 0x00, 0x00, 0x41, 0x15, 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x01, 0x04, - 0x01, 0x6c, 0x27, 0x22, 0x22, 0x5b, 0x34, 0x0e, 0x31, 0x1b, 0x1b, 0x33, - 0x11, 0x0d, 0x18, 0x2c, 0x16, 0x1d, 0x3b, 0x21, 0x64, 0x9d, 0x37, 0x36, - 0x39, 0x04, 0x3a, 0xa1, 0xfc, 0x60, 0x4d, 0x69, 0x20, 0x20, 0x1b, 0x01, - 0x02, 0x01, 0x05, 0x03, 0x98, 0x04, 0x06, 0x02, 0x03, 0x02, 0x39, 0x37, - 0x36, 0xa0, 0x68, 0x04, 0x41, 0x00, 0x00, 0x02, 0x01, 0xad, 0xfe, 0x86, - 0x02, 0xdd, 0xff, 0xab, 0x00, 0x17, 0x00, 0x23, 0x00, 0x00, 0x45, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0xad, - 0x18, 0x15, 0x15, 0x38, 0x20, 0x1f, 0x36, 0x15, 0x14, 0x18, 0x18, 0x14, - 0x15, 0x36, 0x1f, 0x20, 0x38, 0x15, 0x15, 0x18, 0x56, 0x01, 0x27, 0x1c, - 0x1a, 0x26, 0x26, 0x1a, 0x1c, 0x27, 0xe9, 0x20, 0x36, 0x13, 0x13, 0x15, - 0x15, 0x13, 0x13, 0x36, 0x20, 0x20, 0x37, 0x14, 0x13, 0x16, 0x16, 0x13, - 0x14, 0x37, 0x20, 0x1d, 0x27, 0x27, 0x1d, 0x1c, 0x25, 0x26, 0x00, 0x01, - 0xfc, 0xca, 0x04, 0xbc, 0xfd, 0xfb, 0x06, 0x16, 0x00, 0x03, 0x00, 0x00, - 0x41, 0x03, 0x23, 0x13, 0xfd, 0xfb, 0x7f, 0xb2, 0xb3, 0x04, 0xbc, 0x01, - 0x5a, 0xfe, 0xa6, 0x00, 0x00, 0x01, 0xfd, 0x68, 0x04, 0xbc, 0xfe, 0x96, - 0x06, 0x17, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0xfd, 0xea, - 0x82, 0x74, 0xba, 0x06, 0x17, 0xfe, 0xa5, 0x01, 0x5b, 0x00, 0xff, 0xff, - 0xfc, 0x88, 0x04, 0xe3, 0xff, 0x38, 0x05, 0xf1, 0x04, 0x07, 0x01, 0x5d, - 0xfb, 0xfe, 0x00, 0x00, 0x00, 0x01, 0xfd, 0x59, 0x04, 0xd9, 0xfe, 0x8f, - 0x06, 0x74, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x33, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x07, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0xfd, 0x6f, - 0x84, 0x01, 0x1c, 0x38, 0x16, 0x16, 0x1b, 0x31, 0x2e, 0x26, 0x69, 0x41, - 0x07, 0x21, 0x3c, 0x17, 0x17, 0x1b, 0x15, 0x15, 0x12, 0x34, 0x21, 0x04, - 0xd9, 0x47, 0x04, 0x14, 0x12, 0x12, 0x36, 0x26, 0x30, 0x4b, 0x18, 0x14, - 0x15, 0x6a, 0x08, 0x09, 0x09, 0x1e, 0x16, 0x16, 0x1b, 0x08, 0x07, 0x08, - 0x02, 0x00, 0x00, 0x02, 0xfc, 0x05, 0x04, 0xe4, 0xfe, 0xe5, 0x05, 0xee, - 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x03, 0x23, 0x01, 0x21, 0x03, - 0x23, 0x13, 0xfd, 0xe0, 0xfa, 0xe1, 0x01, 0x32, 0x01, 0xae, 0xbd, 0xcf, - 0xf6, 0x04, 0xe4, 0x01, 0x0a, 0xfe, 0xf6, 0x01, 0x0a, 0xfe, 0xf6, 0x00, - 0x00, 0x01, 0x02, 0x29, 0x04, 0xf7, 0x03, 0x2d, 0x06, 0x7a, 0x00, 0x03, - 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x02, 0x6a, 0x41, 0x5a, 0xaa, 0x06, - 0x7a, 0xfe, 0x7d, 0x01, 0x83, 0x00, 0x00, 0x03, 0x01, 0x13, 0x04, 0xe2, - 0x03, 0xf3, 0x06, 0xbf, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x00, - 0x41, 0x03, 0x33, 0x13, 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x02, 0x74, 0x30, 0x87, 0x76, 0xfd, 0xd2, 0x39, - 0x39, 0x39, 0x3a, 0x3a, 0x39, 0x39, 0x39, 0x01, 0xfb, 0x39, 0x39, 0x39, - 0x3a, 0x3a, 0x39, 0x39, 0x39, 0x06, 0xbf, 0xfe, 0xf8, 0x01, 0x08, 0xfe, - 0x91, 0x2e, 0x40, 0x40, 0x2e, 0x30, 0x40, 0x40, 0x30, 0x2e, 0x40, 0x40, - 0x2e, 0x30, 0x40, 0x40, 0xff, 0xff, 0x02, 0x30, 0x02, 0x6b, 0x03, 0x16, - 0x03, 0x49, 0x04, 0x06, 0x00, 0x64, 0x38, 0x00, 0x00, 0x01, 0x00, 0xb5, - 0x00, 0x00, 0x04, 0x30, 0x05, 0xb0, 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x33, 0x11, 0x04, 0x30, 0xfc, 0x85, 0xba, 0x05, 0x18, 0x98, - 0xfa, 0x50, 0x05, 0x18, 0x00, 0x02, 0x00, 0x2e, 0x00, 0x00, 0x04, 0xb4, - 0x05, 0xb0, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x41, 0x01, 0x21, 0x09, - 0x02, 0x37, 0x17, 0x01, 0x02, 0x34, 0xfd, 0xfa, 0x04, 0x86, 0xfe, 0x20, - 0xfe, 0x4a, 0x01, 0x45, 0x1e, 0x1b, 0x01, 0x2b, 0x05, 0xb0, 0xfa, 0x50, - 0x05, 0xb0, 0xfa, 0xe7, 0x03, 0xc3, 0x59, 0x5a, 0xfc, 0x3e, 0x00, 0x03, - 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x05, 0xc4, 0x00, 0x03, 0x00, 0x1d, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x05, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x03, 0x4d, 0xfe, 0x30, 0x02, 0xe4, 0x02, 0x39, 0x3f, 0x3f, 0xbe, 0x85, - 0x79, 0xb4, 0x41, 0x49, 0x42, 0x02, 0x02, 0x40, 0x42, 0x3f, 0xb9, 0x81, - 0x84, 0xc0, 0x3b, 0x40, 0x3b, 0xb7, 0x02, 0x21, 0x2b, 0x26, 0x77, 0x58, - 0x57, 0x77, 0x24, 0x2d, 0x28, 0x25, 0x2e, 0x26, 0x75, 0x57, 0x55, 0x77, - 0x23, 0x30, 0x24, 0x02, 0x94, 0x97, 0x97, 0x10, 0xa6, 0x76, 0xf0, 0x60, - 0x60, 0x74, 0x61, 0x5a, 0x65, 0xf9, 0x81, 0xa6, 0x7a, 0xf6, 0x61, 0x59, - 0x6e, 0x75, 0x5b, 0x5f, 0xf2, 0x01, 0x1f, 0xa8, 0x56, 0xc2, 0x49, 0x44, - 0x50, 0x52, 0x3c, 0x4d, 0xc5, 0x55, 0xa8, 0x54, 0xc1, 0x4f, 0x3d, 0x52, - 0x4e, 0x3a, 0x50, 0xc4, 0x00, 0x01, 0x00, 0x36, 0x00, 0x00, 0x04, 0xa0, - 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x23, 0x01, - 0x33, 0x02, 0x6a, 0x01, 0x79, 0xbd, 0xfe, 0x1b, 0xa1, 0xfe, 0x1c, 0xbd, - 0x04, 0x9c, 0xfb, 0x64, 0x05, 0xb0, 0xfa, 0x50, 0x00, 0x03, 0x00, 0x91, - 0x00, 0x00, 0x04, 0x37, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, - 0x00, 0x00, 0x77, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, - 0x21, 0x35, 0x91, 0x03, 0xa6, 0xfc, 0xaf, 0x02, 0xf2, 0xfc, 0xbb, 0x03, - 0x96, 0x97, 0x97, 0x97, 0x02, 0xa7, 0x98, 0x98, 0x02, 0x72, 0x98, 0x98, - 0x00, 0x01, 0x00, 0xa2, 0x00, 0x00, 0x04, 0x2a, 0x05, 0xb0, 0x00, 0x07, - 0x00, 0x00, 0x61, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x04, 0x2a, - 0xfc, 0x78, 0xb9, 0x02, 0x16, 0x05, 0xb0, 0xfa, 0x50, 0x05, 0x18, 0xfa, - 0xe8, 0x00, 0x00, 0x01, 0x00, 0x70, 0x00, 0x00, 0x04, 0x6f, 0x05, 0xb0, - 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, - 0x01, 0x15, 0x21, 0x35, 0x21, 0x03, 0x19, 0xfe, 0x3d, 0x02, 0xe7, 0xfc, - 0x33, 0x01, 0xe5, 0xfe, 0x1b, 0x03, 0xff, 0xfc, 0xe6, 0x02, 0xcd, 0x19, - 0x02, 0x32, 0x98, 0x90, 0xfd, 0xb9, 0xfd, 0xb7, 0x90, 0x98, 0x00, 0x03, - 0x00, 0x45, 0x00, 0x00, 0x04, 0x87, 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x2a, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, 0x23, 0x15, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x33, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x01, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x25, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x02, 0xc3, 0xb9, 0x62, 0xa5, 0x3d, 0x3d, 0x44, 0x44, 0x3d, 0x3d, 0xa5, - 0x62, 0xb9, 0x61, 0xa5, 0x3d, 0x3c, 0x45, 0x45, 0x3c, 0x3d, 0xa5, 0xfd, - 0xd8, 0x24, 0x23, 0x22, 0x64, 0x41, 0x41, 0x64, 0x22, 0x23, 0x24, 0x02, - 0xd3, 0x24, 0x22, 0x23, 0x63, 0x40, 0x40, 0x63, 0x23, 0x22, 0x24, 0x04, - 0xe2, 0xce, 0xce, 0x07, 0x53, 0x45, 0x45, 0xbc, 0x6f, 0x70, 0xbc, 0x45, - 0x45, 0x52, 0x07, 0xc4, 0xc4, 0x07, 0x54, 0x46, 0x45, 0xbb, 0x70, 0x6f, - 0xba, 0x45, 0x45, 0x52, 0xfd, 0xf9, 0x4f, 0x84, 0x31, 0x31, 0x3b, 0x07, - 0xfd, 0x12, 0x06, 0x3b, 0x31, 0x30, 0x85, 0x52, 0x50, 0x85, 0x31, 0x31, - 0x3b, 0x07, 0x02, 0xee, 0x07, 0x3b, 0x30, 0x31, 0x83, 0x00, 0x00, 0x01, - 0x00, 0x65, 0x00, 0x00, 0x04, 0x72, 0x05, 0xb0, 0x00, 0x23, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, - 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x11, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x02, 0xc7, 0xb9, 0x36, 0x59, 0x1f, 0x20, 0x22, 0xb9, 0x3e, 0x38, 0x38, - 0x9c, 0x5f, 0xb9, 0x5e, 0x9e, 0x38, 0x38, 0x3f, 0xb9, 0x23, 0x1f, 0x20, - 0x59, 0x01, 0xdf, 0x03, 0xd1, 0xfc, 0x30, 0x0c, 0x38, 0x2d, 0x2d, 0x7c, - 0x50, 0x02, 0x66, 0xfd, 0x9a, 0x76, 0xb7, 0x41, 0x41, 0x4c, 0x0b, 0xfe, - 0xbc, 0x01, 0x44, 0x0b, 0x4c, 0x41, 0x41, 0xb7, 0x76, 0x02, 0x66, 0xfd, - 0x9a, 0x50, 0x7d, 0x2d, 0x2d, 0x38, 0x00, 0x01, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x6c, 0x05, 0xc4, 0x00, 0x3b, 0x00, 0x00, 0x65, 0x15, 0x21, 0x35, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x21, 0x15, 0x21, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x02, 0xa8, 0x01, 0xc4, - 0xfe, 0xf6, 0x3e, 0x62, 0x22, 0x21, 0x24, 0x4a, 0x43, 0x44, 0xbf, 0x75, - 0x75, 0xbe, 0x43, 0x44, 0x49, 0x24, 0x23, 0x22, 0x63, 0x3e, 0xfe, 0xfa, - 0x01, 0xc4, 0x4e, 0x73, 0x21, 0x16, 0x17, 0x2e, 0x2b, 0x2a, 0x7a, 0x4d, - 0x4e, 0x7c, 0x2b, 0x2a, 0x2d, 0x16, 0x15, 0x21, 0x6f, 0xc1, 0xc1, 0x97, - 0x2f, 0x87, 0x50, 0x50, 0xb1, 0x59, 0x4f, 0x8b, 0xeb, 0x55, 0x54, 0x5f, - 0x5f, 0x54, 0x55, 0xeb, 0x8b, 0x4f, 0x59, 0xb0, 0x50, 0x51, 0x87, 0x2f, - 0x97, 0xc1, 0x12, 0x77, 0x63, 0x41, 0xa6, 0x63, 0x51, 0x75, 0xb5, 0x3e, - 0x3d, 0x40, 0x40, 0x3d, 0x3e, 0xb5, 0x75, 0x51, 0x63, 0xa7, 0x42, 0x62, - 0x77, 0x00, 0x00, 0x02, 0x00, 0x81, 0xff, 0xeb, 0x04, 0x8a, 0x04, 0x4e, - 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x00, 0x41, 0x23, 0x07, 0x07, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x25, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x14, 0x14, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x03, - 0xef, 0x70, 0x2e, 0x03, 0x14, 0x30, 0x1b, 0x2d, 0x6c, 0x41, 0x63, 0x97, - 0x33, 0x33, 0x34, 0x34, 0x33, 0x33, 0x96, 0x62, 0x40, 0x6c, 0x2c, 0x1b, - 0x30, 0x14, 0x09, 0x19, 0x10, 0x1b, 0x4a, 0x2f, 0x20, 0x3b, 0x1f, 0x17, - 0x0a, 0x1b, 0x0f, 0x12, 0x1d, 0x0a, 0x0b, 0x0c, 0xfd, 0x4b, 0x1c, 0x20, - 0x1f, 0x65, 0x48, 0x2b, 0x49, 0x1f, 0x1e, 0x30, 0x13, 0x0e, 0x21, 0x14, - 0x22, 0x59, 0x38, 0x47, 0x64, 0x1f, 0x20, 0x1c, 0x04, 0x3a, 0x77, 0x08, - 0x1b, 0x2d, 0x11, 0x1c, 0x1e, 0x58, 0x4d, 0x4e, 0xd5, 0x7d, 0x15, 0x70, - 0xbf, 0x45, 0x46, 0x4f, 0x1c, 0x1b, 0x11, 0x2b, 0x1a, 0x1c, 0x2c, 0x10, - 0x1b, 0x1a, 0x0d, 0x15, 0x8a, 0x02, 0x04, 0x0d, 0x0f, 0x0f, 0x33, 0x26, - 0xdf, 0x15, 0x55, 0x9b, 0x3c, 0x3b, 0x46, 0x15, 0x13, 0x13, 0x34, 0x1f, - 0xfe, 0x20, 0x13, 0x13, 0x0d, 0x18, 0x2a, 0x11, 0x1e, 0x22, 0x3c, 0x33, - 0x32, 0x86, 0x00, 0x02, 0x00, 0xae, 0xfe, 0x80, 0x04, 0x5b, 0x05, 0xc4, - 0x00, 0x26, 0x00, 0x4e, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x11, 0x33, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x03, 0x23, 0x15, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x02, 0x6b, 0x5c, 0xa1, 0x3c, 0x3d, 0x47, 0xba, 0x1f, 0x48, 0x26, - 0x27, 0x51, 0x28, 0x62, 0xa6, 0x3d, 0x3d, 0x44, 0x38, 0x35, 0x1d, 0x49, - 0x2b, 0x20, 0x37, 0x16, 0x25, 0x28, 0x3d, 0x38, 0x38, 0x9e, 0x65, 0x54, - 0x8f, 0x3d, 0x5f, 0x21, 0x21, 0x22, 0x28, 0x25, 0x25, 0x6b, 0x43, 0x32, - 0x58, 0x24, 0x21, 0x36, 0x15, 0x28, 0x23, 0x22, 0x5f, 0x37, 0x3a, 0x5b, - 0x1f, 0x1f, 0x20, 0x1d, 0x1e, 0x1e, 0x5e, 0x05, 0xc4, 0x40, 0x37, 0x37, - 0x93, 0x52, 0xfa, 0x4f, 0x01, 0xcb, 0x19, 0x25, 0x0b, 0x0c, 0x0b, 0x3b, - 0x39, 0x39, 0xa5, 0x6b, 0x55, 0x8e, 0x34, 0x1d, 0x2d, 0x10, 0x11, 0x2b, - 0x19, 0x2a, 0x69, 0x3a, 0x57, 0x90, 0x35, 0x34, 0x39, 0xfd, 0x96, 0x98, - 0x32, 0x28, 0x29, 0x66, 0x35, 0x3f, 0x6b, 0x26, 0x27, 0x2b, 0x13, 0x10, - 0x0f, 0x29, 0x19, 0x03, 0x3b, 0x35, 0x5c, 0x22, 0x22, 0x27, 0x28, 0x21, - 0x21, 0x56, 0x2e, 0x33, 0x54, 0x1e, 0x1e, 0x22, 0x00, 0x01, 0x00, 0x47, - 0xfe, 0x60, 0x04, 0x96, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, - 0x07, 0x23, 0x27, 0x01, 0x23, 0x01, 0x11, 0x33, 0x11, 0x01, 0x03, 0xd8, - 0xfe, 0xb3, 0x19, 0x01, 0x18, 0xfe, 0xac, 0xbe, 0x01, 0xcb, 0xba, 0x01, - 0xca, 0x04, 0x3a, 0xfc, 0xf0, 0x62, 0x62, 0x03, 0x10, 0xfb, 0xfc, 0xfe, - 0x2a, 0x01, 0xcf, 0x04, 0x0b, 0x00, 0x00, 0x02, 0x00, 0x78, 0xff, 0xec, - 0x04, 0x66, 0x06, 0x1c, 0x00, 0x39, 0x00, 0x53, 0x00, 0x00, 0x41, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x34, 0x02, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x13, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x07, - 0x1e, 0x1b, 0x1b, 0x4c, 0x2f, 0x04, 0x48, 0x7f, 0x2e, 0x2f, 0x36, 0x44, - 0x41, 0x41, 0xbb, 0x78, 0x76, 0xba, 0x41, 0x40, 0x44, 0xdf, 0xdc, 0x43, - 0x59, 0x1b, 0x1b, 0x17, 0x1c, 0x19, 0x19, 0x45, 0x2a, 0x28, 0x4e, 0x24, - 0x24, 0x3f, 0x17, 0x29, 0x4b, 0x9f, 0x50, 0x56, 0x8c, 0x31, 0x32, 0x36, - 0x2b, 0x28, 0x28, 0x28, 0x78, 0x51, 0x47, 0x73, 0x29, 0x29, 0x2d, 0x26, - 0x27, 0x27, 0x76, 0x51, 0x52, 0x78, 0x27, 0x28, 0x26, 0x04, 0xf5, 0x2f, - 0x51, 0x22, 0x23, 0x36, 0x13, 0x0b, 0x11, 0x52, 0x3c, 0x3c, 0x98, 0x57, - 0x15, 0x71, 0xc1, 0x47, 0x47, 0x51, 0x51, 0x47, 0x47, 0xc1, 0x71, 0x15, - 0xcf, 0x01, 0x14, 0x49, 0x17, 0x30, 0x18, 0x18, 0x2f, 0x16, 0x1f, 0x33, - 0x12, 0x12, 0x14, 0x0d, 0x09, 0x0a, 0x16, 0x09, 0x82, 0x26, 0x2f, 0x28, - 0x26, 0x26, 0x6e, 0xfc, 0xc3, 0x15, 0x4c, 0x8b, 0x35, 0x34, 0x3d, 0x01, - 0x0c, 0x4b, 0x34, 0x35, 0x7d, 0x3f, 0x15, 0x4d, 0x8a, 0x33, 0x34, 0x3d, - 0x3d, 0x34, 0x33, 0x8a, 0x00, 0x01, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x60, - 0x04, 0x4d, 0x00, 0x52, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x35, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x8b, 0x48, 0x42, 0x41, 0xb4, 0x6c, 0x61, - 0xae, 0x46, 0x3e, 0x56, 0x01, 0xb9, 0x2e, 0x28, 0x29, 0x70, 0x42, 0x4a, - 0x72, 0x26, 0x27, 0x28, 0x1c, 0x1c, 0x15, 0x39, 0x23, 0x1b, 0x3e, 0x23, - 0xf3, 0xf3, 0x26, 0x40, 0x1a, 0x19, 0x2a, 0x10, 0x21, 0x1e, 0x21, 0x23, - 0x23, 0x6c, 0x4b, 0x3a, 0x68, 0x27, 0x27, 0x2f, 0xb9, 0x01, 0x4c, 0x40, - 0x41, 0xab, 0x5f, 0x6c, 0xaf, 0x3d, 0x3e, 0x42, 0x22, 0x20, 0x19, 0x44, - 0x29, 0x2a, 0x46, 0x1a, 0x28, 0x29, 0x01, 0x30, 0x4e, 0x78, 0x29, 0x2a, - 0x2b, 0x2c, 0x2a, 0x25, 0x82, 0x57, 0x27, 0x45, 0x1a, 0x1b, 0x1e, 0x1b, - 0x18, 0x17, 0x40, 0x25, 0x28, 0x3d, 0x15, 0x0f, 0x16, 0x06, 0x05, 0x04, - 0x94, 0x06, 0x05, 0x06, 0x10, 0x0a, 0x15, 0x3b, 0x25, 0x22, 0x3c, 0x17, - 0x16, 0x1a, 0x1a, 0x16, 0x17, 0x3f, 0x25, 0x4b, 0x77, 0x2a, 0x29, 0x2c, - 0x28, 0x27, 0x28, 0x75, 0x4e, 0x2a, 0x4d, 0x1f, 0x19, 0x29, 0x0f, 0x0c, - 0x23, 0x17, 0x21, 0x5c, 0x00, 0x01, 0x00, 0x75, 0xfe, 0x81, 0x04, 0x2f, - 0x05, 0xb0, 0x00, 0x38, 0x00, 0x00, 0x41, 0x21, 0x15, 0x21, 0x01, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x01, 0x04, 0x2f, 0xfc, 0x46, 0x02, 0xd4, 0xfe, 0xce, 0x5c, - 0x86, 0x2b, 0x2c, 0x2a, 0x26, 0x29, 0x28, 0x7f, 0x59, 0xb5, 0x29, 0x3c, - 0x13, 0x12, 0x11, 0x10, 0x10, 0x0c, 0x22, 0x15, 0x62, 0x1c, 0x3f, 0x1a, - 0x1a, 0x23, 0x01, 0x29, 0x23, 0x23, 0x60, 0x36, 0xdd, 0x2c, 0x44, 0x17, - 0x17, 0x18, 0x29, 0x27, 0x26, 0x6e, 0x45, 0x01, 0x99, 0x05, 0xb0, 0x98, - 0xfe, 0xc4, 0x57, 0xa4, 0x4c, 0x4c, 0x87, 0x39, 0x51, 0x7a, 0x2c, 0x2d, - 0x3b, 0x10, 0x23, 0x08, 0x18, 0x0e, 0x0d, 0x1f, 0x11, 0x19, 0x30, 0x19, - 0x13, 0x2a, 0x18, 0x54, 0x16, 0x45, 0x28, 0x27, 0x56, 0x27, 0x3e, 0x4b, - 0x17, 0x17, 0x1a, 0x0c, 0x32, 0x09, 0x1f, 0x19, 0x1a, 0x4a, 0x32, 0x4e, - 0x82, 0x3c, 0x3c, 0x75, 0x42, 0x01, 0xab, 0x00, 0x00, 0x01, 0x00, 0xa4, - 0xfe, 0x61, 0x04, 0x2b, 0x04, 0x4e, 0x00, 0x20, 0x00, 0x00, 0x73, 0x33, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x11, 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x27, 0x27, 0x23, 0xa4, 0xba, 0x13, 0x34, 0x20, - 0x23, 0x56, 0x34, 0x3f, 0x5f, 0x1f, 0x21, 0x21, 0xba, 0x36, 0x32, 0x32, - 0x8e, 0x5a, 0x41, 0x71, 0x2f, 0x21, 0x38, 0x17, 0x01, 0x0c, 0xa7, 0x03, - 0x28, 0x20, 0x33, 0x13, 0x13, 0x15, 0x1d, 0x1f, 0x20, 0x68, 0x49, 0xfb, - 0xb8, 0x04, 0x4c, 0x73, 0x9f, 0x32, 0x31, 0x2c, 0x01, 0x21, 0x1f, 0x16, - 0x3a, 0x23, 0x0e, 0x92, 0x00, 0x03, 0x00, 0xb9, 0xff, 0xec, 0x04, 0x18, - 0x05, 0xc5, 0x00, 0x19, 0x00, 0x28, 0x00, 0x37, 0x00, 0x00, 0x45, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x37, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x02, 0x6a, 0x67, 0xa0, 0x37, 0x37, - 0x39, 0x3a, 0x37, 0x37, 0xa1, 0x67, 0x66, 0xa1, 0x37, 0x37, 0x3a, 0x3b, - 0x38, 0x37, 0xa1, 0x66, 0x40, 0x5e, 0x1f, 0x1e, 0x1d, 0x01, 0xed, 0x1f, - 0x21, 0x1e, 0x5a, 0xfe, 0xcb, 0x23, 0x24, 0x1e, 0x58, 0x39, 0x39, 0x57, - 0x1e, 0x25, 0x24, 0x14, 0x4d, 0x4a, 0x49, 0xd7, 0x8a, 0x01, 0x55, 0x8a, - 0xd7, 0x4b, 0x4a, 0x4d, 0x4d, 0x4a, 0x4b, 0xd7, 0x8a, 0xfe, 0xab, 0x8a, - 0xd7, 0x49, 0x4a, 0x4d, 0x96, 0x34, 0x32, 0x31, 0x91, 0x5c, 0x8d, 0x8d, - 0x61, 0x95, 0x31, 0x2e, 0x2f, 0x02, 0xa8, 0x81, 0x66, 0x9a, 0x31, 0x28, - 0x29, 0x29, 0x27, 0x30, 0x9b, 0x67, 0x81, 0x00, 0x00, 0x01, 0x00, 0xb8, - 0xff, 0xec, 0x04, 0x3a, 0x04, 0x3a, 0x00, 0x1a, 0x00, 0x00, 0x53, 0x15, - 0x21, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x03, 0xb8, 0x01, 0x60, 0x2a, 0x28, 0x27, 0x71, 0x48, 0x25, 0x48, 0x23, - 0x17, 0x30, 0x19, 0x29, 0x1d, 0x4e, 0x2d, 0x21, 0x3c, 0x17, 0x18, 0x1b, - 0x01, 0x04, 0x3a, 0xa1, 0xfd, 0xb3, 0x65, 0x87, 0x29, 0x29, 0x22, 0x08, - 0x0c, 0x08, 0x18, 0x12, 0x82, 0x11, 0x1c, 0x0a, 0x13, 0x12, 0x4b, 0x41, - 0x02, 0xf8, 0x00, 0x01, 0x00, 0x39, 0xff, 0xef, 0x04, 0x5c, 0x05, 0xee, - 0x00, 0x2d, 0x00, 0x00, 0x61, 0x13, 0x37, 0x17, 0x13, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x01, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x17, 0x01, 0x01, 0x07, 0xf6, 0x1d, 0x2d, 0xa7, 0x18, 0x39, 0x25, 0x24, - 0x5c, 0x3b, 0x0c, 0x24, 0x0b, 0x02, 0x0c, 0x11, 0x11, 0x18, 0x2a, 0x11, - 0x11, 0x1c, 0x0b, 0xfe, 0x96, 0x0f, 0x31, 0x25, 0x26, 0x6a, 0x48, 0x19, - 0x3c, 0x12, 0x01, 0x0d, 0x28, 0x0d, 0x22, 0x37, 0x16, 0x16, 0x22, 0x0e, - 0x37, 0xfe, 0x75, 0x02, 0xae, 0x77, 0x76, 0xfe, 0x4b, 0x42, 0x64, 0x21, - 0x22, 0x22, 0x09, 0x06, 0x97, 0x03, 0x02, 0x18, 0x15, 0x14, 0x36, 0x23, - 0x03, 0xb6, 0x28, 0x5f, 0x29, 0x28, 0x36, 0x0a, 0x05, 0x8e, 0x01, 0x04, - 0x21, 0x1b, 0x1b, 0x45, 0x23, 0x8f, 0xfb, 0xf8, 0x00, 0x01, 0x00, 0xaf, - 0xfe, 0x77, 0x04, 0x2e, 0x05, 0xc4, 0x00, 0x5a, 0x00, 0x00, 0x41, 0x37, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x35, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x03, 0xf7, 0x1a, 0x30, 0x8c, 0x47, 0x7e, - 0xc8, 0x46, 0x47, 0x4b, 0x26, 0x24, 0x23, 0x66, 0x41, 0x4f, 0x7e, 0x2c, - 0x2d, 0x2f, 0x48, 0x42, 0x42, 0xba, 0x72, 0x3a, 0x2b, 0x3f, 0x13, 0x0f, - 0x10, 0x0d, 0x0c, 0x0d, 0x24, 0x18, 0x61, 0x1b, 0x3e, 0x1b, 0x1a, 0x23, - 0x01, 0x29, 0x23, 0x24, 0x5f, 0x36, 0x6f, 0x43, 0x7b, 0x2e, 0x2f, 0x37, - 0x1f, 0x1e, 0x16, 0x3f, 0x28, 0x33, 0x84, 0x4f, 0x8e, 0x8e, 0x54, 0x80, - 0x2d, 0x21, 0x30, 0x0e, 0x10, 0x0e, 0x29, 0x2c, 0x2b, 0x87, 0x5f, 0x3d, - 0x71, 0x05, 0x08, 0x95, 0x11, 0x16, 0x2d, 0x2c, 0x2c, 0x80, 0x53, 0x31, - 0x57, 0x25, 0x25, 0x3b, 0x15, 0x16, 0x48, 0x31, 0x31, 0x7e, 0x4c, 0x70, - 0x9a, 0x33, 0x34, 0x41, 0x16, 0x0d, 0x0a, 0x14, 0x0f, 0x0b, 0x1d, 0x13, - 0x1d, 0x2d, 0x14, 0x15, 0x2a, 0x1b, 0x54, 0x16, 0x44, 0x28, 0x27, 0x54, - 0x27, 0x3d, 0x4a, 0x17, 0x16, 0x19, 0x0d, 0x19, 0x0c, 0x2e, 0x25, 0x25, - 0x66, 0x44, 0x3c, 0x62, 0x25, 0x1c, 0x2b, 0x10, 0x14, 0x13, 0x98, 0x14, - 0x14, 0x0d, 0x25, 0x17, 0x16, 0x36, 0x1e, 0x27, 0x44, 0x1a, 0x19, 0x1e, - 0x15, 0x00, 0x00, 0x01, 0x00, 0x59, 0xff, 0xed, 0x04, 0xa9, 0x04, 0x3a, - 0x00, 0x1d, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x33, 0x11, 0x33, 0x11, - 0x21, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x04, 0x4c, - 0xfc, 0x0d, 0x84, 0xb9, 0x01, 0x6e, 0x20, 0x1f, 0x1e, 0x5a, 0x39, 0x2f, - 0x57, 0x2f, 0x29, 0x11, 0x31, 0x1a, 0x16, 0x25, 0x0e, 0x0e, 0x10, 0x03, - 0xa1, 0x99, 0x99, 0xfc, 0x5f, 0x03, 0xa1, 0xfd, 0x75, 0x54, 0x72, 0x22, - 0x23, 0x1e, 0x13, 0x20, 0x82, 0x09, 0x10, 0x08, 0x0e, 0x0e, 0x33, 0x2c, - 0x02, 0x95, 0x00, 0x02, 0x00, 0xa5, 0xfe, 0x60, 0x04, 0x46, 0x04, 0x4e, - 0x00, 0x1b, 0x00, 0x35, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x46, 0x39, 0x39, 0x3a, 0xaf, 0x75, 0x59, 0x9c, 0x40, 0x44, 0x58, - 0xb9, 0x16, 0x31, 0x1b, 0x30, 0x73, 0x43, 0x66, 0x9b, 0x35, 0x34, 0x36, - 0xb9, 0x20, 0x22, 0x23, 0x6d, 0x4c, 0x33, 0x54, 0x21, 0x22, 0x34, 0x13, - 0x37, 0x34, 0x22, 0x57, 0x34, 0x4d, 0x6a, 0x21, 0x21, 0x1e, 0x01, 0xf4, - 0x15, 0x7e, 0xd4, 0x4e, 0x4d, 0x58, 0x39, 0x3b, 0x3e, 0xc5, 0x95, 0xfc, - 0x1e, 0x02, 0x10, 0x17, 0x28, 0x0f, 0x1a, 0x1c, 0x4e, 0x46, 0x45, 0xbf, - 0x85, 0x15, 0x4b, 0x86, 0x33, 0x33, 0x3b, 0x17, 0x15, 0x14, 0x39, 0x21, - 0x01, 0x25, 0x5a, 0xa0, 0x34, 0x21, 0x26, 0x46, 0x3b, 0x3b, 0x9c, 0x00, - 0x00, 0x01, 0x00, 0x78, 0xfe, 0x59, 0x04, 0x30, 0x04, 0x4e, 0x00, 0x3f, - 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x02, 0x66, 0x77, 0xb7, 0x3f, 0x3f, - 0x42, 0x43, 0x42, 0x41, 0xc4, 0x82, 0x36, 0x52, 0x1c, 0x1b, 0x1d, 0x01, - 0x20, 0x17, 0x18, 0x36, 0x16, 0x4d, 0x2d, 0x5a, 0x25, 0x24, 0x2e, 0x01, - 0x34, 0x31, 0x31, 0x8a, 0x56, 0x5c, 0x88, 0x2c, 0x2d, 0x2b, 0x23, 0x26, - 0x25, 0x75, 0x51, 0x47, 0x6a, 0x23, 0x23, 0x24, 0xaf, 0x45, 0x3c, 0x3d, - 0xa8, 0x04, 0x4e, 0x58, 0x4a, 0x4b, 0xc3, 0x6c, 0x2a, 0x69, 0xaf, 0x42, - 0x43, 0x58, 0x13, 0x07, 0x12, 0x0d, 0x0d, 0x25, 0x1a, 0x28, 0x3c, 0x16, - 0x17, 0x1f, 0x0a, 0x7b, 0x14, 0x3c, 0x28, 0x28, 0x63, 0x3b, 0x42, 0x57, - 0x1c, 0x1c, 0x21, 0x0c, 0x0d, 0x45, 0x31, 0x31, 0x7b, 0x44, 0x2a, 0x46, - 0x8a, 0x38, 0x37, 0x45, 0x26, 0x20, 0x21, 0x58, 0x32, 0x5d, 0x92, 0x33, - 0x32, 0x35, 0x00, 0x02, 0x00, 0x6d, 0xff, 0xec, 0x04, 0x86, 0x04, 0x3a, - 0x00, 0x1c, 0x00, 0x36, 0x00, 0x00, 0x41, 0x35, 0x21, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x04, 0x86, 0xfd, 0xc9, 0x72, 0xb3, 0x3e, 0x3e, 0x41, 0x41, 0x3e, - 0x3e, 0xb4, 0x73, 0x72, 0xb4, 0x3e, 0x3d, 0x41, 0x23, 0x22, 0x19, 0x42, - 0x28, 0xfd, 0xbb, 0x24, 0x25, 0x24, 0x70, 0x4c, 0x4d, 0x71, 0x25, 0x24, - 0x24, 0x23, 0x25, 0x25, 0x70, 0x4c, 0x4d, 0x71, 0x24, 0x25, 0x24, 0x03, - 0xa1, 0x99, 0x52, 0x47, 0x47, 0xc3, 0x70, 0x16, 0x75, 0xc8, 0x4a, 0x4a, - 0x54, 0x56, 0x47, 0x47, 0xb8, 0x63, 0x17, 0x4d, 0x89, 0x39, 0x2a, 0x48, - 0x1e, 0xfe, 0x70, 0x16, 0x4c, 0x89, 0x34, 0x34, 0x3d, 0x3d, 0x34, 0x34, - 0x89, 0x4c, 0x16, 0x50, 0x91, 0x37, 0x37, 0x40, 0x40, 0x37, 0x37, 0x91, - 0x00, 0x01, 0x00, 0xad, 0xff, 0xeb, 0x04, 0x32, 0x04, 0x3a, 0x00, 0x1c, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x13, 0x04, 0x32, 0xfc, 0x7b, 0x01, - 0x68, 0x28, 0x27, 0x26, 0x6f, 0x48, 0x1e, 0x3b, 0x1d, 0x1d, 0x3b, 0x1e, - 0x29, 0x1b, 0x4d, 0x2c, 0x21, 0x3a, 0x16, 0x16, 0x1b, 0x01, 0x03, 0x9c, - 0x9e, 0x9e, 0xfd, 0xb2, 0x65, 0x87, 0x29, 0x2a, 0x24, 0x06, 0x08, 0x07, - 0x1b, 0x16, 0x83, 0x11, 0x1b, 0x0b, 0x13, 0x13, 0x4b, 0x40, 0x02, 0x58, - 0x00, 0x01, 0x00, 0x9e, 0xff, 0xec, 0x04, 0x3f, 0x04, 0x3a, 0x00, 0x24, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, - 0x16, 0x12, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x01, 0x57, 0xb9, 0x3e, 0x3b, 0x3b, 0xab, 0x6e, 0x7e, - 0xb2, 0x38, 0x38, 0x34, 0x12, 0x10, 0x10, 0x29, 0x17, 0xc3, 0x34, 0x45, - 0x03, 0x22, 0x23, 0x24, 0x6e, 0x4d, 0x3c, 0x63, 0x23, 0x23, 0x26, 0x04, - 0x3a, 0xfd, 0x97, 0x7d, 0xb7, 0x3b, 0x3c, 0x3a, 0x60, 0x51, 0x50, 0xd3, - 0x72, 0x52, 0x93, 0x41, 0x41, 0x71, 0x30, 0x7d, 0xfe, 0xfb, 0x86, 0x4e, - 0x9a, 0x3d, 0x3e, 0x4d, 0x25, 0x29, 0x28, 0x7e, 0x59, 0x00, 0x00, 0x02, - 0x00, 0x6e, 0xfe, 0x22, 0x04, 0x77, 0x04, 0x3a, 0x00, 0x2e, 0x00, 0x41, - 0x00, 0x00, 0x45, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x25, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x02, 0x0d, 0xb9, 0x75, - 0xa4, 0x34, 0x34, 0x30, 0x39, 0x32, 0x32, 0x86, 0x4e, 0x40, 0x5e, 0x1e, - 0x1f, 0x1e, 0x3f, 0x58, 0x1b, 0x1b, 0x19, 0x02, 0x13, 0x14, 0x13, 0x3e, - 0x2d, 0x65, 0x37, 0x57, 0x1e, 0x28, 0x27, 0x2d, 0x32, 0x32, 0x9d, 0x01, - 0x2a, 0x0a, 0x0b, 0x07, 0x16, 0x0e, 0x2e, 0x44, 0x17, 0x16, 0x17, 0x02, - 0x1b, 0x1e, 0x1e, 0x5e, 0x0e, 0xfe, 0x30, 0x01, 0xcf, 0x0f, 0x67, 0x4c, - 0x4c, 0xbc, 0x65, 0x70, 0xc5, 0x49, 0x48, 0x54, 0x29, 0x22, 0x23, 0x59, - 0x30, 0xfd, 0x4c, 0x12, 0x53, 0x37, 0x36, 0x80, 0x40, 0x34, 0x6c, 0x35, - 0x34, 0x62, 0x29, 0x85, 0x27, 0x62, 0x38, 0x49, 0xae, 0x60, 0x66, 0xbd, - 0x4b, 0x4c, 0x67, 0x8c, 0x02, 0xbd, 0x17, 0x23, 0x0c, 0x08, 0x09, 0x44, - 0x36, 0x37, 0x8a, 0x46, 0x3f, 0x81, 0x37, 0x38, 0x52, 0x00, 0x00, 0x01, - 0x00, 0x61, 0xfe, 0x28, 0x04, 0x80, 0x04, 0x3a, 0x00, 0x27, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x02, 0x27, 0x23, 0x16, 0x12, 0x17, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x02, 0xbc, 0xb9, 0x35, 0x56, 0x1e, 0x1f, 0x21, - 0xb9, 0x38, 0x36, 0x36, 0x9b, 0x63, 0xb9, 0x7d, 0xac, 0x36, 0x35, 0x30, - 0x2f, 0x20, 0xc3, 0x26, 0x31, 0x02, 0x1d, 0x1f, 0x20, 0x66, 0x49, 0x04, - 0x3a, 0xfc, 0x54, 0x0f, 0x43, 0x38, 0x37, 0x9c, 0x67, 0x01, 0xe8, 0xfe, - 0x1a, 0x8c, 0xd7, 0x4c, 0x4c, 0x58, 0x0e, 0xfe, 0x35, 0x01, 0xc9, 0x0e, - 0x69, 0x4f, 0x4f, 0xc6, 0x6b, 0xa4, 0x01, 0x00, 0x5f, 0x7d, 0xff, 0x00, - 0x86, 0x44, 0x8a, 0x3a, 0x3b, 0x56, 0x12, 0x00, 0x00, 0x01, 0x00, 0x4f, - 0xff, 0xec, 0x04, 0x89, 0x04, 0x3a, 0x00, 0x52, 0x00, 0x00, 0x41, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x16, 0x12, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x11, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x36, 0x12, 0x01, 0x71, 0xc2, - 0x17, 0x26, 0x0d, 0x0b, 0x0b, 0x1e, 0x23, 0x23, 0x72, 0x53, 0x39, 0x5c, - 0x21, 0x13, 0x1f, 0x0c, 0x0c, 0x1e, 0x13, 0x22, 0x5b, 0x3a, 0x38, 0x59, - 0x21, 0x28, 0x32, 0x0c, 0x09, 0x08, 0x0e, 0x0c, 0x0d, 0x24, 0x15, 0xc2, - 0x2d, 0x3a, 0x02, 0x04, 0x05, 0x06, 0x17, 0x10, 0x0d, 0x22, 0x15, 0x1b, - 0x2d, 0x11, 0x10, 0x17, 0x06, 0x04, 0x03, 0xba, 0x04, 0x03, 0x06, 0x18, - 0x11, 0x11, 0x2d, 0x1a, 0x22, 0x2e, 0x0e, 0x0f, 0x0c, 0x02, 0x3a, 0x04, - 0x3a, 0x37, 0x82, 0x4c, 0x3a, 0x83, 0x48, 0x6f, 0xd1, 0x51, 0x51, 0x62, - 0x2d, 0x2b, 0x18, 0x3e, 0x25, 0x25, 0x3e, 0x18, 0x2b, 0x2d, 0x2e, 0x29, - 0x31, 0x89, 0x51, 0x35, 0x73, 0x3a, 0x4f, 0x8e, 0x3e, 0x44, 0x78, 0x33, - 0x7e, 0xfe, 0xfb, 0x87, 0x35, 0x66, 0x2d, 0x36, 0x5b, 0x20, 0x19, 0x1c, - 0x1b, 0x1b, 0x1a, 0x4e, 0x34, 0x1d, 0x41, 0x25, 0x01, 0x2b, 0xfe, 0xd5, - 0x26, 0x44, 0x1d, 0x34, 0x4d, 0x19, 0x1a, 0x1a, 0x47, 0x3c, 0x3c, 0x9b, - 0x54, 0x87, 0x01, 0x05, 0x00, 0x02, 0x00, 0x98, 0xff, 0xec, 0x04, 0x99, - 0x05, 0xc6, 0x00, 0x37, 0x00, 0x4b, 0x00, 0x00, 0x41, 0x27, 0x06, 0x06, - 0x07, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x07, - 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x36, 0x36, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x04, 0x99, 0x09, 0x20, 0x44, 0x23, 0x2e, 0x2b, 0x2b, 0x7e, 0x4f, 0x4a, - 0x7a, 0x2c, 0x2c, 0x32, 0x46, 0x40, 0x3f, 0xb3, 0x6e, 0x1f, 0x1e, 0x1f, - 0x5e, 0x3c, 0x3e, 0x62, 0x22, 0x22, 0x24, 0xba, 0x41, 0x3b, 0x3a, 0xa6, - 0x66, 0x62, 0x9f, 0x38, 0x38, 0x3e, 0x27, 0x48, 0xfd, 0xac, 0x15, 0x13, - 0x13, 0x37, 0x22, 0x27, 0x39, 0x12, 0x13, 0x13, 0x47, 0x70, 0x26, 0x27, - 0x28, 0x02, 0x73, 0x95, 0x08, 0x0d, 0x03, 0x01, 0x61, 0x58, 0x8a, 0x30, - 0x30, 0x33, 0x2f, 0x2d, 0x2d, 0x81, 0x51, 0x0f, 0x64, 0xae, 0x43, 0x44, - 0x5a, 0x10, 0xa6, 0x49, 0x70, 0x25, 0x26, 0x27, 0x01, 0x29, 0x27, 0x26, - 0x6f, 0x45, 0x01, 0x50, 0x02, 0xfe, 0xb2, 0x67, 0xa8, 0x3b, 0x3c, 0x41, - 0x3c, 0x3a, 0x3a, 0xaa, 0x6d, 0xa0, 0x04, 0x10, 0x01, 0xf3, 0x11, 0x32, - 0x47, 0x17, 0x17, 0x16, 0x1a, 0x19, 0x1b, 0x52, 0x37, 0xfe, 0xaa, 0x10, - 0x42, 0x2e, 0x2e, 0x72, 0x00, 0x01, 0x00, 0x36, 0x00, 0x00, 0x04, 0xa4, - 0x05, 0xbb, 0x00, 0x2e, 0x00, 0x00, 0x41, 0x03, 0x07, 0x27, 0x03, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x01, 0x11, 0x33, 0x11, 0x01, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x03, 0x39, 0xb4, 0x18, 0x18, 0xb3, 0x1a, - 0x39, 0x1f, 0x20, 0x46, 0x27, 0x1d, 0x35, 0x1b, 0x17, 0x07, 0x16, 0x0e, - 0x13, 0x23, 0x0f, 0x0d, 0x16, 0x08, 0x01, 0x2a, 0xb8, 0x01, 0x28, 0x06, - 0x10, 0x09, 0x11, 0x29, 0x17, 0x0f, 0x16, 0x07, 0x16, 0x1b, 0x35, 0x1c, - 0x28, 0x46, 0x1f, 0x20, 0x38, 0x04, 0xd7, 0xfe, 0x69, 0x58, 0x58, 0x01, - 0x97, 0x3f, 0x58, 0x1b, 0x1b, 0x17, 0x07, 0x11, 0x95, 0x05, 0x04, 0x0b, - 0x0b, 0x0a, 0x1c, 0x12, 0xfd, 0x77, 0xfd, 0xc0, 0x02, 0x44, 0x02, 0x85, - 0x0e, 0x17, 0x09, 0x10, 0x10, 0x04, 0x05, 0x95, 0x11, 0x07, 0x17, 0x1b, - 0x1b, 0x58, 0x00, 0x02, 0x00, 0x2e, 0xff, 0xec, 0x04, 0x96, 0x04, 0x3a, - 0x00, 0x2b, 0x00, 0x59, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x33, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x23, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x36, 0x36, 0x37, 0x21, 0x16, 0x16, - 0x04, 0x96, 0xfb, 0x98, 0x69, 0x21, 0x29, 0x03, 0x04, 0x09, 0x35, 0x2c, - 0x1f, 0x53, 0x34, 0x39, 0x5a, 0x22, 0x13, 0x1f, 0x0c, 0x0c, 0x22, 0x15, - 0x21, 0x59, 0x37, 0x4e, 0x6b, 0x21, 0x10, 0x18, 0x07, 0x07, 0x07, 0x0a, - 0x0a, 0x0a, 0x1c, 0x10, 0x70, 0x03, 0x03, 0x03, 0x08, 0x05, 0x0c, 0x27, - 0x1d, 0x1a, 0x2c, 0x11, 0x10, 0x17, 0x06, 0x05, 0x04, 0xba, 0x05, 0x04, - 0x06, 0x13, 0x0d, 0x11, 0x30, 0x1d, 0x10, 0x1b, 0x0a, 0x13, 0x15, 0x06, - 0x02, 0x02, 0x02, 0x2f, 0x26, 0x01, 0xf3, 0x26, 0x2f, 0x03, 0xa1, 0x99, - 0x99, 0x6a, 0xfb, 0x8c, 0x1f, 0x3d, 0x1e, 0x52, 0x8a, 0x2c, 0x1f, 0x23, - 0x2c, 0x2b, 0x18, 0x3f, 0x26, 0x28, 0x42, 0x19, 0x28, 0x29, 0x4b, 0x3f, - 0x20, 0x4b, 0x29, 0x27, 0x54, 0x2b, 0x44, 0x82, 0x3c, 0x40, 0x78, 0x37, - 0xfe, 0x0e, 0x22, 0x42, 0x1d, 0x17, 0x29, 0x12, 0x29, 0x31, 0x18, 0x19, - 0x18, 0x49, 0x30, 0x1f, 0x4a, 0x2a, 0xfb, 0xfb, 0x2b, 0x4b, 0x20, 0x29, - 0x41, 0x17, 0x1f, 0x1f, 0x10, 0x0e, 0x18, 0x58, 0x36, 0x18, 0x36, 0x1b, - 0x7c, 0xfd, 0x79, 0x79, 0xfd, 0x00, 0x00, 0x01, 0x00, 0x2a, 0xff, 0xf5, - 0x04, 0x7c, 0x05, 0xb0, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x21, 0x11, 0x33, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x17, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x11, - 0x04, 0x3d, 0xfb, 0xed, 0x01, 0x5b, 0xb8, 0x1e, 0x3c, 0x20, 0x3f, 0x5f, - 0x20, 0x27, 0x25, 0x01, 0x16, 0x18, 0x19, 0x51, 0x3a, 0x02, 0x5b, 0x8f, - 0x31, 0x37, 0x38, 0x3c, 0x3a, 0x3a, 0xa9, 0x6c, 0x1f, 0x3d, 0x1e, 0x05, - 0x18, 0x98, 0x98, 0xfa, 0xe8, 0x02, 0xaf, 0x02, 0x04, 0x22, 0x20, 0x26, - 0x76, 0x4b, 0x3c, 0x61, 0x22, 0x22, 0x25, 0x91, 0x30, 0x2e, 0x33, 0x9e, - 0x68, 0x6a, 0xab, 0x3b, 0x3b, 0x40, 0x04, 0x02, 0x01, 0xc7, 0x00, 0x01, - 0x00, 0x81, 0xff, 0xec, 0x04, 0x6b, 0x05, 0xc5, 0x00, 0x37, 0x00, 0x00, - 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x35, 0x21, 0x35, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x04, 0x6b, 0xb9, 0x0a, - 0x2b, 0x25, 0x26, 0x6d, 0x4b, 0x4f, 0x77, 0x28, 0x29, 0x29, 0x02, 0x3b, - 0xfd, 0xc5, 0x29, 0x29, 0x28, 0x77, 0x4f, 0x4b, 0x6d, 0x25, 0x25, 0x2c, - 0x0a, 0xb9, 0x0a, 0x48, 0x3e, 0x3f, 0xb0, 0x72, 0x75, 0xbb, 0x41, 0x42, - 0x46, 0x46, 0x42, 0x41, 0xbb, 0x75, 0x72, 0xb0, 0x3f, 0x3e, 0x48, 0x01, - 0xb7, 0x4d, 0x73, 0x26, 0x27, 0x27, 0x43, 0x3b, 0x3b, 0xa1, 0x5f, 0x58, - 0x98, 0x4b, 0x5e, 0xa1, 0x3b, 0x3a, 0x43, 0x2a, 0x28, 0x28, 0x76, 0x4b, - 0x6e, 0xad, 0x3c, 0x3c, 0x3f, 0x57, 0x4e, 0x4e, 0xda, 0x83, 0xfe, 0xc7, - 0x83, 0xd9, 0x4e, 0x4f, 0x57, 0x43, 0x3d, 0x3d, 0xa9, 0x00, 0x00, 0x02, - 0x00, 0x1e, 0x00, 0x00, 0x04, 0x9d, 0x05, 0xb0, 0x00, 0x2e, 0x00, 0x3d, - 0x00, 0x00, 0x41, 0x21, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x13, 0x33, 0x11, 0x21, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x23, 0x02, 0xeb, 0xfd, 0xcc, 0x03, 0x03, 0x03, 0x03, - 0x0a, 0x07, 0x07, 0x11, 0x0b, 0x0d, 0x22, 0x14, 0x16, 0x20, 0x38, 0x59, - 0x22, 0x1a, 0x28, 0x0e, 0x0d, 0x11, 0x05, 0x04, 0x04, 0x01, 0xc5, 0x01, - 0x14, 0x54, 0x81, 0x2b, 0x2b, 0x2c, 0x2c, 0x2b, 0x2b, 0x81, 0x54, 0x5b, - 0x5b, 0x2b, 0x3d, 0x13, 0x13, 0x11, 0x11, 0x12, 0x13, 0x3d, 0x2c, 0x5b, - 0x05, 0xb0, 0xfd, 0x54, 0x45, 0x7c, 0x36, 0x3d, 0x68, 0x29, 0x26, 0x3b, - 0x14, 0x19, 0x1a, 0x97, 0x2e, 0x2c, 0x22, 0x62, 0x3c, 0x34, 0x79, 0x45, - 0x38, 0x7d, 0x43, 0x02, 0x14, 0xfa, 0xe8, 0x44, 0x3c, 0x3b, 0xa2, 0x5e, - 0x5e, 0xa2, 0x3c, 0x3b, 0x45, 0x98, 0x32, 0x29, 0x29, 0x68, 0x36, 0x37, - 0x69, 0x29, 0x2a, 0x33, 0x00, 0x02, 0x00, 0x83, 0x00, 0x00, 0x04, 0x8b, - 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x73, 0x33, 0x11, 0x33, - 0x11, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, - 0x83, 0xb8, 0xfa, 0xe9, 0x5b, 0x89, 0x2e, 0x2d, 0x2e, 0x2e, 0x2d, 0x2e, - 0x89, 0x5b, 0x31, 0xb8, 0xfa, 0xb8, 0x02, 0x6a, 0x31, 0x33, 0x45, 0x15, - 0x15, 0x13, 0x12, 0x15, 0x16, 0x45, 0x33, 0x31, 0x02, 0xa1, 0xfd, 0x5f, - 0x41, 0x39, 0x39, 0x9b, 0x5a, 0x5a, 0x98, 0x38, 0x37, 0x3e, 0x02, 0x69, - 0xfd, 0x89, 0x02, 0x77, 0xfc, 0xff, 0x2c, 0x24, 0x24, 0x5e, 0x33, 0x33, - 0x5f, 0x25, 0x25, 0x2d, 0x00, 0x01, 0x00, 0x43, 0x00, 0x00, 0x04, 0x68, - 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, - 0x33, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, - 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x26, 0x06, 0x07, 0x11, - 0x04, 0x40, 0xfc, 0x03, 0x01, 0x5a, 0xb9, 0x1a, 0x36, 0x1c, 0x3d, 0x59, - 0x1e, 0x1d, 0x1c, 0xb9, 0x3a, 0x36, 0x36, 0x9d, 0x63, 0x1a, 0x36, 0x1c, - 0x05, 0x18, 0x98, 0x98, 0xfa, 0xe8, 0x02, 0xbd, 0x03, 0x03, 0x1b, 0x1e, - 0x1e, 0x5f, 0x44, 0xfe, 0x37, 0x01, 0xc9, 0x6a, 0x98, 0x31, 0x31, 0x2e, - 0x01, 0x04, 0x04, 0x01, 0xc4, 0x00, 0x00, 0x01, 0x00, 0xa2, 0xfe, 0x99, - 0x04, 0x2a, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0xa2, 0x01, 0x6c, 0xb9, - 0x01, 0x63, 0xb9, 0xfd, 0xea, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0x99, 0x01, - 0x67, 0x05, 0xb0, 0xfa, 0xe7, 0x05, 0x19, 0x00, 0x00, 0x02, 0x00, 0xa2, - 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb0, 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x11, 0x11, 0x21, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, 0x04, 0x1d, - 0xfc, 0x85, 0x01, 0xc4, 0x74, 0xb5, 0x3e, 0x3e, 0x41, 0x41, 0x3e, 0x3e, - 0xb5, 0x74, 0xfe, 0xf6, 0x01, 0x0a, 0x4e, 0x71, 0x25, 0x25, 0x23, 0x23, - 0x25, 0x25, 0x71, 0x4e, 0xfe, 0xf6, 0x05, 0x18, 0x98, 0xfa, 0x50, 0x3f, - 0x39, 0x39, 0xa0, 0x60, 0x61, 0x9c, 0x38, 0x37, 0x3c, 0x01, 0xbf, 0xfd, - 0xaa, 0x2b, 0x24, 0x25, 0x63, 0x38, 0x39, 0x67, 0x27, 0x27, 0x2e, 0x00, - 0x00, 0x02, 0x00, 0x46, 0xfe, 0x99, 0x04, 0x78, 0x05, 0xb0, 0x00, 0x14, - 0x00, 0x21, 0x00, 0x00, 0x41, 0x13, 0x23, 0x11, 0x21, 0x03, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x13, 0x33, 0x11, 0x21, - 0x11, 0x01, 0x13, 0x21, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x04, 0x66, 0x12, 0x7f, 0xfd, 0x77, 0x20, 0x02, 0x09, 0x07, - 0x08, 0x15, 0x0d, 0x19, 0x46, 0x2e, 0x41, 0x1b, 0x9d, 0x02, 0xc1, 0xfe, - 0x4c, 0x16, 0x01, 0x1f, 0xfe, 0x40, 0x1a, 0x2a, 0x10, 0x0f, 0x15, 0x07, - 0x04, 0x06, 0xfe, 0x9b, 0x01, 0xfc, 0x05, 0x19, 0xfd, 0xb7, 0x4b, 0x84, - 0x39, 0x42, 0x71, 0x2e, 0x58, 0x71, 0x1e, 0xfe, 0x02, 0x01, 0x67, 0xfe, - 0x9b, 0x04, 0xcc, 0x01, 0xb1, 0xfb, 0x7f, 0x2f, 0x76, 0x46, 0x3e, 0x91, - 0x50, 0x2e, 0x64, 0x00, 0x00, 0x01, 0x00, 0x1d, 0x00, 0x00, 0x04, 0xae, - 0x05, 0xb0, 0x00, 0x15, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, 0x13, 0x23, - 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, 0x03, 0x23, 0x13, 0x01, 0x33, 0x13, - 0x33, 0x11, 0x33, 0x11, 0x02, 0xfb, 0xce, 0xe5, 0xfe, 0xf2, 0xe8, 0xd8, - 0xad, 0x3e, 0xb7, 0x45, 0xae, 0xd7, 0xe6, 0xfe, 0xf3, 0xe6, 0xcd, 0x3e, - 0xb7, 0x02, 0x8b, 0xfd, 0x75, 0x02, 0xd9, 0x02, 0xd7, 0xfd, 0x73, 0x02, - 0x8d, 0xfd, 0x73, 0x02, 0x8d, 0xfd, 0x27, 0xfd, 0x29, 0x02, 0x8b, 0xfd, - 0x75, 0x02, 0x8b, 0x00, 0x00, 0x01, 0x00, 0x59, 0xff, 0xeb, 0x04, 0x70, - 0x05, 0xc4, 0x00, 0x52, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x59, 0x5a, 0x48, 0x48, 0xb7, 0x5f, 0x73, - 0xc4, 0x48, 0x47, 0x51, 0x30, 0x2e, 0x20, 0x53, 0x33, 0x27, 0x43, 0x1b, - 0x32, 0x36, 0x01, 0x4a, 0x43, 0x44, 0xbd, 0x73, 0x63, 0xb2, 0x43, 0x44, - 0x4f, 0xb9, 0x31, 0x29, 0x29, 0x70, 0x3f, 0x52, 0x7a, 0x29, 0x29, 0x29, - 0x21, 0x21, 0x12, 0x2f, 0x1c, 0x20, 0x4d, 0x2d, 0xb7, 0xb7, 0x33, 0x59, - 0x24, 0x26, 0x3a, 0x15, 0x15, 0x15, 0x30, 0x2d, 0x2e, 0x81, 0x51, 0x48, - 0x78, 0x2b, 0x2b, 0x30, 0x01, 0x94, 0x6f, 0xa1, 0x34, 0x34, 0x31, 0x38, - 0x37, 0x36, 0x9f, 0x67, 0x4d, 0x7a, 0x2e, 0x1f, 0x30, 0x11, 0x11, 0x2b, - 0x19, 0x2e, 0x75, 0x43, 0x66, 0x9c, 0x34, 0x34, 0x34, 0x38, 0x33, 0x34, - 0x95, 0x5d, 0x36, 0x5c, 0x22, 0x21, 0x25, 0x28, 0x23, 0x23, 0x5e, 0x37, - 0x34, 0x57, 0x1f, 0x12, 0x1b, 0x0a, 0x0b, 0x0b, 0x01, 0x98, 0x0d, 0x0d, - 0x0d, 0x29, 0x1e, 0x1d, 0x4d, 0x30, 0x3c, 0x64, 0x24, 0x24, 0x28, 0x2b, - 0x25, 0x25, 0x64, 0x39, 0x00, 0x01, 0x00, 0xa2, 0x00, 0x00, 0x04, 0x2a, - 0x05, 0xb0, 0x00, 0x09, 0x00, 0x00, 0x41, 0x01, 0x13, 0x23, 0x11, 0x33, - 0x01, 0x03, 0x33, 0x11, 0x03, 0x71, 0xfd, 0xe9, 0x01, 0xb9, 0xb9, 0x02, - 0x17, 0x01, 0xb9, 0x05, 0xb0, 0xfb, 0xd0, 0x04, 0x30, 0xfa, 0x50, 0x04, - 0x31, 0xfb, 0xcf, 0x05, 0xb0, 0x00, 0x00, 0x01, 0x00, 0x2f, 0x00, 0x00, - 0x04, 0x2b, 0x05, 0xb0, 0x00, 0x1e, 0x00, 0x00, 0x41, 0x21, 0x03, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x13, - 0x21, 0x11, 0x33, 0x04, 0x2b, 0xfc, 0xeb, 0x04, 0x03, 0x03, 0x05, 0x16, - 0x11, 0x16, 0x44, 0x2f, 0x28, 0x33, 0x39, 0x5e, 0x26, 0x2c, 0x41, 0x15, - 0x0f, 0x12, 0x05, 0x02, 0x02, 0x02, 0x01, 0xa5, 0xb9, 0x05, 0xb0, 0xfc, - 0xf8, 0x31, 0x59, 0x28, 0x4b, 0x78, 0x2b, 0x38, 0x39, 0x97, 0x1e, 0x1d, - 0x24, 0x6f, 0x4c, 0x37, 0x83, 0x4a, 0x21, 0x45, 0x24, 0x02, 0x70, 0xfa, - 0xe8, 0x00, 0x00, 0x01, 0x00, 0x2b, 0xff, 0xeb, 0x04, 0xb5, 0x05, 0xb0, - 0x00, 0x1b, 0x00, 0x00, 0x77, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x01, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x67, 0x1a, 0x69, 0x44, - 0x53, 0x77, 0x2a, 0x2a, 0x3b, 0x17, 0x02, 0x17, 0xd7, 0xfe, 0xe0, 0x48, - 0x47, 0xfe, 0xcc, 0xd0, 0x01, 0xf2, 0x2a, 0x0d, 0x24, 0x1a, 0x1a, 0x46, - 0x2e, 0x27, 0x5a, 0x1a, 0x0e, 0x0b, 0x18, 0x2a, 0x24, 0x24, 0x5f, 0x34, - 0x04, 0xc0, 0xfd, 0x3b, 0xb3, 0xbf, 0x02, 0xb9, 0xfb, 0xc2, 0x55, 0x1c, - 0x38, 0x16, 0x16, 0x1b, 0x12, 0x07, 0x00, 0x01, 0x00, 0xa6, 0xfe, 0xa1, - 0x04, 0xb4, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x11, 0x21, 0x11, - 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0xa6, 0x03, 0x56, 0xa6, - 0x12, 0x93, 0xb9, 0xfd, 0xf7, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0xa1, 0x01, - 0xfb, 0x05, 0x14, 0xfa, 0xe7, 0x05, 0x19, 0x00, 0x00, 0x01, 0x00, 0xab, - 0x00, 0x00, 0x04, 0x27, 0x05, 0xb0, 0x00, 0x19, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, - 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x11, 0x33, - 0x04, 0x27, 0xb9, 0x48, 0x90, 0x53, 0x39, 0x54, 0x1b, 0x1c, 0x1b, 0xb9, - 0x37, 0x34, 0x34, 0x98, 0x61, 0x5f, 0x89, 0x43, 0xb9, 0x05, 0xb0, 0xfd, - 0x45, 0x18, 0x1d, 0x1d, 0x23, 0x22, 0x71, 0x55, 0x01, 0xc8, 0xfe, 0x38, - 0x79, 0xaa, 0x36, 0x36, 0x31, 0x1b, 0x18, 0xfd, 0xa5, 0x00, 0x00, 0x01, - 0x00, 0x7d, 0x00, 0x00, 0x04, 0x50, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, - 0x01, 0x36, 0xb9, 0x03, 0xd3, 0xb8, 0xd5, 0xb8, 0xd5, 0x05, 0xb0, 0xfa, - 0x50, 0x05, 0xb0, 0xfa, 0xe7, 0x05, 0x19, 0xfa, 0xe7, 0x00, 0x00, 0x01, - 0x00, 0x7d, 0xfe, 0xa1, 0x04, 0xaa, 0x05, 0xb0, 0x00, 0x0f, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, 0x23, - 0x11, 0x23, 0x11, 0x23, 0x01, 0x36, 0xb9, 0x03, 0x76, 0xa5, 0x12, 0x5a, - 0xb8, 0xd5, 0xb8, 0xd5, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0xa1, 0x01, 0xf7, - 0x05, 0x18, 0xfa, 0xe7, 0x05, 0x19, 0xfa, 0xe7, 0x00, 0x02, 0x00, 0x32, - 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, - 0x53, 0x15, 0x21, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x11, 0x11, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x32, 0x01, - 0x31, 0x01, 0x49, 0x6f, 0xac, 0x3b, 0x3a, 0x3d, 0x3d, 0x3a, 0x3b, 0xac, - 0x6f, 0x90, 0x90, 0x49, 0x68, 0x22, 0x21, 0x1f, 0x1f, 0x21, 0x22, 0x68, - 0x49, 0x90, 0x05, 0xb0, 0x98, 0xfa, 0xe8, 0x40, 0x3a, 0x39, 0x9f, 0x5f, - 0x60, 0x9c, 0x38, 0x37, 0x3d, 0x02, 0x57, 0xfd, 0x12, 0x2b, 0x25, 0x25, - 0x63, 0x37, 0x38, 0x67, 0x27, 0x27, 0x2f, 0x00, 0x00, 0x03, 0x00, 0x90, - 0x00, 0x00, 0x04, 0x4b, 0x05, 0xb0, 0x00, 0x10, 0x00, 0x14, 0x00, 0x23, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x01, 0x11, 0x23, 0x11, 0x01, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x23, 0x01, 0x49, 0xb9, 0x01, 0x15, 0x5f, 0x91, 0x32, 0x31, 0x32, - 0x32, 0x31, 0x32, 0x91, 0x5f, 0x02, 0xa6, 0xb9, 0xfd, 0xb7, 0x5c, 0x37, - 0x4d, 0x19, 0x18, 0x16, 0x16, 0x18, 0x18, 0x4e, 0x37, 0x5c, 0x03, 0x59, - 0x02, 0x57, 0xfa, 0x50, 0x40, 0x3a, 0x39, 0x9f, 0x5f, 0x5f, 0x9d, 0x38, - 0x37, 0x3d, 0xfc, 0xa7, 0x05, 0xb0, 0xfa, 0x50, 0x02, 0xc2, 0x2c, 0x25, - 0x25, 0x62, 0x37, 0x38, 0x66, 0x27, 0x28, 0x2f, 0x00, 0x02, 0x00, 0xa8, - 0x00, 0x00, 0x04, 0x51, 0x05, 0xb0, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x05, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, 0x01, 0x61, 0xb9, 0x01, - 0xc3, 0x74, 0xb5, 0x3e, 0x3e, 0x41, 0x41, 0x3e, 0x3e, 0xb5, 0x74, 0xfe, - 0xf6, 0x01, 0x0a, 0x4e, 0x71, 0x25, 0x25, 0x23, 0x23, 0x25, 0x25, 0x71, - 0x4e, 0xfe, 0xf6, 0x03, 0x59, 0x02, 0x57, 0xfa, 0x50, 0x3f, 0x39, 0x39, - 0xa0, 0x60, 0x61, 0x9c, 0x38, 0x37, 0x3c, 0x97, 0x2b, 0x24, 0x25, 0x63, - 0x38, 0x39, 0x67, 0x27, 0x27, 0x2e, 0x00, 0x01, 0x00, 0x72, 0xff, 0xec, - 0x04, 0x53, 0x05, 0xc5, 0x00, 0x37, 0x00, 0x00, 0x41, 0x23, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x21, 0x15, 0x21, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x2b, 0xb9, 0x01, 0x43, 0x3f, 0x3e, 0xb0, - 0x6e, 0x75, 0xbe, 0x43, 0x43, 0x49, 0x49, 0x43, 0x43, 0xbe, 0x75, 0x6e, - 0xb0, 0x3e, 0x3f, 0x43, 0x01, 0xb9, 0x01, 0x27, 0x25, 0x25, 0x6d, 0x47, - 0x4f, 0x7a, 0x2a, 0x2a, 0x2c, 0xfe, 0x1c, 0x01, 0xe4, 0x2d, 0x2a, 0x2a, - 0x7a, 0x4e, 0x47, 0x6d, 0x25, 0x25, 0x27, 0x01, 0xd1, 0x6e, 0xb3, 0x3f, - 0x40, 0x45, 0x54, 0x4d, 0x4c, 0xd6, 0x83, 0x01, 0x4c, 0x83, 0xd7, 0x4d, - 0x4c, 0x54, 0x4c, 0x42, 0x42, 0xb2, 0x65, 0x4c, 0x7d, 0x2c, 0x2b, 0x30, - 0x40, 0x39, 0x39, 0x9f, 0x5e, 0x5d, 0x97, 0x5a, 0x5e, 0x9e, 0x39, 0x39, - 0x40, 0x30, 0x2c, 0x2b, 0x7b, 0x00, 0x00, 0x02, 0x00, 0x77, 0xff, 0xec, - 0x04, 0x6a, 0x05, 0xc4, 0x00, 0x21, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x11, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x15, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x11, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x6a, - 0x2e, 0x2e, 0x2e, 0x89, 0x5b, 0x56, 0x82, 0x2b, 0x2c, 0x2b, 0x72, 0xb9, - 0xb9, 0x72, 0x2c, 0x2c, 0x2b, 0x82, 0x56, 0x5a, 0x89, 0x2e, 0x2e, 0x2e, - 0xb9, 0x13, 0x15, 0x15, 0x45, 0x32, 0x2e, 0x3e, 0x13, 0x13, 0x10, 0x10, - 0x13, 0x13, 0x3e, 0x2d, 0x2b, 0x40, 0x15, 0x1c, 0x19, 0x02, 0x03, 0x01, - 0xa9, 0x7f, 0xc7, 0x45, 0x45, 0x48, 0x48, 0x45, 0x45, 0xc7, 0x7f, 0x98, - 0x02, 0x9c, 0xfa, 0x50, 0x02, 0x7d, 0x7a, 0x7f, 0xc7, 0x44, 0x45, 0x48, - 0x48, 0x45, 0x44, 0xc7, 0x02, 0x2a, 0xfe, 0x55, 0x5f, 0x8e, 0x2f, 0x2f, - 0x2f, 0x2f, 0x2f, 0x2f, 0x8e, 0x5f, 0x01, 0xab, 0x5e, 0x8d, 0x2f, 0x2f, - 0x2f, 0x23, 0x22, 0x2e, 0x9a, 0x00, 0x00, 0x02, 0x00, 0x41, 0x00, 0x00, - 0x04, 0x26, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x22, 0x00, 0x00, 0x61, 0x33, - 0x11, 0x21, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x01, 0x33, 0x01, 0x21, 0x01, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x11, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x03, 0x6d, 0xb9, - 0xfe, 0x4e, 0x75, 0xbd, 0x42, 0x43, 0x47, 0x33, 0x32, 0x23, 0x5e, 0x3a, - 0xfe, 0xab, 0xc5, 0x01, 0x31, 0x01, 0x36, 0xfd, 0xc2, 0x2a, 0x29, 0x29, - 0x79, 0x50, 0xf9, 0xff, 0x4e, 0x78, 0x28, 0x28, 0x29, 0x05, 0xb0, 0x38, - 0x35, 0x36, 0x9d, 0x64, 0x52, 0x84, 0x33, 0x23, 0x39, 0x15, 0xfd, 0x6e, - 0x02, 0x5f, 0x01, 0xaf, 0x3d, 0x63, 0x23, 0x22, 0x25, 0xfd, 0xe0, 0x2a, - 0x26, 0x25, 0x66, 0x00, 0x00, 0x02, 0x00, 0x81, 0xff, 0xec, 0x04, 0x47, - 0x06, 0x11, 0x00, 0x35, 0x00, 0x4f, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x23, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x07, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x02, 0x86, 0x38, 0x66, 0x2d, 0x2d, 0x4e, 0x20, - 0x0f, 0x42, 0x30, 0x30, 0x7a, 0x46, 0x63, 0x6d, 0x2d, 0x33, 0x39, 0x98, - 0x26, 0x21, 0x22, 0x5b, 0x35, 0x6f, 0xb5, 0x3f, 0x1f, 0x30, 0x11, 0x12, - 0x13, 0x42, 0x3e, 0x3e, 0xb4, 0x72, 0x72, 0xb3, 0x3e, 0x3e, 0x41, 0x3d, - 0x3a, 0x3a, 0xa6, 0x8d, 0x4c, 0x71, 0x25, 0x25, 0x24, 0x24, 0x25, 0x25, - 0x6f, 0x4c, 0x4d, 0x71, 0x24, 0x25, 0x24, 0x24, 0x25, 0x24, 0x70, 0x03, - 0xfc, 0x19, 0x16, 0x17, 0x3f, 0x25, 0x5c, 0x83, 0x2d, 0x2d, 0x35, 0x0f, - 0x15, 0x1e, 0x1e, 0x22, 0x72, 0x5d, 0x29, 0x35, 0x11, 0x12, 0x17, 0x0a, - 0x15, 0x73, 0x60, 0x2f, 0x70, 0x41, 0x46, 0xa5, 0x5e, 0x63, 0x71, 0xc0, - 0x47, 0x47, 0x50, 0x50, 0x47, 0x47, 0xc0, 0x71, 0x17, 0x69, 0xb3, 0x42, - 0x41, 0x4b, 0x98, 0x37, 0x2e, 0x2f, 0x7a, 0x44, 0x17, 0x4c, 0x89, 0x33, - 0x34, 0x3d, 0x3d, 0x34, 0x33, 0x89, 0x4c, 0x17, 0x44, 0x7a, 0x2f, 0x2e, - 0x37, 0x00, 0x00, 0x03, 0x00, 0xa4, 0x00, 0x00, 0x04, 0x30, 0x04, 0x3a, - 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x39, 0x00, 0x00, 0x73, 0x21, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x27, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, - 0x13, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x21, 0x11, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0xa4, 0x01, 0xee, 0x5f, 0x99, 0x36, - 0x36, 0x3a, 0x1c, 0x1b, 0x1b, 0x4b, 0x32, 0x08, 0x1f, 0x34, 0x14, 0x24, - 0x25, 0x3f, 0x3a, 0x3b, 0xa4, 0x64, 0xfe, 0x57, 0xba, 0x01, 0x34, 0x38, - 0x56, 0x1d, 0x1c, 0x1d, 0x1a, 0x19, 0x1d, 0x59, 0x3b, 0xfe, 0xcc, 0xef, - 0x3d, 0x61, 0x20, 0x22, 0x23, 0x16, 0x14, 0x20, 0x6c, 0x4b, 0x26, 0x27, - 0x26, 0x73, 0x4d, 0x2c, 0x50, 0x21, 0x20, 0x2f, 0x0d, 0x02, 0x0c, 0x1e, - 0x13, 0x20, 0x55, 0x31, 0x4d, 0x70, 0x24, 0x24, 0x24, 0xfd, 0xa1, 0x16, - 0x15, 0x14, 0x3c, 0x27, 0x26, 0x3b, 0x14, 0x17, 0x18, 0x01, 0xda, 0x01, - 0x35, 0x12, 0x13, 0x13, 0x3c, 0x29, 0x1f, 0x31, 0x12, 0x1c, 0x1a, 0x00, - 0x00, 0x01, 0x00, 0xb7, 0x00, 0x00, 0x04, 0x2a, 0x04, 0x3a, 0x00, 0x05, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x33, 0x11, 0x04, 0x2a, 0xfc, 0x8d, - 0xba, 0x03, 0xa1, 0x99, 0xfb, 0xc6, 0x03, 0xa1, 0x00, 0x02, 0x00, 0x36, - 0xfe, 0xc2, 0x04, 0x9a, 0x04, 0x3a, 0x00, 0x11, 0x00, 0x1b, 0x00, 0x00, - 0x77, 0x23, 0x13, 0x33, 0x11, 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x21, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x37, 0x21, 0x11, 0x21, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x9c, 0x66, 0x12, 0xa6, 0x02, 0xf3, 0xa7, 0x12, - 0x8b, 0xfd, 0x47, 0x10, 0x07, 0x17, 0x13, 0x13, 0x3b, 0x01, 0x38, 0x09, - 0x01, 0x4e, 0xfe, 0x46, 0x18, 0x21, 0x0b, 0x0b, 0x0f, 0x97, 0xfe, 0x2b, - 0x01, 0x3e, 0xfe, 0xc2, 0x01, 0xd5, 0x03, 0xa3, 0xfe, 0x6a, 0x74, 0xbc, - 0x44, 0x44, 0x4f, 0x02, 0x07, 0xeb, 0xfd, 0x08, 0x2c, 0x70, 0x43, 0x42, - 0x98, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x04, 0xac, 0x04, 0x3a, - 0x00, 0x15, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, 0x01, 0x23, 0x03, 0x23, - 0x11, 0x23, 0x11, 0x23, 0x03, 0x23, 0x01, 0x01, 0x33, 0x13, 0x33, 0x11, - 0x33, 0x11, 0x02, 0xf5, 0xd7, 0xe0, 0xfe, 0xd6, 0x01, 0x08, 0xd6, 0xbe, - 0x3b, 0xb9, 0x3b, 0xbd, 0xd6, 0x01, 0x06, 0xfe, 0xd7, 0xdf, 0xd7, 0x3b, - 0xb9, 0x01, 0xd6, 0xfe, 0x2a, 0x02, 0x33, 0x02, 0x07, 0xfe, 0x40, 0x01, - 0xc0, 0xfe, 0x40, 0x01, 0xc0, 0xfd, 0xf9, 0xfd, 0xcd, 0x01, 0xd6, 0xfe, - 0x2a, 0x01, 0xd6, 0x00, 0x00, 0x01, 0x00, 0x87, 0xff, 0xed, 0x04, 0x4a, - 0x04, 0x4d, 0x00, 0x52, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x87, 0x4b, 0x3b, 0x46, 0xbc, 0x62, 0x64, - 0xac, 0x40, 0x40, 0x49, 0x23, 0x21, 0x1c, 0x4b, 0x2f, 0x21, 0x3a, 0x16, - 0x28, 0x2c, 0x42, 0x3c, 0x3c, 0xa6, 0x64, 0x5f, 0xab, 0x40, 0x41, 0x4d, - 0x01, 0xb9, 0x2f, 0x28, 0x27, 0x68, 0x3a, 0x41, 0x64, 0x22, 0x21, 0x23, - 0x1a, 0x19, 0x12, 0x2f, 0x1d, 0x17, 0x38, 0x20, 0xf1, 0xf1, 0x1f, 0x3a, - 0x19, 0x19, 0x2c, 0x12, 0x24, 0x26, 0x29, 0x25, 0x26, 0x6a, 0x40, 0x41, - 0x70, 0x29, 0x29, 0x2e, 0x01, 0x40, 0x51, 0x7b, 0x28, 0x31, 0x2e, 0x2a, - 0x2a, 0x29, 0x78, 0x4e, 0x34, 0x55, 0x21, 0x1b, 0x29, 0x0e, 0x0d, 0x21, - 0x13, 0x22, 0x54, 0x30, 0x4e, 0x75, 0x28, 0x27, 0x28, 0x2c, 0x29, 0x2a, - 0x77, 0x4b, 0x25, 0x3f, 0x17, 0x16, 0x1a, 0x1a, 0x16, 0x17, 0x3c, 0x22, - 0x22, 0x36, 0x13, 0x0d, 0x14, 0x06, 0x05, 0x05, 0x9c, 0x04, 0x05, 0x05, - 0x0e, 0x0a, 0x15, 0x41, 0x2e, 0x25, 0x40, 0x18, 0x18, 0x1b, 0x1f, 0x1b, - 0x1a, 0x45, 0x27, 0x00, 0x00, 0x01, 0x00, 0xa5, 0x00, 0x00, 0x04, 0x27, - 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, 0x41, 0x01, 0x11, 0x23, 0x11, 0x33, - 0x01, 0x11, 0x33, 0x11, 0x03, 0x6e, 0xfd, 0xef, 0xb8, 0xb8, 0x02, 0x11, - 0xb9, 0x04, 0x3a, 0xfc, 0xe1, 0x03, 0x1f, 0xfb, 0xc6, 0x03, 0x1e, 0xfc, - 0xe2, 0x04, 0x3a, 0x00, 0x00, 0x01, 0x00, 0xa4, 0x00, 0x00, 0x04, 0x95, - 0x04, 0x3a, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, - 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x0d, 0x01, 0x9d, 0xeb, - 0xfe, 0x0c, 0x01, 0xd0, 0xe1, 0xfe, 0x6d, 0xa0, 0xb9, 0xb9, 0x01, 0xcd, - 0xfe, 0x33, 0x02, 0x31, 0x02, 0x09, 0xfe, 0x36, 0x01, 0xca, 0xfb, 0xc6, - 0x01, 0xcd, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x04, 0x26, 0x04, 0x3a, - 0x00, 0x1b, 0x00, 0x00, 0x41, 0x21, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x07, 0x07, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x13, 0x21, 0x11, 0x33, 0x04, 0x26, 0xfc, 0xff, - 0x02, 0x03, 0x03, 0x05, 0x10, 0x0b, 0x16, 0x4b, 0x39, 0x29, 0x03, 0x36, - 0x6a, 0x8e, 0x2a, 0x1a, 0x22, 0x08, 0x05, 0x05, 0x01, 0x01, 0x8e, 0xba, - 0x04, 0x3a, 0xfe, 0x31, 0x32, 0x59, 0x27, 0x31, 0x51, 0x1f, 0x39, 0x39, - 0x01, 0xa5, 0x53, 0x4f, 0x31, 0x80, 0x4c, 0x2e, 0x67, 0x37, 0x01, 0x36, - 0xfc, 0x5f, 0x00, 0x01, 0x00, 0x89, 0x00, 0x00, 0x04, 0x29, 0x04, 0x3a, - 0x00, 0x0c, 0x00, 0x00, 0x65, 0x03, 0x23, 0x11, 0x33, 0x11, 0x13, 0x33, - 0x13, 0x11, 0x33, 0x11, 0x23, 0x02, 0x5c, 0xe4, 0xef, 0xb9, 0xda, 0x80, - 0xd4, 0xb9, 0xe7, 0xf5, 0x03, 0x45, 0xfb, 0xc6, 0x02, 0xb3, 0xfd, 0x4d, - 0x02, 0x9b, 0xfd, 0x65, 0x04, 0x3a, 0x00, 0x01, 0x00, 0xa5, 0x00, 0x00, - 0x04, 0x27, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x04, 0x27, 0xb9, 0xfd, - 0xf0, 0xb9, 0xb9, 0x02, 0x10, 0x04, 0x3a, 0xfe, 0x2b, 0x01, 0xd5, 0xfb, - 0xc6, 0x01, 0xce, 0xfe, 0x32, 0x00, 0x00, 0x01, 0x00, 0xa5, 0x00, 0x00, - 0x04, 0x27, 0x04, 0x3a, 0x00, 0x07, 0x00, 0x00, 0x61, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x04, 0x27, 0xfc, 0x7e, 0xb9, 0x02, 0x10, 0x04, - 0x3a, 0xfb, 0xc6, 0x03, 0xa1, 0xfc, 0x5f, 0x00, 0x00, 0x01, 0x00, 0x68, - 0x00, 0x00, 0x04, 0x7b, 0x04, 0x3a, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x7b, 0xfb, 0xed, 0x01, 0xa9, - 0xba, 0x03, 0xa4, 0x96, 0x96, 0xfc, 0x5c, 0x03, 0xa4, 0x00, 0x00, 0x03, - 0x00, 0x7a, 0xfe, 0x60, 0x04, 0x52, 0x06, 0x00, 0x00, 0x1f, 0x00, 0x2d, - 0x00, 0x3b, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x25, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x7a, 0x36, 0x34, 0x33, 0x94, 0x5d, 0xb9, 0x5e, - 0x95, 0x34, 0x33, 0x37, 0x36, 0x34, 0x34, 0x95, 0x5e, 0xb9, 0x5d, 0x94, - 0x33, 0x34, 0x36, 0xb9, 0x1b, 0x1b, 0x1a, 0x50, 0x35, 0x36, 0x50, 0x1a, - 0x1b, 0x1a, 0x02, 0x66, 0x1b, 0x1b, 0x1b, 0x51, 0x36, 0x36, 0x51, 0x1b, - 0x1b, 0x1b, 0x02, 0x27, 0x16, 0x68, 0xb7, 0x47, 0x47, 0x5f, 0x10, 0xfe, - 0x6b, 0x01, 0x94, 0x0f, 0x5f, 0x48, 0x47, 0xb7, 0x69, 0x16, 0x68, 0xb8, - 0x48, 0x47, 0x60, 0x10, 0x01, 0xba, 0xfe, 0x46, 0x11, 0x5f, 0x47, 0x48, - 0xb8, 0x7e, 0x16, 0x42, 0x7b, 0x33, 0x33, 0x4b, 0x12, 0xfc, 0xea, 0x12, - 0x4a, 0x33, 0x33, 0x7b, 0x59, 0x16, 0x44, 0x7c, 0x33, 0x33, 0x4a, 0x12, - 0x03, 0x18, 0x12, 0x4a, 0x33, 0x33, 0x7c, 0x00, 0x00, 0x01, 0x00, 0xaa, - 0xfe, 0xbf, 0x04, 0x90, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x11, - 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0xaa, 0x03, - 0x2e, 0xa6, 0x12, 0x81, 0xba, 0xfe, 0x0e, 0x04, 0x3a, 0xfb, 0xc6, 0xfe, - 0xbf, 0x01, 0xd8, 0x03, 0xa3, 0xfc, 0x5d, 0x03, 0xa3, 0x00, 0x00, 0x01, - 0x00, 0x8d, 0x00, 0x00, 0x04, 0x27, 0x04, 0x3a, 0x00, 0x1c, 0x00, 0x00, - 0x61, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x11, 0x04, 0x27, 0xb9, 0x1e, 0x3d, 0x1f, 0x2a, - 0x58, 0x2e, 0x41, 0x64, 0x20, 0x1b, 0x1e, 0xb9, 0x3e, 0x3a, 0x39, 0xa2, - 0x64, 0x55, 0x91, 0x44, 0x04, 0x3a, 0xfd, 0xe9, 0x07, 0x0c, 0x04, 0x06, - 0x06, 0x22, 0x24, 0x1f, 0x5c, 0x3e, 0x01, 0x3b, 0xfe, 0xc5, 0x67, 0x99, - 0x32, 0x33, 0x32, 0x12, 0x11, 0xfe, 0x75, 0x00, 0x00, 0x01, 0x00, 0x81, - 0x00, 0x00, 0x04, 0x4c, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x3a, - 0xb9, 0x03, 0xcb, 0xb9, 0xd0, 0xb9, 0xd0, 0x04, 0x3a, 0xfb, 0xc6, 0x04, - 0x3a, 0xfc, 0x5d, 0x03, 0xa3, 0xfc, 0x5d, 0x00, 0x00, 0x01, 0x00, 0x76, - 0xfe, 0xbf, 0x04, 0x98, 0x04, 0x3a, 0x00, 0x0f, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, 0x07, 0x11, 0x23, - 0x11, 0x23, 0x01, 0x2f, 0xb9, 0x03, 0x6b, 0xa5, 0x12, 0x57, 0xb9, 0xd0, - 0xb9, 0xd0, 0x04, 0x3a, 0xfb, 0xc6, 0xfe, 0xbf, 0x01, 0xd9, 0x03, 0xa2, - 0xfc, 0x5e, 0x01, 0x03, 0xa3, 0xfc, 0x5d, 0x00, 0x00, 0x02, 0x00, 0x39, - 0x00, 0x00, 0x04, 0x77, 0x04, 0x3a, 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, - 0x61, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x23, 0x11, 0x21, 0x15, 0x21, 0x13, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x01, 0x65, - 0x01, 0x81, 0x60, 0x96, 0x33, 0x33, 0x35, 0x35, 0x33, 0x33, 0x96, 0x60, - 0xc8, 0xfe, 0x1b, 0x01, 0x2c, 0xb9, 0xc8, 0x39, 0x52, 0x1a, 0x1a, 0x18, - 0x18, 0x1a, 0x1a, 0x51, 0x3a, 0xc8, 0x35, 0x2e, 0x2d, 0x7c, 0x48, 0x48, - 0x7a, 0x2c, 0x2c, 0x32, 0x01, 0x9a, 0x98, 0xfe, 0x67, 0x22, 0x1a, 0x1b, - 0x43, 0x22, 0x23, 0x42, 0x19, 0x1a, 0x1e, 0x00, 0x00, 0x03, 0x00, 0x90, - 0x00, 0x00, 0x04, 0x3f, 0x04, 0x3a, 0x00, 0x10, 0x00, 0x14, 0x00, 0x23, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x01, 0x11, 0x23, 0x11, 0x01, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x23, 0x01, 0x49, 0xb9, 0x01, 0x1c, 0x58, 0x86, 0x2e, 0x2d, 0x2f, - 0x2f, 0x2d, 0x2e, 0x87, 0x57, 0x02, 0x93, 0xb9, 0xfd, 0xc3, 0x63, 0x2f, - 0x42, 0x15, 0x14, 0x13, 0x13, 0x14, 0x15, 0x42, 0x2f, 0x63, 0x02, 0xa0, - 0x01, 0x9a, 0xfb, 0xc6, 0x35, 0x2e, 0x2e, 0x7c, 0x47, 0x47, 0x7a, 0x2d, - 0x2c, 0x32, 0xfd, 0x60, 0x04, 0x3a, 0xfb, 0xc6, 0x02, 0x09, 0x22, 0x1b, - 0x1b, 0x43, 0x21, 0x23, 0x41, 0x19, 0x1a, 0x1f, 0x00, 0x02, 0x00, 0xa5, - 0x00, 0x00, 0x04, 0x40, 0x04, 0x3a, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x05, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, 0x01, 0x5e, 0xb9, 0x02, - 0x04, 0x61, 0x98, 0x34, 0x34, 0x36, 0x37, 0x34, 0x34, 0x97, 0x61, 0xfe, - 0xb5, 0x01, 0x4b, 0x3a, 0x53, 0x1b, 0x1b, 0x1a, 0x19, 0x1b, 0x1b, 0x54, - 0x3a, 0xfe, 0xb5, 0x02, 0xa0, 0x01, 0x9a, 0xfb, 0xc6, 0x34, 0x2e, 0x2d, - 0x7d, 0x48, 0x49, 0x7a, 0x2c, 0x2c, 0x31, 0x97, 0x21, 0x1a, 0x1b, 0x43, - 0x23, 0x24, 0x42, 0x19, 0x19, 0x1e, 0x00, 0x01, 0x00, 0x81, 0xff, 0xec, - 0x04, 0x3a, 0x04, 0x4e, 0x00, 0x35, 0x00, 0x00, 0x41, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x21, 0x15, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x02, 0x3c, 0x51, 0x74, 0x26, 0x26, 0x2a, 0x06, 0xfe, 0x55, - 0x01, 0xad, 0x05, 0x27, 0x26, 0x27, 0x76, 0x54, 0x38, 0x61, 0x24, 0x24, - 0x2a, 0xb0, 0x43, 0x3b, 0x3b, 0xa2, 0x60, 0x7f, 0xbf, 0x40, 0x40, 0x40, - 0x40, 0x3f, 0x40, 0xc0, 0x7f, 0x56, 0xa0, 0x3d, 0x3e, 0x4a, 0xb0, 0x2e, - 0x26, 0x25, 0x60, 0x03, 0xb6, 0x36, 0x2d, 0x2d, 0x74, 0x3f, 0x98, 0x41, - 0x7c, 0x30, 0x31, 0x3b, 0x26, 0x21, 0x20, 0x58, 0x32, 0x53, 0x8f, 0x34, - 0x35, 0x3c, 0x57, 0x4b, 0x4a, 0xc4, 0x6c, 0x2a, 0x6c, 0xc4, 0x4a, 0x4a, - 0x58, 0x3b, 0x32, 0x32, 0x84, 0x49, 0x2e, 0x4d, 0x1d, 0x1c, 0x20, 0x00, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x04, 0x81, 0x04, 0x4e, 0x00, 0x1f, - 0x00, 0x39, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x01, 0x2a, 0xb9, 0xb9, 0x81, 0x06, 0x31, 0x2d, 0x2d, 0x83, - 0x57, 0x5d, 0x89, 0x2d, 0x2c, 0x2c, 0x2c, 0x2d, 0x2d, 0x8a, 0x5d, 0x55, - 0x80, 0x2d, 0x2d, 0x32, 0x07, 0xb8, 0x10, 0x14, 0x14, 0x44, 0x34, 0x35, - 0x45, 0x15, 0x14, 0x11, 0x11, 0x14, 0x14, 0x45, 0x34, 0x35, 0x44, 0x14, - 0x15, 0x10, 0x02, 0x6f, 0x01, 0xcb, 0xfb, 0xc6, 0x01, 0xd7, 0x68, 0xb4, - 0x42, 0x42, 0x4b, 0x56, 0x4a, 0x4a, 0xc9, 0x72, 0x16, 0x72, 0xc9, 0x4b, - 0x4b, 0x56, 0x49, 0x40, 0x41, 0xaf, 0x66, 0x5e, 0x16, 0x4e, 0x90, 0x38, - 0x37, 0x42, 0x42, 0x37, 0x38, 0x90, 0x4e, 0x16, 0x4e, 0x91, 0x37, 0x37, - 0x42, 0x42, 0x37, 0x37, 0x91, 0x00, 0x00, 0x02, 0x00, 0x4f, 0x00, 0x00, - 0x04, 0x21, 0x04, 0x3a, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x01, 0x33, 0x01, - 0x21, 0x11, 0x33, 0x01, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x21, 0x11, - 0x21, 0x22, 0x26, 0x27, 0x26, 0x26, 0x04, 0x21, 0xfe, 0x04, 0x60, 0x9a, - 0x35, 0x35, 0x39, 0x70, 0x68, 0xfe, 0xef, 0xc8, 0x01, 0x01, 0x01, 0x50, - 0xb9, 0xfd, 0x21, 0x1c, 0x1c, 0x1c, 0x56, 0x39, 0x01, 0x43, 0xfe, 0xa6, - 0x35, 0x4c, 0x19, 0x1a, 0x18, 0x04, 0x3a, 0x32, 0x2b, 0x2c, 0x79, 0x48, - 0x6a, 0x9f, 0x26, 0xfe, 0x3f, 0x01, 0xa5, 0xfe, 0x5b, 0x02, 0xee, 0x23, - 0x41, 0x1a, 0x19, 0x1f, 0xfe, 0x99, 0x1e, 0x19, 0x18, 0x40, 0x00, 0x01, - 0xff, 0xe9, 0xfe, 0x4b, 0x04, 0x25, 0x06, 0x00, 0x00, 0x39, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x03, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x02, 0x66, - 0xfe, 0xf9, 0xb9, 0xbd, 0xbd, 0xb9, 0x17, 0x3e, 0x24, 0x23, 0x50, 0x2b, - 0x3d, 0x5d, 0x1f, 0x1e, 0x1e, 0x16, 0x15, 0x11, 0x30, 0x1d, 0x10, 0x42, - 0x13, 0x0f, 0x1e, 0x36, 0x20, 0x4c, 0x78, 0x29, 0x2a, 0x2c, 0x01, 0x35, - 0x31, 0x31, 0x8b, 0x55, 0x3b, 0x69, 0x2c, 0x25, 0x3f, 0x1a, 0x04, 0xb9, - 0x97, 0xb0, 0xb0, 0x97, 0xfb, 0x47, 0x03, 0x12, 0x25, 0x3c, 0x15, 0x13, - 0x16, 0x01, 0x22, 0x23, 0x20, 0x61, 0x41, 0xfc, 0xfc, 0x33, 0x4e, 0x1a, - 0x14, 0x15, 0x07, 0x06, 0x94, 0x0a, 0x07, 0x2c, 0x2b, 0x2c, 0x84, 0x55, - 0x03, 0x02, 0x6d, 0x9f, 0x34, 0x34, 0x31, 0x01, 0x1e, 0x1b, 0x17, 0x3e, - 0x26, 0x01, 0x20, 0x00, 0x00, 0x01, 0x00, 0x8f, 0xff, 0xec, 0x04, 0x33, - 0x04, 0x4e, 0x00, 0x35, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x35, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x02, 0x7b, 0x4e, 0x6f, 0x24, 0x24, 0x26, 0x05, 0x01, 0x9a, 0xfe, 0x66, - 0x05, 0x26, 0x25, 0x24, 0x6e, 0x4e, 0x38, 0x61, 0x23, 0x23, 0x29, 0x01, - 0xaf, 0x42, 0x3a, 0x3b, 0xa1, 0x60, 0x7b, 0xb8, 0x3d, 0x3e, 0x3e, 0x3e, - 0x3e, 0x3d, 0xb8, 0x7b, 0x56, 0x9e, 0x3d, 0x3d, 0x49, 0x01, 0xaf, 0x01, - 0x2d, 0x25, 0x25, 0x5f, 0x82, 0x38, 0x2f, 0x2e, 0x79, 0x40, 0x98, 0x3f, - 0x79, 0x2f, 0x2e, 0x39, 0x26, 0x21, 0x21, 0x57, 0x31, 0x52, 0x90, 0x35, - 0x34, 0x3d, 0x58, 0x4a, 0x4b, 0xc4, 0x6b, 0x2a, 0x6c, 0xc3, 0x4a, 0x4b, - 0x58, 0x3b, 0x32, 0x31, 0x83, 0x48, 0x2d, 0x4d, 0x1c, 0x1d, 0x20, 0x00, - 0x00, 0x02, 0x00, 0x26, 0x00, 0x00, 0x04, 0xb0, 0x04, 0x3a, 0x00, 0x28, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x21, 0x11, 0x14, 0x06, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x07, 0x07, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x13, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x23, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x03, 0x08, 0xfd, 0xcc, 0x01, 0x02, 0x0e, 0x0c, 0x10, 0x36, 0x29, 0x1e, - 0x04, 0x2d, 0x5a, 0x78, 0x25, 0x1d, 0x20, 0x04, 0x01, 0x01, 0xc2, 0xfb, - 0x57, 0x86, 0x2d, 0x2d, 0x2f, 0x2f, 0x2d, 0x2d, 0x86, 0x57, 0x42, 0xed, - 0x12, 0x14, 0x15, 0x41, 0x2f, 0x42, 0x42, 0x2f, 0x41, 0x15, 0x14, 0x12, - 0x04, 0x3a, 0xfe, 0x31, 0x19, 0x30, 0x16, 0x4e, 0x7c, 0x2e, 0x3b, 0x3d, - 0x01, 0x9b, 0x54, 0x50, 0x41, 0xb1, 0x6e, 0x18, 0x34, 0x1b, 0x01, 0x36, - 0xfc, 0x5f, 0x35, 0x2e, 0x2d, 0x7b, 0x47, 0x48, 0x79, 0x2d, 0x2c, 0x32, - 0xfe, 0xb6, 0x22, 0x44, 0x1b, 0x1b, 0x23, 0x01, 0x71, 0x1f, 0x19, 0x19, - 0x40, 0x00, 0x00, 0x02, 0x00, 0x82, 0x00, 0x00, 0x04, 0x92, 0x04, 0x3a, - 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x33, 0x11, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x23, 0x11, 0x23, 0x11, 0x17, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x01, 0x3b, - 0xb9, 0xb9, 0xf9, 0x01, 0x0c, 0x52, 0x7f, 0x2b, 0x2a, 0x2c, 0x2c, 0x2a, - 0x2b, 0x7f, 0x52, 0x53, 0xb9, 0xb9, 0x53, 0x2a, 0x3a, 0x12, 0x12, 0x10, - 0x10, 0x12, 0x12, 0x3a, 0x2a, 0x53, 0x02, 0xa1, 0x01, 0x99, 0xfb, 0xc6, - 0x02, 0x0a, 0xfd, 0xf6, 0x35, 0x2e, 0x2d, 0x7b, 0x47, 0x47, 0x79, 0x2d, - 0x2c, 0x32, 0x01, 0x9d, 0xfe, 0x67, 0x9b, 0x1f, 0x19, 0x19, 0x40, 0x21, - 0x22, 0x44, 0x1b, 0x1b, 0x23, 0x00, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, - 0x04, 0x2b, 0x06, 0x00, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, - 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, - 0x02, 0x99, 0xfe, 0xcd, 0xb9, 0x91, 0x91, 0xb9, 0x18, 0x42, 0x27, 0x21, - 0x4c, 0x29, 0x3b, 0x5c, 0x1f, 0x1f, 0x20, 0xb9, 0x35, 0x31, 0x31, 0x8b, - 0x55, 0x3c, 0x6c, 0x2e, 0x23, 0x3c, 0x19, 0x04, 0xbe, 0x97, 0xab, 0xab, - 0x97, 0xfb, 0x42, 0x03, 0x12, 0x27, 0x3e, 0x15, 0x12, 0x13, 0x01, 0x20, - 0x21, 0x20, 0x64, 0x42, 0xfd, 0x55, 0x02, 0xa9, 0x6d, 0x9f, 0x34, 0x34, - 0x31, 0x01, 0x1f, 0x1e, 0x16, 0x3c, 0x25, 0x01, 0x25, 0x00, 0x00, 0x01, - 0x00, 0xa5, 0xfe, 0x9c, 0x04, 0x27, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, - 0x01, 0x5e, 0xb9, 0x01, 0x67, 0xb9, 0x01, 0x62, 0xb9, 0xfd, 0xf0, 0x04, - 0x3a, 0xfb, 0xc6, 0xfe, 0x9c, 0x01, 0x64, 0x04, 0x3a, 0xfc, 0x5d, 0x00, - 0x00, 0x01, 0x00, 0x6b, 0xff, 0xec, 0x04, 0x7f, 0x05, 0xb0, 0x00, 0x38, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x03, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, - 0x7e, 0xb8, 0x01, 0x10, 0x10, 0x0e, 0x27, 0x19, 0x19, 0x2a, 0x10, 0x17, - 0x18, 0xbf, 0x01, 0x19, 0x17, 0x0f, 0x2a, 0x18, 0x17, 0x27, 0x0d, 0x12, - 0x12, 0x01, 0xb8, 0x01, 0x2b, 0x27, 0x27, 0x6d, 0x43, 0x2a, 0x4b, 0x1e, - 0x18, 0x28, 0x0e, 0x0c, 0x20, 0x14, 0x20, 0x52, 0x30, 0x42, 0x6d, 0x27, - 0x27, 0x2b, 0x05, 0xb0, 0xfb, 0x8e, 0x2e, 0x49, 0x18, 0x16, 0x17, 0x12, - 0x10, 0x18, 0x4e, 0x34, 0x04, 0x72, 0xfb, 0x8e, 0x34, 0x4f, 0x18, 0x10, - 0x11, 0x15, 0x13, 0x18, 0x4b, 0x31, 0x04, 0x72, 0xfb, 0x8e, 0x52, 0x7e, - 0x2b, 0x2b, 0x2c, 0x17, 0x16, 0x13, 0x33, 0x20, 0x1c, 0x2d, 0x12, 0x1c, - 0x1c, 0x2c, 0x2b, 0x2b, 0x7e, 0x52, 0x00, 0x01, 0x00, 0x5f, 0xff, 0xeb, - 0x04, 0x7a, 0x04, 0x3b, 0x00, 0x38, 0x00, 0x00, 0x41, 0x23, 0x11, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, - 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x11, 0x23, 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, 0x7a, 0xb9, 0x0f, 0x0e, 0x0f, 0x2a, - 0x1b, 0x1a, 0x2a, 0x10, 0x17, 0x18, 0x01, 0xbf, 0x16, 0x13, 0x11, 0x2e, - 0x1b, 0x19, 0x28, 0x0e, 0x11, 0x11, 0xb9, 0x01, 0x2c, 0x27, 0x27, 0x6e, - 0x43, 0x29, 0x47, 0x1d, 0x1a, 0x2c, 0x0f, 0x0d, 0x24, 0x15, 0x1f, 0x50, - 0x2f, 0x42, 0x6e, 0x28, 0x27, 0x2b, 0x04, 0x3b, 0xfd, 0x01, 0x2b, 0x45, - 0x17, 0x19, 0x1a, 0x12, 0x11, 0x17, 0x4d, 0x33, 0x02, 0xff, 0xfd, 0x01, - 0x30, 0x49, 0x18, 0x14, 0x15, 0x16, 0x15, 0x18, 0x48, 0x2f, 0x02, 0xff, - 0xfd, 0x01, 0x52, 0x7e, 0x2a, 0x2b, 0x2c, 0x14, 0x14, 0x13, 0x35, 0x23, - 0x1d, 0x30, 0x11, 0x1b, 0x1a, 0x2c, 0x2b, 0x2a, 0x7e, 0x52, 0x00, 0x02, - 0x00, 0x1c, 0x00, 0x00, 0x04, 0x3c, 0x06, 0x18, 0x00, 0x18, 0x00, 0x27, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, 0x33, 0x11, - 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x21, 0x11, 0x11, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, 0x02, 0xd7, 0xfe, 0xbe, 0xb9, 0xc0, - 0xc0, 0x01, 0xcc, 0x61, 0x96, 0x34, 0x33, 0x36, 0x36, 0x33, 0x34, 0x96, - 0x61, 0xfe, 0xed, 0x01, 0x13, 0x3a, 0x52, 0x1b, 0x1a, 0x19, 0x19, 0x1a, - 0x1b, 0x52, 0x3a, 0xfe, 0xed, 0x04, 0x34, 0x98, 0x01, 0x4c, 0xfe, 0xb4, - 0x98, 0xfb, 0xcc, 0x34, 0x2e, 0x2e, 0x7c, 0x48, 0x48, 0x7a, 0x2d, 0x2c, - 0x31, 0x01, 0x94, 0xfd, 0xd5, 0x21, 0x1a, 0x1b, 0x44, 0x22, 0x24, 0x41, - 0x19, 0x1a, 0x1e, 0x00, 0x00, 0x01, 0x00, 0x7d, 0xff, 0xed, 0x04, 0x94, - 0x05, 0xc5, 0x00, 0x54, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x33, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x35, 0x21, 0x35, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x01, 0x35, 0xb8, 0xb8, 0x96, - 0x0e, 0x0d, 0x0f, 0x30, 0x20, 0x2e, 0x7d, 0x4c, 0x35, 0x5a, 0x24, 0x2e, - 0x42, 0x16, 0x0c, 0x0f, 0x04, 0xa7, 0x03, 0x09, 0x06, 0x0a, 0x22, 0x15, - 0x12, 0x2f, 0x1d, 0x23, 0x39, 0x14, 0x14, 0x1d, 0x08, 0x08, 0x07, 0x01, - 0x1a, 0xfe, 0xe6, 0x07, 0x07, 0x0a, 0x20, 0x18, 0x14, 0x34, 0x20, 0x23, - 0x36, 0x13, 0x10, 0x19, 0x09, 0x07, 0x09, 0x03, 0xa7, 0x07, 0x31, 0x2a, - 0x2b, 0x7a, 0x51, 0x3d, 0x69, 0x2a, 0x2e, 0x47, 0x13, 0x0c, 0x0d, 0x03, - 0x40, 0x02, 0x70, 0xfa, 0x50, 0x02, 0xa9, 0x9b, 0x43, 0x78, 0x33, 0x3c, - 0x62, 0x25, 0x35, 0x3b, 0x1b, 0x1a, 0x1f, 0x65, 0x3f, 0x25, 0x53, 0x2c, - 0x1f, 0x38, 0x19, 0x28, 0x3c, 0x13, 0x0f, 0x10, 0x20, 0x1b, 0x1c, 0x4b, - 0x2f, 0x27, 0x5e, 0x35, 0x9b, 0x97, 0x65, 0x34, 0x5b, 0x27, 0x35, 0x51, - 0x1d, 0x17, 0x19, 0x18, 0x17, 0x14, 0x32, 0x20, 0x1a, 0x3c, 0x22, 0x60, - 0x9c, 0x37, 0x36, 0x3b, 0x25, 0x24, 0x26, 0x7c, 0x51, 0x32, 0x74, 0x40, - 0x63, 0x00, 0x00, 0x01, 0x00, 0x9b, 0xff, 0xec, 0x04, 0x89, 0x04, 0x4e, - 0x00, 0x49, 0x00, 0x00, 0x41, 0x35, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x03, 0xc7, 0xfe, 0xd5, 0x01, 0x07, - 0x07, 0x0a, 0x23, 0x19, 0x13, 0x2f, 0x1c, 0x21, 0x33, 0x12, 0x12, 0x13, - 0xaf, 0x2d, 0x29, 0x29, 0x74, 0x47, 0x3c, 0x65, 0x28, 0x31, 0x44, 0x14, - 0x0c, 0x0d, 0x01, 0x8f, 0xb9, 0xb9, 0x8f, 0x01, 0x0d, 0x0b, 0x16, 0x52, - 0x3a, 0x24, 0x59, 0x34, 0x40, 0x73, 0x2b, 0x2a, 0x32, 0xaf, 0x01, 0x15, - 0x12, 0x13, 0x32, 0x1e, 0x1b, 0x2d, 0x12, 0x1a, 0x24, 0x0c, 0x06, 0x08, - 0x01, 0x01, 0xd0, 0x97, 0x25, 0x49, 0x22, 0x2f, 0x4f, 0x19, 0x13, 0x15, - 0x21, 0x1c, 0x1c, 0x4a, 0x28, 0x4a, 0x81, 0x30, 0x30, 0x38, 0x24, 0x20, - 0x29, 0x74, 0x48, 0x2b, 0x60, 0x33, 0x01, 0xd3, 0xfb, 0xc6, 0x01, 0xd0, - 0x02, 0x31, 0x5c, 0x2a, 0x50, 0x82, 0x26, 0x19, 0x1a, 0x35, 0x2d, 0x2d, - 0x75, 0x40, 0x24, 0x3f, 0x18, 0x18, 0x1b, 0x12, 0x11, 0x1a, 0x52, 0x32, - 0x20, 0x47, 0x24, 0x02, 0x00, 0x02, 0x00, 0x27, 0x00, 0x00, 0x04, 0xb2, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, - 0x23, 0x01, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x25, 0x13, 0x37, 0x17, - 0x13, 0x03, 0x65, 0x90, 0xbd, 0xfe, 0x0f, 0xa0, 0xfe, 0x06, 0xbd, 0x93, - 0x94, 0xb9, 0xfe, 0xe8, 0xb9, 0x0b, 0x0a, 0xb6, 0x01, 0xb8, 0xfe, 0x48, - 0x05, 0xb0, 0xfa, 0x50, 0x01, 0xb8, 0xfe, 0x48, 0x01, 0xb8, 0xa1, 0x02, - 0x2c, 0x1f, 0x20, 0xfd, 0xd5, 0x00, 0x00, 0x02, 0x00, 0x57, 0x00, 0x00, - 0x04, 0x81, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x00, 0x41, 0x13, - 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x25, 0x13, - 0x37, 0x17, 0x13, 0x03, 0x4a, 0x79, 0xbe, 0xfe, 0x39, 0x9f, 0xfe, 0x3c, - 0xbd, 0x76, 0x87, 0xb9, 0xfe, 0xfd, 0x89, 0x19, 0x18, 0x8b, 0x01, 0x29, - 0xfe, 0xd7, 0x04, 0x3a, 0xfb, 0xc6, 0x01, 0x29, 0xfe, 0xd7, 0x01, 0x29, - 0x98, 0x01, 0x57, 0x52, 0x52, 0xfe, 0xa9, 0x00, 0x00, 0x02, 0x00, 0x71, - 0x00, 0x00, 0x04, 0xbc, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x18, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x33, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x27, 0x13, 0x37, 0x17, - 0x13, 0x03, 0xa1, 0x5f, 0xbc, 0xfe, 0xae, 0x9f, 0xd0, 0xd1, 0xb9, 0xb9, - 0xa8, 0x75, 0xbd, 0x68, 0x45, 0x94, 0xb6, 0x6b, 0x08, 0x07, 0x61, 0x01, - 0xd4, 0xfe, 0x2c, 0x05, 0xb0, 0xfc, 0xc5, 0x03, 0x3b, 0xfa, 0x50, 0x01, - 0xd4, 0xfe, 0x2c, 0x01, 0xd4, 0xfe, 0x2c, 0x01, 0xd4, 0xa1, 0x01, 0xe0, - 0x24, 0x24, 0xfe, 0x20, 0x00, 0x02, 0x00, 0x70, 0x00, 0x00, 0x04, 0xbd, - 0x04, 0x3a, 0x00, 0x13, 0x00, 0x18, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, - 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x03, 0x33, 0x13, - 0x33, 0x11, 0x33, 0x11, 0x27, 0x13, 0x37, 0x17, 0x13, 0x03, 0xab, 0x55, - 0xbd, 0xfe, 0xad, 0x9f, 0xd5, 0xcd, 0xb9, 0xb9, 0x97, 0x63, 0xbd, 0x5d, - 0x4f, 0x9d, 0xb9, 0x66, 0x08, 0x08, 0x5d, 0x01, 0x25, 0xfe, 0xdb, 0x04, - 0x3a, 0xfd, 0x8c, 0x02, 0x74, 0xfb, 0xc6, 0x01, 0x25, 0xfe, 0xdb, 0x01, - 0x25, 0xfe, 0xdb, 0x01, 0x25, 0xa1, 0x01, 0x41, 0x1b, 0x1b, 0xfe, 0xbf, - 0x00, 0x02, 0x00, 0x55, 0x00, 0x00, 0x04, 0x85, 0x05, 0xb0, 0x00, 0x27, - 0x00, 0x2c, 0x00, 0x00, 0x73, 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x11, 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x01, 0x21, - 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x01, 0x03, 0x07, 0x27, - 0x03, 0x56, 0xb9, 0x15, 0x16, 0x15, 0x43, 0x2e, 0x53, 0xb9, 0x4d, 0x2e, - 0x43, 0x16, 0x16, 0x16, 0xb9, 0x30, 0x2e, 0x2f, 0x86, 0x56, 0x01, 0x01, - 0x36, 0xfc, 0x21, 0x01, 0x51, 0x03, 0x56, 0x87, 0x2e, 0x2f, 0x31, 0x02, - 0xe7, 0xca, 0x02, 0x02, 0xe0, 0x01, 0xab, 0x3d, 0x52, 0x19, 0x19, 0x16, - 0xfd, 0x7e, 0x02, 0x82, 0x16, 0x19, 0x19, 0x52, 0x3d, 0xfe, 0x55, 0x01, - 0xab, 0x62, 0x8a, 0x2d, 0x2c, 0x29, 0x01, 0x02, 0x96, 0xfd, 0x6a, 0x29, - 0x2c, 0x2d, 0x8b, 0x62, 0x03, 0x6d, 0xfe, 0x29, 0x03, 0x03, 0x01, 0xd7, - 0x00, 0x02, 0x00, 0x69, 0x00, 0x00, 0x04, 0x59, 0x04, 0x3a, 0x00, 0x29, - 0x00, 0x2f, 0x00, 0x00, 0x73, 0x33, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x17, 0x11, 0x33, 0x11, 0x37, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x17, 0x33, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, - 0x01, 0x21, 0x01, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x01, 0x03, - 0x07, 0x23, 0x27, 0x03, 0x69, 0xb9, 0x14, 0x14, 0x14, 0x3d, 0x2a, 0x3d, - 0x05, 0xba, 0x08, 0x33, 0x2a, 0x3d, 0x14, 0x14, 0x14, 0x01, 0xb9, 0x2a, - 0x28, 0x28, 0x72, 0x47, 0x03, 0x01, 0x1c, 0xfc, 0x50, 0x01, 0x1b, 0x03, - 0x49, 0x77, 0x29, 0x2a, 0x2b, 0x02, 0xb2, 0xae, 0x04, 0x05, 0x04, 0xaf, - 0xdb, 0x43, 0x59, 0x1b, 0x1b, 0x17, 0x09, 0xfe, 0x45, 0x01, 0xbb, 0x09, - 0x17, 0x1b, 0x1b, 0x59, 0x43, 0xdb, 0xdb, 0x61, 0x8c, 0x2f, 0x2e, 0x30, - 0x05, 0x01, 0xe0, 0xfe, 0x21, 0x03, 0x2f, 0x2e, 0x2e, 0x8f, 0x63, 0x02, - 0xc7, 0xfe, 0xc1, 0x07, 0x07, 0x01, 0x3f, 0x00, 0x00, 0x02, 0x00, 0x50, - 0x00, 0x00, 0x04, 0x87, 0x05, 0xb0, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x00, - 0x61, 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x11, 0x33, - 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x13, 0x33, 0x11, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x13, 0x21, 0x13, 0x21, 0x11, 0x23, - 0x11, 0x33, 0x11, 0x33, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x01, 0x03, - 0x07, 0x27, 0x03, 0x01, 0x83, 0x99, 0x0b, 0x0b, 0x0d, 0x29, 0x1e, 0x34, - 0x99, 0x2a, 0x1c, 0x29, 0x0e, 0x0f, 0x0e, 0x01, 0x99, 0x21, 0x22, 0x26, - 0x61, 0x2d, 0x01, 0xeb, 0xfd, 0x17, 0xeb, 0xfe, 0x7f, 0xab, 0xab, 0x9b, - 0x05, 0x07, 0x02, 0x03, 0x03, 0x02, 0x05, 0x7f, 0x02, 0x02, 0x7f, 0x01, - 0xf4, 0x23, 0x33, 0x10, 0x13, 0x12, 0x01, 0xfd, 0x80, 0x02, 0x80, 0x0d, - 0x0f, 0x10, 0x38, 0x28, 0xfe, 0x0c, 0x01, 0xf4, 0x4d, 0x6d, 0x22, 0x26, - 0x22, 0x02, 0x98, 0xfd, 0x68, 0x02, 0x98, 0xfa, 0x50, 0x02, 0x80, 0x0e, - 0x1d, 0x10, 0x12, 0x29, 0x16, 0x03, 0x24, 0xfe, 0x6c, 0x07, 0x07, 0x01, - 0x94, 0x00, 0x00, 0x02, 0x00, 0x51, 0x00, 0x00, 0x04, 0x86, 0x04, 0x3a, - 0x00, 0x2f, 0x00, 0x34, 0x00, 0x00, 0x73, 0x33, 0x11, 0x33, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x13, 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x17, 0x11, 0x33, 0x11, 0x37, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x13, 0x33, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, - 0x13, 0x21, 0x13, 0x21, 0x11, 0x23, 0x05, 0x03, 0x07, 0x27, 0x03, 0x51, - 0xab, 0x9c, 0x04, 0x08, 0x02, 0x04, 0x03, 0x01, 0x99, 0x0c, 0x0c, 0x0e, - 0x2b, 0x1e, 0x26, 0x08, 0x9a, 0x07, 0x1d, 0x20, 0x2c, 0x0e, 0x0d, 0x0d, - 0x01, 0x99, 0x22, 0x21, 0x1b, 0x4e, 0x30, 0x03, 0xd3, 0xfd, 0x22, 0xd2, - 0xfe, 0x8e, 0xab, 0x03, 0x36, 0x7b, 0x01, 0x01, 0x7b, 0x01, 0xbb, 0x0d, - 0x1d, 0x0f, 0x13, 0x29, 0x17, 0xfe, 0xd1, 0x01, 0x2f, 0x23, 0x33, 0x11, - 0x13, 0x12, 0x05, 0xfe, 0x4a, 0x01, 0xb7, 0x04, 0x0f, 0x11, 0x10, 0x36, - 0x26, 0xfe, 0xd1, 0x01, 0x2f, 0x4c, 0x6e, 0x23, 0x1e, 0x21, 0x05, 0x01, - 0xea, 0xfe, 0x19, 0x01, 0xe7, 0x8f, 0xfe, 0xc3, 0x02, 0x02, 0x01, 0x3d, - 0x00, 0x02, 0x00, 0xca, 0xfe, 0x46, 0x04, 0x24, 0x07, 0x74, 0x00, 0x5c, - 0x00, 0x65, 0x00, 0x00, 0x41, 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x15, 0x21, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x03, 0x27, 0x23, 0x15, 0x17, 0x33, 0x37, 0x35, 0x23, 0x02, 0x1c, - 0x8d, 0x8d, 0x4f, 0x7c, 0x2b, 0x2b, 0x2d, 0x0f, 0x0f, 0x0e, 0x27, 0x18, - 0x25, 0x5f, 0x37, 0x2e, 0x4b, 0x7a, 0x2b, 0x2c, 0x30, 0x01, 0x2f, 0x26, - 0x25, 0x5d, 0x2f, 0x4a, 0x17, 0x37, 0x19, 0x19, 0x21, 0x0f, 0x10, 0x12, - 0x3b, 0x29, 0x35, 0x57, 0x98, 0x3c, 0x21, 0x38, 0x16, 0x22, 0x24, 0x30, - 0x2d, 0x21, 0x5a, 0x36, 0x39, 0x5c, 0x20, 0x20, 0x23, 0x21, 0x1f, 0x1e, - 0x55, 0x35, 0x35, 0x7d, 0x44, 0xfe, 0xce, 0x01, 0x32, 0x48, 0x6d, 0x25, - 0x25, 0x25, 0x0e, 0x0e, 0x11, 0x41, 0x2c, 0x20, 0x4f, 0x0f, 0x97, 0x9d, - 0xfb, 0x72, 0xfe, 0xa0, 0x03, 0x37, 0x97, 0x21, 0x21, 0x21, 0x66, 0x45, - 0x23, 0x40, 0x1c, 0x1a, 0x2c, 0x12, 0x1a, 0x1d, 0x1e, 0x1f, 0x1f, 0x60, - 0x43, 0x3c, 0x64, 0x28, 0x28, 0x3b, 0x14, 0x7c, 0x0a, 0x1f, 0x16, 0x16, - 0x3d, 0x28, 0x18, 0x28, 0x0f, 0x10, 0x12, 0x28, 0x26, 0x15, 0x36, 0x1f, - 0x31, 0x79, 0x47, 0x4c, 0x7a, 0x2d, 0x22, 0x32, 0x11, 0x16, 0x40, 0x28, - 0x28, 0x5e, 0x35, 0x3e, 0x6b, 0x2c, 0x2a, 0x45, 0x16, 0x17, 0x18, 0x98, - 0x24, 0x20, 0x20, 0x57, 0x32, 0x23, 0x3c, 0x1a, 0x21, 0x32, 0x10, 0x0b, - 0x0c, 0x03, 0xa4, 0x98, 0x15, 0xf5, 0xf8, 0x12, 0x00, 0x02, 0x00, 0xde, - 0xfe, 0x46, 0x04, 0x09, 0x06, 0x1e, 0x00, 0x62, 0x00, 0x6b, 0x00, 0x00, - 0x41, 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x15, 0x21, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x03, 0x27, 0x23, 0x15, 0x17, 0x33, 0x37, 0x35, 0x23, - 0x02, 0x2c, 0x8d, 0x8d, 0x29, 0x49, 0x1e, 0x25, 0x37, 0x12, 0x13, 0x13, - 0x0c, 0x0c, 0x13, 0x3e, 0x28, 0x18, 0x36, 0x1d, 0x29, 0x4b, 0x7b, 0x2b, - 0x2c, 0x30, 0x01, 0x30, 0x26, 0x25, 0x5d, 0x2e, 0x4b, 0x17, 0x37, 0x19, - 0x19, 0x21, 0x0e, 0x10, 0x12, 0x3b, 0x2a, 0x30, 0x30, 0x5b, 0x28, 0x45, - 0x6e, 0x20, 0x17, 0x18, 0x23, 0x21, 0x1b, 0x4c, 0x2e, 0x27, 0x40, 0x18, - 0x21, 0x23, 0x1b, 0x1b, 0x22, 0x6e, 0x48, 0x26, 0x54, 0x2b, 0xfe, 0xd4, - 0x01, 0x2c, 0x23, 0x3f, 0x1a, 0x29, 0x38, 0x0e, 0x07, 0x07, 0x1f, 0x21, - 0x0f, 0x27, 0x17, 0x1b, 0x40, 0x0d, 0x97, 0x9d, 0xfb, 0x72, 0xfe, 0xa0, - 0x02, 0x69, 0x97, 0x08, 0x07, 0x09, 0x1a, 0x14, 0x12, 0x31, 0x1d, 0x15, - 0x27, 0x11, 0x1b, 0x28, 0x0b, 0x06, 0x07, 0x1e, 0x1f, 0x1f, 0x60, 0x43, - 0x3c, 0x64, 0x28, 0x28, 0x3b, 0x14, 0x7c, 0x0a, 0x1f, 0x16, 0x16, 0x3d, - 0x28, 0x18, 0x27, 0x0f, 0x11, 0x12, 0x0c, 0x0c, 0x13, 0x48, 0x31, 0x21, - 0x50, 0x2e, 0x31, 0x51, 0x1f, 0x1a, 0x28, 0x0e, 0x0f, 0x27, 0x17, 0x1f, - 0x4d, 0x2b, 0x2f, 0x51, 0x21, 0x2c, 0x44, 0x11, 0x09, 0x0a, 0x99, 0x08, - 0x08, 0x0d, 0x28, 0x1b, 0x0c, 0x1d, 0x0f, 0x25, 0x3c, 0x14, 0x0a, 0x0f, - 0x05, 0x07, 0x06, 0x03, 0x1d, 0x98, 0x15, 0xf5, 0xf8, 0x12, 0x00, 0x03, - 0x00, 0x63, 0xff, 0xec, 0x04, 0x5a, 0x05, 0xc4, 0x00, 0x25, 0x00, 0x3a, - 0x00, 0x4f, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x25, 0x35, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x1d, 0x02, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x04, - 0x5a, 0x01, 0x19, 0x1a, 0x1b, 0x51, 0x38, 0x38, 0x92, 0x5a, 0x5a, 0x91, - 0x38, 0x38, 0x51, 0x1a, 0x1b, 0x19, 0x01, 0x01, 0x1a, 0x1b, 0x1a, 0x52, - 0x38, 0x38, 0x91, 0x5a, 0x5a, 0x91, 0x38, 0x38, 0x51, 0x1a, 0x1a, 0x19, - 0xfc, 0xc0, 0x01, 0x0d, 0x0f, 0x0e, 0x30, 0x24, 0x24, 0x62, 0x40, 0x41, - 0x62, 0x24, 0x24, 0x30, 0x0f, 0x0e, 0x0c, 0x01, 0x01, 0x0b, 0x0e, 0x0f, - 0x2f, 0x23, 0x24, 0x63, 0x41, 0x41, 0x62, 0x24, 0x24, 0x30, 0x0f, 0x0f, - 0x0d, 0x01, 0x02, 0x84, 0xa6, 0x4e, 0xa0, 0x4a, 0x4a, 0x81, 0x30, 0x30, - 0x37, 0x37, 0x30, 0x31, 0x81, 0x4a, 0x4a, 0x9f, 0x4e, 0xa6, 0x4e, 0x9e, - 0x4a, 0x4a, 0x81, 0x30, 0x30, 0x37, 0x37, 0x30, 0x30, 0x80, 0x4a, 0x4a, - 0x9f, 0xeb, 0x0b, 0x33, 0x71, 0x38, 0x37, 0x65, 0x27, 0x26, 0x2e, 0x2d, - 0x26, 0x27, 0x65, 0x37, 0x38, 0x71, 0x34, 0x0b, 0x98, 0x05, 0x34, 0x72, - 0x37, 0x38, 0x65, 0x26, 0x27, 0x2e, 0x2e, 0x27, 0x26, 0x66, 0x38, 0x37, - 0x72, 0x33, 0x05, 0x00, 0x00, 0x03, 0x00, 0x5d, 0xff, 0xec, 0x04, 0x35, - 0x04, 0x4e, 0x00, 0x19, 0x00, 0x26, 0x00, 0x33, 0x00, 0x00, 0x53, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x13, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x5d, 0x44, 0x40, 0x3f, 0xb7, 0x73, 0x72, 0xb6, 0x40, 0x3f, - 0x44, 0x44, 0x3f, 0x40, 0xb7, 0x73, 0x72, 0xb6, 0x3f, 0x40, 0x44, 0x01, - 0xeb, 0x44, 0x6b, 0x26, 0x26, 0x2d, 0x08, 0xfd, 0xa1, 0x07, 0x2e, 0x26, - 0x26, 0x6a, 0x46, 0x46, 0x6b, 0x26, 0x27, 0x2c, 0x07, 0x02, 0x60, 0x07, - 0x2c, 0x26, 0x26, 0x6b, 0x02, 0x27, 0x16, 0x75, 0xc8, 0x4a, 0x4a, 0x54, - 0x54, 0x4a, 0x4a, 0xc8, 0x75, 0x16, 0x75, 0xc9, 0x4a, 0x4a, 0x55, 0x55, - 0x4a, 0x4a, 0xc9, 0x01, 0x1a, 0x34, 0x2d, 0x2d, 0x79, 0x44, 0x44, 0x79, - 0x2d, 0x2d, 0x34, 0xfc, 0xcc, 0x35, 0x2e, 0x2e, 0x7b, 0x46, 0x46, 0x7b, - 0x2e, 0x2e, 0x35, 0x00, 0x00, 0x01, 0x00, 0x1a, 0x00, 0x00, 0x04, 0xe1, - 0x05, 0xc3, 0x00, 0x16, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x33, 0x01, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x37, 0x27, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x01, 0x07, 0x02, 0x47, 0xfe, 0xa4, 0xd1, 0x01, 0xfa, - 0xaa, 0x01, 0x83, 0x0e, 0x1c, 0x12, 0x11, 0x2a, 0x1b, 0x0d, 0x01, 0x2e, - 0x38, 0x58, 0x23, 0x23, 0x38, 0x18, 0xfe, 0xfe, 0x22, 0x01, 0x76, 0x04, - 0x3a, 0xfa, 0x50, 0x04, 0x87, 0x26, 0x37, 0x12, 0x11, 0x10, 0xab, 0x01, - 0x22, 0x24, 0x24, 0x6e, 0x4d, 0xfc, 0xd7, 0x81, 0x00, 0x01, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x60, 0x04, 0x4d, 0x00, 0x1a, 0x00, 0x00, 0x61, 0x33, - 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x07, 0x27, 0x01, - 0x23, 0x01, 0xeb, 0x8d, 0x01, 0x3d, 0x08, 0x19, 0x10, 0x0e, 0x1d, 0x0f, - 0x0e, 0x17, 0x06, 0x15, 0x1a, 0x34, 0x1c, 0x20, 0x3d, 0x1b, 0x27, 0x42, - 0x19, 0xb0, 0x19, 0x18, 0xfe, 0xf4, 0xbe, 0x03, 0x4c, 0x16, 0x25, 0x0d, - 0x0a, 0x0b, 0x05, 0x03, 0x94, 0x11, 0x07, 0x12, 0x13, 0x1c, 0x65, 0x4c, - 0xfd, 0xe1, 0x65, 0x65, 0x02, 0xfe, 0x00, 0x03, 0x00, 0x45, 0xfe, 0x51, - 0x04, 0xba, 0x05, 0xc4, 0x00, 0x19, 0x00, 0x33, 0x00, 0x4f, 0x00, 0x00, - 0x41, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x03, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x13, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x13, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x13, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x02, 0x8a, 0x27, 0x26, - 0x27, 0x70, 0x49, 0x45, 0x69, 0x23, 0x24, 0x23, 0x23, 0x24, 0x23, 0x69, - 0x45, 0x49, 0x71, 0x26, 0x26, 0x27, 0xb9, 0x0c, 0x0d, 0x0e, 0x2c, 0x21, - 0x20, 0x2b, 0x0d, 0x0d, 0x0c, 0x0c, 0x0d, 0x0d, 0x2b, 0x20, 0x20, 0x2d, - 0x0e, 0x0d, 0x0c, 0xb1, 0x10, 0x38, 0x14, 0x39, 0x50, 0x1c, 0x1b, 0x22, - 0x09, 0xf1, 0xa4, 0x62, 0x07, 0x04, 0x49, 0xa4, 0x9f, 0x18, 0x05, 0x11, - 0x0d, 0x0e, 0x29, 0x1d, 0x0c, 0x2e, 0x0c, 0x01, 0xe7, 0x01, 0xe1, 0x73, - 0xbc, 0x43, 0x42, 0x48, 0x48, 0x42, 0x43, 0xbc, 0x73, 0xfe, 0x1f, 0x73, - 0xbb, 0x42, 0x43, 0x48, 0x48, 0x43, 0x42, 0xbb, 0x02, 0x7b, 0xfd, 0xd3, - 0x48, 0x74, 0x28, 0x29, 0x2c, 0x2c, 0x29, 0x28, 0x74, 0x48, 0x02, 0x2d, - 0x48, 0x73, 0x29, 0x28, 0x2b, 0x2b, 0x28, 0x29, 0x73, 0xfa, 0x2a, 0x05, - 0x0b, 0x35, 0x28, 0x27, 0x5c, 0x27, 0x04, 0xe2, 0xfd, 0xc5, 0x2f, 0x2f, - 0x02, 0x3b, 0xfb, 0xc5, 0x5e, 0x15, 0x3e, 0x1d, 0x1d, 0x29, 0x04, 0x02, - 0x00, 0x03, 0x00, 0x37, 0xfe, 0x51, 0x04, 0xbb, 0x04, 0x4e, 0x00, 0x19, - 0x00, 0x33, 0x00, 0x4f, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x13, 0x23, 0x03, 0x07, - 0x27, 0x03, 0x23, 0x13, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x37, 0x24, 0x26, 0x26, 0x79, 0x56, 0x55, 0x79, 0x27, 0x26, - 0x24, 0x24, 0x26, 0x27, 0x7a, 0x56, 0x55, 0x78, 0x26, 0x27, 0x23, 0xb9, - 0x08, 0x0e, 0x0d, 0x35, 0x2c, 0x2d, 0x36, 0x0e, 0x0e, 0x08, 0x08, 0x0d, - 0x0e, 0x35, 0x2d, 0x2d, 0x35, 0x0e, 0x0e, 0x08, 0x01, 0x93, 0x0e, 0x3a, - 0x14, 0x39, 0x50, 0x1c, 0x1b, 0x23, 0x08, 0xf1, 0xa4, 0x4e, 0x1e, 0x0d, - 0x3d, 0xa4, 0x9f, 0x18, 0x05, 0x11, 0x0d, 0x0e, 0x29, 0x1d, 0x0c, 0x2e, - 0x0c, 0x02, 0x28, 0x17, 0x75, 0xc9, 0x49, 0x4a, 0x54, 0x54, 0x4a, 0x49, - 0xc9, 0x75, 0x17, 0x75, 0xc9, 0x4a, 0x4a, 0x54, 0x54, 0x4a, 0x4a, 0xc9, - 0x8c, 0x17, 0x4e, 0x90, 0x37, 0x37, 0x42, 0x42, 0x37, 0x37, 0x90, 0x4e, - 0x17, 0x50, 0x90, 0x37, 0x37, 0x41, 0x41, 0x37, 0x37, 0x90, 0xfc, 0xa0, - 0x04, 0x0c, 0x35, 0x28, 0x27, 0x5c, 0x27, 0x04, 0xe2, 0xfe, 0x37, 0xb1, - 0xb3, 0x01, 0xc7, 0xfb, 0xc5, 0x5e, 0x15, 0x3e, 0x1d, 0x1d, 0x29, 0x04, - 0x02, 0x00, 0x00, 0x04, 0x00, 0x6a, 0xff, 0x73, 0x04, 0x61, 0x06, 0x35, - 0x00, 0x03, 0x00, 0x07, 0x00, 0x2d, 0x00, 0x53, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x13, 0x11, 0x23, 0x11, 0x01, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x02, 0xc2, - 0xb9, 0xb9, 0xb9, 0x02, 0x58, 0x01, 0x19, 0x1a, 0x1b, 0x51, 0x38, 0x38, - 0x92, 0x5a, 0x5a, 0x91, 0x38, 0x38, 0x51, 0x1a, 0x1b, 0x19, 0x01, 0x01, - 0x1a, 0x1b, 0x1a, 0x52, 0x38, 0x38, 0x91, 0x5a, 0x5a, 0x91, 0x38, 0x38, - 0x51, 0x1a, 0x1a, 0x19, 0xb6, 0x01, 0x0b, 0x0e, 0x0f, 0x2f, 0x23, 0x24, - 0x63, 0x41, 0x41, 0x62, 0x24, 0x24, 0x30, 0x0f, 0x0f, 0x0d, 0x01, 0x01, - 0x0d, 0x0f, 0x0e, 0x30, 0x24, 0x24, 0x62, 0x40, 0x41, 0x62, 0x24, 0x24, - 0x30, 0x0f, 0x0e, 0x0c, 0x04, 0xb3, 0x01, 0x82, 0xfe, 0x7e, 0xfa, 0xc0, - 0x01, 0x8b, 0xfe, 0x75, 0x03, 0x11, 0xa6, 0x4e, 0xa0, 0x4a, 0x4a, 0x81, - 0x30, 0x30, 0x37, 0x37, 0x30, 0x31, 0x81, 0x4a, 0x4a, 0x9f, 0x4e, 0xa6, - 0x4e, 0x9e, 0x4a, 0x4a, 0x81, 0x30, 0x30, 0x37, 0x37, 0x30, 0x30, 0x80, - 0x4a, 0x4a, 0x9f, 0xf6, 0xa8, 0x34, 0x72, 0x37, 0x38, 0x65, 0x26, 0x27, - 0x2e, 0x2e, 0x27, 0x26, 0x66, 0x38, 0x37, 0x72, 0x33, 0xa8, 0x33, 0x71, - 0x38, 0x37, 0x65, 0x27, 0x26, 0x2e, 0x2d, 0x26, 0x27, 0x65, 0x37, 0x38, - 0x71, 0x00, 0x00, 0x04, 0x00, 0x7a, 0xff, 0x61, 0x04, 0x52, 0x04, 0xcb, - 0x00, 0x03, 0x00, 0x07, 0x00, 0x21, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x13, 0x11, 0x23, 0x11, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x02, 0xc4, - 0xba, 0xba, 0xba, 0xfe, 0x70, 0x44, 0x40, 0x3f, 0xb7, 0x73, 0x72, 0xb6, - 0x40, 0x3f, 0x44, 0x44, 0x3f, 0x40, 0xb7, 0x73, 0x72, 0xb6, 0x3f, 0x40, - 0x44, 0xb9, 0x26, 0x27, 0x26, 0x72, 0x4d, 0x4d, 0x73, 0x27, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x73, 0x4c, 0x4d, 0x74, 0x26, 0x27, 0x26, 0x03, 0x46, - 0x01, 0x85, 0xfe, 0x7b, 0xfc, 0x1b, 0x01, 0x97, 0xfe, 0x69, 0x02, 0xc6, - 0x16, 0x75, 0xc8, 0x4a, 0x4a, 0x54, 0x54, 0x4a, 0x4a, 0xc8, 0x75, 0x16, - 0x75, 0xc9, 0x4a, 0x4a, 0x55, 0x55, 0x4a, 0x4a, 0xc9, 0x8b, 0x16, 0x4f, - 0x91, 0x37, 0x37, 0x41, 0x41, 0x37, 0x37, 0x91, 0x4f, 0x16, 0x50, 0x91, - 0x37, 0x37, 0x40, 0x40, 0x37, 0x37, 0x91, 0x00, 0x00, 0x03, 0x00, 0x4d, - 0xff, 0xeb, 0x04, 0x83, 0x07, 0x51, 0x00, 0x62, 0x00, 0x86, 0x00, 0x93, - 0x00, 0x00, 0x41, 0x15, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x13, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x33, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x33, 0x05, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x23, 0x15, 0x14, 0x06, 0x03, 0x22, 0x1f, 0x33, 0x15, 0x0e, - 0x18, 0x08, 0x09, 0x09, 0x01, 0x01, 0x17, 0x15, 0x11, 0x2b, 0x1a, 0x1b, - 0x2d, 0x11, 0x0c, 0x12, 0x05, 0x03, 0x03, 0xba, 0x03, 0x04, 0x06, 0x15, - 0x0f, 0x10, 0x29, 0x18, 0x1d, 0x2e, 0x11, 0x12, 0x14, 0x05, 0x06, 0x07, - 0x1a, 0x12, 0x14, 0x36, 0x1f, 0x4f, 0x82, 0x2e, 0x15, 0x21, 0x0c, 0x10, - 0x10, 0x2e, 0x2a, 0x29, 0x74, 0x47, 0x2f, 0x52, 0x20, 0x12, 0x20, 0x0c, - 0x0b, 0x1e, 0x12, 0x20, 0x53, 0x31, 0x46, 0x75, 0x2a, 0x29, 0x2e, 0x0f, - 0x0e, 0x0c, 0x23, 0x16, 0x2f, 0x82, 0x6d, 0x28, 0x2d, 0x4d, 0x22, 0x22, - 0x3e, 0x1e, 0x1f, 0x3f, 0x22, 0x39, 0x5a, 0x1e, 0x1a, 0x1c, 0x7f, 0x01, - 0x01, 0x0b, 0x09, 0x0d, 0x2b, 0x1e, 0x14, 0x28, 0x15, 0x14, 0x2b, 0x17, - 0x30, 0x74, 0x49, 0x2a, 0xfe, 0x20, 0x4c, 0x19, 0x2f, 0x12, 0x12, 0x16, - 0x8b, 0x22, 0x05, 0xaf, 0x97, 0x15, 0x14, 0x0e, 0x27, 0x18, 0x1a, 0x3f, - 0x24, 0xfd, 0x2b, 0x37, 0x54, 0x1a, 0x14, 0x15, 0x15, 0x14, 0x0f, 0x2a, - 0x1a, 0x0f, 0x20, 0x11, 0x01, 0xfc, 0xfe, 0x04, 0x13, 0x23, 0x0f, 0x1c, - 0x2c, 0x0f, 0x0f, 0x11, 0x19, 0x18, 0x1a, 0x50, 0x33, 0x02, 0xd5, 0x1c, - 0x32, 0x16, 0x20, 0x33, 0x12, 0x14, 0x15, 0x01, 0x97, 0x33, 0x32, 0x16, - 0x36, 0x1f, 0x27, 0x5d, 0x36, 0xfd, 0x2b, 0x57, 0x85, 0x2d, 0x2d, 0x2f, - 0x1d, 0x1c, 0x11, 0x2a, 0x1a, 0x19, 0x2a, 0x10, 0x1d, 0x1e, 0x2f, 0x2d, - 0x2d, 0x85, 0x57, 0x02, 0xd5, 0x33, 0x59, 0x25, 0x22, 0x3a, 0x18, 0x32, - 0x33, 0x01, 0x24, 0x13, 0x0e, 0x0e, 0x21, 0x0e, 0x0d, 0x13, 0x1e, 0x1e, - 0x1b, 0x4f, 0x34, 0x24, 0x12, 0x18, 0x25, 0x0d, 0x13, 0x10, 0x0b, 0x09, - 0x09, 0x16, 0x0b, 0x18, 0x28, 0xf1, 0x38, 0x0d, 0x2d, 0x1b, 0x1a, 0x3b, - 0x1d, 0x66, 0x60, 0x26, 0x47, 0x00, 0x00, 0x03, 0x00, 0x67, 0xff, 0xeb, - 0x04, 0x7c, 0x05, 0xde, 0x00, 0x56, 0x00, 0x7a, 0x00, 0x87, 0x00, 0x00, - 0x41, 0x15, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x11, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x35, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x25, 0x33, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x33, 0x35, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x13, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, - 0x23, 0x15, 0x14, 0x06, 0x03, 0x2d, 0x1b, 0x2f, 0x12, 0x1c, 0x1e, 0x12, - 0x10, 0x0f, 0x28, 0x19, 0x18, 0x29, 0x10, 0x0f, 0x15, 0x06, 0x03, 0x04, - 0xba, 0x04, 0x03, 0x06, 0x19, 0x12, 0x0f, 0x26, 0x16, 0x18, 0x27, 0x0e, - 0x11, 0x13, 0x1d, 0x1b, 0x13, 0x2e, 0x1c, 0x4b, 0x7b, 0x2c, 0x2c, 0x31, - 0x2b, 0x28, 0x27, 0x6e, 0x43, 0x2a, 0x4a, 0x1f, 0x17, 0x27, 0x0f, 0x0b, - 0x1a, 0x0f, 0x21, 0x56, 0x34, 0x43, 0x6e, 0x28, 0x27, 0x2b, 0x31, 0x2c, - 0x2d, 0x7b, 0xfd, 0xca, 0x7f, 0x01, 0x01, 0x0e, 0x0c, 0x0e, 0x28, 0x1b, - 0x27, 0x51, 0x31, 0x15, 0x2d, 0x19, 0x20, 0x49, 0x2a, 0x2b, 0x28, 0x27, - 0x45, 0x1f, 0x16, 0x2a, 0x14, 0x30, 0x5b, 0x34, 0x3a, 0x5b, 0x1e, 0x1a, - 0x1b, 0xc9, 0x4c, 0x19, 0x2f, 0x12, 0x12, 0x16, 0x8b, 0x22, 0x04, 0x4d, - 0x97, 0x14, 0x13, 0x1d, 0x65, 0x47, 0xfe, 0x86, 0x34, 0x4f, 0x1a, 0x16, - 0x17, 0x10, 0x10, 0x0e, 0x28, 0x1a, 0x10, 0x24, 0x14, 0x01, 0x0d, 0xfe, - 0xf3, 0x12, 0x21, 0x0f, 0x1f, 0x2e, 0x0f, 0x0d, 0x0d, 0x15, 0x14, 0x1a, - 0x51, 0x36, 0x01, 0x7a, 0x47, 0x64, 0x1d, 0x14, 0x14, 0x97, 0x32, 0x31, - 0x32, 0x92, 0x60, 0xfe, 0x86, 0x57, 0x84, 0x2c, 0x2d, 0x2d, 0x16, 0x15, - 0x12, 0x30, 0x1f, 0x16, 0x26, 0x10, 0x20, 0x20, 0x2d, 0x2d, 0x2c, 0x84, - 0x57, 0x01, 0x7a, 0x60, 0x92, 0x32, 0x31, 0x32, 0x93, 0x12, 0x1a, 0x27, - 0x0d, 0x10, 0x0f, 0x27, 0x17, 0x0a, 0x15, 0x08, 0x0b, 0x0e, 0x7f, 0x0e, - 0x0c, 0x08, 0x14, 0x0a, 0x17, 0x27, 0x1e, 0x1f, 0x1b, 0x4e, 0x33, 0xfe, - 0xea, 0x38, 0x0d, 0x2d, 0x1b, 0x1a, 0x3b, 0x1d, 0x66, 0x60, 0x26, 0x47, - 0x00, 0x02, 0x00, 0x71, 0xff, 0xec, 0x04, 0x85, 0x07, 0x04, 0x00, 0x07, - 0x00, 0x46, 0x00, 0x00, 0x41, 0x15, 0x21, 0x15, 0x33, 0x35, 0x21, 0x27, - 0x13, 0x23, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x03, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x03, 0x23, 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x01, 0x1b, 0x01, 0x0c, 0xa8, 0x01, 0x1d, 0x01, 0x99, - 0xb8, 0x01, 0x11, 0x10, 0x0e, 0x27, 0x18, 0x1d, 0x2e, 0x11, 0x0b, 0x11, - 0x04, 0x03, 0x03, 0xbf, 0x01, 0x03, 0x04, 0x05, 0x14, 0x0e, 0x10, 0x2a, - 0x19, 0x1c, 0x2b, 0x0f, 0x0c, 0x0d, 0x01, 0xb8, 0x01, 0x2b, 0x27, 0x27, - 0x6d, 0x43, 0x2e, 0x50, 0x1f, 0x15, 0x22, 0x0d, 0x0c, 0x1e, 0x13, 0x20, - 0x53, 0x32, 0x42, 0x6d, 0x27, 0x27, 0x2b, 0x07, 0x04, 0x6c, 0x7d, 0x7d, - 0x6c, 0xfe, 0xac, 0xfb, 0x8e, 0x2f, 0x4a, 0x18, 0x15, 0x16, 0x17, 0x16, - 0x0f, 0x28, 0x18, 0x0f, 0x20, 0x11, 0x04, 0x72, 0xfb, 0x8e, 0x13, 0x23, - 0x0f, 0x1b, 0x2a, 0x0f, 0x11, 0x12, 0x1d, 0x1c, 0x18, 0x42, 0x29, 0x04, - 0x72, 0xfb, 0x8e, 0x52, 0x7e, 0x2b, 0x2b, 0x2c, 0x1b, 0x1b, 0x11, 0x2f, - 0x1d, 0x1b, 0x2c, 0x11, 0x1d, 0x1e, 0x2c, 0x2b, 0x2b, 0x7e, 0x52, 0x00, - 0x00, 0x02, 0x00, 0x5f, 0xff, 0xeb, 0x04, 0x7a, 0x05, 0xb0, 0x00, 0x07, - 0x00, 0x40, 0x00, 0x00, 0x41, 0x15, 0x21, 0x15, 0x33, 0x35, 0x21, 0x27, - 0x13, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x03, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x03, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x01, 0x04, 0x01, - 0x0f, 0xa8, 0x01, 0x20, 0x01, 0xa0, 0xb9, 0x17, 0x16, 0x0d, 0x23, 0x14, - 0x2f, 0x40, 0x0c, 0x04, 0x04, 0x01, 0xbf, 0x04, 0x04, 0x0d, 0x40, 0x2e, - 0x1a, 0x2a, 0x0e, 0x0f, 0x10, 0xb9, 0x01, 0x2c, 0x27, 0x27, 0x6e, 0x43, - 0x36, 0x5a, 0x21, 0x0f, 0x18, 0x0a, 0x0b, 0x1c, 0x10, 0x21, 0x58, 0x34, - 0x42, 0x6e, 0x28, 0x27, 0x2b, 0x05, 0xb0, 0x6c, 0x7f, 0x7f, 0x6c, 0xfe, - 0x8b, 0xfd, 0x01, 0x36, 0x4f, 0x17, 0x0f, 0x0f, 0x3b, 0x36, 0x10, 0x25, - 0x14, 0x02, 0xff, 0xfd, 0x01, 0x15, 0x25, 0x11, 0x35, 0x3a, 0x18, 0x18, - 0x17, 0x46, 0x2d, 0x02, 0xff, 0xfd, 0x01, 0x52, 0x7e, 0x2a, 0x2b, 0x2c, - 0x24, 0x24, 0x0f, 0x26, 0x16, 0x18, 0x29, 0x10, 0x21, 0x21, 0x2c, 0x2b, - 0x2a, 0x7e, 0x52, 0x00, 0x00, 0x01, 0x00, 0x97, 0xfe, 0x82, 0x04, 0x65, - 0x05, 0xc5, 0x00, 0x2a, 0x00, 0x00, 0x41, 0x11, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x11, 0x03, 0x2a, 0x6d, 0x58, 0x88, 0x2e, 0x2f, 0x30, 0x29, 0x28, 0x28, - 0x75, 0x4b, 0x47, 0x6c, 0x25, 0x24, 0x26, 0x01, 0xb9, 0x43, 0x3d, 0x3e, - 0xb0, 0x6e, 0x72, 0xb8, 0x41, 0x41, 0x46, 0x42, 0x3e, 0x3d, 0xaf, 0x6e, - 0xfe, 0x82, 0x02, 0x00, 0x4d, 0x42, 0x41, 0xac, 0x5f, 0xf9, 0x5e, 0xab, - 0x41, 0x40, 0x4d, 0x30, 0x2b, 0x2c, 0x7c, 0x4b, 0x6e, 0xb3, 0x40, 0x40, - 0x45, 0x61, 0x54, 0x55, 0xe4, 0x83, 0xf7, 0x79, 0xd5, 0x52, 0x53, 0x6b, - 0x0e, 0xfe, 0x91, 0x00, 0x00, 0x01, 0x00, 0xbf, 0xfe, 0x82, 0x04, 0x3b, - 0x04, 0x4e, 0x00, 0x2d, 0x00, 0x00, 0x41, 0x11, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x11, 0x02, 0xfd, 0x66, 0x4d, 0x6c, 0x23, 0x23, 0x20, - 0x21, 0x23, 0x23, 0x6c, 0x4c, 0x34, 0x5a, 0x21, 0x20, 0x26, 0xaf, 0x3f, - 0x38, 0x38, 0x9a, 0x5b, 0x46, 0x7a, 0x32, 0x36, 0x53, 0x1c, 0x20, 0x21, - 0x33, 0x31, 0x31, 0x91, 0x5f, 0xfe, 0x82, 0x02, 0x00, 0x45, 0x38, 0x37, - 0x8b, 0x47, 0x2a, 0x45, 0x8b, 0x38, 0x37, 0x45, 0x26, 0x21, 0x21, 0x58, - 0x31, 0x53, 0x8f, 0x35, 0x35, 0x3d, 0x23, 0x1f, 0x21, 0x5f, 0x39, 0x3f, - 0x94, 0x4e, 0x2a, 0x62, 0xb3, 0x48, 0x48, 0x61, 0x10, 0xfe, 0x90, 0x00, - 0x00, 0x01, 0x00, 0x76, 0x00, 0x00, 0x04, 0x92, 0x05, 0x3e, 0x00, 0x13, - 0x00, 0x00, 0x41, 0x13, 0x05, 0x37, 0x25, 0x13, 0x23, 0x03, 0x25, 0x07, - 0x05, 0x03, 0x25, 0x07, 0x05, 0x03, 0x33, 0x13, 0x05, 0x37, 0x02, 0x5a, - 0xd0, 0x01, 0x20, 0x48, 0xfe, 0xdb, 0xe7, 0xa5, 0xbc, 0xfe, 0xdd, 0x46, - 0x01, 0x22, 0xcd, 0xfe, 0xdb, 0x44, 0x01, 0x21, 0xe1, 0xa8, 0xb6, 0x01, - 0x23, 0x44, 0x01, 0xbe, 0x01, 0x6d, 0xaa, 0x7a, 0xab, 0x01, 0x98, 0xfe, - 0xb5, 0xab, 0x7d, 0xab, 0xfe, 0x93, 0xab, 0x7b, 0xab, 0xfe, 0x72, 0x01, - 0x41, 0xaa, 0x7b, 0x00, 0x00, 0x01, 0x00, 0xd1, 0x04, 0xa6, 0x03, 0x91, - 0x05, 0xfc, 0x00, 0x07, 0x00, 0x00, 0x41, 0x21, 0x35, 0x27, 0x17, 0x21, - 0x07, 0x17, 0x01, 0x77, 0x02, 0x1a, 0xa5, 0x01, 0xfd, 0xe5, 0x01, 0xa6, - 0x05, 0x23, 0xd8, 0x01, 0x6c, 0xe9, 0x01, 0x00, 0x00, 0x01, 0x00, 0xfc, - 0x05, 0x17, 0x03, 0xf0, 0x06, 0x15, 0x00, 0x23, 0x00, 0x00, 0x41, 0x23, - 0x15, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x33, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x26, - 0x2a, 0x2c, 0x3d, 0x68, 0x2d, 0x24, 0x43, 0x1e, 0x22, 0x3e, 0x1f, 0x1b, - 0x2d, 0x0f, 0x0d, 0x0e, 0x80, 0x1c, 0x1b, 0x1f, 0x5d, 0x3b, 0x28, 0x48, - 0x23, 0x24, 0x48, 0x27, 0x28, 0x5a, 0x05, 0x96, 0x7e, 0x15, 0x10, 0x0d, - 0x1d, 0x0d, 0x0e, 0x13, 0x0f, 0x0f, 0x0d, 0x27, 0x1a, 0x12, 0x24, 0x33, - 0x4e, 0x1b, 0x1f, 0x1f, 0x13, 0x0e, 0x0e, 0x21, 0x0e, 0x0e, 0x13, 0x00, - 0x00, 0x01, 0x01, 0xc3, 0x05, 0x16, 0x02, 0xb2, 0x06, 0x57, 0x00, 0x05, - 0x00, 0x00, 0x41, 0x17, 0x37, 0x27, 0x37, 0x23, 0x01, 0xc3, 0xa1, 0x4e, - 0x3c, 0x01, 0xb4, 0x05, 0xdc, 0xc6, 0x41, 0x74, 0x8c, 0x00, 0x00, 0x01, - 0x02, 0x3c, 0x05, 0x16, 0x03, 0x2a, 0x06, 0x57, 0x00, 0x05, 0x00, 0x00, - 0x41, 0x37, 0x35, 0x23, 0x15, 0x07, 0x02, 0x88, 0xa2, 0xb4, 0x3a, 0x05, - 0x16, 0xc6, 0x7b, 0x8c, 0x74, 0x00, 0x00, 0x08, 0xfe, 0xab, 0xfe, 0xc4, - 0x06, 0x47, 0x05, 0xaf, 0x00, 0x13, 0x00, 0x27, 0x00, 0x3b, 0x00, 0x4f, - 0x00, 0x63, 0x00, 0x77, 0x00, 0x8b, 0x00, 0x9f, 0x00, 0x00, 0x41, 0x33, - 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0x33, 0x34, 0x36, 0x33, 0x32, - 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x13, 0x33, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x33, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x03, 0x33, - 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0x33, 0x34, 0x36, 0x33, 0x32, - 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x01, 0x33, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x33, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x03, 0x33, - 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x13, 0x33, 0x34, 0x36, 0x33, 0x32, - 0x16, 0x15, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x01, 0x98, 0x71, 0x2a, 0x37, 0x36, 0x2d, 0x70, 0x1e, 0x1b, - 0x1c, 0x4e, 0x30, 0x30, 0x4e, 0x1b, 0x1c, 0x1d, 0x02, 0x4f, 0x72, 0x2b, - 0x35, 0x36, 0x2d, 0x71, 0x1e, 0x1c, 0x1c, 0x4e, 0x30, 0x30, 0x4e, 0x1b, - 0x1b, 0x1e, 0xbb, 0x71, 0x2c, 0x35, 0x36, 0x2d, 0x70, 0x1e, 0x1b, 0x1c, - 0x4e, 0x30, 0x30, 0x4e, 0x1b, 0x1b, 0x1e, 0xc5, 0x71, 0x2c, 0x35, 0x36, - 0x2d, 0x70, 0x1e, 0x1b, 0x1c, 0x4e, 0x30, 0x30, 0x4e, 0x1b, 0x1b, 0x1e, - 0xfd, 0xc0, 0x71, 0x2c, 0x35, 0x36, 0x2d, 0x70, 0x1e, 0x1b, 0x1c, 0x4e, - 0x30, 0x30, 0x4e, 0x1b, 0x1c, 0x1d, 0xfd, 0xbe, 0x72, 0x2a, 0x37, 0x36, - 0x2d, 0x70, 0x1e, 0x1b, 0x1c, 0x4e, 0x30, 0x30, 0x4e, 0x1b, 0x1c, 0x1e, - 0xb0, 0x71, 0x2d, 0x34, 0x36, 0x2d, 0x70, 0x1e, 0x1b, 0x1c, 0x4e, 0x30, - 0x30, 0x4d, 0x1b, 0x1c, 0x1e, 0xa6, 0x72, 0x2c, 0x34, 0x36, 0x2d, 0x71, - 0x1e, 0x1c, 0x1c, 0x4e, 0x30, 0x30, 0x4d, 0x1b, 0x1c, 0x1e, 0x04, 0xf3, - 0x27, 0x3e, 0x3d, 0x28, 0x29, 0x45, 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, - 0x45, 0xfe, 0xc2, 0x27, 0x3e, 0x3d, 0x28, 0x29, 0x45, 0x19, 0x19, 0x1c, - 0x1c, 0x19, 0x19, 0x45, 0xfd, 0xe0, 0x27, 0x3e, 0x3d, 0x28, 0x29, 0x45, - 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x45, 0xfd, 0xd0, 0x27, 0x3e, 0x3d, - 0x28, 0x29, 0x45, 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x45, 0xfe, 0xbb, - 0x27, 0x3e, 0x3d, 0x28, 0x2a, 0x45, 0x19, 0x18, 0x1c, 0x1c, 0x18, 0x19, - 0x45, 0x04, 0xf0, 0x27, 0x3e, 0x3d, 0x28, 0x29, 0x45, 0x19, 0x19, 0x1c, - 0x1c, 0x19, 0x19, 0x45, 0xfd, 0xe0, 0x28, 0x3d, 0x3d, 0x28, 0x29, 0x45, - 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x45, 0xfd, 0xd0, 0x28, 0x3d, 0x3d, - 0x28, 0x29, 0x45, 0x19, 0x19, 0x1c, 0x1c, 0x19, 0x19, 0x45, 0x00, 0x08, - 0xfe, 0xb4, 0xfe, 0x63, 0x05, 0xf4, 0x05, 0xc6, 0x00, 0x04, 0x00, 0x09, - 0x00, 0x0e, 0x00, 0x13, 0x00, 0x18, 0x00, 0x1d, 0x00, 0x22, 0x00, 0x27, - 0x00, 0x00, 0x45, 0x23, 0x03, 0x33, 0x13, 0x03, 0x33, 0x13, 0x23, 0x03, - 0x01, 0x15, 0x05, 0x35, 0x25, 0x05, 0x35, 0x25, 0x15, 0x05, 0x01, 0x17, - 0x25, 0x27, 0x05, 0x01, 0x27, 0x05, 0x17, 0x25, 0x03, 0x37, 0x03, 0x07, - 0x13, 0x01, 0x07, 0x13, 0x37, 0x03, 0x02, 0xb7, 0x89, 0x46, 0x60, 0x7a, - 0xce, 0x88, 0x46, 0x60, 0x7a, 0x02, 0xb2, 0x01, 0x5a, 0xfe, 0xb3, 0xfb, - 0x67, 0xfe, 0xa6, 0x01, 0x4d, 0x03, 0xa9, 0x61, 0x01, 0x26, 0x44, 0xfe, - 0xbf, 0xfd, 0x52, 0x61, 0xfe, 0xda, 0x45, 0x01, 0x40, 0x8a, 0x62, 0xc6, - 0x41, 0x94, 0x03, 0xd3, 0x61, 0xc5, 0x42, 0x95, 0x3c, 0xfe, 0x9f, 0x01, - 0x53, 0x04, 0xb0, 0x01, 0x60, 0xfe, 0xae, 0xfe, 0x03, 0x8b, 0x47, 0x62, - 0x7c, 0xd2, 0x8b, 0x47, 0x62, 0x7c, 0x02, 0x45, 0x63, 0xc8, 0x44, 0x99, - 0xfc, 0x1b, 0x63, 0xc8, 0x45, 0x99, 0x03, 0x58, 0x62, 0x01, 0x2b, 0x45, - 0xfe, 0xba, 0xfd, 0x43, 0x63, 0xfe, 0xd5, 0x47, 0x01, 0x45, 0x00, 0x03, - 0x00, 0xbf, 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x14, - 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x07, 0x01, 0x25, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, - 0x33, 0x11, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x04, 0x31, 0xfe, 0x94, 0x83, 0x01, 0x6b, 0xfd, - 0xcb, 0x01, 0x1f, 0x62, 0xaf, 0x42, 0x42, 0x4d, 0x4d, 0x42, 0x42, 0xaf, - 0x62, 0xfe, 0x28, 0xb9, 0x01, 0x1f, 0x40, 0x6d, 0x28, 0x27, 0x2d, 0x2d, - 0x28, 0x28, 0x6c, 0x40, 0x01, 0xd3, 0x01, 0xec, 0x46, 0xfe, 0x14, 0xbb, - 0x01, 0x3a, 0x37, 0x37, 0xa1, 0x69, 0x69, 0xa2, 0x37, 0x37, 0x3a, 0x02, - 0xfa, 0x50, 0x02, 0xe0, 0x02, 0x38, 0x01, 0x28, 0x25, 0x25, 0x6a, 0x42, - 0x42, 0x67, 0x24, 0x24, 0x27, 0x01, 0x00, 0x03, 0x00, 0xad, 0xfe, 0x60, - 0x04, 0x3f, 0x04, 0x4e, 0x00, 0x03, 0x00, 0x21, 0x00, 0x3b, 0x00, 0x00, - 0x65, 0x01, 0x07, 0x01, 0x13, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x27, 0x23, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x36, 0xfe, 0x96, 0x71, 0x01, 0x6b, 0x79, 0x38, 0x36, 0x36, 0xa0, - 0x68, 0x3c, 0x68, 0x2a, 0x1d, 0x33, 0x16, 0x09, 0xa9, 0xb9, 0x14, 0x2f, - 0x1a, 0x2c, 0x69, 0x3e, 0x66, 0x9f, 0x36, 0x36, 0x38, 0xb9, 0x1d, 0x1e, - 0x25, 0x74, 0x54, 0x2c, 0x48, 0x1e, 0x20, 0x33, 0x13, 0x13, 0x32, 0x1f, - 0x1e, 0x49, 0x2b, 0x4e, 0x70, 0x25, 0x24, 0x23, 0x02, 0x01, 0x76, 0x5e, - 0xfe, 0x8b, 0x02, 0x6c, 0x15, 0x79, 0xcb, 0x49, 0x49, 0x52, 0x19, 0x19, - 0x11, 0x2c, 0x1b, 0x76, 0xfa, 0x26, 0x02, 0x08, 0x17, 0x25, 0x0f, 0x18, - 0x19, 0x54, 0x4a, 0x4a, 0xc9, 0x89, 0x15, 0x48, 0x86, 0x34, 0x3f, 0x4d, - 0x13, 0x11, 0x13, 0x38, 0x22, 0x02, 0x09, 0x22, 0x38, 0x13, 0x12, 0x15, - 0x40, 0x36, 0x37, 0x8f, 0x00, 0x01, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x47, - 0x06, 0xff, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x04, 0x47, 0xb9, 0xfd, 0x28, 0xba, 0x05, 0x18, 0x01, 0xe7, - 0xfe, 0xb1, 0xfa, 0x50, 0x05, 0x18, 0x00, 0x01, 0x00, 0xb6, 0x00, 0x00, - 0x04, 0x31, 0x05, 0x77, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x33, 0x11, 0x04, 0x31, 0xba, 0xfd, 0x3f, 0xba, 0x03, 0xa1, - 0x01, 0xd6, 0xfe, 0xc3, 0xfb, 0xc6, 0x03, 0xa1, 0x00, 0x01, 0x00, 0xb9, - 0xfe, 0xe0, 0x04, 0x7f, 0x05, 0xb0, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x17, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x11, 0x04, 0x34, 0xfc, 0x85, - 0xba, 0xb8, 0x60, 0x93, 0x32, 0x3a, 0x3b, 0x01, 0x1e, 0x22, 0x22, 0x6f, - 0x51, 0x02, 0x73, 0xb1, 0x3c, 0x3c, 0x3d, 0x50, 0x4c, 0x4d, 0xdd, 0x8e, - 0xb8, 0x05, 0x18, 0x98, 0xfa, 0x50, 0x02, 0xa0, 0x30, 0x2d, 0x35, 0xa3, - 0x6a, 0x5a, 0x93, 0x34, 0x34, 0x39, 0x93, 0x49, 0x45, 0x45, 0xcb, 0x83, - 0x86, 0xd6, 0x4b, 0x4a, 0x50, 0x01, 0xd6, 0x00, 0x00, 0x01, 0x00, 0xb8, - 0xfe, 0xe4, 0x04, 0x52, 0x04, 0x3a, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, 0x11, 0x04, 0x2b, 0xfc, 0x8d, - 0xba, 0xda, 0x47, 0x79, 0x2d, 0x2d, 0x33, 0x1c, 0x1e, 0x1e, 0x60, 0x44, - 0x30, 0x67, 0x94, 0x2f, 0x2f, 0x2c, 0x4f, 0x45, 0x46, 0xbd, 0x6f, 0xda, - 0x03, 0xa1, 0x99, 0xfb, 0xc6, 0x01, 0xe4, 0x29, 0x27, 0x28, 0x76, 0x4c, - 0x38, 0x60, 0x27, 0x28, 0x3b, 0x12, 0x92, 0x13, 0x67, 0x42, 0x42, 0x8e, - 0x3a, 0x71, 0xb1, 0x3d, 0x3c, 0x41, 0x01, 0x1b, 0x00, 0x01, 0x00, 0xae, - 0x00, 0x00, 0x04, 0xc4, 0x05, 0xb0, 0x00, 0x14, 0x00, 0x00, 0x41, 0x23, - 0x01, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, - 0x15, 0x33, 0x35, 0x33, 0x01, 0x33, 0x01, 0x04, 0x98, 0xd8, 0xfe, 0xd7, - 0x36, 0x95, 0x65, 0xb9, 0xb9, 0x65, 0x95, 0x36, 0x01, 0x46, 0xe7, 0xfe, - 0x85, 0x05, 0xb0, 0xfd, 0x7b, 0x01, 0x01, 0xfe, 0xff, 0x02, 0x85, 0xfa, - 0x50, 0x02, 0x94, 0xf5, 0xf5, 0xfd, 0x6c, 0x03, 0x01, 0x00, 0x00, 0x01, - 0x00, 0xa3, 0x00, 0x00, 0x04, 0x7e, 0x04, 0x3a, 0x00, 0x14, 0x00, 0x00, - 0x41, 0x23, 0x01, 0x23, 0x35, 0x23, 0x15, 0x23, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x01, 0x33, 0x01, 0x04, 0x59, 0xdf, - 0xfe, 0xfd, 0x2c, 0x94, 0x5a, 0xba, 0xba, 0x5a, 0x94, 0x33, 0x01, 0x16, - 0xea, 0xfe, 0x89, 0x04, 0x3a, 0xfe, 0x36, 0xd5, 0xd5, 0x01, 0xca, 0xfb, - 0xc6, 0x01, 0xcd, 0xc2, 0xc2, 0xfe, 0x33, 0x02, 0x38, 0x00, 0x00, 0x01, - 0x00, 0x2d, 0x00, 0x00, 0x04, 0xa6, 0x05, 0xb0, 0x00, 0x0e, 0x00, 0x00, - 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x33, 0x11, 0x02, 0x95, 0x01, 0x2f, 0xe2, 0xfe, 0x93, 0x01, 0x45, - 0xd3, 0xfe, 0xe2, 0x62, 0xfe, 0x02, 0x01, 0x46, 0xb8, 0x02, 0x93, 0xfd, - 0x6d, 0x02, 0xef, 0x02, 0xc1, 0xfd, 0x7a, 0x02, 0x86, 0x98, 0xfa, 0xe8, - 0x02, 0x93, 0x00, 0x01, 0x00, 0x38, 0x00, 0x00, 0x04, 0xb1, 0x04, 0x3a, - 0x00, 0x0e, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x03, 0x23, - 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x02, 0xbc, 0x01, 0x0b, 0xea, - 0xfe, 0x94, 0x01, 0x49, 0xe0, 0xf9, 0x7f, 0xfe, 0x02, 0x01, 0x45, 0xb9, - 0x01, 0xcd, 0xfe, 0x33, 0x02, 0x38, 0x02, 0x02, 0xfe, 0x36, 0x01, 0xca, - 0x99, 0xfc, 0x5f, 0x01, 0xcd, 0x00, 0x00, 0x01, 0x00, 0x72, 0x00, 0x00, - 0x04, 0x9a, 0x05, 0xb0, 0x00, 0x0d, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, 0x01, 0x2b, - 0xb9, 0xb9, 0x01, 0x73, 0xb8, 0x01, 0x44, 0xfe, 0x04, 0x03, 0x1f, 0x02, - 0x91, 0xfa, 0x50, 0x02, 0x87, 0xfd, 0x79, 0x05, 0x18, 0x98, 0xfd, 0x6f, - 0x00, 0x01, 0x00, 0x6e, 0x00, 0x00, 0x04, 0x9c, 0x04, 0x3a, 0x00, 0x0d, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, - 0x21, 0x35, 0x21, 0x11, 0x01, 0x27, 0xb9, 0xb9, 0x01, 0x7c, 0xb9, 0x01, - 0x40, 0xfe, 0x07, 0x02, 0x65, 0x01, 0xd5, 0xfb, 0xc6, 0x01, 0xce, 0xfe, - 0x32, 0x03, 0xa1, 0x99, 0xfe, 0x2b, 0x00, 0x01, 0x00, 0x6d, 0xfe, 0xdf, - 0x04, 0x9a, 0x05, 0xb0, 0x00, 0x2f, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x17, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x02, 0xe1, 0xfd, 0x8c, - 0xb8, 0x01, 0x03, 0xb9, 0x03, 0x26, 0x46, 0x1b, 0x21, 0x30, 0x0e, 0x0b, - 0x0b, 0x01, 0x08, 0x09, 0x0c, 0x26, 0x1e, 0x14, 0x35, 0x20, 0x02, 0x36, - 0x5e, 0x27, 0x3d, 0x54, 0x16, 0x10, 0x0f, 0x18, 0x18, 0x19, 0x4a, 0x32, - 0x31, 0x7c, 0x45, 0x03, 0x41, 0x02, 0x6f, 0xfa, 0x50, 0x05, 0x18, 0xfa, - 0xe8, 0x02, 0x9e, 0x01, 0x18, 0x16, 0x1a, 0x55, 0x37, 0x2b, 0x65, 0x39, - 0x39, 0x69, 0x2b, 0x36, 0x4f, 0x18, 0x12, 0x12, 0x93, 0x17, 0x18, 0x25, - 0x79, 0x54, 0x36, 0x81, 0x49, 0x54, 0x95, 0x3e, 0x41, 0x68, 0x24, 0x25, - 0x27, 0x01, 0x00, 0x01, 0x00, 0x74, 0xfe, 0xe5, 0x04, 0x7c, 0x04, 0x3a, - 0x00, 0x23, 0x00, 0x00, 0x73, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x23, 0x11, 0x21, 0x74, 0xb9, 0xe7, 0xb9, 0x08, 0x36, 0x57, 0x1f, - 0x1f, 0x22, 0x01, 0x14, 0x17, 0x18, 0x4d, 0x39, 0x30, 0x55, 0x7b, 0x2a, - 0x2d, 0x29, 0x02, 0x3e, 0x38, 0x38, 0x9c, 0x5d, 0x08, 0xfd, 0xa7, 0x03, - 0xa1, 0xfc, 0x5f, 0x01, 0xe3, 0x2b, 0x28, 0x28, 0x75, 0x49, 0x36, 0x60, - 0x27, 0x28, 0x3c, 0x12, 0x92, 0x12, 0x5e, 0x3c, 0x45, 0x97, 0x3d, 0x6d, - 0xb0, 0x3e, 0x3e, 0x42, 0x01, 0xb5, 0x00, 0x02, 0x00, 0x68, 0xff, 0xe2, - 0x04, 0x50, 0x05, 0xc5, 0x00, 0x4d, 0x00, 0x67, 0x00, 0x00, 0x45, 0x35, - 0x22, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x27, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x16, 0x16, 0x01, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x04, 0x50, 0x2c, 0x4e, 0x23, 0x1a, - 0x2c, 0x11, 0x1c, 0x1e, 0x01, 0x2b, 0x28, 0x28, 0x73, 0x48, 0x48, 0x73, - 0x28, 0x28, 0x2b, 0x1b, 0x1a, 0x18, 0x44, 0x2b, 0x10, 0x20, 0x11, 0x2e, - 0x4f, 0x21, 0x26, 0x3b, 0x13, 0x10, 0x11, 0x07, 0x08, 0x0b, 0x21, 0x17, - 0x0f, 0x23, 0x14, 0x01, 0x32, 0x56, 0x24, 0x2e, 0x44, 0x14, 0x0f, 0x0f, - 0x18, 0x17, 0x1e, 0x62, 0x41, 0x35, 0x7f, 0x48, 0x3c, 0x6d, 0x30, 0x3f, - 0x92, 0xfe, 0x94, 0x0f, 0x10, 0x10, 0x2e, 0x20, 0x1f, 0x2f, 0x10, 0x0f, - 0x0f, 0x13, 0x13, 0x0d, 0x23, 0x15, 0x1f, 0x32, 0x12, 0x15, 0x16, 0x1e, - 0x9d, 0x0d, 0x0c, 0x21, 0x4c, 0x29, 0x46, 0xa1, 0x58, 0x01, 0x68, 0x68, - 0xb4, 0x43, 0x42, 0x4c, 0x4e, 0x43, 0x43, 0xb4, 0x65, 0xfe, 0xad, 0x51, - 0x94, 0x40, 0x3b, 0x67, 0x2b, 0x04, 0x04, 0x1e, 0x1c, 0x21, 0x61, 0x3c, - 0x34, 0x78, 0x41, 0x01, 0x19, 0x37, 0x65, 0x2c, 0x3a, 0x5d, 0x1d, 0x11, - 0x14, 0x9e, 0x26, 0x22, 0x2a, 0x84, 0x50, 0x38, 0x7f, 0x44, 0xfe, 0xe9, - 0x4e, 0x92, 0x41, 0x54, 0x8d, 0x2f, 0x26, 0x2b, 0x1d, 0x1b, 0x1f, 0x21, - 0x02, 0x9d, 0x01, 0x58, 0x43, 0x78, 0x2e, 0x2d, 0x36, 0x33, 0x2d, 0x2d, - 0x7a, 0x45, 0xfe, 0x95, 0x45, 0x80, 0x37, 0x24, 0x41, 0x1b, 0x1f, 0x4c, - 0x2c, 0x35, 0x7d, 0x00, 0x00, 0x02, 0x00, 0x5c, 0xff, 0xeb, 0x04, 0x8b, - 0x04, 0x4f, 0x00, 0x4d, 0x00, 0x6d, 0x00, 0x00, 0x45, 0x35, 0x22, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x35, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x16, 0x16, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x04, 0x8b, - 0x30, 0x58, 0x28, 0x16, 0x25, 0x0f, 0x1a, 0x1c, 0x11, 0x11, 0x13, 0x37, - 0x26, 0x23, 0x57, 0x32, 0x32, 0x5d, 0x1d, 0x25, 0x31, 0x12, 0x14, 0x15, - 0x26, 0x24, 0x17, 0x3d, 0x25, 0x16, 0x2d, 0x18, 0x48, 0x72, 0x27, 0x27, - 0x2a, 0x16, 0x15, 0x15, 0x3e, 0x28, 0x3f, 0x6d, 0x2a, 0x1f, 0x32, 0x11, - 0x14, 0x14, 0x21, 0x1e, 0x1d, 0x55, 0x33, 0x37, 0x85, 0x4c, 0x4a, 0x83, - 0x39, 0x45, 0x9e, 0xfe, 0x69, 0x08, 0x08, 0x08, 0x1b, 0x14, 0x0c, 0x1e, - 0x12, 0x14, 0x21, 0x0d, 0x13, 0x1c, 0x08, 0x06, 0x06, 0x01, 0x12, 0x11, - 0x0d, 0x23, 0x16, 0x26, 0x3b, 0x13, 0x15, 0x15, 0x0c, 0x9d, 0x0b, 0x0a, - 0x1b, 0x3b, 0x20, 0x3b, 0x86, 0x49, 0x69, 0x3a, 0x6d, 0x30, 0x36, 0x58, - 0x1d, 0x1e, 0x20, 0x1f, 0x1a, 0x21, 0x43, 0x2b, 0x30, 0x74, 0x3f, 0x68, - 0x4e, 0x8e, 0x3d, 0x28, 0x48, 0x1f, 0x06, 0x06, 0x43, 0x3b, 0x3a, 0x9e, - 0x5b, 0x3c, 0x42, 0x73, 0x2b, 0x2a, 0x31, 0x9e, 0x2f, 0x2a, 0x1f, 0x50, - 0x2d, 0x33, 0x74, 0x3f, 0x3a, 0x54, 0x9a, 0x41, 0x3f, 0x68, 0x25, 0x28, - 0x2b, 0x23, 0x20, 0x1c, 0x1d, 0x02, 0x45, 0x6c, 0x28, 0x49, 0x1f, 0x21, - 0x35, 0x10, 0x0b, 0x0b, 0x10, 0x0f, 0x13, 0x43, 0x27, 0x1e, 0x43, 0x23, - 0x6c, 0x36, 0x63, 0x2b, 0x20, 0x39, 0x18, 0x1c, 0x45, 0x29, 0x29, 0x61, - 0x00, 0x01, 0x00, 0x39, 0xfe, 0xa1, 0x04, 0xb6, 0x05, 0xb0, 0x00, 0x0f, - 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x33, 0x35, 0x21, 0x15, 0x01, 0x46, 0x02, 0xb9, 0xa5, 0x12, - 0x91, 0xb9, 0xfe, 0x93, 0xee, 0xfd, 0x4c, 0x05, 0x18, 0xfa, 0xe8, 0xfe, - 0xa1, 0x01, 0xfb, 0x05, 0x14, 0xfa, 0xe7, 0x04, 0x81, 0x97, 0x97, 0x00, - 0x00, 0x01, 0x00, 0x34, 0xfe, 0xbf, 0x04, 0x8b, 0x04, 0x3a, 0x00, 0x0f, - 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x13, 0x23, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x33, 0x35, 0x21, 0x15, 0x01, 0x1c, 0x02, 0xb7, 0xa6, 0x12, - 0x80, 0xb9, 0xfe, 0x83, 0xe4, 0xfd, 0x7b, 0x03, 0xa3, 0xfc, 0x5d, 0xfe, - 0xbf, 0x01, 0xd8, 0x03, 0xa3, 0xfc, 0x5d, 0x03, 0x0c, 0x97, 0x97, 0x00, - 0x00, 0x02, 0x00, 0xab, 0x00, 0x00, 0x04, 0x27, 0x05, 0xb0, 0x00, 0x03, - 0x00, 0x23, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x23, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, - 0x23, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x11, 0x33, 0x02, 0xa6, 0x95, 0x02, 0x16, 0xb9, 0x20, 0x41, - 0x21, 0x27, 0x54, 0x2e, 0x39, 0x54, 0x1b, 0x1c, 0x1b, 0xb9, 0x37, 0x34, - 0x34, 0x98, 0x61, 0x30, 0x51, 0x24, 0x23, 0x42, 0x21, 0xb9, 0x01, 0x35, - 0x02, 0xbc, 0xfd, 0x44, 0x04, 0x7b, 0xfd, 0x45, 0x0b, 0x12, 0x07, 0x08, - 0x09, 0x1d, 0x23, 0x22, 0x71, 0x55, 0x01, 0xc8, 0xfe, 0x38, 0x79, 0xaa, - 0x36, 0x36, 0x31, 0x07, 0x07, 0x07, 0x12, 0x0c, 0xfd, 0xa5, 0x00, 0x02, - 0x00, 0x92, 0x00, 0x00, 0x04, 0x2c, 0x04, 0x3a, 0x00, 0x03, 0x00, 0x20, - 0x00, 0x00, 0x65, 0x11, 0x23, 0x11, 0x05, 0x11, 0x23, 0x11, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, - 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x11, 0x02, - 0xaf, 0x96, 0x02, 0x13, 0xb9, 0x1a, 0x35, 0x1b, 0x2d, 0x60, 0x33, 0x40, - 0x61, 0x20, 0x1e, 0x1f, 0xb9, 0x3e, 0x3a, 0x39, 0xa2, 0x64, 0x55, 0x91, - 0x44, 0xd3, 0x02, 0x36, 0xfd, 0xca, 0xd3, 0x04, 0x3a, 0xfd, 0xe9, 0x06, - 0x0b, 0x04, 0x07, 0x07, 0x20, 0x22, 0x1f, 0x5e, 0x40, 0x01, 0x3b, 0xfe, - 0xc5, 0x67, 0x99, 0x32, 0x33, 0x32, 0x12, 0x11, 0xfe, 0x75, 0x00, 0x01, - 0x00, 0xe3, 0x00, 0x00, 0x04, 0x5f, 0x05, 0xb0, 0x00, 0x19, 0x00, 0x00, - 0x73, 0x33, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x11, 0x33, 0x13, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x11, 0x23, 0xe3, 0xb9, 0x47, 0x90, 0x53, 0x39, 0x54, 0x1c, 0x1b, 0x1b, - 0xb9, 0x01, 0x37, 0x34, 0x35, 0x98, 0x61, 0x61, 0x88, 0x41, 0xb9, 0x02, - 0xba, 0x18, 0x1d, 0x1d, 0x22, 0x23, 0x71, 0x55, 0xfe, 0x39, 0x01, 0xc7, - 0x79, 0xaa, 0x36, 0x36, 0x31, 0x1c, 0x18, 0x02, 0x5d, 0x00, 0x00, 0x02, - 0x00, 0x26, 0xff, 0xea, 0x04, 0x89, 0x05, 0xc3, 0x00, 0x39, 0x00, 0x4e, - 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x05, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x26, 0x21, 0x21, - 0x20, 0x61, 0x41, 0x43, 0x41, 0x41, 0xbf, 0x7c, 0x6f, 0xa4, 0x24, 0x2f, - 0x16, 0x35, 0x20, 0x21, 0x4d, 0x2f, 0x58, 0x7c, 0x27, 0x28, 0x24, 0x02, - 0xa6, 0x10, 0x10, 0x15, 0x45, 0x31, 0x2e, 0x79, 0x49, 0x3f, 0x74, 0x31, - 0x32, 0x50, 0x1d, 0x1f, 0x22, 0x17, 0x25, 0x0d, 0x13, 0x12, 0x01, 0x01, - 0x28, 0x17, 0x15, 0x10, 0x2b, 0x1b, 0x1d, 0x44, 0x28, 0x29, 0x40, 0x18, - 0x1e, 0x27, 0x0c, 0x08, 0x08, 0x04, 0x39, 0x4b, 0x7e, 0x2f, 0x30, 0x3f, - 0x0c, 0x90, 0x80, 0xd7, 0x4e, 0x4f, 0x58, 0x42, 0x22, 0x88, 0x0e, 0x1e, - 0x0d, 0x0d, 0x10, 0x46, 0x3c, 0x3b, 0x9f, 0x5a, 0x88, 0xbc, 0x53, 0x90, - 0x3c, 0x4b, 0x72, 0x26, 0x23, 0x24, 0x27, 0x24, 0x24, 0x69, 0x41, 0x45, - 0xa9, 0x63, 0x05, 0x0a, 0x20, 0x15, 0x1f, 0x55, 0x32, 0xf7, 0x10, 0x5b, - 0x97, 0x39, 0x29, 0x40, 0x16, 0x17, 0x18, 0x17, 0x15, 0x1a, 0x50, 0x32, - 0x27, 0x5a, 0x30, 0x70, 0x00, 0x02, 0x00, 0x26, 0xff, 0xec, 0x04, 0x85, - 0x04, 0x4e, 0x00, 0x2c, 0x00, 0x3a, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x26, 0x26, 0x27, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x13, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0xfe, 0x89, 0xb0, 0x30, - 0x4a, 0x30, 0x8b, 0x64, 0x45, 0x69, 0x24, 0x24, 0x26, 0x03, 0x02, 0xa6, - 0x33, 0x34, 0x34, 0x9f, 0x6b, 0x50, 0x91, 0x3a, 0x3a, 0x50, 0x0f, 0x3b, - 0x36, 0x01, 0x94, 0x1b, 0x1b, 0x20, 0x64, 0x45, 0x42, 0x3d, 0x3d, 0xaf, - 0x50, 0x3d, 0x59, 0x1d, 0x1d, 0x1c, 0xfe, 0x19, 0x09, 0x2c, 0x20, 0x20, - 0x54, 0x14, 0x55, 0x32, 0x7c, 0x2e, 0x3f, 0x3a, 0x32, 0x32, 0x86, 0x49, - 0x02, 0x78, 0x69, 0xb2, 0x41, 0x40, 0x49, 0x40, 0x3a, 0x3b, 0xa3, 0x61, - 0x15, 0x6b, 0x4d, 0x42, 0x6e, 0x2b, 0x31, 0x40, 0x0c, 0x01, 0x75, 0xc6, - 0x48, 0x49, 0x51, 0x03, 0xca, 0x2e, 0x26, 0x27, 0x64, 0x36, 0x18, 0x40, - 0x6e, 0x29, 0x28, 0x2e, 0x00, 0x01, 0x00, 0xc8, 0xfe, 0xda, 0x04, 0x8c, - 0x05, 0xb0, 0x00, 0x26, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x23, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x17, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x02, 0xc9, 0x01, - 0xb8, 0xd7, 0xfe, 0x65, 0x8e, 0xb9, 0xb9, 0xe0, 0x5d, 0x8b, 0x2e, 0x2d, - 0x2e, 0x01, 0x0c, 0x0d, 0x0e, 0x31, 0x23, 0x1f, 0x51, 0x33, 0x02, 0x73, - 0xaf, 0x3b, 0x3b, 0x3d, 0x3c, 0x39, 0x39, 0xa8, 0x6a, 0x03, 0x35, 0x02, - 0x7b, 0xfd, 0x8c, 0x02, 0x74, 0xfa, 0x50, 0x02, 0x9a, 0x38, 0x35, 0x35, - 0x9a, 0x63, 0x3a, 0x67, 0x2b, 0x31, 0x4a, 0x1a, 0x16, 0x18, 0x92, 0x49, - 0x46, 0x45, 0xca, 0x83, 0x77, 0xc5, 0x49, 0x49, 0x5d, 0x0f, 0x00, 0x01, - 0x00, 0xb4, 0xfe, 0xfe, 0x04, 0x3c, 0x04, 0x3a, 0x00, 0x22, 0x00, 0x00, - 0x41, 0x01, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x02, - 0xaf, 0x01, 0x8d, 0xe0, 0xfe, 0x88, 0x77, 0xb9, 0xb9, 0xc7, 0x47, 0x77, - 0x2c, 0x2b, 0x32, 0x19, 0x1c, 0x1c, 0x57, 0x3f, 0x31, 0x61, 0x8b, 0x2c, - 0x2c, 0x2a, 0x39, 0x33, 0x33, 0x8f, 0x02, 0x64, 0x01, 0xd6, 0xfe, 0x36, - 0x01, 0xca, 0xfb, 0xc6, 0x01, 0xcd, 0x20, 0x22, 0x23, 0x6d, 0x4c, 0x33, - 0x5b, 0x24, 0x25, 0x38, 0x10, 0x92, 0x12, 0x62, 0x3f, 0x3e, 0x88, 0x38, - 0x60, 0x96, 0x37, 0x36, 0x44, 0x00, 0x00, 0x01, 0x00, 0xb6, 0xfe, 0x4b, - 0x04, 0x19, 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, - 0x11, 0x21, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x23, - 0x11, 0x21, 0x01, 0x6f, 0xb9, 0xb9, 0x01, 0xf1, 0x43, 0x41, 0x06, 0x1a, - 0x0e, 0x0f, 0x1b, 0x08, 0x0e, 0x1d, 0x34, 0x1d, 0x4c, 0x76, 0x29, 0x28, - 0x2a, 0xb9, 0xfe, 0x0f, 0x05, 0xb0, 0xfa, 0x50, 0x02, 0x85, 0xfd, 0x22, - 0x57, 0x6d, 0x02, 0x02, 0x01, 0x05, 0x03, 0x93, 0x0a, 0x08, 0x2f, 0x2d, - 0x2d, 0x81, 0x52, 0x06, 0x09, 0xfd, 0x6c, 0x00, 0x00, 0x01, 0x00, 0xb3, - 0xfe, 0x4b, 0x04, 0x16, 0x04, 0x3a, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x33, 0x11, 0x21, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x11, 0x23, 0x11, 0x21, 0x01, 0x6c, 0xb9, 0xb9, 0x01, 0xf1, 0x47, 0x42, - 0x07, 0x1a, 0x0e, 0x0f, 0x1c, 0x08, 0x0e, 0x1d, 0x35, 0x1e, 0x4c, 0x78, - 0x29, 0x29, 0x2c, 0xb9, 0xfe, 0x0f, 0x04, 0x3a, 0xfb, 0xc6, 0x01, 0xce, - 0xfd, 0xd9, 0x5a, 0x6a, 0x02, 0x02, 0x01, 0x05, 0x03, 0x93, 0x0a, 0x08, - 0x2f, 0x2d, 0x2c, 0x81, 0x53, 0x04, 0x93, 0xfe, 0x2b, 0x00, 0x00, 0x02, - 0x00, 0x5a, 0xff, 0xeb, 0x04, 0x57, 0x05, 0xc4, 0x00, 0x34, 0x00, 0x48, - 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x21, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x16, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x03, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x02, 0x3e, 0x48, 0x72, 0x2b, 0x2c, 0x3b, 0x11, 0x2f, - 0x19, 0x3d, 0x25, 0x25, 0x59, 0x35, 0x36, 0x5b, 0x24, 0x2d, 0x40, 0x14, - 0x16, 0x14, 0xfc, 0xbc, 0x11, 0x12, 0x1a, 0x62, 0x43, 0x37, 0x8b, 0x53, - 0x46, 0x81, 0x37, 0x46, 0x6d, 0x23, 0x18, 0x1a, 0x1e, 0x1e, 0x21, 0x62, - 0x40, 0x3a, 0x8e, 0x3f, 0x3c, 0x5e, 0x24, 0x28, 0x3a, 0x0d, 0x09, 0x08, - 0x02, 0x8b, 0x01, 0x12, 0x12, 0x15, 0x42, 0x2d, 0x22, 0x52, 0x05, 0xc4, - 0x16, 0x10, 0x10, 0x23, 0x0c, 0x88, 0x0e, 0x1f, 0x0d, 0x0c, 0x10, 0x1a, - 0x18, 0x1c, 0x5a, 0x33, 0x38, 0x85, 0x47, 0x5d, 0xa6, 0x49, 0x83, 0x39, - 0x59, 0x8c, 0x2b, 0x24, 0x26, 0x01, 0x28, 0x25, 0x2e, 0x91, 0x5b, 0x40, - 0x93, 0x4f, 0xda, 0x5a, 0xa2, 0x45, 0x4b, 0x76, 0x29, 0x24, 0x27, 0xfa, - 0xbe, 0x1d, 0x1b, 0x21, 0x60, 0x3a, 0x24, 0x50, 0x2a, 0x5a, 0x3f, 0x79, - 0x34, 0x40, 0x67, 0x22, 0x1a, 0x1c, 0x00, 0x01, 0x00, 0x94, 0xff, 0xeb, - 0x04, 0x52, 0x05, 0xb0, 0x00, 0x2d, 0x00, 0x00, 0x41, 0x01, 0x15, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x23, 0x01, 0x27, 0x21, 0x15, 0x03, 0x4a, 0xfe, 0x7a, 0x8f, 0x53, - 0x7e, 0x29, 0x25, 0x27, 0x2a, 0x27, 0x27, 0x71, 0x47, 0x3f, 0x69, 0x25, - 0x25, 0x2a, 0xb9, 0x51, 0x42, 0x42, 0xa9, 0x57, 0x6a, 0xb3, 0x42, 0x41, - 0x49, 0x3b, 0x3d, 0x4e, 0xc0, 0x42, 0x01, 0x01, 0x9b, 0x01, 0xfc, 0x9b, - 0x05, 0x18, 0xfe, 0x3b, 0x97, 0x26, 0x27, 0x24, 0x6e, 0x4b, 0x3b, 0x64, - 0x24, 0x24, 0x29, 0x2b, 0x26, 0x25, 0x63, 0x39, 0x6f, 0xa0, 0x34, 0x34, - 0x32, 0x39, 0x37, 0x37, 0x9e, 0x66, 0x64, 0xa1, 0x36, 0x45, 0x38, 0x01, - 0xec, 0x76, 0x98, 0x00, 0x00, 0x01, 0x00, 0x89, 0xfe, 0x75, 0x04, 0x48, - 0x04, 0x3a, 0x00, 0x2d, 0x00, 0x00, 0x41, 0x01, 0x15, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, - 0x01, 0x27, 0x21, 0x15, 0x03, 0x2c, 0xfe, 0x8c, 0x8d, 0x56, 0x82, 0x29, - 0x24, 0x25, 0x2a, 0x27, 0x27, 0x71, 0x48, 0x3f, 0x68, 0x25, 0x26, 0x29, - 0xba, 0x52, 0x42, 0x42, 0xa8, 0x57, 0x6a, 0xb4, 0x42, 0x41, 0x49, 0x3b, - 0x3a, 0x43, 0xc3, 0x40, 0x01, 0x01, 0x8e, 0x01, 0xfc, 0x9b, 0x03, 0xa1, - 0xfe, 0x3b, 0x97, 0x28, 0x2a, 0x24, 0x6c, 0x48, 0x3b, 0x63, 0x24, 0x24, - 0x28, 0x2b, 0x25, 0x25, 0x63, 0x38, 0x6e, 0xa0, 0x34, 0x34, 0x32, 0x39, - 0x37, 0x37, 0x9e, 0x65, 0x62, 0x9b, 0x39, 0x41, 0x3f, 0x01, 0xef, 0x76, - 0x99, 0x00, 0xff, 0xff, 0x00, 0x42, 0xfe, 0x4b, 0x04, 0x7b, 0x05, 0xb0, - 0x04, 0x26, 0x01, 0x7b, 0x4b, 0x00, 0x00, 0x27, 0x02, 0x6a, 0xff, 0x0d, - 0x00, 0x3f, 0x00, 0x07, 0x02, 0x6f, 0xff, 0x4f, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x74, 0xfe, 0x4b, 0x04, 0x7c, 0x04, 0x3a, 0x04, 0x26, 0x01, 0xb5, - 0x52, 0x00, 0x00, 0x27, 0x02, 0x6a, 0xff, 0x3f, 0xff, 0x64, 0x00, 0x07, - 0x02, 0x6f, 0xff, 0x44, 0x00, 0x00, 0x00, 0x02, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x30, 0x05, 0xb0, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x21, 0x11, 0x23, 0x11, 0x21, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x21, 0x03, 0x77, 0xfe, 0xd1, 0x75, 0xb5, - 0x3e, 0x3e, 0x41, 0x41, 0x3e, 0x3e, 0xb5, 0x75, 0x01, 0xe8, 0xb9, 0xfe, - 0xd1, 0x4e, 0x72, 0x25, 0x25, 0x23, 0x23, 0x25, 0x25, 0x72, 0x4e, 0x01, - 0x2f, 0x03, 0x6d, 0x3f, 0x39, 0x39, 0xa0, 0x61, 0x60, 0xa3, 0x3b, 0x3b, - 0x42, 0x05, 0xb0, 0xfa, 0xe7, 0x31, 0x29, 0x29, 0x6a, 0x39, 0x38, 0x66, - 0x27, 0x26, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x8d, - 0x05, 0xb0, 0x00, 0x24, 0x00, 0x33, 0x00, 0x00, 0x61, 0x21, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, 0x11, 0x23, 0x11, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x37, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, - 0x01, 0xcf, 0x01, 0x5c, 0x47, 0x7f, 0x30, 0x2f, 0x39, 0x02, 0x02, 0x28, - 0x1b, 0xb3, 0x1d, 0x20, 0x02, 0x01, 0x16, 0x15, 0x15, 0x3d, 0x29, 0x31, - 0xb9, 0x72, 0x5e, 0x90, 0x31, 0x31, 0x32, 0x32, 0x31, 0x31, 0x90, 0xd0, - 0x72, 0x36, 0x4d, 0x18, 0x18, 0x16, 0x16, 0x18, 0x18, 0x4d, 0x36, 0x72, - 0x3c, 0x3c, 0x3c, 0xb2, 0x76, 0x60, 0xc0, 0x5b, 0x5b, 0xc5, 0x5b, 0x48, - 0x77, 0x2b, 0x2b, 0x2f, 0x01, 0x01, 0x05, 0x1a, 0xfd, 0xbd, 0x40, 0x39, - 0x3a, 0xa0, 0x5f, 0x5f, 0xa2, 0x3b, 0x3c, 0x43, 0x97, 0x32, 0x29, 0x29, - 0x6a, 0x38, 0x37, 0x66, 0x27, 0x27, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x65, - 0xff, 0xea, 0x04, 0x93, 0x06, 0x18, 0x00, 0x4f, 0x00, 0x72, 0x00, 0x00, - 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x37, 0x11, 0x23, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x25, 0x11, 0x16, 0x16, - 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x65, 0x0a, 0x09, 0x11, 0x3f, - 0x2a, 0x20, 0x50, 0x2f, 0x2f, 0x4d, 0x20, 0x10, 0x1c, 0x0d, 0x0d, 0x21, - 0x14, 0x20, 0x55, 0x34, 0x34, 0x5b, 0x28, 0x28, 0x2f, 0x12, 0x0f, 0x11, - 0x01, 0x01, 0x0f, 0x0e, 0x08, 0x13, 0x0b, 0xb2, 0x0b, 0x13, 0x07, 0x0b, - 0x0b, 0x01, 0x01, 0x07, 0x07, 0x09, 0x18, 0x11, 0x0e, 0x23, 0x15, 0x0e, - 0x18, 0x0a, 0x0d, 0x13, 0x06, 0x03, 0x04, 0x01, 0xb9, 0x0b, 0x19, 0x0e, - 0x19, 0x3c, 0x22, 0x38, 0x5d, 0x23, 0x1f, 0x2d, 0x0f, 0x0d, 0x0e, 0x01, - 0xd7, 0x01, 0x04, 0x03, 0x09, 0x15, 0x0d, 0x12, 0x2c, 0x1c, 0x1a, 0x2a, - 0x10, 0x1b, 0x21, 0x08, 0x05, 0x04, 0x06, 0x07, 0x07, 0x1b, 0x11, 0x13, - 0x31, 0x1f, 0x1c, 0x2d, 0x12, 0x09, 0x10, 0x02, 0x40, 0x83, 0x32, 0x5d, - 0x2a, 0x47, 0x76, 0x23, 0x1b, 0x1e, 0x1e, 0x1c, 0x0f, 0x25, 0x15, 0x19, - 0x2a, 0x0f, 0x19, 0x19, 0x01, 0x29, 0x2b, 0x2c, 0x61, 0x40, 0x37, 0x83, - 0x4b, 0x40, 0x7f, 0x3d, 0x26, 0x4c, 0x25, 0x01, 0x27, 0x4f, 0x28, 0x3c, - 0x7b, 0x3d, 0x39, 0x66, 0x2c, 0x30, 0x4d, 0x1a, 0x15, 0x17, 0x01, 0x0b, - 0x0a, 0x0d, 0x29, 0x19, 0x12, 0x27, 0x15, 0x04, 0xe4, 0xfd, 0xed, 0x0c, - 0x15, 0x08, 0x0f, 0x11, 0x2e, 0x2a, 0x25, 0x64, 0x3a, 0x36, 0x7b, 0xe6, - 0xfd, 0xcc, 0x17, 0x2a, 0x14, 0x10, 0x1c, 0x0a, 0x10, 0x12, 0x01, 0x11, - 0x0f, 0x17, 0x53, 0x31, 0x1c, 0x3e, 0x20, 0x83, 0x2e, 0x58, 0x27, 0x2a, - 0x49, 0x1a, 0x1a, 0x1d, 0x13, 0x10, 0x08, 0x13, 0x00, 0x01, 0x00, 0x37, - 0xff, 0xea, 0x04, 0x8a, 0x05, 0xb0, 0x00, 0x53, 0x00, 0x00, 0x41, 0x15, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, - 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0xf7, - 0x03, 0x1f, 0x1d, 0x25, 0x75, 0x4e, 0x4a, 0x83, 0x31, 0x1b, 0x2a, 0x0e, - 0x0b, 0x0d, 0x01, 0x02, 0x2a, 0x1a, 0xb3, 0x10, 0x19, 0x07, 0x06, 0x06, - 0x01, 0x07, 0x06, 0x06, 0x10, 0x0b, 0x16, 0x41, 0x2b, 0x1b, 0x29, 0x0e, - 0x0e, 0x0e, 0x13, 0x16, 0x16, 0x45, 0x31, 0x1d, 0x33, 0x15, 0x2b, 0x2f, - 0x39, 0x36, 0x36, 0x9b, 0x62, 0xe1, 0xe1, 0x3b, 0x57, 0x1d, 0x1d, 0x1d, - 0x1e, 0x1f, 0x1e, 0x5d, 0x40, 0x52, 0x85, 0x2a, 0x45, 0x19, 0x18, 0x1b, - 0x01, 0x72, 0x67, 0x41, 0x64, 0x23, 0x2e, 0x2b, 0x01, 0x47, 0x46, 0x26, - 0x62, 0x3b, 0x2e, 0x6c, 0x3c, 0x67, 0xca, 0x62, 0x38, 0x71, 0x38, 0x2c, - 0x5a, 0x2c, 0x2d, 0x53, 0x25, 0x22, 0x3d, 0x1a, 0x35, 0x3b, 0x01, 0x16, - 0x13, 0x12, 0x32, 0x1c, 0x69, 0x3b, 0x6a, 0x2c, 0x2c, 0x43, 0x15, 0x0f, - 0x27, 0x17, 0x31, 0x81, 0x4d, 0x64, 0x9a, 0x34, 0x33, 0x36, 0x98, 0x24, - 0x21, 0x22, 0x5f, 0x3b, 0x40, 0x63, 0x21, 0x1f, 0x21, 0x98, 0x27, 0x23, - 0x23, 0x62, 0x00, 0x01, 0x00, 0x50, 0xff, 0xe4, 0x04, 0x7c, 0x04, 0x3a, - 0x00, 0x50, 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x23, - 0x17, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x23, 0x17, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x02, 0xdd, 0x39, 0x36, 0x37, 0x9e, 0x64, 0xe5, 0x06, 0xdf, 0x42, - 0x5e, 0x1d, 0x19, 0x18, 0x13, 0x13, 0x1b, 0x62, 0x47, 0x95, 0x02, 0xad, - 0x37, 0x52, 0x1a, 0x15, 0x17, 0x1e, 0x1d, 0x22, 0x6e, 0x49, 0x32, 0x5c, - 0x27, 0x1a, 0x31, 0x12, 0x16, 0x1c, 0x01, 0x01, 0x09, 0x08, 0x0a, 0x1b, - 0x0e, 0xb4, 0x1e, 0x21, 0x02, 0x01, 0x12, 0x11, 0x12, 0x33, 0x22, 0x18, - 0x22, 0x0a, 0x0b, 0x0c, 0x1d, 0x20, 0x16, 0x3e, 0x29, 0x27, 0x3f, 0x17, - 0x1f, 0x20, 0x02, 0xf8, 0x4c, 0x78, 0x29, 0x29, 0x2c, 0x96, 0x1e, 0x1b, - 0x17, 0x3e, 0x24, 0x1f, 0x34, 0x14, 0x1c, 0x1f, 0x96, 0x01, 0x18, 0x18, - 0x12, 0x35, 0x21, 0x43, 0x3b, 0x59, 0x1f, 0x24, 0x23, 0x02, 0x21, 0x20, - 0x16, 0x40, 0x28, 0x32, 0x7f, 0x4d, 0x25, 0x4a, 0x25, 0x2b, 0x56, 0x2a, - 0x4e, 0xa3, 0x4e, 0x42, 0x6c, 0x26, 0x27, 0x2b, 0x0a, 0x0a, 0x0b, 0x23, - 0x16, 0x4d, 0x33, 0x57, 0x21, 0x16, 0x23, 0x0b, 0x0f, 0x26, 0x17, 0x1e, - 0x4d, 0x00, 0x00, 0x01, 0x00, 0xb3, 0xfe, 0xa5, 0x04, 0x52, 0x05, 0xb0, - 0x00, 0x45, 0x00, 0x00, 0x41, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x23, - 0x26, 0x34, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x15, - 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x23, 0x01, 0x10, 0xdb, 0x3c, 0x61, 0x23, 0x22, 0x26, 0x03, 0x06, - 0x06, 0x19, 0x17, 0x56, 0x0a, 0x0b, 0x0a, 0x22, 0x16, 0x73, 0x2a, 0x40, - 0x17, 0x16, 0x17, 0xa5, 0x01, 0x19, 0x1b, 0x1b, 0x56, 0x3e, 0x28, 0x44, - 0x1b, 0x2f, 0x31, 0x42, 0x3e, 0x3f, 0xb6, 0x74, 0xfe, 0xec, 0x01, 0x14, - 0x4e, 0x73, 0x26, 0x25, 0x24, 0x20, 0x21, 0x27, 0x81, 0x5b, 0xa3, 0x02, - 0x79, 0x25, 0x22, 0x23, 0x62, 0x3c, 0x84, 0x13, 0x3f, 0x22, 0x23, 0x41, - 0x15, 0x01, 0x22, 0x48, 0x24, 0x24, 0x48, 0x21, 0x3f, 0x24, 0x5c, 0x33, - 0x32, 0x67, 0x2f, 0xb0, 0x07, 0x0d, 0x07, 0x88, 0x3d, 0x6c, 0x2c, 0x2c, - 0x42, 0x14, 0x12, 0x2c, 0x1a, 0x2e, 0x78, 0x4a, 0x66, 0x9b, 0x34, 0x34, - 0x35, 0x98, 0x24, 0x21, 0x22, 0x61, 0x3c, 0x3c, 0x5c, 0x20, 0x25, 0x26, - 0x00, 0x01, 0x00, 0xd0, 0xfe, 0x92, 0x04, 0x30, 0x04, 0x3a, 0x00, 0x49, - 0x00, 0x00, 0x41, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x22, 0x22, 0x23, - 0x34, 0x34, 0x35, 0x34, 0x34, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x21, 0x07, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x23, 0x01, 0x19, 0xf1, 0x34, 0x50, 0x1b, 0x19, 0x1b, - 0x02, 0x05, 0x05, 0x16, 0x14, 0x54, 0x0b, 0x0c, 0x0b, 0x20, 0x16, 0x73, - 0x2a, 0x40, 0x17, 0x16, 0x17, 0x33, 0x4c, 0x1a, 0x15, 0x17, 0x17, 0x49, - 0x34, 0x28, 0x40, 0x18, 0x1f, 0x21, 0x3a, 0x37, 0x37, 0x9e, 0x64, 0xfe, - 0xe4, 0x01, 0x01, 0x1d, 0x41, 0x5f, 0x1d, 0x1a, 0x19, 0x1b, 0x1d, 0x1d, - 0x5c, 0x3f, 0xd4, 0x01, 0xb9, 0x01, 0x18, 0x17, 0x16, 0x3f, 0x28, 0x5f, - 0x0d, 0x2f, 0x19, 0x1a, 0x30, 0x0e, 0x02, 0x27, 0x54, 0x29, 0x24, 0x45, - 0x20, 0x3f, 0x24, 0x5c, 0x33, 0x32, 0x67, 0x2f, 0xb0, 0x15, 0x13, 0x11, - 0x04, 0x0c, 0x07, 0x2e, 0x51, 0x21, 0x21, 0x32, 0x0f, 0x0f, 0x26, 0x17, - 0x1f, 0x4f, 0x30, 0x4d, 0x77, 0x29, 0x29, 0x2b, 0x96, 0x1c, 0x1a, 0x17, - 0x3e, 0x26, 0x26, 0x3d, 0x15, 0x15, 0x17, 0x00, 0x00, 0x01, 0x00, 0x14, - 0xff, 0xea, 0x04, 0xa4, 0x05, 0xb0, 0x00, 0x4e, 0x00, 0x00, 0x41, 0x03, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x07, 0x16, 0x16, 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x21, - 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x23, 0x15, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x03, 0x02, 0x63, 0x01, 0x02, 0x12, 0x11, 0x10, - 0x2e, 0x1d, 0x1b, 0x41, 0x26, 0x42, 0x73, 0x2b, 0x1c, 0x29, 0x0b, 0x07, - 0x07, 0x01, 0x01, 0x06, 0x06, 0x06, 0x13, 0x0b, 0xb3, 0x14, 0x15, 0x01, - 0x04, 0x03, 0x04, 0x0d, 0x09, 0x11, 0x31, 0x22, 0x0c, 0x13, 0x08, 0x09, - 0x0c, 0x05, 0x04, 0x03, 0x01, 0xfd, 0xc7, 0x01, 0x02, 0x01, 0x04, 0x11, - 0x0f, 0x0b, 0x1e, 0x14, 0x11, 0x29, 0x18, 0x17, 0x22, 0x3a, 0x5e, 0x25, - 0x1b, 0x2e, 0x12, 0x1d, 0x22, 0x07, 0x03, 0x03, 0x01, 0x05, 0x18, 0xfb, - 0xf7, 0x35, 0x57, 0x21, 0x20, 0x2e, 0x0f, 0x0e, 0x0d, 0x01, 0x48, 0x46, - 0x2d, 0x75, 0x47, 0x28, 0x57, 0x30, 0x30, 0x5f, 0x2e, 0x36, 0x6b, 0x35, - 0x01, 0x64, 0xca, 0x64, 0x25, 0x46, 0x20, 0x2a, 0x4a, 0x1e, 0x35, 0x3c, - 0x01, 0x09, 0x08, 0x0b, 0x1c, 0x10, 0x10, 0x23, 0x12, 0x04, 0xa1, 0xfd, - 0x50, 0x2e, 0x56, 0x27, 0x5b, 0x91, 0x36, 0x2a, 0x3d, 0x13, 0x11, 0x11, - 0x97, 0x21, 0x21, 0x19, 0x43, 0x2a, 0x45, 0xb8, 0x70, 0x2f, 0x66, 0x36, - 0x02, 0x18, 0x00, 0x01, 0x00, 0x2f, 0xff, 0xea, 0x04, 0x85, 0x04, 0x3a, - 0x00, 0x4b, 0x00, 0x00, 0x41, 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x07, 0x07, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x02, 0xfa, 0xfd, 0xc9, - 0x03, 0x04, 0x03, 0x08, 0x06, 0x0e, 0x30, 0x24, 0x17, 0x03, 0x26, 0x32, - 0x51, 0x1f, 0x21, 0x30, 0x11, 0x0b, 0x0f, 0x04, 0x02, 0x03, 0xc5, 0x12, - 0x0e, 0x0f, 0x2d, 0x1d, 0x1c, 0x45, 0x28, 0x30, 0x57, 0x25, 0x25, 0x3c, - 0x13, 0x0e, 0x11, 0x01, 0x02, 0x28, 0x1b, 0xb3, 0x0e, 0x17, 0x07, 0x08, - 0x08, 0x01, 0x01, 0x06, 0x07, 0x08, 0x1b, 0x12, 0x0e, 0x22, 0x14, 0x0b, - 0x12, 0x07, 0x0b, 0x0f, 0x04, 0x04, 0x03, 0x04, 0x3a, 0xfe, 0x34, 0x40, - 0x70, 0x2e, 0x22, 0x3b, 0x18, 0x3a, 0x3b, 0x01, 0xa5, 0x1e, 0x1d, 0x1f, - 0x5d, 0x40, 0x2c, 0x68, 0x3b, 0x27, 0x54, 0x2d, 0x01, 0x33, 0xfd, 0x80, - 0x34, 0x56, 0x22, 0x24, 0x36, 0x11, 0x10, 0x10, 0x01, 0x23, 0x21, 0x22, - 0x65, 0x41, 0x32, 0x77, 0x44, 0x61, 0xbf, 0x5d, 0x2e, 0x5d, 0x2f, 0x30, - 0x62, 0x31, 0x2f, 0x56, 0x25, 0x2f, 0x4d, 0x15, 0x13, 0x13, 0x01, 0x09, - 0x08, 0x0b, 0x22, 0x18, 0x10, 0x25, 0x14, 0x00, 0x00, 0x01, 0x00, 0x6f, - 0xff, 0xea, 0x04, 0x94, 0x05, 0xb0, 0x00, 0x38, 0x00, 0x00, 0x41, 0x23, - 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x0c, 0xb9, 0xfe, 0xd5, - 0xb9, 0xb9, 0x01, 0x2b, 0x01, 0x10, 0x0d, 0x12, 0x27, 0x1c, 0x1c, 0x48, - 0x2a, 0x43, 0x73, 0x2b, 0x18, 0x26, 0x0c, 0x09, 0x0a, 0x01, 0x01, 0x09, - 0x09, 0x09, 0x1a, 0x0e, 0xb2, 0x1c, 0x20, 0x02, 0x04, 0x04, 0x04, 0x0d, - 0x09, 0x10, 0x31, 0x22, 0x0a, 0x10, 0x07, 0x0c, 0x0f, 0x05, 0x04, 0x03, - 0x05, 0xb0, 0xfd, 0x6c, 0x02, 0x94, 0xfa, 0x50, 0x02, 0x85, 0xfe, 0xaf, - 0x36, 0x5f, 0x1e, 0x2b, 0x33, 0x13, 0x13, 0x13, 0x01, 0x48, 0x46, 0x28, - 0x66, 0x3d, 0x2e, 0x66, 0x39, 0x30, 0x60, 0x2f, 0x35, 0x6b, 0x34, 0x01, - 0x64, 0xca, 0x64, 0x26, 0x49, 0x20, 0x29, 0x47, 0x1d, 0x36, 0x3c, 0x01, - 0x08, 0x07, 0x0c, 0x26, 0x19, 0x14, 0x2c, 0x18, 0x00, 0x01, 0x00, 0x75, - 0xff, 0xea, 0x04, 0x7e, 0x04, 0x3a, 0x00, 0x35, 0x00, 0x00, 0x41, 0x15, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, - 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, 0x21, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x02, 0x3b, 0x02, 0x0e, 0x0d, 0x12, 0x3d, 0x2a, - 0x1b, 0x3e, 0x24, 0x3f, 0x6d, 0x29, 0x16, 0x22, 0x0c, 0x09, 0x0b, 0x01, - 0x02, 0x1e, 0x14, 0xb2, 0x14, 0x16, 0x01, 0x04, 0x04, 0x04, 0x0b, 0x07, - 0x0e, 0x2c, 0x1d, 0x0e, 0x18, 0x09, 0x0b, 0x10, 0x05, 0x06, 0x05, 0xb9, - 0xfe, 0xf3, 0xb9, 0xb9, 0x01, 0xcd, 0xac, 0x2f, 0x50, 0x20, 0x30, 0x41, - 0x11, 0x0b, 0x0b, 0x01, 0x41, 0x40, 0x23, 0x58, 0x35, 0x2c, 0x64, 0x38, - 0x61, 0xbf, 0x5d, 0x5e, 0xc0, 0x5f, 0x25, 0x45, 0x1f, 0x21, 0x3b, 0x19, - 0x2f, 0x34, 0x01, 0x0a, 0x09, 0x0a, 0x1a, 0x10, 0x12, 0x2c, 0x1a, 0x03, - 0x19, 0xfe, 0x2a, 0x01, 0xd6, 0xfb, 0xc6, 0x01, 0xcd, 0x00, 0x00, 0x01, - 0x00, 0x8e, 0xff, 0xeb, 0x04, 0x76, 0x05, 0xc5, 0x00, 0x3c, 0x00, 0x00, - 0x45, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, - 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x02, 0x94, 0x60, 0xad, 0x42, 0x41, 0x4e, 0x02, 0x02, 0x26, 0x14, - 0xb3, 0x17, 0x1d, 0x02, 0x01, 0x26, 0x24, 0x25, 0x6f, 0x48, 0x4f, 0x7c, - 0x2a, 0x2b, 0x2d, 0x11, 0x11, 0x14, 0x43, 0x2c, 0x23, 0x54, 0x31, 0x56, - 0x8f, 0x41, 0x3b, 0x43, 0xae, 0x70, 0x44, 0x7b, 0x34, 0x4b, 0x6f, 0x23, - 0x1a, 0x1c, 0x20, 0x1d, 0x1f, 0x5e, 0x3b, 0x39, 0x8a, 0x15, 0x37, 0x38, - 0x37, 0xa8, 0x70, 0x59, 0xb7, 0x59, 0x5a, 0xb5, 0x5a, 0x42, 0x6b, 0x26, - 0x28, 0x2b, 0x01, 0x4a, 0x40, 0x40, 0xaa, 0x5f, 0x01, 0x08, 0x3a, 0x6e, - 0x31, 0x3c, 0x64, 0x20, 0x1a, 0x1d, 0x23, 0x21, 0x84, 0x2c, 0x2c, 0x21, - 0x1f, 0x2b, 0x89, 0x53, 0x40, 0x93, 0x50, 0xfe, 0xfa, 0x55, 0x9c, 0x43, - 0x47, 0x75, 0x27, 0x28, 0x2b, 0x00, 0x00, 0x01, 0x00, 0xa0, 0xff, 0xeb, - 0x04, 0x50, 0x04, 0x4e, 0x00, 0x36, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x34, 0x26, 0x27, 0x23, 0x16, 0x16, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x02, 0xb4, 0x5b, 0x83, 0x2a, 0x2a, 0x28, 0x25, 0x28, - 0x28, 0x7a, 0x56, 0x51, 0x8c, 0x36, 0x2c, 0x1c, 0x48, 0x2a, 0x26, 0x59, - 0x32, 0x7b, 0xbe, 0x41, 0x41, 0x44, 0x47, 0x44, 0x43, 0xc6, 0x80, 0x57, - 0x95, 0x37, 0x37, 0x40, 0x02, 0x10, 0x0b, 0xb2, 0x0e, 0x06, 0x01, 0x18, - 0x19, 0x1b, 0x58, 0x82, 0x45, 0x38, 0x37, 0x8b, 0x47, 0x2a, 0x46, 0x8a, - 0x38, 0x37, 0x45, 0x1e, 0x1c, 0x90, 0x11, 0x1a, 0x08, 0x07, 0x08, 0x59, - 0x4a, 0x4a, 0xc3, 0x6c, 0x2a, 0x6c, 0xc4, 0x4a, 0x4a, 0x59, 0x29, 0x2a, - 0x2a, 0x80, 0x57, 0x36, 0x6e, 0x36, 0x36, 0x6f, 0x35, 0x2c, 0x44, 0x18, - 0x1a, 0x1a, 0x00, 0x01, 0x00, 0x4c, 0xff, 0xea, 0x04, 0x95, 0x05, 0xb0, - 0x00, 0x31, 0x00, 0x00, 0x41, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x26, 0x27, 0x07, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x11, 0x21, 0x35, 0x21, 0x15, 0x01, 0xb5, 0x02, 0x0e, 0x0b, 0x14, - 0x3f, 0x2c, 0x25, 0x5a, 0x35, 0x52, 0x90, 0x36, 0x1d, 0x2d, 0x0f, 0x0e, - 0x0f, 0x01, 0x03, 0x2a, 0x1b, 0xb3, 0x1d, 0x21, 0x02, 0x01, 0x09, 0x08, - 0x07, 0x12, 0x0c, 0x1b, 0x4f, 0x35, 0x16, 0x25, 0x10, 0x15, 0x20, 0x0a, - 0x05, 0x06, 0x01, 0x86, 0xfc, 0x58, 0x05, 0x18, 0xfc, 0x41, 0x30, 0x52, - 0x23, 0x37, 0x53, 0x17, 0x15, 0x14, 0x01, 0x47, 0x46, 0x25, 0x5c, 0x37, - 0x31, 0x71, 0x3f, 0x67, 0xca, 0x62, 0x01, 0x64, 0xca, 0x64, 0x30, 0x57, - 0x26, 0x20, 0x39, 0x18, 0x35, 0x3b, 0x01, 0x0c, 0x0c, 0x0f, 0x34, 0x21, - 0x15, 0x2e, 0x18, 0x03, 0xbf, 0x98, 0x98, 0x00, 0x00, 0x01, 0x00, 0x49, - 0xff, 0xea, 0x04, 0x6a, 0x04, 0x3a, 0x00, 0x28, 0x00, 0x00, 0x41, 0x11, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x21, - 0x35, 0x21, 0x15, 0x01, 0x9a, 0x04, 0x2f, 0x2a, 0x2a, 0x7c, 0x4e, 0x4e, - 0x89, 0x34, 0x34, 0x3d, 0x02, 0x01, 0x0b, 0x09, 0x0a, 0x19, 0x0d, 0xb2, - 0x1d, 0x21, 0x02, 0x02, 0x19, 0x19, 0x19, 0x48, 0x30, 0x25, 0x38, 0x13, - 0x14, 0x13, 0x01, 0x7a, 0xfc, 0x7b, 0x03, 0xa4, 0xfd, 0xb5, 0x5e, 0x8b, - 0x2d, 0x2e, 0x2b, 0x01, 0x39, 0x39, 0x38, 0xa7, 0x6e, 0x29, 0x52, 0x29, - 0x29, 0x51, 0x27, 0x4e, 0xa8, 0x4f, 0x42, 0x6c, 0x27, 0x27, 0x2b, 0x01, - 0x21, 0x1d, 0x1d, 0x4e, 0x2e, 0x02, 0x4b, 0x96, 0x96, 0x00, 0x00, 0x01, - 0x00, 0x6c, 0xff, 0xec, 0x04, 0x6f, 0x05, 0xc5, 0x00, 0x4c, 0x00, 0x00, - 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x35, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x6d, 0x51, 0x48, 0x47, 0xc3, 0x73, 0x5b, - 0xb0, 0x46, 0x45, 0x56, 0xb9, 0x01, 0x2d, 0x28, 0x29, 0x70, 0x44, 0x51, - 0x81, 0x2d, 0x2d, 0x31, 0x2d, 0x2b, 0x2b, 0x7d, 0x4f, 0xb6, 0xb6, 0x50, - 0x76, 0x26, 0x27, 0x26, 0x29, 0x29, 0x28, 0x7b, 0x52, 0x3c, 0x68, 0x27, - 0x26, 0x2d, 0x01, 0xb9, 0x4c, 0x40, 0x41, 0xac, 0x5f, 0x73, 0xbd, 0x43, - 0x44, 0x4a, 0x21, 0x1f, 0x1e, 0x58, 0x37, 0x34, 0x55, 0x1f, 0x2c, 0x2f, - 0x01, 0x96, 0x67, 0x9f, 0x36, 0x36, 0x38, 0x31, 0x34, 0x34, 0xa0, 0x6f, - 0x39, 0x64, 0x25, 0x25, 0x2b, 0x28, 0x24, 0x24, 0x64, 0x3c, 0x45, 0x63, - 0x21, 0x20, 0x1f, 0x98, 0x24, 0x21, 0x20, 0x5b, 0x38, 0x37, 0x5e, 0x23, - 0x23, 0x28, 0x26, 0x21, 0x21, 0x5c, 0x36, 0x5d, 0x95, 0x34, 0x34, 0x38, - 0x35, 0x34, 0x35, 0x9b, 0x66, 0x33, 0x5e, 0x28, 0x29, 0x42, 0x17, 0x11, - 0x33, 0x20, 0x2d, 0x79, 0xff, 0xff, 0x00, 0xa6, 0xfe, 0x6a, 0x04, 0x3b, - 0x00, 0x00, 0x04, 0x27, 0x00, 0x66, 0x00, 0x0b, 0xff, 0x01, 0x00, 0x06, - 0x00, 0x66, 0x0b, 0x00, 0x00, 0x01, 0x01, 0xcf, 0x04, 0x07, 0x02, 0xe2, - 0x06, 0x16, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x14, 0x16, - 0x17, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x01, 0xcf, 0xb5, 0x2f, 0x2f, - 0x65, 0x2a, 0x40, 0x16, 0x17, 0x17, 0x05, 0x83, 0x93, 0x96, 0x56, 0x94, - 0x47, 0x48, 0x24, 0x5c, 0x33, 0x32, 0x68, 0x00, 0xff, 0xff, 0x01, 0x5c, - 0xff, 0xed, 0x04, 0x3a, 0x01, 0x07, 0x04, 0x27, 0x00, 0x60, 0xff, 0x6c, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x60, 0x01, 0x26, 0x00, 0x00, 0x00, 0x02, - 0x01, 0x0f, 0x02, 0x38, 0x04, 0x18, 0x05, 0xc3, 0x00, 0x0a, 0x00, 0x0e, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x01, 0x17, 0x21, 0x15, 0x33, 0x35, 0x33, - 0x35, 0x21, 0x01, 0x37, 0x11, 0x03, 0x81, 0xa9, 0xfe, 0x37, 0x03, 0x01, - 0xcc, 0xa3, 0x97, 0xfd, 0xac, 0x01, 0x04, 0x16, 0x03, 0x6f, 0x02, 0x54, - 0xfd, 0x8c, 0x5e, 0xb9, 0xb9, 0x7e, 0x01, 0x5c, 0x2c, 0xfe, 0x78, 0x00, - 0x00, 0x01, 0x01, 0x4b, 0x02, 0x8b, 0x03, 0xc9, 0x05, 0xba, 0x00, 0x1f, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x33, 0x11, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0xcc, - 0x81, 0xaa, 0x09, 0x1a, 0x11, 0x14, 0x33, 0x1f, 0x21, 0x34, 0x13, 0x13, - 0x15, 0xaa, 0x24, 0x22, 0x22, 0x5f, 0x3c, 0x2a, 0x49, 0x1e, 0x17, 0x26, - 0x0f, 0x05, 0xab, 0xfc, 0xe0, 0x02, 0x32, 0x17, 0x26, 0x0e, 0x10, 0x12, - 0x14, 0x16, 0x17, 0x4c, 0x36, 0xfe, 0x24, 0x01, 0xfc, 0x50, 0x74, 0x26, - 0x25, 0x24, 0x01, 0x19, 0x16, 0x11, 0x2e, 0x1b, 0x00, 0x01, 0x00, 0x7f, - 0xff, 0xeb, 0x04, 0x39, 0x05, 0xc4, 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x03, 0x6e, 0xfe, 0x7e, 0x01, 0x82, - 0xfe, 0x7e, 0x36, 0x2d, 0x2d, 0x7e, 0x4e, 0x3c, 0x6f, 0x34, 0x12, 0x3d, - 0x75, 0x3f, 0x74, 0xc0, 0x46, 0x45, 0x57, 0xb3, 0xb3, 0xb3, 0xb3, 0x56, - 0x44, 0x46, 0xc3, 0x75, 0x3f, 0x78, 0x38, 0x12, 0x34, 0x6e, 0x3b, 0x4f, - 0x80, 0x2d, 0x2b, 0x37, 0x02, 0x1f, 0x7a, 0x8a, 0x7b, 0x01, 0x56, 0xa4, - 0x31, 0x31, 0x32, 0x13, 0x10, 0x9b, 0x0e, 0x11, 0x46, 0x45, 0x44, 0xde, - 0x77, 0x02, 0x7b, 0x8a, 0x7a, 0x05, 0x80, 0xdc, 0x44, 0x47, 0x48, 0x10, - 0x0f, 0x9a, 0x11, 0x11, 0x34, 0x34, 0x31, 0xa2, 0x5d, 0x05, 0x00, 0x04, - 0x00, 0x49, 0xff, 0xeb, 0x04, 0x94, 0x05, 0xc5, 0x00, 0x33, 0x00, 0x4d, - 0x00, 0x67, 0x00, 0x6b, 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x33, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x13, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x05, 0x01, 0x27, 0x01, 0x02, 0x4c, 0x8a, 0x0f, 0x0e, 0x0f, - 0x2b, 0x1e, 0x1f, 0x2d, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0e, 0x2d, 0x1e, - 0x1e, 0x2c, 0x0f, 0x0f, 0x0f, 0x8a, 0x24, 0x21, 0x21, 0x5f, 0x3c, 0x3d, - 0x60, 0x21, 0x21, 0x23, 0x23, 0x22, 0x21, 0x61, 0x3d, 0x3b, 0x5f, 0x21, - 0x21, 0x23, 0x42, 0x23, 0x22, 0x21, 0x61, 0x3d, 0x3d, 0x60, 0x21, 0x21, - 0x23, 0x23, 0x21, 0x22, 0x60, 0x3d, 0x3d, 0x60, 0x21, 0x22, 0x23, 0x8b, - 0x0e, 0x0f, 0x0f, 0x2d, 0x1f, 0x1f, 0x2d, 0x0f, 0x0f, 0x0e, 0x0e, 0x0f, - 0x0f, 0x2d, 0x1e, 0x1f, 0x2e, 0x0f, 0x0f, 0x0e, 0xfe, 0x9c, 0x02, 0x02, - 0x72, 0xfd, 0xff, 0x04, 0x1e, 0x18, 0x30, 0x13, 0x13, 0x18, 0x1f, 0x19, - 0x19, 0x40, 0x22, 0x4d, 0x22, 0x42, 0x19, 0x19, 0x1f, 0x16, 0x13, 0x13, - 0x32, 0x1b, 0x35, 0x5d, 0x23, 0x23, 0x29, 0x30, 0x29, 0x2a, 0x6d, 0x3d, - 0x4d, 0x3c, 0x6d, 0x29, 0x29, 0x30, 0x28, 0x23, 0x22, 0x5d, 0xfd, 0x7b, - 0x4e, 0x3d, 0x6d, 0x29, 0x29, 0x30, 0x30, 0x29, 0x29, 0x6d, 0x3d, 0x4e, - 0x3d, 0x6d, 0x29, 0x29, 0x30, 0x30, 0x29, 0x29, 0x6d, 0x8b, 0x4e, 0x22, - 0x41, 0x1a, 0x19, 0x1e, 0x1e, 0x19, 0x1a, 0x41, 0x22, 0x4e, 0x23, 0x40, - 0x19, 0x1a, 0x1e, 0x1e, 0x1a, 0x19, 0x40, 0x1f, 0x03, 0xba, 0x42, 0xfc, - 0x46, 0x00, 0x00, 0x02, 0x00, 0xdd, 0xff, 0xeb, 0x03, 0xf3, 0x05, 0xc9, - 0x00, 0x2c, 0x00, 0x40, 0x00, 0x00, 0x45, 0x35, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x11, 0x06, 0x06, 0x23, 0x15, 0x32, 0x36, 0x37, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x03, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x03, - 0x54, 0x44, 0x5a, 0x1c, 0x1c, 0x17, 0x60, 0x93, 0x33, 0x32, 0x34, 0x27, - 0x24, 0x24, 0x64, 0x3c, 0x3f, 0x67, 0x26, 0x1a, 0x27, 0x0e, 0x0d, 0x0e, - 0x2f, 0x68, 0x3a, 0x38, 0x68, 0x31, 0x33, 0x35, 0x34, 0x9e, 0x81, 0x14, - 0x15, 0x0f, 0x2a, 0x1b, 0x15, 0x22, 0x0a, 0x0a, 0x0b, 0x1a, 0x1a, 0x1a, - 0x4f, 0x15, 0x9d, 0x29, 0x27, 0x26, 0x6d, 0x44, 0x57, 0x34, 0x91, 0x52, - 0x51, 0xa9, 0x4d, 0x29, 0x48, 0x74, 0x2a, 0x29, 0x2d, 0x27, 0x24, 0x19, - 0x40, 0x26, 0x26, 0x59, 0x32, 0xfe, 0x21, 0x0d, 0x0e, 0xb0, 0x0d, 0x0c, - 0x0e, 0x65, 0xa6, 0x3b, 0x3c, 0x42, 0x02, 0xdc, 0x01, 0x87, 0x3e, 0x5c, - 0x1c, 0x13, 0x14, 0x16, 0x15, 0x14, 0x3a, 0x25, 0x2b, 0x38, 0x71, 0x35, - 0x36, 0x60, 0x00, 0x04, 0x00, 0x79, 0x00, 0x00, 0x04, 0x76, 0x05, 0xc0, - 0x00, 0x09, 0x00, 0x23, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x00, 0x61, 0x11, - 0x23, 0x13, 0x01, 0x23, 0x11, 0x33, 0x03, 0x01, 0x01, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x13, 0x35, 0x21, 0x15, 0x02, 0xe3, 0xb0, 0x01, 0xfe, 0xf4, 0xaf, 0xb0, - 0x01, 0x01, 0x0b, 0x01, 0x03, 0x15, 0x15, 0x14, 0x3b, 0x27, 0x27, 0x3c, - 0x14, 0x14, 0x15, 0x15, 0x14, 0x14, 0x3d, 0x27, 0x26, 0x3c, 0x14, 0x14, - 0x15, 0x65, 0x05, 0x06, 0x06, 0x17, 0x12, 0x13, 0x17, 0x07, 0x06, 0x05, - 0x04, 0x06, 0x07, 0x17, 0x13, 0x13, 0x17, 0x06, 0x07, 0x04, 0xd9, 0xfe, - 0xcd, 0x05, 0xb0, 0xfc, 0x71, 0x03, 0x8f, 0xfa, 0x50, 0x03, 0x93, 0xfc, - 0x6d, 0x04, 0xfb, 0xce, 0x28, 0x47, 0x1a, 0x1b, 0x1f, 0x1f, 0x1b, 0x1a, - 0x47, 0x28, 0xce, 0x28, 0x48, 0x1b, 0x1b, 0x1f, 0x1f, 0x1b, 0x1b, 0x48, - 0xed, 0xbc, 0x16, 0x28, 0x0f, 0x0e, 0x11, 0x11, 0x0e, 0x0f, 0x28, 0x16, - 0xbc, 0x17, 0x27, 0x0e, 0x0f, 0x11, 0x11, 0x0f, 0x0e, 0x27, 0xfe, 0xa8, - 0x5f, 0x5f, 0x00, 0x02, 0x00, 0x99, 0xff, 0xec, 0x04, 0x94, 0x04, 0x4e, - 0x00, 0x21, 0x00, 0x2a, 0x00, 0x00, 0x65, 0x27, 0x06, 0x06, 0x27, 0x22, - 0x26, 0x27, 0x11, 0x21, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x01, 0x32, 0x16, 0x17, 0x11, 0x21, 0x11, 0x36, - 0x36, 0x04, 0x17, 0x02, 0x59, 0xb9, 0x5e, 0x4e, 0x8c, 0x37, 0x03, 0x00, - 0x4e, 0x42, 0x43, 0xb5, 0x67, 0x42, 0x81, 0x3a, 0x3b, 0x63, 0x24, 0x24, - 0x29, 0x52, 0x47, 0x46, 0xbf, 0x6e, 0x63, 0xba, 0xfe, 0xe3, 0x4d, 0x88, - 0x36, 0xfd, 0xe4, 0x39, 0x8c, 0x5e, 0x68, 0x3f, 0x3c, 0x01, 0x3b, 0x33, - 0x01, 0x48, 0x2f, 0x73, 0xc6, 0x49, 0x49, 0x52, 0x29, 0x25, 0x25, 0x67, - 0x3e, 0x3e, 0x8f, 0x4c, 0x73, 0xcc, 0x4c, 0x4d, 0x59, 0x3d, 0x03, 0xc7, - 0x3e, 0x33, 0xfe, 0xe2, 0x01, 0x15, 0x38, 0x42, 0x00, 0x05, 0x00, 0x50, - 0xff, 0xf6, 0x04, 0xb9, 0x05, 0xae, 0x00, 0x06, 0x00, 0x36, 0x00, 0x4e, - 0x00, 0x66, 0x00, 0x6a, 0x00, 0x00, 0x41, 0x11, 0x23, 0x05, 0x15, 0x37, - 0x11, 0x05, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x01, 0x01, 0x27, 0x01, 0x01, 0x9f, 0x10, 0xfe, 0xc1, 0xc2, 0x03, - 0x96, 0x26, 0x21, 0x21, 0x5c, 0x35, 0x36, 0x5b, 0x22, 0x21, 0x25, 0x15, - 0x14, 0x0c, 0x23, 0x13, 0x17, 0x29, 0x0f, 0x15, 0x19, 0x2a, 0x24, 0x24, - 0x62, 0x38, 0x37, 0x62, 0x24, 0x23, 0x29, 0x1d, 0x1a, 0x0e, 0x24, 0x14, - 0x13, 0x20, 0x0d, 0x15, 0x16, 0x7a, 0x13, 0x11, 0x11, 0x2d, 0x1b, 0x1f, - 0x32, 0x11, 0x0d, 0x0f, 0x12, 0x10, 0x10, 0x2f, 0x1c, 0x1b, 0x2e, 0x11, - 0x10, 0x14, 0x13, 0x0f, 0x0d, 0x0f, 0x27, 0x18, 0x1b, 0x29, 0x0e, 0x0d, - 0x0d, 0x0e, 0x0d, 0x0e, 0x28, 0x1a, 0x17, 0x27, 0x0d, 0x10, 0x10, 0xfd, - 0x7a, 0x02, 0x02, 0x72, 0xfd, 0xff, 0x02, 0xe8, 0x02, 0xc6, 0x69, 0x73, - 0x33, 0xfd, 0xe3, 0xdf, 0x31, 0x4a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x19, - 0x4a, 0x31, 0x1f, 0x36, 0x16, 0x0e, 0x19, 0x0a, 0x09, 0x1b, 0x10, 0x17, - 0x3c, 0x24, 0x33, 0x4c, 0x1a, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x4c, 0x33, - 0x27, 0x41, 0x18, 0x0d, 0x16, 0x08, 0x09, 0x17, 0x0d, 0x16, 0x38, 0xfe, - 0xe5, 0x18, 0x25, 0x0d, 0x0c, 0x0e, 0x10, 0x0f, 0x0d, 0x23, 0x15, 0x18, - 0x25, 0x0c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0c, 0x25, 0x01, 0x1c, 0x15, 0x22, - 0x0c, 0x0b, 0x0e, 0x0f, 0x0d, 0x0c, 0x20, 0x14, 0x15, 0x21, 0x0c, 0x0c, - 0x0d, 0x0c, 0x0b, 0x0b, 0x23, 0xfe, 0xbe, 0x03, 0xba, 0x42, 0xfc, 0x46, - 0x00, 0x05, 0x00, 0x33, 0xff, 0xf6, 0x04, 0xc1, 0x05, 0xba, 0x00, 0x4c, - 0x00, 0x7c, 0x00, 0x94, 0x00, 0xac, 0x00, 0xb0, 0x00, 0x00, 0x53, 0x15, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x33, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x01, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0xea, 0x4b, 0x22, 0x37, 0x13, - 0x11, 0x12, 0x0f, 0x0e, 0x12, 0x31, 0x20, 0x22, 0x34, 0x11, 0x0e, 0x0e, - 0x8e, 0x2e, 0x26, 0x24, 0x61, 0x33, 0x3a, 0x64, 0x26, 0x25, 0x2a, 0x15, - 0x16, 0x10, 0x2e, 0x1e, 0x19, 0x27, 0x10, 0x14, 0x17, 0x27, 0x23, 0x23, - 0x61, 0x3a, 0x36, 0x5d, 0x23, 0x23, 0x28, 0x8d, 0x0e, 0x0c, 0x10, 0x30, - 0x1d, 0x1f, 0x2f, 0x0f, 0x0d, 0x0e, 0x13, 0x12, 0x11, 0x2f, 0x1f, 0x03, - 0x7b, 0x26, 0x21, 0x21, 0x5c, 0x35, 0x36, 0x5b, 0x22, 0x21, 0x25, 0x15, - 0x14, 0x0c, 0x23, 0x13, 0x17, 0x29, 0x0f, 0x15, 0x19, 0x2a, 0x24, 0x24, - 0x62, 0x38, 0x37, 0x62, 0x24, 0x23, 0x29, 0x1d, 0x1a, 0x0e, 0x24, 0x14, - 0x13, 0x20, 0x0d, 0x15, 0x16, 0x7a, 0x13, 0x11, 0x11, 0x2d, 0x1b, 0x1f, - 0x32, 0x11, 0x0d, 0x0f, 0x12, 0x10, 0x10, 0x2f, 0x1c, 0x1b, 0x2e, 0x11, - 0x10, 0x14, 0x13, 0x0f, 0x0d, 0x0f, 0x27, 0x18, 0x1b, 0x29, 0x0e, 0x0d, - 0x0d, 0x0e, 0x0d, 0x0e, 0x28, 0x1a, 0x17, 0x27, 0x0d, 0x10, 0x10, 0xfd, - 0x99, 0x02, 0x02, 0x72, 0xfd, 0xff, 0x04, 0x87, 0x68, 0x0d, 0x0d, 0x0c, - 0x27, 0x1b, 0x15, 0x24, 0x0d, 0x0e, 0x10, 0x12, 0x10, 0x0b, 0x20, 0x12, - 0x37, 0x4f, 0x19, 0x1b, 0x18, 0x1c, 0x1a, 0x1a, 0x4e, 0x32, 0x24, 0x3b, - 0x15, 0x10, 0x1a, 0x08, 0x09, 0x19, 0x0f, 0x16, 0x35, 0x1e, 0x31, 0x4c, - 0x1a, 0x19, 0x1a, 0x1c, 0x19, 0x1a, 0x4a, 0x2e, 0x11, 0x1c, 0x0b, 0x0d, - 0x0e, 0x0f, 0x0e, 0x0c, 0x21, 0x13, 0x17, 0x26, 0x0d, 0x0b, 0x0d, 0xfd, - 0x82, 0x31, 0x4a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x19, 0x4a, 0x31, 0x1f, - 0x36, 0x16, 0x0e, 0x19, 0x0a, 0x09, 0x1b, 0x10, 0x17, 0x3c, 0x24, 0x33, - 0x4c, 0x1a, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x4c, 0x33, 0x27, 0x41, 0x18, - 0x0d, 0x16, 0x08, 0x09, 0x17, 0x0d, 0x16, 0x38, 0xfe, 0xe5, 0x18, 0x25, - 0x0d, 0x0c, 0x0e, 0x10, 0x0f, 0x0d, 0x23, 0x15, 0x18, 0x25, 0x0c, 0x0d, - 0x0d, 0x0d, 0x0d, 0x0c, 0x25, 0x01, 0x1c, 0x15, 0x22, 0x0c, 0x0b, 0x0e, - 0x0f, 0x0d, 0x0c, 0x20, 0x14, 0x15, 0x21, 0x0c, 0x0c, 0x0d, 0x0c, 0x0b, - 0x0b, 0x23, 0xfe, 0xb5, 0x03, 0xba, 0x42, 0xfc, 0x46, 0x00, 0x00, 0x05, - 0x00, 0x24, 0xff, 0xfa, 0x04, 0xad, 0x05, 0xb1, 0x00, 0x2d, 0x00, 0x5d, - 0x00, 0x75, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x00, 0x53, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x37, 0x21, 0x35, 0x21, 0x01, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0x37, 0x70, - 0x0b, 0x16, 0x0e, 0x0e, 0x24, 0x17, 0x41, 0x48, 0x0e, 0x10, 0x0f, 0x2e, - 0x20, 0x35, 0x43, 0x05, 0x8c, 0x03, 0x2d, 0x24, 0x25, 0x5d, 0x33, 0x42, - 0x64, 0x21, 0x21, 0x20, 0x21, 0x20, 0x1f, 0x5b, 0x39, 0x28, 0x43, 0x12, - 0x14, 0x01, 0x3a, 0xfe, 0x52, 0x04, 0x38, 0x26, 0x21, 0x21, 0x5c, 0x35, - 0x36, 0x5b, 0x22, 0x21, 0x25, 0x15, 0x14, 0x0c, 0x23, 0x13, 0x17, 0x29, - 0x0f, 0x15, 0x19, 0x2a, 0x24, 0x24, 0x62, 0x38, 0x37, 0x62, 0x24, 0x23, - 0x29, 0x1d, 0x1a, 0x0e, 0x24, 0x14, 0x13, 0x20, 0x0d, 0x15, 0x16, 0x7a, - 0x13, 0x11, 0x11, 0x2d, 0x1b, 0x1f, 0x32, 0x11, 0x0d, 0x0f, 0x12, 0x10, - 0x10, 0x2f, 0x1c, 0x1b, 0x2e, 0x11, 0x10, 0x14, 0x13, 0x0f, 0x0d, 0x0f, - 0x27, 0x18, 0x1b, 0x29, 0x0e, 0x0d, 0x0d, 0x0e, 0x0d, 0x0e, 0x28, 0x1a, - 0x17, 0x27, 0x0d, 0x10, 0x10, 0xfd, 0x96, 0x02, 0x02, 0x72, 0xfd, 0xff, - 0x04, 0x47, 0x1c, 0x08, 0x0d, 0x06, 0x05, 0x07, 0x44, 0x39, 0x1c, 0x2f, - 0x11, 0x12, 0x13, 0x2c, 0x2d, 0x30, 0x4c, 0x1a, 0x1b, 0x1b, 0x27, 0x21, - 0x21, 0x59, 0x30, 0x36, 0x57, 0x1e, 0x1e, 0x1f, 0x12, 0x08, 0x99, 0x77, - 0xfc, 0x5c, 0x31, 0x4a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x19, 0x4a, 0x31, - 0x1f, 0x36, 0x16, 0x0e, 0x19, 0x0a, 0x09, 0x1b, 0x10, 0x17, 0x3c, 0x24, - 0x33, 0x4c, 0x1a, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x4c, 0x33, 0x27, 0x41, - 0x18, 0x0d, 0x16, 0x08, 0x09, 0x17, 0x0d, 0x16, 0x38, 0xfe, 0xe5, 0x18, - 0x25, 0x0d, 0x0c, 0x0e, 0x10, 0x0f, 0x0d, 0x23, 0x15, 0x18, 0x25, 0x0c, - 0x0d, 0x0d, 0x0d, 0x0d, 0x0c, 0x25, 0x01, 0x1c, 0x15, 0x22, 0x0c, 0x0b, - 0x0e, 0x0f, 0x0d, 0x0c, 0x20, 0x14, 0x15, 0x21, 0x0c, 0x0c, 0x0d, 0x0c, - 0x0b, 0x0b, 0x23, 0xfe, 0xba, 0x03, 0xba, 0x42, 0xfc, 0x46, 0x00, 0x05, - 0x00, 0x41, 0xff, 0xf6, 0x04, 0xa7, 0x05, 0xb1, 0x00, 0x06, 0x00, 0x36, - 0x00, 0x4e, 0x00, 0x66, 0x00, 0x6a, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x21, 0x01, 0x33, 0x05, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0x02, 0x6e, 0xfd, 0xd3, 0x01, - 0x97, 0xfe, 0xc5, 0x96, 0x03, 0x63, 0x26, 0x21, 0x21, 0x5c, 0x35, 0x36, - 0x5b, 0x22, 0x21, 0x25, 0x15, 0x14, 0x0c, 0x23, 0x13, 0x17, 0x29, 0x0f, - 0x15, 0x19, 0x2a, 0x24, 0x24, 0x62, 0x38, 0x37, 0x62, 0x24, 0x23, 0x29, - 0x1d, 0x1a, 0x0e, 0x24, 0x14, 0x13, 0x20, 0x0d, 0x15, 0x16, 0x7a, 0x13, - 0x11, 0x11, 0x2d, 0x1b, 0x1f, 0x32, 0x11, 0x0d, 0x0f, 0x12, 0x10, 0x10, - 0x2f, 0x1c, 0x1b, 0x2e, 0x11, 0x10, 0x14, 0x13, 0x0f, 0x0d, 0x0f, 0x27, - 0x18, 0x1b, 0x29, 0x0e, 0x0d, 0x0d, 0x0e, 0x0d, 0x0e, 0x28, 0x1a, 0x17, - 0x27, 0x0d, 0x10, 0x10, 0xfd, 0x67, 0x02, 0x02, 0x72, 0xfd, 0xff, 0x05, - 0x60, 0x51, 0x75, 0xfd, 0xaf, 0xe2, 0x31, 0x4a, 0x19, 0x19, 0x1a, 0x1a, - 0x19, 0x19, 0x4a, 0x31, 0x1f, 0x36, 0x16, 0x0e, 0x19, 0x0a, 0x09, 0x1b, - 0x10, 0x17, 0x3c, 0x24, 0x33, 0x4c, 0x1a, 0x1a, 0x19, 0x19, 0x1a, 0x1a, - 0x4c, 0x33, 0x27, 0x41, 0x18, 0x0d, 0x16, 0x08, 0x09, 0x17, 0x0d, 0x16, - 0x38, 0xfe, 0xe5, 0x18, 0x25, 0x0d, 0x0c, 0x0e, 0x10, 0x0f, 0x0d, 0x23, - 0x15, 0x18, 0x25, 0x0c, 0x0d, 0x0d, 0x0d, 0x0d, 0x0c, 0x25, 0x01, 0x1c, - 0x15, 0x22, 0x0c, 0x0b, 0x0e, 0x0f, 0x0d, 0x0c, 0x20, 0x14, 0x15, 0x21, - 0x0c, 0x0c, 0x0d, 0x0c, 0x0b, 0x0b, 0x23, 0xfe, 0xbe, 0x03, 0xba, 0x42, - 0xfc, 0x46, 0x00, 0x02, 0x00, 0x7e, 0xff, 0xeb, 0x04, 0x46, 0x05, 0xec, - 0x00, 0x2c, 0x00, 0x49, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x02, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x26, 0x26, 0x07, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x02, 0x50, 0x6e, 0xad, - 0x3c, 0x3c, 0x3f, 0x41, 0x3e, 0x3e, 0xb3, 0x72, 0x4d, 0x83, 0x36, 0x3f, - 0x60, 0x1a, 0x13, 0x14, 0x41, 0x43, 0x44, 0xcf, 0x8f, 0x75, 0x8e, 0x39, - 0x10, 0x47, 0x87, 0x4e, 0x4a, 0x82, 0x32, 0x32, 0x42, 0x0b, 0x3c, 0xa6, - 0x49, 0x4a, 0x6b, 0x24, 0x24, 0x28, 0x06, 0x0c, 0x0c, 0x12, 0x3b, 0x29, - 0x20, 0x4f, 0x30, 0x4c, 0x70, 0x24, 0x25, 0x24, 0x24, 0x25, 0x25, 0x70, - 0x03, 0xfe, 0x4b, 0x42, 0x42, 0xb4, 0x69, 0x17, 0x71, 0xc1, 0x46, 0x47, - 0x51, 0x2d, 0x29, 0x31, 0x94, 0x5b, 0x3e, 0x8d, 0x4a, 0x3b, 0xb4, 0x01, - 0x2f, 0x6e, 0x6e, 0x7c, 0x2c, 0x19, 0x97, 0x1b, 0x20, 0x47, 0x3f, 0x3f, - 0xb0, 0x69, 0x45, 0x4c, 0x98, 0x2d, 0x20, 0x21, 0x49, 0x1c, 0x42, 0x39, - 0x69, 0x2f, 0x41, 0x68, 0x20, 0x19, 0x1c, 0x3d, 0x34, 0x33, 0x89, 0x4c, - 0x17, 0x44, 0x7b, 0x2f, 0x2f, 0x37, 0x00, 0x01, 0x00, 0xa7, 0xff, 0x2b, - 0x04, 0x25, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x00, 0x45, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x04, 0x25, 0xfc, 0x82, 0xb9, 0x02, 0x0c, 0xd5, - 0x06, 0x85, 0xf9, 0x7b, 0x05, 0xed, 0xfa, 0x13, 0x00, 0x01, 0x00, 0x33, - 0xfe, 0xf3, 0x04, 0x98, 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, - 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x01, 0x15, 0x21, 0x35, 0x21, 0x03, - 0x58, 0xfd, 0xbb, 0x03, 0x39, 0xfb, 0xe7, 0x02, 0x60, 0xfd, 0xa0, 0x04, - 0x65, 0xfc, 0x7c, 0x02, 0x41, 0x19, 0x02, 0xbe, 0x98, 0x90, 0xfd, 0x2e, - 0xfd, 0x34, 0x8f, 0x98, 0x00, 0x01, 0x00, 0x39, 0x00, 0x00, 0x04, 0x92, - 0x05, 0xb0, 0x00, 0x0a, 0x00, 0x00, 0x41, 0x03, 0x21, 0x15, 0x33, 0x13, - 0x33, 0x01, 0x23, 0x01, 0x07, 0x02, 0x18, 0xa4, 0xfe, 0xc5, 0xb9, 0xf5, - 0x8d, 0x02, 0x1e, 0xbd, 0xfe, 0x72, 0x19, 0x01, 0x51, 0x01, 0xbd, 0x9a, - 0xfd, 0x8c, 0x05, 0xb0, 0xfb, 0xa1, 0x69, 0x00, 0x00, 0x03, 0x00, 0x35, - 0x00, 0xe0, 0x04, 0x9a, 0x03, 0xdd, 0x00, 0x40, 0x00, 0x66, 0x00, 0x8c, - 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x05, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x04, - 0x9a, 0x11, 0x11, 0x0d, 0x23, 0x14, 0x22, 0x5b, 0x38, 0x22, 0x3b, 0x1a, - 0x22, 0x38, 0x15, 0x0f, 0x19, 0x0a, 0x13, 0x34, 0x22, 0x23, 0x57, 0x34, - 0x31, 0x51, 0x20, 0x26, 0x35, 0x0e, 0x08, 0x08, 0x0c, 0x0c, 0x10, 0x35, - 0x22, 0x1f, 0x4f, 0x2f, 0x34, 0x56, 0x23, 0x22, 0x34, 0x13, 0x13, 0x35, - 0x23, 0x22, 0x56, 0x34, 0x30, 0x4c, 0x23, 0x29, 0x33, 0x0f, 0x09, 0x09, - 0x7c, 0x05, 0x05, 0x07, 0x1c, 0x16, 0x11, 0x2e, 0x1e, 0x1e, 0x35, 0x17, - 0x17, 0x24, 0x0e, 0x0e, 0x11, 0x03, 0x03, 0x11, 0x0e, 0x0e, 0x25, 0x17, - 0x16, 0x36, 0x1e, 0x1f, 0x31, 0x12, 0x11, 0x16, 0x06, 0x09, 0x07, 0xfc, - 0x93, 0x05, 0x06, 0x07, 0x1a, 0x13, 0x12, 0x2f, 0x1f, 0x1e, 0x36, 0x17, - 0x16, 0x25, 0x0e, 0x0d, 0x11, 0x03, 0x03, 0x11, 0x0d, 0x0e, 0x25, 0x16, - 0x17, 0x35, 0x1e, 0x1e, 0x2e, 0x12, 0x13, 0x1b, 0x08, 0x06, 0x06, 0x02, - 0x4a, 0x2a, 0x30, 0x5e, 0x29, 0x1e, 0x37, 0x14, 0x22, 0x27, 0x13, 0x10, - 0x15, 0x3d, 0x22, 0x16, 0x2e, 0x17, 0x2a, 0x56, 0x23, 0x23, 0x2c, 0x1d, - 0x1a, 0x20, 0x5b, 0x36, 0x1e, 0x42, 0x21, 0x2a, 0x29, 0x50, 0x24, 0x2f, - 0x50, 0x1b, 0x18, 0x1b, 0x2c, 0x23, 0x23, 0x56, 0x2a, 0x2a, 0x56, 0x23, - 0x23, 0x2c, 0x1b, 0x1a, 0x1f, 0x58, 0x34, 0x20, 0x46, 0x4e, 0x2a, 0x1b, - 0x34, 0x18, 0x21, 0x39, 0x12, 0x0f, 0x11, 0x1d, 0x17, 0x16, 0x38, 0x1c, - 0x1b, 0x31, 0x0f, 0x1d, 0x0f, 0x31, 0x1c, 0x1b, 0x38, 0x17, 0x17, 0x1c, - 0x14, 0x12, 0x0f, 0x2b, 0x17, 0x1b, 0x3f, 0x4b, 0x2a, 0x1c, 0x35, 0x18, - 0x1e, 0x34, 0x13, 0x11, 0x13, 0x1c, 0x17, 0x17, 0x38, 0x1b, 0x1c, 0x31, - 0x0f, 0x1d, 0x10, 0x30, 0x1b, 0x1c, 0x38, 0x16, 0x17, 0x1d, 0x11, 0x0f, - 0x11, 0x34, 0x20, 0x19, 0x38, 0x00, 0x00, 0x01, 0x00, 0xf8, 0xfe, 0x4b, - 0x03, 0xd3, 0x06, 0x2b, 0x00, 0x28, 0x00, 0x00, 0x45, 0x31, 0x11, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x02, 0xaa, 0x1a, 0x19, 0x16, 0x42, 0x2b, 0x1d, 0x2d, 0x11, 0x18, - 0x25, 0x46, 0x25, 0x4f, 0x7e, 0x2b, 0x2c, 0x2e, 0x1a, 0x19, 0x10, 0x2c, - 0x1a, 0x0e, 0x44, 0x10, 0x0e, 0x1d, 0x35, 0x1e, 0x49, 0x74, 0x29, 0x2d, - 0x2f, 0x59, 0x05, 0x1b, 0x33, 0x50, 0x1b, 0x19, 0x1a, 0x06, 0x05, 0x8e, - 0x09, 0x0c, 0x31, 0x2e, 0x2e, 0x86, 0x56, 0xfa, 0xe5, 0x36, 0x53, 0x19, - 0x10, 0x12, 0x07, 0x06, 0x93, 0x0a, 0x08, 0x29, 0x28, 0x2c, 0x87, 0x00, - 0x00, 0x02, 0x00, 0x8e, 0x00, 0x00, 0x04, 0x3f, 0x05, 0xb0, 0x00, 0x05, - 0x00, 0x0d, 0x00, 0x00, 0x41, 0x01, 0x01, 0x33, 0x01, 0x01, 0x07, 0x17, - 0x01, 0x01, 0x07, 0x27, 0x01, 0x01, 0x02, 0x1e, 0xfe, 0x70, 0x01, 0x93, - 0x8d, 0x01, 0x91, 0xfe, 0x6c, 0x48, 0x11, 0x01, 0x0c, 0xfe, 0xfa, 0x12, - 0x10, 0xfe, 0xf4, 0x01, 0x06, 0x05, 0xb0, 0xfd, 0x27, 0xfd, 0x29, 0x02, - 0xd7, 0x02, 0xd9, 0x9c, 0x33, 0xfd, 0xf6, 0xfd, 0xf7, 0x33, 0x33, 0x02, - 0x09, 0x02, 0x0a, 0x00, 0x00, 0x16, 0x00, 0x5c, 0x00, 0x0a, 0x04, 0x87, - 0x04, 0x06, 0x00, 0x0d, 0x00, 0x1c, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x40, - 0x00, 0x46, 0x00, 0x4c, 0x00, 0x52, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, - 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x7c, 0x00, 0x80, - 0x00, 0x84, 0x00, 0x88, 0x00, 0x8c, 0x00, 0x90, 0x00, 0x94, 0x00, 0x00, - 0x41, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x35, 0x34, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x23, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x25, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x15, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x25, 0x35, 0x33, 0x15, 0x14, - 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x01, - 0x33, 0x35, 0x23, 0x35, 0x23, 0x05, 0x33, 0x35, 0x23, 0x15, 0x23, 0x01, - 0x33, 0x35, 0x33, 0x35, 0x23, 0x05, 0x33, 0x15, 0x33, 0x35, 0x23, 0x01, - 0x23, 0x15, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x03, 0x33, 0x35, 0x23, - 0x17, 0x33, 0x35, 0x23, 0x05, 0x33, 0x35, 0x23, 0x13, 0x33, 0x35, 0x23, - 0x17, 0x33, 0x35, 0x23, 0x05, 0x33, 0x35, 0x23, 0x13, 0x15, 0x33, 0x32, - 0x36, 0x35, 0x34, 0x26, 0x23, 0x05, 0x35, 0x23, 0x15, 0x17, 0x35, 0x23, - 0x15, 0x13, 0x35, 0x23, 0x15, 0x05, 0x35, 0x23, 0x15, 0x17, 0x35, 0x23, - 0x15, 0x13, 0x35, 0x23, 0x15, 0x01, 0xf0, 0x45, 0x39, 0x39, 0x47, 0x46, - 0x39, 0x39, 0x46, 0x9f, 0x7a, 0x67, 0x37, 0x3e, 0x17, 0x17, 0x1c, 0x1c, - 0x39, 0xfe, 0xfb, 0x29, 0x23, 0x23, 0x29, 0x29, 0x24, 0x23, 0x28, 0x02, - 0x0e, 0x32, 0x3a, 0x2d, 0x30, 0x3c, 0x33, 0x1f, 0x1a, 0x17, 0x1e, 0xfc, - 0x91, 0xaa, 0x6c, 0x3e, 0x03, 0x81, 0xaa, 0x3d, 0x6d, 0xfc, 0x7f, 0x3e, - 0x6c, 0xaa, 0x03, 0x81, 0x6d, 0x3d, 0xaa, 0xfe, 0xb2, 0x46, 0x46, 0x1d, - 0x1b, 0x1b, 0x87, 0x99, 0x99, 0xdc, 0x99, 0x99, 0xfe, 0x49, 0x98, 0x98, - 0xdb, 0x99, 0x99, 0xdc, 0x99, 0x99, 0xfe, 0x49, 0x98, 0x98, 0xff, 0x33, - 0x21, 0x20, 0x20, 0x21, 0xfe, 0x1e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x04, - 0x2b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x02, 0x25, 0x3e, 0x36, 0x42, 0x42, - 0x36, 0x3e, 0x36, 0x42, 0x42, 0xeb, 0x01, 0x2f, 0x28, 0x2b, 0x15, 0x22, - 0x09, 0x08, 0x27, 0x17, 0x2b, 0x2b, 0x77, 0x3e, 0x26, 0x2b, 0x2b, 0x26, - 0x3e, 0x26, 0x2b, 0x2b, 0x0f, 0xd0, 0xd0, 0x2d, 0x32, 0x2d, 0x2e, 0x1a, - 0x18, 0x1e, 0xfe, 0x52, 0x3f, 0x6f, 0xae, 0xae, 0x6f, 0x03, 0x20, 0x5d, - 0x40, 0x40, 0x5d, 0x9d, 0xfd, 0xf1, 0x5d, 0x18, 0x15, 0x16, 0x1a, 0x01, - 0xcf, 0x40, 0x40, 0x40, 0x40, 0x40, 0xfc, 0x04, 0x3f, 0x3f, 0x3f, 0x3f, - 0x3f, 0x02, 0x27, 0x53, 0x16, 0x16, 0x17, 0x10, 0xa5, 0x8a, 0x8a, 0xcf, - 0x89, 0x89, 0x01, 0x9f, 0x89, 0x89, 0xd0, 0x8a, 0x8a, 0xcf, 0x89, 0x89, - 0x01, 0x9f, 0x89, 0x89, 0x00, 0x05, 0x00, 0x0f, 0xfd, 0xd5, 0x04, 0xaf, - 0x08, 0x62, 0x00, 0x03, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3b, - 0x00, 0x00, 0x41, 0x09, 0x02, 0x05, 0x23, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x23, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x15, 0x23, 0x35, 0x13, 0x15, 0x33, 0x35, 0x03, 0x15, 0x33, - 0x35, 0x02, 0x62, 0xfd, 0xad, 0x02, 0x53, 0x02, 0x4d, 0xfe, 0x1a, 0xca, - 0x08, 0x0b, 0x0a, 0x23, 0x1d, 0x0a, 0x1b, 0x0c, 0x0c, 0x11, 0x20, 0x25, - 0x18, 0x29, 0x02, 0xcb, 0x01, 0x2b, 0x25, 0x24, 0x61, 0x38, 0x40, 0x66, - 0x23, 0x22, 0x25, 0x17, 0x12, 0x12, 0x2d, 0x16, 0x0b, 0x11, 0x06, 0x06, - 0x06, 0xca, 0x5e, 0x04, 0x06, 0x04, 0x06, 0x52, 0xfc, 0x31, 0xfc, 0x31, - 0x03, 0xcf, 0xfb, 0x30, 0x32, 0x13, 0x13, 0x28, 0x24, 0x0d, 0x27, 0x18, - 0x17, 0x33, 0x1a, 0x34, 0x40, 0x30, 0x37, 0x46, 0x65, 0x21, 0x20, 0x1e, - 0x27, 0x24, 0x25, 0x67, 0x40, 0x29, 0x40, 0x1c, 0x1d, 0x37, 0x1f, 0x10, - 0x1d, 0x0f, 0x10, 0x27, 0x74, 0xaa, 0xaa, 0xfc, 0xac, 0x04, 0x04, 0x0a, - 0x89, 0x04, 0x04, 0x00, 0x00, 0x02, 0x01, 0x11, 0x04, 0xe4, 0x03, 0xef, - 0x06, 0xf9, 0x00, 0x06, 0x00, 0x2c, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, - 0x33, 0x37, 0x17, 0x13, 0x27, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x17, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0xef, 0xfe, 0xdb, 0x95, 0xfe, 0xdc, - 0xaa, 0xc4, 0xc5, 0x40, 0x4d, 0x0e, 0x0b, 0x0c, 0x1e, 0x10, 0x1d, 0x30, - 0x17, 0x17, 0x32, 0x1f, 0x22, 0x3a, 0x15, 0x16, 0x19, 0x4d, 0x0f, 0x0c, - 0x0b, 0x1d, 0x10, 0x1e, 0x2c, 0x16, 0x15, 0x32, 0x25, 0x22, 0x3a, 0x16, - 0x15, 0x19, 0x04, 0xe4, 0x01, 0x06, 0xfe, 0xfa, 0xb0, 0xb0, 0x01, 0xfe, - 0x17, 0x11, 0x21, 0x0d, 0x0d, 0x10, 0x16, 0x0d, 0x0d, 0x16, 0x1f, 0x19, - 0x19, 0x41, 0x21, 0x13, 0x11, 0x21, 0x0e, 0x0d, 0x11, 0x17, 0x0d, 0x0e, - 0x16, 0x1e, 0x19, 0x18, 0x3f, 0x00, 0x00, 0x02, 0x00, 0xfc, 0x04, 0xe4, - 0x04, 0xba, 0x06, 0xcf, 0x00, 0x06, 0x00, 0x22, 0x00, 0x00, 0x41, 0x01, - 0x23, 0x01, 0x33, 0x37, 0x17, 0x37, 0x33, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x07, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0xdd, 0xfe, - 0xed, 0xbc, 0xfe, 0xee, 0xaa, 0xc6, 0xc6, 0x8e, 0x72, 0x01, 0x19, 0x31, - 0x13, 0x13, 0x17, 0x30, 0x2c, 0x21, 0x56, 0x34, 0x06, 0x1c, 0x34, 0x14, - 0x13, 0x18, 0x13, 0x12, 0x0f, 0x2d, 0x1c, 0x04, 0xe4, 0x01, 0x06, 0xfe, - 0xfa, 0xba, 0xba, 0x8a, 0x3c, 0x03, 0x12, 0x10, 0x0f, 0x2f, 0x21, 0x2b, - 0x43, 0x14, 0x0f, 0x10, 0x5c, 0x07, 0x08, 0x08, 0x19, 0x13, 0x13, 0x17, - 0x07, 0x05, 0x07, 0x02, 0x00, 0x02, 0x00, 0x10, 0x04, 0xe4, 0x03, 0xf9, - 0x06, 0x95, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, - 0x33, 0x37, 0x17, 0x25, 0x03, 0x23, 0x13, 0x03, 0xf9, 0xfe, 0xdd, 0x98, - 0xfe, 0xde, 0xc4, 0xaa, 0xaa, 0xfe, 0x31, 0x8d, 0xc8, 0xc9, 0x04, 0xe4, - 0x01, 0x06, 0xfe, 0xfa, 0x9e, 0x9e, 0xae, 0x01, 0x03, 0xfe, 0xfd, 0x00, - 0x00, 0x02, 0x01, 0x0b, 0x04, 0xe4, 0x04, 0xf4, 0x06, 0x95, 0x00, 0x06, - 0x00, 0x0a, 0x00, 0x00, 0x41, 0x01, 0x33, 0x37, 0x17, 0x33, 0x01, 0x25, - 0x03, 0x33, 0x13, 0x02, 0x2f, 0xfe, 0xdc, 0xc6, 0xaa, 0xa9, 0xc5, 0xfe, - 0xdd, 0x01, 0x67, 0x8e, 0x8d, 0xc8, 0x05, 0xea, 0xfe, 0xfa, 0x9e, 0x9e, - 0x01, 0x06, 0xab, 0xfe, 0xfd, 0x01, 0x03, 0x00, 0x00, 0x02, 0x01, 0x3e, - 0x04, 0xdf, 0x03, 0x9c, 0x06, 0x8a, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x00, - 0x41, 0x27, 0x23, 0x17, 0x05, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x02, 0xa6, 0x71, 0x99, 0xa4, 0x01, - 0x5c, 0x99, 0x01, 0x13, 0x14, 0x12, 0x36, 0x25, 0x28, 0x39, 0x12, 0x13, - 0x12, 0x98, 0x2c, 0x28, 0x27, 0x70, 0x45, 0x44, 0x6f, 0x28, 0x27, 0x2c, - 0x05, 0xc4, 0xc6, 0xc6, 0x14, 0x19, 0x2c, 0x10, 0x0e, 0x11, 0x12, 0x10, - 0x0f, 0x2b, 0x18, 0x2f, 0x4d, 0x1b, 0x1c, 0x1e, 0x1e, 0x1c, 0x1b, 0x4d, - 0x00, 0x01, 0x01, 0xf9, 0x04, 0x8e, 0x02, 0xf0, 0x06, 0x3b, 0x00, 0x09, - 0x00, 0x00, 0x41, 0x15, 0x33, 0x35, 0x34, 0x36, 0x37, 0x27, 0x06, 0x06, - 0x01, 0xf9, 0xb9, 0x1b, 0x23, 0x6b, 0x30, 0x5c, 0x05, 0x0f, 0x81, 0x78, - 0x3d, 0x6a, 0x3b, 0x53, 0x2a, 0xab, 0x00, 0x02, 0x00, 0x36, 0x00, 0x00, - 0x04, 0x8e, 0x04, 0x8d, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x13, - 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x37, 0x13, 0x37, 0x17, 0x13, 0x03, - 0x66, 0x6d, 0xbb, 0xfe, 0x2a, 0xa5, 0xfe, 0x23, 0xbc, 0x6e, 0x3c, 0xaa, - 0x1e, 0x1f, 0xa8, 0x01, 0x17, 0xfe, 0xe9, 0x04, 0x8d, 0xfb, 0x73, 0x01, - 0x17, 0x97, 0x01, 0xae, 0x4d, 0x4f, 0xfe, 0x54, 0x00, 0x03, 0x00, 0xd0, - 0x00, 0x00, 0x04, 0x46, 0x04, 0x8d, 0x00, 0x1a, 0x00, 0x29, 0x00, 0x38, - 0x00, 0x00, 0x73, 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x21, 0x13, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x11, 0x11, 0x33, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0xd0, - 0x01, 0xc7, 0x57, 0xa9, 0x3d, 0x35, 0x3d, 0x24, 0x1e, 0x1f, 0x54, 0x31, - 0x28, 0x47, 0x1b, 0x1a, 0x20, 0x51, 0x41, 0x3c, 0x9e, 0x4b, 0xfe, 0x63, - 0xbb, 0x01, 0x15, 0x2f, 0x56, 0x21, 0x20, 0x26, 0x2b, 0x23, 0x23, 0x58, - 0x2c, 0xfe, 0xf4, 0xe3, 0x2b, 0x5a, 0x25, 0x25, 0x2e, 0x2b, 0x21, 0x21, - 0x52, 0x28, 0x2d, 0x2e, 0x2a, 0x75, 0x53, 0x37, 0x5b, 0x23, 0x22, 0x2e, - 0x0c, 0x0e, 0x2b, 0x1e, 0x1d, 0x4d, 0x30, 0x5d, 0x79, 0x26, 0x23, 0x1f, - 0xfd, 0x85, 0x01, 0x17, 0x17, 0x18, 0x49, 0x34, 0x33, 0x45, 0x15, 0x16, - 0x13, 0x01, 0x02, 0x08, 0x01, 0x55, 0x01, 0x0f, 0x13, 0x13, 0x43, 0x34, - 0x2f, 0x40, 0x13, 0x14, 0x11, 0x01, 0x00, 0x01, 0x00, 0x6e, 0xff, 0xf0, - 0x04, 0x36, 0x04, 0x9d, 0x00, 0x33, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x04, 0x36, 0xb9, 0x0a, 0x27, 0x1e, 0x24, 0x6a, 0x47, 0x54, 0x75, 0x24, - 0x24, 0x20, 0x01, 0x01, 0x23, 0x26, 0x26, 0x78, 0x55, 0x40, 0x61, 0x23, - 0x21, 0x2a, 0x0a, 0xb9, 0x0c, 0x4e, 0x3c, 0x3d, 0xa1, 0x5e, 0x77, 0xb9, - 0x40, 0x41, 0x44, 0x01, 0x01, 0x42, 0x3f, 0x3e, 0xb6, 0x75, 0x5e, 0xa3, - 0x3f, 0x3f, 0x52, 0x01, 0x79, 0x37, 0x55, 0x1e, 0x24, 0x25, 0x01, 0x45, - 0x38, 0x38, 0x8e, 0x49, 0x66, 0x4b, 0x8f, 0x38, 0x37, 0x43, 0x22, 0x21, - 0x1f, 0x5a, 0x3a, 0x5e, 0x94, 0x33, 0x33, 0x36, 0x57, 0x4b, 0x4b, 0xc7, - 0x71, 0x65, 0x6f, 0xc6, 0x4b, 0x4b, 0x58, 0x33, 0x32, 0x32, 0x92, 0x00, - 0x00, 0x02, 0x00, 0xb7, 0x00, 0x00, 0x04, 0x53, 0x04, 0x8d, 0x00, 0x0f, - 0x00, 0x1f, 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x17, 0x33, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, - 0xb7, 0x01, 0x5f, 0x7b, 0xd0, 0x4d, 0x4c, 0x58, 0x01, 0x01, 0x55, 0x4a, - 0x4b, 0xcd, 0x79, 0xfe, 0x95, 0xba, 0xb1, 0x5b, 0x8c, 0x30, 0x2f, 0x31, - 0x01, 0x01, 0x35, 0x31, 0x32, 0x8f, 0x5c, 0xa5, 0x01, 0x4e, 0x48, 0x47, - 0xca, 0x7e, 0x3f, 0x7b, 0xca, 0x49, 0x48, 0x50, 0x02, 0x99, 0x01, 0x3a, - 0x34, 0x35, 0x91, 0x58, 0x41, 0x5a, 0x93, 0x34, 0x34, 0x39, 0x01, 0x00, - 0x00, 0x01, 0x00, 0xc8, 0x00, 0x00, 0x04, 0x23, 0x04, 0x8d, 0x00, 0x0b, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x03, 0xc5, 0xfd, 0xc0, 0x02, 0x98, 0xfc, 0xab, 0x03, 0x5b, - 0xfd, 0x62, 0x02, 0x0e, 0x98, 0x01, 0x4e, 0x99, 0xfb, 0x73, 0x97, 0x01, - 0x77, 0x00, 0x00, 0x01, 0x00, 0xe7, 0x00, 0x00, 0x04, 0x3d, 0x04, 0x8d, - 0x00, 0x09, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x33, 0x11, 0x03, 0xe4, 0xfd, 0xc3, 0x02, 0x96, 0xfc, 0xaa, 0xc0, 0x01, - 0xf3, 0x99, 0x01, 0x68, 0x99, 0xfb, 0x73, 0x01, 0xf3, 0x00, 0x00, 0x01, - 0x00, 0x7c, 0xff, 0xf0, 0x04, 0x41, 0x04, 0x9d, 0x00, 0x37, 0x00, 0x00, - 0x65, 0x11, 0x21, 0x15, 0x21, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x04, 0x41, 0xfe, 0x34, - 0x01, 0x15, 0x01, 0x19, 0x3e, 0x21, 0x22, 0x46, 0x21, 0x57, 0x7e, 0x29, - 0x2a, 0x28, 0x01, 0x01, 0x21, 0x26, 0x25, 0x79, 0x57, 0x3e, 0x62, 0x24, - 0x1e, 0x29, 0x0b, 0xb7, 0x0e, 0x51, 0x3d, 0x3d, 0x9d, 0x59, 0x7a, 0xbb, - 0x3f, 0x3f, 0x42, 0x01, 0x01, 0x49, 0x43, 0x43, 0xc0, 0x79, 0x3c, 0x7c, - 0x3a, 0x3a, 0x67, 0x96, 0x01, 0xb9, 0x90, 0xee, 0x18, 0x1d, 0x08, 0x08, - 0x05, 0x45, 0x38, 0x38, 0x92, 0x4e, 0x56, 0x4c, 0x91, 0x39, 0x39, 0x44, - 0x21, 0x21, 0x1b, 0x4c, 0x30, 0x5b, 0x8b, 0x2e, 0x2e, 0x2f, 0x57, 0x4b, - 0x4c, 0xcb, 0x74, 0x54, 0x74, 0xca, 0x4b, 0x4c, 0x57, 0x0f, 0x13, 0x13, - 0x40, 0x00, 0x00, 0x01, 0x00, 0x9b, 0x00, 0x00, 0x03, 0xf9, 0x04, 0x8d, - 0x00, 0x0b, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x03, 0xf9, 0xb2, 0xfe, 0x06, 0xb2, 0xb2, 0x01, - 0xfa, 0x04, 0x8d, 0xfd, 0xfd, 0x02, 0x03, 0xfb, 0x73, 0x01, 0xf2, 0xfe, - 0x0e, 0x00, 0x00, 0x01, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, 0x04, 0x8c, - 0x00, 0x0b, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, - 0x21, 0x11, 0x21, 0x35, 0xd9, 0x01, 0x3b, 0xfe, 0xc5, 0x03, 0x37, 0xfe, - 0xbd, 0x01, 0x43, 0x04, 0x8c, 0xa1, 0xfc, 0xb5, 0xa0, 0xa0, 0x03, 0x4b, - 0xa1, 0x00, 0x00, 0x01, 0x00, 0x96, 0xff, 0xf0, 0x03, 0xe6, 0x04, 0x8d, - 0x00, 0x1b, 0x00, 0x00, 0x41, 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x13, 0x03, 0x28, 0x01, 0x02, - 0x23, 0x1e, 0x1e, 0x50, 0x2f, 0x31, 0x58, 0x22, 0x22, 0x28, 0xbe, 0x08, - 0x49, 0x3a, 0x39, 0x98, 0x57, 0x50, 0x94, 0x39, 0x38, 0x44, 0x02, 0x02, - 0x04, 0x8d, 0xfc, 0xea, 0x39, 0x59, 0x1e, 0x1f, 0x21, 0x19, 0x1c, 0x1c, - 0x59, 0x3e, 0x65, 0x91, 0x2e, 0x2f, 0x2c, 0x33, 0x32, 0x31, 0x92, 0x5f, - 0x03, 0x16, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x00, 0x04, 0x80, 0x04, 0x8d, - 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, - 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x00, 0x01, 0x9f, 0xe1, 0xfe, 0x00, - 0x01, 0xde, 0xe3, 0xfe, 0x74, 0x82, 0xb9, 0xb9, 0x02, 0x07, 0xfd, 0xf9, - 0x02, 0x86, 0x02, 0x07, 0xfe, 0x65, 0x8f, 0x02, 0x2a, 0xfb, 0x73, 0x01, - 0x79, 0x00, 0x00, 0x01, 0x00, 0xd1, 0x00, 0x00, 0x04, 0x52, 0x04, 0x8d, - 0x00, 0x05, 0x00, 0x00, 0x65, 0x11, 0x23, 0x11, 0x21, 0x35, 0x01, 0x95, - 0xc4, 0x03, 0x81, 0x97, 0x03, 0xf6, 0xfb, 0x73, 0x97, 0x00, 0x00, 0x01, - 0x00, 0x9b, 0x00, 0x00, 0x04, 0x3a, 0x04, 0x8d, 0x00, 0x0c, 0x00, 0x00, - 0x41, 0x03, 0x23, 0x11, 0x33, 0x11, 0x13, 0x33, 0x13, 0x11, 0x33, 0x11, - 0x23, 0x02, 0x6d, 0xda, 0xf8, 0xb0, 0xe2, 0x83, 0xda, 0xb0, 0xf1, 0x02, - 0x58, 0x02, 0x35, 0xfb, 0x73, 0x03, 0xb1, 0xfd, 0x8d, 0x02, 0x81, 0xfc, - 0x41, 0x04, 0x8d, 0x00, 0x00, 0x01, 0x00, 0xc2, 0x00, 0x00, 0x04, 0x0f, - 0x04, 0x8d, 0x00, 0x09, 0x00, 0x00, 0x61, 0x11, 0x23, 0x13, 0x01, 0x23, - 0x11, 0x33, 0x03, 0x01, 0x04, 0x0f, 0xb0, 0x06, 0xfe, 0x0b, 0xae, 0xb1, - 0x05, 0x01, 0xf5, 0x04, 0x8d, 0xfc, 0x93, 0x03, 0x6d, 0xfb, 0x73, 0x03, - 0x6c, 0xfc, 0x94, 0x00, 0x00, 0x02, 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, - 0x04, 0x9d, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x4a, 0x01, 0x3d, 0x3c, 0x3d, 0xb5, 0x78, 0x77, 0xb4, 0x3d, 0x3d, - 0x3e, 0x01, 0x01, 0x3f, 0x3d, 0x3d, 0xb4, 0x77, 0x78, 0xb4, 0x3d, 0x3c, - 0x3d, 0xb6, 0x01, 0x1e, 0x22, 0x23, 0x73, 0x55, 0x54, 0x72, 0x23, 0x24, - 0x20, 0x01, 0x01, 0x1f, 0x24, 0x23, 0x72, 0x54, 0x54, 0x73, 0x23, 0x23, - 0x1f, 0x02, 0x24, 0x43, 0x6e, 0xcd, 0x4f, 0x4e, 0x5e, 0x5f, 0x4f, 0x4f, - 0xcc, 0x6d, 0x43, 0x6d, 0xcc, 0x4e, 0x4f, 0x5e, 0x5e, 0x4e, 0x4e, 0xcc, - 0xb3, 0x45, 0x47, 0x92, 0x3b, 0x3b, 0x4b, 0x4b, 0x3c, 0x3b, 0x91, 0x47, - 0x45, 0x46, 0x91, 0x3b, 0x3b, 0x4b, 0x4a, 0x3a, 0x3b, 0x92, 0x00, 0x02, - 0x00, 0x5e, 0xff, 0x36, 0x04, 0x67, 0x04, 0x9d, 0x00, 0x1f, 0x00, 0x39, - 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x05, 0x37, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x65, 0x01, 0x46, 0x42, 0x42, 0xbf, 0x7a, 0x7a, 0xbe, 0x42, 0x42, - 0x46, 0x01, 0x01, 0x47, 0x42, 0x42, 0xbf, 0x7a, 0x20, 0x3f, 0x1e, 0x01, - 0x0a, 0x7d, 0xdf, 0x35, 0x52, 0x1c, 0x1c, 0x1d, 0xb7, 0x01, 0x25, 0x28, - 0x28, 0x7c, 0x58, 0x57, 0x7d, 0x28, 0x29, 0x27, 0x01, 0x01, 0x27, 0x28, - 0x28, 0x7c, 0x57, 0x58, 0x7d, 0x28, 0x28, 0x26, 0x02, 0x24, 0x43, 0x74, - 0xce, 0x4d, 0x4d, 0x5a, 0x5b, 0x4d, 0x4e, 0xcd, 0x73, 0x43, 0x73, 0xcd, - 0x4d, 0x4d, 0x5a, 0x07, 0x07, 0xc8, 0x6f, 0xa3, 0x26, 0x66, 0x3e, 0x3d, - 0x8b, 0x8f, 0x45, 0x4e, 0x94, 0x39, 0x39, 0x46, 0x46, 0x3a, 0x3a, 0x93, - 0x4d, 0x45, 0x4c, 0x93, 0x3a, 0x39, 0x46, 0x45, 0x39, 0x39, 0x93, 0x00, - 0x00, 0x02, 0x00, 0x90, 0x00, 0x00, 0x04, 0x2c, 0x04, 0x8d, 0x00, 0x14, - 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x33, 0x35, 0x01, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, - 0x11, 0x35, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x02, 0x61, 0x01, 0x04, 0xc7, 0xfe, 0xde, 0x32, - 0x57, 0x20, 0x20, 0x24, 0x4b, 0x3e, 0x3f, 0xa1, 0x54, 0xfe, 0x56, 0xb9, - 0xf1, 0x32, 0x5e, 0x24, 0x24, 0x2b, 0x2d, 0x23, 0x24, 0x5b, 0x2f, 0x01, - 0xc1, 0xfe, 0x3f, 0x0a, 0x01, 0xe6, 0x16, 0x39, 0x26, 0x25, 0x60, 0x3f, - 0x5f, 0x86, 0x2b, 0x2b, 0x28, 0x01, 0xfb, 0x73, 0x01, 0xc1, 0x97, 0x01, - 0x9c, 0x01, 0x18, 0x19, 0x19, 0x4f, 0x38, 0x35, 0x4b, 0x18, 0x19, 0x18, - 0x01, 0x00, 0x00, 0x01, 0x00, 0x8a, 0xff, 0xf0, 0x04, 0x39, 0x04, 0x9d, - 0x00, 0x4c, 0x00, 0x00, 0x41, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0x7f, 0x01, - 0x35, 0x27, 0x28, 0x5d, 0x28, 0x36, 0x6a, 0x2b, 0x2b, 0x37, 0x02, 0xbc, - 0x03, 0x1f, 0x19, 0x15, 0x36, 0x1f, 0x45, 0xab, 0x56, 0x4c, 0xa5, 0x46, - 0x3b, 0x52, 0x4c, 0x3c, 0x3c, 0x92, 0x46, 0x30, 0x8a, 0x31, 0x1e, 0x27, - 0x32, 0x26, 0x26, 0x5a, 0x28, 0x32, 0x60, 0x26, 0x26, 0x2f, 0x02, 0xbb, - 0x06, 0x51, 0x3f, 0x3f, 0x9f, 0x54, 0x45, 0x97, 0x3c, 0x48, 0x5b, 0x53, - 0x41, 0x40, 0x99, 0x45, 0x31, 0x83, 0x28, 0x21, 0x1d, 0x01, 0x2a, 0x32, - 0x40, 0x12, 0x13, 0x0e, 0x15, 0x1a, 0x19, 0x53, 0x3d, 0x34, 0x59, 0x25, - 0x1e, 0x32, 0x14, 0x2d, 0x2a, 0x25, 0x27, 0x24, 0x77, 0x55, 0x55, 0x79, - 0x2b, 0x2a, 0x37, 0x12, 0x0b, 0x29, 0x1e, 0x12, 0x39, 0x28, 0x31, 0x41, - 0x14, 0x13, 0x10, 0x16, 0x19, 0x19, 0x4e, 0x37, 0x5a, 0x86, 0x2d, 0x2c, - 0x2b, 0x22, 0x21, 0x27, 0x7e, 0x59, 0x56, 0x78, 0x29, 0x29, 0x33, 0x11, - 0x0d, 0x26, 0x20, 0x1b, 0x37, 0x00, 0x00, 0x01, 0x00, 0x5d, 0x00, 0x00, - 0x04, 0x69, 0x04, 0x8d, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x21, 0x11, 0x33, 0x11, 0x04, 0x69, 0xfb, 0xf4, 0x01, 0xa7, 0xbc, 0x03, - 0xf4, 0x99, 0x99, 0xfc, 0x0c, 0x03, 0xf4, 0x00, 0x00, 0x01, 0x00, 0xb5, - 0xff, 0xf0, 0x04, 0x2b, 0x04, 0x8d, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x04, 0x2a, 0xb7, 0x01, 0x01, 0x25, 0x21, 0x22, - 0x5f, 0x3b, 0x3b, 0x5f, 0x21, 0x22, 0x25, 0x01, 0x01, 0xb5, 0x01, 0x01, - 0x46, 0x3c, 0x3b, 0xa0, 0x5c, 0x5b, 0xa0, 0x3c, 0x3c, 0x47, 0x02, 0x04, - 0x8d, 0xfc, 0xf4, 0x3b, 0x5d, 0x20, 0x20, 0x22, 0x22, 0x20, 0x20, 0x5d, - 0x3b, 0x03, 0x0c, 0xfc, 0xf4, 0x60, 0x95, 0x33, 0x33, 0x36, 0x36, 0x34, - 0x34, 0x94, 0x5f, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x04, 0x83, - 0x04, 0x8d, 0x00, 0x08, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x33, 0x01, - 0x23, 0x01, 0x07, 0x02, 0x50, 0xfe, 0xce, 0xc8, 0x01, 0xbf, 0xae, 0x01, - 0xc0, 0xc9, 0xfe, 0xcf, 0x1d, 0x01, 0x36, 0x03, 0x57, 0xfb, 0x73, 0x04, - 0x8d, 0xfc, 0xa8, 0x6a, 0x00, 0x01, 0x00, 0x2f, 0x00, 0x00, 0x04, 0xbb, - 0x04, 0x8d, 0x00, 0x12, 0x00, 0x00, 0x61, 0x33, 0x13, 0x37, 0x17, 0x13, - 0x33, 0x13, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x03, 0x07, 0x27, 0x03, - 0x23, 0x01, 0x17, 0x9f, 0xb3, 0x0e, 0x0d, 0xaf, 0x9f, 0xe9, 0xac, 0x8c, - 0x0b, 0x0d, 0xa7, 0x9a, 0xab, 0x0d, 0x0b, 0x8d, 0xab, 0x03, 0x03, 0x3b, - 0x3b, 0xfc, 0xfd, 0x04, 0x8d, 0xfd, 0x03, 0x3d, 0x3d, 0x02, 0xfd, 0xfd, - 0x02, 0x3c, 0x3d, 0x02, 0xfd, 0x00, 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, - 0x04, 0x66, 0x04, 0x8d, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, - 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x01, 0x23, 0x02, 0x5f, 0xfe, 0xe5, - 0xdb, 0x01, 0x8b, 0xfe, 0x6c, 0xdc, 0x01, 0x26, 0x01, 0x28, 0xdc, 0xfe, - 0x69, 0x01, 0x88, 0xdb, 0x02, 0xda, 0x01, 0xb3, 0xfd, 0xbe, 0xfd, 0xb5, - 0x01, 0xbb, 0xfe, 0x45, 0x02, 0x4b, 0x02, 0x42, 0x00, 0x01, 0x00, 0x4d, - 0x00, 0x00, 0x04, 0x81, 0x04, 0x8d, 0x00, 0x0a, 0x00, 0x00, 0x61, 0x33, - 0x11, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x01, 0x02, 0x06, 0xbb, - 0x01, 0xc0, 0xd4, 0xfe, 0xbe, 0x05, 0x05, 0xfe, 0xc0, 0xd4, 0x01, 0xb9, - 0x01, 0x95, 0x02, 0xf8, 0xfd, 0xc0, 0x09, 0x09, 0x02, 0x40, 0xfd, 0x14, - 0x00, 0x01, 0x00, 0xb9, 0x00, 0x00, 0x04, 0x42, 0x04, 0x8d, 0x00, 0x09, - 0x00, 0x00, 0x65, 0x01, 0x27, 0x21, 0x15, 0x21, 0x01, 0x15, 0x21, 0x35, - 0x01, 0x9f, 0x02, 0x8b, 0x01, 0xfc, 0x99, 0x02, 0x82, 0xfd, 0x75, 0x03, - 0x89, 0x97, 0x03, 0x7d, 0x79, 0x99, 0xfc, 0x88, 0x7c, 0x97, 0x00, 0x02, - 0x01, 0x52, 0x04, 0xe0, 0x03, 0x9a, 0x07, 0x03, 0x00, 0x19, 0x00, 0x35, - 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x25, 0x33, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x07, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x9a, 0x92, 0x11, - 0x10, 0x12, 0x38, 0x26, 0x26, 0x37, 0x12, 0x12, 0x12, 0x01, 0x91, 0x2a, - 0x27, 0x26, 0x6c, 0x42, 0x42, 0x6c, 0x26, 0x25, 0x2a, 0xfe, 0x9c, 0x7f, - 0x03, 0x1b, 0x36, 0x15, 0x15, 0x1a, 0x31, 0x2f, 0x25, 0x63, 0x3d, 0x07, - 0x20, 0x3a, 0x16, 0x16, 0x1b, 0x12, 0x12, 0x12, 0x34, 0x22, 0x05, 0xb0, - 0x17, 0x29, 0x0f, 0x11, 0x13, 0x12, 0x0f, 0x0f, 0x2b, 0x18, 0x2f, 0x4c, - 0x1b, 0x1c, 0x1e, 0x1e, 0x1c, 0x1b, 0x4c, 0x40, 0x3e, 0x03, 0x10, 0x0e, - 0x0d, 0x29, 0x1d, 0x26, 0x3b, 0x12, 0x0e, 0x0f, 0x52, 0x06, 0x06, 0x07, - 0x17, 0x11, 0x10, 0x14, 0x06, 0x06, 0x07, 0x02, 0x00, 0x02, 0x01, 0x42, - 0x04, 0xdf, 0x03, 0xa0, 0x06, 0x8a, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x00, - 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x03, 0x07, 0x33, 0x37, 0x03, 0xa0, 0x99, 0x01, 0x13, 0x14, - 0x12, 0x36, 0x25, 0x28, 0x39, 0x12, 0x13, 0x12, 0x98, 0x2c, 0x28, 0x27, - 0x70, 0x45, 0x44, 0x6f, 0x28, 0x27, 0x2c, 0xf8, 0x71, 0x66, 0xa4, 0x05, - 0xb0, 0x19, 0x2c, 0x10, 0x0e, 0x11, 0x12, 0x10, 0x0f, 0x2b, 0x18, 0x2f, - 0x4d, 0x1b, 0x1c, 0x1e, 0x1e, 0x1c, 0x1b, 0x4d, 0x01, 0x09, 0xc6, 0xc6, - 0x00, 0x01, 0x01, 0x35, 0x02, 0x8b, 0x03, 0xb2, 0x03, 0x22, 0x00, 0x03, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x03, 0xb2, 0xfd, 0x83, 0x02, 0x8b, - 0x97, 0x97, 0x00, 0x03, 0x01, 0xd1, 0x04, 0x40, 0x03, 0xa8, 0x06, 0x72, - 0x00, 0x03, 0x00, 0x1b, 0x00, 0x27, 0x00, 0x00, 0x41, 0x07, 0x33, 0x37, - 0x01, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x02, 0xe2, 0x92, 0x7c, 0xdc, 0xfe, 0x29, 0x1c, 0x18, 0x17, 0x3e, 0x23, - 0x22, 0x3e, 0x17, 0x16, 0x1b, 0x1b, 0x16, 0x17, 0x3e, 0x22, 0x23, 0x3e, - 0x17, 0x18, 0x1c, 0x55, 0x01, 0x32, 0x24, 0x23, 0x31, 0x01, 0x30, 0x23, - 0x24, 0x32, 0x06, 0x72, 0xb8, 0xb8, 0xfe, 0x71, 0x24, 0x3c, 0x15, 0x16, - 0x18, 0x18, 0x16, 0x15, 0x3c, 0x24, 0x24, 0x3e, 0x16, 0x16, 0x19, 0x19, - 0x16, 0x16, 0x3e, 0x24, 0x26, 0x32, 0x32, 0x26, 0x23, 0x32, 0x32, 0x00, - 0x00, 0x02, 0x01, 0xf5, 0x04, 0x82, 0x03, 0xb7, 0x05, 0xc4, 0x00, 0x05, - 0x00, 0x15, 0x00, 0x00, 0x41, 0x15, 0x33, 0x13, 0x35, 0x23, 0x05, 0x15, - 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x02, 0xaf, 0x50, 0xb8, 0xa8, 0xfe, 0xe6, 0x7b, 0x01, 0x07, - 0x06, 0x06, 0x15, 0x0d, 0x48, 0x18, 0x25, 0x0d, 0x0b, 0x10, 0x04, 0x9e, - 0x1a, 0x01, 0x2b, 0x15, 0xb6, 0x8c, 0x86, 0x18, 0x2d, 0x16, 0x19, 0x2f, - 0x16, 0x03, 0x10, 0x2a, 0x19, 0x16, 0x32, 0x00, 0x00, 0x02, 0x01, 0x74, - 0x04, 0xd9, 0x03, 0xc2, 0x06, 0xd0, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, - 0x41, 0x23, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x23, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x03, 0x27, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x15, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x03, 0xc2, 0x95, 0x11, 0x12, 0x12, 0x37, 0x26, - 0x27, 0x37, 0x12, 0x11, 0x11, 0x95, 0x2a, 0x27, 0x26, 0x6d, 0x43, 0x43, - 0x6d, 0x27, 0x26, 0x2a, 0x09, 0x53, 0x30, 0x22, 0x20, 0x34, 0x19, 0x1a, - 0x35, 0x21, 0x48, 0x5e, 0x54, 0x01, 0x2e, 0x23, 0x21, 0x2f, 0x18, 0x17, - 0x36, 0x28, 0x47, 0x5e, 0x05, 0xae, 0x18, 0x2b, 0x10, 0x10, 0x13, 0x13, - 0x10, 0x10, 0x2b, 0x18, 0x2f, 0x4f, 0x1c, 0x1c, 0x1f, 0x1f, 0x1c, 0x1c, - 0x4f, 0x01, 0x39, 0x18, 0x26, 0x33, 0x17, 0x0f, 0x0e, 0x17, 0x6f, 0x47, - 0x15, 0x26, 0x33, 0x17, 0x0e, 0x0f, 0x17, 0x6a, 0x00, 0x01, 0x02, 0x06, - 0xfe, 0x99, 0x02, 0xbf, 0x00, 0x9a, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x02, 0xbf, 0xb9, 0xfe, 0x99, 0x02, 0x01, 0xfd, 0xff, 0x00, - 0x00, 0x01, 0x01, 0x60, 0xfe, 0x4b, 0x03, 0x12, 0x00, 0x97, 0x00, 0x15, - 0x00, 0x00, 0x65, 0x23, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x03, 0x12, 0xb9, 0x11, 0x10, 0x12, 0x34, 0x22, 0x0e, 0x42, 0x12, 0x0e, - 0x1d, 0x35, 0x1e, 0x55, 0x81, 0x28, 0x21, 0x23, 0x97, 0xf0, 0x2c, 0x44, - 0x18, 0x18, 0x1a, 0x07, 0x06, 0x9d, 0x0a, 0x08, 0x38, 0x35, 0x2b, 0x79, - 0x4b, 0x00, 0x00, 0x02, 0x00, 0xcc, 0x00, 0x00, 0x04, 0x4b, 0x04, 0x8d, - 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, 0x11, - 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x01, 0x84, 0x01, 0x12, 0x54, 0x9e, 0x3d, 0x3c, 0x4a, 0x4a, - 0x3d, 0x3d, 0x9d, 0x54, 0xfe, 0x36, 0xb8, 0x01, 0x12, 0x31, 0x5c, 0x23, - 0x22, 0x2a, 0x2a, 0x22, 0x23, 0x5c, 0x31, 0x01, 0xb6, 0x01, 0x2a, 0x2c, - 0x2b, 0x87, 0x5f, 0x5c, 0x89, 0x2e, 0x2d, 0x2e, 0x01, 0xfb, 0x73, 0x02, - 0x4e, 0x01, 0xa6, 0x01, 0x1c, 0x1a, 0x1b, 0x50, 0x36, 0x37, 0x4d, 0x19, - 0x19, 0x17, 0x01, 0x00, 0x00, 0x01, 0x00, 0xa9, 0x00, 0x00, 0x04, 0xb6, - 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, - 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x0d, 0x01, 0xc6, 0xe3, - 0xfd, 0xe8, 0x01, 0xef, 0xd4, 0xfe, 0x45, 0x9c, 0xb9, 0xb9, 0x02, 0x93, - 0xfd, 0x6d, 0x02, 0xef, 0x02, 0xc1, 0xfd, 0x7a, 0x02, 0x86, 0xfa, 0x50, - 0x02, 0x93, 0x00, 0x01, 0x00, 0xd2, 0xff, 0xec, 0x04, 0x41, 0x04, 0x9d, - 0x00, 0x3e, 0x00, 0x00, 0x65, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x01, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, - 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x03, 0x15, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x02, 0x0b, 0x35, 0x37, 0x6f, - 0x39, 0x57, 0x91, 0x35, 0x34, 0x3b, 0x31, 0x2d, 0x2e, 0x81, 0x51, 0x01, - 0x01, 0x12, 0x27, 0x57, 0x31, 0x32, 0x70, 0x41, 0x63, 0x95, 0x31, 0x34, - 0x33, 0xb8, 0x15, 0x19, 0x18, 0x53, 0x3f, 0x24, 0x39, 0x17, 0x12, 0x1d, - 0x0d, 0xed, 0x54, 0x4c, 0x6d, 0x22, 0x1a, 0x1a, 0x1d, 0x1b, 0x1b, 0x4e, - 0x32, 0x36, 0x54, 0xb5, 0x98, 0x1a, 0x17, 0x32, 0x30, 0x30, 0x8c, 0x5a, - 0x46, 0x6d, 0x28, 0x27, 0x2f, 0x07, 0x01, 0x4a, 0x26, 0x43, 0x19, 0x18, - 0x1d, 0x33, 0x32, 0x35, 0xa4, 0x6e, 0xfd, 0x0f, 0x02, 0xf1, 0x38, 0x65, - 0x26, 0x25, 0x2c, 0x0e, 0x0a, 0x08, 0x14, 0x0a, 0xfe, 0xd9, 0x89, 0x1a, - 0x1c, 0x15, 0x41, 0x2b, 0x31, 0x51, 0x1d, 0x1e, 0x21, 0x1f, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x00, 0x01, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xda, 0x02, 0x31, 0x03, 0xd7, 0x02, 0xc9, - 0x06, 0x06, 0x00, 0x67, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6b, 0xff, 0xec, - 0x04, 0x5d, 0x07, 0x2e, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x60, 0x00, 0x34, 0x01, 0x70, 0xff, 0xff, 0x00, 0x8f, 0xff, 0xec, - 0x04, 0x33, 0x05, 0xd7, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x60, 0x1d, 0x19, 0xff, 0xff, 0x00, 0x64, 0xff, 0xeb, 0x04, 0x5c, - 0x07, 0x2e, 0x06, 0x26, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, - 0x00, 0x19, 0x01, 0x70, 0xff, 0xff, 0x00, 0x8c, 0xfe, 0x56, 0x04, 0x1d, - 0x05, 0xd7, 0x06, 0x26, 0x00, 0x22, 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, - 0xf6, 0x19, 0xff, 0xff, 0xff, 0xba, 0x00, 0x00, 0x04, 0x29, 0x06, 0x16, - 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x07, 0x00, 0x6d, 0xfd, 0xed, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x76, 0xfe, 0x24, 0x04, 0x69, 0x05, 0xc4, - 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0xb5, - 0xfe, 0xce, 0xff, 0xff, 0x00, 0xaf, 0xfe, 0x25, 0x04, 0x36, 0x04, 0x4e, - 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0xa8, - 0xfe, 0xcf, 0xff, 0xff, 0x00, 0x4c, 0xfe, 0x2e, 0x04, 0x84, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0xa3, - 0xfe, 0xd8, 0xff, 0xff, 0x00, 0x8e, 0xfe, 0x2e, 0x04, 0x29, 0x05, 0x40, - 0x06, 0x26, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x01, 0x05, - 0xfe, 0xd8, 0xff, 0xff, 0x00, 0x4c, 0xfe, 0x4d, 0x04, 0x84, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x3f, 0x00, - 0xff, 0xff, 0x00, 0x5d, 0xfe, 0x4f, 0x04, 0x69, 0x04, 0x8d, 0x06, 0x26, - 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x30, 0x02, 0xff, 0xff, - 0x00, 0x8e, 0xfe, 0x4d, 0x04, 0x29, 0x05, 0x40, 0x06, 0x26, 0x00, 0x2f, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x66, 0x00, 0xa1, 0x00, 0x00, 0xff, 0xff, - 0xff, 0xe7, 0x00, 0x00, 0x04, 0x53, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x52, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x6a, 0xfe, 0xb2, 0xff, 0x78, 0xff, 0xff, - 0xff, 0xe7, 0x00, 0x00, 0x04, 0x53, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x52, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x6a, 0xfe, 0xb2, 0xff, 0x78, 0xff, 0xff, - 0x00, 0x5d, 0x00, 0x00, 0x04, 0x69, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x61, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x6a, 0xf3, 0xe0, 0xff, 0xff, 0x00, 0x36, - 0x00, 0x00, 0x04, 0x8e, 0x05, 0xff, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0x8b, 0x36, 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, - 0x04, 0x8e, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x77, 0x33, 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, - 0x06, 0x24, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0x79, 0x37, 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x06, 0x2e, - 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x85, - 0x00, 0x3d, 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x05, 0xfc, - 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x01, 0x37, - 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x06, 0x67, 0x06, 0x26, - 0x02, 0x4f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x62, 0x00, 0x00, 0x00, 0x80, - 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x06, 0xf4, 0x06, 0x26, - 0x02, 0x4f, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6b, 0xff, 0xee, 0x00, 0x82, - 0xff, 0xff, 0x00, 0x6e, 0xfe, 0x4a, 0x04, 0x36, 0x04, 0x9d, 0x06, 0x26, - 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x2a, 0xfd, 0xff, 0xff, - 0x00, 0xc8, 0x00, 0x00, 0x04, 0x23, 0x05, 0xff, 0x06, 0x26, 0x02, 0x53, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0x6d, 0x00, 0x36, 0xff, 0xff, - 0x00, 0xc8, 0x00, 0x00, 0x04, 0x23, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x53, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x59, 0x33, 0xff, 0xff, 0x00, 0xc8, - 0x00, 0x00, 0x04, 0x23, 0x06, 0x24, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0x5b, 0x37, 0xff, 0xff, 0x00, 0xc8, 0x00, 0x00, - 0x04, 0x23, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0xe4, 0x37, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, - 0x05, 0xe3, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, - 0xa6, 0x1a, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, 0x05, 0xe0, - 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x92, - 0x00, 0x17, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, 0x06, 0x08, - 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x94, - 0x00, 0x1b, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, 0x05, 0xe0, - 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x1c, 0x1b, - 0xff, 0xff, 0x00, 0xc2, 0x00, 0x00, 0x04, 0x16, 0x06, 0x2e, 0x06, 0x26, - 0x02, 0x5c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xdc, 0x00, 0x3d, - 0xff, 0xff, 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, 0x05, 0xff, 0x06, 0x26, - 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xad, 0x36, 0xff, 0xff, - 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x99, 0x00, 0x33, 0xff, 0xff, - 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, 0x06, 0x24, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x00, 0x9b, 0x00, 0x37, 0xff, 0xff, - 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, 0x06, 0x2e, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xa7, 0x00, 0x3d, 0xff, 0xff, - 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x23, 0x37, 0xff, 0xff, 0x00, 0xb5, - 0xff, 0xf0, 0x04, 0x2b, 0x05, 0xff, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xa9, 0x36, 0xff, 0xff, 0x00, 0xb5, 0xff, 0xf0, - 0x04, 0x2b, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x95, 0x00, 0x33, 0xff, 0xff, 0x00, 0xb5, 0xff, 0xf0, - 0x04, 0x2b, 0x06, 0x24, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x97, 0x00, 0x37, 0xff, 0xff, 0x00, 0xb5, 0xff, 0xf0, - 0x04, 0x2b, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0x1f, 0x37, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x81, - 0x05, 0xfc, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, - 0x62, 0x33, 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x05, 0xd6, - 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0x05, 0x26, - 0xff, 0xff, 0x00, 0x36, 0x00, 0x00, 0x04, 0x8e, 0x06, 0x26, 0x06, 0x26, - 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x01, 0x74, 0x00, 0x02, - 0x00, 0x36, 0xfe, 0x4f, 0x04, 0x91, 0x04, 0x8d, 0x00, 0x23, 0x00, 0x28, - 0x00, 0x00, 0x41, 0x23, 0x01, 0x33, 0x13, 0x21, 0x13, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x33, 0x01, 0x13, 0x37, 0x17, 0x13, 0x02, 0xb8, 0xa5, 0xfe, 0x23, - 0xbc, 0x6e, 0x02, 0x06, 0x67, 0x1e, 0x33, 0x15, 0x23, 0x26, 0x1e, 0x1a, - 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, - 0x1c, 0x1a, 0x16, 0x3c, 0x24, 0x23, 0xfd, 0x0e, 0xb0, 0x18, 0x18, 0xaf, - 0x04, 0x8d, 0xfb, 0x73, 0x01, 0x17, 0xfe, 0xf8, 0x14, 0x2c, 0x17, 0x28, - 0x57, 0x2c, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, - 0x01, 0x29, 0x22, 0x24, 0x41, 0x1d, 0x19, 0x2d, 0x13, 0x01, 0xae, 0x01, - 0xbf, 0x3c, 0x3d, 0xfe, 0x42, 0x00, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf0, - 0x04, 0x36, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x68, 0x33, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf0, 0x04, 0x36, - 0x06, 0x24, 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0x6a, 0x37, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf0, 0x04, 0x36, 0x06, 0x25, - 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xf4, 0x38, - 0xff, 0xff, 0x00, 0xb7, 0x00, 0x00, 0x04, 0x53, 0x06, 0x25, 0x06, 0x26, - 0x02, 0x52, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xbb, 0x38, 0xff, 0xff, - 0x00, 0xc8, 0x00, 0x00, 0x04, 0x23, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x53, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xe8, 0x26, 0xff, 0xff, 0x00, 0xc8, - 0x00, 0x00, 0x04, 0x23, 0x06, 0x26, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0xe4, 0x74, 0xff, 0xff, 0x00, 0xc8, 0x00, 0x00, - 0x04, 0x23, 0x05, 0xf5, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x60, 0xe4, 0x37, 0x00, 0x01, 0x00, 0xc8, 0xfe, 0x4f, 0x04, 0x23, - 0x04, 0x8d, 0x00, 0x28, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x35, 0x21, 0x11, 0x03, - 0xc5, 0xfd, 0xc0, 0x02, 0x98, 0xfc, 0xab, 0x02, 0x1f, 0x18, 0x28, 0x11, - 0x22, 0x25, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, - 0x35, 0x20, 0x2a, 0x24, 0x1d, 0x1a, 0x16, 0x3b, 0x24, 0x87, 0xfd, 0x62, - 0x02, 0x0e, 0x98, 0x01, 0x4e, 0x99, 0xfb, 0x73, 0x11, 0x26, 0x13, 0x28, - 0x57, 0x2a, 0x2f, 0x47, 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, - 0x01, 0x29, 0x22, 0x24, 0x42, 0x1d, 0x19, 0x2c, 0x13, 0x97, 0x01, 0x77, - 0xff, 0xff, 0x00, 0xc8, 0x00, 0x00, 0x04, 0x23, 0x06, 0x25, 0x06, 0x26, - 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xe5, 0x38, 0xff, 0xff, - 0x00, 0x7c, 0xff, 0xf0, 0x04, 0x41, 0x06, 0x24, 0x06, 0x26, 0x02, 0x55, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x74, 0x37, 0xff, 0xff, 0x00, 0x7c, - 0xff, 0xf0, 0x04, 0x41, 0x06, 0x26, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0xfd, 0x74, 0xff, 0xff, 0x00, 0x7c, 0xfe, 0x2b, - 0x04, 0x41, 0x04, 0x9d, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x9d, 0xfe, 0xd5, 0xff, 0xff, 0x00, 0x9b, 0x00, 0x00, - 0x03, 0xf9, 0x06, 0x24, 0x06, 0x26, 0x02, 0x56, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x9e, 0x00, 0x37, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, - 0x04, 0x10, 0x06, 0x12, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0xa0, 0x00, 0x21, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, - 0x04, 0x10, 0x05, 0xba, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0x20, 0x0a, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, - 0x06, 0x0a, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x1c, 0x58, 0x00, 0x01, 0x00, 0xd9, 0xfe, 0x4f, 0x04, 0x10, 0x04, 0x8c, - 0x00, 0x28, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0xd9, 0x01, 0x3b, - 0xfe, 0xc5, 0x01, 0x6c, 0x1d, 0x30, 0x13, 0x1b, 0x1d, 0x1e, 0x1a, 0x1a, - 0x46, 0x29, 0x41, 0x55, 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x1f, - 0x1c, 0x15, 0x3a, 0x22, 0x01, 0x16, 0xfe, 0xbd, 0x01, 0x43, 0x04, 0x8c, - 0xa1, 0xfc, 0xb5, 0xa0, 0x15, 0x2f, 0x19, 0x24, 0x4c, 0x26, 0x2f, 0x47, - 0x18, 0x18, 0x18, 0x1c, 0x10, 0x79, 0x08, 0x13, 0x01, 0x29, 0x22, 0x25, - 0x44, 0x1e, 0x17, 0x2b, 0x12, 0xa0, 0x03, 0x4b, 0xa1, 0x00, 0xff, 0xff, - 0x00, 0xd9, 0x00, 0x00, 0x04, 0x10, 0x05, 0xd9, 0x06, 0x26, 0x02, 0x57, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, 0x1c, 0x1b, 0xff, 0xff, 0x00, 0x96, - 0xff, 0xf0, 0x04, 0x77, 0x06, 0x24, 0x06, 0x26, 0x02, 0x58, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0x01, 0x59, 0x00, 0x37, 0xff, 0xff, 0x00, 0xb4, - 0xfe, 0x34, 0x04, 0x80, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x59, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0x00, 0x6b, 0xfe, 0xde, 0xff, 0xff, 0x00, 0xb6, - 0x00, 0x00, 0x04, 0x52, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x5a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0xff, 0x1c, 0x00, 0x33, 0xff, 0xff, 0x00, 0xd1, - 0xfe, 0x36, 0x04, 0x52, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0x00, 0x68, 0xfe, 0xe0, 0xff, 0xff, 0x00, 0xd1, - 0x00, 0x00, 0x04, 0x52, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, 0x00, 0x00, - 0x00, 0x07, 0x00, 0x6d, 0x00, 0x94, 0xfe, 0x77, 0xff, 0xff, 0x00, 0xd1, - 0x00, 0x00, 0x04, 0x52, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x60, 0x00, 0x19, 0xfd, 0x37, 0xff, 0xff, 0x00, 0xc2, - 0x00, 0x00, 0x04, 0x0f, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0xce, 0x00, 0x33, 0xff, 0xff, 0x00, 0xc2, - 0xfe, 0x32, 0x04, 0x0f, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0x00, 0xef, 0xfe, 0xdc, 0xff, 0xff, 0x00, 0xc2, - 0x00, 0x00, 0x04, 0x0f, 0x06, 0x25, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0x59, 0x38, 0xff, 0xff, 0x00, 0x82, 0xff, 0xf0, - 0x04, 0x4a, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0x27, 0x26, 0xff, 0xff, 0x00, 0x82, 0xff, 0xf0, 0x04, 0x4a, - 0x06, 0x26, 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x23, 0x74, 0xff, 0xff, 0x00, 0x82, 0xff, 0xf0, 0x04, 0x7f, 0x06, 0x26, - 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, 0x00, 0xa9, - 0x00, 0x37, 0xff, 0xff, 0x00, 0x90, 0x00, 0x00, 0x04, 0x2c, 0x05, 0xfc, - 0x06, 0x26, 0x02, 0x5f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x1e, 0x33, - 0xff, 0xff, 0x00, 0x90, 0xfe, 0x36, 0x04, 0x2c, 0x04, 0x8d, 0x06, 0x26, - 0x02, 0x5f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0x45, 0xfe, 0xe0, - 0xff, 0xff, 0x00, 0x90, 0x00, 0x00, 0x04, 0x2c, 0x06, 0x25, 0x06, 0x26, - 0x02, 0x5f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xaa, 0x38, 0xff, 0xff, - 0x00, 0x8a, 0xff, 0xf0, 0x04, 0x39, 0x05, 0xfc, 0x06, 0x26, 0x02, 0x60, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x71, 0x33, 0xff, 0xff, 0x00, 0x8a, - 0xff, 0xf0, 0x04, 0x39, 0x06, 0x24, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0x73, 0x37, 0xff, 0xff, 0x00, 0x8a, 0xfe, 0x4d, - 0x04, 0x39, 0x04, 0x9d, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x66, 0x3d, 0x00, 0xff, 0xff, 0x00, 0x8a, 0xff, 0xf0, 0x04, 0x39, - 0x06, 0x25, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, - 0xfd, 0x38, 0xff, 0xff, 0x00, 0x5d, 0x00, 0x00, 0x04, 0x69, 0x06, 0x25, - 0x06, 0x26, 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xf9, 0x38, - 0xff, 0xff, 0x00, 0xb5, 0xff, 0xf0, 0x04, 0x2b, 0x06, 0x2e, 0x06, 0x26, - 0x02, 0x62, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xa3, 0x00, 0x3d, - 0xff, 0xff, 0x00, 0xb5, 0xff, 0xf0, 0x04, 0x2b, 0x05, 0xd6, 0x06, 0x26, - 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0x23, 0x26, 0xff, 0xff, - 0x00, 0xb5, 0xff, 0xf0, 0x04, 0x2b, 0x06, 0x26, 0x06, 0x26, 0x02, 0x62, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x1f, 0x74, 0xff, 0xff, 0x00, 0xb5, - 0xff, 0xf0, 0x04, 0x2b, 0x06, 0x67, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x62, 0x00, 0x1e, 0x00, 0x80, 0xff, 0xff, 0x00, 0xb5, - 0xff, 0xf0, 0x04, 0x7b, 0x06, 0x26, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x63, 0x00, 0xa5, 0x00, 0x37, 0x00, 0x01, 0x00, 0xb5, - 0xfe, 0x8c, 0x04, 0x2b, 0x04, 0x8d, 0x00, 0x39, 0x00, 0x00, 0x41, 0x23, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x32, - 0x33, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, 0x2a, 0xb7, 0x01, - 0x01, 0x25, 0x21, 0x22, 0x5f, 0x3b, 0x3b, 0x5f, 0x21, 0x22, 0x25, 0x01, - 0x01, 0xb5, 0x01, 0x01, 0x46, 0x3c, 0x3b, 0xa0, 0x5c, 0x01, 0x02, 0x01, - 0x0b, 0x13, 0x08, 0x0f, 0x10, 0x1e, 0x1a, 0x1a, 0x46, 0x29, 0x41, 0x55, - 0x1c, 0x1f, 0x10, 0x35, 0x20, 0x2a, 0x24, 0x0c, 0x0c, 0x0f, 0x30, 0x20, - 0x66, 0x7f, 0x04, 0x8d, 0xfc, 0xf4, 0x3b, 0x5d, 0x20, 0x20, 0x22, 0x22, - 0x20, 0x20, 0x5d, 0x3b, 0x03, 0x0c, 0xfc, 0xf4, 0x60, 0x95, 0x33, 0x33, - 0x36, 0x0e, 0x1b, 0x0e, 0x1b, 0x38, 0x1c, 0x2f, 0x47, 0x18, 0x18, 0x18, - 0x1c, 0x10, 0x79, 0x08, 0x13, 0x01, 0x29, 0x22, 0x18, 0x2c, 0x15, 0x1b, - 0x31, 0x15, 0x2b, 0xc1, 0x79, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00, - 0x04, 0xbb, 0x06, 0x24, 0x06, 0x26, 0x02, 0x64, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x8a, 0x00, 0x37, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, - 0x04, 0x81, 0x06, 0x24, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5c, 0x64, 0x37, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x81, - 0x05, 0xfc, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0xed, 0x37, 0xff, 0xff, 0x00, 0xb9, 0x00, 0x00, 0x04, 0x42, 0x05, 0xfc, - 0x06, 0x26, 0x02, 0x67, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xa0, - 0x00, 0x33, 0xff, 0xff, 0x00, 0xb9, 0x00, 0x00, 0x04, 0x42, 0x05, 0xf5, - 0x06, 0x26, 0x02, 0x67, 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, 0x2a, 0x37, - 0xff, 0xff, 0x00, 0xb9, 0x00, 0x00, 0x04, 0x42, 0x06, 0x25, 0x06, 0x26, - 0x02, 0x67, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x2b, 0x38, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x06, 0x7a, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfe, 0xc0, 0x00, 0x00, 0xff, 0xff, - 0xff, 0xdd, 0x00, 0x00, 0x04, 0x66, 0x06, 0x7a, 0x04, 0x26, 0x00, 0x06, - 0x32, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0xb4, 0x00, 0x00, 0xff, 0xff, - 0xff, 0xcb, 0x00, 0x00, 0x04, 0x71, 0x06, 0x7c, 0x04, 0x26, 0x00, 0x09, - 0x32, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0xa2, 0x00, 0x02, 0xff, 0xff, - 0xff, 0xba, 0x00, 0x00, 0x04, 0x50, 0x06, 0x7b, 0x04, 0x26, 0x00, 0x0a, - 0x32, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0x91, 0x00, 0x01, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xec, 0x04, 0x6b, 0x06, 0x7a, 0x04, 0x26, 0x00, 0x10, - 0x0a, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0xd6, 0x00, 0x00, 0xff, 0xff, - 0xff, 0x80, 0x00, 0x00, 0x04, 0xab, 0x06, 0x7a, 0x04, 0x26, 0x00, 0x1a, - 0x32, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0x57, 0x00, 0x00, 0xff, 0xff, - 0xff, 0xfb, 0x00, 0x00, 0x04, 0x76, 0x06, 0x7a, 0x04, 0x26, 0x01, 0x84, - 0x0a, 0x00, 0x00, 0x07, 0x01, 0x78, 0xfd, 0xd2, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xb8, 0xff, 0xec, 0x04, 0x3a, 0x06, 0x7a, 0x06, 0x26, 0x01, 0x8d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x79, 0xe4, 0xbb, 0xff, 0xff, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x90, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x02, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xac, 0x00, 0x00, 0x04, 0x60, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72, - 0x00, 0x00, 0x04, 0x37, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x1b, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x8d, 0x00, 0x00, 0x04, 0x3f, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x09, 0x00, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xac, - 0x00, 0x00, 0x04, 0xa4, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0c, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x94, 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x3e, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6a, - 0xff, 0xec, 0x04, 0x61, 0x05, 0xc4, 0x06, 0x06, 0x00, 0x10, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xbf, 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x11, 0x00, 0x00, 0xff, 0xff, 0x00, 0x4c, 0x00, 0x00, 0x04, 0x84, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x15, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3d, - 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x1a, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x8f, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x19, 0x00, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x07, 0x20, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0xff, 0xd2, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, 0x04, 0x79, - 0x07, 0x1f, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0xff, 0xfc, 0x01, 0x5a, 0xff, 0xff, 0x00, 0x81, 0xff, 0xeb, 0x04, 0x8a, - 0x06, 0x7e, 0x06, 0x26, 0x01, 0x85, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, - 0x0f, 0x04, 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x60, 0x06, 0x7d, - 0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0x14, 0x03, - 0xff, 0xff, 0x00, 0xa4, 0xfe, 0x61, 0x04, 0x2b, 0x06, 0x7e, 0x06, 0x26, - 0x01, 0x8b, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0x1c, 0x04, 0xff, 0xff, - 0x00, 0xb8, 0xff, 0xec, 0x04, 0x3a, 0x06, 0x6a, 0x06, 0x26, 0x01, 0x8d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0x0e, 0xf0, 0xff, 0xff, 0x00, 0x9e, - 0xff, 0xec, 0x04, 0x3f, 0x06, 0x7a, 0x06, 0x26, 0x01, 0x95, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x79, 0xc0, 0xbb, 0xff, 0xff, 0x00, 0xba, 0x00, 0x00, - 0x04, 0x72, 0x04, 0x3a, 0x06, 0x06, 0x00, 0x4f, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x2a, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xbc, 0xfe, 0x60, 0x04, 0x10, 0x04, 0x3a, - 0x06, 0x06, 0x01, 0x6b, 0x00, 0x00, 0xff, 0xff, 0x00, 0x62, 0x00, 0x00, - 0x04, 0x65, 0x04, 0x3a, 0x06, 0x06, 0x00, 0x31, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x6e, 0x00, 0x00, 0x04, 0x72, 0x04, 0x3a, 0x06, 0x06, 0x00, 0x33, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x3a, 0x05, 0xc9, - 0x06, 0x26, 0x01, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x05, 0x04, - 0xff, 0xff, 0x00, 0x9e, 0xff, 0xec, 0x04, 0x3f, 0x05, 0xc9, 0x06, 0x26, - 0x01, 0x95, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xe2, 0x04, 0xff, 0xff, - 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x06, 0x7e, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0x09, 0x04, 0xff, 0xff, 0x00, 0x9e, - 0xff, 0xec, 0x04, 0x3f, 0x06, 0x6a, 0x06, 0x26, 0x01, 0x95, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x78, 0xeb, 0xf0, 0xff, 0xff, 0x00, 0x4f, 0xff, 0xec, - 0x04, 0x89, 0x06, 0x6a, 0x06, 0x26, 0x01, 0x98, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x78, 0x15, 0xf0, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x20, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x05, 0x01, 0x5b, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x30, - 0x07, 0x20, 0x06, 0x26, 0x01, 0x7b, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x80, 0x01, 0x57, 0x00, 0x01, 0x00, 0x76, 0xff, 0xec, 0x04, 0x69, - 0x05, 0xc4, 0x00, 0x4f, 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x03, 0xa8, 0x34, 0x29, 0x29, 0x69, 0x36, 0x44, 0x73, 0x2c, - 0x2c, 0x38, 0x09, 0xbd, 0x03, 0x5c, 0x4a, 0x49, 0xba, 0x61, 0x57, 0xae, - 0x45, 0x45, 0x57, 0x25, 0x21, 0x21, 0x58, 0x33, 0x33, 0x6e, 0x36, 0x31, - 0x6f, 0x2f, 0x30, 0x3e, 0x01, 0x2f, 0x28, 0x27, 0x65, 0x35, 0x42, 0x69, - 0x26, 0x26, 0x2e, 0x08, 0xbe, 0x02, 0x52, 0x44, 0x44, 0xb0, 0x5f, 0x56, - 0xaa, 0x43, 0x43, 0x53, 0x53, 0x42, 0x41, 0x9f, 0x4d, 0x35, 0x73, 0x30, - 0x1c, 0x2e, 0x0e, 0x0a, 0x0b, 0x01, 0x70, 0x3c, 0x57, 0x1c, 0x1d, 0x1b, - 0x25, 0x25, 0x24, 0x69, 0x44, 0x68, 0xa3, 0x38, 0x39, 0x3c, 0x31, 0x31, - 0x30, 0x92, 0x62, 0x41, 0x6b, 0x2d, 0x2c, 0x46, 0x1c, 0x1c, 0x2b, 0x11, - 0x0f, 0x28, 0x1e, 0x1e, 0x57, 0x3f, 0x3a, 0x58, 0x1e, 0x1e, 0x1e, 0x29, - 0x25, 0x25, 0x67, 0x3f, 0x64, 0xa2, 0x39, 0x39, 0x3f, 0x35, 0x33, 0x33, - 0x94, 0x5e, 0x5e, 0x8b, 0x33, 0x33, 0x46, 0x19, 0x11, 0x2a, 0x1f, 0x13, - 0x2f, 0x1e, 0x14, 0x30, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x1e, 0x07, 0x20, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xd2, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x62, - 0xff, 0xec, 0x04, 0x16, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0b, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xa9, 0x00, 0x00, 0x04, 0xb6, 0x05, 0xb0, 0x06, 0x06, - 0x02, 0x71, 0x00, 0x00, 0xff, 0xff, 0x00, 0xac, 0x00, 0x00, 0x04, 0xa4, - 0x07, 0x0e, 0x06, 0x26, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x7e, 0x01, 0x45, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xeb, 0x04, 0xb5, - 0x07, 0x4a, 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0x00, 0x21, 0x01, 0x98, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0xac, - 0x00, 0x00, 0x04, 0x60, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x03, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x30, 0x05, 0xb0, 0x06, 0x06, - 0x01, 0x7b, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa2, - 0x00, 0x00, 0x04, 0x2a, 0x07, 0x3e, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5f, 0xff, 0xf9, 0x01, 0x8c, 0xff, 0xff, 0x00, 0x94, - 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0e, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x8d, 0x00, 0x00, 0x04, 0x3f, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x09, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, - 0x05, 0xc4, 0x06, 0x06, 0x00, 0x10, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa2, - 0x00, 0x00, 0x04, 0x2a, 0x05, 0xb0, 0x06, 0x06, 0x01, 0x80, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xbf, 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x11, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6b, 0xff, 0xec, 0x04, 0x5d, - 0x05, 0xc4, 0x06, 0x06, 0x00, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x4c, - 0x00, 0x00, 0x04, 0x84, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x15, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x45, 0x00, 0x00, 0x04, 0x87, 0x05, 0xb0, 0x06, 0x06, - 0x01, 0x82, 0x00, 0x00, 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x8f, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x19, 0x00, 0x00, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x36, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x1c, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x04, 0x4e, 0x06, 0x06, - 0x00, 0x20, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa5, 0x00, 0x00, 0x04, 0x27, - 0x05, 0xf3, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0xf4, 0x41, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x04, 0x4e, - 0x06, 0x06, 0x00, 0x2a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xad, 0xfe, 0x60, - 0x04, 0x3f, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x01, - 0x00, 0x8f, 0xff, 0xec, 0x04, 0x33, 0x04, 0x4e, 0x00, 0x33, 0x00, 0x00, - 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x02, 0x7b, 0x57, 0x75, 0x23, 0x24, 0x1f, 0x1f, - 0x24, 0x24, 0x75, 0x56, 0x38, 0x61, 0x23, 0x23, 0x29, 0x01, 0xaf, 0x42, - 0x3a, 0x3b, 0xa1, 0x60, 0x7b, 0xb8, 0x3d, 0x3e, 0x3e, 0x3e, 0x3e, 0x3d, - 0xb8, 0x7b, 0x56, 0x9e, 0x3d, 0x3d, 0x49, 0x01, 0xaf, 0x01, 0x2d, 0x25, - 0x25, 0x5f, 0x82, 0x45, 0x38, 0x37, 0x8b, 0x47, 0x2a, 0x46, 0x8a, 0x38, - 0x37, 0x45, 0x26, 0x21, 0x21, 0x57, 0x31, 0x52, 0x90, 0x35, 0x34, 0x3d, - 0x58, 0x4a, 0x4b, 0xc4, 0x6b, 0x2a, 0x6c, 0xc3, 0x4a, 0x4b, 0x58, 0x3b, - 0x32, 0x31, 0x83, 0x48, 0x2d, 0x4d, 0x1c, 0x1d, 0x20, 0x00, 0xff, 0xff, - 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x04, 0x3a, 0x06, 0x06, 0x00, 0x34, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x6e, 0x00, 0x00, 0x04, 0x72, 0x04, 0x3a, - 0x06, 0x06, 0x00, 0x33, 0x00, 0x00, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, - 0x04, 0x45, 0x05, 0xdf, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0x06, 0x1a, 0xff, 0xff, 0x00, 0xb7, 0x00, 0x00, 0x04, 0x2a, - 0x05, 0xc9, 0x06, 0x26, 0x01, 0xb5, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, - 0x73, 0x00, 0xff, 0xff, 0x00, 0xaf, 0xff, 0xec, 0x04, 0x36, 0x04, 0x4e, - 0x06, 0x06, 0x00, 0x2e, 0x00, 0x00, 0xff, 0xff, 0x00, 0xcb, 0x00, 0x00, - 0x04, 0x55, 0x05, 0xc3, 0x06, 0x06, 0x00, 0x24, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x05, 0xc9, 0x06, 0x26, 0x01, 0x6d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x34, 0x04, 0xff, 0xff, 0x00, 0xd3, - 0xfe, 0x4b, 0x03, 0x58, 0x05, 0xc3, 0x06, 0x06, 0x00, 0x25, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xa4, 0x00, 0x00, 0x04, 0x95, 0x05, 0xc9, 0x06, 0x26, - 0x01, 0xba, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x27, 0x00, 0xff, 0xff, - 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xf4, 0x06, 0x26, 0x00, 0x34, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x13, 0x42, 0xff, 0xff, 0x00, 0x68, - 0xff, 0xf5, 0x04, 0x66, 0x05, 0xb0, 0x04, 0x27, 0x00, 0x5b, 0xfe, 0x82, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x5b, 0x01, 0x9a, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xb0, 0xfe, 0x4b, 0x03, 0xfb, 0x05, 0xe9, 0x06, 0x26, 0x01, 0x71, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x60, 0xfc, 0xff, 0xff, 0x01, 0xcd, - 0x04, 0x07, 0x02, 0xe0, 0x06, 0x16, 0x06, 0x06, 0x00, 0x6d, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x94, 0x00, 0x00, 0x04, 0x4c, 0x07, 0x20, 0x06, 0x26, - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x75, 0x01, 0x57, - 0xff, 0xff, 0x00, 0x5d, 0x00, 0x00, 0x04, 0x72, 0x05, 0xde, 0x06, 0x26, - 0x00, 0x28, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x9c, 0x00, 0x15, - 0xff, 0xff, 0x00, 0x51, 0xfe, 0x86, 0x04, 0x90, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x01, 0x72, 0x25, 0x00, 0xff, 0xff, - 0x00, 0x9c, 0xfe, 0x86, 0x04, 0x36, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x72, 0xed, 0x00, 0xff, 0xff, 0xff, 0x89, - 0xff, 0xec, 0x04, 0x61, 0x06, 0x56, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6c, 0xfd, 0x94, 0x00, 0x92, 0xff, 0xff, 0x00, 0xb6, - 0x00, 0x00, 0x04, 0x34, 0x07, 0x23, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0x8f, 0x01, 0x5a, 0xff, 0xff, 0x00, 0xa2, - 0x00, 0x00, 0x04, 0x2a, 0x07, 0x17, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0x82, 0x01, 0x4e, 0xff, 0xff, 0x00, 0x87, - 0xff, 0xec, 0x04, 0x45, 0x05, 0xe2, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0x90, 0x19, 0xff, 0xff, 0x00, 0xa5, 0x00, 0x00, - 0x04, 0x27, 0x05, 0xcc, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0x7d, 0x00, 0x03, 0xff, 0xff, 0x00, 0x65, 0x00, 0x00, - 0x04, 0x72, 0x05, 0xb0, 0x06, 0x06, 0x01, 0x83, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x61, 0xfe, 0x28, 0x04, 0x80, 0x04, 0x3a, 0x06, 0x06, 0x01, 0x97, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x1a, 0x00, 0x00, 0x04, 0xe1, 0x07, 0x42, - 0x06, 0x26, 0x01, 0xe2, 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x04, 0x59, - 0x01, 0x54, 0xff, 0xff, 0x00, 0x40, 0x00, 0x00, 0x04, 0x60, 0x06, 0x19, - 0x06, 0x26, 0x01, 0xe3, 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x04, 0x3b, - 0x00, 0x2b, 0xff, 0xff, 0x00, 0x59, 0xfe, 0x2f, 0x04, 0x70, 0x05, 0xc4, - 0x06, 0x26, 0x01, 0xa5, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0xf1, 0x96, - 0xff, 0xff, 0x00, 0x87, 0xfe, 0x39, 0x04, 0x4a, 0x04, 0x4d, 0x06, 0x26, - 0x01, 0xb8, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0x08, 0xa0, 0xff, 0xff, - 0x00, 0x6b, 0xfe, 0x39, 0x04, 0x5d, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0xff, 0xa0, 0xff, 0xff, 0x00, 0x8f, - 0xfe, 0x39, 0x04, 0x33, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x6e, 0x13, 0xa0, 0xff, 0xff, 0x00, 0x3d, 0x00, 0x00, - 0x04, 0x79, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x1a, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x47, 0xfe, 0x60, 0x04, 0x96, 0x04, 0x3a, 0x06, 0x06, 0x01, 0x87, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x1d, 0x00, 0x00, - 0x04, 0xae, 0x07, 0x4a, 0x06, 0x26, 0x01, 0xa4, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5f, 0x00, 0x0d, 0x01, 0x98, 0xff, 0xff, 0x00, 0x11, 0x00, 0x00, - 0x04, 0xac, 0x05, 0xf3, 0x06, 0x26, 0x01, 0xb7, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5f, 0xf4, 0x41, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x90, 0x07, 0x4a, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5f, 0x00, 0x0f, 0x01, 0x98, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x36, 0x06, 0x08, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0x0b, 0x56, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, - 0x04, 0x90, 0x07, 0x20, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0x00, 0x0f, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, - 0x04, 0x36, 0x05, 0xde, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0x0b, 0x19, 0xff, 0xff, 0x00, 0x20, 0x00, 0x00, 0x04, 0xab, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x48, 0x00, 0x00, 0xff, 0xff, 0x00, 0x2b, - 0xff, 0xec, 0x04, 0xa9, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x49, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, 0x07, 0x4a, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x05, 0x01, 0x98, - 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x06, 0x09, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x06, 0x57, 0xff, 0xff, - 0x00, 0x5a, 0xff, 0xeb, 0x04, 0x57, 0x06, 0xf2, 0x06, 0x26, 0x02, 0x10, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xfb, 0x01, 0x2d, 0xff, 0xff, - 0x00, 0xb1, 0xff, 0xec, 0x04, 0x5f, 0x04, 0x4f, 0x06, 0x06, 0x00, 0x51, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xb1, 0xff, 0xec, 0x04, 0x5f, 0x05, 0xdf, - 0x06, 0x26, 0x00, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x28, 0x1a, - 0xff, 0xff, 0x00, 0x1d, 0x00, 0x00, 0x04, 0xae, 0x07, 0x20, 0x06, 0x26, - 0x01, 0xa4, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x0d, 0x01, 0x5b, - 0xff, 0xff, 0x00, 0x11, 0x00, 0x00, 0x04, 0xac, 0x05, 0xc9, 0x06, 0x26, - 0x01, 0xb7, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xf4, 0x04, 0xff, 0xff, - 0x00, 0x59, 0xff, 0xeb, 0x04, 0x70, 0x07, 0x35, 0x06, 0x26, 0x01, 0xa5, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xfc, 0x01, 0x70, 0xff, 0xff, - 0x00, 0x87, 0xff, 0xed, 0x04, 0x4a, 0x05, 0xdd, 0x06, 0x26, 0x01, 0xb8, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x0a, 0x18, 0xff, 0xff, 0x00, 0xa2, - 0x00, 0x00, 0x04, 0x2a, 0x06, 0xee, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5e, 0xff, 0xfd, 0x01, 0x3e, 0xff, 0xff, 0x00, 0xa5, - 0x00, 0x00, 0x04, 0x27, 0x05, 0xa4, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5e, 0xf8, 0xf4, 0xff, 0xff, 0x00, 0xa2, 0x00, 0x00, - 0x04, 0x2a, 0x07, 0x14, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0xff, 0xf9, 0x01, 0x4f, 0xff, 0xff, 0x00, 0xa5, 0x00, 0x00, - 0x04, 0x27, 0x05, 0xc9, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0xf4, 0x04, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, - 0x07, 0x35, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x13, 0x01, 0x70, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, - 0x05, 0xde, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x00, 0x19, 0xff, 0xff, 0x00, 0x63, 0xff, 0xec, 0x04, 0x5a, 0x05, 0xc4, - 0x06, 0x06, 0x01, 0xe0, 0x00, 0x00, 0xff, 0xff, 0x00, 0x5d, 0xff, 0xec, - 0x04, 0x35, 0x04, 0x4e, 0x06, 0x06, 0x01, 0xe1, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x63, 0xff, 0xec, 0x04, 0x5a, 0x07, 0x1b, 0x06, 0x26, 0x01, 0xe0, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x14, 0x01, 0x56, 0xff, 0xff, - 0x00, 0x5d, 0xff, 0xec, 0x04, 0x35, 0x05, 0xfa, 0x06, 0x26, 0x01, 0xe1, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xd0, 0x35, 0xff, 0xff, 0x00, 0x72, - 0xff, 0xec, 0x04, 0x53, 0x07, 0x36, 0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xf1, 0x01, 0x71, 0xff, 0xff, 0x00, 0x81, - 0xff, 0xec, 0x04, 0x3a, 0x05, 0xde, 0x06, 0x26, 0x01, 0xc8, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0xed, 0x19, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xeb, - 0x04, 0xb5, 0x06, 0xfa, 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5e, 0x00, 0x25, 0x01, 0x4a, 0xff, 0xff, 0x00, 0x44, 0xfe, 0x4b, - 0x04, 0x85, 0x05, 0xa5, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0x17, 0xf5, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xeb, 0x04, 0xb5, - 0x07, 0x20, 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x21, 0x01, 0x5b, 0xff, 0xff, 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, - 0x05, 0xca, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x13, 0x05, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xeb, 0x04, 0xb5, 0x07, 0x4a, - 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, 0x00, 0xa7, - 0x01, 0x5b, 0xff, 0xff, 0x00, 0x44, 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xf4, - 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, 0x00, 0x99, - 0x00, 0x05, 0xff, 0xff, 0x00, 0xab, 0x00, 0x00, 0x04, 0x27, 0x07, 0x20, - 0x06, 0x26, 0x01, 0xaa, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xb3, - 0x01, 0x5b, 0xff, 0xff, 0x00, 0x8d, 0x00, 0x00, 0x04, 0x27, 0x05, 0xc9, - 0x06, 0x26, 0x01, 0xc2, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x1b, 0x04, - 0xff, 0xff, 0x00, 0x90, 0x00, 0x00, 0x04, 0x4b, 0x07, 0x20, 0x06, 0x26, - 0x01, 0xae, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xe1, 0x01, 0x5b, - 0xff, 0xff, 0x00, 0x90, 0x00, 0x00, 0x04, 0x3f, 0x05, 0xc9, 0x06, 0x26, - 0x01, 0xc6, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x43, 0x04, 0xff, 0xff, - 0x00, 0x57, 0xfe, 0x4b, 0x05, 0x16, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x19, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x6e, 0xfe, 0x4b, 0x04, 0xa5, 0x04, 0x3a, 0x06, 0x26, 0x00, 0x33, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x01, 0x93, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x8b, 0xff, 0xec, 0x04, 0x1c, 0x06, 0x00, 0x06, 0x06, 0x00, 0x1f, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x2f, 0xfe, 0x4b, 0x04, 0xe3, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x01, 0xd1, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x37, 0xfe, 0x4b, 0x04, 0xde, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbb, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x01, 0xcc, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x51, 0xfe, 0xa8, 0x04, 0x90, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xdf, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x9c, 0xfe, 0xa8, 0x04, 0x36, 0x04, 0x4e, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xa3, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0xc6, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xc8, - 0x01, 0x52, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x06, 0x84, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xc4, - 0x00, 0x10, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0xe9, 0x07, 0xee, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4c, 0xff, 0xf5, - 0x01, 0x59, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0xe5, 0x06, 0xac, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4c, 0xf1, 0x17, - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x04, 0x90, 0x07, 0xdd, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4b, 0xff, 0xec, 0x01, 0x48, - 0xff, 0xff, 0xff, 0xf8, 0xff, 0xec, 0x04, 0x36, 0x06, 0x9b, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4b, 0xe8, 0x06, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0xbb, 0x08, 0x04, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x4a, 0x00, 0x01, 0x01, 0x35, 0xff, 0xff, - 0x00, 0x9c, 0xff, 0xec, 0x04, 0xb8, 0x06, 0xc3, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x4a, 0xfe, 0xf4, 0xff, 0xff, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x90, 0x08, 0x2f, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x49, 0xff, 0xf3, 0x01, 0x36, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x36, 0x06, 0xee, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x49, 0xef, 0xf5, 0xff, 0xff, 0x00, 0x51, 0xfe, 0xa8, - 0x04, 0x90, 0x07, 0x48, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, - 0x01, 0x5c, 0x00, 0x87, 0x01, 0x5b, 0x00, 0x07, 0x01, 0x65, 0x04, 0xdf, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x9c, 0xfe, 0xa8, 0x04, 0x36, 0x06, 0x06, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5c, 0x00, 0x83, - 0x00, 0x19, 0x00, 0x07, 0x01, 0x65, 0x04, 0xa3, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, 0x07, 0xde, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0x00, 0x01, 0x54, 0xff, 0xff, - 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, 0x06, 0x9c, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x69, 0xfc, 0x12, 0xff, 0xff, 0x00, 0x51, - 0x00, 0x00, 0x04, 0x90, 0x08, 0x04, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x4d, 0x00, 0x03, 0x01, 0x7a, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x36, 0x06, 0xc2, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x4d, 0x00, 0x38, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, - 0x04, 0x90, 0x08, 0x4c, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x68, 0xff, 0xf4, 0x01, 0x49, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, - 0x04, 0x36, 0x07, 0x0a, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x68, 0xf0, 0x07, 0xff, 0xff, 0x00, 0x51, 0x00, 0x00, 0x04, 0x90, - 0x08, 0x21, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6d, - 0xff, 0xd4, 0x01, 0x51, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x36, - 0x06, 0xdf, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6d, - 0xd0, 0x0f, 0xff, 0xff, 0x00, 0x51, 0xfe, 0xa8, 0x04, 0x90, 0x07, 0x4a, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5f, 0x00, 0x0f, - 0x01, 0x98, 0x00, 0x07, 0x01, 0x65, 0x04, 0xdf, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x9c, 0xfe, 0xa8, 0x04, 0x36, 0x06, 0x08, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x26, 0x01, 0x5f, 0x0b, 0x56, 0x00, 0x07, 0x01, 0x65, - 0x04, 0xa3, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb6, 0xfe, 0xb2, 0x04, 0x34, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, - 0x04, 0xd2, 0x00, 0x0a, 0xff, 0xff, 0x00, 0x87, 0xfe, 0xa8, 0x04, 0x45, - 0x04, 0x4e, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, - 0x04, 0xe3, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0xc6, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, - 0x04, 0xbe, 0x01, 0x52, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, - 0x06, 0x85, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, - 0x04, 0xbf, 0x00, 0x11, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, - 0x07, 0x52, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, - 0x00, 0x89, 0x01, 0x61, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, - 0x06, 0x11, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, - 0x00, 0x8a, 0x00, 0x20, 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0xdf, - 0x07, 0xee, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4c, - 0xff, 0xeb, 0x01, 0x59, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0xe0, - 0x06, 0xad, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4c, - 0xec, 0x18, 0xff, 0xff, 0xff, 0xf2, 0x00, 0x00, 0x04, 0x34, 0x07, 0xdd, - 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4b, 0xff, 0xe2, - 0x01, 0x48, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xec, 0x04, 0x45, 0x06, 0x9c, - 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4b, 0xe3, 0x07, - 0xff, 0xff, 0x00, 0xb6, 0x00, 0x00, 0x04, 0xb2, 0x08, 0x04, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4a, 0xff, 0xf8, 0x01, 0x35, - 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, 0x04, 0xb3, 0x06, 0xc4, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4a, 0xf9, 0xf5, 0xff, 0xff, - 0x00, 0xb6, 0x00, 0x00, 0x04, 0x34, 0x08, 0x2f, 0x06, 0x26, 0x00, 0x06, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x49, 0xff, 0xe9, 0x01, 0x36, 0xff, 0xff, - 0x00, 0x87, 0xff, 0xec, 0x04, 0x45, 0x06, 0xef, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x49, 0xea, 0xf6, 0xff, 0xff, 0x00, 0xb6, - 0xfe, 0xb2, 0x04, 0x34, 0x07, 0x48, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, - 0x00, 0x27, 0x01, 0x5c, 0x00, 0x7d, 0x01, 0x5b, 0x00, 0x07, 0x01, 0x65, - 0x04, 0xd2, 0x00, 0x0a, 0xff, 0xff, 0x00, 0x87, 0xfe, 0xa8, 0x04, 0x45, - 0x06, 0x07, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x26, 0x01, 0x5c, - 0x7e, 0x1a, 0x00, 0x07, 0x01, 0x65, 0x04, 0xe3, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xae, 0x00, 0x00, 0x04, 0x1e, 0x07, 0xc6, 0x06, 0x26, 0x00, 0x0a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0x8a, 0x01, 0x52, 0xff, 0xff, - 0x00, 0xcb, 0x00, 0x00, 0x04, 0x55, 0x06, 0x70, 0x06, 0x26, 0x01, 0x6d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xed, 0xff, 0xfc, 0xff, 0xff, - 0x00, 0xae, 0xfe, 0xb2, 0x04, 0x1e, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0x9e, 0x00, 0x0a, 0xff, 0xff, - 0x00, 0xcb, 0xfe, 0xb2, 0x04, 0x55, 0x05, 0xc3, 0x06, 0x26, 0x00, 0x24, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x06, 0x00, 0x0a, 0xff, 0xff, - 0x00, 0x6a, 0xfe, 0xa0, 0x04, 0x61, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xdf, 0xff, 0xf8, 0xff, 0xff, - 0x00, 0x7a, 0xfe, 0x9f, 0x04, 0x52, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xcd, 0xff, 0xf7, 0xff, 0xff, - 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, 0x07, 0xdb, 0x06, 0x26, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xcc, 0x01, 0x67, 0xff, 0xff, - 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, 0x06, 0x84, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xb9, 0x00, 0x10, 0xff, 0xff, - 0x00, 0x6a, 0xff, 0xec, 0x04, 0xed, 0x08, 0x03, 0x06, 0x26, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x4c, 0xff, 0xf9, 0x01, 0x6e, 0xff, 0xff, - 0x00, 0x7a, 0xff, 0xec, 0x04, 0xda, 0x06, 0xac, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x4c, 0xe6, 0x17, 0xff, 0xff, 0x00, 0x00, - 0xff, 0xec, 0x04, 0x61, 0x07, 0xf2, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x4b, 0xff, 0xf0, 0x01, 0x5d, 0xff, 0xff, 0xff, 0xed, - 0xff, 0xec, 0x04, 0x52, 0x06, 0x9b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x4b, 0xdd, 0x06, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, - 0x04, 0xbf, 0x08, 0x19, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x4a, 0x00, 0x05, 0x01, 0x4a, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, - 0x04, 0xad, 0x06, 0xc3, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x4a, 0xf3, 0xf4, 0xff, 0xff, 0x00, 0x6a, 0xff, 0xec, 0x04, 0x61, - 0x08, 0x44, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x02, 0x49, - 0xff, 0xf7, 0x01, 0x4b, 0xff, 0xff, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x52, - 0x06, 0xee, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x02, 0x49, - 0xe4, 0xf5, 0xff, 0xff, 0x00, 0x6a, 0xfe, 0xa0, 0x04, 0x61, 0x07, 0x5d, - 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5c, 0x00, 0x8b, - 0x01, 0x70, 0x00, 0x07, 0x01, 0x65, 0x04, 0xdf, 0xff, 0xf8, 0xff, 0xff, - 0x00, 0x7a, 0xfe, 0x9f, 0x04, 0x52, 0x06, 0x06, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x26, 0x01, 0x5c, 0x78, 0x19, 0x00, 0x07, 0x01, 0x65, - 0x04, 0xcd, 0xff, 0xf7, 0xff, 0xff, 0x00, 0x63, 0xff, 0xec, 0x04, 0xc6, - 0x07, 0x20, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x84, 0x01, 0x57, 0xff, 0xff, 0x00, 0x77, 0xff, 0xec, 0x04, 0xae, - 0x05, 0xde, 0x06, 0x26, 0x01, 0x35, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, - 0x7c, 0x15, 0xff, 0xff, 0x00, 0x63, 0xff, 0xec, 0x04, 0xc6, 0x07, 0x23, - 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0x98, - 0x01, 0x5a, 0xff, 0xff, 0x00, 0x77, 0xff, 0xec, 0x04, 0xae, 0x05, 0xe1, - 0x06, 0x26, 0x01, 0x35, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x90, 0x18, - 0xff, 0xff, 0x00, 0x63, 0xff, 0xec, 0x04, 0xc6, 0x07, 0xc6, 0x06, 0x26, - 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xc7, 0x01, 0x52, - 0xff, 0xff, 0x00, 0x77, 0xff, 0xec, 0x04, 0xae, 0x06, 0x84, 0x06, 0x26, - 0x01, 0x35, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xbf, 0x00, 0x10, - 0xff, 0xff, 0x00, 0x63, 0xff, 0xec, 0x04, 0xc6, 0x07, 0x52, 0x06, 0x26, - 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x92, 0x01, 0x61, - 0xff, 0xff, 0x00, 0x77, 0xff, 0xec, 0x04, 0xae, 0x06, 0x10, 0x06, 0x26, - 0x01, 0x35, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x8a, 0x00, 0x1f, - 0xff, 0xff, 0x00, 0x63, 0xfe, 0xa8, 0x04, 0xc6, 0x05, 0xfa, 0x06, 0x26, - 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xd3, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x77, 0xfe, 0x9f, 0x04, 0xae, 0x04, 0xaa, 0x06, 0x26, - 0x01, 0x35, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xcb, 0xff, 0xf7, - 0xff, 0xff, 0x00, 0x8b, 0xfe, 0xa8, 0x04, 0x42, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0xc8, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xb4, 0xfe, 0xa8, 0x04, 0x1f, 0x04, 0x3a, 0x06, 0x26, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x04, 0x9e, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x04, 0x42, 0x07, 0xba, 0x06, 0x26, - 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xe6, 0x01, 0x46, - 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, 0x04, 0x1f, 0x06, 0x71, 0x06, 0x26, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xb8, 0xff, 0xfd, - 0xff, 0xff, 0x00, 0x8b, 0xff, 0xec, 0x05, 0x83, 0x07, 0x20, 0x06, 0x26, - 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x74, 0x01, 0x57, - 0xff, 0xff, 0x00, 0xb4, 0xff, 0xec, 0x05, 0x3f, 0x05, 0xc9, 0x06, 0x26, - 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x76, 0x00, 0xff, 0xff, - 0x00, 0x8b, 0xff, 0xec, 0x05, 0x83, 0x07, 0x23, 0x06, 0x26, 0x00, 0xec, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0x88, 0x01, 0x5a, 0xff, 0xff, - 0x00, 0xb4, 0xff, 0xec, 0x05, 0x3f, 0x05, 0xcc, 0x06, 0x26, 0x01, 0x49, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x8a, 0x03, 0xff, 0xff, 0x00, 0x8b, - 0xff, 0xec, 0x05, 0x83, 0x07, 0xc6, 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xb7, 0x01, 0x52, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x05, 0x3f, 0x06, 0x70, 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xb9, 0xff, 0xfc, 0xff, 0xff, 0x00, 0x8b, - 0xff, 0xec, 0x05, 0x83, 0x07, 0x52, 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x82, 0x01, 0x61, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xec, 0x05, 0x3f, 0x05, 0xfb, 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x84, 0x00, 0x0a, 0xff, 0xff, 0x00, 0x8b, - 0xfe, 0xa0, 0x05, 0x83, 0x05, 0xe8, 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x65, 0x04, 0xcd, 0xff, 0xf8, 0xff, 0xff, 0x00, 0xb4, - 0xfe, 0xa8, 0x05, 0x3f, 0x04, 0x93, 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x65, 0x04, 0x90, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3d, - 0xfe, 0xb2, 0x04, 0x79, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x65, 0x04, 0xc3, 0x00, 0x0a, 0xff, 0xff, 0x00, 0x44, - 0xfe, 0x0b, 0x04, 0x85, 0x04, 0x3a, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x65, 0x05, 0xa7, 0xff, 0x63, 0xff, 0xff, 0x00, 0x3d, - 0x00, 0x00, 0x04, 0x79, 0x07, 0xc5, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xb4, 0x01, 0x51, 0xff, 0xff, 0x00, 0x44, - 0xfe, 0x4b, 0x04, 0x85, 0x06, 0x71, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xcc, 0xff, 0xfd, 0xff, 0xff, 0x00, 0x3d, - 0x00, 0x00, 0x04, 0x79, 0x07, 0x51, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x7f, 0x01, 0x60, 0xff, 0xff, 0x00, 0x44, - 0xfe, 0x4b, 0x04, 0x85, 0x05, 0xfc, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x97, 0x00, 0x0b, 0xff, 0xff, 0x00, 0x7c, - 0xfe, 0xed, 0x04, 0xe1, 0x06, 0x00, 0x04, 0x26, 0x00, 0x1f, 0xf1, 0x00, - 0x00, 0x27, 0x02, 0x6a, 0x01, 0x2f, 0x02, 0x47, 0x00, 0x06, 0x00, 0x66, - 0x21, 0x84, 0xff, 0xff, 0x00, 0xa9, 0xfe, 0xa0, 0x04, 0xdf, 0x05, 0xb0, - 0x06, 0x26, 0x02, 0x71, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x02, 0x20, - 0x00, 0x07, 0xff, 0xff, 0x00, 0xa4, 0xfe, 0x99, 0x04, 0xba, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xba, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xfb, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0x99, 0x04, 0xa8, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x09, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xe9, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xa5, 0xfe, 0x99, 0x04, 0xb0, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbd, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xf1, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x4c, 0xfe, 0x99, 0x04, 0x84, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0x8c, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x68, 0xfe, 0x99, 0x04, 0x7b, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0x95, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x57, 0xfe, 0x99, 0x04, 0xe7, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x19, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x02, 0x28, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x6e, 0xfe, 0x99, 0x04, 0x76, 0x04, 0x3a, - 0x06, 0x26, 0x00, 0x33, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xb7, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xab, 0xfe, 0x99, 0x04, 0xb0, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0xaa, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xf1, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0x99, 0x04, 0xb0, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xc2, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x01, 0xf1, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xab, 0xfe, 0x99, 0x04, 0x27, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0xaa, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0xde, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0x99, 0x04, 0x27, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xc2, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0xdd, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xb5, 0xfe, 0x99, 0x04, 0x30, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0x7b, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0xff, 0x3a, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xb7, 0xfe, 0x99, 0x04, 0x2a, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xb5, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0xff, 0x0b, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x1d, 0xfe, 0x99, 0x04, 0xfb, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0xa4, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x02, 0x3c, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x11, 0xfe, 0x99, 0x04, 0xef, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xb7, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x02, 0x30, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x26, 0xfe, 0x3b, 0x04, 0x89, 0x05, 0xc3, - 0x06, 0x26, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0xbf, - 0xff, 0xa2, 0xff, 0xff, 0x00, 0x26, 0xfe, 0x3b, 0x04, 0x85, 0x04, 0x4e, - 0x06, 0x26, 0x02, 0x0b, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, 0x00, 0x9b, - 0xff, 0xa2, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, 0x04, 0x2c, 0x06, 0x00, - 0x06, 0x06, 0x00, 0x23, 0x00, 0x00, 0x00, 0x02, 0x00, 0x12, 0x00, 0x00, - 0x04, 0x40, 0x04, 0x3a, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x21, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, 0x35, 0x11, - 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x21, 0x02, 0x8f, 0xfe, 0xcf, 0xb9, 0x93, 0x93, 0x02, 0x04, 0x61, - 0x98, 0x34, 0x34, 0x36, 0x37, 0x34, 0x34, 0x97, 0x61, 0xfe, 0xb5, 0x01, - 0x4b, 0x3a, 0x53, 0x1b, 0x1b, 0x1a, 0x19, 0x1b, 0x1b, 0x54, 0x3a, 0xfe, - 0xb5, 0x03, 0x23, 0x97, 0x80, 0x80, 0x97, 0xfc, 0xdd, 0x34, 0x2e, 0x2d, - 0x7d, 0x48, 0x49, 0x7a, 0x2c, 0x2c, 0x31, 0x83, 0xfe, 0xe6, 0x21, 0x1a, - 0x1b, 0x43, 0x23, 0x24, 0x42, 0x19, 0x19, 0x1e, 0x00, 0x02, 0xff, 0xd4, - 0x00, 0x00, 0x04, 0x51, 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x21, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x21, - 0x35, 0x11, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x21, 0x02, 0x51, 0xf0, 0xb9, 0xd4, 0xd4, 0x01, 0xc3, - 0x74, 0xb5, 0x3e, 0x3e, 0x41, 0x41, 0x3e, 0x3e, 0xb5, 0x74, 0xfe, 0xf6, - 0x01, 0x0a, 0x4e, 0x71, 0x25, 0x25, 0x23, 0x23, 0x25, 0x25, 0x71, 0x4e, - 0xfe, 0xf6, 0x04, 0x50, 0x97, 0xc9, 0xc9, 0x97, 0xfb, 0xb0, 0x3f, 0x39, - 0x39, 0xa0, 0x60, 0x61, 0x9c, 0x38, 0x37, 0x3c, 0xf7, 0xfe, 0x72, 0x2b, - 0x24, 0x25, 0x63, 0x38, 0x39, 0x67, 0x27, 0x27, 0x2e, 0x00, 0x00, 0x02, - 0xff, 0xd4, 0x00, 0x00, 0x04, 0x51, 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, - 0x00, 0x00, 0x41, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, - 0x21, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x21, 0x35, 0x11, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x21, 0x02, 0x51, 0xf0, 0xb9, 0xd4, 0xd4, - 0x01, 0xc3, 0x74, 0xb5, 0x3e, 0x3e, 0x41, 0x41, 0x3e, 0x3e, 0xb5, 0x74, - 0xfe, 0xf6, 0x01, 0x0a, 0x4e, 0x71, 0x25, 0x25, 0x23, 0x23, 0x25, 0x25, - 0x71, 0x4e, 0xfe, 0xf6, 0x04, 0x50, 0x97, 0xc9, 0xc9, 0x97, 0xfb, 0xb0, - 0x3f, 0x39, 0x39, 0xa0, 0x60, 0x61, 0x9c, 0x38, 0x37, 0x3c, 0xf7, 0xfe, - 0x72, 0x2b, 0x24, 0x25, 0x63, 0x38, 0x39, 0x67, 0x27, 0x27, 0x2e, 0x00, - 0x00, 0x01, 0xff, 0xfd, 0x00, 0x00, 0x04, 0x30, 0x05, 0xb0, 0x00, 0x0d, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x23, 0x15, - 0x33, 0x11, 0x33, 0x11, 0x02, 0x7a, 0xfe, 0xf5, 0x02, 0xc1, 0xfc, 0x85, - 0xb8, 0xb8, 0xba, 0x02, 0xac, 0x97, 0x01, 0xd5, 0x98, 0xfd, 0x93, 0x97, - 0xfd, 0x54, 0x02, 0xac, 0x00, 0x01, 0xff, 0xfb, 0x00, 0x00, 0x04, 0x2a, - 0x04, 0x3a, 0x00, 0x0d, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x02, 0x78, 0xfe, 0xf9, - 0x02, 0xb9, 0xfc, 0x8d, 0xbc, 0xbc, 0xba, 0x01, 0xdf, 0x97, 0x01, 0x2b, - 0x99, 0xfe, 0x3c, 0x97, 0xfe, 0x21, 0x01, 0xdf, 0x00, 0x01, 0xff, 0xff, - 0x00, 0x00, 0x04, 0xc0, 0x05, 0xb0, 0x00, 0x14, 0x00, 0x00, 0x41, 0x01, - 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x21, 0x35, 0x21, 0x35, 0x23, - 0x15, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x02, 0x17, 0x01, 0xc6, 0xe3, - 0xfd, 0xe8, 0x01, 0xef, 0xd4, 0xfe, 0x45, 0x9c, 0x01, 0x10, 0xfe, 0xf0, - 0xb9, 0xb4, 0xb4, 0xb9, 0x02, 0x93, 0xfd, 0x6d, 0x02, 0xef, 0x02, 0xc1, - 0xfd, 0x7a, 0x01, 0x3f, 0x97, 0xb0, 0xb0, 0x97, 0xfb, 0x97, 0x02, 0x93, - 0x00, 0x01, 0xff, 0xe9, 0x00, 0x00, 0x04, 0x74, 0x06, 0x00, 0x00, 0x14, - 0x00, 0x00, 0x73, 0x33, 0x11, 0x37, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, - 0x07, 0x11, 0x33, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0xba, - 0xba, 0x88, 0x01, 0x8d, 0xeb, 0xfe, 0x07, 0x01, 0xb6, 0xe1, 0xfe, 0x9d, - 0x79, 0xf2, 0xf2, 0xba, 0xd1, 0xd1, 0x01, 0x76, 0x83, 0xfe, 0x07, 0x02, - 0x77, 0x01, 0xc3, 0xfe, 0x9c, 0x82, 0x02, 0x6d, 0x97, 0xa8, 0xa8, 0x97, - 0xff, 0xff, 0x00, 0xa2, 0xfe, 0x8a, 0x04, 0xe3, 0x07, 0x3e, 0x06, 0x26, - 0x01, 0xa6, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5f, 0xff, 0xf9, 0x01, 0x8c, - 0x00, 0x07, 0x00, 0x5f, 0x02, 0x60, 0xff, 0xda, 0xff, 0xff, 0x00, 0xa5, - 0xfe, 0x8a, 0x04, 0xe0, 0x05, 0xf3, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, - 0x00, 0x26, 0x01, 0x5f, 0xf4, 0x41, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x5d, - 0xff, 0xda, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0x8a, 0x04, 0xd8, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x09, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x55, - 0xff, 0xda, 0xff, 0xff, 0x00, 0xa5, 0xfe, 0x8a, 0x04, 0xe0, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbd, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x5d, - 0xff, 0xda, 0xff, 0xff, 0x00, 0x94, 0xfe, 0x8a, 0x05, 0x02, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x7f, - 0xff, 0xda, 0xff, 0xff, 0x00, 0x89, 0xfe, 0x8a, 0x04, 0xe4, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x61, - 0xff, 0xda, 0xff, 0xff, 0x00, 0x2f, 0xfe, 0x8a, 0x04, 0xe4, 0x05, 0xb0, - 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x61, - 0xff, 0xda, 0xff, 0xff, 0x00, 0x37, 0xfe, 0x8a, 0x04, 0xdf, 0x04, 0x3a, - 0x06, 0x26, 0x01, 0xbb, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x5c, - 0xff, 0xda, 0x00, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x04, 0x79, 0x05, 0xb0, - 0x00, 0x11, 0x00, 0x00, 0x41, 0x35, 0x23, 0x01, 0x23, 0x01, 0x23, 0x01, - 0x23, 0x01, 0x23, 0x15, 0x33, 0x17, 0x13, 0x33, 0x13, 0x37, 0x03, 0x9b, - 0xa3, 0x01, 0x81, 0xd2, 0xfe, 0xb5, 0x02, 0xfe, 0xb6, 0xd3, 0x01, 0x80, - 0x9f, 0xe2, 0x02, 0x03, 0xac, 0x03, 0x02, 0x02, 0x12, 0x97, 0x03, 0x07, - 0xfd, 0x25, 0x02, 0xdb, 0xfc, 0xf9, 0x97, 0x03, 0xfd, 0xf1, 0x02, 0x10, - 0x02, 0x00, 0x00, 0x01, 0x00, 0x47, 0xfe, 0x60, 0x04, 0x96, 0x04, 0x3a, - 0x00, 0x11, 0x00, 0x00, 0x45, 0x35, 0x23, 0x01, 0x23, 0x01, 0x07, 0x23, - 0x27, 0x01, 0x23, 0x01, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x03, 0xb1, - 0xbc, 0x01, 0xa1, 0xbe, 0xfe, 0xb3, 0x1a, 0x01, 0x17, 0xfe, 0xac, 0xbe, - 0x01, 0xa4, 0xb7, 0xde, 0xba, 0x0b, 0x97, 0x03, 0xae, 0xfc, 0xf0, 0x62, - 0x62, 0x03, 0x10, 0xfc, 0x52, 0x97, 0xfe, 0x6b, 0x01, 0x95, 0x00, 0x01, - 0x00, 0x57, 0x00, 0x00, 0x04, 0x8f, 0x05, 0xb0, 0x00, 0x11, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x01, 0x23, 0x01, 0x01, 0x23, 0x01, 0x23, 0x15, 0x33, - 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x03, 0xae, 0x9d, 0x01, 0x74, 0xda, - 0xfe, 0xc6, 0xfe, 0xca, 0xd9, 0x01, 0x74, 0xa5, 0xb2, 0xfe, 0x74, 0xdb, - 0x01, 0x43, 0x01, 0x42, 0xd8, 0xfe, 0x75, 0x02, 0x9e, 0x97, 0x02, 0x7b, - 0xfd, 0xc5, 0x02, 0x3b, 0xfd, 0x85, 0x97, 0xfd, 0x62, 0x02, 0x46, 0xfd, - 0xba, 0x02, 0x9e, 0x00, 0x00, 0x01, 0x00, 0x6e, 0x00, 0x00, 0x04, 0x72, - 0x04, 0x3a, 0x00, 0x11, 0x00, 0x00, 0x41, 0x35, 0x23, 0x01, 0x23, 0x01, - 0x01, 0x23, 0x01, 0x23, 0x15, 0x33, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, - 0x03, 0xa2, 0x8e, 0x01, 0x53, 0xd9, 0xfe, 0xdf, 0xfe, 0xe2, 0xd6, 0x01, - 0x53, 0xa7, 0xb5, 0xfe, 0x94, 0xd8, 0x01, 0x2b, 0x01, 0x2b, 0xd6, 0xfe, - 0x94, 0x01, 0xe1, 0x97, 0x01, 0xc2, 0xfe, 0x6f, 0x01, 0x91, 0xfe, 0x3e, - 0x97, 0xfe, 0x1f, 0x01, 0x9c, 0xfe, 0x64, 0x01, 0xe1, 0x00, 0xff, 0xff, - 0x00, 0x8b, 0xff, 0xec, 0x04, 0x60, 0x04, 0x4d, 0x06, 0x06, 0x01, 0x89, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x4f, 0x02, 0x8b, 0x04, 0x8c, 0x03, 0x22, - 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x04, 0x8c, 0xfb, 0xc3, - 0x02, 0x8b, 0x97, 0x97, 0x00, 0x01, 0x00, 0x00, 0x03, 0xe7, 0x00, 0xb1, - 0x00, 0x16, 0x00, 0x87, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x79, 0x00, 0xda, - 0x01, 0x21, 0x01, 0x3a, 0x01, 0x50, 0x01, 0xba, 0x01, 0xd2, 0x01, 0xea, - 0x02, 0x1a, 0x02, 0x38, 0x02, 0x48, 0x02, 0x68, 0x02, 0x80, 0x02, 0xf5, - 0x03, 0x2c, 0x03, 0xa5, 0x03, 0xe2, 0x04, 0x51, 0x04, 0x64, 0x04, 0x97, - 0x04, 0xad, 0x04, 0xd1, 0x04, 0xf0, 0x05, 0x08, 0x05, 0x20, 0x05, 0x8c, - 0x05, 0xf4, 0x06, 0x42, 0x06, 0x86, 0x06, 0xd2, 0x07, 0x05, 0x07, 0x7c, - 0x07, 0xb1, 0x07, 0xdf, 0x08, 0x21, 0x08, 0x3f, 0x08, 0x54, 0x08, 0xad, - 0x08, 0xe0, 0x09, 0x2e, 0x09, 0x84, 0x09, 0xda, 0x0a, 0x01, 0x0a, 0x6e, - 0x0a, 0xa8, 0x0a, 0xd6, 0x0a, 0xec, 0x0b, 0x11, 0x0b, 0x30, 0x0b, 0x64, - 0x0b, 0x7b, 0x0b, 0xd7, 0x0b, 0xe9, 0x0c, 0x2c, 0x0c, 0x9b, 0x0c, 0xba, - 0x0d, 0x05, 0x0d, 0x67, 0x0d, 0x79, 0x0e, 0x08, 0x0e, 0x6a, 0x0e, 0x7c, - 0x0e, 0xbf, 0x0f, 0x2e, 0x0f, 0x9b, 0x0f, 0xe9, 0x10, 0x42, 0x10, 0x75, - 0x11, 0x05, 0x11, 0x2c, 0x11, 0xe9, 0x12, 0x36, 0x12, 0xe3, 0x13, 0x51, - 0x13, 0x88, 0x13, 0xde, 0x13, 0xfc, 0x14, 0x74, 0x14, 0xcc, 0x15, 0x41, - 0x15, 0x97, 0x15, 0xe6, 0x16, 0x13, 0x16, 0x5b, 0x16, 0x67, 0x16, 0xbf, - 0x17, 0x1a, 0x17, 0x76, 0x17, 0x94, 0x17, 0xb2, 0x18, 0x0f, 0x18, 0x6c, - 0x18, 0x81, 0x18, 0x97, 0x18, 0xa3, 0x18, 0xb0, 0x18, 0xc1, 0x18, 0xd8, - 0x19, 0x03, 0x19, 0x10, 0x19, 0x1d, 0x19, 0x2a, 0x19, 0x37, 0x19, 0x47, - 0x19, 0x61, 0x19, 0x7b, 0x19, 0x95, 0x19, 0xae, 0x19, 0xbb, 0x19, 0xc8, - 0x19, 0xf4, 0x19, 0xfc, 0x1a, 0x04, 0x1a, 0x46, 0x1a, 0x88, 0x1a, 0x9b, - 0x1a, 0xad, 0x1a, 0xef, 0x1b, 0x42, 0x1b, 0x56, 0x1b, 0x6a, 0x1b, 0x82, - 0x1b, 0x8f, 0x1b, 0xae, 0x1b, 0xcf, 0x1b, 0xfd, 0x1c, 0x11, 0x1c, 0x35, - 0x1c, 0x84, 0x1c, 0x9a, 0x1c, 0xb1, 0x1c, 0xce, 0x1c, 0xec, 0x1c, 0xfd, - 0x1d, 0x0c, 0x1d, 0x1b, 0x1d, 0x2b, 0x1d, 0xca, 0x1e, 0xb2, 0x1e, 0xc0, - 0x1e, 0xd4, 0x1e, 0xec, 0x1f, 0x0e, 0x1f, 0x9e, 0x20, 0x0c, 0x20, 0x33, - 0x20, 0x7d, 0x20, 0xa1, 0x20, 0xda, 0x21, 0x73, 0x22, 0x26, 0x22, 0xf5, - 0x23, 0x13, 0x23, 0x29, 0x23, 0x77, 0x23, 0x83, 0x23, 0x8f, 0x23, 0x9b, - 0x23, 0xa7, 0x23, 0xb3, 0x23, 0xbf, 0x24, 0x02, 0x24, 0x0e, 0x24, 0x1a, - 0x24, 0x26, 0x24, 0x32, 0x24, 0x3e, 0x24, 0x4a, 0x24, 0x55, 0x24, 0x61, - 0x24, 0x6d, 0x24, 0xac, 0x24, 0xb8, 0x24, 0xc4, 0x24, 0xd0, 0x24, 0xdc, - 0x24, 0xe8, 0x24, 0xf4, 0x25, 0x00, 0x25, 0x0c, 0x25, 0x3e, 0x25, 0x7e, - 0x25, 0xbd, 0x25, 0xc9, 0x25, 0xd5, 0x25, 0xe1, 0x26, 0x0a, 0x26, 0x16, - 0x26, 0x22, 0x26, 0x2e, 0x26, 0x3a, 0x26, 0x46, 0x26, 0x52, 0x26, 0x5e, - 0x26, 0x6a, 0x26, 0xaa, 0x26, 0xb6, 0x26, 0xc2, 0x26, 0xce, 0x26, 0xda, - 0x26, 0xe6, 0x26, 0xf2, 0x26, 0xfe, 0x27, 0x1a, 0x27, 0x26, 0x27, 0x32, - 0x27, 0x3e, 0x27, 0x4a, 0x27, 0x56, 0x27, 0x62, 0x27, 0x6e, 0x27, 0x7a, - 0x27, 0x86, 0x27, 0xee, 0x27, 0xfa, 0x28, 0x06, 0x28, 0x79, 0x28, 0x85, - 0x28, 0x91, 0x28, 0x9d, 0x28, 0xa9, 0x28, 0xb5, 0x28, 0xc1, 0x28, 0xcd, - 0x28, 0xd8, 0x28, 0xe4, 0x29, 0x00, 0x29, 0x0c, 0x29, 0x18, 0x29, 0x24, - 0x29, 0x30, 0x29, 0x3c, 0x29, 0x48, 0x29, 0x8f, 0x29, 0x9b, 0x29, 0xa7, - 0x2a, 0x05, 0x2a, 0x11, 0x2a, 0x1d, 0x2a, 0x29, 0x2a, 0x35, 0x2a, 0x41, - 0x2a, 0x4d, 0x2a, 0x59, 0x2a, 0x65, 0x2a, 0x71, 0x2a, 0x7d, 0x2a, 0x89, - 0x2a, 0x95, 0x2a, 0xa1, 0x2a, 0xad, 0x2a, 0xb8, 0x2a, 0xc4, 0x2a, 0xcf, - 0x2a, 0xda, 0x2a, 0xe5, 0x2b, 0x78, 0x2b, 0x83, 0x2b, 0x8e, 0x2b, 0x9a, - 0x2b, 0xa6, 0x2b, 0xb2, 0x2b, 0xbd, 0x2b, 0xc8, 0x2b, 0xd4, 0x2b, 0xe0, - 0x2c, 0x3f, 0x2c, 0x4a, 0x2c, 0x55, 0x2c, 0x60, 0x2c, 0x6b, 0x2c, 0x76, - 0x2c, 0x81, 0x2c, 0x8c, 0x2c, 0x97, 0x2c, 0xe3, 0x2d, 0x55, 0x2d, 0x60, - 0x2d, 0x6b, 0x2d, 0x76, 0x2d, 0xb4, 0x2d, 0xc0, 0x2d, 0xcc, 0x2d, 0xd7, - 0x2d, 0xe3, 0x2d, 0xee, 0x2d, 0xf9, 0x2e, 0x04, 0x2e, 0x51, 0x2e, 0x5d, - 0x2e, 0x69, 0x2e, 0x75, 0x2e, 0x81, 0x2e, 0x8d, 0x2e, 0x99, 0x2e, 0xa5, - 0x2e, 0xc8, 0x2e, 0xd3, 0x2e, 0xde, 0x2e, 0xea, 0x2e, 0xf5, 0x2f, 0x00, - 0x2f, 0x0b, 0x2f, 0x16, 0x2f, 0x21, 0x2f, 0x2c, 0x2f, 0x8c, 0x2f, 0x98, - 0x2f, 0xa3, 0x30, 0x09, 0x30, 0x14, 0x30, 0x20, 0x30, 0x2b, 0x30, 0x36, - 0x30, 0x42, 0x30, 0x4e, 0x30, 0x59, 0x30, 0x64, 0x30, 0x70, 0x30, 0xb1, - 0x30, 0xbd, 0x30, 0xc8, 0x30, 0xd3, 0x30, 0xde, 0x30, 0xe9, 0x30, 0xf4, - 0x31, 0x32, 0x31, 0x3e, 0x31, 0x49, 0x31, 0x9e, 0x31, 0xa9, 0x31, 0xb5, - 0x31, 0xc0, 0x31, 0xcb, 0x31, 0xd6, 0x31, 0xe1, 0x31, 0xed, 0x31, 0xf9, - 0x32, 0x04, 0x32, 0x0f, 0x32, 0x1b, 0x32, 0x26, 0x32, 0x31, 0x32, 0x40, - 0x32, 0x4f, 0x32, 0x63, 0x32, 0x9f, 0x32, 0xac, 0x32, 0xd7, 0x32, 0xee, - 0x33, 0x15, 0x33, 0x5f, 0x33, 0x76, 0x33, 0x89, 0x33, 0x9f, 0x33, 0xcd, - 0x33, 0xfc, 0x34, 0x11, 0x34, 0x11, 0x34, 0x1e, 0x34, 0x50, 0x34, 0x5d, - 0x34, 0x72, 0x34, 0xa2, 0x35, 0x00, 0x35, 0x25, 0x35, 0x57, 0x35, 0x8f, - 0x35, 0x9e, 0x35, 0xad, 0x35, 0xb6, 0x35, 0xe5, 0x35, 0xfc, 0x36, 0x0b, - 0x36, 0x3a, 0x36, 0x42, 0x36, 0x52, 0x36, 0x6d, 0x36, 0xc4, 0x36, 0xd8, - 0x36, 0xf2, 0x37, 0x05, 0x37, 0x21, 0x37, 0x7b, 0x37, 0xb5, 0x38, 0x0d, - 0x38, 0x7f, 0x38, 0xf4, 0x39, 0x11, 0x39, 0x8e, 0x3a, 0x06, 0x3a, 0x62, - 0x3a, 0x96, 0x3a, 0xec, 0x3b, 0x19, 0x3b, 0x64, 0x3b, 0xeb, 0x3c, 0x1b, - 0x3c, 0x6e, 0x3c, 0xcf, 0x3d, 0x22, 0x3d, 0x52, 0x3d, 0x8d, 0x3d, 0xf3, - 0x3e, 0x34, 0x3e, 0xb0, 0x3f, 0x22, 0x3f, 0x6f, 0x3f, 0xf5, 0x40, 0x33, - 0x40, 0x87, 0x40, 0xe4, 0x41, 0x20, 0x41, 0x51, 0x41, 0x6a, 0x41, 0xa2, - 0x41, 0xe0, 0x42, 0x0a, 0x42, 0x82, 0x42, 0x9b, 0x42, 0xcf, 0x43, 0x01, - 0x43, 0x1a, 0x43, 0x45, 0x43, 0x5d, 0x43, 0x7a, 0x43, 0xb0, 0x43, 0xec, - 0x44, 0x21, 0x44, 0x75, 0x44, 0xcf, 0x45, 0x0a, 0x45, 0x81, 0x45, 0xda, - 0x45, 0xea, 0x46, 0x1d, 0x46, 0x48, 0x46, 0xc0, 0x46, 0xd8, 0x46, 0xf5, - 0x47, 0x25, 0x47, 0x3f, 0x47, 0x57, 0x47, 0x6a, 0x47, 0x7d, 0x47, 0xdc, - 0x47, 0xf5, 0x48, 0x24, 0x48, 0x3c, 0x48, 0x5a, 0x48, 0x90, 0x48, 0xcc, - 0x49, 0x01, 0x49, 0x52, 0x49, 0xa9, 0x49, 0xe1, 0x4a, 0x38, 0x4a, 0x8a, - 0x4a, 0xdf, 0x4b, 0x1d, 0x4b, 0x5b, 0x4b, 0x74, 0x4b, 0xcb, 0x4c, 0x21, - 0x4c, 0x60, 0x4c, 0xdd, 0x4d, 0x4a, 0x4d, 0x6f, 0x4d, 0x94, 0x4d, 0xc2, - 0x4d, 0xf0, 0x4e, 0x38, 0x4e, 0x84, 0x4e, 0xd5, 0x4f, 0x28, 0x4f, 0xbc, - 0x50, 0x59, 0x50, 0xd4, 0x51, 0x28, 0x51, 0x54, 0x51, 0x83, 0x51, 0xfe, - 0x52, 0x77, 0x52, 0xfb, 0x53, 0x58, 0x54, 0x2f, 0x54, 0xf2, 0x55, 0x5e, - 0x55, 0xc0, 0x56, 0x02, 0x56, 0x48, 0x56, 0x74, 0x56, 0x88, 0x56, 0xc0, - 0x56, 0xd1, 0x56, 0xe1, 0x57, 0xc1, 0x58, 0x15, 0x58, 0x55, 0x58, 0xb4, - 0x58, 0xc7, 0x58, 0xda, 0x59, 0x10, 0x59, 0x46, 0x59, 0x6b, 0x59, 0x8f, - 0x59, 0xaf, 0x59, 0xcf, 0x59, 0xea, 0x5a, 0x05, 0x5a, 0x51, 0x5a, 0x89, - 0x5b, 0x24, 0x5b, 0xc4, 0x5b, 0xe2, 0x5c, 0x00, 0x5c, 0x3b, 0x5c, 0x71, - 0x5c, 0x9b, 0x5d, 0x10, 0x5d, 0x6a, 0x5d, 0xa9, 0x5d, 0xe3, 0x5e, 0x14, - 0x5e, 0x45, 0x5e, 0xb5, 0x5e, 0xfc, 0x5f, 0x43, 0x5f, 0x53, 0x5f, 0x63, - 0x5f, 0x98, 0x5f, 0xe8, 0x60, 0x96, 0x61, 0x11, 0x61, 0x89, 0x61, 0xee, - 0x62, 0x58, 0x62, 0xd3, 0x63, 0x48, 0x63, 0xa2, 0x63, 0xf7, 0x64, 0x55, - 0x64, 0xa7, 0x64, 0xf8, 0x65, 0x3b, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, - 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, - 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xaa, 0x65, 0xb6, 0x65, 0xd0, - 0x65, 0xdd, 0x65, 0xfc, 0x66, 0x30, 0x66, 0x7f, 0x67, 0x1d, 0x67, 0x7d, - 0x67, 0xe3, 0x68, 0x28, 0x68, 0xcc, 0x69, 0xcd, 0x6a, 0xa5, 0x6b, 0x49, - 0x6b, 0xb7, 0x6b, 0xca, 0x6b, 0xe6, 0x6c, 0x00, 0x6c, 0xd1, 0x6d, 0x10, - 0x6d, 0x36, 0x6d, 0x36, 0x6e, 0x08, 0x6e, 0x68, 0x6e, 0xb1, 0x6e, 0xec, - 0x6f, 0x08, 0x6f, 0x24, 0x6f, 0x56, 0x6f, 0x6b, 0x6f, 0x8a, 0x6f, 0xe3, - 0x70, 0x34, 0x70, 0x6a, 0x70, 0x83, 0x70, 0x99, 0x70, 0xef, 0x71, 0x07, - 0x71, 0x1f, 0x71, 0x4f, 0x71, 0x6d, 0x71, 0x7d, 0x71, 0x98, 0x71, 0xb0, - 0x72, 0x01, 0x72, 0x5c, 0x72, 0x99, 0x73, 0x0d, 0x73, 0x20, 0x73, 0x54, - 0x73, 0x6c, 0x73, 0x91, 0x73, 0xb0, 0x73, 0xca, 0x73, 0xe1, 0x74, 0x34, - 0x74, 0x66, 0x74, 0x73, 0x74, 0xb4, 0x74, 0xdc, 0x75, 0x2a, 0x75, 0x38, - 0x75, 0x5d, 0x75, 0x94, 0x75, 0xb1, 0x76, 0x0f, 0x76, 0x17, 0x76, 0x1f, - 0x76, 0x2b, 0x76, 0x36, 0x76, 0x42, 0x76, 0x4d, 0x76, 0x59, 0x76, 0x65, - 0x76, 0x71, 0x76, 0x7d, 0x76, 0x89, 0x76, 0x94, 0x76, 0x9f, 0x76, 0xab, - 0x76, 0xb7, 0x76, 0xc3, 0x76, 0xce, 0x76, 0xd9, 0x76, 0xe4, 0x76, 0xef, - 0x76, 0xfb, 0x77, 0x06, 0x77, 0x12, 0x77, 0x1e, 0x77, 0x29, 0x77, 0x35, - 0x77, 0x40, 0x77, 0x4b, 0x77, 0x56, 0x77, 0x61, 0x77, 0x6d, 0x77, 0x79, - 0x77, 0x84, 0x77, 0x90, 0x77, 0x9b, 0x77, 0xa7, 0x77, 0xb3, 0x77, 0xbf, - 0x77, 0xca, 0x77, 0xd5, 0x77, 0xe1, 0x77, 0xed, 0x77, 0xf8, 0x78, 0x03, - 0x78, 0x0e, 0x78, 0x19, 0x78, 0x5f, 0x78, 0x6a, 0x78, 0x75, 0x78, 0x80, - 0x78, 0x8b, 0x78, 0x96, 0x78, 0xa1, 0x78, 0xac, 0x78, 0xec, 0x78, 0xf7, - 0x79, 0x02, 0x79, 0x0d, 0x79, 0x19, 0x79, 0x25, 0x79, 0x31, 0x79, 0x3c, - 0x79, 0x47, 0x79, 0x87, 0x79, 0x92, 0x79, 0x9e, 0x79, 0xaa, 0x79, 0xb6, - 0x79, 0xc2, 0x79, 0xce, 0x79, 0xda, 0x79, 0xe6, 0x79, 0xf2, 0x79, 0xfd, - 0x7a, 0x08, 0x7a, 0x13, 0x7a, 0x1f, 0x7a, 0x2a, 0x7a, 0x36, 0x7a, 0x41, - 0x7a, 0x4c, 0x7a, 0x57, 0x7a, 0x62, 0x7a, 0x6d, 0x7a, 0x78, 0x7a, 0x84, - 0x7a, 0x8f, 0x7a, 0x9a, 0x7a, 0xa6, 0x7a, 0xb2, 0x7b, 0x0b, 0x7b, 0x17, - 0x7b, 0x22, 0x7b, 0x2d, 0x7b, 0x39, 0x7b, 0x44, 0x7b, 0x4f, 0x7b, 0x5b, - 0x7b, 0x67, 0x7b, 0x73, 0x7b, 0x7f, 0x7b, 0x8b, 0x7b, 0x97, 0x7b, 0xa3, - 0x7b, 0xae, 0x7b, 0xb6, 0x7b, 0xbe, 0x7b, 0xc6, 0x7b, 0xce, 0x7b, 0xd6, - 0x7b, 0xde, 0x7b, 0xe6, 0x7b, 0xee, 0x7b, 0xf6, 0x7b, 0xfe, 0x7c, 0x06, - 0x7c, 0x0e, 0x7c, 0x16, 0x7c, 0x1e, 0x7c, 0x2a, 0x7c, 0x36, 0x7c, 0x41, - 0x7c, 0x4c, 0x7c, 0x57, 0x7c, 0x62, 0x7c, 0x6d, 0x7c, 0x75, 0x7c, 0x7d, - 0x7c, 0x85, 0x7c, 0x8d, 0x7c, 0x95, 0x7c, 0xa0, 0x7c, 0xab, 0x7c, 0xb6, - 0x7c, 0xc1, 0x7c, 0xcc, 0x7c, 0xd8, 0x7c, 0xe4, 0x7d, 0x5c, 0x7d, 0x64, - 0x7d, 0x70, 0x7d, 0x78, 0x7d, 0x80, 0x7d, 0x8c, 0x7d, 0x98, 0x7d, 0xa0, - 0x7d, 0xa8, 0x7d, 0xb0, 0x7d, 0xb8, 0x7d, 0xc4, 0x7d, 0xcc, 0x7d, 0xd4, - 0x7d, 0xdc, 0x7d, 0xe4, 0x7d, 0xec, 0x7d, 0xf4, 0x7d, 0xfc, 0x7e, 0x04, - 0x7e, 0x0c, 0x7e, 0x14, 0x7e, 0x1c, 0x7e, 0x27, 0x7e, 0x2f, 0x7e, 0x37, - 0x7e, 0x85, 0x7e, 0x8d, 0x7e, 0x95, 0x7e, 0xa0, 0x7e, 0xab, 0x7e, 0xb3, - 0x7e, 0xbb, 0x7e, 0xc6, 0x7e, 0xce, 0x7e, 0xd9, 0x7e, 0xe4, 0x7e, 0xf1, - 0x7e, 0xfc, 0x7f, 0x04, 0x7f, 0x10, 0x7f, 0x1c, 0x7f, 0x27, 0x7f, 0x32, - 0x7f, 0x3e, 0x7f, 0x4a, 0x7f, 0x56, 0x7f, 0x61, 0x7f, 0x6d, 0x7f, 0x75, - 0x7f, 0x7d, 0x7f, 0x89, 0x7f, 0x95, 0x7f, 0xa0, 0x7f, 0xab, 0x7f, 0xb6, - 0x7f, 0xc1, 0x7f, 0xc9, 0x7f, 0xd1, 0x7f, 0xd9, 0x7f, 0xe5, 0x7f, 0xf0, - 0x7f, 0xf8, 0x80, 0x04, 0x80, 0x0f, 0x80, 0x1b, 0x80, 0x26, 0x80, 0x2e, - 0x80, 0x36, 0x80, 0x42, 0x80, 0x4d, 0x80, 0x59, 0x80, 0x61, 0x80, 0x6c, - 0x80, 0x78, 0x80, 0x83, 0x80, 0x8f, 0x80, 0x9a, 0x80, 0xa6, 0x80, 0xb1, - 0x80, 0xbd, 0x80, 0xc8, 0x80, 0xd4, 0x80, 0xdf, 0x80, 0xe7, 0x80, 0xef, - 0x80, 0xfb, 0x81, 0x06, 0x81, 0x12, 0x81, 0x1d, 0x81, 0x29, 0x81, 0x34, - 0x81, 0x40, 0x81, 0x4b, 0x81, 0x57, 0x81, 0x63, 0x81, 0x6f, 0x81, 0x7a, - 0x81, 0x86, 0x81, 0x91, 0x81, 0x9d, 0x81, 0xa9, 0x81, 0xb1, 0x81, 0xbd, - 0x81, 0xc9, 0x81, 0xd5, 0x81, 0xe1, 0x81, 0xed, 0x81, 0xf9, 0x82, 0x05, - 0x82, 0x10, 0x82, 0x1c, 0x82, 0x27, 0x82, 0x33, 0x82, 0x3e, 0x82, 0x4a, - 0x82, 0x55, 0x82, 0x65, 0x82, 0x75, 0x82, 0x81, 0x82, 0x8c, 0x82, 0x98, - 0x82, 0xa3, 0x82, 0xaf, 0x82, 0xba, 0x82, 0xc6, 0x82, 0xd1, 0x82, 0xe1, - 0x82, 0xf0, 0x82, 0xfc, 0x83, 0x08, 0x83, 0x14, 0x83, 0x20, 0x83, 0x2c, - 0x83, 0x38, 0x83, 0x44, 0x83, 0x4f, 0x83, 0x5b, 0x83, 0x66, 0x83, 0x72, - 0x83, 0x7d, 0x83, 0x89, 0x83, 0x94, 0x83, 0xa4, 0x83, 0xb3, 0x83, 0xbf, - 0x83, 0xcb, 0x83, 0xd7, 0x83, 0xe3, 0x83, 0xef, 0x83, 0xfb, 0x84, 0x07, - 0x84, 0x13, 0x84, 0x1f, 0x84, 0x2a, 0x84, 0x36, 0x84, 0x41, 0x84, 0x4d, - 0x84, 0x58, 0x84, 0x64, 0x84, 0x6f, 0x84, 0x7f, 0x84, 0x8e, 0x84, 0x9a, - 0x84, 0xa5, 0x84, 0xb1, 0x84, 0xbc, 0x84, 0xc8, 0x84, 0xd4, 0x84, 0xe0, - 0x84, 0xec, 0x84, 0xf8, 0x85, 0x04, 0x85, 0x10, 0x85, 0x1c, 0x85, 0x28, - 0x85, 0x34, 0x85, 0x40, 0x85, 0x4b, 0x85, 0x57, 0x85, 0x62, 0x85, 0x6e, - 0x85, 0x7a, 0x85, 0x86, 0x85, 0x92, 0x85, 0x9e, 0x85, 0xaa, 0x85, 0xb6, - 0x85, 0xc2, 0x85, 0xce, 0x85, 0xda, 0x85, 0xe6, 0x85, 0xf2, 0x86, 0x01, - 0x86, 0x0d, 0x86, 0x19, 0x86, 0x25, 0x86, 0x31, 0x86, 0x3d, 0x86, 0x49, - 0x86, 0x55, 0x86, 0x61, 0x86, 0x6d, 0x86, 0x79, 0x86, 0x85, 0x86, 0x91, - 0x86, 0x9d, 0x86, 0xa9, 0x86, 0xb5, 0x86, 0xc1, 0x86, 0xcd, 0x86, 0xd9, - 0x86, 0xe1, 0x87, 0x1e, 0x87, 0x5b, 0x87, 0x98, 0x87, 0xb2, 0x87, 0xcc, - 0x87, 0xf2, 0x88, 0x16, 0x88, 0x26, 0x88, 0x35, 0x88, 0x41, 0x88, 0x4d, - 0x88, 0x59, 0x88, 0x65, 0x88, 0x71, 0x88, 0x7d, 0x88, 0xa1, 0x88, 0xc3, - 0x88, 0xea, 0x89, 0x11, 0x89, 0x19, 0x89, 0x26, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x00, 0xb0, 0x8f, 0x5c, 0xf4, 0x5f, 0x0f, 0x3c, 0xf5, - 0x00, 0x0b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0xf0, 0x11, 0x2e, - 0x00, 0x00, 0x00, 0x00, 0xda, 0xd8, 0x3f, 0xab, 0xfc, 0x05, 0xfd, 0xd5, - 0x06, 0x47, 0x08, 0x62, 0x00, 0x00, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x04, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, - 0x00, 0xac, 0x00, 0x6b, 0x00, 0x9b, 0x00, 0xb6, 0x00, 0xbf, 0x00, 0x64, - 0x00, 0x8d, 0x00, 0xae, 0x00, 0x62, 0x00, 0xac, 0x00, 0xc6, 0x00, 0x94, - 0x00, 0x8f, 0x00, 0x6a, 0x00, 0xbf, 0x00, 0x5e, 0x00, 0xb5, 0x00, 0x76, - 0x00, 0x4c, 0x00, 0x8b, 0x00, 0x47, 0x00, 0x49, 0x00, 0x57, 0x00, 0x3d, - 0x00, 0x72, 0x00, 0x9c, 0x00, 0xaf, 0x00, 0x8f, 0x00, 0x8b, 0x00, 0x87, - 0x00, 0x98, 0x00, 0x8c, 0x00, 0xae, 0x00, 0xcb, 0x00, 0xd3, 0x00, 0xb0, - 0x00, 0xcb, 0x00, 0x5d, 0x00, 0xae, 0x00, 0x7a, 0x00, 0xad, 0x00, 0x8c, - 0x01, 0x49, 0x00, 0xaf, 0x00, 0x8e, 0x00, 0xb4, 0x00, 0x62, 0x00, 0x30, - 0x00, 0x6e, 0x00, 0x44, 0x00, 0xa0, 0x00, 0x91, 0x00, 0xd0, 0x00, 0x55, - 0x00, 0x5e, 0x00, 0x4b, 0x00, 0xbb, 0x00, 0x8d, 0x00, 0x70, 0x00, 0xb1, - 0x00, 0x95, 0x01, 0x82, 0x01, 0x3c, 0x01, 0x43, 0x01, 0x1c, 0x01, 0x10, - 0x00, 0x24, 0x00, 0x30, 0x00, 0x26, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x4f, - 0x00, 0x2e, 0x00, 0x49, 0x00, 0xa8, 0x00, 0xad, 0x00, 0xba, 0x00, 0xa9, - 0x00, 0xb1, 0x00, 0xa2, 0x00, 0x93, 0x00, 0x71, 0x00, 0x21, 0x00, 0xa0, - 0x00, 0x11, 0x00, 0x69, 0x00, 0x7f, 0x00, 0x67, 0x01, 0xe6, 0x01, 0xf2, - 0x00, 0xbf, 0x00, 0xcc, 0x01, 0x62, 0x01, 0xf0, 0x02, 0x22, 0x01, 0xe6, - 0x01, 0x09, 0x01, 0xf8, 0x01, 0x9a, 0x00, 0x9b, 0x00, 0xda, 0x00, 0x4a, - 0x00, 0x4f, 0x01, 0xee, 0x01, 0x62, 0x01, 0xec, 0x01, 0xcd, 0x01, 0xbc, - 0x01, 0x49, 0x01, 0x2d, 0x01, 0x2f, 0x01, 0xee, 0x01, 0x62, 0x01, 0x65, - 0x01, 0x40, 0x01, 0xaa, 0x01, 0x95, 0x01, 0x43, 0x01, 0x43, 0x01, 0x8c, - 0x01, 0x8c, 0x00, 0x77, 0x00, 0xa9, 0x00, 0x9c, 0x00, 0xb5, 0x00, 0x73, - 0x00, 0xad, 0x00, 0xa9, 0x00, 0x8d, 0x00, 0xaa, 0x00, 0xb2, 0x00, 0xbb, - 0x00, 0xc2, 0x00, 0xbd, 0x00, 0xfc, 0x00, 0xe7, 0x01, 0x2b, 0x00, 0x2c, - 0x00, 0x36, 0x02, 0x1c, 0x01, 0xff, 0x00, 0x77, 0x00, 0x79, 0x00, 0x5a, - 0x00, 0x57, 0x00, 0x67, 0x01, 0x69, 0x00, 0xa0, 0x00, 0x3d, 0x00, 0x6b, - 0x00, 0x40, 0x00, 0x57, 0x00, 0xd3, 0x00, 0xe7, 0x00, 0x30, 0x00, 0x51, - 0x00, 0x51, 0x00, 0x51, 0x00, 0x51, 0x00, 0x51, 0x00, 0x51, 0x00, 0x51, - 0x00, 0x51, 0x00, 0x51, 0x00, 0x51, 0x00, 0x20, 0x00, 0x6b, 0x00, 0x6b, - 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x9b, 0xff, 0xc5, 0x00, 0xb6, 0x00, 0xb6, - 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb6, - 0x00, 0xaf, 0x00, 0xb6, 0xff, 0xc5, 0x00, 0x64, 0x00, 0x64, 0x00, 0x64, - 0x00, 0x18, 0x00, 0x8d, 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, - 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, 0x00, 0x62, - 0x00, 0xac, 0x00, 0xc6, 0x00, 0xc6, 0x00, 0xc6, 0x00, 0xc6, 0x00, 0x3a, - 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x6a, 0x00, 0x6a, - 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x63, 0x00, 0x6a, 0x00, 0x6a, - 0x00, 0x47, 0x00, 0x47, 0x00, 0x6a, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb5, - 0x00, 0x76, 0x00, 0x76, 0x00, 0x76, 0x00, 0x76, 0x00, 0x4c, 0x00, 0x4c, - 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, - 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x8b, 0x00, 0x49, - 0x00, 0x49, 0x00, 0x49, 0x00, 0x49, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x3d, - 0x00, 0x3d, 0x00, 0x72, 0x00, 0x72, 0x00, 0x72, 0x00, 0x9c, 0x00, 0x9c, - 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, - 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x2b, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, - 0x00, 0x8f, 0x00, 0x64, 0x00, 0x7c, 0x00, 0x87, 0x00, 0x87, 0x00, 0x87, - 0x00, 0x87, 0x00, 0x87, 0x00, 0x87, 0x00, 0x87, 0x00, 0x87, 0x00, 0xb8, - 0x00, 0x87, 0x00, 0x8c, 0x00, 0x8c, 0x00, 0x8c, 0x00, 0x0b, 0xff, 0xe7, - 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, - 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xcb, 0x00, 0x99, - 0x00, 0xcb, 0x00, 0x85, 0x00, 0xcb, 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, - 0x00, 0xae, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, - 0x00, 0x77, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, - 0x01, 0x49, 0x01, 0x14, 0x01, 0x10, 0x00, 0xaf, 0x00, 0xaf, 0x00, 0xaf, - 0x00, 0xaf, 0x00, 0x8e, 0x00, 0x7f, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, - 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, - 0x00, 0xb4, 0x00, 0xb4, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, - 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0x44, 0x00, 0xa0, 0x00, 0xa0, - 0x00, 0xa0, 0x01, 0x9f, 0x01, 0x9a, 0x00, 0xc1, 0x00, 0x8a, 0x01, 0x01, - 0x01, 0x3b, 0x01, 0xf2, 0x01, 0x1f, 0x01, 0x9a, 0x00, 0xf6, 0x01, 0x30, - 0xfd, 0x27, 0x01, 0xcd, 0x01, 0x8e, 0x01, 0x2e, 0x00, 0x00, 0x00, 0xd4, - 0x00, 0xbc, 0x00, 0xf1, 0x00, 0xcb, 0x00, 0x80, 0x00, 0x50, 0x01, 0xc8, - 0x00, 0xb0, 0x01, 0xad, 0xfc, 0xca, 0xfd, 0x68, 0xfc, 0x88, 0xfd, 0x59, - 0xfc, 0x05, 0x02, 0x29, 0x01, 0x13, 0x02, 0x30, 0x00, 0xb5, 0x00, 0x2e, - 0x00, 0x6a, 0x00, 0x36, 0x00, 0x91, 0x00, 0xa2, 0x00, 0x70, 0x00, 0x45, - 0x00, 0x65, 0x00, 0x61, 0x00, 0x81, 0x00, 0xae, 0x00, 0x47, 0x00, 0x78, - 0x00, 0x8b, 0x00, 0x75, 0x00, 0xa4, 0x00, 0xb9, 0x00, 0xb8, 0x00, 0x39, - 0x00, 0xaf, 0x00, 0x59, 0x00, 0xa5, 0x00, 0x78, 0x00, 0x6d, 0x00, 0xad, - 0x00, 0x9e, 0x00, 0x6e, 0x00, 0x61, 0x00, 0x4f, 0x00, 0x98, 0x00, 0x36, - 0x00, 0x2e, 0x00, 0x2a, 0x00, 0x81, 0x00, 0x1e, 0x00, 0x83, 0x00, 0x43, - 0x00, 0xa2, 0x00, 0xa2, 0x00, 0x46, 0x00, 0x1d, 0x00, 0x59, 0x00, 0xa2, - 0x00, 0x2f, 0x00, 0x2b, 0x00, 0xa6, 0x00, 0xab, 0x00, 0x7d, 0x00, 0x7d, - 0x00, 0x32, 0x00, 0x90, 0x00, 0xa8, 0x00, 0x72, 0x00, 0x77, 0x00, 0x41, - 0x00, 0x81, 0x00, 0xa4, 0x00, 0xb7, 0x00, 0x36, 0x00, 0x11, 0x00, 0x87, - 0x00, 0xa5, 0x00, 0xa4, 0x00, 0x37, 0x00, 0x89, 0x00, 0xa5, 0x00, 0xa5, - 0x00, 0x68, 0x00, 0x7a, 0x00, 0xaa, 0x00, 0x8d, 0x00, 0x81, 0x00, 0x76, - 0x00, 0x39, 0x00, 0x90, 0x00, 0xa5, 0x00, 0x81, 0x00, 0x71, 0x00, 0x4f, - 0xff, 0xe9, 0x00, 0x8f, 0x00, 0x26, 0x00, 0x82, 0x00, 0x1c, 0x00, 0xa5, - 0x00, 0x6b, 0x00, 0x5f, 0x00, 0x1c, 0x00, 0x7d, 0x00, 0x9b, 0x00, 0x27, - 0x00, 0x57, 0x00, 0x71, 0x00, 0x70, 0x00, 0x55, 0x00, 0x69, 0x00, 0x50, - 0x00, 0x51, 0x00, 0xca, 0x00, 0xde, 0x00, 0x63, 0x00, 0x5d, 0x00, 0x1a, - 0x00, 0x51, 0x00, 0x45, 0x00, 0x37, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x4d, - 0x00, 0x67, 0x00, 0x71, 0x00, 0x5f, 0x00, 0x97, 0x00, 0xbf, 0x00, 0x76, - 0x00, 0xd1, 0x00, 0xfc, 0x01, 0xc3, 0x02, 0x3c, 0xfe, 0xab, 0xfe, 0xb4, - 0x00, 0xbf, 0x00, 0xad, 0x00, 0xb6, 0x00, 0xb6, 0x00, 0xb9, 0x00, 0xb8, - 0x00, 0xae, 0x00, 0xa3, 0x00, 0x2d, 0x00, 0x38, 0x00, 0x72, 0x00, 0x6e, - 0x00, 0x6d, 0x00, 0x74, 0x00, 0x68, 0x00, 0x5c, 0x00, 0x39, 0x00, 0x34, - 0x00, 0xab, 0x00, 0x92, 0x00, 0xe3, 0x00, 0x26, 0x00, 0x26, 0x00, 0xc8, - 0x00, 0xb4, 0x00, 0xb6, 0x00, 0xb3, 0x00, 0x5a, 0x00, 0x94, 0x00, 0x89, - 0x00, 0x42, 0x00, 0x74, 0x00, 0x61, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x37, - 0x00, 0x50, 0x00, 0xb3, 0x00, 0xd0, 0x00, 0x14, 0x00, 0x2f, 0x00, 0x6f, - 0x00, 0x75, 0x00, 0x8e, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x6c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xa6, 0x01, 0xcf, 0x01, 0x5c, 0x01, 0x0f, 0x01, 0x4b, 0x00, 0x7f, - 0x00, 0x49, 0x00, 0xdd, 0x00, 0x79, 0x00, 0x99, 0x00, 0x50, 0x00, 0x33, - 0x00, 0x24, 0x00, 0x41, 0x00, 0x7e, 0x00, 0xa7, 0x00, 0x33, 0x00, 0x39, - 0x00, 0x35, 0x00, 0xf8, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x0f, - 0x01, 0x11, 0x00, 0xfc, 0x00, 0x10, 0x01, 0x0b, 0x01, 0x3e, 0x01, 0xf9, - 0x00, 0x36, 0x00, 0xd0, 0x00, 0x6e, 0x00, 0xb7, 0x00, 0xc8, 0x00, 0xe7, - 0x00, 0x7c, 0x00, 0x9b, 0x00, 0xd9, 0x00, 0x96, 0x00, 0xb4, 0x00, 0xd1, - 0x00, 0x9b, 0x00, 0xc2, 0x00, 0x82, 0x00, 0x5e, 0x00, 0x90, 0x00, 0x8a, - 0x00, 0x5d, 0x00, 0xb5, 0x00, 0x56, 0x00, 0x2f, 0x00, 0x60, 0x00, 0x4d, - 0x00, 0xb9, 0x01, 0x52, 0x01, 0x42, 0x01, 0x35, 0x01, 0xd1, 0x01, 0xf5, - 0x01, 0x74, 0x02, 0x06, 0x01, 0x60, 0x00, 0xcc, 0x00, 0xa9, 0x00, 0xd2, - 0x00, 0x00, 0x00, 0xda, 0x00, 0x6b, 0x00, 0x8f, 0x00, 0x64, 0x00, 0x8c, - 0xff, 0xba, 0x00, 0x76, 0x00, 0xaf, 0x00, 0x4c, 0x00, 0x8e, 0x00, 0x4c, - 0x00, 0x5d, 0x00, 0x8e, 0xff, 0xe7, 0xff, 0xe7, 0x00, 0x5d, 0x00, 0x36, - 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, - 0x00, 0x6e, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xd9, - 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xc2, 0x00, 0x82, 0x00, 0x82, - 0x00, 0x82, 0x00, 0x82, 0x00, 0x82, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb5, - 0x00, 0xb5, 0x00, 0x4d, 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x6e, - 0x00, 0x6e, 0x00, 0x6e, 0x00, 0xb7, 0x00, 0xc8, 0x00, 0xc8, 0x00, 0xc8, - 0x00, 0xc8, 0x00, 0xc8, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x9b, - 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0xd9, 0x00, 0x96, - 0x00, 0xb4, 0x00, 0xb6, 0x00, 0xd1, 0x00, 0xd1, 0x00, 0xd1, 0x00, 0xc2, - 0x00, 0xc2, 0x00, 0xc2, 0x00, 0x82, 0x00, 0x82, 0x00, 0x82, 0x00, 0x90, - 0x00, 0x90, 0x00, 0x90, 0x00, 0x8a, 0x00, 0x8a, 0x00, 0x8a, 0x00, 0x8a, - 0x00, 0x5d, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb5, 0x00, 0xb5, - 0x00, 0xb5, 0x00, 0x2f, 0x00, 0x4d, 0x00, 0x4d, 0x00, 0xb9, 0x00, 0xb9, - 0x00, 0xb9, 0x00, 0x51, 0xff, 0xdd, 0xff, 0xcb, 0xff, 0xba, 0xff, 0xff, - 0xff, 0x80, 0xff, 0xfb, 0x00, 0xb8, 0x00, 0x51, 0x00, 0xac, 0x00, 0xb6, - 0x00, 0x72, 0x00, 0x8d, 0x00, 0xae, 0x00, 0xac, 0x00, 0x94, 0x00, 0x8f, - 0x00, 0x6a, 0x00, 0xbf, 0x00, 0x4c, 0x00, 0x3d, 0x00, 0x57, 0x00, 0xae, - 0x00, 0x3d, 0x00, 0x81, 0x00, 0x8b, 0x00, 0xa4, 0x00, 0xb8, 0x00, 0x9e, - 0x00, 0xba, 0x00, 0x7a, 0x00, 0xbc, 0x00, 0x62, 0x00, 0x6e, 0x00, 0xb8, - 0x00, 0x9e, 0x00, 0x7a, 0x00, 0x9e, 0x00, 0x4f, 0x00, 0xb6, 0x00, 0xb5, - 0x00, 0x76, 0x00, 0xae, 0x00, 0xae, 0x00, 0x62, 0x00, 0xa9, 0x00, 0xac, - 0x00, 0x2b, 0x00, 0x51, 0x00, 0xac, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xa2, - 0x00, 0x94, 0x00, 0x8d, 0x00, 0x6a, 0x00, 0xa2, 0x00, 0xbf, 0x00, 0x6b, - 0x00, 0x4c, 0x00, 0x45, 0x00, 0x57, 0x00, 0x9c, 0x00, 0x87, 0x00, 0xa5, - 0x00, 0x7a, 0x00, 0xad, 0x00, 0x8f, 0x00, 0x44, 0x00, 0x6e, 0x00, 0x87, - 0x00, 0xb7, 0x00, 0xaf, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xd3, 0x00, 0xa4, - 0x00, 0x44, 0x00, 0x68, 0x00, 0xb0, 0x01, 0xcd, 0x00, 0x94, 0x00, 0x5d, - 0x00, 0x51, 0x00, 0x9c, 0xff, 0x89, 0x00, 0xb6, 0x00, 0xa2, 0x00, 0x87, - 0x00, 0xa5, 0x00, 0x65, 0x00, 0x61, 0x00, 0x1a, 0x00, 0x40, 0x00, 0x59, - 0x00, 0x87, 0x00, 0x6b, 0x00, 0x8f, 0x00, 0x3d, 0x00, 0x47, 0x00, 0xae, - 0x00, 0x1d, 0x00, 0x11, 0x00, 0xae, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, - 0x00, 0x9c, 0x00, 0x20, 0x00, 0x2b, 0x00, 0xb6, 0x00, 0x87, 0x00, 0x5a, - 0x00, 0xb1, 0x00, 0xb1, 0x00, 0x1d, 0x00, 0x11, 0x00, 0x59, 0x00, 0x87, - 0x00, 0xa2, 0x00, 0xa5, 0x00, 0xa2, 0x00, 0xa5, 0x00, 0x6a, 0x00, 0x7a, - 0x00, 0x63, 0x00, 0x5d, 0x00, 0x63, 0x00, 0x5d, 0x00, 0x72, 0x00, 0x81, - 0x00, 0x2b, 0x00, 0x44, 0x00, 0x2b, 0x00, 0x44, 0x00, 0x2b, 0x00, 0x44, - 0x00, 0xab, 0x00, 0x8d, 0x00, 0x90, 0x00, 0x90, 0x00, 0x57, 0x00, 0x6e, - 0x00, 0x8b, 0x00, 0x2f, 0x00, 0x37, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, - 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0xff, 0xfc, 0xff, 0xf8, 0x00, 0x51, - 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, - 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0x00, 0x51, - 0x00, 0x9c, 0x00, 0x51, 0x00, 0x9c, 0x00, 0xb6, 0x00, 0x87, 0x00, 0xb6, - 0x00, 0x87, 0x00, 0xb6, 0x00, 0x87, 0x00, 0xb6, 0x00, 0x87, 0xff, 0xf2, - 0xff, 0xf3, 0x00, 0xb6, 0x00, 0x87, 0x00, 0xb6, 0x00, 0x87, 0x00, 0xb6, - 0x00, 0x87, 0x00, 0xae, 0x00, 0xcb, 0x00, 0xae, 0x00, 0xcb, 0x00, 0x6a, - 0x00, 0x7a, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x00, - 0xff, 0xed, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x6a, 0x00, 0x7a, 0x00, 0x6a, - 0x00, 0x7a, 0x00, 0x63, 0x00, 0x77, 0x00, 0x63, 0x00, 0x77, 0x00, 0x63, - 0x00, 0x77, 0x00, 0x63, 0x00, 0x77, 0x00, 0x63, 0x00, 0x77, 0x00, 0x8b, - 0x00, 0xb4, 0x00, 0x8b, 0x00, 0xb4, 0x00, 0x8b, 0x00, 0xb4, 0x00, 0x8b, - 0x00, 0xb4, 0x00, 0x8b, 0x00, 0xb4, 0x00, 0x8b, 0x00, 0xb4, 0x00, 0x8b, - 0x00, 0xb4, 0x00, 0x3d, 0x00, 0x44, 0x00, 0x3d, 0x00, 0x44, 0x00, 0x3d, - 0x00, 0x44, 0x00, 0x7c, 0x00, 0xa9, 0x00, 0xa4, 0x00, 0x8d, 0x00, 0xa5, - 0x00, 0x4c, 0x00, 0x68, 0x00, 0x57, 0x00, 0x6e, 0x00, 0xab, 0x00, 0x8d, - 0x00, 0xab, 0x00, 0x8d, 0x00, 0xb5, 0x00, 0xb7, 0x00, 0x1d, 0x00, 0x11, - 0x00, 0x26, 0x00, 0x26, 0x00, 0xae, 0x00, 0x12, 0xff, 0xd4, 0xff, 0xd4, - 0xff, 0xfd, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xe9, 0x00, 0xa2, 0x00, 0xa5, - 0x00, 0x8d, 0x00, 0xa5, 0x00, 0x94, 0x00, 0x89, 0x00, 0x2f, 0x00, 0x37, - 0x00, 0x3d, 0x00, 0x47, 0x00, 0x57, 0x00, 0x6e, 0x00, 0x8b, 0x00, 0x4f, - 0x00, 0x01, 0x00, 0x00, 0x08, 0x62, 0xfd, 0xd5, 0x00, 0x00, 0x04, 0xcd, - 0xfc, 0x05, 0xfe, 0x86, 0x06, 0x47, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, - 0x00, 0x04, 0x04, 0xcd, 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x05, 0x9a, - 0x05, 0x33, 0x00, 0x00, 0x01, 0x1f, 0x05, 0x9a, 0x05, 0x33, 0x00, 0x00, - 0x03, 0xd1, 0x00, 0x66, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x02, 0xff, 0x10, 0x00, - 0x20, 0x5b, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x47, 0x4f, - 0x4f, 0x47, 0x00, 0x40, 0x00, 0x0d, 0xff, 0xfd, 0x08, 0x62, 0xfd, 0xd5, - 0x00, 0x00, 0x08, 0x62, 0x02, 0x2b, 0x20, 0x00, 0x01, 0x9f, 0x4f, 0x01, - 0x00, 0x00, 0x04, 0x3a, 0x05, 0xb0, 0x00, 0x00, 0x00, 0x20, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, - 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x04, 0x07, 0x4c, - 0x00, 0x00, 0x00, 0xc2, 0x00, 0x80, 0x00, 0x06, 0x00, 0x42, 0x00, 0x0d, - 0x00, 0x2f, 0x00, 0x39, 0x00, 0x40, 0x00, 0x5a, 0x00, 0x60, 0x00, 0x7a, - 0x00, 0x7e, 0x01, 0x7f, 0x01, 0x92, 0x01, 0xa1, 0x01, 0xb0, 0x01, 0xf0, - 0x01, 0xff, 0x02, 0x1b, 0x02, 0x37, 0x02, 0x59, 0x02, 0xbc, 0x02, 0xc7, - 0x02, 0xc9, 0x02, 0xdd, 0x02, 0xf3, 0x03, 0x01, 0x03, 0x03, 0x03, 0x09, - 0x03, 0x0f, 0x03, 0x23, 0x03, 0x8a, 0x03, 0x8c, 0x03, 0x92, 0x03, 0xa1, - 0x03, 0xb0, 0x03, 0xb9, 0x03, 0xc9, 0x03, 0xce, 0x03, 0xd2, 0x03, 0xd6, - 0x04, 0x25, 0x04, 0x2f, 0x04, 0x45, 0x04, 0x4f, 0x04, 0x62, 0x04, 0x6f, - 0x04, 0x77, 0x04, 0x86, 0x04, 0xce, 0x04, 0xd7, 0x04, 0xe1, 0x04, 0xf5, - 0x05, 0x01, 0x05, 0x10, 0x05, 0x13, 0x1e, 0x01, 0x1e, 0x3f, 0x1e, 0x85, - 0x1e, 0xf1, 0x1e, 0xf3, 0x1e, 0xf9, 0x1f, 0x4d, 0x20, 0x0b, 0x20, 0x15, - 0x20, 0x1e, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3a, - 0x20, 0x3c, 0x20, 0x44, 0x20, 0x74, 0x20, 0x7f, 0x20, 0xa4, 0x20, 0xa7, - 0x20, 0xac, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, - 0x21, 0x2e, 0x21, 0x5e, 0x22, 0x02, 0x22, 0x06, 0x22, 0x0f, 0x22, 0x12, - 0x22, 0x15, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, - 0x22, 0x65, 0x25, 0xca, 0xf6, 0xc3, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x0d, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3a, 0x00, 0x41, - 0x00, 0x5b, 0x00, 0x61, 0x00, 0x7b, 0x00, 0xa0, 0x01, 0x92, 0x01, 0xa0, - 0x01, 0xaf, 0x01, 0xf0, 0x01, 0xfa, 0x02, 0x18, 0x02, 0x37, 0x02, 0x59, - 0x02, 0xbc, 0x02, 0xc6, 0x02, 0xc9, 0x02, 0xd8, 0x02, 0xf3, 0x03, 0x00, - 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, 0x03, 0x23, 0x03, 0x84, 0x03, 0x8c, - 0x03, 0x8e, 0x03, 0x93, 0x03, 0xa3, 0x03, 0xb1, 0x03, 0xba, 0x03, 0xca, - 0x03, 0xd1, 0x03, 0xd6, 0x04, 0x00, 0x04, 0x26, 0x04, 0x30, 0x04, 0x46, - 0x04, 0x50, 0x04, 0x63, 0x04, 0x70, 0x04, 0x78, 0x04, 0x88, 0x04, 0xcf, - 0x04, 0xd8, 0x04, 0xe2, 0x04, 0xf6, 0x05, 0x02, 0x05, 0x11, 0x1e, 0x00, - 0x1e, 0x3e, 0x1e, 0x80, 0x1e, 0xa0, 0x1e, 0xf2, 0x1e, 0xf4, 0x1f, 0x4d, - 0x20, 0x00, 0x20, 0x13, 0x20, 0x17, 0x20, 0x20, 0x20, 0x25, 0x20, 0x30, - 0x20, 0x32, 0x20, 0x39, 0x20, 0x3c, 0x20, 0x44, 0x20, 0x74, 0x20, 0x7f, - 0x20, 0xa3, 0x20, 0xa7, 0x20, 0xab, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, - 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5b, 0x22, 0x02, 0x22, 0x06, - 0x22, 0x0f, 0x22, 0x11, 0x22, 0x15, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, - 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0x25, 0xca, 0xf6, 0xc3, 0xfe, 0xff, - 0xff, 0xfc, 0xff, 0xff, 0x01, 0x5c, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, - 0xff, 0xc1, 0x00, 0x00, 0xff, 0xbb, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc4, - 0x00, 0x00, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x00, 0x62, 0xff, 0x3a, - 0xfd, 0xf8, 0x00, 0x68, 0x00, 0x00, 0xfe, 0x95, 0x00, 0x00, 0xfe, 0x7f, - 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x6d, 0xfe, 0x68, 0xfe, 0x42, 0x00, 0x00, - 0xff, 0x4c, 0xff, 0x4b, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xd4, 0x00, 0x00, - 0xff, 0x2c, 0xfd, 0xc8, 0xfd, 0xc5, 0x00, 0x00, 0xfd, 0x83, 0x00, 0x00, - 0xfd, 0x7b, 0x00, 0x00, 0xfd, 0x70, 0x00, 0x00, 0xfd, 0x6c, 0x00, 0x00, - 0xfe, 0x6c, 0x00, 0x00, 0xfe, 0x69, 0x00, 0x00, 0xfd, 0x14, 0x00, 0x00, - 0xe5, 0x27, 0xe4, 0xe7, 0x00, 0x00, 0xe4, 0xc6, 0x00, 0x00, 0xe4, 0xc4, - 0xe3, 0xdc, 0xe2, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xe0, 0x5d, 0xe0, 0x40, 0xe0, 0x41, 0xe2, 0xe6, 0xe0, 0x47, 0xe1, 0xc0, - 0xe1, 0xb6, 0xdf, 0xb4, 0xdf, 0xb2, 0x00, 0x00, 0xe1, 0x32, 0xe1, 0x25, - 0xe1, 0x23, 0xdf, 0x72, 0xe0, 0x5e, 0xe1, 0x0c, 0xe0, 0xe0, 0xe0, 0x3d, - 0xdf, 0x76, 0xe0, 0x31, 0x00, 0x00, 0xde, 0x74, 0xe0, 0x28, 0xe0, 0x25, - 0xe0, 0x19, 0xde, 0x3b, 0xde, 0x22, 0xde, 0x22, 0xdc, 0x7b, 0x0a, 0xa5, - 0x03, 0x47, 0x02, 0x4b, 0x00, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, - 0x00, 0xdc, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0xee, 0x00, 0xf4, - 0x00, 0x00, 0x02, 0xb0, 0x02, 0xb2, 0x00, 0x00, 0x02, 0xb2, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xb4, 0x00, 0x00, 0x02, 0xb4, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x02, 0xba, 0x02, 0xd6, 0x00, 0x00, - 0x02, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, - 0x03, 0x4e, 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, 0x03, 0x98, 0x00, 0x00, - 0x03, 0xa4, 0x00, 0x00, 0x04, 0x2e, 0x00, 0x00, 0x04, 0x3e, 0x00, 0x00, - 0x04, 0x52, 0x00, 0x00, 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x04, 0x5a, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x56, 0x04, 0x5a, 0x04, 0x68, - 0x04, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x5c, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x4a, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5b, - 0x00, 0x6b, 0x00, 0x97, 0x00, 0x52, 0x00, 0x8c, 0x00, 0x98, 0x00, 0x6a, - 0x00, 0x74, 0x00, 0x75, 0x00, 0x96, 0x00, 0x7c, 0x00, 0x5f, 0x00, 0x67, - 0x00, 0x60, 0x00, 0x89, 0x00, 0x61, 0x00, 0x62, 0x00, 0x84, 0x00, 0x81, - 0x00, 0x85, 0x00, 0x5d, 0x00, 0x99, 0x00, 0x76, 0x00, 0x8a, 0x00, 0x77, - 0x00, 0x9c, 0x00, 0x66, 0x01, 0x5a, 0x00, 0x78, 0x00, 0x8e, 0x00, 0x79, - 0x00, 0x9d, 0x02, 0x73, 0x00, 0x5c, 0x00, 0x53, 0x00, 0x54, 0x00, 0x5a, - 0x00, 0x55, 0x00, 0x8f, 0x00, 0x9a, 0x01, 0x61, 0x00, 0x92, 0x00, 0x43, - 0x01, 0x6a, 0x00, 0x88, 0x02, 0x74, 0x00, 0x93, 0x01, 0x5e, 0x00, 0x95, - 0x00, 0x7e, 0x00, 0x41, 0x00, 0x42, 0x01, 0x5b, 0x01, 0x6b, 0x00, 0x9b, - 0x00, 0x64, 0x01, 0x66, 0x00, 0x40, 0x00, 0x44, 0x01, 0x6c, 0x00, 0x46, - 0x00, 0x45, 0x00, 0x47, 0x00, 0x5e, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0xa0, - 0x00, 0xa7, 0x00, 0xa1, 0x00, 0xa5, 0x00, 0x48, 0x00, 0xab, 0x00, 0xb5, - 0x00, 0xaf, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xc4, 0x00, 0xbf, 0x00, 0xc1, - 0x00, 0xc2, 0x00, 0xb9, 0x00, 0xd2, 0x00, 0xd7, 0x00, 0xd3, 0x00, 0xd5, - 0x00, 0xdd, 0x00, 0xd6, 0x00, 0x7f, 0x00, 0xdb, 0x00, 0xeb, 0x00, 0xe7, - 0x00, 0xe9, 0x00, 0xea, 0x00, 0xf6, 0x00, 0x4d, 0x00, 0x50, 0x01, 0x01, - 0x00, 0xfd, 0x00, 0xff, 0x01, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x49, - 0x01, 0x0a, 0x01, 0x14, 0x01, 0x0e, 0x01, 0x11, 0x01, 0x12, 0x01, 0x21, - 0x01, 0x1d, 0x01, 0x1f, 0x01, 0x20, 0x00, 0x4c, 0x01, 0x2f, 0x01, 0x34, - 0x01, 0x30, 0x01, 0x32, 0x01, 0x3a, 0x01, 0x33, 0x00, 0x80, 0x01, 0x38, - 0x01, 0x48, 0x01, 0x44, 0x01, 0x46, 0x01, 0x47, 0x01, 0x53, 0x00, 0x4e, - 0x01, 0x55, 0x00, 0xa3, 0x01, 0x02, 0x00, 0x9f, 0x00, 0xfe, 0x00, 0xa4, - 0x01, 0x03, 0x00, 0xa9, 0x01, 0x08, 0x00, 0xac, 0x01, 0x0b, 0x02, 0x75, - 0x02, 0x76, 0x00, 0xaa, 0x01, 0x09, 0x00, 0xad, 0x01, 0x0c, 0x00, 0xae, - 0x01, 0x0d, 0x00, 0xb6, 0x01, 0x15, 0x00, 0xb0, 0x01, 0x0f, 0x00, 0xb4, - 0x01, 0x13, 0x00, 0xb8, 0x01, 0x17, 0x00, 0xb1, 0x01, 0x10, 0x00, 0xbb, - 0x01, 0x19, 0x00, 0xba, 0x01, 0x18, 0x02, 0x77, 0x02, 0x78, 0x00, 0xbc, - 0x01, 0x1a, 0x00, 0xbe, 0x01, 0x1c, 0x00, 0xbd, 0x01, 0x1b, 0x00, 0xc7, - 0x01, 0x24, 0x00, 0xc5, 0x01, 0x22, 0x00, 0xc0, 0x01, 0x1e, 0x00, 0xc6, - 0x01, 0x23, 0x00, 0xc3, 0x01, 0x6d, 0x01, 0x6e, 0x01, 0x6f, 0x00, 0xc8, - 0x01, 0x25, 0x00, 0xc9, 0x01, 0x26, 0x00, 0x4f, 0x00, 0xca, 0x01, 0x27, - 0x00, 0xcc, 0x01, 0x29, 0x00, 0xcb, 0x01, 0x28, 0x00, 0xcd, 0x01, 0x2a, - 0x00, 0xce, 0x01, 0x2b, 0x00, 0xcf, 0x01, 0x2c, 0x00, 0xd1, 0x01, 0x2e, - 0x00, 0xd0, 0x01, 0x2d, 0x02, 0x79, 0x00, 0xb7, 0x01, 0x16, 0x00, 0xda, - 0x01, 0x37, 0x00, 0xd4, 0x01, 0x31, 0x00, 0xd9, 0x01, 0x36, 0x00, 0x4a, - 0x00, 0x4b, 0x00, 0xde, 0x01, 0x3b, 0x00, 0xe0, 0x01, 0x3d, 0x00, 0xdf, - 0x01, 0x3c, 0x00, 0xe1, 0x01, 0x3e, 0x00, 0xe4, 0x01, 0x41, 0x00, 0xe3, - 0x01, 0x40, 0x00, 0xe2, 0x01, 0x3f, 0x02, 0x7e, 0x02, 0x80, 0x00, 0xe6, - 0x01, 0x43, 0x00, 0xe5, 0x01, 0x42, 0x00, 0xf1, 0x01, 0x4e, 0x00, 0xee, - 0x01, 0x4b, 0x00, 0xe8, 0x01, 0x45, 0x00, 0xf0, 0x01, 0x4d, 0x00, 0xed, - 0x01, 0x4a, 0x00, 0xef, 0x01, 0x4c, 0x00, 0xf3, 0x01, 0x50, 0x00, 0xf7, - 0x01, 0x54, 0x00, 0xf8, 0x00, 0xfa, 0x01, 0x57, 0x00, 0xfc, 0x01, 0x59, - 0x00, 0xfb, 0x01, 0x58, 0x01, 0x70, 0x00, 0xd8, 0x01, 0x35, 0x00, 0xec, - 0x01, 0x49, 0x00, 0xa6, 0x01, 0x05, 0x00, 0xa8, 0x01, 0x07, 0x00, 0xdc, - 0x01, 0x39, 0x01, 0x5c, 0x01, 0x64, 0x01, 0x5f, 0x01, 0x60, 0x01, 0x62, - 0x01, 0x67, 0x01, 0x5d, 0x01, 0x63, 0x01, 0x78, 0x01, 0x79, 0x02, 0xd4, - 0x01, 0x7a, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7, 0x01, 0x7b, 0x01, 0x7c, - 0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x01, 0x7d, 0x02, 0xe1, 0x02, 0xe2, - 0x01, 0x7e, 0x02, 0xe3, 0x02, 0xe4, 0x01, 0x7f, 0x02, 0xe5, 0x01, 0x80, - 0x02, 0xe6, 0x01, 0x81, 0x02, 0xe7, 0x02, 0xe8, 0x01, 0x82, 0x02, 0xe9, - 0x01, 0x83, 0x01, 0x84, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, - 0x02, 0xee, 0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x01, 0x8e, 0x02, 0xf3, - 0x02, 0xf4, 0x01, 0x8f, 0x02, 0xf2, 0x01, 0x90, 0x01, 0x91, 0x01, 0x92, - 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x02, 0xf5, 0x01, 0x97, - 0x01, 0x98, 0x03, 0x2a, 0x02, 0xfb, 0x01, 0x9c, 0x02, 0xfc, 0x01, 0x9d, - 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00, 0x01, 0x9e, 0x01, 0x9f, - 0x01, 0xa0, 0x03, 0x02, 0x03, 0x2b, 0x03, 0x03, 0x01, 0xa1, 0x03, 0x04, - 0x01, 0xa2, 0x03, 0x05, 0x03, 0x06, 0x01, 0xa3, 0x03, 0x07, 0x01, 0xa4, - 0x01, 0xa5, 0x01, 0xa6, 0x03, 0x08, 0x03, 0x01, 0x01, 0xa7, 0x03, 0x09, - 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c, 0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, - 0x01, 0xa8, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x01, 0xb3, 0x01, 0xb4, - 0x01, 0xb5, 0x01, 0xb6, 0x03, 0x13, 0x01, 0xb7, 0x01, 0xb8, 0x01, 0xb9, - 0x03, 0x14, 0x01, 0xba, 0x01, 0xbb, 0x01, 0xbc, 0x01, 0xbd, 0x03, 0x15, - 0x01, 0xbe, 0x03, 0x16, 0x03, 0x17, 0x01, 0xbf, 0x03, 0x18, 0x01, 0xc0, - 0x03, 0x19, 0x03, 0x2c, 0x03, 0x1a, 0x01, 0xcb, 0x03, 0x1b, 0x01, 0xcc, - 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e, 0x03, 0x1f, 0x01, 0xcd, 0x01, 0xce, - 0x01, 0xcf, 0x03, 0x20, 0x03, 0x2d, 0x03, 0x21, 0x01, 0xd0, 0x01, 0xd1, - 0x01, 0xd2, 0x03, 0xd4, 0x03, 0x2e, 0x03, 0x2f, 0x01, 0xe0, 0x01, 0xe1, - 0x01, 0xe2, 0x01, 0xe3, 0x03, 0x30, 0x03, 0x31, 0x01, 0xf3, 0x01, 0xf4, - 0x03, 0xd9, 0x03, 0xda, 0x03, 0xd3, 0x03, 0xd2, 0x01, 0xf5, 0x01, 0xf6, - 0x01, 0xf7, 0x01, 0xf8, 0x03, 0xd5, 0x03, 0xd6, 0x01, 0xf9, 0x01, 0xfa, - 0x03, 0xcd, 0x03, 0xce, 0x03, 0x32, 0x03, 0x33, 0x03, 0xbf, 0x03, 0xc0, - 0x01, 0xfb, 0x01, 0xfc, 0x03, 0xd7, 0x03, 0xd8, 0x01, 0xfd, 0x01, 0xfe, - 0x03, 0xc1, 0x03, 0xc2, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, - 0x02, 0x03, 0x02, 0x04, 0x03, 0x34, 0x03, 0x35, 0x03, 0xc3, 0x03, 0xc4, - 0x03, 0x36, 0x03, 0x37, 0x03, 0xe1, 0x03, 0xe2, 0x03, 0xc5, 0x03, 0xc6, - 0x02, 0x05, 0x02, 0x06, 0x03, 0xc7, 0x03, 0xc8, 0x02, 0x07, 0x02, 0x08, - 0x02, 0x09, 0x03, 0xd1, 0x02, 0x0a, 0x02, 0x0b, 0x03, 0xcf, 0x03, 0xd0, - 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x02, 0x0c, 0x02, 0x0d, 0x03, 0xdf, - 0x03, 0xe0, 0x02, 0x0e, 0x02, 0x0f, 0x03, 0xdb, 0x03, 0xdc, 0x03, 0xc9, - 0x03, 0xca, 0x03, 0xdd, 0x03, 0xde, 0x02, 0x10, 0x03, 0x45, 0x03, 0x44, - 0x03, 0x46, 0x03, 0x47, 0x03, 0x48, 0x03, 0x49, 0x03, 0x4a, 0x02, 0x11, - 0x02, 0x12, 0x03, 0xcb, 0x03, 0xcc, 0x03, 0x5f, 0x03, 0x60, 0x02, 0x13, - 0x02, 0x14, 0x03, 0x61, 0x03, 0x62, 0x03, 0xe3, 0x03, 0xe4, 0x02, 0x15, - 0x03, 0x63, 0x03, 0xe5, 0x03, 0x64, 0x03, 0x65, 0x00, 0xf5, 0x01, 0x52, - 0x00, 0xf2, 0x01, 0x4f, 0x00, 0xf4, 0x01, 0x51, 0x00, 0xf9, 0x01, 0x56, - 0x00, 0x68, 0x00, 0x69, 0x03, 0xe6, 0x02, 0x31, 0x00, 0x6c, 0x00, 0x6d, - 0x00, 0x6e, 0x02, 0x32, 0x00, 0x6f, 0x00, 0x70, 0x00, 0x71, 0x00, 0x90, - 0x00, 0x91, 0x00, 0x65, 0x02, 0x33, 0x00, 0x63, 0x03, 0xbe, 0x02, 0x36, - 0x02, 0x41, 0x00, 0x7d, 0xb8, 0x01, 0xff, 0x85, 0xb0, 0x04, 0x8d, 0x00, - 0x00, 0x00, 0x00, 0x11, 0x00, 0xd2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x01, 0x00, 0x16, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x02, 0x00, 0x0e, 0x00, 0xca, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x03, 0x00, 0x3a, 0x00, 0xd8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x04, 0x00, 0x26, 0x01, 0x12, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x05, 0x00, 0x1a, 0x01, 0x38, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x06, 0x00, 0x24, 0x01, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x07, 0x00, 0x4a, 0x01, 0x76, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x09, 0x00, 0x0c, 0x01, 0xc0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0b, 0x00, 0x14, 0x01, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0c, 0x00, 0x26, 0x01, 0xe0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0d, 0x00, 0x5c, 0x02, 0x06, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x00, 0x0e, 0x00, 0x54, 0x02, 0x62, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x01, 0x00, 0x00, 0x0c, 0x02, 0xb6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x01, 0x0b, 0x00, 0x0c, 0x02, 0xc2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x01, 0x0e, 0x00, 0x0e, 0x00, 0xca, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, - 0x01, 0x11, 0x00, 0x0c, 0x02, 0xce, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x70, - 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, - 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x35, 0x00, 0x20, - 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x52, 0x00, 0x6f, - 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x50, 0x00, 0x72, - 0x00, 0x6f, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, - 0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6f, 0x00, 0x72, - 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, - 0x00, 0x70, 0x00, 0x73, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x67, - 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2e, - 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, 0x00, 0x67, 0x00, 0x6f, - 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6f, - 0x00, 0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2f, 0x00, 0x72, 0x00, 0x6f, - 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x6f, - 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x29, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, - 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x6f, - 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, - 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x33, 0x00, 0x2e, 0x00, 0x30, - 0x00, 0x30, 0x00, 0x30, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x4f, 0x00, 0x4f, - 0x00, 0x47, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, - 0x00, 0x74, 0x00, 0x6f, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, - 0x00, 0x2d, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6c, - 0x00, 0x61, 0x00, 0x72, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, - 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, - 0x00, 0x6f, 0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, - 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x33, - 0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x52, 0x00, 0x6f, - 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x4d, 0x00, 0x6f, - 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x2d, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, - 0x00, 0x75, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x52, 0x00, 0x6f, - 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, - 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, - 0x00, 0x64, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6b, - 0x00, 0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, - 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x47, - 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x47, - 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, - 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x43, 0x00, 0x68, 0x00, 0x72, - 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x61, 0x00, 0x6e, - 0x00, 0x20, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x74, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x4c, 0x00, 0x69, - 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, - 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x41, - 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, - 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x32, - 0x00, 0x2e, 0x00, 0x30, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, - 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, - 0x00, 0x2e, 0x00, 0x61, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, - 0x00, 0x65, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f, - 0x00, 0x6c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x65, 0x00, 0x73, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x43, - 0x00, 0x45, 0x00, 0x4e, 0x00, 0x53, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x32, - 0x00, 0x2e, 0x00, 0x30, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67, - 0x00, 0x68, 0x00, 0x74, 0x00, 0x49, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6c, - 0x00, 0x69, 0x00, 0x63, 0x00, 0x4e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6d, - 0x00, 0x61, 0x00, 0x6c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xff, 0x6a, 0x00, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x03, 0xe7, 0x00, 0x00, 0x00, 0x03, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, - 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2a, 0x00, 0x2b, 0x00, 0x2c, - 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, - 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, - 0x00, 0x39, 0x00, 0x3a, 0x00, 0x3b, 0x00, 0x3c, 0x00, 0x3d, 0x00, 0x44, - 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a, - 0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50, - 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, - 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x5b, 0x00, 0x5c, - 0x00, 0x5d, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, - 0x00, 0x18, 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0xf1, - 0x00, 0xf2, 0x00, 0xf3, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0xf4, 0x00, 0xf5, - 0x00, 0xf6, 0x00, 0x90, 0x00, 0xa0, 0x00, 0xb0, 0x00, 0xb1, 0x00, 0xea, - 0x00, 0xed, 0x00, 0xee, 0x01, 0x02, 0x00, 0x89, 0x01, 0x03, 0x00, 0x07, - 0x00, 0x84, 0x00, 0x85, 0x00, 0x96, 0x00, 0xa6, 0x00, 0xf7, 0x01, 0x04, - 0x01, 0x05, 0x00, 0xbd, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x22, 0x00, 0xa2, - 0x00, 0x0f, 0x00, 0x11, 0x00, 0x1d, 0x00, 0x1e, 0x00, 0xab, 0x00, 0xc3, - 0x00, 0x87, 0x00, 0x42, 0x00, 0x10, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0x0a, - 0x00, 0x05, 0x00, 0xb6, 0x00, 0xb7, 0x00, 0xc4, 0x00, 0xb4, 0x00, 0xb5, - 0x00, 0xc5, 0x01, 0x06, 0x01, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x3e, - 0x00, 0x40, 0x00, 0x5e, 0x00, 0x60, 0x00, 0xbe, 0x00, 0xbf, 0x00, 0x0e, - 0x00, 0xef, 0x00, 0x93, 0x00, 0xf0, 0x00, 0xb8, 0x00, 0x20, 0x00, 0x8f, - 0x00, 0xa7, 0x00, 0x1f, 0x00, 0x21, 0x00, 0x94, 0x00, 0x95, 0x00, 0xa4, - 0x00, 0x12, 0x00, 0x3f, 0x00, 0xbc, 0x00, 0x08, 0x00, 0xc6, 0x00, 0x5f, - 0x00, 0xe8, 0x00, 0x82, 0x00, 0xc2, 0x00, 0x8b, 0x00, 0x8a, 0x00, 0x8c, - 0x00, 0x83, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x09, 0x00, 0x23, 0x00, 0x86, - 0x00, 0x88, 0x00, 0x41, 0x00, 0x61, 0x00, 0xc9, 0x01, 0x08, 0x00, 0xc7, - 0x00, 0x62, 0x00, 0xad, 0x01, 0x09, 0x01, 0x0a, 0x00, 0x63, 0x01, 0x0b, - 0x00, 0xae, 0x01, 0x0c, 0x00, 0xfd, 0x00, 0xff, 0x00, 0x64, 0x01, 0x0d, - 0x01, 0x0e, 0x01, 0x0f, 0x00, 0x65, 0x01, 0x10, 0x01, 0x11, 0x00, 0xc8, - 0x00, 0xca, 0x01, 0x12, 0x00, 0xcb, 0x01, 0x13, 0x01, 0x14, 0x01, 0x15, - 0x00, 0xe9, 0x00, 0xf8, 0x01, 0x16, 0x01, 0x17, 0x01, 0x18, 0x01, 0x19, - 0x00, 0xcc, 0x01, 0x1a, 0x00, 0xcd, 0x00, 0xce, 0x00, 0xfa, 0x00, 0xcf, - 0x01, 0x1b, 0x01, 0x1c, 0x01, 0x1d, 0x01, 0x1e, 0x01, 0x1f, 0x01, 0x20, - 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x00, 0xe2, 0x01, 0x24, 0x01, 0x25, - 0x01, 0x26, 0x00, 0x66, 0x00, 0xd0, 0x01, 0x27, 0x00, 0xd1, 0x00, 0x67, - 0x00, 0xd3, 0x01, 0x28, 0x01, 0x29, 0x01, 0x2a, 0x00, 0x91, 0x01, 0x2b, - 0x00, 0xaf, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x2e, 0x01, 0x2f, 0x00, 0xe4, - 0x00, 0xfb, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x00, 0xd4, 0x01, 0x33, - 0x00, 0xd5, 0x00, 0x68, 0x00, 0xd6, 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, - 0x01, 0x37, 0x01, 0x38, 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3b, 0x01, 0x3c, - 0x01, 0x3d, 0x00, 0xeb, 0x01, 0x3e, 0x00, 0xbb, 0x01, 0x3f, 0x01, 0x40, - 0x00, 0xe6, 0x01, 0x41, 0x00, 0x69, 0x01, 0x42, 0x00, 0x6b, 0x00, 0x6c, - 0x00, 0x6a, 0x01, 0x43, 0x01, 0x44, 0x00, 0x6e, 0x01, 0x45, 0x00, 0x6d, - 0x01, 0x46, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x6f, 0x01, 0x47, 0x01, 0x48, - 0x01, 0x01, 0x00, 0x70, 0x01, 0x49, 0x01, 0x4a, 0x00, 0x72, 0x00, 0x73, - 0x01, 0x4b, 0x00, 0x71, 0x01, 0x4c, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0xf9, - 0x01, 0x4f, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x00, 0x74, 0x01, 0x53, - 0x00, 0x76, 0x00, 0x77, 0x00, 0x75, 0x01, 0x54, 0x01, 0x55, 0x01, 0x56, - 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5a, 0x01, 0x5b, 0x01, 0x5c, - 0x00, 0xe3, 0x01, 0x5d, 0x01, 0x5e, 0x01, 0x5f, 0x00, 0x78, 0x00, 0x79, - 0x01, 0x60, 0x00, 0x7b, 0x00, 0x7c, 0x00, 0x7a, 0x01, 0x61, 0x01, 0x62, - 0x01, 0x63, 0x00, 0xa1, 0x01, 0x64, 0x00, 0x7d, 0x01, 0x65, 0x01, 0x66, - 0x01, 0x67, 0x01, 0x68, 0x00, 0xe5, 0x00, 0xfc, 0x01, 0x69, 0x01, 0x6a, - 0x01, 0x6b, 0x00, 0x7e, 0x01, 0x6c, 0x00, 0x80, 0x00, 0x81, 0x00, 0x7f, - 0x01, 0x6d, 0x01, 0x6e, 0x01, 0x6f, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, - 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x01, 0x76, 0x00, 0xec, 0x01, 0x77, - 0x00, 0xba, 0x01, 0x78, 0x01, 0x79, 0x00, 0xe7, 0x01, 0x7a, 0x00, 0x43, - 0x00, 0x8d, 0x00, 0xd8, 0x00, 0xd9, 0x00, 0xda, 0x00, 0xdb, 0x00, 0xdc, - 0x00, 0x8e, 0x00, 0xdd, 0x00, 0xdf, 0x00, 0xe1, 0x01, 0x7b, 0x00, 0xde, - 0x00, 0xe0, 0x01, 0x7c, 0x00, 0x02, 0x00, 0xa9, 0x00, 0x97, 0x00, 0xaa, - 0x00, 0xd7, 0x01, 0x7d, 0x01, 0x7e, 0x01, 0x7f, 0x01, 0x80, 0x01, 0x81, - 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, - 0x01, 0x88, 0x01, 0x89, 0x01, 0x8a, 0x00, 0xa8, 0x01, 0x8b, 0x01, 0x8c, - 0x01, 0x8d, 0x01, 0x8e, 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91, 0x00, 0x9f, - 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, - 0x01, 0x98, 0x01, 0x99, 0x01, 0x9a, 0x01, 0x9b, 0x01, 0x9c, 0x00, 0x9b, - 0x01, 0x9d, 0x01, 0x9e, 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, - 0x01, 0xa3, 0x01, 0xa4, 0x01, 0xa5, 0x01, 0xa6, 0x01, 0xa7, 0x01, 0xa8, - 0x01, 0xa9, 0x01, 0xaa, 0x01, 0xab, 0x01, 0xac, 0x01, 0xad, 0x01, 0xae, - 0x01, 0xaf, 0x01, 0xb0, 0x01, 0xb1, 0x01, 0xb2, 0x01, 0xb3, 0x01, 0xb4, - 0x01, 0xb5, 0x01, 0xb6, 0x01, 0xb7, 0x01, 0xb8, 0x01, 0xb9, 0x01, 0xba, - 0x01, 0xbb, 0x01, 0xbc, 0x01, 0xbd, 0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc0, - 0x01, 0xc1, 0x01, 0xc2, 0x01, 0xc3, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xc6, - 0x01, 0xc7, 0x01, 0xc8, 0x01, 0xc9, 0x01, 0xca, 0x01, 0xcb, 0x01, 0xcc, - 0x01, 0xcd, 0x01, 0xce, 0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, - 0x01, 0xd3, 0x01, 0xd4, 0x01, 0xd5, 0x01, 0xd6, 0x01, 0xd7, 0x01, 0xd8, - 0x01, 0xd9, 0x01, 0xda, 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, - 0x01, 0xdf, 0x01, 0xe0, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3, 0x01, 0xe4, - 0x01, 0xe5, 0x01, 0xe6, 0x01, 0xe7, 0x01, 0xe8, 0x01, 0xe9, 0x01, 0xea, - 0x01, 0xeb, 0x01, 0xec, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, - 0x01, 0xf1, 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6, - 0x01, 0xf7, 0x01, 0xf8, 0x01, 0xf9, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc, - 0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, - 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, - 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x0d, 0x02, 0x0e, - 0x02, 0x0f, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, - 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, - 0x02, 0x1b, 0x02, 0x1c, 0x02, 0x1d, 0x02, 0x1e, 0x02, 0x1f, 0x02, 0x20, - 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, - 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2a, 0x02, 0x2b, 0x02, 0x2c, - 0x02, 0x2d, 0x02, 0x2e, 0x02, 0x2f, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, - 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, - 0x02, 0x39, 0x02, 0x3a, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3d, 0x02, 0x3e, - 0x02, 0x3f, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, - 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, 0x02, 0x4a, - 0x00, 0x98, 0x00, 0x9a, 0x00, 0x99, 0x00, 0xa5, 0x00, 0x92, 0x00, 0x9c, - 0x00, 0xb9, 0x02, 0x4b, 0x02, 0x4c, 0x02, 0x4d, 0x02, 0x4e, 0x02, 0x4f, - 0x02, 0x50, 0x02, 0x51, 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, - 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, - 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, - 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, - 0x02, 0x68, 0x02, 0x69, 0x02, 0x6a, 0x02, 0x6b, 0x02, 0x6c, 0x02, 0x6d, - 0x02, 0x6e, 0x02, 0x6f, 0x02, 0x70, 0x02, 0x71, 0x02, 0x72, 0x02, 0x73, - 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77, 0x00, 0xac, 0x02, 0x78, - 0x02, 0x79, 0x02, 0x7a, 0x02, 0x7b, 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, - 0x02, 0x7f, 0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, - 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, - 0x02, 0x8b, 0x02, 0x8c, 0x02, 0x8d, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90, - 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, - 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c, - 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2, - 0x02, 0xa3, 0x02, 0xa4, 0x02, 0xa5, 0x02, 0xa6, 0x02, 0xa7, 0x02, 0xa8, - 0x02, 0xa9, 0x02, 0xaa, 0x02, 0xab, 0x02, 0xac, 0x02, 0xad, 0x02, 0xae, - 0x02, 0xaf, 0x02, 0xb0, 0x02, 0xb1, 0x02, 0xb2, 0x02, 0xb3, 0x02, 0xb4, - 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb7, 0x02, 0xb8, 0x02, 0xb9, 0x02, 0xba, - 0x02, 0xbb, 0x02, 0xbc, 0x02, 0xbd, 0x02, 0xbe, 0x02, 0xbf, 0x02, 0xc0, - 0x02, 0xc1, 0x02, 0xc2, 0x02, 0xc3, 0x02, 0xc4, 0x02, 0xc5, 0x02, 0xc6, - 0x02, 0xc7, 0x02, 0xc8, 0x02, 0xc9, 0x02, 0xca, 0x02, 0xcb, 0x02, 0xcc, - 0x02, 0xcd, 0x02, 0xce, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd2, - 0x02, 0xd3, 0x02, 0xd4, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7, 0x02, 0xd8, - 0x02, 0xd9, 0x02, 0xda, 0x02, 0xdb, 0x02, 0xdc, 0x02, 0xdd, 0x02, 0xde, - 0x02, 0xdf, 0x02, 0xe0, 0x02, 0xe1, 0x02, 0xe2, 0x02, 0xe3, 0x02, 0xe4, - 0x02, 0xe5, 0x02, 0xe6, 0x02, 0xe7, 0x02, 0xe8, 0x02, 0xe9, 0x02, 0xea, - 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, 0x02, 0xee, 0x02, 0xef, 0x02, 0xf0, - 0x02, 0xf1, 0x02, 0xf2, 0x02, 0xf3, 0x02, 0xf4, 0x02, 0xf5, 0x02, 0xf6, - 0x02, 0xf7, 0x02, 0xf8, 0x02, 0xf9, 0x02, 0xfa, 0x02, 0xfb, 0x02, 0xfc, - 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00, 0x03, 0x01, 0x03, 0x02, - 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, 0x03, 0x06, 0x03, 0x07, 0x03, 0x08, - 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c, 0x03, 0x0d, 0x03, 0x0e, - 0x03, 0x0f, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, - 0x03, 0x15, 0x03, 0x16, 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1a, - 0x03, 0x1b, 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e, 0x03, 0x1f, 0x03, 0x20, - 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, - 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2a, 0x03, 0x2b, 0x03, 0x2c, - 0x03, 0x2d, 0x03, 0x2e, 0x03, 0x2f, 0x03, 0x30, 0x03, 0x31, 0x03, 0x32, - 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, - 0x03, 0x39, 0x03, 0x3a, 0x03, 0x3b, 0x03, 0x3c, 0x03, 0x3d, 0x03, 0x3e, - 0x03, 0x3f, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, - 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48, 0x03, 0x49, 0x03, 0x4a, - 0x03, 0x4b, 0x03, 0x4c, 0x03, 0x4d, 0x03, 0x4e, 0x03, 0x4f, 0x03, 0x50, - 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, - 0x03, 0x57, 0x03, 0x58, 0x03, 0x59, 0x03, 0x5a, 0x03, 0x5b, 0x03, 0x5c, - 0x03, 0x5d, 0x03, 0x5e, 0x03, 0x5f, 0x03, 0x60, 0x03, 0x61, 0x03, 0x62, - 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, 0x03, 0x66, 0x03, 0x67, 0x03, 0x68, - 0x03, 0x69, 0x03, 0x6a, 0x03, 0x6b, 0x03, 0x6c, 0x03, 0x6d, 0x03, 0x6e, - 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x74, - 0x03, 0x75, 0x03, 0x76, 0x03, 0x77, 0x03, 0x78, 0x03, 0x79, 0x03, 0x7a, - 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, - 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84, 0x03, 0x85, 0x03, 0x86, - 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8a, 0x03, 0x8b, 0x03, 0x8c, - 0x03, 0x8d, 0x03, 0x8e, 0x03, 0x8f, 0x03, 0x90, 0x03, 0x91, 0x03, 0x92, - 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97, 0x03, 0x98, - 0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c, 0x03, 0x9d, 0x03, 0x9e, - 0x03, 0x9f, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4, - 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa, - 0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, - 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xb4, 0x03, 0xb5, 0x03, 0xb6, - 0x03, 0xb7, 0x03, 0xb8, 0x03, 0xb9, 0x03, 0xba, 0x03, 0xbb, 0x03, 0xbc, - 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf, 0x03, 0xc0, 0x03, 0xc1, 0x03, 0xc2, - 0x03, 0xc3, 0x03, 0xc4, 0x03, 0xc5, 0x03, 0xc6, 0x03, 0xc7, 0x03, 0xc8, - 0x03, 0xc9, 0x03, 0xca, 0x03, 0xcb, 0x03, 0xcc, 0x03, 0xcd, 0x03, 0xce, - 0x03, 0xcf, 0x03, 0xd0, 0x03, 0xd1, 0x03, 0xd2, 0x03, 0xd3, 0x03, 0xd4, - 0x03, 0xd5, 0x03, 0xd6, 0x03, 0xd7, 0x03, 0xd8, 0x03, 0xd9, 0x03, 0xda, - 0x03, 0xdb, 0x03, 0xdc, 0x03, 0xdd, 0x03, 0xde, 0x03, 0xdf, 0x03, 0xe0, - 0x03, 0xe1, 0x03, 0xe2, 0x03, 0xe3, 0x03, 0xe4, 0x03, 0xe5, 0x03, 0xe6, - 0x03, 0xe7, 0x03, 0xe8, 0x03, 0xe9, 0x03, 0xea, 0x0c, 0x6b, 0x67, 0x72, - 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x63, 0x05, 0x73, 0x63, - 0x68, 0x77, 0x61, 0x04, 0x6c, 0x69, 0x72, 0x61, 0x06, 0x70, 0x65, 0x73, - 0x65, 0x74, 0x61, 0x06, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x06, 0x73, - 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x07, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x41, 0x6f, 0x67, - 0x6f, 0x6e, 0x65, 0x6b, 0x0a, 0x41, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, - 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, - 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, - 0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61, - 0x74, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x45, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x0a, 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x07, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x03, 0x45, - 0x6e, 0x67, 0x07, 0x45, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0b, 0x47, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x47, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x04, - 0x48, 0x62, 0x61, 0x72, 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, - 0x66, 0x6c, 0x65, 0x78, 0x06, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, - 0x49, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x49, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x06, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x4a, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x4b, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, - 0x4c, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x0c, 0x4c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x04, 0x4c, 0x64, 0x6f, 0x74, 0x06, 0x4e, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x06, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x4e, 0x63, - 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x4f, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x4f, 0x68, 0x6f, 0x72, 0x6e, 0x0d, - 0x4f, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, - 0x74, 0x07, 0x4f, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x0b, 0x4f, 0x73, - 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x06, 0x52, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, - 0x52, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x06, 0x53, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x53, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x04, 0x54, 0x62, 0x61, 0x72, - 0x06, 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x55, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x05, 0x55, 0x68, 0x6f, 0x72, 0x6e, 0x0d, 0x55, 0x68, 0x75, - 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x55, - 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x55, 0x6f, 0x67, 0x6f, 0x6e, - 0x65, 0x6b, 0x05, 0x55, 0x72, 0x69, 0x6e, 0x67, 0x06, 0x55, 0x74, 0x69, - 0x6c, 0x64, 0x65, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x57, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x57, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, 0x67, 0x72, - 0x61, 0x76, 0x65, 0x0b, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x06, 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x5a, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x5a, 0x64, 0x6f, 0x74, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, - 0x61, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x61, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x0a, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x07, 0x61, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x63, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, 0x64, - 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x06, 0x65, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0a, 0x65, 0x64, 0x6f, 0x74, - 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72, - 0x6f, 0x6e, 0x03, 0x65, 0x6e, 0x67, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e, - 0x65, 0x6b, 0x0b, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, - 0x65, 0x78, 0x0c, 0x67, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, - 0x65, 0x6e, 0x74, 0x04, 0x68, 0x62, 0x61, 0x72, 0x0b, 0x68, 0x63, 0x69, - 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, 0x69, 0x62, 0x72, - 0x65, 0x76, 0x65, 0x07, 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, - 0x69, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x06, 0x69, 0x74, 0x69, 0x6c, - 0x64, 0x65, 0x0b, 0x6a, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, - 0x65, 0x78, 0x0c, 0x6b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, - 0x65, 0x6e, 0x74, 0x06, 0x6c, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6c, - 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x6c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, - 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x04, 0x6c, 0x64, 0x6f, 0x74, 0x06, - 0x6e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x0c, 0x6e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x06, 0x6f, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x6f, 0x68, - 0x6f, 0x72, 0x6e, 0x0d, 0x6f, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, - 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x6f, 0x6d, 0x61, 0x63, 0x72, 0x6f, - 0x6e, 0x0b, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, - 0x65, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x0c, 0x72, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, - 0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x04, - 0x74, 0x62, 0x61, 0x72, 0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, - 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e, - 0x0d, 0x75, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, - 0x75, 0x74, 0x07, 0x75, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75, - 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, - 0x06, 0x75, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x06, 0x77, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x0b, 0x77, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, - 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, - 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0b, 0x79, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, 0x79, 0x67, 0x72, 0x61, - 0x76, 0x65, 0x06, 0x7a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x7a, 0x64, - 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x08, 0x64, 0x6f, 0x74, - 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x0b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, - 0x63, 0x63, 0x65, 0x6e, 0x74, 0x02, 0x49, 0x4a, 0x02, 0x69, 0x6a, 0x05, - 0x6c, 0x6f, 0x6e, 0x67, 0x73, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x46, 0x33, 0x09, 0x67, 0x72, - 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x09, 0x61, 0x63, 0x75, 0x74, - 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x09, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, - 0x6f, 0x6d, 0x62, 0x04, 0x68, 0x6f, 0x6f, 0x6b, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x33, 0x30, 0x46, 0x05, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0d, 0x64, - 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6f, 0x6e, 0x6f, 0x73, - 0x09, 0x61, 0x6e, 0x6f, 0x74, 0x65, 0x6c, 0x65, 0x69, 0x61, 0x05, 0x47, - 0x61, 0x6d, 0x6d, 0x61, 0x05, 0x54, 0x68, 0x65, 0x74, 0x61, 0x06, 0x4c, - 0x61, 0x6d, 0x62, 0x64, 0x61, 0x02, 0x58, 0x69, 0x02, 0x50, 0x69, 0x05, - 0x53, 0x69, 0x67, 0x6d, 0x61, 0x03, 0x50, 0x68, 0x69, 0x03, 0x50, 0x73, - 0x69, 0x05, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x04, 0x62, 0x65, 0x74, 0x61, - 0x05, 0x67, 0x61, 0x6d, 0x6d, 0x61, 0x05, 0x64, 0x65, 0x6c, 0x74, 0x61, - 0x07, 0x65, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x04, 0x7a, 0x65, 0x74, - 0x61, 0x03, 0x65, 0x74, 0x61, 0x05, 0x74, 0x68, 0x65, 0x74, 0x61, 0x04, - 0x69, 0x6f, 0x74, 0x61, 0x06, 0x6c, 0x61, 0x6d, 0x62, 0x64, 0x61, 0x02, - 0x78, 0x69, 0x03, 0x72, 0x68, 0x6f, 0x06, 0x73, 0x69, 0x67, 0x6d, 0x61, - 0x31, 0x05, 0x73, 0x69, 0x67, 0x6d, 0x61, 0x03, 0x74, 0x61, 0x75, 0x07, - 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x03, 0x70, 0x68, 0x69, 0x03, - 0x70, 0x73, 0x69, 0x05, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x33, 0x44, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, - 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x31, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x42, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x44, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x31, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x44, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x35, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x35, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x44, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x44, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x33, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x45, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, - 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x31, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x39, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x39, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, - 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x31, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x41, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, - 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x43, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x45, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x46, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x42, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x45, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, - 0x30, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x33, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x42, 0x0d, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, - 0x64, 0x62, 0x6c, 0x0d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x72, 0x65, 0x76, - 0x65, 0x72, 0x73, 0x65, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x32, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x34, 0x09, 0x6e, 0x73, - 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x04, 0x45, 0x75, 0x72, 0x6f, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x31, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31, 0x36, - 0x09, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x09, 0x6f, - 0x6e, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0c, 0x74, 0x68, 0x72, - 0x65, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0b, 0x66, 0x69, - 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0c, 0x73, 0x65, - 0x76, 0x65, 0x6e, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x07, 0x75, - 0x6e, 0x69, 0x46, 0x45, 0x46, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, - 0x46, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46, 0x44, 0x13, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x74, 0x69, 0x6c, - 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x12, 0x63, 0x69, 0x72, 0x63, 0x75, - 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x68, 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, - 0x62, 0x13, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, - 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x13, 0x63, 0x69, - 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x61, 0x63, 0x75, 0x74, - 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x0e, 0x62, 0x72, 0x65, 0x76, 0x65, 0x67, - 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x11, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x72, 0x6f, 0x74, 0x61, - 0x74, 0x65, 0x06, 0x41, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x42, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x06, 0x43, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, - 0x44, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x45, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x06, 0x46, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x47, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x06, 0x48, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x49, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4a, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x06, 0x4b, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4c, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x06, 0x4d, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4e, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4f, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, - 0x51, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x52, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x06, 0x53, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x54, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x06, 0x55, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x56, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x57, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x06, 0x58, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x59, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x06, 0x5a, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0d, 0x62, 0x72, - 0x65, 0x76, 0x65, 0x68, 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, 0x62, 0x0e, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, - 0x6d, 0x62, 0x08, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x62, 0x61, 0x72, 0x09, - 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x09, 0x64, 0x61, - 0x73, 0x69, 0x61, 0x6f, 0x78, 0x69, 0x61, 0x0e, 0x62, 0x72, 0x65, 0x76, - 0x65, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x0b, 0x63, - 0x79, 0x72, 0x69, 0x6c, 0x6c, 0x69, 0x63, 0x74, 0x69, 0x63, 0x0c, 0x63, - 0x79, 0x72, 0x69, 0x6c, 0x6c, 0x69, 0x63, 0x68, 0x6f, 0x6f, 0x6b, 0x06, - 0x50, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x05, 0x4b, 0x2e, 0x61, 0x6c, 0x74, - 0x0f, 0x47, 0x65, 0x72, 0x6d, 0x61, 0x6e, 0x64, 0x62, 0x6c, 0x73, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x31, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32, 0x31, 0x0b, 0x6e, 0x61, 0x70, - 0x6f, 0x73, 0x74, 0x72, 0x6f, 0x70, 0x68, 0x65, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x32, 0x31, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x36, 0x32, - 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x36, 0x32, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x36, 0x33, 0x0b, 0x44, 0x63, - 0x72, 0x6f, 0x61, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x08, 0x45, 0x74, - 0x68, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x09, 0x54, 0x62, 0x61, 0x72, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x41, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x41, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x10, 0x41, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, - 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x41, 0x74, - 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x41, 0x64, - 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x0a, 0x41, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, - 0x41, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0d, 0x43, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x45, 0x67, 0x72, 0x61, 0x76, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x45, 0x63, 0x69, 0x72, 0x63, 0x75, - 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x45, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x49, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x10, 0x49, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, - 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x49, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4e, 0x74, - 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, 0x67, - 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x4f, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x4f, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0e, 0x4f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x55, 0x67, 0x72, 0x61, 0x76, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x55, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x55, 0x63, 0x69, 0x72, 0x63, 0x75, - 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x55, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x59, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0c, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x41, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0c, 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x43, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x10, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x43, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x44, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x45, 0x6d, 0x61, - 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x45, 0x62, - 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, 0x45, 0x64, - 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0c, 0x45, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x10, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, - 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x47, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, 0x47, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x10, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, - 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x49, 0x74, 0x69, 0x6c, 0x64, - 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x49, 0x6d, 0x61, 0x63, 0x72, - 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x49, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x49, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, 0x49, 0x64, 0x6f, - 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x10, 0x4a, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, 0x4b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, - 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x4c, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, - 0x4c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x09, 0x4c, 0x64, 0x6f, 0x74, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x4e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x11, 0x4e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4e, 0x63, - 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x4f, 0x6d, - 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x12, 0x4f, - 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, 0x52, 0x63, 0x6f, 0x6d, 0x6d, 0x61, - 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x52, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x53, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, - 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0d, 0x53, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, - 0x61, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x53, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x54, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x55, 0x74, 0x69, 0x6c, 0x64, - 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x55, 0x6d, 0x61, 0x63, 0x72, - 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x55, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0a, 0x55, 0x72, 0x69, 0x6e, - 0x67, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x12, 0x55, 0x68, 0x75, 0x6e, 0x67, - 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0c, 0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x10, 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, - 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x59, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x0e, 0x59, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0f, 0x5a, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x5a, 0x63, 0x61, 0x72, - 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0a, 0x41, 0x6c, 0x70, 0x68, - 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x45, 0x70, 0x73, 0x69, 0x6c, - 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x08, 0x45, 0x74, 0x61, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x09, 0x49, 0x6f, 0x74, 0x61, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x0c, 0x4f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x0c, 0x55, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, - 0x6f, 0x6e, 0x6f, 0x73, 0x0a, 0x4f, 0x6d, 0x65, 0x67, 0x61, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x11, 0x69, 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x05, 0x41, 0x6c, - 0x70, 0x68, 0x61, 0x04, 0x42, 0x65, 0x74, 0x61, 0x07, 0x45, 0x70, 0x73, - 0x69, 0x6c, 0x6f, 0x6e, 0x04, 0x5a, 0x65, 0x74, 0x61, 0x03, 0x45, 0x74, - 0x61, 0x04, 0x49, 0x6f, 0x74, 0x61, 0x05, 0x4b, 0x61, 0x70, 0x70, 0x61, - 0x02, 0x4d, 0x75, 0x02, 0x4e, 0x75, 0x07, 0x4f, 0x6d, 0x69, 0x63, 0x72, - 0x6f, 0x6e, 0x03, 0x52, 0x68, 0x6f, 0x03, 0x54, 0x61, 0x75, 0x07, 0x55, - 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x03, 0x43, 0x68, 0x69, 0x0c, 0x49, - 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x0f, - 0x55, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, - 0x73, 0x69, 0x73, 0x0a, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x0c, 0x65, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x08, 0x65, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, - 0x09, 0x69, 0x6f, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x14, 0x75, - 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, - 0x69, 0x73, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x05, 0x6b, 0x61, 0x70, 0x70, - 0x61, 0x07, 0x6f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x33, 0x42, 0x43, 0x02, 0x6e, 0x75, 0x03, 0x63, 0x68, 0x69, - 0x0c, 0x69, 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, - 0x73, 0x0f, 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, - 0x72, 0x65, 0x73, 0x69, 0x73, 0x0c, 0x6f, 0x6d, 0x69, 0x63, 0x72, 0x6f, - 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x75, 0x70, 0x73, 0x69, 0x6c, - 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0a, 0x6f, 0x6d, 0x65, 0x67, - 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x33, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x37, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x43, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x32, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x39, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x45, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x32, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x31, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x32, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x32, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x35, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x33, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x33, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x39, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x33, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x34, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x31, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x34, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x34, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x31, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x35, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x36, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x35, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x43, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x45, 0x09, 0x65, 0x78, 0x63, 0x6c, 0x61, - 0x6d, 0x64, 0x62, 0x6c, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x46, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x33, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x46, 0x34, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x31, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x30, 0x41, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x31, 0x35, - 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, - 0x00, 0x0a, 0x00, 0x30, 0x00, 0x3e, 0x00, 0x04, 0x44, 0x46, 0x4c, 0x54, - 0x00, 0x1a, 0x63, 0x79, 0x72, 0x6c, 0x00, 0x1a, 0x67, 0x72, 0x65, 0x6b, - 0x00, 0x1a, 0x6c, 0x61, 0x74, 0x6e, 0x00, 0x1a, 0x00, 0x04, 0x00, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x73, 0x6d, - 0x63, 0x70, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, - 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, - 0x01, 0xbe, 0x00, 0xdc, 0x02, 0x4f, 0x02, 0x50, 0x02, 0x51, 0x02, 0x52, - 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, - 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x70, - 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, - 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, 0x02, 0x4f, 0x02, 0x50, - 0x02, 0x51, 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, - 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, - 0x02, 0x5d, 0x02, 0x70, 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, - 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, - 0x02, 0x82, 0x02, 0x72, 0x02, 0x85, 0x02, 0xa0, 0x02, 0x86, 0x02, 0x88, - 0x02, 0x84, 0x02, 0x9f, 0x02, 0xa1, 0x02, 0x89, 0x02, 0x8a, 0x02, 0x87, - 0x02, 0xa2, 0x02, 0xa4, 0x02, 0x8b, 0x02, 0xa3, 0x02, 0xa5, 0x02, 0x81, - 0x02, 0x8d, 0x02, 0xa7, 0x02, 0xaa, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0xa8, - 0x02, 0x8c, 0x02, 0xa6, 0x02, 0xa9, 0x02, 0x82, 0x02, 0xac, 0x02, 0xab, - 0x02, 0xad, 0x02, 0xae, 0x02, 0x91, 0x02, 0xb1, 0x02, 0x92, 0x02, 0x93, - 0x02, 0xb3, 0x02, 0x90, 0x02, 0xb0, 0x02, 0xb2, 0x02, 0xaf, 0x02, 0xb4, - 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb8, 0x02, 0xb7, 0x02, 0xb9, 0x02, 0xba, - 0x02, 0xbc, 0x02, 0xbb, 0x02, 0x94, 0x02, 0x96, 0x02, 0xbe, 0x02, 0x97, - 0x02, 0x99, 0x02, 0x95, 0x02, 0xbf, 0x02, 0xbd, 0x02, 0x98, 0x02, 0xc0, - 0x02, 0xc2, 0x02, 0xc1, 0x02, 0xc3, 0x02, 0xc6, 0x02, 0xc5, 0x02, 0xc4, - 0x02, 0x83, 0x02, 0xc7, 0x02, 0x9b, 0x02, 0xca, 0x02, 0x9c, 0x02, 0x9d, - 0x02, 0x9a, 0x02, 0xcc, 0x02, 0xc9, 0x02, 0xcd, 0x02, 0xcb, 0x02, 0xc8, - 0x02, 0xce, 0x02, 0x9e, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd3, - 0x02, 0xd2, 0x02, 0x85, 0x02, 0xa0, 0x02, 0x86, 0x02, 0x88, 0x02, 0x84, - 0x02, 0x9f, 0x02, 0xa1, 0x02, 0x89, 0x02, 0x8a, 0x02, 0x87, 0x02, 0xa2, - 0x02, 0xa4, 0x02, 0x8b, 0x02, 0xa3, 0x02, 0xa5, 0x02, 0x81, 0x02, 0x8d, - 0x02, 0xa7, 0x02, 0xaa, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0xa8, 0x02, 0x8c, - 0x02, 0xa6, 0x02, 0xa9, 0x02, 0xac, 0x02, 0xab, 0x02, 0xad, 0x02, 0xae, - 0x02, 0x91, 0x02, 0xb1, 0x02, 0x92, 0x02, 0x93, 0x02, 0x90, 0x02, 0xb0, - 0x02, 0xb2, 0x02, 0xaf, 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb8, - 0x02, 0xb7, 0x02, 0xb9, 0x02, 0xba, 0x02, 0xbc, 0x02, 0xbb, 0x02, 0x94, - 0x02, 0x96, 0x02, 0xbe, 0x02, 0x97, 0x02, 0x99, 0x02, 0x95, 0x02, 0xbf, - 0x02, 0xbd, 0x02, 0x98, 0x02, 0xc0, 0x02, 0xc2, 0x02, 0xc1, 0x02, 0xc3, - 0x02, 0xc6, 0x02, 0xc5, 0x02, 0xc4, 0x02, 0x83, 0x02, 0xc7, 0x02, 0x9b, - 0x02, 0xca, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9a, 0x02, 0xcc, 0x02, 0xc9, - 0x02, 0xcd, 0x02, 0xcb, 0x02, 0xc8, 0x02, 0xce, 0x02, 0x9e, 0x02, 0xcf, - 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd3, 0x02, 0xd2, 0x02, 0x7f, 0x02, 0x7f, - 0x00, 0x02, 0x00, 0x1a, 0x00, 0x02, 0x00, 0x35, 0x00, 0x00, 0x00, 0x4c, - 0x00, 0x4c, 0x00, 0x34, 0x00, 0x50, 0x00, 0x50, 0x00, 0x35, 0x00, 0x9e, - 0x00, 0xa7, 0x00, 0x36, 0x00, 0xa9, 0x00, 0xb6, 0x00, 0x40, 0x00, 0xb8, - 0x00, 0xbc, 0x00, 0x4e, 0x00, 0xbe, 0x00, 0xcd, 0x00, 0x53, 0x00, 0xcf, - 0x00, 0xd7, 0x00, 0x63, 0x00, 0xd9, 0x00, 0xda, 0x00, 0x6c, 0x00, 0xdd, - 0x00, 0xeb, 0x00, 0x6e, 0x00, 0xed, 0x00, 0xf1, 0x00, 0x7d, 0x00, 0xf3, - 0x00, 0xf3, 0x00, 0x82, 0x00, 0xf6, 0x00, 0xf8, 0x00, 0x83, 0x00, 0xfa, - 0x01, 0x06, 0x00, 0x86, 0x01, 0x08, 0x01, 0x15, 0x00, 0x93, 0x01, 0x17, - 0x01, 0x1a, 0x00, 0xa1, 0x01, 0x1c, 0x01, 0x2a, 0x00, 0xa5, 0x01, 0x2c, - 0x01, 0x34, 0x00, 0xb4, 0x01, 0x36, 0x01, 0x37, 0x00, 0xbd, 0x01, 0x3a, - 0x01, 0x48, 0x00, 0xbf, 0x01, 0x4a, 0x01, 0x4e, 0x00, 0xce, 0x01, 0x50, - 0x01, 0x50, 0x00, 0xd3, 0x01, 0x53, 0x01, 0x55, 0x00, 0xd4, 0x01, 0x57, - 0x01, 0x59, 0x00, 0xd7, 0x02, 0x7e, 0x02, 0x7e, 0x00, 0xda, 0x02, 0x80, - 0x02, 0x80, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x24, 0x00, 0x02, - 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x00, 0x69, 0x74, 0x61, 0x6c, - 0x01, 0x0b, 0x00, 0x01, 0x00, 0x04, 0x00, 0x14, 0x00, 0x03, 0x00, 0x00, - 0x00, 0x02, 0x01, 0x0e, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x01, 0x11, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x00 -}; - -/* - * Roboto Mono Thin TTF - * Source: https://github.com/googlefonts/RobotoMono - * - * */ -const unsigned char TTF_roboto_mono_thin[] = { - - 0x00, 0x01, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x80, 0x00, 0x03, 0x00, 0x60, - 0x47, 0x53, 0x55, 0x42, 0x36, 0xbd, 0x35, 0xcb, 0x00, 0x01, 0x54, 0x54, - 0x00, 0x00, 0x02, 0xa8, 0x4f, 0x53, 0x2f, 0x32, 0x97, 0x21, 0xc1, 0x74, - 0x00, 0x01, 0x27, 0x0c, 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, - 0xe3, 0x84, 0xcc, 0x28, 0x00, 0x01, 0x56, 0xfc, 0x00, 0x00, 0x00, 0x44, - 0x63, 0x6d, 0x61, 0x70, 0xab, 0x9c, 0xd1, 0xb9, 0x00, 0x01, 0x27, 0x6c, - 0x00, 0x00, 0x07, 0x60, 0x67, 0x61, 0x73, 0x70, 0x00, 0x00, 0x00, 0x10, - 0x00, 0x01, 0x54, 0x4c, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6c, 0x79, 0x66, - 0xad, 0xe2, 0x68, 0xa4, 0x00, 0x00, 0x00, 0xec, 0x00, 0x01, 0x16, 0x04, - 0x68, 0x65, 0x61, 0x64, 0x01, 0x35, 0x9c, 0x0e, 0x00, 0x01, 0x1e, 0xe0, - 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, 0x0a, 0xb1, 0x01, 0x2a, - 0x00, 0x01, 0x26, 0xe8, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6d, 0x74, 0x78, - 0x43, 0x6f, 0x55, 0x86, 0x00, 0x01, 0x1f, 0x18, 0x00, 0x00, 0x07, 0xd0, - 0x6c, 0x6f, 0x63, 0x61, 0xa2, 0xc8, 0xe7, 0x59, 0x00, 0x01, 0x17, 0x10, - 0x00, 0x00, 0x07, 0xd0, 0x6d, 0x61, 0x78, 0x70, 0x04, 0x06, 0x01, 0x3a, - 0x00, 0x01, 0x16, 0xf0, 0x00, 0x00, 0x00, 0x20, 0x6e, 0x61, 0x6d, 0x65, - 0x66, 0x06, 0x90, 0xa3, 0x00, 0x01, 0x2e, 0xd4, 0x00, 0x00, 0x03, 0xba, - 0x70, 0x6f, 0x73, 0x74, 0x97, 0xb9, 0xaf, 0x06, 0x00, 0x01, 0x32, 0x90, - 0x00, 0x00, 0x21, 0xbc, 0x70, 0x72, 0x65, 0x70, 0x68, 0x06, 0x8c, 0x85, - 0x00, 0x01, 0x2e, 0xcc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x72, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x37, 0x01, 0x01, 0x03, - 0xab, 0x8f, 0x38, 0xfe, 0x23, 0x3e, 0xfe, 0x23, 0x38, 0x8e, 0x11, 0x01, - 0x25, 0x01, 0x24, 0x01, 0xb3, 0xfe, 0x4d, 0x05, 0xb0, 0xfa, 0x50, 0x01, - 0xb3, 0x36, 0x03, 0x7d, 0xfc, 0x83, 0x00, 0x03, 0x00, 0xd9, 0x00, 0x00, - 0x04, 0x46, 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x39, 0x00, 0x00, - 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x21, 0x13, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x16, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x11, 0x11, 0x21, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0xd9, 0x01, - 0xc2, 0x57, 0x9c, 0x3b, 0x3a, 0x43, 0x01, 0x30, 0x29, 0x2a, 0x70, 0x40, - 0x01, 0x37, 0x5b, 0x21, 0x20, 0x23, 0x4c, 0x3f, 0x3f, 0xa3, 0x57, 0xfe, - 0x96, 0x35, 0x01, 0x96, 0x46, 0x82, 0x33, 0x32, 0x3e, 0x01, 0x3c, 0x33, - 0x33, 0x88, 0x4b, 0xfe, 0x73, 0x01, 0x35, 0x4a, 0x8f, 0x38, 0x38, 0x44, - 0x3f, 0x34, 0x35, 0x88, 0x49, 0x02, 0x39, 0x34, 0x34, 0x92, 0x5c, 0x44, - 0x75, 0x2e, 0x2e, 0x3e, 0x0e, 0x05, 0x15, 0x39, 0x28, 0x27, 0x66, 0x41, - 0x60, 0x8c, 0x2e, 0x2d, 0x2d, 0x01, 0xfd, 0x1f, 0x02, 0x2c, 0x28, 0x29, - 0x76, 0x4b, 0x50, 0x7f, 0x2c, 0x2c, 0x31, 0x01, 0x02, 0xcf, 0x02, 0x75, - 0x01, 0x24, 0x25, 0x26, 0x77, 0x54, 0x52, 0x75, 0x26, 0x27, 0x25, 0x01, - 0x00, 0x01, 0x00, 0x8f, 0xff, 0xeb, 0x04, 0x3a, 0x05, 0xc5, 0x00, 0x3f, - 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x27, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x16, 0x36, 0x37, 0x36, 0x36, 0x04, 0x3a, 0x35, 0x0e, 0x3e, 0x32, - 0x33, 0x8e, 0x5e, 0x4c, 0x78, 0x2e, 0x2f, 0x42, 0x15, 0x16, 0x14, 0x01, - 0x01, 0x14, 0x16, 0x15, 0x43, 0x2e, 0x2e, 0x79, 0x4b, 0x5d, 0x8d, 0x33, - 0x33, 0x3f, 0x0e, 0x35, 0x0b, 0x47, 0x3b, 0x3b, 0xa4, 0x66, 0x54, 0x86, - 0x34, 0x34, 0x4c, 0x19, 0x19, 0x18, 0x01, 0x01, 0x18, 0x19, 0x19, 0x4b, - 0x35, 0x34, 0x86, 0x54, 0x67, 0xa3, 0x3b, 0x3b, 0x47, 0x01, 0xbe, 0x55, - 0x97, 0x38, 0x38, 0x41, 0x01, 0x34, 0x2c, 0x2c, 0x74, 0x41, 0x40, 0x88, - 0x40, 0xdc, 0x3f, 0x88, 0x41, 0x40, 0x74, 0x2c, 0x2b, 0x33, 0x01, 0x01, - 0x41, 0x38, 0x38, 0x96, 0x54, 0x60, 0xaa, 0x3f, 0x3f, 0x49, 0x01, 0x01, - 0x37, 0x2f, 0x2f, 0x7e, 0x46, 0x47, 0x97, 0x47, 0xda, 0x48, 0x95, 0x47, - 0x47, 0x7e, 0x2f, 0x2f, 0x38, 0x01, 0x4a, 0x40, 0x3f, 0xaa, 0x00, 0x02, - 0x00, 0xc8, 0x00, 0x00, 0x04, 0x56, 0x05, 0xb0, 0x00, 0x15, 0x00, 0x2b, - 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, - 0x17, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0xc8, 0x01, - 0x6e, 0x55, 0x93, 0x3c, 0x3c, 0x5d, 0x20, 0x20, 0x23, 0x01, 0x22, 0x20, - 0x20, 0x5d, 0x3c, 0x3c, 0x93, 0x55, 0xfe, 0x92, 0x34, 0x01, 0x3a, 0x3b, - 0x6b, 0x2d, 0x49, 0x6c, 0x24, 0x1d, 0x20, 0x01, 0x01, 0x1e, 0x1c, 0x1d, - 0x54, 0x36, 0x36, 0x84, 0x4e, 0xfe, 0xc6, 0x02, 0x34, 0x2d, 0x2c, 0x79, - 0x46, 0x46, 0x9c, 0x4f, 0xb2, 0x4f, 0x9c, 0x46, 0x46, 0x79, 0x2d, 0x2c, - 0x34, 0x02, 0x36, 0x02, 0x1d, 0x19, 0x28, 0x81, 0x4c, 0x41, 0x8f, 0x49, - 0xb5, 0x48, 0x8d, 0x40, 0x41, 0x6f, 0x29, 0x29, 0x30, 0x02, 0x00, 0x01, - 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x03, 0xb6, 0xfd, 0x5b, 0x03, 0x04, 0xfc, 0xc7, 0x03, 0x39, 0xfc, 0xfc, - 0x02, 0xd2, 0x36, 0x02, 0x72, 0x36, 0xfa, 0x50, 0x36, 0x02, 0x9c, 0x00, - 0x00, 0x01, 0x00, 0xe6, 0x00, 0x00, 0x04, 0x21, 0x05, 0xb0, 0x00, 0x09, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, - 0x03, 0xc4, 0xfd, 0x56, 0x03, 0x07, 0xfc, 0xc5, 0x34, 0x02, 0xcc, 0x38, - 0x02, 0x76, 0x36, 0xfa, 0x50, 0x02, 0xcc, 0x00, 0x00, 0x01, 0x00, 0x87, - 0xff, 0xec, 0x04, 0x37, 0x05, 0xc4, 0x00, 0x43, 0x00, 0x00, 0x65, 0x03, - 0x21, 0x15, 0x21, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x32, 0x36, 0x37, 0x36, 0x36, 0x04, 0x37, 0x01, 0xfe, 0x42, 0x01, - 0x8a, 0x22, 0x5b, 0x34, 0x34, 0x6e, 0x34, 0x4d, 0x7d, 0x31, 0x32, 0x48, - 0x18, 0x18, 0x18, 0x01, 0x01, 0x18, 0x17, 0x17, 0x46, 0x30, 0x2f, 0x79, - 0x4a, 0x54, 0x86, 0x33, 0x32, 0x44, 0x11, 0x35, 0x0c, 0x4c, 0x3b, 0x3c, - 0x9d, 0x5d, 0x52, 0x87, 0x35, 0x36, 0x50, 0x1a, 0x1b, 0x1b, 0x01, 0x01, - 0x1c, 0x1c, 0x1b, 0x52, 0x37, 0x37, 0x8b, 0x55, 0x3d, 0x7c, 0x3a, 0x3a, - 0x67, 0x9c, 0x01, 0xf8, 0x37, 0xfe, 0x58, 0x2b, 0x39, 0x11, 0x11, 0x0e, - 0x01, 0x01, 0x32, 0x2b, 0x2a, 0x73, 0x41, 0x40, 0x8b, 0x43, 0xf0, 0x40, - 0x85, 0x3f, 0x3e, 0x6e, 0x29, 0x29, 0x30, 0x36, 0x30, 0x30, 0x84, 0x4e, - 0x5a, 0x97, 0x38, 0x37, 0x3e, 0x34, 0x2d, 0x2d, 0x78, 0x44, 0x45, 0x93, - 0x48, 0xee, 0x4b, 0x98, 0x47, 0x47, 0x7c, 0x2e, 0x2e, 0x36, 0x01, 0x12, - 0x15, 0x15, 0x43, 0x00, 0x00, 0x01, 0x00, 0xb2, 0x00, 0x00, 0x04, 0x1c, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, 0x21, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x04, 0x1c, 0x33, 0xfc, 0xfc, 0x33, - 0x33, 0x03, 0x04, 0x05, 0xb0, 0xfd, 0x58, 0x02, 0xa8, 0xfa, 0x50, 0x02, - 0xd2, 0xfd, 0x2e, 0x00, 0x00, 0x01, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, - 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0xd4, 0x01, 0x6f, 0xfe, 0x91, 0x03, - 0x26, 0xfe, 0x83, 0x01, 0x7d, 0x05, 0xb0, 0x38, 0xfa, 0xbe, 0x36, 0x36, - 0x05, 0x42, 0x38, 0x00, 0x00, 0x01, 0x00, 0x7d, 0xff, 0xec, 0x03, 0xea, - 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x13, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x03, 0xb3, - 0x01, 0x02, 0x38, 0x32, 0x32, 0x8c, 0x56, 0x55, 0x8b, 0x31, 0x32, 0x39, - 0x04, 0x37, 0x06, 0x41, 0x39, 0x39, 0x9d, 0x61, 0x62, 0xa0, 0x39, 0x39, - 0x40, 0x02, 0x05, 0xb0, 0xfc, 0x0a, 0x53, 0x94, 0x37, 0x38, 0x41, 0x01, - 0x01, 0x34, 0x30, 0x30, 0x88, 0x54, 0x5f, 0x9b, 0x37, 0x38, 0x3c, 0x4a, - 0x3f, 0x3f, 0xa7, 0x5f, 0x03, 0xf6, 0x00, 0x01, 0x00, 0xe5, 0x00, 0x00, - 0x04, 0x97, 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, - 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, 0xee, 0x02, - 0x66, 0x43, 0xfd, 0x7d, 0x02, 0x55, 0x4a, 0xfd, 0xd3, 0xd9, 0x34, 0x34, - 0x02, 0xfc, 0xfd, 0x04, 0x03, 0x22, 0x02, 0x8e, 0xfd, 0x9f, 0xe6, 0x03, - 0x47, 0xfa, 0x50, 0x02, 0x29, 0x00, 0x00, 0x01, 0x00, 0xf2, 0x00, 0x00, - 0x04, 0x2b, 0x05, 0xb0, 0x00, 0x05, 0x00, 0x00, 0x65, 0x11, 0x23, 0x11, - 0x21, 0x35, 0x01, 0x29, 0x37, 0x03, 0x39, 0x36, 0x05, 0x7a, 0xfa, 0x50, - 0x36, 0x00, 0x00, 0x01, 0x00, 0xba, 0x00, 0x00, 0x04, 0x2b, 0x05, 0xb0, - 0x00, 0x0e, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x03, 0x01, 0x33, - 0x01, 0x03, 0x11, 0x33, 0x11, 0x23, 0x01, 0x01, 0x09, 0x4f, 0x36, 0x01, - 0x01, 0x5d, 0x32, 0x01, 0x79, 0x02, 0x36, 0x54, 0xfe, 0x8f, 0x05, 0xb0, - 0xfa, 0x50, 0x02, 0xc4, 0x02, 0x99, 0xfc, 0x79, 0x03, 0x91, 0xfd, 0x5d, - 0xfd, 0x3c, 0x05, 0xb0, 0xfc, 0x6d, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x00, - 0x04, 0x1b, 0x05, 0xb0, 0x00, 0x09, 0x00, 0x00, 0x61, 0x11, 0x23, 0x13, - 0x01, 0x23, 0x11, 0x33, 0x03, 0x01, 0x04, 0x1b, 0x34, 0x02, 0xfc, 0xfd, - 0x32, 0x33, 0x02, 0x03, 0x04, 0x05, 0xb0, 0xfa, 0xaf, 0x05, 0x51, 0xfa, - 0x50, 0x05, 0x54, 0xfa, 0xac, 0x00, 0x00, 0x02, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x05, 0xc4, 0x00, 0x25, 0x00, 0x4b, 0x00, 0x00, 0x41, 0x35, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x03, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x04, 0x3e, 0x01, 0x18, 0x18, 0x19, 0x4b, 0x34, 0x35, 0x86, - 0x54, 0x54, 0x86, 0x34, 0x35, 0x4b, 0x18, 0x19, 0x18, 0x01, 0x01, 0x19, - 0x19, 0x18, 0x4c, 0x35, 0x34, 0x87, 0x53, 0x53, 0x87, 0x34, 0x34, 0x4b, - 0x18, 0x18, 0x18, 0x34, 0x01, 0x13, 0x15, 0x15, 0x42, 0x2e, 0x2e, 0x79, - 0x4c, 0x4c, 0x79, 0x2e, 0x2f, 0x42, 0x15, 0x15, 0x14, 0x01, 0x01, 0x14, - 0x15, 0x15, 0x41, 0x2f, 0x2e, 0x78, 0x4c, 0x4c, 0x79, 0x2f, 0x2e, 0x42, - 0x15, 0x15, 0x14, 0x02, 0x6b, 0xda, 0x47, 0x96, 0x47, 0x47, 0x7e, 0x30, - 0x2f, 0x37, 0x37, 0x2f, 0x30, 0x7e, 0x47, 0x47, 0x96, 0x47, 0xda, 0x47, - 0x96, 0x47, 0x47, 0x7e, 0x2f, 0x30, 0x37, 0x37, 0x30, 0x2f, 0x7e, 0x47, - 0x47, 0x96, 0x01, 0x23, 0xdc, 0x40, 0x88, 0x41, 0x41, 0x74, 0x2c, 0x2c, - 0x33, 0x33, 0x2c, 0x2c, 0x74, 0x41, 0x41, 0x88, 0x40, 0xdc, 0x3f, 0x88, - 0x41, 0x41, 0x74, 0x2c, 0x2b, 0x33, 0x33, 0x2b, 0x2c, 0x74, 0x40, 0x41, - 0x88, 0x00, 0x00, 0x02, 0x00, 0xf2, 0x00, 0x00, 0x04, 0x64, 0x05, 0xb0, - 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, 0x11, - 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x01, 0x28, 0x01, 0x86, 0x5c, 0xa0, 0x3b, 0x3b, 0x44, 0x43, - 0x3b, 0x3b, 0xa0, 0x5d, 0xfe, 0x44, 0x36, 0x01, 0x86, 0x51, 0x8d, 0x34, - 0x33, 0x3b, 0x3d, 0x34, 0x34, 0x8c, 0x4f, 0x02, 0x67, 0x01, 0x3b, 0x36, - 0x36, 0x98, 0x60, 0x60, 0x9b, 0x38, 0x37, 0x3d, 0x02, 0xfa, 0x50, 0x02, - 0x9d, 0x02, 0xdd, 0x02, 0x36, 0x30, 0x31, 0x88, 0x54, 0x53, 0x84, 0x2e, - 0x2f, 0x33, 0x01, 0x00, 0x00, 0x02, 0x00, 0x77, 0xfe, 0xf9, 0x04, 0x61, - 0x05, 0xc4, 0x00, 0x28, 0x00, 0x4e, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x01, 0x37, 0x03, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x03, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x04, 0x61, 0x01, 0x1c, 0x1b, 0x1c, 0x52, 0x37, 0x38, - 0x8c, 0x55, 0x55, 0x8c, 0x37, 0x38, 0x52, 0x1b, 0x1b, 0x1b, 0x01, 0x01, - 0x1b, 0x1c, 0x1b, 0x52, 0x38, 0x37, 0x8d, 0x55, 0x2d, 0x52, 0x25, 0x01, - 0x05, 0x26, 0xf7, 0x48, 0x69, 0x24, 0x23, 0x23, 0x35, 0x01, 0x17, 0x17, - 0x18, 0x48, 0x31, 0x32, 0x7e, 0x4e, 0x4e, 0x7e, 0x31, 0x32, 0x49, 0x17, - 0x18, 0x18, 0x01, 0x01, 0x18, 0x18, 0x17, 0x48, 0x32, 0x31, 0x7d, 0x4e, - 0x4e, 0x7e, 0x32, 0x31, 0x49, 0x18, 0x17, 0x18, 0x02, 0x6b, 0xda, 0x4a, - 0x99, 0x47, 0x47, 0x7c, 0x2f, 0x2e, 0x35, 0x35, 0x2e, 0x2f, 0x7c, 0x47, - 0x47, 0x99, 0x4a, 0xda, 0x4b, 0x98, 0x47, 0x47, 0x7c, 0x2e, 0x2f, 0x35, - 0x10, 0x0e, 0xfe, 0xef, 0x23, 0x01, 0x07, 0x29, 0x81, 0x4f, 0x4e, 0xad, - 0x01, 0x30, 0xdc, 0x43, 0x8b, 0x41, 0x41, 0x73, 0x2a, 0x2b, 0x31, 0x31, - 0x2b, 0x2a, 0x73, 0x41, 0x41, 0x8b, 0x43, 0xdc, 0x43, 0x8a, 0x41, 0x41, - 0x72, 0x2b, 0x2a, 0x31, 0x31, 0x2a, 0x2b, 0x72, 0x40, 0x41, 0x8b, 0x00, - 0x00, 0x02, 0x00, 0xe3, 0x00, 0x00, 0x04, 0x5b, 0x05, 0xb0, 0x00, 0x14, - 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x33, 0x35, 0x01, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, - 0x11, 0x35, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x02, 0xc3, 0x01, 0x61, 0x37, 0xfe, 0x9b, 0x42, - 0x6f, 0x28, 0x28, 0x2d, 0x45, 0x3b, 0x3c, 0xa0, 0x5a, 0xfe, 0x75, 0x34, - 0x01, 0x56, 0x4f, 0x8d, 0x34, 0x34, 0x3d, 0x33, 0x2d, 0x2d, 0x7d, 0x4a, - 0x02, 0x6f, 0xfd, 0x91, 0x0e, 0x02, 0x71, 0x1a, 0x4a, 0x31, 0x31, 0x7b, - 0x4c, 0x5e, 0x99, 0x37, 0x37, 0x3d, 0x02, 0xfa, 0x50, 0x02, 0x6f, 0x36, - 0x02, 0xd5, 0x02, 0x34, 0x2f, 0x30, 0x86, 0x53, 0x49, 0x81, 0x30, 0x31, - 0x3a, 0x02, 0x00, 0x01, 0x00, 0x9c, 0xff, 0xec, 0x04, 0x4b, 0x05, 0xc4, - 0x00, 0x49, 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x04, 0x14, 0x45, 0x38, 0x38, 0x8f, - 0x49, 0x56, 0x97, 0x3a, 0x3b, 0x4b, 0x09, 0x35, 0x04, 0x48, 0x3d, 0x44, - 0xb9, 0x65, 0x55, 0xa2, 0x40, 0x3f, 0x4e, 0x51, 0x3e, 0x43, 0x9f, 0x4e, - 0x43, 0x90, 0x3a, 0x3a, 0x49, 0x47, 0x38, 0x38, 0x8a, 0x44, 0x51, 0x88, - 0x33, 0x33, 0x3f, 0x08, 0x35, 0x04, 0x47, 0x3b, 0x3b, 0x9f, 0x5b, 0x50, - 0x9d, 0x3f, 0x3f, 0x50, 0x01, 0x01, 0x5a, 0x45, 0x3b, 0x95, 0x46, 0x45, - 0x91, 0x3b, 0x3b, 0x4c, 0x01, 0x5d, 0x53, 0x77, 0x26, 0x26, 0x25, 0x2d, - 0x2d, 0x2d, 0x85, 0x59, 0x5d, 0x92, 0x33, 0x3d, 0x3c, 0x2e, 0x2e, 0x2e, - 0x8b, 0x5e, 0x5f, 0x8a, 0x30, 0x30, 0x42, 0x18, 0x14, 0x36, 0x29, 0x28, - 0x72, 0x53, 0x4d, 0x71, 0x25, 0x25, 0x24, 0x34, 0x2f, 0x2f, 0x83, 0x4f, - 0x5d, 0x98, 0x35, 0x35, 0x3b, 0x2d, 0x2c, 0x2d, 0x86, 0x58, 0x67, 0x85, - 0x2f, 0x28, 0x3a, 0x15, 0x15, 0x39, 0x2a, 0x2a, 0x79, 0x00, 0x00, 0x01, - 0x00, 0x70, 0x00, 0x00, 0x04, 0x63, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x21, 0x03, 0x33, 0x11, 0x04, 0x63, 0xfc, 0x0d, - 0x01, 0xe0, 0x02, 0x36, 0x05, 0x7a, 0x36, 0x36, 0xfa, 0x86, 0x05, 0x7a, - 0x00, 0x01, 0x00, 0xb0, 0xff, 0xec, 0x04, 0x1e, 0x05, 0xb0, 0x00, 0x1d, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, 0x1e, 0x34, 0x01, - 0x02, 0x34, 0x31, 0x31, 0x8e, 0x5b, 0x5b, 0x8f, 0x31, 0x32, 0x35, 0x01, - 0x01, 0x33, 0x01, 0x01, 0x3d, 0x38, 0x38, 0xa2, 0x68, 0x67, 0xa2, 0x39, - 0x38, 0x3c, 0x05, 0xb0, 0xfc, 0x25, 0x54, 0x9d, 0x3c, 0x3d, 0x49, 0x48, - 0x3d, 0x3c, 0x9d, 0x55, 0x03, 0xdb, 0xfc, 0x25, 0x61, 0xb1, 0x43, 0x44, - 0x50, 0x50, 0x44, 0x43, 0xb1, 0x61, 0x00, 0x01, 0x00, 0x6a, 0x00, 0x00, - 0x04, 0x5b, 0x05, 0xb0, 0x00, 0x08, 0x00, 0x00, 0x61, 0x33, 0x01, 0x23, - 0x01, 0x07, 0x27, 0x01, 0x23, 0x02, 0x43, 0x3e, 0x01, 0xda, 0x39, 0xfe, - 0x56, 0x16, 0x16, 0xfe, 0x56, 0x38, 0x05, 0xb0, 0xfa, 0xde, 0x4e, 0x4e, - 0x05, 0x22, 0x00, 0x01, 0x00, 0x61, 0x00, 0x00, 0x04, 0x96, 0x05, 0xb0, - 0x00, 0x12, 0x00, 0x00, 0x61, 0x33, 0x13, 0x37, 0x17, 0x13, 0x33, 0x13, - 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x01, - 0x4a, 0x32, 0xed, 0x13, 0x14, 0xeb, 0x32, 0xe9, 0x31, 0xb5, 0x1e, 0x1d, - 0xdf, 0x32, 0xe1, 0x1e, 0x1c, 0xb6, 0x32, 0x04, 0xbe, 0x6a, 0x6a, 0xfb, - 0x42, 0x05, 0xb0, 0xfb, 0x9a, 0xba, 0xba, 0x04, 0x66, 0xfb, 0x9a, 0xb8, - 0xb8, 0x04, 0x66, 0x00, 0x00, 0x01, 0x00, 0x80, 0x00, 0x00, 0x04, 0x73, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x01, 0x33, - 0x01, 0x01, 0x33, 0x01, 0x01, 0x23, 0x02, 0x79, 0xfe, 0x59, 0x41, 0x01, - 0xc7, 0xfe, 0x28, 0x3e, 0x01, 0xbb, 0x01, 0xbb, 0x3f, 0xfe, 0x28, 0x01, - 0xc7, 0x41, 0x03, 0x11, 0x02, 0x9f, 0xfd, 0x37, 0xfd, 0x19, 0x02, 0xbd, - 0xfd, 0x43, 0x02, 0xe7, 0x02, 0xc9, 0x00, 0x01, 0x00, 0x5a, 0x00, 0x00, - 0x04, 0x52, 0x05, 0xb0, 0x00, 0x08, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, - 0x13, 0x33, 0x11, 0x01, 0x23, 0x02, 0x55, 0xfe, 0x48, 0x43, 0x01, 0xe1, - 0x01, 0x34, 0x01, 0xe2, 0x3f, 0x02, 0x5a, 0x03, 0x56, 0xfc, 0x79, 0xfd, - 0xd7, 0x02, 0x29, 0x03, 0x87, 0x00, 0x00, 0x01, 0x00, 0x8f, 0x00, 0x00, - 0x04, 0x11, 0x05, 0xb0, 0x00, 0x09, 0x00, 0x00, 0x77, 0x01, 0x27, 0x21, - 0x15, 0x21, 0x01, 0x17, 0x21, 0x35, 0xd4, 0x03, 0x23, 0x01, 0xfc, 0xbc, - 0x02, 0xfe, 0xfc, 0xdf, 0x01, 0x03, 0x81, 0x36, 0x05, 0x54, 0x26, 0x35, - 0xfa, 0xb1, 0x2c, 0x36, 0x00, 0x02, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, - 0x04, 0x4e, 0x00, 0x35, 0x00, 0x49, 0x00, 0x00, 0x61, 0x33, 0x27, 0x26, - 0x26, 0x27, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x16, 0x16, 0x05, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x26, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x21, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0xdd, - 0x3f, 0x01, 0x0a, 0x12, 0x01, 0x02, 0x3f, 0x36, 0x36, 0x8f, 0x50, 0x47, - 0x8f, 0x3a, 0x3b, 0x4d, 0x04, 0x36, 0x03, 0x44, 0x33, 0x33, 0x7d, 0x3c, - 0x44, 0x7b, 0x2f, 0x2e, 0x38, 0x02, 0xfe, 0xf5, 0x5a, 0xb8, 0x4a, 0x4b, - 0x5e, 0x3a, 0x30, 0x30, 0x7c, 0x41, 0x43, 0x80, 0x39, 0x39, 0x61, 0x23, - 0x01, 0x08, 0xfe, 0x3e, 0x33, 0x67, 0x29, 0x2a, 0x34, 0x01, 0x4c, 0x3e, - 0x46, 0xb2, 0x51, 0x01, 0x08, 0x1e, 0x5c, 0x39, 0x3a, 0x85, 0x09, 0x36, - 0x64, 0x37, 0x02, 0x1e, 0x55, 0x81, 0x2b, 0x2a, 0x2b, 0x28, 0x27, 0x28, - 0x76, 0x4f, 0x02, 0x44, 0x63, 0x21, 0x20, 0x20, 0x23, 0x23, 0x23, 0x6c, - 0x49, 0x9e, 0x01, 0x1e, 0x25, 0x26, 0x7f, 0x61, 0x47, 0x6e, 0x25, 0x25, - 0x27, 0x1c, 0x1c, 0x1b, 0x54, 0x37, 0x33, 0x64, 0x12, 0x1f, 0x1e, 0x1e, - 0x59, 0x39, 0x4f, 0x67, 0x21, 0x26, 0x18, 0x02, 0xff, 0x00, 0x40, 0x62, - 0x21, 0x21, 0x21, 0x00, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xec, 0x04, 0x1d, - 0x06, 0x00, 0x00, 0x23, 0x00, 0x43, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x11, 0x23, 0x11, 0x33, 0x35, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x04, 0x1d, 0x01, 0x13, 0x15, 0x16, 0x43, 0x2f, - 0x2f, 0x7d, 0x4f, 0x35, 0x65, 0x2d, 0x2d, 0x4c, 0x1b, 0x36, 0x36, 0x1c, - 0x4f, 0x2f, 0x2e, 0x64, 0x31, 0x4e, 0x7b, 0x30, 0x2f, 0x43, 0x15, 0x15, - 0x14, 0x37, 0x01, 0x0f, 0x11, 0x12, 0x39, 0x28, 0x29, 0x6e, 0x46, 0x36, - 0x6c, 0x2f, 0x2f, 0x4b, 0x13, 0x12, 0x45, 0x2e, 0x2d, 0x6e, 0x3c, 0x47, - 0x6d, 0x2a, 0x29, 0x38, 0x12, 0x11, 0x10, 0x02, 0x13, 0x15, 0x40, 0x83, - 0x3d, 0x3d, 0x6c, 0x28, 0x27, 0x2e, 0x1d, 0x1a, 0x1b, 0x4c, 0x2e, 0x02, - 0x7e, 0xfa, 0x00, 0xa0, 0x2b, 0x43, 0x17, 0x17, 0x18, 0x2f, 0x28, 0x28, - 0x6c, 0x3d, 0x3d, 0x83, 0x54, 0x15, 0x38, 0x74, 0x37, 0x37, 0x62, 0x25, - 0x25, 0x2b, 0x1d, 0x1d, 0x1d, 0x55, 0x37, 0x02, 0x0c, 0x3a, 0x61, 0x23, - 0x23, 0x26, 0x2b, 0x24, 0x25, 0x62, 0x37, 0x37, 0x75, 0x00, 0x00, 0x01, - 0x00, 0xb3, 0xff, 0xec, 0x04, 0x0f, 0x04, 0x4e, 0x00, 0x33, 0x00, 0x00, - 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x02, 0x76, 0x68, 0x95, 0x30, 0x31, 0x2e, 0x01, - 0x01, 0x2e, 0x31, 0x30, 0x94, 0x67, 0x49, 0x7d, 0x30, 0x2f, 0x3a, 0x06, - 0x36, 0x07, 0x42, 0x36, 0x36, 0x91, 0x55, 0x72, 0xa8, 0x37, 0x38, 0x37, - 0x01, 0x01, 0x37, 0x38, 0x38, 0xa9, 0x72, 0x4f, 0x8f, 0x37, 0x36, 0x46, - 0x08, 0x36, 0x08, 0x3c, 0x2f, 0x30, 0x7b, 0x22, 0x53, 0x44, 0x44, 0xae, - 0x5d, 0x2a, 0x5b, 0xaf, 0x45, 0x44, 0x53, 0x2e, 0x2a, 0x2b, 0x77, 0x49, - 0x55, 0x8b, 0x32, 0x31, 0x36, 0x5c, 0x4b, 0x4c, 0xc3, 0x66, 0x2a, 0x67, - 0xc2, 0x4b, 0x4c, 0x5c, 0x30, 0x2d, 0x2d, 0x81, 0x51, 0x47, 0x6e, 0x25, - 0x26, 0x26, 0x00, 0x02, 0x00, 0xb0, 0xff, 0xec, 0x03, 0xed, 0x06, 0x00, - 0x00, 0x17, 0x00, 0x2b, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x33, 0x11, 0x23, 0x11, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x11, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0xb0, 0x2e, 0x31, 0x33, 0xa3, 0x75, 0x61, 0xc3, 0x39, 0x36, - 0x36, 0x36, 0xbb, 0x6a, 0x7b, 0xa5, 0x32, 0x2d, 0x2d, 0x38, 0x24, 0x29, - 0x2b, 0x8e, 0x6d, 0x75, 0xc1, 0x26, 0x2a, 0xca, 0x6a, 0x6c, 0x8c, 0x2c, - 0x28, 0x25, 0x02, 0x28, 0x15, 0x5e, 0xc3, 0x4f, 0x50, 0x67, 0x5d, 0x59, - 0xa2, 0x06, 0x00, 0xfd, 0x80, 0x5e, 0x70, 0x69, 0x54, 0x4c, 0xc0, 0x72, - 0x15, 0x51, 0xad, 0x48, 0x4b, 0x5f, 0x8d, 0x75, 0xfd, 0xe9, 0x69, 0x74, - 0x60, 0x49, 0x49, 0xad, 0x00, 0x02, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, - 0x04, 0x4e, 0x00, 0x22, 0x00, 0x30, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, - 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x13, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x15, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0x92, 0x70, - 0xc1, 0x45, 0x27, 0x41, 0xa9, 0x65, 0x63, 0xa1, 0x39, 0x3a, 0x40, 0x01, - 0x03, 0x4f, 0x01, 0x3c, 0x37, 0x38, 0x9e, 0x62, 0x6e, 0xae, 0x3d, 0x3d, - 0x42, 0x01, 0x01, 0x48, 0x41, 0x40, 0xb5, 0x5a, 0x53, 0x8a, 0x31, 0x31, - 0x37, 0xfc, 0xec, 0x0a, 0x41, 0x35, 0x34, 0x90, 0x14, 0x55, 0x5a, 0x1b, - 0x4e, 0x48, 0x01, 0x01, 0x51, 0x44, 0x43, 0xaf, 0x5d, 0x3b, 0x3f, 0x5d, - 0xa8, 0x40, 0x3f, 0x4a, 0x5d, 0x4c, 0x4c, 0xc2, 0x65, 0x2c, 0x69, 0xc2, - 0x4b, 0x4b, 0x59, 0x04, 0x2c, 0x42, 0x38, 0x38, 0x92, 0x50, 0x0d, 0x51, - 0x97, 0x3a, 0x3a, 0x45, 0x00, 0x01, 0x00, 0xd2, 0x00, 0x00, 0x04, 0x58, - 0x06, 0x15, 0x00, 0x20, 0x00, 0x00, 0x61, 0x33, 0x03, 0x21, 0x35, 0x21, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x37, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, - 0x21, 0x15, 0x21, 0x01, 0xf4, 0x3f, 0x04, 0x01, 0xbd, 0xfe, 0x43, 0x3f, - 0x32, 0x34, 0x7d, 0x4f, 0x2d, 0x57, 0x2c, 0x08, 0x1a, 0x34, 0x1a, 0x14, - 0x29, 0x15, 0x4e, 0x96, 0x3b, 0x3b, 0x4a, 0x02, 0x01, 0xfe, 0xdb, 0x01, - 0x25, 0x04, 0x03, 0x37, 0x5f, 0x5d, 0x86, 0x25, 0x24, 0x1a, 0x06, 0x09, - 0x34, 0x06, 0x07, 0x01, 0x02, 0x01, 0x1f, 0x29, 0x2a, 0x94, 0x76, 0x5f, - 0x37, 0x00, 0x00, 0x02, 0x00, 0xb2, 0xfe, 0x4c, 0x03, 0xef, 0x04, 0x4e, - 0x00, 0x35, 0x00, 0x4f, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x23, - 0x15, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0xb2, 0x30, 0x37, 0x34, 0x9c, 0x73, 0x31, 0x64, 0x2e, 0x2e, - 0x4f, 0x1c, 0x01, 0x2d, 0x2c, 0x2d, 0x85, 0x58, 0x3c, 0x68, 0x2c, 0x1d, - 0x35, 0x18, 0x26, 0x1b, 0x3f, 0x22, 0x32, 0x74, 0x40, 0x63, 0x97, 0x34, - 0x34, 0x37, 0x37, 0x1b, 0x4c, 0x2d, 0x2d, 0x65, 0x34, 0x7d, 0xa6, 0x31, - 0x2f, 0x29, 0x37, 0x22, 0x28, 0x29, 0x91, 0x70, 0x3c, 0x6e, 0x2e, 0x2d, - 0x44, 0x12, 0x13, 0x49, 0x2f, 0x30, 0x6c, 0x36, 0x63, 0x8e, 0x28, 0x2e, - 0x29, 0x02, 0x28, 0x15, 0x61, 0xcc, 0x4f, 0x4b, 0x60, 0x18, 0x17, 0x17, - 0x43, 0x2b, 0x91, 0x53, 0x91, 0x36, 0x36, 0x3e, 0x23, 0x1e, 0x14, 0x33, - 0x1d, 0x24, 0x23, 0x3a, 0x16, 0x20, 0x23, 0x47, 0x3e, 0x3d, 0xa4, 0x5d, - 0x04, 0x2b, 0xb9, 0x2e, 0x4c, 0x1b, 0x1b, 0x1d, 0x6f, 0x52, 0x51, 0xb9, - 0x70, 0x15, 0x50, 0xaa, 0x46, 0x4a, 0x66, 0x27, 0x23, 0x23, 0x61, 0x3b, - 0xfd, 0xf7, 0x37, 0x55, 0x1d, 0x1d, 0x1e, 0x55, 0x43, 0x47, 0xbb, 0x00, - 0x00, 0x01, 0x00, 0xd5, 0x00, 0x00, 0x04, 0x09, 0x06, 0x00, 0x00, 0x1f, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0x0c, - 0x37, 0x37, 0x0f, 0x4a, 0x36, 0x35, 0x84, 0x49, 0x52, 0x74, 0x26, 0x25, - 0x23, 0x01, 0x37, 0x01, 0x2b, 0x2c, 0x2c, 0x88, 0x5d, 0x47, 0x7c, 0x33, - 0x34, 0x50, 0x03, 0x35, 0x02, 0xcb, 0xfa, 0x00, 0x02, 0xbe, 0x46, 0x7e, - 0x2f, 0x2f, 0x38, 0x01, 0x01, 0x34, 0x2e, 0x2f, 0x81, 0x4c, 0xfd, 0x44, - 0x02, 0xbc, 0x57, 0x94, 0x36, 0x35, 0x3c, 0x2b, 0x25, 0x26, 0x67, 0x00, - 0x00, 0x02, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x05, 0xb8, 0x00, 0x09, - 0x00, 0x1b, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, - 0x21, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0xef, 0x01, 0x8d, 0xfe, - 0x73, 0x03, 0x43, 0xfe, 0x80, 0x64, 0x1d, 0x29, 0x28, 0x1f, 0x07, 0x08, - 0x09, 0x1b, 0x14, 0x15, 0x1b, 0x08, 0x08, 0x06, 0x04, 0x3a, 0x36, 0xfc, - 0x32, 0x36, 0x36, 0x04, 0x04, 0x01, 0x34, 0x1b, 0x2c, 0x2c, 0x1b, 0x0e, - 0x1b, 0x0b, 0x0a, 0x0c, 0x0c, 0x0a, 0x0b, 0x1b, 0x00, 0x02, 0x00, 0xb3, - 0xfe, 0x4b, 0x03, 0x2c, 0x05, 0xb9, 0x00, 0x1d, 0x00, 0x29, 0x00, 0x00, - 0x41, 0x15, 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, - 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x2f, 0x01, 0xa4, 0x38, 0x2f, - 0x30, 0x7d, 0x44, 0x10, 0x33, 0x1b, 0x1c, 0x37, 0x13, 0x04, 0x1c, 0x31, - 0x18, 0x18, 0x32, 0x1d, 0x5d, 0x92, 0x33, 0x33, 0x35, 0x6b, 0x1d, 0x2a, - 0x28, 0x1f, 0x20, 0x27, 0x28, 0x1f, 0x04, 0x3a, 0x36, 0xfc, 0x02, 0x6c, - 0x94, 0x2e, 0x2f, 0x29, 0x01, 0x02, 0x01, 0x05, 0x03, 0x30, 0x05, 0x06, - 0x02, 0x02, 0x02, 0x40, 0x3a, 0x3a, 0xa4, 0x63, 0x04, 0x34, 0x01, 0x35, - 0x1b, 0x2c, 0x2c, 0x1b, 0x1e, 0x2c, 0x2b, 0x00, 0x00, 0x01, 0x01, 0x01, - 0x00, 0x00, 0x04, 0x3e, 0x06, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, - 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, - 0xe3, 0x02, 0x13, 0x48, 0xfd, 0xcf, 0x02, 0x10, 0x50, 0xfd, 0xf4, 0x89, - 0x37, 0x37, 0x02, 0x4a, 0xfd, 0xb6, 0x02, 0x6e, 0x01, 0xcc, 0xfe, 0x39, - 0x7a, 0x04, 0x07, 0xfa, 0x00, 0x01, 0xbf, 0x00, 0x00, 0x01, 0x00, 0xef, - 0x00, 0x00, 0x04, 0x32, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x53, 0x15, - 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0xef, 0x01, 0x91, 0xfe, - 0x6f, 0x03, 0x43, 0xfe, 0x84, 0x06, 0x00, 0x36, 0xfa, 0x6c, 0x36, 0x36, - 0x05, 0xca, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x04, 0x79, 0x04, 0x4e, - 0x00, 0x3a, 0x00, 0x00, 0x53, 0x23, 0x11, 0x33, 0x13, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x13, 0x33, 0x13, - 0x34, 0x26, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x13, 0x33, 0x13, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x06, 0x06, 0x07, 0x87, 0x31, 0x31, 0x02, 0x0a, 0x1d, 0x1c, 0x1c, 0x59, - 0x46, 0x41, 0x4d, 0x15, 0x14, 0x0c, 0x01, 0x02, 0x31, 0x02, 0x01, 0x0b, - 0x21, 0x1d, 0x1d, 0x59, 0x42, 0x43, 0x4e, 0x14, 0x14, 0x0b, 0x02, 0x31, - 0x02, 0x10, 0x1a, 0x17, 0x65, 0x51, 0x34, 0x56, 0x22, 0x23, 0x32, 0x10, - 0x09, 0x22, 0x1c, 0x1c, 0x4f, 0x36, 0x66, 0x7b, 0x1f, 0x04, 0x3a, 0xfb, - 0xc6, 0x03, 0x14, 0x2c, 0x5c, 0x26, 0x25, 0x30, 0x02, 0x01, 0x2d, 0x22, - 0x23, 0x51, 0x23, 0xfc, 0xcc, 0x03, 0x34, 0x04, 0x07, 0x05, 0x23, 0x4a, - 0x1f, 0x1f, 0x28, 0x02, 0x02, 0x33, 0x26, 0x27, 0x58, 0x23, 0xfc, 0xe0, - 0x03, 0x20, 0x2d, 0x68, 0x2d, 0x2f, 0x3d, 0x1c, 0x17, 0x17, 0x3c, 0x21, - 0x21, 0x3d, 0x17, 0x17, 0x1b, 0x02, 0x5a, 0x46, 0x00, 0x01, 0x00, 0xd4, - 0x00, 0x00, 0x04, 0x06, 0x04, 0x4e, 0x00, 0x1f, 0x00, 0x00, 0x73, 0x33, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x11, 0x33, 0x03, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x11, 0x23, 0xd4, 0x37, 0x0f, 0x4a, 0x35, 0x35, - 0x84, 0x49, 0x52, 0x74, 0x25, 0x25, 0x23, 0x01, 0x37, 0x01, 0x2b, 0x2c, - 0x2c, 0x87, 0x5d, 0x47, 0x7c, 0x33, 0x34, 0x4f, 0x1a, 0x37, 0x02, 0xbe, - 0x46, 0x7e, 0x2f, 0x2f, 0x38, 0x01, 0x01, 0x34, 0x2e, 0x2f, 0x81, 0x4c, - 0xfd, 0x44, 0x02, 0xbc, 0x57, 0x94, 0x36, 0x35, 0x3c, 0x2b, 0x25, 0x25, - 0x67, 0x3c, 0x01, 0x04, 0x00, 0x02, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x04, 0x4e, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x53, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x8d, 0x01, 0x40, 0x3d, 0x3c, 0xb0, 0x71, 0x71, 0xaf, 0x3c, 0x3c, 0x3f, - 0x01, 0x01, 0x40, 0x3c, 0x3d, 0xaf, 0x71, 0x71, 0xaf, 0x3c, 0x3c, 0x40, - 0x35, 0x01, 0x39, 0x36, 0x35, 0x9b, 0x63, 0x63, 0x9c, 0x36, 0x35, 0x39, - 0x01, 0x01, 0x38, 0x35, 0x36, 0x9a, 0x64, 0x64, 0x9c, 0x35, 0x36, 0x39, - 0x02, 0x32, 0x2a, 0x69, 0xc3, 0x4b, 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, - 0x68, 0x2a, 0x69, 0xc3, 0x4b, 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, 0x92, - 0x2a, 0x5b, 0xaf, 0x44, 0x44, 0x54, 0x54, 0x44, 0x44, 0xaf, 0x5b, 0x2a, - 0x5c, 0xae, 0x44, 0x45, 0x53, 0x53, 0x44, 0x44, 0xaf, 0x00, 0x00, 0x02, - 0x00, 0xdc, 0xfe, 0x60, 0x04, 0x19, 0x04, 0x4e, 0x00, 0x1d, 0x00, 0x37, - 0x00, 0x00, 0x53, 0x33, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x35, 0x23, 0x01, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0xdc, 0x36, - 0x1c, 0x50, 0x2e, 0x2e, 0x64, 0x31, 0x74, 0xa2, 0x31, 0x31, 0x32, 0x02, - 0x36, 0x3d, 0x35, 0x97, 0x6b, 0x34, 0x65, 0x2d, 0x2d, 0x4d, 0x1b, 0x36, - 0x03, 0x06, 0x02, 0x27, 0x2f, 0x2b, 0x8a, 0x65, 0x35, 0x6c, 0x2f, 0x2f, - 0x4b, 0x14, 0x13, 0x45, 0x2e, 0x2e, 0x6d, 0x3b, 0x5f, 0x85, 0x2c, 0x35, - 0x2f, 0xfe, 0x60, 0x02, 0x3e, 0x2b, 0x42, 0x16, 0x17, 0x18, 0x64, 0x4d, - 0x4e, 0xc8, 0x60, 0x15, 0x6a, 0xd6, 0x51, 0x44, 0x51, 0x1c, 0x1a, 0x1a, - 0x4a, 0x2e, 0xb4, 0xfd, 0xee, 0x15, 0x58, 0xb8, 0x48, 0x42, 0x57, 0x1d, - 0x1c, 0x1c, 0x53, 0x36, 0x02, 0x16, 0x3a, 0x5f, 0x22, 0x22, 0x25, 0x4b, - 0x3b, 0x4c, 0xc1, 0x00, 0x00, 0x02, 0x00, 0xb1, 0xfe, 0x60, 0x03, 0xee, - 0x04, 0x4e, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x33, - 0x11, 0x23, 0x15, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0xb1, 0x30, 0x34, 0x34, 0x9e, 0x74, 0x30, 0x64, - 0x2e, 0x2e, 0x50, 0x1d, 0x36, 0x36, 0x1c, 0x4c, 0x2d, 0x2d, 0x65, 0x34, - 0x75, 0xa5, 0x2f, 0x36, 0x2d, 0x38, 0x23, 0x32, 0x2c, 0x8a, 0x68, 0x39, - 0x6d, 0x2e, 0x2e, 0x46, 0x14, 0x15, 0x4b, 0x2f, 0x2f, 0x6b, 0x35, 0x6a, - 0x8b, 0x2a, 0x2c, 0x26, 0x02, 0x28, 0x15, 0x60, 0xca, 0x4e, 0x4d, 0x62, - 0x18, 0x17, 0x16, 0x42, 0x2a, 0xfd, 0xc3, 0x05, 0xda, 0xb4, 0x2e, 0x4a, - 0x1a, 0x1a, 0x1c, 0x5e, 0x50, 0x5b, 0xbc, 0x76, 0x15, 0x55, 0xb0, 0x4e, - 0x44, 0x59, 0x26, 0x22, 0x22, 0x5e, 0x39, 0xfd, 0xe8, 0x35, 0x53, 0x1c, - 0x1c, 0x1d, 0x5e, 0x43, 0x49, 0xb3, 0x00, 0x01, 0x01, 0x86, 0x00, 0x00, - 0x04, 0x34, 0x04, 0x4f, 0x00, 0x15, 0x00, 0x00, 0x41, 0x26, 0x06, 0x07, - 0x35, 0x27, 0x23, 0x11, 0x33, 0x03, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x03, 0xa7, 0xb0, 0xfa, 0x3c, 0x06, - 0x35, 0x3e, 0x03, 0x16, 0x5f, 0x41, 0x40, 0x9d, 0x53, 0x23, 0x47, 0x1d, - 0x06, 0x21, 0x48, 0x04, 0x4e, 0x01, 0x91, 0x85, 0x45, 0xbc, 0xfb, 0xc6, - 0x02, 0xb3, 0x63, 0x89, 0x2b, 0x2a, 0x25, 0x09, 0x05, 0x33, 0x07, 0x09, - 0x00, 0x01, 0x00, 0xcc, 0xff, 0xec, 0x04, 0x21, 0x04, 0x4e, 0x00, 0x49, - 0x00, 0x00, 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x03, 0xeb, 0x2f, 0x29, 0x3c, 0x8e, 0x45, 0x3d, - 0x82, 0x36, 0x37, 0x4d, 0x08, 0x37, 0x06, 0x50, 0x3f, 0x3e, 0x9b, 0x4a, - 0x4a, 0xa6, 0x42, 0x2c, 0x3f, 0x4c, 0x3b, 0x3c, 0x8d, 0x40, 0x35, 0x87, - 0x37, 0x36, 0x3f, 0x45, 0x33, 0x33, 0x75, 0x32, 0x3b, 0x7f, 0x36, 0x35, - 0x46, 0x02, 0x38, 0x06, 0x4c, 0x3a, 0x3b, 0x92, 0x4c, 0x3e, 0x8b, 0x36, - 0x3d, 0x4c, 0x4e, 0x39, 0x42, 0x7c, 0x48, 0x38, 0x8e, 0x37, 0x2f, 0x3f, - 0x01, 0x09, 0x33, 0x4d, 0x1d, 0x27, 0x23, 0x16, 0x1c, 0x1b, 0x5d, 0x47, - 0x50, 0x70, 0x23, 0x22, 0x22, 0x26, 0x2e, 0x1f, 0x65, 0x44, 0x51, 0x6c, - 0x23, 0x23, 0x2a, 0x0e, 0x0b, 0x22, 0x1e, 0x1b, 0x58, 0x3e, 0x3f, 0x53, - 0x19, 0x19, 0x15, 0x1c, 0x1e, 0x1f, 0x61, 0x45, 0x54, 0x75, 0x25, 0x25, - 0x22, 0x1e, 0x1e, 0x22, 0x69, 0x4a, 0x51, 0x69, 0x1d, 0x21, 0x22, 0x0f, - 0x0c, 0x2b, 0x22, 0x1d, 0x58, 0x00, 0x00, 0x01, 0x00, 0xc5, 0xff, 0xec, - 0x03, 0xf4, 0x05, 0x5e, 0x00, 0x23, 0x00, 0x00, 0x41, 0x23, 0x11, 0x21, - 0x15, 0x21, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x11, 0x21, 0x35, 0x21, 0x02, 0x3d, 0x3a, 0xfe, - 0xc2, 0x01, 0x3e, 0x02, 0x32, 0x2c, 0x2c, 0x78, 0x48, 0x1c, 0x36, 0x1b, - 0x0e, 0x1c, 0x0e, 0x0b, 0x0d, 0x1c, 0x0d, 0x1a, 0x34, 0x1b, 0x3a, 0x61, - 0x24, 0x24, 0x29, 0x02, 0x01, 0x86, 0xfe, 0x7a, 0x05, 0x5e, 0xfe, 0xdc, - 0x37, 0xfd, 0x00, 0x4e, 0x6a, 0x21, 0x21, 0x1d, 0x01, 0x03, 0x01, 0x04, - 0x03, 0x33, 0x01, 0x03, 0x01, 0x02, 0x02, 0x18, 0x1b, 0x1a, 0x55, 0x3f, - 0x03, 0x00, 0x37, 0x00, 0x00, 0x01, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, - 0x04, 0x3a, 0x00, 0x1c, 0x00, 0x00, 0x61, 0x33, 0x11, 0x23, 0x13, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, - 0x23, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x03, - 0xc4, 0x38, 0x38, 0x01, 0x0e, 0x41, 0x31, 0x32, 0x82, 0x4e, 0x51, 0x74, - 0x25, 0x26, 0x24, 0x01, 0x36, 0x01, 0x2c, 0x2d, 0x2c, 0x89, 0x5e, 0x8b, - 0xc1, 0x34, 0x04, 0x3a, 0xfd, 0x13, 0x46, 0x6f, 0x26, 0x27, 0x29, 0x38, - 0x31, 0x31, 0x82, 0x4b, 0x02, 0xb1, 0xfd, 0x51, 0x58, 0x98, 0x37, 0x38, - 0x40, 0x71, 0x64, 0x00, 0x00, 0x01, 0x00, 0x74, 0x00, 0x00, 0x04, 0x54, - 0x04, 0x3a, 0x00, 0x08, 0x00, 0x00, 0x61, 0x33, 0x01, 0x23, 0x01, 0x07, - 0x27, 0x01, 0x23, 0x02, 0x48, 0x37, 0x01, 0xd5, 0x3d, 0xfe, 0x69, 0x1c, - 0x1d, 0xfe, 0x6a, 0x3d, 0x04, 0x3a, 0xfc, 0x56, 0x41, 0x43, 0x03, 0xa8, - 0x00, 0x01, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x91, 0x04, 0x3a, 0x00, 0x12, - 0x00, 0x00, 0x61, 0x33, 0x13, 0x37, 0x17, 0x13, 0x33, 0x13, 0x23, 0x03, - 0x07, 0x27, 0x03, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x01, 0x46, 0x31, - 0xd2, 0x26, 0x23, 0xd5, 0x31, 0xf9, 0x39, 0xb0, 0x2b, 0x34, 0xc1, 0x32, - 0xc1, 0x35, 0x2a, 0xb0, 0x39, 0x03, 0x2d, 0xac, 0xac, 0xfc, 0xd3, 0x04, - 0x3a, 0xfc, 0xff, 0xd5, 0xd5, 0x03, 0x01, 0xfc, 0xff, 0xd5, 0xd5, 0x03, - 0x01, 0x00, 0x00, 0x01, 0x00, 0x96, 0x00, 0x00, 0x04, 0x51, 0x04, 0x3a, - 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x01, - 0x33, 0x01, 0x01, 0x23, 0x02, 0x74, 0xfe, 0x80, 0x48, 0x01, 0xa5, 0xfe, - 0x45, 0x47, 0x01, 0x96, 0x01, 0x98, 0x46, 0xfe, 0x45, 0x01, 0xa5, 0x48, - 0x02, 0x5a, 0x01, 0xe0, 0xfd, 0xf1, 0xfd, 0xd5, 0x01, 0xfc, 0xfe, 0x04, - 0x02, 0x2b, 0x02, 0x0f, 0x00, 0x01, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, - 0x04, 0x3a, 0x00, 0x1b, 0x00, 0x00, 0x53, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x01, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x17, 0x16, 0x16, 0xef, 0x42, - 0x66, 0x28, 0x27, 0x3d, 0x19, 0x02, 0x39, 0x41, 0xfe, 0x56, 0x1b, 0x1e, - 0xfe, 0x42, 0x3f, 0x01, 0xfc, 0x4b, 0x15, 0x36, 0x23, 0x23, 0x58, 0x36, - 0x15, 0x2a, 0x14, 0x02, 0x17, 0x2d, 0xfe, 0x4b, 0x27, 0x23, 0x22, 0x5d, - 0x38, 0x04, 0xee, 0xfc, 0x4e, 0x3e, 0x3f, 0x03, 0xb1, 0xfb, 0xc8, 0xac, - 0x2f, 0x4f, 0x1c, 0x1d, 0x1f, 0x06, 0x03, 0x33, 0x05, 0x06, 0x00, 0x01, - 0x00, 0x89, 0x00, 0x00, 0x04, 0x57, 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, - 0x77, 0x01, 0x37, 0x21, 0x15, 0x21, 0x01, 0x07, 0x21, 0x35, 0xd9, 0x03, - 0x39, 0x01, 0xfc, 0x9a, 0x03, 0x16, 0xfc, 0xc7, 0x01, 0x03, 0xce, 0x36, - 0x03, 0xd4, 0x30, 0x37, 0xfc, 0x29, 0x2c, 0x36, 0x00, 0x03, 0x00, 0xac, - 0xff, 0xec, 0x04, 0x27, 0x05, 0xc5, 0x00, 0x19, 0x00, 0x2a, 0x00, 0x3b, - 0x00, 0x00, 0x41, 0x11, 0x26, 0x02, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x12, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x05, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x13, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, 0x16, - 0x16, 0x17, 0x04, 0x27, 0x02, 0x52, 0x5f, 0x2f, 0x88, 0x54, 0x7b, 0xa8, - 0x35, 0x35, 0x30, 0x53, 0x65, 0x30, 0x84, 0x53, 0x7e, 0xaa, 0x33, 0x33, - 0x2e, 0xfc, 0xd3, 0x0d, 0x0b, 0x29, 0x2d, 0x33, 0x8d, 0x71, 0x4c, 0x75, - 0x2c, 0x2b, 0x3c, 0x12, 0x22, 0x01, 0x24, 0x2d, 0x2a, 0x99, 0x71, 0x4a, - 0x73, 0x2b, 0x2b, 0x3c, 0x13, 0x02, 0xd4, 0x0a, 0x09, 0x01, 0x02, 0x52, - 0x01, 0x0c, 0x8d, 0x01, 0x1e, 0x59, 0x2c, 0x37, 0x6c, 0x58, 0x58, 0xe1, - 0x6a, 0xfe, 0xf4, 0x8e, 0xfe, 0xe8, 0x5f, 0x2e, 0x33, 0x72, 0x57, 0x5a, - 0xd8, 0x67, 0x35, 0x6b, 0x34, 0x01, 0x0a, 0x5f, 0xd6, 0x49, 0x53, 0x60, - 0x31, 0x2a, 0x2a, 0x70, 0x3f, 0xfd, 0xf9, 0x5d, 0xc7, 0x51, 0x53, 0x6a, - 0x2f, 0x28, 0x28, 0x6b, 0x3c, 0x02, 0xda, 0x31, 0x63, 0x30, 0x00, 0x01, - 0x00, 0xe6, 0x00, 0x00, 0x02, 0xc7, 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, - 0x61, 0x11, 0x23, 0x05, 0x15, 0x25, 0x11, 0x02, 0xc7, 0x13, 0xfe, 0x32, - 0x01, 0xaa, 0x05, 0xb0, 0xd1, 0x3c, 0xc7, 0xfa, 0x96, 0x00, 0x00, 0x01, - 0x00, 0x70, 0x00, 0x00, 0x03, 0xfb, 0x05, 0xc4, 0x00, 0x2a, 0x00, 0x00, - 0x61, 0x35, 0x21, 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x15, 0x03, 0xfb, 0xfc, 0xe0, 0x01, - 0xa6, 0x30, 0x69, 0x2c, 0x2c, 0x3b, 0x3d, 0x37, 0x37, 0x96, 0x59, 0x5c, - 0x97, 0x37, 0x37, 0x3f, 0x03, 0x36, 0x03, 0x36, 0x30, 0x2f, 0x84, 0x51, - 0x4d, 0x82, 0x30, 0x2f, 0x35, 0x32, 0x26, 0x27, 0x5c, 0x2a, 0xfe, 0x23, - 0x36, 0x01, 0xec, 0x37, 0x7c, 0x44, 0x44, 0x92, 0x4e, 0x5b, 0x91, 0x33, - 0x33, 0x35, 0x45, 0x3a, 0x3b, 0x9d, 0x58, 0x4d, 0x89, 0x34, 0x33, 0x3c, - 0x2e, 0x2b, 0x2c, 0x7d, 0x4f, 0x45, 0x83, 0x3d, 0x3d, 0x6e, 0x31, 0xfd, - 0xda, 0x36, 0x00, 0x01, 0x00, 0x64, 0xff, 0xec, 0x03, 0xec, 0x05, 0xc4, - 0x00, 0x4c, 0x00, 0x00, 0x41, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x9e, 0x6f, - 0x50, 0x99, 0x3c, 0x3b, 0x49, 0x3b, 0x33, 0x33, 0x8b, 0x50, 0x53, 0x94, - 0x38, 0x39, 0x45, 0x03, 0x36, 0x03, 0x4d, 0x40, 0x3f, 0xa8, 0x5f, 0x5a, - 0x9f, 0x3b, 0x3a, 0x44, 0x32, 0x2b, 0x2b, 0x73, 0x41, 0x3a, 0x67, 0x27, - 0x26, 0x2e, 0x3e, 0x37, 0x38, 0x96, 0x58, 0x59, 0x9a, 0x3a, 0x3a, 0x44, - 0x03, 0x36, 0x03, 0x3c, 0x32, 0x32, 0x87, 0x4e, 0x4c, 0x83, 0x30, 0x30, - 0x36, 0x46, 0x38, 0x38, 0x8d, 0x46, 0x03, 0x02, 0x38, 0x01, 0x23, 0x27, - 0x27, 0x7e, 0x5c, 0x54, 0x81, 0x2c, 0x2d, 0x2e, 0x34, 0x31, 0x30, 0x89, - 0x55, 0x61, 0x9d, 0x37, 0x38, 0x3c, 0x39, 0x35, 0x34, 0x96, 0x5e, 0x4d, - 0x78, 0x2c, 0x2c, 0x3a, 0x0f, 0x12, 0x3b, 0x2a, 0x2a, 0x6d, 0x43, 0x5a, - 0x92, 0x34, 0x33, 0x38, 0x3a, 0x35, 0x35, 0x94, 0x5a, 0x4f, 0x80, 0x2e, - 0x2d, 0x32, 0x2f, 0x2b, 0x2c, 0x7d, 0x4e, 0x50, 0x75, 0x27, 0x27, 0x27, - 0x01, 0x00, 0x00, 0x02, 0x00, 0x5d, 0x00, 0x00, 0x04, 0x51, 0x05, 0xb0, - 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x00, 0x41, 0x11, 0x23, 0x01, 0x15, 0x21, - 0x11, 0x33, 0x11, 0x33, 0x35, 0x21, 0x01, 0x37, 0x11, 0x03, 0x55, 0x41, - 0xfd, 0x49, 0x02, 0xc2, 0x36, 0xfc, 0xfc, 0x60, 0x02, 0x1a, 0x54, 0x01, - 0xc3, 0x03, 0xed, 0xfb, 0xfb, 0x1e, 0xfe, 0x73, 0x01, 0x8d, 0x36, 0x03, - 0x22, 0x8a, 0xfc, 0x54, 0x00, 0x01, 0x00, 0xe8, 0xff, 0xec, 0x04, 0x32, - 0x05, 0xb0, 0x00, 0x30, 0x00, 0x00, 0x41, 0x17, 0x36, 0x36, 0x17, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x13, 0x21, 0x35, 0x21, 0x01, 0x19, 0x29, 0x45, 0xa2, - 0x5c, 0x57, 0x8a, 0x31, 0x30, 0x34, 0x28, 0x2b, 0x2b, 0x87, 0x5e, 0x52, - 0x83, 0x30, 0x30, 0x3b, 0x09, 0x37, 0x0a, 0x44, 0x38, 0x37, 0x97, 0x5c, - 0x6a, 0x9b, 0x33, 0x32, 0x30, 0x3d, 0x38, 0x39, 0x9e, 0x62, 0x50, 0xa2, - 0x3f, 0x3b, 0x02, 0x95, 0xfd, 0x3a, 0x02, 0xfa, 0x10, 0x3e, 0x37, 0x01, - 0x3f, 0x36, 0x36, 0x91, 0x54, 0x57, 0x9b, 0x3a, 0x3b, 0x45, 0x31, 0x2e, - 0x2e, 0x80, 0x50, 0x5a, 0x94, 0x35, 0x35, 0x3b, 0x4e, 0x43, 0x42, 0xaf, - 0x62, 0x5f, 0xa5, 0x3d, 0x3d, 0x46, 0x30, 0x31, 0x02, 0x48, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x9e, 0xff, 0xec, 0x04, 0x13, 0x05, 0xc4, 0x00, 0x27, - 0x00, 0x40, 0x00, 0x00, 0x41, 0x23, 0x06, 0x04, 0x07, 0x06, 0x02, 0x07, - 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x03, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x66, 0x13, - 0xb4, 0xfe, 0xf8, 0x54, 0x57, 0x4d, 0x01, 0x01, 0x43, 0x3d, 0x3d, 0xaf, - 0x6d, 0x64, 0x9a, 0x34, 0x34, 0x35, 0x38, 0x35, 0x36, 0x9d, 0x65, 0x3f, - 0x79, 0x35, 0x36, 0x58, 0x1e, 0x07, 0x57, 0x50, 0x4f, 0xe8, 0x99, 0x13, - 0xff, 0x5a, 0x8c, 0x30, 0x2f, 0x31, 0x2e, 0x2d, 0x2d, 0x85, 0x58, 0x62, - 0x9b, 0x36, 0x36, 0x3a, 0x01, 0x0f, 0x50, 0x37, 0x37, 0x83, 0x05, 0xc4, - 0x02, 0x88, 0x74, 0x79, 0xfe, 0xe5, 0x9e, 0xa8, 0x67, 0xba, 0x46, 0x47, - 0x52, 0x59, 0x47, 0x47, 0xb3, 0x5a, 0x5e, 0xad, 0x42, 0x42, 0x4e, 0x1f, - 0x1d, 0x1e, 0x54, 0x34, 0x8d, 0xfa, 0x5e, 0x5e, 0x6f, 0x01, 0xfd, 0xf9, - 0x45, 0x3a, 0x3a, 0x99, 0x55, 0x4e, 0x9f, 0x40, 0x40, 0x51, 0x01, 0x01, - 0x4b, 0x40, 0x3f, 0xa7, 0x5c, 0x79, 0x42, 0x6a, 0x26, 0x26, 0x29, 0x00, - 0x00, 0x01, 0x00, 0x8a, 0x00, 0x00, 0x04, 0x2c, 0x05, 0xb0, 0x00, 0x06, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x21, 0x01, 0x33, 0x04, 0x2c, 0xfc, - 0x5e, 0x03, 0x64, 0xfd, 0x86, 0x37, 0x05, 0x8e, 0x22, 0x36, 0xfa, 0x86, - 0x00, 0x03, 0x00, 0xb1, 0xff, 0xec, 0x04, 0x50, 0x05, 0xc4, 0x00, 0x2f, - 0x00, 0x47, 0x00, 0x5f, 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x26, 0x44, 0x3a, 0x3a, 0x9b, - 0x56, 0x57, 0x99, 0x39, 0x39, 0x41, 0x2b, 0x25, 0x25, 0x63, 0x39, 0x40, - 0x72, 0x2b, 0x2b, 0x32, 0x4c, 0x41, 0x40, 0xa8, 0x5b, 0x5a, 0xa8, 0x41, - 0x40, 0x4c, 0x34, 0x2b, 0x2c, 0x74, 0x40, 0x39, 0x65, 0x26, 0x25, 0x2c, - 0x0d, 0x46, 0x39, 0x39, 0x93, 0x4d, 0x4d, 0x93, 0x3a, 0x3a, 0x46, 0x47, - 0x3a, 0x39, 0x92, 0x4c, 0x4c, 0x93, 0x3a, 0x3a, 0x47, 0x29, 0x3f, 0x33, - 0x34, 0x85, 0x46, 0x47, 0x84, 0x33, 0x33, 0x3e, 0x3b, 0x33, 0x32, 0x84, - 0x49, 0x47, 0x86, 0x34, 0x33, 0x3f, 0x04, 0x3e, 0x5a, 0x91, 0x33, 0x32, - 0x36, 0x36, 0x32, 0x33, 0x91, 0x5a, 0x42, 0x6d, 0x2b, 0x2c, 0x3d, 0x12, - 0x11, 0x41, 0x2e, 0x2e, 0x78, 0x48, 0x63, 0x95, 0x32, 0x32, 0x33, 0x33, - 0x33, 0x32, 0x95, 0x62, 0x48, 0x78, 0x2e, 0x2e, 0x41, 0x11, 0x12, 0x3e, - 0x2b, 0x2b, 0x6e, 0xfd, 0x79, 0x54, 0x80, 0x2a, 0x2b, 0x2b, 0x2a, 0x2b, - 0x2a, 0x80, 0x55, 0x53, 0x81, 0x2c, 0x2b, 0x2d, 0x2d, 0x2c, 0x2c, 0x80, - 0x02, 0x7a, 0x4c, 0x76, 0x29, 0x29, 0x2b, 0x2a, 0x29, 0x29, 0x76, 0x4d, - 0x4d, 0x7b, 0x2b, 0x2a, 0x2e, 0x2f, 0x2b, 0x2b, 0x7b, 0x00, 0x00, 0x02, - 0x00, 0xa2, 0xff, 0xec, 0x04, 0x1c, 0x05, 0xc4, 0x00, 0x28, 0x00, 0x41, - 0x00, 0x00, 0x65, 0x23, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x12, 0x35, - 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x13, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x87, 0x20, 0x02, - 0x22, 0xab, 0xf8, 0x51, 0x51, 0x50, 0x02, 0x36, 0x36, 0x33, 0xb1, 0x7c, - 0x67, 0xa0, 0x36, 0x37, 0x38, 0x39, 0x36, 0x36, 0x9c, 0x63, 0x48, 0x7f, - 0x36, 0x35, 0x53, 0x1b, 0x01, 0x4a, 0x4b, 0x4c, 0xe3, 0x25, 0x57, 0x89, - 0x2e, 0x2f, 0x31, 0x30, 0x2d, 0x2e, 0x91, 0x5e, 0x6f, 0x99, 0x30, 0x30, - 0x2b, 0x01, 0x12, 0x4f, 0x37, 0x38, 0x87, 0x22, 0x36, 0x01, 0x77, 0x66, - 0x66, 0x01, 0x15, 0x9f, 0xa3, 0x6f, 0xd1, 0x51, 0x4d, 0x5f, 0x01, 0x5c, - 0x49, 0x4a, 0xb9, 0x5d, 0x5b, 0xb0, 0x45, 0x45, 0x55, 0x26, 0x24, 0x23, - 0x62, 0x3b, 0x10, 0x91, 0xf9, 0x5b, 0x5c, 0x6a, 0x01, 0xe7, 0x4d, 0x3e, - 0x3d, 0x9c, 0x50, 0x4e, 0xa0, 0x44, 0x46, 0x56, 0x02, 0x01, 0x5a, 0x49, - 0x4a, 0xbb, 0x61, 0x3b, 0x46, 0x76, 0x2a, 0x2b, 0x30, 0x00, 0x00, 0x01, - 0x01, 0xaa, 0x02, 0x99, 0x02, 0xd8, 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x05, 0x15, 0x37, 0x11, 0x02, 0xd8, 0x09, 0xfe, 0xdb, - 0xf8, 0x02, 0x99, 0x03, 0x17, 0x61, 0x35, 0x51, 0xfd, 0x2e, 0x00, 0x01, - 0x01, 0x5a, 0x02, 0x9b, 0x03, 0x8f, 0x05, 0xbb, 0x00, 0x2a, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x15, 0x03, 0x8f, 0xfe, 0x24, 0xfb, - 0x1c, 0x3e, 0x1b, 0x1a, 0x24, 0x29, 0x22, 0x23, 0x5a, 0x31, 0x36, 0x60, - 0x24, 0x25, 0x2c, 0x03, 0x36, 0x03, 0x22, 0x1d, 0x1c, 0x4d, 0x2d, 0x27, - 0x47, 0x1b, 0x1b, 0x1f, 0x1e, 0x17, 0x17, 0x35, 0x18, 0xfe, 0xde, 0x02, - 0x9b, 0x31, 0xf8, 0x1c, 0x41, 0x24, 0x24, 0x4f, 0x2b, 0x35, 0x51, 0x1b, - 0x1b, 0x1c, 0x21, 0x1e, 0x1f, 0x59, 0x37, 0x2e, 0x46, 0x18, 0x18, 0x19, - 0x15, 0x15, 0x15, 0x3f, 0x2a, 0x25, 0x43, 0x1e, 0x1f, 0x37, 0x18, 0xfe, - 0xd9, 0x2c, 0x00, 0x01, 0x01, 0x5f, 0x02, 0x8f, 0x03, 0x8c, 0x05, 0xba, - 0x00, 0x4c, 0x00, 0x00, 0x41, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x02, 0x1d, 0x47, - 0x29, 0x55, 0x24, 0x23, 0x2d, 0x25, 0x1e, 0x1f, 0x4e, 0x28, 0x2b, 0x50, - 0x20, 0x21, 0x29, 0x04, 0x36, 0x04, 0x33, 0x27, 0x27, 0x64, 0x36, 0x32, - 0x61, 0x26, 0x26, 0x2f, 0x1e, 0x18, 0x19, 0x42, 0x24, 0x20, 0x3a, 0x17, - 0x16, 0x1b, 0x2a, 0x24, 0x24, 0x5d, 0x31, 0x33, 0x5c, 0x24, 0x24, 0x2e, - 0x04, 0x35, 0x04, 0x25, 0x1d, 0x1c, 0x49, 0x29, 0x26, 0x49, 0x1d, 0x1c, - 0x22, 0x2b, 0x20, 0x21, 0x4e, 0x25, 0x04, 0x44, 0x31, 0x01, 0x0f, 0x12, - 0x13, 0x40, 0x32, 0x2d, 0x42, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x43, - 0x2e, 0x39, 0x56, 0x1c, 0x1d, 0x1c, 0x1b, 0x1c, 0x1c, 0x53, 0x38, 0x2b, - 0x40, 0x18, 0x17, 0x1e, 0x08, 0x0a, 0x1f, 0x16, 0x16, 0x3a, 0x24, 0x36, - 0x52, 0x1c, 0x1b, 0x1b, 0x1c, 0x1c, 0x1c, 0x51, 0x35, 0x2a, 0x40, 0x15, - 0x15, 0x15, 0x14, 0x14, 0x15, 0x3f, 0x2a, 0x2c, 0x3c, 0x13, 0x13, 0x10, - 0x01, 0x00, 0x00, 0x02, 0x01, 0x3f, 0x02, 0xb3, 0x03, 0x8f, 0x05, 0xc4, - 0x00, 0x34, 0x00, 0x48, 0x00, 0x00, 0x41, 0x33, 0x26, 0x26, 0x35, 0x11, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x15, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x25, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x33, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x54, 0x3b, 0x0d, 0x0e, - 0x02, 0x24, 0x21, 0x22, 0x60, 0x3e, 0x38, 0x68, 0x2a, 0x2a, 0x36, 0x04, - 0x37, 0x03, 0x2c, 0x22, 0x22, 0x56, 0x2e, 0x33, 0x4c, 0x1a, 0x1a, 0x1b, - 0x02, 0xb2, 0x37, 0x75, 0x30, 0x30, 0x3e, 0x2c, 0x24, 0x24, 0x5d, 0x30, - 0x2c, 0x54, 0x23, 0x1a, 0x2d, 0x12, 0x02, 0x0b, 0xfe, 0xf8, 0x26, 0x4a, - 0x1c, 0x1d, 0x23, 0x36, 0x29, 0x29, 0x61, 0x2c, 0xb1, 0x0a, 0x36, 0x24, - 0x24, 0x50, 0x02, 0xc1, 0x2d, 0x59, 0x2f, 0x01, 0x3a, 0x3c, 0x65, 0x25, - 0x24, 0x2a, 0x1c, 0x1d, 0x1d, 0x57, 0x3c, 0x32, 0x45, 0x15, 0x15, 0x12, - 0x21, 0x1d, 0x1e, 0x51, 0x30, 0x45, 0x01, 0x16, 0x1b, 0x1b, 0x58, 0x43, - 0x36, 0x4f, 0x1a, 0x1a, 0x18, 0x01, 0x19, 0x17, 0x11, 0x2d, 0x1a, 0x20, - 0x3d, 0x0b, 0x11, 0x13, 0x12, 0x3d, 0x2b, 0x37, 0x44, 0x13, 0x12, 0x0d, - 0x01, 0xac, 0x25, 0x3b, 0x14, 0x15, 0x17, 0x00, 0x00, 0x02, 0x01, 0x36, - 0x02, 0xb2, 0x03, 0x97, 0x05, 0xc4, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, - 0x41, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x36, 0x01, 0x2a, 0x27, 0x27, 0x71, 0x48, - 0x48, 0x6f, 0x27, 0x27, 0x29, 0x01, 0x01, 0x2a, 0x27, 0x27, 0x70, 0x48, - 0x48, 0x70, 0x26, 0x27, 0x2a, 0x35, 0x01, 0x21, 0x20, 0x1f, 0x5c, 0x3d, - 0x3d, 0x5d, 0x20, 0x20, 0x21, 0x01, 0x01, 0x21, 0x1f, 0x20, 0x5c, 0x3d, - 0x3e, 0x5d, 0x1f, 0x20, 0x21, 0x04, 0x75, 0x75, 0x44, 0x79, 0x2e, 0x2e, - 0x35, 0x36, 0x2e, 0x2e, 0x79, 0x43, 0x75, 0x43, 0x7a, 0x2e, 0x2e, 0x36, - 0x36, 0x2e, 0x2e, 0x7a, 0xb8, 0x75, 0x38, 0x66, 0x27, 0x26, 0x2e, 0x2d, - 0x26, 0x27, 0x66, 0x39, 0x75, 0x39, 0x65, 0x26, 0x27, 0x2d, 0x2c, 0x26, - 0x26, 0x66, 0x00, 0x03, 0x00, 0x45, 0x00, 0x00, 0x04, 0x82, 0x05, 0xb3, - 0x00, 0x06, 0x00, 0x31, 0x00, 0x35, 0x00, 0x00, 0x41, 0x11, 0x23, 0x05, - 0x15, 0x37, 0x11, 0x01, 0x35, 0x21, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x15, 0x25, 0x01, - 0x27, 0x01, 0x01, 0x55, 0x08, 0xfe, 0xf8, 0xe0, 0x03, 0x5d, 0xfe, 0x54, - 0xe2, 0x19, 0x38, 0x18, 0x18, 0x20, 0x25, 0x1f, 0x1f, 0x51, 0x2c, 0x31, - 0x56, 0x21, 0x21, 0x27, 0x03, 0x30, 0x03, 0x1f, 0x19, 0x1a, 0x45, 0x29, - 0x23, 0x40, 0x18, 0x18, 0x1c, 0x1b, 0x14, 0x15, 0x30, 0x15, 0xfe, 0xfb, - 0xfe, 0x98, 0x02, 0x17, 0x33, 0xfd, 0xea, 0x02, 0xeb, 0x02, 0xc8, 0x57, - 0x30, 0x49, 0xfd, 0x76, 0xfd, 0x15, 0x2c, 0xdf, 0x1a, 0x3a, 0x20, 0x21, - 0x47, 0x27, 0x2f, 0x49, 0x19, 0x18, 0x19, 0x1e, 0x1b, 0x1c, 0x50, 0x31, - 0x29, 0x3f, 0x16, 0x15, 0x17, 0x13, 0x13, 0x13, 0x38, 0x26, 0x22, 0x3c, - 0x1b, 0x1c, 0x31, 0x16, 0xfe, 0xf7, 0x28, 0x8b, 0x04, 0x72, 0x1f, 0xfb, - 0x8e, 0x00, 0x00, 0x04, 0x00, 0x3d, 0x00, 0x00, 0x04, 0x76, 0x05, 0xb7, - 0x00, 0x06, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x05, 0x15, 0x37, 0x11, 0x01, 0x11, 0x23, 0x01, 0x17, 0x21, 0x15, - 0x33, 0x35, 0x33, 0x35, 0x21, 0x01, 0x37, 0x11, 0x05, 0x01, 0x27, 0x01, - 0x01, 0x4d, 0x08, 0xfe, 0xf8, 0xe0, 0x02, 0xd5, 0x36, 0xfe, 0x89, 0x01, - 0x01, 0x7c, 0x30, 0x84, 0xfe, 0x0e, 0x01, 0x17, 0x27, 0xfd, 0x89, 0x02, - 0x17, 0x33, 0xfd, 0xea, 0x02, 0xef, 0x02, 0xc8, 0x57, 0x30, 0x49, 0xfd, - 0x76, 0xfd, 0xf5, 0x01, 0xe2, 0xfe, 0x0e, 0x1c, 0xb8, 0xb8, 0x2c, 0x01, - 0x6a, 0x40, 0xfe, 0x56, 0x59, 0x04, 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x04, - 0x00, 0x3d, 0x00, 0x01, 0x04, 0x8e, 0x05, 0xb8, 0x00, 0x0a, 0x00, 0x0e, - 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x00, 0x65, 0x11, 0x23, 0x01, 0x17, 0x21, - 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x01, 0x37, 0x11, 0x01, 0x15, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x13, 0x01, 0x27, 0x01, 0x04, 0x0a, 0x36, 0xfe, 0x89, 0x01, - 0x01, 0x7c, 0x30, 0x84, 0xfe, 0x0e, 0x01, 0x17, 0x27, 0xfd, 0x0e, 0x40, - 0x25, 0x4d, 0x20, 0x20, 0x28, 0x21, 0x1c, 0x1b, 0x46, 0x24, 0x27, 0x48, - 0x1d, 0x1d, 0x25, 0x04, 0x31, 0x04, 0x2e, 0x23, 0x23, 0x5a, 0x31, 0x2d, - 0x57, 0x22, 0x22, 0x2b, 0x1b, 0x16, 0x16, 0x3c, 0x20, 0x1d, 0x34, 0x14, - 0x14, 0x19, 0x26, 0x21, 0x20, 0x54, 0x2c, 0x2e, 0x52, 0x21, 0x20, 0x2a, - 0x03, 0x2f, 0x04, 0x21, 0x1a, 0x1a, 0x41, 0x25, 0x22, 0x42, 0x1a, 0x19, - 0x1f, 0x27, 0x1d, 0x1d, 0x46, 0x22, 0x70, 0x02, 0x17, 0x33, 0xfd, 0xea, - 0xe5, 0x01, 0xe2, 0xfe, 0x0e, 0x1c, 0xb8, 0xb8, 0x2c, 0x01, 0x6a, 0x40, - 0xfe, 0x56, 0x03, 0x82, 0x2c, 0x01, 0x0d, 0x11, 0x10, 0x3a, 0x2d, 0x28, - 0x3c, 0x13, 0x13, 0x12, 0x14, 0x14, 0x15, 0x3c, 0x29, 0x33, 0x4d, 0x1a, - 0x1a, 0x19, 0x18, 0x1a, 0x19, 0x4b, 0x32, 0x27, 0x39, 0x15, 0x16, 0x1b, - 0x07, 0x09, 0x1c, 0x13, 0x14, 0x34, 0x21, 0x30, 0x4a, 0x19, 0x19, 0x18, - 0x19, 0x19, 0x1a, 0x48, 0x30, 0x26, 0x39, 0x13, 0x13, 0x13, 0x12, 0x13, - 0x12, 0x39, 0x25, 0x28, 0x36, 0x11, 0x11, 0x0f, 0x01, 0xfc, 0x1c, 0x04, - 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x02, 0x00, 0x4e, 0x00, 0x00, 0x04, 0x7c, - 0x05, 0xb0, 0x00, 0x0f, 0x00, 0x12, 0x00, 0x00, 0x61, 0x35, 0x21, 0x03, - 0x21, 0x35, 0x21, 0x03, 0x21, 0x35, 0x21, 0x01, 0x33, 0x13, 0x21, 0x13, - 0x01, 0x01, 0x13, 0x04, 0x7c, 0xfe, 0x52, 0x11, 0x01, 0x67, 0xfe, 0x97, - 0x10, 0x01, 0xab, 0xfe, 0x18, 0xfd, 0xe0, 0x35, 0x9e, 0x01, 0x74, 0x0b, - 0xfe, 0x95, 0x01, 0x48, 0x17, 0x36, 0x02, 0xa6, 0x36, 0x02, 0x68, 0x36, - 0xfa, 0x50, 0x01, 0xa9, 0xfe, 0x57, 0x01, 0xde, 0x03, 0x70, 0xfc, 0x90, - 0x00, 0x03, 0x00, 0x34, 0xff, 0xec, 0x04, 0x99, 0x04, 0x4e, 0x00, 0x57, - 0x00, 0x70, 0x00, 0x82, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x37, 0x36, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x33, 0x26, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x17, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x25, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, - 0x14, 0x14, 0x15, 0x14, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, - 0x21, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x03, 0x7d, 0x2e, 0x4f, 0x21, 0x1f, 0x34, - 0x17, 0x1c, 0x14, 0x30, 0x1d, 0x1d, 0x46, 0x28, 0x3a, 0x55, 0x1e, 0x1f, - 0x27, 0x0b, 0x0b, 0x0a, 0x02, 0x2c, 0x02, 0x01, 0x1b, 0x22, 0x21, 0x72, - 0x57, 0x36, 0x57, 0x21, 0x21, 0x31, 0x10, 0x07, 0x21, 0x1e, 0x1e, 0x5b, - 0x42, 0x3e, 0x6a, 0x26, 0x26, 0x29, 0x02, 0x34, 0x02, 0x1d, 0x1e, 0x1d, - 0x58, 0x39, 0x46, 0x53, 0x16, 0x16, 0x0d, 0x01, 0xc7, 0x4b, 0x75, 0x27, - 0x28, 0x2a, 0x21, 0x21, 0x20, 0x61, 0x41, 0x32, 0x58, 0x26, 0x25, 0x3a, - 0x14, 0x10, 0x33, 0x23, 0x23, 0x5d, 0xfd, 0xf6, 0x35, 0x4d, 0x19, 0x19, - 0x19, 0x22, 0x21, 0x21, 0x61, 0x3f, 0xc6, 0x0b, 0x04, 0x16, 0x32, 0x21, - 0x21, 0x53, 0x02, 0xff, 0xfe, 0x05, 0x09, 0x0b, 0x0b, 0x26, 0x1d, 0x1d, - 0x52, 0x37, 0x4a, 0x5c, 0x1a, 0x1a, 0x14, 0x03, 0x14, 0x15, 0x14, 0x12, - 0x33, 0x20, 0x2a, 0x19, 0x2f, 0x12, 0x12, 0x16, 0x24, 0x1d, 0x1d, 0x4c, - 0x29, 0x28, 0x51, 0x22, 0xb1, 0x8f, 0x3e, 0x86, 0x38, 0x38, 0x4a, 0x21, - 0x1c, 0x1c, 0x4b, 0x2a, 0x27, 0x4b, 0x1d, 0x1c, 0x23, 0x27, 0x23, 0x23, - 0x65, 0x3d, 0x2d, 0x4f, 0x1e, 0x1d, 0x22, 0x2c, 0x22, 0x22, 0x50, 0x24, - 0xbe, 0x01, 0x37, 0x2e, 0x2f, 0x7d, 0x48, 0x3c, 0x6e, 0x2a, 0x2a, 0x32, - 0x1f, 0x1c, 0x1b, 0x4a, 0x2c, 0x29, 0x4a, 0x1c, 0x1c, 0x21, 0x34, 0x29, - 0x23, 0x22, 0x5a, 0x30, 0x3c, 0x6a, 0x28, 0x28, 0x30, 0x01, 0x30, 0x47, - 0x1e, 0x52, 0x46, 0x14, 0x3c, 0x48, 0x1c, 0x1c, 0x22, 0x02, 0x58, 0x0c, - 0x24, 0x59, 0x2d, 0x2d, 0x54, 0x21, 0x20, 0x28, 0x40, 0x30, 0x30, 0x72, - 0x32, 0x00, 0x00, 0x02, 0x00, 0x49, 0xff, 0xf5, 0x04, 0xa9, 0x05, 0xbb, - 0x00, 0x1d, 0x00, 0x31, 0x00, 0x00, 0x61, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x21, 0x35, 0x21, 0x26, 0x26, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x32, 0x17, 0x11, 0x06, 0x22, 0x04, 0xa9, 0xfe, 0x1c, - 0x01, 0xa2, 0xfe, 0x5e, 0x01, 0xe4, 0xfe, 0x17, 0x38, 0x6f, 0x39, 0x78, - 0x9b, 0x2e, 0x2e, 0x28, 0x24, 0x2d, 0x2d, 0xa3, 0x78, 0x39, 0x6d, 0x38, - 0xde, 0x6e, 0x8b, 0x26, 0x29, 0x1b, 0x1c, 0x2c, 0x25, 0x89, 0x6c, 0x2e, - 0x59, 0x2d, 0x2d, 0x59, 0x36, 0x02, 0x9c, 0x36, 0x02, 0x72, 0x36, 0x07, - 0x04, 0x01, 0x01, 0x73, 0x57, 0x56, 0xce, 0x5b, 0xfe, 0xd0, 0x51, 0xcd, - 0x57, 0x5a, 0x7c, 0x05, 0x06, 0x2b, 0x01, 0x72, 0x4e, 0x55, 0xb9, 0x46, - 0x01, 0x32, 0x48, 0xc0, 0x55, 0x48, 0x6c, 0x01, 0x01, 0x05, 0xfa, 0xaf, - 0x05, 0x00, 0x00, 0x03, 0x00, 0x08, 0xff, 0xec, 0x04, 0xc6, 0x04, 0x4e, - 0x00, 0x43, 0x00, 0x63, 0x00, 0x75, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x35, 0x21, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, 0x07, 0x07, 0x21, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x08, 0x25, 0x2b, 0x24, 0x7d, 0x5b, - 0x42, 0x64, 0x25, 0x24, 0x30, 0x0f, 0x0f, 0x30, 0x24, 0x23, 0x60, 0x3e, - 0x2b, 0x4c, 0x22, 0x21, 0x3a, 0x1a, 0x1b, 0x15, 0x31, 0x1d, 0x1e, 0x47, - 0x2b, 0x34, 0x50, 0x1d, 0x1d, 0x27, 0x0c, 0x0c, 0x0b, 0x02, 0x25, 0x03, - 0x01, 0x1c, 0x21, 0x21, 0x6f, 0x54, 0x3f, 0x60, 0x23, 0x23, 0x2f, 0x0e, - 0x0f, 0x30, 0x25, 0x25, 0x64, 0x43, 0x59, 0x84, 0x25, 0x28, 0x20, 0x36, - 0x1b, 0x20, 0x21, 0x69, 0x4f, 0x38, 0x54, 0x1f, 0x1e, 0x29, 0x0c, 0x0c, - 0x0b, 0x0a, 0x0c, 0x0c, 0x28, 0x1e, 0x1f, 0x54, 0x38, 0x4f, 0x66, 0x21, - 0x23, 0x1d, 0x03, 0x66, 0x46, 0x5f, 0x1c, 0x1b, 0x16, 0x02, 0x01, 0xfe, - 0x0b, 0x09, 0x0b, 0x0b, 0x26, 0x1d, 0x1d, 0x51, 0x02, 0x6e, 0xa2, 0x4b, - 0xb6, 0x49, 0x3d, 0x59, 0x2e, 0x27, 0x27, 0x64, 0x36, 0x35, 0x63, 0x27, - 0x27, 0x2f, 0x01, 0x13, 0x11, 0x11, 0x2d, 0x19, 0x2a, 0x13, 0x28, 0x10, - 0x10, 0x15, 0x01, 0x01, 0x29, 0x21, 0x21, 0x55, 0x2d, 0x2d, 0x57, 0x24, - 0x75, 0x8f, 0x46, 0x8f, 0x3a, 0x3a, 0x49, 0x30, 0x27, 0x27, 0x65, 0x36, - 0x36, 0x66, 0x27, 0x27, 0x2f, 0x5b, 0x47, 0x4c, 0xac, 0xe8, 0xa2, 0x3b, - 0x9c, 0x3f, 0x42, 0x52, 0x2a, 0x22, 0x23, 0x5a, 0x2f, 0x2f, 0x5d, 0x26, - 0xa2, 0x26, 0x5d, 0x2f, 0x2f, 0x5a, 0x22, 0x23, 0x2a, 0x4e, 0x3a, 0x3e, - 0xa6, 0x02, 0x8a, 0x4b, 0x37, 0x37, 0x7b, 0x30, 0x51, 0x0d, 0x23, 0x5b, - 0x2f, 0x2f, 0x5a, 0x24, 0x23, 0x2b, 0x00, 0x02, 0x00, 0x63, 0xff, 0xec, - 0x03, 0xf2, 0x06, 0x29, 0x00, 0x2b, 0x00, 0x47, 0x00, 0x00, 0x41, 0x37, - 0x27, 0x07, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x07, 0x17, 0x37, - 0x16, 0x16, 0x17, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x35, 0x26, 0x02, 0x01, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0xea, - 0xd4, 0x1e, 0xe1, 0x53, 0xcd, 0x7a, 0x14, 0x70, 0xbd, 0x4e, 0xdc, 0x1d, - 0xeb, 0x64, 0x7d, 0x17, 0x3c, 0xcd, 0x6e, 0x71, 0xaf, 0x3c, 0x3c, 0x3e, - 0x44, 0x3b, 0x3a, 0xa1, 0x5d, 0x51, 0x85, 0x34, 0x34, 0x4d, 0x1a, 0x19, - 0x19, 0x01, 0x01, 0x88, 0xfe, 0xb5, 0x52, 0x8d, 0x34, 0x34, 0x3c, 0x36, - 0x35, 0x35, 0x9a, 0x64, 0x6a, 0xe6, 0x30, 0x02, 0x01, 0x01, 0x15, 0x15, - 0x16, 0x42, 0x2e, 0x2e, 0x76, 0x05, 0x15, 0x70, 0x30, 0x78, 0x4a, 0x75, - 0x2d, 0x32, 0x2a, 0x69, 0x42, 0x75, 0x30, 0x7d, 0x61, 0xf6, 0x9b, 0x56, - 0x5b, 0x4b, 0x42, 0x42, 0xb2, 0x67, 0x65, 0xb0, 0x42, 0x42, 0x4c, 0x2f, - 0x28, 0x28, 0x6c, 0x3e, 0x3d, 0x85, 0x40, 0x50, 0xda, 0x01, 0x54, 0xfb, - 0x91, 0x42, 0x3a, 0x39, 0x9c, 0x5a, 0x5a, 0x9d, 0x3a, 0x3a, 0x43, 0x6b, - 0x6a, 0x10, 0x20, 0x11, 0x52, 0x39, 0x75, 0x37, 0x38, 0x61, 0x24, 0x24, - 0x2b, 0x00, 0x00, 0x02, 0x00, 0xd6, 0x00, 0x00, 0x04, 0x41, 0x05, 0xb0, - 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x21, 0x15, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x21, 0x01, 0x0c, 0x36, 0x36, 0x01, 0x73, 0x5b, 0xa4, - 0x3e, 0x3d, 0x48, 0x48, 0x3d, 0x3e, 0xa4, 0x5b, 0xfe, 0x8d, 0x01, 0x73, - 0x4f, 0x8f, 0x37, 0x36, 0x41, 0x42, 0x37, 0x37, 0x8f, 0x4d, 0xfe, 0x8d, - 0x05, 0xb0, 0xfa, 0x50, 0x01, 0x4e, 0x01, 0x36, 0x33, 0x33, 0x96, 0x61, - 0x61, 0x96, 0x34, 0x33, 0x36, 0x01, 0x36, 0x01, 0x2f, 0x2d, 0x2d, 0x82, - 0x55, 0x54, 0x80, 0x2c, 0x2d, 0x2e, 0x01, 0x00, 0x00, 0x02, 0x00, 0xdc, - 0xfe, 0x60, 0x04, 0x19, 0x06, 0x00, 0x00, 0x1d, 0x00, 0x37, 0x00, 0x00, - 0x41, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x11, 0x23, 0x11, 0x33, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x19, 0x35, 0x37, - 0x30, 0x99, 0x63, 0x37, 0x6b, 0x30, 0x30, 0x51, 0x1c, 0x36, 0x36, 0x1e, - 0x54, 0x31, 0x30, 0x6a, 0x34, 0x69, 0x96, 0x32, 0x34, 0x31, 0x37, 0x02, - 0x24, 0x2e, 0x28, 0x82, 0x60, 0x39, 0x72, 0x32, 0x32, 0x4e, 0x15, 0x14, - 0x49, 0x31, 0x30, 0x73, 0x3f, 0x55, 0x82, 0x29, 0x30, 0x30, 0x02, 0x13, - 0x15, 0x69, 0xd1, 0x51, 0x47, 0x54, 0x1d, 0x1a, 0x1b, 0x4c, 0x2e, 0x02, - 0x7e, 0xf8, 0x60, 0x02, 0x41, 0x2c, 0x43, 0x17, 0x17, 0x18, 0x5d, 0x4a, - 0x4f, 0xce, 0x78, 0x15, 0x59, 0xba, 0x46, 0x42, 0x56, 0x1d, 0x1d, 0x1c, - 0x54, 0x36, 0x02, 0x12, 0x3a, 0x60, 0x22, 0x22, 0x26, 0x4a, 0x3b, 0x44, - 0xca, 0x00, 0x00, 0x01, 0x00, 0xf1, 0x00, 0x00, 0x04, 0x58, 0x04, 0x3a, - 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, - 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, 0xe9, 0x02, 0x25, 0x4a, 0xfd, 0xb9, - 0x02, 0x07, 0x46, 0xfe, 0x0d, 0xb7, 0x37, 0x37, 0x02, 0x15, 0xfd, 0xeb, - 0x02, 0x3c, 0x01, 0xfe, 0xfe, 0x20, 0xb3, 0x02, 0x93, 0xfb, 0xc6, 0x01, - 0x62, 0x00, 0x00, 0x01, 0x00, 0xda, 0xff, 0xeb, 0x04, 0x29, 0x05, 0xff, - 0x00, 0x51, 0x00, 0x00, 0x61, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x06, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x36, - 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x11, 0x01, 0x0f, 0x1f, 0x22, 0x21, 0x6d, 0x50, 0x31, 0x58, 0x22, - 0x21, 0x28, 0x01, 0x01, 0x22, 0x14, 0x15, 0x21, 0x01, 0x01, 0x2f, 0x23, - 0x22, 0x51, 0x23, 0x22, 0x2f, 0x2f, 0x28, 0x28, 0x6a, 0x39, 0x25, 0x4d, - 0x24, 0x21, 0x3f, 0x1b, 0x18, 0x1e, 0x4a, 0x28, 0x28, 0x52, 0x26, 0x42, - 0x79, 0x2f, 0x2f, 0x38, 0x2e, 0x22, 0x23, 0x52, 0x23, 0x23, 0x2f, 0x01, - 0x01, 0x24, 0x15, 0x15, 0x24, 0x01, 0x34, 0x2b, 0x2b, 0x71, 0x3f, 0x5a, - 0x7d, 0x27, 0x27, 0x24, 0x01, 0x04, 0x77, 0x41, 0x7b, 0x2f, 0x2f, 0x39, - 0x01, 0x01, 0x24, 0x1e, 0x1e, 0x50, 0x2d, 0x39, 0x69, 0x33, 0x34, 0x69, - 0x3a, 0x3d, 0x5e, 0x27, 0x28, 0x47, 0x27, 0x27, 0x5c, 0x3c, 0x3d, 0x61, - 0x22, 0x23, 0x25, 0x0d, 0x0c, 0x0a, 0x1f, 0x13, 0x31, 0x18, 0x21, 0x0b, - 0x0b, 0x0a, 0x2d, 0x29, 0x28, 0x71, 0x45, 0x45, 0x6a, 0x2b, 0x2b, 0x49, - 0x25, 0x25, 0x52, 0x34, 0x3a, 0x6a, 0x33, 0x33, 0x68, 0x3a, 0x3c, 0x65, - 0x25, 0x25, 0x2b, 0x43, 0x37, 0x37, 0x8d, 0x4a, 0xfb, 0x89, 0x00, 0x02, - 0x00, 0xbd, 0xff, 0xeb, 0x04, 0x42, 0x04, 0x4f, 0x00, 0x2a, 0x00, 0x38, - 0x00, 0x00, 0x41, 0x26, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x14, 0x14, - 0x07, 0x21, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x03, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, - 0x69, 0x38, 0x6c, 0x31, 0x30, 0x57, 0x26, 0x1d, 0x22, 0x53, 0x2e, 0x2e, - 0x62, 0x32, 0x59, 0x90, 0x37, 0x37, 0x4a, 0x02, 0x01, 0xfc, 0xb2, 0x01, - 0x3f, 0x39, 0x38, 0x9e, 0x60, 0x6d, 0xae, 0x3d, 0x3c, 0x41, 0x01, 0x02, - 0x4d, 0x45, 0x3e, 0xa4, 0x60, 0x52, 0x8a, 0x31, 0x32, 0x39, 0x01, 0x03, - 0x14, 0x0a, 0x40, 0x34, 0x34, 0x8f, 0x04, 0x4e, 0x01, 0x10, 0x12, 0x11, - 0x37, 0x27, 0x2a, 0x26, 0x33, 0x10, 0x0f, 0x0c, 0x01, 0x45, 0x3a, 0x3b, - 0xaf, 0x69, 0x1f, 0x28, 0x06, 0x53, 0x5e, 0xa2, 0x3b, 0x3b, 0x44, 0x5c, - 0x4c, 0x4c, 0xc1, 0x65, 0x40, 0x69, 0xc6, 0x49, 0x42, 0x4e, 0xfb, 0xd4, - 0x3c, 0x34, 0x33, 0x8c, 0x51, 0x21, 0x51, 0x97, 0x3a, 0x3a, 0x45, 0x00, - 0x00, 0x01, 0x00, 0xc1, 0xff, 0x30, 0x04, 0x2d, 0x06, 0x7f, 0x00, 0x4f, - 0x00, 0x00, 0x41, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x06, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x33, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x35, 0x23, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0xf7, - 0x01, 0x3f, 0x33, 0x33, 0x80, 0x40, 0x54, 0x93, 0x37, 0x37, 0x41, 0x03, - 0x37, 0x04, 0x45, 0x3b, 0x3a, 0x9f, 0x5e, 0x38, 0x4a, 0x88, 0x34, 0x34, - 0x3f, 0x48, 0x3a, 0x3a, 0x90, 0x49, 0x41, 0x84, 0x35, 0x35, 0x42, 0x01, - 0x01, 0x3d, 0x32, 0x31, 0x7e, 0x43, 0x50, 0x82, 0x2e, 0x2e, 0x34, 0x02, - 0x37, 0x03, 0x36, 0x30, 0x31, 0x8b, 0x58, 0x38, 0x4b, 0x8a, 0x35, 0x35, - 0x3f, 0x47, 0x3a, 0x3a, 0x90, 0x4a, 0x3f, 0x83, 0x36, 0x35, 0x44, 0x01, - 0x58, 0x4b, 0x74, 0x28, 0x28, 0x29, 0x01, 0x31, 0x30, 0x2f, 0x8e, 0x5c, - 0x66, 0x9e, 0x36, 0x37, 0x3a, 0x03, 0xbb, 0xbd, 0x05, 0x33, 0x2e, 0x2e, - 0x83, 0x56, 0x5d, 0x84, 0x2f, 0x2f, 0x3f, 0x1a, 0x17, 0x36, 0x29, 0x28, - 0x74, 0x54, 0x4d, 0x75, 0x27, 0x27, 0x28, 0x38, 0x32, 0x32, 0x8a, 0x53, - 0x5d, 0x9a, 0x38, 0x38, 0x41, 0x05, 0xbb, 0xbb, 0x04, 0x33, 0x2e, 0x2e, - 0x85, 0x56, 0x5f, 0x83, 0x2e, 0x2f, 0x3f, 0x1a, 0x17, 0x38, 0x29, 0x29, - 0x73, 0x00, 0x00, 0x01, 0x00, 0xb8, 0xff, 0x0b, 0x04, 0x14, 0x05, 0x26, - 0x00, 0x39, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x23, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, - 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x02, 0x7b, 0x68, 0x95, 0x30, 0x31, 0x2e, 0x01, 0x01, 0x2e, - 0x31, 0x30, 0x94, 0x67, 0x49, 0x7d, 0x30, 0x2f, 0x3a, 0x06, 0x36, 0x06, - 0x3c, 0x30, 0x30, 0x82, 0x4d, 0x38, 0x6e, 0xa3, 0x36, 0x36, 0x35, 0x01, - 0x01, 0x35, 0x36, 0x36, 0xa3, 0x6e, 0x38, 0x49, 0x80, 0x31, 0x31, 0x3f, - 0x07, 0x36, 0x08, 0x3c, 0x2f, 0x30, 0x7b, 0x22, 0x53, 0x44, 0x44, 0xae, - 0x5d, 0x2a, 0x5b, 0xaf, 0x45, 0x44, 0x53, 0x2e, 0x2a, 0x2b, 0x77, 0x49, - 0x4f, 0x84, 0x31, 0x31, 0x3b, 0x07, 0xda, 0xd9, 0x03, 0x5e, 0x4b, 0x4b, - 0xbf, 0x65, 0x2a, 0x65, 0xbf, 0x4b, 0x4b, 0x5e, 0x03, 0xe2, 0xe3, 0x06, - 0x34, 0x2d, 0x2c, 0x7b, 0x4c, 0x47, 0x6e, 0x25, 0x26, 0x26, 0x00, 0x01, - 0x00, 0x9b, 0x00, 0x00, 0x04, 0x5f, 0x05, 0xc4, 0x00, 0x33, 0x00, 0x00, - 0x41, 0x21, 0x35, 0x21, 0x03, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x13, 0x23, 0x15, 0x33, 0x13, 0x16, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x21, 0x27, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x27, 0x01, 0xa3, 0x01, 0x70, 0xfe, 0x8e, 0x09, 0x24, - 0x27, 0x26, 0x76, 0x51, 0x4c, 0x74, 0x29, 0x28, 0x2b, 0x03, 0x36, 0x02, - 0x34, 0x30, 0x30, 0x88, 0x57, 0x5c, 0x8a, 0x2d, 0x2e, 0x2d, 0x09, 0xd0, - 0xd2, 0x0a, 0x01, 0x04, 0x09, 0x09, 0x28, 0x23, 0x78, 0x03, 0xc0, 0x01, - 0xfd, 0x0a, 0x17, 0x1c, 0x08, 0x07, 0x04, 0x01, 0x02, 0x9b, 0x36, 0x01, - 0x3e, 0x49, 0x8a, 0x36, 0x35, 0x41, 0x31, 0x2c, 0x2d, 0x7b, 0x48, 0x53, - 0x8e, 0x34, 0x33, 0x3b, 0x4a, 0x3c, 0x3d, 0x9e, 0x54, 0xfe, 0xc2, 0x36, - 0xfe, 0xb5, 0x21, 0x54, 0x28, 0x29, 0x44, 0x10, 0x36, 0x36, 0x1d, 0x44, - 0x25, 0x24, 0x4b, 0x25, 0x00, 0x01, 0x00, 0x49, 0x00, 0x00, 0x04, 0x85, - 0x05, 0xb0, 0x00, 0x19, 0x00, 0x00, 0x61, 0x33, 0x11, 0x21, 0x35, 0x21, - 0x35, 0x21, 0x35, 0x21, 0x01, 0x23, 0x01, 0x07, 0x23, 0x27, 0x01, 0x23, - 0x01, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x02, 0x4b, 0x36, 0x01, - 0xc3, 0xfe, 0x3d, 0x01, 0xc3, 0xfe, 0x59, 0x01, 0xe8, 0x42, 0xfe, 0x3e, - 0x18, 0x05, 0x17, 0xfe, 0x3d, 0x41, 0x01, 0xe5, 0xfe, 0x5d, 0x01, 0xc0, - 0xfe, 0x40, 0x01, 0xc0, 0x01, 0x46, 0x37, 0xf0, 0x37, 0x03, 0x0c, 0xfd, - 0x32, 0x33, 0x33, 0x02, 0xce, 0xfc, 0xf4, 0x37, 0xf0, 0x37, 0x00, 0x01, - 0x00, 0xa0, 0xfe, 0x4b, 0x04, 0x4b, 0x06, 0x15, 0x00, 0x2f, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x27, 0x26, 0x36, 0x37, 0x36, 0x36, 0x37, 0x32, 0x16, - 0x17, 0x37, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, - 0x23, 0x15, 0x33, 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x13, - 0x03, 0xf0, 0xfe, 0x8f, 0x02, 0x01, 0x33, 0x29, 0x29, 0x6d, 0x3f, 0x26, - 0x4a, 0x25, 0x09, 0x27, 0x50, 0x28, 0x4b, 0x82, 0x2f, 0x30, 0x38, 0x01, - 0x01, 0xf4, 0xf2, 0x01, 0x02, 0x28, 0x25, 0x25, 0x68, 0x40, 0x1f, 0x3f, - 0x1e, 0x0d, 0x21, 0x45, 0x23, 0x4c, 0x7c, 0x2d, 0x2c, 0x31, 0x02, 0x02, - 0x04, 0x03, 0x37, 0x9a, 0x42, 0x63, 0x22, 0x21, 0x22, 0x01, 0x07, 0x08, - 0x34, 0x09, 0x08, 0x2a, 0x28, 0x29, 0x77, 0x4f, 0x9a, 0x37, 0xfb, 0xa4, - 0x45, 0x6d, 0x26, 0x26, 0x28, 0x08, 0x0a, 0x34, 0x09, 0x0b, 0x30, 0x2d, - 0x2d, 0x81, 0x51, 0x04, 0x5c, 0x00, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, - 0x04, 0x21, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x07, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x6a, 0xfe, 0x60, 0xfe, 0x68, 0x00, 0x01, 0x00, 0x93, 0x00, 0x00, - 0x04, 0x54, 0x05, 0xc4, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x35, 0x21, 0x27, - 0x21, 0x35, 0x21, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x17, 0x23, 0x15, 0x33, 0x17, 0x23, 0x15, - 0x33, 0x17, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x21, 0x27, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x27, 0x03, 0x05, 0xfe, 0x97, - 0x06, 0x01, 0x6f, 0xfe, 0x8f, 0x07, 0x24, 0x26, 0x26, 0x76, 0x51, 0x4c, - 0x75, 0x29, 0x28, 0x2b, 0x03, 0x36, 0x02, 0x34, 0x30, 0x30, 0x89, 0x57, - 0x5c, 0x89, 0x2d, 0x2e, 0x2d, 0x07, 0xc8, 0xca, 0x06, 0xd0, 0xd1, 0x05, - 0x03, 0x09, 0x0a, 0x28, 0x23, 0x78, 0x03, 0xc1, 0x01, 0xfd, 0x0a, 0x17, - 0x1c, 0x08, 0x07, 0x04, 0x01, 0x05, 0x01, 0xe4, 0x37, 0xc9, 0x38, 0xf3, - 0x49, 0x8a, 0x36, 0x35, 0x41, 0x31, 0x2c, 0x2d, 0x7b, 0x48, 0x53, 0x8e, - 0x34, 0x33, 0x3b, 0x49, 0x3d, 0x3d, 0x9e, 0x54, 0xf3, 0x38, 0xc9, 0x37, - 0x94, 0x21, 0x54, 0x28, 0x29, 0x44, 0x10, 0x36, 0x36, 0x1d, 0x44, 0x25, - 0x24, 0x4b, 0x25, 0x94, 0x00, 0x02, 0x00, 0xa6, 0xff, 0xec, 0x04, 0xab, - 0x05, 0xb0, 0x00, 0x2d, 0x00, 0x3c, 0x00, 0x00, 0x41, 0x35, 0x23, 0x11, - 0x23, 0x03, 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x11, 0x33, - 0x11, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x03, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x01, 0x11, 0x33, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x04, 0x91, 0xc1, - 0x33, 0x01, 0x88, 0x07, 0x37, 0x2f, 0x2f, 0x85, 0x54, 0xf9, 0x32, 0xc7, - 0x5b, 0x8b, 0x30, 0x2f, 0x31, 0x01, 0x86, 0x01, 0x01, 0x0c, 0x13, 0x13, - 0x46, 0x3a, 0x18, 0x2f, 0x16, 0x08, 0x16, 0x2b, 0x16, 0x2b, 0x31, 0x0c, - 0x0c, 0x06, 0x02, 0xfd, 0x08, 0xc7, 0x50, 0x78, 0x28, 0x28, 0x28, 0x29, - 0x28, 0x29, 0x77, 0x4f, 0x04, 0x03, 0x37, 0x01, 0x24, 0xfe, 0xdc, 0x4d, - 0x87, 0x33, 0x32, 0x3b, 0x02, 0xfa, 0x50, 0x02, 0x5d, 0x01, 0x45, 0x39, - 0x39, 0x98, 0x56, 0xfd, 0x00, 0x30, 0x62, 0x28, 0x29, 0x33, 0x01, 0x06, - 0x06, 0x33, 0x03, 0x06, 0x2f, 0x22, 0x22, 0x4e, 0x20, 0x03, 0x00, 0xfe, - 0x90, 0x02, 0xe7, 0x02, 0x3c, 0x33, 0x33, 0x86, 0x4b, 0x4a, 0x85, 0x32, - 0x33, 0x3d, 0x01, 0x00, 0x00, 0x02, 0x00, 0x63, 0xff, 0xe5, 0x04, 0x95, - 0x04, 0xf1, 0x00, 0x23, 0x00, 0x3b, 0x00, 0x00, 0x65, 0x17, 0x37, 0x27, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x37, 0x27, 0x07, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x27, 0x07, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x07, 0x17, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x01, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x03, 0xd6, 0x98, 0x27, - 0x9d, 0x3d, 0x3e, 0x42, 0x41, 0xa5, 0x27, 0xa2, 0x3f, 0xa9, 0x6a, 0x6a, - 0xa9, 0x3f, 0x9f, 0x26, 0xa2, 0x42, 0x43, 0x3f, 0x3e, 0x9a, 0x26, 0x95, - 0x40, 0xae, 0x6e, 0x6f, 0xae, 0xfd, 0x20, 0x45, 0x42, 0x39, 0x9d, 0x66, - 0x64, 0x9e, 0x38, 0x44, 0x45, 0x3e, 0x3c, 0x39, 0xa5, 0x6b, 0x69, 0xa4, - 0x38, 0x3c, 0x42, 0x98, 0xb3, 0x28, 0xb9, 0x5b, 0xd6, 0x69, 0x6d, 0xdd, - 0x5b, 0xc4, 0x28, 0xbf, 0x48, 0x58, 0x57, 0x48, 0xbd, 0x27, 0xc1, 0x5a, - 0xe2, 0x6c, 0x6a, 0xd9, 0x5a, 0xb6, 0x27, 0xb1, 0x4d, 0x5e, 0x5e, 0x02, - 0x16, 0x67, 0xd9, 0x58, 0x47, 0x5e, 0x5c, 0x47, 0x56, 0xde, 0x66, 0x63, - 0xd1, 0x53, 0x4f, 0x69, 0x65, 0x4e, 0x52, 0xd5, 0x00, 0x02, 0x02, 0x1f, - 0xff, 0xfa, 0x02, 0x91, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x02, 0x6b, 0x37, 0x15, 0x22, 0x16, 0x16, 0x24, - 0x23, 0x16, 0x17, 0x22, 0x01, 0x91, 0x04, 0x1f, 0xfb, 0xe1, 0xfe, 0xa0, - 0x17, 0x20, 0x20, 0x17, 0x17, 0x21, 0x22, 0x00, 0x00, 0x02, 0x02, 0x2c, - 0xfe, 0x99, 0x02, 0x9e, 0x04, 0x4f, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, - 0x41, 0x11, 0x33, 0x11, 0x13, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, - 0x16, 0x33, 0x32, 0x36, 0x02, 0x52, 0x37, 0x15, 0x23, 0x16, 0x16, 0x23, - 0x23, 0x16, 0x17, 0x22, 0x02, 0xb8, 0xfb, 0xe1, 0x04, 0x1f, 0x01, 0x60, - 0x17, 0x20, 0x20, 0x17, 0x17, 0x21, 0x22, 0x00, 0x00, 0x02, 0x00, 0xf9, - 0xff, 0xfa, 0x03, 0xe5, 0x05, 0xc4, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x00, - 0x41, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x02, 0x39, 0x37, 0x11, 0x11, 0x11, 0x35, 0x24, 0x31, 0x55, - 0x20, 0x1f, 0x24, 0x35, 0x30, 0x30, 0x85, 0x50, 0x51, 0x89, 0x33, 0x33, - 0x3d, 0x05, 0x37, 0x03, 0x34, 0x2c, 0x2b, 0x77, 0x46, 0x45, 0x72, 0x28, - 0x28, 0x2d, 0x1f, 0x1c, 0x1c, 0x4c, 0x2b, 0x29, 0x3d, 0x14, 0x15, 0x16, - 0x1c, 0x23, 0x16, 0x16, 0x24, 0x24, 0x16, 0x16, 0x23, 0x01, 0x90, 0x2f, - 0x52, 0x24, 0x25, 0x42, 0x1e, 0x28, 0x5a, 0x33, 0x32, 0x73, 0x42, 0x50, - 0x86, 0x31, 0x31, 0x36, 0x34, 0x2f, 0x30, 0x84, 0x51, 0x46, 0x72, 0x28, - 0x28, 0x2b, 0x2d, 0x29, 0x2a, 0x72, 0x45, 0x3e, 0x67, 0x2c, 0x2c, 0x50, - 0x27, 0x25, 0x4a, 0x29, 0x29, 0x5c, 0xfe, 0x6a, 0x17, 0x20, 0x20, 0x17, - 0x17, 0x21, 0x21, 0x00, 0x00, 0x02, 0x01, 0x05, 0xfe, 0x83, 0x03, 0xc9, - 0x04, 0x4d, 0x00, 0x31, 0x00, 0x3d, 0x00, 0x00, 0x41, 0x23, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, - 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x02, 0x9b, - 0x36, 0x07, 0x0b, 0x0b, 0x27, 0x1f, 0x34, 0x5c, 0x22, 0x23, 0x28, 0x32, - 0x2e, 0x2e, 0x83, 0x50, 0x51, 0x81, 0x2e, 0x2d, 0x33, 0x03, 0x36, 0x04, - 0x2b, 0x26, 0x26, 0x6d, 0x45, 0x46, 0x6e, 0x26, 0x27, 0x2a, 0x23, 0x1f, - 0x1f, 0x53, 0x2f, 0x24, 0x2f, 0x0f, 0x0e, 0x0c, 0x56, 0x22, 0x16, 0x16, - 0x21, 0x21, 0x16, 0x16, 0x22, 0x02, 0xb7, 0x29, 0x43, 0x1e, 0x1e, 0x36, - 0x1c, 0x2e, 0x65, 0x38, 0x39, 0x80, 0x48, 0x4e, 0x86, 0x31, 0x31, 0x38, - 0x36, 0x30, 0x30, 0x84, 0x4e, 0x42, 0x71, 0x29, 0x29, 0x2e, 0x2e, 0x29, - 0x29, 0x73, 0x44, 0x45, 0x73, 0x32, 0x32, 0x5b, 0x2d, 0x22, 0x3f, 0x22, - 0x22, 0x4e, 0x01, 0x90, 0x16, 0x22, 0x22, 0x16, 0x16, 0x21, 0x21, 0x00, - 0x00, 0x01, 0x01, 0xa0, 0xff, 0x01, 0x02, 0x2f, 0x00, 0x9f, 0x00, 0x09, - 0x00, 0x00, 0x65, 0x35, 0x23, 0x15, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x02, 0x2f, 0x36, 0x01, 0x2e, 0x2a, 0x25, 0x36, 0x32, 0x1b, 0x84, 0x86, - 0x48, 0x77, 0x39, 0x20, 0x3c, 0x8d, 0x00, 0x01, 0x02, 0x4d, 0xff, 0xfa, - 0x02, 0xc3, 0x00, 0x70, 0x00, 0x0b, 0x00, 0x00, 0x65, 0x14, 0x16, 0x33, - 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x02, 0x4d, 0x24, 0x16, - 0x17, 0x25, 0x25, 0x17, 0x16, 0x24, 0x34, 0x18, 0x22, 0x22, 0x18, 0x19, - 0x23, 0x23, 0xff, 0xff, 0x02, 0x87, 0xff, 0xfa, 0x02, 0xfd, 0x03, 0xdc, - 0x04, 0x26, 0x00, 0x60, 0x3a, 0x00, 0x00, 0x07, 0x00, 0x60, 0x00, 0x3a, - 0x03, 0x6c, 0xff, 0xff, 0x02, 0x3a, 0xff, 0x01, 0x02, 0xfe, 0x03, 0xdc, - 0x04, 0x27, 0x00, 0x60, 0x00, 0x3b, 0x03, 0x6c, 0x00, 0x07, 0x00, 0x5f, - 0x00, 0x9a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0xfa, 0x04, 0x09, - 0x00, 0x70, 0x04, 0x27, 0x00, 0x60, 0xfe, 0xb2, 0x00, 0x00, 0x00, 0x26, - 0x00, 0x60, 0x00, 0x00, 0x00, 0x07, 0x00, 0x60, 0x01, 0x46, 0x00, 0x00, - 0x00, 0x01, 0x02, 0x35, 0x02, 0x8b, 0x02, 0xa4, 0x02, 0xfa, 0x00, 0x0b, - 0x00, 0x00, 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x02, 0x35, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, 0x16, 0x21, - 0x02, 0xc2, 0x16, 0x21, 0x21, 0x16, 0x16, 0x22, 0x22, 0x00, 0x00, 0x01, - 0x01, 0xbf, 0x02, 0x21, 0x03, 0x0d, 0x03, 0x7d, 0x00, 0x19, 0x00, 0x00, - 0x41, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x01, 0xbf, 0x01, 0x1a, 0x16, 0x16, 0x3c, 0x24, 0x24, 0x3c, - 0x16, 0x16, 0x19, 0x02, 0x02, 0x1a, 0x16, 0x16, 0x3c, 0x24, 0x24, 0x3b, - 0x16, 0x16, 0x1a, 0x02, 0xdd, 0x1e, 0x23, 0x3a, 0x15, 0x15, 0x17, 0x17, - 0x15, 0x15, 0x3a, 0x23, 0x1e, 0x24, 0x3b, 0x15, 0x15, 0x17, 0x18, 0x15, - 0x15, 0x3b, 0x00, 0x01, 0x00, 0xbf, 0xff, 0xca, 0x04, 0x0d, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x00, 0x45, 0x35, 0x21, 0x15, 0x04, 0x0d, 0xfc, 0xb2, - 0x36, 0x36, 0x36, 0x00, 0x00, 0x01, 0x01, 0x00, 0x02, 0x7f, 0x03, 0xce, - 0x02, 0xb5, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x03, 0xce, - 0xfd, 0x32, 0x02, 0x7f, 0x36, 0x36, 0x00, 0x01, 0x00, 0x51, 0x02, 0xd1, - 0x04, 0x8e, 0x03, 0x07, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x04, 0x8e, 0xfb, 0xc3, 0x02, 0xd1, 0x36, 0x36, 0x00, 0x01, 0x00, 0x5a, - 0x02, 0xd1, 0x04, 0x97, 0x03, 0x07, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x04, 0x97, 0xfb, 0xc3, 0x02, 0xd1, 0x36, 0x36, 0x00, 0x01, - 0x02, 0x1a, 0x04, 0x62, 0x02, 0x5b, 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x17, 0x07, 0x33, 0x02, 0x5b, 0x38, 0x01, 0x0a, 0x32, - 0x05, 0x57, 0xa9, 0xab, 0xf3, 0x00, 0x00, 0x02, 0x01, 0xc2, 0x04, 0x62, - 0x02, 0xfd, 0x06, 0x00, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x37, - 0x23, 0x17, 0x03, 0x33, 0x01, 0x37, 0x23, 0x17, 0x03, 0x33, 0x02, 0x02, - 0x02, 0x3c, 0x02, 0x08, 0x35, 0x01, 0x04, 0x02, 0x3b, 0x02, 0x09, 0x35, - 0x05, 0x71, 0x8f, 0x92, 0xfe, 0xf4, 0x01, 0x0f, 0x8f, 0x92, 0xfe, 0xf4, - 0x00, 0x01, 0x02, 0x32, 0x04, 0x90, 0x02, 0xbf, 0x06, 0x12, 0x00, 0x0c, - 0x00, 0x00, 0x41, 0x15, 0x33, 0x35, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x02, 0x32, 0x36, 0x01, 0x2c, 0x2a, 0x25, 0x1a, 0x27, - 0x0d, 0x0d, 0x0c, 0x04, 0xf8, 0x68, 0x6a, 0x48, 0x77, 0x39, 0x20, 0x1e, - 0x42, 0x23, 0x23, 0x4c, 0x00, 0x01, 0x02, 0x0e, 0x04, 0x7f, 0x02, 0x9c, - 0x06, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, 0x23, 0x15, 0x06, 0x06, - 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0x9c, 0x36, 0x02, 0x2c, - 0x2a, 0x25, 0x19, 0x26, 0x0d, 0x0e, 0x0e, 0x05, 0x99, 0x67, 0x69, 0x48, - 0x77, 0x39, 0x20, 0x1c, 0x3e, 0x21, 0x24, 0x51, 0x00, 0x01, 0x01, 0xfc, - 0xff, 0x4a, 0x02, 0x8b, 0x00, 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x65, 0x35, - 0x23, 0x15, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, - 0x8b, 0x36, 0x01, 0x2e, 0x2a, 0x25, 0x18, 0x25, 0x0d, 0x0f, 0x10, 0x64, - 0x80, 0x82, 0x48, 0x77, 0x39, 0x20, 0x1b, 0x3b, 0x1f, 0x26, 0x53, 0x00, - 0xff, 0xff, 0x01, 0x90, 0x04, 0x90, 0x03, 0x46, 0x06, 0x12, 0x04, 0x27, - 0x00, 0x6c, 0xff, 0x5e, 0x00, 0x00, 0x00, 0x07, 0x00, 0x6c, 0x00, 0x87, - 0x00, 0x00, 0xff, 0xff, 0x01, 0xaf, 0x04, 0x7f, 0x03, 0x5e, 0x06, 0x00, - 0x04, 0x26, 0x00, 0x6d, 0xa1, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x00, 0xc2, - 0x00, 0x00, 0x00, 0x02, 0x01, 0x82, 0xff, 0x4a, 0x02, 0xdf, 0x00, 0xe4, - 0x00, 0x0c, 0x00, 0x19, 0x00, 0x00, 0x65, 0x35, 0x23, 0x15, 0x06, 0x06, - 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x23, 0x15, 0x06, - 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0x0f, 0x36, 0x01, - 0x2c, 0x2a, 0x25, 0x17, 0x23, 0x0c, 0x11, 0x10, 0xd1, 0x36, 0x01, 0x2c, - 0x2a, 0x24, 0x17, 0x23, 0x0c, 0x11, 0x11, 0x64, 0x80, 0x82, 0x48, 0x77, - 0x39, 0x20, 0x1a, 0x38, 0x1e, 0x27, 0x56, 0x2d, 0x80, 0x82, 0x48, 0x77, - 0x39, 0x20, 0x1a, 0x37, 0x1d, 0x28, 0x56, 0x00, 0xff, 0xff, 0x02, 0x1a, - 0x04, 0x62, 0x02, 0x5b, 0x06, 0x00, 0x06, 0x06, 0x00, 0x6a, 0x00, 0x00, - 0xff, 0xff, 0x01, 0xc2, 0x04, 0x62, 0x02, 0xfd, 0x06, 0x00, 0x06, 0x06, - 0x00, 0x6b, 0x00, 0x00, 0x00, 0x01, 0x01, 0x96, 0xfe, 0x2a, 0x03, 0x47, - 0x06, 0x57, 0x00, 0x27, 0x00, 0x00, 0x41, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, 0x96, - 0x12, 0x14, 0x13, 0x3f, 0x2e, 0x2e, 0x7b, 0x4f, 0x13, 0x48, 0x70, 0x2a, - 0x2a, 0x3a, 0x12, 0x12, 0x10, 0x01, 0x11, 0x12, 0x12, 0x3a, 0x2a, 0x2a, - 0x70, 0x48, 0x13, 0x4e, 0x7a, 0x2e, 0x2e, 0x3f, 0x14, 0x14, 0x13, 0x02, - 0x4a, 0x14, 0x58, 0xc1, 0x61, 0x62, 0xbe, 0x56, 0x56, 0x91, 0x35, 0x2b, - 0x32, 0x8d, 0x53, 0x53, 0xb8, 0x5e, 0x5d, 0xb6, 0x51, 0x1a, 0x51, 0xb6, - 0x5e, 0x5d, 0xb8, 0x53, 0x53, 0x8c, 0x32, 0x2b, 0x34, 0x92, 0x56, 0x56, - 0xbf, 0x62, 0x62, 0xc1, 0x00, 0x01, 0x01, 0x6d, 0xfe, 0x2a, 0x03, 0x1e, - 0x06, 0x57, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x1e, - 0x01, 0x12, 0x14, 0x14, 0x3f, 0x2e, 0x2e, 0x7a, 0x4e, 0x13, 0x48, 0x70, - 0x2a, 0x2a, 0x3a, 0x12, 0x12, 0x10, 0x01, 0x01, 0x10, 0x12, 0x12, 0x3a, - 0x2a, 0x2a, 0x70, 0x48, 0x13, 0x4f, 0x7b, 0x2e, 0x2e, 0x3f, 0x14, 0x13, - 0x12, 0x02, 0x36, 0x14, 0x57, 0xc1, 0x62, 0x62, 0xbf, 0x56, 0x56, 0x92, - 0x34, 0x2b, 0x32, 0x8c, 0x53, 0x53, 0xb8, 0x5d, 0x5e, 0xb6, 0x51, 0x1a, - 0x51, 0xb6, 0x5d, 0x5e, 0xb8, 0x53, 0x53, 0x8d, 0x32, 0x2b, 0x35, 0x91, - 0x56, 0x56, 0xbe, 0x62, 0x61, 0xc1, 0x00, 0x01, 0x01, 0xde, 0xfe, 0xc8, - 0x03, 0x06, 0x06, 0x80, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, - 0x21, 0x35, 0x23, 0x11, 0x03, 0x06, 0xfe, 0xd8, 0x01, 0x28, 0xf1, 0x06, - 0x4a, 0x36, 0xf8, 0x48, 0x36, 0x07, 0x4c, 0x00, 0x00, 0x01, 0x01, 0xc7, - 0xfe, 0xc8, 0x02, 0xee, 0x06, 0x80, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, - 0x33, 0x11, 0x23, 0x15, 0x21, 0x11, 0x01, 0xc7, 0xef, 0xef, 0x01, 0x27, - 0x06, 0x80, 0x36, 0xf8, 0xb4, 0x36, 0x07, 0xb8, 0x00, 0x01, 0x01, 0x53, - 0xfe, 0x47, 0x03, 0xde, 0x06, 0x3d, 0x00, 0x2a, 0x00, 0x00, 0x41, 0x37, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x15, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, 0xca, 0x14, 0x49, 0x75, 0x29, 0x29, - 0x2d, 0x01, 0x02, 0x86, 0x71, 0x71, 0x88, 0x26, 0x25, 0x28, 0x78, 0x4e, - 0x10, 0x55, 0x85, 0x2c, 0x2b, 0x2d, 0x01, 0x02, 0x93, 0x82, 0x83, 0x92, - 0x02, 0x01, 0x2e, 0x2b, 0x2c, 0x84, 0xfe, 0x47, 0x2e, 0x19, 0x4d, 0x34, - 0x33, 0x82, 0x50, 0xf5, 0x82, 0x9d, 0x18, 0x17, 0x9b, 0x83, 0xf7, 0x4c, - 0x80, 0x33, 0x38, 0x53, 0x1a, 0x2d, 0x1c, 0x57, 0x3b, 0x39, 0x92, 0x58, - 0xf7, 0x85, 0x8a, 0x05, 0x42, 0x05, 0x8b, 0x86, 0xf5, 0x59, 0x91, 0x38, - 0x3a, 0x55, 0x00, 0x01, 0x01, 0x52, 0xfe, 0x47, 0x03, 0xdc, 0x06, 0x3d, - 0x00, 0x36, 0x00, 0x00, 0x41, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, - 0x52, 0x13, 0x50, 0x7f, 0x2c, 0x31, 0x34, 0x21, 0x1e, 0x23, 0x6e, 0x47, - 0x45, 0x6c, 0x24, 0x1f, 0x22, 0x01, 0x01, 0x3f, 0x3b, 0x2a, 0x73, 0x47, - 0x0f, 0x3f, 0x67, 0x26, 0x34, 0x37, 0x01, 0x01, 0x2b, 0x27, 0x20, 0x54, - 0x32, 0x33, 0x56, 0x1f, 0x26, 0x2a, 0x01, 0x01, 0x2d, 0x29, 0x29, 0x74, - 0xfe, 0x75, 0x2e, 0x1a, 0x4e, 0x35, 0x3a, 0x98, 0x5e, 0xf5, 0x3d, 0x5f, - 0x23, 0x28, 0x2c, 0x03, 0x42, 0x03, 0x29, 0x27, 0x22, 0x61, 0x3e, 0xf7, - 0x69, 0xa5, 0x3d, 0x2b, 0x44, 0x17, 0x2d, 0x15, 0x3f, 0x29, 0x37, 0x95, - 0x5b, 0xf7, 0x49, 0x71, 0x27, 0x1f, 0x2b, 0x0a, 0x0b, 0x2c, 0x20, 0x28, - 0x70, 0x48, 0xf5, 0x4f, 0x82, 0x34, 0x34, 0x4d, 0x00, 0x01, 0x01, 0xb0, - 0x00, 0xb5, 0x03, 0x1d, 0x03, 0xac, 0x00, 0x06, 0x00, 0x00, 0x41, 0x01, - 0x23, 0x01, 0x15, 0x01, 0x33, 0x01, 0xf7, 0x01, 0x26, 0x46, 0xfe, 0xd9, - 0x01, 0x27, 0x46, 0x02, 0x30, 0x01, 0x7c, 0xfe, 0x8e, 0x13, 0xfe, 0x8e, - 0x00, 0x01, 0x01, 0xb1, 0x00, 0xab, 0x03, 0x1d, 0x03, 0xac, 0x00, 0x06, - 0x00, 0x00, 0x41, 0x23, 0x01, 0x01, 0x33, 0x01, 0x35, 0x01, 0xf7, 0x46, - 0x01, 0x25, 0xfe, 0xdb, 0x46, 0x01, 0x26, 0x03, 0xac, 0xfe, 0x7a, 0xfe, - 0x85, 0x01, 0x72, 0x13, 0x00, 0x01, 0x00, 0x77, 0x00, 0x92, 0x04, 0x5d, - 0x04, 0xb6, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x15, - 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x02, 0x7c, 0x37, 0xfe, 0x32, 0x01, - 0xce, 0x37, 0x01, 0xe1, 0x02, 0xbe, 0x01, 0xf8, 0xfe, 0x08, 0x35, 0xfe, - 0x09, 0x01, 0xf7, 0x35, 0x00, 0x01, 0x00, 0xa9, 0x02, 0xd1, 0x03, 0xec, - 0x03, 0x07, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x03, 0xec, - 0xfc, 0xbd, 0x02, 0xd1, 0x36, 0x36, 0x00, 0x02, 0x00, 0x9c, 0xff, 0xff, - 0x04, 0x30, 0x04, 0xf3, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x03, 0x35, - 0x21, 0x15, 0x02, 0x8d, 0x36, 0xfe, 0x45, 0x01, 0xbb, 0x36, 0x01, 0xa3, - 0x19, 0xfc, 0xbd, 0x03, 0x25, 0x01, 0xce, 0xfe, 0x32, 0x36, 0xfe, 0x32, - 0x01, 0xce, 0x36, 0xfc, 0xda, 0x36, 0x36, 0x00, 0x00, 0x01, 0x00, 0xd4, - 0x00, 0xeb, 0x04, 0x22, 0x04, 0x2c, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x17, - 0x01, 0x01, 0x37, 0x01, 0x01, 0x27, 0x01, 0x01, 0x07, 0x01, 0xd4, 0x27, - 0x01, 0x80, 0x01, 0x80, 0x27, 0xfe, 0x7f, 0x01, 0x65, 0x27, 0xfe, 0x9b, - 0xfe, 0x9c, 0x27, 0x01, 0x65, 0x01, 0x10, 0x25, 0x01, 0x87, 0xfe, 0x79, - 0x25, 0x01, 0x89, 0x01, 0x6c, 0x27, 0xfe, 0x94, 0x01, 0x6c, 0x27, 0xfe, - 0x94, 0x00, 0x00, 0x03, 0x00, 0x73, 0x00, 0xf6, 0x04, 0x59, 0x04, 0x6f, - 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0x04, 0x59, 0xfc, 0x1a, 0x01, 0xc8, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, - 0x16, 0x21, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, 0x16, 0x21, 0x02, 0xae, - 0x34, 0x34, 0x01, 0x89, 0x16, 0x21, 0x21, 0x16, 0x16, 0x22, 0x22, 0xfc, - 0xe0, 0x16, 0x21, 0x21, 0x16, 0x16, 0x22, 0x22, 0x00, 0x02, 0x00, 0xaf, - 0x01, 0xb4, 0x04, 0x2a, 0x03, 0x81, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x04, 0x2a, 0xfc, 0x85, - 0x03, 0x7b, 0xfc, 0x85, 0x03, 0x4b, 0x36, 0x36, 0xfe, 0x69, 0x36, 0x36, - 0x00, 0x01, 0x00, 0xb8, 0x00, 0x98, 0x04, 0x33, 0x04, 0x9c, 0x00, 0x13, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x13, 0x21, 0x35, 0x21, 0x13, 0x27, 0x03, - 0x21, 0x15, 0x21, 0x03, 0x21, 0x15, 0x33, 0x03, 0x17, 0x13, 0x04, 0x33, - 0xfd, 0xdb, 0xd6, 0x01, 0x4f, 0xfe, 0xd2, 0x9d, 0x30, 0xac, 0xfd, 0xf2, - 0x01, 0xed, 0xd6, 0xfe, 0xe9, 0xf6, 0x9d, 0x30, 0xac, 0x01, 0xb4, 0x36, - 0x01, 0x61, 0x36, 0x01, 0x03, 0x18, 0xfe, 0xe5, 0x36, 0xfe, 0x9f, 0x36, - 0xfe, 0xfc, 0x18, 0x01, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x8b, 0x01, 0x7f, - 0x04, 0x42, 0x03, 0xdb, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x53, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x07, 0x06, 0x06, - 0x03, 0x17, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x37, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x07, - 0x06, 0x06, 0x95, 0x07, 0x29, 0x74, 0x4e, 0x44, 0x72, 0x3a, 0x35, 0x69, - 0x3f, 0x4b, 0x77, 0x2c, 0x07, 0x2b, 0x76, 0x49, 0x40, 0x6b, 0x36, 0x3b, - 0x70, 0x41, 0x4e, 0x76, 0x35, 0x06, 0x29, 0x74, 0x4e, 0x44, 0x72, 0x3a, - 0x36, 0x69, 0x3e, 0x4b, 0x77, 0x2c, 0x06, 0x2b, 0x75, 0x4b, 0x40, 0x6a, - 0x36, 0x3b, 0x70, 0x41, 0x4e, 0x76, 0x03, 0x45, 0x42, 0x39, 0x5b, 0x02, - 0x02, 0x31, 0x1e, 0x1c, 0x2b, 0x02, 0x58, 0x3a, 0x42, 0x3b, 0x5b, 0x2d, - 0x1c, 0x1e, 0x2d, 0x02, 0x02, 0x57, 0xfe, 0x41, 0x40, 0x39, 0x5b, 0x02, - 0x02, 0x31, 0x1e, 0x1b, 0x2b, 0x01, 0x58, 0x3a, 0x40, 0x3b, 0x5b, 0x2d, - 0x1c, 0x1e, 0x2d, 0x02, 0x02, 0x57, 0x00, 0x01, 0x00, 0xa2, 0x01, 0x06, - 0x04, 0x04, 0x04, 0x2d, 0x00, 0x08, 0x00, 0x00, 0x41, 0x35, 0x01, 0x27, - 0x37, 0x01, 0x35, 0x01, 0x15, 0x04, 0x04, 0xfd, 0x19, 0x31, 0x30, 0x02, - 0xe8, 0xfc, 0x9e, 0x01, 0x06, 0x3b, 0x01, 0x44, 0x15, 0x15, 0x01, 0x44, - 0x3a, 0xfe, 0x86, 0x32, 0x00, 0x01, 0x00, 0xbc, 0x01, 0x09, 0x04, 0x1d, - 0x04, 0x30, 0x00, 0x08, 0x00, 0x00, 0x53, 0x01, 0x35, 0x01, 0x17, 0x01, - 0x17, 0x07, 0x01, 0xbc, 0x03, 0x61, 0xfc, 0x9f, 0x01, 0x02, 0xca, 0x46, - 0x45, 0xfd, 0x35, 0x01, 0x09, 0x01, 0x7b, 0x32, 0x01, 0x7a, 0x3b, 0xfe, - 0xc6, 0x1f, 0x1e, 0xfe, 0xc6, 0x00, 0x00, 0x02, 0x00, 0xe4, 0x00, 0x4f, - 0x04, 0x46, 0x04, 0x7e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, - 0x01, 0x27, 0x37, 0x01, 0x35, 0x01, 0x15, 0x01, 0x35, 0x21, 0x15, 0x04, - 0x46, 0xfd, 0x19, 0x31, 0x30, 0x02, 0xe8, 0xfc, 0x9e, 0x03, 0x49, 0xfc, - 0xbd, 0x01, 0xa8, 0x35, 0x01, 0x24, 0x12, 0x13, 0x01, 0x24, 0x34, 0xfe, - 0xac, 0x2d, 0xfd, 0x52, 0x36, 0x36, 0x00, 0x02, 0x00, 0xf6, 0x00, 0x4d, - 0x04, 0x60, 0x04, 0x94, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x53, 0x01, - 0x35, 0x01, 0x17, 0x01, 0x17, 0x07, 0x01, 0x01, 0x35, 0x21, 0x15, 0xff, - 0x03, 0x61, 0xfc, 0x9f, 0x01, 0x02, 0xca, 0x46, 0x45, 0xfd, 0x35, 0x03, - 0x39, 0xfc, 0xbd, 0x01, 0xbe, 0x01, 0x55, 0x2d, 0x01, 0x54, 0x35, 0xfe, - 0xe5, 0x1c, 0x1b, 0xfe, 0xe6, 0xfe, 0x5a, 0x36, 0x36, 0x00, 0x00, 0x01, - 0x00, 0xcf, 0x01, 0x8c, 0x03, 0xe8, 0x02, 0xf1, 0x00, 0x05, 0x00, 0x00, - 0x41, 0x11, 0x21, 0x15, 0x21, 0x11, 0x03, 0xe8, 0xfc, 0xe7, 0x02, 0xe3, - 0x01, 0x8c, 0x01, 0x65, 0x35, 0xfe, 0xd0, 0x00, 0x00, 0x01, 0x01, 0x32, - 0xff, 0x83, 0x03, 0xcd, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x45, 0x01, - 0x23, 0x01, 0x01, 0x6d, 0x02, 0x60, 0x3b, 0xfd, 0xa0, 0x7d, 0x06, 0x2d, - 0xf9, 0xd3, 0x00, 0x01, 0x01, 0x1a, 0xff, 0x83, 0x03, 0xb4, 0x05, 0xb0, - 0x00, 0x03, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x1a, 0x02, 0x60, - 0x3a, 0xfd, 0xa0, 0x05, 0xb0, 0xf9, 0xd3, 0x06, 0x2d, 0x00, 0x00, 0x01, - 0x01, 0x3d, 0x00, 0x83, 0x03, 0x86, 0x05, 0x14, 0x00, 0x03, 0x00, 0x00, - 0x65, 0x01, 0x27, 0x01, 0x01, 0x6f, 0x02, 0x17, 0x33, 0xfd, 0xea, 0x83, - 0x04, 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x00, 0x05, 0x00, 0x2c, 0xff, 0xeb, - 0x04, 0x9e, 0x05, 0xc5, 0x00, 0x19, 0x00, 0x33, 0x00, 0x4d, 0x00, 0x67, - 0x00, 0x6b, 0x00, 0x00, 0x53, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x05, 0x01, 0x27, 0x01, 0x2c, 0x01, 0x1f, 0x1e, 0x1e, 0x5a, 0x3c, 0x3b, - 0x59, 0x1d, 0x1d, 0x1e, 0x01, 0x01, 0x1e, 0x1d, 0x1e, 0x59, 0x3c, 0x3c, - 0x59, 0x1e, 0x1e, 0x1e, 0x36, 0x01, 0x15, 0x17, 0x16, 0x46, 0x30, 0x31, - 0x45, 0x17, 0x16, 0x15, 0x01, 0x01, 0x15, 0x16, 0x16, 0x45, 0x30, 0x31, - 0x46, 0x16, 0x17, 0x16, 0x02, 0x5a, 0x01, 0x1f, 0x1e, 0x1e, 0x59, 0x3c, - 0x3c, 0x58, 0x1e, 0x1e, 0x1e, 0x01, 0x01, 0x1f, 0x1e, 0x1e, 0x59, 0x3c, - 0x3c, 0x58, 0x1e, 0x1e, 0x1e, 0x36, 0x01, 0x14, 0x16, 0x16, 0x45, 0x32, - 0x32, 0x46, 0x17, 0x16, 0x14, 0x01, 0x01, 0x15, 0x16, 0x16, 0x45, 0x31, - 0x31, 0x46, 0x16, 0x17, 0x15, 0xfe, 0x46, 0x02, 0x6e, 0x2b, 0xfd, 0x92, - 0x04, 0x98, 0x4d, 0x35, 0x6b, 0x2a, 0x2b, 0x36, 0x37, 0x2b, 0x2b, 0x6a, - 0x34, 0x4d, 0x34, 0x6b, 0x2c, 0x2b, 0x37, 0x37, 0x2b, 0x2b, 0x6c, 0x81, - 0x4d, 0x29, 0x57, 0x24, 0x24, 0x2e, 0x2e, 0x23, 0x24, 0x57, 0x2a, 0x4d, - 0x29, 0x57, 0x23, 0x23, 0x2e, 0x2c, 0x24, 0x23, 0x57, 0xfd, 0x44, 0x4e, - 0x35, 0x6a, 0x2b, 0x2c, 0x36, 0x37, 0x2b, 0x2b, 0x6b, 0x34, 0x4e, 0x34, - 0x6b, 0x2c, 0x2b, 0x36, 0x37, 0x2b, 0x2b, 0x6b, 0x82, 0x4e, 0x2a, 0x58, - 0x23, 0x23, 0x2d, 0x2d, 0x23, 0x23, 0x57, 0x2b, 0x4e, 0x2a, 0x57, 0x23, - 0x24, 0x2d, 0x2d, 0x24, 0x23, 0x57, 0x6a, 0x04, 0x72, 0x1f, 0xfb, 0x8e, - 0x00, 0x06, 0x00, 0x3c, 0xff, 0xeb, 0x04, 0x9b, 0x05, 0xc5, 0x00, 0x31, - 0x00, 0x4b, 0x00, 0x65, 0x00, 0x7f, 0x00, 0x99, 0x00, 0x9d, 0x00, 0x00, - 0x41, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x05, 0x01, - 0x27, 0x01, 0x01, 0xff, 0x11, 0x14, 0x14, 0x45, 0x35, 0x1f, 0x31, 0x13, - 0x12, 0x1b, 0x09, 0x09, 0x1c, 0x14, 0x13, 0x32, 0x20, 0x35, 0x44, 0x15, - 0x14, 0x10, 0x11, 0x14, 0x14, 0x45, 0x35, 0x20, 0x31, 0x13, 0x14, 0x1c, - 0x0a, 0x09, 0x1a, 0x13, 0x13, 0x31, 0x1f, 0x35, 0x44, 0x14, 0x14, 0x11, - 0xfe, 0x3d, 0x11, 0x15, 0x14, 0x45, 0x35, 0x35, 0x44, 0x15, 0x14, 0x10, - 0x11, 0x14, 0x14, 0x45, 0x35, 0x35, 0x45, 0x14, 0x14, 0x11, 0x01, 0xf9, - 0x09, 0x0d, 0x0c, 0x31, 0x29, 0x2a, 0x32, 0x0d, 0x0d, 0x08, 0x09, 0x0d, - 0x0d, 0x31, 0x29, 0x29, 0x30, 0x0d, 0x0e, 0x09, 0xfe, 0x3d, 0x09, 0x0e, - 0x0d, 0x31, 0x28, 0x28, 0x31, 0x0e, 0x0d, 0x09, 0x09, 0x0d, 0x0d, 0x31, - 0x28, 0x29, 0x31, 0x0d, 0x0e, 0x09, 0x02, 0xf3, 0x09, 0x0d, 0x0d, 0x31, - 0x29, 0x2a, 0x31, 0x0d, 0x0d, 0x08, 0x09, 0x0d, 0x0d, 0x31, 0x28, 0x29, - 0x31, 0x0d, 0x0e, 0x09, 0xfd, 0x9b, 0x01, 0xc3, 0x2d, 0xfe, 0x3d, 0x01, - 0x79, 0x76, 0x28, 0x62, 0x2a, 0x2b, 0x39, 0x15, 0x13, 0x12, 0x30, 0x1b, - 0x1b, 0x30, 0x12, 0x13, 0x15, 0x3a, 0x2b, 0x2a, 0x61, 0x28, 0x76, 0x28, - 0x62, 0x2b, 0x2a, 0x39, 0x15, 0x12, 0x13, 0x30, 0x1b, 0x1b, 0x30, 0x13, - 0x12, 0x15, 0x3a, 0x2a, 0x2b, 0x61, 0x03, 0x0b, 0x75, 0x28, 0x61, 0x2a, - 0x2b, 0x39, 0x39, 0x2b, 0x2a, 0x61, 0x28, 0x75, 0x28, 0x62, 0x2b, 0x2a, - 0x3a, 0x3a, 0x2b, 0x2b, 0x61, 0xfc, 0x2f, 0x76, 0x1d, 0x4d, 0x23, 0x23, - 0x31, 0x30, 0x23, 0x23, 0x4d, 0x1e, 0x76, 0x1d, 0x4d, 0x23, 0x23, 0x31, - 0x31, 0x23, 0x23, 0x4d, 0x03, 0x51, 0x75, 0x1c, 0x4e, 0x23, 0x23, 0x32, - 0x31, 0x23, 0x24, 0x4e, 0x1c, 0x75, 0x1d, 0x4d, 0x22, 0x23, 0x31, 0x30, - 0x23, 0x23, 0x4d, 0xfc, 0xe9, 0x76, 0x1d, 0x4d, 0x23, 0x23, 0x31, 0x30, - 0x23, 0x23, 0x4d, 0x1e, 0x76, 0x1d, 0x4d, 0x23, 0x23, 0x31, 0x31, 0x23, - 0x23, 0x4d, 0x63, 0x04, 0x72, 0x15, 0xfb, 0x8e, 0x00, 0x01, 0x02, 0x4c, - 0xfe, 0xf2, 0x02, 0x82, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x02, 0x82, 0x36, 0xfe, 0xf2, 0x06, 0xbe, 0xf9, 0x42, 0x00, - 0x00, 0x02, 0x02, 0x40, 0xfe, 0xf2, 0x02, 0x76, 0x05, 0xb0, 0x00, 0x03, - 0x00, 0x07, 0x00, 0x00, 0x41, 0x33, 0x11, 0x23, 0x37, 0x11, 0x23, 0x11, - 0x02, 0x40, 0x36, 0x36, 0x36, 0x36, 0xfe, 0xf2, 0x02, 0xf0, 0xd8, 0x02, - 0xf6, 0xfd, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x77, 0x00, 0x00, 0x04, 0x55, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x23, 0x11, - 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x55, 0xfe, 0x33, 0x36, 0xfe, - 0x25, 0x01, 0xdb, 0x36, 0x04, 0x00, 0x3a, 0x01, 0x76, 0xfe, 0x8a, 0x3a, - 0xfc, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x82, 0xfe, 0x60, 0x04, 0x5f, - 0x05, 0xb0, 0x00, 0x13, 0x00, 0x00, 0x61, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, - 0x33, 0x11, 0x04, 0x5f, 0xfe, 0x1f, 0x01, 0xe1, 0xfe, 0x1f, 0x37, 0xfe, - 0x3b, 0x01, 0xc5, 0xfe, 0x3b, 0x01, 0xc5, 0x37, 0x36, 0x03, 0xcd, 0x37, - 0x01, 0x76, 0xfe, 0x8a, 0x37, 0xfc, 0x33, 0x36, 0xfe, 0x60, 0x01, 0xa0, - 0x00, 0x03, 0x00, 0x54, 0xff, 0xeb, 0x04, 0x89, 0x04, 0x52, 0x00, 0x33, - 0x00, 0x4b, 0x00, 0x63, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x36, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x25, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x03, 0x4d, - 0x30, 0x03, 0x10, 0x13, 0x13, 0x44, 0x37, 0x33, 0x46, 0x15, 0x1f, 0x12, - 0x01, 0x10, 0x16, 0x15, 0x4a, 0x3b, 0x37, 0x44, 0x13, 0x13, 0x10, 0x04, - 0x30, 0x01, 0x17, 0x1b, 0x1b, 0x59, 0x40, 0x4a, 0x61, 0x19, 0x1c, 0x16, - 0x1e, 0x1f, 0x1e, 0x5e, 0x3d, 0x40, 0x59, 0x1b, 0x1b, 0x16, 0xfd, 0x3d, - 0x36, 0x3a, 0x3b, 0xb8, 0x81, 0x70, 0xaa, 0x3b, 0x4a, 0x44, 0x46, 0x48, - 0x38, 0xae, 0x6f, 0x83, 0xb5, 0x3e, 0x35, 0x39, 0x37, 0x3e, 0x3e, 0x3f, - 0xd1, 0x8f, 0x7d, 0xbd, 0x42, 0x4e, 0x50, 0x4e, 0x4f, 0x44, 0xbd, 0x7c, - 0x8c, 0xcd, 0x41, 0x43, 0x3e, 0x01, 0xc8, 0x1b, 0x3f, 0x1b, 0x1b, 0x24, - 0x01, 0x01, 0x29, 0x20, 0x2e, 0x60, 0x24, 0x31, 0x1f, 0x54, 0x26, 0x26, - 0x35, 0x21, 0x19, 0x1a, 0x3c, 0x1b, 0x26, 0x50, 0x21, 0x20, 0x29, 0x42, - 0x2d, 0x2b, 0x67, 0x29, 0x30, 0x2d, 0x76, 0x2f, 0x2d, 0x34, 0x2c, 0x23, - 0x22, 0x53, 0x85, 0x4f, 0xad, 0x4b, 0x4c, 0x61, 0x4f, 0x3b, 0x4c, 0xc5, - 0x59, 0x5d, 0xcc, 0x4d, 0x40, 0x4f, 0x63, 0x52, 0x46, 0xb8, 0x52, 0x5e, - 0xc7, 0x51, 0x56, 0x70, 0x56, 0x46, 0x55, 0xe0, 0x6b, 0x66, 0xda, 0x51, - 0x48, 0x52, 0x69, 0x51, 0x53, 0xc1, 0x00, 0x04, 0x00, 0x51, 0xff, 0xeb, - 0x04, 0x86, 0x04, 0x48, 0x00, 0x17, 0x00, 0x2f, 0x00, 0x3d, 0x00, 0x49, - 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x25, 0x33, 0x13, 0x33, 0x03, 0x36, 0x36, 0x37, 0x36, 0x26, - 0x27, 0x23, 0x11, 0x33, 0x11, 0x35, 0x33, 0x16, 0x16, 0x07, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x51, 0x47, 0x45, 0x41, 0xc7, 0x87, 0x8d, 0xcd, - 0x41, 0x3f, 0x40, 0x50, 0x50, 0x3f, 0xbf, 0x7c, 0x7b, 0xbc, 0x41, 0x52, - 0x51, 0x36, 0x42, 0x49, 0x3a, 0xad, 0x73, 0x70, 0xa9, 0x3c, 0x49, 0x45, - 0x38, 0x3b, 0x3b, 0xb6, 0x7f, 0x7b, 0xb1, 0x3b, 0x42, 0x3c, 0x01, 0x5a, - 0xaa, 0x95, 0x3a, 0x9f, 0x42, 0x48, 0x01, 0x01, 0x6d, 0x64, 0xca, 0x35, - 0x95, 0x4d, 0x4e, 0x01, 0x11, 0x11, 0x11, 0x37, 0x26, 0x02, 0x1b, 0x64, - 0xcf, 0x51, 0x4e, 0x5e, 0x6b, 0x4f, 0x4e, 0xc8, 0x60, 0x6a, 0xde, 0x50, - 0x43, 0x52, 0x51, 0x41, 0x52, 0xde, 0x6b, 0x5b, 0xc1, 0x4e, 0x3d, 0x4f, - 0x4c, 0x3c, 0x4b, 0xc6, 0x5d, 0x54, 0xb2, 0x4a, 0x4a, 0x5f, 0x5b, 0x41, - 0x4b, 0xba, 0x2f, 0xfe, 0xfa, 0x01, 0x16, 0x0f, 0x4f, 0x3c, 0x51, 0x5f, - 0x02, 0xfd, 0x9e, 0x01, 0x3a, 0xf1, 0x03, 0x3f, 0x38, 0x18, 0x2a, 0x10, - 0x11, 0x13, 0x01, 0x00, 0x00, 0x02, 0x00, 0x69, 0x03, 0x97, 0x04, 0x35, - 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x14, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, - 0x23, 0x03, 0x03, 0x23, 0x11, 0x33, 0x11, 0x13, 0x33, 0x01, 0x35, 0x21, - 0x15, 0x33, 0x11, 0x33, 0x11, 0x03, 0xfe, 0x37, 0x45, 0xb0, 0xb0, 0x45, - 0x37, 0xa4, 0x34, 0xfe, 0x9b, 0xfe, 0x74, 0xaa, 0x38, 0x05, 0x4c, 0xfe, - 0x4b, 0x02, 0x19, 0xfe, 0x35, 0x01, 0xcb, 0xfd, 0xe7, 0x01, 0xc3, 0xfe, - 0x3d, 0x01, 0xe0, 0x39, 0x39, 0xfe, 0x20, 0x01, 0xe0, 0x00, 0x00, 0x02, - 0x01, 0x7c, 0x03, 0xe7, 0x03, 0x50, 0x05, 0xc4, 0x00, 0x17, 0x00, 0x2f, - 0x00, 0x00, 0x41, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x01, 0x7c, 0x25, 0x21, 0x20, 0x56, 0x30, 0x30, 0x55, 0x20, - 0x1f, 0x24, 0x25, 0x1f, 0x20, 0x54, 0x30, 0x30, 0x56, 0x20, 0x21, 0x25, - 0x37, 0x1c, 0x18, 0x18, 0x42, 0x27, 0x27, 0x40, 0x18, 0x17, 0x1a, 0x1b, - 0x17, 0x18, 0x40, 0x26, 0x26, 0x42, 0x18, 0x19, 0x1c, 0x04, 0xd4, 0x30, - 0x57, 0x20, 0x20, 0x26, 0x26, 0x21, 0x20, 0x56, 0x30, 0x2f, 0x57, 0x21, - 0x21, 0x28, 0x27, 0x21, 0x21, 0x57, 0x30, 0x26, 0x43, 0x1a, 0x19, 0x1d, - 0x1e, 0x19, 0x19, 0x44, 0x25, 0x26, 0x41, 0x19, 0x19, 0x1c, 0x1c, 0x19, - 0x18, 0x42, 0x00, 0x01, 0x00, 0xd0, 0x02, 0x95, 0x04, 0x38, 0x05, 0xb0, - 0x00, 0x0e, 0x00, 0x00, 0x41, 0x01, 0x17, 0x01, 0x01, 0x37, 0x01, 0x25, - 0x27, 0x05, 0x13, 0x23, 0x03, 0x25, 0x07, 0x02, 0x5c, 0xfe, 0xf8, 0x2f, - 0x01, 0x02, 0x01, 0x12, 0x32, 0xfe, 0xe7, 0x01, 0x88, 0x16, 0xfe, 0x81, - 0x08, 0x3b, 0x02, 0xfe, 0x75, 0x13, 0x03, 0xf9, 0xfe, 0xbc, 0x20, 0x01, - 0x45, 0xfe, 0xbe, 0x21, 0x01, 0x3d, 0x89, 0x35, 0x8f, 0x01, 0x8b, 0xfe, - 0x76, 0x85, 0x36, 0x00, 0x00, 0x02, 0x00, 0x3d, 0x00, 0x00, 0x04, 0x99, - 0x05, 0xb0, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, - 0x21, 0x35, 0x21, 0x13, 0x21, 0x35, 0x23, 0x13, 0x23, 0x03, 0x21, 0x13, - 0x23, 0x03, 0x21, 0x15, 0x21, 0x03, 0x21, 0x15, 0x21, 0x03, 0x33, 0x13, - 0x37, 0x13, 0x21, 0x03, 0x02, 0xf0, 0x4b, 0x38, 0x4b, 0x01, 0x26, 0xfe, - 0xe3, 0x60, 0x01, 0x08, 0xfe, 0x4c, 0x38, 0x4c, 0xfe, 0x93, 0x4c, 0x38, - 0x4b, 0xfe, 0xca, 0x01, 0x2c, 0x5f, 0xfe, 0xe7, 0x01, 0x0f, 0x4a, 0x38, - 0x4a, 0x0a, 0x5e, 0x01, 0x6d, 0x60, 0x01, 0x9a, 0xfe, 0x66, 0x01, 0x9a, - 0x34, 0x02, 0x0c, 0x36, 0x01, 0xa0, 0xfe, 0x60, 0x01, 0xa0, 0xfe, 0x60, - 0x36, 0xfd, 0xf4, 0x34, 0xfe, 0x66, 0x01, 0x9a, 0x34, 0x02, 0x0c, 0xfd, - 0xf4, 0x00, 0x00, 0x03, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x97, 0x05, 0xc5, - 0x00, 0x36, 0x00, 0x4a, 0x00, 0x63, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, 0x33, 0x27, - 0x36, 0x36, 0x35, 0x23, 0x06, 0x06, 0x07, 0x01, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x01, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x37, 0x01, 0x06, 0x06, 0x07, 0x06, 0x06, 0x01, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, - 0xa4, 0x40, 0x38, 0x37, 0x94, 0x54, 0x3b, 0x6c, 0x32, 0x31, 0x58, 0x28, - 0x91, 0x41, 0xb1, 0x3f, 0x3d, 0x36, 0x04, 0x36, 0x33, 0xfe, 0x4a, 0x8d, - 0x20, 0x40, 0x1a, 0x19, 0x21, 0x26, 0x22, 0x23, 0x60, 0x38, 0x42, 0x6a, - 0x25, 0x25, 0x28, 0x19, 0x15, 0x15, 0x38, 0x1f, 0x2f, 0x2d, 0x56, 0x21, - 0x22, 0x2a, 0x01, 0x97, 0x47, 0x80, 0x30, 0x30, 0x39, 0x01, 0x26, 0x1f, - 0x1f, 0x4e, 0x27, 0x2e, 0x01, 0xc0, 0x1f, 0x4c, 0x2d, 0x2d, 0x67, 0xfe, - 0xeb, 0x20, 0x1e, 0x1d, 0x56, 0x36, 0x2c, 0x4b, 0x1b, 0x1b, 0x1e, 0x1a, - 0x15, 0x15, 0x35, 0x1c, 0x93, 0x1c, 0x32, 0x13, 0x13, 0x16, 0x01, 0x60, - 0x58, 0x8a, 0x30, 0x30, 0x32, 0x1e, 0x1a, 0x1a, 0x47, 0x2a, 0xaf, 0xd8, - 0x5d, 0xd2, 0x71, 0x5f, 0xc0, 0x52, 0x02, 0x16, 0x79, 0x1c, 0x41, 0x25, - 0x25, 0x53, 0x2d, 0x38, 0x61, 0x24, 0x23, 0x28, 0x32, 0x2a, 0x2a, 0x71, - 0x3f, 0x33, 0x61, 0x2d, 0x2e, 0x56, 0x28, 0x28, 0x27, 0x5b, 0x33, 0x33, - 0x73, 0xfe, 0x83, 0x2b, 0x29, 0x29, 0x76, 0x4b, 0x38, 0x68, 0x2f, 0x2e, - 0x53, 0x23, 0x28, 0xfd, 0xe0, 0x29, 0x45, 0x18, 0x19, 0x1a, 0x04, 0x6f, - 0x33, 0x5c, 0x23, 0x23, 0x29, 0x21, 0x1c, 0x1d, 0x4c, 0x2c, 0x27, 0x47, - 0x1f, 0x20, 0x38, 0x18, 0x7d, 0x24, 0x4e, 0x2a, 0x2a, 0x59, 0x00, 0x02, - 0x00, 0x32, 0xff, 0xf2, 0x04, 0x97, 0x05, 0xbe, 0x00, 0x5e, 0x00, 0x75, - 0x00, 0x00, 0x41, 0x36, 0x02, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x02, 0x07, 0x06, 0x12, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x37, 0x36, 0x12, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x37, 0x13, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x25, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x03, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x04, 0x94, 0x03, 0x23, 0x38, 0x34, 0xbc, 0x96, 0x95, 0xdf, 0x52, 0x57, - 0x5d, 0x05, 0x05, 0x33, 0x4b, 0x3f, 0xdc, 0xa6, 0x23, 0x51, 0x29, 0x28, - 0x4a, 0x1c, 0x16, 0x1b, 0x43, 0x25, 0x25, 0x49, 0x21, 0x95, 0xc8, 0x3b, - 0x45, 0x2f, 0x05, 0x06, 0x60, 0x4d, 0x53, 0xd2, 0x6e, 0x78, 0xa7, 0x33, - 0x33, 0x2a, 0x05, 0x02, 0x1b, 0x2a, 0x16, 0x3d, 0x2a, 0x2d, 0x30, 0x0a, - 0x0b, 0x04, 0x03, 0x33, 0x23, 0x58, 0x33, 0x54, 0x7b, 0x29, 0x29, 0x2e, - 0x07, 0x03, 0x03, 0x14, 0x0f, 0x53, 0x45, 0x27, 0x44, 0x1c, 0x1c, 0x2d, - 0x12, 0x03, 0x14, 0x13, 0x13, 0x3c, 0x2c, 0x34, 0x4d, 0x1c, 0x36, 0x28, - 0xfc, 0xf8, 0x07, 0x26, 0x26, 0x1e, 0x64, 0x49, 0x28, 0x3a, 0x1b, 0x2d, - 0x01, 0x10, 0x29, 0x1b, 0x1c, 0x49, 0x30, 0x34, 0x36, 0x0c, 0x0e, 0x03, - 0x02, 0xfa, 0x86, 0x01, 0x09, 0x64, 0x5f, 0x72, 0x72, 0x64, 0x6b, 0xfe, - 0xcd, 0xa5, 0x86, 0xfe, 0xf2, 0x65, 0x55, 0x65, 0x0d, 0x0c, 0x0c, 0x20, - 0x14, 0x2e, 0x10, 0x1d, 0x0b, 0x0b, 0x0d, 0x5f, 0x4f, 0x5c, 0xfb, 0x77, - 0xb2, 0x01, 0x0e, 0x5b, 0x62, 0x63, 0x60, 0x56, 0x56, 0xf0, 0x8f, 0x3b, - 0xd0, 0x4b, 0x26, 0x30, 0x36, 0x26, 0x26, 0x51, 0x1b, 0x01, 0xf9, 0x26, - 0x34, 0x51, 0x43, 0x43, 0xaa, 0x57, 0x2b, 0x86, 0x53, 0x3e, 0x5e, 0x24, - 0x1e, 0x1d, 0x4b, 0x27, 0x25, 0x4a, 0x1e, 0x1e, 0x26, 0x33, 0x2a, 0x52, - 0xea, 0x07, 0x42, 0xa3, 0x41, 0x34, 0x47, 0x21, 0x1b, 0xfe, 0x66, 0x09, - 0x2a, 0x69, 0x2d, 0x2e, 0x3e, 0x4e, 0x2e, 0x34, 0x9a, 0x00, 0x00, 0x02, - 0x00, 0x7c, 0xfe, 0x11, 0x04, 0x4e, 0x05, 0xc4, 0x00, 0x6a, 0x00, 0x8b, - 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x06, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x01, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x04, 0x4e, - 0x2a, 0x24, 0x25, 0x61, 0x35, 0x35, 0x6e, 0x32, 0x2c, 0x5c, 0x2c, 0x2c, - 0x4f, 0x1d, 0x1e, 0x21, 0x43, 0x34, 0x39, 0x95, 0x48, 0x55, 0x90, 0x36, - 0x35, 0x3d, 0x03, 0x36, 0x03, 0x43, 0x3b, 0x3b, 0xa5, 0x65, 0x50, 0xa0, - 0x41, 0x41, 0x51, 0x25, 0x21, 0x20, 0x56, 0x31, 0x37, 0x65, 0x27, 0x27, - 0x30, 0x01, 0x2c, 0x25, 0x25, 0x62, 0x36, 0x36, 0x6f, 0x33, 0x40, 0x89, - 0x39, 0x39, 0x4a, 0x01, 0x01, 0x48, 0x39, 0x39, 0x8c, 0x44, 0x59, 0x9a, - 0x39, 0x3a, 0x45, 0x03, 0x36, 0x03, 0x4c, 0x41, 0x40, 0xaf, 0x65, 0x51, - 0xa0, 0x41, 0x40, 0x50, 0x2b, 0x24, 0x24, 0x60, 0x34, 0x38, 0x6e, 0x2b, - 0x2b, 0x36, 0xfe, 0x09, 0x2b, 0x65, 0x33, 0x32, 0x5d, 0x24, 0x23, 0x2a, - 0x01, 0x01, 0x46, 0x34, 0x34, 0x7a, 0x36, 0x5d, 0x76, 0x32, 0x32, 0x5c, - 0x23, 0x23, 0x29, 0x01, 0x01, 0x37, 0x2d, 0x2c, 0x6e, 0x38, 0x1a, 0x33, - 0x01, 0xaf, 0x40, 0x62, 0x25, 0x25, 0x35, 0x14, 0x14, 0x1e, 0x0e, 0x0c, - 0x1c, 0x13, 0x12, 0x30, 0x21, 0x20, 0x54, 0x36, 0x4a, 0x6b, 0x26, 0x24, - 0x23, 0x36, 0x31, 0x32, 0x8b, 0x55, 0x65, 0xa0, 0x38, 0x37, 0x3b, 0x28, - 0x2a, 0x2a, 0x84, 0x5b, 0x3e, 0x5e, 0x24, 0x25, 0x36, 0x14, 0x09, 0x27, - 0x21, 0x21, 0x60, 0x41, 0x41, 0x64, 0x26, 0x27, 0x38, 0x15, 0x16, 0x1f, - 0x0d, 0x11, 0x2b, 0x23, 0x24, 0x6b, 0x4f, 0x4f, 0x6e, 0x22, 0x23, 0x20, - 0x30, 0x30, 0x30, 0x8e, 0x5d, 0x02, 0x69, 0xa1, 0x36, 0x37, 0x38, 0x27, - 0x2a, 0x2a, 0x83, 0x5c, 0x41, 0x63, 0x25, 0x25, 0x36, 0x14, 0x07, 0x24, - 0x20, 0x1f, 0x5f, 0x01, 0x92, 0x0c, 0x1b, 0x13, 0x13, 0x31, 0x22, 0x22, - 0x57, 0x39, 0x43, 0x58, 0x1a, 0x1b, 0x16, 0x02, 0x1b, 0x20, 0x12, 0x12, - 0x31, 0x21, 0x21, 0x59, 0x3a, 0x41, 0x5a, 0x1c, 0x1c, 0x1c, 0x04, 0x08, - 0x0f, 0x00, 0x00, 0x01, 0x00, 0xff, 0x00, 0x00, 0x03, 0x9d, 0x05, 0xb0, - 0x00, 0x10, 0x00, 0x00, 0x61, 0x33, 0x11, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x03, 0x67, 0x36, - 0xb3, 0x68, 0xb3, 0x42, 0x42, 0x4c, 0x4b, 0x42, 0x42, 0xb4, 0x68, 0x7d, - 0x05, 0xb0, 0x01, 0x42, 0x3c, 0x3d, 0xac, 0x6c, 0x6c, 0xac, 0x3c, 0x3d, - 0x42, 0x01, 0x00, 0x01, 0x01, 0x04, 0x02, 0x93, 0x03, 0xca, 0x05, 0xb0, - 0x00, 0x08, 0x00, 0x00, 0x41, 0x33, 0x01, 0x37, 0x17, 0x01, 0x33, 0x01, - 0x23, 0x01, 0x04, 0x3b, 0x01, 0x05, 0x23, 0x21, 0x01, 0x05, 0x3d, 0xfe, - 0xb7, 0x34, 0x02, 0x93, 0x02, 0x7f, 0x54, 0x53, 0xfd, 0x80, 0x03, 0x1d, - 0x00, 0x01, 0x00, 0x47, 0x01, 0xbb, 0x04, 0x85, 0x03, 0x06, 0x00, 0x31, - 0x00, 0x00, 0x41, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x04, 0x85, 0x38, 0x02, 0x19, 0x19, 0x1a, 0x4f, - 0x38, 0x26, 0x43, 0x1e, 0x1f, 0x38, 0x1b, 0x20, 0x44, 0x24, 0x25, 0x51, - 0x2e, 0x44, 0x63, 0x21, 0x21, 0x21, 0x02, 0x37, 0x02, 0x18, 0x1a, 0x19, - 0x4f, 0x39, 0x27, 0x43, 0x1f, 0x1e, 0x39, 0x1b, 0x21, 0x43, 0x24, 0x24, - 0x50, 0x2e, 0x42, 0x64, 0x21, 0x21, 0x23, 0x02, 0xf0, 0x01, 0x32, 0x5d, - 0x23, 0x24, 0x2b, 0x16, 0x12, 0x12, 0x2e, 0x18, 0x1d, 0x36, 0x15, 0x15, - 0x19, 0x34, 0x2b, 0x2b, 0x71, 0x3d, 0x33, 0x5d, 0x24, 0x23, 0x2b, 0x15, - 0x12, 0x12, 0x2e, 0x18, 0x1d, 0x36, 0x15, 0x15, 0x19, 0x34, 0x2b, 0x2a, - 0x70, 0x00, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x2b, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x68, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x12, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x0e, - 0x01, 0x44, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x2c, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0xff, 0xfd, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x04, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x09, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x2b, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0xff, 0xbf, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x06, 0xfa, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, 0x00, 0x03, - 0x01, 0x4a, 0x00, 0x02, 0x00, 0x7a, 0xfe, 0x75, 0x04, 0x93, 0x05, 0xb0, - 0x00, 0x23, 0x00, 0x26, 0x00, 0x00, 0x41, 0x23, 0x01, 0x33, 0x13, 0x21, - 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x37, 0x09, 0x02, 0x02, 0x95, 0x3e, 0xfe, - 0x23, 0x38, 0x8e, 0x02, 0x6b, 0x8c, 0x1e, 0x44, 0x1d, 0x1d, 0x26, 0x17, - 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, - 0x36, 0x01, 0x29, 0x1e, 0x1e, 0x42, 0x1d, 0x03, 0xfc, 0xdf, 0x01, 0x25, - 0x01, 0x24, 0x05, 0xb0, 0xfa, 0x50, 0x01, 0xb3, 0xfe, 0x55, 0x17, 0x37, - 0x1f, 0x20, 0x49, 0x28, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, - 0x11, 0x16, 0x01, 0x01, 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x32, 0x16, - 0x02, 0x01, 0xe9, 0x03, 0x7d, 0xfc, 0x83, 0x00, 0xff, 0xff, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x72, 0x07, 0x53, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x62, 0x00, 0x0f, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x72, 0x07, 0xf3, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6b, 0xff, 0xdd, 0x01, 0x51, 0xff, 0xff, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x72, 0x07, 0x0e, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x9f, 0x01, 0x4e, 0xff, 0xff, 0x00, 0x4e, - 0x00, 0x00, 0x04, 0x7c, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x48, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x83, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x8f, - 0xff, 0xeb, 0x04, 0x3a, 0x07, 0x40, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x5b, 0x01, 0x54, 0xff, 0xff, 0x00, 0x8f, - 0xff, 0xeb, 0x04, 0x3a, 0x07, 0x45, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x64, 0x00, 0x01, 0x01, 0x63, 0xff, 0xff, 0x00, 0x8f, - 0xfe, 0x44, 0x04, 0x3a, 0x05, 0xc5, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x66, 0x13, 0xf7, 0xff, 0xff, 0x00, 0x8f, 0xff, 0xeb, - 0x04, 0x3a, 0x07, 0x41, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0xff, 0xf0, 0x01, 0x54, 0xff, 0xff, 0x00, 0xc8, 0x00, 0x00, - 0x04, 0x56, 0x07, 0x30, 0x06, 0x26, 0x00, 0x05, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0xff, 0xc4, 0x01, 0x4e, 0x00, 0x02, 0xff, 0xc4, 0x00, 0x00, - 0x04, 0x65, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x73, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x11, 0x21, 0x15, 0x21, 0x21, 0x35, 0x21, 0x11, 0x21, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x21, 0x11, 0xd7, 0x01, 0x6e, 0x79, 0xc2, 0x45, 0x4e, 0x52, 0x02, 0x55, - 0x58, 0x3d, 0xc1, 0x73, 0xfe, 0x92, 0xfe, 0xed, 0x01, 0x13, 0x01, 0x38, - 0xfe, 0xfc, 0x01, 0x3a, 0x63, 0xa9, 0x39, 0x4d, 0x56, 0x02, 0x02, 0x48, - 0x43, 0x3e, 0xae, 0x71, 0xfe, 0xc6, 0x03, 0x63, 0x54, 0x60, 0xe9, 0x7c, - 0xb2, 0x83, 0xee, 0x66, 0x46, 0x5f, 0x03, 0xfd, 0x4f, 0x36, 0x36, 0x02, - 0x7b, 0x54, 0x41, 0x57, 0xe2, 0x78, 0xb5, 0x72, 0xd8, 0x52, 0x4c, 0x5e, - 0x03, 0x02, 0x93, 0x00, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x2b, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x26, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x12, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0x00, 0x0d, 0x01, 0x44, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x30, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, - 0x00, 0x11, 0x01, 0x4e, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x2c, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0xff, 0xff, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x04, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x05, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x06, 0xec, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, - 0x00, 0x18, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x07, 0x2b, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, - 0xff, 0xd9, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, - 0x06, 0xfa, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, - 0xff, 0xf9, 0x01, 0x4a, 0x00, 0x01, 0x00, 0xc1, 0xfe, 0x4b, 0x04, 0x0c, - 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, 0x03, 0x01, 0x35, 0x23, - 0x11, 0x33, 0x11, 0x01, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x04, 0x0b, 0x33, 0x01, 0xfd, 0x1d, 0x33, 0x33, 0x02, 0xe3, 0x01, 0x0e, - 0x13, 0x13, 0x45, 0x38, 0x16, 0x28, 0x14, 0x0c, 0x17, 0x2e, 0x19, 0x45, - 0x59, 0x1a, 0x1a, 0x15, 0x05, 0xb0, 0xfa, 0xbf, 0x05, 0x3a, 0x07, 0xfa, - 0x50, 0x05, 0x43, 0xfa, 0xc4, 0x60, 0x2b, 0x67, 0x2c, 0x2d, 0x3b, 0x0b, - 0x07, 0x34, 0x08, 0x0c, 0x43, 0x34, 0x33, 0x7a, 0x38, 0x00, 0x00, 0x01, - 0x00, 0xdc, 0xfe, 0x75, 0x04, 0x15, 0x05, 0xb0, 0x00, 0x28, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x33, 0x35, 0x21, 0x11, 0x03, 0xb6, 0xfd, 0x5b, 0x03, 0x04, 0xfc, - 0xc7, 0x02, 0x70, 0x1e, 0x40, 0x1b, 0x1b, 0x23, 0x17, 0x14, 0x14, 0x39, - 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x29, - 0x1e, 0x1e, 0x45, 0x1d, 0x83, 0xfc, 0xfc, 0x02, 0xd2, 0x36, 0x02, 0x72, - 0x36, 0xfa, 0x50, 0x17, 0x35, 0x1e, 0x1f, 0x46, 0x27, 0x23, 0x37, 0x13, - 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, 0x31, 0x2d, 0x29, - 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x36, 0x02, 0x9c, 0x00, 0x02, 0xff, 0xc4, - 0x00, 0x00, 0x04, 0x65, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, - 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x21, 0x11, 0x21, 0x15, 0x21, 0x21, 0x35, 0x21, 0x11, - 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x21, 0x11, 0xd7, 0x01, 0x6e, 0x79, 0xc3, 0x47, 0x4b, 0x52, - 0x02, 0x5a, 0x4a, 0x4d, 0xba, 0x73, 0xfe, 0x92, 0xfe, 0xed, 0x01, 0x13, - 0x01, 0x38, 0xfe, 0xfc, 0x01, 0x3a, 0x6e, 0xb3, 0x33, 0x48, 0x4c, 0x02, - 0x02, 0x49, 0x44, 0x3b, 0xb1, 0x6f, 0xfe, 0xc6, 0x03, 0x64, 0x56, 0x5b, - 0xec, 0x7b, 0xb2, 0x81, 0xfb, 0x51, 0x55, 0x5a, 0x03, 0xfd, 0x4f, 0x36, - 0x36, 0x02, 0x7b, 0x64, 0x3f, 0x59, 0xd7, 0x73, 0xb5, 0x73, 0xd6, 0x55, - 0x4a, 0x5e, 0x03, 0x02, 0x93, 0x00, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, - 0x04, 0x37, 0x07, 0x27, 0x06, 0x26, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5f, 0x00, 0x0b, 0x01, 0x59, 0xff, 0xff, 0x00, 0x87, 0xff, 0xec, - 0x04, 0x37, 0x07, 0x41, 0x06, 0x26, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0xff, 0xfa, 0x01, 0x54, 0xff, 0xff, 0x00, 0x87, 0xfe, 0x5f, - 0x04, 0x37, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x00, 0xff, 0x2a, 0x00, 0x02, 0x00, 0x30, 0x00, 0x00, - 0x04, 0xab, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, - 0x21, 0x11, 0x33, 0x11, 0x33, 0x35, 0x01, 0x35, 0x21, 0x15, 0x04, 0x15, - 0x33, 0xfc, 0xfc, 0x33, 0x7b, 0x7b, 0x33, 0x03, 0x04, 0x33, 0x96, 0xfc, - 0x33, 0x03, 0x04, 0x04, 0x39, 0x01, 0x77, 0xfe, 0x89, 0x01, 0x77, 0xfe, - 0x89, 0x35, 0xfb, 0xfc, 0x02, 0xd2, 0xfd, 0x2e, 0x04, 0x04, 0x35, 0xfe, - 0xcf, 0xfc, 0xfc, 0x00, 0xff, 0xff, 0x00, 0xb2, 0x00, 0x00, 0x04, 0x1c, - 0x07, 0x2c, 0x06, 0x26, 0x00, 0x09, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0xff, 0xeb, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x2b, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, - 0x00, 0x6b, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x12, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0x00, 0x07, 0x01, 0x44, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x2c, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, - 0xff, 0xe5, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x04, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x0c, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x06, 0xec, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, - 0xff, 0xfe, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x2b, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, - 0xff, 0xc2, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x06, 0xfa, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, - 0x00, 0x06, 0x01, 0x4a, 0x00, 0x01, 0x00, 0xd4, 0xfe, 0x75, 0x03, 0xfa, - 0x05, 0xb0, 0x00, 0x28, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, - 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0xd4, - 0x01, 0x6f, 0xfe, 0x91, 0x01, 0xba, 0x1e, 0x40, 0x1b, 0x1b, 0x23, 0x17, - 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, - 0x36, 0x01, 0x29, 0x1e, 0x1e, 0x45, 0x1d, 0x01, 0x26, 0xfe, 0x83, 0x01, - 0x7d, 0x05, 0xb0, 0x38, 0xfa, 0xbe, 0x36, 0x17, 0x35, 0x1e, 0x1f, 0x46, - 0x27, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, - 0x01, 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x36, 0x05, 0x42, - 0x38, 0x00, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x07, 0x0e, - 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xa2, - 0x01, 0x4e, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x04, 0xcf, 0x07, 0x0e, - 0x06, 0x26, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x01, 0x55, - 0x01, 0x21, 0xff, 0xff, 0x00, 0xe5, 0xfe, 0xcd, 0x04, 0x97, 0x05, 0xb0, - 0x06, 0x26, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x68, 0xbe, 0x98, - 0xff, 0xff, 0x00, 0xea, 0x00, 0x00, 0x04, 0x2b, 0x06, 0xec, 0x06, 0x26, - 0x00, 0x0d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0xff, 0x00, 0x01, 0x00, - 0xff, 0xff, 0x00, 0xf2, 0x00, 0x00, 0x04, 0x2b, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x0d, 0x00, 0x00, 0x00, 0x06, 0x00, 0x6d, 0x61, 0xaf, 0xff, 0xff, - 0x00, 0xf2, 0xfe, 0x69, 0x04, 0x2b, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0xff, 0xb9, 0xff, 0x34, 0xff, 0xff, - 0x00, 0xf2, 0x00, 0x00, 0x04, 0x2b, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, 0xff, 0xe9, 0xfd, 0x80, 0x00, 0x01, - 0x00, 0x39, 0x00, 0x00, 0x04, 0x53, 0x05, 0xb0, 0x00, 0x0d, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x07, 0x15, 0x37, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x25, 0x35, 0x01, 0x51, 0x37, 0xe1, 0xe1, 0x03, 0x39, 0xfc, 0xfe, 0x01, - 0x46, 0x03, 0x21, 0x02, 0x8f, 0xfd, 0x60, 0x45, 0x39, 0x45, 0xfd, 0x29, - 0x36, 0x02, 0xb2, 0x65, 0x39, 0x00, 0xff, 0xff, 0x00, 0xb4, 0x00, 0x00, - 0x04, 0x1b, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x6a, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb4, 0x00, 0x00, - 0x04, 0x1b, 0x07, 0x30, 0x06, 0x26, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0x00, 0x10, 0x01, 0x4e, 0xff, 0xff, 0x00, 0xb4, 0xfe, 0x69, - 0x04, 0x1b, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x03, 0xff, 0x34, 0xff, 0xff, 0x00, 0xb4, 0x00, 0x00, - 0x04, 0x1b, 0x07, 0x0e, 0x06, 0x26, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0xa1, 0x01, 0x4e, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x40, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x5f, 0x01, 0x54, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x27, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5f, 0x00, 0x05, 0x01, 0x59, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x41, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0xff, 0xf4, 0x01, 0x54, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x19, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0x00, 0x00, 0x01, 0x54, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x40, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0xb6, 0x01, 0x54, 0x00, 0x02, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0xd1, 0x06, 0x05, 0x00, 0x29, 0x00, 0x43, 0x00, 0x00, 0x41, 0x35, - 0x34, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x3e, 0x24, 0x25, 0x40, 0x56, - 0x19, 0x19, 0x14, 0x01, 0x33, 0x03, 0x0f, 0x14, 0x14, 0x4a, 0x3d, 0x1c, - 0x4a, 0x2e, 0x2f, 0x70, 0x43, 0x76, 0xa9, 0x39, 0x42, 0x3e, 0x3a, 0x3d, - 0x39, 0xb1, 0x79, 0x76, 0xac, 0x39, 0x3f, 0x3c, 0x35, 0x37, 0x37, 0x32, - 0x97, 0x6a, 0x71, 0x9f, 0x31, 0x33, 0x2f, 0x36, 0x33, 0x32, 0x99, 0x6d, - 0x70, 0x9f, 0x32, 0x32, 0x30, 0x02, 0x6b, 0xda, 0x57, 0xb5, 0x53, 0x0b, - 0x40, 0x2f, 0x2f, 0x77, 0x41, 0x39, 0x68, 0x29, 0x29, 0x35, 0x06, 0x33, - 0x57, 0x20, 0x1f, 0x24, 0x69, 0x52, 0x5f, 0xf3, 0x72, 0xda, 0x6d, 0xe5, - 0x61, 0x5a, 0x72, 0x6f, 0x51, 0x60, 0xef, 0x01, 0x4c, 0xdc, 0x67, 0xdf, - 0x57, 0x4b, 0x61, 0x6f, 0x53, 0x56, 0xd0, 0x61, 0xdc, 0x63, 0xdd, 0x53, - 0x51, 0x63, 0x6c, 0x54, 0x56, 0xd0, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x54, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x63, 0x00, 0x61, 0x01, 0x54, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x0f, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5e, 0xff, 0xfb, 0x01, 0x5f, 0x00, 0x03, 0x00, 0x82, 0xff, 0xb5, - 0x04, 0x6d, 0x05, 0xd7, 0x00, 0x25, 0x00, 0x39, 0x00, 0x47, 0x00, 0x00, - 0x41, 0x35, 0x26, 0x26, 0x27, 0x13, 0x23, 0x07, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x07, 0x33, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x25, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x01, 0x26, 0x26, 0x27, 0x26, 0x26, 0x01, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x01, 0x16, 0x16, - 0x04, 0x32, 0x02, 0x2d, 0x30, 0x9a, 0x40, 0x7a, 0x1d, 0x47, 0x2a, 0x2b, - 0x66, 0x3a, 0x80, 0xb4, 0x37, 0x37, 0x35, 0x01, 0x01, 0x12, 0x12, 0x12, - 0x36, 0x26, 0x80, 0x40, 0x66, 0x36, 0x90, 0x5b, 0x7c, 0xb3, 0x37, 0x3c, - 0x34, 0xfc, 0x87, 0x2e, 0x31, 0x2e, 0xa0, 0x74, 0x37, 0x5e, 0x27, 0x27, - 0x40, 0x19, 0xfd, 0x9c, 0x20, 0x2d, 0x0e, 0x0f, 0x0f, 0x03, 0x44, 0x02, - 0x31, 0x32, 0x33, 0x9a, 0x6f, 0x55, 0x80, 0x30, 0x02, 0x5d, 0x26, 0x22, - 0x02, 0x6b, 0xda, 0x63, 0xcf, 0x5a, 0x01, 0x06, 0xd0, 0x2a, 0x45, 0x19, - 0x19, 0x1c, 0x7b, 0x5d, 0x5b, 0xe2, 0x6a, 0xda, 0x3d, 0x7f, 0x3e, 0x3e, - 0x73, 0x30, 0xdb, 0xaf, 0x37, 0x41, 0x78, 0x5b, 0x5c, 0xe5, 0x6b, 0xdc, - 0x5e, 0xce, 0x55, 0x54, 0x72, 0x1b, 0x19, 0x19, 0x44, 0x28, 0xfb, 0xeb, - 0x2d, 0x68, 0x38, 0x37, 0x71, 0x01, 0x12, 0xdc, 0x64, 0xd4, 0x57, 0x50, - 0x6a, 0x3d, 0x34, 0x04, 0x09, 0x4f, 0xb2, 0x00, 0xff, 0xff, 0x00, 0x82, - 0xff, 0xb5, 0x04, 0x6d, 0x07, 0x69, 0x06, 0x26, 0x00, 0xdb, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x8e, 0x01, 0x7d, 0xff, 0xff, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0x3e, 0x07, 0x23, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x96, 0x01, 0x63, 0xff, 0xff, 0x00, 0xe3, - 0x00, 0x00, 0x04, 0x5b, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x25, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xe3, - 0x00, 0x00, 0x04, 0x5b, 0x07, 0x30, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x64, 0xff, 0xcc, 0x01, 0x4e, 0xff, 0xff, 0x00, 0xe3, - 0xfe, 0x69, 0x04, 0x5b, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x13, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0xff, 0x9e, 0xff, 0x34, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x4b, 0x07, 0x40, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x6d, 0x01, 0x54, 0xff, 0xff, 0x00, 0x9c, - 0xff, 0xec, 0x04, 0x4b, 0x07, 0x45, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x64, 0x00, 0x13, 0x01, 0x63, 0xff, 0xff, 0x00, 0x9c, - 0xfe, 0x44, 0x04, 0x4b, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x66, 0x32, 0xf7, 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, - 0x04, 0x4b, 0x07, 0x41, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0x00, 0x01, 0x01, 0x54, 0x00, 0x01, 0x00, 0x70, 0x00, 0x00, - 0x04, 0x63, 0x05, 0xb0, 0x00, 0x0f, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, - 0x21, 0x35, 0x21, 0x15, 0x21, 0x03, 0x21, 0x15, 0x21, 0x03, 0x33, 0x11, - 0x03, 0xa3, 0xfe, 0xe1, 0x01, 0xdf, 0xfc, 0x0d, 0x01, 0xe0, 0x01, 0xfe, - 0xe1, 0x01, 0x1f, 0x01, 0x36, 0x03, 0x4f, 0x36, 0x01, 0xf5, 0x36, 0x36, - 0xfe, 0x0b, 0x36, 0xfc, 0xb1, 0x03, 0x4f, 0x00, 0xff, 0xff, 0x00, 0x70, - 0x00, 0x00, 0x04, 0x63, 0x07, 0x28, 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x64, 0x00, 0x03, 0x01, 0x46, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0x57, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x12, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5f, 0xff, 0xfe, 0x01, 0x44, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x2c, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5c, 0xff, 0xec, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x04, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xf9, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0xae, 0x01, 0x3f, 0x00, 0x01, 0x00, 0xb0, - 0xff, 0xec, 0x05, 0x10, 0x06, 0x0f, 0x00, 0x2b, 0x00, 0x00, 0x41, 0x23, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x03, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x04, 0x1e, 0x34, 0x01, 0x02, 0x34, - 0x31, 0x31, 0x8e, 0x5b, 0x5b, 0x8f, 0x31, 0x32, 0x35, 0x01, 0x01, 0x33, - 0x01, 0x01, 0x3d, 0x38, 0x38, 0xa2, 0x68, 0x67, 0xa2, 0x39, 0x38, 0x3d, - 0x01, 0x45, 0x5d, 0x1c, 0x1c, 0x18, 0x01, 0x34, 0x03, 0x10, 0x14, 0x15, - 0x47, 0x3a, 0x05, 0xb0, 0xfc, 0x25, 0x54, 0x9d, 0x3c, 0x3d, 0x49, 0x48, - 0x3d, 0x3c, 0x9d, 0x55, 0x03, 0xdb, 0xfc, 0x25, 0x61, 0xb1, 0x43, 0x44, - 0x50, 0x50, 0x44, 0x43, 0xb1, 0x61, 0x02, 0xd8, 0x09, 0x3d, 0x2f, 0x2f, - 0x79, 0x45, 0x3a, 0x66, 0x27, 0x28, 0x34, 0x09, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x07, 0x3f, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x63, 0x00, 0x59, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x04, 0x1e, 0x06, 0xfa, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5e, 0xff, 0xf3, 0x01, 0x4a, 0x00, 0x01, 0x00, 0xb0, - 0xfe, 0x96, 0x04, 0x1f, 0x05, 0xb0, 0x00, 0x3c, 0x00, 0x00, 0x41, 0x23, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x04, - 0x1e, 0x34, 0x01, 0x02, 0x34, 0x31, 0x31, 0x8e, 0x5b, 0x5b, 0x8f, 0x31, - 0x32, 0x35, 0x01, 0x01, 0x33, 0x01, 0x01, 0x3d, 0x38, 0x38, 0xa2, 0x68, - 0x13, 0x25, 0x12, 0x18, 0x2c, 0x11, 0x11, 0x15, 0x17, 0x14, 0x14, 0x39, - 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x24, - 0x1c, 0x1c, 0x41, 0x1d, 0x3b, 0x5b, 0x20, 0x1f, 0x23, 0x05, 0xb0, 0xfc, - 0x25, 0x54, 0x9d, 0x3c, 0x3d, 0x49, 0x48, 0x3d, 0x3c, 0x9d, 0x55, 0x03, - 0xdb, 0xfc, 0x25, 0x61, 0xb1, 0x43, 0x44, 0x50, 0x03, 0x03, 0x14, 0x2d, - 0x19, 0x19, 0x36, 0x1e, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, - 0x11, 0x16, 0x01, 0x01, 0x31, 0x2d, 0x27, 0x43, 0x1e, 0x1d, 0x32, 0x15, - 0x1d, 0x5d, 0x3b, 0x3a, 0x87, 0x48, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, - 0x04, 0x1e, 0x07, 0x53, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x62, 0xff, 0xff, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, - 0x04, 0x1e, 0x07, 0x0e, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0x8e, 0x01, 0x4e, 0xff, 0xff, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x96, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x6a, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x96, 0x07, 0x2c, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0xff, 0xff, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x96, 0x07, 0x04, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0x00, 0x0b, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x61, 0x00, 0x00, - 0x04, 0x96, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0xc1, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, - 0x04, 0x52, 0x07, 0x20, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x44, 0x01, 0x34, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, - 0x04, 0x52, 0x07, 0x21, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5c, 0xff, 0xd9, 0x01, 0x34, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, - 0x04, 0x52, 0x06, 0xf9, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0xff, 0xe6, 0x01, 0x34, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, - 0x04, 0x52, 0x07, 0x20, 0x06, 0x26, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5a, 0xff, 0x9b, 0x01, 0x34, 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, - 0x04, 0x11, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x43, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, - 0x04, 0x11, 0x07, 0x30, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x64, 0xff, 0xf9, 0x01, 0x4e, 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, - 0x04, 0x11, 0x06, 0xec, 0x06, 0x26, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x60, 0xff, 0xea, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0x1c, 0x05, 0xec, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x76, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, - 0x05, 0xd2, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x1c, 0x04, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x05, 0xed, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x0a, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x05, 0xc5, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x17, 0x00, 0xff, 0xff, - 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x05, 0xec, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xcd, 0x00, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x04, 0x1c, 0x05, 0xba, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5e, 0x11, 0x0a, 0x00, 0x02, 0x00, 0xb8, 0xfe, 0x75, - 0x04, 0x26, 0x04, 0x4e, 0x00, 0x51, 0x00, 0x65, 0x00, 0x00, 0x65, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x33, 0x27, 0x26, 0x26, 0x27, 0x11, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x21, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x05, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x26, 0x36, 0x37, 0x36, 0x36, 0x37, 0x21, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x03, 0xd8, 0x1e, 0x49, 0x1f, 0x1f, 0x2b, 0x17, - 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, - 0x36, 0x01, 0x29, 0x1e, 0x1e, 0x45, 0x1d, 0x17, 0x01, 0x0a, 0x12, 0x01, - 0x02, 0x3f, 0x36, 0x36, 0x8f, 0x50, 0x47, 0x8f, 0x3a, 0x3b, 0x4d, 0x04, - 0x36, 0x03, 0x44, 0x33, 0x33, 0x7d, 0x3c, 0x44, 0x7b, 0x2f, 0x2e, 0x38, - 0x02, 0xfe, 0xf5, 0x5a, 0xb8, 0x4a, 0x4b, 0x5e, 0x3a, 0x30, 0x30, 0x7c, - 0x41, 0x43, 0x80, 0x39, 0x39, 0x61, 0x23, 0x01, 0x06, 0xfe, 0x40, 0x33, - 0x67, 0x29, 0x2a, 0x34, 0x01, 0x4d, 0x41, 0x44, 0xb1, 0x50, 0x01, 0x08, - 0x1e, 0x5c, 0x39, 0x3a, 0x85, 0x13, 0x17, 0x38, 0x21, 0x21, 0x4d, 0x2b, - 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, - 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x09, 0x36, 0x64, 0x37, - 0x02, 0x1e, 0x55, 0x81, 0x2b, 0x2a, 0x2b, 0x28, 0x27, 0x28, 0x76, 0x4f, - 0x02, 0x44, 0x63, 0x21, 0x20, 0x20, 0x23, 0x23, 0x23, 0x6c, 0x49, 0x9e, - 0x01, 0x1e, 0x25, 0x26, 0x7f, 0x61, 0x47, 0x6e, 0x25, 0x25, 0x27, 0x1c, - 0x1c, 0x1b, 0x54, 0x37, 0x2e, 0x5b, 0x20, 0x1f, 0x1e, 0x1e, 0x59, 0x39, - 0x50, 0x6a, 0x1f, 0x24, 0x18, 0x02, 0xff, 0x00, 0x40, 0x62, 0x21, 0x21, - 0x21, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x06, 0x14, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x62, 0x16, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x06, 0xb0, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6b, 0xe4, 0x0e, 0xff, 0xff, - 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x05, 0xce, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xad, 0x00, 0x0e, 0xff, 0xff, - 0x00, 0x34, 0xff, 0xec, 0x04, 0x99, 0x05, 0xeb, 0x06, 0x26, 0x00, 0x49, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x48, 0xff, 0xff, 0xff, 0x00, 0xb3, - 0xff, 0xec, 0x04, 0x0f, 0x05, 0xea, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5b, 0x70, 0xfe, 0xff, 0xff, 0x00, 0xb3, 0xff, 0xec, - 0x04, 0x0f, 0x05, 0xee, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x64, 0x16, 0x0c, 0xff, 0xff, 0x00, 0xb3, 0xfe, 0x44, 0x04, 0x0f, - 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, - 0x23, 0xf7, 0xff, 0xff, 0x00, 0xb3, 0xff, 0xec, 0x04, 0x0f, 0x05, 0xeb, - 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x04, 0xfe, - 0xff, 0xff, 0x00, 0x9c, 0xff, 0xec, 0x05, 0x10, 0x06, 0x00, 0x04, 0x26, - 0x00, 0x1f, 0xec, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x02, 0x74, 0x00, 0x00, - 0x00, 0x02, 0x00, 0xa1, 0xff, 0xec, 0x04, 0x97, 0x06, 0x00, 0x00, 0x25, - 0x00, 0x3f, 0x00, 0x00, 0x41, 0x35, 0x23, 0x35, 0x23, 0x15, 0x21, 0x15, - 0x21, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x15, 0x33, 0x11, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x04, 0x97, 0xb9, 0x36, - 0xfe, 0xa4, 0x01, 0x5c, 0x1b, 0x4c, 0x2d, 0x2d, 0x65, 0x35, 0x77, 0xa3, - 0x32, 0x34, 0x2c, 0x39, 0x3e, 0x31, 0x99, 0x69, 0x31, 0x64, 0x2f, 0x2e, - 0x4f, 0x1c, 0x36, 0xfc, 0xfb, 0x24, 0x29, 0x28, 0x90, 0x6e, 0x3b, 0x6d, - 0x2e, 0x2d, 0x46, 0x13, 0x15, 0x4b, 0x2f, 0x2f, 0x6b, 0x35, 0x60, 0x8b, - 0x25, 0x36, 0x2b, 0x05, 0x01, 0x36, 0xc9, 0xc9, 0x36, 0xfe, 0x7f, 0x2f, - 0x4c, 0x1b, 0x1b, 0x1d, 0x64, 0x50, 0x4f, 0xc4, 0x5f, 0x15, 0x68, 0xda, - 0x51, 0x40, 0x54, 0x18, 0x18, 0x17, 0x43, 0x2c, 0xa2, 0x05, 0x01, 0xfd, - 0x12, 0x15, 0x51, 0xad, 0x48, 0x47, 0x63, 0x25, 0x22, 0x22, 0x5f, 0x3a, - 0xfd, 0xe9, 0x35, 0x53, 0x1c, 0x1c, 0x1d, 0x50, 0x3a, 0x54, 0xb8, 0x00, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xeb, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x69, 0xff, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xd1, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x0f, 0x03, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x29, 0x05, 0xef, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0x0f, 0x0d, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x29, 0x05, 0xec, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5c, 0xfe, 0xff, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, - 0x05, 0xc4, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x0a, 0xff, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xac, - 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, 0x0f, 0xff, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xeb, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xc0, 0xff, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xb9, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0x04, 0x09, 0x00, 0x01, 0x00, 0xe0, - 0xfe, 0x4b, 0x03, 0xf0, 0x04, 0x4e, 0x00, 0x32, 0x00, 0x00, 0x73, 0x33, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x35, 0x27, - 0x23, 0xe0, 0x36, 0x0b, 0x36, 0x2e, 0x2d, 0x84, 0x59, 0x58, 0x73, 0x22, - 0x22, 0x1b, 0x01, 0x01, 0x19, 0x1b, 0x1c, 0x57, 0x3f, 0x1f, 0x3c, 0x1d, - 0x0d, 0x21, 0x42, 0x22, 0x4b, 0x6b, 0x23, 0x22, 0x22, 0x01, 0x22, 0x28, - 0x29, 0x88, 0x66, 0x4a, 0x77, 0x2e, 0x2e, 0x44, 0x17, 0x06, 0x30, 0x02, - 0x9a, 0x4c, 0x8a, 0x35, 0x34, 0x3f, 0x47, 0x3a, 0x3a, 0x93, 0x4b, 0xfd, - 0x28, 0x37, 0x6a, 0x29, 0x2a, 0x33, 0x0b, 0x08, 0x34, 0x09, 0x0b, 0x3b, - 0x30, 0x30, 0x7d, 0x44, 0x02, 0xd6, 0x59, 0xa8, 0x41, 0x41, 0x4e, 0x27, - 0x22, 0x23, 0x5f, 0x38, 0x08, 0xe7, 0x00, 0x02, 0x00, 0xa4, 0xfe, 0xa7, - 0x04, 0x29, 0x04, 0x4e, 0x00, 0x3e, 0x00, 0x4c, 0x00, 0x00, 0x53, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, - 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, - 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0xa4, 0x01, 0x48, 0x41, 0x40, 0xb5, 0x6f, 0x1f, 0x3b, - 0x1d, 0x2f, 0x41, 0x17, 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, - 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x29, 0x1e, 0x16, 0x48, 0x21, 0x22, - 0x39, 0x18, 0x27, 0x41, 0xa9, 0x65, 0x63, 0xa1, 0x39, 0x3a, 0x40, 0x01, - 0x03, 0x4f, 0x01, 0x3c, 0x37, 0x38, 0x9e, 0x62, 0x6e, 0xae, 0x3d, 0x3d, - 0x42, 0x01, 0x01, 0xd9, 0x53, 0x8a, 0x31, 0x31, 0x37, 0xfc, 0xec, 0x0a, - 0x41, 0x35, 0x34, 0x90, 0x02, 0x06, 0x69, 0xc2, 0x4b, 0x4b, 0x59, 0x07, - 0x06, 0x2b, 0x5b, 0x37, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, - 0x11, 0x16, 0x01, 0x01, 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x16, 0x38, 0x18, - 0x18, 0x34, 0x1f, 0x1b, 0x4e, 0x48, 0x01, 0x01, 0x51, 0x44, 0x43, 0xaf, - 0x5d, 0x3b, 0x3f, 0x5d, 0xa8, 0x40, 0x3f, 0x4a, 0x5d, 0x4c, 0x4c, 0xc2, - 0x65, 0x01, 0xe6, 0x42, 0x38, 0x38, 0x92, 0x50, 0x0d, 0x51, 0x97, 0x3a, - 0x3a, 0x45, 0xff, 0xff, 0x00, 0xb2, 0xfe, 0x4c, 0x03, 0xef, 0x05, 0xd0, - 0x06, 0x26, 0x00, 0x22, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x17, 0x02, - 0xff, 0xff, 0x00, 0xb2, 0xfe, 0x4c, 0x03, 0xef, 0x05, 0xeb, 0x06, 0x26, - 0x00, 0x22, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x05, 0xfe, 0xff, 0xff, - 0x00, 0xb2, 0xfe, 0x4c, 0x03, 0xef, 0x06, 0x36, 0x06, 0x26, 0x00, 0x22, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x4e, 0x04, 0x1e, 0x00, 0x01, 0x00, 0x06, - 0x00, 0x00, 0x04, 0x18, 0x06, 0x00, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, - 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x11, 0x02, 0x51, 0xfe, 0xca, 0x37, 0xde, 0xde, 0x37, 0x0f, 0x4a, - 0x36, 0x35, 0x84, 0x49, 0x52, 0x74, 0x26, 0x25, 0x23, 0x01, 0x37, 0x01, - 0x2b, 0x2c, 0x2c, 0x88, 0x5d, 0x47, 0x7c, 0x33, 0x34, 0x50, 0x1a, 0x05, - 0x01, 0x36, 0xc9, 0xc9, 0x36, 0xfa, 0xff, 0x02, 0xbe, 0x46, 0x7e, 0x2f, - 0x2f, 0x38, 0x01, 0x01, 0x34, 0x2e, 0x2f, 0x81, 0x4c, 0xfd, 0x44, 0x02, - 0xbc, 0x57, 0x94, 0x36, 0x35, 0x3c, 0x2b, 0x25, 0x26, 0x67, 0x3c, 0x01, - 0xcc, 0x00, 0xff, 0xff, 0x00, 0x34, 0x00, 0x00, 0x04, 0x09, 0x07, 0x2b, - 0x06, 0x26, 0x00, 0x23, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0xfe, 0xb2, - 0x01, 0x3e, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x06, 0x13, - 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x87, - 0x00, 0x27, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x05, 0xfa, - 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x2d, 0x2c, - 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x06, 0x14, 0x06, 0x26, - 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x1b, 0x27, 0xff, 0xff, - 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x05, 0xec, 0x06, 0x26, 0x01, 0x6d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x28, 0x27, 0xff, 0xff, 0x00, 0xef, - 0x00, 0x00, 0x04, 0x32, 0x06, 0x13, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xde, 0x27, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x04, 0x32, 0x05, 0xe2, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0x22, 0x32, 0x00, 0x02, 0x00, 0xef, 0xfe, 0x75, 0x04, 0x32, - 0x05, 0xb8, 0x00, 0x26, 0x00, 0x32, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, - 0x21, 0x15, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, - 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, 0x11, 0x03, - 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0xef, - 0x01, 0x8d, 0xfe, 0x73, 0x01, 0x7d, 0x1e, 0x40, 0x1b, 0x1b, 0x23, 0x17, - 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, - 0x36, 0x01, 0x29, 0x1e, 0x1e, 0x45, 0x1d, 0x01, 0x80, 0xfe, 0x80, 0x64, - 0x1d, 0x29, 0x28, 0x1f, 0x1f, 0x28, 0x2b, 0x1b, 0x04, 0x3a, 0x36, 0xfc, - 0x32, 0x36, 0x17, 0x35, 0x1e, 0x1f, 0x46, 0x27, 0x23, 0x37, 0x13, 0x13, - 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, 0x31, 0x2d, 0x29, 0x47, - 0x1e, 0x1e, 0x34, 0x16, 0x36, 0x04, 0x04, 0x01, 0x34, 0x1b, 0x2c, 0x2c, - 0x1b, 0x1c, 0x2e, 0x2f, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, - 0x05, 0xf6, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, - 0x00, 0xbe, 0x00, 0x36, 0xff, 0xff, 0x00, 0xbb, 0xfe, 0x4b, 0x03, 0xf5, - 0x06, 0x41, 0x06, 0x26, 0x01, 0x71, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0x7b, 0x54, 0xff, 0xff, 0x01, 0x01, 0xfe, 0xd1, 0x04, 0x3e, 0x06, 0x00, - 0x06, 0x26, 0x00, 0x26, 0x00, 0x00, 0x00, 0x06, 0x01, 0x68, 0x88, 0x9c, - 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x07, 0x71, 0x06, 0x26, - 0x00, 0x27, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x63, 0x01, 0x85, - 0xff, 0xff, 0x00, 0xd1, 0x00, 0x00, 0x04, 0x14, 0x06, 0x02, 0x04, 0x26, - 0x00, 0x27, 0xe2, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x01, 0x6a, 0x00, 0x02, - 0xff, 0xff, 0x00, 0xef, 0xfe, 0x6a, 0x04, 0x32, 0x06, 0x00, 0x06, 0x26, - 0x00, 0x27, 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0x25, 0xff, 0x35, - 0xff, 0xff, 0x00, 0xdb, 0x00, 0x00, 0x04, 0x1e, 0x06, 0x00, 0x04, 0x26, - 0x00, 0x27, 0xec, 0x00, 0x00, 0x07, 0x01, 0x60, 0x01, 0x0f, 0xfd, 0xc5, - 0x00, 0x01, 0x00, 0xee, 0x00, 0x00, 0x04, 0x43, 0x06, 0x00, 0x00, 0x11, - 0x00, 0x00, 0x41, 0x11, 0x21, 0x15, 0x21, 0x11, 0x05, 0x07, 0x25, 0x11, - 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0x25, 0x37, 0x02, 0xb6, 0xfe, 0x39, - 0x01, 0x91, 0xfe, 0x74, 0x06, 0x01, 0x92, 0xfe, 0x6f, 0x03, 0x43, 0xfe, - 0x84, 0x01, 0x87, 0x06, 0x03, 0x4a, 0x02, 0xb6, 0x36, 0xfd, 0x74, 0x57, - 0x3b, 0x59, 0xfd, 0x31, 0x36, 0x36, 0x02, 0xdb, 0x56, 0x3b, 0xff, 0xff, - 0x00, 0xd4, 0x00, 0x00, 0x04, 0x06, 0x05, 0xea, 0x06, 0x26, 0x00, 0x29, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x52, 0xfe, 0xff, 0xff, 0x00, 0xd4, - 0x00, 0x00, 0x04, 0x06, 0x05, 0xee, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0xf9, 0x0c, 0xff, 0xff, 0x00, 0xd4, 0xfe, 0x69, - 0x04, 0x06, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0xff, 0xef, 0xff, 0x34, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, - 0x04, 0x06, 0x05, 0xcc, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0x89, 0x00, 0x0c, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, - 0x04, 0x40, 0x05, 0xea, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x5b, 0xfe, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x05, 0xd0, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x01, 0x02, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xeb, - 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xf0, 0xfe, - 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xc3, 0x06, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xfd, 0xfe, 0xff, 0xff, - 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xea, 0x06, 0x26, 0x00, 0x2a, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xb2, 0xfe, 0x00, 0x02, 0x00, 0x72, - 0xff, 0xec, 0x04, 0xaa, 0x04, 0xac, 0x00, 0x26, 0x00, 0x40, 0x00, 0x00, - 0x53, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x17, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x72, 0x01, 0x40, 0x3d, 0x3c, 0xb0, 0x71, - 0x71, 0xaf, 0x3c, 0x3c, 0x3f, 0x01, 0x02, 0x31, 0x30, 0x3e, 0x58, 0x1c, - 0x1b, 0x1a, 0x01, 0x36, 0x02, 0x14, 0x17, 0x12, 0x3e, 0x56, 0x3d, 0xaa, - 0x6f, 0x71, 0xaf, 0x3c, 0x3c, 0x40, 0x35, 0x01, 0x39, 0x36, 0x35, 0x9b, - 0x63, 0x63, 0x9c, 0x36, 0x35, 0x39, 0x01, 0x01, 0x38, 0x35, 0x36, 0x9a, - 0x64, 0x64, 0x9c, 0x35, 0x36, 0x39, 0x02, 0x32, 0x2a, 0x69, 0xc3, 0x4b, - 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, 0x68, 0x2a, 0x5d, 0xae, 0x48, 0x06, - 0x2d, 0x26, 0x26, 0x67, 0x41, 0x39, 0x58, 0x1f, 0x17, 0x24, 0x0d, 0x43, - 0x57, 0x5b, 0x4b, 0x4b, 0xc3, 0x92, 0x2a, 0x5b, 0xaf, 0x44, 0x44, 0x54, - 0x54, 0x44, 0x44, 0xaf, 0x5b, 0x2a, 0x5c, 0xae, 0x44, 0x45, 0x53, 0x53, - 0x44, 0x44, 0xaf, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x05, 0xfe, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x63, - 0x5d, 0xfe, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xb8, - 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xf7, 0x08, - 0x00, 0x03, 0x00, 0x8d, 0xff, 0x6f, 0x04, 0x40, 0x04, 0xc3, 0x00, 0x22, - 0x00, 0x30, 0x00, 0x41, 0x00, 0x00, 0x53, 0x15, 0x16, 0x16, 0x17, 0x07, - 0x33, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x37, 0x23, 0x07, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x01, 0x26, 0x26, 0x25, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x01, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x8d, 0x02, 0x5a, 0x58, 0x71, 0x3f, 0x60, 0x34, 0x7c, 0x49, 0x71, 0xaf, - 0x3c, 0x3c, 0x40, 0x01, 0x20, 0x1e, 0x1f, 0x5a, 0x3a, 0x58, 0x3f, 0x4b, - 0x29, 0x5b, 0x32, 0x71, 0xaf, 0x3c, 0x3c, 0x40, 0x35, 0x3a, 0x36, 0x35, - 0x9b, 0x63, 0x2c, 0x4f, 0x23, 0xfe, 0x57, 0x49, 0x4d, 0x03, 0x45, 0x01, - 0x38, 0x35, 0x36, 0x9a, 0x64, 0x42, 0x70, 0x2e, 0x01, 0xae, 0x33, 0x4e, - 0x1b, 0x1b, 0x1c, 0x02, 0x32, 0x2a, 0x7f, 0xe5, 0x4c, 0xe9, 0xc6, 0x23, - 0x26, 0x5b, 0x4b, 0x4b, 0xc3, 0x68, 0x2a, 0x49, 0x8d, 0x3f, 0x3e, 0x67, - 0x23, 0xb4, 0x9a, 0x13, 0x12, 0x5b, 0x4b, 0x4b, 0xc3, 0x92, 0x2a, 0x5b, - 0xaf, 0x44, 0x44, 0x54, 0x11, 0x10, 0xfc, 0x95, 0x46, 0xc9, 0x97, 0x2a, - 0x5c, 0xae, 0x44, 0x45, 0x53, 0x24, 0x21, 0x03, 0x75, 0x21, 0x5d, 0x38, - 0x38, 0x7d, 0xff, 0xff, 0x00, 0x8d, 0xff, 0x6f, 0x04, 0x40, 0x05, 0xe9, - 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x53, 0xfd, - 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xcc, 0x06, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x92, 0x00, 0x0c, - 0xff, 0xff, 0x01, 0x86, 0x00, 0x00, 0x04, 0x34, 0x05, 0xea, 0x06, 0x26, - 0x00, 0x2d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x38, 0xfe, 0xff, 0xff, - 0x01, 0x4c, 0x00, 0x00, 0x04, 0x34, 0x05, 0xee, 0x06, 0x26, 0x00, 0x2d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xdf, 0x0c, 0xff, 0xff, 0x01, 0x44, - 0xfe, 0x72, 0x04, 0x34, 0x04, 0x4f, 0x06, 0x26, 0x00, 0x2d, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0xff, 0x2b, 0xff, 0x3d, 0xff, 0xff, 0x00, 0xcc, - 0xff, 0xec, 0x04, 0x21, 0x05, 0xea, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5b, 0x7d, 0xfe, 0xff, 0xff, 0x00, 0xcc, 0xff, 0xec, - 0x04, 0x21, 0x05, 0xee, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x64, 0x23, 0x0c, 0xff, 0xff, 0x00, 0xcc, 0xfe, 0x49, 0x04, 0x21, - 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, - 0x26, 0xfc, 0xff, 0xff, 0x00, 0xcc, 0xff, 0xec, 0x04, 0x21, 0x05, 0xeb, - 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0x11, 0xfe, - 0x00, 0x01, 0x00, 0xc5, 0xff, 0xec, 0x03, 0xf4, 0x05, 0x5e, 0x00, 0x2b, - 0x00, 0x00, 0x41, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, 0x15, 0x33, - 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x02, 0x3d, - 0x3a, 0xfe, 0xc2, 0x01, 0x3e, 0xf2, 0xf2, 0x02, 0x32, 0x2c, 0x2c, 0x78, - 0x48, 0x15, 0x2b, 0x15, 0x14, 0x28, 0x14, 0x0b, 0x12, 0x25, 0x12, 0x15, - 0x2b, 0x16, 0x3a, 0x61, 0x24, 0x24, 0x29, 0x02, 0x01, 0x20, 0xfe, 0xe0, - 0x01, 0x86, 0xfe, 0x7a, 0x05, 0x5e, 0xfe, 0xdc, 0x37, 0xfe, 0xad, 0x36, - 0xfe, 0x89, 0x4e, 0x6a, 0x21, 0x21, 0x1d, 0x01, 0x01, 0x01, 0x05, 0x04, - 0x33, 0x02, 0x03, 0x01, 0x02, 0x01, 0x18, 0x1b, 0x1a, 0x55, 0x3f, 0x01, - 0x77, 0x36, 0x01, 0x53, 0x37, 0x00, 0xff, 0xff, 0x00, 0xb1, 0xff, 0xec, - 0x03, 0xe0, 0x06, 0x17, 0x04, 0x26, 0x00, 0x2f, 0xec, 0x00, 0x00, 0x07, - 0x00, 0x6d, 0x01, 0x29, 0x00, 0x17, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, - 0x03, 0xfc, 0x05, 0xec, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x39, 0x00, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, - 0x05, 0xd3, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0xfb, 0x05, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, 0x05, 0xed, - 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xee, 0x00, - 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, 0x05, 0xc5, 0x06, 0x26, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xdb, 0x00, 0xff, 0xff, - 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, 0x05, 0xec, 0x06, 0x26, 0x00, 0x30, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x90, 0x00, 0x00, 0x01, 0x00, 0xd8, - 0xff, 0xec, 0x04, 0xf4, 0x04, 0xa6, 0x00, 0x27, 0x00, 0x00, 0x41, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x35, 0x23, 0x13, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x07, 0x33, 0x11, - 0x36, 0x36, 0x04, 0xf4, 0x37, 0x01, 0x15, 0x16, 0x17, 0x48, 0x36, 0x38, - 0x01, 0x0e, 0x41, 0x31, 0x32, 0x82, 0x4e, 0x51, 0x74, 0x25, 0x26, 0x24, - 0x01, 0x36, 0x01, 0x2c, 0x2d, 0x2c, 0x89, 0x5e, 0x8b, 0xc1, 0x34, 0x01, - 0x38, 0x82, 0x73, 0x04, 0xa6, 0x38, 0x56, 0x1e, 0x1e, 0x24, 0x05, 0x87, - 0xfd, 0x13, 0x46, 0x6f, 0x26, 0x27, 0x29, 0x38, 0x31, 0x31, 0x82, 0x4b, - 0x02, 0xb1, 0xfd, 0x51, 0x58, 0x98, 0x37, 0x38, 0x40, 0x71, 0x64, 0xc1, - 0x03, 0x7d, 0x0b, 0x98, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, - 0x06, 0x00, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x63, - 0x3b, 0x00, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, 0x05, 0xbb, - 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xfa, 0x0b, - 0x00, 0x01, 0x00, 0xd8, 0xfe, 0x75, 0x04, 0x1c, 0x04, 0x3a, 0x00, 0x38, - 0x00, 0x00, 0x61, 0x33, 0x11, 0x23, 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, - 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x03, - 0xfb, 0x01, 0x38, 0x01, 0x0e, 0x41, 0x31, 0x32, 0x82, 0x4e, 0x51, 0x74, - 0x25, 0x26, 0x24, 0x01, 0x36, 0x01, 0x2c, 0x2d, 0x2c, 0x89, 0x5e, 0x8b, - 0xc1, 0x34, 0x01, 0x1e, 0x46, 0x1d, 0x1d, 0x28, 0x17, 0x14, 0x14, 0x39, - 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x29, - 0x1e, 0x1e, 0x45, 0x04, 0x3a, 0xfd, 0x13, 0x46, 0x6f, 0x26, 0x27, 0x29, - 0x38, 0x31, 0x31, 0x82, 0x4b, 0x02, 0xb1, 0xfd, 0x51, 0x58, 0x98, 0x37, - 0x38, 0x40, 0x71, 0x64, 0xb6, 0x17, 0x37, 0x20, 0x20, 0x4a, 0x29, 0x23, - 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, 0x31, - 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, - 0x03, 0xfc, 0x06, 0x14, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x62, 0xe1, 0x00, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x03, 0xfc, - 0x05, 0xcf, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5d, - 0x70, 0x0f, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x91, 0x05, 0xec, - 0x06, 0x26, 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x62, 0x00, - 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x04, 0x91, 0x05, 0xed, 0x06, 0x26, - 0x00, 0x32, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xf7, 0x00, 0xff, 0xff, - 0x00, 0x4d, 0x00, 0x00, 0x04, 0x91, 0x05, 0xc5, 0x06, 0x26, 0x00, 0x32, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x03, 0x00, 0xff, 0xff, 0x00, 0x4d, - 0x00, 0x00, 0x04, 0x91, 0x05, 0xec, 0x06, 0x26, 0x00, 0x32, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xb9, 0x00, 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, - 0x04, 0x75, 0x05, 0xec, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x67, 0x00, 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, - 0x05, 0xed, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0xfc, 0x00, 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x05, 0xc5, - 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x08, 0x00, - 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x05, 0xec, 0x06, 0x26, - 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xbe, 0x00, 0xff, 0xff, - 0x00, 0x89, 0x00, 0x00, 0x04, 0x57, 0x05, 0xec, 0x06, 0x26, 0x00, 0x35, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x50, 0x00, 0xff, 0xff, 0x00, 0x89, - 0x00, 0x00, 0x04, 0x57, 0x05, 0xf1, 0x06, 0x26, 0x00, 0x35, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0x1b, 0x0f, 0xff, 0xff, 0x00, 0x89, 0x00, 0x00, - 0x04, 0x57, 0x05, 0xad, 0x06, 0x26, 0x00, 0x35, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x60, 0x1b, 0x00, 0x00, 0x01, 0x01, 0xec, 0x04, 0xe2, 0x02, 0xe1, - 0x05, 0xec, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, 0x23, 0x13, 0x02, 0xe1, - 0xb4, 0x41, 0xbb, 0x04, 0xe2, 0x01, 0x0a, 0xfe, 0xf6, 0x00, 0x00, 0x01, - 0x01, 0xea, 0x04, 0xe2, 0x02, 0xe4, 0x05, 0xec, 0x00, 0x03, 0x00, 0x00, - 0x41, 0x03, 0x33, 0x13, 0x02, 0xa2, 0xb8, 0x3b, 0xbf, 0x05, 0xec, 0xfe, - 0xf6, 0x01, 0x0a, 0x00, 0x00, 0x01, 0x01, 0x82, 0x04, 0xf0, 0x03, 0x7a, - 0x05, 0xed, 0x00, 0x08, 0x00, 0x00, 0x41, 0x27, 0x23, 0x07, 0x15, 0x33, - 0x37, 0x17, 0x33, 0x03, 0x7a, 0xea, 0x28, 0xe6, 0x40, 0xb9, 0xbb, 0x44, - 0x04, 0xfa, 0xf3, 0xef, 0x0e, 0xc4, 0xc4, 0x00, 0x00, 0x01, 0x00, 0x9c, - 0x05, 0x06, 0x03, 0x0a, 0x05, 0xc0, 0x00, 0x25, 0x00, 0x00, 0x41, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x03, 0x0a, 0x36, 0x03, 0x0f, 0x0e, 0x0e, 0x2a, 0x1d, 0x29, 0x41, 0x1f, - 0x20, 0x44, 0x2a, 0x28, 0x3e, 0x15, 0x16, 0x19, 0x02, 0x36, 0x03, 0x10, - 0x0e, 0x0e, 0x2a, 0x1d, 0x28, 0x38, 0x27, 0x22, 0x42, 0x2c, 0x28, 0x3d, - 0x16, 0x16, 0x18, 0x05, 0xc0, 0x1a, 0x2f, 0x12, 0x12, 0x16, 0x26, 0x18, - 0x17, 0x27, 0x1c, 0x18, 0x19, 0x41, 0x25, 0x1a, 0x2d, 0x11, 0x11, 0x14, - 0x21, 0x1b, 0x18, 0x29, 0x1f, 0x1a, 0x19, 0x43, 0x00, 0x01, 0x01, 0x2d, - 0x05, 0x7b, 0x03, 0xa0, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x03, 0xa0, 0xfd, 0x8d, 0x05, 0x7b, 0x35, 0x35, 0x00, 0x01, - 0x01, 0x50, 0x04, 0xd6, 0x03, 0x7d, 0x05, 0xce, 0x00, 0x19, 0x00, 0x00, - 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x03, 0x7d, 0x36, 0x03, 0x24, 0x1d, 0x1e, 0x50, 0x2e, 0x30, - 0x50, 0x1d, 0x1e, 0x23, 0x03, 0x36, 0x03, 0x2d, 0x25, 0x25, 0x63, 0x3a, - 0x3a, 0x63, 0x25, 0x25, 0x2c, 0x05, 0xce, 0x30, 0x48, 0x18, 0x18, 0x18, - 0x17, 0x18, 0x18, 0x48, 0x31, 0x3b, 0x5c, 0x20, 0x20, 0x21, 0x21, 0x20, - 0x20, 0x5c, 0x00, 0x01, 0x02, 0x2c, 0x05, 0x3e, 0x02, 0x9f, 0x05, 0xad, - 0x00, 0x0b, 0x00, 0x00, 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x02, 0x2c, 0x21, 0x18, 0x18, 0x21, 0x01, 0x22, - 0x18, 0x18, 0x21, 0x05, 0x75, 0x17, 0x20, 0x20, 0x17, 0x17, 0x21, 0x22, - 0x00, 0x02, 0x01, 0x4e, 0x05, 0x56, 0x03, 0x7a, 0x05, 0xc5, 0x00, 0x0b, - 0x00, 0x17, 0x00, 0x00, 0x41, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x01, 0x4e, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, - 0x16, 0x21, 0x01, 0xbd, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, 0x16, 0x21, - 0x05, 0x8d, 0x16, 0x21, 0x21, 0x16, 0x16, 0x22, 0x22, 0x16, 0x16, 0x21, - 0x21, 0x16, 0x16, 0x22, 0x22, 0x00, 0x00, 0x02, 0x01, 0xc2, 0x04, 0xbc, - 0x03, 0x09, 0x06, 0x14, 0x00, 0x17, 0x00, 0x2f, 0x00, 0x00, 0x41, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x01, 0xc2, - 0x19, 0x16, 0x15, 0x3c, 0x23, 0x23, 0x3c, 0x16, 0x16, 0x19, 0x19, 0x16, - 0x16, 0x3c, 0x23, 0x23, 0x3c, 0x16, 0x16, 0x18, 0x36, 0x10, 0x0e, 0x0e, - 0x29, 0x18, 0x19, 0x28, 0x0f, 0x0e, 0x10, 0x10, 0x0e, 0x0f, 0x29, 0x18, - 0x18, 0x28, 0x0e, 0x0f, 0x10, 0x05, 0x66, 0x22, 0x3e, 0x17, 0x17, 0x1c, - 0x1c, 0x17, 0x17, 0x3e, 0x22, 0x22, 0x3f, 0x18, 0x18, 0x1d, 0x1d, 0x18, - 0x18, 0x3f, 0x22, 0x18, 0x2b, 0x11, 0x10, 0x14, 0x14, 0x10, 0x11, 0x2b, - 0x18, 0x17, 0x2a, 0x10, 0x10, 0x13, 0x13, 0x10, 0x10, 0x2a, 0x00, 0x02, - 0x01, 0x35, 0x04, 0xd0, 0x03, 0x98, 0x06, 0x00, 0x00, 0x03, 0x00, 0x07, - 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x21, 0x03, 0x33, 0x13, 0x03, 0x46, - 0xfe, 0xe0, 0x4a, 0x01, 0x28, 0xfe, 0x8f, 0xf2, 0x46, 0xf9, 0x06, 0x00, - 0xfe, 0xd0, 0x01, 0x30, 0xfe, 0xd0, 0x01, 0x30, 0x00, 0x01, 0x01, 0x6d, - 0x04, 0xdb, 0x03, 0x5e, 0x05, 0xe2, 0x00, 0x08, 0x00, 0x00, 0x41, 0x27, - 0x23, 0x15, 0x17, 0x33, 0x37, 0x35, 0x23, 0x02, 0x67, 0xc1, 0x39, 0xdc, - 0x3b, 0xda, 0x35, 0x05, 0x09, 0xd9, 0x0b, 0xfc, 0xfa, 0x0d, 0x00, 0x01, - 0xfc, 0xd3, 0xfe, 0xef, 0xfd, 0x46, 0xff, 0x5e, 0x00, 0x0b, 0x00, 0x00, - 0x45, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, - 0xfc, 0xd4, 0x22, 0x16, 0x16, 0x24, 0x24, 0x16, 0x16, 0x23, 0xda, 0x17, - 0x20, 0x20, 0x17, 0x17, 0x21, 0x22, 0x00, 0x01, 0x01, 0xec, 0xfe, 0x4d, - 0x03, 0x10, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x61, 0x23, 0x07, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x02, 0x6a, 0x35, 0x19, 0x1d, 0x43, 0x1d, 0x1c, 0x25, 0x01, 0x01, 0x32, - 0x24, 0x24, 0x51, 0x21, 0x07, 0x2c, 0x64, 0x2b, 0x2a, 0x38, 0x1c, 0x18, - 0x18, 0x41, 0x24, 0x79, 0x04, 0x0a, 0x0d, 0x0d, 0x2d, 0x27, 0x2a, 0x36, - 0x0f, 0x10, 0x0d, 0x01, 0x31, 0x01, 0x13, 0x15, 0x15, 0x48, 0x38, 0x28, - 0x3b, 0x15, 0x14, 0x18, 0x05, 0x00, 0x00, 0x01, 0x01, 0xb6, 0xfe, 0x75, - 0x02, 0xd4, 0x00, 0x14, 0x00, 0x1c, 0x00, 0x00, 0x61, 0x27, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x02, 0xb3, 0x2c, 0x1e, 0x49, 0x1f, 0x20, 0x2b, 0x17, 0x14, 0x14, - 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, - 0x29, 0x1e, 0x1e, 0x45, 0x14, 0x17, 0x39, 0x21, 0x21, 0x4d, 0x2b, 0x23, - 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, 0x31, - 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x00, 0x01, 0x02, 0x19, 0xff, 0x35, - 0x02, 0x94, 0x00, 0x74, 0x00, 0x09, 0x00, 0x00, 0x65, 0x35, 0x23, 0x15, - 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x02, 0x94, 0x36, 0x01, 0x23, 0x21, - 0x25, 0x2f, 0x27, 0x27, 0x4d, 0x4f, 0x3c, 0x63, 0x31, 0x20, 0x3a, 0x75, - 0xff, 0xff, 0x01, 0x13, 0x00, 0x92, 0x03, 0xcf, 0x03, 0x89, 0x04, 0x27, - 0x00, 0x7a, 0xff, 0x63, 0xff, 0xdd, 0x00, 0x07, 0x00, 0x7a, 0x00, 0xb2, - 0xff, 0xdd, 0x00, 0x01, 0x00, 0xe0, 0xfe, 0x60, 0x03, 0xee, 0x04, 0x3a, - 0x00, 0x1e, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x17, 0x33, 0x11, 0x23, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, - 0x14, 0x34, 0x34, 0x2e, 0xa3, 0x6a, 0x47, 0x72, 0x2d, 0x2c, 0x41, 0x16, - 0x03, 0x33, 0x36, 0x06, 0x2c, 0x2b, 0x2c, 0x88, 0x61, 0x57, 0x74, 0x23, - 0x24, 0x1e, 0x02, 0x04, 0x3a, 0xfa, 0x26, 0x02, 0x48, 0x54, 0x68, 0x24, - 0x20, 0x20, 0x57, 0x35, 0xdc, 0x04, 0x3a, 0xfd, 0x78, 0x53, 0x92, 0x36, - 0x36, 0x3f, 0x46, 0x3a, 0x39, 0x92, 0x4b, 0x00, 0xff, 0xff, 0x00, 0xf9, - 0x00, 0xab, 0x03, 0xbe, 0x03, 0xac, 0x04, 0x27, 0x00, 0x7b, 0xff, 0x48, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x7b, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x01, - 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, - 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0xef, 0x01, - 0x8d, 0xfe, 0x73, 0x03, 0x43, 0xfe, 0x80, 0x04, 0x3a, 0x36, 0xfc, 0x32, - 0x36, 0x36, 0x04, 0x04, 0x00, 0x02, 0x00, 0x95, 0xff, 0xed, 0x04, 0x42, - 0x05, 0xb0, 0x00, 0x03, 0x00, 0x1c, 0x00, 0x00, 0x73, 0x11, 0x23, 0x11, - 0x01, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x23, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x11, 0xcb, 0x36, 0x03, 0x77, 0x1a, 0x21, 0x21, 0x72, 0x59, 0x8c, 0x97, - 0x36, 0x32, 0x2e, 0x2d, 0x7f, 0x4d, 0x5a, 0x83, 0x2b, 0x2b, 0x2a, 0x05, - 0xb0, 0xfa, 0x50, 0x05, 0xb0, 0xfb, 0xa5, 0x41, 0x6f, 0x29, 0x2a, 0x2f, - 0x87, 0x97, 0x57, 0x80, 0x2a, 0x2a, 0x29, 0x31, 0x2e, 0x2e, 0x86, 0x55, - 0x04, 0x5b, 0x00, 0x04, 0x00, 0x82, 0xfe, 0x4b, 0x04, 0x0b, 0x05, 0xb9, - 0x00, 0x1d, 0x00, 0x27, 0x00, 0x33, 0x00, 0x3f, 0x00, 0x00, 0x41, 0x15, - 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, - 0x23, 0x11, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, - 0x22, 0x06, 0x02, 0xa5, 0x01, 0x0d, 0x38, 0x2f, 0x30, 0x7d, 0x44, 0x10, - 0x33, 0x1b, 0x1c, 0x37, 0x13, 0x04, 0x1c, 0x31, 0x18, 0x18, 0x32, 0x1d, - 0x5d, 0x92, 0x33, 0x33, 0x35, 0xfc, 0x9a, 0x01, 0x17, 0xfe, 0xe9, 0x02, - 0x1f, 0xd2, 0x64, 0x1d, 0x29, 0x28, 0x1f, 0x1f, 0x28, 0x2b, 0x1b, 0x02, - 0x12, 0x1d, 0x2a, 0x28, 0x1f, 0x1f, 0x28, 0x2c, 0x1b, 0x04, 0x3a, 0x36, - 0xfc, 0x02, 0x6c, 0x94, 0x2e, 0x2f, 0x29, 0x01, 0x02, 0x01, 0x05, 0x03, - 0x30, 0x05, 0x06, 0x02, 0x02, 0x02, 0x40, 0x3a, 0x3a, 0xa4, 0x63, 0x04, - 0x34, 0x36, 0xfc, 0x32, 0x36, 0x36, 0x04, 0x04, 0x01, 0x34, 0x1b, 0x2c, - 0x2c, 0x1b, 0x1c, 0x2e, 0x2f, 0x1a, 0x1b, 0x2c, 0x2c, 0x1b, 0x1c, 0x2e, - 0x2f, 0x00, 0x00, 0x01, 0x02, 0x0a, 0x00, 0x00, 0x03, 0xf0, 0x06, 0x15, - 0x00, 0x15, 0x00, 0x00, 0x61, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x32, 0x16, 0x17, 0x37, 0x26, 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x02, 0x0a, 0x3a, 0x01, 0x2a, 0x25, 0x24, 0x65, 0x3e, 0x24, - 0x46, 0x23, 0x08, 0x25, 0x4b, 0x26, 0x4a, 0x7a, 0x2c, 0x2c, 0x31, 0x01, - 0x04, 0xd4, 0x3f, 0x62, 0x23, 0x22, 0x24, 0x01, 0x07, 0x08, 0x34, 0x09, - 0x08, 0x01, 0x2c, 0x29, 0x29, 0x77, 0x4b, 0x00, 0x00, 0x01, 0x00, 0xbb, - 0xfe, 0x4b, 0x03, 0x11, 0x04, 0x3a, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x15, - 0x21, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x11, 0x01, 0x0f, 0x01, 0xcc, 0x38, 0x2f, 0x30, 0x7d, - 0x44, 0x10, 0x33, 0x1b, 0x1c, 0x37, 0x13, 0x04, 0x1c, 0x31, 0x18, 0x18, - 0x32, 0x1d, 0x5d, 0x92, 0x33, 0x33, 0x35, 0x04, 0x3a, 0x36, 0xfc, 0x02, - 0x6c, 0x94, 0x2e, 0x2f, 0x29, 0x01, 0x02, 0x01, 0x05, 0x03, 0x30, 0x05, - 0x06, 0x02, 0x02, 0x02, 0x40, 0x3a, 0x3a, 0xa4, 0x63, 0x04, 0x34, 0x00, - 0x00, 0x02, 0x01, 0xec, 0xfe, 0xb1, 0x02, 0xe1, 0xff, 0x9d, 0x00, 0x17, - 0x00, 0x23, 0x00, 0x00, 0x45, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x17, 0x36, 0x36, 0x17, 0x16, 0x16, 0x15, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x01, 0xec, 0x15, 0x12, 0x11, 0x2c, 0x18, 0x18, - 0x2b, 0x11, 0x11, 0x14, 0x14, 0x10, 0x11, 0x2c, 0x18, 0x18, 0x2d, 0x11, - 0x11, 0x15, 0x39, 0x05, 0x21, 0x1d, 0x19, 0x28, 0x01, 0x27, 0x19, 0x1e, - 0x1d, 0xdb, 0x19, 0x2a, 0x0f, 0x10, 0x12, 0x12, 0x10, 0x0f, 0x2b, 0x18, - 0x18, 0x2b, 0x11, 0x10, 0x14, 0x13, 0x10, 0x11, 0x2c, 0x18, 0x1a, 0x25, - 0x01, 0x01, 0x23, 0x1a, 0x1a, 0x22, 0x22, 0x00, 0x00, 0x01, 0xfc, 0xa5, - 0x04, 0xdc, 0xfd, 0xac, 0x05, 0xff, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, - 0x23, 0x13, 0xfd, 0xac, 0xb4, 0x53, 0xbf, 0x04, 0xdc, 0x01, 0x23, 0xfe, - 0xdd, 0x00, 0x00, 0x01, 0xfd, 0x35, 0x04, 0xdd, 0xfe, 0x1d, 0x06, 0x00, - 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0xfd, 0xd8, 0xa3, 0x3f, - 0xa9, 0x06, 0x00, 0xfe, 0xdd, 0x01, 0x23, 0x00, 0xff, 0xff, 0xfc, 0x5a, - 0x05, 0x06, 0xfe, 0xc8, 0x05, 0xc0, 0x04, 0x07, 0x01, 0x5d, 0xfb, 0xbe, - 0x00, 0x00, 0x00, 0x01, 0xfd, 0x4b, 0x04, 0xcb, 0xfe, 0x6f, 0x06, 0x3f, - 0x00, 0x1b, 0x00, 0x00, 0x41, 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x06, 0x07, 0xfd, 0x7a, 0x30, 0x23, - 0x47, 0x1c, 0x1c, 0x23, 0x3e, 0x2c, 0x2c, 0x62, 0x25, 0x07, 0x1b, 0x50, - 0x25, 0x25, 0x36, 0x01, 0x01, 0x27, 0x1d, 0x1e, 0x42, 0x1a, 0x04, 0xcb, - 0x36, 0x04, 0x13, 0x13, 0x12, 0x39, 0x2a, 0x33, 0x3d, 0x11, 0x11, 0x0c, - 0x01, 0x31, 0x01, 0x05, 0x0b, 0x0b, 0x2b, 0x27, 0x24, 0x2b, 0x0b, 0x0c, - 0x09, 0x03, 0x00, 0x02, 0xfa, 0xe5, 0x04, 0xe4, 0xfd, 0x39, 0x05, 0xee, - 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x21, 0x03, - 0x23, 0x13, 0xfc, 0x58, 0xfe, 0xdd, 0x50, 0x01, 0x2a, 0x01, 0x2a, 0xf6, - 0x4c, 0xfd, 0x04, 0xe4, 0x01, 0x0a, 0xfe, 0xf6, 0x01, 0x0a, 0xfe, 0xf6, - 0x00, 0x01, 0x02, 0x5b, 0x05, 0x19, 0x03, 0x08, 0x06, 0x2a, 0x00, 0x03, - 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x02, 0xc5, 0x6a, 0x38, 0x75, 0x06, - 0x2a, 0xfe, 0xef, 0x01, 0x11, 0x00, 0x00, 0x03, 0x01, 0x89, 0x05, 0x56, - 0x03, 0x96, 0x06, 0x79, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x00, - 0x41, 0x07, 0x33, 0x37, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, - 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x36, - 0x26, 0x23, 0x22, 0x06, 0x02, 0x89, 0x16, 0x39, 0x29, 0xfe, 0xb4, 0x20, - 0x15, 0x16, 0x20, 0x20, 0x16, 0x16, 0x1f, 0x01, 0xa1, 0x20, 0x15, 0x16, - 0x20, 0x01, 0x21, 0x16, 0x16, 0x1f, 0x06, 0x79, 0xf0, 0xf0, 0xec, 0x15, - 0x22, 0x22, 0x15, 0x15, 0x23, 0x23, 0x15, 0x15, 0x22, 0x22, 0x15, 0x15, - 0x23, 0x23, 0xff, 0xff, 0x02, 0x2f, 0x02, 0x8b, 0x02, 0x9e, 0x02, 0xfa, - 0x04, 0x06, 0x00, 0x64, 0xfa, 0x00, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, - 0x04, 0x21, 0x05, 0xb0, 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, - 0x33, 0x11, 0x04, 0x21, 0xfc, 0xa6, 0x36, 0x05, 0x7a, 0x36, 0xfa, 0x50, - 0x05, 0x7a, 0x00, 0x02, 0x00, 0x4f, 0x00, 0x00, 0x04, 0xa3, 0x05, 0xb0, - 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x41, 0x01, 0x21, 0x09, 0x02, 0x37, - 0x17, 0x01, 0x02, 0x5b, 0xfd, 0xf4, 0x04, 0x54, 0xfd, 0xf3, 0xfe, 0x03, - 0x01, 0xc9, 0x16, 0x16, 0x01, 0xc8, 0x05, 0xb0, 0xfa, 0x50, 0x05, 0xb0, - 0xfa, 0x86, 0x04, 0xf7, 0x46, 0x46, 0xfb, 0x09, 0x00, 0x03, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0x3e, 0x05, 0xc4, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x37, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x05, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x57, - 0xfe, 0x00, 0x02, 0xe7, 0x02, 0x3a, 0x42, 0x3d, 0xa7, 0x76, 0x7b, 0xb0, - 0x36, 0x3d, 0x38, 0x02, 0x02, 0x3b, 0x3d, 0x38, 0xb0, 0x78, 0x74, 0xac, - 0x38, 0x40, 0x3e, 0x35, 0x02, 0x35, 0x3d, 0x33, 0x94, 0x66, 0x6e, 0x9b, - 0x31, 0x37, 0x30, 0x02, 0x34, 0x36, 0x31, 0x99, 0x6d, 0x68, 0x98, 0x30, - 0x3a, 0x37, 0x02, 0xb3, 0x35, 0x35, 0x48, 0xda, 0x71, 0xf3, 0x5d, 0x56, - 0x68, 0x74, 0x56, 0x61, 0xe6, 0x6e, 0xda, 0x6f, 0xed, 0x5c, 0x58, 0x6f, - 0x69, 0x54, 0x5d, 0xf3, 0x01, 0x4e, 0xdc, 0x69, 0xe4, 0x59, 0x46, 0x5d, - 0x66, 0x51, 0x55, 0xd9, 0x64, 0xdc, 0x64, 0xda, 0x57, 0x4b, 0x67, 0x5d, - 0x49, 0x59, 0xe0, 0x00, 0x00, 0x01, 0x00, 0x66, 0x00, 0x00, 0x04, 0x79, - 0x05, 0xb0, 0x00, 0x06, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x23, 0x01, - 0x33, 0x02, 0x6f, 0x01, 0xd1, 0x39, 0xfe, 0x15, 0x3e, 0xfe, 0x16, 0x39, - 0x05, 0x63, 0xfa, 0x9d, 0x05, 0xb0, 0xfa, 0x50, 0x00, 0x03, 0x00, 0xa1, - 0x00, 0x00, 0x04, 0x27, 0x05, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, - 0x00, 0x00, 0x77, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, - 0x21, 0x35, 0xa1, 0x03, 0x86, 0xfc, 0xe6, 0x02, 0xa6, 0xfd, 0x03, 0x03, - 0x4a, 0x36, 0x36, 0x36, 0x02, 0xaf, 0x36, 0x36, 0x02, 0xcb, 0x35, 0x35, - 0x00, 0x01, 0x00, 0xba, 0x00, 0x00, 0x04, 0x13, 0x05, 0xb0, 0x00, 0x07, - 0x00, 0x00, 0x61, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x04, 0x13, - 0xfc, 0xa7, 0x33, 0x02, 0xf3, 0x05, 0xb0, 0xfa, 0x50, 0x05, 0x7a, 0xfa, - 0x86, 0x00, 0x00, 0x01, 0x00, 0x82, 0x00, 0x00, 0x04, 0x62, 0x05, 0xb0, - 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, - 0x01, 0x15, 0x21, 0x35, 0x21, 0x02, 0xd9, 0xfd, 0xfc, 0x03, 0x51, 0xfc, - 0x5c, 0x02, 0x23, 0xfd, 0xdd, 0x03, 0xe0, 0xfc, 0x6c, 0x03, 0x00, 0x2f, - 0x02, 0x4c, 0x35, 0x2c, 0xfd, 0x8f, 0xfd, 0x19, 0x2c, 0x36, 0x00, 0x03, - 0x00, 0x59, 0x00, 0x00, 0x04, 0x75, 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x2a, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, 0x23, 0x15, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x33, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x01, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x25, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x02, 0x80, 0x34, 0x6e, 0xb8, 0x42, 0x42, 0x49, 0x49, 0x42, 0x42, 0xb8, - 0x6e, 0x34, 0x6f, 0xb8, 0x42, 0x42, 0x4a, 0x4a, 0x42, 0x43, 0xb8, 0xfd, - 0xa2, 0x40, 0x3b, 0x3a, 0xa4, 0x63, 0x64, 0xa3, 0x3a, 0x3b, 0x40, 0x03, - 0xaf, 0x40, 0x3b, 0x3b, 0xa5, 0x64, 0x64, 0xa4, 0x3b, 0x3b, 0x41, 0x04, - 0xf2, 0xbe, 0xbe, 0x03, 0x54, 0x47, 0x48, 0xbe, 0x6d, 0x6e, 0xbe, 0x47, - 0x47, 0x53, 0x03, 0xd1, 0xd1, 0x02, 0x54, 0x48, 0x47, 0xbf, 0x6e, 0x6d, - 0xbe, 0x47, 0x47, 0x53, 0xfd, 0xf2, 0x62, 0xab, 0x40, 0x40, 0x4b, 0x03, - 0xfc, 0x4b, 0x02, 0x4b, 0x40, 0x3f, 0xab, 0x65, 0x63, 0xac, 0x40, 0x41, - 0x4b, 0x01, 0x03, 0xb5, 0x02, 0x4a, 0x3f, 0x40, 0xab, 0x00, 0x00, 0x01, - 0x00, 0x91, 0x00, 0x00, 0x04, 0x4c, 0x05, 0xb0, 0x00, 0x23, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, - 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x03, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x02, 0x87, 0x34, 0x5f, 0x93, 0x32, 0x32, 0x34, 0x01, 0x01, 0x35, 0x01, - 0x01, 0x3b, 0x39, 0x39, 0xa7, 0x6d, 0x34, 0x6e, 0xa8, 0x39, 0x39, 0x3d, - 0x01, 0x34, 0x01, 0x01, 0x34, 0x32, 0x33, 0x95, 0x01, 0xd7, 0x03, 0xd9, - 0xfc, 0x27, 0x06, 0x51, 0x41, 0x40, 0xa7, 0x5c, 0x01, 0xfe, 0xfe, 0x02, - 0x69, 0xbb, 0x48, 0x48, 0x58, 0x06, 0xfe, 0x60, 0x01, 0xa0, 0x04, 0x58, - 0x48, 0x48, 0xbd, 0x69, 0x01, 0xfe, 0xfe, 0x02, 0x5c, 0xa7, 0x41, 0x42, - 0x51, 0x00, 0x00, 0x01, 0x00, 0x74, 0x00, 0x00, 0x04, 0x59, 0x05, 0xc4, - 0x00, 0x3b, 0x00, 0x00, 0x65, 0x15, 0x21, 0x35, 0x21, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x21, - 0x15, 0x21, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x02, 0xc4, 0x01, 0x95, 0xfe, 0xab, 0x55, 0x7a, - 0x27, 0x27, 0x24, 0x01, 0x02, 0x3c, 0x3f, 0x3c, 0xb1, 0x79, 0x87, 0xb9, - 0x3d, 0x32, 0x32, 0x01, 0x25, 0x27, 0x27, 0x7a, 0x56, 0xfe, 0xae, 0x01, - 0x96, 0x5c, 0x80, 0x28, 0x28, 0x25, 0x01, 0x2e, 0x2c, 0x31, 0xa8, 0x78, - 0x69, 0xa1, 0x2d, 0x39, 0x3b, 0x02, 0x01, 0x23, 0x27, 0x28, 0x7e, 0x4e, - 0x4e, 0x36, 0x35, 0x97, 0x5a, 0x59, 0xc4, 0x63, 0x75, 0x72, 0xe6, 0x5c, - 0x57, 0x68, 0x7c, 0x68, 0x56, 0xd3, 0x66, 0x75, 0x63, 0xc5, 0x59, 0x5a, - 0x97, 0x34, 0x36, 0x4e, 0x31, 0x8e, 0x56, 0x55, 0xc1, 0x63, 0x77, 0x59, - 0xbe, 0x50, 0x59, 0x7b, 0x61, 0x45, 0x58, 0xd7, 0x66, 0x77, 0x63, 0xc0, - 0x56, 0x56, 0x8e, 0x00, 0x00, 0x02, 0x00, 0x8c, 0xff, 0xeb, 0x04, 0x85, - 0x04, 0x4e, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x00, 0x41, 0x23, 0x07, 0x15, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x01, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x14, - 0x14, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x03, 0xc0, 0x30, 0x06, 0x19, 0x49, 0x2e, 0x2f, 0x6e, 0x3d, 0x70, - 0x9a, 0x31, 0x2e, 0x2b, 0x2e, 0x31, 0x2f, 0x98, 0x6c, 0x3b, 0x6e, 0x30, - 0x2f, 0x4c, 0x1a, 0x03, 0x11, 0x14, 0x13, 0x43, 0x33, 0x14, 0x22, 0x12, - 0x0b, 0x10, 0x1f, 0x11, 0x2a, 0x31, 0x0c, 0x0c, 0x07, 0xfd, 0x04, 0x23, - 0x2b, 0x25, 0x85, 0x63, 0x45, 0x77, 0x2f, 0x2f, 0x42, 0x0f, 0x10, 0x43, - 0x30, 0x30, 0x77, 0x43, 0x5e, 0x81, 0x28, 0x2c, 0x26, 0x04, 0x3a, 0xe4, - 0x06, 0x36, 0x5c, 0x23, 0x22, 0x27, 0x67, 0x54, 0x4f, 0xc8, 0x5e, 0x15, - 0x60, 0xc5, 0x4e, 0x4c, 0x5f, 0x22, 0x1f, 0x1f, 0x55, 0x33, 0x2a, 0x54, - 0x21, 0x21, 0x28, 0x08, 0x06, 0x31, 0x04, 0x06, 0x2e, 0x23, 0x22, 0x4d, - 0x1f, 0x01, 0x0a, 0x15, 0x53, 0xb3, 0x51, 0x46, 0x5d, 0x3a, 0x2f, 0x2f, - 0x7a, 0x41, 0xfe, 0xd2, 0x21, 0x1b, 0x10, 0x3f, 0x6d, 0x28, 0x28, 0x2e, - 0x52, 0x41, 0x48, 0xb6, 0x00, 0x02, 0x00, 0xd2, 0xfe, 0x63, 0x04, 0x46, - 0x05, 0xc4, 0x00, 0x26, 0x00, 0x4e, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x11, 0x33, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x03, - 0x23, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x02, 0x56, 0x57, 0x8e, 0x32, 0x33, 0x3a, 0x36, 0x1e, - 0x57, 0x33, 0x33, 0x6f, 0x37, 0x5b, 0xa2, 0x3d, 0x3d, 0x46, 0x33, 0x2c, - 0x2d, 0x79, 0x46, 0x32, 0x53, 0x1e, 0x1e, 0x21, 0x3d, 0x35, 0x35, 0x8e, - 0x56, 0x67, 0x8f, 0x52, 0x94, 0x37, 0x37, 0x41, 0x3d, 0x34, 0x35, 0x8f, - 0x51, 0x3a, 0x77, 0x34, 0x35, 0x52, 0x15, 0x31, 0x2b, 0x2b, 0x7b, 0x4c, - 0x45, 0x7b, 0x2e, 0x2d, 0x36, 0x32, 0x2d, 0x2d, 0x7e, 0x05, 0xc4, 0x47, - 0x3a, 0x3b, 0x99, 0x52, 0xfa, 0x46, 0x02, 0x37, 0x2c, 0x41, 0x16, 0x16, - 0x16, 0x37, 0x34, 0x34, 0x97, 0x60, 0x51, 0x81, 0x30, 0x30, 0x40, 0x0f, - 0x14, 0x3f, 0x2a, 0x2a, 0x68, 0x3d, 0x53, 0x8a, 0x32, 0x31, 0x36, 0xfd, - 0x53, 0x38, 0x01, 0x2c, 0x2c, 0x2c, 0x84, 0x59, 0x56, 0x82, 0x2c, 0x2c, - 0x2c, 0x1b, 0x1b, 0x1b, 0x52, 0x36, 0x03, 0x23, 0x47, 0x85, 0x34, 0x33, - 0x3e, 0x2d, 0x29, 0x29, 0x74, 0x48, 0x4f, 0x75, 0x27, 0x28, 0x28, 0x00, - 0x00, 0x01, 0x00, 0x6e, 0xfe, 0x61, 0x04, 0x79, 0x04, 0x3a, 0x00, 0x0b, - 0x00, 0x00, 0x41, 0x01, 0x07, 0x23, 0x27, 0x01, 0x23, 0x01, 0x11, 0x33, - 0x11, 0x01, 0x04, 0x3b, 0xfe, 0x7d, 0x44, 0x03, 0x41, 0xfe, 0x7c, 0x3e, - 0x01, 0xe9, 0x39, 0x01, 0xe9, 0x04, 0x3a, 0xfc, 0xab, 0xa0, 0xa0, 0x03, - 0x55, 0xfb, 0xc6, 0xfe, 0x61, 0x01, 0xa3, 0x04, 0x36, 0x00, 0x00, 0x02, - 0x00, 0x85, 0xff, 0xec, 0x04, 0x5d, 0x06, 0x1c, 0x00, 0x39, 0x00, 0x53, - 0x00, 0x00, 0x41, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x36, 0x16, 0x17, 0x37, 0x26, 0x26, 0x07, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x03, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x01, 0x0a, 0x2e, 0x25, 0x24, 0x5a, 0x2c, 0x5a, 0x8e, 0x31, - 0x32, 0x36, 0x01, 0x01, 0x47, 0x41, 0x40, 0xb5, 0x6f, 0x6f, 0xb4, 0x40, - 0x40, 0x46, 0x02, 0x02, 0x49, 0x3e, 0x3f, 0xa6, 0x5e, 0x48, 0x9e, 0x32, - 0x1b, 0x1f, 0x01, 0x01, 0x3f, 0x2f, 0x2f, 0x6c, 0x2f, 0x51, 0x92, 0x49, - 0x12, 0x4a, 0xa0, 0x55, 0x38, 0x80, 0x36, 0x37, 0x48, 0x50, 0x49, 0x3e, - 0x3e, 0xa7, 0x61, 0x54, 0x96, 0x39, 0x38, 0x42, 0x02, 0x02, 0x3f, 0x39, - 0x39, 0xa0, 0x62, 0x63, 0xa1, 0x39, 0x39, 0x40, 0x05, 0x1d, 0x36, 0x55, - 0x20, 0x21, 0x30, 0x11, 0x0b, 0x0e, 0x5b, 0x42, 0x42, 0xa3, 0x57, 0x2a, - 0x6b, 0xbd, 0x47, 0x47, 0x52, 0x53, 0x47, 0x46, 0xbd, 0x6b, 0x2a, 0x64, - 0xab, 0x43, 0x43, 0x5d, 0x14, 0x0f, 0x35, 0x2e, 0x19, 0x43, 0x2b, 0x3a, - 0x4d, 0x17, 0x17, 0x13, 0x01, 0x26, 0x23, 0x31, 0x2a, 0x24, 0x01, 0x1c, - 0x1e, 0x1f, 0x60, 0xfc, 0x92, 0x2a, 0x5b, 0xab, 0x41, 0x40, 0x47, 0x07, - 0x07, 0x52, 0x3f, 0x40, 0x9d, 0x52, 0x2a, 0x5e, 0xa9, 0x40, 0x40, 0x4b, - 0x4b, 0x40, 0x3f, 0xa9, 0x00, 0x01, 0x00, 0xaa, 0xff, 0xec, 0x04, 0x4a, - 0x04, 0x4e, 0x00, 0x52, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x35, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x06, 0x06, 0x07, 0x06, 0x06, 0xaa, 0x51, 0x31, 0x54, 0xac, 0x51, 0x4e, - 0x9e, 0x41, 0x41, 0x57, 0x08, 0x39, 0x01, 0x4b, 0x3a, 0x3c, 0x93, 0x3f, - 0x49, 0xa6, 0x4d, 0x2e, 0x33, 0x27, 0x21, 0x21, 0x56, 0x2f, 0x2e, 0x5d, - 0x28, 0xb9, 0xb9, 0x25, 0x57, 0x2c, 0x2c, 0x51, 0x1f, 0x1f, 0x26, 0x39, - 0x33, 0x36, 0x97, 0x4c, 0x3a, 0x85, 0x39, 0x39, 0x4d, 0x02, 0x39, 0x08, - 0x55, 0x3e, 0x3f, 0x96, 0x49, 0x4c, 0xa7, 0x44, 0x3c, 0x4b, 0x2b, 0x23, - 0x23, 0x5c, 0x31, 0x36, 0x63, 0x26, 0x27, 0x2d, 0x01, 0x22, 0x51, 0x71, - 0x1e, 0x33, 0x23, 0x23, 0x26, 0x26, 0x7b, 0x57, 0x49, 0x65, 0x1d, 0x22, - 0x1d, 0x1f, 0x2d, 0x1b, 0x5b, 0x3a, 0x35, 0x4d, 0x1b, 0x1a, 0x20, 0x09, - 0x08, 0x06, 0x37, 0x07, 0x09, 0x08, 0x1e, 0x19, 0x19, 0x48, 0x31, 0x3f, - 0x57, 0x1f, 0x21, 0x1d, 0x19, 0x1d, 0x1d, 0x60, 0x46, 0x52, 0x73, 0x25, - 0x24, 0x21, 0x21, 0x27, 0x23, 0x70, 0x51, 0x36, 0x52, 0x1e, 0x1e, 0x28, - 0x0c, 0x0b, 0x26, 0x1f, 0x20, 0x5a, 0x00, 0x01, 0x00, 0x7a, 0xfe, 0x78, - 0x04, 0x2a, 0x05, 0xb0, 0x00, 0x38, 0x00, 0x00, 0x41, 0x21, 0x15, 0x21, - 0x01, 0x06, 0x06, 0x07, 0x06, 0x06, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x01, 0x04, 0x2a, 0xfc, 0x50, 0x03, 0x59, 0xfe, - 0x44, 0x30, 0x5e, 0x25, 0x26, 0x2e, 0x01, 0x02, 0x40, 0x36, 0x27, 0x8f, - 0x47, 0xa2, 0x1b, 0x40, 0x1c, 0x1c, 0x26, 0x01, 0x1a, 0x15, 0x16, 0x39, - 0x1e, 0x27, 0x23, 0x3e, 0x17, 0x17, 0x1b, 0x2d, 0x22, 0x23, 0x51, 0x25, - 0x9c, 0x3d, 0x7a, 0x31, 0x29, 0x3b, 0x01, 0x01, 0x2b, 0x24, 0x23, 0x59, - 0x2c, 0x01, 0xed, 0x05, 0xb0, 0x35, 0xfd, 0xf4, 0x38, 0x7c, 0x43, 0x44, - 0x91, 0x4e, 0x48, 0x65, 0x25, 0x1b, 0x37, 0x11, 0x26, 0x06, 0x10, 0x0e, - 0x0e, 0x2c, 0x23, 0x24, 0x44, 0x1d, 0x1d, 0x30, 0x10, 0x1f, 0x12, 0x36, - 0x21, 0x21, 0x4d, 0x29, 0x2f, 0x3e, 0x15, 0x14, 0x18, 0x09, 0x25, 0x0e, - 0x29, 0x20, 0x1b, 0x56, 0x39, 0x48, 0x87, 0x3f, 0x3e, 0x73, 0x34, 0x02, - 0x43, 0x00, 0x00, 0x01, 0x00, 0xd0, 0xfe, 0x60, 0x04, 0x00, 0x04, 0x4e, - 0x00, 0x20, 0x00, 0x00, 0x73, 0x33, 0x03, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x35, 0x37, - 0x23, 0xd0, 0x37, 0x01, 0x0a, 0x39, 0x30, 0x30, 0x8b, 0x5c, 0x54, 0x76, - 0x26, 0x25, 0x23, 0x01, 0x37, 0x01, 0x2a, 0x2c, 0x2d, 0x8b, 0x62, 0x4e, - 0x7d, 0x30, 0x31, 0x46, 0x17, 0x01, 0x37, 0x02, 0x91, 0x4f, 0x8e, 0x36, - 0x35, 0x3f, 0x39, 0x32, 0x32, 0x87, 0x4d, 0xfb, 0xb9, 0x04, 0x45, 0x5b, - 0x9c, 0x39, 0x39, 0x40, 0x29, 0x24, 0x24, 0x63, 0x3a, 0x13, 0xe7, 0x00, - 0x00, 0x03, 0x00, 0xcf, 0xff, 0xec, 0x04, 0x03, 0x05, 0xc5, 0x00, 0x19, - 0x00, 0x28, 0x00, 0x37, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, 0x36, 0x12, - 0x35, 0x11, 0x34, 0x02, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x02, 0x15, 0x11, 0x14, 0x12, 0x17, 0x16, 0x16, 0x37, 0x22, 0x26, 0x27, - 0x26, 0x02, 0x35, 0x35, 0x21, 0x15, 0x06, 0x02, 0x07, 0x06, 0x06, 0x01, - 0x35, 0x34, 0x12, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x12, - 0x15, 0x15, 0x02, 0x6b, 0x51, 0x7d, 0x2c, 0x58, 0x46, 0x49, 0x56, 0x2d, - 0x7d, 0x51, 0x51, 0x7b, 0x2d, 0x58, 0x49, 0x4a, 0x58, 0x2d, 0x7c, 0x51, - 0x48, 0x6d, 0x28, 0x4a, 0x3f, 0x02, 0xc9, 0x02, 0x38, 0x4d, 0x27, 0x6d, - 0xfe, 0x52, 0x3a, 0x4d, 0x27, 0x6d, 0x49, 0x48, 0x6e, 0x27, 0x4e, 0x3a, - 0x14, 0x35, 0x30, 0x62, 0x01, 0x1a, 0x85, 0x01, 0x0c, 0x8e, 0x01, 0x15, - 0x5f, 0x30, 0x35, 0x37, 0x2e, 0x5b, 0xfe, 0xdb, 0x82, 0xfe, 0xf4, 0x85, - 0xfe, 0xdd, 0x59, 0x2e, 0x37, 0x36, 0x34, 0x2b, 0x4e, 0x01, 0x13, 0x72, - 0x63, 0x63, 0x73, 0xfe, 0xf7, 0x56, 0x2c, 0x34, 0x02, 0xcb, 0x71, 0x71, - 0x01, 0x0c, 0x56, 0x2b, 0x33, 0x33, 0x2b, 0x56, 0xfe, 0xf5, 0x72, 0x71, - 0x00, 0x01, 0x00, 0xe7, 0xff, 0xec, 0x04, 0x14, 0x04, 0x3b, 0x00, 0x1a, - 0x00, 0x00, 0x53, 0x15, 0x21, 0x13, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x03, 0xe7, 0x01, 0x3a, 0x03, 0x35, 0x2c, 0x2c, - 0x78, 0x48, 0x12, 0x25, 0x12, 0x16, 0x2d, 0x17, 0x09, 0x27, 0x4d, 0x28, - 0x3a, 0x64, 0x25, 0x25, 0x29, 0x01, 0x04, 0x3a, 0x37, 0xfd, 0x00, 0x4e, - 0x6a, 0x21, 0x21, 0x1d, 0x02, 0x01, 0x03, 0x06, 0x05, 0x2e, 0x05, 0x0b, - 0x1a, 0x1c, 0x1b, 0x58, 0x3f, 0x03, 0x38, 0x00, 0x00, 0x01, 0x00, 0x41, - 0xff, 0xfa, 0x04, 0x4f, 0x05, 0xef, 0x00, 0x2d, 0x00, 0x00, 0x73, 0x01, - 0x37, 0x17, 0x01, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x07, 0x22, 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x17, 0x01, 0x7c, 0x01, 0x96, 0x0a, - 0x09, 0x01, 0x18, 0x0e, 0x23, 0x19, 0x19, 0x46, 0x30, 0x0f, 0x1c, 0x0e, - 0x09, 0x0c, 0x18, 0x0c, 0x26, 0x35, 0x13, 0x13, 0x1a, 0x0b, 0xfe, 0x85, - 0x11, 0x28, 0x1c, 0x1d, 0x51, 0x39, 0x0e, 0x1c, 0x0e, 0x09, 0x0c, 0x18, - 0x0c, 0x2d, 0x3f, 0x16, 0x16, 0x1f, 0x0d, 0x42, 0xfe, 0x41, 0x03, 0xd1, - 0x19, 0x18, 0xfd, 0x01, 0x27, 0x4d, 0x1f, 0x20, 0x26, 0x06, 0x04, 0x33, - 0x02, 0x05, 0x26, 0x1c, 0x1c, 0x42, 0x1d, 0x03, 0xff, 0x2d, 0x5c, 0x26, - 0x25, 0x2f, 0x01, 0x06, 0x04, 0x32, 0x02, 0x04, 0x28, 0x1f, 0x1f, 0x4b, - 0x23, 0xb0, 0xfb, 0xcc, 0x00, 0x01, 0x00, 0xcb, 0xfe, 0x8e, 0x04, 0x18, - 0x05, 0xc4, 0x00, 0x5a, 0x00, 0x00, 0x41, 0x37, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x35, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x04, 0x12, 0x06, 0x47, 0x93, 0x4b, 0x55, 0xb2, 0x42, 0x3e, 0x4a, - 0x31, 0x29, 0x28, 0x68, 0x38, 0x4c, 0x89, 0x33, 0x34, 0x3d, 0x28, 0x27, - 0x42, 0xc0, 0x54, 0xb0, 0x16, 0x3c, 0x1b, 0x1b, 0x26, 0x19, 0x14, 0x15, - 0x33, 0x19, 0x22, 0x1e, 0x3a, 0x17, 0x16, 0x1c, 0x2b, 0x21, 0x21, 0x4d, - 0x22, 0xa7, 0x58, 0xae, 0x2f, 0x20, 0x29, 0x2b, 0x26, 0x25, 0x65, 0x3a, - 0x39, 0x7d, 0x3e, 0x82, 0x82, 0x2b, 0x61, 0x30, 0x31, 0x58, 0x22, 0x22, - 0x28, 0x41, 0x32, 0x3d, 0x9e, 0x48, 0x4a, 0x92, 0x05, 0x61, 0x32, 0x19, - 0x18, 0x25, 0x2d, 0x26, 0x7b, 0x59, 0x3e, 0x5e, 0x22, 0x23, 0x2d, 0x0d, - 0x12, 0x43, 0x32, 0x33, 0x89, 0x59, 0x49, 0x77, 0x2c, 0x4c, 0x64, 0x16, - 0x2e, 0x06, 0x10, 0x0d, 0x0d, 0x28, 0x1e, 0x20, 0x38, 0x17, 0x17, 0x27, - 0x0f, 0x21, 0x11, 0x2d, 0x1c, 0x1b, 0x41, 0x26, 0x2b, 0x3b, 0x13, 0x13, - 0x17, 0x09, 0x2c, 0x17, 0x58, 0x3c, 0x29, 0x66, 0x41, 0x48, 0x71, 0x2b, - 0x2b, 0x3d, 0x14, 0x13, 0x12, 0x01, 0x38, 0x07, 0x0a, 0x0a, 0x24, 0x1d, - 0x1c, 0x51, 0x38, 0x49, 0x62, 0x22, 0x26, 0x20, 0x17, 0x00, 0x00, 0x01, - 0x00, 0x63, 0xff, 0xf8, 0x04, 0xa6, 0x04, 0x3a, 0x00, 0x1d, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x04, 0x68, 0xfb, 0xfb, 0xbc, 0x35, - 0x02, 0x0f, 0x01, 0x14, 0x18, 0x18, 0x52, 0x3f, 0x1c, 0x36, 0x1b, 0x09, - 0x1a, 0x33, 0x1a, 0x30, 0x3d, 0x11, 0x11, 0x0c, 0x01, 0x01, 0x04, 0x03, - 0x37, 0x37, 0xfb, 0xfd, 0x04, 0x03, 0xfd, 0x0c, 0x38, 0x65, 0x26, 0x26, - 0x2e, 0x05, 0x07, 0x33, 0x04, 0x05, 0x28, 0x20, 0x20, 0x50, 0x29, 0x02, - 0xf4, 0x00, 0x00, 0x02, 0x00, 0xd5, 0xfe, 0x60, 0x04, 0x21, 0x04, 0x4e, - 0x00, 0x1b, 0x00, 0x35, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x33, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x04, 0x21, 0x02, 0x3d, 0x45, 0x33, 0x8a, 0x5e, 0x65, 0x9f, 0x36, 0x37, - 0x3c, 0x37, 0x1f, 0x56, 0x32, 0x31, 0x6b, 0x34, 0x69, 0x94, 0x33, 0x37, - 0x37, 0x37, 0x02, 0x2c, 0x33, 0x2b, 0x80, 0x5a, 0x41, 0x73, 0x30, 0x31, - 0x4b, 0x18, 0x04, 0x2e, 0x2e, 0x2d, 0x8a, 0x5f, 0x51, 0x77, 0x2b, 0x40, - 0x35, 0x02, 0x09, 0x15, 0x73, 0xe7, 0x54, 0x39, 0x49, 0x49, 0x40, 0x40, - 0xa9, 0x60, 0xfb, 0xe4, 0x02, 0x40, 0x2c, 0x43, 0x16, 0x17, 0x18, 0x53, - 0x46, 0x4d, 0xcf, 0x7d, 0x15, 0x5e, 0xbe, 0x47, 0x3e, 0x46, 0x1e, 0x1e, - 0x1e, 0x57, 0x39, 0x01, 0x5b, 0x55, 0x9d, 0x3c, 0x3c, 0x47, 0x3f, 0x31, - 0x4c, 0xda, 0x00, 0x01, 0x00, 0x91, 0xfe, 0x85, 0x04, 0x12, 0x04, 0x4e, - 0x00, 0x3f, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x02, 0x70, 0x73, 0xb1, - 0x3d, 0x3d, 0x40, 0x01, 0x01, 0x51, 0x45, 0x45, 0xba, 0x6a, 0x20, 0x44, - 0x1c, 0x1c, 0x22, 0x01, 0x01, 0x1b, 0x15, 0x10, 0x29, 0x16, 0x24, 0x1c, - 0x34, 0x14, 0x14, 0x19, 0x01, 0x01, 0x28, 0x21, 0x21, 0x54, 0x2a, 0x5f, - 0xa9, 0x3f, 0x40, 0x4c, 0x01, 0x38, 0x35, 0x35, 0x9d, 0x68, 0x4b, 0x83, - 0x31, 0x30, 0x3a, 0x02, 0x37, 0x05, 0x41, 0x37, 0x38, 0x95, 0x04, 0x4e, - 0x59, 0x4a, 0x4b, 0xc3, 0x6b, 0x2a, 0x75, 0xb3, 0x41, 0x41, 0x56, 0x18, - 0x07, 0x11, 0x0f, 0x10, 0x33, 0x29, 0x22, 0x3d, 0x19, 0x14, 0x20, 0x0c, - 0x20, 0x0f, 0x2f, 0x1d, 0x1c, 0x40, 0x21, 0x34, 0x44, 0x16, 0x15, 0x1a, - 0x0a, 0x16, 0x4e, 0x3b, 0x3b, 0xa1, 0x69, 0x2a, 0x60, 0xb0, 0x43, 0x43, - 0x50, 0x2c, 0x2a, 0x2a, 0x7a, 0x4e, 0x59, 0x8d, 0x32, 0x31, 0x35, 0x00, - 0x00, 0x02, 0x00, 0x7a, 0xff, 0xec, 0x04, 0x7e, 0x04, 0x3a, 0x00, 0x1c, - 0x00, 0x36, 0x00, 0x00, 0x41, 0x35, 0x21, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x04, - 0x7e, 0xfd, 0xd3, 0x6e, 0xad, 0x3d, 0x3d, 0x41, 0x01, 0x01, 0x40, 0x3d, - 0x3c, 0xaf, 0x71, 0x71, 0xae, 0x3c, 0x3c, 0x3f, 0x01, 0x01, 0x23, 0x21, - 0x21, 0x63, 0x40, 0xfd, 0x8e, 0x01, 0x3b, 0x36, 0x36, 0x9a, 0x60, 0x60, - 0x9b, 0x36, 0x36, 0x3b, 0x01, 0x01, 0x38, 0x35, 0x35, 0x9a, 0x64, 0x64, - 0x9c, 0x35, 0x35, 0x39, 0x04, 0x03, 0x37, 0x56, 0x48, 0x48, 0xbc, 0x66, - 0x2a, 0x68, 0xc3, 0x4b, 0x4b, 0x5b, 0x5b, 0x4c, 0x4b, 0xc3, 0x68, 0x2b, - 0x4b, 0x8a, 0x3c, 0x3c, 0x61, 0x21, 0xfe, 0x05, 0x2a, 0x5a, 0xa8, 0x41, - 0x40, 0x4e, 0x4e, 0x40, 0x41, 0xa8, 0x5a, 0x2a, 0x5b, 0xaf, 0x44, 0x44, - 0x54, 0x53, 0x44, 0x44, 0xaf, 0x00, 0x00, 0x01, 0x00, 0xc8, 0xff, 0xeb, - 0x04, 0x1f, 0x04, 0x3a, 0x00, 0x1c, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x21, 0x13, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x13, 0x04, 0x1f, 0xfc, 0xa9, 0x01, 0x75, 0x01, 0x01, 0x1f, 0x21, 0x21, - 0x65, 0x48, 0x10, 0x20, 0x10, 0x0f, 0x1e, 0x10, 0x0a, 0x1d, 0x3c, 0x1e, - 0x39, 0x4f, 0x19, 0x1a, 0x19, 0x01, 0x04, 0x03, 0x37, 0x37, 0xfd, 0x14, - 0x44, 0x6f, 0x27, 0x27, 0x2a, 0x01, 0x01, 0x02, 0x01, 0x05, 0x04, 0x32, - 0x04, 0x05, 0x26, 0x21, 0x20, 0x5a, 0x35, 0x02, 0xec, 0x00, 0x00, 0x01, - 0x00, 0xdd, 0xff, 0xec, 0x04, 0x07, 0x04, 0x3a, 0x00, 0x24, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x12, - 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x01, 0x14, 0x37, 0x01, 0x2b, 0x2c, 0x2c, 0x85, 0x5c, 0x73, 0xa9, - 0x38, 0x38, 0x38, 0x01, 0x11, 0x0f, 0x0e, 0x26, 0x16, 0x44, 0x3a, 0x3f, - 0x01, 0x31, 0x31, 0x32, 0x97, 0x66, 0x4e, 0x71, 0x24, 0x25, 0x25, 0x04, - 0x3a, 0xfd, 0x49, 0x55, 0x95, 0x37, 0x37, 0x3f, 0x5c, 0x4c, 0x4b, 0xc4, - 0x68, 0x4d, 0x94, 0x48, 0x41, 0x83, 0x42, 0x86, 0xfe, 0xe6, 0x92, 0x5c, - 0xaf, 0x44, 0x44, 0x53, 0x38, 0x30, 0x30, 0x7f, 0x48, 0x00, 0x00, 0x02, - 0x00, 0xba, 0xfe, 0x21, 0x04, 0x3d, 0x04, 0x3b, 0x00, 0x2e, 0x00, 0x41, - 0x00, 0x00, 0x45, 0x13, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x13, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x37, 0x13, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x02, 0x5c, 0x01, 0x33, - 0x6e, 0xa3, 0x36, 0x30, 0x36, 0x2f, 0x32, 0x28, 0x73, 0x53, 0x1d, 0x32, - 0x12, 0x18, 0x1a, 0x01, 0x65, 0x8b, 0x2b, 0x2c, 0x26, 0x13, 0x16, 0x16, - 0x49, 0x37, 0x18, 0x3e, 0x54, 0x1a, 0x1a, 0x16, 0x2d, 0x33, 0x32, 0x9f, - 0xa5, 0x01, 0x14, 0x14, 0x0a, 0x1b, 0x10, 0x48, 0x5a, 0x1e, 0x31, 0x29, - 0x2c, 0x2d, 0x2f, 0x8e, 0x14, 0xfe, 0x35, 0x01, 0xcb, 0x05, 0x6a, 0x53, - 0x4b, 0xc6, 0x63, 0x54, 0xe3, 0x53, 0x42, 0x4c, 0x1a, 0x15, 0x1c, 0x4b, - 0x27, 0xfc, 0xa5, 0x07, 0x5b, 0x47, 0x47, 0xb1, 0x5d, 0x3f, 0x8d, 0x43, - 0x43, 0x76, 0x27, 0x2c, 0x29, 0x7f, 0x49, 0x49, 0x9a, 0x45, 0x68, 0xc6, - 0x4e, 0x4f, 0x65, 0x2f, 0x03, 0x5c, 0x1e, 0x3d, 0x14, 0x0b, 0x0d, 0x43, - 0x33, 0x53, 0xd5, 0x46, 0x57, 0xb1, 0x46, 0x4d, 0x5f, 0x00, 0x00, 0x01, - 0x00, 0xab, 0xfe, 0x61, 0x04, 0x46, 0x04, 0x3a, 0x00, 0x27, 0x00, 0x00, - 0x41, 0x23, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x23, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x02, 0x89, 0x34, 0x6b, 0x8e, 0x2b, 0x2b, 0x25, - 0x01, 0x01, 0x33, 0x01, 0x2c, 0x2c, 0x30, 0xa6, 0x7c, 0x34, 0x7b, 0xaa, - 0x35, 0x34, 0x2f, 0x3a, 0x3d, 0x3e, 0x3c, 0x43, 0x27, 0x2d, 0x2e, 0x96, - 0x6f, 0x04, 0x3a, 0xfb, 0xe9, 0x07, 0x67, 0x4f, 0x4e, 0xbf, 0x5f, 0x01, - 0xee, 0xfe, 0x14, 0x6a, 0xcf, 0x52, 0x57, 0x79, 0x06, 0xfe, 0x74, 0x01, - 0x8c, 0x05, 0x6c, 0x56, 0x55, 0xd6, 0x6f, 0x81, 0xf9, 0x72, 0x73, 0xf8, - 0x83, 0x63, 0xc1, 0x4e, 0x4e, 0x65, 0x05, 0x00, 0x00, 0x01, 0x00, 0x5e, - 0xff, 0xec, 0x04, 0x7e, 0x04, 0x3a, 0x00, 0x52, 0x00, 0x00, 0x41, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x16, 0x12, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x06, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x03, 0x23, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x12, 0x01, 0x04, 0x3b, - 0x1f, 0x2a, 0x0c, 0x0c, 0x0a, 0x13, 0x20, 0x20, 0x6c, 0x59, 0x37, 0x52, - 0x1e, 0x1d, 0x27, 0x0c, 0x0c, 0x27, 0x1e, 0x1d, 0x52, 0x37, 0x3d, 0x59, - 0x20, 0x20, 0x26, 0x0b, 0x0b, 0x08, 0x0a, 0x0c, 0x0d, 0x2a, 0x1f, 0x3a, - 0x34, 0x3d, 0x06, 0x08, 0x09, 0x1f, 0x19, 0x1a, 0x4a, 0x33, 0x33, 0x48, - 0x18, 0x19, 0x1b, 0x07, 0x08, 0x04, 0x02, 0x34, 0x01, 0x06, 0x07, 0x08, - 0x1c, 0x18, 0x19, 0x46, 0x32, 0x46, 0x59, 0x19, 0x1d, 0x11, 0x3c, 0x04, - 0x3a, 0x42, 0x8f, 0x4a, 0x4b, 0x95, 0x48, 0x43, 0xba, 0x51, 0x4f, 0x6e, - 0x28, 0x22, 0x21, 0x59, 0x31, 0x31, 0x59, 0x21, 0x22, 0x28, 0x35, 0x2c, - 0x2a, 0x6f, 0x3b, 0x3a, 0x70, 0x2c, 0x48, 0x95, 0x4b, 0x4a, 0x8f, 0x42, - 0x8d, 0xfe, 0xdf, 0x98, 0x24, 0x61, 0x33, 0x34, 0x65, 0x27, 0x28, 0x32, - 0x01, 0x2f, 0x27, 0x26, 0x62, 0x33, 0x32, 0x5e, 0x23, 0x01, 0x1d, 0xfe, - 0xd8, 0x34, 0x4f, 0x31, 0x31, 0x5e, 0x24, 0x25, 0x2c, 0x5a, 0x45, 0x4d, - 0xac, 0x3a, 0x98, 0x01, 0x21, 0x00, 0x00, 0x02, 0x00, 0xb2, 0xff, 0xec, - 0x04, 0x91, 0x05, 0xd9, 0x00, 0x37, 0x00, 0x4b, 0x00, 0x00, 0x41, 0x27, - 0x06, 0x06, 0x07, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x07, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x11, 0x36, 0x36, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x04, 0x91, 0x0b, 0x2b, 0x58, 0x2d, 0x01, 0x1f, 0x24, 0x24, - 0x76, 0x57, 0x41, 0x63, 0x21, 0x22, 0x23, 0x01, 0x01, 0x55, 0x48, 0x47, - 0xbc, 0x69, 0x01, 0x29, 0x2a, 0x2a, 0x83, 0x5c, 0x57, 0x81, 0x2b, 0x2b, - 0x2c, 0x01, 0x36, 0x01, 0x35, 0x33, 0x32, 0x94, 0x62, 0x66, 0x97, 0x32, - 0x31, 0x32, 0x01, 0x30, 0x5e, 0xfd, 0x68, 0x1b, 0x1a, 0x1a, 0x4f, 0x37, - 0x4c, 0x63, 0x1d, 0x1c, 0x16, 0x01, 0x5f, 0xa9, 0x3f, 0x40, 0x4c, 0x02, - 0xd0, 0x34, 0x0f, 0x11, 0x01, 0x01, 0x53, 0x49, 0x96, 0x3c, 0x3c, 0x4c, - 0x38, 0x2d, 0x2d, 0x73, 0x3a, 0x16, 0x72, 0xac, 0x3a, 0x3b, 0x3f, 0x04, - 0xfe, 0xf7, 0x57, 0x8f, 0x33, 0x33, 0x37, 0x3c, 0x34, 0x34, 0x8d, 0x52, - 0x01, 0x47, 0x02, 0xfe, 0xbb, 0x5d, 0xa0, 0x3b, 0x3c, 0x45, 0x40, 0x3b, - 0x3a, 0xa3, 0x61, 0x01, 0x08, 0x01, 0x12, 0x01, 0xc2, 0x18, 0x30, 0x5f, - 0x26, 0x25, 0x2f, 0x01, 0x43, 0x35, 0x35, 0x82, 0x3f, 0xfe, 0xad, 0x04, - 0x35, 0x33, 0x33, 0x98, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x04, 0xbf, - 0x05, 0xbc, 0x00, 0x2e, 0x00, 0x00, 0x41, 0x03, 0x07, 0x27, 0x03, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, - 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x01, 0x11, 0x33, 0x11, 0x01, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x17, 0x16, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, - 0x26, 0x06, 0x07, 0x06, 0x06, 0x03, 0x5d, 0xc0, 0x33, 0x33, 0xc0, 0x12, - 0x2d, 0x1e, 0x1e, 0x50, 0x34, 0x1b, 0x31, 0x18, 0x17, 0x14, 0x27, 0x16, - 0x2a, 0x41, 0x19, 0x18, 0x24, 0x0f, 0x01, 0x06, 0x36, 0x01, 0x02, 0x0e, - 0x25, 0x19, 0x18, 0x41, 0x2a, 0x16, 0x27, 0x14, 0x16, 0x17, 0x31, 0x1b, - 0x34, 0x4f, 0x1e, 0x1e, 0x2e, 0x04, 0xd7, 0xfe, 0x45, 0x7c, 0x7c, 0x01, - 0xbb, 0x2a, 0x53, 0x21, 0x20, 0x27, 0x01, 0x01, 0x0f, 0x0c, 0x29, 0x0a, - 0x0b, 0x01, 0x01, 0x27, 0x1f, 0x1f, 0x49, 0x20, 0xfd, 0xb1, 0xfd, 0x90, - 0x02, 0x69, 0x02, 0x56, 0x21, 0x49, 0x1f, 0x1e, 0x27, 0x01, 0x01, 0x0b, - 0x0a, 0x29, 0x0d, 0x0e, 0x01, 0x01, 0x27, 0x20, 0x21, 0x53, 0x00, 0x02, - 0x00, 0x17, 0xff, 0xec, 0x04, 0xb2, 0x04, 0x3b, 0x00, 0x2b, 0x00, 0x59, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x33, 0x06, 0x02, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x13, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x35, 0x34, 0x12, 0x37, 0x21, 0x16, 0x12, 0x04, 0xb2, 0xfb, 0x65, - 0x8b, 0x31, 0x25, 0x08, 0x0c, 0x0b, 0x27, 0x20, 0x1f, 0x59, 0x3d, 0x37, - 0x53, 0x1e, 0x1e, 0x27, 0x0c, 0x0c, 0x28, 0x1e, 0x1e, 0x52, 0x37, 0x3d, - 0x5a, 0x20, 0x1f, 0x27, 0x0b, 0x0b, 0x08, 0x09, 0x09, 0x0a, 0x20, 0x18, - 0x1f, 0x06, 0x08, 0x09, 0x1f, 0x1a, 0x1a, 0x4a, 0x33, 0x30, 0x45, 0x18, - 0x19, 0x1e, 0x08, 0x0b, 0x05, 0x02, 0x33, 0x02, 0x05, 0x08, 0x08, 0x1c, - 0x18, 0x19, 0x48, 0x32, 0x33, 0x4a, 0x1a, 0x1a, 0x1f, 0x09, 0x09, 0x06, - 0x32, 0x2c, 0x03, 0x01, 0x2d, 0x33, 0x04, 0x04, 0x37, 0x37, 0x7c, 0xfe, - 0xf1, 0x82, 0x2d, 0x70, 0x3a, 0x3a, 0x6f, 0x2b, 0x2b, 0x35, 0x27, 0x22, - 0x21, 0x59, 0x31, 0x31, 0x59, 0x21, 0x22, 0x27, 0x35, 0x2b, 0x2b, 0x6f, - 0x3a, 0x3a, 0x70, 0x2d, 0x40, 0x86, 0x43, 0x43, 0x83, 0x3e, 0xfd, 0xf0, - 0x24, 0x61, 0x33, 0x34, 0x65, 0x27, 0x28, 0x31, 0x01, 0x01, 0x28, 0x22, - 0x21, 0x56, 0x2f, 0x3c, 0x72, 0x28, 0x01, 0x1d, 0xfe, 0xd6, 0x25, 0x5d, - 0x31, 0x31, 0x5f, 0x24, 0x25, 0x2c, 0x32, 0x28, 0x27, 0x65, 0x34, 0x33, - 0x61, 0x24, 0x89, 0x01, 0x06, 0x81, 0x81, 0xfe, 0xfa, 0x00, 0x00, 0x01, - 0x00, 0x37, 0xff, 0xf5, 0x04, 0x63, 0x05, 0xb0, 0x00, 0x27, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x11, 0x03, 0xa5, 0xfc, 0x92, 0x01, 0x60, 0x32, 0x44, - 0x88, 0x52, 0x57, 0x7c, 0x28, 0x27, 0x24, 0x29, 0x28, 0x28, 0x76, 0x4c, - 0x57, 0x88, 0x30, 0x2f, 0x33, 0x2b, 0x2e, 0x2e, 0x90, 0x65, 0x4e, 0x8e, - 0x42, 0x05, 0x7a, 0x36, 0x36, 0xfa, 0x86, 0x02, 0xe1, 0x20, 0x3a, 0x46, - 0x3a, 0x3a, 0x94, 0x4e, 0x48, 0x85, 0x33, 0x34, 0x40, 0x03, 0x33, 0x03, - 0x48, 0x3b, 0x3a, 0x97, 0x53, 0x5c, 0xa8, 0x41, 0x40, 0x4c, 0x33, 0x24, - 0x02, 0x61, 0x00, 0x01, 0x00, 0xa5, 0xff, 0xec, 0x04, 0x51, 0x05, 0xc4, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x21, 0x35, 0x21, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x04, 0x51, 0x34, 0x0d, 0x3b, 0x32, 0x33, 0x90, 0x61, 0x71, 0x9a, 0x34, - 0x37, 0x2c, 0x02, 0x02, 0x3f, 0xfd, 0xc1, 0x3c, 0x40, 0x34, 0x91, 0x63, - 0x60, 0x8f, 0x33, 0x32, 0x3d, 0x0d, 0x34, 0x09, 0x45, 0x3b, 0x3c, 0xa5, - 0x68, 0x70, 0xa8, 0x35, 0x47, 0x44, 0x02, 0x39, 0x37, 0x36, 0xb5, 0x7f, - 0x69, 0xa5, 0x3b, 0x3b, 0x45, 0x01, 0xbe, 0x5a, 0x97, 0x37, 0x37, 0x3d, - 0x6d, 0x50, 0x55, 0xd5, 0x62, 0x5d, 0x36, 0x49, 0x6c, 0xee, 0x54, 0x45, - 0x54, 0x3e, 0x36, 0x37, 0x97, 0x58, 0x64, 0xaa, 0x3e, 0x3e, 0x46, 0x5f, - 0x48, 0x61, 0xfe, 0x79, 0xda, 0x6c, 0xe6, 0x5d, 0x5b, 0x75, 0x46, 0x3f, - 0x3e, 0xab, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x04, 0x99, 0x05, 0xb0, - 0x00, 0x2e, 0x00, 0x3d, 0x00, 0x00, 0x41, 0x21, 0x03, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x13, 0x21, 0x11, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x23, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x02, 0xc2, 0xfe, 0x63, - 0x1b, 0x01, 0x03, 0x03, 0x04, 0x0b, 0x0a, 0x0a, 0x1e, 0x14, 0x15, 0x38, - 0x24, 0x1b, 0x1a, 0x2f, 0x48, 0x1b, 0x1b, 0x25, 0x0c, 0x0c, 0x0e, 0x04, - 0x03, 0x03, 0x01, 0x13, 0x01, 0x42, 0xf3, 0x4b, 0x68, 0x23, 0x1f, 0x1d, - 0x1b, 0x1f, 0x20, 0x69, 0x4f, 0xc5, 0xc5, 0x42, 0x56, 0x19, 0x18, 0x14, - 0x15, 0x1b, 0x17, 0x58, 0x3e, 0xc5, 0x05, 0xb0, 0xfd, 0x86, 0x1a, 0x5d, - 0x3a, 0x3b, 0x85, 0x41, 0x42, 0x78, 0x2e, 0x2e, 0x37, 0x01, 0x36, 0x01, - 0x38, 0x30, 0x2f, 0x7c, 0x44, 0x44, 0x8d, 0x40, 0x40, 0x6a, 0x23, 0x02, - 0x44, 0xfa, 0x86, 0x01, 0x48, 0x3d, 0x39, 0x93, 0x42, 0x41, 0x8e, 0x3b, - 0x3b, 0x4d, 0x02, 0x36, 0x02, 0x45, 0x33, 0x34, 0x78, 0x36, 0x39, 0x80, - 0x34, 0x32, 0x41, 0x00, 0x00, 0x02, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x86, - 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x73, 0x33, 0x11, 0x21, - 0x11, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x01, 0x33, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, - 0x8f, 0x2e, 0x01, 0xdb, 0xb6, 0x51, 0x6e, 0x23, 0x33, 0x23, 0x29, 0x37, - 0x26, 0x63, 0x4f, 0x88, 0x2e, 0xfe, 0x25, 0x2e, 0x02, 0x37, 0x88, 0x41, - 0x58, 0x1e, 0x30, 0x1c, 0x17, 0x2e, 0x1c, 0x5c, 0x46, 0x88, 0x02, 0xb6, - 0xfd, 0x4a, 0x01, 0x36, 0x29, 0x3d, 0xab, 0x4d, 0x5a, 0xaf, 0x37, 0x26, - 0x2e, 0x01, 0x02, 0x86, 0xfd, 0x3c, 0x02, 0xc4, 0xfd, 0x44, 0x01, 0x29, - 0x20, 0x33, 0x9b, 0x45, 0x40, 0x98, 0x39, 0x23, 0x2d, 0x01, 0x00, 0x01, - 0x00, 0x44, 0x00, 0x00, 0x04, 0x67, 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x36, 0x36, 0x17, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x03, 0x33, 0x13, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x11, 0x03, 0x88, 0xfc, 0xbc, 0x01, 0x5d, - 0x31, 0x4a, 0x91, 0x50, 0x57, 0x76, 0x24, 0x24, 0x21, 0x01, 0x33, 0x02, - 0x26, 0x2a, 0x2b, 0x8a, 0x65, 0x4f, 0x92, 0x4a, 0x05, 0x7a, 0x36, 0x36, - 0xfa, 0x86, 0x02, 0xbe, 0x18, 0x27, 0x01, 0x41, 0x36, 0x36, 0x8e, 0x4e, - 0xfe, 0x8d, 0x01, 0x73, 0x5b, 0xa2, 0x3d, 0x3d, 0x48, 0x26, 0x17, 0x02, - 0x85, 0x00, 0x00, 0x01, 0x00, 0xbb, 0xfe, 0xa3, 0x04, 0x13, 0x05, 0xb0, - 0x00, 0x0b, 0x00, 0x00, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x23, 0x11, 0x21, 0x11, 0xbb, 0x01, 0x96, 0x33, 0x01, 0x8f, 0x33, 0xfd, - 0x0e, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0xa3, 0x01, 0x5d, 0x05, 0xb0, 0xfa, - 0x86, 0x05, 0x7a, 0x00, 0x00, 0x02, 0x00, 0xc0, 0x00, 0x00, 0x04, 0x1a, - 0x05, 0xb0, 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x11, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x04, 0x1a, 0xfc, 0xa6, 0x01, 0x81, - 0x5a, 0x9b, 0x3a, 0x3a, 0x42, 0x42, 0x3a, 0x3a, 0x9b, 0x5a, 0xfe, 0xb5, - 0x01, 0x4b, 0x4d, 0x87, 0x33, 0x33, 0x3b, 0x3a, 0x32, 0x32, 0x89, 0x4e, - 0xfe, 0xb5, 0x05, 0x7a, 0x36, 0xfa, 0x50, 0x01, 0x35, 0x32, 0x32, 0x91, - 0x5f, 0x5e, 0x92, 0x32, 0x32, 0x35, 0x01, 0x02, 0x66, 0xfd, 0x64, 0x01, - 0x2d, 0x2b, 0x2b, 0x7d, 0x51, 0x53, 0x7e, 0x2b, 0x2c, 0x2d, 0x01, 0x00, - 0x00, 0x02, 0x00, 0x7c, 0xfe, 0xa3, 0x04, 0x37, 0x05, 0xb0, 0x00, 0x14, - 0x00, 0x21, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x03, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x11, 0x33, 0x11, 0x21, - 0x11, 0x01, 0x13, 0x21, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x04, 0x37, 0x5a, 0xfd, 0xcc, 0x12, 0x04, 0x0c, 0x0a, 0x0a, - 0x1f, 0x17, 0x18, 0x41, 0x2c, 0x3c, 0x32, 0x03, 0x57, 0xfd, 0xc7, 0x0c, - 0x01, 0xd3, 0xfd, 0x5a, 0x2c, 0x3f, 0x16, 0x15, 0x1a, 0x08, 0x07, 0x06, - 0xfe, 0xa3, 0x01, 0x93, 0x05, 0x7a, 0xfe, 0x2f, 0x5e, 0xc3, 0x5e, 0x5f, - 0xb0, 0x48, 0x49, 0x6d, 0x1d, 0xfe, 0x6d, 0x01, 0x5d, 0xfe, 0xa3, 0x05, - 0x3c, 0x01, 0x9b, 0xfa, 0xbc, 0x30, 0x98, 0x59, 0x59, 0xc0, 0x58, 0x58, - 0x93, 0x00, 0x00, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x04, 0x8e, 0x05, 0xb0, - 0x00, 0x15, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, - 0x11, 0x23, 0x11, 0x23, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x33, 0x11, - 0x33, 0x11, 0x02, 0xdb, 0x01, 0x78, 0x3b, 0xfe, 0x7d, 0x01, 0x6c, 0x3a, - 0xfe, 0xad, 0x6d, 0x30, 0x6d, 0xfe, 0xac, 0x3a, 0x01, 0x6c, 0xfe, 0x7e, - 0x3a, 0x01, 0x78, 0x5f, 0x30, 0x02, 0xd0, 0xfd, 0x30, 0x02, 0xdd, 0x02, - 0xd3, 0xfd, 0x56, 0x02, 0xaa, 0xfd, 0x56, 0x02, 0xaa, 0xfd, 0x2d, 0xfd, - 0x23, 0x02, 0xd0, 0xfd, 0x30, 0x02, 0xd0, 0x00, 0x00, 0x01, 0x00, 0x69, - 0xff, 0xeb, 0x04, 0x60, 0x05, 0xc4, 0x00, 0x52, 0x00, 0x00, 0x53, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x69, 0x03, 0x55, - 0x45, 0x45, 0xb2, 0x61, 0x5b, 0xb4, 0x48, 0x4a, 0x61, 0x34, 0x2c, 0x2d, - 0x77, 0x43, 0x3d, 0x6e, 0x2a, 0x29, 0x32, 0x54, 0x45, 0x45, 0xb1, 0x5c, - 0x5a, 0xaa, 0x43, 0x43, 0x53, 0x04, 0x36, 0x04, 0x4a, 0x3c, 0x3b, 0x96, - 0x50, 0x50, 0x9c, 0x3e, 0x3e, 0x4d, 0x24, 0x20, 0x20, 0x55, 0x31, 0x32, - 0x6a, 0x34, 0xb8, 0xb8, 0x38, 0x71, 0x34, 0x33, 0x5a, 0x21, 0x20, 0x26, - 0x4d, 0x3d, 0x41, 0xac, 0x55, 0x55, 0x9e, 0x3d, 0x3e, 0x4d, 0x04, 0x01, - 0x94, 0x66, 0x9f, 0x36, 0x36, 0x38, 0x2f, 0x2f, 0x30, 0x9d, 0x6c, 0x51, - 0x7a, 0x2b, 0x2b, 0x37, 0x0e, 0x10, 0x39, 0x2a, 0x29, 0x70, 0x47, 0x68, - 0x95, 0x30, 0x30, 0x2c, 0x36, 0x33, 0x33, 0x95, 0x60, 0x55, 0x82, 0x2c, - 0x2c, 0x2c, 0x24, 0x28, 0x28, 0x80, 0x5b, 0x3e, 0x5f, 0x23, 0x23, 0x2f, - 0x0e, 0x0f, 0x0d, 0x38, 0x01, 0x0c, 0x0f, 0x0f, 0x31, 0x24, 0x25, 0x65, - 0x43, 0x5b, 0x82, 0x2a, 0x2d, 0x29, 0x31, 0x2f, 0x2e, 0x8b, 0x5a, 0x00, - 0x00, 0x01, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x18, 0x05, 0xb0, 0x00, 0x09, - 0x00, 0x00, 0x41, 0x01, 0x13, 0x23, 0x11, 0x33, 0x01, 0x03, 0x33, 0x11, - 0x03, 0xe6, 0xfd, 0x00, 0x02, 0x33, 0x32, 0x03, 0x00, 0x02, 0x33, 0x05, - 0xb0, 0xfa, 0xaf, 0x05, 0x51, 0xfa, 0x50, 0x05, 0x54, 0xfa, 0xac, 0x05, - 0xb0, 0x00, 0x00, 0x01, 0x00, 0x33, 0x00, 0x00, 0x04, 0x21, 0x05, 0xb0, - 0x00, 0x1e, 0x00, 0x00, 0x41, 0x21, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x13, 0x21, 0x11, 0x33, 0x04, - 0x21, 0xfd, 0x54, 0x24, 0x02, 0x0a, 0x0b, 0x0b, 0x23, 0x1b, 0x1c, 0x4e, - 0x34, 0x20, 0x1e, 0x32, 0x4f, 0x1f, 0x1e, 0x2d, 0x10, 0x0f, 0x15, 0x07, - 0x06, 0x07, 0x02, 0x1f, 0x02, 0x49, 0x33, 0x05, 0xb0, 0xfd, 0x86, 0x2c, - 0x93, 0x55, 0x55, 0xae, 0x47, 0x47, 0x5a, 0x01, 0x36, 0x01, 0x35, 0x2d, - 0x2d, 0x77, 0x43, 0x42, 0x8c, 0x41, 0x41, 0x73, 0x29, 0x02, 0x44, 0xfa, - 0x86, 0x00, 0x00, 0x01, 0x00, 0x0c, 0xff, 0xeb, 0x04, 0xc6, 0x05, 0xb0, - 0x00, 0x1b, 0x00, 0x00, 0x57, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x01, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0xac, 0x16, 0x2b, 0x17, - 0x43, 0x6b, 0x2b, 0x2b, 0x44, 0x1c, 0x02, 0x5e, 0x43, 0xfe, 0x4b, 0x41, - 0x4c, 0xfe, 0x0e, 0x43, 0x02, 0x63, 0x42, 0x17, 0x38, 0x23, 0x23, 0x58, - 0x37, 0x14, 0x26, 0x14, 0x08, 0x06, 0x07, 0x2e, 0x27, 0x26, 0x65, 0x36, - 0x04, 0xaf, 0xfc, 0x95, 0x82, 0x85, 0x03, 0x68, 0xfb, 0xd9, 0x7f, 0x2c, - 0x54, 0x20, 0x21, 0x28, 0x05, 0x05, 0x00, 0x01, 0x00, 0xdf, 0xfe, 0xa1, - 0x04, 0xac, 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0xdf, 0x03, 0x9a, 0x33, - 0x6e, 0x33, 0xfd, 0x07, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0xa1, 0x01, 0x95, - 0x05, 0x7a, 0xfa, 0x86, 0x05, 0x7a, 0x00, 0x01, 0x00, 0xe2, 0x00, 0x00, - 0x03, 0xf2, 0x05, 0xb0, 0x00, 0x19, 0x00, 0x00, 0x41, 0x23, 0x11, 0x06, - 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x11, 0x33, 0x03, 0xf2, - 0x33, 0x51, 0xa3, 0x56, 0x5c, 0x83, 0x2a, 0x2b, 0x28, 0x01, 0x01, 0x33, - 0x02, 0x01, 0x30, 0x31, 0x31, 0x97, 0x68, 0x56, 0xa4, 0x51, 0x33, 0x05, - 0xb0, 0xfd, 0x54, 0x19, 0x24, 0x01, 0x3b, 0x34, 0x34, 0x90, 0x56, 0x01, - 0x5f, 0xfe, 0xa1, 0x63, 0xa4, 0x3b, 0x3b, 0x42, 0x24, 0x18, 0xfd, 0x32, - 0x00, 0x01, 0x00, 0x92, 0x00, 0x00, 0x04, 0x3d, 0x05, 0xb0, 0x00, 0x0b, - 0x00, 0x00, 0x53, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x21, 0xc2, 0x30, 0x03, 0xab, 0x30, 0xfe, 0x73, 0x31, 0xfe, 0x73, - 0x05, 0xb0, 0xfa, 0x50, 0x05, 0xb0, 0xfa, 0x86, 0x05, 0x7a, 0xfa, 0x86, - 0x00, 0x01, 0x00, 0x96, 0xfe, 0xa1, 0x04, 0x8d, 0x05, 0xb0, 0x00, 0x0f, - 0x00, 0x00, 0x53, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x23, - 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0xc6, 0x30, 0x03, 0xc8, 0x2f, 0x4c, - 0x30, 0xfe, 0x73, 0x31, 0xfe, 0x73, 0x05, 0xb0, 0xfa, 0x50, 0xfe, 0xa1, - 0x01, 0x95, 0x05, 0x7a, 0xfa, 0x86, 0x05, 0x7a, 0xfa, 0x86, 0x00, 0x02, - 0x00, 0x2b, 0x00, 0x00, 0x04, 0x86, 0x05, 0xb0, 0x00, 0x12, 0x00, 0x21, - 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x11, 0x21, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, - 0x2b, 0x01, 0xac, 0x01, 0x44, 0x56, 0x87, 0x2f, 0x2e, 0x31, 0x31, 0x2e, - 0x2f, 0x87, 0x56, 0xfe, 0xee, 0x01, 0x12, 0x4a, 0x73, 0x27, 0x27, 0x29, - 0x28, 0x27, 0x27, 0x73, 0x4b, 0xfe, 0xee, 0x05, 0xb0, 0x36, 0xfa, 0x86, - 0x01, 0x3d, 0x35, 0x35, 0x8f, 0x53, 0x53, 0x8f, 0x35, 0x35, 0x3d, 0x01, - 0x02, 0x9c, 0xfd, 0x2e, 0x01, 0x35, 0x2d, 0x2e, 0x7a, 0x47, 0x48, 0x7c, - 0x2e, 0x2e, 0x35, 0x01, 0x00, 0x03, 0x00, 0xc1, 0x00, 0x00, 0x04, 0x1f, - 0x05, 0xb0, 0x00, 0x10, 0x00, 0x14, 0x00, 0x23, 0x00, 0x00, 0x53, 0x11, - 0x23, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x01, 0x11, 0x23, 0x11, 0x01, 0x33, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0xf1, 0x30, - 0x01, 0x07, 0x5e, 0x87, 0x2c, 0x2b, 0x2a, 0x29, 0x2b, 0x2c, 0x88, 0x5e, - 0x02, 0x57, 0x30, 0xfd, 0x02, 0xd7, 0x51, 0x73, 0x25, 0x24, 0x22, 0x20, - 0x24, 0x25, 0x74, 0x52, 0xd7, 0x03, 0x14, 0x02, 0x9c, 0xfa, 0x50, 0x01, - 0x42, 0x37, 0x36, 0x8d, 0x4d, 0x4d, 0x8d, 0x37, 0x36, 0x41, 0x02, 0xfc, - 0xec, 0x05, 0xb0, 0xfa, 0x50, 0x02, 0xde, 0x02, 0x39, 0x2e, 0x2f, 0x79, - 0x41, 0x42, 0x7a, 0x2f, 0x2f, 0x3b, 0x01, 0x00, 0x00, 0x02, 0x00, 0xf1, - 0x00, 0x00, 0x04, 0x1c, 0x05, 0xb0, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x05, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x01, 0x26, 0x35, 0x01, - 0x80, 0x5a, 0x9b, 0x3a, 0x3a, 0x42, 0x42, 0x3a, 0x3a, 0x9b, 0x5a, 0xfe, - 0xb5, 0x01, 0x4b, 0x4d, 0x87, 0x33, 0x33, 0x3b, 0x3a, 0x32, 0x32, 0x89, - 0x4e, 0xfe, 0xb5, 0x03, 0x14, 0x02, 0x9c, 0xfa, 0x50, 0x01, 0x35, 0x32, - 0x32, 0x91, 0x5f, 0x5e, 0x92, 0x32, 0x32, 0x35, 0x01, 0x36, 0x01, 0x2d, - 0x2b, 0x2b, 0x7d, 0x51, 0x53, 0x7e, 0x2b, 0x2c, 0x2d, 0x01, 0x00, 0x01, - 0x00, 0x90, 0xff, 0xec, 0x04, 0x34, 0x05, 0xc4, 0x00, 0x37, 0x00, 0x00, - 0x53, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x35, 0x26, 0x02, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x21, 0x15, 0x21, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0xc4, 0x34, 0x08, 0x44, - 0x3b, 0x3a, 0xa4, 0x69, 0x70, 0xa1, 0x3b, 0x48, 0x42, 0x02, 0x43, 0x46, - 0x3b, 0xa1, 0x6f, 0x68, 0xa4, 0x3a, 0x3b, 0x45, 0x08, 0x34, 0x0d, 0x3c, - 0x32, 0x31, 0x8e, 0x60, 0x62, 0x91, 0x31, 0x41, 0x39, 0x02, 0xfd, 0xc8, - 0x02, 0x38, 0x02, 0x38, 0x41, 0x33, 0x8f, 0x63, 0x61, 0x8f, 0x31, 0x32, - 0x3a, 0x01, 0xbe, 0x63, 0xab, 0x3e, 0x3f, 0x47, 0x5a, 0x4e, 0x5f, 0xfe, - 0x7a, 0xda, 0x7a, 0x01, 0x05, 0x5a, 0x4b, 0x5b, 0x46, 0x3e, 0x3f, 0xaa, - 0x63, 0x57, 0x97, 0x37, 0x37, 0x3e, 0x55, 0x42, 0x59, 0xeb, 0x6c, 0x4b, - 0x36, 0x5b, 0x6e, 0xeb, 0x57, 0x45, 0x54, 0x3e, 0x37, 0x37, 0x97, 0x00, - 0x00, 0x02, 0x00, 0x90, 0xff, 0xec, 0x04, 0x56, 0x05, 0xc4, 0x00, 0x21, - 0x00, 0x3b, 0x00, 0x00, 0x41, 0x35, 0x26, 0x02, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x23, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x33, 0x15, 0x14, 0x12, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x12, 0x03, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x12, 0x04, 0x56, 0x02, 0x2c, 0x45, 0x27, 0x7c, 0x55, - 0x64, 0x87, 0x25, 0x33, 0x26, 0xc2, 0x30, 0x30, 0xc2, 0x28, 0x33, 0x27, - 0x86, 0x62, 0x5e, 0x84, 0x28, 0x38, 0x28, 0x36, 0x22, 0x31, 0x26, 0x70, - 0x4b, 0x56, 0x70, 0x24, 0x2b, 0x1f, 0x1e, 0x2d, 0x1f, 0x73, 0x56, 0x49, - 0x6b, 0x1f, 0x3b, 0x27, 0x02, 0x6b, 0xda, 0x69, 0x01, 0x10, 0x75, 0x42, - 0x4f, 0x6d, 0x4f, 0x67, 0xfd, 0x5f, 0x32, 0x02, 0x9d, 0xfa, 0x50, 0x02, - 0xdd, 0x72, 0x5e, 0xff, 0x00, 0x66, 0x4f, 0x6c, 0x64, 0x4c, 0x6a, 0x01, - 0x04, 0x01, 0x3d, 0xdc, 0x57, 0xff, 0x5b, 0x46, 0x52, 0x60, 0x4c, 0x61, - 0xea, 0x52, 0xdc, 0x53, 0xea, 0x62, 0x43, 0x65, 0x48, 0x36, 0x65, 0xfe, - 0xf7, 0x00, 0x00, 0x02, 0x00, 0x57, 0x00, 0x00, 0x03, 0xef, 0x05, 0xb0, - 0x00, 0x13, 0x00, 0x22, 0x00, 0x00, 0x61, 0x33, 0x11, 0x21, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x01, 0x33, - 0x01, 0x21, 0x01, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x21, 0x11, 0x21, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x03, 0xb8, 0x37, 0xfe, 0x64, 0x63, 0xa8, - 0x3d, 0x3d, 0x44, 0x27, 0x24, 0x1b, 0x58, 0x5e, 0xfe, 0xb1, 0x3d, 0x01, - 0x42, 0x01, 0xe2, 0xfd, 0x08, 0x3b, 0x36, 0x36, 0x94, 0x58, 0x01, 0x65, - 0xfe, 0x60, 0x4c, 0x7e, 0x2d, 0x2e, 0x33, 0x05, 0xb0, 0x01, 0x3c, 0x38, - 0x39, 0xa1, 0x67, 0x45, 0x78, 0x30, 0x25, 0x48, 0x27, 0xfd, 0x87, 0x02, - 0x6b, 0x01, 0x91, 0x5c, 0x8d, 0x31, 0x30, 0x33, 0x01, 0xfd, 0x28, 0x01, - 0x34, 0x2d, 0x2d, 0x7e, 0x00, 0x02, 0x00, 0x8a, 0xff, 0xec, 0x04, 0x3e, - 0x06, 0x11, 0x00, 0x35, 0x00, 0x4f, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x07, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x02, 0x63, 0x3e, 0x76, 0x34, 0x34, 0x57, 0x20, - 0x0f, 0x3d, 0x33, 0x32, 0x92, 0x64, 0x39, 0x77, 0x32, 0x32, 0x43, 0x04, - 0x36, 0x03, 0x3d, 0x2d, 0x2d, 0x68, 0x2c, 0x5c, 0x8f, 0x35, 0x36, 0x4a, - 0x17, 0x17, 0x16, 0x01, 0x45, 0x3e, 0x3e, 0xae, 0x6b, 0x6b, 0xae, 0x3e, - 0x3d, 0x44, 0x01, 0x01, 0x47, 0x3f, 0x3f, 0xad, 0x68, 0x5b, 0x99, 0x38, - 0x37, 0x3f, 0x02, 0x01, 0x3c, 0x37, 0x37, 0x99, 0x5e, 0x5f, 0x9a, 0x37, - 0x37, 0x3d, 0x01, 0x01, 0x40, 0x38, 0x37, 0x98, 0x03, 0xea, 0x1c, 0x1b, - 0x1c, 0x50, 0x33, 0x5b, 0xaf, 0x47, 0x47, 0x61, 0x0d, 0x07, 0x1c, 0x1c, - 0x1b, 0x59, 0x44, 0x38, 0x45, 0x14, 0x15, 0x14, 0x07, 0x0f, 0x50, 0x3a, - 0x3a, 0x92, 0x50, 0x51, 0xa9, 0x51, 0x70, 0x67, 0xb6, 0x44, 0x44, 0x4f, - 0x4f, 0x44, 0x44, 0xb6, 0x67, 0x2a, 0x66, 0xaf, 0x41, 0x40, 0x4a, 0x36, - 0x42, 0x39, 0x3a, 0x9c, 0x59, 0x2a, 0x5a, 0xa2, 0x3d, 0x3d, 0x48, 0x48, - 0x3d, 0x3d, 0xa2, 0x5a, 0x2a, 0x59, 0x9b, 0x3a, 0x3a, 0x42, 0x00, 0x03, - 0x00, 0xcf, 0x00, 0x00, 0x04, 0x09, 0x04, 0x3a, 0x00, 0x1b, 0x00, 0x2a, - 0x00, 0x39, 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x13, 0x21, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x11, - 0x11, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0xcf, 0x01, 0xcd, 0x44, 0x84, 0x33, 0x33, 0x3f, 0x01, 0x26, - 0x20, 0x20, 0x57, 0x33, 0x09, 0x2b, 0x4a, 0x1b, 0x1b, 0x1f, 0x45, 0x37, - 0x38, 0x8a, 0x44, 0xfe, 0x78, 0x36, 0x01, 0x97, 0x35, 0x6e, 0x2d, 0x2d, - 0x3a, 0x36, 0x2c, 0x2d, 0x6f, 0x39, 0xfe, 0x69, 0x01, 0x52, 0x38, 0x76, - 0x30, 0x30, 0x3e, 0x34, 0x2b, 0x2b, 0x6c, 0x37, 0x01, 0x20, 0x23, 0x22, - 0x6f, 0x50, 0x37, 0x5a, 0x22, 0x21, 0x2a, 0x08, 0x05, 0x0d, 0x25, 0x1d, - 0x1c, 0x4f, 0x38, 0x53, 0x6c, 0x20, 0x1f, 0x19, 0x01, 0xfd, 0xcf, 0x01, - 0x17, 0x1a, 0x1b, 0x58, 0x40, 0x44, 0x5b, 0x1b, 0x1c, 0x17, 0x01, 0x02, - 0x09, 0x01, 0xc4, 0x10, 0x18, 0x18, 0x57, 0x47, 0x43, 0x58, 0x1a, 0x1a, - 0x16, 0x01, 0x00, 0x01, 0x00, 0xd4, 0x00, 0x00, 0x04, 0x10, 0x04, 0x3a, - 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x33, 0x11, 0x04, 0x10, - 0xfc, 0xc4, 0x3b, 0x04, 0x03, 0x37, 0xfb, 0xc6, 0x04, 0x03, 0x00, 0x02, - 0x00, 0x87, 0xfe, 0xc2, 0x04, 0x4f, 0x04, 0x3a, 0x00, 0x11, 0x00, 0x1b, - 0x00, 0x00, 0x77, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, - 0x11, 0x21, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x13, 0x13, 0x21, 0x11, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0xcf, 0x48, 0x2c, 0x03, 0x66, 0x36, - 0x56, 0xfd, 0xbc, 0x14, 0x04, 0x19, 0x18, 0x19, 0x4c, 0xd0, 0x11, 0x01, - 0xdb, 0xfd, 0x4d, 0x37, 0x49, 0x17, 0x16, 0x16, 0x36, 0xfe, 0x8c, 0x01, - 0x3e, 0xfe, 0xc2, 0x01, 0x74, 0x04, 0x04, 0xfe, 0x88, 0x5d, 0xab, 0x50, - 0x51, 0x99, 0x02, 0x42, 0x01, 0x42, 0xfc, 0x32, 0x44, 0x9c, 0x53, 0x53, - 0xaf, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x04, 0xac, 0x04, 0x3a, - 0x00, 0x15, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, - 0x11, 0x23, 0x11, 0x23, 0x01, 0x23, 0x01, 0x01, 0x33, 0x01, 0x33, 0x11, - 0x33, 0x11, 0x02, 0xe5, 0x01, 0x88, 0x3f, 0xfe, 0x6d, 0x01, 0x62, 0x3d, - 0xfe, 0xb3, 0x7b, 0x32, 0x79, 0xfe, 0xb2, 0x3b, 0x01, 0x60, 0xfe, 0x6f, - 0x3e, 0x01, 0x86, 0x6f, 0x32, 0x02, 0x10, 0xfd, 0xf0, 0x02, 0x26, 0x02, - 0x14, 0xfe, 0x0c, 0x01, 0xf4, 0xfe, 0x0c, 0x01, 0xf4, 0xfd, 0xed, 0xfd, - 0xd9, 0x02, 0x10, 0xfd, 0xf0, 0x02, 0x10, 0x00, 0x00, 0x01, 0x00, 0xaf, - 0xff, 0xed, 0x04, 0x4a, 0x04, 0x4e, 0x00, 0x52, 0x00, 0x00, 0x53, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x33, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0xaf, 0x09, 0x5b, - 0x42, 0x42, 0x9d, 0x4b, 0x46, 0xa5, 0x46, 0x41, 0x59, 0x2c, 0x25, 0x25, - 0x60, 0x34, 0x2f, 0x58, 0x22, 0x21, 0x29, 0x01, 0x5d, 0x47, 0x3f, 0x91, - 0x42, 0x46, 0x95, 0x3f, 0x3f, 0x57, 0x09, 0x3b, 0x01, 0x42, 0x35, 0x3c, - 0x8f, 0x3b, 0x38, 0x85, 0x3a, 0x3a, 0x4d, 0x25, 0x1e, 0x1f, 0x50, 0x2a, - 0x2b, 0x55, 0x24, 0xaa, 0xaa, 0x27, 0x5a, 0x2e, 0x2d, 0x54, 0x20, 0x20, - 0x27, 0x49, 0x34, 0x41, 0x99, 0x3d, 0x39, 0x8f, 0x3b, 0x3e, 0x54, 0x01, - 0x2d, 0x59, 0x7a, 0x26, 0x26, 0x21, 0x1c, 0x26, 0x25, 0x75, 0x59, 0x3f, - 0x5b, 0x1f, 0x1f, 0x26, 0x0a, 0x0c, 0x28, 0x1e, 0x1e, 0x52, 0x36, 0x5f, - 0x77, 0x21, 0x1e, 0x17, 0x21, 0x24, 0x24, 0x73, 0x53, 0x40, 0x5b, 0x1e, - 0x22, 0x1e, 0x13, 0x1a, 0x1b, 0x5f, 0x4c, 0x33, 0x48, 0x19, 0x19, 0x1e, - 0x08, 0x08, 0x06, 0x37, 0x05, 0x08, 0x09, 0x1f, 0x1a, 0x1b, 0x4e, 0x36, - 0x4a, 0x5e, 0x1c, 0x1f, 0x18, 0x1b, 0x1e, 0x1e, 0x73, 0x3f, 0x00, 0x01, - 0x00, 0xd5, 0x00, 0x00, 0x03, 0xf9, 0x04, 0x3a, 0x00, 0x09, 0x00, 0x00, - 0x41, 0x01, 0x11, 0x23, 0x11, 0x33, 0x01, 0x11, 0x33, 0x11, 0x03, 0xc1, - 0xfd, 0x4b, 0x37, 0x37, 0x02, 0xb5, 0x38, 0x04, 0x3a, 0xfc, 0x26, 0x03, - 0xda, 0xfb, 0xc6, 0x03, 0xda, 0xfc, 0x26, 0x04, 0x3a, 0x00, 0x00, 0x01, - 0x00, 0xf6, 0x00, 0x00, 0x04, 0x7a, 0x04, 0x3a, 0x00, 0x0c, 0x00, 0x00, - 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x02, 0x09, 0x02, 0x1c, 0x55, 0xfd, 0xcb, 0x01, 0xf1, 0x52, 0xfe, - 0x2f, 0xe4, 0x39, 0x39, 0x02, 0x11, 0xfd, 0xef, 0x02, 0x29, 0x02, 0x11, - 0xfe, 0x0c, 0x01, 0xf4, 0xfb, 0xc6, 0x02, 0x11, 0x00, 0x01, 0x00, 0x4c, - 0x00, 0x00, 0x03, 0xe8, 0x04, 0x3a, 0x00, 0x1b, 0x00, 0x00, 0x41, 0x21, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, - 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x13, 0x21, - 0x11, 0x33, 0x03, 0xe8, 0xfd, 0x83, 0x14, 0x02, 0x02, 0x06, 0x06, 0x1a, - 0x19, 0x19, 0x50, 0x3b, 0x24, 0x21, 0x47, 0x61, 0x1f, 0x1f, 0x22, 0x09, - 0x08, 0x05, 0x02, 0x12, 0x02, 0x11, 0x38, 0x04, 0x3a, 0xfe, 0x14, 0x28, - 0x6e, 0x3b, 0x3c, 0x74, 0x2e, 0x2f, 0x3a, 0x01, 0x35, 0x01, 0x3c, 0x31, - 0x30, 0x7c, 0x42, 0x41, 0x7e, 0x33, 0x01, 0xb5, 0xfb, 0xfd, 0x00, 0x01, - 0x00, 0xa3, 0x00, 0x00, 0x04, 0x0b, 0x04, 0x3a, 0x00, 0x0c, 0x00, 0x00, - 0x65, 0x01, 0x23, 0x11, 0x33, 0x11, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, - 0x23, 0x02, 0x5b, 0xfe, 0x88, 0x40, 0x32, 0x01, 0x72, 0x27, 0x01, 0x6b, - 0x32, 0x39, 0x52, 0x03, 0xe8, 0xfb, 0xc6, 0x03, 0xd3, 0xfc, 0x2d, 0x03, - 0xbb, 0xfc, 0x45, 0x04, 0x3a, 0x00, 0x00, 0x01, 0x00, 0xd5, 0x00, 0x00, - 0x03, 0xf9, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x03, 0xf9, 0x38, 0xfd, - 0x4a, 0x36, 0x36, 0x02, 0xb6, 0x04, 0x3a, 0xfe, 0x0d, 0x01, 0xf3, 0xfb, - 0xc6, 0x02, 0x11, 0xfd, 0xef, 0x00, 0x00, 0x01, 0x00, 0xd5, 0x00, 0x00, - 0x03, 0xf9, 0x04, 0x3a, 0x00, 0x07, 0x00, 0x00, 0x61, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x11, 0x03, 0xf9, 0xfc, 0xdc, 0x37, 0x02, 0xb5, 0x04, - 0x3a, 0xfb, 0xc6, 0x04, 0x03, 0xfb, 0xfd, 0x00, 0x00, 0x01, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x6e, 0x04, 0x3a, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x6e, 0xfc, 0x0c, 0x01, 0xd1, - 0x39, 0x04, 0x03, 0x37, 0x37, 0xfb, 0xfd, 0x04, 0x03, 0x00, 0x00, 0x03, - 0x00, 0x8d, 0xfe, 0x60, 0x04, 0x40, 0x06, 0x00, 0x00, 0x1f, 0x00, 0x2d, - 0x00, 0x3b, 0x00, 0x00, 0x53, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x17, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x25, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x8d, 0x01, 0x3d, 0x39, 0x39, 0xa5, 0x6b, 0x36, - 0x6a, 0xa5, 0x39, 0x38, 0x3c, 0x01, 0x01, 0x3c, 0x38, 0x39, 0xa5, 0x6a, - 0x36, 0x6b, 0xa6, 0x39, 0x39, 0x3c, 0x35, 0x01, 0x35, 0x33, 0x32, 0x91, - 0x5e, 0x5e, 0x91, 0x32, 0x33, 0x35, 0x03, 0x46, 0x01, 0x35, 0x31, 0x32, - 0x91, 0x5d, 0x5d, 0x90, 0x32, 0x32, 0x35, 0x02, 0x32, 0x2a, 0x66, 0xbd, - 0x4a, 0x4b, 0x5d, 0x06, 0xfe, 0x73, 0x01, 0x8d, 0x06, 0x5e, 0x4a, 0x4a, - 0xbe, 0x65, 0x2a, 0x65, 0xbd, 0x4b, 0x4a, 0x5e, 0x06, 0x01, 0xb3, 0xfe, - 0x4d, 0x05, 0x5e, 0x4a, 0x4b, 0xbe, 0x8f, 0x2a, 0x58, 0xa9, 0x44, 0x43, - 0x57, 0x06, 0xfc, 0x0c, 0x06, 0x56, 0x43, 0x43, 0xaa, 0x83, 0x2a, 0x59, - 0xa9, 0x43, 0x43, 0x57, 0x06, 0x03, 0xf4, 0x06, 0x58, 0x43, 0x44, 0xa8, - 0x00, 0x01, 0x01, 0x09, 0xfe, 0xbf, 0x04, 0x6e, 0x04, 0x3a, 0x00, 0x0b, - 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, - 0x21, 0x11, 0x01, 0x09, 0x03, 0x2f, 0x36, 0x5b, 0x37, 0xfd, 0x63, 0x04, - 0x3a, 0xfb, 0xc6, 0xfe, 0xbf, 0x01, 0x77, 0x04, 0x04, 0xfb, 0xfc, 0x04, - 0x04, 0x00, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x00, 0x03, 0xfa, 0x04, 0x3a, - 0x00, 0x1c, 0x00, 0x00, 0x61, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x23, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x11, 0x03, 0xfa, 0x37, - 0x24, 0x58, 0x2e, 0x2e, 0x59, 0x25, 0x5d, 0x90, 0x30, 0x31, 0x33, 0x01, - 0x37, 0x01, 0x01, 0x39, 0x38, 0x37, 0xa4, 0x6b, 0x55, 0xb3, 0x4e, 0x04, - 0x3a, 0xfe, 0x01, 0x15, 0x1c, 0x08, 0x09, 0x08, 0x01, 0x02, 0x26, 0x2b, - 0x2a, 0x88, 0x5f, 0xea, 0xea, 0x6e, 0x9c, 0x30, 0x31, 0x2c, 0x01, 0x01, - 0x2a, 0x26, 0xfd, 0xf5, 0x00, 0x01, 0x00, 0x93, 0x00, 0x00, 0x04, 0x3b, - 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x00, 0x53, 0x23, 0x11, 0x21, 0x11, 0x23, - 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0xc4, 0x31, 0x03, 0xa8, 0x31, 0xfe, - 0x79, 0x32, 0xfe, 0x73, 0x04, 0x3a, 0xfb, 0xc6, 0x04, 0x3a, 0xfb, 0xfc, - 0x04, 0x04, 0xfb, 0xfc, 0x00, 0x01, 0x00, 0x92, 0xfe, 0xbf, 0x04, 0x94, - 0x04, 0x3a, 0x00, 0x0f, 0x00, 0x00, 0x53, 0x23, 0x11, 0x21, 0x11, 0x33, - 0x11, 0x23, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0xc3, 0x31, - 0x03, 0xd2, 0x30, 0x5a, 0x31, 0xfe, 0x79, 0x32, 0xfe, 0x73, 0x04, 0x3a, - 0xfb, 0xc6, 0xfe, 0xbf, 0x01, 0x77, 0x04, 0x04, 0xfb, 0xfc, 0x04, 0x04, - 0xfb, 0xfc, 0x00, 0x02, 0x00, 0x43, 0x00, 0x00, 0x04, 0x69, 0x04, 0x3a, - 0x00, 0x12, 0x00, 0x21, 0x00, 0x00, 0x61, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x21, 0x15, - 0x21, 0x13, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x21, 0x01, 0x95, 0x01, 0x6f, 0x4b, 0x82, 0x31, 0x30, - 0x37, 0x38, 0x30, 0x30, 0x82, 0x4b, 0xfe, 0xc6, 0xfe, 0x79, 0x01, 0x52, - 0x35, 0x01, 0x3a, 0x3f, 0x6e, 0x29, 0x29, 0x30, 0x2f, 0x29, 0x29, 0x6e, - 0x40, 0xfe, 0xc6, 0x01, 0x2f, 0x2b, 0x2b, 0x7b, 0x4e, 0x4e, 0x7b, 0x2b, - 0x2b, 0x2f, 0x01, 0x01, 0x9c, 0x36, 0xfe, 0x64, 0x01, 0x26, 0x23, 0x24, - 0x67, 0x42, 0x43, 0x68, 0x24, 0x24, 0x27, 0x01, 0x00, 0x03, 0x00, 0xb8, - 0x00, 0x00, 0x04, 0x18, 0x04, 0x3a, 0x00, 0x10, 0x00, 0x14, 0x00, 0x23, - 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x01, 0x11, 0x23, 0x11, 0x01, - 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x23, 0xea, 0x32, 0x01, 0x32, 0x47, 0x6f, 0x26, 0x26, 0x28, 0x28, - 0x26, 0x26, 0x6f, 0x47, 0x02, 0x2e, 0x31, 0xfd, 0x03, 0xff, 0x3c, 0x5b, - 0x1f, 0x1f, 0x20, 0x1f, 0x1f, 0x1f, 0x5b, 0x3d, 0xff, 0x02, 0x9e, 0x01, - 0x9c, 0xfb, 0xc6, 0x01, 0x36, 0x2e, 0x2d, 0x79, 0x44, 0x44, 0x78, 0x2e, - 0x2d, 0x36, 0x02, 0xfd, 0x62, 0x04, 0x3a, 0xfb, 0xc6, 0x02, 0x68, 0x02, - 0x2d, 0x25, 0x26, 0x64, 0x39, 0x39, 0x66, 0x26, 0x27, 0x2e, 0x01, 0x00, - 0x00, 0x02, 0x00, 0xd4, 0x00, 0x00, 0x04, 0x19, 0x04, 0x3a, 0x00, 0x10, - 0x00, 0x1f, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x05, 0x21, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, - 0x01, 0x0b, 0x37, 0x01, 0xa9, 0x4d, 0x94, 0x3a, 0x3a, 0x47, 0x47, 0x3a, - 0x3b, 0x94, 0x4c, 0xfe, 0x8e, 0x01, 0x72, 0x40, 0x80, 0x33, 0x33, 0x40, - 0x3f, 0x33, 0x33, 0x80, 0x41, 0xfe, 0x8e, 0x02, 0x9e, 0x01, 0x9c, 0xfb, - 0xc6, 0x01, 0x28, 0x29, 0x29, 0x7e, 0x56, 0x56, 0x7d, 0x29, 0x29, 0x29, - 0x01, 0x36, 0x01, 0x20, 0x21, 0x22, 0x69, 0x4a, 0x4b, 0x6a, 0x22, 0x22, - 0x21, 0x01, 0x00, 0x01, 0x00, 0x9e, 0xff, 0xec, 0x04, 0x31, 0x04, 0x4e, - 0x00, 0x35, 0x00, 0x00, 0x41, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x21, - 0x15, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0x47, - 0x68, 0xa0, 0x38, 0x37, 0x3b, 0x02, 0xfd, 0x90, 0x02, 0x70, 0x02, 0x3a, - 0x37, 0x37, 0xa0, 0x68, 0x4c, 0x85, 0x32, 0x32, 0x3b, 0x02, 0x39, 0x05, - 0x44, 0x39, 0x38, 0x98, 0x59, 0x73, 0xb5, 0x3f, 0x3e, 0x42, 0x01, 0x01, - 0x43, 0x3e, 0x3f, 0xb5, 0x74, 0x51, 0x96, 0x3a, 0x3a, 0x49, 0x05, 0x39, - 0x03, 0x3f, 0x33, 0x32, 0x83, 0x04, 0x18, 0x4d, 0x41, 0x41, 0xae, 0x61, - 0x36, 0x62, 0xaf, 0x42, 0x42, 0x4d, 0x2b, 0x2a, 0x2a, 0x7a, 0x4f, 0x5a, - 0x8e, 0x31, 0x31, 0x34, 0x57, 0x4a, 0x4a, 0xc4, 0x6d, 0x2a, 0x6d, 0xc4, - 0x4a, 0x4a, 0x57, 0x2e, 0x2d, 0x2d, 0x84, 0x55, 0x4c, 0x70, 0x25, 0x25, - 0x25, 0x00, 0x00, 0x02, 0x00, 0x89, 0xff, 0xec, 0x04, 0x72, 0x04, 0x4e, - 0x00, 0x1f, 0x00, 0x39, 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0xba, 0x31, 0x31, 0xf9, 0x02, 0x29, 0x2a, 0x2a, - 0x82, 0x60, 0x5d, 0x81, 0x2b, 0x2d, 0x28, 0x1e, 0x23, 0x2a, 0x89, 0x6c, - 0x59, 0x7e, 0x28, 0x28, 0x38, 0x35, 0x24, 0x29, 0x21, 0x6c, 0x50, 0x58, - 0x71, 0x23, 0x21, 0x1d, 0x01, 0x02, 0x22, 0x27, 0x22, 0x6d, 0x4f, 0x55, - 0x70, 0x21, 0x26, 0x20, 0x02, 0x2d, 0x02, 0x0d, 0xfb, 0xc6, 0x01, 0xf7, - 0x54, 0xbd, 0x4f, 0x49, 0x62, 0x5f, 0x4b, 0x53, 0xca, 0x55, 0x2a, 0x4a, - 0xb2, 0x4c, 0x5b, 0x79, 0x57, 0x41, 0x41, 0xcb, 0x7d, 0x25, 0x2a, 0x49, - 0xbc, 0x4c, 0x3e, 0x57, 0x65, 0x4c, 0x47, 0xaa, 0x44, 0x2a, 0x49, 0xbb, - 0x4d, 0x40, 0x55, 0x5e, 0x44, 0x4a, 0xb3, 0x00, 0x00, 0x02, 0x00, 0x7d, - 0x00, 0x00, 0x03, 0xbe, 0x04, 0x3a, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, - 0x41, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x01, - 0x33, 0x01, 0x21, 0x11, 0x33, 0x01, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x21, 0x11, 0x21, 0x26, 0x26, 0x27, 0x26, 0x26, 0x03, 0xbe, 0xfe, 0x58, - 0x48, 0x8b, 0x36, 0x37, 0x43, 0x9a, 0x74, 0xfe, 0xdc, 0x42, 0x01, 0x20, - 0x01, 0xa8, 0x37, 0xfd, 0x0b, 0x3a, 0x2f, 0x2f, 0x77, 0x3e, 0x01, 0x71, - 0xfe, 0x62, 0x3b, 0x68, 0x27, 0x28, 0x2e, 0x04, 0x3a, 0x01, 0x26, 0x27, - 0x27, 0x76, 0x51, 0x7e, 0xa3, 0x14, 0xfe, 0x37, 0x01, 0xc2, 0xfe, 0x3e, - 0x02, 0xfc, 0x46, 0x63, 0x20, 0x1f, 0x1e, 0x01, 0xfd, 0xf6, 0x01, 0x23, - 0x21, 0x20, 0x5f, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x4b, 0x04, 0x16, - 0x06, 0x00, 0x00, 0x39, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, 0x23, 0x15, - 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x11, 0x02, 0x4b, 0xfe, 0xce, 0x37, 0xe2, 0xe2, 0x37, - 0x0f, 0x4a, 0x36, 0x35, 0x84, 0x49, 0x52, 0x74, 0x26, 0x25, 0x23, 0x01, - 0x01, 0x01, 0x1e, 0x1e, 0x1e, 0x5e, 0x40, 0x20, 0x3f, 0x1f, 0x0d, 0x22, - 0x45, 0x24, 0x4c, 0x71, 0x26, 0x25, 0x26, 0x01, 0x01, 0x2b, 0x2c, 0x2c, - 0x88, 0x5d, 0x47, 0x7c, 0x33, 0x34, 0x50, 0x1a, 0x04, 0xed, 0x36, 0xdd, - 0xdd, 0x36, 0xfb, 0x13, 0x02, 0xbe, 0x46, 0x7e, 0x2f, 0x2f, 0x38, 0x01, - 0x01, 0x34, 0x2e, 0x2f, 0x81, 0x4c, 0xfc, 0xeb, 0x3b, 0x6a, 0x28, 0x29, - 0x30, 0x0a, 0x08, 0x34, 0x09, 0x0b, 0x38, 0x30, 0x2f, 0x7e, 0x47, 0x03, - 0x15, 0x57, 0x94, 0x36, 0x35, 0x3c, 0x2b, 0x25, 0x26, 0x67, 0x3c, 0x01, - 0xb8, 0x00, 0x00, 0x01, 0x00, 0xb5, 0xff, 0xec, 0x04, 0x11, 0x04, 0x4e, - 0x00, 0x35, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, - 0x35, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0x78, - 0x67, 0x95, 0x30, 0x31, 0x2f, 0x01, 0x02, 0x50, 0xfd, 0xb0, 0x01, 0x30, - 0x31, 0x30, 0x93, 0x66, 0x49, 0x7d, 0x30, 0x2f, 0x3a, 0x06, 0x36, 0x07, - 0x42, 0x36, 0x36, 0x91, 0x55, 0x72, 0xa8, 0x37, 0x38, 0x37, 0x01, 0x01, - 0x37, 0x38, 0x38, 0xa9, 0x72, 0x4f, 0x8f, 0x37, 0x36, 0x46, 0x08, 0x36, - 0x08, 0x3c, 0x2f, 0x30, 0x7b, 0x22, 0x52, 0x43, 0x43, 0xae, 0x5c, 0x36, - 0x5a, 0xac, 0x43, 0x43, 0x52, 0x2e, 0x2a, 0x2b, 0x77, 0x49, 0x55, 0x8b, - 0x32, 0x31, 0x36, 0x5c, 0x4b, 0x4c, 0xc3, 0x66, 0x2a, 0x67, 0xc2, 0x4b, - 0x4c, 0x5c, 0x30, 0x2d, 0x2d, 0x81, 0x51, 0x47, 0x6e, 0x25, 0x26, 0x26, - 0x00, 0x02, 0x00, 0x19, 0x00, 0x00, 0x04, 0xba, 0x04, 0x3a, 0x00, 0x28, - 0x00, 0x37, 0x00, 0x00, 0x41, 0x21, 0x03, 0x14, 0x16, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x26, 0x35, 0x03, 0x21, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x01, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x02, 0xaf, 0xfe, 0x24, 0x03, 0x03, 0x01, 0x02, 0x0d, 0x11, 0x11, 0x3b, - 0x2f, 0x1e, 0x1c, 0x3c, 0x4e, 0x17, 0x17, 0x15, 0x03, 0x03, 0x02, 0x02, - 0x01, 0x79, 0x01, 0x22, 0x43, 0x6a, 0x24, 0x24, 0x26, 0x26, 0x24, 0x25, - 0x69, 0x43, 0xf0, 0x01, 0xd6, 0x1d, 0x1d, 0x1d, 0x56, 0x39, 0xf0, 0xf0, - 0x38, 0x56, 0x1d, 0x1d, 0x1e, 0x04, 0x3a, 0xfe, 0x14, 0x1b, 0x63, 0x3b, - 0x3c, 0x7b, 0x32, 0x33, 0x42, 0x01, 0x36, 0x01, 0x44, 0x35, 0x35, 0x83, - 0x41, 0x41, 0x74, 0x26, 0x01, 0xb5, 0xfb, 0xfd, 0x01, 0x33, 0x2b, 0x2a, - 0x71, 0x41, 0x40, 0x72, 0x2b, 0x2a, 0x32, 0x02, 0xfe, 0xc7, 0x36, 0x5e, - 0x23, 0x24, 0x2b, 0x01, 0x02, 0x0a, 0x02, 0x29, 0x23, 0x23, 0x5d, 0x00, - 0x00, 0x02, 0x00, 0x8b, 0x00, 0x00, 0x04, 0x8f, 0x04, 0x3a, 0x00, 0x18, - 0x00, 0x27, 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x11, 0x23, 0x11, 0x17, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0xbc, 0x31, 0x31, 0x01, - 0xb5, 0x01, 0x12, 0x42, 0x64, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x64, - 0x42, 0xe1, 0x31, 0x31, 0xe1, 0x37, 0x51, 0x1b, 0x1a, 0x1a, 0x1a, 0x1a, - 0x1a, 0x52, 0x37, 0xe1, 0x02, 0x78, 0x01, 0xc2, 0xfb, 0xc6, 0x02, 0x42, - 0xfd, 0xbe, 0x01, 0x35, 0x2b, 0x2b, 0x71, 0x3e, 0x3d, 0x71, 0x2c, 0x2b, - 0x34, 0x02, 0x01, 0xc4, 0xfe, 0x3e, 0x38, 0x02, 0x2b, 0x23, 0x24, 0x5c, - 0x33, 0x33, 0x5e, 0x24, 0x24, 0x2d, 0x01, 0x00, 0x00, 0x01, 0x00, 0x2a, - 0x00, 0x00, 0x03, 0xfb, 0x06, 0x00, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x33, - 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x11, 0x02, 0x75, 0xfe, 0x89, 0x37, 0x9d, 0x9d, 0x37, 0x0f, 0x4a, - 0x36, 0x35, 0x84, 0x49, 0x52, 0x74, 0x26, 0x25, 0x23, 0x01, 0x37, 0x01, - 0x2b, 0x2c, 0x2c, 0x88, 0x5d, 0x47, 0x7c, 0x33, 0x34, 0x50, 0x1a, 0x05, - 0x04, 0x36, 0xc6, 0xc6, 0x36, 0xfa, 0xfc, 0x02, 0xbe, 0x46, 0x7e, 0x2f, - 0x2f, 0x38, 0x01, 0x01, 0x34, 0x2e, 0x2f, 0x81, 0x4c, 0xfd, 0x44, 0x02, - 0xbc, 0x57, 0x94, 0x36, 0x35, 0x3c, 0x2b, 0x25, 0x26, 0x67, 0x3c, 0x01, - 0xcf, 0x00, 0x00, 0x01, 0x00, 0xd5, 0xfe, 0xa2, 0x03, 0xf9, 0x04, 0x3a, - 0x00, 0x0b, 0x00, 0x00, 0x41, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, - 0x11, 0x23, 0x11, 0x21, 0x01, 0x0c, 0x37, 0x01, 0x7b, 0x37, 0x01, 0x72, - 0x38, 0xfd, 0x4b, 0x04, 0x3a, 0xfb, 0xc6, 0xfe, 0xa2, 0x01, 0x5e, 0x04, - 0x3a, 0xfb, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x74, 0xff, 0xec, 0x04, 0x79, - 0x05, 0xb0, 0x00, 0x38, 0x00, 0x00, 0x41, 0x23, 0x03, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x03, 0x23, 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x04, 0x76, 0x31, 0x02, 0x1f, 0x30, 0x18, 0x44, 0x2e, - 0x2e, 0x44, 0x18, 0x30, 0x1f, 0x02, 0x31, 0x02, 0x02, 0x1d, 0x30, 0x18, - 0x44, 0x2e, 0x2f, 0x44, 0x18, 0x30, 0x1f, 0x02, 0x31, 0x02, 0x29, 0x3c, - 0x1e, 0x54, 0x38, 0x35, 0x50, 0x1d, 0x1d, 0x28, 0x0c, 0x0c, 0x28, 0x1e, - 0x1d, 0x50, 0x35, 0x38, 0x54, 0x1e, 0x3b, 0x2a, 0x05, 0xb0, 0xfb, 0xfd, - 0x44, 0xbe, 0x40, 0x21, 0x28, 0x28, 0x21, 0x40, 0xbd, 0x45, 0x04, 0x03, - 0xfb, 0xfd, 0x44, 0xbd, 0x41, 0x21, 0x28, 0x28, 0x21, 0x40, 0xbd, 0x45, - 0x04, 0x03, 0xfb, 0xfd, 0x57, 0xd5, 0x46, 0x24, 0x2b, 0x26, 0x21, 0x20, - 0x54, 0x2f, 0x2f, 0x54, 0x20, 0x21, 0x26, 0x2b, 0x24, 0x46, 0xd5, 0x57, - 0x00, 0x01, 0x00, 0x45, 0xff, 0xeb, 0x04, 0x92, 0x04, 0x3a, 0x00, 0x38, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x11, 0x23, 0x11, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x04, - 0x91, 0x33, 0x01, 0x01, 0x1d, 0x25, 0x1b, 0x52, 0x3b, 0x45, 0x5a, 0x1a, - 0x1b, 0x18, 0x35, 0x16, 0x1a, 0x1a, 0x5b, 0x46, 0x2f, 0x47, 0x1a, 0x34, - 0x27, 0x02, 0x32, 0x02, 0x34, 0x3f, 0x1f, 0x57, 0x38, 0x37, 0x56, 0x20, - 0x20, 0x2b, 0x0d, 0x0d, 0x2c, 0x20, 0x20, 0x56, 0x38, 0x48, 0x69, 0x1e, - 0x31, 0x1e, 0x02, 0x04, 0x3a, 0xfd, 0x5f, 0x40, 0x9b, 0x3b, 0x2c, 0x36, - 0x49, 0x37, 0x36, 0x80, 0x37, 0x02, 0xac, 0xfd, 0x5f, 0x37, 0x83, 0x39, - 0x39, 0x4c, 0x23, 0x1e, 0x3b, 0xb3, 0x49, 0x02, 0xa1, 0xfd, 0x5f, 0x5d, - 0xc8, 0x42, 0x21, 0x26, 0x26, 0x20, 0x20, 0x55, 0x2f, 0x2f, 0x55, 0x20, - 0x20, 0x26, 0x3f, 0x32, 0x51, 0x9e, 0x4e, 0x00, 0x00, 0x02, 0x00, 0x27, - 0x00, 0x00, 0x04, 0x05, 0x06, 0x02, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, 0x33, 0x11, 0x21, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, - 0x11, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x21, 0x02, 0x72, 0xfe, 0xb7, 0x36, 0xcc, 0xcc, 0x01, - 0x8f, 0x4c, 0x8c, 0x36, 0x35, 0x40, 0x40, 0x35, 0x36, 0x8c, 0x4c, 0xfe, - 0xa7, 0x01, 0x59, 0x40, 0x78, 0x2f, 0x2e, 0x38, 0x37, 0x2e, 0x2f, 0x78, - 0x41, 0xfe, 0xa7, 0x04, 0x3a, 0x36, 0x01, 0x92, 0xfe, 0x6e, 0x36, 0xfb, - 0xc6, 0x01, 0x2b, 0x2a, 0x2a, 0x7c, 0x53, 0x52, 0x7d, 0x2a, 0x2a, 0x2b, - 0x01, 0x01, 0x9c, 0xfe, 0x2e, 0x01, 0x23, 0x22, 0x23, 0x68, 0x46, 0x47, - 0x6a, 0x23, 0x23, 0x23, 0x01, 0x00, 0x00, 0x01, 0x00, 0xa2, 0xff, 0xed, - 0x04, 0x84, 0x05, 0xc5, 0x00, 0x54, 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x33, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x21, 0x35, 0x21, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0xd3, 0x31, 0x31, - 0xcf, 0x0e, 0x10, 0x10, 0x35, 0x2a, 0x29, 0x72, 0x4d, 0x3f, 0x66, 0x28, - 0x28, 0x3b, 0x14, 0x13, 0x14, 0x02, 0x31, 0x08, 0x14, 0x0f, 0x0f, 0x2d, - 0x20, 0x21, 0x59, 0x3b, 0x44, 0x63, 0x23, 0x24, 0x2d, 0x0d, 0x0d, 0x0a, - 0x01, 0x65, 0xfe, 0x9b, 0x0a, 0x0d, 0x0d, 0x2d, 0x24, 0x23, 0x64, 0x43, - 0x3a, 0x58, 0x21, 0x20, 0x2d, 0x10, 0x0f, 0x15, 0x08, 0x31, 0x02, 0x2d, - 0x2c, 0x2d, 0x88, 0x5d, 0x4d, 0x72, 0x29, 0x2a, 0x35, 0x10, 0x10, 0x0e, - 0x03, 0x1a, 0x02, 0x96, 0xfa, 0x50, 0x02, 0xe4, 0x78, 0x3a, 0x8b, 0x47, - 0x47, 0x85, 0x34, 0x34, 0x3f, 0x26, 0x22, 0x21, 0x5b, 0x34, 0x33, 0x70, - 0x37, 0x30, 0x62, 0x2d, 0x2e, 0x51, 0x1e, 0x1e, 0x22, 0x3c, 0x31, 0x30, - 0x7c, 0x41, 0x41, 0x7d, 0x31, 0x78, 0x36, 0x2e, 0x31, 0x7c, 0x41, 0x41, - 0x7c, 0x30, 0x30, 0x3c, 0x22, 0x1e, 0x1f, 0x50, 0x2d, 0x2e, 0x61, 0x2f, - 0x52, 0xa5, 0x43, 0x43, 0x53, 0x3f, 0x34, 0x34, 0x85, 0x47, 0x47, 0x8c, - 0x39, 0x2c, 0x00, 0x01, 0x00, 0xc4, 0xff, 0xec, 0x04, 0x78, 0x04, 0x4e, - 0x00, 0x49, 0x00, 0x00, 0x41, 0x35, 0x21, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x03, 0x9b, 0xfe, 0x76, 0x0b, 0x0d, - 0x0c, 0x2b, 0x21, 0x20, 0x5b, 0x3d, 0x44, 0x60, 0x20, 0x1f, 0x22, 0x07, - 0x33, 0x01, 0x2b, 0x28, 0x29, 0x76, 0x4c, 0x45, 0x69, 0x26, 0x27, 0x35, - 0x0f, 0x0c, 0x13, 0xe5, 0x32, 0x32, 0xe5, 0x0f, 0x10, 0x10, 0x34, 0x27, - 0x27, 0x69, 0x45, 0x48, 0x74, 0x2a, 0x29, 0x2d, 0x02, 0x33, 0x08, 0x24, - 0x20, 0x20, 0x5e, 0x41, 0x3d, 0x5b, 0x21, 0x21, 0x2b, 0x0c, 0x0d, 0x0b, - 0x02, 0x16, 0x36, 0x32, 0x69, 0x33, 0x32, 0x5c, 0x23, 0x23, 0x2a, 0x3a, - 0x2e, 0x2e, 0x73, 0x3a, 0x46, 0x87, 0x35, 0x35, 0x42, 0x2d, 0x26, 0x27, - 0x66, 0x39, 0x2b, 0x76, 0x48, 0x01, 0xee, 0xfb, 0xc6, 0x02, 0x16, 0x2c, - 0x37, 0x76, 0x38, 0x39, 0x66, 0x26, 0x27, 0x2d, 0x3a, 0x31, 0x30, 0x7d, - 0x44, 0x39, 0x6a, 0x29, 0x29, 0x31, 0x2a, 0x23, 0x23, 0x5b, 0x33, 0x33, - 0x68, 0x2f, 0x2c, 0x00, 0x00, 0x02, 0x00, 0x48, 0x00, 0x00, 0x04, 0x9d, - 0x05, 0xb0, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, - 0x23, 0x01, 0x33, 0x13, 0x21, 0x11, 0x33, 0x11, 0x25, 0x01, 0x37, 0x17, - 0x01, 0x03, 0xad, 0xb6, 0x3a, 0xfd, 0xf5, 0x40, 0xfd, 0xf6, 0x3a, 0xb6, - 0x01, 0x1a, 0x35, 0xfe, 0xc5, 0x01, 0x0a, 0x1c, 0x1d, 0x01, 0x0a, 0x01, - 0xfc, 0xfe, 0x04, 0x05, 0xb0, 0xfa, 0x50, 0x01, 0xfc, 0xfe, 0x04, 0x01, - 0xfc, 0x36, 0x02, 0xe6, 0x5c, 0x5c, 0xfd, 0x1a, 0x00, 0x02, 0x00, 0x7f, - 0x00, 0x00, 0x04, 0x5f, 0x04, 0x3a, 0x00, 0x0b, 0x00, 0x10, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, - 0x25, 0x13, 0x37, 0x17, 0x13, 0x03, 0x73, 0xb1, 0x3b, 0xfe, 0x2a, 0x34, - 0xfe, 0x2a, 0x3c, 0xaf, 0xee, 0x36, 0xfe, 0xf4, 0xb4, 0x38, 0x38, 0xb5, - 0x01, 0x8b, 0xfe, 0x75, 0x04, 0x3a, 0xfb, 0xc6, 0x01, 0x8b, 0xfe, 0x75, - 0x01, 0x8b, 0x36, 0x01, 0x94, 0x9c, 0x9c, 0xfe, 0x6c, 0x00, 0x00, 0x02, - 0x00, 0xb0, 0x00, 0x00, 0x04, 0xb4, 0x05, 0xb0, 0x00, 0x13, 0x00, 0x18, - 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, 0x23, 0x03, 0x21, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x27, 0x13, - 0x37, 0x17, 0x13, 0x03, 0xfa, 0x86, 0x34, 0xfe, 0x84, 0x37, 0xea, 0xfe, - 0xc9, 0x30, 0x30, 0x01, 0x29, 0x84, 0x34, 0x85, 0xc2, 0x30, 0xe4, 0xc3, - 0x0d, 0x0e, 0xc2, 0x01, 0xfc, 0xfe, 0x04, 0x05, 0xb0, 0xfc, 0x82, 0x03, - 0x7e, 0xfa, 0x50, 0x01, 0xfc, 0xfe, 0x04, 0x01, 0xfc, 0xfe, 0x04, 0x01, - 0xfc, 0x36, 0x02, 0xe6, 0x3e, 0x3e, 0xfd, 0x1a, 0x00, 0x02, 0x00, 0xa3, - 0x00, 0x00, 0x04, 0xb6, 0x04, 0x3a, 0x00, 0x13, 0x00, 0x18, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x03, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, - 0x21, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x27, 0x13, 0x37, 0x17, - 0x13, 0x03, 0xee, 0x92, 0x36, 0xfe, 0x7e, 0x2f, 0xe2, 0xfe, 0xb3, 0x33, - 0x33, 0x01, 0x3a, 0x8d, 0x37, 0x91, 0xbb, 0x33, 0xda, 0x94, 0x29, 0x2a, - 0x94, 0x01, 0x8b, 0xfe, 0x75, 0x04, 0x3a, 0xfd, 0x87, 0x02, 0x79, 0xfb, - 0xc6, 0x01, 0x8b, 0xfe, 0x75, 0x01, 0x8b, 0xfe, 0x75, 0x01, 0x8b, 0x36, - 0x01, 0x94, 0x8e, 0x8e, 0xfe, 0x6c, 0x00, 0x02, 0x00, 0x9d, 0x00, 0x00, - 0x04, 0x4a, 0x05, 0xb0, 0x00, 0x27, 0x00, 0x2c, 0x00, 0x00, 0x73, 0x33, - 0x13, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x11, 0x33, 0x11, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x13, 0x33, 0x13, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x01, 0x21, 0x01, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x01, 0x01, 0x07, 0x27, 0x01, 0x9f, 0x32, 0x02, 0x01, 0x19, - 0x1e, 0x1d, 0x60, 0x48, 0x8a, 0x31, 0x8d, 0x48, 0x60, 0x1d, 0x1d, 0x19, - 0x01, 0x02, 0x32, 0x02, 0x23, 0x25, 0x25, 0x73, 0x52, 0x77, 0x01, 0x60, - 0xfc, 0xe3, 0x01, 0x5f, 0x73, 0x51, 0x74, 0x25, 0x25, 0x23, 0x01, 0x03, - 0x10, 0xfe, 0xd3, 0x0e, 0x0d, 0xfe, 0xd2, 0x01, 0x85, 0x42, 0x70, 0x29, - 0x28, 0x2e, 0x01, 0xfd, 0x49, 0x02, 0xb7, 0x01, 0x2e, 0x28, 0x29, 0x70, - 0x42, 0xfe, 0x7b, 0x01, 0x85, 0x4c, 0x83, 0x30, 0x30, 0x38, 0x01, 0x02, - 0xc3, 0xfd, 0x3d, 0x01, 0x38, 0x30, 0x31, 0x82, 0x4c, 0x03, 0xf5, 0xfd, - 0x95, 0x1e, 0x1e, 0x02, 0x6b, 0x00, 0x00, 0x02, 0x00, 0xa1, 0x00, 0x00, - 0x04, 0x1c, 0x04, 0x3a, 0x00, 0x29, 0x00, 0x2f, 0x00, 0x00, 0x73, 0x33, - 0x37, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x17, 0x11, 0x33, 0x11, - 0x37, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x15, 0x33, 0x35, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x01, 0x21, 0x01, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x01, 0x01, 0x07, 0x23, 0x27, 0x01, 0xa3, 0x34, - 0x01, 0x23, 0x23, 0x23, 0x6e, 0x4c, 0x47, 0x04, 0x34, 0x05, 0x44, 0x49, - 0x6b, 0x23, 0x26, 0x26, 0x36, 0x01, 0x2c, 0x2b, 0x2b, 0x80, 0x55, 0x23, - 0x01, 0x37, 0xfd, 0x11, 0x01, 0x36, 0x24, 0x55, 0x80, 0x2b, 0x2c, 0x2d, - 0x01, 0x02, 0xd8, 0xfe, 0xf2, 0x05, 0x0c, 0x04, 0xfe, 0xf1, 0xe1, 0x49, - 0x71, 0x26, 0x27, 0x29, 0x01, 0x07, 0xfd, 0xf5, 0x02, 0x0a, 0x08, 0x26, - 0x24, 0x26, 0x75, 0x4c, 0xe1, 0xe1, 0x53, 0x85, 0x2f, 0x2e, 0x32, 0x01, - 0x01, 0xf1, 0xfe, 0x0f, 0x01, 0x32, 0x2e, 0x2f, 0x84, 0x54, 0x03, 0x22, - 0xfe, 0x52, 0x0c, 0x0b, 0x01, 0xaf, 0x00, 0x02, 0x00, 0x94, 0x00, 0x00, - 0x04, 0x4d, 0x05, 0xb0, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x00, 0x61, 0x33, - 0x13, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x11, 0x33, 0x11, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x13, 0x33, 0x13, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x01, 0x21, 0x01, 0x21, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x01, 0x03, 0x07, 0x27, - 0x03, 0x01, 0x8c, 0x2f, 0x02, 0x0b, 0x12, 0x12, 0x48, 0x3e, 0x61, 0x2e, - 0x63, 0x3e, 0x48, 0x12, 0x12, 0x0a, 0x03, 0x2e, 0x04, 0x01, 0x12, 0x19, - 0x19, 0x5b, 0x49, 0x54, 0x01, 0x07, 0xfd, 0xa7, 0x01, 0x06, 0xfd, 0xfe, - 0x2e, 0x2e, 0x01, 0x22, 0x1b, 0x24, 0x0a, 0x0a, 0x08, 0x02, 0x46, 0xe1, - 0x05, 0x04, 0xe1, 0x01, 0x85, 0x31, 0x6c, 0x2d, 0x2c, 0x3b, 0x01, 0xfd, - 0x49, 0x02, 0xb7, 0x01, 0x3b, 0x2c, 0x2d, 0x6c, 0x31, 0xfe, 0x7b, 0x01, - 0x85, 0x3c, 0x7e, 0x35, 0x34, 0x44, 0x01, 0x02, 0xc3, 0xfd, 0x3d, 0x02, - 0xc3, 0xfa, 0x50, 0x02, 0xb7, 0x1b, 0x48, 0x28, 0x29, 0x56, 0x28, 0x03, - 0xf5, 0xfd, 0x95, 0x0d, 0x0d, 0x02, 0x6b, 0x00, 0x00, 0x02, 0x00, 0x9e, - 0x00, 0x00, 0x04, 0x44, 0x04, 0x3a, 0x00, 0x2f, 0x00, 0x34, 0x00, 0x00, - 0x73, 0x33, 0x11, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x17, 0x33, - 0x37, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x17, 0x11, 0x33, 0x11, - 0x37, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x17, 0x33, 0x37, 0x34, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x13, 0x21, 0x13, 0x21, 0x11, 0x23, - 0x05, 0x03, 0x07, 0x27, 0x03, 0x9e, 0x30, 0x01, 0x30, 0x1d, 0x28, 0x0c, - 0x0d, 0x0c, 0x03, 0x30, 0x03, 0x11, 0x17, 0x17, 0x54, 0x43, 0x33, 0x02, - 0x30, 0x02, 0x31, 0x43, 0x54, 0x18, 0x17, 0x11, 0x03, 0x2f, 0x03, 0x1a, - 0x1e, 0x1f, 0x67, 0x4d, 0x18, 0xef, 0xfd, 0xbb, 0xee, 0xfe, 0x15, 0x30, - 0x03, 0x21, 0xcf, 0x03, 0x02, 0xd0, 0x02, 0x12, 0x19, 0x44, 0x27, 0x28, - 0x58, 0x2d, 0xe1, 0xe1, 0x3a, 0x6d, 0x2b, 0x2a, 0x34, 0x01, 0x03, 0xfd, - 0xf1, 0x02, 0x0e, 0x04, 0x01, 0x34, 0x2a, 0x2b, 0x6d, 0x3a, 0xe1, 0xe1, - 0x44, 0x80, 0x33, 0x32, 0x3e, 0x01, 0x01, 0xf1, 0xfe, 0x0f, 0x01, 0xf1, - 0x37, 0xfe, 0x52, 0x09, 0x08, 0x01, 0xaf, 0x00, 0x00, 0x02, 0x00, 0xc9, - 0xfe, 0x86, 0x04, 0x23, 0x07, 0x69, 0x00, 0x5c, 0x00, 0x65, 0x00, 0x00, - 0x41, 0x23, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x21, 0x15, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x27, 0x23, - 0x15, 0x17, 0x33, 0x37, 0x35, 0x23, 0x02, 0x1b, 0x7b, 0x7b, 0x54, 0xa7, - 0x42, 0x42, 0x52, 0x2a, 0x23, 0x24, 0x5e, 0x34, 0x35, 0x6e, 0x33, 0x52, - 0x2e, 0x5a, 0x23, 0x23, 0x2a, 0x01, 0x01, 0x28, 0x1f, 0x1f, 0x4d, 0x26, - 0x0f, 0x1e, 0x3f, 0x1a, 0x1a, 0x22, 0x01, 0x01, 0x22, 0x1c, 0x1b, 0x47, - 0x23, 0x52, 0x3a, 0x7c, 0x3b, 0x3a, 0x68, 0x28, 0x27, 0x2e, 0x34, 0x2c, - 0x2d, 0x77, 0x43, 0x3d, 0x6e, 0x2a, 0x29, 0x32, 0x25, 0x21, 0x21, 0x5b, - 0x34, 0x35, 0x73, 0x3b, 0xfe, 0xb0, 0x01, 0x50, 0x4c, 0x95, 0x3c, 0x3b, - 0x4a, 0x24, 0x20, 0x20, 0x55, 0x31, 0x32, 0x6a, 0x21, 0xc1, 0x39, 0xdc, - 0x3b, 0xda, 0x35, 0x03, 0x03, 0x38, 0x01, 0x1d, 0x25, 0x25, 0x81, 0x64, - 0x3e, 0x61, 0x24, 0x24, 0x32, 0x10, 0x10, 0x0e, 0x01, 0x01, 0x16, 0x17, - 0x17, 0x4a, 0x35, 0x2c, 0x4b, 0x1e, 0x1e, 0x2d, 0x0c, 0x34, 0x0a, 0x22, - 0x18, 0x17, 0x3b, 0x23, 0x2a, 0x37, 0x10, 0x0f, 0x0d, 0x01, 0x14, 0x14, - 0x13, 0x3d, 0x2b, 0x2b, 0x6e, 0x45, 0x51, 0x7a, 0x2b, 0x2b, 0x36, 0x0f, - 0x10, 0x39, 0x2a, 0x2a, 0x6f, 0x47, 0x43, 0x6b, 0x29, 0x29, 0x3c, 0x13, - 0x13, 0x12, 0x01, 0x36, 0x01, 0x21, 0x24, 0x25, 0x78, 0x58, 0x3e, 0x5f, - 0x23, 0x23, 0x2f, 0x0e, 0x0f, 0x0d, 0x03, 0x8d, 0xd9, 0x0b, 0xfc, 0xfa, - 0x0d, 0x00, 0x00, 0x02, 0x00, 0xfb, 0xfe, 0x86, 0x03, 0xee, 0x06, 0x2c, - 0x00, 0x62, 0x00, 0x6b, 0x00, 0x00, 0x41, 0x23, 0x15, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x15, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x13, 0x27, 0x23, - 0x15, 0x17, 0x33, 0x37, 0x35, 0x23, 0x02, 0x23, 0x7a, 0x7a, 0x27, 0x5a, - 0x2d, 0x2d, 0x53, 0x20, 0x20, 0x26, 0x28, 0x21, 0x21, 0x55, 0x2d, 0x2e, - 0x5b, 0x26, 0x29, 0x2e, 0x59, 0x23, 0x24, 0x2a, 0x01, 0x01, 0x28, 0x1f, - 0x1f, 0x4d, 0x26, 0x10, 0x1e, 0x3f, 0x1a, 0x1b, 0x22, 0x01, 0x01, 0x22, - 0x1c, 0x1b, 0x47, 0x23, 0x29, 0x2e, 0x69, 0x34, 0x33, 0x5f, 0x25, 0x24, - 0x2c, 0x2b, 0x23, 0x24, 0x5d, 0x33, 0x2f, 0x55, 0x21, 0x20, 0x27, 0x25, - 0x1f, 0x20, 0x54, 0x2d, 0x2e, 0x5f, 0x2b, 0xfe, 0xe6, 0x01, 0x1a, 0x22, - 0x4f, 0x28, 0x27, 0x4a, 0x1d, 0x1c, 0x22, 0x23, 0x1d, 0x1e, 0x4d, 0x2a, - 0x2b, 0x57, 0x01, 0xc1, 0x39, 0xdc, 0x3b, 0xda, 0x35, 0x02, 0x49, 0x38, - 0x05, 0x08, 0x08, 0x1f, 0x19, 0x19, 0x4b, 0x34, 0x33, 0x4b, 0x1b, 0x1b, - 0x24, 0x0a, 0x0b, 0x09, 0x01, 0x16, 0x17, 0x17, 0x4a, 0x35, 0x2c, 0x4b, - 0x1e, 0x1e, 0x2c, 0x0d, 0x34, 0x0a, 0x22, 0x18, 0x17, 0x3b, 0x23, 0x2a, - 0x37, 0x10, 0x0f, 0x0d, 0x01, 0x0e, 0x0e, 0x0e, 0x2e, 0x22, 0x21, 0x5a, - 0x3a, 0x3b, 0x56, 0x1f, 0x1e, 0x26, 0x0b, 0x0d, 0x2b, 0x1f, 0x1f, 0x52, - 0x36, 0x36, 0x52, 0x1e, 0x1d, 0x27, 0x0c, 0x0c, 0x0a, 0x01, 0x37, 0x01, - 0x06, 0x08, 0x09, 0x1d, 0x17, 0x18, 0x41, 0x2d, 0x32, 0x49, 0x19, 0x1a, - 0x20, 0x09, 0x0a, 0x06, 0x03, 0x09, 0xd9, 0x0b, 0xfc, 0xfa, 0x0d, 0x00, - 0x00, 0x03, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x05, 0xc4, 0x00, 0x25, - 0x00, 0x3a, 0x00, 0x4f, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x25, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x1d, 0x02, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x04, 0x3e, 0x01, 0x18, 0x18, 0x19, 0x4b, 0x34, 0x35, 0x86, 0x54, - 0x54, 0x86, 0x34, 0x35, 0x4b, 0x18, 0x19, 0x18, 0x01, 0x01, 0x19, 0x19, - 0x18, 0x4c, 0x35, 0x34, 0x87, 0x53, 0x53, 0x87, 0x34, 0x34, 0x4b, 0x18, - 0x18, 0x19, 0xfc, 0x87, 0x15, 0x15, 0x15, 0x41, 0x2f, 0x2e, 0x78, 0x4c, - 0x4c, 0x79, 0x2f, 0x2e, 0x42, 0x15, 0x15, 0x14, 0x01, 0x01, 0x13, 0x15, - 0x15, 0x42, 0x2e, 0x2e, 0x79, 0x4c, 0x4c, 0x79, 0x2e, 0x2f, 0x42, 0x15, - 0x15, 0x14, 0x01, 0x02, 0x6b, 0xda, 0x47, 0x96, 0x47, 0x47, 0x7e, 0x30, - 0x2f, 0x37, 0x37, 0x2f, 0x30, 0x7e, 0x47, 0x47, 0x96, 0x47, 0xda, 0x47, - 0x96, 0x47, 0x47, 0x7e, 0x2f, 0x30, 0x37, 0x37, 0x30, 0x2f, 0x7e, 0x47, - 0x47, 0x96, 0xcf, 0x54, 0x3f, 0x88, 0x41, 0x41, 0x74, 0x2c, 0x2b, 0x33, - 0x33, 0x2b, 0x2c, 0x74, 0x40, 0x41, 0x88, 0x40, 0x54, 0x36, 0x52, 0x40, - 0x88, 0x41, 0x41, 0x74, 0x2c, 0x2c, 0x33, 0x33, 0x2c, 0x2c, 0x74, 0x41, - 0x41, 0x88, 0x40, 0x52, 0x00, 0x03, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x04, 0x4e, 0x00, 0x19, 0x00, 0x26, 0x00, 0x33, 0x00, 0x00, 0x53, 0x15, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x13, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x8d, 0x01, 0x40, 0x3d, 0x3c, 0xb0, 0x71, 0x71, 0xaf, 0x3c, - 0x3c, 0x3f, 0x01, 0x01, 0x40, 0x3c, 0x3d, 0xaf, 0x71, 0x71, 0xaf, 0x3c, - 0x3c, 0x40, 0x01, 0xd8, 0x63, 0x9a, 0x36, 0x35, 0x3a, 0x02, 0xfc, 0xb9, - 0x02, 0x39, 0x36, 0x35, 0x9a, 0x65, 0x63, 0x9b, 0x36, 0x36, 0x39, 0x02, - 0x03, 0x47, 0x02, 0x39, 0x35, 0x36, 0x99, 0x02, 0x32, 0x2a, 0x69, 0xc3, - 0x4b, 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, 0x68, 0x2a, 0x69, 0xc3, 0x4b, - 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, 0x01, 0x7e, 0x53, 0x43, 0x44, 0xad, - 0x5a, 0x5a, 0xad, 0x44, 0x43, 0x53, 0xfc, 0x0a, 0x51, 0x43, 0x43, 0xac, - 0x5c, 0x5b, 0xac, 0x43, 0x43, 0x52, 0x00, 0x01, 0x00, 0x4e, 0x00, 0x00, - 0x04, 0xef, 0x05, 0xc4, 0x00, 0x16, 0x00, 0x00, 0x65, 0x01, 0x23, 0x01, - 0x33, 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x33, 0x37, 0x23, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x07, 0x02, 0x2a, 0xfe, 0x5f, 0x3b, - 0x01, 0xd8, 0x41, 0x01, 0x88, 0x10, 0x29, 0x1d, 0x1c, 0x4e, 0x35, 0x0a, - 0x01, 0x09, 0x3c, 0x5d, 0x23, 0x23, 0x32, 0x12, 0xfe, 0xa0, 0x1d, 0x8e, - 0x05, 0x22, 0xfa, 0x50, 0x04, 0xb4, 0x2f, 0x52, 0x1e, 0x1e, 0x24, 0x2f, - 0x01, 0x25, 0x20, 0x21, 0x5b, 0x36, 0xfb, 0xc2, 0x56, 0x00, 0x00, 0x01, - 0x00, 0x5a, 0x00, 0x00, 0x04, 0x55, 0x04, 0x4e, 0x00, 0x1a, 0x00, 0x00, - 0x61, 0x33, 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x17, 0x16, 0x16, 0x17, - 0x37, 0x26, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x07, - 0x27, 0x01, 0x23, 0x01, 0xe7, 0x35, 0x01, 0x46, 0x0a, 0x1a, 0x12, 0x12, - 0x30, 0x21, 0x14, 0x26, 0x13, 0x0d, 0x14, 0x2b, 0x17, 0x28, 0x3f, 0x18, - 0x19, 0x23, 0x0d, 0xf9, 0x3c, 0x3a, 0xfe, 0xcd, 0x3b, 0x03, 0x8d, 0x1b, - 0x35, 0x15, 0x14, 0x19, 0x01, 0x01, 0x08, 0x08, 0x2d, 0x09, 0x09, 0x01, - 0x01, 0x1a, 0x17, 0x17, 0x3e, 0x22, 0xfd, 0x3f, 0x9e, 0x9e, 0x03, 0x55, - 0x00, 0x03, 0x00, 0x4b, 0xfe, 0x4b, 0x04, 0x92, 0x05, 0xc4, 0x00, 0x19, - 0x00, 0x33, 0x00, 0x4f, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x13, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x01, 0x23, 0x03, 0x07, - 0x27, 0x03, 0x23, 0x13, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x02, 0x55, 0x1c, 0x1f, 0x1f, 0x63, 0x48, 0x48, 0x63, 0x1e, - 0x1f, 0x1c, 0x01, 0x01, 0x1c, 0x20, 0x1f, 0x63, 0x47, 0x48, 0x62, 0x1f, - 0x1f, 0x1c, 0x35, 0x14, 0x17, 0x18, 0x50, 0x3c, 0x3c, 0x50, 0x17, 0x18, - 0x14, 0x01, 0x18, 0x1b, 0x18, 0x4c, 0x38, 0x3c, 0x50, 0x18, 0x18, 0x14, - 0x2a, 0x11, 0x21, 0x11, 0x2b, 0x42, 0x1a, 0x1a, 0x27, 0x10, 0x01, 0x2d, - 0x3b, 0xbf, 0x16, 0x14, 0xa9, 0x3a, 0xd9, 0x30, 0x0d, 0x20, 0x15, 0x15, - 0x34, 0x20, 0x11, 0x20, 0x0f, 0x02, 0x61, 0xee, 0x90, 0xe8, 0x52, 0x52, - 0x59, 0x59, 0x52, 0x52, 0xe9, 0x8f, 0xee, 0x8f, 0xe9, 0x52, 0x52, 0x59, - 0x59, 0x52, 0x52, 0xe9, 0x01, 0x7f, 0xf0, 0x6d, 0xcf, 0x50, 0x51, 0x62, - 0x62, 0x51, 0x50, 0xcf, 0x6d, 0xf0, 0x73, 0xdd, 0x51, 0x45, 0x57, 0x61, - 0x50, 0x51, 0xce, 0xfa, 0x98, 0x05, 0x06, 0x27, 0x23, 0x22, 0x5d, 0x38, - 0x04, 0xee, 0xfc, 0xda, 0x5d, 0x5e, 0x03, 0x25, 0xfb, 0xfe, 0xe2, 0x2f, - 0x4f, 0x1c, 0x1d, 0x1f, 0x06, 0x03, 0x00, 0x03, 0x00, 0x4b, 0xfe, 0x4b, - 0x04, 0x92, 0x04, 0x4f, 0x00, 0x19, 0x00, 0x33, 0x00, 0x4f, 0x00, 0x00, - 0x53, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x01, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x13, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x4b, 0x01, 0x1f, 0x21, - 0x20, 0x66, 0x47, 0x48, 0x65, 0x20, 0x20, 0x1f, 0x1f, 0x20, 0x21, 0x65, - 0x48, 0x48, 0x65, 0x20, 0x21, 0x1e, 0x35, 0x16, 0x17, 0x18, 0x53, 0x3f, - 0x3a, 0x54, 0x1a, 0x1b, 0x15, 0x16, 0x19, 0x1a, 0x52, 0x3c, 0x39, 0x50, - 0x1a, 0x1a, 0x1b, 0x01, 0xc9, 0x11, 0x21, 0x11, 0x2b, 0x42, 0x1a, 0x1a, - 0x27, 0x10, 0x01, 0x2d, 0x3b, 0xc6, 0x0f, 0x0e, 0xaf, 0x3a, 0xd9, 0x30, - 0x09, 0x24, 0x15, 0x15, 0x34, 0x20, 0x11, 0x20, 0x0f, 0x02, 0x34, 0x2d, - 0x6e, 0xc4, 0x49, 0x4a, 0x56, 0x56, 0x4a, 0x49, 0xc4, 0x6e, 0x2d, 0x6f, - 0xc4, 0x4a, 0x49, 0x55, 0x56, 0x49, 0x4a, 0xc4, 0x9b, 0x2f, 0x4e, 0xa6, - 0x45, 0x49, 0x61, 0x56, 0x48, 0x4c, 0xa6, 0x53, 0x2f, 0x52, 0xac, 0x46, - 0x47, 0x5a, 0x51, 0x42, 0x41, 0xba, 0xfc, 0xa6, 0x05, 0x06, 0x27, 0x23, - 0x22, 0x5d, 0x38, 0x04, 0xee, 0xfc, 0xbe, 0x41, 0x42, 0x03, 0x41, 0xfb, - 0xfe, 0xe2, 0x2a, 0x54, 0x1c, 0x1d, 0x1f, 0x06, 0x03, 0x00, 0x00, 0x04, - 0x00, 0x8e, 0xff, 0x70, 0x04, 0x3e, 0x06, 0x3e, 0x00, 0x03, 0x00, 0x07, - 0x00, 0x2d, 0x00, 0x53, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x11, - 0x23, 0x11, 0x01, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x02, 0x78, 0x34, 0x34, 0x34, 0x01, - 0xfa, 0x01, 0x18, 0x18, 0x19, 0x4b, 0x34, 0x35, 0x86, 0x54, 0x54, 0x86, - 0x34, 0x35, 0x4b, 0x18, 0x19, 0x18, 0x01, 0x01, 0x19, 0x19, 0x18, 0x4c, - 0x35, 0x34, 0x87, 0x53, 0x53, 0x87, 0x34, 0x34, 0x4b, 0x18, 0x18, 0x18, - 0x34, 0x01, 0x13, 0x15, 0x15, 0x42, 0x2e, 0x2e, 0x79, 0x4c, 0x4c, 0x79, - 0x2e, 0x2f, 0x42, 0x15, 0x15, 0x14, 0x01, 0x01, 0x14, 0x15, 0x15, 0x41, - 0x2f, 0x2e, 0x78, 0x4c, 0x4c, 0x79, 0x2f, 0x2e, 0x42, 0x15, 0x15, 0x14, - 0x05, 0x0b, 0x01, 0x33, 0xfe, 0xcd, 0xfa, 0x65, 0x01, 0x33, 0xfe, 0xcd, - 0x02, 0xfb, 0xda, 0x47, 0x96, 0x47, 0x47, 0x7e, 0x30, 0x2f, 0x37, 0x37, - 0x2f, 0x30, 0x7e, 0x47, 0x47, 0x96, 0x47, 0xda, 0x47, 0x96, 0x47, 0x47, - 0x7e, 0x2f, 0x30, 0x37, 0x37, 0x30, 0x2f, 0x7e, 0x47, 0x47, 0x96, 0x01, - 0x23, 0xdc, 0x40, 0x88, 0x41, 0x41, 0x74, 0x2c, 0x2c, 0x33, 0x33, 0x2c, - 0x2c, 0x74, 0x41, 0x41, 0x88, 0x40, 0xdc, 0x3f, 0x88, 0x41, 0x41, 0x74, - 0x2c, 0x2b, 0x33, 0x33, 0x2b, 0x2c, 0x74, 0x40, 0x41, 0x88, 0x00, 0x04, - 0x00, 0x8d, 0xff, 0x50, 0x04, 0x40, 0x04, 0xdf, 0x00, 0x03, 0x00, 0x07, - 0x00, 0x21, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x11, - 0x23, 0x11, 0x01, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x02, 0x82, 0x36, 0x36, 0x36, 0xfe, - 0x41, 0x01, 0x40, 0x3d, 0x3c, 0xb0, 0x71, 0x71, 0xaf, 0x3c, 0x3c, 0x3f, - 0x01, 0x01, 0x40, 0x3c, 0x3d, 0xaf, 0x71, 0x71, 0xaf, 0x3c, 0x3c, 0x40, - 0x35, 0x01, 0x39, 0x36, 0x35, 0x9b, 0x63, 0x63, 0x9c, 0x36, 0x35, 0x39, - 0x01, 0x01, 0x38, 0x35, 0x36, 0x9a, 0x64, 0x64, 0x9c, 0x35, 0x36, 0x39, - 0x03, 0x8e, 0x01, 0x51, 0xfe, 0xaf, 0xfb, 0xc2, 0x01, 0x51, 0xfe, 0xaf, - 0x02, 0xe2, 0x2a, 0x69, 0xc3, 0x4b, 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, - 0x68, 0x2a, 0x69, 0xc3, 0x4b, 0x4b, 0x5a, 0x5b, 0x4b, 0x4b, 0xc3, 0x92, - 0x2a, 0x5b, 0xaf, 0x44, 0x44, 0x54, 0x54, 0x44, 0x44, 0xaf, 0x5b, 0x2a, - 0x5c, 0xae, 0x44, 0x45, 0x53, 0x53, 0x44, 0x44, 0xaf, 0x00, 0x00, 0x03, - 0x00, 0x54, 0xff, 0xeb, 0x04, 0x7e, 0x07, 0x15, 0x00, 0x62, 0x00, 0x86, - 0x00, 0x93, 0x00, 0x00, 0x41, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x11, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x37, 0x23, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, - 0x17, 0x33, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x05, 0x17, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x27, 0x23, 0x07, 0x06, 0x06, 0x03, 0x61, 0x01, 0x30, - 0x48, 0x1a, 0x19, 0x22, 0x0a, 0x09, 0x08, 0x15, 0x1d, 0x1a, 0x55, 0x41, - 0x2e, 0x45, 0x19, 0x19, 0x20, 0x0a, 0x0a, 0x08, 0x01, 0x02, 0x32, 0x02, - 0x01, 0x08, 0x0a, 0x0a, 0x20, 0x19, 0x19, 0x45, 0x2e, 0x3c, 0x54, 0x19, - 0x22, 0x17, 0x08, 0x0a, 0x09, 0x21, 0x1a, 0x1a, 0x48, 0x30, 0x01, 0x3a, - 0x57, 0x1f, 0x20, 0x29, 0x0c, 0x0d, 0x0b, 0x1e, 0x21, 0x1e, 0x6a, 0x51, - 0x37, 0x53, 0x1f, 0x1e, 0x29, 0x0d, 0x0d, 0x29, 0x1f, 0x1e, 0x53, 0x37, - 0x53, 0x6b, 0x20, 0x1f, 0x1b, 0x01, 0x0a, 0x0c, 0x0d, 0x29, 0x1f, 0x20, - 0x57, 0x27, 0x0f, 0x24, 0x38, 0x18, 0x18, 0x2d, 0x18, 0x19, 0x37, 0x23, - 0x2c, 0x43, 0x16, 0x17, 0x16, 0x01, 0x02, 0x32, 0x02, 0x02, 0x0c, 0x0e, - 0x0e, 0x2f, 0x25, 0x1f, 0x34, 0x18, 0x17, 0x2d, 0x19, 0x19, 0x3a, 0x23, - 0x12, 0xfe, 0x7a, 0x14, 0x16, 0x1f, 0x0b, 0x0a, 0x0a, 0x01, 0x02, 0x31, - 0x03, 0x01, 0x14, 0x05, 0xae, 0x36, 0x02, 0x27, 0x1f, 0x1f, 0x51, 0x2b, - 0x2b, 0x58, 0x26, 0xfd, 0xc1, 0x38, 0x96, 0x3d, 0x3a, 0x47, 0x25, 0x1f, - 0x1f, 0x50, 0x2b, 0x2b, 0x55, 0x23, 0x02, 0x09, 0xfd, 0xf7, 0x24, 0x54, - 0x2b, 0x2b, 0x50, 0x1f, 0x1f, 0x25, 0x3f, 0x33, 0x46, 0x98, 0x3c, 0x02, - 0x3f, 0x26, 0x58, 0x2b, 0x2b, 0x51, 0x1f, 0x1f, 0x27, 0x02, 0x36, 0x02, - 0x2a, 0x22, 0x22, 0x5a, 0x31, 0x31, 0x67, 0x2f, 0xfd, 0xc1, 0x46, 0xa9, - 0x43, 0x3c, 0x54, 0x27, 0x21, 0x21, 0x56, 0x30, 0x30, 0x56, 0x21, 0x21, - 0x27, 0x55, 0x44, 0x42, 0xa3, 0x44, 0x02, 0x3f, 0x2f, 0x67, 0x31, 0x31, - 0x5a, 0x22, 0x22, 0x2a, 0xa5, 0x01, 0x1e, 0x16, 0x16, 0x32, 0x16, 0x15, - 0x1c, 0x2a, 0x21, 0x21, 0x51, 0x27, 0x1a, 0x12, 0x1d, 0x40, 0x1b, 0x1b, - 0x24, 0x1b, 0x14, 0x15, 0x30, 0x14, 0x15, 0x1d, 0x01, 0xc1, 0x26, 0x0d, - 0x27, 0x17, 0x16, 0x32, 0x18, 0x66, 0x63, 0x29, 0x43, 0x00, 0x00, 0x03, - 0x00, 0x4b, 0xff, 0xeb, 0x04, 0x93, 0x05, 0xe9, 0x00, 0x56, 0x00, 0x7a, - 0x00, 0x87, 0x00, 0x00, 0x41, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x03, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x25, 0x33, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x33, 0x35, 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x17, 0x17, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x27, 0x23, 0x07, 0x06, 0x06, 0x03, 0x70, 0x47, 0x5c, - 0x1b, 0x1a, 0x15, 0x01, 0x02, 0x15, 0x25, 0x1e, 0x53, 0x3e, 0x2f, 0x46, - 0x1a, 0x1a, 0x22, 0x0a, 0x0b, 0x08, 0x01, 0x01, 0x33, 0x01, 0x01, 0x08, - 0x0a, 0x0b, 0x22, 0x1a, 0x1a, 0x47, 0x2f, 0x46, 0x5a, 0x1a, 0x1b, 0x14, - 0x01, 0x16, 0x1b, 0x1a, 0x5c, 0x47, 0x55, 0x70, 0x21, 0x22, 0x1b, 0x01, - 0x01, 0x1b, 0x21, 0x20, 0x6f, 0x54, 0x37, 0x55, 0x20, 0x1f, 0x2b, 0x0e, - 0x0d, 0x2b, 0x20, 0x1f, 0x55, 0x38, 0x55, 0x6e, 0x21, 0x21, 0x1b, 0x01, - 0x1b, 0x21, 0x21, 0x70, 0xfd, 0xec, 0x33, 0x01, 0x02, 0x10, 0x10, 0x10, - 0x34, 0x27, 0x21, 0x39, 0x1a, 0x1a, 0x32, 0x1c, 0x1b, 0x3e, 0x26, 0x12, - 0x0f, 0x26, 0x3d, 0x1b, 0x1b, 0x32, 0x1a, 0x1b, 0x3c, 0x25, 0x2e, 0x48, - 0x18, 0x19, 0x19, 0x7a, 0x15, 0x17, 0x22, 0x0b, 0x0a, 0x0b, 0x01, 0x02, - 0x32, 0x02, 0x01, 0x18, 0x04, 0x49, 0x36, 0x03, 0x41, 0x31, 0x32, 0x79, - 0x3a, 0xfe, 0xc2, 0x3d, 0x84, 0x38, 0x2e, 0x33, 0x1f, 0x1b, 0x1a, 0x45, - 0x27, 0x26, 0x50, 0x24, 0x01, 0x1c, 0xfe, 0xe4, 0x24, 0x50, 0x26, 0x27, - 0x45, 0x1a, 0x1b, 0x1f, 0x43, 0x34, 0x33, 0x7a, 0x36, 0x01, 0x3e, 0x3a, - 0x79, 0x32, 0x31, 0x41, 0x03, 0x36, 0x03, 0x48, 0x38, 0x38, 0x8d, 0x48, - 0xfe, 0xc2, 0x44, 0x8e, 0x3a, 0x3a, 0x4a, 0x21, 0x1d, 0x1c, 0x4d, 0x2c, - 0x2c, 0x4d, 0x1c, 0x1d, 0x21, 0x4a, 0x3a, 0x3a, 0x8e, 0x44, 0x01, 0x3e, - 0x48, 0x8d, 0x38, 0x38, 0x48, 0xa5, 0x12, 0x20, 0x41, 0x1b, 0x1a, 0x21, - 0x1b, 0x14, 0x15, 0x30, 0x14, 0x15, 0x1d, 0x01, 0x2c, 0x01, 0x1e, 0x16, - 0x16, 0x32, 0x16, 0x15, 0x1c, 0x28, 0x20, 0x20, 0x52, 0x2a, 0xda, 0x26, - 0x0e, 0x29, 0x18, 0x15, 0x2f, 0x18, 0x66, 0x63, 0x2a, 0x42, 0x00, 0x02, - 0x00, 0x7b, 0xff, 0xec, 0x04, 0x80, 0x06, 0xe1, 0x00, 0x07, 0x00, 0x46, - 0x00, 0x00, 0x41, 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x27, 0x01, 0x23, - 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, - 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x01, 0x8a, 0xdc, 0x30, 0xe7, 0x01, 0x01, 0x01, 0x30, 0x03, 0x13, - 0x17, 0x1a, 0x55, 0x40, 0x2e, 0x44, 0x18, 0x18, 0x1f, 0x08, 0x09, 0x07, - 0x02, 0x31, 0x02, 0x01, 0x06, 0x09, 0x09, 0x1e, 0x18, 0x18, 0x44, 0x2e, - 0x44, 0x53, 0x1a, 0x18, 0x11, 0x02, 0x31, 0x02, 0x14, 0x1e, 0x1d, 0x6d, - 0x53, 0x35, 0x50, 0x1d, 0x1d, 0x28, 0x0c, 0x0c, 0x28, 0x1e, 0x1d, 0x50, - 0x35, 0x53, 0x6f, 0x1c, 0x1b, 0x16, 0x06, 0xe1, 0x38, 0x67, 0x67, 0x38, - 0xfe, 0xcf, 0xfb, 0xfd, 0x35, 0x90, 0x39, 0x41, 0x4c, 0x28, 0x21, 0x20, - 0x54, 0x2c, 0x2b, 0x55, 0x22, 0x04, 0x03, 0xfb, 0xfd, 0x22, 0x54, 0x2c, - 0x2c, 0x54, 0x20, 0x21, 0x28, 0x4f, 0x40, 0x3c, 0x8c, 0x34, 0x04, 0x03, - 0xfb, 0xfd, 0x40, 0x95, 0x48, 0x47, 0x5d, 0x26, 0x21, 0x20, 0x54, 0x2f, - 0x2f, 0x54, 0x20, 0x21, 0x26, 0x61, 0x47, 0x44, 0x96, 0x3f, 0x00, 0x02, - 0x00, 0x45, 0xff, 0xeb, 0x04, 0x92, 0x05, 0xb0, 0x00, 0x07, 0x00, 0x40, - 0x00, 0x00, 0x41, 0x07, 0x33, 0x15, 0x33, 0x35, 0x21, 0x27, 0x01, 0x23, - 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x03, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x01, 0x56, 0x02, 0xfb, 0x32, - 0x01, 0x08, 0x02, 0x01, 0x0a, 0x33, 0x01, 0x01, 0x15, 0x1a, 0x1a, 0x5b, - 0x46, 0x45, 0x5a, 0x1a, 0x1b, 0x18, 0x01, 0x33, 0x01, 0x01, 0x15, 0x1a, - 0x1a, 0x5b, 0x46, 0x45, 0x5a, 0x19, 0x1c, 0x17, 0x02, 0x32, 0x02, 0x1c, - 0x22, 0x26, 0x6e, 0x4f, 0x37, 0x56, 0x20, 0x20, 0x2b, 0x0d, 0x0d, 0x2c, - 0x20, 0x20, 0x56, 0x38, 0x56, 0x73, 0x1e, 0x1f, 0x1a, 0x05, 0xb0, 0x38, - 0x85, 0x85, 0x38, 0xfe, 0x8a, 0xfd, 0x5f, 0x37, 0x83, 0x39, 0x39, 0x4c, - 0x49, 0x37, 0x36, 0x83, 0x3b, 0x02, 0xa5, 0xfd, 0x5f, 0x37, 0x83, 0x39, - 0x39, 0x4c, 0x49, 0x36, 0x38, 0x89, 0x38, 0x02, 0xa1, 0xfd, 0x5f, 0x46, - 0x97, 0x3f, 0x47, 0x4b, 0x26, 0x20, 0x20, 0x55, 0x2f, 0x2f, 0x55, 0x20, - 0x20, 0x26, 0x59, 0x40, 0x42, 0x91, 0x42, 0x00, 0x00, 0x01, 0x00, 0xb4, - 0xfe, 0xa1, 0x04, 0x53, 0x05, 0xc5, 0x00, 0x2a, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x11, 0x02, 0xb7, 0x29, 0x7e, 0xa1, 0x30, 0x2e, - 0x27, 0x2d, 0x32, 0x31, 0xaa, 0x7a, 0x5e, 0x87, 0x2e, 0x2d, 0x35, 0x0c, - 0x34, 0x05, 0x3d, 0x36, 0x37, 0x9f, 0x67, 0x87, 0xbd, 0x3b, 0x37, 0x34, - 0x2f, 0x31, 0x35, 0xb6, 0x83, 0xfe, 0xa1, 0x01, 0x80, 0x03, 0x8b, 0x64, - 0x60, 0xe5, 0x63, 0x50, 0x64, 0xde, 0x62, 0x60, 0x80, 0x42, 0x38, 0x38, - 0x95, 0x54, 0x61, 0xa9, 0x3f, 0x3f, 0x49, 0x86, 0x6c, 0x65, 0xf6, 0x6f, - 0x4e, 0x71, 0xfc, 0x60, 0x69, 0x93, 0x06, 0xfe, 0xb5, 0x00, 0x00, 0x01, - 0x00, 0xdb, 0xfe, 0xa1, 0x04, 0x27, 0x04, 0x4e, 0x00, 0x2d, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x11, 0x02, 0xce, - 0x2e, 0x66, 0x95, 0x31, 0x31, 0x2f, 0x01, 0x01, 0x2f, 0x31, 0x30, 0x94, - 0x66, 0x4b, 0x7a, 0x2c, 0x2c, 0x33, 0x03, 0x36, 0x03, 0x3b, 0x33, 0x34, - 0x8e, 0x56, 0x4b, 0x7d, 0x31, 0x32, 0x4b, 0x19, 0x1a, 0x19, 0x01, 0x01, - 0x38, 0x38, 0x37, 0xa6, 0x6f, 0xfe, 0xa1, 0x01, 0x80, 0x03, 0x53, 0x43, - 0x43, 0xad, 0x5e, 0x2a, 0x5a, 0xaf, 0x45, 0x44, 0x54, 0x2f, 0x2b, 0x2c, - 0x79, 0x49, 0x55, 0x8d, 0x32, 0x32, 0x38, 0x2a, 0x25, 0x26, 0x67, 0x3c, - 0x3c, 0x84, 0x44, 0x2a, 0x68, 0xbf, 0x4a, 0x4a, 0x5c, 0x05, 0xfe, 0xb5, - 0x00, 0x01, 0x00, 0xb0, 0x00, 0x00, 0x04, 0x76, 0x05, 0x3e, 0x00, 0x13, - 0x00, 0x00, 0x41, 0x13, 0x05, 0x37, 0x25, 0x13, 0x23, 0x03, 0x25, 0x07, - 0x05, 0x03, 0x25, 0x07, 0x05, 0x03, 0x33, 0x13, 0x05, 0x37, 0x02, 0x3e, - 0xed, 0x01, 0x20, 0x2b, 0xfe, 0xdb, 0xfb, 0x63, 0xda, 0xfe, 0xdd, 0x28, - 0x01, 0x22, 0xeb, 0xfe, 0xdb, 0x26, 0x01, 0x21, 0xe1, 0x66, 0xbf, 0x01, - 0x23, 0x27, 0x01, 0xa3, 0x01, 0xa4, 0xaa, 0x43, 0xab, 0x01, 0xb3, 0xfe, - 0x7e, 0xab, 0x46, 0xab, 0xfe, 0x5c, 0xab, 0x44, 0xab, 0xfe, 0x72, 0x01, - 0x5d, 0xaa, 0x44, 0x00, 0x00, 0x01, 0x00, 0x9f, 0x04, 0xd9, 0x02, 0xb7, - 0x05, 0xf2, 0x00, 0x07, 0x00, 0x00, 0x53, 0x21, 0x35, 0x23, 0x15, 0x21, - 0x15, 0x33, 0xd9, 0x01, 0xde, 0x37, 0xfe, 0x1f, 0x3a, 0x05, 0x52, 0xa0, - 0x6c, 0xad, 0x00, 0x01, 0x00, 0xea, 0x05, 0x17, 0x03, 0xa4, 0x06, 0x15, - 0x00, 0x23, 0x00, 0x00, 0x53, 0x23, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, - 0x33, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0xf8, 0x0e, 0x11, 0x2c, 0x4e, 0x23, 0x23, 0x43, - 0x22, 0x22, 0x49, 0x29, 0x29, 0x43, 0x18, 0x18, 0x1c, 0x01, 0x37, 0x02, - 0x24, 0x1f, 0x20, 0x55, 0x32, 0x2c, 0x4b, 0x23, 0x23, 0x43, 0x23, 0x23, - 0x4d, 0x05, 0x51, 0x2c, 0x01, 0x1d, 0x15, 0x14, 0x30, 0x15, 0x14, 0x1b, - 0x1c, 0x18, 0x18, 0x43, 0x28, 0x12, 0x1a, 0x32, 0x54, 0x1e, 0x1e, 0x22, - 0x1c, 0x15, 0x16, 0x33, 0x15, 0x16, 0x1e, 0x00, 0x00, 0x01, 0x01, 0x31, - 0x05, 0x45, 0x01, 0xd2, 0x06, 0x6a, 0x00, 0x05, 0x00, 0x00, 0x41, 0x17, - 0x37, 0x27, 0x35, 0x23, 0x01, 0x31, 0x7d, 0x24, 0x40, 0x61, 0x05, 0xdc, - 0x97, 0x1c, 0x7e, 0x8b, 0x00, 0x01, 0x01, 0x83, 0x05, 0x45, 0x02, 0x24, - 0x06, 0x6a, 0x00, 0x05, 0x00, 0x00, 0x41, 0x37, 0x35, 0x23, 0x15, 0x07, - 0x01, 0xa7, 0x7d, 0x61, 0x40, 0x05, 0x45, 0x97, 0x8e, 0x8b, 0x7e, 0x00, - 0x00, 0x08, 0xfe, 0xe7, 0xfe, 0xc4, 0x06, 0x83, 0x05, 0xaf, 0x00, 0x13, - 0x00, 0x27, 0x00, 0x3b, 0x00, 0x4f, 0x00, 0x63, 0x00, 0x77, 0x00, 0x8b, - 0x00, 0x9f, 0x00, 0x00, 0x41, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x13, 0x33, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x03, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x01, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0x33, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x03, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, - 0x13, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x01, 0xd4, 0x71, 0x05, - 0x2c, 0x30, 0x30, 0x2e, 0x05, 0x70, 0x03, 0x22, 0x1b, 0x1c, 0x4b, 0x2c, - 0x2c, 0x4b, 0x1b, 0x1c, 0x21, 0x02, 0x4c, 0x72, 0x05, 0x2b, 0x30, 0x31, - 0x2d, 0x05, 0x71, 0x03, 0x22, 0x1c, 0x1c, 0x4b, 0x2c, 0x2c, 0x4a, 0x1c, - 0x1c, 0x21, 0xb8, 0x71, 0x05, 0x2c, 0x30, 0x31, 0x2d, 0x05, 0x70, 0x03, - 0x22, 0x1b, 0x1c, 0x4b, 0x2c, 0x2c, 0x4a, 0x1c, 0x1c, 0x21, 0xc8, 0x71, - 0x05, 0x2c, 0x30, 0x31, 0x2d, 0x05, 0x70, 0x03, 0x22, 0x1b, 0x1c, 0x4b, - 0x2c, 0x2c, 0x4a, 0x1c, 0x1c, 0x21, 0xfd, 0xbd, 0x71, 0x05, 0x2c, 0x30, - 0x30, 0x2e, 0x05, 0x70, 0x03, 0x22, 0x1b, 0x1c, 0x4b, 0x2c, 0x2c, 0x4b, - 0x1b, 0x1c, 0x21, 0xfd, 0xbb, 0x72, 0x05, 0x2c, 0x30, 0x30, 0x2e, 0x05, - 0x70, 0x03, 0x22, 0x1b, 0x1c, 0x4b, 0x2c, 0x2c, 0x4b, 0x1b, 0x1c, 0x22, - 0xb3, 0x71, 0x05, 0x2c, 0x30, 0x31, 0x2d, 0x05, 0x70, 0x03, 0x22, 0x1b, - 0x1c, 0x4b, 0x2c, 0x2c, 0x4a, 0x1c, 0x1c, 0x21, 0xa3, 0x72, 0x05, 0x2b, - 0x30, 0x31, 0x2d, 0x05, 0x71, 0x03, 0x22, 0x1c, 0x1c, 0x4b, 0x2c, 0x2c, - 0x4a, 0x1c, 0x1c, 0x21, 0x04, 0xf3, 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, - 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x46, 0xfe, 0xbf, 0x2b, 0x3a, 0x39, - 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x46, 0xfd, 0xdd, - 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, - 0x46, 0xfd, 0xcd, 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, - 0x1a, 0x18, 0x18, 0x46, 0xfe, 0xb8, 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, - 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x46, 0x04, 0xee, 0x2b, 0x3a, 0x39, - 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x46, 0xfd, 0xdd, - 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, 0x1a, 0x18, 0x18, - 0x46, 0xfd, 0xcd, 0x2b, 0x3a, 0x39, 0x2c, 0x2c, 0x46, 0x18, 0x18, 0x1a, - 0x1a, 0x18, 0x18, 0x46, 0x00, 0x08, 0xfe, 0xe0, 0xfe, 0x63, 0x06, 0x20, - 0x05, 0xc6, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0e, 0x00, 0x13, 0x00, 0x18, - 0x00, 0x1d, 0x00, 0x22, 0x00, 0x27, 0x00, 0x00, 0x45, 0x23, 0x03, 0x33, - 0x13, 0x03, 0x33, 0x13, 0x23, 0x03, 0x01, 0x15, 0x05, 0x35, 0x25, 0x05, - 0x35, 0x25, 0x15, 0x05, 0x01, 0x17, 0x25, 0x27, 0x05, 0x01, 0x27, 0x05, - 0x17, 0x25, 0x03, 0x37, 0x03, 0x07, 0x13, 0x01, 0x07, 0x13, 0x37, 0x03, - 0x02, 0xe3, 0x89, 0x46, 0x60, 0x7a, 0xce, 0x88, 0x46, 0x60, 0x7a, 0x02, - 0xb2, 0x01, 0x5a, 0xfe, 0xb3, 0xfb, 0x67, 0xfe, 0xa6, 0x01, 0x4d, 0x03, - 0xa9, 0x61, 0x01, 0x26, 0x44, 0xfe, 0xbf, 0xfd, 0x52, 0x61, 0xfe, 0xda, - 0x45, 0x01, 0x40, 0x8a, 0x62, 0xc6, 0x41, 0x94, 0x03, 0xd3, 0x61, 0xc5, - 0x42, 0x95, 0x3c, 0xfe, 0x9f, 0x01, 0x53, 0x04, 0xb0, 0x01, 0x60, 0xfe, - 0xae, 0xfe, 0x03, 0x8b, 0x47, 0x62, 0x7c, 0xd2, 0x8b, 0x47, 0x62, 0x7c, - 0x02, 0x45, 0x63, 0xc8, 0x44, 0x99, 0xfc, 0x1b, 0x63, 0xc8, 0x45, 0x99, - 0x03, 0x58, 0x62, 0x01, 0x2b, 0x45, 0xfe, 0xba, 0xfd, 0x43, 0x63, 0xfe, - 0xd5, 0x47, 0x01, 0x45, 0x00, 0x03, 0x00, 0xf2, 0x00, 0x00, 0x04, 0x64, - 0x05, 0xb0, 0x00, 0x03, 0x00, 0x14, 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, - 0x07, 0x01, 0x25, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, 0x11, 0x11, 0x21, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0xd0, - 0xfe, 0xf1, 0x28, 0x01, 0x0f, 0xfd, 0x80, 0x01, 0x86, 0x5c, 0xa0, 0x3b, - 0x3b, 0x44, 0x43, 0x3b, 0x3b, 0xa0, 0x5d, 0xfe, 0x44, 0x36, 0x01, 0x86, - 0x51, 0x8d, 0x34, 0x33, 0x3b, 0x3d, 0x34, 0x34, 0x8c, 0x4f, 0x02, 0x1d, - 0x01, 0x61, 0x23, 0xfe, 0x9f, 0x6d, 0x01, 0x3b, 0x36, 0x36, 0x98, 0x60, - 0x60, 0x9b, 0x38, 0x37, 0x3d, 0x02, 0xfa, 0x50, 0x02, 0x9d, 0x02, 0xdd, - 0x02, 0x36, 0x30, 0x31, 0x88, 0x54, 0x53, 0x84, 0x2e, 0x2f, 0x33, 0x01, - 0x00, 0x03, 0x00, 0xdc, 0xfe, 0x60, 0x04, 0x19, 0x04, 0x4e, 0x00, 0x03, - 0x00, 0x21, 0x00, 0x3b, 0x00, 0x00, 0x45, 0x03, 0x07, 0x13, 0x13, 0x35, - 0x26, 0x02, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x35, 0x23, 0x11, 0x33, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0xb9, 0xf7, 0x2d, 0xf8, 0x8c, - 0x02, 0x51, 0x5e, 0x2f, 0x7d, 0x4f, 0x34, 0x65, 0x2d, 0x2d, 0x4d, 0x1b, - 0x36, 0x36, 0x1c, 0x50, 0x2e, 0x2e, 0x64, 0x31, 0x6c, 0x9d, 0x34, 0x39, - 0x34, 0x37, 0x02, 0x29, 0x32, 0x2b, 0x89, 0x61, 0x35, 0x6c, 0x2f, 0x2f, - 0x4b, 0x14, 0x13, 0x45, 0x2e, 0x2e, 0x6d, 0x3b, 0x47, 0x6e, 0x29, 0x52, - 0x44, 0x3f, 0x01, 0x59, 0x20, 0xfe, 0xa6, 0x02, 0x73, 0x15, 0x80, 0x01, - 0x01, 0x50, 0x27, 0x2e, 0x1c, 0x1a, 0x1a, 0x4a, 0x2e, 0xb4, 0xfa, 0x26, - 0x02, 0x3e, 0x2b, 0x42, 0x16, 0x17, 0x18, 0x59, 0x49, 0x51, 0xd0, 0x79, - 0x15, 0x5b, 0xbc, 0x49, 0x41, 0x50, 0x1d, 0x1c, 0x1c, 0x53, 0x36, 0x02, - 0x16, 0x3a, 0x5f, 0x22, 0x22, 0x25, 0x2b, 0x24, 0x4a, 0xe7, 0x00, 0x01, - 0x00, 0xd0, 0x00, 0x00, 0x04, 0x3a, 0x07, 0x24, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x04, 0x3a, 0x36, 0xfc, - 0xcc, 0x36, 0x05, 0x7a, 0x01, 0xaa, 0xfe, 0x8c, 0xfa, 0x50, 0x05, 0x7a, - 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x04, 0x17, 0x05, 0xae, 0x00, 0x07, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x04, 0x17, - 0x3b, 0xfc, 0xeb, 0x3b, 0x04, 0x03, 0x01, 0xab, 0xfe, 0x8c, 0xfb, 0xc6, - 0x04, 0x03, 0x00, 0x01, 0x00, 0xf0, 0xfe, 0xfa, 0x04, 0x4a, 0x05, 0xb0, - 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x33, 0x11, 0x33, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x23, 0x11, 0x04, 0x4a, 0xfc, 0xa6, 0x36, 0xe6, 0x74, 0xbb, 0x42, 0x42, - 0x47, 0x31, 0x30, 0x31, 0x91, 0x5f, 0x6a, 0xa4, 0x38, 0x38, 0x3a, 0x4d, - 0x48, 0x49, 0xd0, 0x82, 0xe6, 0x05, 0x7a, 0x36, 0xfa, 0x50, 0x03, 0x12, - 0x01, 0x49, 0x42, 0x43, 0xbc, 0x75, 0x58, 0xaa, 0x44, 0x44, 0x57, 0x04, - 0x33, 0x04, 0x5f, 0x4b, 0x4a, 0xbd, 0x63, 0x83, 0xd1, 0x49, 0x48, 0x4f, - 0x01, 0x02, 0x33, 0x00, 0x00, 0x01, 0x00, 0xde, 0xff, 0x01, 0x04, 0x31, - 0x04, 0x3a, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x33, 0x11, - 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x23, 0x11, 0x04, 0x1a, 0xfc, 0xc4, 0x3b, 0xcc, 0x5c, 0xc0, - 0x50, 0x56, 0x55, 0x03, 0x02, 0x3e, 0x32, 0x33, 0x84, 0x49, 0x11, 0x4e, - 0x94, 0x39, 0x39, 0x45, 0x01, 0x02, 0x65, 0x52, 0x53, 0xd1, 0x6e, 0xcc, - 0x04, 0x03, 0x37, 0xfb, 0xc6, 0x02, 0x29, 0x01, 0x27, 0x2f, 0x33, 0x97, - 0x67, 0x50, 0x7d, 0x2e, 0x2f, 0x3c, 0x10, 0x2a, 0x10, 0x45, 0x34, 0x33, - 0x8c, 0x58, 0x7d, 0xaa, 0x34, 0x34, 0x2d, 0x01, 0x01, 0xa5, 0x00, 0x01, - 0x01, 0x17, 0x00, 0x00, 0x04, 0xbf, 0x05, 0xb0, 0x00, 0x14, 0x00, 0x00, - 0x41, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01, 0x33, 0x01, 0x04, 0x78, 0x45, - 0xfe, 0x66, 0x6d, 0x36, 0xab, 0x34, 0x34, 0xab, 0x36, 0x5d, 0x01, 0xf2, - 0x44, 0xfe, 0x00, 0x05, 0xb0, 0xfd, 0x56, 0x01, 0x33, 0xfe, 0xcd, 0x02, - 0xaa, 0xfa, 0x50, 0x02, 0xd1, 0xfe, 0xbc, 0x01, 0x44, 0xfd, 0x2f, 0x02, - 0xe2, 0x00, 0x00, 0x01, 0x01, 0x04, 0x00, 0x00, 0x04, 0x51, 0x04, 0x3a, - 0x00, 0x14, 0x00, 0x00, 0x41, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x23, - 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01, 0x33, - 0x01, 0x04, 0x12, 0x4e, 0xfe, 0xc5, 0x6d, 0x37, 0xaa, 0x37, 0x37, 0xaa, - 0x37, 0x63, 0x01, 0x81, 0x51, 0xfe, 0x63, 0x04, 0x3a, 0xfe, 0x0c, 0x01, - 0x0c, 0xfe, 0xf4, 0x01, 0xf4, 0xfb, 0xc6, 0x02, 0x11, 0xfe, 0xe9, 0x01, - 0x17, 0xfd, 0xef, 0x02, 0x28, 0x00, 0x00, 0x01, 0x00, 0x46, 0x00, 0x00, - 0x04, 0x92, 0x05, 0xb0, 0x00, 0x0e, 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, - 0x01, 0x23, 0x01, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x02, - 0x6d, 0x01, 0xe8, 0x3d, 0xfe, 0x0f, 0x01, 0xd0, 0x3c, 0xfe, 0x48, 0xa2, - 0xfe, 0x6b, 0x01, 0x64, 0x31, 0x02, 0xc7, 0xfd, 0x39, 0x02, 0xd8, 0x02, - 0xd8, 0xfd, 0x4c, 0x02, 0xb4, 0x36, 0xfa, 0x86, 0x02, 0xc7, 0x00, 0x01, - 0x00, 0x79, 0x00, 0x00, 0x04, 0x91, 0x04, 0x3a, 0x00, 0x0e, 0x00, 0x00, - 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x21, 0x15, 0x21, - 0x11, 0x33, 0x11, 0x02, 0x9b, 0x01, 0xac, 0x4a, 0xfe, 0x40, 0x01, 0x8b, - 0x48, 0xfe, 0x92, 0xad, 0xfe, 0x80, 0x01, 0x4c, 0x34, 0x02, 0x11, 0xfd, - 0xef, 0x02, 0x27, 0x02, 0x13, 0xfe, 0x0c, 0x01, 0xf4, 0x36, 0xfb, 0xfc, - 0x02, 0x11, 0x00, 0x01, 0x00, 0x43, 0x00, 0x00, 0x04, 0xb0, 0x05, 0xb0, - 0x00, 0x0d, 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, 0x72, 0x2f, 0x2f, 0x02, 0x38, 0x2f, - 0x01, 0xd7, 0xfd, 0xfa, 0x03, 0x08, 0x02, 0xa8, 0xfa, 0x50, 0x02, 0xd2, - 0xfd, 0x2e, 0x05, 0x7a, 0x36, 0xfd, 0x58, 0x00, 0x00, 0x01, 0x00, 0x5d, - 0x00, 0x00, 0x04, 0xa4, 0x04, 0x3a, 0x00, 0x0d, 0x00, 0x00, 0x53, 0x11, - 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x91, 0x34, 0x34, 0x02, 0x3c, 0x35, 0x01, 0xa2, 0xfe, 0x29, 0x02, 0x47, - 0x01, 0xf3, 0xfb, 0xc6, 0x02, 0x11, 0xfd, 0xef, 0x04, 0x03, 0x37, 0xfe, - 0x0d, 0x00, 0x00, 0x01, 0x00, 0x65, 0xfe, 0xf9, 0x04, 0x9e, 0x05, 0xb0, - 0x00, 0x2f, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x33, 0x11, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x02, 0xd5, 0xfd, 0x90, 0x2f, 0x02, 0x12, 0x2f, - 0x76, 0x3e, 0x5b, 0x20, 0x20, 0x27, 0x0b, 0x0b, 0x08, 0x05, 0x08, 0x09, - 0x1e, 0x19, 0x19, 0x48, 0x32, 0x01, 0x3b, 0x56, 0x1f, 0x1f, 0x27, 0x0b, - 0x0b, 0x08, 0x0a, 0x0d, 0x0e, 0x30, 0x25, 0x26, 0x6b, 0x48, 0x03, 0x46, - 0x02, 0x6a, 0xfa, 0x50, 0x05, 0x7a, 0xfa, 0x86, 0x03, 0x11, 0x01, 0x32, - 0x29, 0x2a, 0x6a, 0x38, 0x39, 0x70, 0x2f, 0x24, 0x63, 0x35, 0x35, 0x68, - 0x2a, 0x2a, 0x36, 0x02, 0x33, 0x03, 0x38, 0x2d, 0x2d, 0x70, 0x3b, 0x3b, - 0x70, 0x2d, 0x38, 0x80, 0x3e, 0x3e, 0x73, 0x2c, 0x2c, 0x35, 0x01, 0x00, - 0x00, 0x01, 0x00, 0x95, 0xff, 0x01, 0x04, 0x66, 0x04, 0x3a, 0x00, 0x23, - 0x00, 0x00, 0x73, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, - 0x11, 0x21, 0x95, 0x30, 0x01, 0xab, 0x31, 0x65, 0x53, 0x73, 0x23, 0x23, - 0x1f, 0x01, 0x01, 0x16, 0x19, 0x19, 0x51, 0x3c, 0x0f, 0x43, 0x61, 0x1f, - 0x1e, 0x1c, 0x01, 0x01, 0x26, 0x29, 0x2a, 0x85, 0x60, 0x65, 0xfd, 0xf4, - 0x04, 0x03, 0xfb, 0xfd, 0x02, 0x29, 0x01, 0x44, 0x36, 0x37, 0x8c, 0x4a, - 0x39, 0x75, 0x34, 0x34, 0x4e, 0x12, 0x2a, 0x12, 0x57, 0x39, 0x39, 0x84, - 0x41, 0x56, 0xa0, 0x3e, 0x3d, 0x4b, 0x01, 0x01, 0xdc, 0x00, 0x00, 0x02, - 0x00, 0x71, 0xff, 0xea, 0x04, 0x47, 0x05, 0xc5, 0x00, 0x4d, 0x00, 0x67, - 0x00, 0x00, 0x45, 0x35, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x11, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x16, 0x16, 0x01, 0x11, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x04, 0x47, - 0x40, 0x71, 0x32, 0x39, 0x52, 0x1b, 0x1a, 0x1a, 0x1b, 0x20, 0x22, 0x74, - 0x5a, 0x59, 0x71, 0x1f, 0x22, 0x19, 0x01, 0x25, 0x23, 0x23, 0x65, 0x42, - 0x28, 0x5e, 0x37, 0x50, 0x7b, 0x2d, 0x2e, 0x3f, 0x13, 0x14, 0x12, 0x0c, - 0x0e, 0x0e, 0x2d, 0x22, 0x21, 0x5a, 0x3b, 0x03, 0x45, 0x69, 0x27, 0x27, - 0x35, 0x10, 0x10, 0x0f, 0x14, 0x16, 0x16, 0x48, 0x34, 0x34, 0x8a, 0x5a, - 0x48, 0x77, 0x32, 0x3c, 0x87, 0xfe, 0x2d, 0x12, 0x1a, 0x1a, 0x5b, 0x4c, - 0x4b, 0x5c, 0x1c, 0x1e, 0x15, 0x01, 0x19, 0x1a, 0x1a, 0x52, 0x39, 0x41, - 0x63, 0x21, 0x22, 0x23, 0x16, 0x35, 0x01, 0x1a, 0x17, 0x31, 0x85, 0x4c, - 0x4c, 0xa2, 0x4e, 0x01, 0x1c, 0x44, 0xb9, 0x52, 0x50, 0x6d, 0x6e, 0x4b, - 0x51, 0xbc, 0x46, 0xfe, 0xe6, 0x59, 0xa8, 0x4a, 0x4b, 0x7e, 0x2e, 0x16, - 0x18, 0x3d, 0x33, 0x32, 0x84, 0x48, 0x47, 0x90, 0x3f, 0xf4, 0x2f, 0x6e, - 0x37, 0x36, 0x67, 0x28, 0x28, 0x33, 0x02, 0x36, 0x03, 0x35, 0x2c, 0x2c, - 0x70, 0x3d, 0x3e, 0x7c, 0x37, 0xf2, 0x48, 0xa0, 0x4d, 0x4e, 0x8c, 0x35, - 0x36, 0x40, 0x24, 0x20, 0x20, 0x23, 0x02, 0xa3, 0x01, 0x1d, 0x37, 0xa8, - 0x4a, 0x47, 0x65, 0x5d, 0x41, 0x4f, 0xac, 0x3c, 0xfe, 0xe3, 0x4a, 0x9b, - 0x49, 0x49, 0x7f, 0x2c, 0x28, 0x75, 0x47, 0x46, 0xa2, 0x00, 0x00, 0x02, - 0x00, 0x88, 0xff, 0xeb, 0x04, 0x6e, 0x04, 0x4e, 0x00, 0x4d, 0x00, 0x6d, - 0x00, 0x00, 0x45, 0x35, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x16, 0x16, 0x01, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x04, 0x6e, 0x3d, 0x73, 0x35, 0x2f, 0x49, 0x19, - 0x19, 0x1c, 0x01, 0x0c, 0x0d, 0x0e, 0x2b, 0x20, 0x20, 0x57, 0x38, 0x38, - 0x55, 0x20, 0x20, 0x2b, 0x0d, 0x0e, 0x0d, 0x01, 0x27, 0x24, 0x24, 0x63, - 0x3d, 0x2a, 0x5d, 0x36, 0x68, 0x9b, 0x34, 0x35, 0x35, 0x01, 0x1f, 0x21, - 0x21, 0x6a, 0x4b, 0x3d, 0x5f, 0x25, 0x25, 0x34, 0x11, 0x11, 0x10, 0x01, - 0x1c, 0x1c, 0x1b, 0x4f, 0x35, 0x34, 0x80, 0x4c, 0x47, 0x7a, 0x35, 0x40, - 0x8c, 0xfe, 0x21, 0x09, 0x0a, 0x0a, 0x22, 0x1a, 0x1a, 0x47, 0x30, 0x2f, - 0x48, 0x1a, 0x1a, 0x22, 0x0b, 0x0a, 0x09, 0x01, 0x01, 0x1a, 0x19, 0x19, - 0x4a, 0x30, 0x3c, 0x63, 0x23, 0x24, 0x28, 0x0c, 0x36, 0x01, 0x15, 0x14, - 0x27, 0x64, 0x3a, 0x39, 0x80, 0x42, 0x66, 0x2b, 0x67, 0x34, 0x34, 0x61, - 0x26, 0x25, 0x2d, 0x29, 0x23, 0x23, 0x5c, 0x31, 0x32, 0x64, 0x2c, 0x6c, - 0x52, 0x8e, 0x3b, 0x3c, 0x5f, 0x22, 0x14, 0x16, 0x56, 0x47, 0x46, 0xb4, - 0x5d, 0x60, 0x3f, 0x8f, 0x3e, 0x3e, 0x54, 0x05, 0x36, 0x03, 0x2c, 0x23, - 0x24, 0x5c, 0x34, 0x34, 0x6d, 0x34, 0x5e, 0x45, 0x88, 0x3d, 0x3e, 0x69, - 0x26, 0x27, 0x2c, 0x24, 0x20, 0x1c, 0x1d, 0x02, 0x2b, 0x70, 0x24, 0x56, - 0x2c, 0x2b, 0x51, 0x20, 0x1f, 0x25, 0x2a, 0x21, 0x22, 0x57, 0x2d, 0x2e, - 0x58, 0x23, 0x69, 0x41, 0x7b, 0x37, 0x37, 0x5d, 0x22, 0x1e, 0x55, 0x37, - 0x37, 0x86, 0x00, 0x01, 0x00, 0x46, 0xfe, 0xa1, 0x04, 0xb2, 0x05, 0xb0, - 0x00, 0x0f, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, - 0x23, 0x11, 0x21, 0x11, 0x21, 0x35, 0x21, 0x15, 0x01, 0x6f, 0x03, 0x12, - 0x31, 0x5e, 0x31, 0xfd, 0x7d, 0x01, 0x49, 0xfd, 0x5d, 0x05, 0x79, 0xfa, - 0x87, 0xfe, 0xa1, 0x01, 0x95, 0x05, 0x7a, 0xfa, 0x86, 0x05, 0x43, 0x36, - 0x36, 0x00, 0x00, 0x01, 0x00, 0x4f, 0xfe, 0xbf, 0x04, 0x69, 0x04, 0x3a, - 0x00, 0x0f, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, - 0x23, 0x11, 0x21, 0x11, 0x21, 0x35, 0x21, 0x15, 0x01, 0x6d, 0x02, 0xc8, - 0x34, 0x50, 0x35, 0xfd, 0xbd, 0x01, 0x1d, 0xfd, 0x91, 0x04, 0x04, 0xfb, - 0xfc, 0xfe, 0xbf, 0x01, 0x77, 0x04, 0x04, 0xfb, 0xfc, 0x03, 0xce, 0x36, - 0x36, 0x00, 0x00, 0x02, 0x00, 0xe2, 0x00, 0x00, 0x03, 0xf2, 0x05, 0xb0, - 0x00, 0x03, 0x00, 0x23, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x23, - 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x03, 0x23, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x11, 0x33, 0x02, 0x51, 0x34, 0x01, 0xd5, 0x33, - 0x22, 0x44, 0x22, 0x2f, 0x61, 0x32, 0x5c, 0x83, 0x2a, 0x2b, 0x28, 0x01, - 0x01, 0x33, 0x02, 0x01, 0x30, 0x31, 0x31, 0x97, 0x68, 0x37, 0x6a, 0x33, - 0x1e, 0x3b, 0x1e, 0x33, 0x01, 0x91, 0x02, 0xaa, 0xfd, 0x56, 0x04, 0x1f, - 0xfd, 0x54, 0x0a, 0x14, 0x07, 0x0b, 0x0d, 0x01, 0x3b, 0x34, 0x34, 0x90, - 0x56, 0x01, 0x5f, 0xfe, 0xa1, 0x63, 0xa4, 0x3b, 0x3b, 0x42, 0x0f, 0x0d, - 0x07, 0x10, 0x09, 0xfd, 0x32, 0x00, 0x00, 0x02, 0x00, 0xe8, 0x00, 0x00, - 0x04, 0x2e, 0x04, 0x3a, 0x00, 0x03, 0x00, 0x20, 0x00, 0x00, 0x65, 0x11, - 0x23, 0x11, 0x05, 0x11, 0x23, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x23, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x11, 0x02, 0xb1, 0x3a, 0x01, 0xb7, - 0x37, 0x24, 0x58, 0x2e, 0x2e, 0x59, 0x25, 0x5d, 0x90, 0x30, 0x31, 0x33, - 0x01, 0x37, 0x01, 0x01, 0x39, 0x38, 0x37, 0xa4, 0x6b, 0x55, 0xb3, 0x4e, - 0xf3, 0x02, 0x2c, 0xfd, 0xd4, 0xf3, 0x04, 0x3a, 0xfe, 0x01, 0x15, 0x1c, - 0x08, 0x09, 0x08, 0x01, 0x02, 0x26, 0x2b, 0x2a, 0x88, 0x5f, 0xea, 0xea, - 0x6e, 0x9c, 0x30, 0x31, 0x2c, 0x01, 0x01, 0x2a, 0x26, 0xfd, 0xf5, 0x00, - 0x00, 0x01, 0x01, 0x2d, 0x00, 0x00, 0x04, 0x3c, 0x05, 0xb0, 0x00, 0x19, - 0x00, 0x00, 0x61, 0x33, 0x11, 0x36, 0x36, 0x17, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x13, 0x33, 0x13, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x11, 0x23, 0x01, 0x2d, 0x33, 0x51, 0xa2, 0x57, 0x5b, 0x84, - 0x2b, 0x2a, 0x28, 0x01, 0x01, 0x33, 0x01, 0x01, 0x2f, 0x31, 0x31, 0x97, - 0x69, 0x56, 0xa3, 0x51, 0x33, 0x02, 0xac, 0x19, 0x24, 0x01, 0x3b, 0x34, - 0x34, 0x90, 0x56, 0xfe, 0xa1, 0x01, 0x5f, 0x63, 0xa4, 0x3b, 0x3b, 0x42, - 0x24, 0x18, 0x02, 0xce, 0x00, 0x02, 0x00, 0x2e, 0xff, 0xec, 0x04, 0x7c, - 0x05, 0xc3, 0x00, 0x39, 0x00, 0x4e, 0x00, 0x00, 0x53, 0x06, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x35, 0x21, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x13, 0x27, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x17, 0x2f, 0x01, 0x1e, 0x1e, 0x1e, 0x59, 0x3b, 0x01, 0x33, - 0x37, 0x37, 0xac, 0x79, 0x76, 0xbb, 0x52, 0x1c, 0x28, 0x52, 0x2b, 0x2c, - 0x60, 0x36, 0x6e, 0x99, 0x2f, 0x2f, 0x2b, 0x01, 0x03, 0x28, 0x02, 0x01, - 0x13, 0x14, 0x14, 0x41, 0x2d, 0x2e, 0x79, 0x4d, 0x51, 0x81, 0x32, 0x32, - 0x47, 0x17, 0x17, 0x17, 0x30, 0x43, 0x16, 0x16, 0x17, 0x04, 0xf0, 0x01, - 0x14, 0x14, 0x13, 0x3e, 0x2c, 0x2b, 0x74, 0x49, 0x43, 0x6a, 0x28, 0x28, - 0x38, 0x12, 0x11, 0x10, 0x01, 0x01, 0x04, 0x32, 0x3e, 0x6a, 0x28, 0x28, - 0x34, 0x09, 0xce, 0x6c, 0xcf, 0x51, 0x52, 0x65, 0x54, 0x4e, 0x2b, 0x21, - 0x37, 0x14, 0x15, 0x16, 0x5c, 0x4a, 0x4a, 0xbc, 0x61, 0xcc, 0xad, 0x43, - 0x84, 0x3c, 0x3c, 0x67, 0x26, 0x25, 0x2a, 0x36, 0x2e, 0x2e, 0x79, 0x43, - 0x43, 0x8b, 0x40, 0x33, 0x08, 0x2c, 0x21, 0x21, 0x55, 0x33, 0xff, 0x00, - 0x35, 0x39, 0x7d, 0x3d, 0x3d, 0x6f, 0x2a, 0x2a, 0x32, 0x27, 0x22, 0x23, - 0x5d, 0x36, 0x36, 0x75, 0x3a, 0x76, 0x00, 0x02, 0x00, 0x1e, 0xff, 0xec, - 0x04, 0x56, 0x04, 0x4e, 0x00, 0x2c, 0x00, 0x3a, 0x00, 0x00, 0x45, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x35, 0x21, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x13, 0x32, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x15, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, 0xdc, 0x6c, - 0xb0, 0x3f, 0x26, 0x3d, 0x97, 0x61, 0x60, 0x95, 0x33, 0x34, 0x36, 0x01, - 0x03, 0x0c, 0x01, 0x01, 0x34, 0x32, 0x33, 0x93, 0x60, 0x61, 0x98, 0x37, - 0x37, 0x41, 0x0a, 0x5c, 0x61, 0x06, 0x36, 0x01, 0x1c, 0x19, 0x1f, 0x61, - 0x3f, 0x01, 0x3e, 0x3b, 0x3a, 0xa9, 0x59, 0x52, 0x7f, 0x2b, 0x2b, 0x2e, - 0x02, 0xfd, 0x2d, 0x09, 0x38, 0x30, 0x2f, 0x85, 0x14, 0x58, 0x57, 0x1b, - 0x4a, 0x4c, 0x01, 0x01, 0x56, 0x45, 0x45, 0xad, 0x57, 0x3b, 0x3f, 0x58, - 0xa6, 0x41, 0x40, 0x4f, 0x51, 0x42, 0x43, 0xa9, 0x57, 0x0a, 0x6b, 0x62, - 0x36, 0x59, 0x20, 0x29, 0x2f, 0x06, 0x3c, 0x63, 0xc0, 0x4c, 0x4d, 0x5e, - 0x04, 0x2c, 0x47, 0x39, 0x39, 0x91, 0x4a, 0x0d, 0x4d, 0x96, 0x3b, 0x3b, - 0x48, 0x00, 0x00, 0x01, 0x01, 0x0a, 0xfe, 0xb9, 0x04, 0x77, 0x05, 0xb0, - 0x00, 0x26, 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, - 0x33, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x02, 0x43, 0x02, 0x09, 0x44, - 0xfd, 0xf8, 0xc2, 0x34, 0x34, 0x01, 0x3e, 0x70, 0xaa, 0x39, 0x39, 0x39, - 0x11, 0x12, 0x13, 0x38, 0x26, 0x27, 0x63, 0x3d, 0x67, 0x97, 0x32, 0x31, - 0x30, 0x3f, 0x3f, 0x40, 0xbe, 0x7f, 0x03, 0x06, 0x02, 0xaa, 0xfd, 0x56, - 0x02, 0xaa, 0xfa, 0x50, 0x02, 0xd1, 0x01, 0x50, 0x45, 0x45, 0xba, 0x6b, - 0x36, 0x6f, 0x35, 0x35, 0x5f, 0x24, 0x24, 0x2c, 0x03, 0x33, 0x04, 0x64, - 0x4d, 0x4c, 0xbb, 0x5c, 0x79, 0xcf, 0x4b, 0x4b, 0x56, 0x01, 0x00, 0x01, - 0x00, 0xf3, 0xfe, 0xe8, 0x04, 0x0d, 0x04, 0x3a, 0x00, 0x22, 0x00, 0x00, - 0x41, 0x01, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x02, - 0x2c, 0x01, 0xd1, 0x4e, 0xfe, 0x32, 0xb7, 0x37, 0x37, 0xd5, 0x5e, 0xab, - 0x42, 0x42, 0x4d, 0x03, 0x02, 0x33, 0x2c, 0x2c, 0x77, 0x46, 0x11, 0x4c, - 0x86, 0x33, 0x32, 0x39, 0x01, 0x02, 0x4b, 0x40, 0x41, 0xae, 0x02, 0x46, - 0x01, 0xf4, 0xfe, 0x0e, 0x01, 0xf2, 0xfb, 0xc6, 0x02, 0x11, 0x2d, 0x2f, - 0x30, 0x95, 0x68, 0x4b, 0x7b, 0x2f, 0x30, 0x41, 0x10, 0x2a, 0x11, 0x49, - 0x35, 0x35, 0x89, 0x53, 0x6f, 0xa2, 0x37, 0x37, 0x39, 0x00, 0x00, 0x01, - 0x00, 0xcb, 0xfe, 0x4b, 0x04, 0x05, 0x05, 0xb0, 0x00, 0x1d, 0x00, 0x00, - 0x53, 0x23, 0x11, 0x33, 0x11, 0x21, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x03, 0x23, 0x11, 0x21, 0xfd, 0x32, 0x32, 0x02, 0xd4, 0x02, - 0x0e, 0x12, 0x13, 0x45, 0x37, 0x15, 0x28, 0x14, 0x0d, 0x17, 0x2e, 0x19, - 0x45, 0x58, 0x1a, 0x19, 0x14, 0x01, 0x02, 0x32, 0xfd, 0x2c, 0x05, 0xb0, - 0xfa, 0x50, 0x02, 0xb7, 0xfc, 0xf0, 0x2a, 0x67, 0x2c, 0x2d, 0x3c, 0x0b, - 0x07, 0x34, 0x08, 0x0c, 0x43, 0x34, 0x33, 0x7b, 0x37, 0x06, 0x09, 0xfd, - 0x3d, 0x00, 0x00, 0x01, 0x00, 0xe0, 0xfe, 0x4b, 0x03, 0xea, 0x04, 0x3a, - 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x11, 0x23, 0x11, 0x21, 0x01, 0x16, - 0x36, 0x36, 0x02, 0x9d, 0x01, 0x19, 0x1b, 0x1c, 0x57, 0x3f, 0x1a, 0x31, - 0x18, 0x0d, 0x1c, 0x37, 0x1d, 0x4b, 0x6c, 0x23, 0x22, 0x21, 0x01, 0x37, - 0xfd, 0x63, 0x04, 0x3a, 0xfb, 0xc6, 0x02, 0x11, 0xfd, 0x96, 0x37, 0x6a, - 0x29, 0x2a, 0x32, 0x0a, 0x08, 0x34, 0x08, 0x0c, 0x3a, 0x31, 0x30, 0x7e, - 0x43, 0x04, 0x93, 0xfe, 0x0d, 0x00, 0x00, 0x02, 0x00, 0x63, 0xff, 0xec, - 0x04, 0x4c, 0x05, 0xc4, 0x00, 0x34, 0x00, 0x48, 0x00, 0x00, 0x41, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x21, 0x07, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x03, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x27, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, - 0x4c, 0x41, 0x74, 0x34, 0x30, 0x5b, 0x2b, 0x1d, 0x2c, 0x58, 0x2f, 0x2f, - 0x66, 0x3a, 0x52, 0x84, 0x33, 0x32, 0x49, 0x18, 0x17, 0x16, 0x01, 0xfc, - 0x4e, 0x01, 0x01, 0x1d, 0x1c, 0x1c, 0x55, 0x39, 0x38, 0x8e, 0x55, 0x58, - 0x8c, 0x37, 0x36, 0x4e, 0x19, 0x19, 0x19, 0x01, 0x1a, 0x1b, 0x1b, 0x53, - 0x39, 0x39, 0x91, 0x43, 0x4c, 0x7f, 0x32, 0x33, 0x4c, 0x19, 0x1a, 0x1a, - 0x01, 0x03, 0x7e, 0x01, 0x15, 0x16, 0x16, 0x44, 0x30, 0x31, 0x7e, 0x05, - 0xc4, 0x17, 0x17, 0x14, 0x3c, 0x27, 0x2b, 0x23, 0x39, 0x14, 0x14, 0x16, - 0x2f, 0x29, 0x2a, 0x70, 0x41, 0x41, 0x8f, 0x48, 0x7c, 0x7b, 0x4d, 0x97, - 0x43, 0x44, 0x73, 0x29, 0x2a, 0x2f, 0x3d, 0x34, 0x33, 0x88, 0x4c, 0x4c, - 0x9e, 0x49, 0xac, 0x4f, 0x9c, 0x48, 0x47, 0x7a, 0x2d, 0x2c, 0x34, 0xfa, - 0x5e, 0x2b, 0x27, 0x26, 0x68, 0x3e, 0x3d, 0x87, 0x44, 0x48, 0x42, 0x8f, - 0x45, 0x45, 0x7d, 0x2f, 0x2f, 0x38, 0x00, 0x01, 0x00, 0xbb, 0xff, 0xeb, - 0x04, 0x33, 0x05, 0xb0, 0x00, 0x2d, 0x00, 0x00, 0x41, 0x01, 0x15, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x01, 0x27, 0x21, 0x15, 0x03, 0xf6, 0xfe, 0x1d, 0x64, 0x5d, - 0x8f, 0x31, 0x30, 0x31, 0x3a, 0x33, 0x33, 0x8a, 0x50, 0x53, 0x8d, 0x34, - 0x34, 0x3d, 0x03, 0x38, 0x03, 0x46, 0x3c, 0x3b, 0xa1, 0x5f, 0x5b, 0x9d, - 0x3b, 0x3a, 0x43, 0x3a, 0x37, 0x38, 0xa1, 0x66, 0x26, 0x01, 0xde, 0x03, - 0xfc, 0xa0, 0x05, 0x7a, 0xfd, 0xc8, 0x37, 0x01, 0x37, 0x33, 0x33, 0x92, - 0x5d, 0x53, 0x82, 0x2c, 0x2d, 0x2f, 0x35, 0x31, 0x31, 0x89, 0x53, 0x5f, - 0x9c, 0x38, 0x38, 0x3e, 0x39, 0x36, 0x35, 0x96, 0x5d, 0x66, 0xa2, 0x39, - 0x39, 0x3e, 0x01, 0x02, 0x31, 0x44, 0x36, 0x00, 0x00, 0x01, 0x00, 0xac, - 0xfe, 0x75, 0x04, 0x29, 0x04, 0x3a, 0x00, 0x2d, 0x00, 0x00, 0x41, 0x01, - 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x23, 0x01, 0x27, 0x21, 0x15, 0x03, 0xed, 0xfe, 0x19, - 0x47, 0x5d, 0x98, 0x37, 0x37, 0x3b, 0x3b, 0x33, 0x34, 0x8a, 0x50, 0x53, - 0x8e, 0x34, 0x35, 0x3e, 0x03, 0x38, 0x03, 0x47, 0x3c, 0x3c, 0xa2, 0x5f, - 0x5a, 0x9e, 0x3b, 0x3b, 0x44, 0x45, 0x3e, 0x3e, 0xaa, 0x65, 0x0a, 0x01, - 0xe2, 0x03, 0xfc, 0x9b, 0x04, 0x03, 0xfd, 0xc9, 0x38, 0x01, 0x34, 0x32, - 0x33, 0x93, 0x60, 0x53, 0x82, 0x2c, 0x2d, 0x2e, 0x35, 0x31, 0x30, 0x89, - 0x53, 0x5f, 0x9d, 0x37, 0x38, 0x3d, 0x39, 0x35, 0x34, 0x97, 0x5d, 0x69, - 0xa3, 0x39, 0x38, 0x3b, 0x01, 0x02, 0x32, 0x44, 0x37, 0x00, 0xff, 0xff, - 0xff, 0xe7, 0xfe, 0x4b, 0x04, 0x65, 0x05, 0xb0, 0x04, 0x26, 0x01, 0x7b, - 0x44, 0x00, 0x00, 0x27, 0x02, 0x6a, 0xff, 0x06, 0x00, 0x3f, 0x00, 0x07, - 0x02, 0x6f, 0xfe, 0x76, 0x00, 0x00, 0xff, 0xff, 0x00, 0x0c, 0xfe, 0x4b, - 0x04, 0x66, 0x04, 0x3a, 0x04, 0x26, 0x01, 0xb5, 0x56, 0x00, 0x00, 0x27, - 0x02, 0x6a, 0xff, 0x43, 0xff, 0x64, 0x00, 0x07, 0x02, 0x6f, 0xfe, 0x9b, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x95, 0x00, 0x00, 0x03, 0xe0, 0x05, 0xb0, - 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x21, 0x11, 0x23, 0x11, - 0x21, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x21, 0x03, 0xab, 0xfe, 0xa6, 0x5c, 0xa2, 0x3c, 0x3c, 0x46, 0x46, - 0x3d, 0x3c, 0xa1, 0x5c, 0x01, 0x8f, 0x35, 0xfe, 0xa6, 0x50, 0x8e, 0x35, - 0x35, 0x3e, 0x3f, 0x36, 0x35, 0x8d, 0x4f, 0x01, 0x5a, 0x03, 0x28, 0x01, - 0x36, 0x33, 0x33, 0x96, 0x61, 0x61, 0x95, 0x33, 0x34, 0x36, 0x01, 0x05, - 0xb0, 0xfa, 0x86, 0x01, 0x2f, 0x2c, 0x2c, 0x83, 0x55, 0x54, 0x81, 0x2c, - 0x2c, 0x2e, 0x01, 0x00, 0x00, 0x02, 0x00, 0x80, 0x00, 0x00, 0x04, 0x63, - 0x05, 0xb0, 0x00, 0x24, 0x00, 0x33, 0x00, 0x00, 0x61, 0x21, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x07, 0x11, 0x23, 0x11, 0x23, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x25, 0x23, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, - 0x01, 0xd2, 0x01, 0x98, 0x48, 0x5e, 0x1c, 0x1c, 0x18, 0x01, 0x02, 0x18, - 0x1b, 0x2e, 0x11, 0x1b, 0x02, 0x01, 0x10, 0x15, 0x15, 0x4b, 0x3c, 0x69, - 0x31, 0xfe, 0x55, 0x7f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x7f, 0x01, - 0x53, 0xfe, 0x4a, 0x6b, 0x22, 0x23, 0x22, 0x23, 0x23, 0x23, 0x6b, 0x48, - 0xfe, 0x02, 0x4d, 0x39, 0x38, 0x85, 0x39, 0x59, 0xbd, 0x55, 0x5b, 0xb3, - 0x5d, 0x2f, 0x71, 0x31, 0x32, 0x44, 0x03, 0x01, 0x05, 0x7d, 0xfd, 0x78, - 0x02, 0x43, 0x38, 0x38, 0x91, 0x4e, 0x4e, 0x91, 0x38, 0x38, 0x44, 0x35, - 0x01, 0x3d, 0x31, 0x30, 0x7e, 0x43, 0x42, 0x7d, 0x30, 0x30, 0x3b, 0x02, - 0x00, 0x02, 0x00, 0x82, 0xff, 0xeb, 0x04, 0x83, 0x06, 0x18, 0x00, 0x4f, - 0x00, 0x72, 0x00, 0x00, 0x53, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x25, 0x11, 0x14, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x82, - 0x08, 0x0b, 0x0b, 0x27, 0x20, 0x20, 0x5c, 0x40, 0x2d, 0x50, 0x22, 0x21, - 0x34, 0x12, 0x08, 0x1d, 0x16, 0x16, 0x3f, 0x2a, 0x40, 0x5b, 0x20, 0x20, - 0x26, 0x0b, 0x0b, 0x07, 0x01, 0x01, 0x06, 0x08, 0x06, 0x12, 0x0d, 0x32, - 0x08, 0x0f, 0x06, 0x08, 0x0a, 0x01, 0x01, 0x05, 0x08, 0x08, 0x1e, 0x1a, - 0x1a, 0x4c, 0x35, 0x24, 0x31, 0x10, 0x11, 0x13, 0x04, 0x05, 0x03, 0x02, - 0x32, 0x01, 0x12, 0x32, 0x1e, 0x1f, 0x4a, 0x2a, 0x41, 0x5c, 0x20, 0x21, - 0x27, 0x0a, 0x0b, 0x08, 0x02, 0x16, 0x02, 0x01, 0x0a, 0x2b, 0x1f, 0x20, - 0x52, 0x33, 0x36, 0x4d, 0x19, 0x1a, 0x1f, 0x07, 0x08, 0x05, 0x05, 0x08, - 0x08, 0x1e, 0x1a, 0x1a, 0x4d, 0x37, 0x34, 0x52, 0x1e, 0x1e, 0x27, 0x02, - 0x1e, 0x15, 0x2e, 0x74, 0x3c, 0x3c, 0x73, 0x2d, 0x2d, 0x37, 0x1e, 0x1a, - 0x1a, 0x46, 0x28, 0x26, 0x46, 0x1a, 0x1b, 0x1f, 0x01, 0x38, 0x2e, 0x2e, - 0x75, 0x3d, 0x3d, 0x74, 0x2e, 0x37, 0x73, 0x39, 0x2d, 0x59, 0x2a, 0x01, - 0x2c, 0x56, 0x2a, 0x39, 0x72, 0x3b, 0x24, 0x65, 0x37, 0x38, 0x6c, 0x2b, - 0x2c, 0x35, 0x21, 0x1b, 0x1a, 0x43, 0x23, 0x23, 0x41, 0x18, 0x04, 0xbf, - 0xfd, 0x86, 0x25, 0x40, 0x18, 0x18, 0x1b, 0x3a, 0x2e, 0x2f, 0x78, 0x3e, - 0x3f, 0x76, 0xc4, 0xfe, 0x49, 0x11, 0x23, 0x13, 0x2e, 0x57, 0x22, 0x22, - 0x28, 0x34, 0x2a, 0x29, 0x6a, 0x36, 0x36, 0x65, 0x26, 0x15, 0x25, 0x68, - 0x38, 0x38, 0x6f, 0x2c, 0x2c, 0x36, 0x2f, 0x25, 0x26, 0x5e, 0x00, 0x01, - 0x00, 0x3a, 0xff, 0xea, 0x04, 0x87, 0x05, 0xb0, 0x00, 0x53, 0x00, 0x00, - 0x41, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x15, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x02, 0x5a, 0x01, 0x15, 0x19, 0x18, 0x56, 0x42, 0x41, 0x64, 0x25, 0x24, - 0x31, 0x10, 0x0f, 0x0d, 0x01, 0x02, 0x1c, 0x1c, 0x35, 0x0a, 0x14, 0x08, - 0x07, 0x0a, 0x01, 0x01, 0x0b, 0x0c, 0x0d, 0x29, 0x1f, 0x1f, 0x54, 0x37, - 0x32, 0x41, 0x13, 0x13, 0x10, 0x01, 0x12, 0x14, 0x15, 0x42, 0x30, 0x2e, - 0x4d, 0x1d, 0x2b, 0x2e, 0x3a, 0x33, 0x34, 0x8d, 0x52, 0xfe, 0xe7, 0x01, - 0x19, 0x47, 0x79, 0x2d, 0x2c, 0x32, 0x25, 0x25, 0x25, 0x70, 0x4c, 0x9b, - 0x92, 0x45, 0x5b, 0x1c, 0x1c, 0x17, 0x01, 0x87, 0x57, 0x36, 0x74, 0x30, - 0x30, 0x3c, 0x01, 0x01, 0x36, 0x2d, 0x2c, 0x72, 0x3d, 0x3d, 0x78, 0x32, - 0x64, 0xcf, 0x60, 0x32, 0x64, 0x32, 0x33, 0x65, 0x33, 0x29, 0x68, 0x37, - 0x38, 0x6a, 0x29, 0x2a, 0x33, 0x37, 0x2a, 0x29, 0x5e, 0x27, 0x59, 0x3a, - 0x69, 0x2c, 0x2b, 0x42, 0x12, 0x06, 0x34, 0x28, 0x39, 0x97, 0x47, 0x57, - 0x83, 0x2c, 0x2c, 0x2d, 0x01, 0x36, 0x01, 0x24, 0x24, 0x24, 0x6f, 0x4c, - 0x48, 0x7b, 0x2c, 0x2d, 0x33, 0x01, 0x37, 0x03, 0x38, 0x2c, 0x2d, 0x73, - 0x00, 0x01, 0x00, 0x57, 0xff, 0xea, 0x04, 0x76, 0x04, 0x3a, 0x00, 0x50, - 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x17, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x23, 0x17, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x37, - 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x02, - 0xa2, 0x3a, 0x30, 0x30, 0x7e, 0x44, 0xef, 0x05, 0xea, 0x36, 0x6a, 0x29, - 0x29, 0x33, 0x2b, 0x24, 0x24, 0x5c, 0x31, 0xc9, 0x02, 0xba, 0x33, 0x5b, - 0x22, 0x22, 0x28, 0x01, 0x02, 0x1a, 0x1b, 0x1a, 0x50, 0x38, 0x3a, 0x5d, - 0x24, 0x23, 0x33, 0x11, 0x10, 0x10, 0x01, 0x01, 0x0f, 0x0d, 0x07, 0x12, - 0x09, 0x3e, 0x21, 0x26, 0x02, 0x02, 0x1a, 0x1f, 0x1f, 0x66, 0x4d, 0x2e, - 0x3c, 0x12, 0x13, 0x12, 0x05, 0x03, 0x01, 0x1a, 0x17, 0x17, 0x40, 0x27, - 0x27, 0x47, 0x1b, 0x1a, 0x20, 0x03, 0x10, 0x4b, 0x6f, 0x25, 0x24, 0x26, - 0x01, 0x32, 0x01, 0x20, 0x1f, 0x1f, 0x5c, 0x3d, 0x36, 0x52, 0x1b, 0x1c, - 0x1d, 0x01, 0x33, 0x02, 0x18, 0x19, 0x1a, 0x4f, 0x38, 0x56, 0x35, 0x58, - 0x1e, 0x1f, 0x22, 0x01, 0x01, 0x26, 0x21, 0x20, 0x56, 0x31, 0x30, 0x67, - 0x32, 0x34, 0x68, 0x32, 0x1d, 0x38, 0x1c, 0x4c, 0x9f, 0x54, 0x3f, 0x88, - 0x39, 0x39, 0x49, 0x1a, 0x18, 0x18, 0x43, 0x28, 0x57, 0x33, 0x4d, 0x1d, - 0x1c, 0x27, 0x0b, 0x17, 0x28, 0x1b, 0x1a, 0x4b, 0x00, 0x01, 0x00, 0xb5, - 0xfe, 0x8a, 0x04, 0x1c, 0x05, 0xaf, 0x00, 0x45, 0x00, 0x00, 0x41, 0x33, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x33, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x35, 0x23, 0x26, 0x26, 0x27, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x21, 0x15, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x01, 0x25, 0xd0, 0x4b, - 0x8b, 0x35, 0x35, 0x41, 0x02, 0x07, 0x06, 0x08, 0x1c, 0x17, 0x26, 0x0b, - 0x09, 0x0b, 0x23, 0x17, 0x25, 0x1d, 0x2a, 0x0c, 0x0b, 0x0b, 0x01, 0x34, - 0x21, 0x18, 0x01, 0x01, 0x2e, 0x28, 0x29, 0x6e, 0x40, 0x3f, 0x6e, 0x29, - 0x29, 0x2f, 0x4e, 0x41, 0x42, 0xac, 0x5d, 0xfe, 0xe1, 0x01, 0x1f, 0x51, - 0x98, 0x3b, 0x3a, 0x46, 0x4c, 0x3d, 0x3e, 0x9a, 0x4d, 0xa5, 0x02, 0xab, - 0x02, 0x23, 0x25, 0x26, 0x76, 0x54, 0x85, 0x1c, 0x37, 0x1b, 0x23, 0x3f, - 0x1d, 0x5d, 0x21, 0x3c, 0x1c, 0x21, 0x3f, 0x1f, 0x20, 0x21, 0x47, 0x26, - 0x21, 0x46, 0x25, 0x84, 0x2a, 0x61, 0x37, 0x89, 0x4e, 0x75, 0x29, 0x29, - 0x32, 0x0c, 0x0d, 0x40, 0x2f, 0x2e, 0x75, 0x44, 0x68, 0x93, 0x2f, 0x2f, - 0x2c, 0x01, 0x36, 0x01, 0x24, 0x28, 0x28, 0x7f, 0x5c, 0x59, 0x7c, 0x27, - 0x27, 0x24, 0x01, 0x00, 0x00, 0x01, 0x00, 0xff, 0xfe, 0x84, 0x04, 0x09, - 0x04, 0x3a, 0x00, 0x49, 0x00, 0x00, 0x41, 0x21, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x15, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x35, 0x22, 0x22, 0x23, 0x26, 0x26, 0x35, 0x34, 0x34, 0x35, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x21, 0x07, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x23, 0x01, 0x63, 0x01, 0x0c, - 0x37, 0x67, 0x29, 0x28, 0x32, 0x02, 0x01, 0x03, 0x01, 0x06, 0x05, 0x31, - 0x01, 0x0c, 0x0b, 0x0c, 0x20, 0x15, 0x25, 0x19, 0x26, 0x0d, 0x0e, 0x0f, - 0x01, 0x10, 0x18, 0x09, 0x0b, 0x05, 0x01, 0x1e, 0x1a, 0x1a, 0x48, 0x2a, - 0x2d, 0x4a, 0x1a, 0x1a, 0x1d, 0x42, 0x36, 0x36, 0x89, 0x48, 0xfe, 0xb7, - 0x04, 0x01, 0x4d, 0x3d, 0x76, 0x2f, 0x2e, 0x39, 0x39, 0x2e, 0x2f, 0x76, - 0x3d, 0xeb, 0x01, 0xee, 0x02, 0x18, 0x1a, 0x1b, 0x54, 0x3e, 0x60, 0x1b, - 0x35, 0x1b, 0x10, 0x22, 0x10, 0x64, 0x24, 0x42, 0x1f, 0x1e, 0x39, 0x1c, - 0x20, 0x1c, 0x3d, 0x20, 0x25, 0x51, 0x2b, 0x84, 0x22, 0x45, 0x23, 0x0d, - 0x35, 0x21, 0x36, 0x52, 0x1e, 0x1d, 0x27, 0x0b, 0x0c, 0x33, 0x24, 0x23, - 0x57, 0x30, 0x52, 0x71, 0x23, 0x23, 0x1f, 0x01, 0x37, 0x01, 0x16, 0x1b, - 0x1b, 0x5c, 0x48, 0x48, 0x5b, 0x1a, 0x1b, 0x15, 0x01, 0x00, 0x00, 0x01, - 0x00, 0x1d, 0xff, 0xea, 0x04, 0x94, 0x05, 0xb0, 0x00, 0x4e, 0x00, 0x00, - 0x41, 0x03, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x36, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x07, 0x16, 0x16, 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, - 0x03, 0x21, 0x03, 0x14, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x34, 0x26, 0x35, 0x03, 0x02, 0xd1, 0x03, 0x05, 0x06, - 0x06, 0x19, 0x15, 0x14, 0x3d, 0x2c, 0x3d, 0x56, 0x1e, 0x1d, 0x23, 0x09, - 0x09, 0x06, 0x01, 0x04, 0x05, 0x05, 0x13, 0x0e, 0x31, 0x0c, 0x1e, 0x01, - 0x04, 0x06, 0x07, 0x1a, 0x17, 0x18, 0x47, 0x32, 0x22, 0x2d, 0x0f, 0x0f, - 0x10, 0x04, 0x04, 0x02, 0x03, 0xfe, 0x10, 0x03, 0x03, 0x05, 0x08, 0x08, - 0x1c, 0x17, 0x18, 0x43, 0x2f, 0x21, 0x28, 0x37, 0x51, 0x1c, 0x1c, 0x23, - 0x0a, 0x0a, 0x08, 0x01, 0x02, 0x03, 0x05, 0x7a, 0xfb, 0xdf, 0x1f, 0x4e, - 0x29, 0x29, 0x4e, 0x1e, 0x1f, 0x25, 0x01, 0x01, 0x3a, 0x2f, 0x2f, 0x77, - 0x3d, 0x3d, 0x72, 0x2a, 0x31, 0x67, 0x34, 0x33, 0x65, 0x2f, 0x01, 0x65, - 0xc7, 0x66, 0x21, 0x62, 0x37, 0x37, 0x6f, 0x2c, 0x2d, 0x37, 0x22, 0x1c, - 0x1b, 0x45, 0x23, 0x22, 0x3f, 0x16, 0x04, 0x57, 0xfd, 0x50, 0x1b, 0x5a, - 0x37, 0x37, 0x7a, 0x3c, 0x3c, 0x6d, 0x2a, 0x2a, 0x33, 0x01, 0x36, 0x01, - 0x35, 0x2c, 0x2b, 0x73, 0x3f, 0x3f, 0x83, 0x3c, 0x3c, 0x65, 0x22, 0x02, - 0x7a, 0x00, 0x00, 0x01, 0x00, 0x3b, 0xff, 0xeb, 0x04, 0x72, 0x04, 0x3a, - 0x00, 0x4b, 0x00, 0x00, 0x41, 0x21, 0x03, 0x14, 0x16, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x23, 0x15, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x35, 0x03, 0x21, 0x03, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x02, 0xc3, 0xfe, 0x3f, - 0x02, 0x02, 0x02, 0x02, 0x0e, 0x12, 0x12, 0x3c, 0x2f, 0x26, 0x2f, 0x2b, - 0x40, 0x17, 0x16, 0x1c, 0x09, 0x08, 0x06, 0x01, 0x01, 0x02, 0x02, 0x01, - 0x5f, 0x02, 0x05, 0x07, 0x07, 0x1a, 0x16, 0x15, 0x3f, 0x2d, 0x3a, 0x57, - 0x20, 0x1f, 0x29, 0x0d, 0x0c, 0x0a, 0x01, 0x01, 0x1a, 0x1c, 0x31, 0x08, - 0x12, 0x07, 0x06, 0x09, 0x01, 0x07, 0x09, 0x0a, 0x20, 0x19, 0x1a, 0x48, - 0x31, 0x23, 0x2f, 0x10, 0x10, 0x12, 0x04, 0x05, 0x02, 0x04, 0x3a, 0xfe, - 0x34, 0x1c, 0x68, 0x3e, 0x3f, 0x84, 0x36, 0x36, 0x46, 0x02, 0x35, 0x01, - 0x2c, 0x24, 0x23, 0x5d, 0x34, 0x33, 0x6a, 0x30, 0x30, 0x51, 0x1b, 0x01, - 0x95, 0xfd, 0x56, 0x20, 0x50, 0x28, 0x29, 0x4d, 0x1e, 0x1e, 0x24, 0x2d, - 0x25, 0x24, 0x5f, 0x34, 0x33, 0x68, 0x2d, 0x5e, 0xc5, 0x5b, 0x01, 0x30, - 0x5e, 0x2f, 0x30, 0x5f, 0x31, 0x24, 0x59, 0x2d, 0x2e, 0x57, 0x21, 0x22, - 0x29, 0x22, 0x1b, 0x1b, 0x43, 0x23, 0x23, 0x40, 0x17, 0x00, 0x00, 0x01, - 0x00, 0xb2, 0xff, 0xea, 0x04, 0x72, 0x05, 0xb0, 0x00, 0x38, 0x00, 0x00, - 0x41, 0x23, 0x03, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x03, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, - 0x16, 0x16, 0x07, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x02, 0xee, 0x30, - 0x02, 0xfe, 0x25, 0x2f, 0x2f, 0x01, 0xdb, 0x01, 0x04, 0x06, 0x06, 0x18, - 0x14, 0x14, 0x3c, 0x2b, 0x3c, 0x54, 0x1c, 0x1c, 0x21, 0x09, 0x08, 0x05, - 0x01, 0x03, 0x05, 0x05, 0x12, 0x0f, 0x30, 0x0b, 0x1e, 0x01, 0x03, 0x06, - 0x06, 0x19, 0x16, 0x17, 0x44, 0x31, 0x21, 0x2c, 0x0e, 0x0f, 0x0f, 0x03, - 0x04, 0x01, 0x05, 0xb0, 0xfd, 0x3b, 0x02, 0xc5, 0xfa, 0x50, 0x02, 0xb5, - 0xfe, 0xa4, 0x1e, 0x4d, 0x29, 0x29, 0x4f, 0x1e, 0x1f, 0x26, 0x01, 0x01, - 0x3b, 0x30, 0x30, 0x77, 0x3d, 0x3d, 0x71, 0x28, 0x30, 0x68, 0x34, 0x33, - 0x65, 0x2f, 0x01, 0x65, 0xc7, 0x66, 0x1f, 0x62, 0x37, 0x37, 0x6f, 0x2d, - 0x2d, 0x38, 0x23, 0x1c, 0x1b, 0x46, 0x23, 0x22, 0x3e, 0x15, 0x00, 0x01, - 0x00, 0x9e, 0xff, 0xeb, 0x04, 0x63, 0x04, 0x3a, 0x00, 0x35, 0x00, 0x00, - 0x41, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x07, - 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x03, 0x23, 0x03, - 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x02, 0x8d, 0x05, 0x07, 0x06, 0x19, - 0x15, 0x15, 0x3e, 0x2c, 0x39, 0x56, 0x1f, 0x1e, 0x28, 0x0c, 0x0b, 0x09, - 0x01, 0x02, 0x19, 0x1c, 0x32, 0x10, 0x20, 0x01, 0x01, 0x06, 0x09, 0x09, - 0x1e, 0x18, 0x19, 0x47, 0x30, 0x22, 0x2e, 0x0f, 0x10, 0x11, 0x03, 0x04, - 0x02, 0x03, 0x31, 0x02, 0xfe, 0x42, 0x31, 0x31, 0x02, 0x07, 0xae, 0x20, - 0x4e, 0x29, 0x29, 0x4d, 0x1e, 0x1f, 0x24, 0x2d, 0x25, 0x25, 0x60, 0x34, - 0x33, 0x67, 0x2c, 0x5e, 0xc6, 0x5a, 0x01, 0x5f, 0xbd, 0x61, 0x23, 0x57, - 0x2e, 0x2e, 0x57, 0x22, 0x23, 0x29, 0x22, 0x1c, 0x1b, 0x44, 0x23, 0x22, - 0x40, 0x16, 0x02, 0xe1, 0xfe, 0x02, 0x01, 0xfe, 0xfb, 0xc6, 0x02, 0x07, - 0x00, 0x01, 0x00, 0xb2, 0xff, 0xeb, 0x04, 0x61, 0x05, 0xc6, 0x00, 0x3c, - 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, - 0x23, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x36, 0x16, 0x17, 0x37, 0x26, 0x26, 0x07, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x02, 0xab, 0x61, 0x9f, 0x39, 0x39, 0x40, 0x02, 0x02, - 0x19, 0x14, 0x39, 0x13, 0x1e, 0x02, 0x02, 0x37, 0x31, 0x31, 0x8c, 0x58, - 0x72, 0xa9, 0x38, 0x38, 0x38, 0x01, 0x1a, 0x19, 0x19, 0x4a, 0x32, 0x32, - 0x7e, 0x4c, 0x4b, 0x89, 0x42, 0x15, 0x46, 0x97, 0x4e, 0x54, 0x8b, 0x38, - 0x38, 0x54, 0x1c, 0x1d, 0x1d, 0x1d, 0x1d, 0x1c, 0x54, 0x38, 0x38, 0x8c, - 0x15, 0x44, 0x3c, 0x3c, 0xa3, 0x5f, 0x5b, 0xb5, 0x59, 0x5a, 0xb3, 0x5c, - 0x56, 0x8f, 0x34, 0x34, 0x3b, 0x64, 0x51, 0x51, 0xc9, 0x65, 0x01, 0x08, - 0x43, 0x88, 0x3f, 0x3e, 0x6b, 0x28, 0x28, 0x2f, 0x01, 0x25, 0x20, 0x39, - 0x24, 0x1e, 0x01, 0x01, 0x32, 0x2b, 0x2c, 0x76, 0x44, 0x45, 0x96, 0x4b, - 0xfe, 0xfa, 0x4b, 0x95, 0x44, 0x45, 0x77, 0x2c, 0x2c, 0x32, 0x00, 0x01, - 0x00, 0xbb, 0xff, 0xeb, 0x04, 0x3e, 0x04, 0x4e, 0x00, 0x36, 0x00, 0x00, - 0x65, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x16, 0x17, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x26, 0x27, 0x23, 0x16, - 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0xa7, 0x66, 0xa1, 0x38, - 0x39, 0x3d, 0x01, 0x36, 0x35, 0x34, 0x9a, 0x66, 0x42, 0x85, 0x3b, 0x19, - 0x1e, 0x46, 0x24, 0x25, 0x4a, 0x23, 0x70, 0xae, 0x3c, 0x3c, 0x3f, 0x01, - 0x01, 0x45, 0x40, 0x3f, 0xb5, 0x72, 0x4c, 0x90, 0x38, 0x38, 0x46, 0x03, - 0x02, 0x14, 0x0b, 0x38, 0x10, 0x11, 0x02, 0x02, 0x3d, 0x31, 0x31, 0x7d, - 0x21, 0x50, 0x44, 0x43, 0xb1, 0x5f, 0x2a, 0x5e, 0xae, 0x44, 0x43, 0x52, - 0x01, 0x01, 0x17, 0x20, 0x31, 0x14, 0x18, 0x06, 0x06, 0x03, 0x01, 0x5b, - 0x4b, 0x4b, 0xc2, 0x68, 0x2a, 0x6c, 0xc3, 0x4a, 0x4b, 0x59, 0x26, 0x27, - 0x27, 0x7a, 0x54, 0x3c, 0x75, 0x3b, 0x39, 0x77, 0x3c, 0x49, 0x65, 0x20, - 0x20, 0x1e, 0x00, 0x01, 0x00, 0x6e, 0xff, 0xea, 0x04, 0x7c, 0x05, 0xb0, - 0x00, 0x31, 0x00, 0x00, 0x41, 0x03, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x26, 0x27, 0x07, 0x16, 0x16, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x35, 0x03, 0x21, 0x35, 0x21, 0x15, 0x02, 0x38, 0x01, 0x01, 0x09, 0x0b, - 0x0a, 0x23, 0x1a, 0x1a, 0x49, 0x31, 0x45, 0x67, 0x26, 0x25, 0x31, 0x0f, - 0x0f, 0x0c, 0x01, 0x02, 0x20, 0x1c, 0x34, 0x15, 0x24, 0x01, 0x01, 0x09, - 0x0b, 0x0c, 0x29, 0x1f, 0x20, 0x58, 0x3c, 0x28, 0x3a, 0x14, 0x15, 0x1a, - 0x07, 0x07, 0x06, 0x01, 0x01, 0xc6, 0xfc, 0x3b, 0x05, 0x7a, 0xfb, 0xdf, - 0x27, 0x55, 0x28, 0x29, 0x4a, 0x1b, 0x1c, 0x21, 0x01, 0x01, 0x34, 0x2b, - 0x2b, 0x71, 0x3d, 0x3c, 0x7b, 0x36, 0x65, 0xcd, 0x61, 0x01, 0x64, 0xc7, - 0x67, 0x2d, 0x6c, 0x37, 0x37, 0x68, 0x28, 0x28, 0x31, 0x1d, 0x19, 0x18, - 0x40, 0x23, 0x23, 0x46, 0x1e, 0x04, 0x21, 0x36, 0x36, 0x00, 0x00, 0x01, - 0x00, 0x5e, 0xff, 0xea, 0x04, 0x50, 0x04, 0x3a, 0x00, 0x28, 0x00, 0x00, - 0x41, 0x11, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x11, 0x21, 0x35, 0x21, 0x15, 0x01, 0xe1, 0x02, 0x1c, 0x1f, 0x1c, 0x65, - 0x4b, 0x60, 0x87, 0x2a, 0x2a, 0x28, 0x02, 0x01, 0x0c, 0x0a, 0x08, 0x16, - 0x0c, 0x37, 0x1a, 0x27, 0x01, 0x02, 0x20, 0x24, 0x25, 0x73, 0x51, 0x40, - 0x51, 0x17, 0x18, 0x12, 0x01, 0x01, 0x95, 0xfc, 0xb2, 0x04, 0x05, 0xfd, - 0x54, 0x42, 0x87, 0x36, 0x2f, 0x41, 0x01, 0x01, 0x53, 0x43, 0x43, 0xa6, - 0x54, 0x36, 0x6a, 0x34, 0x2b, 0x56, 0x2b, 0x01, 0x5e, 0xbf, 0x62, 0x47, - 0x93, 0x3c, 0x3e, 0x4a, 0x3b, 0x2e, 0x2d, 0x6e, 0x34, 0x02, 0xac, 0x35, - 0x35, 0x00, 0x00, 0x01, 0x00, 0x7f, 0xff, 0xec, 0x04, 0x60, 0x05, 0xc5, - 0x00, 0x4c, 0x00, 0x00, 0x53, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x33, 0x35, 0x23, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x7f, 0x50, 0x42, - 0x49, 0xbe, 0x63, 0x5f, 0xae, 0x43, 0x43, 0x51, 0x01, 0x34, 0x06, 0x48, - 0x3a, 0x3b, 0x98, 0x56, 0x5f, 0xa2, 0x42, 0x3b, 0x48, 0x50, 0x41, 0x40, - 0xa5, 0x54, 0xa8, 0xa8, 0x4e, 0x9c, 0x3f, 0x3f, 0x4e, 0x4b, 0x3e, 0x3d, - 0x9c, 0x50, 0x51, 0x92, 0x38, 0x38, 0x46, 0x06, 0x34, 0x01, 0x50, 0x41, - 0x41, 0xa8, 0x58, 0x5c, 0xb0, 0x44, 0x45, 0x53, 0x31, 0x2a, 0x29, 0x6e, - 0x3c, 0x42, 0x76, 0x2c, 0x2c, 0x32, 0x01, 0x82, 0x63, 0x92, 0x33, 0x38, - 0x36, 0x39, 0x36, 0x36, 0x9e, 0x65, 0x59, 0x8a, 0x2f, 0x2f, 0x31, 0x2a, - 0x2f, 0x2a, 0x7f, 0x5a, 0x63, 0x81, 0x26, 0x25, 0x1d, 0x01, 0x38, 0x01, - 0x1d, 0x24, 0x24, 0x79, 0x5d, 0x5b, 0x80, 0x28, 0x28, 0x25, 0x2d, 0x2c, - 0x2d, 0x82, 0x54, 0x5f, 0x95, 0x34, 0x33, 0x37, 0x2d, 0x30, 0x31, 0x95, - 0x67, 0x47, 0x6f, 0x29, 0x2a, 0x39, 0x11, 0x0f, 0x36, 0x2b, 0x2c, 0x79, - 0xff, 0xff, 0x00, 0xcd, 0xfe, 0xcb, 0x04, 0x1b, 0x00, 0x00, 0x04, 0x27, - 0x00, 0x66, 0x00, 0x0e, 0xff, 0x01, 0x00, 0x06, 0x00, 0x66, 0x0e, 0x00, - 0x00, 0x01, 0x02, 0x0f, 0x04, 0x7f, 0x02, 0x9d, 0x06, 0x00, 0x00, 0x0c, - 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, - 0x27, 0x26, 0x26, 0x02, 0x0f, 0x36, 0x02, 0x2c, 0x2a, 0x25, 0x19, 0x26, - 0x0d, 0x0e, 0x0e, 0x05, 0x99, 0x67, 0x69, 0x48, 0x77, 0x39, 0x20, 0x1c, - 0x3e, 0x21, 0x24, 0x51, 0xff, 0xff, 0x03, 0x24, 0xff, 0xfa, 0x05, 0x55, - 0x00, 0x70, 0x04, 0x27, 0x00, 0x60, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x07, - 0x00, 0x60, 0x02, 0x92, 0x00, 0x00, 0x00, 0x02, 0x01, 0x23, 0x02, 0x9d, - 0x04, 0x0b, 0x05, 0xb2, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x00, 0x41, 0x11, - 0x23, 0x01, 0x15, 0x21, 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x01, 0x37, - 0x11, 0x03, 0x59, 0x42, 0xfe, 0x0c, 0x01, 0xfe, 0x38, 0xb2, 0xfd, 0x63, - 0x01, 0x76, 0x3d, 0x03, 0x9a, 0x02, 0x18, 0xfd, 0xd7, 0x20, 0xcc, 0xcc, - 0x31, 0x01, 0x93, 0x52, 0xfe, 0x1b, 0x00, 0x01, 0x01, 0x59, 0x02, 0x8b, - 0x03, 0xc0, 0x05, 0xba, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, - 0x11, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x11, 0x33, 0x11, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x01, 0x85, 0x2c, 0x37, 0x0c, 0x2c, 0x21, 0x21, - 0x59, 0x39, 0x3c, 0x58, 0x1e, 0x1e, 0x1e, 0x01, 0x35, 0x01, 0x26, 0x25, - 0x25, 0x6c, 0x47, 0x31, 0x52, 0x21, 0x22, 0x34, 0x13, 0x05, 0xb0, 0xfc, - 0xdb, 0x02, 0x14, 0x30, 0x55, 0x20, 0x1f, 0x26, 0x23, 0x21, 0x21, 0x5e, - 0x39, 0xfd, 0xfe, 0x01, 0xfc, 0x45, 0x71, 0x29, 0x28, 0x2c, 0x1b, 0x17, - 0x17, 0x40, 0x25, 0x00, 0x00, 0x01, 0x00, 0x76, 0xff, 0xeb, 0x04, 0x32, - 0x05, 0xc4, 0x00, 0x37, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, 0x21, 0x35, - 0x21, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x35, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x23, 0x15, - 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x35, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x35, 0x03, 0x3d, 0xfe, 0x3b, 0x01, 0xc5, 0xfe, 0x3b, 0x01, 0x41, - 0x3d, 0x3c, 0xb1, 0x71, 0x39, 0x6e, 0x36, 0x37, 0x6d, 0x39, 0x7c, 0xc4, - 0x44, 0x44, 0x4a, 0x01, 0xcc, 0xcc, 0xcc, 0xcc, 0x01, 0x4a, 0x45, 0x45, - 0xc4, 0x7c, 0x38, 0x6d, 0x36, 0x36, 0x6d, 0x38, 0x71, 0xb0, 0x3d, 0x3e, - 0x42, 0x01, 0x02, 0x48, 0x37, 0xbf, 0x38, 0x26, 0x6e, 0xb7, 0x42, 0x42, - 0x49, 0x13, 0x10, 0x3a, 0x0e, 0x11, 0x53, 0x4a, 0x4a, 0xcb, 0x78, 0x24, - 0x38, 0xbf, 0x37, 0x32, 0x78, 0xcc, 0x4a, 0x4a, 0x53, 0x10, 0x0f, 0x39, - 0x11, 0x11, 0x4b, 0x43, 0x42, 0xb8, 0x6d, 0x32, 0x00, 0x04, 0x00, 0x40, - 0xff, 0xeb, 0x04, 0x9b, 0x05, 0xc5, 0x00, 0x33, 0x00, 0x4d, 0x00, 0x67, - 0x00, 0x6b, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x13, 0x15, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x35, - 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x05, 0x01, 0x27, 0x01, 0x02, 0x04, 0x34, 0x04, 0x19, 0x14, 0x14, 0x39, - 0x24, 0x2f, 0x44, 0x16, 0x17, 0x16, 0x01, 0x17, 0x16, 0x16, 0x44, 0x2e, - 0x22, 0x37, 0x14, 0x17, 0x1c, 0x04, 0x34, 0x01, 0x21, 0x1c, 0x1d, 0x4f, - 0x2e, 0x3a, 0x57, 0x1d, 0x1e, 0x1f, 0x01, 0x01, 0x1f, 0x1e, 0x1e, 0x58, - 0x3a, 0x2e, 0x4d, 0x1d, 0x1c, 0x21, 0xc2, 0x01, 0x1d, 0x1e, 0x1d, 0x58, - 0x3b, 0x3b, 0x58, 0x1d, 0x1c, 0x1e, 0x01, 0x1d, 0x1d, 0x1d, 0x58, 0x3b, - 0x3b, 0x58, 0x1d, 0x1d, 0x1d, 0x35, 0x15, 0x16, 0x15, 0x44, 0x31, 0x31, - 0x45, 0x16, 0x15, 0x13, 0x01, 0x01, 0x14, 0x15, 0x16, 0x44, 0x30, 0x30, - 0x45, 0x15, 0x16, 0x15, 0xfe, 0x6f, 0x02, 0x17, 0x33, 0xfd, 0xea, 0x03, - 0xf6, 0x21, 0x3a, 0x15, 0x16, 0x19, 0x2f, 0x24, 0x24, 0x56, 0x27, 0x4d, - 0x27, 0x56, 0x25, 0x24, 0x30, 0x14, 0x13, 0x17, 0x48, 0x2f, 0x36, 0x57, - 0x1f, 0x1e, 0x22, 0x39, 0x2b, 0x2c, 0x6b, 0x32, 0x4d, 0x32, 0x6a, 0x2b, - 0x2c, 0x38, 0x21, 0x1d, 0x1d, 0x4e, 0xfd, 0x9c, 0x4e, 0x34, 0x6a, 0x2b, - 0x2c, 0x37, 0x37, 0x2c, 0x2b, 0x6b, 0x33, 0x4e, 0x34, 0x6a, 0x2c, 0x2b, - 0x37, 0x37, 0x2b, 0x2c, 0x6b, 0x81, 0x4e, 0x29, 0x57, 0x24, 0x23, 0x2e, - 0x2d, 0x23, 0x24, 0x57, 0x2a, 0x4e, 0x29, 0x56, 0x24, 0x24, 0x2e, 0x2e, - 0x24, 0x23, 0x57, 0x6b, 0x04, 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x00, 0x02, - 0x01, 0x04, 0xff, 0xeb, 0x03, 0xcd, 0x06, 0x01, 0x00, 0x2c, 0x00, 0x40, - 0x00, 0x00, 0x45, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x11, 0x06, 0x06, - 0x07, 0x15, 0x36, 0x36, 0x37, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x03, - 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x03, 0x77, 0x51, 0x6c, 0x20, - 0x21, 0x1b, 0x01, 0x53, 0x87, 0x30, 0x30, 0x36, 0x01, 0x12, 0x17, 0x17, - 0x4d, 0x3b, 0x2f, 0x45, 0x18, 0x19, 0x1f, 0x09, 0x09, 0x07, 0x42, 0x91, - 0x50, 0x4f, 0x92, 0x42, 0x01, 0x22, 0x28, 0x27, 0x80, 0xbc, 0x14, 0x24, - 0x11, 0x37, 0x27, 0x30, 0x3a, 0x10, 0x0f, 0x0a, 0x01, 0x2c, 0x29, 0x29, - 0x73, 0x15, 0x36, 0x04, 0x49, 0x38, 0x38, 0x8a, 0x47, 0x6c, 0x30, 0x89, - 0x54, 0x54, 0xc1, 0x68, 0x20, 0x2e, 0x6f, 0x30, 0x2f, 0x40, 0x24, 0x1e, - 0x1f, 0x50, 0x2a, 0x2a, 0x53, 0x23, 0xfd, 0xb3, 0x21, 0x25, 0x02, 0x35, - 0x02, 0x22, 0x1f, 0x50, 0x53, 0xa0, 0x3f, 0x3f, 0x50, 0x02, 0x6a, 0x02, - 0x2e, 0x36, 0x9d, 0x36, 0x1b, 0x21, 0x38, 0x28, 0x28, 0x5a, 0x24, 0x22, - 0x5d, 0xac, 0x4b, 0x4c, 0x7d, 0x00, 0x00, 0x04, 0x00, 0x8f, 0x00, 0x00, - 0x04, 0x67, 0x05, 0xc0, 0x00, 0x09, 0x00, 0x23, 0x00, 0x3d, 0x00, 0x41, - 0x00, 0x00, 0x61, 0x11, 0x23, 0x13, 0x01, 0x23, 0x11, 0x33, 0x03, 0x01, - 0x13, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x17, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x01, 0x35, 0x21, 0x15, 0x02, 0x94, 0x2e, 0x05, - 0xfe, 0x50, 0x2c, 0x2f, 0x05, 0x01, 0xaf, 0x94, 0x0e, 0x12, 0x12, 0x49, - 0x3b, 0x3a, 0x47, 0x14, 0x13, 0x0d, 0x0e, 0x13, 0x14, 0x47, 0x3a, 0x2c, - 0x44, 0x16, 0x15, 0x1a, 0x35, 0x07, 0x0d, 0x0d, 0x33, 0x2c, 0x2d, 0x33, - 0x0d, 0x0d, 0x07, 0x0e, 0x1c, 0x0e, 0x2a, 0x1e, 0x2d, 0x34, 0x0c, 0x0d, - 0x07, 0x01, 0x32, 0xfe, 0xac, 0x05, 0xb0, 0xfa, 0xd5, 0x05, 0x2b, 0xfa, - 0x50, 0x05, 0x36, 0xfa, 0xca, 0x04, 0x71, 0x75, 0x2a, 0x70, 0x34, 0x35, - 0x4b, 0x49, 0x35, 0x34, 0x72, 0x2a, 0x75, 0x2a, 0x73, 0x35, 0x34, 0x49, - 0x31, 0x2c, 0x29, 0x7f, 0xbf, 0x75, 0x1e, 0x5f, 0x2e, 0x2d, 0x41, 0x41, - 0x2d, 0x2e, 0x5f, 0x1e, 0x75, 0x27, 0x89, 0x31, 0x19, 0x1e, 0x40, 0x2d, - 0x2d, 0x5f, 0xfd, 0xe8, 0x36, 0x36, 0x00, 0x02, 0x00, 0x99, 0xff, 0xec, - 0x04, 0x94, 0x04, 0x4e, 0x00, 0x21, 0x00, 0x2a, 0x00, 0x00, 0x65, 0x27, - 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x11, 0x21, 0x35, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, - 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x01, 0x32, 0x16, 0x17, - 0x11, 0x21, 0x11, 0x36, 0x36, 0x04, 0x17, 0x02, 0x52, 0xb9, 0x65, 0x4e, - 0x89, 0x3a, 0x03, 0x00, 0x01, 0x48, 0x41, 0x41, 0xb5, 0x6f, 0x49, 0x86, - 0x3a, 0x3a, 0x60, 0x22, 0x22, 0x25, 0x4f, 0x47, 0x46, 0xbf, 0x71, 0x64, - 0xb9, 0xfe, 0xe3, 0x4d, 0x86, 0x38, 0xfd, 0xe4, 0x39, 0x89, 0x5e, 0x68, - 0x39, 0x42, 0x01, 0x01, 0x3a, 0x33, 0x01, 0x48, 0x2f, 0x68, 0xc3, 0x4c, - 0x4b, 0x5b, 0x2c, 0x27, 0x28, 0x6a, 0x3e, 0x3f, 0x89, 0x46, 0x6d, 0xca, - 0x4e, 0x4e, 0x5e, 0x3f, 0x03, 0xc5, 0x3e, 0x33, 0xfe, 0xe2, 0x01, 0x15, - 0x35, 0x45, 0x00, 0x05, 0x00, 0x2a, 0xff, 0xf6, 0x04, 0x6e, 0x05, 0xb0, - 0x00, 0x06, 0x00, 0x36, 0x00, 0x4e, 0x00, 0x66, 0x00, 0x6a, 0x00, 0x00, - 0x41, 0x11, 0x23, 0x05, 0x15, 0x37, 0x11, 0x05, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0x01, - 0x3a, 0x08, 0xfe, 0xf8, 0xe0, 0x03, 0x4f, 0x29, 0x21, 0x21, 0x54, 0x2b, - 0x2c, 0x53, 0x21, 0x21, 0x28, 0x17, 0x13, 0x13, 0x32, 0x1c, 0x1f, 0x3b, - 0x16, 0x17, 0x1a, 0x2e, 0x25, 0x25, 0x5b, 0x2d, 0x2d, 0x5b, 0x25, 0x24, - 0x2d, 0x1b, 0x16, 0x16, 0x3a, 0x20, 0x1c, 0x32, 0x13, 0x13, 0x18, 0x1b, - 0x26, 0x1e, 0x1e, 0x48, 0x24, 0x23, 0x49, 0x1f, 0x1e, 0x26, 0x26, 0x1e, - 0x1e, 0x49, 0x23, 0x22, 0x4a, 0x1e, 0x1e, 0x27, 0x15, 0x22, 0x1b, 0x1a, - 0x42, 0x20, 0x20, 0x43, 0x1a, 0x1b, 0x22, 0x21, 0x1a, 0x1b, 0x41, 0x22, - 0x20, 0x42, 0x1b, 0x1b, 0x22, 0xfc, 0xfe, 0x02, 0x17, 0x33, 0xfd, 0xea, - 0x02, 0xe8, 0x02, 0xc8, 0x57, 0x30, 0x49, 0xfd, 0x76, 0xd9, 0x31, 0x48, - 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x48, 0x31, 0x20, 0x34, 0x14, 0x15, - 0x1c, 0x09, 0x09, 0x1f, 0x16, 0x16, 0x3a, 0x24, 0x34, 0x4b, 0x18, 0x17, - 0x17, 0x17, 0x18, 0x18, 0x4b, 0x33, 0x24, 0x39, 0x16, 0x16, 0x1f, 0x09, - 0x09, 0x1c, 0x15, 0x14, 0x35, 0xfe, 0xcb, 0x28, 0x3b, 0x12, 0x13, 0x11, - 0x11, 0x12, 0x12, 0x3b, 0x29, 0x29, 0x3a, 0x13, 0x13, 0x12, 0x12, 0x13, - 0x13, 0x3a, 0x01, 0x2d, 0x25, 0x35, 0x12, 0x12, 0x11, 0x11, 0x12, 0x11, - 0x36, 0x25, 0x25, 0x38, 0x12, 0x13, 0x12, 0x13, 0x12, 0x13, 0x38, 0xfe, - 0x4f, 0x04, 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x05, 0x00, 0x4f, 0xff, 0xf6, - 0x04, 0xbd, 0x05, 0xba, 0x00, 0x4c, 0x00, 0x7c, 0x00, 0x94, 0x00, 0xac, - 0x00, 0xb0, 0x00, 0x00, 0x53, 0x15, 0x33, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x33, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, - 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, - 0x01, 0xfa, 0x40, 0x25, 0x4d, 0x20, 0x20, 0x28, 0x21, 0x1c, 0x1b, 0x46, - 0x24, 0x27, 0x48, 0x1d, 0x1d, 0x25, 0x04, 0x31, 0x04, 0x2e, 0x23, 0x23, - 0x5a, 0x31, 0x2d, 0x57, 0x22, 0x22, 0x2b, 0x1b, 0x16, 0x16, 0x3c, 0x20, - 0x1d, 0x34, 0x14, 0x14, 0x19, 0x26, 0x21, 0x20, 0x54, 0x2c, 0x2e, 0x52, - 0x21, 0x20, 0x2a, 0x03, 0x2f, 0x04, 0x21, 0x1a, 0x1a, 0x41, 0x25, 0x22, - 0x42, 0x1a, 0x19, 0x1f, 0x27, 0x1d, 0x1d, 0x46, 0x22, 0x03, 0x6e, 0x29, - 0x21, 0x21, 0x54, 0x2b, 0x2c, 0x53, 0x21, 0x21, 0x28, 0x17, 0x13, 0x13, - 0x32, 0x1c, 0x1f, 0x3b, 0x16, 0x17, 0x1a, 0x2e, 0x25, 0x25, 0x5b, 0x2d, - 0x2d, 0x5b, 0x25, 0x24, 0x2d, 0x1b, 0x16, 0x16, 0x3a, 0x20, 0x1c, 0x32, - 0x13, 0x13, 0x18, 0x1b, 0x26, 0x1e, 0x1e, 0x48, 0x24, 0x23, 0x49, 0x1f, - 0x1e, 0x26, 0x26, 0x1e, 0x1e, 0x49, 0x23, 0x22, 0x4a, 0x1e, 0x1e, 0x27, - 0x15, 0x22, 0x1b, 0x1a, 0x42, 0x20, 0x20, 0x43, 0x1a, 0x1b, 0x22, 0x21, - 0x1a, 0x1b, 0x41, 0x22, 0x20, 0x42, 0x1b, 0x1b, 0x22, 0xfd, 0x1d, 0x02, - 0x17, 0x33, 0xfd, 0xea, 0x04, 0x69, 0x2c, 0x01, 0x0d, 0x11, 0x10, 0x3a, - 0x2d, 0x28, 0x3c, 0x13, 0x13, 0x12, 0x14, 0x14, 0x15, 0x3c, 0x29, 0x33, - 0x4d, 0x1a, 0x1a, 0x19, 0x18, 0x1a, 0x19, 0x4b, 0x32, 0x27, 0x39, 0x15, - 0x16, 0x1b, 0x07, 0x09, 0x1c, 0x13, 0x14, 0x34, 0x21, 0x30, 0x4a, 0x19, - 0x19, 0x18, 0x19, 0x19, 0x1a, 0x48, 0x30, 0x26, 0x39, 0x13, 0x13, 0x13, - 0x12, 0x13, 0x12, 0x39, 0x25, 0x28, 0x36, 0x11, 0x11, 0x0f, 0x01, 0xfd, - 0xa6, 0x31, 0x48, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x48, 0x31, 0x20, - 0x34, 0x14, 0x15, 0x1c, 0x09, 0x09, 0x1f, 0x16, 0x16, 0x3a, 0x24, 0x34, - 0x4b, 0x18, 0x17, 0x17, 0x17, 0x18, 0x18, 0x4b, 0x33, 0x24, 0x39, 0x16, - 0x16, 0x1f, 0x09, 0x09, 0x1c, 0x15, 0x14, 0x35, 0xfe, 0xcb, 0x28, 0x3b, - 0x12, 0x13, 0x11, 0x11, 0x12, 0x12, 0x3b, 0x29, 0x29, 0x3a, 0x13, 0x13, - 0x12, 0x12, 0x13, 0x13, 0x3a, 0x01, 0x2d, 0x25, 0x35, 0x12, 0x12, 0x11, - 0x11, 0x12, 0x11, 0x36, 0x25, 0x25, 0x38, 0x12, 0x13, 0x12, 0x13, 0x12, - 0x13, 0x38, 0xfe, 0x46, 0x04, 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x00, 0x05, - 0x00, 0x4e, 0xff, 0xfa, 0x04, 0xaf, 0x05, 0xb1, 0x00, 0x2d, 0x00, 0x5d, - 0x00, 0x75, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x00, 0x53, 0x17, 0x36, 0x36, - 0x17, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x37, 0x21, 0x35, 0x21, 0x01, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0x60, 0x25, - 0x27, 0x53, 0x31, 0x29, 0x48, 0x1b, 0x1b, 0x20, 0x1a, 0x19, 0x19, 0x47, - 0x2d, 0x4a, 0x62, 0x0d, 0x30, 0x06, 0x29, 0x1e, 0x1f, 0x4f, 0x2e, 0x36, - 0x58, 0x20, 0x1f, 0x22, 0x26, 0x21, 0x21, 0x58, 0x32, 0x2b, 0x52, 0x26, - 0x22, 0x01, 0x69, 0xfe, 0x6e, 0x04, 0x10, 0x29, 0x21, 0x21, 0x54, 0x2b, - 0x2c, 0x53, 0x21, 0x21, 0x28, 0x17, 0x13, 0x13, 0x32, 0x1c, 0x1f, 0x3b, - 0x16, 0x17, 0x1a, 0x2e, 0x25, 0x25, 0x5b, 0x2d, 0x2d, 0x5b, 0x25, 0x24, - 0x2d, 0x1b, 0x16, 0x16, 0x3a, 0x20, 0x1c, 0x32, 0x13, 0x13, 0x18, 0x1b, - 0x26, 0x1e, 0x1e, 0x48, 0x24, 0x23, 0x49, 0x1f, 0x1e, 0x26, 0x26, 0x1e, - 0x1e, 0x49, 0x23, 0x22, 0x4a, 0x1e, 0x1e, 0x27, 0x15, 0x22, 0x1b, 0x1a, - 0x42, 0x20, 0x20, 0x43, 0x1a, 0x1b, 0x22, 0x21, 0x1a, 0x1b, 0x41, 0x22, - 0x20, 0x42, 0x1b, 0x1b, 0x22, 0xfd, 0x1a, 0x02, 0x17, 0x33, 0xfd, 0xea, - 0x04, 0x59, 0x0b, 0x1c, 0x1a, 0x01, 0x19, 0x17, 0x17, 0x44, 0x2b, 0x2d, - 0x48, 0x19, 0x19, 0x1a, 0x01, 0x51, 0x48, 0x2d, 0x49, 0x19, 0x1a, 0x1c, - 0x21, 0x1f, 0x1f, 0x57, 0x36, 0x33, 0x54, 0x1d, 0x1d, 0x20, 0x15, 0x14, - 0xfe, 0x2e, 0xfc, 0x62, 0x31, 0x48, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, - 0x48, 0x31, 0x20, 0x34, 0x14, 0x15, 0x1c, 0x09, 0x09, 0x1f, 0x16, 0x16, - 0x3a, 0x24, 0x34, 0x4b, 0x18, 0x17, 0x17, 0x17, 0x18, 0x18, 0x4b, 0x33, - 0x24, 0x39, 0x16, 0x16, 0x1f, 0x09, 0x09, 0x1c, 0x15, 0x14, 0x35, 0xfe, - 0xcb, 0x28, 0x3b, 0x12, 0x13, 0x11, 0x11, 0x12, 0x12, 0x3b, 0x29, 0x29, - 0x3a, 0x13, 0x13, 0x12, 0x12, 0x13, 0x13, 0x3a, 0x01, 0x2d, 0x25, 0x35, - 0x12, 0x12, 0x11, 0x11, 0x12, 0x11, 0x36, 0x25, 0x25, 0x38, 0x12, 0x13, - 0x12, 0x13, 0x12, 0x13, 0x38, 0xfe, 0x4b, 0x04, 0x72, 0x1f, 0xfb, 0x8e, - 0x00, 0x05, 0x00, 0x2e, 0xff, 0xf6, 0x04, 0x76, 0x05, 0xb1, 0x00, 0x06, - 0x00, 0x36, 0x00, 0x4e, 0x00, 0x66, 0x00, 0x6a, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x21, 0x01, 0x33, 0x05, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x03, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x01, 0x01, 0x27, 0x01, 0x02, 0x34, 0xfd, - 0xfa, 0x01, 0xd2, 0xfe, 0xa8, 0x32, 0x03, 0x87, 0x29, 0x21, 0x21, 0x54, - 0x2b, 0x2c, 0x53, 0x21, 0x21, 0x28, 0x17, 0x13, 0x13, 0x32, 0x1c, 0x1f, - 0x3b, 0x16, 0x17, 0x1a, 0x2e, 0x25, 0x25, 0x5b, 0x2d, 0x2d, 0x5b, 0x25, - 0x24, 0x2d, 0x1b, 0x16, 0x16, 0x3a, 0x20, 0x1c, 0x32, 0x13, 0x13, 0x18, - 0x1b, 0x26, 0x1e, 0x1e, 0x48, 0x24, 0x23, 0x49, 0x1f, 0x1e, 0x26, 0x26, - 0x1e, 0x1e, 0x49, 0x23, 0x22, 0x4a, 0x1e, 0x1e, 0x27, 0x15, 0x22, 0x1b, - 0x1a, 0x42, 0x20, 0x20, 0x43, 0x1a, 0x1b, 0x22, 0x21, 0x1a, 0x1b, 0x41, - 0x22, 0x20, 0x42, 0x1b, 0x1b, 0x22, 0xfc, 0xeb, 0x02, 0x17, 0x33, 0xfd, - 0xea, 0x05, 0x94, 0x1d, 0x2d, 0xfd, 0x67, 0xdc, 0x31, 0x48, 0x18, 0x18, - 0x18, 0x18, 0x18, 0x18, 0x48, 0x31, 0x20, 0x34, 0x14, 0x15, 0x1c, 0x09, - 0x09, 0x1f, 0x16, 0x16, 0x3a, 0x24, 0x34, 0x4b, 0x18, 0x17, 0x17, 0x17, - 0x18, 0x18, 0x4b, 0x33, 0x24, 0x39, 0x16, 0x16, 0x1f, 0x09, 0x09, 0x1c, - 0x15, 0x14, 0x35, 0xfe, 0xcb, 0x28, 0x3b, 0x12, 0x13, 0x11, 0x11, 0x12, - 0x12, 0x3b, 0x29, 0x29, 0x3a, 0x13, 0x13, 0x12, 0x12, 0x13, 0x13, 0x3a, - 0x01, 0x2d, 0x25, 0x35, 0x12, 0x12, 0x11, 0x11, 0x12, 0x11, 0x36, 0x25, - 0x25, 0x38, 0x12, 0x13, 0x12, 0x13, 0x12, 0x13, 0x38, 0xfe, 0x4f, 0x04, - 0x72, 0x1f, 0xfb, 0x8e, 0x00, 0x02, 0x00, 0x7e, 0xff, 0xeb, 0x04, 0x46, - 0x05, 0xfb, 0x00, 0x2c, 0x00, 0x49, 0x00, 0x00, 0x41, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x02, 0x27, 0x26, - 0x26, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x12, 0x15, 0x26, 0x26, 0x07, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x15, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x02, 0x59, - 0x6b, 0xae, 0x3e, 0x3e, 0x45, 0x01, 0x01, 0x44, 0x3e, 0x3d, 0xae, 0x6b, - 0x56, 0x8c, 0x37, 0x36, 0x51, 0x1a, 0x1a, 0x1b, 0x46, 0x57, 0x34, 0xb1, - 0x79, 0x5e, 0xac, 0x42, 0x1d, 0x40, 0x90, 0x59, 0x6b, 0x98, 0x32, 0x4e, - 0x46, 0x4b, 0xe2, 0x88, 0x47, 0x88, 0x3b, 0x3a, 0x5a, 0x19, 0x01, 0x16, - 0x17, 0x18, 0x47, 0x31, 0x31, 0x7d, 0x4d, 0x5e, 0x99, 0x37, 0x37, 0x3c, - 0x01, 0x3e, 0x37, 0x37, 0x9a, 0x03, 0xfe, 0x4f, 0x44, 0x44, 0xb6, 0x67, - 0x2a, 0x66, 0xb7, 0x44, 0x44, 0x50, 0x37, 0x30, 0x30, 0x80, 0x48, 0x48, - 0x9a, 0x4a, 0x48, 0xbc, 0x01, 0x47, 0x84, 0x4e, 0x68, 0x01, 0x01, 0x41, - 0x45, 0x29, 0x3c, 0x3e, 0x58, 0x46, 0x6b, 0xfe, 0xc5, 0x6f, 0x70, 0x7d, - 0x36, 0x27, 0x25, 0x25, 0x6b, 0x45, 0x31, 0x42, 0x8b, 0x42, 0x43, 0x76, - 0x2c, 0x2d, 0x34, 0x48, 0x3e, 0x3d, 0xa2, 0x5a, 0x2a, 0x5a, 0xa2, 0x3d, - 0x3d, 0x48, 0x00, 0x01, 0x00, 0xed, 0xfe, 0xf0, 0x03, 0xe0, 0x05, 0xb0, - 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x03, 0xe0, 0xfd, 0x0d, 0x33, 0x02, 0x8d, 0xfe, 0xf0, 0x06, 0xc0, 0xf9, - 0x40, 0x06, 0x8a, 0xf9, 0x76, 0x00, 0x00, 0x01, 0x00, 0x3c, 0xfe, 0xf2, - 0x04, 0x8f, 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x35, 0x01, 0x21, - 0x35, 0x21, 0x15, 0x01, 0x01, 0x15, 0x21, 0x35, 0x21, 0x02, 0xcf, 0xfd, - 0xb8, 0x03, 0xce, 0xfb, 0xe7, 0x02, 0x54, 0xfd, 0xac, 0x04, 0x53, 0xfb, - 0xf9, 0x02, 0x44, 0x18, 0x03, 0x1f, 0x35, 0x2c, 0xfc, 0xcc, 0xfc, 0xcd, - 0x2b, 0x36, 0x00, 0x01, 0x00, 0xb0, 0x00, 0x00, 0x04, 0x19, 0x05, 0xb0, - 0x00, 0x0a, 0x00, 0x00, 0x65, 0x03, 0x23, 0x15, 0x33, 0x13, 0x33, 0x01, - 0x23, 0x01, 0x07, 0x01, 0xfe, 0xab, 0xa3, 0x7c, 0xee, 0x34, 0x01, 0xcb, - 0x3a, 0xfe, 0x86, 0x32, 0xef, 0x01, 0xd2, 0x36, 0xfd, 0x75, 0x05, 0xb0, - 0xfb, 0x3f, 0x9f, 0x00, 0x00, 0x03, 0x00, 0x23, 0xff, 0xea, 0x04, 0xac, - 0x04, 0x4f, 0x00, 0x40, 0x00, 0x66, 0x00, 0x8c, 0x00, 0x00, 0x41, 0x35, - 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x07, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x27, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, - 0x26, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x05, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, - 0x37, 0x36, 0x36, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x15, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x06, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x04, 0xac, 0x09, 0x0b, 0x0b, - 0x27, 0x1f, 0x1f, 0x57, 0x3b, 0x2a, 0x48, 0x1e, 0x1e, 0x32, 0x13, 0x14, - 0x1e, 0x0a, 0x0f, 0x33, 0x24, 0x25, 0x63, 0x3f, 0x3b, 0x57, 0x1f, 0x1f, - 0x27, 0x0b, 0x0c, 0x09, 0x09, 0x0c, 0x0b, 0x27, 0x1f, 0x1f, 0x58, 0x3b, - 0x3f, 0x62, 0x25, 0x25, 0x32, 0x0f, 0x0f, 0x33, 0x25, 0x25, 0x63, 0x3f, - 0x3b, 0x57, 0x1f, 0x1f, 0x27, 0x0c, 0x0b, 0x09, 0x35, 0x06, 0x09, 0x09, - 0x1f, 0x19, 0x19, 0x48, 0x31, 0x2a, 0x4a, 0x1e, 0x1e, 0x2f, 0x10, 0x10, - 0x10, 0x01, 0x11, 0x10, 0x10, 0x30, 0x1e, 0x1e, 0x4a, 0x2a, 0x31, 0x48, - 0x19, 0x19, 0x1e, 0x09, 0x09, 0x06, 0xfb, 0xe1, 0x06, 0x09, 0x09, 0x1f, - 0x19, 0x19, 0x48, 0x31, 0x2a, 0x49, 0x1e, 0x1e, 0x30, 0x10, 0x10, 0x10, - 0x10, 0x10, 0x10, 0x2f, 0x1e, 0x1f, 0x48, 0x2a, 0x32, 0x48, 0x19, 0x19, - 0x1f, 0x09, 0x09, 0x06, 0x02, 0x05, 0x30, 0x29, 0x71, 0x3c, 0x3b, 0x75, - 0x2e, 0x2d, 0x39, 0x01, 0x24, 0x1e, 0x1e, 0x51, 0x2d, 0x2d, 0x5f, 0x2d, - 0x43, 0x90, 0x3b, 0x3b, 0x4d, 0x01, 0x38, 0x2d, 0x2e, 0x75, 0x3b, 0x3c, - 0x71, 0x29, 0x30, 0x2a, 0x70, 0x3c, 0x3c, 0x75, 0x2d, 0x2e, 0x39, 0x01, - 0x01, 0x4d, 0x3c, 0x3b, 0x90, 0x43, 0x43, 0x90, 0x3b, 0x3c, 0x4d, 0x01, - 0x01, 0x39, 0x2e, 0x2e, 0x74, 0x3c, 0x3c, 0x71, 0x59, 0x30, 0x21, 0x62, - 0x36, 0x36, 0x6c, 0x2a, 0x2b, 0x35, 0x01, 0x36, 0x2b, 0x2b, 0x6b, 0x36, - 0x36, 0x62, 0x22, 0x2a, 0x22, 0x63, 0x36, 0x35, 0x6b, 0x2b, 0x2a, 0x36, - 0x34, 0x2b, 0x2b, 0x6b, 0x36, 0x36, 0x61, 0x51, 0x30, 0x21, 0x62, 0x36, - 0x36, 0x6b, 0x2b, 0x2a, 0x35, 0x01, 0x01, 0x35, 0x2a, 0x2b, 0x6b, 0x36, - 0x36, 0x62, 0x22, 0x2a, 0x22, 0x62, 0x36, 0x36, 0x6b, 0x2b, 0x2b, 0x36, - 0x01, 0x35, 0x2b, 0x2a, 0x6b, 0x36, 0x36, 0x62, 0x00, 0x01, 0x00, 0xf0, - 0xfe, 0x4b, 0x03, 0xdc, 0x06, 0x15, 0x00, 0x28, 0x00, 0x00, 0x45, 0x31, - 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x32, 0x16, 0x17, 0x37, 0x26, - 0x26, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x07, 0x11, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x02, 0x7b, 0x1d, 0x1c, 0x1b, 0x55, 0x3a, 0x1e, 0x3b, - 0x1d, 0x08, 0x20, 0x40, 0x1f, 0x47, 0x69, 0x22, 0x23, 0x22, 0x01, 0x01, - 0x19, 0x1b, 0x1c, 0x56, 0x3f, 0x19, 0x31, 0x18, 0x0d, 0x1c, 0x36, 0x1d, - 0x4b, 0x6b, 0x22, 0x22, 0x21, 0x59, 0x05, 0x2d, 0x35, 0x60, 0x25, 0x25, - 0x2b, 0x01, 0x07, 0x08, 0x34, 0x09, 0x08, 0x01, 0x33, 0x2b, 0x2c, 0x74, - 0x42, 0xfa, 0xd3, 0x36, 0x6a, 0x29, 0x2a, 0x33, 0x0a, 0x08, 0x34, 0x08, - 0x0c, 0x3b, 0x31, 0x30, 0x7d, 0x00, 0x00, 0x02, 0x00, 0xa9, 0x00, 0x00, - 0x04, 0x25, 0x05, 0xb0, 0x00, 0x05, 0x00, 0x0d, 0x00, 0x00, 0x41, 0x01, - 0x01, 0x33, 0x01, 0x01, 0x07, 0x17, 0x01, 0x01, 0x07, 0x27, 0x01, 0x01, - 0x02, 0x4e, 0xfe, 0x5b, 0x01, 0xa5, 0x33, 0x01, 0xa4, 0xfe, 0x5c, 0x1a, - 0x1a, 0x01, 0x60, 0xfe, 0xa5, 0x1f, 0x20, 0xfe, 0xa7, 0x01, 0x5d, 0x05, - 0xb0, 0xfd, 0x27, 0xfd, 0x29, 0x02, 0xd7, 0x02, 0xd9, 0x41, 0x2f, 0xfd, - 0x97, 0xfd, 0x9e, 0x37, 0x38, 0x02, 0x61, 0x02, 0x68, 0x00, 0x00, 0x16, - 0x00, 0x5c, 0x00, 0x0a, 0x04, 0x87, 0x04, 0x06, 0x00, 0x0d, 0x00, 0x1c, - 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x40, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x52, - 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f, - 0x00, 0x73, 0x00, 0x7c, 0x00, 0x80, 0x00, 0x84, 0x00, 0x88, 0x00, 0x8c, - 0x00, 0x90, 0x00, 0x94, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, 0x23, 0x22, - 0x26, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x23, 0x11, 0x33, - 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x16, 0x16, 0x15, 0x14, 0x06, 0x25, - 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x33, 0x32, - 0x36, 0x25, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, - 0x14, 0x16, 0x33, 0x32, 0x36, 0x01, 0x33, 0x35, 0x23, 0x35, 0x23, 0x05, - 0x33, 0x35, 0x23, 0x15, 0x23, 0x01, 0x33, 0x35, 0x33, 0x35, 0x23, 0x05, - 0x33, 0x15, 0x33, 0x35, 0x23, 0x01, 0x23, 0x15, 0x33, 0x32, 0x36, 0x35, - 0x34, 0x26, 0x03, 0x33, 0x35, 0x23, 0x17, 0x33, 0x35, 0x23, 0x05, 0x33, - 0x35, 0x23, 0x13, 0x33, 0x35, 0x23, 0x17, 0x33, 0x35, 0x23, 0x05, 0x33, - 0x35, 0x23, 0x13, 0x15, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x05, - 0x35, 0x23, 0x15, 0x17, 0x35, 0x23, 0x15, 0x13, 0x35, 0x23, 0x15, 0x05, - 0x35, 0x23, 0x15, 0x17, 0x35, 0x23, 0x15, 0x13, 0x35, 0x23, 0x15, 0x01, - 0xf0, 0x45, 0x39, 0x39, 0x47, 0x46, 0x39, 0x39, 0x46, 0x9f, 0x7a, 0x67, - 0x37, 0x3e, 0x17, 0x17, 0x1c, 0x1c, 0x39, 0xfe, 0xfb, 0x29, 0x23, 0x23, - 0x29, 0x29, 0x24, 0x23, 0x28, 0x02, 0x0e, 0x32, 0x3a, 0x2d, 0x30, 0x3c, - 0x33, 0x1f, 0x1a, 0x17, 0x1e, 0xfc, 0x91, 0xaa, 0x6c, 0x3e, 0x03, 0x81, - 0xaa, 0x3d, 0x6d, 0xfc, 0x7f, 0x3e, 0x6c, 0xaa, 0x03, 0x81, 0x6d, 0x3d, - 0xaa, 0xfe, 0xb2, 0x46, 0x46, 0x1d, 0x1b, 0x1b, 0x87, 0x99, 0x99, 0xdc, - 0x99, 0x99, 0xfe, 0x49, 0x98, 0x98, 0xdb, 0x99, 0x99, 0xdc, 0x99, 0x99, - 0xfe, 0x49, 0x98, 0x98, 0xff, 0x33, 0x21, 0x20, 0x20, 0x21, 0xfe, 0x1e, - 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x04, 0x2b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, - 0x02, 0x25, 0x3e, 0x36, 0x42, 0x42, 0x36, 0x3e, 0x36, 0x42, 0x42, 0xeb, - 0x01, 0x2f, 0x28, 0x2b, 0x15, 0x22, 0x09, 0x08, 0x27, 0x17, 0x2b, 0x2b, - 0x77, 0x3e, 0x26, 0x2b, 0x2b, 0x26, 0x3e, 0x26, 0x2b, 0x2b, 0x0f, 0xd0, - 0xd0, 0x2d, 0x32, 0x2d, 0x2e, 0x1a, 0x18, 0x1e, 0xfe, 0x52, 0x3f, 0x6f, - 0xae, 0xae, 0x6f, 0x03, 0x20, 0x5d, 0x40, 0x40, 0x5d, 0x9d, 0xfd, 0xf1, - 0x5d, 0x18, 0x15, 0x16, 0x1a, 0x01, 0xcf, 0x40, 0x40, 0x40, 0x40, 0x40, - 0xfc, 0x04, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x02, 0x27, 0x53, 0x16, 0x16, - 0x17, 0x10, 0xa5, 0x8a, 0x8a, 0xcf, 0x89, 0x89, 0x01, 0x9f, 0x89, 0x89, - 0xd0, 0x8a, 0x8a, 0xcf, 0x89, 0x89, 0x01, 0x9f, 0x89, 0x89, 0x00, 0x05, - 0x00, 0x0f, 0xfd, 0xd5, 0x04, 0xaf, 0x08, 0x62, 0x00, 0x03, 0x00, 0x2f, - 0x00, 0x33, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x00, 0x41, 0x09, 0x02, 0x05, - 0x23, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x15, 0x23, 0x35, 0x13, - 0x15, 0x33, 0x35, 0x03, 0x15, 0x33, 0x35, 0x02, 0x62, 0xfd, 0xad, 0x02, - 0x53, 0x02, 0x4d, 0xfe, 0x1a, 0xca, 0x08, 0x0b, 0x0a, 0x23, 0x1d, 0x0a, - 0x1b, 0x0c, 0x0c, 0x11, 0x20, 0x25, 0x18, 0x29, 0x02, 0xcb, 0x01, 0x2b, - 0x25, 0x24, 0x61, 0x38, 0x40, 0x66, 0x23, 0x22, 0x25, 0x17, 0x12, 0x12, - 0x2d, 0x16, 0x0b, 0x11, 0x06, 0x06, 0x06, 0xca, 0x5e, 0x04, 0x06, 0x04, - 0x06, 0x52, 0xfc, 0x31, 0xfc, 0x31, 0x03, 0xcf, 0xfb, 0x30, 0x32, 0x13, - 0x13, 0x28, 0x24, 0x0d, 0x27, 0x18, 0x17, 0x33, 0x1a, 0x34, 0x40, 0x30, - 0x37, 0x46, 0x65, 0x21, 0x20, 0x1e, 0x27, 0x24, 0x25, 0x67, 0x40, 0x29, - 0x40, 0x1c, 0x1d, 0x37, 0x1f, 0x10, 0x1d, 0x0f, 0x10, 0x27, 0x74, 0xaa, - 0xaa, 0xfc, 0xac, 0x04, 0x04, 0x0a, 0x89, 0x04, 0x04, 0x00, 0x00, 0x02, - 0x01, 0x69, 0x04, 0xe4, 0x03, 0xa9, 0x06, 0x91, 0x00, 0x06, 0x00, 0x2c, - 0x00, 0x00, 0x41, 0x25, 0x23, 0x05, 0x33, 0x37, 0x17, 0x13, 0x27, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, - 0x36, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, - 0xa9, 0xfe, 0xfe, 0x3c, 0xfe, 0xfe, 0x54, 0xcb, 0xcd, 0x37, 0x33, 0x02, - 0x09, 0x09, 0x09, 0x1c, 0x16, 0x20, 0x31, 0x17, 0x18, 0x33, 0x22, 0x20, - 0x2e, 0x10, 0x10, 0x11, 0x02, 0x33, 0x02, 0x08, 0x09, 0x08, 0x1c, 0x17, - 0x20, 0x31, 0x18, 0x18, 0x33, 0x21, 0x1f, 0x2e, 0x10, 0x10, 0x12, 0x04, - 0xe4, 0xdf, 0xdf, 0xba, 0xba, 0x01, 0x9c, 0x08, 0x12, 0x23, 0x0d, 0x0e, - 0x11, 0x21, 0x14, 0x14, 0x21, 0x1e, 0x16, 0x17, 0x37, 0x1b, 0x08, 0x12, - 0x27, 0x11, 0x10, 0x16, 0x01, 0x01, 0x20, 0x14, 0x14, 0x22, 0x17, 0x14, - 0x13, 0x32, 0x00, 0x02, 0x01, 0x23, 0x04, 0xe4, 0x04, 0x60, 0x06, 0x94, - 0x00, 0x06, 0x00, 0x22, 0x00, 0x00, 0x41, 0x25, 0x23, 0x05, 0x33, 0x37, - 0x17, 0x37, 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x86, 0xfe, 0xf8, 0x54, 0xfe, 0xf9, - 0x57, 0xd9, 0xdb, 0x55, 0x2f, 0x1e, 0x3f, 0x19, 0x19, 0x1f, 0x49, 0x2e, - 0x24, 0x49, 0x1b, 0x05, 0x16, 0x43, 0x20, 0x1f, 0x2e, 0x01, 0x01, 0x23, - 0x19, 0x1a, 0x37, 0x14, 0x04, 0xe4, 0xdf, 0xdf, 0xba, 0xba, 0x74, 0x2c, - 0x04, 0x10, 0x10, 0x0f, 0x31, 0x25, 0x33, 0x38, 0x0b, 0x09, 0x07, 0x01, - 0x37, 0x01, 0x03, 0x08, 0x09, 0x22, 0x20, 0x1d, 0x1f, 0x07, 0x08, 0x04, - 0x02, 0x00, 0x00, 0x02, 0x00, 0x95, 0x04, 0xe4, 0x03, 0x84, 0x06, 0x30, - 0x00, 0x06, 0x00, 0x0a, 0x00, 0x00, 0x41, 0x27, 0x23, 0x07, 0x33, 0x37, - 0x17, 0x25, 0x27, 0x23, 0x17, 0x03, 0x84, 0xf8, 0x50, 0xf8, 0x54, 0xcc, - 0xcc, 0xfe, 0x47, 0x99, 0x49, 0xa3, 0x04, 0xe4, 0xdf, 0xdf, 0xba, 0xba, - 0x80, 0xcc, 0xcc, 0x00, 0x00, 0x02, 0x01, 0x5b, 0x04, 0xe4, 0x04, 0x4a, - 0x06, 0x30, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x00, 0x41, 0x07, 0x33, 0x37, - 0x17, 0x33, 0x27, 0x25, 0x07, 0x33, 0x37, 0x02, 0x53, 0xf8, 0x54, 0xcc, - 0xcc, 0x54, 0xf8, 0x01, 0x5e, 0x99, 0x3f, 0xa3, 0x05, 0xc3, 0xdf, 0xba, - 0xba, 0xdf, 0x6d, 0xcc, 0xcc, 0x00, 0x00, 0x02, 0x01, 0x59, 0x04, 0xe0, - 0x03, 0x8c, 0x06, 0x65, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x27, - 0x23, 0x17, 0x25, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x02, 0xb1, 0xa6, 0x41, 0xb0, 0x01, 0x12, 0x37, - 0x03, 0x29, 0x1f, 0x20, 0x4e, 0x29, 0x2a, 0x4f, 0x1f, 0x20, 0x29, 0x03, - 0x36, 0x03, 0x33, 0x28, 0x27, 0x62, 0x33, 0x33, 0x61, 0x27, 0x27, 0x33, - 0x05, 0x90, 0xd5, 0xd5, 0x20, 0x2d, 0x3e, 0x13, 0x13, 0x11, 0x10, 0x13, - 0x13, 0x3e, 0x2e, 0x38, 0x4f, 0x19, 0x19, 0x17, 0x17, 0x19, 0x19, 0x4f, - 0x00, 0x01, 0x02, 0x43, 0x04, 0xdc, 0x02, 0xaa, 0x06, 0x18, 0x00, 0x09, - 0x00, 0x00, 0x41, 0x15, 0x33, 0x35, 0x36, 0x36, 0x37, 0x27, 0x06, 0x06, - 0x02, 0x43, 0x36, 0x01, 0x1c, 0x14, 0x2c, 0x1a, 0x1f, 0x05, 0x5c, 0x80, - 0x84, 0x2e, 0x51, 0x29, 0x10, 0x2d, 0x5a, 0x00, 0x00, 0x02, 0x00, 0x57, - 0x00, 0x00, 0x04, 0x3c, 0x04, 0x8d, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x00, - 0x41, 0x13, 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x37, 0x01, 0x37, 0x17, - 0x01, 0x03, 0x79, 0x89, 0x3a, 0xfe, 0x2d, 0x3f, 0xfe, 0x2d, 0x3b, 0x88, - 0x16, 0x01, 0x04, 0x16, 0x15, 0x01, 0x05, 0x01, 0x56, 0xfe, 0xaa, 0x04, - 0x8d, 0xfb, 0x73, 0x01, 0x56, 0x36, 0x02, 0x8d, 0x41, 0x40, 0xfd, 0x72, - 0x00, 0x03, 0x00, 0xeb, 0x00, 0x00, 0x04, 0x1c, 0x04, 0x8d, 0x00, 0x1a, - 0x00, 0x29, 0x00, 0x38, 0x00, 0x00, 0x73, 0x21, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x13, 0x21, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, - 0x11, 0x11, 0x21, 0x32, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, - 0x06, 0x06, 0x07, 0xeb, 0x01, 0xa3, 0x4a, 0x8f, 0x38, 0x38, 0x45, 0x01, - 0x30, 0x27, 0x28, 0x66, 0x36, 0x30, 0x53, 0x1f, 0x1e, 0x22, 0x4b, 0x3c, - 0x3c, 0x96, 0x49, 0xfe, 0xab, 0x37, 0x01, 0x75, 0x3a, 0x77, 0x30, 0x30, - 0x3d, 0x3c, 0x31, 0x31, 0x7b, 0x3e, 0xfe, 0x94, 0x01, 0x1e, 0x50, 0x74, - 0x32, 0x30, 0x46, 0x3f, 0x32, 0x32, 0x7b, 0x3c, 0x01, 0x26, 0x27, 0x27, - 0x79, 0x54, 0x3c, 0x60, 0x24, 0x24, 0x2e, 0x09, 0x0e, 0x29, 0x1f, 0x1e, - 0x55, 0x3a, 0x57, 0x74, 0x23, 0x22, 0x1c, 0x01, 0xfd, 0xae, 0x01, 0x1c, - 0x1e, 0x1e, 0x5f, 0x43, 0x48, 0x64, 0x20, 0x20, 0x1d, 0x01, 0x02, 0x3b, - 0x01, 0xe5, 0x1a, 0x18, 0x17, 0x62, 0x48, 0x48, 0x5e, 0x1b, 0x1b, 0x15, - 0x01, 0x00, 0x00, 0x01, 0x00, 0x92, 0xff, 0xf0, 0x04, 0x12, 0x04, 0x9d, - 0x00, 0x33, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, - 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x04, 0x12, 0x36, 0x0c, - 0x41, 0x32, 0x32, 0x85, 0x50, 0x61, 0x93, 0x32, 0x33, 0x34, 0x01, 0x01, - 0x35, 0x32, 0x32, 0x94, 0x61, 0x4f, 0x84, 0x32, 0x32, 0x42, 0x0c, 0x36, - 0x0c, 0x4a, 0x39, 0x3a, 0x98, 0x5a, 0x6d, 0xa8, 0x39, 0x3a, 0x3c, 0x01, - 0x01, 0x3c, 0x3a, 0x39, 0xa7, 0x6d, 0x5a, 0x99, 0x3a, 0x39, 0x4a, 0x01, - 0x66, 0x50, 0x78, 0x28, 0x29, 0x28, 0x4e, 0x40, 0x40, 0xa6, 0x59, 0xa9, - 0x5a, 0xa5, 0x40, 0x3f, 0x4d, 0x28, 0x28, 0x29, 0x78, 0x4e, 0x5a, 0x8b, - 0x30, 0x30, 0x31, 0x55, 0x47, 0x48, 0xba, 0x65, 0xa8, 0x65, 0xba, 0x47, - 0x47, 0x55, 0x31, 0x30, 0x2f, 0x8c, 0x00, 0x02, 0x00, 0xe4, 0x00, 0x00, - 0x04, 0x4e, 0x04, 0x8d, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x73, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x17, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x15, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0xe4, 0x01, 0x5d, 0x70, 0xbf, 0x46, - 0x46, 0x50, 0x02, 0x02, 0x50, 0x46, 0x46, 0xbf, 0x6f, 0xfe, 0xa2, 0x36, - 0x01, 0x28, 0x63, 0xab, 0x3f, 0x3f, 0x48, 0x02, 0x02, 0x49, 0x3f, 0x3f, - 0xab, 0x63, 0xfe, 0xd9, 0x01, 0x4e, 0x44, 0x44, 0xbc, 0x71, 0x84, 0x70, - 0xbd, 0x45, 0x44, 0x4d, 0x02, 0x37, 0x02, 0x44, 0x3d, 0x3d, 0xa8, 0x64, - 0x86, 0x65, 0xa8, 0x3d, 0x3d, 0x46, 0x01, 0x00, 0x00, 0x01, 0x00, 0xda, - 0x00, 0x00, 0x04, 0x12, 0x04, 0x8d, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x03, 0xb3, - 0xfd, 0x5e, 0x03, 0x00, 0xfc, 0xc9, 0x03, 0x38, 0xfc, 0xff, 0x02, 0x43, - 0x36, 0x01, 0xdd, 0x37, 0xfb, 0x73, 0x36, 0x02, 0x0d, 0x00, 0x00, 0x01, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0x1b, 0x04, 0x8d, 0x00, 0x09, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x03, 0xb9, - 0xfd, 0x45, 0x03, 0x1d, 0xfc, 0xac, 0x37, 0x02, 0x35, 0x37, 0x01, 0xea, - 0x37, 0xfb, 0x73, 0x02, 0x35, 0x00, 0x00, 0x01, 0x00, 0x8e, 0xff, 0xf0, - 0x04, 0x11, 0x04, 0x9d, 0x00, 0x37, 0x00, 0x00, 0x65, 0x11, 0x21, 0x15, - 0x21, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x04, 0x11, 0xfe, 0x58, 0x01, 0x72, 0x21, 0x59, - 0x31, 0x32, 0x65, 0x2d, 0x63, 0x9d, 0x36, 0x37, 0x3b, 0x01, 0x01, 0x39, - 0x35, 0x34, 0x97, 0x5f, 0x47, 0x7e, 0x32, 0x32, 0x46, 0x0f, 0x35, 0x0d, - 0x4e, 0x3a, 0x3a, 0x93, 0x51, 0x6b, 0xab, 0x3b, 0x3c, 0x40, 0x01, 0x01, - 0x43, 0x3e, 0x3d, 0xb0, 0x6f, 0x34, 0x76, 0x39, 0x39, 0x65, 0x81, 0x01, - 0x95, 0x36, 0xfe, 0xb7, 0x23, 0x2c, 0x0d, 0x0d, 0x09, 0x4b, 0x40, 0x3f, - 0xa9, 0x5e, 0xb2, 0x5a, 0xa2, 0x3d, 0x3d, 0x48, 0x22, 0x22, 0x23, 0x69, - 0x48, 0x53, 0x7e, 0x2a, 0x2a, 0x2a, 0x51, 0x45, 0x45, 0xb6, 0x66, 0xb0, - 0x69, 0xbc, 0x47, 0x47, 0x53, 0x0c, 0x11, 0x10, 0x38, 0x00, 0x00, 0x01, - 0x00, 0xd6, 0x00, 0x00, 0x03, 0xe5, 0x04, 0x8d, 0x00, 0x0b, 0x00, 0x00, - 0x61, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, - 0x03, 0xe5, 0x33, 0xfd, 0x58, 0x34, 0x34, 0x02, 0xa8, 0x04, 0x8d, 0xfd, - 0xcf, 0x02, 0x31, 0xfb, 0x73, 0x02, 0x26, 0xfd, 0xda, 0x00, 0x00, 0x01, - 0x00, 0xef, 0x00, 0x00, 0x03, 0xde, 0x04, 0x8d, 0x00, 0x0b, 0x00, 0x00, - 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, - 0xef, 0x01, 0x55, 0xfe, 0xab, 0x02, 0xef, 0xfe, 0x9e, 0x01, 0x62, 0x04, - 0x8d, 0x38, 0xfb, 0xe1, 0x36, 0x36, 0x04, 0x1f, 0x38, 0x00, 0x00, 0x01, - 0x00, 0xd8, 0xff, 0xf0, 0x03, 0xdf, 0x04, 0x8d, 0x00, 0x1b, 0x00, 0x00, - 0x41, 0x11, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x11, 0x03, 0xa7, 0x02, 0x32, 0x2b, 0x2c, 0x74, 0x42, - 0x45, 0x7b, 0x2e, 0x2f, 0x38, 0x01, 0x38, 0x04, 0x40, 0x35, 0x35, 0x8e, - 0x52, 0x4e, 0x88, 0x33, 0x33, 0x3b, 0x02, 0x04, 0x8d, 0xfc, 0xc2, 0x44, - 0x6e, 0x26, 0x27, 0x2b, 0x21, 0x23, 0x23, 0x6b, 0x4a, 0x56, 0x7e, 0x2a, - 0x2a, 0x29, 0x32, 0x2e, 0x2d, 0x81, 0x51, 0x03, 0x3e, 0x00, 0x00, 0x01, - 0x01, 0x05, 0x00, 0x00, 0x04, 0x7f, 0x04, 0x8d, 0x00, 0x0c, 0x00, 0x00, - 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, 0x11, 0x23, 0x11, 0x33, - 0x11, 0x01, 0xfe, 0x02, 0x39, 0x48, 0xfd, 0xaa, 0x02, 0x24, 0x4c, 0xfe, - 0x02, 0xc8, 0x36, 0x36, 0x02, 0x5f, 0xfd, 0xa1, 0x02, 0x86, 0x02, 0x07, - 0xfe, 0x20, 0xba, 0x02, 0x9a, 0xfb, 0x73, 0x01, 0xb1, 0x00, 0x00, 0x01, - 0x01, 0x03, 0x00, 0x00, 0x04, 0x3d, 0x04, 0x8d, 0x00, 0x05, 0x00, 0x00, - 0x65, 0x11, 0x23, 0x11, 0x21, 0x35, 0x01, 0x3c, 0x39, 0x03, 0x3a, 0x36, - 0x04, 0x57, 0xfb, 0x73, 0x36, 0x00, 0x00, 0x01, 0x00, 0xba, 0x00, 0x00, - 0x04, 0x20, 0x04, 0x8d, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, 0x23, 0x11, - 0x33, 0x11, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, 0x23, 0x02, 0x6c, 0xfe, - 0x98, 0x4a, 0x36, 0x01, 0x69, 0x27, 0x01, 0x6a, 0x36, 0x4b, 0x02, 0x1c, - 0x02, 0x71, 0xfb, 0x73, 0x04, 0x42, 0xfd, 0x91, 0x02, 0x71, 0xfb, 0xbc, - 0x04, 0x8d, 0x00, 0x01, 0x00, 0xda, 0x00, 0x00, 0x03, 0xde, 0x04, 0x8d, - 0x00, 0x09, 0x00, 0x00, 0x61, 0x11, 0x23, 0x13, 0x01, 0x23, 0x11, 0x33, - 0x03, 0x01, 0x03, 0xde, 0x33, 0x02, 0xfd, 0x5f, 0x32, 0x33, 0x01, 0x02, - 0xa0, 0x04, 0x8d, 0xfb, 0xd0, 0x04, 0x30, 0xfb, 0x73, 0x04, 0x33, 0xfb, - 0xcd, 0x00, 0x00, 0x02, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x04, 0x9d, - 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x03, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x25, - 0x01, 0x3a, 0x38, 0x39, 0xa6, 0x6d, 0x6e, 0xa6, 0x38, 0x38, 0x39, 0x01, - 0x38, 0x35, 0x38, 0xa9, 0x71, 0x68, 0xa1, 0x38, 0x3e, 0x3f, 0x35, 0x01, - 0x31, 0x31, 0x31, 0x92, 0x63, 0x63, 0x93, 0x30, 0x31, 0x32, 0x01, 0x33, - 0x31, 0x30, 0x93, 0x62, 0x62, 0x93, 0x31, 0x31, 0x32, 0x01, 0xf6, 0xa0, - 0x64, 0xbc, 0x48, 0x48, 0x57, 0x57, 0x48, 0x48, 0xbc, 0x64, 0xa0, 0x63, - 0xb7, 0x47, 0x49, 0x5c, 0x4f, 0x43, 0x4a, 0xc0, 0x01, 0x0c, 0xa2, 0x5a, - 0xa8, 0x40, 0x41, 0x4d, 0x4e, 0x41, 0x40, 0xa7, 0x5a, 0xa2, 0x59, 0xa7, - 0x41, 0x40, 0x4d, 0x4d, 0x40, 0x41, 0xa6, 0x00, 0x00, 0x02, 0x00, 0x85, - 0xff, 0x30, 0x04, 0x44, 0x04, 0x9d, 0x00, 0x1f, 0x00, 0x39, 0x00, 0x00, - 0x41, 0x35, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, - 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x17, 0x37, 0x27, 0x36, 0x36, 0x37, 0x36, 0x36, 0x27, 0x15, 0x06, 0x06, - 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x35, 0x34, - 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x04, 0x44, - 0x01, 0x43, 0x3d, 0x3e, 0xb2, 0x70, 0x70, 0xb0, 0x3d, 0x3e, 0x42, 0x01, - 0x01, 0x43, 0x3e, 0x3d, 0xb1, 0x6f, 0x2c, 0x50, 0x24, 0xf9, 0x27, 0xe7, - 0x3e, 0x61, 0x22, 0x22, 0x24, 0x36, 0x01, 0x3a, 0x36, 0x36, 0x9e, 0x65, - 0x65, 0x9d, 0x36, 0x36, 0x3a, 0x3a, 0x36, 0x36, 0x9c, 0x65, 0x65, 0x9e, - 0x37, 0x36, 0x3a, 0x01, 0xf6, 0xa0, 0x6a, 0xbd, 0x47, 0x47, 0x52, 0x53, - 0x46, 0x47, 0xbd, 0x6a, 0xa0, 0x6a, 0xbd, 0x46, 0x47, 0x52, 0x0d, 0x0c, - 0xd9, 0x25, 0xcc, 0x1f, 0x61, 0x3d, 0x3c, 0x8f, 0xef, 0xa2, 0x60, 0xa9, - 0x3f, 0x3f, 0x49, 0x4a, 0x3f, 0x3f, 0xa9, 0x5f, 0xa2, 0x5f, 0xa8, 0x3f, - 0x3f, 0x49, 0x49, 0x3e, 0x3f, 0xa8, 0x00, 0x02, 0x00, 0xe7, 0x00, 0x00, - 0x04, 0x48, 0x04, 0x8d, 0x00, 0x14, 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, - 0x33, 0x35, 0x01, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x21, 0x11, 0x33, 0x11, 0x35, 0x11, 0x21, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x02, 0xc8, - 0x01, 0x47, 0x39, 0xfe, 0xb5, 0x39, 0x65, 0x26, 0x26, 0x2d, 0x46, 0x3a, - 0x3a, 0x95, 0x4e, 0xfe, 0x70, 0x36, 0x01, 0x5a, 0x42, 0x81, 0x33, 0x32, - 0x3e, 0x36, 0x2c, 0x2d, 0x73, 0x3d, 0x01, 0xe7, 0xfe, 0x19, 0x0a, 0x01, - 0xeb, 0x11, 0x36, 0x27, 0x26, 0x67, 0x42, 0x57, 0x81, 0x2b, 0x2b, 0x2c, - 0x01, 0xfb, 0x73, 0x01, 0xe7, 0x36, 0x02, 0x39, 0x01, 0x23, 0x24, 0x24, - 0x6d, 0x4b, 0x43, 0x66, 0x23, 0x23, 0x25, 0x01, 0x00, 0x01, 0x00, 0xa0, - 0xff, 0xf0, 0x04, 0x2e, 0x04, 0x9d, 0x00, 0x4c, 0x00, 0x00, 0x41, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, - 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x03, 0xf7, 0x2e, 0x2a, 0x36, 0xac, 0x43, 0x47, 0x92, - 0x3c, 0x3c, 0x50, 0x04, 0x35, 0x03, 0x2a, 0x22, 0x22, 0x5a, 0x34, 0x33, - 0x70, 0x38, 0x51, 0xb1, 0x48, 0x32, 0x38, 0x47, 0x35, 0x44, 0x9f, 0x4f, - 0x46, 0x86, 0x37, 0x39, 0x46, 0x47, 0x33, 0x39, 0x89, 0x39, 0x44, 0x84, - 0x35, 0x35, 0x43, 0x03, 0x36, 0x04, 0x4b, 0x3b, 0x3c, 0x98, 0x50, 0x42, - 0x96, 0x42, 0x3f, 0x51, 0x58, 0x3e, 0x46, 0x8c, 0x40, 0x53, 0x96, 0x34, - 0x2c, 0x3d, 0x01, 0x19, 0x31, 0x54, 0x20, 0x29, 0x26, 0x1d, 0x23, 0x22, - 0x70, 0x52, 0x3f, 0x64, 0x26, 0x27, 0x37, 0x11, 0x11, 0x10, 0x2b, 0x32, - 0x23, 0x66, 0x44, 0x4c, 0x6f, 0x22, 0x2f, 0x33, 0x13, 0x11, 0x26, 0x1f, - 0x20, 0x58, 0x43, 0x40, 0x57, 0x1b, 0x1e, 0x19, 0x23, 0x24, 0x24, 0x6d, - 0x4b, 0x56, 0x82, 0x2c, 0x2b, 0x2b, 0x1e, 0x23, 0x21, 0x74, 0x4c, 0x52, - 0x75, 0x20, 0x24, 0x2b, 0x0f, 0x13, 0x30, 0x24, 0x1e, 0x5a, 0x00, 0x01, - 0x00, 0x69, 0x00, 0x00, 0x04, 0x64, 0x04, 0x8d, 0x00, 0x07, 0x00, 0x00, - 0x41, 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x04, 0x64, 0xfc, 0x05, - 0x01, 0xe3, 0x37, 0x04, 0x56, 0x37, 0x37, 0xfb, 0xaa, 0x04, 0x56, 0x00, - 0x00, 0x01, 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, 0x04, 0x8d, 0x00, 0x1d, - 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, - 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x04, 0x02, 0x35, 0x01, - 0x01, 0x37, 0x2f, 0x30, 0x82, 0x4c, 0x4d, 0x82, 0x2f, 0x30, 0x38, 0x01, - 0x35, 0x01, 0x3f, 0x37, 0x36, 0x96, 0x59, 0x59, 0x96, 0x37, 0x36, 0x3e, - 0x01, 0x04, 0x8d, 0xfc, 0xea, 0x4e, 0x7d, 0x2c, 0x2c, 0x2f, 0x2f, 0x2c, - 0x2c, 0x7d, 0x4e, 0x03, 0x16, 0xfc, 0xea, 0x5a, 0x91, 0x33, 0x33, 0x36, - 0x36, 0x33, 0x33, 0x91, 0x5a, 0x00, 0x00, 0x01, 0x00, 0x72, 0x00, 0x00, - 0x04, 0x69, 0x04, 0x8d, 0x00, 0x08, 0x00, 0x00, 0x65, 0x01, 0x23, 0x01, - 0x33, 0x01, 0x23, 0x01, 0x07, 0x02, 0x54, 0xfe, 0x5a, 0x3c, 0x01, 0xdc, - 0x3f, 0x01, 0xdc, 0x3b, 0xfe, 0x5b, 0x1b, 0x89, 0x04, 0x04, 0xfb, 0x73, - 0x04, 0x8d, 0xfb, 0xfc, 0x52, 0x00, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, - 0x04, 0xa6, 0x04, 0x8d, 0x00, 0x12, 0x00, 0x00, 0x61, 0x33, 0x13, 0x37, - 0x17, 0x13, 0x33, 0x01, 0x23, 0x03, 0x07, 0x27, 0x03, 0x23, 0x03, 0x07, - 0x27, 0x03, 0x23, 0x01, 0x29, 0x34, 0xf1, 0x19, 0x1b, 0xee, 0x34, 0x01, - 0x02, 0x35, 0xc5, 0x25, 0x25, 0xe1, 0x33, 0xe4, 0x24, 0x24, 0xc6, 0x36, - 0x03, 0xb8, 0x6c, 0x6c, 0xfc, 0x48, 0x04, 0x8d, 0xfc, 0x8d, 0xb0, 0xac, - 0x03, 0x77, 0xfc, 0x89, 0xa9, 0xad, 0x03, 0x73, 0x00, 0x01, 0x00, 0x88, - 0x00, 0x00, 0x04, 0x45, 0x04, 0x8d, 0x00, 0x0b, 0x00, 0x00, 0x41, 0x01, - 0x23, 0x01, 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x01, 0x23, 0x02, 0x65, - 0xfe, 0x75, 0x42, 0x01, 0xad, 0xfe, 0x43, 0x40, 0x01, 0x9d, 0x01, 0x9f, - 0x41, 0xfe, 0x43, 0x01, 0xac, 0x43, 0x02, 0x7e, 0x02, 0x0f, 0xfd, 0xc4, - 0xfd, 0xaf, 0x02, 0x23, 0xfd, 0xdd, 0x02, 0x51, 0x02, 0x3c, 0x00, 0x01, - 0x00, 0x63, 0x00, 0x00, 0x04, 0x69, 0x04, 0x8d, 0x00, 0x0a, 0x00, 0x00, - 0x61, 0x33, 0x11, 0x01, 0x23, 0x01, 0x07, 0x27, 0x01, 0x23, 0x01, 0x02, - 0x4a, 0x37, 0x01, 0xe8, 0x42, 0xfe, 0x52, 0x14, 0x13, 0xfe, 0x53, 0x42, - 0x01, 0xe7, 0x01, 0xb4, 0x02, 0xd9, 0xfd, 0x71, 0x24, 0x23, 0x02, 0x90, - 0xfd, 0x2a, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x04, 0x18, 0x04, 0x8d, - 0x00, 0x09, 0x00, 0x00, 0x77, 0x01, 0x35, 0x21, 0x15, 0x21, 0x01, 0x15, - 0x21, 0x35, 0xf9, 0x03, 0x04, 0xfc, 0xd1, 0x02, 0xe2, 0xfc, 0xfe, 0x03, - 0x6a, 0x36, 0x04, 0x2d, 0x2a, 0x36, 0xfb, 0xd7, 0x2e, 0x36, 0x00, 0x02, - 0x01, 0x66, 0x04, 0xe4, 0x03, 0x89, 0x06, 0xe7, 0x00, 0x19, 0x00, 0x35, - 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, - 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x36, 0x36, 0x25, 0x33, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x07, 0x16, 0x16, 0x17, 0x16, - 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x06, 0x07, 0x03, 0x89, 0x37, 0x03, - 0x28, 0x1e, 0x1e, 0x4b, 0x28, 0x29, 0x4d, 0x1e, 0x1e, 0x28, 0x03, 0x35, - 0x04, 0x31, 0x26, 0x26, 0x5f, 0x32, 0x31, 0x5f, 0x26, 0x26, 0x31, 0xfe, - 0xde, 0x2e, 0x1f, 0x44, 0x1c, 0x1b, 0x24, 0x3d, 0x2b, 0x2c, 0x5d, 0x21, - 0x07, 0x18, 0x4c, 0x24, 0x24, 0x35, 0x02, 0x01, 0x27, 0x1c, 0x1d, 0x40, - 0x17, 0x05, 0xb0, 0x2c, 0x3c, 0x13, 0x13, 0x10, 0x10, 0x12, 0x12, 0x3d, - 0x2d, 0x36, 0x4e, 0x18, 0x19, 0x17, 0x17, 0x19, 0x18, 0x4e, 0x25, 0x2f, - 0x03, 0x10, 0x10, 0x10, 0x34, 0x27, 0x2f, 0x36, 0x0f, 0x0e, 0x08, 0x01, - 0x2b, 0x01, 0x04, 0x09, 0x09, 0x26, 0x23, 0x22, 0x26, 0x0a, 0x0a, 0x06, - 0x02, 0x00, 0x00, 0x02, 0x01, 0x59, 0x04, 0xe0, 0x03, 0x8c, 0x06, 0x65, - 0x00, 0x19, 0x00, 0x1d, 0x00, 0x00, 0x41, 0x23, 0x06, 0x06, 0x07, 0x06, - 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x23, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x07, 0x33, 0x37, - 0x03, 0x8c, 0x37, 0x03, 0x29, 0x1f, 0x20, 0x4e, 0x29, 0x2a, 0x4f, 0x1f, - 0x20, 0x29, 0x03, 0x36, 0x03, 0x33, 0x28, 0x27, 0x62, 0x33, 0x33, 0x61, - 0x27, 0x27, 0x33, 0xaf, 0xa6, 0x37, 0xb0, 0x05, 0xb0, 0x2d, 0x3e, 0x13, - 0x13, 0x11, 0x10, 0x13, 0x13, 0x3e, 0x2e, 0x38, 0x4f, 0x19, 0x19, 0x17, - 0x17, 0x19, 0x19, 0x4f, 0xed, 0xd5, 0xd5, 0x00, 0x00, 0x01, 0x01, 0x50, - 0x02, 0xd1, 0x03, 0x9b, 0x03, 0x07, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x15, 0x03, 0x9b, 0xfd, 0xb5, 0x02, 0xd1, 0x36, 0x36, 0x00, 0x03, - 0x02, 0x10, 0x04, 0x95, 0x03, 0x81, 0x06, 0xa2, 0x00, 0x03, 0x00, 0x1b, - 0x00, 0x27, 0x00, 0x00, 0x41, 0x07, 0x33, 0x37, 0x01, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, - 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x34, 0x36, 0x33, - 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x03, 0x30, 0xac, 0x42, - 0xbb, 0xfe, 0x8f, 0x17, 0x14, 0x13, 0x33, 0x1c, 0x1c, 0x32, 0x13, 0x13, - 0x17, 0x16, 0x13, 0x13, 0x33, 0x1c, 0x1d, 0x33, 0x13, 0x13, 0x17, 0x33, - 0x31, 0x29, 0x25, 0x33, 0x34, 0x24, 0x29, 0x31, 0x06, 0xa2, 0xbf, 0xbf, - 0xfe, 0x7d, 0x1d, 0x32, 0x12, 0x13, 0x16, 0x16, 0x13, 0x13, 0x32, 0x1c, - 0x1c, 0x34, 0x14, 0x13, 0x17, 0x17, 0x13, 0x14, 0x34, 0x1c, 0x24, 0x37, - 0x38, 0x23, 0x24, 0x34, 0x34, 0x00, 0x00, 0x02, 0x02, 0x06, 0x04, 0x82, - 0x03, 0x42, 0x05, 0xca, 0x00, 0x05, 0x00, 0x15, 0x00, 0x00, 0x41, 0x17, - 0x33, 0x13, 0x27, 0x23, 0x05, 0x17, 0x33, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x07, 0x06, 0x06, 0x02, 0x8b, 0x01, 0x31, - 0x85, 0x01, 0x37, 0xfe, 0xfc, 0x01, 0x36, 0x02, 0x01, 0x0a, 0x0c, 0x0a, - 0x1f, 0x16, 0x19, 0x1f, 0x2c, 0x0e, 0x0f, 0x0d, 0x04, 0x8c, 0x09, 0x01, - 0x2d, 0x15, 0xdb, 0x68, 0x62, 0x20, 0x39, 0x1a, 0x14, 0x26, 0x10, 0x29, - 0x11, 0x30, 0x1d, 0x1e, 0x42, 0x00, 0x00, 0x02, 0x01, 0x9b, 0x04, 0xc8, - 0x03, 0xa7, 0x06, 0x8c, 0x00, 0x19, 0x00, 0x33, 0x00, 0x00, 0x41, 0x23, - 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, - 0x13, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x26, - 0x06, 0x07, 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x03, 0xa7, 0x38, 0x03, 0x22, 0x1c, 0x1c, 0x48, 0x29, 0x2a, - 0x49, 0x1b, 0x1c, 0x23, 0x03, 0x36, 0x03, 0x2d, 0x24, 0x23, 0x5c, 0x33, - 0x33, 0x5c, 0x24, 0x23, 0x2d, 0x03, 0x30, 0x06, 0x35, 0x30, 0x1e, 0x32, - 0x18, 0x18, 0x33, 0x20, 0x41, 0x53, 0x07, 0x30, 0x07, 0x34, 0x30, 0x1e, - 0x32, 0x18, 0x18, 0x33, 0x20, 0x42, 0x53, 0x05, 0x9d, 0x2b, 0x3e, 0x14, - 0x15, 0x13, 0x13, 0x14, 0x14, 0x3e, 0x2c, 0x36, 0x50, 0x1a, 0x1b, 0x1a, - 0x1a, 0x1b, 0x1a, 0x50, 0x01, 0x1b, 0x0a, 0x2c, 0x3e, 0x1c, 0x11, 0x11, - 0x1d, 0x01, 0x4c, 0x3f, 0x09, 0x2c, 0x35, 0x1c, 0x10, 0x11, 0x1c, 0x50, - 0x00, 0x01, 0x02, 0x48, 0xfe, 0xa0, 0x02, 0x7e, 0x00, 0x4a, 0x00, 0x03, - 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x02, 0x7e, 0x36, 0xfe, 0xa0, 0x01, - 0xaa, 0xfe, 0x56, 0x00, 0x00, 0x01, 0x01, 0x71, 0xfe, 0x4b, 0x02, 0xfe, - 0x00, 0x62, 0x00, 0x15, 0x00, 0x00, 0x65, 0x23, 0x15, 0x06, 0x06, 0x07, - 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x07, 0x16, 0x16, 0x33, 0x32, 0x36, - 0x37, 0x36, 0x36, 0x35, 0x02, 0xfe, 0x36, 0x01, 0x19, 0x1b, 0x1c, 0x57, - 0x3f, 0x1a, 0x31, 0x18, 0x0d, 0x1c, 0x37, 0x1d, 0x4b, 0x6b, 0x23, 0x22, - 0x22, 0x62, 0xbb, 0x37, 0x6a, 0x29, 0x2a, 0x33, 0x0b, 0x08, 0x34, 0x08, - 0x0c, 0x3a, 0x31, 0x30, 0x7e, 0x43, 0x00, 0x02, 0x01, 0x04, 0x00, 0x00, - 0x04, 0x16, 0x04, 0x8d, 0x00, 0x10, 0x00, 0x1f, 0x00, 0x00, 0x41, 0x21, - 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, - 0x21, 0x11, 0x33, 0x11, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, - 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x01, 0x39, 0x01, 0x4e, 0x4f, 0x91, - 0x37, 0x37, 0x41, 0x42, 0x36, 0x37, 0x91, 0x4f, 0xfe, 0x7d, 0x35, 0x01, - 0x4e, 0x43, 0x7d, 0x30, 0x2f, 0x39, 0x3b, 0x30, 0x30, 0x7b, 0x42, 0x01, - 0xe7, 0x01, 0x27, 0x29, 0x29, 0x7e, 0x57, 0x56, 0x80, 0x2b, 0x2a, 0x2b, - 0x01, 0xfb, 0x73, 0x02, 0x1e, 0x02, 0x38, 0x01, 0x23, 0x23, 0x24, 0x6c, - 0x4a, 0x4a, 0x68, 0x22, 0x22, 0x20, 0x01, 0x00, 0x00, 0x01, 0x00, 0xfb, - 0x00, 0x00, 0x04, 0xac, 0x05, 0xb0, 0x00, 0x0c, 0x00, 0x00, 0x41, 0x01, - 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x01, - 0xf7, 0x02, 0x71, 0x44, 0xfd, 0x86, 0x02, 0x50, 0x44, 0xfd, 0xc9, 0xd8, - 0x34, 0x34, 0x02, 0xc7, 0xfd, 0x39, 0x02, 0xd9, 0x02, 0xd7, 0xfd, 0x4c, - 0x02, 0xb4, 0xfa, 0x50, 0x02, 0xc7, 0x00, 0x01, 0x01, 0x04, 0xff, 0xec, - 0x04, 0x37, 0x04, 0x9d, 0x00, 0x3e, 0x00, 0x00, 0x65, 0x07, 0x16, 0x16, - 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x23, 0x23, 0x01, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, - 0x06, 0x06, 0x15, 0x11, 0x33, 0x11, 0x34, 0x36, 0x37, 0x36, 0x36, 0x33, - 0x32, 0x16, 0x17, 0x16, 0x16, 0x17, 0x01, 0x15, 0x33, 0x32, 0x16, 0x17, - 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x01, - 0xda, 0x1a, 0x33, 0x78, 0x3f, 0x5e, 0x93, 0x33, 0x33, 0x36, 0x33, 0x35, - 0x35, 0xa1, 0x6d, 0x01, 0x01, 0x46, 0x23, 0x4d, 0x2b, 0x2c, 0x65, 0x3a, - 0x67, 0x8a, 0x29, 0x2a, 0x23, 0x35, 0x24, 0x26, 0x25, 0x74, 0x4f, 0x2f, - 0x55, 0x25, 0x25, 0x3d, 0x17, 0xfe, 0xc0, 0x3f, 0x66, 0x8f, 0x2c, 0x2c, - 0x28, 0x32, 0x2d, 0x2d, 0x7e, 0x4d, 0x3f, 0x6d, 0x57, 0x31, 0x1d, 0x1d, - 0x30, 0x2e, 0x2d, 0x85, 0x56, 0x47, 0x76, 0x2a, 0x2a, 0x2e, 0x01, 0x4d, - 0x2e, 0x48, 0x18, 0x18, 0x19, 0x3e, 0x38, 0x38, 0x9e, 0x60, 0xfd, 0x0f, - 0x02, 0xf1, 0x64, 0x8f, 0x2e, 0x2e, 0x2b, 0x15, 0x13, 0x13, 0x35, 0x1f, - 0xfe, 0xb5, 0x34, 0x28, 0x23, 0x24, 0x62, 0x3a, 0x4e, 0x73, 0x25, 0x26, - 0x24, 0x21, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x06, 0x06, 0x00, 0x01, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x02, 0x7f, - 0x03, 0xce, 0x02, 0xb5, 0x06, 0x06, 0x00, 0x67, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x8f, 0xff, 0xeb, 0x04, 0x3a, 0x07, 0x01, 0x06, 0x26, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, 0x00, 0x01, 0x01, 0x54, 0xff, 0xff, - 0x00, 0xb3, 0xff, 0xec, 0x04, 0x0f, 0x05, 0xab, 0x06, 0x26, 0x00, 0x1e, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, 0x16, 0xfe, 0xff, 0xff, 0x00, 0x87, - 0xff, 0xec, 0x04, 0x37, 0x07, 0x01, 0x06, 0x26, 0x00, 0x08, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x60, 0x00, 0x0b, 0x01, 0x54, 0xff, 0xff, 0x00, 0xb2, - 0xfe, 0x4c, 0x03, 0xef, 0x05, 0xab, 0x06, 0x26, 0x00, 0x22, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x60, 0x17, 0xfe, 0xff, 0xff, 0x00, 0x4f, 0x00, 0x00, - 0x04, 0x06, 0x06, 0x00, 0x06, 0x26, 0x00, 0x29, 0x00, 0x00, 0x00, 0x07, - 0x00, 0x6d, 0xfe, 0x41, 0x00, 0x00, 0xff, 0xff, 0x00, 0x9c, 0xfe, 0x55, - 0x04, 0x4b, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x10, 0xff, 0x20, 0xff, 0xff, 0x00, 0xcc, 0xfe, 0x5a, - 0x04, 0x21, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0x04, 0xff, 0x25, 0xff, 0xff, 0x00, 0x70, 0xfe, 0x5f, - 0x04, 0x63, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0xff, 0xf8, 0xff, 0x2a, 0xff, 0xff, 0x00, 0xc5, 0xfe, 0x5f, - 0x03, 0xf4, 0x05, 0x5e, 0x06, 0x26, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x68, 0x00, 0xab, 0xff, 0x2a, 0xff, 0xff, 0x00, 0x70, 0xfe, 0x4d, - 0x04, 0x63, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x66, 0x19, 0x00, 0xff, 0xff, 0x00, 0x69, 0xfe, 0x4d, 0x04, 0x64, - 0x04, 0x8d, 0x06, 0x26, 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, - 0x15, 0x00, 0xff, 0xff, 0x00, 0xc5, 0xfe, 0x4d, 0x03, 0xf4, 0x05, 0x5e, - 0x06, 0x26, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x07, 0x01, 0x66, 0x00, 0xcd, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x15, 0x00, 0x00, 0x04, 0x4e, 0x04, 0x8d, - 0x06, 0x26, 0x02, 0x52, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6a, 0xfe, 0xc5, - 0xff, 0x65, 0xff, 0xff, 0x00, 0x15, 0x00, 0x00, 0x04, 0x4e, 0x04, 0x8d, - 0x06, 0x26, 0x02, 0x52, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6a, 0xfe, 0xc5, - 0xff, 0x65, 0xff, 0xff, 0x00, 0x69, 0x00, 0x00, 0x04, 0x64, 0x04, 0x8d, - 0x06, 0x26, 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6a, 0xf3, 0xd3, - 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, 0x06, 0x07, 0x06, 0x26, - 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0x91, 0x1b, 0xff, 0xff, - 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, 0x06, 0x07, 0x06, 0x26, 0x02, 0x4f, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x3a, 0x1b, 0xff, 0xff, 0x00, 0x57, - 0x00, 0x00, 0x04, 0x3c, 0x06, 0x08, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0xcf, 0x1b, 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, - 0x04, 0x3c, 0x05, 0xea, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5d, 0x71, 0x2a, 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, - 0x05, 0xe0, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0xdc, 0x1b, 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, 0x06, 0x2f, - 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x62, 0xe2, 0x1b, - 0xff, 0xff, 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, 0x06, 0x5d, 0x06, 0x26, - 0x02, 0x4f, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6b, 0xad, 0xbb, 0xff, 0xff, - 0x00, 0x92, 0xfe, 0x46, 0x04, 0x12, 0x04, 0x9d, 0x06, 0x26, 0x02, 0x51, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, 0x04, 0xf9, 0xff, 0xff, 0x00, 0xda, - 0x00, 0x00, 0x04, 0x12, 0x06, 0x07, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xaf, 0x1b, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, - 0x04, 0x12, 0x06, 0x07, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x58, 0x1b, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, 0x04, 0x12, - 0x06, 0x08, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0xf6, 0x1b, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, 0x04, 0x12, 0x05, 0xe0, - 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xfa, 0x1b, - 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x03, 0xde, 0x06, 0x10, 0x06, 0x26, - 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xa9, 0x24, 0xff, 0xff, - 0x00, 0xef, 0x00, 0x00, 0x03, 0xde, 0x06, 0x10, 0x06, 0x26, 0x02, 0x57, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x52, 0x24, 0xff, 0xff, 0x00, 0xef, - 0x00, 0x00, 0x03, 0xde, 0x06, 0x11, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0xe7, 0x24, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x03, 0xde, 0x05, 0xe9, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0xf4, 0x24, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, 0x03, 0xde, - 0x05, 0xea, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, - 0x00, 0x8a, 0x00, 0x2a, 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, - 0x06, 0x07, 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, - 0xb4, 0x1b, 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x06, 0x07, - 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x5d, 0x1b, - 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x06, 0x08, 0x06, 0x26, - 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xf2, 0x1b, 0xff, 0xff, - 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x05, 0xea, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x94, 0x00, 0x2a, 0xff, 0xff, - 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x05, 0xe0, 0x06, 0x26, 0x02, 0x5d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xff, 0x1b, 0xff, 0xff, 0x00, 0xcb, - 0xff, 0xf0, 0x04, 0x02, 0x06, 0x07, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xb0, 0x1b, 0xff, 0xff, 0x00, 0xcb, 0xff, 0xf0, - 0x04, 0x02, 0x06, 0x07, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x59, 0x1b, 0xff, 0xff, 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, - 0x06, 0x08, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0xee, 0x1b, 0xff, 0xff, 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, 0x05, 0xe0, - 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xfb, 0x1b, - 0xff, 0xff, 0x00, 0x63, 0x00, 0x00, 0x04, 0x69, 0x06, 0x07, 0x06, 0x26, - 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x57, 0x1b, 0xff, 0xff, - 0x00, 0x57, 0x00, 0x00, 0x04, 0x3c, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x4f, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xd6, 0x26, 0xff, 0xff, 0x00, 0x57, - 0x00, 0x00, 0x04, 0x3c, 0x05, 0xee, 0x06, 0x26, 0x02, 0x4f, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0xe1, 0x20, 0x00, 0x02, 0x00, 0x57, 0xfe, 0x75, - 0x04, 0x56, 0x04, 0x8d, 0x00, 0x23, 0x00, 0x28, 0x00, 0x00, 0x41, 0x23, - 0x01, 0x33, 0x13, 0x21, 0x13, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, - 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, - 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x01, 0x01, - 0x37, 0x17, 0x01, 0x02, 0x69, 0x3f, 0xfe, 0x2d, 0x3b, 0x88, 0x02, 0x5f, - 0x84, 0x1e, 0x45, 0x1d, 0x1e, 0x27, 0x17, 0x14, 0x14, 0x39, 0x22, 0x25, - 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x29, 0x1e, 0x1e, - 0x45, 0x1d, 0x07, 0xfc, 0xf4, 0x01, 0x04, 0x16, 0x15, 0x01, 0x05, 0x04, - 0x8d, 0xfb, 0x73, 0x01, 0x56, 0xfe, 0xb5, 0x17, 0x37, 0x20, 0x20, 0x4a, - 0x29, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, - 0x01, 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x01, 0x8c, 0x02, - 0x8d, 0x41, 0x40, 0xfd, 0x72, 0x00, 0xff, 0xff, 0x00, 0x92, 0xff, 0xf0, - 0x04, 0x12, 0x06, 0x07, 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x3f, 0x1b, 0xff, 0xff, 0x00, 0x92, 0xff, 0xf0, 0x04, 0x12, - 0x06, 0x08, 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, - 0xd4, 0x1b, 0xff, 0xff, 0x00, 0x92, 0xff, 0xf0, 0x04, 0x12, 0x06, 0x0c, - 0x06, 0x26, 0x02, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xe6, 0x2a, - 0xff, 0xff, 0x00, 0xe4, 0x00, 0x00, 0x04, 0x4e, 0x06, 0x0c, 0x06, 0x26, - 0x02, 0x52, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xda, 0x2a, 0xff, 0xff, - 0x00, 0xda, 0x00, 0x00, 0x04, 0x12, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x53, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xf4, 0x26, 0xff, 0xff, 0x00, 0xda, - 0x00, 0x00, 0x04, 0x12, 0x05, 0xee, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0x0c, 0x20, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, - 0x04, 0x12, 0x05, 0xc8, 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x60, 0x0f, 0x1b, 0x00, 0x01, 0x00, 0xda, 0xfe, 0x75, 0x04, 0x12, - 0x04, 0x8d, 0x00, 0x28, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, - 0x21, 0x11, 0x21, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, - 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, - 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x33, 0x35, 0x21, 0x11, 0x03, - 0xb3, 0xfd, 0x5e, 0x03, 0x00, 0xfc, 0xc9, 0x02, 0x6b, 0x1e, 0x40, 0x1b, - 0x1b, 0x23, 0x17, 0x14, 0x14, 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, - 0x3a, 0x20, 0x2d, 0x36, 0x01, 0x29, 0x1e, 0x1e, 0x45, 0x1d, 0x87, 0xfc, - 0xff, 0x02, 0x43, 0x36, 0x01, 0xdd, 0x37, 0xfb, 0x73, 0x17, 0x35, 0x1e, - 0x1f, 0x46, 0x27, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, - 0x16, 0x01, 0x01, 0x31, 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x36, - 0x02, 0x0d, 0xff, 0xff, 0x00, 0xda, 0x00, 0x00, 0x04, 0x12, 0x06, 0x0c, - 0x06, 0x26, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x0e, 0x2a, - 0xff, 0xff, 0x00, 0x8e, 0xff, 0xf0, 0x04, 0x11, 0x06, 0x08, 0x06, 0x26, - 0x02, 0x55, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xd5, 0x1b, 0xff, 0xff, - 0x00, 0x8e, 0xff, 0xf0, 0x04, 0x11, 0x05, 0xee, 0x06, 0x26, 0x02, 0x55, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0xe7, 0x20, 0xff, 0xff, 0x00, 0x8e, - 0xfe, 0x5e, 0x04, 0x11, 0x04, 0x9d, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0xff, 0xdc, 0xff, 0x29, 0xff, 0xff, 0x00, 0xd6, - 0x00, 0x00, 0x03, 0xe5, 0x06, 0x08, 0x06, 0x26, 0x02, 0x56, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5c, 0xf4, 0x1b, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x03, 0xde, 0x05, 0xf3, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5d, 0x00, 0x89, 0x00, 0x33, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x03, 0xde, 0x05, 0xdf, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0xee, 0x2f, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x03, 0xde, - 0x05, 0xf7, 0x06, 0x26, 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0xf9, 0x29, 0x00, 0x01, 0x00, 0xef, 0xfe, 0x75, 0x03, 0xde, 0x04, 0x8d, - 0x00, 0x28, 0x00, 0x00, 0x53, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x06, - 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, - 0x36, 0x37, 0x27, 0x06, 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, - 0x36, 0x36, 0x37, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0xef, 0x01, 0x55, - 0xfe, 0xab, 0x01, 0x9f, 0x1e, 0x40, 0x1b, 0x1b, 0x23, 0x17, 0x14, 0x14, - 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, - 0x29, 0x1e, 0x1e, 0x45, 0x1d, 0x01, 0x0a, 0xfe, 0x9e, 0x01, 0x62, 0x04, - 0x8d, 0x38, 0xfb, 0xe1, 0x36, 0x17, 0x35, 0x1e, 0x1f, 0x46, 0x27, 0x23, - 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, 0x01, 0x01, 0x31, - 0x2d, 0x29, 0x47, 0x1e, 0x1e, 0x34, 0x16, 0x36, 0x04, 0x1f, 0x38, 0x00, - 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, 0x03, 0xde, 0x05, 0xd1, 0x06, 0x26, - 0x02, 0x57, 0x00, 0x00, 0x00, 0x06, 0x01, 0x60, 0xf9, 0x24, 0xff, 0xff, - 0x00, 0xd8, 0xff, 0xf0, 0x04, 0xc8, 0x06, 0x08, 0x06, 0x26, 0x02, 0x58, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5c, 0x01, 0x4e, 0x00, 0x1b, 0xff, 0xff, - 0x01, 0x05, 0xfe, 0x65, 0x04, 0x7f, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x59, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0xff, 0xb5, 0xff, 0x30, 0xff, 0xff, - 0x01, 0x03, 0x00, 0x00, 0x04, 0x3d, 0x06, 0x07, 0x06, 0x26, 0x02, 0x5a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0xff, 0x1b, 0x00, 0x1b, 0xff, 0xff, - 0x01, 0x03, 0xfe, 0x67, 0x04, 0x3d, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0x00, 0x0c, 0xff, 0x32, 0xff, 0xff, - 0x01, 0x03, 0x00, 0x00, 0x04, 0x3d, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x6d, 0x00, 0x00, 0xfe, 0x8c, 0xff, 0xff, - 0x01, 0x03, 0x00, 0x00, 0x04, 0x3d, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x60, 0xff, 0x87, 0xfc, 0xec, 0xff, 0xff, - 0x00, 0xda, 0x00, 0x00, 0x03, 0xde, 0x06, 0x07, 0x06, 0x26, 0x02, 0x5c, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x53, 0x1b, 0xff, 0xff, 0x00, 0xda, - 0xfe, 0x67, 0x03, 0xde, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x68, 0xff, 0xea, 0xff, 0x32, 0xff, 0xff, 0x00, 0xda, - 0x00, 0x00, 0x03, 0xde, 0x06, 0x0c, 0x06, 0x26, 0x02, 0x5c, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x64, 0xfa, 0x2a, 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, - 0x04, 0x25, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0xf9, 0x26, 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, - 0x05, 0xee, 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0x03, 0x20, 0xff, 0xff, 0x00, 0xa8, 0xff, 0xf0, 0x04, 0x25, 0x06, 0x1b, - 0x06, 0x26, 0x02, 0x5d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x63, 0x5f, 0x1b, - 0xff, 0xff, 0x00, 0xe7, 0x00, 0x00, 0x04, 0x48, 0x06, 0x07, 0x06, 0x26, - 0x02, 0x5f, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x3f, 0x1b, 0xff, 0xff, - 0x00, 0xe7, 0xfe, 0x67, 0x04, 0x48, 0x04, 0x8d, 0x06, 0x26, 0x02, 0x5f, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x68, 0xff, 0xb5, 0xff, 0x32, 0xff, 0xff, - 0x00, 0xe7, 0x00, 0x00, 0x04, 0x48, 0x06, 0x0c, 0x06, 0x26, 0x02, 0x5f, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xe6, 0x2a, 0xff, 0xff, 0x00, 0xa0, - 0xff, 0xf0, 0x04, 0x2e, 0x06, 0x07, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5b, 0x59, 0x1b, 0xff, 0xff, 0x00, 0xa0, 0xff, 0xf0, - 0x04, 0x2e, 0x06, 0x08, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5c, 0xee, 0x1b, 0xff, 0xff, 0x00, 0xa0, 0xfe, 0x48, 0x04, 0x2e, - 0x04, 0x9d, 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, 0x00, 0x06, 0x01, 0x66, - 0x1f, 0xfb, 0xff, 0xff, 0x00, 0xa0, 0xff, 0xf0, 0x04, 0x2e, 0x06, 0x0c, - 0x06, 0x26, 0x02, 0x60, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0x00, 0x2a, - 0xff, 0xff, 0x00, 0x69, 0x00, 0x00, 0x04, 0x64, 0x06, 0x0c, 0x06, 0x26, - 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x01, 0x64, 0xff, 0x2a, 0xff, 0xff, - 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, 0x05, 0xea, 0x06, 0x26, 0x02, 0x62, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x90, 0x00, 0x2a, 0xff, 0xff, - 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, 0x05, 0xd6, 0x06, 0x26, 0x02, 0x62, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, 0xf5, 0x26, 0xff, 0xff, 0x00, 0xcb, - 0xff, 0xf0, 0x04, 0x02, 0x05, 0xee, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5f, 0x00, 0x20, 0xff, 0xff, 0x00, 0xcb, 0xff, 0xf0, - 0x04, 0x02, 0x06, 0x2f, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x62, 0x00, 0x1b, 0xff, 0xff, 0x00, 0xcb, 0xff, 0xf0, 0x04, 0x02, - 0x06, 0x1b, 0x06, 0x26, 0x02, 0x62, 0x00, 0x00, 0x00, 0x06, 0x01, 0x63, - 0x5b, 0x1b, 0x00, 0x01, 0x00, 0xcb, 0xfe, 0x9f, 0x04, 0x02, 0x04, 0x8d, - 0x00, 0x39, 0x00, 0x00, 0x41, 0x23, 0x03, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x27, 0x11, 0x23, 0x11, 0x16, 0x16, - 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x27, 0x06, - 0x06, 0x27, 0x26, 0x26, 0x27, 0x34, 0x36, 0x37, 0x36, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x04, 0x02, 0x35, 0x01, 0x01, 0x37, 0x2f, 0x30, 0x82, 0x4c, - 0x4d, 0x82, 0x2f, 0x30, 0x38, 0x01, 0x35, 0x01, 0x3f, 0x37, 0x36, 0x96, - 0x59, 0x16, 0x2d, 0x17, 0x17, 0x2c, 0x10, 0x11, 0x14, 0x17, 0x14, 0x14, - 0x39, 0x22, 0x25, 0x41, 0x1e, 0x10, 0x1a, 0x3a, 0x20, 0x2d, 0x36, 0x01, - 0x23, 0x1b, 0x1b, 0x40, 0x1d, 0x5e, 0x6f, 0x04, 0x8d, 0xfc, 0xea, 0x4e, - 0x7d, 0x2c, 0x2c, 0x2f, 0x2f, 0x2c, 0x2c, 0x7d, 0x4e, 0x03, 0x16, 0xfc, - 0xea, 0x5a, 0x91, 0x33, 0x33, 0x36, 0x04, 0x04, 0x14, 0x2c, 0x19, 0x19, - 0x35, 0x1d, 0x23, 0x37, 0x13, 0x13, 0x15, 0x17, 0x15, 0x30, 0x11, 0x16, - 0x01, 0x01, 0x31, 0x2d, 0x27, 0x42, 0x1d, 0x1c, 0x32, 0x15, 0x2f, 0xb0, - 0x7b, 0x00, 0xff, 0xff, 0x00, 0x26, 0x00, 0x00, 0x04, 0xa6, 0x06, 0x08, - 0x06, 0x26, 0x02, 0x64, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xf2, 0x1b, - 0xff, 0xff, 0x00, 0x63, 0x00, 0x00, 0x04, 0x69, 0x06, 0x08, 0x06, 0x26, - 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5c, 0xec, 0x1b, 0xff, 0xff, - 0x00, 0x63, 0x00, 0x00, 0x04, 0x69, 0x05, 0xe0, 0x06, 0x26, 0x02, 0x66, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xf9, 0x1b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x18, 0x06, 0x07, 0x06, 0x26, 0x02, 0x67, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5b, 0x00, 0xa7, 0x00, 0x1b, 0xff, 0xff, 0x00, 0xae, - 0x00, 0x00, 0x04, 0x18, 0x05, 0xc8, 0x06, 0x26, 0x02, 0x67, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x60, 0x4d, 0x1b, 0xff, 0xff, 0x00, 0xae, 0x00, 0x00, - 0x04, 0x18, 0x06, 0x0a, 0x06, 0x26, 0x02, 0x67, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x64, 0x1e, 0x28, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, - 0x06, 0x29, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfe, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x43, 0x00, 0x00, 0x04, 0x65, - 0x06, 0x2b, 0x04, 0x26, 0x00, 0x06, 0x50, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0xe8, 0x00, 0x01, 0xff, 0xff, 0x00, 0x30, 0x00, 0x00, 0x04, 0x6c, - 0x06, 0x2b, 0x04, 0x26, 0x00, 0x09, 0x50, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0xd5, 0x00, 0x01, 0xff, 0xff, 0x00, 0x20, 0x00, 0x00, 0x04, 0x4a, - 0x06, 0x2b, 0x04, 0x26, 0x00, 0x0a, 0x50, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0xc5, 0x00, 0x01, 0xff, 0xff, 0x00, 0x22, 0xff, 0xec, 0x04, 0x48, - 0x06, 0x29, 0x04, 0x26, 0x00, 0x10, 0x0a, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x00, 0x00, 0x04, 0xa2, - 0x06, 0x29, 0x04, 0x26, 0x00, 0x1a, 0x50, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0x81, 0xff, 0xff, 0xff, 0xff, 0x00, 0x1c, 0x00, 0x00, 0x04, 0x63, - 0x06, 0x29, 0x04, 0x26, 0x01, 0x84, 0x0a, 0x00, 0x00, 0x07, 0x01, 0x78, - 0xfd, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x00, 0xe7, 0xff, 0xec, 0x04, 0x14, - 0x06, 0x62, 0x06, 0x26, 0x01, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x79, - 0x9c, 0xe9, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, - 0x04, 0x46, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x03, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x06, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x8f, 0x00, 0x00, 0x04, 0x11, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb2, 0x00, 0x00, - 0x04, 0x1c, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x09, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0a, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xe5, 0x00, 0x00, 0x04, 0x97, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x00, 0xba, 0x00, 0x00, - 0x04, 0x2b, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0e, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xb4, 0x00, 0x00, 0x04, 0x1b, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0f, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x05, 0xc4, - 0x06, 0x06, 0x00, 0x10, 0x00, 0x00, 0xff, 0xff, 0x00, 0xf2, 0x00, 0x00, - 0x04, 0x64, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x11, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x70, 0x00, 0x00, 0x04, 0x63, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x15, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x80, 0x00, 0x00, - 0x04, 0x73, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x19, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x07, 0x04, 0x06, 0x26, 0x00, 0x0a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x0c, 0x01, 0x3f, 0xff, 0xff, - 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, 0x06, 0xf9, 0x06, 0x26, 0x00, 0x1a, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xe6, 0x01, 0x34, 0xff, 0xff, - 0x00, 0x8c, 0xff, 0xeb, 0x04, 0x85, 0x05, 0xd8, 0x06, 0x26, 0x01, 0x85, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0xd4, 0xae, 0xff, 0xff, 0x00, 0xaa, - 0xff, 0xec, 0x04, 0x4a, 0x05, 0xd7, 0x06, 0x26, 0x01, 0x89, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x78, 0x0b, 0xad, 0xff, 0xff, 0x00, 0xd0, 0xfe, 0x60, - 0x04, 0x00, 0x05, 0xd8, 0x06, 0x26, 0x01, 0x8b, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x78, 0xf3, 0xae, 0xff, 0xff, 0x00, 0xe7, 0xff, 0xec, 0x04, 0x14, - 0x05, 0xc3, 0x06, 0x26, 0x01, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, - 0xd3, 0x99, 0xff, 0xff, 0x00, 0xdd, 0xff, 0xec, 0x04, 0x07, 0x06, 0x62, - 0x06, 0x26, 0x01, 0x95, 0x00, 0x00, 0x00, 0x06, 0x01, 0x79, 0x9b, 0xe9, - 0xff, 0xff, 0x00, 0xf1, 0x00, 0x00, 0x04, 0x58, 0x04, 0x3a, 0x06, 0x06, - 0x00, 0x4f, 0x00, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x04, 0x4e, 0x06, 0x06, 0x00, 0x2a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xe0, - 0xfe, 0x60, 0x03, 0xee, 0x04, 0x3a, 0x06, 0x06, 0x01, 0x6b, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x74, 0x00, 0x00, 0x04, 0x54, 0x04, 0x3a, 0x06, 0x06, - 0x00, 0x31, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0x00, 0x00, 0x04, 0x51, - 0x04, 0x3a, 0x06, 0x06, 0x00, 0x33, 0x00, 0x00, 0xff, 0xff, 0x00, 0xe7, - 0xff, 0xec, 0x04, 0x14, 0x05, 0xae, 0x06, 0x26, 0x01, 0x8d, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0xd5, 0xe9, 0xff, 0xff, 0x00, 0xdd, 0xff, 0xec, - 0x04, 0x07, 0x05, 0xae, 0x06, 0x26, 0x01, 0x95, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0xd4, 0xe9, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x05, 0xd8, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, - 0xfb, 0xae, 0xff, 0xff, 0x00, 0xdd, 0xff, 0xec, 0x04, 0x07, 0x05, 0xc3, - 0x06, 0x26, 0x01, 0x95, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0xd2, 0x99, - 0xff, 0xff, 0x00, 0x5e, 0xff, 0xec, 0x04, 0x7e, 0x05, 0xc3, 0x06, 0x26, - 0x01, 0x98, 0x00, 0x00, 0x00, 0x06, 0x01, 0x78, 0x05, 0x99, 0xff, 0xff, - 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x06, 0xfb, 0x06, 0x26, 0x00, 0x06, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x0d, 0x01, 0x36, 0xff, 0xff, - 0x00, 0xc7, 0x00, 0x00, 0x04, 0x21, 0x07, 0x2b, 0x06, 0x26, 0x01, 0x7b, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x4c, 0x01, 0x3f, 0x00, 0x01, - 0x00, 0x9c, 0xff, 0xec, 0x04, 0x4b, 0x05, 0xc4, 0x00, 0x4f, 0x00, 0x00, - 0x41, 0x14, 0x06, 0x07, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x23, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, - 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, - 0x26, 0x27, 0x26, 0x26, 0x37, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, - 0x16, 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, - 0x22, 0x06, 0x07, 0x06, 0x06, 0x15, 0x06, 0x16, 0x17, 0x16, 0x16, 0x17, - 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x04, 0x14, 0x45, 0x38, - 0x38, 0x8f, 0x49, 0x56, 0x97, 0x3a, 0x3b, 0x4b, 0x09, 0x35, 0x04, 0x54, - 0x43, 0x43, 0xae, 0x5f, 0x55, 0xa2, 0x40, 0x3f, 0x4e, 0x51, 0x40, 0x41, - 0x9f, 0x4e, 0x2c, 0x5d, 0x2d, 0x2d, 0x4f, 0x1e, 0x1e, 0x23, 0x01, 0x01, - 0x46, 0x38, 0x38, 0x8a, 0x44, 0x51, 0x88, 0x33, 0x33, 0x3f, 0x08, 0x35, - 0x04, 0x47, 0x3b, 0x3b, 0x9f, 0x5b, 0x50, 0x9d, 0x3f, 0x3f, 0x4f, 0x01, - 0x25, 0x20, 0x20, 0x56, 0x31, 0x31, 0x68, 0x32, 0x45, 0x91, 0x3b, 0x3b, - 0x4c, 0x01, 0x5d, 0x53, 0x77, 0x26, 0x26, 0x25, 0x2d, 0x2d, 0x2d, 0x85, - 0x59, 0x65, 0x99, 0x34, 0x34, 0x35, 0x2e, 0x2e, 0x2e, 0x8b, 0x5e, 0x5f, - 0x8a, 0x31, 0x30, 0x42, 0x17, 0x0d, 0x20, 0x15, 0x14, 0x36, 0x23, 0x22, - 0x58, 0x37, 0x4d, 0x71, 0x25, 0x25, 0x24, 0x34, 0x2f, 0x2f, 0x83, 0x4f, - 0x5d, 0x98, 0x35, 0x35, 0x3b, 0x2d, 0x2c, 0x2d, 0x86, 0x58, 0x3e, 0x63, - 0x27, 0x28, 0x3d, 0x18, 0x18, 0x26, 0x0f, 0x15, 0x39, 0x2a, 0x2a, 0x79, - 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, - 0x07, 0x04, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x0c, 0x01, 0x3f, 0xff, 0xff, 0x00, 0x7d, 0xff, 0xec, 0x03, 0xea, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x00, 0xfb, - 0x00, 0x00, 0x04, 0xac, 0x05, 0xb0, 0x06, 0x06, 0x02, 0x71, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xe5, 0x00, 0x00, 0x04, 0x97, 0x06, 0xd3, 0x06, 0x26, - 0x00, 0x0c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x31, 0x00, 0xe7, - 0xff, 0xff, 0x00, 0x0c, 0xff, 0xeb, 0x04, 0xc6, 0x07, 0x12, 0x06, 0x26, - 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x2b, 0x01, 0x44, - 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd9, 0x00, 0x00, 0x04, 0x46, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, - 0x00, 0x00, 0x04, 0x21, 0x05, 0xb0, 0x06, 0x06, 0x01, 0x7b, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x18, - 0x07, 0x12, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0xff, 0xf4, 0x01, 0x44, 0xff, 0xff, 0x00, 0xba, 0x00, 0x00, 0x04, 0x2b, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb2, - 0x00, 0x00, 0x04, 0x1c, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x09, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x05, 0xc4, 0x06, 0x06, - 0x00, 0x10, 0x00, 0x00, 0xff, 0xff, 0x00, 0xba, 0x00, 0x00, 0x04, 0x13, - 0x05, 0xb0, 0x06, 0x06, 0x01, 0x80, 0x00, 0x00, 0xff, 0xff, 0x00, 0xf2, - 0x00, 0x00, 0x04, 0x64, 0x05, 0xb0, 0x06, 0x06, 0x00, 0x11, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x8f, 0xff, 0xeb, 0x04, 0x3a, 0x05, 0xc5, 0x06, 0x06, - 0x00, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x70, 0x00, 0x00, 0x04, 0x63, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x15, 0x00, 0x00, 0xff, 0xff, 0x00, 0x59, - 0x00, 0x00, 0x04, 0x75, 0x05, 0xb0, 0x06, 0x06, 0x01, 0x82, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x80, 0x00, 0x00, 0x04, 0x73, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x19, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, - 0x04, 0x4e, 0x06, 0x06, 0x00, 0x1c, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x29, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x20, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xd5, 0x00, 0x00, 0x03, 0xf9, 0x05, 0xbc, 0x06, 0x26, - 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x07, 0xee, 0xff, 0xff, - 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x2a, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xdc, 0xfe, 0x60, 0x04, 0x19, 0x04, 0x4e, - 0x06, 0x06, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x01, 0x00, 0xb3, 0xff, 0xec, - 0x04, 0x0f, 0x04, 0x4e, 0x00, 0x33, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, - 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, - 0x17, 0x16, 0x16, 0x17, 0x33, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, - 0x32, 0x36, 0x37, 0x36, 0x36, 0x37, 0x23, 0x06, 0x06, 0x07, 0x06, 0x06, - 0x02, 0x76, 0x68, 0x95, 0x30, 0x31, 0x2e, 0x01, 0x01, 0x2e, 0x31, 0x30, - 0x94, 0x67, 0x49, 0x7d, 0x30, 0x2f, 0x3a, 0x06, 0x36, 0x07, 0x42, 0x36, - 0x36, 0x91, 0x55, 0x72, 0xa8, 0x37, 0x38, 0x37, 0x01, 0x01, 0x37, 0x38, - 0x38, 0xa9, 0x72, 0x4f, 0x8f, 0x37, 0x36, 0x46, 0x08, 0x36, 0x08, 0x3c, - 0x2f, 0x30, 0x7b, 0x22, 0x53, 0x44, 0x44, 0xae, 0x5d, 0x2a, 0x5b, 0xaf, - 0x45, 0x44, 0x53, 0x2e, 0x2a, 0x2b, 0x77, 0x49, 0x55, 0x8b, 0x32, 0x31, - 0x36, 0x5c, 0x4b, 0x4c, 0xc3, 0x66, 0x2a, 0x67, 0xc2, 0x4b, 0x4c, 0x5c, - 0x30, 0x2d, 0x2d, 0x81, 0x51, 0x47, 0x6e, 0x25, 0x26, 0x26, 0xff, 0xff, - 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x04, 0x3a, 0x06, 0x06, 0x00, 0x34, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0x00, 0x00, 0x04, 0x51, 0x04, 0x3a, - 0x06, 0x06, 0x00, 0x33, 0x00, 0x00, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x29, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0x0a, 0xff, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x04, 0x10, - 0x05, 0xd5, 0x06, 0x26, 0x01, 0xb5, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, - 0xf6, 0xe9, 0xff, 0xff, 0x00, 0xcc, 0xff, 0xec, 0x04, 0x21, 0x04, 0x4e, - 0x06, 0x06, 0x00, 0x2e, 0x00, 0x00, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x04, 0x32, 0x05, 0xb8, 0x06, 0x06, 0x00, 0x24, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xef, 0x00, 0x00, 0x04, 0x32, 0x05, 0xec, 0x06, 0x26, 0x01, 0x6d, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x28, 0x27, 0xff, 0xff, 0x00, 0xb3, - 0xfe, 0x4b, 0x03, 0x2c, 0x05, 0xb9, 0x06, 0x06, 0x00, 0x25, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xf6, 0x00, 0x00, 0x04, 0x7a, 0x05, 0xd4, 0x06, 0x26, - 0x01, 0xba, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0xde, 0xe8, 0xff, 0xff, - 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x05, 0xd3, 0x06, 0x26, 0x00, 0x34, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x0d, 0x05, 0xff, 0xff, 0x00, 0xb4, - 0xff, 0xfa, 0x04, 0x1a, 0x05, 0xb0, 0x04, 0x27, 0x00, 0x5b, 0xfe, 0x95, - 0x00, 0x00, 0x00, 0x07, 0x00, 0x5b, 0x01, 0x89, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xbb, 0xfe, 0x4b, 0x03, 0xeb, 0x06, 0x45, 0x06, 0x26, 0x01, 0x71, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x64, 0x00, 0x8d, 0x00, 0x63, 0xff, 0xff, - 0x02, 0x0e, 0x04, 0x7f, 0x02, 0x9c, 0x06, 0x00, 0x06, 0x06, 0x00, 0x6d, - 0x00, 0x00, 0xff, 0xff, 0x00, 0xba, 0x00, 0x00, 0x04, 0x2b, 0x07, 0x2b, - 0x06, 0x26, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0x65, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x56, 0x00, 0x00, 0x04, 0x79, 0x05, 0xea, - 0x06, 0x26, 0x00, 0x28, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x5c, 0xfe, - 0xff, 0xff, 0x00, 0x7a, 0xfe, 0xb8, 0x04, 0x72, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x01, 0x72, 0xfc, 0x07, 0xff, 0xff, - 0x00, 0xb8, 0xfe, 0xb7, 0x04, 0x1c, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x72, 0xbf, 0x06, 0xff, 0xff, 0xff, 0xc7, - 0xff, 0xec, 0x04, 0x3e, 0x06, 0x6f, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6c, 0xfd, 0xc1, 0x00, 0xa5, 0xff, 0xff, 0x00, 0xdc, - 0x00, 0x00, 0x04, 0x15, 0x07, 0x2b, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0xd3, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb5, - 0x00, 0x00, 0x04, 0x18, 0x07, 0x2b, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5a, 0xff, 0xa4, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x29, 0x05, 0xeb, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5a, 0xc0, 0xff, 0xff, 0xff, 0x00, 0xd5, 0x00, 0x00, - 0x03, 0xf9, 0x05, 0xd5, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5a, 0xb8, 0xe9, 0xff, 0xff, 0x00, 0x91, 0x00, 0x00, 0x04, 0x4c, - 0x05, 0xb0, 0x06, 0x06, 0x01, 0x83, 0x00, 0x00, 0xff, 0xff, 0x00, 0xab, - 0xfe, 0x61, 0x04, 0x46, 0x04, 0x3a, 0x06, 0x06, 0x01, 0x97, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x4e, 0x00, 0x00, 0x04, 0xef, 0x06, 0xe8, 0x06, 0x26, - 0x01, 0xe2, 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x05, 0xdb, 0x00, 0xfa, - 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x55, 0x05, 0xc1, 0x06, 0x26, - 0x01, 0xe3, 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x05, 0x8b, 0xff, 0xd3, - 0xff, 0xff, 0x00, 0x69, 0xfe, 0x51, 0x04, 0x60, 0x05, 0xc4, 0x06, 0x26, - 0x01, 0xa5, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0x00, 0xb1, 0xff, 0xff, - 0x00, 0xaf, 0xfe, 0x52, 0x04, 0x4a, 0x04, 0x4e, 0x06, 0x26, 0x01, 0xb8, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0x1a, 0xb2, 0xff, 0xff, 0x00, 0x8f, - 0xfe, 0x51, 0x04, 0x3a, 0x05, 0xc5, 0x06, 0x26, 0x00, 0x04, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x6e, 0x02, 0xb1, 0xff, 0xff, 0x00, 0xb3, 0xfe, 0x51, - 0x04, 0x0f, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x6e, 0x12, 0xb1, 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, - 0x05, 0xb0, 0x06, 0x06, 0x00, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6e, - 0xfe, 0x61, 0x04, 0x79, 0x04, 0x3a, 0x06, 0x06, 0x01, 0x87, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x05, 0xb0, 0x06, 0x06, - 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x04, 0x8e, - 0x07, 0x12, 0x06, 0x26, 0x01, 0xa4, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, - 0xff, 0xfb, 0x01, 0x44, 0xff, 0xff, 0x00, 0x11, 0x00, 0x00, 0x04, 0xac, - 0x05, 0xbc, 0x06, 0x26, 0x01, 0xb7, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, - 0xf2, 0xee, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, 0x03, 0xfa, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, - 0x04, 0x72, 0x07, 0x12, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5f, 0x00, 0x0e, 0x01, 0x44, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0x1c, 0x05, 0xd2, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5f, 0x1c, 0x04, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, - 0x07, 0x04, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0x00, 0x09, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, - 0x05, 0xc5, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x17, 0x00, 0xff, 0xff, 0x00, 0x4e, 0x00, 0x00, 0x04, 0x7c, 0x05, 0xb0, - 0x06, 0x06, 0x00, 0x48, 0x00, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0xec, - 0x04, 0x99, 0x04, 0x4e, 0x06, 0x06, 0x00, 0x49, 0x00, 0x00, 0xff, 0xff, - 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x07, 0x12, 0x06, 0x26, 0x00, 0x06, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5f, 0x00, 0x10, 0x01, 0x44, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xd1, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5f, 0x0f, 0x03, 0xff, 0xff, 0x00, 0x63, - 0xff, 0xec, 0x04, 0x4c, 0x06, 0xd6, 0x06, 0x26, 0x02, 0x10, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0x00, 0x03, 0x01, 0x11, 0xff, 0xff, 0x00, 0xbd, - 0xff, 0xeb, 0x04, 0x42, 0x04, 0x4f, 0x06, 0x06, 0x00, 0x51, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xbd, 0xff, 0xeb, 0x04, 0x42, 0x05, 0xc4, 0x06, 0x26, - 0x00, 0x51, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x2b, 0xff, 0xff, 0xff, - 0x00, 0x3c, 0x00, 0x00, 0x04, 0x8e, 0x07, 0x04, 0x06, 0x26, 0x01, 0xa4, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0xff, 0xfc, 0x01, 0x3f, 0xff, 0xff, - 0x00, 0x11, 0x00, 0x00, 0x04, 0xac, 0x05, 0xae, 0x06, 0x26, 0x01, 0xb7, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xd7, 0xe9, 0xff, 0xff, 0x00, 0x69, - 0xff, 0xeb, 0x04, 0x60, 0x07, 0x19, 0x06, 0x26, 0x01, 0xa5, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xfc, 0x01, 0x54, 0xff, 0xff, 0x00, 0xaf, - 0xff, 0xed, 0x04, 0x4a, 0x05, 0xc2, 0x06, 0x26, 0x01, 0xb8, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0x12, 0xfd, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, - 0x04, 0x18, 0x06, 0xfa, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5e, 0xff, 0xfe, 0x01, 0x4a, 0xff, 0xff, 0x00, 0xd5, 0x00, 0x00, - 0x03, 0xf9, 0x05, 0xa4, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5e, 0xfd, 0xf4, 0xff, 0xff, 0x00, 0xb5, 0x00, 0x00, 0x04, 0x18, - 0x07, 0x04, 0x06, 0x26, 0x01, 0xa6, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, - 0xff, 0xef, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd5, 0x00, 0x00, 0x03, 0xf9, - 0x05, 0xae, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, - 0x02, 0xe9, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x07, 0x19, - 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x00, - 0x01, 0x54, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x05, 0xc3, - 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0xfd, 0xfe, - 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x05, 0xc4, 0x06, 0x06, - 0x01, 0xe0, 0x00, 0x00, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x04, 0x4e, 0x06, 0x06, 0x01, 0xe1, 0x00, 0x00, 0xff, 0xff, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0x3e, 0x06, 0xff, 0x06, 0x26, 0x01, 0xe0, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0xff, 0xfc, 0x01, 0x3a, 0xff, 0xff, 0x00, 0x8d, - 0xff, 0xec, 0x04, 0x40, 0x05, 0xde, 0x06, 0x26, 0x01, 0xe1, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x61, 0x00, 0x19, 0xff, 0xff, 0x00, 0x90, 0xff, 0xec, - 0x04, 0x34, 0x07, 0x1a, 0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x61, 0xff, 0xf9, 0x01, 0x55, 0xff, 0xff, 0x00, 0x9e, 0xff, 0xec, - 0x04, 0x31, 0x05, 0xc3, 0x06, 0x26, 0x01, 0xc8, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x61, 0xe3, 0xfe, 0xff, 0xff, 0x00, 0x0c, 0xff, 0xeb, 0x04, 0xc6, - 0x06, 0xfa, 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5e, - 0x00, 0x20, 0x01, 0x4a, 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, - 0x05, 0xbb, 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5e, - 0x02, 0x0b, 0xff, 0xff, 0x00, 0x0c, 0xff, 0xeb, 0x04, 0xc6, 0x07, 0x04, - 0x06, 0x26, 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x26, - 0x01, 0x3f, 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x05, 0xc5, - 0x06, 0x26, 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x08, 0x00, - 0xff, 0xff, 0x00, 0x0c, 0xff, 0xeb, 0x04, 0xc6, 0x07, 0x3f, 0x06, 0x26, - 0x01, 0xa8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x63, 0x00, 0x87, 0x01, 0x3f, - 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x06, 0x00, 0x06, 0x26, - 0x00, 0x34, 0x00, 0x00, 0x00, 0x06, 0x01, 0x63, 0x69, 0x00, 0xff, 0xff, - 0x00, 0xe2, 0x00, 0x00, 0x03, 0xf2, 0x07, 0x04, 0x06, 0x26, 0x01, 0xaa, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x61, 0x00, 0x09, 0x01, 0x3f, 0xff, 0xff, - 0x00, 0xb4, 0x00, 0x00, 0x03, 0xfa, 0x05, 0xae, 0x06, 0x26, 0x01, 0xc2, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x61, 0x44, 0xe9, 0xff, 0xff, 0x00, 0xc1, - 0x00, 0x00, 0x04, 0x1f, 0x07, 0x04, 0x06, 0x26, 0x01, 0xae, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0x00, 0x01, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xb8, - 0x00, 0x00, 0x04, 0x19, 0x05, 0xae, 0x06, 0x26, 0x01, 0xc6, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x61, 0x00, 0x9f, 0xff, 0xe9, 0xff, 0xff, 0x00, 0x80, - 0xfe, 0x4b, 0x04, 0x77, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x19, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6f, 0x01, 0x79, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, - 0xfe, 0x4b, 0x04, 0x53, 0x04, 0x3a, 0x06, 0x26, 0x00, 0x33, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6f, 0x01, 0x55, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb0, - 0xff, 0xec, 0x03, 0xed, 0x06, 0x00, 0x06, 0x06, 0x00, 0x1f, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x33, 0xfe, 0x4b, 0x04, 0x56, 0x05, 0xb0, 0x06, 0x26, - 0x01, 0xa7, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x01, 0x58, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x4c, 0xfe, 0x4b, 0x04, 0x1d, 0x04, 0x3a, 0x06, 0x26, - 0x01, 0xbb, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6f, 0x01, 0x1f, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x7a, 0xfe, 0xef, 0x04, 0x72, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x64, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xfe, 0xef, 0x04, 0x1c, 0x04, 0x4e, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x1a, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0xa7, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xe2, 0x01, 0x68, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x06, 0x67, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xf0, 0x00, 0x28, - 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x71, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4c, 0xff, 0xf4, 0x01, 0x41, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x4b, 0x06, 0x31, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4c, 0x01, 0x01, 0xff, 0xff, - 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0x71, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x4b, 0x00, 0x10, 0x01, 0x41, 0xff, 0xff, - 0x00, 0xb3, 0xff, 0xec, 0x04, 0x1c, 0x06, 0x31, 0x06, 0x26, 0x00, 0x1c, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x4b, 0x1e, 0x01, 0xff, 0xff, 0x00, 0x7a, - 0x00, 0x00, 0x04, 0x79, 0x07, 0xe8, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x4a, 0x00, 0x19, 0x01, 0x54, 0xff, 0xff, 0x00, 0xb8, - 0xff, 0xec, 0x04, 0x87, 0x06, 0xa8, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x4a, 0x27, 0x14, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, - 0x04, 0x72, 0x07, 0xc7, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x49, 0xff, 0xe9, 0x01, 0x36, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0x1c, 0x06, 0x88, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x49, 0xf7, 0xf7, 0xff, 0xff, 0x00, 0x7a, 0xfe, 0xef, 0x04, 0x72, - 0x07, 0x2c, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5c, - 0xff, 0xfd, 0x01, 0x3f, 0x00, 0x07, 0x01, 0x65, 0x05, 0x64, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xb8, 0xfe, 0xef, 0x04, 0x1c, 0x05, 0xed, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x26, 0x01, 0x5c, 0x0a, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, - 0x04, 0x72, 0x07, 0xb9, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x69, 0xff, 0xfe, 0x01, 0x54, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, - 0x04, 0x1c, 0x06, 0x79, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x69, 0x0b, 0x14, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, - 0x07, 0xdf, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4d, - 0x00, 0x00, 0x01, 0x7a, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, - 0x06, 0x9f, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4d, - 0x0e, 0x3a, 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x08, 0x30, - 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x68, 0xff, 0xf2, - 0x01, 0x49, 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x06, 0xf0, - 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x68, 0x00, 0x09, - 0xff, 0xff, 0x00, 0x7a, 0x00, 0x00, 0x04, 0x72, 0x07, 0xdd, 0x06, 0x26, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6d, 0xff, 0xcd, 0x01, 0x51, - 0xff, 0xff, 0x00, 0xb8, 0xff, 0xec, 0x04, 0x1c, 0x06, 0x9d, 0x06, 0x26, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6d, 0xdb, 0x11, 0xff, 0xff, - 0x00, 0x7a, 0xfe, 0xef, 0x04, 0x72, 0x07, 0x12, 0x06, 0x26, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x27, 0x01, 0x5f, 0x00, 0x0e, 0x01, 0x44, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x64, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb8, 0xfe, 0xef, - 0x04, 0x1c, 0x05, 0xd2, 0x06, 0x26, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x26, - 0x01, 0x5f, 0x1c, 0x04, 0x00, 0x07, 0x01, 0x65, 0x05, 0x1a, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xdc, 0xfe, 0xf9, 0x04, 0x15, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x02, 0x00, 0x0a, - 0xff, 0xff, 0x00, 0xa4, 0xfe, 0xf3, 0x04, 0x29, 0x04, 0x4e, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x77, 0x00, 0x04, - 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x07, 0xa7, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xd0, 0x01, 0x68, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x06, 0x66, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xe3, 0x00, 0x27, - 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x15, 0x07, 0x0e, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x9d, 0x01, 0x4e, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x05, 0xcd, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0xa0, 0x00, 0x0d, - 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, 0x04, 0x45, 0x07, 0x71, 0x06, 0x26, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4c, 0xff, 0xfb, 0x01, 0x41, - 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, 0x04, 0x3f, 0x06, 0x30, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4c, 0xf5, 0x00, 0xff, 0xff, - 0x00, 0x9b, 0x00, 0x00, 0x04, 0x15, 0x07, 0x71, 0x06, 0x26, 0x00, 0x06, - 0x00, 0x00, 0x00, 0x07, 0x02, 0x4b, 0x00, 0x06, 0x01, 0x41, 0xff, 0xff, - 0x00, 0xa4, 0xff, 0xec, 0x04, 0x29, 0x06, 0x30, 0x06, 0x26, 0x00, 0x20, - 0x00, 0x00, 0x00, 0x06, 0x02, 0x4b, 0x11, 0x00, 0xff, 0xff, 0x00, 0xdc, - 0x00, 0x00, 0x04, 0x81, 0x07, 0xe8, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x4a, 0x00, 0x21, 0x01, 0x54, 0xff, 0xff, 0x00, 0xa4, - 0xff, 0xec, 0x04, 0x7a, 0x06, 0xa7, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x4a, 0x1a, 0x13, 0xff, 0xff, 0x00, 0xdc, 0x00, 0x00, - 0x04, 0x15, 0x07, 0xc7, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x49, 0xff, 0xef, 0x01, 0x36, 0xff, 0xff, 0x00, 0xa4, 0xff, 0xec, - 0x04, 0x29, 0x06, 0x87, 0x06, 0x26, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x49, 0xea, 0xf6, 0xff, 0xff, 0x00, 0xdc, 0xfe, 0xf9, 0x04, 0x15, - 0x07, 0x2c, 0x06, 0x26, 0x00, 0x06, 0x00, 0x00, 0x00, 0x27, 0x01, 0x5c, - 0xff, 0xff, 0x01, 0x3f, 0x00, 0x07, 0x01, 0x65, 0x05, 0x02, 0x00, 0x0a, - 0xff, 0xff, 0x00, 0xa4, 0xfe, 0xf3, 0x04, 0x29, 0x05, 0xec, 0x06, 0x26, - 0x00, 0x20, 0x00, 0x00, 0x00, 0x26, 0x01, 0x5c, 0xfe, 0xff, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x77, 0x00, 0x04, 0xff, 0xff, 0x00, 0xd4, 0x00, 0x00, - 0x03, 0xfa, 0x07, 0xa7, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x04, 0xe5, 0x01, 0x68, 0xff, 0xff, 0x00, 0xef, 0x00, 0x00, - 0x04, 0x32, 0x06, 0x8f, 0x06, 0x26, 0x01, 0x6d, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x05, 0x01, 0x00, 0x50, 0xff, 0xff, 0x00, 0xd4, 0xfe, 0xf9, - 0x03, 0xfa, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x6c, 0x00, 0x0a, 0xff, 0xff, 0x00, 0xef, 0xfe, 0xf9, - 0x04, 0x32, 0x05, 0xb8, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0xd5, 0x00, 0x0a, 0xff, 0xff, 0x00, 0x8e, 0xfe, 0xee, - 0x04, 0x3e, 0x05, 0xc4, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x5b, 0xff, 0xff, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0xe6, - 0x04, 0x40, 0x04, 0x4e, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x5c, 0xff, 0xf7, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0xbc, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x04, 0xd9, 0x01, 0x7d, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, - 0x04, 0x40, 0x06, 0x65, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x04, 0xd5, 0x00, 0x26, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, - 0x04, 0x3e, 0x07, 0x86, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, - 0x02, 0x4c, 0xff, 0xeb, 0x01, 0x56, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, - 0x04, 0x40, 0x06, 0x30, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x4c, 0xe7, 0x00, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, - 0x07, 0x86, 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4b, - 0x00, 0x07, 0x01, 0x56, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, - 0x06, 0x30, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4b, - 0x03, 0x00, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x70, 0x07, 0xfd, - 0x06, 0x26, 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x02, 0x4a, 0x00, 0x10, - 0x01, 0x69, 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x6c, 0x06, 0xa6, - 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x02, 0x4a, 0x0c, 0x12, - 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0x3e, 0x07, 0xdc, 0x06, 0x26, - 0x00, 0x10, 0x00, 0x00, 0x00, 0x07, 0x02, 0x49, 0xff, 0xe0, 0x01, 0x4b, - 0xff, 0xff, 0x00, 0x8d, 0xff, 0xec, 0x04, 0x40, 0x06, 0x86, 0x06, 0x26, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x06, 0x02, 0x49, 0xdc, 0xf5, 0xff, 0xff, - 0x00, 0x8e, 0xfe, 0xee, 0x04, 0x3e, 0x07, 0x41, 0x06, 0x26, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x27, 0x01, 0x5c, 0xff, 0xf4, 0x01, 0x54, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x5b, 0xff, 0xff, 0xff, 0xff, 0x00, 0x8d, 0xfe, 0xe6, - 0x04, 0x40, 0x05, 0xeb, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x26, - 0x01, 0x5c, 0xf0, 0xfe, 0x00, 0x07, 0x01, 0x65, 0x05, 0x5c, 0xff, 0xf7, - 0xff, 0xff, 0x00, 0x8e, 0xff, 0xec, 0x04, 0xd1, 0x07, 0x35, 0x06, 0x26, - 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5b, 0x00, 0xab, 0x01, 0x49, - 0xff, 0xff, 0x00, 0x72, 0xff, 0xec, 0x04, 0xaa, 0x05, 0xea, 0x06, 0x26, - 0x01, 0x35, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5b, 0x32, 0xfe, 0xff, 0xff, - 0x00, 0x8e, 0xff, 0xec, 0x04, 0xd1, 0x07, 0x35, 0x06, 0x26, 0x00, 0xd8, - 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, 0x00, 0x01, 0x01, 0x49, 0xff, 0xff, - 0x00, 0x72, 0xff, 0xec, 0x04, 0xaa, 0x05, 0xea, 0x06, 0x26, 0x01, 0x35, - 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, 0xee, 0xfe, 0xff, 0xff, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0xd1, 0x07, 0xb1, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xf7, 0x01, 0x72, 0xff, 0xff, 0x00, 0x72, - 0xff, 0xec, 0x04, 0xaa, 0x06, 0x65, 0x06, 0x26, 0x01, 0x35, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x76, 0x04, 0xe4, 0x00, 0x26, 0xff, 0xff, 0x00, 0x8e, - 0xff, 0xec, 0x04, 0xd1, 0x07, 0x18, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, - 0x00, 0x07, 0x01, 0x5d, 0x00, 0x92, 0x01, 0x58, 0xff, 0xff, 0x00, 0x72, - 0xff, 0xec, 0x04, 0xaa, 0x05, 0xcc, 0x06, 0x26, 0x01, 0x35, 0x00, 0x00, - 0x00, 0x06, 0x01, 0x5d, 0x7b, 0x0c, 0xff, 0xff, 0x00, 0x8e, 0xfe, 0xef, - 0x04, 0xd1, 0x06, 0x05, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x84, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72, 0xfe, 0xe6, - 0x04, 0xaa, 0x04, 0xac, 0x06, 0x26, 0x01, 0x35, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x49, 0xff, 0xf7, 0xff, 0xff, 0x00, 0xb0, 0xfe, 0xef, - 0x04, 0x1e, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x58, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd8, 0xfe, 0xef, - 0x03, 0xfc, 0x04, 0x3a, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x65, 0x05, 0x43, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, - 0x04, 0x1e, 0x07, 0xa7, 0x06, 0x26, 0x00, 0x16, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x04, 0xd1, 0x01, 0x68, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, - 0x03, 0xfc, 0x06, 0x68, 0x06, 0x26, 0x00, 0x30, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x76, 0x04, 0xb3, 0x00, 0x29, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, - 0x05, 0x10, 0x07, 0x2b, 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, - 0x01, 0x5b, 0x00, 0x3c, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, - 0x04, 0xf4, 0x05, 0xd5, 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, - 0x01, 0x5b, 0x3d, 0xe9, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, 0x05, 0x10, - 0x07, 0x2b, 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5a, - 0xff, 0xc0, 0x01, 0x3f, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x04, 0xf4, - 0x05, 0xd5, 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5a, - 0xd4, 0xe9, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, 0x05, 0x10, 0x07, 0xa7, - 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xb6, - 0x01, 0x68, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x04, 0xf4, 0x06, 0x50, - 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xb7, - 0x00, 0x11, 0xff, 0xff, 0x00, 0xb0, 0xff, 0xec, 0x05, 0x10, 0x07, 0x0e, - 0x06, 0x26, 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x73, - 0x01, 0x4e, 0xff, 0xff, 0x00, 0xd8, 0xff, 0xec, 0x04, 0xf4, 0x05, 0xb8, - 0x06, 0x26, 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, 0x01, 0x5d, 0x74, 0xf8, - 0xff, 0xff, 0x00, 0xb0, 0xfe, 0xef, 0x05, 0x10, 0x06, 0x0f, 0x06, 0x26, - 0x00, 0xec, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x56, 0x00, 0x00, - 0xff, 0xff, 0x00, 0xd8, 0xfe, 0xef, 0x04, 0xf4, 0x04, 0xa6, 0x06, 0x26, - 0x01, 0x49, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x32, 0x00, 0x00, - 0xff, 0xff, 0x00, 0x5a, 0xfe, 0xf9, 0x04, 0x52, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x05, 0x4b, 0x00, 0x0a, - 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x04, 0x3a, 0x06, 0x26, - 0x00, 0x34, 0x00, 0x00, 0x00, 0x07, 0x01, 0x65, 0x06, 0x11, 0xff, 0x63, - 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, 0x07, 0x9c, 0x06, 0x26, - 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xbe, 0x01, 0x5d, - 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x06, 0x68, 0x06, 0x26, - 0x00, 0x34, 0x00, 0x00, 0x00, 0x07, 0x01, 0x76, 0x04, 0xe1, 0x00, 0x29, - 0xff, 0xff, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, 0x07, 0x03, 0x06, 0x26, - 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x7b, 0x01, 0x43, - 0xff, 0xff, 0x00, 0x54, 0xfe, 0x4b, 0x04, 0x75, 0x05, 0xcf, 0x06, 0x26, - 0x00, 0x34, 0x00, 0x00, 0x00, 0x07, 0x01, 0x5d, 0x00, 0x9e, 0x00, 0x0f, - 0xff, 0xff, 0x00, 0x80, 0xff, 0x2e, 0x04, 0xa6, 0x06, 0x00, 0x04, 0x26, - 0x00, 0x1f, 0xf1, 0x00, 0x00, 0x27, 0x02, 0x6a, 0x01, 0x0b, 0x02, 0x30, - 0x00, 0x07, 0x00, 0x66, 0xff, 0xc1, 0xff, 0x64, 0xff, 0xff, 0x00, 0xfb, - 0xfe, 0xa0, 0x04, 0xac, 0x05, 0xb0, 0x06, 0x26, 0x02, 0x71, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6e, 0x02, 0x25, 0x00, 0x00, 0xff, 0xff, 0x00, 0xf6, - 0xfe, 0x8d, 0x04, 0x7a, 0x04, 0x3a, 0x06, 0x26, 0x01, 0xba, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6e, 0x01, 0xf9, 0xff, 0xed, 0xff, 0xff, 0x00, 0xb2, - 0xfe, 0xa0, 0x04, 0x48, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x09, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6e, 0x01, 0xca, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd5, - 0xfe, 0xa0, 0x04, 0x2b, 0x04, 0x3a, 0x06, 0x26, 0x01, 0xbd, 0x00, 0x00, - 0x00, 0x07, 0x02, 0x6e, 0x01, 0xad, 0x00, 0x00, 0xff, 0xff, 0x00, 0x70, - 0xfe, 0xa0, 0x04, 0x63, 0x05, 0xb0, 0x06, 0x26, 0x00, 0x15, 0x00, 0x00, - 0x00, 0x06, 0x02, 0x6e, 0x38, 0x00, 0xff, 0xff, 0x00, 0x7a, 0xfe, 0xa0, - 0x04, 0x6e, 0x04, 0x3a, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00, 0x00, 0x06, - 0x02, 0x6e, 0x38, 0x00, 0xff, 0xff, 0x00, 0x80, 0xfe, 0xa0, 0x04, 0x74, - 0x05, 0xb0, 0x06, 0x26, 0x00, 0x19, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0xf6, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0xfe, 0xa0, 0x04, 0x51, - 0x04, 0x3a, 0x06, 0x26, 0x00, 0x33, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0xd2, 0x00, 0x00, 0xff, 0xff, 0x00, 0xe2, 0xfe, 0xa0, 0x04, 0x24, - 0x05, 0xb0, 0x06, 0x26, 0x01, 0xaa, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0xa6, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb4, 0xfe, 0xa0, 0x04, 0x2c, - 0x04, 0x3a, 0x06, 0x26, 0x01, 0xc2, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0xae, 0x00, 0x00, 0xff, 0xff, 0x00, 0xe2, 0xfe, 0xa0, 0x03, 0xf2, - 0x05, 0xb0, 0x06, 0x26, 0x01, 0xaa, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0x45, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb4, 0xfe, 0xa0, 0x03, 0xfa, - 0x04, 0x3a, 0x06, 0x26, 0x01, 0xc2, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x01, 0x48, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc7, 0xfe, 0xa0, 0x04, 0x21, - 0x05, 0xb0, 0x06, 0x26, 0x01, 0x7b, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0xfe, 0xb2, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd4, 0xfe, 0xa0, 0x04, 0x10, - 0x04, 0x3a, 0x06, 0x26, 0x01, 0xb5, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0xfe, 0xc4, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3c, 0xfe, 0xa0, 0x04, 0xc0, - 0x05, 0xb0, 0x06, 0x26, 0x01, 0xa4, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x02, 0x42, 0x00, 0x00, 0xff, 0xff, 0x00, 0x11, 0xfe, 0xa0, 0x04, 0xac, - 0x04, 0x3a, 0x06, 0x26, 0x01, 0xb7, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6e, - 0x02, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xfe, 0x58, 0x04, 0x7c, - 0x05, 0xc3, 0x06, 0x26, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, - 0x7e, 0xb8, 0xff, 0xff, 0x00, 0x1e, 0xfe, 0x5b, 0x04, 0x56, 0x04, 0x4e, - 0x06, 0x26, 0x02, 0x0b, 0x00, 0x00, 0x00, 0x06, 0x02, 0x6e, 0x7e, 0xbb, - 0xff, 0xff, 0x00, 0xd5, 0x00, 0x00, 0x04, 0x09, 0x06, 0x00, 0x06, 0x06, - 0x00, 0x23, 0x00, 0x00, 0x00, 0x02, 0xff, 0xf4, 0x00, 0x00, 0x04, 0x19, - 0x04, 0x3a, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, - 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, - 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x35, 0x15, 0x21, 0x16, - 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, - 0x02, 0x3f, 0xfe, 0xcc, 0x37, 0xe0, 0xe0, 0x01, 0xa9, 0x4d, 0x94, 0x3a, - 0x3a, 0x47, 0x47, 0x3a, 0x3b, 0x94, 0x4c, 0xfe, 0x8e, 0x01, 0x72, 0x40, - 0x80, 0x33, 0x33, 0x40, 0x3f, 0x33, 0x33, 0x80, 0x41, 0xfe, 0x8e, 0x03, - 0x60, 0x36, 0xa4, 0xa4, 0x36, 0xfc, 0xa0, 0x01, 0x28, 0x29, 0x29, 0x7e, - 0x56, 0x56, 0x7d, 0x29, 0x29, 0x29, 0x01, 0xc2, 0xf8, 0x01, 0x20, 0x21, - 0x22, 0x69, 0x4a, 0x4b, 0x6a, 0x22, 0x22, 0x21, 0x01, 0x00, 0x00, 0x02, - 0x00, 0x26, 0x00, 0x00, 0x04, 0x1c, 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, - 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, - 0x21, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, - 0x27, 0x21, 0x11, 0x11, 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, - 0x06, 0x07, 0x06, 0x06, 0x07, 0x21, 0x02, 0x71, 0xfe, 0xb5, 0x35, 0xcb, - 0xcb, 0x01, 0x80, 0x5a, 0x9b, 0x3a, 0x3a, 0x42, 0x42, 0x3a, 0x3a, 0x9b, - 0x5a, 0xfe, 0xb5, 0x01, 0x4b, 0x4d, 0x87, 0x33, 0x33, 0x3b, 0x3a, 0x32, - 0x32, 0x89, 0x4e, 0xfe, 0xb5, 0x04, 0x7f, 0x36, 0xfb, 0xfb, 0x36, 0xfb, - 0x81, 0x01, 0x35, 0x32, 0x32, 0x91, 0x5f, 0x5e, 0x92, 0x32, 0x32, 0x35, - 0x01, 0x01, 0x6b, 0xfe, 0x5f, 0x01, 0x2d, 0x2b, 0x2b, 0x7d, 0x51, 0x53, - 0x7e, 0x2b, 0x2c, 0x2d, 0x01, 0x00, 0x00, 0x02, 0x00, 0x26, 0x00, 0x00, - 0x04, 0x1c, 0x05, 0xb0, 0x00, 0x18, 0x00, 0x27, 0x00, 0x00, 0x41, 0x35, - 0x21, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x21, 0x36, 0x36, 0x37, - 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x27, 0x21, 0x11, 0x11, - 0x21, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, - 0x07, 0x21, 0x02, 0x71, 0xfe, 0xb5, 0x35, 0xcb, 0xcb, 0x01, 0x80, 0x5a, - 0x9b, 0x3a, 0x3a, 0x42, 0x42, 0x3a, 0x3a, 0x9b, 0x5a, 0xfe, 0xb5, 0x01, - 0x4b, 0x4d, 0x87, 0x33, 0x33, 0x3b, 0x3a, 0x32, 0x32, 0x89, 0x4e, 0xfe, - 0xb5, 0x04, 0x7f, 0x36, 0xfb, 0xfb, 0x36, 0xfb, 0x81, 0x01, 0x35, 0x32, - 0x32, 0x91, 0x5f, 0x5e, 0x92, 0x32, 0x32, 0x35, 0x01, 0x01, 0x6b, 0xfe, - 0x5f, 0x01, 0x2d, 0x2b, 0x2b, 0x7d, 0x51, 0x53, 0x7e, 0x2b, 0x2c, 0x2d, - 0x01, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x04, 0x21, 0x05, 0xb0, - 0x00, 0x0d, 0x00, 0x00, 0x41, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, - 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x02, 0x6b, 0xfe, 0x92, 0x03, 0x24, - 0xfc, 0xa6, 0xa7, 0xa7, 0x36, 0x02, 0xdb, 0x36, 0x02, 0x69, 0x36, 0xfd, - 0x61, 0x36, 0xfd, 0x25, 0x02, 0xdb, 0x00, 0x01, 0xff, 0xb7, 0x00, 0x00, - 0x04, 0x10, 0x04, 0x3a, 0x00, 0x0d, 0x00, 0x00, 0x41, 0x35, 0x23, 0x11, - 0x21, 0x35, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x02, 0x02, - 0xf3, 0x03, 0x01, 0xfc, 0xc4, 0xfe, 0xe3, 0x01, 0x1d, 0x3b, 0x02, 0x0e, - 0x36, 0x01, 0xbf, 0x37, 0xfe, 0x0a, 0x36, 0xfd, 0xf2, 0x02, 0x0e, 0x00, - 0x00, 0x01, 0x00, 0x1d, 0x00, 0x00, 0x04, 0xb6, 0x05, 0xb0, 0x00, 0x14, - 0x00, 0x00, 0x41, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x23, 0x11, 0x21, - 0x35, 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, 0x33, 0x11, 0x33, 0x11, 0x02, - 0x01, 0x02, 0x71, 0x44, 0xfd, 0x86, 0x02, 0x50, 0x44, 0xfd, 0xc9, 0xd8, - 0x01, 0x2f, 0xfe, 0xd1, 0x34, 0xe8, 0xe8, 0x34, 0x02, 0xc7, 0xfd, 0x39, - 0x02, 0xd9, 0x02, 0xd7, 0xfd, 0x4c, 0x01, 0x55, 0x36, 0x01, 0x29, 0xfe, - 0xd7, 0x36, 0xfb, 0xaf, 0x02, 0xc7, 0x00, 0x01, 0x00, 0x5e, 0x00, 0x00, - 0x04, 0x48, 0x06, 0x00, 0x00, 0x14, 0x00, 0x00, 0x61, 0x33, 0x11, 0x37, - 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x07, 0x11, 0x21, 0x35, 0x21, 0x35, - 0x23, 0x15, 0x23, 0x15, 0x33, 0x01, 0x0b, 0x37, 0xab, 0x02, 0x13, 0x48, - 0xfd, 0xcf, 0x02, 0x10, 0x50, 0xfd, 0xf4, 0x89, 0x01, 0x67, 0xfe, 0x99, - 0x37, 0xad, 0xad, 0x01, 0xbf, 0x8b, 0xfd, 0xb6, 0x02, 0x6e, 0x01, 0xcc, - 0xfe, 0x39, 0x7a, 0x02, 0xf7, 0x36, 0xda, 0xda, 0x36, 0x00, 0xff, 0xff, - 0x00, 0xb5, 0xfe, 0xe9, 0x04, 0x4e, 0x07, 0x12, 0x06, 0x26, 0x01, 0xa6, - 0x00, 0x00, 0x00, 0x27, 0x01, 0x5f, 0xff, 0xf4, 0x01, 0x44, 0x00, 0x07, - 0x00, 0x5f, 0x02, 0x1f, 0xff, 0xe8, 0xff, 0xff, 0x00, 0xd5, 0xfe, 0xe9, - 0x04, 0x2f, 0x05, 0xbc, 0x06, 0x26, 0x01, 0xb9, 0x00, 0x00, 0x00, 0x26, - 0x01, 0x5f, 0x07, 0xee, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x00, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0xb2, 0xfe, 0xe9, 0x04, 0x4c, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x09, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x1d, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0xd5, 0xfe, 0xe9, 0x04, 0x2f, 0x04, 0x3a, 0x06, 0x26, - 0x01, 0xbd, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x00, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0xba, 0xfe, 0xe9, 0x04, 0x5e, 0x05, 0xb0, 0x06, 0x26, - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x2f, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0xa3, 0xfe, 0xe9, 0x04, 0x43, 0x04, 0x3a, 0x06, 0x26, - 0x01, 0xbc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x14, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0x33, 0xfe, 0xe9, 0x04, 0x57, 0x05, 0xb0, 0x06, 0x26, - 0x01, 0xa7, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x02, 0x28, 0xff, 0xe8, - 0xff, 0xff, 0x00, 0x4c, 0xfe, 0xe9, 0x04, 0x1e, 0x04, 0x3a, 0x06, 0x26, - 0x01, 0xbb, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5f, 0x01, 0xef, 0xff, 0xe8, - 0x00, 0x01, 0x00, 0x5a, 0x00, 0x00, 0x04, 0x52, 0x05, 0xb0, 0x00, 0x11, - 0x00, 0x00, 0x41, 0x35, 0x23, 0x01, 0x23, 0x01, 0x23, 0x01, 0x23, 0x01, - 0x21, 0x15, 0x21, 0x17, 0x13, 0x33, 0x11, 0x37, 0x03, 0x60, 0xd1, 0x01, - 0xc3, 0x3f, 0xfe, 0x47, 0x0a, 0xfe, 0x4d, 0x43, 0x01, 0xc1, 0xfe, 0xfa, - 0x01, 0x23, 0x03, 0x01, 0x34, 0x02, 0x02, 0x2e, 0x36, 0x03, 0x4c, 0xfc, - 0xb4, 0x03, 0x4c, 0xfc, 0xb4, 0x36, 0x05, 0xfd, 0xd7, 0x02, 0x29, 0x05, - 0x00, 0x01, 0x00, 0x6e, 0xfe, 0x61, 0x04, 0x79, 0x04, 0x3a, 0x00, 0x11, - 0x00, 0x00, 0x65, 0x35, 0x23, 0x01, 0x23, 0x01, 0x07, 0x23, 0x27, 0x01, - 0x23, 0x01, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x03, 0x80, 0xd7, 0x01, - 0xd0, 0x3e, 0xfe, 0x7d, 0x43, 0x03, 0x42, 0xfe, 0x7c, 0x3e, 0x01, 0xce, - 0xfe, 0xf9, 0x01, 0x22, 0x39, 0x06, 0x36, 0x03, 0xfe, 0xfc, 0xab, 0xa0, - 0xa0, 0x03, 0x55, 0xfc, 0x02, 0x36, 0xfe, 0x5b, 0x01, 0xa5, 0x00, 0x01, - 0x00, 0x80, 0x00, 0x00, 0x04, 0x73, 0x05, 0xb0, 0x00, 0x11, 0x00, 0x00, - 0x41, 0x35, 0x23, 0x01, 0x23, 0x01, 0x01, 0x23, 0x01, 0x21, 0x15, 0x21, - 0x01, 0x33, 0x01, 0x01, 0x33, 0x01, 0x03, 0x85, 0xd5, 0x01, 0xb2, 0x41, - 0xfe, 0x58, 0xfe, 0x59, 0x41, 0x01, 0xb1, 0xfe, 0xf8, 0x01, 0x11, 0xfe, - 0x35, 0x3e, 0x01, 0xbb, 0x01, 0xbb, 0x3f, 0xfe, 0x34, 0x02, 0xd3, 0x36, - 0x02, 0xa7, 0xfd, 0x61, 0x02, 0x9f, 0xfd, 0x59, 0x36, 0xfd, 0x2d, 0x02, - 0xbd, 0xfd, 0x43, 0x02, 0xd3, 0x00, 0x00, 0x01, 0x00, 0x96, 0x00, 0x00, - 0x04, 0x51, 0x04, 0x3a, 0x00, 0x11, 0x00, 0x00, 0x41, 0x35, 0x23, 0x01, - 0x23, 0x01, 0x01, 0x23, 0x01, 0x21, 0x15, 0x21, 0x01, 0x33, 0x01, 0x01, - 0x33, 0x01, 0x03, 0x7f, 0xd4, 0x01, 0x90, 0x48, 0xfe, 0x81, 0xfe, 0x80, - 0x48, 0x01, 0x8f, 0xfe, 0xf9, 0x01, 0x07, 0xfe, 0x5b, 0x47, 0x01, 0x96, - 0x01, 0x98, 0x46, 0xfe, 0x5a, 0x02, 0x10, 0x36, 0x01, 0xf4, 0xfe, 0x20, - 0x01, 0xe0, 0xfe, 0x0c, 0x36, 0xfd, 0xf0, 0x01, 0xfc, 0xfe, 0x04, 0x02, - 0x10, 0x00, 0xff, 0xff, 0x00, 0xaa, 0xff, 0xec, 0x04, 0x4a, 0x04, 0x4e, - 0x06, 0x06, 0x01, 0x89, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5a, 0x02, 0xd1, - 0x04, 0x97, 0x03, 0x07, 0x00, 0x03, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, - 0x04, 0x97, 0xfb, 0xc3, 0x02, 0xd1, 0x36, 0x36, 0x00, 0x01, 0x00, 0x00, - 0x03, 0xe7, 0x00, 0xb1, 0x00, 0x16, 0x00, 0x87, 0x00, 0x05, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, - 0x00, 0x7a, 0x00, 0xdf, 0x01, 0x27, 0x01, 0x40, 0x01, 0x56, 0x01, 0xc0, - 0x01, 0xd8, 0x01, 0xf0, 0x02, 0x21, 0x02, 0x3f, 0x02, 0x4f, 0x02, 0x6f, - 0x02, 0x87, 0x02, 0xfd, 0x03, 0x34, 0x03, 0xb0, 0x03, 0xed, 0x04, 0x5d, - 0x04, 0x70, 0x04, 0xa3, 0x04, 0xb9, 0x04, 0xde, 0x04, 0xfd, 0x05, 0x15, - 0x05, 0x2c, 0x05, 0x9e, 0x06, 0x07, 0x06, 0x57, 0x06, 0x9a, 0x06, 0xe8, - 0x07, 0x1d, 0x07, 0x94, 0x07, 0xca, 0x07, 0xf8, 0x08, 0x3a, 0x08, 0x58, - 0x08, 0x6d, 0x08, 0xca, 0x08, 0xfe, 0x09, 0x4f, 0x09, 0xa6, 0x09, 0xfb, - 0x0a, 0x22, 0x0a, 0x91, 0x0a, 0xcc, 0x0a, 0xfc, 0x0b, 0x12, 0x0b, 0x37, - 0x0b, 0x56, 0x0b, 0x89, 0x0b, 0xa0, 0x0c, 0x01, 0x0c, 0x13, 0x0c, 0x57, - 0x0c, 0xc9, 0x0c, 0xe8, 0x0d, 0x34, 0x0d, 0x9a, 0x0d, 0xac, 0x0e, 0x3b, - 0x0e, 0xa1, 0x0e, 0xb3, 0x0e, 0xf7, 0x0f, 0x69, 0x0f, 0xd8, 0x10, 0x29, - 0x10, 0x83, 0x10, 0xb7, 0x11, 0x4a, 0x11, 0x72, 0x12, 0x33, 0x12, 0x81, - 0x13, 0x31, 0x13, 0xa1, 0x13, 0xda, 0x14, 0x31, 0x14, 0x4f, 0x14, 0xcb, - 0x15, 0x26, 0x15, 0x9f, 0x15, 0xf7, 0x16, 0x48, 0x16, 0x75, 0x16, 0xc1, - 0x16, 0xcd, 0x17, 0x26, 0x17, 0x86, 0x17, 0xe2, 0x18, 0x00, 0x18, 0x1e, - 0x18, 0x7c, 0x18, 0xda, 0x18, 0xef, 0x19, 0x05, 0x19, 0x11, 0x19, 0x1e, - 0x19, 0x2e, 0x19, 0x45, 0x19, 0x71, 0x19, 0x7e, 0x19, 0x8b, 0x19, 0x98, - 0x19, 0xa5, 0x19, 0xb5, 0x19, 0xd0, 0x19, 0xea, 0x1a, 0x04, 0x1a, 0x1e, - 0x1a, 0x2b, 0x1a, 0x37, 0x1a, 0x64, 0x1a, 0x6c, 0x1a, 0x74, 0x1a, 0xb6, - 0x1a, 0xf9, 0x1b, 0x0c, 0x1b, 0x1e, 0x1b, 0x63, 0x1b, 0xba, 0x1b, 0xce, - 0x1b, 0xe2, 0x1b, 0xfa, 0x1c, 0x07, 0x1c, 0x26, 0x1c, 0x47, 0x1c, 0x74, - 0x1c, 0x88, 0x1c, 0xaf, 0x1d, 0x03, 0x1d, 0x1a, 0x1d, 0x33, 0x1d, 0x51, - 0x1d, 0x71, 0x1d, 0x82, 0x1d, 0x91, 0x1d, 0xa1, 0x1d, 0xb1, 0x1e, 0x56, - 0x1f, 0x3e, 0x1f, 0x4c, 0x1f, 0x60, 0x1f, 0x78, 0x1f, 0x9a, 0x20, 0x2d, - 0x20, 0x9e, 0x20, 0xc5, 0x21, 0x0f, 0x21, 0x34, 0x21, 0x6f, 0x22, 0x09, - 0x22, 0xbd, 0x23, 0x91, 0x23, 0xaf, 0x23, 0xc6, 0x24, 0x15, 0x24, 0x21, - 0x24, 0x2d, 0x24, 0x39, 0x24, 0x45, 0x24, 0x51, 0x24, 0x5d, 0x24, 0xa2, - 0x24, 0xae, 0x24, 0xba, 0x24, 0xc6, 0x24, 0xd2, 0x24, 0xde, 0x24, 0xea, - 0x24, 0xf5, 0x25, 0x01, 0x25, 0x0d, 0x25, 0x4e, 0x25, 0x5a, 0x25, 0x66, - 0x25, 0x72, 0x25, 0x7e, 0x25, 0x8a, 0x25, 0x96, 0x25, 0xa2, 0x25, 0xae, - 0x25, 0xe1, 0x26, 0x22, 0x26, 0x63, 0x26, 0x6f, 0x26, 0x7b, 0x26, 0x87, - 0x26, 0xb0, 0x26, 0xbc, 0x26, 0xc8, 0x26, 0xd4, 0x26, 0xe0, 0x26, 0xec, - 0x26, 0xf8, 0x27, 0x04, 0x27, 0x10, 0x27, 0x51, 0x27, 0x5d, 0x27, 0x69, - 0x27, 0x74, 0x27, 0x80, 0x27, 0x8b, 0x27, 0x97, 0x27, 0xa3, 0x27, 0xbf, - 0x27, 0xcb, 0x27, 0xd7, 0x27, 0xe3, 0x27, 0xef, 0x27, 0xfb, 0x28, 0x07, - 0x28, 0x13, 0x28, 0x1f, 0x28, 0x2b, 0x28, 0x91, 0x28, 0x9d, 0x28, 0xa9, - 0x29, 0x1c, 0x29, 0x28, 0x29, 0x34, 0x29, 0x40, 0x29, 0x4c, 0x29, 0x58, - 0x29, 0x64, 0x29, 0x70, 0x29, 0x7b, 0x29, 0x87, 0x29, 0xa6, 0x29, 0xb2, - 0x29, 0xbe, 0x29, 0xca, 0x29, 0xd6, 0x29, 0xe2, 0x29, 0xee, 0x2a, 0x36, - 0x2a, 0x42, 0x2a, 0x4e, 0x2a, 0xad, 0x2a, 0xb9, 0x2a, 0xc5, 0x2a, 0xd1, - 0x2a, 0xdd, 0x2a, 0xe9, 0x2a, 0xf5, 0x2b, 0x01, 0x2b, 0x0d, 0x2b, 0x19, - 0x2b, 0x25, 0x2b, 0x31, 0x2b, 0x3d, 0x2b, 0x49, 0x2b, 0x54, 0x2b, 0x5f, - 0x2b, 0x6a, 0x2b, 0x75, 0x2b, 0x80, 0x2b, 0x8b, 0x2c, 0x25, 0x2c, 0x30, - 0x2c, 0x3b, 0x2c, 0x47, 0x2c, 0x52, 0x2c, 0x5d, 0x2c, 0x68, 0x2c, 0x73, - 0x2c, 0x7e, 0x2c, 0x8a, 0x2c, 0xea, 0x2c, 0xf5, 0x2d, 0x00, 0x2d, 0x0b, - 0x2d, 0x16, 0x2d, 0x21, 0x2d, 0x2c, 0x2d, 0x37, 0x2d, 0x42, 0x2d, 0x8f, - 0x2e, 0x05, 0x2e, 0x10, 0x2e, 0x1b, 0x2e, 0x26, 0x2e, 0x65, 0x2e, 0x71, - 0x2e, 0x7d, 0x2e, 0x88, 0x2e, 0x93, 0x2e, 0x9e, 0x2e, 0xa9, 0x2e, 0xb4, - 0x2f, 0x02, 0x2f, 0x0e, 0x2f, 0x19, 0x2f, 0x24, 0x2f, 0x30, 0x2f, 0x3c, - 0x2f, 0x48, 0x2f, 0x54, 0x2f, 0x77, 0x2f, 0x82, 0x2f, 0x8d, 0x2f, 0x99, - 0x2f, 0xa5, 0x2f, 0xb0, 0x2f, 0xbb, 0x2f, 0xc6, 0x2f, 0xd1, 0x2f, 0xdc, - 0x30, 0x40, 0x30, 0x4b, 0x30, 0x56, 0x30, 0xbd, 0x30, 0xc8, 0x30, 0xd4, - 0x30, 0xdf, 0x30, 0xea, 0x30, 0xf6, 0x31, 0x01, 0x31, 0x0c, 0x31, 0x17, - 0x31, 0x22, 0x31, 0x67, 0x31, 0x73, 0x31, 0x7e, 0x31, 0x89, 0x31, 0x94, - 0x31, 0x9f, 0x31, 0xaa, 0x31, 0xea, 0x31, 0xf5, 0x32, 0x00, 0x32, 0x57, - 0x32, 0x62, 0x32, 0x6d, 0x32, 0x78, 0x32, 0x83, 0x32, 0x8e, 0x32, 0x99, - 0x32, 0xa4, 0x32, 0xaf, 0x32, 0xba, 0x32, 0xc5, 0x32, 0xd0, 0x32, 0xdb, - 0x32, 0xe6, 0x32, 0xf5, 0x33, 0x04, 0x33, 0x18, 0x33, 0x54, 0x33, 0x61, - 0x33, 0x8d, 0x33, 0xa4, 0x33, 0xcb, 0x34, 0x15, 0x34, 0x2c, 0x34, 0x3f, - 0x34, 0x55, 0x34, 0x85, 0x34, 0xb5, 0x34, 0xca, 0x34, 0xca, 0x34, 0xd7, - 0x35, 0x0a, 0x35, 0x17, 0x35, 0x2c, 0x35, 0x5b, 0x35, 0xbb, 0x35, 0xe2, - 0x36, 0x14, 0x36, 0x4e, 0x36, 0x5d, 0x36, 0x6c, 0x36, 0x75, 0x36, 0xa5, - 0x36, 0xbc, 0x36, 0xcb, 0x36, 0xf9, 0x37, 0x01, 0x37, 0x11, 0x37, 0x2c, - 0x37, 0x84, 0x37, 0x98, 0x37, 0xb2, 0x37, 0xc5, 0x37, 0xe1, 0x38, 0x3b, - 0x38, 0x79, 0x38, 0xd4, 0x39, 0x46, 0x39, 0xbc, 0x39, 0xd9, 0x3a, 0x5a, - 0x3a, 0xd3, 0x3b, 0x31, 0x3b, 0x66, 0x3b, 0xc0, 0x3b, 0xee, 0x3c, 0x3a, - 0x3c, 0xc1, 0x3c, 0xf3, 0x3d, 0x47, 0x3d, 0xac, 0x3e, 0x03, 0x3e, 0x35, - 0x3e, 0x71, 0x3e, 0xd7, 0x3f, 0x18, 0x3f, 0x95, 0x40, 0x0c, 0x40, 0x5d, - 0x40, 0xe7, 0x41, 0x25, 0x41, 0x79, 0x41, 0xda, 0x42, 0x19, 0x42, 0x4b, - 0x42, 0x64, 0x42, 0x9e, 0x42, 0xdb, 0x43, 0x08, 0x43, 0x82, 0x43, 0x9b, - 0x43, 0xd1, 0x44, 0x03, 0x44, 0x1b, 0x44, 0x48, 0x44, 0x60, 0x44, 0x7d, - 0x44, 0xb6, 0x44, 0xf4, 0x45, 0x2b, 0x45, 0x80, 0x45, 0xdb, 0x46, 0x18, - 0x46, 0x93, 0x46, 0xef, 0x46, 0xff, 0x47, 0x31, 0x47, 0x5e, 0x47, 0xd7, - 0x47, 0xef, 0x48, 0x0c, 0x48, 0x3d, 0x48, 0x59, 0x48, 0x71, 0x48, 0x84, - 0x48, 0x97, 0x48, 0xf8, 0x49, 0x11, 0x49, 0x42, 0x49, 0x5a, 0x49, 0x77, - 0x49, 0xb0, 0x49, 0xee, 0x4a, 0x25, 0x4a, 0x79, 0x4a, 0xd0, 0x4b, 0x0a, - 0x4b, 0x63, 0x4b, 0xb6, 0x4c, 0x10, 0x4c, 0x50, 0x4c, 0x8f, 0x4c, 0xa8, - 0x4d, 0x00, 0x4d, 0x58, 0x4d, 0x99, 0x4e, 0x15, 0x4e, 0x82, 0x4e, 0xa8, - 0x4e, 0xcd, 0x4e, 0xfc, 0x4f, 0x2b, 0x4f, 0x79, 0x4f, 0xc7, 0x50, 0x1c, - 0x50, 0x70, 0x51, 0x09, 0x51, 0xaa, 0x52, 0x24, 0x52, 0x79, 0x52, 0xa5, - 0x52, 0xd6, 0x53, 0x51, 0x53, 0xcb, 0x54, 0x4f, 0x54, 0xaf, 0x55, 0x8d, - 0x56, 0x59, 0x56, 0xc5, 0x57, 0x2a, 0x57, 0x6d, 0x57, 0xb6, 0x57, 0xe2, - 0x57, 0xf3, 0x58, 0x2c, 0x58, 0x3c, 0x58, 0x4c, 0x59, 0x38, 0x59, 0x8c, - 0x59, 0xcc, 0x5a, 0x2b, 0x5a, 0x3e, 0x5a, 0x51, 0x5a, 0x88, 0x5a, 0xc1, - 0x5a, 0xe7, 0x5b, 0x0d, 0x5b, 0x2d, 0x5b, 0x4d, 0x5b, 0x68, 0x5b, 0x83, - 0x5b, 0xd0, 0x5c, 0x0b, 0x5c, 0xa7, 0x5d, 0x4b, 0x5d, 0x69, 0x5d, 0x87, - 0x5d, 0xc5, 0x5d, 0xfe, 0x5e, 0x2a, 0x5e, 0xa3, 0x5f, 0x01, 0x5f, 0x41, - 0x5f, 0x7d, 0x5f, 0xaf, 0x5f, 0xe1, 0x60, 0x53, 0x60, 0x9c, 0x60, 0xe5, - 0x60, 0xf5, 0x61, 0x05, 0x61, 0x3c, 0x61, 0x8e, 0x62, 0x3b, 0x62, 0xba, - 0x63, 0x36, 0x63, 0xa0, 0x64, 0x0f, 0x64, 0x89, 0x64, 0xff, 0x65, 0x59, - 0x65, 0xae, 0x66, 0x0d, 0x66, 0x63, 0x66, 0xb5, 0x66, 0xf9, 0x67, 0x6a, - 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, - 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, 0x67, 0x6a, - 0x67, 0x76, 0x67, 0x90, 0x67, 0x9d, 0x67, 0xbb, 0x67, 0xf0, 0x68, 0x40, - 0x68, 0xe3, 0x69, 0x47, 0x69, 0xad, 0x69, 0xf3, 0x6a, 0x97, 0x6b, 0x9b, - 0x6c, 0x74, 0x6d, 0x18, 0x6d, 0x89, 0x6d, 0x9d, 0x6d, 0xb9, 0x6d, 0xd2, - 0x6e, 0xa6, 0x6e, 0xe7, 0x6f, 0x0d, 0x6f, 0x0d, 0x6f, 0xdf, 0x70, 0x3f, - 0x70, 0x89, 0x70, 0xc5, 0x70, 0xde, 0x70, 0xf7, 0x71, 0x2a, 0x71, 0x40, - 0x71, 0x60, 0x71, 0xbb, 0x72, 0x0b, 0x72, 0x42, 0x72, 0x5b, 0x72, 0x71, - 0x72, 0xc7, 0x72, 0xdf, 0x72, 0xf7, 0x73, 0x27, 0x73, 0x45, 0x73, 0x55, - 0x73, 0x71, 0x73, 0x89, 0x73, 0xda, 0x74, 0x33, 0x74, 0x70, 0x74, 0xe3, - 0x74, 0xf6, 0x75, 0x29, 0x75, 0x41, 0x75, 0x66, 0x75, 0x85, 0x75, 0x9f, - 0x75, 0xb5, 0x76, 0x0b, 0x76, 0x3e, 0x76, 0x4b, 0x76, 0x8b, 0x76, 0xb5, - 0x77, 0x06, 0x77, 0x14, 0x77, 0x39, 0x77, 0x70, 0x77, 0x8d, 0x77, 0xeb, - 0x77, 0xf3, 0x77, 0xfb, 0x78, 0x07, 0x78, 0x12, 0x78, 0x1e, 0x78, 0x29, - 0x78, 0x35, 0x78, 0x41, 0x78, 0x4d, 0x78, 0x59, 0x78, 0x65, 0x78, 0x70, - 0x78, 0x7b, 0x78, 0x87, 0x78, 0x93, 0x78, 0x9f, 0x78, 0xaa, 0x78, 0xb5, - 0x78, 0xc0, 0x78, 0xcb, 0x78, 0xd6, 0x78, 0xe1, 0x78, 0xec, 0x78, 0xf7, - 0x79, 0x02, 0x79, 0x0d, 0x79, 0x18, 0x79, 0x23, 0x79, 0x2e, 0x79, 0x39, - 0x79, 0x44, 0x79, 0x4f, 0x79, 0x5a, 0x79, 0x66, 0x79, 0x71, 0x79, 0x7c, - 0x79, 0x87, 0x79, 0x93, 0x79, 0x9e, 0x79, 0xa9, 0x79, 0xb4, 0x79, 0xbf, - 0x79, 0xca, 0x79, 0xd5, 0x79, 0xe0, 0x79, 0xeb, 0x7a, 0x33, 0x7a, 0x3e, - 0x7a, 0x49, 0x7a, 0x54, 0x7a, 0x5f, 0x7a, 0x6a, 0x7a, 0x75, 0x7a, 0x80, - 0x7a, 0xc1, 0x7a, 0xcc, 0x7a, 0xd7, 0x7a, 0xe2, 0x7a, 0xee, 0x7a, 0xf9, - 0x7b, 0x05, 0x7b, 0x10, 0x7b, 0x1b, 0x7b, 0x5c, 0x7b, 0x67, 0x7b, 0x73, - 0x7b, 0x7f, 0x7b, 0x8b, 0x7b, 0x97, 0x7b, 0xa3, 0x7b, 0xaf, 0x7b, 0xba, - 0x7b, 0xc6, 0x7b, 0xd1, 0x7b, 0xdc, 0x7b, 0xe7, 0x7b, 0xf2, 0x7b, 0xfd, - 0x7c, 0x09, 0x7c, 0x14, 0x7c, 0x1f, 0x7c, 0x2a, 0x7c, 0x35, 0x7c, 0x40, - 0x7c, 0x4b, 0x7c, 0x57, 0x7c, 0x62, 0x7c, 0x6d, 0x7c, 0x78, 0x7c, 0x83, - 0x7c, 0xdd, 0x7c, 0xe8, 0x7c, 0xf3, 0x7c, 0xfe, 0x7d, 0x0a, 0x7d, 0x15, - 0x7d, 0x20, 0x7d, 0x2c, 0x7d, 0x38, 0x7d, 0x44, 0x7d, 0x50, 0x7d, 0x5c, - 0x7d, 0x68, 0x7d, 0x74, 0x7d, 0x7f, 0x7d, 0x87, 0x7d, 0x8f, 0x7d, 0x97, - 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xaf, 0x7d, 0xb7, 0x7d, 0xbf, 0x7d, 0xc7, - 0x7d, 0xcf, 0x7d, 0xd7, 0x7d, 0xdf, 0x7d, 0xe7, 0x7d, 0xef, 0x7d, 0xfb, - 0x7e, 0x07, 0x7e, 0x12, 0x7e, 0x1d, 0x7e, 0x28, 0x7e, 0x33, 0x7e, 0x3e, - 0x7e, 0x46, 0x7e, 0x4e, 0x7e, 0x56, 0x7e, 0x5e, 0x7e, 0x66, 0x7e, 0x71, - 0x7e, 0x7c, 0x7e, 0x87, 0x7e, 0x92, 0x7e, 0x9d, 0x7e, 0xa9, 0x7e, 0xb5, - 0x7f, 0x2e, 0x7f, 0x36, 0x7f, 0x42, 0x7f, 0x4a, 0x7f, 0x52, 0x7f, 0x5e, - 0x7f, 0x6a, 0x7f, 0x72, 0x7f, 0x7a, 0x7f, 0x82, 0x7f, 0x8a, 0x7f, 0x96, - 0x7f, 0x9e, 0x7f, 0xa6, 0x7f, 0xae, 0x7f, 0xb6, 0x7f, 0xbe, 0x7f, 0xc6, - 0x7f, 0xce, 0x7f, 0xd6, 0x7f, 0xde, 0x7f, 0xe6, 0x7f, 0xee, 0x7f, 0xf9, - 0x80, 0x01, 0x80, 0x09, 0x80, 0x59, 0x80, 0x61, 0x80, 0x69, 0x80, 0x74, - 0x80, 0x7f, 0x80, 0x87, 0x80, 0x8f, 0x80, 0x9a, 0x80, 0xa2, 0x80, 0xad, - 0x80, 0xb8, 0x80, 0xc5, 0x80, 0xd1, 0x80, 0xd9, 0x80, 0xe5, 0x80, 0xf0, - 0x80, 0xfb, 0x81, 0x06, 0x81, 0x12, 0x81, 0x1e, 0x81, 0x2a, 0x81, 0x35, - 0x81, 0x40, 0x81, 0x48, 0x81, 0x50, 0x81, 0x5c, 0x81, 0x68, 0x81, 0x73, - 0x81, 0x7e, 0x81, 0x89, 0x81, 0x94, 0x81, 0x9c, 0x81, 0xa4, 0x81, 0xac, - 0x81, 0xb8, 0x81, 0xc3, 0x81, 0xcb, 0x81, 0xd7, 0x81, 0xe2, 0x81, 0xee, - 0x81, 0xf9, 0x82, 0x01, 0x82, 0x09, 0x82, 0x15, 0x82, 0x20, 0x82, 0x2c, - 0x82, 0x34, 0x82, 0x3f, 0x82, 0x4b, 0x82, 0x56, 0x82, 0x62, 0x82, 0x6d, - 0x82, 0x79, 0x82, 0x84, 0x82, 0x90, 0x82, 0x9b, 0x82, 0xa7, 0x82, 0xb2, - 0x82, 0xba, 0x82, 0xc2, 0x82, 0xce, 0x82, 0xd9, 0x82, 0xe5, 0x82, 0xf0, - 0x82, 0xfc, 0x83, 0x07, 0x83, 0x13, 0x83, 0x1e, 0x83, 0x2a, 0x83, 0x35, - 0x83, 0x41, 0x83, 0x4c, 0x83, 0x58, 0x83, 0x64, 0x83, 0x70, 0x83, 0x7c, - 0x83, 0x84, 0x83, 0x90, 0x83, 0x9c, 0x83, 0xa8, 0x83, 0xb4, 0x83, 0xc0, - 0x83, 0xcc, 0x83, 0xd8, 0x83, 0xe3, 0x83, 0xef, 0x83, 0xfa, 0x84, 0x06, - 0x84, 0x11, 0x84, 0x1d, 0x84, 0x28, 0x84, 0x38, 0x84, 0x47, 0x84, 0x53, - 0x84, 0x5e, 0x84, 0x6a, 0x84, 0x75, 0x84, 0x81, 0x84, 0x8c, 0x84, 0x98, - 0x84, 0xa3, 0x84, 0xb3, 0x84, 0xc2, 0x84, 0xce, 0x84, 0xda, 0x84, 0xe6, - 0x84, 0xf2, 0x84, 0xfe, 0x85, 0x0a, 0x85, 0x16, 0x85, 0x21, 0x85, 0x2d, - 0x85, 0x38, 0x85, 0x44, 0x85, 0x4f, 0x85, 0x5b, 0x85, 0x66, 0x85, 0x76, - 0x85, 0x85, 0x85, 0x91, 0x85, 0x9d, 0x85, 0xa9, 0x85, 0xb5, 0x85, 0xc1, - 0x85, 0xcd, 0x85, 0xd9, 0x85, 0xe5, 0x85, 0xf1, 0x85, 0xfc, 0x86, 0x08, - 0x86, 0x13, 0x86, 0x1f, 0x86, 0x2a, 0x86, 0x36, 0x86, 0x41, 0x86, 0x51, - 0x86, 0x60, 0x86, 0x6c, 0x86, 0x77, 0x86, 0x83, 0x86, 0x8e, 0x86, 0x9a, - 0x86, 0xa6, 0x86, 0xb2, 0x86, 0xbd, 0x86, 0xc9, 0x86, 0xd5, 0x86, 0xe1, - 0x86, 0xed, 0x86, 0xf9, 0x87, 0x05, 0x87, 0x11, 0x87, 0x1c, 0x87, 0x28, - 0x87, 0x33, 0x87, 0x3f, 0x87, 0x4b, 0x87, 0x57, 0x87, 0x62, 0x87, 0x6e, - 0x87, 0x7a, 0x87, 0x86, 0x87, 0x92, 0x87, 0x9e, 0x87, 0xaa, 0x87, 0xb6, - 0x87, 0xc2, 0x87, 0xd2, 0x87, 0xde, 0x87, 0xea, 0x87, 0xf6, 0x88, 0x02, - 0x88, 0x0d, 0x88, 0x18, 0x88, 0x24, 0x88, 0x30, 0x88, 0x3c, 0x88, 0x48, - 0x88, 0x54, 0x88, 0x60, 0x88, 0x6c, 0x88, 0x78, 0x88, 0x84, 0x88, 0x90, - 0x88, 0x9b, 0x88, 0xa6, 0x88, 0xae, 0x88, 0xed, 0x89, 0x2d, 0x89, 0x6d, - 0x89, 0x87, 0x89, 0xa2, 0x89, 0xc9, 0x89, 0xef, 0x89, 0xff, 0x8a, 0x0e, - 0x8a, 0x1a, 0x8a, 0x26, 0x8a, 0x32, 0x8a, 0x3e, 0x8a, 0x4a, 0x8a, 0x56, - 0x8a, 0x7a, 0x8a, 0x9d, 0x8a, 0xc5, 0x8a, 0xed, 0x8a, 0xf5, 0x8b, 0x02, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x65, 0x6b, 0x2a, 0x70, - 0x5f, 0x0f, 0x3c, 0xf5, 0x00, 0x0b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xc4, 0xf0, 0x11, 0x2e, 0x00, 0x00, 0x00, 0x00, 0xda, 0xd8, 0x3f, 0xab, - 0xfc, 0x05, 0xfd, 0xd5, 0x06, 0x47, 0x08, 0x62, 0x00, 0x00, 0x00, 0x09, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xcd, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x7a, 0x00, 0xd9, 0x00, 0x8f, 0x00, 0xc8, 0x00, 0xdc, - 0x00, 0xe6, 0x00, 0x87, 0x00, 0xb2, 0x00, 0xd4, 0x00, 0x7d, 0x00, 0xe5, - 0x00, 0xf2, 0x00, 0xba, 0x00, 0xb4, 0x00, 0x8e, 0x00, 0xf2, 0x00, 0x77, - 0x00, 0xe3, 0x00, 0x9c, 0x00, 0x70, 0x00, 0xb0, 0x00, 0x6a, 0x00, 0x61, - 0x00, 0x80, 0x00, 0x5a, 0x00, 0x8f, 0x00, 0xb8, 0x00, 0xe0, 0x00, 0xb3, - 0x00, 0xb0, 0x00, 0xa4, 0x00, 0xd2, 0x00, 0xb2, 0x00, 0xd5, 0x00, 0xef, - 0x00, 0xb3, 0x01, 0x01, 0x00, 0xef, 0x00, 0x56, 0x00, 0xd4, 0x00, 0x8d, - 0x00, 0xdc, 0x00, 0xb1, 0x01, 0x86, 0x00, 0xcc, 0x00, 0xc5, 0x00, 0xd8, - 0x00, 0x74, 0x00, 0x4d, 0x00, 0x96, 0x00, 0x54, 0x00, 0x89, 0x00, 0xac, - 0x00, 0xe6, 0x00, 0x70, 0x00, 0x64, 0x00, 0x5d, 0x00, 0xe8, 0x00, 0x9e, - 0x00, 0x8a, 0x00, 0xb1, 0x00, 0xa2, 0x01, 0xaa, 0x01, 0x5a, 0x01, 0x5f, - 0x01, 0x3f, 0x01, 0x36, 0x00, 0x45, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x4e, - 0x00, 0x34, 0x00, 0x49, 0x00, 0x08, 0x00, 0x63, 0x00, 0xd6, 0x00, 0xdc, - 0x00, 0xf1, 0x00, 0xda, 0x00, 0xbd, 0x00, 0xc1, 0x00, 0xb8, 0x00, 0x9b, - 0x00, 0x49, 0x00, 0xa0, 0xff, 0xb0, 0x00, 0x93, 0x00, 0xa6, 0x00, 0x63, - 0x02, 0x1f, 0x02, 0x2c, 0x00, 0xf9, 0x01, 0x05, 0x01, 0xa0, 0x02, 0x4d, - 0x02, 0x87, 0x02, 0x3a, 0x00, 0xff, 0x02, 0x35, 0x01, 0xbf, 0x00, 0xbf, - 0x01, 0x00, 0x00, 0x51, 0x00, 0x5a, 0x02, 0x1a, 0x01, 0xc2, 0x02, 0x32, - 0x02, 0x0e, 0x01, 0xfc, 0x01, 0x90, 0x01, 0xaf, 0x01, 0x82, 0x02, 0x1a, - 0x01, 0xc2, 0x01, 0x96, 0x01, 0x6d, 0x01, 0xde, 0x01, 0xc7, 0x01, 0x53, - 0x01, 0x52, 0x01, 0xb0, 0x01, 0xb1, 0x00, 0x77, 0x00, 0xa9, 0x00, 0x9c, - 0x00, 0xd4, 0x00, 0x73, 0x00, 0xaf, 0x00, 0xb8, 0x00, 0x8b, 0x00, 0xa2, - 0x00, 0xbc, 0x00, 0xe4, 0x00, 0xf6, 0x00, 0xcf, 0x01, 0x32, 0x01, 0x1a, - 0x01, 0x3d, 0x00, 0x2c, 0x00, 0x3c, 0x02, 0x4c, 0x02, 0x40, 0x00, 0x77, - 0x00, 0x82, 0x00, 0x54, 0x00, 0x51, 0x00, 0x69, 0x01, 0x7c, 0x00, 0xd0, - 0x00, 0x3d, 0x00, 0xa4, 0x00, 0x32, 0x00, 0x7c, 0x00, 0xff, 0x01, 0x04, - 0x00, 0x47, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, - 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0x4e, - 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0xc8, 0xff, 0xc4, - 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xdc, - 0x00, 0xdc, 0x00, 0xdc, 0x00, 0xc1, 0x00, 0xdc, 0xff, 0xc4, 0x00, 0x87, - 0x00, 0x87, 0x00, 0x87, 0x00, 0x30, 0x00, 0xb2, 0x00, 0xd4, 0x00, 0xd4, - 0x00, 0xd4, 0x00, 0xd4, 0x00, 0xd4, 0x00, 0xd4, 0x00, 0xd4, 0x00, 0xd4, - 0x00, 0xd4, 0x00, 0x7d, 0x00, 0xe5, 0x00, 0xea, 0x00, 0xf2, 0x00, 0xf2, - 0x00, 0xf2, 0x00, 0x39, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, - 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x8e, - 0x00, 0x8e, 0x00, 0x8e, 0x00, 0x82, 0x00, 0x82, 0x00, 0x8e, 0x00, 0xe3, - 0x00, 0xe3, 0x00, 0xe3, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, 0x00, 0x9c, - 0x00, 0x70, 0x00, 0x70, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, - 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, 0x00, 0xb0, - 0x00, 0xb0, 0x00, 0x61, 0x00, 0x61, 0x00, 0x61, 0x00, 0x61, 0x00, 0x5a, - 0x00, 0x5a, 0x00, 0x5a, 0x00, 0x5a, 0x00, 0x8f, 0x00, 0x8f, 0x00, 0x8f, - 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, - 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0xb8, 0x00, 0x34, 0x00, 0xb3, - 0x00, 0xb3, 0x00, 0xb3, 0x00, 0xb3, 0x00, 0x9c, 0x00, 0xa1, 0x00, 0xa4, - 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa4, 0x00, 0xa4, - 0x00, 0xa4, 0x00, 0xe0, 0x00, 0xa4, 0x00, 0xb2, 0x00, 0xb2, 0x00, 0xb2, - 0x00, 0x06, 0x00, 0x34, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, - 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xbb, 0x01, 0x01, - 0x00, 0xef, 0x00, 0xd1, 0x00, 0xef, 0x00, 0xdb, 0x00, 0xee, 0x00, 0xd4, - 0x00, 0xd4, 0x00, 0xd4, 0x00, 0xd4, 0x00, 0x8d, 0x00, 0x8d, 0x00, 0x8d, - 0x00, 0x8d, 0x00, 0x8d, 0x00, 0x72, 0x00, 0x8d, 0x00, 0x8d, 0x00, 0x8d, - 0x00, 0x8d, 0x00, 0x8d, 0x01, 0x86, 0x01, 0x4c, 0x01, 0x44, 0x00, 0xcc, - 0x00, 0xcc, 0x00, 0xcc, 0x00, 0xcc, 0x00, 0xc5, 0x00, 0xb1, 0x00, 0xd8, - 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, - 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0x4d, 0x00, 0x4d, - 0x00, 0x4d, 0x00, 0x4d, 0x00, 0x54, 0x00, 0x54, 0x00, 0x54, 0x00, 0x54, - 0x00, 0x89, 0x00, 0x89, 0x00, 0x89, 0x01, 0xec, 0x01, 0xea, 0x01, 0x82, - 0x00, 0x9c, 0x01, 0x2d, 0x01, 0x50, 0x02, 0x2c, 0x01, 0x4e, 0x01, 0xc2, - 0x01, 0x35, 0x01, 0x6d, 0xfc, 0xd3, 0x01, 0xec, 0x01, 0xb6, 0x02, 0x19, - 0x00, 0x00, 0x01, 0x13, 0x00, 0xe0, 0x00, 0xf9, 0x00, 0xef, 0x00, 0x95, - 0x00, 0x82, 0x02, 0x0a, 0x00, 0xbb, 0x01, 0xec, 0xfc, 0xa5, 0xfd, 0x35, - 0xfc, 0x5a, 0xfd, 0x4b, 0xfa, 0xe5, 0x02, 0x5b, 0x01, 0x89, 0x02, 0x2f, - 0x00, 0xc7, 0x00, 0x4f, 0x00, 0x8e, 0x00, 0x66, 0x00, 0xa1, 0x00, 0xba, - 0x00, 0x82, 0x00, 0x59, 0x00, 0x91, 0x00, 0x74, 0x00, 0x8c, 0x00, 0xd2, - 0x00, 0x6e, 0x00, 0x85, 0x00, 0xaa, 0x00, 0x7a, 0x00, 0xd0, 0x00, 0xcf, - 0x00, 0xe7, 0x00, 0x41, 0x00, 0xcb, 0x00, 0x63, 0x00, 0xd5, 0x00, 0x91, - 0x00, 0x7a, 0x00, 0xc8, 0x00, 0xdd, 0x00, 0xba, 0x00, 0xab, 0x00, 0x5e, - 0x00, 0xb2, 0x00, 0x14, 0x00, 0x17, 0x00, 0x37, 0x00, 0xa5, 0x00, 0x22, - 0x00, 0x8f, 0x00, 0x44, 0x00, 0xbb, 0x00, 0xc0, 0x00, 0x7c, 0x00, 0x3c, - 0x00, 0x69, 0x00, 0xb5, 0x00, 0x33, 0x00, 0x0c, 0x00, 0xdf, 0x00, 0xe2, - 0x00, 0x92, 0x00, 0x96, 0x00, 0x2b, 0x00, 0xc1, 0x00, 0xf1, 0x00, 0x90, - 0x00, 0x90, 0x00, 0x57, 0x00, 0x8a, 0x00, 0xcf, 0x00, 0xd4, 0x00, 0x87, - 0x00, 0x11, 0x00, 0xaf, 0x00, 0xd5, 0x00, 0xf6, 0x00, 0x4c, 0x00, 0xa3, - 0x00, 0xd5, 0x00, 0xd5, 0x00, 0x7a, 0x00, 0x8d, 0x01, 0x09, 0x00, 0xb4, - 0x00, 0x93, 0x00, 0x92, 0x00, 0x43, 0x00, 0xb8, 0x00, 0xd4, 0x00, 0x9e, - 0x00, 0x89, 0x00, 0x7d, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x19, 0x00, 0x8b, - 0x00, 0x2a, 0x00, 0xd5, 0x00, 0x74, 0x00, 0x45, 0x00, 0x27, 0x00, 0xa2, - 0x00, 0xc4, 0x00, 0x48, 0x00, 0x7f, 0x00, 0xb0, 0x00, 0xa3, 0x00, 0x9d, - 0x00, 0xa1, 0x00, 0x94, 0x00, 0x9e, 0x00, 0xc9, 0x00, 0xfb, 0x00, 0x8e, - 0x00, 0x8d, 0x00, 0x4e, 0x00, 0x5a, 0x00, 0x4b, 0x00, 0x4b, 0x00, 0x8e, - 0x00, 0x8d, 0x00, 0x54, 0x00, 0x4b, 0x00, 0x7b, 0x00, 0x45, 0x00, 0xb4, - 0x00, 0xdb, 0x00, 0xb0, 0x00, 0x9f, 0x00, 0xea, 0x01, 0x31, 0x01, 0x83, - 0xfe, 0xe7, 0xfe, 0xe0, 0x00, 0xf2, 0x00, 0xdc, 0x00, 0xd0, 0x00, 0xc7, - 0x00, 0xf0, 0x00, 0xde, 0x01, 0x17, 0x01, 0x04, 0x00, 0x46, 0x00, 0x79, - 0x00, 0x43, 0x00, 0x5d, 0x00, 0x65, 0x00, 0x95, 0x00, 0x71, 0x00, 0x88, - 0x00, 0x46, 0x00, 0x4f, 0x00, 0xe2, 0x00, 0xe8, 0x01, 0x2d, 0x00, 0x2e, - 0x00, 0x1e, 0x01, 0x0a, 0x00, 0xf3, 0x00, 0xcb, 0x00, 0xe0, 0x00, 0x63, - 0x00, 0xbb, 0x00, 0xac, 0xff, 0xe7, 0x00, 0x0c, 0x00, 0x95, 0x00, 0x80, - 0x00, 0x82, 0x00, 0x3a, 0x00, 0x57, 0x00, 0xb5, 0x00, 0xff, 0x00, 0x1d, - 0x00, 0x3b, 0x00, 0xb2, 0x00, 0x9e, 0x00, 0xb2, 0x00, 0xbb, 0x00, 0x6e, - 0x00, 0x5e, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0f, 0x03, 0x24, 0x01, 0x23, - 0x01, 0x59, 0x00, 0x76, 0x00, 0x40, 0x01, 0x04, 0x00, 0x8f, 0x00, 0x99, - 0x00, 0x2a, 0x00, 0x4f, 0x00, 0x4e, 0x00, 0x2e, 0x00, 0x7e, 0x00, 0xed, - 0x00, 0x3c, 0x00, 0xb0, 0x00, 0x23, 0x00, 0xf0, 0x00, 0xa9, 0x00, 0x00, - 0x00, 0x5c, 0x00, 0x0f, 0x01, 0x69, 0x01, 0x23, 0x00, 0x95, 0x01, 0x5b, - 0x01, 0x59, 0x02, 0x43, 0x00, 0x57, 0x00, 0xeb, 0x00, 0x92, 0x00, 0xe4, - 0x00, 0xda, 0x00, 0xc7, 0x00, 0x8e, 0x00, 0xd6, 0x00, 0xef, 0x00, 0xd8, - 0x01, 0x05, 0x01, 0x03, 0x00, 0xba, 0x00, 0xda, 0x00, 0xa8, 0x00, 0x85, - 0x00, 0xe7, 0x00, 0xa0, 0x00, 0x69, 0x00, 0xcb, 0x00, 0x72, 0x00, 0x26, - 0x00, 0x88, 0x00, 0x63, 0x00, 0xae, 0x01, 0x66, 0x01, 0x59, 0x01, 0x50, - 0x02, 0x10, 0x02, 0x06, 0x01, 0x9b, 0x02, 0x48, 0x01, 0x71, 0x01, 0x04, - 0x00, 0xfb, 0x01, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x8f, 0x00, 0xb3, - 0x00, 0x87, 0x00, 0xb2, 0x00, 0x4f, 0x00, 0x9c, 0x00, 0xcc, 0x00, 0x70, - 0x00, 0xc5, 0x00, 0x70, 0x00, 0x69, 0x00, 0xc5, 0x00, 0x15, 0x00, 0x15, - 0x00, 0x69, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, - 0x00, 0x57, 0x00, 0x57, 0x00, 0x92, 0x00, 0xda, 0x00, 0xda, 0x00, 0xda, - 0x00, 0xda, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xda, - 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xcb, - 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0x63, 0x00, 0x57, 0x00, 0x57, - 0x00, 0x57, 0x00, 0x92, 0x00, 0x92, 0x00, 0x92, 0x00, 0xe4, 0x00, 0xda, - 0x00, 0xda, 0x00, 0xda, 0x00, 0xda, 0x00, 0xda, 0x00, 0x8e, 0x00, 0x8e, - 0x00, 0x8e, 0x00, 0xd6, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, 0x00, 0xef, - 0x00, 0xef, 0x00, 0xd8, 0x01, 0x05, 0x01, 0x03, 0x01, 0x03, 0x01, 0x03, - 0x01, 0x03, 0x00, 0xda, 0x00, 0xda, 0x00, 0xda, 0x00, 0xa8, 0x00, 0xa8, - 0x00, 0xa8, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xe7, 0x00, 0xa0, 0x00, 0xa0, - 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x69, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, - 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0x26, 0x00, 0x63, 0x00, 0x63, - 0x00, 0xae, 0x00, 0xae, 0x00, 0xae, 0x00, 0x7a, 0x00, 0x43, 0x00, 0x30, - 0x00, 0x20, 0x00, 0x22, 0xff, 0xdc, 0x00, 0x1c, 0x00, 0xe7, 0x00, 0x7a, - 0x00, 0xd9, 0x00, 0xdc, 0x00, 0x8f, 0x00, 0xb2, 0x00, 0xd4, 0x00, 0xe5, - 0x00, 0xba, 0x00, 0xb4, 0x00, 0x8e, 0x00, 0xf2, 0x00, 0x70, 0x00, 0x5a, - 0x00, 0x80, 0x00, 0xd4, 0x00, 0x5a, 0x00, 0x8c, 0x00, 0xaa, 0x00, 0xd0, - 0x00, 0xe7, 0x00, 0xdd, 0x00, 0xf1, 0x00, 0x8d, 0x00, 0xe0, 0x00, 0x74, - 0x00, 0x96, 0x00, 0xe7, 0x00, 0xdd, 0x00, 0x8d, 0x00, 0xdd, 0x00, 0x5e, - 0x00, 0xdc, 0x00, 0xc7, 0x00, 0x9c, 0x00, 0xd4, 0x00, 0xd4, 0x00, 0x7d, - 0x00, 0xfb, 0x00, 0xe5, 0x00, 0x0c, 0x00, 0x7a, 0x00, 0xd9, 0x00, 0xc7, - 0x00, 0xdc, 0x00, 0xb5, 0x00, 0xba, 0x00, 0xb2, 0x00, 0x8e, 0x00, 0xba, - 0x00, 0xf2, 0x00, 0x8f, 0x00, 0x70, 0x00, 0x59, 0x00, 0x80, 0x00, 0xb8, - 0x00, 0xa4, 0x00, 0xd5, 0x00, 0x8d, 0x00, 0xdc, 0x00, 0xb3, 0x00, 0x54, - 0x00, 0x96, 0x00, 0xa4, 0x00, 0xd4, 0x00, 0xcc, 0x00, 0xef, 0x00, 0xef, - 0x00, 0xb3, 0x00, 0xf6, 0x00, 0x54, 0x00, 0xb4, 0x00, 0xbb, 0x02, 0x0e, - 0x00, 0xba, 0x00, 0x56, 0x00, 0x7a, 0x00, 0xb8, 0xff, 0xc7, 0x00, 0xdc, - 0x00, 0xb5, 0x00, 0xa4, 0x00, 0xd5, 0x00, 0x91, 0x00, 0xab, 0x00, 0x4e, - 0x00, 0x5a, 0x00, 0x69, 0x00, 0xaf, 0x00, 0x8f, 0x00, 0xb3, 0x00, 0x5a, - 0x00, 0x6e, 0x00, 0xd4, 0x00, 0x3c, 0x00, 0x11, 0x00, 0xd4, 0x00, 0x7a, - 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x4e, 0x00, 0x34, 0x00, 0xdc, - 0x00, 0xa4, 0x00, 0x63, 0x00, 0xbd, 0x00, 0xbd, 0x00, 0x3c, 0x00, 0x11, - 0x00, 0x69, 0x00, 0xaf, 0x00, 0xb5, 0x00, 0xd5, 0x00, 0xb5, 0x00, 0xd5, - 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, - 0x00, 0x90, 0x00, 0x9e, 0x00, 0x0c, 0x00, 0x54, 0x00, 0x0c, 0x00, 0x54, - 0x00, 0x0c, 0x00, 0x54, 0x00, 0xe2, 0x00, 0xb4, 0x00, 0xc1, 0x00, 0xb8, - 0x00, 0x80, 0x00, 0x96, 0x00, 0xb0, 0x00, 0x33, 0x00, 0x4c, 0x00, 0x7a, - 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, - 0x00, 0xb3, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, - 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, - 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0x7a, 0x00, 0xb8, 0x00, 0xdc, - 0x00, 0xa4, 0x00, 0xdc, 0x00, 0xa4, 0x00, 0xdc, 0x00, 0xa4, 0x00, 0xdc, - 0x00, 0xa4, 0x00, 0x9b, 0x00, 0xa4, 0x00, 0xdc, 0x00, 0xa4, 0x00, 0xdc, - 0x00, 0xa4, 0x00, 0xdc, 0x00, 0xa4, 0x00, 0xd4, 0x00, 0xef, 0x00, 0xd4, - 0x00, 0xef, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, - 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, - 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x8d, 0x00, 0x8e, 0x00, 0x72, 0x00, 0x8e, - 0x00, 0x72, 0x00, 0x8e, 0x00, 0x72, 0x00, 0x8e, 0x00, 0x72, 0x00, 0x8e, - 0x00, 0x72, 0x00, 0xb0, 0x00, 0xd8, 0x00, 0xb0, 0x00, 0xd8, 0x00, 0xb0, - 0x00, 0xd8, 0x00, 0xb0, 0x00, 0xd8, 0x00, 0xb0, 0x00, 0xd8, 0x00, 0xb0, - 0x00, 0xd8, 0x00, 0xb0, 0x00, 0xd8, 0x00, 0x5a, 0x00, 0x54, 0x00, 0x5a, - 0x00, 0x54, 0x00, 0x5a, 0x00, 0x54, 0x00, 0x80, 0x00, 0xfb, 0x00, 0xf6, - 0x00, 0xb2, 0x00, 0xd5, 0x00, 0x70, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x96, - 0x00, 0xe2, 0x00, 0xb4, 0x00, 0xe2, 0x00, 0xb4, 0x00, 0xc7, 0x00, 0xd4, - 0x00, 0x3c, 0x00, 0x11, 0x00, 0x2e, 0x00, 0x1e, 0x00, 0xd5, 0xff, 0xf4, - 0x00, 0x26, 0x00, 0x26, 0x00, 0x20, 0xff, 0xb7, 0x00, 0x1d, 0x00, 0x5e, - 0x00, 0xb5, 0x00, 0xd5, 0x00, 0xb2, 0x00, 0xd5, 0x00, 0xba, 0x00, 0xa3, - 0x00, 0x33, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x6e, 0x00, 0x80, 0x00, 0x96, - 0x00, 0xaa, 0x00, 0x5a, 0x00, 0x01, 0x00, 0x00, 0x08, 0x62, 0xfd, 0xd5, - 0x00, 0x00, 0x04, 0xcd, 0xfc, 0x05, 0xfe, 0x86, 0x06, 0x47, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0xcd, 0x00, 0xfa, 0x00, 0x05, - 0x00, 0x00, 0x05, 0x9a, 0x05, 0x33, 0x00, 0x00, 0x01, 0x1f, 0x05, 0x9a, - 0x05, 0x33, 0x00, 0x00, 0x03, 0xd1, 0x00, 0x66, 0x02, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, - 0x02, 0xff, 0x10, 0x00, 0x20, 0x5b, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x00, 0x47, 0x4f, 0x4f, 0x47, 0x00, 0x40, 0x00, 0x0d, 0xff, 0xfd, - 0x08, 0x62, 0xfd, 0xd5, 0x00, 0x00, 0x08, 0x62, 0x02, 0x2b, 0x20, 0x00, - 0x01, 0x9f, 0x4f, 0x01, 0x00, 0x00, 0x04, 0x3a, 0x05, 0xb0, 0x00, 0x00, - 0x00, 0x20, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, - 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, - 0x00, 0x04, 0x07, 0x4c, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x80, 0x00, 0x06, - 0x00, 0x42, 0x00, 0x0d, 0x00, 0x2f, 0x00, 0x39, 0x00, 0x40, 0x00, 0x5a, - 0x00, 0x60, 0x00, 0x7a, 0x00, 0x7e, 0x01, 0x7f, 0x01, 0x92, 0x01, 0xa1, - 0x01, 0xb0, 0x01, 0xf0, 0x01, 0xff, 0x02, 0x1b, 0x02, 0x37, 0x02, 0x59, - 0x02, 0xbc, 0x02, 0xc7, 0x02, 0xc9, 0x02, 0xdd, 0x02, 0xf3, 0x03, 0x01, - 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, 0x03, 0x23, 0x03, 0x8a, 0x03, 0x8c, - 0x03, 0x92, 0x03, 0xa1, 0x03, 0xb0, 0x03, 0xb9, 0x03, 0xc9, 0x03, 0xce, - 0x03, 0xd2, 0x03, 0xd6, 0x04, 0x25, 0x04, 0x2f, 0x04, 0x45, 0x04, 0x4f, - 0x04, 0x62, 0x04, 0x6f, 0x04, 0x77, 0x04, 0x86, 0x04, 0xce, 0x04, 0xd7, - 0x04, 0xe1, 0x04, 0xf5, 0x05, 0x01, 0x05, 0x10, 0x05, 0x13, 0x1e, 0x01, - 0x1e, 0x3f, 0x1e, 0x85, 0x1e, 0xf1, 0x1e, 0xf3, 0x1e, 0xf9, 0x1f, 0x4d, - 0x20, 0x0b, 0x20, 0x15, 0x20, 0x1e, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, - 0x20, 0x33, 0x20, 0x3a, 0x20, 0x3c, 0x20, 0x44, 0x20, 0x74, 0x20, 0x7f, - 0x20, 0xa4, 0x20, 0xa7, 0x20, 0xac, 0x21, 0x05, 0x21, 0x13, 0x21, 0x16, - 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5e, 0x22, 0x02, 0x22, 0x06, - 0x22, 0x0f, 0x22, 0x12, 0x22, 0x15, 0x22, 0x1a, 0x22, 0x1e, 0x22, 0x2b, - 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x25, 0xca, 0xf6, 0xc3, 0xfe, 0xff, - 0xff, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x20, 0x00, 0x30, - 0x00, 0x3a, 0x00, 0x41, 0x00, 0x5b, 0x00, 0x61, 0x00, 0x7b, 0x00, 0xa0, - 0x01, 0x92, 0x01, 0xa0, 0x01, 0xaf, 0x01, 0xf0, 0x01, 0xfa, 0x02, 0x18, - 0x02, 0x37, 0x02, 0x59, 0x02, 0xbc, 0x02, 0xc6, 0x02, 0xc9, 0x02, 0xd8, - 0x02, 0xf3, 0x03, 0x00, 0x03, 0x03, 0x03, 0x09, 0x03, 0x0f, 0x03, 0x23, - 0x03, 0x84, 0x03, 0x8c, 0x03, 0x8e, 0x03, 0x93, 0x03, 0xa3, 0x03, 0xb1, - 0x03, 0xba, 0x03, 0xca, 0x03, 0xd1, 0x03, 0xd6, 0x04, 0x00, 0x04, 0x26, - 0x04, 0x30, 0x04, 0x46, 0x04, 0x50, 0x04, 0x63, 0x04, 0x70, 0x04, 0x78, - 0x04, 0x88, 0x04, 0xcf, 0x04, 0xd8, 0x04, 0xe2, 0x04, 0xf6, 0x05, 0x02, - 0x05, 0x11, 0x1e, 0x00, 0x1e, 0x3e, 0x1e, 0x80, 0x1e, 0xa0, 0x1e, 0xf2, - 0x1e, 0xf4, 0x1f, 0x4d, 0x20, 0x00, 0x20, 0x13, 0x20, 0x17, 0x20, 0x20, - 0x20, 0x25, 0x20, 0x30, 0x20, 0x32, 0x20, 0x39, 0x20, 0x3c, 0x20, 0x44, - 0x20, 0x74, 0x20, 0x7f, 0x20, 0xa3, 0x20, 0xa7, 0x20, 0xab, 0x21, 0x05, - 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x5b, - 0x22, 0x02, 0x22, 0x06, 0x22, 0x0f, 0x22, 0x11, 0x22, 0x15, 0x22, 0x1a, - 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0x25, 0xca, - 0xf6, 0xc3, 0xfe, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x01, 0x5c, 0x00, 0x00, - 0x00, 0x06, 0x00, 0x00, 0xff, 0xc1, 0x00, 0x00, 0xff, 0xbb, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, - 0x00, 0x62, 0xff, 0x3a, 0xfd, 0xf8, 0x00, 0x68, 0x00, 0x00, 0xfe, 0x95, - 0x00, 0x00, 0xfe, 0x7f, 0xfe, 0x73, 0xfe, 0x72, 0xfe, 0x6d, 0xfe, 0x68, - 0xfe, 0x42, 0x00, 0x00, 0xff, 0x4c, 0xff, 0x4b, 0x00, 0x00, 0x00, 0x00, - 0xfd, 0xd4, 0x00, 0x00, 0xff, 0x2c, 0xfd, 0xc8, 0xfd, 0xc5, 0x00, 0x00, - 0xfd, 0x83, 0x00, 0x00, 0xfd, 0x7b, 0x00, 0x00, 0xfd, 0x70, 0x00, 0x00, - 0xfd, 0x6c, 0x00, 0x00, 0xfe, 0x6c, 0x00, 0x00, 0xfe, 0x69, 0x00, 0x00, - 0xfd, 0x14, 0x00, 0x00, 0xe5, 0x27, 0xe4, 0xe7, 0x00, 0x00, 0xe4, 0xc6, - 0x00, 0x00, 0xe4, 0xc4, 0xe3, 0xdc, 0xe2, 0x25, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x5d, 0xe0, 0x40, 0xe0, 0x41, 0xe2, 0xe6, - 0xe0, 0x47, 0xe1, 0xc0, 0xe1, 0xb6, 0xdf, 0xb4, 0xdf, 0xb2, 0x00, 0x00, - 0xe1, 0x32, 0xe1, 0x25, 0xe1, 0x23, 0xdf, 0x72, 0xe0, 0x5e, 0xe1, 0x0c, - 0xe0, 0xe0, 0xe0, 0x3d, 0xdf, 0x76, 0xe0, 0x31, 0x00, 0x00, 0xde, 0x74, - 0xe0, 0x28, 0xe0, 0x25, 0xe0, 0x19, 0xde, 0x3b, 0xde, 0x22, 0xde, 0x22, - 0xdc, 0x7b, 0x0a, 0xa5, 0x03, 0x47, 0x02, 0x4b, 0x00, 0x01, 0x00, 0x00, - 0x00, 0xc0, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, - 0x00, 0xee, 0x00, 0xf4, 0x00, 0x00, 0x02, 0xb0, 0x02, 0xb2, 0x00, 0x00, - 0x02, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xb4, - 0x00, 0x00, 0x02, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x02, 0xba, - 0x02, 0xd6, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x03, 0x06, 0x00, 0x00, 0x03, 0x4e, 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, - 0x03, 0x98, 0x00, 0x00, 0x03, 0xa4, 0x00, 0x00, 0x04, 0x2e, 0x00, 0x00, - 0x04, 0x3e, 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x00, 0x00, 0x04, 0x52, - 0x00, 0x00, 0x04, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x56, - 0x04, 0x5a, 0x04, 0x68, 0x04, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x04, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x4a, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x5b, 0x00, 0x6b, 0x00, 0x97, 0x00, 0x52, 0x00, 0x8c, - 0x00, 0x98, 0x00, 0x6a, 0x00, 0x74, 0x00, 0x75, 0x00, 0x96, 0x00, 0x7c, - 0x00, 0x5f, 0x00, 0x67, 0x00, 0x60, 0x00, 0x89, 0x00, 0x61, 0x00, 0x62, - 0x00, 0x84, 0x00, 0x81, 0x00, 0x85, 0x00, 0x5d, 0x00, 0x99, 0x00, 0x76, - 0x00, 0x8a, 0x00, 0x77, 0x00, 0x9c, 0x00, 0x66, 0x01, 0x5a, 0x00, 0x78, - 0x00, 0x8e, 0x00, 0x79, 0x00, 0x9d, 0x02, 0x73, 0x00, 0x5c, 0x00, 0x53, - 0x00, 0x54, 0x00, 0x5a, 0x00, 0x55, 0x00, 0x8f, 0x00, 0x9a, 0x01, 0x61, - 0x00, 0x92, 0x00, 0x43, 0x01, 0x6a, 0x00, 0x88, 0x02, 0x74, 0x00, 0x93, - 0x01, 0x5e, 0x00, 0x95, 0x00, 0x7e, 0x00, 0x41, 0x00, 0x42, 0x01, 0x5b, - 0x01, 0x6b, 0x00, 0x9b, 0x00, 0x64, 0x01, 0x66, 0x00, 0x40, 0x00, 0x44, - 0x01, 0x6c, 0x00, 0x46, 0x00, 0x45, 0x00, 0x47, 0x00, 0x5e, 0x00, 0xa2, - 0x00, 0x9e, 0x00, 0xa0, 0x00, 0xa7, 0x00, 0xa1, 0x00, 0xa5, 0x00, 0x48, - 0x00, 0xab, 0x00, 0xb5, 0x00, 0xaf, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0xc4, - 0x00, 0xbf, 0x00, 0xc1, 0x00, 0xc2, 0x00, 0xb9, 0x00, 0xd2, 0x00, 0xd7, - 0x00, 0xd3, 0x00, 0xd5, 0x00, 0xdd, 0x00, 0xd6, 0x00, 0x7f, 0x00, 0xdb, - 0x00, 0xeb, 0x00, 0xe7, 0x00, 0xe9, 0x00, 0xea, 0x00, 0xf6, 0x00, 0x4d, - 0x00, 0x50, 0x01, 0x01, 0x00, 0xfd, 0x00, 0xff, 0x01, 0x06, 0x01, 0x00, - 0x01, 0x04, 0x00, 0x49, 0x01, 0x0a, 0x01, 0x14, 0x01, 0x0e, 0x01, 0x11, - 0x01, 0x12, 0x01, 0x21, 0x01, 0x1d, 0x01, 0x1f, 0x01, 0x20, 0x00, 0x4c, - 0x01, 0x2f, 0x01, 0x34, 0x01, 0x30, 0x01, 0x32, 0x01, 0x3a, 0x01, 0x33, - 0x00, 0x80, 0x01, 0x38, 0x01, 0x48, 0x01, 0x44, 0x01, 0x46, 0x01, 0x47, - 0x01, 0x53, 0x00, 0x4e, 0x01, 0x55, 0x00, 0xa3, 0x01, 0x02, 0x00, 0x9f, - 0x00, 0xfe, 0x00, 0xa4, 0x01, 0x03, 0x00, 0xa9, 0x01, 0x08, 0x00, 0xac, - 0x01, 0x0b, 0x02, 0x75, 0x02, 0x76, 0x00, 0xaa, 0x01, 0x09, 0x00, 0xad, - 0x01, 0x0c, 0x00, 0xae, 0x01, 0x0d, 0x00, 0xb6, 0x01, 0x15, 0x00, 0xb0, - 0x01, 0x0f, 0x00, 0xb4, 0x01, 0x13, 0x00, 0xb8, 0x01, 0x17, 0x00, 0xb1, - 0x01, 0x10, 0x00, 0xbb, 0x01, 0x19, 0x00, 0xba, 0x01, 0x18, 0x02, 0x77, - 0x02, 0x78, 0x00, 0xbc, 0x01, 0x1a, 0x00, 0xbe, 0x01, 0x1c, 0x00, 0xbd, - 0x01, 0x1b, 0x00, 0xc7, 0x01, 0x24, 0x00, 0xc5, 0x01, 0x22, 0x00, 0xc0, - 0x01, 0x1e, 0x00, 0xc6, 0x01, 0x23, 0x00, 0xc3, 0x01, 0x6d, 0x01, 0x6e, - 0x01, 0x6f, 0x00, 0xc8, 0x01, 0x25, 0x00, 0xc9, 0x01, 0x26, 0x00, 0x4f, - 0x00, 0xca, 0x01, 0x27, 0x00, 0xcc, 0x01, 0x29, 0x00, 0xcb, 0x01, 0x28, - 0x00, 0xcd, 0x01, 0x2a, 0x00, 0xce, 0x01, 0x2b, 0x00, 0xcf, 0x01, 0x2c, - 0x00, 0xd1, 0x01, 0x2e, 0x00, 0xd0, 0x01, 0x2d, 0x02, 0x79, 0x00, 0xb7, - 0x01, 0x16, 0x00, 0xda, 0x01, 0x37, 0x00, 0xd4, 0x01, 0x31, 0x00, 0xd9, - 0x01, 0x36, 0x00, 0x4a, 0x00, 0x4b, 0x00, 0xde, 0x01, 0x3b, 0x00, 0xe0, - 0x01, 0x3d, 0x00, 0xdf, 0x01, 0x3c, 0x00, 0xe1, 0x01, 0x3e, 0x00, 0xe4, - 0x01, 0x41, 0x00, 0xe3, 0x01, 0x40, 0x00, 0xe2, 0x01, 0x3f, 0x02, 0x7e, - 0x02, 0x80, 0x00, 0xe6, 0x01, 0x43, 0x00, 0xe5, 0x01, 0x42, 0x00, 0xf1, - 0x01, 0x4e, 0x00, 0xee, 0x01, 0x4b, 0x00, 0xe8, 0x01, 0x45, 0x00, 0xf0, - 0x01, 0x4d, 0x00, 0xed, 0x01, 0x4a, 0x00, 0xef, 0x01, 0x4c, 0x00, 0xf3, - 0x01, 0x50, 0x00, 0xf7, 0x01, 0x54, 0x00, 0xf8, 0x00, 0xfa, 0x01, 0x57, - 0x00, 0xfc, 0x01, 0x59, 0x00, 0xfb, 0x01, 0x58, 0x01, 0x70, 0x00, 0xd8, - 0x01, 0x35, 0x00, 0xec, 0x01, 0x49, 0x00, 0xa6, 0x01, 0x05, 0x00, 0xa8, - 0x01, 0x07, 0x00, 0xdc, 0x01, 0x39, 0x01, 0x5c, 0x01, 0x64, 0x01, 0x5f, - 0x01, 0x60, 0x01, 0x62, 0x01, 0x67, 0x01, 0x5d, 0x01, 0x63, 0x01, 0x78, - 0x01, 0x79, 0x02, 0xd4, 0x01, 0x7a, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7, - 0x01, 0x7b, 0x01, 0x7c, 0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x01, 0x7d, - 0x02, 0xe1, 0x02, 0xe2, 0x01, 0x7e, 0x02, 0xe3, 0x02, 0xe4, 0x01, 0x7f, - 0x02, 0xe5, 0x01, 0x80, 0x02, 0xe6, 0x01, 0x81, 0x02, 0xe7, 0x02, 0xe8, - 0x01, 0x82, 0x02, 0xe9, 0x01, 0x83, 0x01, 0x84, 0x02, 0xea, 0x02, 0xeb, - 0x02, 0xec, 0x02, 0xed, 0x02, 0xee, 0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, - 0x01, 0x8e, 0x02, 0xf3, 0x02, 0xf4, 0x01, 0x8f, 0x02, 0xf2, 0x01, 0x90, - 0x01, 0x91, 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, - 0x02, 0xf5, 0x01, 0x97, 0x01, 0x98, 0x03, 0x2a, 0x02, 0xfb, 0x01, 0x9c, - 0x02, 0xfc, 0x01, 0x9d, 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00, - 0x01, 0x9e, 0x01, 0x9f, 0x01, 0xa0, 0x03, 0x02, 0x03, 0x2b, 0x03, 0x03, - 0x01, 0xa1, 0x03, 0x04, 0x01, 0xa2, 0x03, 0x05, 0x03, 0x06, 0x01, 0xa3, - 0x03, 0x07, 0x01, 0xa4, 0x01, 0xa5, 0x01, 0xa6, 0x03, 0x08, 0x03, 0x01, - 0x01, 0xa7, 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c, 0x03, 0x0d, - 0x03, 0x0e, 0x03, 0x0f, 0x01, 0xa8, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, - 0x01, 0xb3, 0x01, 0xb4, 0x01, 0xb5, 0x01, 0xb6, 0x03, 0x13, 0x01, 0xb7, - 0x01, 0xb8, 0x01, 0xb9, 0x03, 0x14, 0x01, 0xba, 0x01, 0xbb, 0x01, 0xbc, - 0x01, 0xbd, 0x03, 0x15, 0x01, 0xbe, 0x03, 0x16, 0x03, 0x17, 0x01, 0xbf, - 0x03, 0x18, 0x01, 0xc0, 0x03, 0x19, 0x03, 0x2c, 0x03, 0x1a, 0x01, 0xcb, - 0x03, 0x1b, 0x01, 0xcc, 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e, 0x03, 0x1f, - 0x01, 0xcd, 0x01, 0xce, 0x01, 0xcf, 0x03, 0x20, 0x03, 0x2d, 0x03, 0x21, - 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x03, 0xd4, 0x03, 0x2e, 0x03, 0x2f, - 0x01, 0xe0, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3, 0x03, 0x30, 0x03, 0x31, - 0x01, 0xf3, 0x01, 0xf4, 0x03, 0xd9, 0x03, 0xda, 0x03, 0xd3, 0x03, 0xd2, - 0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, 0x03, 0xd5, 0x03, 0xd6, - 0x01, 0xf9, 0x01, 0xfa, 0x03, 0xcd, 0x03, 0xce, 0x03, 0x32, 0x03, 0x33, - 0x03, 0xbf, 0x03, 0xc0, 0x01, 0xfb, 0x01, 0xfc, 0x03, 0xd7, 0x03, 0xd8, - 0x01, 0xfd, 0x01, 0xfe, 0x03, 0xc1, 0x03, 0xc2, 0x01, 0xff, 0x02, 0x00, - 0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x03, 0x34, 0x03, 0x35, - 0x03, 0xc3, 0x03, 0xc4, 0x03, 0x36, 0x03, 0x37, 0x03, 0xe1, 0x03, 0xe2, - 0x03, 0xc5, 0x03, 0xc6, 0x02, 0x05, 0x02, 0x06, 0x03, 0xc7, 0x03, 0xc8, - 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x03, 0xd1, 0x02, 0x0a, 0x02, 0x0b, - 0x03, 0xcf, 0x03, 0xd0, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x02, 0x0c, - 0x02, 0x0d, 0x03, 0xdf, 0x03, 0xe0, 0x02, 0x0e, 0x02, 0x0f, 0x03, 0xdb, - 0x03, 0xdc, 0x03, 0xc9, 0x03, 0xca, 0x03, 0xdd, 0x03, 0xde, 0x02, 0x10, - 0x03, 0x45, 0x03, 0x44, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48, 0x03, 0x49, - 0x03, 0x4a, 0x02, 0x11, 0x02, 0x12, 0x03, 0xcb, 0x03, 0xcc, 0x03, 0x5f, - 0x03, 0x60, 0x02, 0x13, 0x02, 0x14, 0x03, 0x61, 0x03, 0x62, 0x03, 0xe3, - 0x03, 0xe4, 0x02, 0x15, 0x03, 0x63, 0x03, 0xe5, 0x03, 0x64, 0x03, 0x65, - 0x00, 0xf5, 0x01, 0x52, 0x00, 0xf2, 0x01, 0x4f, 0x00, 0xf4, 0x01, 0x51, - 0x00, 0xf9, 0x01, 0x56, 0x00, 0x68, 0x00, 0x69, 0x03, 0xe6, 0x02, 0x31, - 0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x02, 0x32, 0x00, 0x6f, 0x00, 0x70, - 0x00, 0x71, 0x00, 0x90, 0x00, 0x91, 0x00, 0x65, 0x02, 0x33, 0x00, 0x63, - 0x03, 0xbe, 0x02, 0x36, 0x02, 0x41, 0x00, 0x7d, 0xb8, 0x01, 0xff, 0x85, - 0xb0, 0x04, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0xea, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x20, 0x00, 0xb4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0e, 0x00, 0xd4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x34, 0x00, 0xe2, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x20, 0x00, 0xb4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1a, 0x01, 0x16, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x1e, 0x01, 0x30, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x07, 0x00, 0x4a, 0x01, 0x4e, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x0c, 0x01, 0x98, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x0b, 0x00, 0x14, 0x01, 0xa4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x0c, 0x00, 0x26, 0x01, 0xb8, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x0d, 0x00, 0x5c, 0x01, 0xde, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x0e, 0x00, 0x54, 0x02, 0x3a, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, 0x16, 0x02, 0x8e, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x00, 0x11, 0x00, 0x08, 0x02, 0xa4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x01, 0x00, 0x00, 0x0c, 0x02, 0xac, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x01, 0x0b, 0x00, 0x0c, 0x02, 0xb8, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x01, 0x0c, 0x00, 0x08, 0x02, 0xa4, 0x00, 0x03, - 0x00, 0x01, 0x04, 0x09, 0x01, 0x11, 0x00, 0x0c, 0x02, 0xc4, 0x00, 0x43, - 0x00, 0x6f, 0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, - 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, - 0x00, 0x35, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, - 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, - 0x00, 0x20, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x20, - 0x00, 0x50, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x63, - 0x00, 0x74, 0x00, 0x20, 0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, - 0x00, 0x6f, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x68, - 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3a, 0x00, 0x2f, - 0x00, 0x2f, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, - 0x00, 0x62, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, - 0x00, 0x67, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, - 0x00, 0x66, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2f, - 0x00, 0x72, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, - 0x00, 0x6d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x29, 0x00, 0x52, - 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, - 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x54, - 0x00, 0x68, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, - 0x00, 0x75, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x33, 0x00, 0x2e, - 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3b, 0x00, 0x47, 0x00, 0x4f, - 0x00, 0x4f, 0x00, 0x47, 0x00, 0x3b, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, - 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, - 0x00, 0x6f, 0x00, 0x2d, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6e, - 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, - 0x00, 0x6e, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, - 0x00, 0x30, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, - 0x00, 0x6f, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x2d, - 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x52, 0x00, 0x6f, - 0x00, 0x62, 0x00, 0x6f, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, - 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, - 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, - 0x00, 0x64, 0x00, 0x65, 0x00, 0x6d, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6b, - 0x00, 0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, - 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x47, - 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x47, - 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, - 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x43, 0x00, 0x68, 0x00, 0x72, - 0x00, 0x69, 0x00, 0x73, 0x00, 0x74, 0x00, 0x69, 0x00, 0x61, 0x00, 0x6e, - 0x00, 0x20, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x74, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x4c, 0x00, 0x69, - 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, - 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x41, - 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, - 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, - 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x32, - 0x00, 0x2e, 0x00, 0x30, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, - 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, - 0x00, 0x2e, 0x00, 0x61, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, - 0x00, 0x65, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f, - 0x00, 0x6c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, - 0x00, 0x65, 0x00, 0x73, 0x00, 0x2f, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x43, - 0x00, 0x45, 0x00, 0x4e, 0x00, 0x53, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x32, - 0x00, 0x2e, 0x00, 0x30, 0x00, 0x52, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x6f, - 0x00, 0x74, 0x00, 0x6f, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x6f, 0x00, 0x6e, - 0x00, 0x6f, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x57, - 0x00, 0x65, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x49, - 0x00, 0x74, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x4e, - 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6d, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x00, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x6a, 0x00, 0x64, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xe7, 0x00, 0x00, - 0x00, 0x03, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, - 0x00, 0x29, 0x00, 0x2a, 0x00, 0x2b, 0x00, 0x2c, 0x00, 0x2d, 0x00, 0x2e, - 0x00, 0x2f, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, - 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3a, - 0x00, 0x3b, 0x00, 0x3c, 0x00, 0x3d, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, - 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a, 0x00, 0x4b, 0x00, 0x4c, - 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50, 0x00, 0x51, 0x00, 0x52, - 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, - 0x00, 0x59, 0x00, 0x5a, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0x5d, 0x00, 0x13, - 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, - 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0xf1, 0x00, 0xf2, 0x00, 0xf3, - 0x00, 0x9d, 0x00, 0x9e, 0x00, 0xf4, 0x00, 0xf5, 0x00, 0xf6, 0x00, 0x90, - 0x00, 0xa0, 0x00, 0xb0, 0x00, 0xb1, 0x00, 0xea, 0x00, 0xed, 0x00, 0xee, - 0x01, 0x02, 0x00, 0x89, 0x01, 0x03, 0x00, 0x07, 0x00, 0x84, 0x00, 0x85, - 0x00, 0x96, 0x00, 0xa6, 0x00, 0xf7, 0x01, 0x04, 0x01, 0x05, 0x00, 0xbd, - 0x00, 0x04, 0x00, 0xa3, 0x00, 0x22, 0x00, 0xa2, 0x00, 0x0f, 0x00, 0x11, - 0x00, 0x1d, 0x00, 0x1e, 0x00, 0xab, 0x00, 0xc3, 0x00, 0x87, 0x00, 0x42, - 0x00, 0x10, 0x00, 0xb2, 0x00, 0xb3, 0x00, 0x0a, 0x00, 0x05, 0x00, 0xb6, - 0x00, 0xb7, 0x00, 0xc4, 0x00, 0xb4, 0x00, 0xb5, 0x00, 0xc5, 0x01, 0x06, - 0x01, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x5e, - 0x00, 0x60, 0x00, 0xbe, 0x00, 0xbf, 0x00, 0x0e, 0x00, 0xef, 0x00, 0x93, - 0x00, 0xf0, 0x00, 0xb8, 0x00, 0x20, 0x00, 0x8f, 0x00, 0xa7, 0x00, 0x1f, - 0x00, 0x21, 0x00, 0x94, 0x00, 0x95, 0x00, 0xa4, 0x00, 0x12, 0x00, 0x3f, - 0x00, 0xbc, 0x00, 0x08, 0x00, 0xc6, 0x00, 0x5f, 0x00, 0xe8, 0x00, 0x82, - 0x00, 0xc2, 0x00, 0x8b, 0x00, 0x8a, 0x00, 0x8c, 0x00, 0x83, 0x00, 0x0d, - 0x00, 0x06, 0x00, 0x09, 0x00, 0x23, 0x00, 0x86, 0x00, 0x88, 0x00, 0x41, - 0x00, 0x61, 0x00, 0xc9, 0x01, 0x08, 0x00, 0xc7, 0x00, 0x62, 0x00, 0xad, - 0x01, 0x09, 0x01, 0x0a, 0x00, 0x63, 0x01, 0x0b, 0x00, 0xae, 0x01, 0x0c, - 0x00, 0xfd, 0x00, 0xff, 0x00, 0x64, 0x01, 0x0d, 0x01, 0x0e, 0x01, 0x0f, - 0x00, 0x65, 0x01, 0x10, 0x01, 0x11, 0x00, 0xc8, 0x00, 0xca, 0x01, 0x12, - 0x00, 0xcb, 0x01, 0x13, 0x01, 0x14, 0x01, 0x15, 0x00, 0xe9, 0x00, 0xf8, - 0x01, 0x16, 0x01, 0x17, 0x01, 0x18, 0x01, 0x19, 0x00, 0xcc, 0x01, 0x1a, - 0x00, 0xcd, 0x00, 0xce, 0x00, 0xfa, 0x00, 0xcf, 0x01, 0x1b, 0x01, 0x1c, - 0x01, 0x1d, 0x01, 0x1e, 0x01, 0x1f, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, - 0x01, 0x23, 0x00, 0xe2, 0x01, 0x24, 0x01, 0x25, 0x01, 0x26, 0x00, 0x66, - 0x00, 0xd0, 0x01, 0x27, 0x00, 0xd1, 0x00, 0x67, 0x00, 0xd3, 0x01, 0x28, - 0x01, 0x29, 0x01, 0x2a, 0x00, 0x91, 0x01, 0x2b, 0x00, 0xaf, 0x01, 0x2c, - 0x01, 0x2d, 0x01, 0x2e, 0x01, 0x2f, 0x00, 0xe4, 0x00, 0xfb, 0x01, 0x30, - 0x01, 0x31, 0x01, 0x32, 0x00, 0xd4, 0x01, 0x33, 0x00, 0xd5, 0x00, 0x68, - 0x00, 0xd6, 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, - 0x01, 0x39, 0x01, 0x3a, 0x01, 0x3b, 0x01, 0x3c, 0x01, 0x3d, 0x00, 0xeb, - 0x01, 0x3e, 0x00, 0xbb, 0x01, 0x3f, 0x01, 0x40, 0x00, 0xe6, 0x01, 0x41, - 0x00, 0x69, 0x01, 0x42, 0x00, 0x6b, 0x00, 0x6c, 0x00, 0x6a, 0x01, 0x43, - 0x01, 0x44, 0x00, 0x6e, 0x01, 0x45, 0x00, 0x6d, 0x01, 0x46, 0x00, 0xfe, - 0x01, 0x00, 0x00, 0x6f, 0x01, 0x47, 0x01, 0x48, 0x01, 0x01, 0x00, 0x70, - 0x01, 0x49, 0x01, 0x4a, 0x00, 0x72, 0x00, 0x73, 0x01, 0x4b, 0x00, 0x71, - 0x01, 0x4c, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0xf9, 0x01, 0x4f, 0x01, 0x50, - 0x01, 0x51, 0x01, 0x52, 0x00, 0x74, 0x01, 0x53, 0x00, 0x76, 0x00, 0x77, - 0x00, 0x75, 0x01, 0x54, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, - 0x01, 0x59, 0x01, 0x5a, 0x01, 0x5b, 0x01, 0x5c, 0x00, 0xe3, 0x01, 0x5d, - 0x01, 0x5e, 0x01, 0x5f, 0x00, 0x78, 0x00, 0x79, 0x01, 0x60, 0x00, 0x7b, - 0x00, 0x7c, 0x00, 0x7a, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x00, 0xa1, - 0x01, 0x64, 0x00, 0x7d, 0x01, 0x65, 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, - 0x00, 0xe5, 0x00, 0xfc, 0x01, 0x69, 0x01, 0x6a, 0x01, 0x6b, 0x00, 0x7e, - 0x01, 0x6c, 0x00, 0x80, 0x00, 0x81, 0x00, 0x7f, 0x01, 0x6d, 0x01, 0x6e, - 0x01, 0x6f, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, - 0x01, 0x75, 0x01, 0x76, 0x00, 0xec, 0x01, 0x77, 0x00, 0xba, 0x01, 0x78, - 0x01, 0x79, 0x00, 0xe7, 0x01, 0x7a, 0x00, 0x43, 0x00, 0x8d, 0x00, 0xd8, - 0x00, 0xd9, 0x00, 0xda, 0x00, 0xdb, 0x00, 0xdc, 0x00, 0x8e, 0x00, 0xdd, - 0x00, 0xdf, 0x00, 0xe1, 0x01, 0x7b, 0x00, 0xde, 0x00, 0xe0, 0x01, 0x7c, - 0x00, 0x02, 0x00, 0xa9, 0x00, 0x97, 0x00, 0xaa, 0x00, 0xd7, 0x01, 0x7d, - 0x01, 0x7e, 0x01, 0x7f, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, - 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, - 0x01, 0x8a, 0x00, 0xa8, 0x01, 0x8b, 0x01, 0x8c, 0x01, 0x8d, 0x01, 0x8e, - 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91, 0x00, 0x9f, 0x01, 0x92, 0x01, 0x93, - 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, - 0x01, 0x9a, 0x01, 0x9b, 0x01, 0x9c, 0x00, 0x9b, 0x01, 0x9d, 0x01, 0x9e, - 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x01, 0xa3, 0x01, 0xa4, - 0x01, 0xa5, 0x01, 0xa6, 0x01, 0xa7, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xaa, - 0x01, 0xab, 0x01, 0xac, 0x01, 0xad, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xb0, - 0x01, 0xb1, 0x01, 0xb2, 0x01, 0xb3, 0x01, 0xb4, 0x01, 0xb5, 0x01, 0xb6, - 0x01, 0xb7, 0x01, 0xb8, 0x01, 0xb9, 0x01, 0xba, 0x01, 0xbb, 0x01, 0xbc, - 0x01, 0xbd, 0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc0, 0x01, 0xc1, 0x01, 0xc2, - 0x01, 0xc3, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xc6, 0x01, 0xc7, 0x01, 0xc8, - 0x01, 0xc9, 0x01, 0xca, 0x01, 0xcb, 0x01, 0xcc, 0x01, 0xcd, 0x01, 0xce, - 0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd4, - 0x01, 0xd5, 0x01, 0xd6, 0x01, 0xd7, 0x01, 0xd8, 0x01, 0xd9, 0x01, 0xda, - 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, 0x01, 0xdf, 0x01, 0xe0, - 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe6, - 0x01, 0xe7, 0x01, 0xe8, 0x01, 0xe9, 0x01, 0xea, 0x01, 0xeb, 0x01, 0xec, - 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1, 0x01, 0xf2, - 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, - 0x01, 0xf9, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc, 0x01, 0xfd, 0x01, 0xfe, - 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, - 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, - 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x0d, 0x02, 0x0e, 0x02, 0x0f, 0x02, 0x10, - 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, - 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, 0x02, 0x1b, 0x02, 0x1c, - 0x02, 0x1d, 0x02, 0x1e, 0x02, 0x1f, 0x02, 0x20, 0x02, 0x21, 0x02, 0x22, - 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, - 0x02, 0x29, 0x02, 0x2a, 0x02, 0x2b, 0x02, 0x2c, 0x02, 0x2d, 0x02, 0x2e, - 0x02, 0x2f, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, - 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3a, - 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3d, 0x02, 0x3e, 0x02, 0x3f, 0x02, 0x40, - 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, - 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, 0x02, 0x4a, 0x00, 0x98, 0x00, 0x9a, - 0x00, 0x99, 0x00, 0xa5, 0x00, 0x92, 0x00, 0x9c, 0x00, 0xb9, 0x02, 0x4b, - 0x02, 0x4c, 0x02, 0x4d, 0x02, 0x4e, 0x02, 0x4f, 0x02, 0x50, 0x02, 0x51, - 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, - 0x02, 0x58, 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, - 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, - 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, - 0x02, 0x6a, 0x02, 0x6b, 0x02, 0x6c, 0x02, 0x6d, 0x02, 0x6e, 0x02, 0x6f, - 0x02, 0x70, 0x02, 0x71, 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, - 0x02, 0x76, 0x02, 0x77, 0x00, 0xac, 0x02, 0x78, 0x02, 0x79, 0x02, 0x7a, - 0x02, 0x7b, 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, 0x02, 0x7f, 0x02, 0x80, - 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, - 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, 0x02, 0x8b, 0x02, 0x8c, - 0x02, 0x8d, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, - 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, - 0x02, 0x99, 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9e, - 0x02, 0x9f, 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2, 0x02, 0xa3, 0x02, 0xa4, - 0x02, 0xa5, 0x02, 0xa6, 0x02, 0xa7, 0x02, 0xa8, 0x02, 0xa9, 0x02, 0xaa, - 0x02, 0xab, 0x02, 0xac, 0x02, 0xad, 0x02, 0xae, 0x02, 0xaf, 0x02, 0xb0, - 0x02, 0xb1, 0x02, 0xb2, 0x02, 0xb3, 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, - 0x02, 0xb7, 0x02, 0xb8, 0x02, 0xb9, 0x02, 0xba, 0x02, 0xbb, 0x02, 0xbc, - 0x02, 0xbd, 0x02, 0xbe, 0x02, 0xbf, 0x02, 0xc0, 0x02, 0xc1, 0x02, 0xc2, - 0x02, 0xc3, 0x02, 0xc4, 0x02, 0xc5, 0x02, 0xc6, 0x02, 0xc7, 0x02, 0xc8, - 0x02, 0xc9, 0x02, 0xca, 0x02, 0xcb, 0x02, 0xcc, 0x02, 0xcd, 0x02, 0xce, - 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd2, 0x02, 0xd3, 0x02, 0xd4, - 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7, 0x02, 0xd8, 0x02, 0xd9, 0x02, 0xda, - 0x02, 0xdb, 0x02, 0xdc, 0x02, 0xdd, 0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, - 0x02, 0xe1, 0x02, 0xe2, 0x02, 0xe3, 0x02, 0xe4, 0x02, 0xe5, 0x02, 0xe6, - 0x02, 0xe7, 0x02, 0xe8, 0x02, 0xe9, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, - 0x02, 0xed, 0x02, 0xee, 0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x02, 0xf2, - 0x02, 0xf3, 0x02, 0xf4, 0x02, 0xf5, 0x02, 0xf6, 0x02, 0xf7, 0x02, 0xf8, - 0x02, 0xf9, 0x02, 0xfa, 0x02, 0xfb, 0x02, 0xfc, 0x02, 0xfd, 0x02, 0xfe, - 0x02, 0xff, 0x03, 0x00, 0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, - 0x03, 0x05, 0x03, 0x06, 0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0a, - 0x03, 0x0b, 0x03, 0x0c, 0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, 0x03, 0x10, - 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, 0x03, 0x15, 0x03, 0x16, - 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1a, 0x03, 0x1b, 0x03, 0x1c, - 0x03, 0x1d, 0x03, 0x1e, 0x03, 0x1f, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, - 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, - 0x03, 0x29, 0x03, 0x2a, 0x03, 0x2b, 0x03, 0x2c, 0x03, 0x2d, 0x03, 0x2e, - 0x03, 0x2f, 0x03, 0x30, 0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, - 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, - 0x03, 0x3b, 0x03, 0x3c, 0x03, 0x3d, 0x03, 0x3e, 0x03, 0x3f, 0x03, 0x40, - 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, - 0x03, 0x47, 0x03, 0x48, 0x03, 0x49, 0x03, 0x4a, 0x03, 0x4b, 0x03, 0x4c, - 0x03, 0x4d, 0x03, 0x4e, 0x03, 0x4f, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, - 0x03, 0x53, 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x03, 0x58, - 0x03, 0x59, 0x03, 0x5a, 0x03, 0x5b, 0x03, 0x5c, 0x03, 0x5d, 0x03, 0x5e, - 0x03, 0x5f, 0x03, 0x60, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, - 0x03, 0x65, 0x03, 0x66, 0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6a, - 0x03, 0x6b, 0x03, 0x6c, 0x03, 0x6d, 0x03, 0x6e, 0x03, 0x6f, 0x03, 0x70, - 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x74, 0x03, 0x75, 0x03, 0x76, - 0x03, 0x77, 0x03, 0x78, 0x03, 0x79, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, - 0x03, 0x7d, 0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, - 0x03, 0x83, 0x03, 0x84, 0x03, 0x85, 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, - 0x03, 0x89, 0x03, 0x8a, 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8e, - 0x03, 0x8f, 0x03, 0x90, 0x03, 0x91, 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, - 0x03, 0x95, 0x03, 0x96, 0x03, 0x97, 0x03, 0x98, 0x03, 0x99, 0x03, 0x9a, - 0x03, 0x9b, 0x03, 0x9c, 0x03, 0x9d, 0x03, 0x9e, 0x03, 0x9f, 0x03, 0xa0, - 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, - 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, - 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, - 0x03, 0xb3, 0x03, 0xb4, 0x03, 0xb5, 0x03, 0xb6, 0x03, 0xb7, 0x03, 0xb8, - 0x03, 0xb9, 0x03, 0xba, 0x03, 0xbb, 0x03, 0xbc, 0x03, 0xbd, 0x03, 0xbe, - 0x03, 0xbf, 0x03, 0xc0, 0x03, 0xc1, 0x03, 0xc2, 0x03, 0xc3, 0x03, 0xc4, - 0x03, 0xc5, 0x03, 0xc6, 0x03, 0xc7, 0x03, 0xc8, 0x03, 0xc9, 0x03, 0xca, - 0x03, 0xcb, 0x03, 0xcc, 0x03, 0xcd, 0x03, 0xce, 0x03, 0xcf, 0x03, 0xd0, - 0x03, 0xd1, 0x03, 0xd2, 0x03, 0xd3, 0x03, 0xd4, 0x03, 0xd5, 0x03, 0xd6, - 0x03, 0xd7, 0x03, 0xd8, 0x03, 0xd9, 0x03, 0xda, 0x03, 0xdb, 0x03, 0xdc, - 0x03, 0xdd, 0x03, 0xde, 0x03, 0xdf, 0x03, 0xe0, 0x03, 0xe1, 0x03, 0xe2, - 0x03, 0xe3, 0x03, 0xe4, 0x03, 0xe5, 0x03, 0xe6, 0x03, 0xe7, 0x03, 0xe8, - 0x03, 0xe9, 0x03, 0xea, 0x0c, 0x6b, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x6c, - 0x61, 0x6e, 0x64, 0x69, 0x63, 0x05, 0x73, 0x63, 0x68, 0x77, 0x61, 0x04, - 0x6c, 0x69, 0x72, 0x61, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x06, - 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, - 0x64, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x41, 0x6d, 0x61, - 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, - 0x0a, 0x41, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, - 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x43, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, 0x44, 0x63, 0x61, 0x72, - 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61, 0x74, 0x06, 0x45, 0x62, - 0x72, 0x65, 0x76, 0x65, 0x06, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0a, - 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x45, - 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x03, 0x45, 0x6e, 0x67, 0x07, 0x45, - 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0b, 0x47, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x47, 0x63, 0x6f, 0x6d, 0x6d, - 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x04, 0x48, 0x62, 0x61, 0x72, - 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, - 0x06, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x49, 0x6d, 0x61, 0x63, - 0x72, 0x6f, 0x6e, 0x07, 0x49, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x06, - 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x4a, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x4b, 0x63, 0x6f, 0x6d, 0x6d, - 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x4c, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x4c, 0x63, - 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x04, 0x4c, - 0x64, 0x6f, 0x74, 0x06, 0x4e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x4e, - 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x4e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, - 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x4f, 0x62, 0x72, 0x65, 0x76, - 0x65, 0x05, 0x4f, 0x68, 0x6f, 0x72, 0x6e, 0x0d, 0x4f, 0x68, 0x75, 0x6e, - 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x4f, 0x6d, - 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x0b, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x06, 0x52, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x52, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x53, 0x61, 0x63, - 0x75, 0x74, 0x65, 0x0b, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x04, 0x54, 0x62, 0x61, 0x72, 0x06, 0x54, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x55, - 0x68, 0x6f, 0x72, 0x6e, 0x0d, 0x55, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, - 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x55, 0x6d, 0x61, 0x63, 0x72, - 0x6f, 0x6e, 0x07, 0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x05, 0x55, - 0x72, 0x69, 0x6e, 0x67, 0x06, 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x06, - 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x57, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0b, - 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, - 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x5a, 0x61, 0x63, 0x75, 0x74, - 0x65, 0x0a, 0x5a, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x61, 0x6d, 0x61, 0x63, - 0x72, 0x6f, 0x6e, 0x07, 0x61, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0a, - 0x61, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x61, - 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x63, 0x63, 0x69, 0x72, 0x63, - 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x06, 0x64, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, - 0x72, 0x6f, 0x6e, 0x0a, 0x65, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x03, 0x65, - 0x6e, 0x67, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0b, 0x67, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x67, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x04, - 0x68, 0x62, 0x61, 0x72, 0x0b, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, - 0x66, 0x6c, 0x65, 0x78, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, - 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x69, 0x6f, 0x67, 0x6f, - 0x6e, 0x65, 0x6b, 0x06, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x6a, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0c, 0x6b, - 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, - 0x6c, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6c, 0x63, 0x61, 0x72, 0x6f, - 0x6e, 0x0c, 0x6c, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x04, 0x6c, 0x64, 0x6f, 0x74, 0x06, 0x6e, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, 0x6e, 0x63, - 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x6f, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x6f, 0x68, 0x6f, 0x72, 0x6e, 0x0d, - 0x6f, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, - 0x74, 0x07, 0x6f, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x0b, 0x6f, 0x73, - 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0c, - 0x72, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x73, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x04, 0x74, 0x62, 0x61, 0x72, - 0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x75, 0x62, 0x72, 0x65, - 0x76, 0x65, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e, 0x0d, 0x75, 0x68, 0x75, - 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75, - 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6f, 0x67, 0x6f, 0x6e, - 0x65, 0x6b, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, 0x06, 0x75, 0x74, 0x69, - 0x6c, 0x64, 0x65, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x77, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x77, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x77, 0x67, 0x72, - 0x61, 0x76, 0x65, 0x0b, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x7a, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x7a, 0x64, 0x6f, 0x74, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x08, 0x64, 0x6f, 0x74, 0x62, 0x65, 0x6c, 0x6f, - 0x77, 0x0b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, - 0x74, 0x02, 0x49, 0x4a, 0x02, 0x69, 0x6a, 0x05, 0x6c, 0x6f, 0x6e, 0x67, - 0x73, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x32, 0x46, 0x33, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, - 0x6f, 0x6d, 0x62, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, - 0x62, 0x09, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x04, - 0x68, 0x6f, 0x6f, 0x6b, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x46, - 0x05, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0d, 0x64, 0x69, 0x65, 0x72, 0x65, - 0x73, 0x69, 0x73, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x09, 0x61, 0x6e, 0x6f, - 0x74, 0x65, 0x6c, 0x65, 0x69, 0x61, 0x05, 0x47, 0x61, 0x6d, 0x6d, 0x61, - 0x05, 0x54, 0x68, 0x65, 0x74, 0x61, 0x06, 0x4c, 0x61, 0x6d, 0x62, 0x64, - 0x61, 0x02, 0x58, 0x69, 0x02, 0x50, 0x69, 0x05, 0x53, 0x69, 0x67, 0x6d, - 0x61, 0x03, 0x50, 0x68, 0x69, 0x03, 0x50, 0x73, 0x69, 0x05, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x04, 0x62, 0x65, 0x74, 0x61, 0x05, 0x67, 0x61, 0x6d, - 0x6d, 0x61, 0x05, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x07, 0x65, 0x70, 0x73, - 0x69, 0x6c, 0x6f, 0x6e, 0x04, 0x7a, 0x65, 0x74, 0x61, 0x03, 0x65, 0x74, - 0x61, 0x05, 0x74, 0x68, 0x65, 0x74, 0x61, 0x04, 0x69, 0x6f, 0x74, 0x61, - 0x06, 0x6c, 0x61, 0x6d, 0x62, 0x64, 0x61, 0x02, 0x78, 0x69, 0x03, 0x72, - 0x68, 0x6f, 0x06, 0x73, 0x69, 0x67, 0x6d, 0x61, 0x31, 0x05, 0x73, 0x69, - 0x67, 0x6d, 0x61, 0x03, 0x74, 0x61, 0x75, 0x07, 0x75, 0x70, 0x73, 0x69, - 0x6c, 0x6f, 0x6e, 0x03, 0x70, 0x68, 0x69, 0x03, 0x70, 0x73, 0x69, 0x05, - 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x44, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x33, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, - 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, - 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x42, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x30, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x31, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x31, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x32, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, - 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x33, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x42, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x33, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, - 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x34, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, - 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x35, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x35, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x33, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x36, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x36, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, - 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x43, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x37, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, - 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x46, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x39, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x38, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x39, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, - 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x42, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, - 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x33, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, - 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x31, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x34, 0x46, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, - 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x34, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x37, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x41, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, 0x44, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x35, 0x30, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x30, - 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x30, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x32, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x34, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, - 0x41, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x42, 0x0d, 0x75, 0x6e, - 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x64, 0x62, 0x6c, 0x0d, - 0x71, 0x75, 0x6f, 0x74, 0x65, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, - 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x32, 0x35, 0x07, 0x75, 0x6e, - 0x69, 0x32, 0x30, 0x37, 0x34, 0x09, 0x6e, 0x73, 0x75, 0x70, 0x65, 0x72, - 0x69, 0x6f, 0x72, 0x04, 0x45, 0x75, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69, - 0x32, 0x31, 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31, 0x36, 0x09, 0x65, 0x73, 0x74, - 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x09, 0x6f, 0x6e, 0x65, 0x65, 0x69, - 0x67, 0x68, 0x74, 0x68, 0x0c, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, - 0x67, 0x68, 0x74, 0x68, 0x73, 0x0b, 0x66, 0x69, 0x76, 0x65, 0x65, 0x69, - 0x67, 0x68, 0x74, 0x68, 0x73, 0x0c, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65, - 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x45, - 0x46, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46, 0x43, 0x07, 0x75, - 0x6e, 0x69, 0x46, 0x46, 0x46, 0x44, 0x13, 0x63, 0x69, 0x72, 0x63, 0x75, - 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, - 0x6d, 0x62, 0x12, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, - 0x78, 0x68, 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, 0x62, 0x13, 0x63, 0x69, - 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x67, 0x72, 0x61, 0x76, - 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x13, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, - 0x66, 0x6c, 0x65, 0x78, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, - 0x62, 0x0e, 0x62, 0x72, 0x65, 0x76, 0x65, 0x67, 0x72, 0x61, 0x76, 0x65, - 0x63, 0x6f, 0x6d, 0x62, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x06, 0x41, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x42, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x06, 0x43, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x44, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x06, 0x45, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x46, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x06, 0x47, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, - 0x48, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x49, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x06, 0x4a, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4b, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x06, 0x4c, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4d, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x4e, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x06, 0x4f, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x51, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x06, 0x52, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x53, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x06, 0x54, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, - 0x55, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x56, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x06, 0x57, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x58, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x06, 0x59, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x06, 0x5a, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0d, 0x62, 0x72, 0x65, 0x76, 0x65, 0x68, - 0x6f, 0x6f, 0x6b, 0x63, 0x6f, 0x6d, 0x62, 0x0e, 0x62, 0x72, 0x65, 0x76, - 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x08, 0x63, - 0x72, 0x6f, 0x73, 0x73, 0x62, 0x61, 0x72, 0x09, 0x72, 0x69, 0x6e, 0x67, - 0x61, 0x63, 0x75, 0x74, 0x65, 0x09, 0x64, 0x61, 0x73, 0x69, 0x61, 0x6f, - 0x78, 0x69, 0x61, 0x0e, 0x62, 0x72, 0x65, 0x76, 0x65, 0x74, 0x69, 0x6c, - 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x0b, 0x63, 0x79, 0x72, 0x69, 0x6c, - 0x6c, 0x69, 0x63, 0x74, 0x69, 0x63, 0x0c, 0x63, 0x79, 0x72, 0x69, 0x6c, - 0x6c, 0x69, 0x63, 0x68, 0x6f, 0x6f, 0x6b, 0x06, 0x50, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x05, 0x4b, 0x2e, 0x61, 0x6c, 0x74, 0x0f, 0x47, 0x65, 0x72, - 0x6d, 0x61, 0x6e, 0x64, 0x62, 0x6c, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x31, 0x30, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x30, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x31, 0x32, 0x31, 0x0b, 0x6e, 0x61, 0x70, 0x6f, 0x73, 0x74, 0x72, - 0x6f, 0x70, 0x68, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x32, 0x31, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x36, 0x32, 0x0c, 0x75, 0x6e, 0x69, - 0x30, 0x31, 0x36, 0x32, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x07, 0x75, 0x6e, - 0x69, 0x30, 0x31, 0x36, 0x33, 0x0b, 0x44, 0x63, 0x72, 0x6f, 0x61, 0x74, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x08, 0x45, 0x74, 0x68, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x09, 0x54, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x0b, 0x41, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x0b, 0x41, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x10, 0x41, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x41, 0x74, 0x69, 0x6c, 0x64, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x41, 0x64, 0x69, 0x65, 0x72, 0x65, - 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0a, 0x41, 0x72, 0x69, - 0x6e, 0x67, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, 0x41, 0x72, 0x69, 0x6e, - 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0d, - 0x43, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x45, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x10, 0x45, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, - 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x45, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x49, 0x67, - 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x49, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x49, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0e, 0x49, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4e, 0x74, 0x69, 0x6c, 0x64, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, 0x67, 0x72, 0x61, 0x76, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, 0x61, 0x63, 0x75, 0x74, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x4f, 0x63, 0x69, 0x72, 0x63, 0x75, - 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, - 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x4f, - 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x55, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x55, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x10, 0x55, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, - 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x55, 0x64, 0x69, 0x65, 0x72, - 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x59, 0x61, - 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x41, 0x6d, - 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x41, - 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x41, - 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x43, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, - 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x43, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x45, 0x62, 0x72, 0x65, 0x76, 0x65, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x45, 0x6f, - 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x45, - 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x47, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x47, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x11, 0x47, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, - 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x48, 0x63, - 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0c, 0x49, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0c, 0x49, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, - 0x73, 0x6d, 0x63, 0x70, 0x0f, 0x49, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, - 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x4a, 0x63, 0x69, - 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x11, 0x4b, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4c, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, 0x4c, 0x63, 0x6f, 0x6d, - 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x09, 0x4c, 0x64, 0x6f, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x4e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x11, - 0x4e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, - 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x4f, 0x6d, 0x61, 0x63, 0x72, 0x6f, - 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x4f, 0x62, 0x72, 0x65, 0x76, - 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x12, 0x4f, 0x68, 0x75, 0x6e, 0x67, - 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x0b, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, - 0x70, 0x11, 0x52, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x61, 0x63, 0x63, 0x65, - 0x6e, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x52, 0x63, 0x61, 0x72, - 0x6f, 0x6e, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, 0x53, 0x61, 0x63, 0x75, - 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x53, 0x63, 0x69, 0x72, - 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, - 0x0d, 0x53, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x53, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0b, 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x0c, 0x55, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0a, 0x55, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x73, 0x6d, - 0x63, 0x70, 0x12, 0x55, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, - 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0c, 0x55, 0x6f, - 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x10, 0x57, - 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x10, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, - 0x6c, 0x65, 0x78, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0e, 0x59, 0x64, 0x69, - 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0b, - 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2e, 0x73, 0x6d, 0x63, 0x70, 0x0f, - 0x5a, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0b, 0x5a, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x73, - 0x6d, 0x63, 0x70, 0x0a, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x0c, 0x45, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x08, 0x45, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, - 0x09, 0x49, 0x6f, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x4f, - 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, - 0x55, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, - 0x0a, 0x4f, 0x6d, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x11, - 0x69, 0x6f, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, - 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x05, 0x41, 0x6c, 0x70, 0x68, 0x61, 0x04, - 0x42, 0x65, 0x74, 0x61, 0x07, 0x45, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, - 0x04, 0x5a, 0x65, 0x74, 0x61, 0x03, 0x45, 0x74, 0x61, 0x04, 0x49, 0x6f, - 0x74, 0x61, 0x05, 0x4b, 0x61, 0x70, 0x70, 0x61, 0x02, 0x4d, 0x75, 0x02, - 0x4e, 0x75, 0x07, 0x4f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x03, 0x52, - 0x68, 0x6f, 0x03, 0x54, 0x61, 0x75, 0x07, 0x55, 0x70, 0x73, 0x69, 0x6c, - 0x6f, 0x6e, 0x03, 0x43, 0x68, 0x69, 0x0c, 0x49, 0x6f, 0x74, 0x61, 0x64, - 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x0f, 0x55, 0x70, 0x73, 0x69, - 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x0a, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x0c, 0x65, - 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x08, - 0x65, 0x74, 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x09, 0x69, 0x6f, 0x74, - 0x61, 0x74, 0x6f, 0x6e, 0x6f, 0x73, 0x14, 0x75, 0x70, 0x73, 0x69, 0x6c, - 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x05, 0x6b, 0x61, 0x70, 0x70, 0x61, 0x07, 0x6f, 0x6d, - 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x42, - 0x43, 0x02, 0x6e, 0x75, 0x03, 0x63, 0x68, 0x69, 0x0c, 0x69, 0x6f, 0x74, - 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x0f, 0x75, 0x70, - 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, - 0x73, 0x0c, 0x6f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x0c, 0x75, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x74, 0x6f, - 0x6e, 0x6f, 0x73, 0x0a, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x6e, - 0x6f, 0x73, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x31, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x30, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x36, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x41, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x30, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x30, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x30, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x35, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x31, 0x44, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x31, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x31, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x30, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x32, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x32, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x32, 0x34, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x32, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x33, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x33, 0x35, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x33, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x33, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x30, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x34, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x34, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x34, 0x35, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x35, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x35, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x35, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x38, 0x07, 0x75, - 0x6e, 0x69, 0x30, 0x34, 0x35, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, - 0x35, 0x45, 0x09, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x64, 0x62, 0x6c, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x46, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x46, 0x34, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x30, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x35, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x35, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x37, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x37, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x44, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x45, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x45, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x35, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x41, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x42, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x38, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x45, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x44, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x30, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x39, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x45, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x34, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x35, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x37, - 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x38, 0x07, 0x75, 0x6e, 0x69, - 0x31, 0x45, 0x46, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x41, 0x42, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x41, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x32, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x33, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x41, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x41, 0x44, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x36, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x37, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x46, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x38, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x43, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x33, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x39, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x39, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x38, 0x42, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x41, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x35, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x42, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x42, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x30, 0x34, 0x46, 0x45, 0x07, 0x75, 0x6e, 0x69, - 0x30, 0x34, 0x46, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x35, 0x31, 0x31, - 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x31, 0x35, 0x00, 0x01, 0x00, 0x01, - 0xff, 0xff, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x30, - 0x00, 0x3e, 0x00, 0x04, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x1a, 0x63, 0x79, - 0x72, 0x6c, 0x00, 0x1a, 0x67, 0x72, 0x65, 0x6b, 0x00, 0x1a, 0x6c, 0x61, - 0x74, 0x6e, 0x00, 0x1a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x73, 0x6d, 0x63, 0x70, 0x00, 0x08, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0xbe, 0x00, 0xdc, - 0x02, 0x4f, 0x02, 0x50, 0x02, 0x51, 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, - 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, 0x02, 0x5a, - 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x70, 0x02, 0x5e, 0x02, 0x5f, - 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65, - 0x02, 0x66, 0x02, 0x67, 0x02, 0x4f, 0x02, 0x50, 0x02, 0x51, 0x02, 0x52, - 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, - 0x02, 0x59, 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x70, - 0x02, 0x5e, 0x02, 0x5f, 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, - 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, 0x02, 0x82, 0x02, 0x72, - 0x02, 0x85, 0x02, 0xa0, 0x02, 0x86, 0x02, 0x88, 0x02, 0x84, 0x02, 0x9f, - 0x02, 0xa1, 0x02, 0x89, 0x02, 0x8a, 0x02, 0x87, 0x02, 0xa2, 0x02, 0xa4, - 0x02, 0x8b, 0x02, 0xa3, 0x02, 0xa5, 0x02, 0x81, 0x02, 0x8d, 0x02, 0xa7, - 0x02, 0xaa, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0xa8, 0x02, 0x8c, 0x02, 0xa6, - 0x02, 0xa9, 0x02, 0x82, 0x02, 0xac, 0x02, 0xab, 0x02, 0xad, 0x02, 0xae, - 0x02, 0x91, 0x02, 0xb1, 0x02, 0x92, 0x02, 0x93, 0x02, 0xb3, 0x02, 0x90, - 0x02, 0xb0, 0x02, 0xb2, 0x02, 0xaf, 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, - 0x02, 0xb8, 0x02, 0xb7, 0x02, 0xb9, 0x02, 0xba, 0x02, 0xbc, 0x02, 0xbb, - 0x02, 0x94, 0x02, 0x96, 0x02, 0xbe, 0x02, 0x97, 0x02, 0x99, 0x02, 0x95, - 0x02, 0xbf, 0x02, 0xbd, 0x02, 0x98, 0x02, 0xc0, 0x02, 0xc2, 0x02, 0xc1, - 0x02, 0xc3, 0x02, 0xc6, 0x02, 0xc5, 0x02, 0xc4, 0x02, 0x83, 0x02, 0xc7, - 0x02, 0x9b, 0x02, 0xca, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9a, 0x02, 0xcc, - 0x02, 0xc9, 0x02, 0xcd, 0x02, 0xcb, 0x02, 0xc8, 0x02, 0xce, 0x02, 0x9e, - 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1, 0x02, 0xd3, 0x02, 0xd2, 0x02, 0x85, - 0x02, 0xa0, 0x02, 0x86, 0x02, 0x88, 0x02, 0x84, 0x02, 0x9f, 0x02, 0xa1, - 0x02, 0x89, 0x02, 0x8a, 0x02, 0x87, 0x02, 0xa2, 0x02, 0xa4, 0x02, 0x8b, - 0x02, 0xa3, 0x02, 0xa5, 0x02, 0x81, 0x02, 0x8d, 0x02, 0xa7, 0x02, 0xaa, - 0x02, 0x8e, 0x02, 0x8f, 0x02, 0xa8, 0x02, 0x8c, 0x02, 0xa6, 0x02, 0xa9, - 0x02, 0xac, 0x02, 0xab, 0x02, 0xad, 0x02, 0xae, 0x02, 0x91, 0x02, 0xb1, - 0x02, 0x92, 0x02, 0x93, 0x02, 0x90, 0x02, 0xb0, 0x02, 0xb2, 0x02, 0xaf, - 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb8, 0x02, 0xb7, 0x02, 0xb9, - 0x02, 0xba, 0x02, 0xbc, 0x02, 0xbb, 0x02, 0x94, 0x02, 0x96, 0x02, 0xbe, - 0x02, 0x97, 0x02, 0x99, 0x02, 0x95, 0x02, 0xbf, 0x02, 0xbd, 0x02, 0x98, - 0x02, 0xc0, 0x02, 0xc2, 0x02, 0xc1, 0x02, 0xc3, 0x02, 0xc6, 0x02, 0xc5, - 0x02, 0xc4, 0x02, 0x83, 0x02, 0xc7, 0x02, 0x9b, 0x02, 0xca, 0x02, 0x9c, - 0x02, 0x9d, 0x02, 0x9a, 0x02, 0xcc, 0x02, 0xc9, 0x02, 0xcd, 0x02, 0xcb, - 0x02, 0xc8, 0x02, 0xce, 0x02, 0x9e, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1, - 0x02, 0xd3, 0x02, 0xd2, 0x02, 0x7f, 0x02, 0x7f, 0x00, 0x02, 0x00, 0x1a, - 0x00, 0x02, 0x00, 0x35, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x4c, 0x00, 0x34, - 0x00, 0x50, 0x00, 0x50, 0x00, 0x35, 0x00, 0x9e, 0x00, 0xa7, 0x00, 0x36, - 0x00, 0xa9, 0x00, 0xb6, 0x00, 0x40, 0x00, 0xb8, 0x00, 0xbc, 0x00, 0x4e, - 0x00, 0xbe, 0x00, 0xcd, 0x00, 0x53, 0x00, 0xcf, 0x00, 0xd7, 0x00, 0x63, - 0x00, 0xd9, 0x00, 0xda, 0x00, 0x6c, 0x00, 0xdd, 0x00, 0xeb, 0x00, 0x6e, - 0x00, 0xed, 0x00, 0xf1, 0x00, 0x7d, 0x00, 0xf3, 0x00, 0xf3, 0x00, 0x82, - 0x00, 0xf6, 0x00, 0xf8, 0x00, 0x83, 0x00, 0xfa, 0x01, 0x06, 0x00, 0x86, - 0x01, 0x08, 0x01, 0x15, 0x00, 0x93, 0x01, 0x17, 0x01, 0x1a, 0x00, 0xa1, - 0x01, 0x1c, 0x01, 0x2a, 0x00, 0xa5, 0x01, 0x2c, 0x01, 0x34, 0x00, 0xb4, - 0x01, 0x36, 0x01, 0x37, 0x00, 0xbd, 0x01, 0x3a, 0x01, 0x48, 0x00, 0xbf, - 0x01, 0x4a, 0x01, 0x4e, 0x00, 0xce, 0x01, 0x50, 0x01, 0x50, 0x00, 0xd3, - 0x01, 0x53, 0x01, 0x55, 0x00, 0xd4, 0x01, 0x57, 0x01, 0x59, 0x00, 0xd7, - 0x02, 0x7e, 0x02, 0x7e, 0x00, 0xda, 0x02, 0x80, 0x02, 0x80, 0x00, 0xdb, - 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x14, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x24, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, - 0x01, 0x00, 0x00, 0x00, 0x69, 0x74, 0x61, 0x6c, 0x01, 0x0b, 0x00, 0x01, - 0x00, 0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0c, - 0x00, 0x64, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x01, 0x11, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00 -}; - -SDL_RWops *TTF_RW_roboto_mono_normal() -{ - return SDL_RWFromConstMem(TTF_roboto_mono_normal, sizeof(TTF_roboto_mono_normal)); -} - -SDL_RWops *TTF_RW_roboto_mono_thin() -{ - return SDL_RWFromConstMem(TTF_roboto_mono_thin, sizeof(TTF_roboto_mono_thin)); -} - - diff --git a/phobia/gp/gp.c b/phobia/gp/gp.c deleted file mode 100644 index 384c87d..0000000 --- a/phobia/gp/gp.c +++ /dev/null @@ -1,4766 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#ifdef _WINDOWS -#include -#endif /* _WINDOWS */ - -#include "gp.h" -#include "dirent.h" -#include "draw.h" -#include "edit.h" -#include "lang.h" -#include "menu.h" -#include "plot.h" -#include "read.h" -#include "scheme.h" -#include "svg.h" - -#undef main - -#define GP_FILE_DIR_MAX 4000 - -enum { - GP_TAKE_NONE = 0, - GP_TAKE_PNG, - GP_TAKE_SVG, - GP_TAKE_CSV -}; - -enum { - GP_COMBINE_NONE = 0, - GP_COMBINE_AXES_REMAP, - GP_COMBINE_NO_REMAP -}; - -struct gp_struct { - - scheme_t *sch; - lang_t *la; - - draw_t *dw; - plot_t *pl; - read_t *rd; - menu_t *mu; - edit_t *ed; - - SDL_Window *window; - SDL_Surface *fb; - SDL_Surface *surface; - - int window_ID; - - char sbuf[4][READ_FILE_PATH_MAX]; - - char rcfile[READ_FILE_PATH_MAX]; - char tempfile[READ_FILE_PATH_MAX]; - - int done; - int stat; - - int active; - int unfinished; - int drawn; - - int clock; - int idled; - int updated; - int level; - - int ctrl_on; - int shift_on; - - int i_show_fps; - int i_frames; - int i_clocked; - int i_FPS; - - int fullscreen; - int hinting; - - int cur_X; - int cur_Y; - int box_X; - int box_Y; - int ax_N; - int fig_N; - int data_N; - int grp_N; - int line_N; - - int screen_take; - int screen_yank; - int legend_drag; - int data_box_drag; - int combine_on; - int hover_box; - - int layout_page_box; - int layout_page_title_offset; - int layout_menu_page_margin; - int layout_menu_dir_margin; - int layout_menu_dataset_margin; - int layout_menu_dataset_minimal; - - struct dirent_stat sb; - - char cwd[READ_FILE_PATH_MAX]; - int cwd_ok; - - char d_names[GP_FILE_DIR_MAX][PLOT_STRING_MAX]; - char la_menu[GP_FILE_DIR_MAX * PLOT_STRING_MAX + 1]; -}; - -enum { - GP_IDLE = 0, - GP_MOVING, - GP_RANGE_SELECT, - GP_BOX_SELECT, - GP_MENU, - GP_EDIT, -}; - -#ifndef _EMBED_GP -static void -gpMakeHello(gp_t *gp) -{ - const fval_t omul[] = { - - 21.180, 25.120, 20.298, 42.448, 19.203, 72.868, 18.649, - 106.511, 19.393, 133.510, 22.521, 159.491, 26.570, 178.031, - 30.850, 190.678, 34.669, 198.980, 41.013, 186.502, 45.839, - 176.055, 49.991, 165.249, 54.311, 151.696, 65.768, 151.514, - 77.225, 151.332, 88.682, 151.150, 100.140, 150.968, 101.891, - 159.968, 104.920, 169.501, 110.001, 181.771, 117.909, 198.980, - 125.652, 182.521, 130.473, 168.671, 133.481, 156.518, 135.785, - 145.149, 137.191, 112.465, 136.247, 72.753, 134.526, 39.231, - 133.602, 25.120, 105.497, 25.120, 77.391, 25.120, 49.286, - 25.120, 21.180, 25.120, FP_NAN, FP_NAN, 32.487, 120.416, 41.887, - 125.997, 50.408, 127.691, 58.540, 125.820, 66.771, 120.710, - FP_NAN, FP_NAN, 90.832, 120.397, 100.879, 126.139, 109.671, - 128.016, 117.918, 126.115, 126.329, 120.519, FP_NAN, FP_NAN, - 51.817, 91.523, 66.133, 83.048, 79.760, 81.249, 92.873, 84.769, - 105.648, 92.251, FP_NAN, FP_NAN, 36.994, 25.848, 43.501, 32.639, - 50.371, 35.609, 58.851, 33.517, 70.189, 25.120, FP_NAN, FP_NAN, - 85.189, 25.120, 92.850, 33.737, 101.987, 36.883, 111.918, - 34.147, 121.963, 25.120, FP_NAN, FP_NAN, 134.434, 40.169, - 135.268, 39.659, 139.077, 39.450, 147.824, 41.521, 163.470, - 47.850, 175.241, 59.465, 176.895, 75.080, 177.196, 93.201, - 184.908, 112.335, 189.761, 118.670, 193.306, 123.087, 195.480, - 125.673, 196.219, 126.515, 196.803, 130.617, 194.349, 133.181, - 190.339, 133.762, 186.259, 131.917, 182.574, 127.680, 177.766, - 121.809, 172.436, 114.071, 167.183, 104.232, 164.575, 91.517, - 165.070, 78.686, 164.466, 67.214, 158.560, 58.576, 151.353, - 55.039, 143.859, 52.910, 137.973, 51.867, 135.590, 51.590, - FP_NAN, FP_NAN, -55.581, 25.377 - }; - - const int lN = sizeof(omul) / sizeof(omul[0]) / 2; - - int N, dN = 0, pN = 1; - - plotDataAlloc(gp->pl, dN, 2, lN + 1); - - for (N = 0; N < lN; ++N) { - - plotDataInsert(gp->pl, dN, omul + gp->pl->data[dN].column_N * N); - } - - gp->rd->data[dN].format = FORMAT_PLAIN_TEXT; - gp->rd->data[dN].column_N = 2; - gp->rd->data[dN].file[0] = 0; - gp->rd->files_N = 1; - gp->rd->bind_N = dN; - - gp->rd->page_N = pN; - gp->rd->figure_N = -1; - - gp->rd->page[pN].busy = 1; - - strcpy(gp->rd->page[pN].title, "Hello, I am Omul"); - strcpy(gp->rd->page[pN].fig[0].label, "Omul"); - - gp->rd->page[pN].fig[0].busy = 1; - gp->rd->page[pN].fig[0].drawing = FIGURE_DRAWING_LINE; - gp->rd->page[pN].fig[0].width = 6; - gp->rd->page[pN].fig[0].dN = dN; - gp->rd->page[pN].fig[0].cX = 0; - gp->rd->page[pN].fig[0].cY = 1; - gp->rd->page[pN].fig[0].aX = 0; - gp->rd->page[pN].fig[0].aY = 1; -} -#endif /* _EMBED_GP */ - -static void -gpFileGetPath(gp_t *gp) -{ - char *home; - -#ifdef _WINDOWS - home = getenv("APPDATA"); - - if (home != NULL) { - - legacy_ACP_to_UTF8(gp->rcfile, home, READ_FILE_PATH_MAX); - strcat(gp->rcfile, "/_gprc"); - } -#else /* _WINDOWS */ - - home = getenv("HOME"); - - if (home != NULL) { - - strcpy(gp->rcfile, home); - strcat(gp->rcfile, "/.gprc"); - } -#endif -} - -static void -gpFileGetLocal(gp_t *gp) -{ -#ifdef _WINDOWS - strcpy(gp->rcfile, "_gprc"); -#else /* _WINDOWS */ - strcpy(gp->rcfile, ".gprc"); -#endif -} - -static void -gpDefaultFile(gp_t *gp) -{ - FILE *fd; - - fd = unified_fopen(gp->rcfile, "w"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", gp->rcfile, strerror(errno)); - } - else { - fprintf(fd, "gpconfig %i\n", GP_CONFIG_VERSION); - - fprintf(fd, "font 24 \"normal\"\n" - "preload 8388608\n" - "chunk 4096\n" - "timeout 5000\n" - "windowsize 1200 900\n" - "language 0\n" - "colorscheme 0\n" - "antialiasing 1\n" - "blendfont 1\n" - "thickness 1\n" - "gamma 50\n" - "drawing line 2\n" - "marker 40\n" - "density 40\n" - "transparency 1\n" - "precision 9\n" - "timecol -1\n" - "shortfilename 1\n" - "fastdraw 200\n" - "interpolation 1\n" - "defungap 10\n" - "lz4_compress 1\n"); - -#ifdef _WINDOWS - fprintf(fd, "legacy_label 1\n"); -#endif /* _WINDOWS */ - - fclose(fd); - } -} - -static void -gpWriteFile(gp_t *gp) -{ - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - - const char *ttfname, *drawing; - FILE *fd; - - fd = unified_fopen(gp->rcfile, "w"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", gp->rcfile, strerror(errno)); - } - else { - fprintf(fd, "gpconfig %i\n", GP_CONFIG_VERSION); - - ttfname = (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_NORMAL) ? "normal" - : (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_THIN) ? "thin" : rd->ttfname; - - fprintf(fd, "font %i \"%s\"\n", pl->layout_font_pt, ttfname); - fprintf(fd, "preload %i\n", rd->preload); - fprintf(fd, "chunk %i\n", rd->chunk); - fprintf(fd, "timeout %i\n", rd->timeout); - - SDL_GetWindowSize(gp->window, &rd->window_size_x, &rd->window_size_y); - - fprintf(fd, "windowsize %i %i\n", rd->window_size_x, rd->window_size_y); - fprintf(fd, "language %i\n", rd->language); - fprintf(fd, "colorscheme %i\n", rd->colorscheme); - fprintf(fd, "antialiasing %i\n", dw->antialiasing); - fprintf(fd, "blendfont %i\n", dw->blendfont); - fprintf(fd, "thickness %i\n", dw->thickness); - fprintf(fd, "gamma %i\n", dw->gamma); - - drawing = (pl->default_drawing == FIGURE_DRAWING_LINE) ? "line" - : (pl->default_drawing == FIGURE_DRAWING_DASH) ? "dash" - : (pl->default_drawing == FIGURE_DRAWING_DOT) ? "dot" : "unknown"; - - fprintf(fd, "drawing %s %i\n", drawing, pl->default_width); - fprintf(fd, "marker %i\n", pl->mark_size); - fprintf(fd, "density %i\n", pl->mark_density); - fprintf(fd, "transparency %i\n", pl->transparency); - fprintf(fd, "precision %i\n", pl->fprecision); - fprintf(fd, "timecol %i\n", rd->timecol); - fprintf(fd, "shortfilename %i\n", rd->shortfilename); - fprintf(fd, "fastdraw %i\n", rd->fastdraw); - fprintf(fd, "interpolation %i\n", pl->interpolation); - fprintf(fd, "defungap %i\n", pl->defungap); - fprintf(fd, "lz4_compress %i\n", pl->lz4_compress); - -#ifdef _WINDOWS - fprintf(fd, "legacy_label %i\n", rd->legacy_label); -#endif /* _WINDOWS */ - - fclose(fd); - } -} - -static int -gpFileExist(const char *file) -{ - unsigned long long nsize; - - return (file_stat(file, &nsize) == ENT_OK) ? 1 : 0; -} - -static int -gpScreenLength(plot_t *pl) -{ - return pl->screen.max_x / pl->layout_font_long; -} - -static void -gpTextLeftCrop(plot_t *pl, char *sbuf, const char *text, int margin) -{ - int length, allowed; - - allowed = gpScreenLength(pl) - margin; - length = utf8_length(text); - - if (length > (allowed - 1)) { - - text = utf8_skip(text, length - (allowed - 1)); - - strcpy(sbuf, "~"); - strcat(sbuf, text); - } - else { - strcpy(sbuf, text); - } -} - -static void -gpTextSepFill(char *sbuf, int len) -{ - memset(sbuf, '-', len); - sbuf[len] = 0; -} - -static void -gpTextFloat(plot_t *pl, char *sbuf, double val) -{ - char sfmt[PLOT_STRING_MAX]; - int fexp = 1; - - if (val != 0.) { - - fexp += (int) floor(log10(fabs(val))); - } - - if (fexp >= -2 && fexp < pl->fprecision) { - - fexp = (fexp < 1) ? 1 : fexp; - - sprintf(sfmt, "%%.%df", pl->fprecision - fexp); - } - else { - sprintf(sfmt, "%%.%dE", pl->fprecision - 1); - } - - sprintf(sbuf, sfmt, val); -} - -static void -gpScreenLayout(gp_t *gp) -{ - plot_t *pl = gp->pl; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - mu->screen.min_x = 0; - mu->screen.max_x = gp->surface->w - 1; - mu->screen.min_y = 0; - mu->screen.max_y = gp->surface->h - 1; - - ed->screen.min_x = 0; - ed->screen.max_x = gp->surface->w - 1; - ed->screen.min_y = 0; - ed->screen.max_y = gp->surface->h - 1; - - pl->screen.min_x = 0; - pl->screen.max_x = gp->surface->w - 1; - pl->screen.min_y = gp->layout_page_box; - pl->screen.max_y = gp->surface->h - 1; - - menuLayout(mu); - editLayout(ed); -} - -static void -gpFontLayout(gp_t *gp) -{ - plot_t *pl = gp->pl; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - mu->font = pl->font; - mu->layout_height = pl->layout_font_height; - - ed->font = pl->font; - ed->layout_height = pl->layout_font_height; - ed->layout_long = pl->layout_font_long; - - gp->layout_page_box = pl->layout_font_height; - gp->layout_page_title_offset = - pl->layout_font_height / 2; - gp->layout_menu_page_margin = 8; - gp->layout_menu_dir_margin = 36; - gp->layout_menu_dataset_margin = 16; - gp->layout_menu_dataset_minimal = 42; -} - -static void -gpFontHinting(gp_t *gp) -{ - plot_t *pl = gp->pl; - - if (gp->hinting == 0) { - - TTF_SetFontHinting(pl->font, TTF_HINTING_NONE); - } - else if (gp->hinting == 1) { - - TTF_SetFontHinting(pl->font, TTF_HINTING_LIGHT); - } - else if (gp->hinting == 2) { - - TTF_SetFontHinting(pl->font, TTF_HINTING_NORMAL); - } -} - -static void -gpFontToggle(gp_t *gp, int toggle, int font_pt) -{ - plot_t *pl = gp->pl; - int style; - - if (toggle != 0) { - - pl->layout_font_ttf = (pl->layout_font_ttf != TTF_ID_ROBOTO_MONO_NORMAL) - ? TTF_ID_ROBOTO_MONO_NORMAL : TTF_ID_ROBOTO_MONO_THIN; - } - - font_pt = (font_pt == 0) ? pl->layout_font_pt - : (font_pt < 8) ? 8 : (font_pt > 92) ? 92 : font_pt; - - style = TTF_STYLE_NORMAL; - - style |= (gp->ctrl_on == 1) ? TTF_STYLE_BOLD : 0; - style |= (gp->shift_on == 1) ? TTF_STYLE_ITALIC : 0; - - plotFontDefault(pl, pl->layout_font_ttf, font_pt, style); - - gpFontHinting(gp); - - gpFontLayout(gp); - gpScreenLayout(gp); -} - -static void -gpMakePageMenu(gp_t *gp) -{ - read_t *rd = gp->rd; - char *la = gp->la_menu; - int pN = 0; - - do { - if (rd->page[pN].busy != 0) { - - gpTextLeftCrop(gp->pl, gp->sbuf[1], rd->page[pN].title, - gp->layout_menu_page_margin); - - sprintf(gp->sbuf[0], "%3d %s", pN, gp->sbuf[1]); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - } - - pN += 1; - - if (pN >= READ_PAGE_MAX) - break; - } - while (1); - - *la = 0; -} - -static int -gpFileIsGP(gp_t *gp, const char *file) -{ - int rc = 0; - - if (strlen(file) > 3) { - - file += strlen(file) - 3; - - rc = (strcmp(file, ".gp") == 0 || strcmp(file, ".GP") == 0) ? 1 : 0; - } - - return rc; -} - -#ifdef _LEGACY -static int -legacy_FileIsBAT(gp_t *gp, const char *file) -{ - int rc = 0; - - if (strlen(file) > 4) { - - file += strlen(file) - 4; - - rc = (strcmp(file, ".bat") == 0 || strcmp(file, ".BAT") == 0) ? 1 : 0; - } - - return rc; -} - -static char * -legacy_DirName(char *path) -{ - char *eol; - - eol = path + strlen(path) - 1; - - do { - if (*eol == '/' || *eol == '\\') - break; - - if (path == eol) - break; - - eol--; - } - while (1); - - if (eol != path) { - - *eol = 0; - } - else { - path = NULL; - } - - return path; -} - -static void -legacy_FileOpenBAT(gp_t *gp, const char *file, int fromUI) -{ - FILE *fd; - char *s, *path, *argv[2]; - int line_N = 0; - - fd = unified_fopen(file, "r"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - } - else { - do { - if ((s = fgets(gp->sbuf[0], sizeof(gp->sbuf[0]), fd)) == NULL) - break; - - s = strtok(s, " \t"); - - if (s != NULL && (strcmp(s, "grm") == 0 || strcmp(s, "GRM") == 0)) { - - if ((argv[0] = strtok(NULL, " \t")) != NULL) { - - if ((argv[1] = strtok(NULL, " \t\r\n")) != NULL) { - - strcpy(gp->sbuf[1], file); - path = legacy_DirName(gp->sbuf[1]); - - legacy_ConfigGRM(gp->rd, path, argv[0], argv[1], fromUI); - break; - } - } - } - - line_N++; - - if (line_N >= 10) - break; - } - while (1); - - fclose(fd); - } -} -#endif /* _LEGACY */ - -static void -gpUnifiedFileOpen(gp_t *gp, const char *file, int fromUI) -{ - read_t *rd = gp->rd; - - if (gpFileIsGP(gp, file) != 0) { - - readConfigGP(rd, file, fromUI); - } - -#ifdef _LEGACY - else if (legacy_FileIsBAT(gp, file) != 0) { - - legacy_FileOpenBAT(gp, file, fromUI); - } -#endif /* _LEGACY */ - - else { - sprintf(gp->sbuf[0], "load 0 0 text \"%s\"\n" - "mkpages -2\n", file); - - readConfigIN(rd, gp->sbuf[0], fromUI); - } -} - -static int -gpDirWalk(gp_t *gp, int dir_N, int revert); - -static void -gpMakeDirMenu(gp_t *gp) -{ - char sfmt[PLOT_STRING_MAX]; - char *la = gp->la_menu; - int len, pad, N, kmg; - - len = gpScreenLength(gp->pl) - gp->layout_menu_dir_margin; - - if (dirent_open(&gp->sb, gp->cwd) == ENT_OK) { - - gp->cwd_ok = 1; - } - else { - gpDirWalk(gp, 2, 1); - - gp->cwd_ok = (dirent_open(&gp->sb, gp->cwd) == ENT_OK) ? 1 : 0; - } - - gpTextLeftCrop(gp->pl, gp->sbuf[1], gp->cwd, gp->layout_menu_dir_margin); - - sprintf(gp->sbuf[0], "[%s]", gp->sbuf[1]); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - gpTextSepFill(gp->sbuf[0], len + 26); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - strcpy(la, "/.."); - la += strlen(la) + 1; - - strcpy(gp->d_names[0], "/.."); - N = 1; - - if (gp->cwd_ok != 0) { - - while (dirent_read(&gp->sb) == ENT_OK) { - - if (gp->sb.ntype == ENT_TYPE_DIRECTORY) { - - if ( strcmp(gp->sb.name, ".") == 0 - || strcmp(gp->sb.name, "..") == 0) { - - continue; - } - - if (N >= GP_FILE_DIR_MAX) - break; - - sprintf(gp->sbuf[0], "/%s", gp->sb.name); - - if (strlen(gp->sbuf[0]) < PLOT_STRING_MAX) { - - strcpy(gp->d_names[N], gp->sbuf[0]); - - gpTextLeftCrop(gp->pl, gp->sbuf[1], gp->sb.name, - gp->layout_menu_dir_margin); - - pad = len - utf8_length(gp->sbuf[1]); - - sprintf(sfmt, "/%%s%%%ds %%16s", pad); - sprintf(gp->sbuf[0], sfmt, gp->sbuf[1], - "", gp->sb.time); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - N++; - } - } - } - - dirent_rewind(&gp->sb); - - while (dirent_read(&gp->sb) == ENT_OK) { - - if (gp->sb.ntype == ENT_TYPE_REGULAR) { - - if (N >= GP_FILE_DIR_MAX) - break; - - sprintf(gp->sbuf[0], "%s", gp->sb.name); - - if (strlen(gp->sbuf[0]) < PLOT_STRING_MAX) { - - strcpy(gp->d_names[N], gp->sbuf[0]); - - sprintf(gp->sbuf[0], "%s/%s", gp->cwd, gp->sb.name); - - kmg = 0; - - while (gp->sb.nsize >= 1024U) { - - gp->sb.nsize /= 1024U; - ++kmg; - } - - gpTextLeftCrop(gp->pl, gp->sbuf[1], gp->sb.name, - gp->layout_menu_dir_margin); - - pad = len - utf8_length(gp->sbuf[1]); - - sprintf(sfmt, " %%s%%%ds %%16s %%4d %%cb", pad); - sprintf(gp->sbuf[0], sfmt, gp->sbuf[1], "", - gp->sb.time, (int) gp->sb.nsize, - " KMG??" [kmg]); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - N++; - } - } - } - - dirent_close(&gp->sb); - } - - *la = 0; -} - -static int -gpDirWalk(gp_t *gp, int dir_N, int revert) -{ - const char *file = gp->d_names[dir_N - 2]; - char *eol; - int walk = 0; - - if (dir_N == 0) { - - editRaise(gp->ed, 9, gp->la->file_name_edit, - gp->cwd, gp->mu->box_X, gp->mu->box_Y); - - gp->stat = GP_EDIT; - } - else if (dir_N == 1) { - - walk = 2; - } - else if (dir_N == 2) { - - if (gp->cwd[0] != 0 && gp->cwd_ok != 0) { - - eol = gp->cwd + strlen(gp->cwd) - 1; - - do { - if (*eol == '/' || *eol == '\\') - break; - - if (gp->cwd == eol) - break; - - eol--; - } - while (1); - - if ((*eol == '/' || *eol == '\\') && strcmp(eol, "/..") != 0) { - - if (gp->cwd == eol) { - - *(eol + 1) = 0; - } - else { - *eol = 0; - } - } - else if (gp->cwd[0] == '.' && revert == 0) { - - if (gp->cwd[0] != 0) { - - eol = gp->cwd + strlen(gp->cwd) - 1; - - if (*eol == '/' || *eol == '\\') - *eol = 0; - } - - strcat(gp->cwd, file); - } - } - else { - if (revert == 0) { - - strcpy(gp->cwd, "."); - } - } - - walk = 1; - } - else { - if (file[0] == '/') { - - if (gp->cwd[0] != 0) { - - eol = gp->cwd + strlen(gp->cwd) - 1; - - if (*eol == '/' || *eol == '\\') - *eol = 0; - } - - strcat(gp->cwd, file); - - walk = 1; - } - else { - sprintf(gp->tempfile, "%s/%s", gp->cwd, file); - - gpUnifiedFileOpen(gp, gp->tempfile, 1); - - walk = 3; - } - } - - return walk; -} - -static void -gpInsertColumn(gp_t *gp, char **la, int dN, int cN) -{ - read_t *rd = gp->rd; - - sprintf(gp->sbuf[0], "[%3i] %.75s", cN, rd->data[dN].label[cN]); - - if (rd->data[dN].hint[cN] == DATA_HINT_FLOAT) { - - strcat(gp->sbuf[0], " (DEC)"); - } - else if (rd->data[dN].hint[cN] == DATA_HINT_HEX) { - - strcat(gp->sbuf[0], " (HEX)"); - } - else if (rd->data[dN].hint[cN] == DATA_HINT_OCT) { - - strcat(gp->sbuf[0], " (OCT)"); - } - else { - strcat(gp->sbuf[0], " "); - } - - strcpy(*la, gp->sbuf[0]); - *la += strlen(*la) + 1; -} - -static void -gpInsertDataset(gp_t *gp, char **la, int dN) -{ - read_t *rd = gp->rd; - char *file, *sformat; - - file = rd->data[dN].file; - file = (file[0] == '.' && file[1] == '/') - ? file + 2 : file; - - gpTextLeftCrop(gp->pl, gp->sbuf[1], file, gp->layout_menu_dataset_margin); - - if (rd->data[dN].format == FORMAT_NONE) { - - sformat = "NONE "; - } - else if (rd->data[dN].format == FORMAT_PLAIN_STDIN) { - - sformat = "STDIN "; - } - else if (rd->data[dN].format == FORMAT_PLAIN_TEXT) { - - sformat = "TEXT "; - } - else if (rd->data[dN].format == FORMAT_BINARY_FLOAT) { - - sformat = "FLOAT "; - } - else if (rd->data[dN].format == FORMAT_BINARY_DOUBLE) { - - sformat = "DOUBLE"; - } - else { - sformat = "LEGACY"; - } - - sprintf(gp->sbuf[0], "[%2i] %6s %s", dN, sformat, gp->sbuf[1]); - - strcpy(*la, gp->sbuf[0]); - *la += strlen(*la) + 1; -} - -static void -gpMakeColumnSelectMenu(gp_t *gp, int dN) -{ - read_t *rd = gp->rd; - char *la = gp->la_menu; - int sN, cN = 0; - - sprintf(gp->sbuf[0], "[%3i] ", -1); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - while (cN < (rd->data[dN].column_N + PLOT_SUBTRACT)) { - - if (cN < rd->data[dN].column_N) { - - gpInsertColumn(gp, &la, dN, cN); - } - else { - sN = cN - rd->data[dN].column_N; - - sprintf(gp->sbuf[0], "[%3i] %c ", cN, - " TFSEPRAXHDCBLM?" [gp->pl->data[dN].sub[sN].busy]); - - if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_TIME_MEDIAN) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i, %i)", - gp->pl->data[dN].sub[sN].op.median.column_1, - gp->pl->data[dN].sub[sN].op.median.length, - gp->pl->data[dN].sub[sN].op.median.unwrap); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_DATA_MEDIAN) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i)", - gp->pl->data[dN].sub[sN].op.median.column_1, - gp->pl->data[dN].sub[sN].op.median.column_2); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_SCALE) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %.2E, %.2E)", - gp->pl->data[dN].sub[sN].op.scale.column_1, - gp->pl->data[dN].sub[sN].op.scale.scale, - gp->pl->data[dN].sub[sN].op.scale.offset); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_RESAMPLE) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i) (%i, %i, %i)", - gp->pl->data[dN].sub[sN].op.resample.column_X, - gp->pl->data[dN].sub[sN].op.resample.in_data_N, - gp->pl->data[dN].sub[sN].op.resample.in_column_X, - gp->pl->data[dN].sub[sN].op.resample.in_column_Y); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_POLYFIT) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i, %i)", - gp->pl->data[dN].sub[sN].op.polyfit.column_X, - gp->pl->data[dN].sub[sN].op.polyfit.column_Y, - gp->pl->data[dN].sub[sN].op.polyfit.poly_N1); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_SUBTRACTION - || gp->pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_ADDITION - || gp->pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_MULTIPLICATION - || gp->pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_HYPOTENUSE) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i)", - gp->pl->data[dN].sub[sN].op.binary.column_1, - gp->pl->data[dN].sub[sN].op.binary.column_2); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_DIFFERENCE - || gp->pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_CUMULATIVE) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i)", - gp->pl->data[dN].sub[sN].op.filter.column_1); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_BITMASK) { - - int bf[2] = { 0, (int) gp->pl->data[dN].sub[sN].op.filter.gain }; - - bf[0] = bf[1] & 0xFFU; - bf[1] = bf[1] >> 8; - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i, %i)", - gp->pl->data[dN].sub[sN].op.filter.column_1, - (int) bf[0], (int) bf[1]); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_LOW_PASS) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %.2E)", - gp->pl->data[dN].sub[sN].op.filter.column_1, - gp->pl->data[dN].sub[sN].op.filter.gain); - } - else if (gp->pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_MEDIAN) { - - sprintf(gp->sbuf[0] + strlen(gp->sbuf[0]), "(%i, %i)", - gp->pl->data[dN].sub[sN].op.median.column_1, - (int) gp->pl->data[dN].sub[sN].op.median.length); - } - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - } - - cN += 1; - } - - *la = 0; -} - -static void -gpMakeDatasetSelectMenu(gp_t *gp) -{ - char *la = gp->la_menu; - int dN = 0, len, fnlen, fnlen_max; - - len = gpScreenLength(gp->pl) - gp->layout_menu_dataset_margin; - len = (len < gp->layout_menu_dataset_minimal) - ? gp->layout_menu_dataset_minimal : len; - - fnlen_max = 0; - - do { - gpInsertDataset(gp, &la, dN); - - fnlen = utf8_length(gp->sbuf[0]); - fnlen_max = (fnlen_max < fnlen) ? fnlen : fnlen_max; - - dN += 1; - - if (dN > (PLOT_DATASET_MAX - 1)) - break; - } - while (1); - - gpTextSepFill(gp->sbuf[1], (fnlen_max > len) ? fnlen_max : len); - - strcpy(la, gp->sbuf[1]); - la += strlen(la) + 1; - - *la = 0; -} - -static void -gpMakeDatasetMenu(gp_t *gp) -{ - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - char *la = gp->la_menu; - int N, cN, gN, dN, len, fnlen, unwrap, opdata; - int mbUSAGE, mbRAW, mbCACHE, lzPC; - - len = gpScreenLength(gp->pl) - gp->layout_menu_dataset_margin; - len = (len < gp->layout_menu_dataset_minimal) - ? gp->layout_menu_dataset_minimal : len; - - if (len < 42) { - - len = 42; - } - - dN = gp->data_N; - - if (rd->data[dN].format == FORMAT_NONE) { - - for (N = 0; N < PLOT_DATASET_MAX; ++N) { - - if (rd->data[N].format != FORMAT_NONE) { - - dN = N; - break; - } - } - - gp->data_N = dN; - } - - gpInsertDataset(gp, &la, dN); - - fnlen = utf8_length(gp->sbuf[0]); - - gpTextSepFill(gp->sbuf[1], (fnlen > len) ? fnlen : len); - - strcpy(la, gp->sbuf[1]); - la += strlen(la) + 1; - - cN = readGetTimeColumn(rd, dN); - - sprintf(gp->sbuf[0], gp->la->dataset_menu[0], cN); - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - strcpy(gp->sbuf[2], " "); - strcpy(gp->sbuf[3], " "); - - unwrap = 0; - opdata = 0; - - if (cN >= -1 && pl->data[dN].map != NULL) { - - gN = pl->data[dN].map[cN]; - - if (gN >= 0 && gN < PLOT_GROUP_MAX) { - - if (pl->group[gN].op_time_median != 0) { - - sprintf(gp->sbuf[2], "%3i", pl->group[gN].length); - - unwrap = pl->group[gN].op_time_unwrap; - opdata = pl->group[gN].op_time_opdata; - } - - if (pl->group[gN].op_scale != 0) { - - gpTextFloat(pl, gp->sbuf[3], pl->group[gN].scale); - gpTextFloat(pl, gp->sbuf[0], pl->group[gN].offset); - - strcat(gp->sbuf[3], " "); - strcat(gp->sbuf[3], gp->sbuf[0]); - } - } - } - - sprintf(gp->sbuf[0], gp->la->dataset_menu[1], gp->sbuf[2]); - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - sprintf(gp->sbuf[0], gp->la->dataset_menu[2], (unwrap != 0) ? " X " : " "); - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - sprintf(gp->sbuf[0], gp->la->dataset_menu[3], (opdata != 0) ? " X " : " "); - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - sprintf(gp->sbuf[0], gp->la->dataset_menu[4], gp->sbuf[3]); - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - mbUSAGE = plotDataMemoryUsage(pl, dN) / 1048576UL; - mbRAW = plotDataMemoryUncompressed(pl, dN) / 1048576UL; - mbCACHE = plotDataMemoryCached(pl, dN) / 1048576UL; - - lzPC = (mbRAW != 0) ? 100U * mbUSAGE / mbRAW : 0; - - sprintf(gp->sbuf[0], gp->la->dataset_menu[5], - rd->data[dN].length_N, mbUSAGE, lzPC, mbCACHE); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - strcpy(la, gp->la->dataset_menu[6]); - la += strlen(la) + 1; - - strcpy(la, gp->sbuf[1]); - la += strlen(la) + 1; - - cN = 0; - - while (cN < rd->data[dN].column_N) { - - gpInsertColumn(gp, &la, dN, cN); - - cN += 1; - } - - *la = 0; -} - -static void -gpMakeConfigurationMenu(gp_t *gp) -{ - read_t *rd = gp->rd; - char *eol, *la = gp->la_menu; - FILE *fd; - int line_N; - - fd = unified_fopen(gp->rcfile, "r"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", gp->rcfile, strerror(errno)); - } - else { - gpTextLeftCrop(gp->pl, gp->sbuf[1], gp->rcfile, gp->layout_menu_page_margin); - - sprintf(gp->sbuf[0], "[%s]", gp->sbuf[1]); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - gpTextSepFill(gp->sbuf[1], utf8_length(gp->sbuf[0])); - - strcpy(la, gp->sbuf[1]); - la += strlen(la) + 1; - - line_N = 0; - - while (fgets(gp->sbuf[0], sizeof(gp->sbuf[0]), fd) != NULL) { - - eol = gp->sbuf[0] + strlen(gp->sbuf[0]) - 1; - - while ( eol != gp->sbuf[0] - && strchr(rd->mk_config.lend, *eol) != 0) { - - *eol = 0; - --eol; - } - - if (strlen(gp->sbuf[0]) != 0) { - - strcpy(gp->d_names[line_N], gp->sbuf[0]); - sprintf(gp->sbuf[1], " %s", gp->sbuf[0]); - - strcpy(la, gp->sbuf[1]); - la += strlen(la) + 1; - - line_N++; - - if (line_N >= GP_FILE_DIR_MAX - 2) - break; - } - } - - gp->d_names[line_N][0] = 0; - - strcpy(la, " ..."); - la += strlen(la) + 1; - - line_N++; - gp->d_names[line_N][0] = 0; - - line_N++; - gp->d_names[line_N][0] = 0; - - fclose(fd); - } - - *la = 0; -} - -static void -gpWriteNewConfiguration(gp_t *gp) -{ - FILE *fd; - int line_N; - - fd = unified_fopen(gp->rcfile, "w"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", gp->rcfile, strerror(errno)); - } - else { - line_N = 0; - - do { - if (gp->d_names[line_N][0] != 0) { - - fprintf(fd, "%s\n", gp->d_names[line_N]); - } - else if (gp->d_names[line_N + 1][0] == 0) - break; - - line_N++; - - if (line_N >= GP_FILE_DIR_MAX) - break; - } - while (1); - - fclose(fd); - } -} - -static void -gpMakeAboutMenu(gp_t *gp) -{ - char *la = gp->la_menu; - - strcpy(la, "Graph Plotter is a tool to analyse numerical data"); - la += strlen(la) + 1; - - gpTextSepFill(gp->sbuf[0], 54); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - strcpy(la, "License: GPLv3"); - la += strlen(la) + 1; - - strcpy(la, "Build: " __DATE__); - la += strlen(la) + 1; - - sprintf(la, "SDL: %d.%d.%d", SDL_MAJOR_VERSION, - SDL_MINOR_VERSION, SDL_PATCHLEVEL); - la += strlen(la) + 1; - - sprintf(la, "SDL_ttf: %d.%d.%d", SDL_TTF_MAJOR_VERSION, - SDL_TTF_MINOR_VERSION, SDL_TTF_PATCHLEVEL); - la += strlen(la) + 1; - - sprintf(la, "SDL_image: %d.%d.%d", SDL_IMAGE_MAJOR_VERSION, - SDL_IMAGE_MINOR_VERSION, SDL_IMAGE_PATCHLEVEL); - la += strlen(la) + 1; - - gpTextSepFill(gp->sbuf[0], 54); - - strcpy(la, gp->sbuf[0]); - la += strlen(la) + 1; - - strcpy(la, "* https://sourceforge.net/projects/graph-plotter"); - la += strlen(la) + 1; - - strcpy(la, "* https://github.com/rombrew/gp"); - la += strlen(la) + 1; - - *la = 0; -} - -static void -gpTakeScreen(gp_t *gp) -{ - if (gp->screen_take == GP_TAKE_PNG) { - - if (IMG_SavePNG(gp->surface, gp->tempfile) == 0) { - - ERROR("Screen was saved to \"%s\"\n", gp->tempfile); - } - } - else if (gp->screen_take == GP_TAKE_SVG) { - - svgClose((svg_t *) gp->surface->userdata); - gp->surface->userdata = NULL; - - ERROR("Figure was saved to \"%s\"\n", gp->tempfile); - } - else if (gp->screen_take == GP_TAKE_CSV) { - - plotFigureExportCSV(gp->pl, gp->tempfile); - - ERROR("CSV table was saved to \"%s\"\n", gp->tempfile); - } - - gp->screen_take = GP_TAKE_NONE; -} - -#ifdef _WINDOWS -static void -legacy_SetClipboard(SDL_Surface *surface) -{ - long length; - void *mBMP; - - SDL_RWops *rwops; - HGLOBAL hDIB; - - length = surface->pitch * surface->h + 1048576UL; - mBMP = malloc(length); - - if (mBMP == NULL) { - - ERROR("Unable to allocate BMP memory\n"); - return ; - } - - rwops = SDL_RWFromMem(mBMP, length); - SDL_SaveBMP_RW(surface, rwops, 0); - - SDL_RWseek(rwops, 0UL, RW_SEEK_END); - length = SDL_RWtell(rwops); - - SDL_RWclose(rwops); - - length -= sizeof(BITMAPFILEHEADER); - hDIB = GlobalAlloc(GMEM_MOVEABLE, length); - - memcpy(GlobalLock(hDIB), (const char *) mBMP - + sizeof(BITMAPFILEHEADER), length); - GlobalUnlock(hDIB); - - free(mBMP); - - if (OpenClipboard(NULL) != 0) { - - EmptyClipboard(); - SetClipboardData(CF_DIB, hDIB); - CloseClipboard(); - } - else { - GlobalFree(hDIB); - } -} -#endif /* _WINDOWS */ - -static void -gpYankScreen(gp_t *gp) -{ - if (gp->screen_yank == 1) { - -#ifdef _WINDOWS - legacy_SetClipboard(gp->surface); -#endif /* _WINDOWS */ - } - - gp->screen_yank = 0; -} - - -static void -gpMenuHandle(gp_t *gp, int menu_N, int item_N) -{ - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - int N; - - if (menu_N == 1) { - - switch (item_N) { - - case 0: - menuRaise(mu, 101, gp->la->global_zoom_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 1: - editRaise(ed, 1, gp->la->page_label_edit, - rd->page[rd->page_N].title, - mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 2: - sprintf(gp->sbuf[0], "%s/g%if%i.png", rd->screenpath, - rd->page_N, gp->pl->legend_N); - - N = 1; - - while (gpFileExist(gp->sbuf[0]) != 0) { - - if (N >= 100) { - - ERROR("Failed to find free file name\n"); - break; - } - - sprintf(gp->sbuf[0], "%s/g%if%i_%i.png", rd->screenpath, - rd->page_N, gp->pl->legend_N, N); - - N++; - } - - editRaise(ed, 7, gp->la->file_name_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - ed->list_fmt = ".png\0" ".svg\0" ".csv\0"; - - gp->stat = GP_EDIT; - break; - - case 3: - if (gp->fullscreen) { - - SDL_SetWindowFullscreen(gp->window, SDL_WINDOW_RESIZABLE); - gp->fullscreen = 0; - } - else { - SDL_SetWindowFullscreen(gp->window, SDL_WINDOW_FULLSCREEN_DESKTOP); - gp->fullscreen = 1; - } - break; - - case 4: - menuRaise(mu, 103, gp->la->global_appearance_menu, - mu->box_X, mu->box_Y); - - mu->mark[0].N = 0; - mu->mark[0].subs = (rd->colorscheme == 0) ? "Dark " - : (rd->colorscheme == 1) ? "Light " : "Graysca"; - - mu->mark[1].N = 1; - mu->mark[1].subs = (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_NORMAL) ? "Normal " - : (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_THIN) ? "Thin " : " "; - - mu->mark[2].N = 2; - mu->mark[2].subs = (dw->antialiasing == DRAW_4X_MSAA) ? "4x MSAA" - : (dw->antialiasing == DRAW_8X_MSAA) ? "8x MSAA" : "Solid "; - - mu->mark[3].N = 3; - mu->mark[3].subs = (dw->blendfont != 0) ? "Blended" : "Solid "; - - sprintf(gp->sbuf[3], "%i ", dw->thickness); - - mu->mark[4].N = 4; - mu->mark[4].subs = gp->sbuf[3]; - - sprintf(gp->sbuf[2], "%2i ", pl->layout_font_pt); - - mu->mark[5].N = 5; - mu->mark[5].subs = gp->sbuf[2]; - - sprintf(gp->sbuf[2] + 40, "%2i ", dw->gamma); - - mu->mark[6].N = 6; - mu->mark[6].subs = gp->sbuf[2] + 40; - - sprintf(gp->sbuf[2] + 20, "%2i %2i ", pl->mark_density, pl->mark_size); - - mu->mark[7].N = 7; - mu->mark[7].subs = gp->sbuf[2] + 20; - - gp->stat = GP_MENU; - break; - - case 5: - menuRaise(mu, 102, gp->la->global_data_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 6: - gpMakePageMenu(gp); - - if (strlen(gp->la_menu) > 0) { - - menuRaise(mu, 9, gp->la_menu, mu->box_X, mu->box_Y); - menuSelect(mu, rd->page_N); - - mu->hidden_N[0] = rd->page_N - 1; - gp->combine_on = GP_COMBINE_NONE; - - gp->stat = GP_MENU; - } - break; - - case 7: - gpMakePageMenu(gp); - - if (strlen(gp->la_menu) > 0) { - - menuRaise(mu, 9, gp->la_menu, mu->box_X, mu->box_Y); - menuSelect(mu, rd->page_N); - - mu->hidden_N[0]= rd->page_N - 1; - gp->combine_on = GP_COMBINE_AXES_REMAP; - - gp->stat = GP_MENU; - } - break; - - case 8: - gpMakePageMenu(gp); - - if (strlen(gp->la_menu) > 0) { - - menuRaise(mu, 9, gp->la_menu, mu->box_X, mu->box_Y); - menuSelect(mu, rd->page_N); - - mu->hidden_N[0] = rd->page_N - 1; - gp->combine_on = GP_COMBINE_NO_REMAP; - - gp->stat = GP_MENU; - } - break; - - case 9: - plotFigureSubtractSwitch(pl, SUBTRACT_BINARY_SUBTRACTION); - break; - - case 10: - pl->mark_on = pl->mark_on ? 0 : 1; - break; - - case 11: - if (pl->slice_on == 0) { - - pl->slice_on = 1; - pl->slice_axis_N = pl->hover_axis; - - plotSliceTrack(pl, gp->cur_X, gp->cur_Y); - } - else { - pl->data_box_on = DATA_BOX_FREE; - - pl->slice_on = 0; - pl->slice_mode_N = 0; - } - break; - - case 12: - if (pl->axis[PLOT_AXES_MAX - 1].compact != 0) { - - for (N = 0; N < PLOT_AXES_MAX; ++N) - pl->axis[N].compact = 0; - } - else { - for (N = 0; N < PLOT_AXES_MAX; ++N) - pl->axis[N].compact = 1; - } - break; - - case 13: - if (pl->axis[0].exponential != 0) { - - for (N = 0; N < PLOT_AXES_MAX; ++N) - pl->axis[N].exponential = 0; - } - else { - for (N = 0; N < PLOT_AXES_MAX; ++N) - pl->axis[N].exponential = 1; - } - break; - - case 14: - gp->screen_yank = 1; - break; - - case 15: - menuRaise(mu, 104, gp->la->global_lang_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 16: - gpMakeAboutMenu(gp); - - menuRaise(mu, 99, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 17: - gp->done = 1; - break; - } - } - else if (menu_N == 101) { - - switch (item_N) { - - case 0: - plotAxisScaleAuto(pl, pl->on_X); - plotAxisScaleAuto(pl, pl->on_Y); - break; - - case 1: - plotAxisScaleEqual(pl); - break; - - case 2: - plotAxisScaleGridAlign(pl); - break; - - case 3: - plotAxisScaleStacked(pl, 0); - break; - } - } - else if (menu_N == 102) { - - switch (item_N) { - - case 0: - readDataReload(rd); - - if (gp->shift_on != 0) { - - plotAxisScaleLock(pl, LOCK_FREE); - } - else { - plotAxisScaleLock(pl, LOCK_AUTO); - } - break; - - case 1: - plotDataSubtractAlternate(rd->pl); - break; - - case 2: - gpMakeDirMenu(gp); - - menuRaise(mu, 1021, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 3: - gp->data_N = plotFigureAnyData(pl); - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 4: - menuRaise(mu, 1023, gp->la->global_config_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - } - } - else if (menu_N == 1021) { - - if (item_N != -1) { - - switch (gpDirWalk(gp, item_N, 0)) { - - case 1: - gpMakeDirMenu(gp); - - menuRaise(mu, 1021, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 2: - menuResume(mu); - gp->stat = GP_MENU; - break; - - case 3: - for (N = 0; N < MENU_OPTION_MAX; ++N) { - - if (mu->hidden_N[N] < 0) { - - mu->hidden_N[N] = item_N; - break; - } - } - - menuResume(mu); - gp->stat = GP_MENU; - break; - - default: - break; - } - } - } - else if (menu_N == 1022) { - - if (item_N != -1) { - - int gN, cN; - - switch (item_N) { - - case 0: - gpMakeDatasetSelectMenu(gp); - - menuRaise(mu, 10221, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 2: - gpMakeColumnSelectMenu(gp, gp->data_N); - - menuRaise(mu, 10222, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 3: - cN = readGetTimeColumn(rd, gp->data_N); - - if (cN >= -1) { - - gN = pl->data[gp->data_N].map[cN]; - - if (gN < 0) { - - gN = gp->data_N + (PLOT_GROUP_MAX - PLOT_DATASET_MAX); - - plotGroupAdd(pl, gp->data_N, gN, cN); - } - - if (pl->group[gN].op_time_median == 0) { - - plotGroupMedian(pl, gN, 15, 0, 0); - } - - sprintf(gp->sbuf[0], "%i", pl->group[gN].length); - - gp->grp_N = gN; - - editRaise(ed, 17, gp->la->median_unwrap_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - } - else { - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } - break; - - case 4: - cN = readGetTimeColumn(rd, gp->data_N); - - if (cN >= -1) { - - gN = pl->data[gp->data_N].map[cN]; - - if (gN >= 0) { - - pl->group[gN].op_time_unwrap = - (pl->group[gN].op_time_unwrap != 0) ? 0 : 1; - } - } - - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - break; - - case 5: - cN = readGetTimeColumn(rd, gp->data_N); - - if (cN >= -1) { - - gN = pl->data[gp->data_N].map[cN]; - - if (gN >= 0) { - - pl->group[gN].op_time_opdata = - (pl->group[gN].op_time_opdata != 0) ? 0 : 1; - } - } - - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - break; - - case 6: - cN = readGetTimeColumn(rd, gp->data_N); - - if (cN >= -1) { - - gN = pl->data[gp->data_N].map[cN]; - - if (gN < 0) { - - gN = gp->data_N + (PLOT_GROUP_MAX - PLOT_DATASET_MAX); - - plotGroupAdd(pl, gp->data_N, gN, cN); - } - - if (pl->group[gN].op_scale == 0) { - - plotGroupScale(pl, gN, 1, 1., 0.); - } - - gpTextFloat(pl, gp->sbuf[0], pl->group[gN].scale); - gpTextFloat(pl, gp->sbuf[3], pl->group[gN].offset); - - strcat(gp->sbuf[0], " "); - strcat(gp->sbuf[0], gp->sbuf[3]); - - gp->grp_N = gN; - - editRaise(ed, 11, gp->la->scale_offset_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - } - else { - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } - break; - - case 7: - sprintf(gp->sbuf[0], "%i", rd->data[gp->data_N].length_N); - - editRaise(ed, 12, gp->la->length_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 8: - readDatasetClean(rd, gp->data_N); - - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - break; - - case 1: - case 9: - menuResume(mu); - gp->stat = GP_MENU; - break; - - default: - - if (item_N >= 10) { - - readToggleHint(rd, gp->data_N, item_N - 10); - } - - gpMakeDatasetMenu(gp); - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - break; - } - } - } - else if (menu_N == 10221) { - - if (item_N != -1) { - - if ( item_N < PLOT_DATASET_MAX - && item_N >= 0) { - - gp->data_N = item_N; - } - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - } - else if (menu_N == 10222) { - - if (item_N != -1) { - - readSetTimeColumn(rd, gp->data_N, item_N - 1); - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - } - else if (menu_N == 1023) { - - switch (item_N) { - - case 0: - menuRaise(mu, 10231, gp->la->cancel_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 1: - menuRaise(mu, 10232, gp->la->cancel_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 2: - gpMakeConfigurationMenu(gp); - - menuRaise(mu, 10234, gp->la_menu, mu->box_X, mu->box_Y); - - mu->hidden_N[0] = 0; - gp->stat = GP_MENU; - break; - } - } - else if (menu_N == 10231) { - - if (item_N == 1) { - - gpWriteFile(gp); - } - } - else if (menu_N == 10232) { - - if (item_N == 1) { - - gpDefaultFile(gp); - } - } - else if (menu_N == 10234) { - - if (item_N != -1) { - - if (item_N >= 2) { - - gp->line_N = item_N - 2; - - editRaise(ed, 10, gp->la_menu, - gp->d_names[gp->line_N], - mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - } - else { - menuResume(mu); - gp->stat = GP_MENU; - } - } - } - else if (menu_N == 103) { - - switch (item_N) { - - case 0: - rd->colorscheme = (rd->colorscheme < 2) - ? rd->colorscheme + 1 : 0; - - schemeFill(gp->sch, rd->colorscheme); - break; - - case 1: - gpFontToggle(gp, 1, 0); - break; - - case 2: - rd->fastdraw = 0; - dw->antialiasing = (dw->antialiasing < DRAW_8X_MSAA) - ? dw->antialiasing + 1 : DRAW_SOLID; - break; - - case 3: - dw->blendfont = (dw->blendfont != 0) ? 0 : 1; - break; - - case 4: - dw->thickness = (dw->thickness < 2) ? dw->thickness + 1 : 0; - break; - - case 5: - sprintf(gp->sbuf[0], "%i", pl->layout_font_pt); - - editRaise(ed, 15, gp->la->font_size_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 6: - sprintf(gp->sbuf[0], "%i", dw->gamma); - - editRaise(ed, 21, gp->la->gamma_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 7: - sprintf(gp->sbuf[0], "%i %i", pl->mark_density, pl->mark_size); - - editRaise(ed, 20, gp->la->marker_density_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - } - - if (mu->clicked != 0 && gp->stat != GP_EDIT) { - - mu->mark[0].subs = (rd->colorscheme == 0) ? "Dark " - : (rd->colorscheme == 1) ? "Light " : "Graysca"; - mu->mark[1].subs = (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_NORMAL) ? "Normal " - : (pl->layout_font_ttf == TTF_ID_ROBOTO_MONO_THIN) ? "Thin " : " "; - mu->mark[2].subs = (dw->antialiasing == DRAW_4X_MSAA) ? "4x MSAA" - : (dw->antialiasing == DRAW_8X_MSAA) ? "8x MSAA" : "Solid "; - mu->mark[3].subs = (dw->blendfont != 0) ? "Blended" : "Solid "; - - sprintf(gp->sbuf[3], "%i ", dw->thickness); - - mu->mark[4].N = 4; - mu->mark[4].subs = gp->sbuf[3]; - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } - } - else if (menu_N == 104) { - - if (item_N != -1) { - - rd->language = item_N; - langFill(gp->la, rd->language); - } - } - else if (menu_N == 2) { - - switch (item_N) { - - case 0: - menuRaise(mu, 201, gp->la->axis_zoom_menu, mu->box_X, mu->box_Y); - - if (pl->axis[gp->ax_N].slave != 0) { - - mu->hidden_N[0] = 0; - mu->hidden_N[1] = 1; - mu->hidden_N[2] = 2; - } - else if ( gp->ax_N == pl->on_X - || gp->ax_N == pl->on_Y) { - - mu->hidden_N[0] = 2; - } - - gp->stat = GP_MENU; - break; - - case 1: - if (pl->axis[gp->ax_N].slave == 0) { - - if (pl->axis[gp->ax_N].busy == AXIS_BUSY_X) { - - plotAxisSlave(pl, gp->ax_N, pl->on_X, 0., 0., - AXIS_SLAVE_HOLD_AS_IS); - } - else if (pl->axis[gp->ax_N].busy == AXIS_BUSY_Y) { - - plotAxisSlave(pl, gp->ax_N, pl->on_Y, 0., 0., - AXIS_SLAVE_HOLD_AS_IS); - } - } - else { - plotAxisSlave(pl, gp->ax_N, -1, 0., 0., AXIS_SLAVE_DISABLE); - } - break; - - case 2: - menuRaise(mu, 202, gp->la->cancel_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 3: - pl->slice_on = 1; - pl->slice_axis_N = gp->ax_N; - - plotSliceTrack(pl, gp->cur_X, gp->cur_Y); - break; - - case 4: - pl->axis[gp->ax_N].compact = pl->axis[gp->ax_N].compact ? 0 : 1; - - if (mu->clicked != 0) { - - mu->mark[0].subs = (pl->axis[gp->ax_N].compact == 0) ? " " : "X"; - - menuResume(mu); - gp->stat = GP_MENU; - } - break; - - case 5: - pl->axis[gp->ax_N].exponential = pl->axis[gp->ax_N].exponential ? 0 : 1; - - if (mu->clicked != 0) { - - mu->mark[1].subs = (pl->axis[gp->ax_N].exponential == 0) ? " " : "X"; - - menuResume(mu); - gp->stat = GP_MENU; - } - break; - - case 6: - pl->axis[gp->ax_N].lock_tick = pl->axis[gp->ax_N].lock_tick ? 0 : 1; - - if (pl->axis[gp->ax_N].lock_tick != 0) { - - plotAxisScaleGridLock(pl, gp->ax_N); - } - - if (mu->clicked != 0) { - - mu->mark[2].subs = (pl->axis[gp->ax_N].lock_tick == 0) ? " " : "X"; - - menuResume(mu); - gp->stat = GP_MENU; - } - break; - - - case 7: - editRaise(ed, 3, gp->la->axis_label_edit, - pl->axis[gp->ax_N].label, - mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - } - } - else if (menu_N == 201) { - - switch (item_N) { - - case 0: - plotAxisScaleAuto(pl, gp->ax_N); - break; - - case 1: - if (pl->axis[gp->ax_N].busy == AXIS_BUSY_X) { - - plotAxisScaleAutoCond(pl, gp->ax_N, -1); - } - else if (pl->axis[gp->ax_N].busy == AXIS_BUSY_Y) { - - plotAxisScaleAutoCond(pl, gp->ax_N, -1); - } - break; - - case 2: - if ( pl->axis[gp->ax_N].busy == AXIS_BUSY_X - && pl->axis[gp->ax_N].slave == 0) { - - pl->axis[gp->ax_N].scale = pl->axis[pl->on_X].scale; - pl->axis[gp->ax_N].offset = pl->axis[pl->on_X].offset; - } - else if ( pl->axis[gp->ax_N].busy == AXIS_BUSY_Y - && pl->axis[gp->ax_N].slave == 0) { - - pl->axis[gp->ax_N].scale = pl->axis[pl->on_Y].scale; - pl->axis[gp->ax_N].offset = pl->axis[pl->on_Y].offset; - } - break; - - case 3: - gpTextFloat(pl, gp->sbuf[0], pl->axis[gp->ax_N].scale); - gpTextFloat(pl, gp->sbuf[3], pl->axis[gp->ax_N].offset); - - strcat(gp->sbuf[0], " "); - strcat(gp->sbuf[0], gp->sbuf[3]); - - editRaise(ed, 4, gp->la->scale_offset_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - } - } - else if (menu_N == 202) { - - if (item_N == 1) { - - plotAxisRemove(pl, gp->ax_N); - } - } - else if (menu_N == 3) { - - switch (item_N) { - - case 0: - plotFigureMoveAxes(pl, gp->fig_N); - break; - - case 1: - plotFigureMakeIndividualAxes(pl, gp->fig_N); - break; - - case 2: - menuRaise(mu, 301, gp->la->cancel_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 3: - menuRaise(mu, 302, gp->la->figure_operation_menu, - mu->box_X, mu->box_Y); - - N = plotFigureSelected(pl); - - if (N < 2) { - - mu->hidden_N[0] = 2; - mu->hidden_N[1] = 6; - mu->hidden_N[2] = 7; - mu->hidden_N[3] = 8; - mu->hidden_N[4] = 9; - } - else if (N != 2) { - - mu->hidden_N[0] = 6; - mu->hidden_N[1] = 7; - mu->hidden_N[2] = 8; - mu->hidden_N[3] = 9; - } - - gp->stat = GP_MENU; - break; - - case 4: - menuRaise(mu, 303, gp->la->figure_edit_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - } - } - else if (menu_N == 301) { - - if (item_N == 1) { - - plotFigureRemove(pl, gp->fig_N); - } - } - else if (menu_N == 302) { - - int config[3]; - - switch (item_N) { - - case 0: - N = plotGetFreeFigure(pl); - - if (N < 0) { - - ERROR("Unable to get free figure to duplicate\n"); - break ; - } - - plotFigureAdd(pl, N, pl->figure[gp->fig_N].data_N, - pl->figure[gp->fig_N].column_X, - pl->figure[gp->fig_N].column_Y, - pl->figure[gp->fig_N].axis_X, - pl->figure[gp->fig_N].axis_Y, - pl->figure[gp->fig_N].label); - - pl->figure[N].hidden = pl->figure[gp->fig_N].hidden; - pl->figure[N].drawing = pl->figure[gp->fig_N].drawing; - pl->figure[N].width = pl->figure[gp->fig_N].width; - break; - - case 1: - if (plotFigureSubtractGetMedianConfig(pl, gp->fig_N, config) >= 0) { - - sprintf(gp->sbuf[0], "%d %d %d", config[0], config[1], config[2]); - } - else { - sprintf(gp->sbuf[0], "15 0 1"); - } - - editRaise(ed, 18, gp->la->median_unwrap_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 2: - plotFigureSubtractResample(pl, gp->fig_N); - break; - - case 3: - editRaise(ed, 5, gp->la->scale_offset_edit, - "1 0", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 4: - editRaise(ed, 6, gp->la->scale_offset_edit, - "-1 0", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 5: - if (plotDataBoxPolyfit(pl, gp->fig_N) == 0) { - - editRaise(ed, 16, gp->la->polynomial_edit, - "1", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - } - break; - - case 6: - plotFigureSubtractSwitch(pl, SUBTRACT_BINARY_SUBTRACTION); - break; - - case 7: - plotFigureSubtractSwitch(pl, SUBTRACT_BINARY_ADDITION); - break; - - case 8: - plotFigureSubtractSwitch(pl, SUBTRACT_BINARY_MULTIPLICATION); - break; - - case 9: - plotFigureSubtractSwitch(pl, SUBTRACT_BINARY_HYPOTENUSE); - break; - - case 10: - plotFigureSubtractFilter(pl, gp->fig_N, SUBTRACT_FILTER_DIFFERENCE, 0.); - break; - - case 11: - plotFigureSubtractFilter(pl, gp->fig_N, SUBTRACT_FILTER_CUMULATIVE, 0.); - break; - - case 12: - editRaise(ed, 8, gp->la->bit_number_edit, - "0", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 13: - editRaise(ed, 13, gp->la->low_pass_edit, - "0.1", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 14: - editRaise(ed, 19, gp->la->median_unwrap_edit, - "15", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - } - } - else if (menu_N == 303) { - - switch (item_N) { - - case 0: - menuRaise(mu, 3031, gp->la->figure_edit_drawing_menu, - mu->box_X, mu->box_Y); - - N = pl->figure[gp->fig_N].width; - - if (N == 1) { N = 0; } - else if (N == 2) { N = 1; } - else if (N == 4) { N = 2; } - else if (N == 6) { N = 3; } - else { N = -1; } - - if (N >= 0) { - - N += pl->figure[gp->fig_N].drawing * 4; - } - - mu->hidden_N[0] = N; - gp->stat = GP_MENU; - break; - - case 1: - sprintf(gp->sbuf[0], "%i", pl->figure[gp->fig_N].width); - - editRaise(ed, 14, gp->la->figure_thickness_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 2: - menuRaise(mu, 3032, gp->la->figure_edit_color_menu, - mu->box_X, mu->box_Y); - mu->hidden_N[0] = gp->fig_N; - mu->colorful = 1; - gp->stat = GP_MENU; - break; - - case 3: - gpMakeColumnSelectMenu(gp, pl->figure[gp->fig_N].data_N); - - menuRaise(mu, 3033, gp->la_menu, mu->box_X, mu->box_Y); - mu->hidden_N[0] = pl->figure[gp->fig_N].column_X + 1; - gp->stat = GP_MENU; - break; - - case 4: - gpMakeColumnSelectMenu(gp, pl->figure[gp->fig_N].data_N); - - menuRaise(mu, 3034, gp->la_menu, mu->box_X, mu->box_Y); - mu->hidden_N[0] = pl->figure[gp->fig_N].column_Y + 1; - gp->stat = GP_MENU; - break; - - case 5: - editRaise(ed, 2, gp->la->figure_label_edit, - pl->figure[gp->fig_N].label, - mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - } - } - else if (menu_N == 3031) { - - if (item_N != -1) { - - N = item_N % 4; - - if (N == 0) { N = 1; } - else if (N == 1) { N = 2; } - else if (N == 2) { N = 4; } - else if (N == 3) { N = 6; } - - pl->figure[gp->fig_N].drawing = item_N / 4; - pl->figure[gp->fig_N].width = N; - } - } - else if (menu_N == 3032) { - - if (item_N != -1) { - - plotFigureExchange(pl, gp->fig_N, item_N); - } - } - else if (menu_N == 3033) { - - if (item_N != -1) { - - pl->figure[gp->fig_N].column_X = item_N - 1; - } - } - else if (menu_N == 3034) { - - if (item_N != -1) { - - pl->figure[gp->fig_N].column_Y = item_N - 1; - } - } - else if (menu_N == 4) { - - switch (item_N) { - - case 0: - menuRaise(mu, 401, gp->la->figure_edit_drawing_menu, - mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - break; - - case 1: - gp->fig_N = -1; - - editRaise(ed, 5, gp->la->scale_offset_edit, - "1 0", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 2: - gp->fig_N = -1; - - editRaise(ed, 6, gp->la->scale_offset_edit, - "-1 0", mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 3: - sprintf(gp->sbuf[0], "%s/g%if%i.csv", rd->screenpath, - rd->page_N, gp->pl->legend_N); - - N = 1; - - while (gpFileExist(gp->sbuf[0]) != 0) { - - if (N >= 100) { - - ERROR("Failed to find free file name\n"); - break; - } - - sprintf(gp->sbuf[0], "%s/g%if%i_%i.csv", rd->screenpath, - rd->page_N, gp->pl->legend_N, N); - - N++; - } - - editRaise(ed, 7, gp->la->file_name_edit, - gp->sbuf[0], mu->box_X, mu->box_Y); - - gp->stat = GP_EDIT; - break; - - case 4: - pl->transparency = pl->transparency ? 0 : 1; - - if (mu->clicked != 0) { - - mu->mark[0].subs = (pl->transparency == 0) ? " " : "X"; - - menuResume(mu); - gp->stat = GP_MENU; - } - break; - - case 5: - pl->legend_hidden = pl->legend_hidden ? 0 : 1; - - if (mu->clicked != 0) { - - mu->mark[1].subs = (pl->legend_hidden == 0) ? " " : "X"; - - menuResume(mu); - gp->stat = GP_MENU; - } - break; - } - } - else if (menu_N == 401) { - - if (item_N != -1) { - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - int lN; - - lN = item_N % 4; - - if (lN == 0) { lN = 1; } - else if (lN == 1) { lN = 2; } - else if (lN == 2) { lN = 4; } - else if (lN == 3) { lN = 6; } - - pl->figure[N].drawing = item_N / 4; - pl->figure[N].width = lN; - } - } - } - } - else if (menu_N == 5) { - - switch (item_N) { - - case 0: - pl->data_box_on = DATA_BOX_FREE; - - pl->slice_on = 0; - pl->slice_mode_N = 0; - break; - - case 1: - plotDataBoxCopyClipboard(pl); - break; - } - } - else if (menu_N == 9) { - - N = item_N + 1; - - if (gp->combine_on == GP_COMBINE_AXES_REMAP) { - - readCombinePage(rd, N, 1); - - for (N = 1; N < MENU_OPTION_MAX; ++N) { - - if (mu->hidden_N[N] < 0) { - - mu->hidden_N[N] = item_N; - break; - } - } - - menuResume(mu); - gp->stat = GP_MENU; - } - else if (gp->combine_on == GP_COMBINE_NO_REMAP) { - - readCombinePage(rd, N, 0); - - for (N = 1; N < MENU_OPTION_MAX; ++N) { - - if (mu->hidden_N[N] < 0) { - - mu->hidden_N[N] = item_N; - break; - } - } - - menuResume(mu); - gp->stat = GP_MENU; - } - else { - readSelectPage(rd, N); - } - } -} - -static void -gpEditHandle(gp_t *gp, int edit_N, const char *text) -{ - scheme_t *sch = gp->sch; - lang_t *la = gp->la; - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - menu_t *mu = gp->mu; - svg_t *g; - - double scale, offset, gain; - int len, n; - - if (edit_N == 1) { - - strcpy(rd->page[rd->page_N].title, text); - } - else if (edit_N == 2) { - - strcpy(pl->figure[gp->fig_N].label, text); - } - else if (edit_N == 3) { - - strcpy(pl->axis[gp->ax_N].label, text); - } - else if (edit_N == 4) { - - n = sscanf(text, "%le %le", &scale, &offset); - - if (n == 2) { - - pl->axis[gp->ax_N].scale = scale; - pl->axis[gp->ax_N].offset = offset; - } - } - else if (edit_N == 5 || edit_N == 6) { - - int fN, aBUSY; - - n = sscanf(text, "%le %le", &scale, &offset); - - if (n != 0) { - - if (n == 1) { - - offset = 0.; - } - - aBUSY = (edit_N == 5) ? AXIS_BUSY_X : AXIS_BUSY_Y; - - if (gp->fig_N < 0) { - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - plotFigureSubtractScale(pl, fN, aBUSY, - scale, offset); - } - } - } - else { - plotFigureSubtractScale(pl, gp->fig_N, - aBUSY, scale, offset); - } - } - } - else if (edit_N == 7) { - - const char *filetype; - - strcpy(gp->tempfile, text); - - filetype = gp->tempfile + strlen(gp->tempfile); - - if (strlen(gp->tempfile) > 4) { - - filetype += - 4; - } - - if (strcmp(filetype, ".png") == 0) { - - gp->screen_take = GP_TAKE_PNG; - } - else if (strcmp(filetype, ".svg") == 0) { - - g = (void *) svgOpenNew(gp->tempfile, - gp->surface->w, gp->surface->h); - - g->font_family = "monospace"; - g->font_pt = pl->layout_font_pt; - - gp->surface->userdata = (void *) g; - gp->screen_take = GP_TAKE_SVG; - } - else if (strcmp(filetype, ".csv") == 0) { - - gp->screen_take = GP_TAKE_CSV; - } - } - else if (edit_N == 8) { - - int args[2]; - - n = sscanf(text, "%d %d", &args[0], &args[1]); - - if (n != 0) { - - if (n == 1) { - - args[1] = args[0]; - } - - if ( args[0] >= 0 && args[0] <= 64 - && args[1] >= 0 && args[1] <= 64 - && args[0] <= args[1]) { - - plotFigureSubtractFilter(pl, gp->fig_N, - SUBTRACT_FILTER_BITMASK, - (double) (args[0] | (args[1] << 8))); - } - } - } - else if (edit_N == 9) { - - strcpy(gp->cwd, text); - - gpMakeDirMenu(gp); - - menuRaise(mu, 1021, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - else if (edit_N == 10) { - - sprintf(gp->sbuf[0], "%s\n", text); - readConfigIN(rd, gp->sbuf[0], 1); - - gpFontLayout(gp); - gpScreenLayout(gp); - - langFill(la, rd->language); - schemeFill(sch, rd->colorscheme); - - strcpy(gp->d_names[gp->line_N], text); - - gpWriteNewConfiguration(gp); - gpMakeConfigurationMenu(gp); - - menuRaise(mu, 10234, gp->la_menu, mu->box_X, mu->box_Y); - menuSelect(mu, gp->line_N + 2); - - mu->hidden_N[0] = 0; - gp->stat = GP_MENU; - } - else if (edit_N == 11) { - - n = sscanf(text, "%le %le", &scale, &offset); - - if (n == 2) { - - plotGroupScale(pl, gp->grp_N, 1, scale, offset); - } - else { - plotGroupScale(pl, gp->grp_N, 0, 1., 0.); - } - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - else if (edit_N == 12) { - - n = sscanf(text, "%d", &len); - - if (n == 1) { - - if (len >= 0) { - - rd->data[gp->data_N].length_N = len; - - if (len >= 1) { - - plotDataResize(pl, gp->data_N, len); - } - } - } - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - else if (edit_N == 13) { - - n = sscanf(text, "%le", &gain); - - if (n == 1) { - - plotFigureSubtractFilter(pl, gp->fig_N, - SUBTRACT_FILTER_LOW_PASS, gain); - } - } - else if (edit_N == 14) { - - n = sscanf(text, "%i", &len); - - if (n == 1) { - - if (len >= 0 && len <= 16) { - - pl->figure[gp->fig_N].width = len; - } - } - } - else if (edit_N == 15) { - - n = sscanf(text, "%d", &len); - - if (n == 1) { - - gpFontToggle(gp, 0, len); - - sprintf(gp->sbuf[2], "%2i ", pl->layout_font_pt); - - mu->mark[5].subs = gp->sbuf[2]; - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } - } - else if (edit_N == 16) { - - int args[2]; - - n = sscanf(text, "%d %d", &args[0], &args[1]); - - if (n != 0) { - - if (n == 1) { - - args[1] = args[0]; - args[0] = 0; - } - - if ( args[0] >= 0 && args[0] <= PLOT_POLYFIT_MAX - && args[1] >= 0 && args[1] <= PLOT_POLYFIT_MAX - && args[0] <= args[1]) { - - plotFigureSubtractPolyfit(pl, gp->fig_N, - args[0], args[1]); - } - } - } - else if (edit_N == 17) { - - n = sscanf(text, "%d", &len); - - if (n != 0) { - - int unwrap = pl->group[gp->grp_N].op_time_unwrap; - int opdata = pl->group[gp->grp_N].op_time_opdata; - - if (len >= 1 && len <= PLOT_MEDIAN_MAX) { - - plotGroupMedian(pl, gp->grp_N, len, - unwrap, opdata); - } - else { - plotGroupMedian(pl, gp->grp_N, 0, 0, 0); - } - } - else { - plotGroupMedian(pl, gp->grp_N, 0, 0, 0); - } - - gpMakeDatasetMenu(gp); - - menuRaise(mu, 1022, gp->la_menu, mu->box_X, mu->box_Y); - gp->stat = GP_MENU; - } - else if (edit_N == 18) { - - int args[2]; - - n = sscanf(text, "%d %d %d", &len, &args[0], &args[1]); - - if (n != 0) { - - if (len >= 0 && len <= PLOT_MEDIAN_MAX) { - - plotFigureSubtractTimeMedian(pl, gp->fig_N, - len, args[0], args[1]); - } - } - } - else if (edit_N == 19) { - - n = sscanf(text, "%d", &len); - - if (n != 0) { - - if (len >= 3 && len <= PLOT_MEDIAN_MAX) { - - plotFigureSubtractFilter(pl, gp->fig_N, - SUBTRACT_FILTER_MEDIAN, (double) len); - } - } - } - else if (edit_N == 20) { - - int args[2]; - - n = sscanf(text, "%d %d", &args[0], &args[1]); - - if (n == 2) { - - if (args[0] > 0 && args[0] < 100) { - - pl->mark_density = args[0]; - pl->mark_count = 0; - } - - if (args[1] > 0 && args[1] < 100) { - - pl->mark_size = args[1]; - pl->mark_count = 0; - } - - sprintf(gp->sbuf[2] + 20, "%2i %2i ", pl->mark_density, pl->mark_size); - - mu->mark[7].subs = gp->sbuf[2] + 20; - } - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } - else if (edit_N == 21) { - - n = sscanf(text, "%d", &len); - - if (n != 0) { - - if (len > 0 && len < 1000) { - - dw->gamma = len; - - drawGamma(gp->dw); - } - - sprintf(gp->sbuf[2] + 40, "%2i ", dw->gamma); - - mu->mark[6].subs = gp->sbuf[2] + 40; - } - - menuResume(mu); - menuLayout(mu); - - gp->stat = GP_MENU; - } -} - -static void -gpEventHandle(gp_t *gp, const SDL_Event *ev) -{ - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - double fmin, fmax; - int N; - - if (ev->type == SDL_QUIT) - gp->done = 1; - - else if (ev->type == SDL_WINDOWEVENT) { - - if (ev->window.event == SDL_WINDOWEVENT_SIZE_CHANGED) { - - gp->fb = SDL_GetWindowSurface(gp->window); - - if ( gp->fb->w != gp->surface->w - || gp->fb->h != gp->surface->h) { - - SDL_FreeSurface(gp->surface); - - gp->surface = SDL_CreateRGBSurfaceWithFormat(0, gp->fb->w, - gp->fb->h, 32, SDL_PIXELFORMAT_XRGB8888); - } - - gpScreenLayout(gp); - } - else if (ev->window.event == SDL_WINDOWEVENT_CLOSE) { - - gp->done = 1; - } - } - else if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_LCTRL || ev->key.keysym.sym == SDLK_RCTRL) { - - gp->ctrl_on = 1; - } - else if (ev->key.keysym.sym == SDLK_LSHIFT || ev->key.keysym.sym == SDLK_RSHIFT) { - - gp->shift_on = 1; - pl->shift_on = 1; - } - } - else if (ev->type == SDL_KEYUP) { - - if (ev->key.keysym.sym == SDLK_LCTRL || ev->key.keysym.sym == SDLK_RCTRL) { - - gp->ctrl_on = 0; - } - else if (ev->key.keysym.sym == SDLK_LSHIFT || ev->key.keysym.sym == SDLK_RSHIFT) { - - gp->shift_on = 0; - pl->shift_on = 0; - } - } - - if (gp->stat == GP_IDLE) { - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_a) { - - if (pl->hover_axis != -1) { - - gp->ax_N = pl->hover_axis; - - gpMenuHandle(gp, 201, 0); - } - else { - gpMenuHandle(gp, 101, 0); - } - } - else if (ev->key.keysym.sym == SDLK_q) { - - gpMenuHandle(gp, 101, 1); - } - else if (ev->key.keysym.sym == SDLK_g) { - - gpMenuHandle(gp, 101, 2); - } - else if (ev->key.keysym.sym == SDLK_w) { - - gpMenuHandle(gp, 101, 3); - } - else if (ev->key.keysym.sym == SDLK_u) { - - gpMenuHandle(gp, 102, 0); - } - else if (ev->key.keysym.sym == SDLK_j) { - - gpMenuHandle(gp, 102, 1); - } - else if (ev->key.keysym.sym == SDLK_o) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 102, 2); - } - else if (ev->key.keysym.sym == SDLK_p) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 1, 2); - } - else if (ev->key.keysym.sym == SDLK_f) { - - gpMenuHandle(gp, 1, 3); - } - else if (ev->key.keysym.sym == SDLK_l) { - - mu->clicked = 0; - - gpMenuHandle(gp, 103, 0); - } - else if (ev->key.keysym.sym == SDLK_d) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 102, 3); - } - else if (ev->key.keysym.sym == SDLK_i) { - - gp->i_show_fps = gp->i_show_fps ? 0 : 1; - } - else if ( ev->key.keysym.sym == SDLK_PAGEUP - || ev->key.keysym.sym == SDLK_UP) { - - readSelectPage(rd, rd->page_N - 1); - } - else if ( ev->key.keysym.sym == SDLK_PAGEDOWN - || ev->key.keysym.sym == SDLK_DOWN) { - - readSelectPage(rd, rd->page_N + 1); - } - else if (ev->key.keysym.sym == SDLK_RETURN) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 1, 6); - } - else if (ev->key.keysym.sym == SDLK_c) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 1, 7); - } - else if (ev->key.keysym.sym == SDLK_b) { - - mu->box_X = -1; - mu->box_Y = -1; - - gpMenuHandle(gp, 1, 8); - } - else if (ev->key.keysym.sym == SDLK_s) { - - if (pl->hover_axis != -1) { - - N = pl->hover_axis; - - if (N != pl->on_X && N != pl->on_Y) { - - gp->ax_N = N; - - gpMenuHandle(gp, 2, 1); - } - } - } - else if (ev->key.keysym.sym == SDLK_x) { - - if (pl->hover_axis != -1) { - - if ( pl->hover_axis != pl->on_X - && pl->hover_axis != pl->on_Y) { - - mu->box_X = gp->cur_X; - mu->box_Y = gp->cur_Y; - - gp->ax_N = pl->hover_axis; - - gpMenuHandle(gp, 2, 2); - } - } - else if (pl->hover_figure != -1) { - - mu->box_X = gp->cur_X; - mu->box_Y = gp->cur_Y; - - gp->fig_N = pl->hover_figure; - - gpMenuHandle(gp, 3, 2); - } - } - else if (ev->key.keysym.sym == SDLK_r) { - - gpMenuHandle(gp, 1, 9); - } - else if (ev->key.keysym.sym == SDLK_m) { - - gpMenuHandle(gp, 1, 10); - } - else if (ev->key.keysym.sym == SDLK_t) { - - gpMenuHandle(gp, 1, 11); - } - else if (ev->key.keysym.sym == SDLK_k) { - - if (pl->hover_axis != -1) { - - mu->clicked = 0; - gp->ax_N = pl->hover_axis; - - gpMenuHandle(gp, 2, 4); - } - else { - gpMenuHandle(gp, 1, 12); - } - } - else if (ev->key.keysym.sym == SDLK_e) { - - if (pl->hover_axis != -1) { - - mu->clicked = 0; - gp->ax_N = pl->hover_axis; - - gpMenuHandle(gp, 2, 5); - } - else { - gpMenuHandle(gp, 1, 13); - } - } - else if (ev->key.keysym.sym == SDLK_y) { - - gpMenuHandle(gp, 1, 14); - } - } - else if (ev->type == SDL_MOUSEBUTTONDOWN) { - - if (ev->button.button == SDL_BUTTON_LEFT) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - do { - N = plotLegendGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N >= 0) { - - pl->figure[N].hidden = pl->figure[N].hidden ? 0 : 1; - - break; - } - - N = plotLegendBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N == 0) { - - gp->box_X = ev->button.x - pl->legend_X; - gp->box_Y = ev->button.y - pl->legend_Y; - - gp->stat = GP_MOVING; - gp->legend_drag = 1; - break; - } - - N = plotDataBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N == 0) { - - gp->box_X = ev->button.x - pl->data_box_X; - gp->box_Y = ev->button.y - pl->data_box_Y; - - gp->stat = GP_MOVING; - gp->data_box_drag = 1; - break; - } - - N = plotAxisGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N >= 0) { - - if (pl->axis[N].busy == AXIS_BUSY_X - && pl->axis[N].slave == 0) { - - pl->on_X = N; - gp->ax_N = N; - - gp->stat = GP_MOVING; - break; - } - else if (pl->axis[N].busy == AXIS_BUSY_Y - && pl->axis[N].slave == 0) { - - pl->on_Y = N; - gp->ax_N = N; - - gp->stat = GP_MOVING; - break; - } - } - else { - gp->box_X = ev->button.x; - gp->box_Y = ev->button.y; - gp->ax_N = -1; - - gp->stat = GP_MOVING; - break; - } - } - while (0); - } - else if (ev->button.button == SDL_BUTTON_RIGHT) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - do { - if (gp->cur_Y < gp->layout_page_box) { - - menuRaise(mu, 1, gp->la->global_menu, - gp->cur_X, gp->cur_Y); - - N = plotFigureSelected(pl); - - if (N != 2) { - - mu->hidden_N[0] = 9; - } - -#ifndef _WINDOWS - mu->hidden_N[1] = 14; -#endif /* _WINDOWS */ - - gp->stat = GP_MENU; - break; - } - - N = plotLegendGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N >= 0) { - - gp->fig_N = N; - - menuRaise(mu, 3, gp->la->figure_menu, - gp->cur_X, gp->cur_Y); - - gp->stat = GP_MENU; - break; - } - - N = plotLegendBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N == 0) { - - menuRaise(mu, 4, gp->la->legend_menu, - gp->cur_X, gp->cur_Y); - - mu->mark[0].N = 4; - mu->mark[0].subs = (pl->transparency == 0) ? " " : "X"; - - mu->mark[1].N = 5; - mu->mark[1].subs = (pl->legend_hidden == 0) ? " " : "X"; - - gp->stat = GP_MENU; - break; - } - - N = plotDataBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N == 0) { - - menuRaise(mu, 5, gp->la->databox_menu, - gp->cur_X, gp->cur_Y); - - gp->stat = GP_MENU; - break; - } - - N = plotAxisGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N >= 0) { - - if (N != pl->on_X && N != pl->on_Y) { - - gp->ax_N = N; - - menuRaise(mu, 2, gp->la->axis_menu, - gp->cur_X, gp->cur_Y); - - mu->mark[0].N = 4; - mu->mark[0].subs = (pl->axis[N].compact == 0) ? " " : "X"; - mu->mark[1].N = 5; - mu->mark[1].subs = (pl->axis[N].exponential == 0) ? " " : "X"; - mu->mark[2].N = 6; - mu->mark[2].subs = (pl->axis[N].lock_tick == 0) ? " " : "X"; - - gp->stat = GP_MENU; - break; - } - else { - gp->ax_N = N; - - menuRaise(mu, 2, gp->la->axis_menu, - gp->cur_X, gp->cur_Y); - - mu->hidden_N[0] = 1; - mu->hidden_N[1] = 2; - - mu->mark[0].N = 4; - mu->mark[0].subs = (pl->axis[N].compact == 0) ? " " : "X"; - mu->mark[1].N = 5; - mu->mark[1].subs = (pl->axis[N].exponential == 0) ? " " : "X"; - mu->mark[2].N = 6; - mu->mark[2].subs = (pl->axis[N].lock_tick == 0) ? " " : "X"; - - gp->stat = GP_MENU; - break; - } - } - else { - if (clipBoxTest(&pl->viewport, gp->cur_X, gp->cur_Y)) { - - gp->box_X = ev->button.x; - gp->box_Y = ev->button.y; - - gp->stat = GP_BOX_SELECT; - break; - } - break; - } - } - while (0); - } - } - else if (ev->type == SDL_MOUSEWHEEL) { - - if (gp->shift_on != 0) { - - fmin = (ev->wheel.y > 0) ? 1.01 - : (ev->wheel.y < 0) ? 1. / 1.01 : 1.; - } - else { - fmin = (ev->wheel.y > 0) ? 1.1 - : (ev->wheel.y < 0) ? 1. / 1.1 : 1.; - } - - SDL_GetMouseState(&gp->cur_X, &gp->cur_Y); - N = plotAxisGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (N >= 0) { - - if (pl->axis[N].busy == AXIS_BUSY_X) { - - plotAxisScaleZoom(pl, N, gp->cur_X, fmin); - } - else if (pl->axis[N].busy == AXIS_BUSY_Y) { - - plotAxisScaleZoom(pl, N, gp->cur_Y, fmin); - } - } - else { - plotAxisScaleZoom(pl, pl->on_X, gp->cur_X, fmin); - plotAxisScaleZoom(pl, pl->on_Y, gp->cur_Y, fmin); - } - } - else if (ev->type == SDL_MOUSEMOTION) { - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - - plotLegendGetByClick(pl, gp->cur_X, gp->cur_Y); - plotLegendBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - plotAxisGetByClick(pl, gp->cur_X, gp->cur_Y); - - if (pl->slice_on != 0) { - - plotSliceTrack(pl, gp->cur_X, gp->cur_Y); - } - - if (pl->data_box_on != DATA_BOX_FREE) { - - plotDataBoxGetByClick(pl, gp->cur_X, gp->cur_Y); - } - - gp->hover_box = (gp->cur_Y < gp->layout_page_box && gp->cur_Y > 0) ? 1 : 0; - } - } - else if (gp->stat == GP_MOVING) { - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_ESCAPE) { - - gp->stat = GP_IDLE; - gp->legend_drag = 0; - gp->data_box_drag = 0; - gp->ax_N = -1; - } - } - else if (ev->type == SDL_MOUSEBUTTONUP) { - - if (ev->button.button == SDL_BUTTON_LEFT) { - - gp->stat = GP_IDLE; - gp->legend_drag = 0; - gp->data_box_drag = 0; - gp->ax_N = -1; - - if (gp->box_X == ev->button.x && gp->box_Y == ev->button.y - && clipBoxTest(&pl->viewport, gp->box_X, gp->box_Y)) { - - if (pl->slice_on == 0) { - - gp->stat = GP_RANGE_SELECT; - } - else { - plotSliceSwitch(pl); - } - } - } - } - else if (ev->type == SDL_MOUSEMOTION) { - - if (gp->legend_drag) { - - pl->legend_X = ev->motion.x - gp->box_X; - pl->legend_Y = ev->motion.y - gp->box_Y; - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - } - else if (gp->data_box_drag) { - - pl->data_box_X = ev->motion.x - gp->box_X; - pl->data_box_Y = ev->motion.y - gp->box_Y; - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - } - else if (gp->ax_N < 0) { - - fmin = (double) (ev->motion.x - gp->cur_X); - fmax = (double) (ev->motion.y - gp->cur_Y); - - if (gp->shift_on != 0) { - - fmin *= 0.1; - fmax *= 0.1; - } - - plotAxisScaleMove(pl, pl->on_X, fmin); - plotAxisScaleMove(pl, pl->on_Y, fmax); - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - } - else if (pl->axis[gp->ax_N].busy == AXIS_BUSY_X) { - - fmin = (double) (ev->motion.x - gp->cur_X); - - if (gp->shift_on != 0) { - - fmin *= 0.1; - } - - plotAxisScaleMove(pl, gp->ax_N, fmin); - - gp->cur_X = ev->motion.x; - } - else if (pl->axis[gp->ax_N].busy == AXIS_BUSY_Y) { - - fmin = (double) (ev->motion.y - gp->cur_Y); - - if (gp->shift_on != 0) { - - fmin *= 0.1; - } - - plotAxisScaleMove(pl, gp->ax_N, fmin); - - gp->cur_Y = ev->motion.y; - } - } - } - else if (gp->stat == GP_RANGE_SELECT) { - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_ESCAPE) - gp->stat = GP_IDLE; - } - else if (ev->type == SDL_MOUSEBUTTONDOWN) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - if (ev->button.button == SDL_BUTTON_RIGHT) - gp->stat = GP_IDLE; - else if (ev->button.button == SDL_BUTTON_LEFT) { - - if (gp->box_X != gp->cur_X || gp->box_Y != gp->cur_Y) { - - if (gp->box_X > gp->cur_X) { - - N = gp->box_X; - gp->box_X = gp->cur_X; - gp->cur_X = N; - } - - if (gp->box_Y < gp->cur_Y) { - - N = gp->box_Y; - gp->box_Y = gp->cur_Y; - gp->cur_Y = N; - } - - if (abs(gp->box_X - gp->cur_X) >= abs(gp->box_Y - gp->cur_Y)) { - - fmin = plotAxisConvBackward(pl, pl->on_X, gp->box_X); - fmax = plotAxisConvBackward(pl, pl->on_X, gp->cur_X); - - plotAxisScaleManual(pl, pl->on_X, fmin, fmax); - - if (gp->shift_on == 0) { - - plotAxisScaleAutoCond(pl, pl->on_Y, pl->on_X); - } - } - else { - fmin = plotAxisConvBackward(pl, pl->on_Y, gp->box_Y); - fmax = plotAxisConvBackward(pl, pl->on_Y, gp->cur_Y); - - plotAxisScaleManual(pl, pl->on_Y, fmin, fmax); - - if (gp->shift_on == 0) { - - plotAxisScaleAutoCond(pl, pl->on_X, pl->on_Y); - } - } - - pl->axis[pl->on_X].lock_scale = LOCK_FREE; - pl->axis[pl->on_Y].lock_scale = LOCK_FREE; - } - - gp->stat = GP_IDLE; - } - } - else if (ev->type == SDL_MOUSEMOTION) { - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - } - } - else if (gp->stat == GP_BOX_SELECT) { - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_ESCAPE) - gp->stat = GP_IDLE; - } - else if (ev->type == SDL_MOUSEBUTTONDOWN) { - - if (ev->button.button == SDL_BUTTON_RIGHT) - gp->stat = GP_IDLE; - } - else if (ev->type == SDL_MOUSEBUTTONUP) { - - if (ev->button.button == SDL_BUTTON_RIGHT) { - - if (gp->box_X != gp->cur_X && gp->box_Y != gp->cur_Y) { - - if (gp->box_X > gp->cur_X) { - - N = gp->box_X; - gp->box_X = gp->cur_X; - gp->cur_X = N; - } - - if (gp->box_Y < gp->cur_Y) { - - N = gp->box_Y; - gp->box_Y = gp->cur_Y; - gp->cur_Y = N; - } - - fmin = plotAxisConvBackward(pl, pl->on_X, gp->box_X); - fmax = plotAxisConvBackward(pl, pl->on_X, gp->cur_X); - - plotAxisScaleManual(pl, pl->on_X, fmin, fmax); - - fmin = plotAxisConvBackward(pl, pl->on_Y, gp->box_Y); - fmax = plotAxisConvBackward(pl, pl->on_Y, gp->cur_Y); - - plotAxisScaleManual(pl, pl->on_Y, fmin, fmax); - - pl->axis[pl->on_X].lock_scale = LOCK_FREE; - pl->axis[pl->on_Y].lock_scale = LOCK_FREE; - } - else { - gpMenuHandle(gp, 101, 0); - } - - gp->stat = GP_IDLE; - } - } - else if (ev->type == SDL_MOUSEMOTION) { - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - } - } - else if (gp->stat == GP_MENU) { - - SDL_StartTextInput(); - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_ESCAPE) { - - gp->stat = GP_IDLE; - - menuHalt(mu); - SDL_StopTextInput(); - } - else if (ev->key.keysym.sym == SDLK_UP) { - - menuEvent(mu, MENU_EVNO_ARROW_UP, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_DOWN) { - - menuEvent(mu, MENU_EVNO_ARROW_DOWN, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_PAGEUP) { - - menuEvent(mu, MENU_EVNO_PAGE_UP, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_PAGEDOWN) { - - menuEvent(mu, MENU_EVNO_PAGE_DOWN, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_HOME) { - - menuEvent(mu, MENU_EVNO_HOME, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_END) { - - menuEvent(mu, MENU_EVNO_END, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_RETURN) { - - menuEvent(mu, MENU_EVNO_RETURN, gp->cur_X, gp->cur_Y); - - if (mu->clicked) { - - gp->stat = GP_IDLE; - - menuHalt(mu); - SDL_StopTextInput(); - - if (mu->clicked_N != -1) { - - gpMenuHandle(gp, mu->id, mu->clicked_N); - } - } - } - else if (ev->key.keysym.sym == SDLK_BACKSPACE) { - - menuEvent(mu, MENU_EVNO_BACKSPACE, gp->cur_X, gp->cur_Y); - } - } - else if (ev->type == SDL_TEXTINPUT) { - - menuEventText(mu, ev->text.text); - } - else if (ev->type == SDL_MOUSEBUTTONDOWN) { - - if (ev->button.button == SDL_BUTTON_LEFT) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - menuEvent(mu, MENU_EVNO_CLICK, gp->cur_X, gp->cur_Y); - - if (mu->clicked) { - - gp->stat = GP_IDLE; - - menuHalt(mu); - SDL_StopTextInput(); - - if (mu->clicked_N != -1) { - - gpMenuHandle(gp, mu->id, mu->clicked_N); - } - } - } - else if (ev->button.button == SDL_BUTTON_RIGHT) { - - gp->stat = GP_IDLE; - - menuHalt(mu); - SDL_StopTextInput(); - } - } - else if (ev->type == SDL_MOUSEBUTTONUP) { - - if (ev->button.button == SDL_BUTTON_LEFT) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - menuEvent(mu, MENU_EVNO_UNCLICK, gp->cur_X, gp->cur_Y); - } - } - else if (ev->type == SDL_MOUSEMOTION) { - - gp->cur_X = ev->motion.x; - gp->cur_Y = ev->motion.y; - - menuEvent(mu, MENU_EVNO_MOTION, gp->cur_X, gp->cur_Y); - } - else if (ev->type == SDL_MOUSEWHEEL) { - - if (ev->wheel.y > 0) { - - menuEvent(mu, MENU_EVNO_SCROLL_UP, gp->cur_X, gp->cur_Y); - } - else if (ev->wheel.y < 0) { - - menuEvent(mu, MENU_EVNO_SCROLL_DOWN, gp->cur_X, gp->cur_Y); - } - } - } - else if (gp->stat == GP_EDIT) { - - SDL_StartTextInput(); - - if (ev->type == SDL_KEYDOWN) { - - if (ev->key.keysym.sym == SDLK_ESCAPE) { - - gp->stat = GP_IDLE; - - editHalt(ed); - SDL_StopTextInput(); - } - else if (ev->key.keysym.sym == SDLK_LEFT) { - - editEvent(ed, EDIT_EVNO_ARROW_LEFT, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_RIGHT) { - - editEvent(ed, EDIT_EVNO_ARROW_RIGHT, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_RETURN) { - - editEvent(ed, EDIT_EVNO_RETURN, gp->cur_X, gp->cur_Y); - - if (ed->entered) { - - gp->stat = GP_IDLE; - - editHalt(ed); - SDL_StopTextInput(); - - gpEditHandle(gp, ed->id, ed->text); - } - } - else if (ev->key.keysym.sym == SDLK_BACKSPACE) { - - editEvent(ed, EDIT_EVNO_BACKSPACE, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_DELETE) { - - editEvent(ed, EDIT_EVNO_DELETE, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_x && gp->ctrl_on == 1) { - - editEvent(ed, EDIT_EVNO_CTRL_X, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_c && gp->ctrl_on == 1) { - - editEvent(ed, EDIT_EVNO_CTRL_C, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_v && gp->ctrl_on == 1) { - - editEvent(ed, EDIT_EVNO_CTRL_V, gp->cur_X, gp->cur_Y); - } - else if (ev->key.keysym.sym == SDLK_TAB) { - - editEvent(ed, EDIT_EVNO_TAB, gp->cur_X, gp->cur_Y); - } - } - else if (ev->type == SDL_TEXTINPUT && gp->ctrl_on == 0) { - - editEventText(ed, ev->text.text); - } - else if (ev->type == SDL_MOUSEBUTTONDOWN) { - - if (ev->button.button == SDL_BUTTON_LEFT) { - - gp->cur_X = ev->button.x; - gp->cur_Y = ev->button.y; - - editEvent(ed, EDIT_EVNO_CLICK, gp->cur_X, gp->cur_Y); - } - } - } -} - -static void -gpDrawRangeLight(SDL_Surface *surface, gp_t *gp) -{ - plot_t *pl = gp->pl; - - SDL_LockSurface(surface); - - if (abs(gp->box_X - gp->cur_X) >= abs(gp->box_Y - gp->cur_Y)) { - - if (gp->box_X < gp->cur_X) { - - drawClipRect(surface, &pl->viewport, gp->box_X, pl->viewport.min_y, - gp->cur_X, pl->viewport.max_y, pl->sch->plot_hidden); - } - else { - drawClipRect(surface, &pl->viewport, gp->cur_X, pl->viewport.min_y, - gp->box_X, pl->viewport.max_y, pl->sch->plot_hidden); - } - } - else { - if (gp->box_Y < gp->cur_Y) { - - drawClipRect(surface, &pl->viewport, pl->viewport.min_x, gp->box_Y, - pl->viewport.max_x, gp->cur_Y, pl->sch->plot_hidden); - } - else { - drawClipRect(surface, &pl->viewport, pl->viewport.min_x, gp->cur_Y, - pl->viewport.max_x, gp->box_Y, pl->sch->plot_hidden); - } - } - - SDL_UnlockSurface(surface); -} - -static void -gpDrawRangeSelect(SDL_Surface *surface, gp_t *gp) -{ - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - - SDL_LockSurface(surface); - - if (abs(gp->box_X - gp->cur_X) >= abs(gp->box_Y - gp->cur_Y)) { - - drawDashReset(dw); - drawDash(dw, surface, &pl->viewport, gp->box_X, pl->viewport.min_y, - gp->box_X, pl->viewport.max_y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - - drawDashReset(dw); - drawDash(dw, surface, &pl->viewport, gp->cur_X, pl->viewport.min_y, - gp->cur_X, pl->viewport.max_y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - } - else { - drawDashReset(dw); - drawDash(dw, surface, &pl->viewport, pl->viewport.min_x, gp->box_Y, - pl->viewport.max_x, gp->box_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - - drawDashReset(dw); - drawDash(dw, surface, &pl->viewport, pl->viewport.min_x, gp->cur_Y, - pl->viewport.max_x, gp->cur_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - } - - SDL_UnlockSurface(surface); -} - -static void -gpDrawBoxLight(SDL_Surface *surface, gp_t *gp) -{ - plot_t *pl = gp->pl; - int min_X, min_Y, max_X, max_Y; - - SDL_LockSurface(surface); - - if (gp->box_X < gp->cur_X) { - - min_X = gp->box_X; - max_X = gp->cur_X; - } - else { - min_X = gp->cur_X; - max_X = gp->box_X; - } - - if (gp->box_Y < gp->cur_Y) { - - min_Y = gp->box_Y; - max_Y = gp->cur_Y; - } - else { - min_Y = gp->cur_Y; - max_Y = gp->box_Y; - } - - drawClipRect(surface, &pl->viewport, min_X, min_Y, - max_X, max_Y, pl->sch->plot_hidden); - - SDL_UnlockSurface(surface); -} - -static void -gpDrawBoxSelect(SDL_Surface *surface, gp_t *gp) -{ - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - - SDL_LockSurface(surface); - - drawDash(dw, surface, &pl->viewport, gp->box_X, gp->box_Y, - gp->cur_X, gp->box_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - drawDash(dw, surface, &pl->viewport, gp->box_X, gp->box_Y, - gp->box_X, gp->cur_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - drawDash(dw, surface, &pl->viewport, gp->cur_X, gp->cur_Y, - gp->cur_X, gp->box_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - drawDash(dw, surface, &pl->viewport, gp->cur_X, gp->cur_Y, - gp->box_X, gp->cur_Y, pl->sch->plot_text, - pl->layout_fence_dash, pl->layout_fence_space); - - SDL_UnlockSurface(surface); -} - -static void -gpFPSUpdate(gp_t *gp) -{ - gp->i_frames += 1; - - if (gp->i_clocked < gp->clock) { - - gp->i_FPS = gp->i_frames; - gp->i_frames = 0; - gp->i_clocked = gp->clock + 1000; - } -} - -gp_t *gp_Alloc() -{ - gp_t *gp; - scheme_t *sch; - lang_t *la; - draw_t *dw; - plot_t *pl; - read_t *rd; - menu_t *mu; - edit_t *ed; - - gp = (gp_t *) calloc(1, sizeof(gp_t)); - - sch = (scheme_t *) calloc(1, sizeof(scheme_t)); - gp->sch = sch; - - la = (lang_t *) calloc(1, sizeof(lang_t)); - gp->la = la; - - dw = (draw_t *) calloc(1, sizeof(draw_t)); - gp->dw = dw; - - dw->antialiasing = DRAW_4X_MSAA; - dw->blendfont = 1; - dw->thickness = 1; - dw->gamma = 50; - - pl = plotAlloc(dw, sch); - gp->pl = pl; - - rd = readAlloc(dw, pl); - gp->rd = rd; - pl->ld = rd; - - mu = menuAlloc(dw, sch); - gp->mu = mu; - - ed = editAlloc(dw, sch); - gp->ed = ed; - - gp->hinting = 2; - - gp->cwd[0] = '.'; - gp->cwd[1] = 0; - - gpFileGetPath(gp); - - if (gp->rcfile[0] != 0) { - - if (gpFileExist(gp->rcfile) == 0) { - - gpDefaultFile(gp); - } - - if (gpFileExist(gp->rcfile) != 0) { - - readConfigGP(rd, gp->rcfile, 0); - } - else { - gpFileGetLocal(gp); - - if (gpFileExist(gp->rcfile) == 0) { - - gpDefaultFile(gp); - } - - if (gpFileExist(gp->rcfile) != 0) { - - readConfigGP(rd, gp->rcfile, 0); - } - } - - if (rd->config_version < GP_CONFIG_VERSION) { - - gpDefaultFile(gp); - - if (gpFileExist(gp->rcfile) != 0) { - - readConfigGP(rd, gp->rcfile, 0); - } - } - } - - return gp; -} - -void gp_Clean(gp_t *gp) -{ - scheme_t *sch = gp->sch; - lang_t *la = gp->la; - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - if (gp->surface != NULL) { - - SDL_FreeSurface(gp->surface); - } - - if (gp->window != NULL) { - - SDL_DestroyWindow(gp->window); - } - - plotClean(pl); - readClean(rd); - menuClean(mu); - editClean(ed); - - free(sch); - free(la); - free(dw); - free(gp); -} - -void gp_TakeConfig(gp_t *gp, const char *config) -{ - readConfigIN(gp->rd, config, 0); -} - -int gp_OpenWindow(gp_t *gp) -{ - scheme_t *sch = gp->sch; - lang_t *la = gp->la; - read_t *rd = gp->rd; - - if (gp->window_ID != 0) { - - return gp->window_ID; - } - - readConfigVerify(rd); - - gp->window = SDL_CreateWindow("GP", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, - rd->window_size_x, rd->window_size_y, SDL_WINDOW_RESIZABLE); - - if (gp->window == NULL) { - - ERROR("SDL_CreateWindow: %s\n", SDL_GetError()); - } - - gp->window_ID = SDL_GetWindowID(gp->window); - - if (gp->window_ID == 0) { - - ERROR("SDL_GetWindowID: %s\n", SDL_GetError()); - } - - SDL_SetWindowMinimumSize(gp->window, GP_MIN_SIZE_X, GP_MIN_SIZE_Y); - SDL_StopTextInput(); - - gp->fb = SDL_GetWindowSurface(gp->window); - - if (gp->fb == NULL) { - - ERROR("SDL_GetWindowSurface: %s\n", SDL_GetError()); - } - - gp->surface = SDL_CreateRGBSurfaceWithFormat(0, gp->fb->w, - gp->fb->h, 32, SDL_PIXELFORMAT_XRGB8888); - - if (gp->surface == NULL) { - - ERROR("SDL_CreateRGBSurfaceWithFormat: %s\n", SDL_GetError()); - } - - gpFontHinting(gp); - - gpFontLayout(gp); - gpScreenLayout(gp); - - gp->stat = GP_IDLE; - gp->active = 1; - - langFill(la, rd->language); - schemeFill(sch, rd->colorscheme); - - readSelectPage(rd, 1); - - drawGamma(gp->dw); - - return gp->window_ID; -} - -void gp_TakeEvent(gp_t *gp, const SDL_Event *ev) -{ - if (ev->window.windowID == gp->window_ID) { - - gpEventHandle(gp, ev); - - gp->active = 1; - } -} - -int gp_IsQuit(gp_t *gp) -{ - return gp->done; -} - -int gp_Draw(gp_t *gp) -{ - scheme_t *sch = gp->sch; - draw_t *dw = gp->dw; - plot_t *pl = gp->pl; - read_t *rd = gp->rd; - menu_t *mu = gp->mu; - edit_t *ed = gp->ed; - - gp->clock = SDL_GetTicks(); - gp->drawn = 0; - - if (rd->files_N != 0) { - - if (readUpdate(rd) != 0) { - - gp->active = 1; - } - } - else { - plotAxisScaleLock(pl, LOCK_FREE); - } - - if (gp->i_show_fps != 0) { - - gp->active = 1; - } - - if (gp->active != 0) { - - gp->idled = 0; - } - - if (gp->updated + 250 < gp->clock) { - - gp->idled += 1; - gp->active = (gp->idled < 20) ? 1 : 0; - } - - if (gp->active != 0) { - - gp->unfinished = 1; - - gp->updated = gp->clock; - gp->active = 0; - } - - if (gp->unfinished != 0) { - - int t0, t1; - - SDL_LockSurface(gp->surface); - - drawClearSurface(gp->dw, gp->surface, pl->sch->plot_background); - - SDL_UnlockSurface(gp->surface); - - plotLayout(pl); - plotAxisScaleDefault(pl); - - if (gp->stat == GP_RANGE_SELECT) { - - if (gp->shift_on == 0) { - - gpDrawRangeLight(gp->surface, gp); - } - } - else if (gp->stat == GP_BOX_SELECT) { - - gpDrawBoxLight(gp->surface, gp); - } - - if ( rd->fastdraw != 0 - && dw->antialiasing != DRAW_SOLID) { - - t0 = SDL_GetTicks(); - } - - plotDraw(pl, gp->surface); - - if ( rd->fastdraw != 0 - && dw->antialiasing != DRAW_SOLID) { - - t1 = SDL_GetTicks(); - - gp->level += (t1 - t0 > rd->fastdraw) ? 1 - : (gp->level > 0) ? - 1 : 0; - - if (gp->level > 4) { - - dw->antialiasing = DRAW_SOLID; - gp->level = 0; - } - } - - if (gp->stat == GP_RANGE_SELECT) { - - gpDrawRangeSelect(gp->surface, gp); - } - else if (gp->stat == GP_BOX_SELECT) { - - gpDrawBoxSelect(gp->surface, gp); - } - - if (gp->hover_box) { - - drawFillRect(gp->surface, pl->screen.min_x, - pl->screen.min_y - gp->layout_page_box, - pl->screen.max_x, pl->screen.min_y, - pl->sch->plot_hovered); - } - - gpTextLeftCrop(pl, gp->sbuf[1], rd->page[rd->page_N].title, - gp->layout_menu_page_margin); - - sprintf(gp->sbuf[0], "%3d %s", rd->page_N, gp->sbuf[1]); - - drawText(gp->dw, gp->surface, pl->font, (pl->screen.min_x + pl->screen.max_x) / 2, - pl->screen.min_y + gp->layout_page_title_offset, gp->sbuf[0], - TEXT_CENTERED, sch->plot_text); - - menuDraw(mu, gp->surface); - editDraw(ed, gp->surface); - - if (gp->i_show_fps != 0) { - - int len, jam; - - len = plotGetSketchLength(pl); - - sprintf(gp->sbuf[0], "L %4d FPS %2d", len, gp->i_FPS); - - TTF_SizeUTF8(pl->font, gp->sbuf[0], &len, &jam); - - drawFillRect(gp->surface, pl->screen.max_x - (len + 12), - pl->screen.min_y - gp->layout_page_box, - pl->screen.max_x, pl->screen.min_y, - pl->sch->plot_background); - - drawText(gp->dw, gp->surface, pl->font, pl->screen.max_x - (len + 6), - pl->screen.min_y + gp->layout_page_title_offset, - gp->sbuf[0], TEXT_CENTERED_ON_Y, 0xFF2222); - } - - SDL_BlitSurface(gp->surface, NULL, gp->fb, NULL); - SDL_UpdateWindowSurface(gp->window); - - gpFPSUpdate(gp); - - if (pl->draw_in_progress == 0) { - - gp->unfinished = 0; - } - - gp->drawn = 1; - } - - gpTakeScreen(gp); - gpYankScreen(gp); - - return gp->drawn; -} - -#ifndef _EMBED_GP -static void -gpHelp(gp_t *gp) -{ - printf( "Usage: gp [-0kult] [filename] ...\n" - " -0 Open stdin text stream\n" - " -k# Chunk size in bytes\n" - " -u# Waiting timeout in msec\n" - " -l# Data length to allocate\n" - " -t# Time column default\n"); -} - -static void -gpGetOPT(gp_t *gp, char *argv[]) -{ - read_t *rd = gp->rd; - - char *op; - int argi; - - int n = 1; - - while (argv[n] != NULL) { - - if (argv[n][0] == '-') { - - op = &argv[n][1]; - - while (*op != 0) { - - if (*op == 'h') { - - gpHelp(gp); - exit(0); - } - else if (*op == '0') { - - sprintf(gp->sbuf[0], "load 0 0 stdin\n" - "mkpages -2\n"); - - readConfigIN(rd, gp->sbuf[0], 0); - } - else if (*op == 'k') { - - op++; - - if (*op == 0) { - - if (argv[n + 1] == NULL) - break; - - n++; - op = argv[n]; - } - - if (stoi(&rd->mk_config, &argi, op) != NULL) { - - if (argi > 0) { - - rd->chunk = argi; - } - } - } - else if (argv[n][1] == 'u') { - - op++; - - if (*op == 0) { - - if (argv[n + 1] == NULL) - break; - - n++; - op = argv[n]; - } - - if (stoi(&rd->mk_config, &argi, op) != NULL) { - - if (argi >= 0) { - - rd->timeout = argi; - } - } - } - else if (argv[n][1] == 'l') { - - op++; - - if (*op == 0) { - - if (argv[n + 1] == NULL) - break; - - n++; - op = argv[n]; - } - - if (stoi(&rd->mk_config, &argi, op) != NULL) { - - if (argi > 0) { - - rd->length_N = argi; - } - } - } - else if (argv[n][1] == 't') { - - op++; - - if (*op == 0) { - - if (argv[n + 1] == NULL) - break; - - n++; - op = argv[n]; - } - - if (stoi(&rd->mk_config, &argi, op) != NULL) { - - if (argi >= -1 && argi < READ_COLUMN_MAX) { - - rd->timecol = argi; - } - } - } - else { - ERROR("Unknown option \"%c\"\n", *op); - } - - op++; - } - } - else { - if (strlen(argv[n]) >= READ_FILE_PATH_MAX) { - - ERROR("Too long input file names\n"); - break; - } -#ifdef _WINDOWS - legacy_ACP_to_UTF8(gp->tempfile, argv[n], READ_FILE_PATH_MAX); -#else /* _WINDOWS */ - strcpy(gp->tempfile, argv[n]); -#endif - gpUnifiedFileOpen(gp, gp->tempfile, 0); - } - - n++; - } -} - -int main(int argn, char *argv[]) -{ - gp_t *gp; - - setlocale(LC_NUMERIC, "C"); - - if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) < 0) { - - ERROR("SDL_Init: %s\n", SDL_GetError()); - - return 1; - } - - if (TTF_Init() < 0) { - - ERROR("TTF_Init: %s\n", SDL_GetError()); - - return 1; - } - - IMG_Init(IMG_INIT_PNG); - - gp = gp_Alloc(); - - if (argn >= 2) { - - gpGetOPT(gp, argv); - } - else { - gpMakeHello(gp); - } - - gp_OpenWindow(gp); - - while (gp_IsQuit(gp) == 0) { - - SDL_Event ev; - - while (SDL_PollEvent(&ev) != 0) { - - gp_TakeEvent(gp, &ev); - } - - if (gp_Draw(gp) == 0) { - - SDL_Delay(10); - } - } - - gp_Clean(gp); - - SDL_Quit(); - - return 0; -} -#endif /* _EMBED_GP */ - diff --git a/phobia/gp/gp.h b/phobia/gp/gp.h deleted file mode 100644 index be065c8..0000000 --- a/phobia/gp/gp.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_GP_ -#define _H_GP_ - -#include -#include - -struct gp_struct; - -typedef struct gp_struct gp_t; - -gp_t *gp_Alloc(); -void gp_Clean(gp_t *gp); - -void gp_TakeConfig(gp_t *gp, const char *config); -int gp_OpenWindow(gp_t *gp); - -void gp_TakeEvent(gp_t *gp, const SDL_Event *ev); -int gp_IsQuit(gp_t *gp); -int gp_Draw(gp_t *gp); - -#endif /* _H_GP_ */ - diff --git a/phobia/gp/lang.c b/phobia/gp/lang.c deleted file mode 100644 index fad2a50..0000000 --- a/phobia/gp/lang.c +++ /dev/null @@ -1,430 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include "lang.h" - -void langFill(lang_t *la, int lang) -{ - if (lang == LANG_EN) { - - la->global_menu = - - " Zoom ...\0" - " Edit page label ...\0" - "P Take a screenshot\0" - "F Fullscreen mode toggle\0" - " Appearance ...\0" - " Data management ...\0" - "En Go to the page ...\0" - "C Combine with page ...\0" - "B No remap combine ...\0" - "R Create subtraction\0" - "M Place figure markers\0" - "T Data slice (on X)\0" - "K Compact axes mode\0" - "E Exponential mode\0" - "Y Copy to clipboard\0" - " Language ...\0" - " About ...\0" - " Quit\0" - - "\0"; - - la->global_zoom_menu = - - "A Auto fit to page\0" - "Q Equal scales\0" - "G Grid align\0" - "W Stacked on Y\0" - - "\0"; - - la->global_appearance_menu = - - "L Change a colorscheme [ %s ] \0" - " Change a font [ %s ]\0" - " Drawing antialiasing [ %s ]\0" - " Solid font [ %s ]\0" - " Grid thickness [ %s ]\0" - " Font size [ %s ]\0" - " Gamma correction [ %s ]\0" - " Marker layout [ %s ]\0" - - "\0"; - - la->global_data_menu = - - "U Reload all data files\0" - "J Calculate all subtract\0" - "O Open data file ...\0" - "D Dataset customization ...\0" - " Configuration file ...\0" - - "\0"; - - la->global_config_menu = - - " Write configuration\0" - " Default configuration\0" - " Edit configuration ...\0" - - "\0"; - - la->dataset_menu[0] = " Time column [ %3i ]"; - la->dataset_menu[1] = " Time median [ %s ]"; - la->dataset_menu[2] = " Time unwrap [ %s ]"; - la->dataset_menu[3] = " Data median [ %s ]"; - la->dataset_menu[4] = " Time scale [ %s ]"; - la->dataset_menu[5] = " Length [ %3i ] %iM (%i%%) cache %iM"; - la->dataset_menu[6] = " Close file"; - - la->axis_menu = - - " Zoom ...\0" - "S Slave mode\0" - "X Remove the axis\0" - "T Data slice\0" - "K Compact mode [ %s ]\0" - "E Exponential mode [ %s ]\0" - " Ticks lock [ %s ]\0" - " Label ...\0" - - "\0"; - - la->axis_zoom_menu = - - "A Auto fit to page\0" - " Selective auto fit\0" - " Copy scale from active\0" - " Edit ...\0" - - "\0"; - - la->figure_menu = - - " Move to active axes\0" - " Create individual axes\0" - "X Remove the figure\0" - " Subtract operation ...\0" - " Edit the figure ...\0" - - "\0"; - - la->figure_edit_menu = - - " Drawing ...\0" - " Thickness ...\0" - " Color ...\0" - " Data X ...\0" - " Data Y ...\0" - " Label ...\0" - - "\0"; - - la->figure_edit_drawing_menu = - - " Line 1p\0" - " Line 2p\0" - " Line 4p\0" - " Line 6p\0" - " Dash 1p\0" - " Dash 2p\0" - " Dash 4p\0" - " Dash 6p\0" - " Dot 1p\0" - " Dot 2p\0" - " Dot 4p\0" - " Dot 6p\0" - - "\0"; - - la->figure_operation_menu = - - " Duplicate figure\0" - " Time median\0" - " Resample all\0" - " Scale on X ...\0" - " Scale on Y ...\0" - " Add P polynomial ...\0" - "R Add B subtraction\0" - " Add B addition\0" - " Add B multiplication\0" - " Add B hypotenuse\0" - " Add F differences\0" - " Add F cumulative sum\0" - " Add F bit field ...\0" - " Add F low pass ...\0" - " Add F median ...\0" - - "\0"; - - la->legend_menu = - - " Drawing primitive ...\0" - " Scale on X ...\0" - " Scale on Y ...\0" - " Bake figures to CSV ...\0" - " Transparency mode [ %s ]\0" - " Hidden legend [ %s ]\0" - - "\0"; - - la->databox_menu = - - " Close data window\0" - " Copy to clipboard\0" - - "\0"; - - la->cancel_menu = - - " Cancel\0" - " OK\0" - - "\0"; - - la->page_label_edit = "Page Label"; - la->figure_label_edit = "Figure Label"; - la->axis_label_edit = "Axis Label"; - la->scale_offset_edit = "Scale and Offset"; - la->file_name_edit = "File Name"; - la->bit_number_edit = "Bit Range"; - la->low_pass_edit = "Low Pass Gain"; - la->polynomial_edit = "Degree of polynomial"; - la->length_edit = "Length"; - la->figure_thickness_edit = "Thickness"; - la->font_size_edit = "Font size"; - la->median_unwrap_edit = "Median and unwrap flags"; - la->marker_density_edit = "Density and Size"; - la->gamma_edit = "Gamma"; - } - else if (lang == LANG_RU) { - - la->global_menu = - - " Масштаб ...\0" - " Изменить текст заголовка ...\0" - "P Сделать снимок\0" - "F Режим полного экрана\0" - " Внешний вид ...\0" - " Управление данными ...\0" - "En Перейти к странице ...\0" - "C Комбинировать страницы ...\0" - "B Без переназначения ...\0" - "R Создать вычитание\0" - "M Разместить маркеры фигур\0" - "T Нарезка данных (по X)\0" - "K Режим компактных осей\0" - "E Экспонентный режим\0" - "Y Копировать в буфер обмена\0" - " Язык ...\0" - " О программе ...\0" - " Выход\0" - - "\0"; - - la->global_zoom_menu = - - "A Автоматически на всю страницу\0" - "Q Одинаковый масштаб по осям\0" - "G Выравнивание сетки\0" - "W Укладка стопкой по Y\0" - - "\0"; - - la->global_appearance_menu = - - "L Сменить цветовую схему [ %s ] \0" - " Переключение шрифтов [ %s ]\0" - " Сглаживание рисования [ %s ]\0" - " Сплошной шрифт [ %s ]\0" - " Толщина сетки [ %s ]\0" - " Размер шрифта [ %s ]\0" - " Гамма коррекция [ %s ]\0" - " Разметка маркеров [ %s ]\0" - - "\0"; - - la->global_data_menu = - - "U Перезагрузить все данные\0" - "J Вычислить все операции\0" - "O Открыть файл данных ...\0" - "D Настройка наборов данных ...\0" - " Файл конфигурации ...\0" - - "\0"; - - la->global_config_menu = - - " Записать конфигурацию\0" - " Сбросить конфигурацию\0" - " Редактировать конфигурацию ...\0" - - "\0"; - - la->dataset_menu[0] = " Столбец времени [ %3i ]"; - la->dataset_menu[1] = " Медиана времени [ %s ]"; - la->dataset_menu[2] = " Разворот времени [ %s ]"; - la->dataset_menu[3] = " Медиана данных [ %s ]"; - la->dataset_menu[4] = " Масштаб времени [ %s ]"; - la->dataset_menu[5] = " Длина [ %3i ] %iM (%i%%) кэш %iM"; - la->dataset_menu[6] = " Закрыть файл"; - - la->axis_menu = - - " Масштаб ...\0" - "S Подчиненный режим\0" - "X Удалить эту ось\0" - "T Нарезка данных\0" - "K Компактный режим [ %s ]\0" - "E Экспонентный режим [ %s ]\0" - " Блокировка линейки [ %s ]\0" - " Текст ...\0" - - "\0"; - - la->axis_zoom_menu = - - "A Автоматически на всю страницу\0" - " Выборочный масштаб\0" - " Копировать с активной оси\0" - " Редактировать ...\0" - - "\0"; - - la->figure_menu = - - " Переместить на активные оси\0" - " Создать индивидуальные оси\0" - "X Удалить фигуру\0" - " Операции вычитания ...\0" - " Редактировать фигуру ...\0" - - "\0"; - - la->figure_edit_menu = - - " Рисование ...\0" - " Толщина ...\0" - " Цвет ...\0" - " Данные X ...\0" - " Данные Y ...\0" - " Текст ...\0" - - "\0"; - - la->figure_edit_drawing_menu = - - " Линия 1п\0" - " Линия 2п\0" - " Линия 4п\0" - " Линия 6п\0" - " Черта 1п\0" - " Черта 2п\0" - " Черта 4п\0" - " Черта 6п\0" - " Точка 1п\0" - " Точка 2п\0" - " Точка 4п\0" - " Точка 6п\0" - - "\0"; - - la->figure_operation_menu = - - " Дублировать фигуру\0" - " Медиана времени\0" - " Передискретизация\0" - " Масштаб по X ...\0" - " Масштаб по Y ...\0" - " Добавить P полином ...\0" - "R Добавить B вычитание\0" - " Добавить B сложение\0" - " Добавить B умножение\0" - " Добавить B гипотенуза\0" - " Добавить F разности\0" - " Добавить F накопленная сумма\0" - " Добавить F битовое поле ...\0" - " Добавить F фильтр НЧ ...\0" - " Добавить F медиану ...\0" - - "\0"; - - la->legend_menu = - - " Примитив рисования ...\0" - " Масштаб по X ...\0" - " Масштаб по Y ...\0" - " Запечь фигуры в CSV ...\0" - " Режим прозрачности [ %s ]\0" - " Скрытая легенда [ %s ]\0" - - "\0"; - - la->databox_menu = - - " Закрыть окно данных\0" - " Копировать в буфер обмена\0" - - "\0"; - - la->cancel_menu = - - " Отмена\0" - " OK\0" - - "\0"; - - la->page_label_edit = "Текст Заголовка"; - la->figure_label_edit = "Текст Фигуры"; - la->axis_label_edit = "Текст Оси"; - la->scale_offset_edit = "Масштаб и Смещение"; - la->file_name_edit = "Имя Файла"; - la->bit_number_edit = "Дипазон Разрядов"; - la->low_pass_edit = "Коэффициент НЧ фильтра"; - la->polynomial_edit = "Степень полинома"; - la->length_edit = "Длина"; - la->figure_thickness_edit = "Толщина"; - la->font_size_edit = "Размер шрифта"; - la->median_unwrap_edit = "Медиана и флаги разворота"; - la->marker_density_edit = "Плотность и Размер"; - la->gamma_edit = "Гамма"; - } - - la->figure_edit_color_menu = - - " \0" - " \0" - " \0" - " \0" - " \0" - " \0" - " \0" - " \0" - - "\0"; - - la->global_lang_menu = - - " English\0" - " Russian (Русский)\0" - - "\0"; -} - diff --git a/phobia/gp/lang.h b/phobia/gp/lang.h deleted file mode 100644 index a539837..0000000 --- a/phobia/gp/lang.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_LANG_ -#define _H_LANG_ - -typedef struct { - - const char *global_menu; - const char *global_zoom_menu; - const char *global_appearance_menu; - const char *global_data_menu; - const char *global_config_menu; - const char *global_lang_menu; - const char *dataset_menu[7]; - - const char *axis_menu; - const char *axis_zoom_menu; - const char *figure_menu; - const char *figure_edit_menu; - const char *figure_edit_drawing_menu; - const char *figure_edit_color_menu; - const char *figure_operation_menu; - const char *legend_menu; - const char *databox_menu; - const char *cancel_menu; - - const char *page_label_edit; - const char *figure_label_edit; - const char *axis_label_edit; - const char *scale_offset_edit; - const char *file_name_edit; - const char *bit_number_edit; - const char *low_pass_edit; - const char *polynomial_edit; - const char *length_edit; - const char *figure_thickness_edit; - const char *font_size_edit; - const char *median_unwrap_edit; - const char *marker_density_edit; - const char *gamma_edit; -} -lang_t; - -enum { - LANG_EN = 0, - LANG_RU, - LANG_END_OF_LIST -}; - -void langFill(lang_t *la, int lang); - -#endif /* _H_LANG_ */ - diff --git a/phobia/gp/lse.c b/phobia/gp/lse.c deleted file mode 100644 index 3067cd3..0000000 --- a/phobia/gp/lse.c +++ /dev/null @@ -1,627 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include - -#include "lse.h" - -#if LSE_FAST_TRANSFORM != 0 -/* Define the maixmal allowed scale of the fast transformation. The input data - * range is reduced by this number. Large number allows us to do scaling rarely. - * */ -#define LSE_DMAX ((lse_float_t) 1048576) -#endif /* LSE_FAST_TRANSFORM */ - -/* Define what external math functions to use in LSE. - * */ -#define lse_fabsf(x) fabs(x) -#define lse_sqrtf(x) sqrt(x) - -static void -#if LSE_FAST_TRANSFORM != 0 -lse_qrupdate(lse_t *ls, lse_upper_t *rm, lse_float_t *xz, lse_float_t d0, int nz) -#else /* LSE_FAST_TRANSFORM */ -lse_qrupdate(lse_t *ls, lse_upper_t *rm, lse_float_t *xz, int nz) -#endif -{ - lse_float_t *m = rm->m; -#if LSE_FAST_TRANSFORM != 0 - lse_float_t *d = rm->d; -#endif /* LSE_FAST_TRANSFORM */ - - lse_float_t x0, xi, alpa, beta; - int n, i, j; - -#if LSE_FAST_TRANSFORM != 0 - lse_float_t di; -#endif /* LSE_FAST_TRANSFORM */ - - n = (rm->len < rm->keep) ? rm->len : rm->keep; - - /* Do we have leading zeros? - * */ - if (nz > 0) { - - m += nz * rm->len - nz * (nz - 1) / 2; - } - - for (i = nz; i < n; ++i) { - - m += - i; - - x0 = - xz[i]; - xi = m[i]; - - if (x0 != (lse_float_t) 0) { - -#if LSE_FAST_TRANSFORM != 0 - di = d[i]; - - /* We build the fast Givens transformation. - * */ - alpa = x0 * di; - beta = xi * d0; - - if (x0 * alpa < xi * beta) { - - beta = - alpa / beta; - alpa = x0 / xi; - - m[i] = m[i] + beta * xz[i]; - - for (j = i + 1; j < rm->len; ++j) { - - xi = m[j] + beta * xz[j]; - x0 = alpa * m[j] + xz[j]; - - xz[j] = x0; - m[j] = xi; - } - - x0 = (lse_float_t) 1 - alpa * beta; - - d[i] = di * x0; - d0 = d0 * x0; - } - else { - beta = - beta / alpa; - alpa = xi / x0; - - m[i] = beta * m[i] + xz[i]; - - for (j = i + 1; j < rm->len; ++j) { - - xi = beta * m[j] + xz[j]; - x0 = m[j] + alpa * xz[j]; - - xz[j] = x0; - m[j] = xi; - } - - x0 = (lse_float_t) 1 - alpa * beta; - - d[i] = d0 * x0; - d0 = di * x0; - } - - /* Keep diagonal is in allowed range. - * */ - if (d[i] > LSE_DMAX * LSE_DMAX) { - - alpa = (lse_float_t) 1 / LSE_DMAX; - - for (j = i; j < rm->len; ++j) { - - x0 = m[j]; - m[j] = x0 * alpa; - } - - d[i] *= (alpa * alpa); - } - - if (d0 > LSE_DMAX * LSE_DMAX) { - - alpa = (lse_float_t) 1 / LSE_DMAX; - - for (j = i + 1; j < rm->len; ++j) { - - x0 = xz[j]; - xz[j] = x0 * alpa; - } - - d0 *= (alpa * alpa); - } -#else /* LSE_FAST_TRANSFORM */ - - /* WARNING: We use naive hypot implementation as it is - * the fastest one and quite ulp-accurate. - */ - alpa = lse_sqrtf(x0 * x0 + xi * xi); - beta = (lse_float_t) 1 / alpa; - - m[i] = alpa; - - /* We build the orthogonal transformation. - * */ - alpa = x0 * beta; - beta = xi * beta; - - for (j = i + 1; j < rm->len; ++j) { - - xi = beta * m[j] - alpa * xz[j]; - x0 = alpa * m[j] + beta * xz[j]; - - xz[j] = x0; - m[j] = xi; - } -#endif /* LSE_FAST_TRANSFORM */ - } - - m += rm->len; - } - - if (n < rm->len) { - - m += - n; - - if (rm->lazy != 0) { - - /* We merge the retained row-vector into the upper - * cascade matrix before copying the new content. - * */ -#if LSE_FAST_TRANSFORM != 0 - lse_qrupdate(ls, rm + 1, m, d[n], n); -#else /* LSE_FAST_TRANSFORM */ - lse_qrupdate(ls, rm + 1, m, n); -#endif - } - - /* Copy the tail content. - * */ - for (i = n; i < rm->len; ++i) - m[i] = xz[i]; - -#if LSE_FAST_TRANSFORM != 0 - d[n] = d0; -#endif /* LSE_FAST_TRANSFORM */ - } - - rm->keep += 1; - - if (rm->keep >= ls->n_threshold) { - - if (rm < ls->rm + ls->n_cascades - 1) { - - /* Mark the cascade matrix content as lazily merged. - * */ - rm->keep = 0; - rm->lazy = 1; - } - else { - /* Update the threshold value based on amount of data - * rows in top cascade. - * */ - ls->n_threshold = (rm->keep > ls->n_threshold) - ? rm->keep : ls->n_threshold; - } - } -} - -static void -lse_qrmerge(lse_t *ls, lse_upper_t *rm) -{ - lse_float_t *m = rm->m; -#if LSE_FAST_TRANSFORM != 0 - lse_float_t *d = rm->d; -#endif /* LSE_FAST_TRANSFORM */ - - int n0, i; - - n0 = (rm->lazy != 0) ? rm->len - : (rm->len < rm->keep) ? rm->len : rm->keep; - - for (i = 0; i < n0; ++i) { - - m += - i; - - /* We extract one by one the row-vectors from cascade - * matrix and merge them into the upper cascade matrix. - * */ -#if LSE_FAST_TRANSFORM != 0 - lse_qrupdate(ls, rm + 1, m, d[i], i); -#else /* LSE_FAST_TRANSFORM */ - lse_qrupdate(ls, rm + 1, m, i); -#endif - - m += rm->len; - } - - rm->keep = 0; - rm->lazy = 0; -} - -int lse_getsize(int n_cascades, int n_full) -{ - int n_lse_len, n_vma_len; - - n_lse_len = sizeof(lse_t) - sizeof(((lse_t *) 0)->vm); - - n_vma_len = n_cascades * n_full * (n_full + 1) / 2 - -#if LSE_FAST_TRANSFORM != 0 - + n_cascades * n_full -#endif /* LSE_FAST_TRANSFORM */ - - + n_full * n_full / 4 + n_full / 2 + 1; - - return n_lse_len + sizeof(lse_float_t) * n_vma_len; -} - -void lse_construct(lse_t *ls, int n_cascades, int n_len_of_x, int n_len_of_z) -{ - lse_float_t *vm = ls->vm; - - int i, n_full; - - ls->n_cascades = n_cascades; - ls->n_len_of_x = n_len_of_x; - ls->n_len_of_z = n_len_of_z; - - n_full = n_len_of_x + n_len_of_z; - - ls->n_threshold = n_full * 10; - ls->n_total = 0; - - for (i = 0; i < ls->n_cascades; ++i) { - - ls->rm[i].len = n_full; - ls->rm[i].keep = 0; - ls->rm[i].lazy = 0; - ls->rm[i].m = vm; - - vm += n_full * (n_full + 1) / 2; - -#if LSE_FAST_TRANSFORM != 0 - ls->rm[i].d = vm; - vm += n_full; -#endif /* LSE_FAST_TRANSFORM */ - } - - ls->sol.len = ls->n_len_of_x * ls->n_len_of_z; - ls->sol.m = vm; - - ls->std.len = ls->n_len_of_z; - ls->std.m = vm + ls->sol.len; - - ls->esv.max = (lse_float_t) 0; - ls->esv.min = (lse_float_t) 0; -} - -void lse_insert(lse_t *ls, lse_float_t *xz) -{ -#if LSE_FAST_TRANSFORM != 0 - lse_qrupdate(ls, ls->rm, xz, (lse_float_t) 1, 0); -#else /* LSE_FAST_TRANSFORM */ - lse_qrupdate(ls, ls->rm, xz, 0); -#endif - - ls->n_total += 1; -} - -void lse_ridge(lse_t *ls, lse_float_t la) -{ - lse_float_t *xz = ls->sol.m; - - int i, j; - - /* Add bias using the unit matrix multiplied by \la. - * */ - for (i = 0; i < ls->n_len_of_x; ++i) { - - xz[i] = la; - - for (j = i + 1; j < ls->rm[0].len; ++j) - xz[j] = (lse_float_t) 0; - -#if LSE_FAST_TRANSFORM != 0 - lse_qrupdate(ls, ls->rm, xz, (lse_float_t) 1, i); -#else /* LSE_FAST_TRANSFORM */ - lse_qrupdate(ls, ls->rm, xz, i); -#endif - } -} - -void lse_forget(lse_t *ls, lse_float_t la) -{ - lse_upper_t *rm; - - int n0, i, j, len; - - for (i = 0; i < ls->n_cascades; ++i) { - - rm = &ls->rm[i]; - - n0 = (rm->lazy != 0) ? rm->len - : (rm->len < rm->keep) ? rm->len : rm->keep; - - if (n0 != 0) { - - len = n0 * rm->len - n0 * (n0 - 1) / 2; - - /* We just scale \R matrices with factor \la. - * */ - for (j = 0; j < len; ++j) - rm->m[j] *= la; - } - } -} - -static void -lse_merge(lse_t *ls) -{ - lse_upper_t *rm = ls->rm + ls->n_cascades - 1; - - int i, len, nul; - - for (i = 0; i < ls->n_cascades - 1; ++i) { - - /* We merge all cascades into the top \R matrix. - * */ - lse_qrmerge(ls, ls->rm + i); - } - - if (rm->keep < rm->len) { - - /* Zero out uninitialized tail content. - * */ - len = rm->keep * rm->len - rm->keep * (rm->keep - 1) / 2; - nul = rm->len * (rm->len + 1) / 2; - - for (i = len; i < nul; ++i) - rm->m[i] = (lse_float_t) 0; - -#if LSE_FAST_TRANSFORM != 0 - for (i = rm->keep; i < rm->len; ++i) - rm->d[i] = (lse_float_t) 1; -#endif /* LSE_FAST_TRANSFORM */ - - rm->keep = rm->len; - } -} - -void lse_solve(lse_t *ls) -{ - lse_upper_t *rm = ls->rm + ls->n_cascades - 1; - - lse_float_t *sol = ls->sol.m; - lse_float_t *mq, *m, u; - - int n, i, j; - - lse_merge(ls); - - mq = rm->m + (ls->n_len_of_x - 1) * rm->len - - ls->n_len_of_x * (ls->n_len_of_x - 1) / 2; - - /* We calculate solution \b with backward substitution. - * */ - for (n = 0; n < ls->n_len_of_z; ++n) { - - m = mq; - - for (i = ls->n_len_of_x - 1; i >= 0; --i) { - - u = (lse_float_t) 0; - - for (j = i + 1; j < ls->n_len_of_x; ++j) - u += sol[j] * m[j]; - - sol[i] = (m[ls->n_len_of_x + n] - u) / m[i]; - - m += i - rm->len; - } - - sol += ls->n_len_of_x; - } -} - -void lse_std(lse_t *ls) -{ - lse_upper_t *rm = ls->rm + ls->n_cascades - 1; - - lse_float_t *std = ls->std.m; - lse_float_t *mq, *m, u, ratio; - -#if LSE_FAST_TRANSFORM != 0 - lse_float_t *d = rm->d + ls->n_len_of_x; -#endif /* LSE_FAST_TRANSFORM */ - - int i, j; - - lse_merge(ls); - - mq = rm->m + ls->n_len_of_x * rm->len - - ls->n_len_of_x * (ls->n_len_of_x - 1) / 2; - - ratio = (lse_float_t) 1 / (lse_float_t) (ls->n_total - 1); - - /* We calculate l2 norm over \Rz columns. - * */ - for (i = 0; i < ls->n_len_of_z; ++i) { - - m = mq; - -#if LSE_FAST_TRANSFORM != 0 - u = m[0] * m[0] / d[0]; -#else /* LSE_FAST_TRANSFORM */ - u = m[0] * m[0]; -#endif - - for (j = 1; j < i + 1; ++j) { - - m += rm->len - (ls->n_len_of_x + j); - -#if LSE_FAST_TRANSFORM != 0 - u += m[0] * m[0] / d[j]; -#else /* LSE_FAST_TRANSFORM */ - u += m[0] * m[0]; -#endif - } - - std[i] = lse_sqrtf(u * ratio); - - mq += 1; - } -} - -static void -lse_qrstep(lse_t *ls, lse_upper_t *um, lse_upper_t *im, lse_float_t *vm) -{ - lse_float_t *mq = im->m; -#if LSE_FAST_TRANSFORM != 0 - lse_float_t *ud = um->d; -#endif /* LSE_FAST_TRANSFORM */ - lse_float_t *m; - - int i, j; - - um->keep = 0; - um->lazy = 0; - - /* Here we transpose the input matrix \im and bring it to the - * upper-triangular form again and store into \um. - * */ - for (i = 0; i < um->len; ++i) { - - m = mq; - - for (j = 0; j < i + 1; ++j) { - - vm[j] = m[0]; - m += im->len - (j + 1); - } - - for (j = i + 1; j < um->len; ++j) - vm[j] = (lse_float_t) 0; - -#if LSE_FAST_TRANSFORM != 0 - lse_qrupdate(ls, um, vm, ud[i], 0); -#else /* LSE_FAST_TRANSFORM */ - lse_qrupdate(ls, um, vm, 0); -#endif - - mq += 1; - } -} - -void lse_esv(lse_t *ls, int n_approx) -{ - lse_upper_t um, im, *rm = ls->rm + ls->n_cascades - 1; - lse_float_t *m, u; - - int len, i; - - lse_merge(ls); - - len = ls->n_len_of_x * (ls->n_len_of_x + 1) + ls->n_len_of_x * 3; - - if (ls->rm[0].m + len <= rm->m) { - - /* We allocate temporal \Rx matrices instead of \R - * cascades that are empty after merge. - * */ - m = ls->rm[0].m; - } - else { - /* WARNING: We allocate temporal \Rx matrices in tail - * of LSE memory instead of \b and so on. - * */ - m = ls->sol.m; - } - - um.len = ls->n_len_of_x; - um.m = m; - - m += ls->n_len_of_x * (ls->n_len_of_x + 1) / 2; - -#if LSE_FAST_TRANSFORM != 0 - um.d = m; - m += ls->n_len_of_x; -#endif /* LSE_FAST_TRANSFORM */ - - im.len = ls->n_len_of_x; - im.m = m; - - m += ls->n_len_of_x * (ls->n_len_of_x + 1) / 2; - -#if LSE_FAST_TRANSFORM != 0 - im.d = m; - m += ls->n_len_of_x; -#endif /* LSE_FAST_TRANSFORM */ - -#if LSE_FAST_TRANSFORM != 0 - for (i = 0; i < ls->n_len_of_x; ++i) { - - um.d[i] = (lse_float_t) 1; - im.d[i] = rm->d[i]; - } -#endif /* LSE_FAST_TRANSFORM */ - - /* First step of QR algorithm. - * */ - lse_qrstep(ls, &um, rm, m); - - for (i = 1; i < n_approx; ++i) { - - /* Swap the matrices content. - * */ - { lse_upper_t qm = um; um = im; im = qm; } - - /* We run the reduced form of QR algorithm. With each - * iteration off-diagonal elements tend to zero so the - * diagonal approaches singular values. - * */ - lse_qrstep(ls, &um, &im, m); - } - - m = um.m; - - /* We are looking for the largest and smallest diagonal elements of \Rx. - * */ - for (i = 0; i < ls->n_len_of_x; ++i) { - -#if LSE_FAST_TRANSFORM != 0 - u = lse_fabsf(m[0] / lse_sqrtf(um.d[i] * im.d[i])); -#else /* LSE_FAST_TRANSFORM */ - u = lse_fabsf(m[0]); -#endif - - if (i != 0) { - - ls->esv.max = (ls->esv.max < u) ? u : ls->esv.max; - ls->esv.min = (ls->esv.min > u) ? u : ls->esv.min; - } - else { - ls->esv.max = u; - ls->esv.min = u; - } - - m += um.len - i; - } -} - diff --git a/phobia/gp/lse.h b/phobia/gp/lse.h deleted file mode 100644 index 4a9a9fd..0000000 --- a/phobia/gp/lse.h +++ /dev/null @@ -1,184 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_LSE_ -#define _H_LSE_ - -/* Define the maximal full size to be allocated. This is the sum of \x and \z - * row-vector sizes. - * */ -#define LSE_FULL_MAX 10 - -/* Define the maximal number of cascades. A large value gives greater precision - * on large datasets but consumes more memory. Reasonable values are from 2 to 4. - * */ -#define LSE_CASCADE_MAX 4 - -/* Define whether to use fast Givens transformation in QR update. Typical this - * is useful for fairly large matrix sizes. Also consumes a few of memory. - * */ -#define LSE_FAST_TRANSFORM 1 - -/* Define native floating-point type to use inside of LSE. - * */ -typedef double lse_float_t; - -typedef struct { - - /* The size of the upper-triangular matrix. - * */ - int len; - - /* The number of data rows that matrix keep. - * */ - int keep; - - /* The marker of lazy merging. - * */ - int lazy; - - /* Content of the upper-triangular matrix. - * */ - lse_float_t *m; - -#if LSE_FAST_TRANSFORM != 0 - /* Content of the scale diagonal matrix. - * */ - lse_float_t *d; -#endif /* LSE_FAST_TRANSFORM */ -} -lse_upper_t; - -typedef struct { - - /* The length of the row-vector. - * */ - int len; - - /* Content of the row-vector. - * */ - lse_float_t *m; -} -lse_row_t; - -typedef struct { - - /* Cascades in actual use. - * */ - int n_cascades; - - /* Input DATA sizes. - * */ - int n_len_of_x; - int n_len_of_z; - - /* Processed DATA sizes. - * */ - int n_threshold; - int n_total; - - /* \R(i) is row-major upper-triangular matrix array with block - * structure as shown. We store only the upper triangular elements. - * - * [0 1 2 3] - * [ 4 5 6] - * [Rx S ] [ 7 8] - * R(i) = [0 Rz], (ex.) = [ 9]. - * - * Rx - upper-triangular matrix size of \x, - * Rz - upper-triangular matrix size of \z, - * S - rectangular matrix size of \x by \z. - * - * */ - lse_upper_t rm[LSE_CASCADE_MAX]; - - /* LS solution \b is a column-major matrix. - * */ - lse_row_t sol; - - /* Standard deviation of \z row-vector. - * */ - lse_row_t std; - - /* Approximate extremal singular values of \Rx. - * */ - struct { - - lse_float_t min; - lse_float_t max; - } - esv; - - /* We allocate the maximal amount of memory. - * */ - lse_float_t vm[LSE_CASCADE_MAX * LSE_FULL_MAX * (LSE_FULL_MAX + 1) / 2 - -#if LSE_FAST_TRANSFORM != 0 - + LSE_CASCADE_MAX * LSE_FULL_MAX -#endif /* LSE_FAST_TRANSFORM */ - - + LSE_FULL_MAX * LSE_FULL_MAX / 4 + LSE_FULL_MAX / 2 + 1]; -} -lse_t; - -/* The function determines the size of LSE structure. So you can allocate LSE - * structure dynamically with size returned. - * */ -int lse_getsize(int n_cascades, int n_full); - -/* The function construct the instance of LSE. - * */ -void lse_construct(lse_t *ls, int n_cascades, int n_len_of_x, int n_len_of_z); - -/* The function updates \R with a new data row-vector \xz which contains \x and - * \z concatenated. We does QR update of \R by orthogonal transformation. Note - * that the contents of \xz will be modified. - * */ -void lse_insert(lse_t *ls, lse_float_t *xz); - -/* The function introduces ridge regularization with \la. Most reasonable \la - * value is \n_len_of_x * \esv.max * \machine_epsilon. - * */ -void lse_ridge(lse_t *ls, lse_float_t la); - -/* The function scales all cascades of \R with forgetting factor \la. It is - * reasonable to use this function with only one cascade allocated. - * */ -void lse_forget(lse_t *ls, lse_float_t la); - -/* The function calculates the final LS solution \b. - * */ -void lse_solve(lse_t *ls); - -/* The function calculates standard deviation of \z. - * */ -void lse_std(lse_t *ls); - -/* The function estimates the approximate largest and smallest singular values - * of \Rx in \n_approx iterations. A rather computationally heavy function if - * \n_approx is large (most reasonable is 4). You can calculate the conditional - * number or detect a rank deficiency based on retrieved values. - * - * WARNING: You need to provide enough memory to use this function. We use - * empty cascades of \R as temporal storage. - * - * */ -void lse_esv(lse_t *ls, int n_approx); - -#endif /* _H_LSE_ */ - diff --git a/phobia/gp/lz4.c b/phobia/gp/lz4.c deleted file mode 100644 index 0a72759..0000000 --- a/phobia/gp/lz4.c +++ /dev/null @@ -1,2789 +0,0 @@ -/* - LZ4 - Fast LZ compression algorithm - Copyright (C) 2011-2023, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - LZ4 homepage : http://www.lz4.org - - LZ4 source repository : https://github.com/lz4/lz4 -*/ - -/*-************************************ -* Tuning parameters -**************************************/ -/* - * LZ4_HEAPMODE : - * Select how stateless compression functions like `LZ4_compress_default()` - * allocate memory for their hash table, - * in memory stack (0:default, fastest), or in memory heap (1:requires malloc()). - */ -#ifndef LZ4_HEAPMODE -# define LZ4_HEAPMODE 0 -#endif - -/* - * LZ4_ACCELERATION_DEFAULT : - * Select "acceleration" for LZ4_compress_fast() when parameter value <= 0 - */ -#define LZ4_ACCELERATION_DEFAULT 1 -/* - * LZ4_ACCELERATION_MAX : - * Any "acceleration" value higher than this threshold - * get treated as LZ4_ACCELERATION_MAX instead (fix #876) - */ -#define LZ4_ACCELERATION_MAX 65537 - - -/*-************************************ -* CPU Feature Detection -**************************************/ -/* LZ4_FORCE_MEMORY_ACCESS - * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable. - * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal. - * The below switch allow to select different access method for improved performance. - * Method 0 (default) : use `memcpy()`. Safe and portable. - * Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable). - * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`. - * Method 2 : direct access. This method is portable but violate C standard. - * It can generate buggy code on targets which assembly generation depends on alignment. - * But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6) - * See https://fastcompression.blogspot.fr/2015/08/accessing-unaligned-memory.html for details. - * Prefer these methods in priority order (0 > 1 > 2) - */ -#ifndef LZ4_FORCE_MEMORY_ACCESS /* can be defined externally */ -# if defined(__GNUC__) && \ - ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) \ - || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) ) -# define LZ4_FORCE_MEMORY_ACCESS 2 -# elif (defined(__INTEL_COMPILER) && !defined(_WIN32)) || defined(__GNUC__) || defined(_MSC_VER) -# define LZ4_FORCE_MEMORY_ACCESS 1 -# endif -#endif - -/* - * LZ4_FORCE_SW_BITCOUNT - * Define this parameter if your target system or compiler does not support hardware bit count - */ -#if defined(_MSC_VER) && defined(_WIN32_WCE) /* Visual Studio for WinCE doesn't support Hardware bit count */ -# undef LZ4_FORCE_SW_BITCOUNT /* avoid double def */ -# define LZ4_FORCE_SW_BITCOUNT -#endif - - - -/*-************************************ -* Dependency -**************************************/ -/* - * LZ4_SRC_INCLUDED: - * Amalgamation flag, whether lz4.c is included - */ -#ifndef LZ4_SRC_INCLUDED -# define LZ4_SRC_INCLUDED 1 -#endif - -#ifndef LZ4_DISABLE_DEPRECATE_WARNINGS -# define LZ4_DISABLE_DEPRECATE_WARNINGS /* due to LZ4_decompress_safe_withPrefix64k */ -#endif - -#ifndef LZ4_STATIC_LINKING_ONLY -# define LZ4_STATIC_LINKING_ONLY -#endif -#include "lz4.h" -/* see also "memory routines" below */ - - -/*-************************************ -* Compiler Options -**************************************/ -#if defined(_MSC_VER) && (_MSC_VER >= 1400) /* Visual Studio 2005+ */ -# include /* only present in VS2005+ */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -# pragma warning(disable : 6237) /* disable: C6237: conditional expression is always 0 */ -#endif /* _MSC_VER */ - -#ifndef LZ4_FORCE_INLINE -# ifdef _MSC_VER /* Visual Studio */ -# define LZ4_FORCE_INLINE static __forceinline -# else -# if defined (__cplusplus) || defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# ifdef __GNUC__ -# define LZ4_FORCE_INLINE static inline __attribute__((always_inline)) -# else -# define LZ4_FORCE_INLINE static inline -# endif -# else -# define LZ4_FORCE_INLINE static -# endif /* __STDC_VERSION__ */ -# endif /* _MSC_VER */ -#endif /* LZ4_FORCE_INLINE */ - -/* LZ4_FORCE_O2 and LZ4_FORCE_INLINE - * gcc on ppc64le generates an unrolled SIMDized loop for LZ4_wildCopy8, - * together with a simple 8-byte copy loop as a fall-back path. - * However, this optimization hurts the decompression speed by >30%, - * because the execution does not go to the optimized loop - * for typical compressible data, and all of the preamble checks - * before going to the fall-back path become useless overhead. - * This optimization happens only with the -O3 flag, and -O2 generates - * a simple 8-byte copy loop. - * With gcc on ppc64le, all of the LZ4_decompress_* and LZ4_wildCopy8 - * functions are annotated with __attribute__((optimize("O2"))), - * and also LZ4_wildCopy8 is forcibly inlined, so that the O2 attribute - * of LZ4_wildCopy8 does not affect the compression speed. - */ -#if defined(__PPC64__) && defined(__LITTLE_ENDIAN__) && defined(__GNUC__) && !defined(__clang__) -# define LZ4_FORCE_O2 __attribute__((optimize("O2"))) -# undef LZ4_FORCE_INLINE -# define LZ4_FORCE_INLINE static __inline __attribute__((optimize("O2"),always_inline)) -#else -# define LZ4_FORCE_O2 -#endif - -#if (defined(__GNUC__) && (__GNUC__ >= 3)) || (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 800)) || defined(__clang__) -# define expect(expr,value) (__builtin_expect ((expr),(value)) ) -#else -# define expect(expr,value) (expr) -#endif - -#ifndef likely -#define likely(expr) expect((expr) != 0, 1) -#endif -#ifndef unlikely -#define unlikely(expr) expect((expr) != 0, 0) -#endif - -/* Should the alignment test prove unreliable, for some reason, - * it can be disabled by setting LZ4_ALIGN_TEST to 0 */ -#ifndef LZ4_ALIGN_TEST /* can be externally provided */ -# define LZ4_ALIGN_TEST 1 -#endif - - -/*-************************************ -* Memory routines -**************************************/ - -/*! LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION : - * Disable relatively high-level LZ4/HC functions that use dynamic memory - * allocation functions (malloc(), calloc(), free()). - * - * Note that this is a compile-time switch. And since it disables - * public/stable LZ4 v1 API functions, we don't recommend using this - * symbol to generate a library for distribution. - * - * The following public functions are removed when this symbol is defined. - * - lz4 : LZ4_createStream, LZ4_freeStream, - * LZ4_createStreamDecode, LZ4_freeStreamDecode, LZ4_create (deprecated) - * - lz4hc : LZ4_createStreamHC, LZ4_freeStreamHC, - * LZ4_createHC (deprecated), LZ4_freeHC (deprecated) - * - lz4frame, lz4file : All LZ4F_* functions - */ -#if defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -# define ALLOC(s) lz4_error_memory_allocation_is_disabled -# define ALLOC_AND_ZERO(s) lz4_error_memory_allocation_is_disabled -# define FREEMEM(p) lz4_error_memory_allocation_is_disabled -#elif defined(LZ4_USER_MEMORY_FUNCTIONS) -/* memory management functions can be customized by user project. - * Below functions must exist somewhere in the Project - * and be available at link time */ -void* LZ4_malloc(size_t s); -void* LZ4_calloc(size_t n, size_t s); -void LZ4_free(void* p); -# define ALLOC(s) LZ4_malloc(s) -# define ALLOC_AND_ZERO(s) LZ4_calloc(1,s) -# define FREEMEM(p) LZ4_free(p) -#else -# include /* malloc, calloc, free */ -# define ALLOC(s) malloc(s) -# define ALLOC_AND_ZERO(s) calloc(1,s) -# define FREEMEM(p) free(p) -#endif - -#if ! LZ4_FREESTANDING -# include /* memset, memcpy */ -#endif -#if !defined(LZ4_memset) -# define LZ4_memset(p,v,s) memset((p),(v),(s)) -#endif -#define MEM_INIT(p,v,s) LZ4_memset((p),(v),(s)) - - -/*-************************************ -* Common Constants -**************************************/ -#define MINMATCH 4 - -#define WILDCOPYLENGTH 8 -#define LASTLITERALS 5 /* see ../doc/lz4_Block_format.md#parsing-restrictions */ -#define MFLIMIT 12 /* see ../doc/lz4_Block_format.md#parsing-restrictions */ -#define MATCH_SAFEGUARD_DISTANCE ((2*WILDCOPYLENGTH) - MINMATCH) /* ensure it's possible to write 2 x wildcopyLength without overflowing output buffer */ -#define FASTLOOP_SAFE_DISTANCE 64 -static const int LZ4_minLength = (MFLIMIT+1); - -#define KB *(1 <<10) -#define MB *(1 <<20) -#define GB *(1U<<30) - -#define LZ4_DISTANCE_ABSOLUTE_MAX 65535 -#if (LZ4_DISTANCE_MAX > LZ4_DISTANCE_ABSOLUTE_MAX) /* max supported by LZ4 format */ -# error "LZ4_DISTANCE_MAX is too big : must be <= 65535" -#endif - -#define ML_BITS 4 -#define ML_MASK ((1U<=1) -# include -#else -# ifndef assert -# define assert(condition) ((void)0) -# endif -#endif - -#define LZ4_STATIC_ASSERT(c) { enum { LZ4_static_assert = 1/(int)(!!(c)) }; } /* use after variable declarations */ - -#if defined(LZ4_DEBUG) && (LZ4_DEBUG>=2) -# include - static int g_debuglog_enable = 1; -# define DEBUGLOG(l, ...) { \ - if ((g_debuglog_enable) && (l<=LZ4_DEBUG)) { \ - fprintf(stderr, __FILE__ " %i: ", __LINE__); \ - fprintf(stderr, __VA_ARGS__); \ - fprintf(stderr, " \n"); \ - } } -#else -# define DEBUGLOG(l, ...) {} /* disabled */ -#endif - -static int LZ4_isAligned(const void* ptr, size_t alignment) -{ - return ((size_t)ptr & (alignment -1)) == 0; -} - - -/*-************************************ -* Types -**************************************/ -#include -#if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# include - typedef uint8_t BYTE; - typedef uint16_t U16; - typedef uint32_t U32; - typedef int32_t S32; - typedef uint64_t U64; - typedef uintptr_t uptrval; -#else -# if UINT_MAX != 4294967295UL -# error "LZ4 code (when not C++ or C99) assumes that sizeof(int) == 4" -# endif - typedef unsigned char BYTE; - typedef unsigned short U16; - typedef unsigned int U32; - typedef signed int S32; - typedef unsigned long long U64; - typedef size_t uptrval; /* generally true, except OpenVMS-64 */ -#endif - -#if defined(__x86_64__) - typedef U64 reg_t; /* 64-bits in x32 mode */ -#else - typedef size_t reg_t; /* 32-bits in x32 mode */ -#endif - -typedef enum { - notLimited = 0, - limitedOutput = 1, - fillOutput = 2 -} limitedOutput_directive; - - -/*-************************************ -* Reading and writing into memory -**************************************/ - -/** - * LZ4 relies on memcpy with a constant size being inlined. In freestanding - * environments, the compiler can't assume the implementation of memcpy() is - * standard compliant, so it can't apply its specialized memcpy() inlining - * logic. When possible, use __builtin_memcpy() to tell the compiler to analyze - * memcpy() as if it were standard compliant, so it can inline it in freestanding - * environments. This is needed when decompressing the Linux Kernel, for example. - */ -#if !defined(LZ4_memcpy) -# if defined(__GNUC__) && (__GNUC__ >= 4) -# define LZ4_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) -# else -# define LZ4_memcpy(dst, src, size) memcpy(dst, src, size) -# endif -#endif - -#if !defined(LZ4_memmove) -# if defined(__GNUC__) && (__GNUC__ >= 4) -# define LZ4_memmove __builtin_memmove -# else -# define LZ4_memmove memmove -# endif -#endif - -static unsigned LZ4_isLittleEndian(void) -{ - const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ - return one.c[0]; -} - -#if defined(__GNUC__) || defined(__INTEL_COMPILER) -#define LZ4_PACK( __Declaration__ ) __Declaration__ __attribute__((__packed__)) -#elif defined(_MSC_VER) -#define LZ4_PACK( __Declaration__ ) __pragma( pack(push, 1) ) __Declaration__ __pragma( pack(pop)) -#endif - -#if defined(LZ4_FORCE_MEMORY_ACCESS) && (LZ4_FORCE_MEMORY_ACCESS==2) -/* lie to the compiler about data alignment; use with caution */ - -static U16 LZ4_read16(const void* memPtr) { return *(const U16*) memPtr; } -static U32 LZ4_read32(const void* memPtr) { return *(const U32*) memPtr; } -static reg_t LZ4_read_ARCH(const void* memPtr) { return *(const reg_t*) memPtr; } - -static void LZ4_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } -static void LZ4_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; } - -#elif defined(LZ4_FORCE_MEMORY_ACCESS) && (LZ4_FORCE_MEMORY_ACCESS==1) - -/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */ -/* currently only defined for gcc and icc */ -LZ4_PACK(typedef struct { U16 u16; }) LZ4_unalign16; -LZ4_PACK(typedef struct { U32 u32; }) LZ4_unalign32; -LZ4_PACK(typedef struct { reg_t uArch; }) LZ4_unalignST; - -static U16 LZ4_read16(const void* ptr) { return ((const LZ4_unalign16*)ptr)->u16; } -static U32 LZ4_read32(const void* ptr) { return ((const LZ4_unalign32*)ptr)->u32; } -static reg_t LZ4_read_ARCH(const void* ptr) { return ((const LZ4_unalignST*)ptr)->uArch; } - -static void LZ4_write16(void* memPtr, U16 value) { ((LZ4_unalign16*)memPtr)->u16 = value; } -static void LZ4_write32(void* memPtr, U32 value) { ((LZ4_unalign32*)memPtr)->u32 = value; } - -#else /* safe and portable access using memcpy() */ - -static U16 LZ4_read16(const void* memPtr) -{ - U16 val; LZ4_memcpy(&val, memPtr, sizeof(val)); return val; -} - -static U32 LZ4_read32(const void* memPtr) -{ - U32 val; LZ4_memcpy(&val, memPtr, sizeof(val)); return val; -} - -static reg_t LZ4_read_ARCH(const void* memPtr) -{ - reg_t val; LZ4_memcpy(&val, memPtr, sizeof(val)); return val; -} - -static void LZ4_write16(void* memPtr, U16 value) -{ - LZ4_memcpy(memPtr, &value, sizeof(value)); -} - -static void LZ4_write32(void* memPtr, U32 value) -{ - LZ4_memcpy(memPtr, &value, sizeof(value)); -} - -#endif /* LZ4_FORCE_MEMORY_ACCESS */ - - -static U16 LZ4_readLE16(const void* memPtr) -{ - if (LZ4_isLittleEndian()) { - return LZ4_read16(memPtr); - } else { - const BYTE* p = (const BYTE*)memPtr; - return (U16)((U16)p[0] + (p[1]<<8)); - } -} - -#ifdef LZ4_STATIC_LINKING_ONLY_ENDIANNESS_INDEPENDENT_OUTPUT -static U32 LZ4_readLE32(const void* memPtr) -{ - if (LZ4_isLittleEndian()) { - return LZ4_read32(memPtr); - } else { - const BYTE* p = (const BYTE*)memPtr; - return (U32)p[0] + (p[1]<<8) + (p[2]<<16) + (p[3]<<24); - } -} -#endif - -static void LZ4_writeLE16(void* memPtr, U16 value) -{ - if (LZ4_isLittleEndian()) { - LZ4_write16(memPtr, value); - } else { - BYTE* p = (BYTE*)memPtr; - p[0] = (BYTE) value; - p[1] = (BYTE)(value>>8); - } -} - -/* customized variant of memcpy, which can overwrite up to 8 bytes beyond dstEnd */ -LZ4_FORCE_INLINE -void LZ4_wildCopy8(void* dstPtr, const void* srcPtr, void* dstEnd) -{ - BYTE* d = (BYTE*)dstPtr; - const BYTE* s = (const BYTE*)srcPtr; - BYTE* const e = (BYTE*)dstEnd; - - do { LZ4_memcpy(d,s,8); d+=8; s+=8; } while (d= 16. */ -LZ4_FORCE_INLINE void -LZ4_wildCopy32(void* dstPtr, const void* srcPtr, void* dstEnd) -{ - BYTE* d = (BYTE*)dstPtr; - const BYTE* s = (const BYTE*)srcPtr; - BYTE* const e = (BYTE*)dstEnd; - - do { LZ4_memcpy(d,s,16); LZ4_memcpy(d+16,s+16,16); d+=32; s+=32; } while (d= dstPtr + MINMATCH - * - there is at least 8 bytes available to write after dstEnd */ -LZ4_FORCE_INLINE void -LZ4_memcpy_using_offset(BYTE* dstPtr, const BYTE* srcPtr, BYTE* dstEnd, const size_t offset) -{ - BYTE v[8]; - - assert(dstEnd >= dstPtr + MINMATCH); - - switch(offset) { - case 1: - MEM_INIT(v, *srcPtr, 8); - break; - case 2: - LZ4_memcpy(v, srcPtr, 2); - LZ4_memcpy(&v[2], srcPtr, 2); -#if defined(_MSC_VER) && (_MSC_VER <= 1937) /* MSVC 2022 ver 17.7 or earlier */ -# pragma warning(push) -# pragma warning(disable : 6385) /* warning C6385: Reading invalid data from 'v'. */ -#endif - LZ4_memcpy(&v[4], v, 4); -#if defined(_MSC_VER) && (_MSC_VER <= 1937) /* MSVC 2022 ver 17.7 or earlier */ -# pragma warning(pop) -#endif - break; - case 4: - LZ4_memcpy(v, srcPtr, 4); - LZ4_memcpy(&v[4], srcPtr, 4); - break; - default: - LZ4_memcpy_using_offset_base(dstPtr, srcPtr, dstEnd, offset); - return; - } - - LZ4_memcpy(dstPtr, v, 8); - dstPtr += 8; - while (dstPtr < dstEnd) { - LZ4_memcpy(dstPtr, v, 8); - dstPtr += 8; - } -} -#endif - - -/*-************************************ -* Common functions -**************************************/ -static unsigned LZ4_NbCommonBytes (reg_t val) -{ - assert(val != 0); - if (LZ4_isLittleEndian()) { - if (sizeof(val) == 8) { -# if defined(_MSC_VER) && (_MSC_VER >= 1800) && (defined(_M_AMD64) && !defined(_M_ARM64EC)) && !defined(LZ4_FORCE_SW_BITCOUNT) -/*-************************************************************************************************* -* ARM64EC is a Microsoft-designed ARM64 ABI compatible with AMD64 applications on ARM64 Windows 11. -* The ARM64EC ABI does not support AVX/AVX2/AVX512 instructions, nor their relevant intrinsics -* including _tzcnt_u64. Therefore, we need to neuter the _tzcnt_u64 code path for ARM64EC. -****************************************************************************************************/ -# if defined(__clang__) && (__clang_major__ < 10) - /* Avoid undefined clang-cl intrinsics issue. - * See https://github.com/lz4/lz4/pull/1017 for details. */ - return (unsigned)__builtin_ia32_tzcnt_u64(val) >> 3; -# else - /* x64 CPUS without BMI support interpret `TZCNT` as `REP BSF` */ - return (unsigned)_tzcnt_u64(val) >> 3; -# endif -# elif defined(_MSC_VER) && defined(_WIN64) && !defined(LZ4_FORCE_SW_BITCOUNT) - unsigned long r = 0; - _BitScanForward64(&r, (U64)val); - return (unsigned)r >> 3; -# elif (defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 3) || \ - ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4))))) && \ - !defined(LZ4_FORCE_SW_BITCOUNT) - return (unsigned)__builtin_ctzll((U64)val) >> 3; -# else - const U64 m = 0x0101010101010101ULL; - val ^= val - 1; - return (unsigned)(((U64)((val & (m - 1)) * m)) >> 56); -# endif - } else /* 32 bits */ { -# if defined(_MSC_VER) && (_MSC_VER >= 1400) && !defined(LZ4_FORCE_SW_BITCOUNT) - unsigned long r; - _BitScanForward(&r, (U32)val); - return (unsigned)r >> 3; -# elif (defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 3) || \ - ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4))))) && \ - !defined(__TINYC__) && !defined(LZ4_FORCE_SW_BITCOUNT) - return (unsigned)__builtin_ctz((U32)val) >> 3; -# else - const U32 m = 0x01010101; - return (unsigned)((((val - 1) ^ val) & (m - 1)) * m) >> 24; -# endif - } - } else /* Big Endian CPU */ { - if (sizeof(val)==8) { -# if (defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 3) || \ - ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4))))) && \ - !defined(__TINYC__) && !defined(LZ4_FORCE_SW_BITCOUNT) - return (unsigned)__builtin_clzll((U64)val) >> 3; -# else -#if 1 - /* this method is probably faster, - * but adds a 128 bytes lookup table */ - static const unsigned char ctz7_tab[128] = { - 7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - }; - U64 const mask = 0x0101010101010101ULL; - U64 const t = (((val >> 8) - mask) | val) & mask; - return ctz7_tab[(t * 0x0080402010080402ULL) >> 57]; -#else - /* this method doesn't consume memory space like the previous one, - * but it contains several branches, - * that may end up slowing execution */ - static const U32 by32 = sizeof(val)*4; /* 32 on 64 bits (goal), 16 on 32 bits. - Just to avoid some static analyzer complaining about shift by 32 on 32-bits target. - Note that this code path is never triggered in 32-bits mode. */ - unsigned r; - if (!(val>>by32)) { r=4; } else { r=0; val>>=by32; } - if (!(val>>16)) { r+=2; val>>=8; } else { val>>=24; } - r += (!val); - return r; -#endif -# endif - } else /* 32 bits */ { -# if (defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 3) || \ - ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4))))) && \ - !defined(LZ4_FORCE_SW_BITCOUNT) - return (unsigned)__builtin_clz((U32)val) >> 3; -# else - val >>= 8; - val = ((((val + 0x00FFFF00) | 0x00FFFFFF) + val) | - (val + 0x00FF0000)) >> 24; - return (unsigned)val ^ 3; -# endif - } - } -} - - -#define STEPSIZE sizeof(reg_t) -LZ4_FORCE_INLINE -unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) -{ - const BYTE* const pStart = pIn; - - if (likely(pIn < pInLimit-(STEPSIZE-1))) { - reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); - if (!diff) { - pIn+=STEPSIZE; pMatch+=STEPSIZE; - } else { - return LZ4_NbCommonBytes(diff); - } } - - while (likely(pIn < pInLimit-(STEPSIZE-1))) { - reg_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); - if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } - pIn += LZ4_NbCommonBytes(diff); - return (unsigned)(pIn - pStart); - } - - if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; } - if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } - if ((pIn compression run slower on incompressible data */ - - -/*-************************************ -* Local Structures and types -**************************************/ -typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t; - -/** - * This enum distinguishes several different modes of accessing previous - * content in the stream. - * - * - noDict : There is no preceding content. - * - withPrefix64k : Table entries up to ctx->dictSize before the current blob - * blob being compressed are valid and refer to the preceding - * content (of length ctx->dictSize), which is available - * contiguously preceding in memory the content currently - * being compressed. - * - usingExtDict : Like withPrefix64k, but the preceding content is somewhere - * else in memory, starting at ctx->dictionary with length - * ctx->dictSize. - * - usingDictCtx : Everything concerning the preceding content is - * in a separate context, pointed to by ctx->dictCtx. - * ctx->dictionary, ctx->dictSize, and table entries - * in the current context that refer to positions - * preceding the beginning of the current compression are - * ignored. Instead, ctx->dictCtx->dictionary and ctx->dictCtx - * ->dictSize describe the location and size of the preceding - * content, and matches are found by looking in the ctx - * ->dictCtx->hashTable. - */ -typedef enum { noDict = 0, withPrefix64k, usingExtDict, usingDictCtx } dict_directive; -typedef enum { noDictIssue = 0, dictSmall } dictIssue_directive; - - -/*-************************************ -* Local Utils -**************************************/ -int LZ4_versionNumber (void) { return LZ4_VERSION_NUMBER; } -const char* LZ4_versionString(void) { return LZ4_VERSION_STRING; } -int LZ4_compressBound(int isize) { return LZ4_COMPRESSBOUND(isize); } -int LZ4_sizeofState(void) { return sizeof(LZ4_stream_t); } - - -/*-**************************************** -* Internal Definitions, used only in Tests -*******************************************/ -#if defined (__cplusplus) -extern "C" { -#endif - -int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize); - -int LZ4_decompress_safe_forceExtDict(const char* source, char* dest, - int compressedSize, int maxOutputSize, - const void* dictStart, size_t dictSize); -int LZ4_decompress_safe_partial_forceExtDict(const char* source, char* dest, - int compressedSize, int targetOutputSize, int dstCapacity, - const void* dictStart, size_t dictSize); -#if defined (__cplusplus) -} -#endif - -/*-****************************** -* Compression functions -********************************/ -LZ4_FORCE_INLINE U32 LZ4_hash4(U32 sequence, tableType_t const tableType) -{ - if (tableType == byU16) - return ((sequence * 2654435761U) >> ((MINMATCH*8)-(LZ4_HASHLOG+1))); - else - return ((sequence * 2654435761U) >> ((MINMATCH*8)-LZ4_HASHLOG)); -} - -LZ4_FORCE_INLINE U32 LZ4_hash5(U64 sequence, tableType_t const tableType) -{ - const U32 hashLog = (tableType == byU16) ? LZ4_HASHLOG+1 : LZ4_HASHLOG; - if (LZ4_isLittleEndian()) { - const U64 prime5bytes = 889523592379ULL; - return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog)); - } else { - const U64 prime8bytes = 11400714785074694791ULL; - return (U32)(((sequence >> 24) * prime8bytes) >> (64 - hashLog)); - } -} - -LZ4_FORCE_INLINE U32 LZ4_hashPosition(const void* const p, tableType_t const tableType) -{ - if ((sizeof(reg_t)==8) && (tableType != byU16)) return LZ4_hash5(LZ4_read_ARCH(p), tableType); - -#ifdef LZ4_STATIC_LINKING_ONLY_ENDIANNESS_INDEPENDENT_OUTPUT - return LZ4_hash4(LZ4_readLE32(p), tableType); -#else - return LZ4_hash4(LZ4_read32(p), tableType); -#endif -} - -LZ4_FORCE_INLINE void LZ4_clearHash(U32 h, void* tableBase, tableType_t const tableType) -{ - switch (tableType) - { - default: /* fallthrough */ - case clearedTable: { /* illegal! */ assert(0); return; } - case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } - case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } - case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } - } -} - -LZ4_FORCE_INLINE void LZ4_putIndexOnHash(U32 idx, U32 h, void* tableBase, tableType_t const tableType) -{ - switch (tableType) - { - default: /* fallthrough */ - case clearedTable: /* fallthrough */ - case byPtr: { /* illegal! */ assert(0); return; } - case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } - case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; return; } - } -} - -/* LZ4_putPosition*() : only used in byPtr mode */ -LZ4_FORCE_INLINE void LZ4_putPositionOnHash(const BYTE* p, U32 h, - void* tableBase, tableType_t const tableType) -{ - const BYTE** const hashTable = (const BYTE**)tableBase; - assert(tableType == byPtr); (void)tableType; - hashTable[h] = p; -} - -LZ4_FORCE_INLINE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType) -{ - U32 const h = LZ4_hashPosition(p, tableType); - LZ4_putPositionOnHash(p, h, tableBase, tableType); -} - -/* LZ4_getIndexOnHash() : - * Index of match position registered in hash table. - * hash position must be calculated by using base+index, or dictBase+index. - * Assumption 1 : only valid if tableType == byU32 or byU16. - * Assumption 2 : h is presumed valid (within limits of hash table) - */ -LZ4_FORCE_INLINE U32 LZ4_getIndexOnHash(U32 h, const void* tableBase, tableType_t tableType) -{ - LZ4_STATIC_ASSERT(LZ4_MEMORY_USAGE > 2); - if (tableType == byU32) { - const U32* const hashTable = (const U32*) tableBase; - assert(h < (1U << (LZ4_MEMORY_USAGE-2))); - return hashTable[h]; - } - if (tableType == byU16) { - const U16* const hashTable = (const U16*) tableBase; - assert(h < (1U << (LZ4_MEMORY_USAGE-1))); - return hashTable[h]; - } - assert(0); return 0; /* forbidden case */ -} - -static const BYTE* LZ4_getPositionOnHash(U32 h, const void* tableBase, tableType_t tableType) -{ - assert(tableType == byPtr); (void)tableType; - { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return hashTable[h]; } -} - -LZ4_FORCE_INLINE const BYTE* -LZ4_getPosition(const BYTE* p, - const void* tableBase, tableType_t tableType) -{ - U32 const h = LZ4_hashPosition(p, tableType); - return LZ4_getPositionOnHash(h, tableBase, tableType); -} - -LZ4_FORCE_INLINE void -LZ4_prepareTable(LZ4_stream_t_internal* const cctx, - const int inputSize, - const tableType_t tableType) { - /* If the table hasn't been used, it's guaranteed to be zeroed out, and is - * therefore safe to use no matter what mode we're in. Otherwise, we figure - * out if it's safe to leave as is or whether it needs to be reset. - */ - if ((tableType_t)cctx->tableType != clearedTable) { - assert(inputSize >= 0); - if ((tableType_t)cctx->tableType != tableType - || ((tableType == byU16) && cctx->currentOffset + (unsigned)inputSize >= 0xFFFFU) - || ((tableType == byU32) && cctx->currentOffset > 1 GB) - || tableType == byPtr - || inputSize >= 4 KB) - { - DEBUGLOG(4, "LZ4_prepareTable: Resetting table in %p", cctx); - MEM_INIT(cctx->hashTable, 0, LZ4_HASHTABLESIZE); - cctx->currentOffset = 0; - cctx->tableType = (U32)clearedTable; - } else { - DEBUGLOG(4, "LZ4_prepareTable: Re-use hash table (no reset)"); - } - } - - /* Adding a gap, so all previous entries are > LZ4_DISTANCE_MAX back, - * is faster than compressing without a gap. - * However, compressing with currentOffset == 0 is faster still, - * so we preserve that case. - */ - if (cctx->currentOffset != 0 && tableType == byU32) { - DEBUGLOG(5, "LZ4_prepareTable: adding 64KB to currentOffset"); - cctx->currentOffset += 64 KB; - } - - /* Finally, clear history */ - cctx->dictCtx = NULL; - cctx->dictionary = NULL; - cctx->dictSize = 0; -} - -/** LZ4_compress_generic_validated() : - * inlined, to ensure branches are decided at compilation time. - * The following conditions are presumed already validated: - * - source != NULL - * - inputSize > 0 - */ -LZ4_FORCE_INLINE int LZ4_compress_generic_validated( - LZ4_stream_t_internal* const cctx, - const char* const source, - char* const dest, - const int inputSize, - int* inputConsumed, /* only written when outputDirective == fillOutput */ - const int maxOutputSize, - const limitedOutput_directive outputDirective, - const tableType_t tableType, - const dict_directive dictDirective, - const dictIssue_directive dictIssue, - const int acceleration) -{ - int result; - const BYTE* ip = (const BYTE*)source; - - U32 const startIndex = cctx->currentOffset; - const BYTE* base = (const BYTE*)source - startIndex; - const BYTE* lowLimit; - - const LZ4_stream_t_internal* dictCtx = (const LZ4_stream_t_internal*) cctx->dictCtx; - const BYTE* const dictionary = - dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; - const U32 dictSize = - dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; - const U32 dictDelta = - (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; /* make indexes in dictCtx comparable with indexes in current context */ - - int const maybe_extMem = (dictDirective == usingExtDict) || (dictDirective == usingDictCtx); - U32 const prefixIdxLimit = startIndex - dictSize; /* used when dictDirective == dictSmall */ - const BYTE* const dictEnd = dictionary ? dictionary + dictSize : dictionary; - const BYTE* anchor = (const BYTE*) source; - const BYTE* const iend = ip + inputSize; - const BYTE* const mflimitPlusOne = iend - MFLIMIT + 1; - const BYTE* const matchlimit = iend - LASTLITERALS; - - /* the dictCtx currentOffset is indexed on the start of the dictionary, - * while a dictionary in the current context precedes the currentOffset */ - const BYTE* dictBase = (dictionary == NULL) ? NULL : - (dictDirective == usingDictCtx) ? - dictionary + dictSize - dictCtx->currentOffset : - dictionary + dictSize - startIndex; - - BYTE* op = (BYTE*) dest; - BYTE* const olimit = op + maxOutputSize; - - U32 offset = 0; - U32 forwardH; - - DEBUGLOG(5, "LZ4_compress_generic_validated: srcSize=%i, tableType=%u", inputSize, tableType); - assert(ip != NULL); - if (tableType == byU16) assert(inputSize= 1); - - lowLimit = (const BYTE*)source - (dictDirective == withPrefix64k ? dictSize : 0); - - /* Update context state */ - if (dictDirective == usingDictCtx) { - /* Subsequent linked blocks can't use the dictionary. */ - /* Instead, they use the block we just compressed. */ - cctx->dictCtx = NULL; - cctx->dictSize = (U32)inputSize; - } else { - cctx->dictSize += (U32)inputSize; - } - cctx->currentOffset += (U32)inputSize; - cctx->tableType = (U32)tableType; - - if (inputSizehashTable, byPtr); - } else { - LZ4_putIndexOnHash(startIndex, h, cctx->hashTable, tableType); - } } - ip++; forwardH = LZ4_hashPosition(ip, tableType); - - /* Main Loop */ - for ( ; ; ) { - const BYTE* match; - BYTE* token; - const BYTE* filledIp; - - /* Find a match */ - if (tableType == byPtr) { - const BYTE* forwardIp = ip; - int step = 1; - int searchMatchNb = acceleration << LZ4_skipTrigger; - do { - U32 const h = forwardH; - ip = forwardIp; - forwardIp += step; - step = (searchMatchNb++ >> LZ4_skipTrigger); - - if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; - assert(ip < mflimitPlusOne); - - match = LZ4_getPositionOnHash(h, cctx->hashTable, tableType); - forwardH = LZ4_hashPosition(forwardIp, tableType); - LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType); - - } while ( (match+LZ4_DISTANCE_MAX < ip) - || (LZ4_read32(match) != LZ4_read32(ip)) ); - - } else { /* byU32, byU16 */ - - const BYTE* forwardIp = ip; - int step = 1; - int searchMatchNb = acceleration << LZ4_skipTrigger; - do { - U32 const h = forwardH; - U32 const current = (U32)(forwardIp - base); - U32 matchIndex = LZ4_getIndexOnHash(h, cctx->hashTable, tableType); - assert(matchIndex <= current); - assert(forwardIp - base < (ptrdiff_t)(2 GB - 1)); - ip = forwardIp; - forwardIp += step; - step = (searchMatchNb++ >> LZ4_skipTrigger); - - if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; - assert(ip < mflimitPlusOne); - - if (dictDirective == usingDictCtx) { - if (matchIndex < startIndex) { - /* there was no match, try the dictionary */ - assert(tableType == byU32); - matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); - match = dictBase + matchIndex; - matchIndex += dictDelta; /* make dictCtx index comparable with current context */ - lowLimit = dictionary; - } else { - match = base + matchIndex; - lowLimit = (const BYTE*)source; - } - } else if (dictDirective == usingExtDict) { - if (matchIndex < startIndex) { - DEBUGLOG(7, "extDict candidate: matchIndex=%5u < startIndex=%5u", matchIndex, startIndex); - assert(startIndex - matchIndex >= MINMATCH); - assert(dictBase); - match = dictBase + matchIndex; - lowLimit = dictionary; - } else { - match = base + matchIndex; - lowLimit = (const BYTE*)source; - } - } else { /* single continuous memory segment */ - match = base + matchIndex; - } - forwardH = LZ4_hashPosition(forwardIp, tableType); - LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); - - DEBUGLOG(7, "candidate at pos=%u (offset=%u \n", matchIndex, current - matchIndex); - if ((dictIssue == dictSmall) && (matchIndex < prefixIdxLimit)) { continue; } /* match outside of valid area */ - assert(matchIndex < current); - if ( ((tableType != byU16) || (LZ4_DISTANCE_MAX < LZ4_DISTANCE_ABSOLUTE_MAX)) - && (matchIndex+LZ4_DISTANCE_MAX < current)) { - continue; - } /* too far */ - assert((current - matchIndex) <= LZ4_DISTANCE_MAX); /* match now expected within distance */ - - if (LZ4_read32(match) == LZ4_read32(ip)) { - if (maybe_extMem) offset = current - matchIndex; - break; /* match found */ - } - - } while(1); - } - - /* Catch up */ - filledIp = ip; - assert(ip > anchor); /* this is always true as ip has been advanced before entering the main loop */ - if ((match > lowLimit) && unlikely(ip[-1] == match[-1])) { - do { ip--; match--; } while (((ip > anchor) & (match > lowLimit)) && (unlikely(ip[-1] == match[-1]))); - } - - /* Encode Literals */ - { unsigned const litLength = (unsigned)(ip - anchor); - token = op++; - if ((outputDirective == limitedOutput) && /* Check output buffer overflow */ - (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)) ) { - return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ - } - if ((outputDirective == fillOutput) && - (unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /* token */ + MFLIMIT - MINMATCH /* min last literals so last match is <= end - MFLIMIT */ > olimit))) { - op--; - goto _last_literals; - } - if (litLength >= RUN_MASK) { - int len = (int)(litLength - RUN_MASK); - *token = (RUN_MASK<= 255 ; len-=255) *op++ = 255; - *op++ = (BYTE)len; - } - else *token = (BYTE)(litLength< olimit)) { - /* the match was too close to the end, rewind and go to last literals */ - op = token; - goto _last_literals; - } - - /* Encode Offset */ - if (maybe_extMem) { /* static test */ - DEBUGLOG(6, " with offset=%u (ext if > %i)", offset, (int)(ip - (const BYTE*)source)); - assert(offset <= LZ4_DISTANCE_MAX && offset > 0); - LZ4_writeLE16(op, (U16)offset); op+=2; - } else { - DEBUGLOG(6, " with offset=%u (same segment)", (U32)(ip - match)); - assert(ip-match <= LZ4_DISTANCE_MAX); - LZ4_writeLE16(op, (U16)(ip - match)); op+=2; - } - - /* Encode MatchLength */ - { unsigned matchCode; - - if ( (dictDirective==usingExtDict || dictDirective==usingDictCtx) - && (lowLimit==dictionary) /* match within extDict */ ) { - const BYTE* limit = ip + (dictEnd-match); - assert(dictEnd > match); - if (limit > matchlimit) limit = matchlimit; - matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, limit); - ip += (size_t)matchCode + MINMATCH; - if (ip==limit) { - unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); - matchCode += more; - ip += more; - } - DEBUGLOG(6, " with matchLength=%u starting in extDict", matchCode+MINMATCH); - } else { - matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); - ip += (size_t)matchCode + MINMATCH; - DEBUGLOG(6, " with matchLength=%u", matchCode+MINMATCH); - } - - if ((outputDirective) && /* Check output buffer overflow */ - (unlikely(op + (1 + LASTLITERALS) + (matchCode+240)/255 > olimit)) ) { - if (outputDirective == fillOutput) { - /* Match description too long : reduce it */ - U32 newMatchCode = 15 /* in token */ - 1 /* to avoid needing a zero byte */ + ((U32)(olimit - op) - 1 - LASTLITERALS) * 255; - ip -= matchCode - newMatchCode; - assert(newMatchCode < matchCode); - matchCode = newMatchCode; - if (unlikely(ip <= filledIp)) { - /* We have already filled up to filledIp so if ip ends up less than filledIp - * we have positions in the hash table beyond the current position. This is - * a problem if we reuse the hash table. So we have to remove these positions - * from the hash table. - */ - const BYTE* ptr; - DEBUGLOG(5, "Clearing %u positions", (U32)(filledIp - ip)); - for (ptr = ip; ptr <= filledIp; ++ptr) { - U32 const h = LZ4_hashPosition(ptr, tableType); - LZ4_clearHash(h, cctx->hashTable, tableType); - } - } - } else { - assert(outputDirective == limitedOutput); - return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ - } - } - if (matchCode >= ML_MASK) { - *token += ML_MASK; - matchCode -= ML_MASK; - LZ4_write32(op, 0xFFFFFFFF); - while (matchCode >= 4*255) { - op+=4; - LZ4_write32(op, 0xFFFFFFFF); - matchCode -= 4*255; - } - op += matchCode / 255; - *op++ = (BYTE)(matchCode % 255); - } else - *token += (BYTE)(matchCode); - } - /* Ensure we have enough space for the last literals. */ - assert(!(outputDirective == fillOutput && op + 1 + LASTLITERALS > olimit)); - - anchor = ip; - - /* Test end of chunk */ - if (ip >= mflimitPlusOne) break; - - /* Fill table */ - { U32 const h = LZ4_hashPosition(ip-2, tableType); - if (tableType == byPtr) { - LZ4_putPositionOnHash(ip-2, h, cctx->hashTable, byPtr); - } else { - U32 const idx = (U32)((ip-2) - base); - LZ4_putIndexOnHash(idx, h, cctx->hashTable, tableType); - } } - - /* Test next position */ - if (tableType == byPtr) { - - match = LZ4_getPosition(ip, cctx->hashTable, tableType); - LZ4_putPosition(ip, cctx->hashTable, tableType); - if ( (match+LZ4_DISTANCE_MAX >= ip) - && (LZ4_read32(match) == LZ4_read32(ip)) ) - { token=op++; *token=0; goto _next_match; } - - } else { /* byU32, byU16 */ - - U32 const h = LZ4_hashPosition(ip, tableType); - U32 const current = (U32)(ip-base); - U32 matchIndex = LZ4_getIndexOnHash(h, cctx->hashTable, tableType); - assert(matchIndex < current); - if (dictDirective == usingDictCtx) { - if (matchIndex < startIndex) { - /* there was no match, try the dictionary */ - assert(tableType == byU32); - matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); - match = dictBase + matchIndex; - lowLimit = dictionary; /* required for match length counter */ - matchIndex += dictDelta; - } else { - match = base + matchIndex; - lowLimit = (const BYTE*)source; /* required for match length counter */ - } - } else if (dictDirective==usingExtDict) { - if (matchIndex < startIndex) { - assert(dictBase); - match = dictBase + matchIndex; - lowLimit = dictionary; /* required for match length counter */ - } else { - match = base + matchIndex; - lowLimit = (const BYTE*)source; /* required for match length counter */ - } - } else { /* single memory segment */ - match = base + matchIndex; - } - LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); - assert(matchIndex < current); - if ( ((dictIssue==dictSmall) ? (matchIndex >= prefixIdxLimit) : 1) - && (((tableType==byU16) && (LZ4_DISTANCE_MAX == LZ4_DISTANCE_ABSOLUTE_MAX)) ? 1 : (matchIndex+LZ4_DISTANCE_MAX >= current)) - && (LZ4_read32(match) == LZ4_read32(ip)) ) { - token=op++; - *token=0; - if (maybe_extMem) offset = current - matchIndex; - DEBUGLOG(6, "seq.start:%i, literals=%u, match.start:%i", - (int)(anchor-(const BYTE*)source), 0, (int)(ip-(const BYTE*)source)); - goto _next_match; - } - } - - /* Prepare next loop */ - forwardH = LZ4_hashPosition(++ip, tableType); - - } - -_last_literals: - /* Encode Last Literals */ - { size_t lastRun = (size_t)(iend - anchor); - if ( (outputDirective) && /* Check output buffer overflow */ - (op + lastRun + 1 + ((lastRun+255-RUN_MASK)/255) > olimit)) { - if (outputDirective == fillOutput) { - /* adapt lastRun to fill 'dst' */ - assert(olimit >= op); - lastRun = (size_t)(olimit-op) - 1/*token*/; - lastRun -= (lastRun + 256 - RUN_MASK) / 256; /*additional length tokens*/ - } else { - assert(outputDirective == limitedOutput); - return 0; /* cannot compress within `dst` budget. Stored indexes in hash table are nonetheless fine */ - } - } - DEBUGLOG(6, "Final literal run : %i literals", (int)lastRun); - if (lastRun >= RUN_MASK) { - size_t accumulator = lastRun - RUN_MASK; - *op++ = RUN_MASK << ML_BITS; - for(; accumulator >= 255 ; accumulator-=255) *op++ = 255; - *op++ = (BYTE) accumulator; - } else { - *op++ = (BYTE)(lastRun< 0); - DEBUGLOG(5, "LZ4_compress_generic: compressed %i bytes into %i bytes", inputSize, result); - return result; -} - -/** LZ4_compress_generic() : - * inlined, to ensure branches are decided at compilation time; - * takes care of src == (NULL, 0) - * and forward the rest to LZ4_compress_generic_validated */ -LZ4_FORCE_INLINE int LZ4_compress_generic( - LZ4_stream_t_internal* const cctx, - const char* const src, - char* const dst, - const int srcSize, - int *inputConsumed, /* only written when outputDirective == fillOutput */ - const int dstCapacity, - const limitedOutput_directive outputDirective, - const tableType_t tableType, - const dict_directive dictDirective, - const dictIssue_directive dictIssue, - const int acceleration) -{ - DEBUGLOG(5, "LZ4_compress_generic: srcSize=%i, dstCapacity=%i", - srcSize, dstCapacity); - - if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) { return 0; } /* Unsupported srcSize, too large (or negative) */ - if (srcSize == 0) { /* src == NULL supported if srcSize == 0 */ - if (outputDirective != notLimited && dstCapacity <= 0) return 0; /* no output, can't write anything */ - DEBUGLOG(5, "Generating an empty block"); - assert(outputDirective == notLimited || dstCapacity >= 1); - assert(dst != NULL); - dst[0] = 0; - if (outputDirective == fillOutput) { - assert (inputConsumed != NULL); - *inputConsumed = 0; - } - return 1; - } - assert(src != NULL); - - return LZ4_compress_generic_validated(cctx, src, dst, srcSize, - inputConsumed, /* only written into if outputDirective == fillOutput */ - dstCapacity, outputDirective, - tableType, dictDirective, dictIssue, acceleration); -} - - -int LZ4_compress_fast_extState(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) -{ - LZ4_stream_t_internal* const ctx = & LZ4_initStream(state, sizeof(LZ4_stream_t)) -> internal_donotuse; - assert(ctx != NULL); - if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; - if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; - if (maxOutputSize >= LZ4_compressBound(inputSize)) { - if (inputSize < LZ4_64Klimit) { - return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration); - } else { - const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32; - return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); - } - } else { - if (inputSize < LZ4_64Klimit) { - return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration); - } else { - const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32; - return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration); - } - } -} - -/** - * LZ4_compress_fast_extState_fastReset() : - * A variant of LZ4_compress_fast_extState(). - * - * Using this variant avoids an expensive initialization step. It is only safe - * to call if the state buffer is known to be correctly initialized already - * (see comment in lz4.h on LZ4_resetStream_fast() for a definition of - * "correctly initialized"). - */ -int LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration) -{ - LZ4_stream_t_internal* const ctx = &((LZ4_stream_t*)state)->internal_donotuse; - if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; - if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; - assert(ctx != NULL); - - if (dstCapacity >= LZ4_compressBound(srcSize)) { - if (srcSize < LZ4_64Klimit) { - const tableType_t tableType = byU16; - LZ4_prepareTable(ctx, srcSize, tableType); - if (ctx->currentOffset) { - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSmall, acceleration); - } else { - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); - } - } else { - const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32; - LZ4_prepareTable(ctx, srcSize, tableType); - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); - } - } else { - if (srcSize < LZ4_64Klimit) { - const tableType_t tableType = byU16; - LZ4_prepareTable(ctx, srcSize, tableType); - if (ctx->currentOffset) { - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, dictSmall, acceleration); - } else { - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration); - } - } else { - const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32; - LZ4_prepareTable(ctx, srcSize, tableType); - return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, noDict, noDictIssue, acceleration); - } - } -} - - -int LZ4_compress_fast(const char* src, char* dest, int srcSize, int dstCapacity, int acceleration) -{ - int result; -#if (LZ4_HEAPMODE) - LZ4_stream_t* const ctxPtr = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ - if (ctxPtr == NULL) return 0; -#else - LZ4_stream_t ctx; - LZ4_stream_t* const ctxPtr = &ctx; -#endif - result = LZ4_compress_fast_extState(ctxPtr, src, dest, srcSize, dstCapacity, acceleration); - -#if (LZ4_HEAPMODE) - FREEMEM(ctxPtr); -#endif - return result; -} - - -int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity) -{ - return LZ4_compress_fast(src, dst, srcSize, dstCapacity, 1); -} - - -/* Note!: This function leaves the stream in an unclean/broken state! - * It is not safe to subsequently use the same state with a _fastReset() or - * _continue() call without resetting it. */ -static int LZ4_compress_destSize_extState_internal(LZ4_stream_t* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize, int acceleration) -{ - void* const s = LZ4_initStream(state, sizeof (*state)); - assert(s != NULL); (void)s; - - if (targetDstSize >= LZ4_compressBound(*srcSizePtr)) { /* compression success is guaranteed */ - return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration); - } else { - if (*srcSizePtr < LZ4_64Klimit) { - return LZ4_compress_generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, byU16, noDict, noDictIssue, acceleration); - } else { - tableType_t const addrMode = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32; - return LZ4_compress_generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, addrMode, noDict, noDictIssue, acceleration); - } } -} - -int LZ4_compress_destSize_extState(void* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize, int acceleration) -{ - int const r = LZ4_compress_destSize_extState_internal((LZ4_stream_t*)state, src, dst, srcSizePtr, targetDstSize, acceleration); - /* clean the state on exit */ - LZ4_initStream(state, sizeof (LZ4_stream_t)); - return r; -} - - -int LZ4_compress_destSize(const char* src, char* dst, int* srcSizePtr, int targetDstSize) -{ -#if (LZ4_HEAPMODE) - LZ4_stream_t* const ctx = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ - if (ctx == NULL) return 0; -#else - LZ4_stream_t ctxBody; - LZ4_stream_t* const ctx = &ctxBody; -#endif - - int result = LZ4_compress_destSize_extState_internal(ctx, src, dst, srcSizePtr, targetDstSize, 1); - -#if (LZ4_HEAPMODE) - FREEMEM(ctx); -#endif - return result; -} - - - -/*-****************************** -* Streaming functions -********************************/ - -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -LZ4_stream_t* LZ4_createStream(void) -{ - LZ4_stream_t* const lz4s = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); - LZ4_STATIC_ASSERT(sizeof(LZ4_stream_t) >= sizeof(LZ4_stream_t_internal)); - DEBUGLOG(4, "LZ4_createStream %p", lz4s); - if (lz4s == NULL) return NULL; - LZ4_initStream(lz4s, sizeof(*lz4s)); - return lz4s; -} -#endif - -static size_t LZ4_stream_t_alignment(void) -{ -#if LZ4_ALIGN_TEST - typedef struct { char c; LZ4_stream_t t; } t_a; - return sizeof(t_a) - sizeof(LZ4_stream_t); -#else - return 1; /* effectively disabled */ -#endif -} - -LZ4_stream_t* LZ4_initStream (void* buffer, size_t size) -{ - DEBUGLOG(5, "LZ4_initStream"); - if (buffer == NULL) { return NULL; } - if (size < sizeof(LZ4_stream_t)) { return NULL; } - if (!LZ4_isAligned(buffer, LZ4_stream_t_alignment())) return NULL; - MEM_INIT(buffer, 0, sizeof(LZ4_stream_t_internal)); - return (LZ4_stream_t*)buffer; -} - -/* resetStream is now deprecated, - * prefer initStream() which is more general */ -void LZ4_resetStream (LZ4_stream_t* LZ4_stream) -{ - DEBUGLOG(5, "LZ4_resetStream (ctx:%p)", LZ4_stream); - MEM_INIT(LZ4_stream, 0, sizeof(LZ4_stream_t_internal)); -} - -void LZ4_resetStream_fast(LZ4_stream_t* ctx) { - LZ4_prepareTable(&(ctx->internal_donotuse), 0, byU32); -} - -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -int LZ4_freeStream (LZ4_stream_t* LZ4_stream) -{ - if (!LZ4_stream) return 0; /* support free on NULL */ - DEBUGLOG(5, "LZ4_freeStream %p", LZ4_stream); - FREEMEM(LZ4_stream); - return (0); -} -#endif - - -#define HASH_UNIT sizeof(reg_t) -int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize) -{ - LZ4_stream_t_internal* const dict = &LZ4_dict->internal_donotuse; - const tableType_t tableType = byU32; - const BYTE* p = (const BYTE*)dictionary; - const BYTE* const dictEnd = p + dictSize; - U32 idx32; - - DEBUGLOG(4, "LZ4_loadDict (%i bytes from %p into %p)", dictSize, dictionary, LZ4_dict); - - /* It's necessary to reset the context, - * and not just continue it with prepareTable() - * to avoid any risk of generating overflowing matchIndex - * when compressing using this dictionary */ - LZ4_resetStream(LZ4_dict); - - /* We always increment the offset by 64 KB, since, if the dict is longer, - * we truncate it to the last 64k, and if it's shorter, we still want to - * advance by a whole window length so we can provide the guarantee that - * there are only valid offsets in the window, which allows an optimization - * in LZ4_compress_fast_continue() where it uses noDictIssue even when the - * dictionary isn't a full 64k. */ - dict->currentOffset += 64 KB; - - if (dictSize < (int)HASH_UNIT) { - return 0; - } - - if ((dictEnd - p) > 64 KB) p = dictEnd - 64 KB; - dict->dictionary = p; - dict->dictSize = (U32)(dictEnd - p); - dict->tableType = (U32)tableType; - idx32 = dict->currentOffset - dict->dictSize; - - while (p <= dictEnd-HASH_UNIT) { - U32 const h = LZ4_hashPosition(p, tableType); - LZ4_putIndexOnHash(idx32, h, dict->hashTable, tableType); - p+=3; idx32+=3; - } - - return (int)dict->dictSize; -} - -void LZ4_attach_dictionary(LZ4_stream_t* workingStream, const LZ4_stream_t* dictionaryStream) -{ - const LZ4_stream_t_internal* dictCtx = (dictionaryStream == NULL) ? NULL : - &(dictionaryStream->internal_donotuse); - - DEBUGLOG(4, "LZ4_attach_dictionary (%p, %p, size %u)", - workingStream, dictionaryStream, - dictCtx != NULL ? dictCtx->dictSize : 0); - - if (dictCtx != NULL) { - /* If the current offset is zero, we will never look in the - * external dictionary context, since there is no value a table - * entry can take that indicate a miss. In that case, we need - * to bump the offset to something non-zero. - */ - if (workingStream->internal_donotuse.currentOffset == 0) { - workingStream->internal_donotuse.currentOffset = 64 KB; - } - - /* Don't actually attach an empty dictionary. - */ - if (dictCtx->dictSize == 0) { - dictCtx = NULL; - } - } - workingStream->internal_donotuse.dictCtx = dictCtx; -} - - -static void LZ4_renormDictT(LZ4_stream_t_internal* LZ4_dict, int nextSize) -{ - assert(nextSize >= 0); - if (LZ4_dict->currentOffset + (unsigned)nextSize > 0x80000000) { /* potential ptrdiff_t overflow (32-bits mode) */ - /* rescale hash table */ - U32 const delta = LZ4_dict->currentOffset - 64 KB; - const BYTE* dictEnd = LZ4_dict->dictionary + LZ4_dict->dictSize; - int i; - DEBUGLOG(4, "LZ4_renormDictT"); - for (i=0; ihashTable[i] < delta) LZ4_dict->hashTable[i]=0; - else LZ4_dict->hashTable[i] -= delta; - } - LZ4_dict->currentOffset = 64 KB; - if (LZ4_dict->dictSize > 64 KB) LZ4_dict->dictSize = 64 KB; - LZ4_dict->dictionary = dictEnd - LZ4_dict->dictSize; - } -} - - -int LZ4_compress_fast_continue (LZ4_stream_t* LZ4_stream, - const char* source, char* dest, - int inputSize, int maxOutputSize, - int acceleration) -{ - const tableType_t tableType = byU32; - LZ4_stream_t_internal* const streamPtr = &LZ4_stream->internal_donotuse; - const char* dictEnd = streamPtr->dictSize ? (const char*)streamPtr->dictionary + streamPtr->dictSize : NULL; - - DEBUGLOG(5, "LZ4_compress_fast_continue (inputSize=%i, dictSize=%u)", inputSize, streamPtr->dictSize); - - LZ4_renormDictT(streamPtr, inputSize); /* fix index overflow */ - if (acceleration < 1) acceleration = LZ4_ACCELERATION_DEFAULT; - if (acceleration > LZ4_ACCELERATION_MAX) acceleration = LZ4_ACCELERATION_MAX; - - /* invalidate tiny dictionaries */ - if ( (streamPtr->dictSize < 4) /* tiny dictionary : not enough for a hash */ - && (dictEnd != source) /* prefix mode */ - && (inputSize > 0) /* tolerance : don't lose history, in case next invocation would use prefix mode */ - && (streamPtr->dictCtx == NULL) /* usingDictCtx */ - ) { - DEBUGLOG(5, "LZ4_compress_fast_continue: dictSize(%u) at addr:%p is too small", streamPtr->dictSize, streamPtr->dictionary); - /* remove dictionary existence from history, to employ faster prefix mode */ - streamPtr->dictSize = 0; - streamPtr->dictionary = (const BYTE*)source; - dictEnd = source; - } - - /* Check overlapping input/dictionary space */ - { const char* const sourceEnd = source + inputSize; - if ((sourceEnd > (const char*)streamPtr->dictionary) && (sourceEnd < dictEnd)) { - streamPtr->dictSize = (U32)(dictEnd - sourceEnd); - if (streamPtr->dictSize > 64 KB) streamPtr->dictSize = 64 KB; - if (streamPtr->dictSize < 4) streamPtr->dictSize = 0; - streamPtr->dictionary = (const BYTE*)dictEnd - streamPtr->dictSize; - } - } - - /* prefix mode : source data follows dictionary */ - if (dictEnd == source) { - if ((streamPtr->dictSize < 64 KB) && (streamPtr->dictSize < streamPtr->currentOffset)) - return LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, withPrefix64k, dictSmall, acceleration); - else - return LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, withPrefix64k, noDictIssue, acceleration); - } - - /* external dictionary mode */ - { int result; - if (streamPtr->dictCtx) { - /* We depend here on the fact that dictCtx'es (produced by - * LZ4_loadDict) guarantee that their tables contain no references - * to offsets between dictCtx->currentOffset - 64 KB and - * dictCtx->currentOffset - dictCtx->dictSize. This makes it safe - * to use noDictIssue even when the dict isn't a full 64 KB. - */ - if (inputSize > 4 KB) { - /* For compressing large blobs, it is faster to pay the setup - * cost to copy the dictionary's tables into the active context, - * so that the compression loop is only looking into one table. - */ - LZ4_memcpy(streamPtr, streamPtr->dictCtx, sizeof(*streamPtr)); - result = LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, noDictIssue, acceleration); - } else { - result = LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingDictCtx, noDictIssue, acceleration); - } - } else { /* small data <= 4 KB */ - if ((streamPtr->dictSize < 64 KB) && (streamPtr->dictSize < streamPtr->currentOffset)) { - result = LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, dictSmall, acceleration); - } else { - result = LZ4_compress_generic(streamPtr, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingExtDict, noDictIssue, acceleration); - } - } - streamPtr->dictionary = (const BYTE*)source; - streamPtr->dictSize = (U32)inputSize; - return result; - } -} - - -/* Hidden debug function, to force-test external dictionary mode */ -int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize) -{ - LZ4_stream_t_internal* const streamPtr = &LZ4_dict->internal_donotuse; - int result; - - LZ4_renormDictT(streamPtr, srcSize); - - if ((streamPtr->dictSize < 64 KB) && (streamPtr->dictSize < streamPtr->currentOffset)) { - result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingExtDict, dictSmall, 1); - } else { - result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingExtDict, noDictIssue, 1); - } - - streamPtr->dictionary = (const BYTE*)source; - streamPtr->dictSize = (U32)srcSize; - - return result; -} - - -/*! LZ4_saveDict() : - * If previously compressed data block is not guaranteed to remain available at its memory location, - * save it into a safer place (char* safeBuffer). - * Note : no need to call LZ4_loadDict() afterwards, dictionary is immediately usable, - * one can therefore call LZ4_compress_fast_continue() right after. - * @return : saved dictionary size in bytes (necessarily <= dictSize), or 0 if error. - */ -int LZ4_saveDict (LZ4_stream_t* LZ4_dict, char* safeBuffer, int dictSize) -{ - LZ4_stream_t_internal* const dict = &LZ4_dict->internal_donotuse; - - DEBUGLOG(5, "LZ4_saveDict : dictSize=%i, safeBuffer=%p", dictSize, safeBuffer); - - if ((U32)dictSize > 64 KB) { dictSize = 64 KB; } /* useless to define a dictionary > 64 KB */ - if ((U32)dictSize > dict->dictSize) { dictSize = (int)dict->dictSize; } - - if (safeBuffer == NULL) assert(dictSize == 0); - if (dictSize > 0) { - const BYTE* const previousDictEnd = dict->dictionary + dict->dictSize; - assert(dict->dictionary); - LZ4_memmove(safeBuffer, previousDictEnd - dictSize, (size_t)dictSize); - } - - dict->dictionary = (const BYTE*)safeBuffer; - dict->dictSize = (U32)dictSize; - - return dictSize; -} - - - -/*-******************************* - * Decompression functions - ********************************/ - -typedef enum { decode_full_block = 0, partial_decode = 1 } earlyEnd_directive; - -#undef MIN -#define MIN(a,b) ( (a) < (b) ? (a) : (b) ) - - -/* variant for decompress_unsafe() - * does not know end of input - * presumes input is well formed - * note : will consume at least one byte */ -static size_t read_long_length_no_check(const BYTE** pp) -{ - size_t b, l = 0; - do { b = **pp; (*pp)++; l += b; } while (b==255); - DEBUGLOG(6, "read_long_length_no_check: +length=%zu using %zu input bytes", l, l/255 + 1) - return l; -} - -/* core decoder variant for LZ4_decompress_fast*() - * for legacy support only : these entry points are deprecated. - * - Presumes input is correctly formed (no defense vs malformed inputs) - * - Does not know input size (presume input buffer is "large enough") - * - Decompress a full block (only) - * @return : nb of bytes read from input. - * Note : this variant is not optimized for speed, just for maintenance. - * the goal is to remove support of decompress_fast*() variants by v2.0 -**/ -LZ4_FORCE_INLINE int -LZ4_decompress_unsafe_generic( - const BYTE* const istart, - BYTE* const ostart, - int decompressedSize, - - size_t prefixSize, - const BYTE* const dictStart, /* only if dict==usingExtDict */ - const size_t dictSize /* note: =0 if dictStart==NULL */ - ) -{ - const BYTE* ip = istart; - BYTE* op = (BYTE*)ostart; - BYTE* const oend = ostart + decompressedSize; - const BYTE* const prefixStart = ostart - prefixSize; - - DEBUGLOG(5, "LZ4_decompress_unsafe_generic"); - if (dictStart == NULL) assert(dictSize == 0); - - while (1) { - /* start new sequence */ - unsigned token = *ip++; - - /* literals */ - { size_t ll = token >> ML_BITS; - if (ll==15) { - /* long literal length */ - ll += read_long_length_no_check(&ip); - } - if ((size_t)(oend-op) < ll) return -1; /* output buffer overflow */ - LZ4_memmove(op, ip, ll); /* support in-place decompression */ - op += ll; - ip += ll; - if ((size_t)(oend-op) < MFLIMIT) { - if (op==oend) break; /* end of block */ - DEBUGLOG(5, "invalid: literals end at distance %zi from end of block", oend-op); - /* incorrect end of block : - * last match must start at least MFLIMIT==12 bytes before end of output block */ - return -1; - } } - - /* match */ - { size_t ml = token & 15; - size_t const offset = LZ4_readLE16(ip); - ip+=2; - - if (ml==15) { - /* long literal length */ - ml += read_long_length_no_check(&ip); - } - ml += MINMATCH; - - if ((size_t)(oend-op) < ml) return -1; /* output buffer overflow */ - - { const BYTE* match = op - offset; - - /* out of range */ - if (offset > (size_t)(op - prefixStart) + dictSize) { - DEBUGLOG(6, "offset out of range"); - return -1; - } - - /* check special case : extDict */ - if (offset > (size_t)(op - prefixStart)) { - /* extDict scenario */ - const BYTE* const dictEnd = dictStart + dictSize; - const BYTE* extMatch = dictEnd - (offset - (size_t)(op-prefixStart)); - size_t const extml = (size_t)(dictEnd - extMatch); - if (extml > ml) { - /* match entirely within extDict */ - LZ4_memmove(op, extMatch, ml); - op += ml; - ml = 0; - } else { - /* match split between extDict & prefix */ - LZ4_memmove(op, extMatch, extml); - op += extml; - ml -= extml; - } - match = prefixStart; - } - - /* match copy - slow variant, supporting overlap copy */ - { size_t u; - for (u=0; u= ipmax before start of loop. Returns initial_error if so. - * @error (output) - error code. Must be set to 0 before call. -**/ -typedef size_t Rvl_t; -static const Rvl_t rvl_error = (Rvl_t)(-1); -LZ4_FORCE_INLINE Rvl_t -read_variable_length(const BYTE** ip, const BYTE* ilimit, - int initial_check) -{ - Rvl_t s, length = 0; - assert(ip != NULL); - assert(*ip != NULL); - assert(ilimit != NULL); - if (initial_check && unlikely((*ip) >= ilimit)) { /* read limit reached */ - return rvl_error; - } - s = **ip; - (*ip)++; - length += s; - if (unlikely((*ip) > ilimit)) { /* read limit reached */ - return rvl_error; - } - /* accumulator overflow detection (32-bit mode only) */ - if ((sizeof(length) < 8) && unlikely(length > ((Rvl_t)(-1)/2)) ) { - return rvl_error; - } - if (likely(s != 255)) return length; - do { - s = **ip; - (*ip)++; - length += s; - if (unlikely((*ip) > ilimit)) { /* read limit reached */ - return rvl_error; - } - /* accumulator overflow detection (32-bit mode only) */ - if ((sizeof(length) < 8) && unlikely(length > ((Rvl_t)(-1)/2)) ) { - return rvl_error; - } - } while (s == 255); - - return length; -} - -/*! LZ4_decompress_generic() : - * This generic decompression function covers all use cases. - * It shall be instantiated several times, using different sets of directives. - * Note that it is important for performance that this function really get inlined, - * in order to remove useless branches during compilation optimization. - */ -LZ4_FORCE_INLINE int -LZ4_decompress_generic( - const char* const src, - char* const dst, - int srcSize, - int outputSize, /* If endOnInput==endOnInputSize, this value is `dstCapacity` */ - - earlyEnd_directive partialDecoding, /* full, partial */ - dict_directive dict, /* noDict, withPrefix64k, usingExtDict */ - const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */ - const BYTE* const dictStart, /* only if dict==usingExtDict */ - const size_t dictSize /* note : = 0 if noDict */ - ) -{ - if ((src == NULL) || (outputSize < 0)) { return -1; } - - { const BYTE* ip = (const BYTE*) src; - const BYTE* const iend = ip + srcSize; - - BYTE* op = (BYTE*) dst; - BYTE* const oend = op + outputSize; - BYTE* cpy; - - const BYTE* const dictEnd = (dictStart == NULL) ? NULL : dictStart + dictSize; - - const int checkOffset = (dictSize < (int)(64 KB)); - - - /* Set up the "end" pointers for the shortcut. */ - const BYTE* const shortiend = iend - 14 /*maxLL*/ - 2 /*offset*/; - const BYTE* const shortoend = oend - 14 /*maxLL*/ - 18 /*maxML*/; - - const BYTE* match; - size_t offset; - unsigned token; - size_t length; - - - DEBUGLOG(5, "LZ4_decompress_generic (srcSize:%i, dstSize:%i)", srcSize, outputSize); - - /* Special cases */ - assert(lowPrefix <= op); - if (unlikely(outputSize==0)) { - /* Empty output buffer */ - if (partialDecoding) return 0; - return ((srcSize==1) && (*ip==0)) ? 0 : -1; - } - if (unlikely(srcSize==0)) { return -1; } - - /* LZ4_FAST_DEC_LOOP: - * designed for modern OoO performance cpus, - * where copying reliably 32-bytes is preferable to an unpredictable branch. - * note : fast loop may show a regression for some client arm chips. */ -#if LZ4_FAST_DEC_LOOP - if ((oend - op) < FASTLOOP_SAFE_DISTANCE) { - DEBUGLOG(6, "skip fast decode loop"); - goto safe_decode; - } - - /* Fast loop : decode sequences as long as output < oend-FASTLOOP_SAFE_DISTANCE */ - DEBUGLOG(6, "using fast decode loop"); - while (1) { - /* Main fastloop assertion: We can always wildcopy FASTLOOP_SAFE_DISTANCE */ - assert(oend - op >= FASTLOOP_SAFE_DISTANCE); - assert(ip < iend); - token = *ip++; - length = token >> ML_BITS; /* literal length */ - - /* decode literal length */ - if (length == RUN_MASK) { - size_t const addl = read_variable_length(&ip, iend-RUN_MASK, 1); - if (addl == rvl_error) { - DEBUGLOG(6, "error reading long literal length"); - goto _output_error; - } - length += addl; - if (unlikely((uptrval)(op)+length<(uptrval)(op))) { goto _output_error; } /* overflow detection */ - if (unlikely((uptrval)(ip)+length<(uptrval)(ip))) { goto _output_error; } /* overflow detection */ - - /* copy literals */ - LZ4_STATIC_ASSERT(MFLIMIT >= WILDCOPYLENGTH); - if ((op+length>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; } - LZ4_wildCopy32(op, ip, op+length); - ip += length; op += length; - } else if (ip <= iend-(16 + 1/*max lit + offset + nextToken*/)) { - /* We don't need to check oend, since we check it once for each loop below */ - DEBUGLOG(7, "copy %u bytes in a 16-bytes stripe", (unsigned)length); - /* Literals can only be <= 14, but hope compilers optimize better when copy by a register size */ - LZ4_memcpy(op, ip, 16); - ip += length; op += length; - } else { - goto safe_literal_copy; - } - - /* get offset */ - offset = LZ4_readLE16(ip); ip+=2; - DEBUGLOG(6, " offset = %zu", offset); - match = op - offset; - assert(match <= op); /* overflow check */ - - /* get matchlength */ - length = token & ML_MASK; - - if (length == ML_MASK) { - size_t const addl = read_variable_length(&ip, iend - LASTLITERALS + 1, 0); - if (addl == rvl_error) { - DEBUGLOG(6, "error reading long match length"); - goto _output_error; - } - length += addl; - length += MINMATCH; - if (unlikely((uptrval)(op)+length<(uptrval)op)) { goto _output_error; } /* overflow detection */ - if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) { - goto safe_match_copy; - } - } else { - length += MINMATCH; - if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) { - goto safe_match_copy; - } - - /* Fastpath check: skip LZ4_wildCopy32 when true */ - if ((dict == withPrefix64k) || (match >= lowPrefix)) { - if (offset >= 8) { - assert(match >= lowPrefix); - assert(match <= op); - assert(op + 18 <= oend); - - LZ4_memcpy(op, match, 8); - LZ4_memcpy(op+8, match+8, 8); - LZ4_memcpy(op+16, match+16, 2); - op += length; - continue; - } } } - - if ( checkOffset && (unlikely(match + dictSize < lowPrefix)) ) { - DEBUGLOG(6, "Error : pos=%zi, offset=%zi => outside buffers", op-lowPrefix, op-match); - goto _output_error; - } - /* match starting within external dictionary */ - if ((dict==usingExtDict) && (match < lowPrefix)) { - assert(dictEnd != NULL); - if (unlikely(op+length > oend-LASTLITERALS)) { - if (partialDecoding) { - DEBUGLOG(7, "partialDecoding: dictionary match, close to dstEnd"); - length = MIN(length, (size_t)(oend-op)); - } else { - DEBUGLOG(6, "end-of-block condition violated") - goto _output_error; - } } - - if (length <= (size_t)(lowPrefix-match)) { - /* match fits entirely within external dictionary : just copy */ - LZ4_memmove(op, dictEnd - (lowPrefix-match), length); - op += length; - } else { - /* match stretches into both external dictionary and current block */ - size_t const copySize = (size_t)(lowPrefix - match); - size_t const restSize = length - copySize; - LZ4_memcpy(op, dictEnd - copySize, copySize); - op += copySize; - if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ - BYTE* const endOfMatch = op + restSize; - const BYTE* copyFrom = lowPrefix; - while (op < endOfMatch) { *op++ = *copyFrom++; } - } else { - LZ4_memcpy(op, lowPrefix, restSize); - op += restSize; - } } - continue; - } - - /* copy match within block */ - cpy = op + length; - - assert((op <= oend) && (oend-op >= 32)); - if (unlikely(offset<16)) { - LZ4_memcpy_using_offset(op, match, cpy, offset); - } else { - LZ4_wildCopy32(op, match, cpy); - } - - op = cpy; /* wildcopy correction */ - } - safe_decode: -#endif - - /* Main Loop : decode remaining sequences where output < FASTLOOP_SAFE_DISTANCE */ - DEBUGLOG(6, "using safe decode loop"); - while (1) { - assert(ip < iend); - token = *ip++; - length = token >> ML_BITS; /* literal length */ - - /* A two-stage shortcut for the most common case: - * 1) If the literal length is 0..14, and there is enough space, - * enter the shortcut and copy 16 bytes on behalf of the literals - * (in the fast mode, only 8 bytes can be safely copied this way). - * 2) Further if the match length is 4..18, copy 18 bytes in a similar - * manner; but we ensure that there's enough space in the output for - * those 18 bytes earlier, upon entering the shortcut (in other words, - * there is a combined check for both stages). - */ - if ( (length != RUN_MASK) - /* strictly "less than" on input, to re-enter the loop with at least one byte */ - && likely((ip < shortiend) & (op <= shortoend)) ) { - /* Copy the literals */ - LZ4_memcpy(op, ip, 16); - op += length; ip += length; - - /* The second stage: prepare for match copying, decode full info. - * If it doesn't work out, the info won't be wasted. */ - length = token & ML_MASK; /* match length */ - offset = LZ4_readLE16(ip); ip += 2; - match = op - offset; - assert(match <= op); /* check overflow */ - - /* Do not deal with overlapping matches. */ - if ( (length != ML_MASK) - && (offset >= 8) - && (dict==withPrefix64k || match >= lowPrefix) ) { - /* Copy the match. */ - LZ4_memcpy(op + 0, match + 0, 8); - LZ4_memcpy(op + 8, match + 8, 8); - LZ4_memcpy(op +16, match +16, 2); - op += length + MINMATCH; - /* Both stages worked, load the next token. */ - continue; - } - - /* The second stage didn't work out, but the info is ready. - * Propel it right to the point of match copying. */ - goto _copy_match; - } - - /* decode literal length */ - if (length == RUN_MASK) { - size_t const addl = read_variable_length(&ip, iend-RUN_MASK, 1); - if (addl == rvl_error) { goto _output_error; } - length += addl; - if (unlikely((uptrval)(op)+length<(uptrval)(op))) { goto _output_error; } /* overflow detection */ - if (unlikely((uptrval)(ip)+length<(uptrval)(ip))) { goto _output_error; } /* overflow detection */ - } - -#if LZ4_FAST_DEC_LOOP - safe_literal_copy: -#endif - /* copy literals */ - cpy = op+length; - - LZ4_STATIC_ASSERT(MFLIMIT >= WILDCOPYLENGTH); - if ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) { - /* We've either hit the input parsing restriction or the output parsing restriction. - * In the normal scenario, decoding a full block, it must be the last sequence, - * otherwise it's an error (invalid input or dimensions). - * In partialDecoding scenario, it's necessary to ensure there is no buffer overflow. - */ - if (partialDecoding) { - /* Since we are partial decoding we may be in this block because of the output parsing - * restriction, which is not valid since the output buffer is allowed to be undersized. - */ - DEBUGLOG(7, "partialDecoding: copying literals, close to input or output end") - DEBUGLOG(7, "partialDecoding: literal length = %u", (unsigned)length); - DEBUGLOG(7, "partialDecoding: remaining space in dstBuffer : %i", (int)(oend - op)); - DEBUGLOG(7, "partialDecoding: remaining space in srcBuffer : %i", (int)(iend - ip)); - /* Finishing in the middle of a literals segment, - * due to lack of input. - */ - if (ip+length > iend) { - length = (size_t)(iend-ip); - cpy = op + length; - } - /* Finishing in the middle of a literals segment, - * due to lack of output space. - */ - if (cpy > oend) { - cpy = oend; - assert(op<=oend); - length = (size_t)(oend-op); - } - } else { - /* We must be on the last sequence (or invalid) because of the parsing limitations - * so check that we exactly consume the input and don't overrun the output buffer. - */ - if ((ip+length != iend) || (cpy > oend)) { - DEBUGLOG(6, "should have been last run of literals") - DEBUGLOG(6, "ip(%p) + length(%i) = %p != iend (%p)", ip, (int)length, ip+length, iend); - DEBUGLOG(6, "or cpy(%p) > oend(%p)", cpy, oend); - goto _output_error; - } - } - LZ4_memmove(op, ip, length); /* supports overlapping memory regions, for in-place decompression scenarios */ - ip += length; - op += length; - /* Necessarily EOF when !partialDecoding. - * When partialDecoding, it is EOF if we've either - * filled the output buffer or - * can't proceed with reading an offset for following match. - */ - if (!partialDecoding || (cpy == oend) || (ip >= (iend-2))) { - break; - } - } else { - LZ4_wildCopy8(op, ip, cpy); /* can overwrite up to 8 bytes beyond cpy */ - ip += length; op = cpy; - } - - /* get offset */ - offset = LZ4_readLE16(ip); ip+=2; - match = op - offset; - - /* get matchlength */ - length = token & ML_MASK; - - _copy_match: - if (length == ML_MASK) { - size_t const addl = read_variable_length(&ip, iend - LASTLITERALS + 1, 0); - if (addl == rvl_error) { goto _output_error; } - length += addl; - if (unlikely((uptrval)(op)+length<(uptrval)op)) goto _output_error; /* overflow detection */ - } - length += MINMATCH; - -#if LZ4_FAST_DEC_LOOP - safe_match_copy: -#endif - if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) goto _output_error; /* Error : offset outside buffers */ - /* match starting within external dictionary */ - if ((dict==usingExtDict) && (match < lowPrefix)) { - assert(dictEnd != NULL); - if (unlikely(op+length > oend-LASTLITERALS)) { - if (partialDecoding) length = MIN(length, (size_t)(oend-op)); - else goto _output_error; /* doesn't respect parsing restriction */ - } - - if (length <= (size_t)(lowPrefix-match)) { - /* match fits entirely within external dictionary : just copy */ - LZ4_memmove(op, dictEnd - (lowPrefix-match), length); - op += length; - } else { - /* match stretches into both external dictionary and current block */ - size_t const copySize = (size_t)(lowPrefix - match); - size_t const restSize = length - copySize; - LZ4_memcpy(op, dictEnd - copySize, copySize); - op += copySize; - if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ - BYTE* const endOfMatch = op + restSize; - const BYTE* copyFrom = lowPrefix; - while (op < endOfMatch) *op++ = *copyFrom++; - } else { - LZ4_memcpy(op, lowPrefix, restSize); - op += restSize; - } } - continue; - } - assert(match >= lowPrefix); - - /* copy match within block */ - cpy = op + length; - - /* partialDecoding : may end anywhere within the block */ - assert(op<=oend); - if (partialDecoding && (cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { - size_t const mlen = MIN(length, (size_t)(oend-op)); - const BYTE* const matchEnd = match + mlen; - BYTE* const copyEnd = op + mlen; - if (matchEnd > op) { /* overlap copy */ - while (op < copyEnd) { *op++ = *match++; } - } else { - LZ4_memcpy(op, match, mlen); - } - op = copyEnd; - if (op == oend) { break; } - continue; - } - - if (unlikely(offset<8)) { - LZ4_write32(op, 0); /* silence msan warning when offset==0 */ - op[0] = match[0]; - op[1] = match[1]; - op[2] = match[2]; - op[3] = match[3]; - match += inc32table[offset]; - LZ4_memcpy(op+4, match, 4); - match -= dec64table[offset]; - } else { - LZ4_memcpy(op, match, 8); - match += 8; - } - op += 8; - - if (unlikely(cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { - BYTE* const oCopyLimit = oend - (WILDCOPYLENGTH-1); - if (cpy > oend-LASTLITERALS) { goto _output_error; } /* Error : last LASTLITERALS bytes must be literals (uncompressed) */ - if (op < oCopyLimit) { - LZ4_wildCopy8(op, match, oCopyLimit); - match += oCopyLimit - op; - op = oCopyLimit; - } - while (op < cpy) { *op++ = *match++; } - } else { - LZ4_memcpy(op, match, 8); - if (length > 16) { LZ4_wildCopy8(op+8, match+8, cpy); } - } - op = cpy; /* wildcopy correction */ - } - - /* end of decoding */ - DEBUGLOG(5, "decoded %i bytes", (int) (((char*)op)-dst)); - return (int) (((char*)op)-dst); /* Nb of output bytes decoded */ - - /* Overflow error detected */ - _output_error: - return (int) (-(((const char*)ip)-src))-1; - } -} - - -/*===== Instantiate the API decoding functions. =====*/ - -LZ4_FORCE_O2 -int LZ4_decompress_safe(const char* source, char* dest, int compressedSize, int maxDecompressedSize) -{ - return LZ4_decompress_generic(source, dest, compressedSize, maxDecompressedSize, - decode_full_block, noDict, - (BYTE*)dest, NULL, 0); -} - -LZ4_FORCE_O2 -int LZ4_decompress_safe_partial(const char* src, char* dst, int compressedSize, int targetOutputSize, int dstCapacity) -{ - dstCapacity = MIN(targetOutputSize, dstCapacity); - return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity, - partial_decode, - noDict, (BYTE*)dst, NULL, 0); -} - -LZ4_FORCE_O2 -int LZ4_decompress_fast(const char* source, char* dest, int originalSize) -{ - DEBUGLOG(5, "LZ4_decompress_fast"); - return LZ4_decompress_unsafe_generic( - (const BYTE*)source, (BYTE*)dest, originalSize, - 0, NULL, 0); -} - -/*===== Instantiate a few more decoding cases, used more than once. =====*/ - -LZ4_FORCE_O2 /* Exported, an obsolete API function. */ -int LZ4_decompress_safe_withPrefix64k(const char* source, char* dest, int compressedSize, int maxOutputSize) -{ - return LZ4_decompress_generic(source, dest, compressedSize, maxOutputSize, - decode_full_block, withPrefix64k, - (BYTE*)dest - 64 KB, NULL, 0); -} - -LZ4_FORCE_O2 -static int LZ4_decompress_safe_partial_withPrefix64k(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity) -{ - dstCapacity = MIN(targetOutputSize, dstCapacity); - return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, - partial_decode, withPrefix64k, - (BYTE*)dest - 64 KB, NULL, 0); -} - -/* Another obsolete API function, paired with the previous one. */ -int LZ4_decompress_fast_withPrefix64k(const char* source, char* dest, int originalSize) -{ - return LZ4_decompress_unsafe_generic( - (const BYTE*)source, (BYTE*)dest, originalSize, - 64 KB, NULL, 0); -} - -LZ4_FORCE_O2 -static int LZ4_decompress_safe_withSmallPrefix(const char* source, char* dest, int compressedSize, int maxOutputSize, - size_t prefixSize) -{ - return LZ4_decompress_generic(source, dest, compressedSize, maxOutputSize, - decode_full_block, noDict, - (BYTE*)dest-prefixSize, NULL, 0); -} - -LZ4_FORCE_O2 -static int LZ4_decompress_safe_partial_withSmallPrefix(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, - size_t prefixSize) -{ - dstCapacity = MIN(targetOutputSize, dstCapacity); - return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, - partial_decode, noDict, - (BYTE*)dest-prefixSize, NULL, 0); -} - -LZ4_FORCE_O2 -int LZ4_decompress_safe_forceExtDict(const char* source, char* dest, - int compressedSize, int maxOutputSize, - const void* dictStart, size_t dictSize) -{ - DEBUGLOG(5, "LZ4_decompress_safe_forceExtDict"); - return LZ4_decompress_generic(source, dest, compressedSize, maxOutputSize, - decode_full_block, usingExtDict, - (BYTE*)dest, (const BYTE*)dictStart, dictSize); -} - -LZ4_FORCE_O2 -int LZ4_decompress_safe_partial_forceExtDict(const char* source, char* dest, - int compressedSize, int targetOutputSize, int dstCapacity, - const void* dictStart, size_t dictSize) -{ - dstCapacity = MIN(targetOutputSize, dstCapacity); - return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, - partial_decode, usingExtDict, - (BYTE*)dest, (const BYTE*)dictStart, dictSize); -} - -LZ4_FORCE_O2 -static int LZ4_decompress_fast_extDict(const char* source, char* dest, int originalSize, - const void* dictStart, size_t dictSize) -{ - return LZ4_decompress_unsafe_generic( - (const BYTE*)source, (BYTE*)dest, originalSize, - 0, (const BYTE*)dictStart, dictSize); -} - -/* The "double dictionary" mode, for use with e.g. ring buffers: the first part - * of the dictionary is passed as prefix, and the second via dictStart + dictSize. - * These routines are used only once, in LZ4_decompress_*_continue(). - */ -LZ4_FORCE_INLINE -int LZ4_decompress_safe_doubleDict(const char* source, char* dest, int compressedSize, int maxOutputSize, - size_t prefixSize, const void* dictStart, size_t dictSize) -{ - return LZ4_decompress_generic(source, dest, compressedSize, maxOutputSize, - decode_full_block, usingExtDict, - (BYTE*)dest-prefixSize, (const BYTE*)dictStart, dictSize); -} - -/*===== streaming decompression functions =====*/ - -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -LZ4_streamDecode_t* LZ4_createStreamDecode(void) -{ - LZ4_STATIC_ASSERT(sizeof(LZ4_streamDecode_t) >= sizeof(LZ4_streamDecode_t_internal)); - return (LZ4_streamDecode_t*) ALLOC_AND_ZERO(sizeof(LZ4_streamDecode_t)); -} - -int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) -{ - if (LZ4_stream == NULL) { return 0; } /* support free on NULL */ - FREEMEM(LZ4_stream); - return 0; -} -#endif - -/*! LZ4_setStreamDecode() : - * Use this function to instruct where to find the dictionary. - * This function is not necessary if previous data is still available where it was decoded. - * Loading a size of 0 is allowed (same effect as no dictionary). - * @return : 1 if OK, 0 if error - */ -int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) -{ - LZ4_streamDecode_t_internal* lz4sd = &LZ4_streamDecode->internal_donotuse; - lz4sd->prefixSize = (size_t)dictSize; - if (dictSize) { - assert(dictionary != NULL); - lz4sd->prefixEnd = (const BYTE*) dictionary + dictSize; - } else { - lz4sd->prefixEnd = (const BYTE*) dictionary; - } - lz4sd->externalDict = NULL; - lz4sd->extDictSize = 0; - return 1; -} - -/*! LZ4_decoderRingBufferSize() : - * when setting a ring buffer for streaming decompression (optional scenario), - * provides the minimum size of this ring buffer - * to be compatible with any source respecting maxBlockSize condition. - * Note : in a ring buffer scenario, - * blocks are presumed decompressed next to each other. - * When not enough space remains for next block (remainingSize < maxBlockSize), - * decoding resumes from beginning of ring buffer. - * @return : minimum ring buffer size, - * or 0 if there is an error (invalid maxBlockSize). - */ -int LZ4_decoderRingBufferSize(int maxBlockSize) -{ - if (maxBlockSize < 0) return 0; - if (maxBlockSize > LZ4_MAX_INPUT_SIZE) return 0; - if (maxBlockSize < 16) maxBlockSize = 16; - return LZ4_DECODER_RING_BUFFER_SIZE(maxBlockSize); -} - -/* -*_continue() : - These decoding functions allow decompression of multiple blocks in "streaming" mode. - Previously decoded blocks must still be available at the memory position where they were decoded. - If it's not possible, save the relevant part of decoded data into a safe buffer, - and indicate where it stands using LZ4_setStreamDecode() -*/ -LZ4_FORCE_O2 -int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxOutputSize) -{ - LZ4_streamDecode_t_internal* lz4sd = &LZ4_streamDecode->internal_donotuse; - int result; - - if (lz4sd->prefixSize == 0) { - /* The first call, no dictionary yet. */ - assert(lz4sd->extDictSize == 0); - result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize); - if (result <= 0) return result; - lz4sd->prefixSize = (size_t)result; - lz4sd->prefixEnd = (BYTE*)dest + result; - } else if (lz4sd->prefixEnd == (BYTE*)dest) { - /* They're rolling the current segment. */ - if (lz4sd->prefixSize >= 64 KB - 1) - result = LZ4_decompress_safe_withPrefix64k(source, dest, compressedSize, maxOutputSize); - else if (lz4sd->extDictSize == 0) - result = LZ4_decompress_safe_withSmallPrefix(source, dest, compressedSize, maxOutputSize, - lz4sd->prefixSize); - else - result = LZ4_decompress_safe_doubleDict(source, dest, compressedSize, maxOutputSize, - lz4sd->prefixSize, lz4sd->externalDict, lz4sd->extDictSize); - if (result <= 0) return result; - lz4sd->prefixSize += (size_t)result; - lz4sd->prefixEnd += result; - } else { - /* The buffer wraps around, or they're switching to another buffer. */ - lz4sd->extDictSize = lz4sd->prefixSize; - lz4sd->externalDict = lz4sd->prefixEnd - lz4sd->extDictSize; - result = LZ4_decompress_safe_forceExtDict(source, dest, compressedSize, maxOutputSize, - lz4sd->externalDict, lz4sd->extDictSize); - if (result <= 0) return result; - lz4sd->prefixSize = (size_t)result; - lz4sd->prefixEnd = (BYTE*)dest + result; - } - - return result; -} - -LZ4_FORCE_O2 int -LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, - const char* source, char* dest, int originalSize) -{ - LZ4_streamDecode_t_internal* const lz4sd = - (assert(LZ4_streamDecode!=NULL), &LZ4_streamDecode->internal_donotuse); - int result; - - DEBUGLOG(5, "LZ4_decompress_fast_continue (toDecodeSize=%i)", originalSize); - assert(originalSize >= 0); - - if (lz4sd->prefixSize == 0) { - DEBUGLOG(5, "first invocation : no prefix nor extDict"); - assert(lz4sd->extDictSize == 0); - result = LZ4_decompress_fast(source, dest, originalSize); - if (result <= 0) return result; - lz4sd->prefixSize = (size_t)originalSize; - lz4sd->prefixEnd = (BYTE*)dest + originalSize; - } else if (lz4sd->prefixEnd == (BYTE*)dest) { - DEBUGLOG(5, "continue using existing prefix"); - result = LZ4_decompress_unsafe_generic( - (const BYTE*)source, (BYTE*)dest, originalSize, - lz4sd->prefixSize, - lz4sd->externalDict, lz4sd->extDictSize); - if (result <= 0) return result; - lz4sd->prefixSize += (size_t)originalSize; - lz4sd->prefixEnd += originalSize; - } else { - DEBUGLOG(5, "prefix becomes extDict"); - lz4sd->extDictSize = lz4sd->prefixSize; - lz4sd->externalDict = lz4sd->prefixEnd - lz4sd->extDictSize; - result = LZ4_decompress_fast_extDict(source, dest, originalSize, - lz4sd->externalDict, lz4sd->extDictSize); - if (result <= 0) return result; - lz4sd->prefixSize = (size_t)originalSize; - lz4sd->prefixEnd = (BYTE*)dest + originalSize; - } - - return result; -} - - -/* -Advanced decoding functions : -*_usingDict() : - These decoding functions work the same as "_continue" ones, - the dictionary must be explicitly provided within parameters -*/ - -int LZ4_decompress_safe_usingDict(const char* source, char* dest, int compressedSize, int maxOutputSize, const char* dictStart, int dictSize) -{ - if (dictSize==0) - return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize); - if (dictStart+dictSize == dest) { - if (dictSize >= 64 KB - 1) { - return LZ4_decompress_safe_withPrefix64k(source, dest, compressedSize, maxOutputSize); - } - assert(dictSize >= 0); - return LZ4_decompress_safe_withSmallPrefix(source, dest, compressedSize, maxOutputSize, (size_t)dictSize); - } - assert(dictSize >= 0); - return LZ4_decompress_safe_forceExtDict(source, dest, compressedSize, maxOutputSize, dictStart, (size_t)dictSize); -} - -int LZ4_decompress_safe_partial_usingDict(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, const char* dictStart, int dictSize) -{ - if (dictSize==0) - return LZ4_decompress_safe_partial(source, dest, compressedSize, targetOutputSize, dstCapacity); - if (dictStart+dictSize == dest) { - if (dictSize >= 64 KB - 1) { - return LZ4_decompress_safe_partial_withPrefix64k(source, dest, compressedSize, targetOutputSize, dstCapacity); - } - assert(dictSize >= 0); - return LZ4_decompress_safe_partial_withSmallPrefix(source, dest, compressedSize, targetOutputSize, dstCapacity, (size_t)dictSize); - } - assert(dictSize >= 0); - return LZ4_decompress_safe_partial_forceExtDict(source, dest, compressedSize, targetOutputSize, dstCapacity, dictStart, (size_t)dictSize); -} - -int LZ4_decompress_fast_usingDict(const char* source, char* dest, int originalSize, const char* dictStart, int dictSize) -{ - if (dictSize==0 || dictStart+dictSize == dest) - return LZ4_decompress_unsafe_generic( - (const BYTE*)source, (BYTE*)dest, originalSize, - (size_t)dictSize, NULL, 0); - assert(dictSize >= 0); - return LZ4_decompress_fast_extDict(source, dest, originalSize, dictStart, (size_t)dictSize); -} - - -/*=************************************************* -* Obsolete Functions -***************************************************/ -/* obsolete compression functions */ -int LZ4_compress_limitedOutput(const char* source, char* dest, int inputSize, int maxOutputSize) -{ - return LZ4_compress_default(source, dest, inputSize, maxOutputSize); -} -int LZ4_compress(const char* src, char* dest, int srcSize) -{ - return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize)); -} -int LZ4_compress_limitedOutput_withState (void* state, const char* src, char* dst, int srcSize, int dstSize) -{ - return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1); -} -int LZ4_compress_withState (void* state, const char* src, char* dst, int srcSize) -{ - return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1); -} -int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity) -{ - return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1); -} -int LZ4_compress_continue (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize) -{ - return LZ4_compress_fast_continue(LZ4_stream, source, dest, inputSize, LZ4_compressBound(inputSize), 1); -} - -/* -These decompression functions are deprecated and should no longer be used. -They are only provided here for compatibility with older user programs. -- LZ4_uncompress is totally equivalent to LZ4_decompress_fast -- LZ4_uncompress_unknownOutputSize is totally equivalent to LZ4_decompress_safe -*/ -int LZ4_uncompress (const char* source, char* dest, int outputSize) -{ - return LZ4_decompress_fast(source, dest, outputSize); -} -int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize) -{ - return LZ4_decompress_safe(source, dest, isize, maxOutputSize); -} - -/* Obsolete Streaming functions */ - -int LZ4_sizeofStreamState(void) { return sizeof(LZ4_stream_t); } - -int LZ4_resetStreamState(void* state, char* inputBuffer) -{ - (void)inputBuffer; - LZ4_resetStream((LZ4_stream_t*)state); - return 0; -} - -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -void* LZ4_create (char* inputBuffer) -{ - (void)inputBuffer; - return LZ4_createStream(); -} -#endif - -char* LZ4_slideInputBuffer (void* state) -{ - /* avoid const char * -> char * conversion warning */ - return (char *)(uptrval)((LZ4_stream_t*)state)->internal_donotuse.dictionary; -} - -#endif /* LZ4_COMMONDEFS_ONLY */ diff --git a/phobia/gp/lz4.h b/phobia/gp/lz4.h deleted file mode 100644 index 7a2dbfd..0000000 --- a/phobia/gp/lz4.h +++ /dev/null @@ -1,868 +0,0 @@ -/* - * LZ4 - Fast LZ compression algorithm - * Header File - * Copyright (C) 2011-2023, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - LZ4 homepage : http://www.lz4.org - - LZ4 source repository : https://github.com/lz4/lz4 -*/ -#if defined (__cplusplus) -extern "C" { -#endif - -#ifndef LZ4_H_2983827168210 -#define LZ4_H_2983827168210 - -/* --- Dependency --- */ -#include /* size_t */ - - -/** - Introduction - - LZ4 is lossless compression algorithm, providing compression speed >500 MB/s per core, - scalable with multi-cores CPU. It features an extremely fast decoder, with speed in - multiple GB/s per core, typically reaching RAM speed limits on multi-core systems. - - The LZ4 compression library provides in-memory compression and decompression functions. - It gives full buffer control to user. - Compression can be done in: - - a single step (described as Simple Functions) - - a single step, reusing a context (described in Advanced Functions) - - unbounded multiple steps (described as Streaming compression) - - lz4.h generates and decodes LZ4-compressed blocks (doc/lz4_Block_format.md). - Decompressing such a compressed block requires additional metadata. - Exact metadata depends on exact decompression function. - For the typical case of LZ4_decompress_safe(), - metadata includes block's compressed size, and maximum bound of decompressed size. - Each application is free to encode and pass such metadata in whichever way it wants. - - lz4.h only handle blocks, it can not generate Frames. - - Blocks are different from Frames (doc/lz4_Frame_format.md). - Frames bundle both blocks and metadata in a specified manner. - Embedding metadata is required for compressed data to be self-contained and portable. - Frame format is delivered through a companion API, declared in lz4frame.h. - The `lz4` CLI can only manage frames. -*/ - -/*^*************************************************************** -* Export parameters -*****************************************************************/ -/* -* LZ4_DLL_EXPORT : -* Enable exporting of functions when building a Windows DLL -* LZ4LIB_VISIBILITY : -* Control library symbols visibility. -*/ -#ifndef LZ4LIB_VISIBILITY -# if defined(__GNUC__) && (__GNUC__ >= 4) -# define LZ4LIB_VISIBILITY __attribute__ ((visibility ("default"))) -# else -# define LZ4LIB_VISIBILITY -# endif -#endif -#if defined(LZ4_DLL_EXPORT) && (LZ4_DLL_EXPORT==1) -# define LZ4LIB_API __declspec(dllexport) LZ4LIB_VISIBILITY -#elif defined(LZ4_DLL_IMPORT) && (LZ4_DLL_IMPORT==1) -# define LZ4LIB_API __declspec(dllimport) LZ4LIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ -#else -# define LZ4LIB_API LZ4LIB_VISIBILITY -#endif - -/*! LZ4_FREESTANDING : - * When this macro is set to 1, it enables "freestanding mode" that is - * suitable for typical freestanding environment which doesn't support - * standard C library. - * - * - LZ4_FREESTANDING is a compile-time switch. - * - It requires the following macros to be defined: - * LZ4_memcpy, LZ4_memmove, LZ4_memset. - * - It only enables LZ4/HC functions which don't use heap. - * All LZ4F_* functions are not supported. - * - See tests/freestanding.c to check its basic setup. - */ -#if defined(LZ4_FREESTANDING) && (LZ4_FREESTANDING == 1) -# define LZ4_HEAPMODE 0 -# define LZ4HC_HEAPMODE 0 -# define LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION 1 -# if !defined(LZ4_memcpy) -# error "LZ4_FREESTANDING requires macro 'LZ4_memcpy'." -# endif -# if !defined(LZ4_memset) -# error "LZ4_FREESTANDING requires macro 'LZ4_memset'." -# endif -# if !defined(LZ4_memmove) -# error "LZ4_FREESTANDING requires macro 'LZ4_memmove'." -# endif -#elif ! defined(LZ4_FREESTANDING) -# define LZ4_FREESTANDING 0 -#endif - - -/*------ Version ------*/ -#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */ -#define LZ4_VERSION_MINOR 9 /* for new (non-breaking) interface capabilities */ -#define LZ4_VERSION_RELEASE 5 /* for tweaks, bug-fixes, or development */ - -#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE) - -#define LZ4_LIB_VERSION LZ4_VERSION_MAJOR.LZ4_VERSION_MINOR.LZ4_VERSION_RELEASE -#define LZ4_QUOTE(str) #str -#define LZ4_EXPAND_AND_QUOTE(str) LZ4_QUOTE(str) -#define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION) /* requires v1.7.3+ */ - -LZ4LIB_API int LZ4_versionNumber (void); /**< library version number; useful to check dll version; requires v1.3.0+ */ -LZ4LIB_API const char* LZ4_versionString (void); /**< library version string; useful to check dll version; requires v1.7.5+ */ - - -/*-************************************ -* Tuning memory usage -**************************************/ -/*! - * LZ4_MEMORY_USAGE : - * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB) - * Increasing memory usage improves compression ratio, generally at the cost of speed. - * Reduced memory usage may improve speed at the cost of ratio, thanks to better cache locality. - * Default value is 14, for 16KB, which nicely fits into most L1 caches. - */ -#ifndef LZ4_MEMORY_USAGE -# define LZ4_MEMORY_USAGE LZ4_MEMORY_USAGE_DEFAULT -#endif - -#define LZ4_MEMORY_USAGE_MIN 10 -#define LZ4_MEMORY_USAGE_DEFAULT 14 -#define LZ4_MEMORY_USAGE_MAX 20 - -#if (LZ4_MEMORY_USAGE < LZ4_MEMORY_USAGE_MIN) -# error "LZ4_MEMORY_USAGE is too small !" -#endif - -#if (LZ4_MEMORY_USAGE > LZ4_MEMORY_USAGE_MAX) -# error "LZ4_MEMORY_USAGE is too large !" -#endif - -/*-************************************ -* Simple Functions -**************************************/ -/*! LZ4_compress_default() : - * Compresses 'srcSize' bytes from buffer 'src' - * into already allocated 'dst' buffer of size 'dstCapacity'. - * Compression is guaranteed to succeed if 'dstCapacity' >= LZ4_compressBound(srcSize). - * It also runs faster, so it's a recommended setting. - * If the function cannot compress 'src' into a more limited 'dst' budget, - * compression stops *immediately*, and the function result is zero. - * In which case, 'dst' content is undefined (invalid). - * srcSize : max supported value is LZ4_MAX_INPUT_SIZE. - * dstCapacity : size of buffer 'dst' (which must be already allocated) - * @return : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity) - * or 0 if compression fails - * Note : This function is protected against buffer overflow scenarios (never writes outside 'dst' buffer, nor read outside 'source' buffer). - */ -LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity); - -/*! LZ4_decompress_safe() : - * @compressedSize : is the exact complete size of the compressed block. - * @dstCapacity : is the size of destination buffer (which must be already allocated), - * presumed an upper bound of decompressed size. - * @return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity) - * If destination buffer is not large enough, decoding will stop and output an error code (negative value). - * If the source stream is detected malformed, the function will stop decoding and return a negative result. - * Note 1 : This function is protected against malicious data packets : - * it will never writes outside 'dst' buffer, nor read outside 'source' buffer, - * even if the compressed block is maliciously modified to order the decoder to do these actions. - * In such case, the decoder stops immediately, and considers the compressed block malformed. - * Note 2 : compressedSize and dstCapacity must be provided to the function, the compressed block does not contain them. - * The implementation is free to send / store / derive this information in whichever way is most beneficial. - * If there is a need for a different format which bundles together both compressed data and its metadata, consider looking at lz4frame.h instead. - */ -LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSize, int dstCapacity); - - -/*-************************************ -* Advanced Functions -**************************************/ -#define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */ -#define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16) - -/*! LZ4_compressBound() : - Provides the maximum size that LZ4 compression may output in a "worst case" scenario (input data not compressible) - This function is primarily useful for memory allocation purposes (destination buffer size). - Macro LZ4_COMPRESSBOUND() is also provided for compilation-time evaluation (stack memory allocation for example). - Note that LZ4_compress_default() compresses faster when dstCapacity is >= LZ4_compressBound(srcSize) - inputSize : max supported value is LZ4_MAX_INPUT_SIZE - return : maximum output size in a "worst case" scenario - or 0, if input size is incorrect (too large or negative) -*/ -LZ4LIB_API int LZ4_compressBound(int inputSize); - -/*! LZ4_compress_fast() : - Same as LZ4_compress_default(), but allows selection of "acceleration" factor. - The larger the acceleration value, the faster the algorithm, but also the lesser the compression. - It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed. - An acceleration value of "1" is the same as regular LZ4_compress_default() - Values <= 0 will be replaced by LZ4_ACCELERATION_DEFAULT (currently == 1, see lz4.c). - Values > LZ4_ACCELERATION_MAX will be replaced by LZ4_ACCELERATION_MAX (currently == 65537, see lz4.c). -*/ -LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration); - - -/*! LZ4_compress_fast_extState() : - * Same as LZ4_compress_fast(), using an externally allocated memory space for its state. - * Use LZ4_sizeofState() to know how much memory must be allocated, - * and allocate it on 8-bytes boundaries (using `malloc()` typically). - * Then, provide this buffer as `void* state` to compression function. - */ -LZ4LIB_API int LZ4_sizeofState(void); -LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration); - -/*! LZ4_compress_destSize() : - * Reverse the logic : compresses as much data as possible from 'src' buffer - * into already allocated buffer 'dst', of size >= 'dstCapacity'. - * This function either compresses the entire 'src' content into 'dst' if it's large enough, - * or fill 'dst' buffer completely with as much data as possible from 'src'. - * note: acceleration parameter is fixed to "default". - * - * *srcSizePtr : in+out parameter. Initially contains size of input. - * Will be modified to indicate how many bytes where read from 'src' to fill 'dst'. - * New value is necessarily <= input value. - * @return : Nb bytes written into 'dst' (necessarily <= dstCapacity) - * or 0 if compression fails. - * - * Note : from v1.8.2 to v1.9.1, this function had a bug (fixed in v1.9.2+): - * the produced compressed content could, in specific circumstances, - * require to be decompressed into a destination buffer larger - * by at least 1 byte than the content to decompress. - * If an application uses `LZ4_compress_destSize()`, - * it's highly recommended to update liblz4 to v1.9.2 or better. - * If this can't be done or ensured, - * the receiving decompression function should provide - * a dstCapacity which is > decompressedSize, by at least 1 byte. - * See https://github.com/lz4/lz4/issues/859 for details - */ -LZ4LIB_API int LZ4_compress_destSize(const char* src, char* dst, int* srcSizePtr, int targetDstSize); - -/*! LZ4_decompress_safe_partial() : - * Decompress an LZ4 compressed block, of size 'srcSize' at position 'src', - * into destination buffer 'dst' of size 'dstCapacity'. - * Up to 'targetOutputSize' bytes will be decoded. - * The function stops decoding on reaching this objective. - * This can be useful to boost performance - * whenever only the beginning of a block is required. - * - * @return : the number of bytes decoded in `dst` (necessarily <= targetOutputSize) - * If source stream is detected malformed, function returns a negative result. - * - * Note 1 : @return can be < targetOutputSize, if compressed block contains less data. - * - * Note 2 : targetOutputSize must be <= dstCapacity - * - * Note 3 : this function effectively stops decoding on reaching targetOutputSize, - * so dstCapacity is kind of redundant. - * This is because in older versions of this function, - * decoding operation would still write complete sequences. - * Therefore, there was no guarantee that it would stop writing at exactly targetOutputSize, - * it could write more bytes, though only up to dstCapacity. - * Some "margin" used to be required for this operation to work properly. - * Thankfully, this is no longer necessary. - * The function nonetheless keeps the same signature, in an effort to preserve API compatibility. - * - * Note 4 : If srcSize is the exact size of the block, - * then targetOutputSize can be any value, - * including larger than the block's decompressed size. - * The function will, at most, generate block's decompressed size. - * - * Note 5 : If srcSize is _larger_ than block's compressed size, - * then targetOutputSize **MUST** be <= block's decompressed size. - * Otherwise, *silent corruption will occur*. - */ -LZ4LIB_API int LZ4_decompress_safe_partial (const char* src, char* dst, int srcSize, int targetOutputSize, int dstCapacity); - - -/*-********************************************* -* Streaming Compression Functions -***********************************************/ -typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */ - -/*! - Note about RC_INVOKED - - - RC_INVOKED is predefined symbol of rc.exe (the resource compiler which is part of MSVC/Visual Studio). - https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros - - - Since rc.exe is a legacy compiler, it truncates long symbol (> 30 chars) - and reports warning "RC4011: identifier truncated". - - - To eliminate the warning, we surround long preprocessor symbol with - "#if !defined(RC_INVOKED) ... #endif" block that means - "skip this block when rc.exe is trying to read it". -*/ -#if !defined(RC_INVOKED) /* https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros */ -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -LZ4LIB_API LZ4_stream_t* LZ4_createStream(void); -LZ4LIB_API int LZ4_freeStream (LZ4_stream_t* streamPtr); -#endif /* !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) */ -#endif - -/*! LZ4_resetStream_fast() : v1.9.0+ - * Use this to prepare an LZ4_stream_t for a new chain of dependent blocks - * (e.g., LZ4_compress_fast_continue()). - * - * An LZ4_stream_t must be initialized once before usage. - * This is automatically done when created by LZ4_createStream(). - * However, should the LZ4_stream_t be simply declared on stack (for example), - * it's necessary to initialize it first, using LZ4_initStream(). - * - * After init, start any new stream with LZ4_resetStream_fast(). - * A same LZ4_stream_t can be re-used multiple times consecutively - * and compress multiple streams, - * provided that it starts each new stream with LZ4_resetStream_fast(). - * - * LZ4_resetStream_fast() is much faster than LZ4_initStream(), - * but is not compatible with memory regions containing garbage data. - * - * Note: it's only useful to call LZ4_resetStream_fast() - * in the context of streaming compression. - * The *extState* functions perform their own resets. - * Invoking LZ4_resetStream_fast() before is redundant, and even counterproductive. - */ -LZ4LIB_API void LZ4_resetStream_fast (LZ4_stream_t* streamPtr); - -/*! LZ4_loadDict() : - * Use this function to reference a static dictionary into LZ4_stream_t. - * The dictionary must remain available during compression. - * LZ4_loadDict() triggers a reset, so any previous data will be forgotten. - * The same dictionary will have to be loaded on decompression side for successful decoding. - * Dictionary are useful for better compression of small data (KB range). - * While LZ4 itself accepts any input as dictionary, dictionary efficiency is also a topic. - * When in doubt, employ the Zstandard's Dictionary Builder. - * Loading a size of 0 is allowed, and is the same as reset. - * @return : loaded dictionary size, in bytes (note: only the last 64 KB are loaded) - */ -LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize); - -/*! LZ4_compress_fast_continue() : - * Compress 'src' content using data from previously compressed blocks, for better compression ratio. - * 'dst' buffer must be already allocated. - * If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster. - * - * @return : size of compressed block - * or 0 if there is an error (typically, cannot fit into 'dst'). - * - * Note 1 : Each invocation to LZ4_compress_fast_continue() generates a new block. - * Each block has precise boundaries. - * Each block must be decompressed separately, calling LZ4_decompress_*() with relevant metadata. - * It's not possible to append blocks together and expect a single invocation of LZ4_decompress_*() to decompress them together. - * - * Note 2 : The previous 64KB of source data is __assumed__ to remain present, unmodified, at same address in memory ! - * - * Note 3 : When input is structured as a double-buffer, each buffer can have any size, including < 64 KB. - * Make sure that buffers are separated, by at least one byte. - * This construction ensures that each block only depends on previous block. - * - * Note 4 : If input buffer is a ring-buffer, it can have any size, including < 64 KB. - * - * Note 5 : After an error, the stream status is undefined (invalid), it can only be reset or freed. - */ -LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration); - -/*! LZ4_saveDict() : - * If last 64KB data cannot be guaranteed to remain available at its current memory location, - * save it into a safer place (char* safeBuffer). - * This is schematically equivalent to a memcpy() followed by LZ4_loadDict(), - * but is much faster, because LZ4_saveDict() doesn't need to rebuild tables. - * @return : saved dictionary size in bytes (necessarily <= maxDictSize), or 0 if error. - */ -LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int maxDictSize); - - -/*-********************************************** -* Streaming Decompression Functions -* Bufferless synchronous API -************************************************/ -typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */ - -/*! LZ4_createStreamDecode() and LZ4_freeStreamDecode() : - * creation / destruction of streaming decompression tracking context. - * A tracking context can be re-used multiple times. - */ -#if !defined(RC_INVOKED) /* https://docs.microsoft.com/en-us/windows/win32/menurc/predefined-macros */ -#if !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) -LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void); -LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); -#endif /* !defined(LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION) */ -#endif - -/*! LZ4_setStreamDecode() : - * An LZ4_streamDecode_t context can be allocated once and re-used multiple times. - * Use this function to start decompression of a new stream of blocks. - * A dictionary can optionally be set. Use NULL or size 0 for a reset order. - * Dictionary is presumed stable : it must remain accessible and unmodified during next decompression. - * @return : 1 if OK, 0 if error - */ -LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize); - -/*! LZ4_decoderRingBufferSize() : v1.8.2+ - * Note : in a ring buffer scenario (optional), - * blocks are presumed decompressed next to each other - * up to the moment there is not enough remaining space for next block (remainingSize < maxBlockSize), - * at which stage it resumes from beginning of ring buffer. - * When setting such a ring buffer for streaming decompression, - * provides the minimum size of this ring buffer - * to be compatible with any source respecting maxBlockSize condition. - * @return : minimum ring buffer size, - * or 0 if there is an error (invalid maxBlockSize). - */ -LZ4LIB_API int LZ4_decoderRingBufferSize(int maxBlockSize); -#define LZ4_DECODER_RING_BUFFER_SIZE(maxBlockSize) (65536 + 14 + (maxBlockSize)) /* for static allocation; maxBlockSize presumed valid */ - -/*! LZ4_decompress_safe_continue() : - * This decoding function allows decompression of consecutive blocks in "streaming" mode. - * The difference with the usual independent blocks is that - * new blocks are allowed to find references into former blocks. - * A block is an unsplittable entity, and must be presented entirely to the decompression function. - * LZ4_decompress_safe_continue() only accepts one block at a time. - * It's modeled after `LZ4_decompress_safe()` and behaves similarly. - * - * @LZ4_streamDecode : decompression state, tracking the position in memory of past data - * @compressedSize : exact complete size of one compressed block. - * @dstCapacity : size of destination buffer (which must be already allocated), - * must be an upper bound of decompressed size. - * @return : number of bytes decompressed into destination buffer (necessarily <= dstCapacity) - * If destination buffer is not large enough, decoding will stop and output an error code (negative value). - * If the source stream is detected malformed, the function will stop decoding and return a negative result. - * - * The last 64KB of previously decoded data *must* remain available and unmodified - * at the memory position where they were previously decoded. - * If less than 64KB of data has been decoded, all the data must be present. - * - * Special : if decompression side sets a ring buffer, it must respect one of the following conditions : - * - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize). - * maxBlockSize is the maximum size of any single block. It can have any value > 16 bytes. - * In which case, encoding and decoding buffers do not need to be synchronized. - * Actually, data can be produced by any source compliant with LZ4 format specification, and respecting maxBlockSize. - * - Synchronized mode : - * Decompression buffer size is _exactly_ the same as compression buffer size, - * and follows exactly same update rule (block boundaries at same positions), - * and decoding function is provided with exact decompressed size of each block (exception for last block of the stream), - * _then_ decoding & encoding ring buffer can have any size, including small ones ( < 64 KB). - * - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes. - * In which case, encoding and decoding buffers do not need to be synchronized, - * and encoding ring buffer can have any size, including small ones ( < 64 KB). - * - * Whenever these conditions are not possible, - * save the last 64KB of decoded data into a safe buffer where it can't be modified during decompression, - * then indicate where this data is saved using LZ4_setStreamDecode(), before decompressing next block. -*/ -LZ4LIB_API int -LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, - const char* src, char* dst, - int srcSize, int dstCapacity); - - -/*! LZ4_decompress_safe_usingDict() : - * Works the same as - * a combination of LZ4_setStreamDecode() followed by LZ4_decompress_safe_continue() - * However, it's stateless: it doesn't need any LZ4_streamDecode_t state. - * Dictionary is presumed stable : it must remain accessible and unmodified during decompression. - * Performance tip : Decompression speed can be substantially increased - * when dst == dictStart + dictSize. - */ -LZ4LIB_API int -LZ4_decompress_safe_usingDict(const char* src, char* dst, - int srcSize, int dstCapacity, - const char* dictStart, int dictSize); - -/*! LZ4_decompress_safe_partial_usingDict() : - * Behaves the same as LZ4_decompress_safe_partial() - * with the added ability to specify a memory segment for past data. - * Performance tip : Decompression speed can be substantially increased - * when dst == dictStart + dictSize. - */ -LZ4LIB_API int -LZ4_decompress_safe_partial_usingDict(const char* src, char* dst, - int compressedSize, - int targetOutputSize, int maxOutputSize, - const char* dictStart, int dictSize); - -#endif /* LZ4_H_2983827168210 */ - - -/*^************************************* - * !!!!!! STATIC LINKING ONLY !!!!!! - ***************************************/ - -/*-**************************************************************************** - * Experimental section - * - * Symbols declared in this section must be considered unstable. Their - * signatures or semantics may change, or they may be removed altogether in the - * future. They are therefore only safe to depend on when the caller is - * statically linked against the library. - * - * To protect against unsafe usage, not only are the declarations guarded, - * the definitions are hidden by default - * when building LZ4 as a shared/dynamic library. - * - * In order to access these declarations, - * define LZ4_STATIC_LINKING_ONLY in your application - * before including LZ4's headers. - * - * In order to make their implementations accessible dynamically, you must - * define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library. - ******************************************************************************/ - -#ifdef LZ4_STATIC_LINKING_ONLY - -#ifndef LZ4_STATIC_3504398509 -#define LZ4_STATIC_3504398509 - -#ifdef LZ4_PUBLISH_STATIC_FUNCTIONS -# define LZ4LIB_STATIC_API LZ4LIB_API -#else -# define LZ4LIB_STATIC_API -#endif - - -/*! LZ4_compress_fast_extState_fastReset() : - * A variant of LZ4_compress_fast_extState(). - * - * Using this variant avoids an expensive initialization step. - * It is only safe to call if the state buffer is known to be correctly initialized already - * (see above comment on LZ4_resetStream_fast() for a definition of "correctly initialized"). - * From a high level, the difference is that - * this function initializes the provided state with a call to something like LZ4_resetStream_fast() - * while LZ4_compress_fast_extState() starts with a call to LZ4_resetStream(). - */ -LZ4LIB_STATIC_API int LZ4_compress_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration); - -/*! LZ4_compress_destSize_extState() : - * Same as LZ4_compress_destSize(), but using an externally allocated state. - * Also: exposes @acceleration - */ -int LZ4_compress_destSize_extState(void* state, const char* src, char* dst, int* srcSizePtr, int targetDstSize, int acceleration); - -/*! LZ4_attach_dictionary() : - * This is an experimental API that allows - * efficient use of a static dictionary many times. - * - * Rather than re-loading the dictionary buffer into a working context before - * each compression, or copying a pre-loaded dictionary's LZ4_stream_t into a - * working LZ4_stream_t, this function introduces a no-copy setup mechanism, - * in which the working stream references the dictionary stream in-place. - * - * Several assumptions are made about the state of the dictionary stream. - * Currently, only streams which have been prepared by LZ4_loadDict() should - * be expected to work. - * - * Alternatively, the provided dictionaryStream may be NULL, - * in which case any existing dictionary stream is unset. - * - * If a dictionary is provided, it replaces any pre-existing stream history. - * The dictionary contents are the only history that can be referenced and - * logically immediately precede the data compressed in the first subsequent - * compression call. - * - * The dictionary will only remain attached to the working stream through the - * first compression call, at the end of which it is cleared. The dictionary - * stream (and source buffer) must remain in-place / accessible / unchanged - * through the completion of the first compression call on the stream. - */ -LZ4LIB_STATIC_API void -LZ4_attach_dictionary(LZ4_stream_t* workingStream, - const LZ4_stream_t* dictionaryStream); - - -/*! In-place compression and decompression - * - * It's possible to have input and output sharing the same buffer, - * for highly constrained memory environments. - * In both cases, it requires input to lay at the end of the buffer, - * and decompression to start at beginning of the buffer. - * Buffer size must feature some margin, hence be larger than final size. - * - * |<------------------------buffer--------------------------------->| - * |<-----------compressed data--------->| - * |<-----------decompressed size------------------>| - * |<----margin---->| - * - * This technique is more useful for decompression, - * since decompressed size is typically larger, - * and margin is short. - * - * In-place decompression will work inside any buffer - * which size is >= LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize). - * This presumes that decompressedSize > compressedSize. - * Otherwise, it means compression actually expanded data, - * and it would be more efficient to store such data with a flag indicating it's not compressed. - * This can happen when data is not compressible (already compressed, or encrypted). - * - * For in-place compression, margin is larger, as it must be able to cope with both - * history preservation, requiring input data to remain unmodified up to LZ4_DISTANCE_MAX, - * and data expansion, which can happen when input is not compressible. - * As a consequence, buffer size requirements are much higher, - * and memory savings offered by in-place compression are more limited. - * - * There are ways to limit this cost for compression : - * - Reduce history size, by modifying LZ4_DISTANCE_MAX. - * Note that it is a compile-time constant, so all compressions will apply this limit. - * Lower values will reduce compression ratio, except when input_size < LZ4_DISTANCE_MAX, - * so it's a reasonable trick when inputs are known to be small. - * - Require the compressor to deliver a "maximum compressed size". - * This is the `dstCapacity` parameter in `LZ4_compress*()`. - * When this size is < LZ4_COMPRESSBOUND(inputSize), then compression can fail, - * in which case, the return code will be 0 (zero). - * The caller must be ready for these cases to happen, - * and typically design a backup scheme to send data uncompressed. - * The combination of both techniques can significantly reduce - * the amount of margin required for in-place compression. - * - * In-place compression can work in any buffer - * which size is >= (maxCompressedSize) - * with maxCompressedSize == LZ4_COMPRESSBOUND(srcSize) for guaranteed compression success. - * LZ4_COMPRESS_INPLACE_BUFFER_SIZE() depends on both maxCompressedSize and LZ4_DISTANCE_MAX, - * so it's possible to reduce memory requirements by playing with them. - */ - -#define LZ4_DECOMPRESS_INPLACE_MARGIN(compressedSize) (((compressedSize) >> 8) + 32) -#define LZ4_DECOMPRESS_INPLACE_BUFFER_SIZE(decompressedSize) ((decompressedSize) + LZ4_DECOMPRESS_INPLACE_MARGIN(decompressedSize)) /**< note: presumes that compressedSize < decompressedSize. note2: margin is overestimated a bit, since it could use compressedSize instead */ - -#ifndef LZ4_DISTANCE_MAX /* history window size; can be user-defined at compile time */ -# define LZ4_DISTANCE_MAX 65535 /* set to maximum value by default */ -#endif - -#define LZ4_COMPRESS_INPLACE_MARGIN (LZ4_DISTANCE_MAX + 32) /* LZ4_DISTANCE_MAX can be safely replaced by srcSize when it's smaller */ -#define LZ4_COMPRESS_INPLACE_BUFFER_SIZE(maxCompressedSize) ((maxCompressedSize) + LZ4_COMPRESS_INPLACE_MARGIN) /**< maxCompressedSize is generally LZ4_COMPRESSBOUND(inputSize), but can be set to any lower value, with the risk that compression can fail (return code 0(zero)) */ - -#endif /* LZ4_STATIC_3504398509 */ -#endif /* LZ4_STATIC_LINKING_ONLY */ - - - -#ifndef LZ4_H_98237428734687 -#define LZ4_H_98237428734687 - -/*-************************************************************ - * Private Definitions - ************************************************************** - * Do not use these definitions directly. - * They are only exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`. - * Accessing members will expose user code to API and/or ABI break in future versions of the library. - **************************************************************/ -#define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2) -#define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE) -#define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG) /* required as macro for static allocation */ - -#if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# include - typedef int8_t LZ4_i8; - typedef uint8_t LZ4_byte; - typedef uint16_t LZ4_u16; - typedef uint32_t LZ4_u32; -#else - typedef signed char LZ4_i8; - typedef unsigned char LZ4_byte; - typedef unsigned short LZ4_u16; - typedef unsigned int LZ4_u32; -#endif - -/*! LZ4_stream_t : - * Never ever use below internal definitions directly ! - * These definitions are not API/ABI safe, and may change in future versions. - * If you need static allocation, declare or allocate an LZ4_stream_t object. -**/ - -typedef struct LZ4_stream_t_internal LZ4_stream_t_internal; -struct LZ4_stream_t_internal { - LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; - const LZ4_byte* dictionary; - const LZ4_stream_t_internal* dictCtx; - LZ4_u32 currentOffset; - LZ4_u32 tableType; - LZ4_u32 dictSize; - /* Implicit padding to ensure structure is aligned */ -}; - -#define LZ4_STREAM_MINSIZE ((1UL << (LZ4_MEMORY_USAGE)) + 32) /* static size, for inter-version compatibility */ -union LZ4_stream_u { - char minStateSize[LZ4_STREAM_MINSIZE]; - LZ4_stream_t_internal internal_donotuse; -}; /* previously typedef'd to LZ4_stream_t */ - - -/*! LZ4_initStream() : v1.9.0+ - * An LZ4_stream_t structure must be initialized at least once. - * This is automatically done when invoking LZ4_createStream(), - * but it's not when the structure is simply declared on stack (for example). - * - * Use LZ4_initStream() to properly initialize a newly declared LZ4_stream_t. - * It can also initialize any arbitrary buffer of sufficient size, - * and will @return a pointer of proper type upon initialization. - * - * Note : initialization fails if size and alignment conditions are not respected. - * In which case, the function will @return NULL. - * Note2: An LZ4_stream_t structure guarantees correct alignment and size. - * Note3: Before v1.9.0, use LZ4_resetStream() instead -**/ -LZ4LIB_API LZ4_stream_t* LZ4_initStream (void* stateBuffer, size_t size); - - -/*! LZ4_streamDecode_t : - * Never ever use below internal definitions directly ! - * These definitions are not API/ABI safe, and may change in future versions. - * If you need static allocation, declare or allocate an LZ4_streamDecode_t object. -**/ -typedef struct { - const LZ4_byte* externalDict; - const LZ4_byte* prefixEnd; - size_t extDictSize; - size_t prefixSize; -} LZ4_streamDecode_t_internal; - -#define LZ4_STREAMDECODE_MINSIZE 32 -union LZ4_streamDecode_u { - char minStateSize[LZ4_STREAMDECODE_MINSIZE]; - LZ4_streamDecode_t_internal internal_donotuse; -} ; /* previously typedef'd to LZ4_streamDecode_t */ - - - -/*-************************************ -* Obsolete Functions -**************************************/ - -/*! Deprecation warnings - * - * Deprecated functions make the compiler generate a warning when invoked. - * This is meant to invite users to update their source code. - * Should deprecation warnings be a problem, it is generally possible to disable them, - * typically with -Wno-deprecated-declarations for gcc - * or _CRT_SECURE_NO_WARNINGS in Visual. - * - * Another method is to define LZ4_DISABLE_DEPRECATE_WARNINGS - * before including the header file. - */ -#ifdef LZ4_DISABLE_DEPRECATE_WARNINGS -# define LZ4_DEPRECATED(message) /* disable deprecation warnings */ -#else -# if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ -# define LZ4_DEPRECATED(message) [[deprecated(message)]] -# elif defined(_MSC_VER) -# define LZ4_DEPRECATED(message) __declspec(deprecated(message)) -# elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 45)) -# define LZ4_DEPRECATED(message) __attribute__((deprecated(message))) -# elif defined(__GNUC__) && (__GNUC__ * 10 + __GNUC_MINOR__ >= 31) -# define LZ4_DEPRECATED(message) __attribute__((deprecated)) -# else -# pragma message("WARNING: LZ4_DEPRECATED needs custom implementation for this compiler") -# define LZ4_DEPRECATED(message) /* disabled */ -# endif -#endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */ - -/*! Obsolete compression functions (since v1.7.3) */ -LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress (const char* src, char* dest, int srcSize); -LZ4_DEPRECATED("use LZ4_compress_default() instead") LZ4LIB_API int LZ4_compress_limitedOutput (const char* src, char* dest, int srcSize, int maxOutputSize); -LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize); -LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize); -LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize); -LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize); - -/*! Obsolete decompression functions (since v1.8.0) */ -LZ4_DEPRECATED("use LZ4_decompress_fast() instead") LZ4LIB_API int LZ4_uncompress (const char* source, char* dest, int outputSize); -LZ4_DEPRECATED("use LZ4_decompress_safe() instead") LZ4LIB_API int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize); - -/* Obsolete streaming functions (since v1.7.0) - * degraded functionality; do not use! - * - * In order to perform streaming compression, these functions depended on data - * that is no longer tracked in the state. They have been preserved as well as - * possible: using them will still produce a correct output. However, they don't - * actually retain any history between compression calls. The compression ratio - * achieved will therefore be no better than compressing each chunk - * independently. - */ -LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API void* LZ4_create (char* inputBuffer); -LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API int LZ4_sizeofStreamState(void); -LZ4_DEPRECATED("Use LZ4_resetStream() instead") LZ4LIB_API int LZ4_resetStreamState(void* state, char* inputBuffer); -LZ4_DEPRECATED("Use LZ4_saveDict() instead") LZ4LIB_API char* LZ4_slideInputBuffer (void* state); - -/*! Obsolete streaming decoding functions (since v1.7.0) */ -LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") LZ4LIB_API int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize); -LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") LZ4LIB_API int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize); - -/*! Obsolete LZ4_decompress_fast variants (since v1.9.0) : - * These functions used to be faster than LZ4_decompress_safe(), - * but this is no longer the case. They are now slower. - * This is because LZ4_decompress_fast() doesn't know the input size, - * and therefore must progress more cautiously into the input buffer to not read beyond the end of block. - * On top of that `LZ4_decompress_fast()` is not protected vs malformed or malicious inputs, making it a security liability. - * As a consequence, LZ4_decompress_fast() is strongly discouraged, and deprecated. - * - * The last remaining LZ4_decompress_fast() specificity is that - * it can decompress a block without knowing its compressed size. - * Such functionality can be achieved in a more secure manner - * by employing LZ4_decompress_safe_partial(). - * - * Parameters: - * originalSize : is the uncompressed size to regenerate. - * `dst` must be already allocated, its size must be >= 'originalSize' bytes. - * @return : number of bytes read from source buffer (== compressed size). - * The function expects to finish at block's end exactly. - * If the source stream is detected malformed, the function stops decoding and returns a negative result. - * note : LZ4_decompress_fast*() requires originalSize. Thanks to this information, it never writes past the output buffer. - * However, since it doesn't know its 'src' size, it may read an unknown amount of input, past input buffer bounds. - * Also, since match offsets are not validated, match reads from 'src' may underflow too. - * These issues never happen if input (compressed) data is correct. - * But they may happen if input data is invalid (error or intentional tampering). - * As a consequence, use these functions in trusted environments with trusted data **only**. - */ -LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_partial() instead") -LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize); -LZ4_DEPRECATED("This function is deprecated and unsafe. Consider migrating towards LZ4_decompress_safe_continue() instead. " - "Note that the contract will change (requires block's compressed size, instead of decompressed size)") -LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize); -LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_partial_usingDict() instead") -LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize); - -/*! LZ4_resetStream() : - * An LZ4_stream_t structure must be initialized at least once. - * This is done with LZ4_initStream(), or LZ4_resetStream(). - * Consider switching to LZ4_initStream(), - * invoking LZ4_resetStream() will trigger deprecation warnings in the future. - */ -LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr); - - -#endif /* LZ4_H_98237428734687 */ - - -#if defined (__cplusplus) -} -#endif diff --git a/phobia/gp/menu.c b/phobia/gp/menu.c deleted file mode 100644 index b7934cc..0000000 --- a/phobia/gp/menu.c +++ /dev/null @@ -1,718 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include - -#include -#include - -#include "menu.h" -#include "draw.h" -#include "scheme.h" - -const char *utf8_go_next(const char *s); -char *utf8_backspace(char *s); - -static int -menuFuzzyMatch(menu_t *mu, const char *s, const char *fu, int light[]) -{ - const char *b, *fue; - char ubuf[8], sbuf[MENU_STRING_MAX + 1]; - int bX, bY, rc, lk = 0; - - sbuf[0] = 0; - - b = s; - s = strstr(s, fu); - - if (s == NULL) { - - s = b; - - while (*fu != 0) { - - ubuf[0] = 0; - - fue = utf8_go_next(fu); - strncat(ubuf, fu, fue - fu); - fu = fue; - - b = s; - s = strstr(s, ubuf); - - if (s == NULL) - break; - else { - if (light != NULL) { - - strncat(sbuf, b, s - b); - TTF_SizeUTF8(mu->font, sbuf, &bX, &bY); - light[lk++] = bX; - - b = s; - s = utf8_go_next(s); - - strncat(sbuf, b, s - b); - TTF_SizeUTF8(mu->font, sbuf, &bX, &bY); - light[lk++] = bX; - } - else { - s = utf8_go_next(s); - } - } - } - } - else { - if (light != NULL) { - - while (*fu != 0) { - - strncat(sbuf, b, s - b); - TTF_SizeUTF8(mu->font, sbuf, &bX, &bY); - light[lk++] = bX; - - b = s; - s = utf8_go_next(s); - - strncat(sbuf, b, s - b); - TTF_SizeUTF8(mu->font, sbuf, &bX, &bY); - light[lk++] = bX; - - b = s; - fu = utf8_go_next(fu); - } - } - } - - rc = (s != NULL) ? 1 : 0; - - return rc; -} - -static void -menuBuild(menu_t *mu, int rep) -{ - int bX, bY, size_X, size_Y; - const char *s; - - s = mu->list; - - size_X = 0; - mu->size_N = 0; - - while (*s != 0) { - - TTF_SizeUTF8(mu->font, s, &bX, &bY); - - if (menuFuzzyMatch(mu, s, mu->fuzzy, NULL)) - mu->size_N++; - - size_X = (size_X < bX) ? bX : size_X; - - while (*s != 0) ++s; - ++s; - } - - mu->size_X = size_X + mu->layout_height + mu->layout_height / 4; - mu->size_Y = mu->size_N * mu->layout_height; - size_Y = mu->screen.max_y / mu->layout_height; - size_Y = (mu->fuzzy[0] != 0) ? size_Y - 1 : size_Y; - - if (size_Y < mu->size_N) { - - mu->scroll_limit = mu->size_N - size_Y; - mu->scroll_shift = (rep == 0) ? 0 : - (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - - mu->size_Y -= mu->scroll_limit * mu->layout_height; - } - else { - mu->scroll_limit = 0; - mu->scroll_shift = 0; - } - - mu->scroll_page = size_Y - 1; - - if (mu->box_X < 0) { - - mu->box_X = (mu->screen.min_x + mu->screen.max_x - mu->size_X) / 2; - } - - if (mu->box_Y < 0) { - - mu->box_Y = (mu->screen.min_y + mu->screen.max_y - mu->size_Y) / 2; - } - - mu->box_X = (mu->box_X > mu->screen.max_x - mu->size_X) - ? mu->screen.max_x - mu->size_X : mu->box_X; - mu->box_Y = (mu->box_Y > mu->screen.max_y - mu->size_Y) - ? mu->screen.max_y - mu->size_Y : mu->box_Y; - - mu->box_X = (mu->box_X < mu->screen.min_x) ? mu->screen.min_x : mu->box_X; - mu->box_Y = (mu->box_Y < mu->screen.min_y) ? mu->screen.min_y : mu->box_Y; - - if (rep != 0) { - - mu->hovered_N = (mu->hovered_N < 0) ? 0 : mu->hovered_N; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - } -} - -menu_t *menuAlloc(draw_t *dw, scheme_t *sch) -{ - menu_t *mu; - - mu = calloc(1, sizeof(menu_t)); - - mu->dw = dw; - mu->sch = sch; - - return mu; -} - -void menuClean(menu_t *mu) -{ - free(mu); -} - -void menuLayout(menu_t *mu) -{ - if (mu->raised != 0) { - - menuBuild(mu, 1); - } -} - -void menuRaise(menu_t *mu, int id, const char *list, int sx, int sy) -{ - int hN; - - if (mu->raised != 0) - return ; - - mu->raised = 1; - mu->clicked = 0; - - mu->id = id; - mu->list = list; - - for (hN = 0; hN < MENU_OPTION_MAX; ++hN) { - - mu->hidden_N[hN] = -1; - mu->mark[hN].N = -1; - } - - mu->colorful = 0; - - mu->cur_X = sx; - mu->cur_Y = sy; - - mu->box_X = mu->cur_X; - mu->box_Y = mu->cur_Y; - - mu->scroll_drag = 0; - - mu->hovered_N = -1; - mu->clicked_N = -1; - - mu->fuzzy[0] = 0; - - menuBuild(mu, 0); -} - -void menuHalt(menu_t *mu) -{ - mu->raised = 0; -} - -void menuResume(menu_t *mu) -{ - if (mu->raised != 0) - return ; - - mu->raised = 1; - mu->clicked = 0; - - mu->clicked_N = -1; -} - -void menuSelect(menu_t *mu, int item_N) -{ - int N; - - mu->hovered_N = -1; - - for (N = 0; N < item_N + 1; ++N) { - - mu->hovered_N += +1; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - - if (mu->hovered_N > (mu->size_N - 1) - + (mu->scroll_shift - mu->scroll_limit)) { - - mu->scroll_shift += +1; - mu->scroll_shift = (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - } - } -} - -static int -menuItemHover(menu_t *mu) -{ - const char *s = mu->list; - int N = 0, N_visible, rN = -1; - int topY, botY, baseX; - - baseX = (mu->scroll_limit != 0) ? mu->size_X - mu->layout_height : mu->size_X; - N_visible = mu->size_Y / mu->layout_height; - - while (*s != 0) { - - if (menuFuzzyMatch(mu, s, mu->fuzzy, NULL)) { - - topY = mu->box_Y + N * mu->layout_height; - botY = topY + mu->layout_height; - - if (N > N_visible - 1) { - - break; - } - - if (mu->cur_X > mu->box_X && mu->cur_X < mu->box_X + baseX - && mu->cur_Y >= topY && mu->cur_Y < botY) { - - rN = N + mu->scroll_shift; - break; - } - - N++; - } - - while (*s != 0) ++s; - ++s; - } - - return rN; -} - -static int -menuConvFuzzy(menu_t *mu, int fuzzy_N) -{ - const char *s = mu->list; - int N = 0, K = 0, rN = -1; - - if (fuzzy_N < 0) { - - } - else if (mu->fuzzy[0] != 0) { - - while (*s != 0) { - - if (menuFuzzyMatch(mu, s, mu->fuzzy, NULL)) { - - if (K == fuzzy_N) { - - rN = N; - } - - K++; - } - - N++; - - while (*s != 0) ++s; - ++s; - } - } - else { - rN = fuzzy_N; - } - - return rN; -} - -static void -menuScrollClick(menu_t *mu) -{ - int topY, baseX, baseY; - - if (mu->scroll_limit != 0 && mu->clicked_N == -1) { - - baseX = mu->box_X + mu->size_X - mu->layout_height; - baseY = mu->box_Y; - - if ((mu->cur_X > baseX && mu->cur_X < baseX + mu->layout_height) - || mu->scroll_drag != 0) { - - if (mu->cur_Y > baseY && mu->cur_Y < baseY + mu->size_Y) { - - topY = mu->cur_Y - mu->layout_height / 2 - mu->box_Y; - baseY = mu->size_Y - mu->layout_height; - mu->scroll_shift = (topY * mu->scroll_limit + baseY / 2) / baseY; - mu->scroll_shift = (mu->scroll_shift < 0) ? 0 : mu->scroll_shift; - mu->scroll_shift = (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - - mu->scroll_drag = 1; - mu->clicked = 0; - } - } - } -} - -void menuEvent(menu_t *mu, int evno, int ex, int ey) -{ - int hN; - - if (mu->raised == 0) - return ; - - mu->cur_X = ex; - mu->cur_Y = ey; - - if (evno == MENU_EVNO_CLICK) { - - mu->hovered_N = menuItemHover(mu); - - mu->clicked = 1; - mu->clicked_N = menuConvFuzzy(mu, mu->hovered_N); - - for (hN = 0; hN < MENU_OPTION_MAX; ++hN) { - - mu->clicked_N = (mu->clicked_N == mu->hidden_N[hN]) - ? -1 : mu->clicked_N; - } - - menuScrollClick(mu); - } - else if (evno == MENU_EVNO_UNCLICK) { - - mu->scroll_drag = 0; - } - else if (evno == MENU_EVNO_MOTION) { - - if (mu->scroll_drag != 0) { - - menuScrollClick(mu); - } - else { - mu->hovered_N = menuItemHover(mu); - } - } - else if (evno == MENU_EVNO_SCROLL_UP) { - - mu->scroll_shift += -1; - mu->scroll_shift = (mu->scroll_shift < 0) ? 0 : mu->scroll_shift; - - mu->hovered_N = menuItemHover(mu); - } - else if (evno == MENU_EVNO_SCROLL_DOWN) { - - mu->scroll_shift += +1; - mu->scroll_shift = (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - - mu->hovered_N = menuItemHover(mu); - } - else if (evno == MENU_EVNO_BACKSPACE) { - - utf8_backspace(mu->fuzzy); - menuBuild(mu, 1); - } - else if (evno == MENU_EVNO_ARROW_UP) { - - mu->hovered_N += -1; - mu->hovered_N = (mu->hovered_N < 0) ? 0 : mu->hovered_N; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - - if (mu->hovered_N < mu->scroll_shift) { - - mu->scroll_shift += -1; - mu->scroll_shift = (mu->scroll_shift < 0) ? 0 : mu->scroll_shift; - } - } - else if (evno == MENU_EVNO_ARROW_DOWN) { - - mu->hovered_N += +1; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - - if (mu->hovered_N > (mu->size_N - 1) + (mu->scroll_shift - mu->scroll_limit)) { - - mu->scroll_shift += +1; - mu->scroll_shift = (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - } - } - else if (evno == MENU_EVNO_PAGE_UP) { - - mu->hovered_N += - mu->scroll_page; - mu->hovered_N = (mu->hovered_N < 0) ? 0 : mu->hovered_N; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - - if (mu->hovered_N < mu->scroll_shift) { - - mu->scroll_shift += - mu->scroll_page; - mu->scroll_shift = (mu->scroll_shift < 0) ? 0 : mu->scroll_shift; - } - } - else if (evno == MENU_EVNO_PAGE_DOWN) { - - mu->hovered_N += + mu->scroll_page; - mu->hovered_N = (mu->hovered_N > mu->size_N - 1) - ? mu->size_N - 1 : mu->hovered_N; - - if (mu->hovered_N > (mu->size_N - 1) + (mu->scroll_shift - mu->scroll_limit)) { - - mu->scroll_shift += + mu->scroll_page; - mu->scroll_shift = (mu->scroll_shift > mu->scroll_limit) - ? mu->scroll_limit : mu->scroll_shift; - } - } - else if (evno == MENU_EVNO_HOME) { - - mu->hovered_N = 0; - mu->scroll_shift = 0; - } - else if (evno == MENU_EVNO_END) { - - mu->hovered_N = mu->size_N - 1; - mu->scroll_shift = mu->scroll_limit; - } - else if (evno == MENU_EVNO_RETURN) { - - mu->clicked = 1; - mu->clicked_N = menuConvFuzzy(mu, mu->hovered_N); - - for (hN = 0; hN < MENU_OPTION_MAX; ++hN) { - - mu->clicked_N = (mu->clicked_N == mu->hidden_N[hN]) - ? -1 : mu->clicked_N; - } - } -} - -void menuEventText(menu_t *mu, const char *tx) -{ - int bX, bY; - - if (mu->colorful != 0) - return ; - - TTF_SizeUTF8(mu->font, mu->fuzzy, &bX, &bY); - bX += mu->layout_height; - - if (strlen(mu->fuzzy) < MENU_FUZZY_SIZE - 7 - && bX < mu->size_X) { - - strcat(mu->fuzzy, tx); - menuBuild(mu, 1); - } -} - -void menuDraw(menu_t *mu, SDL_Surface *surface) -{ - const char *fu, *s = mu->list; - int light[MENU_FUZZY_SIZE * 2], N_fu; - int topY, baseX, baseY, margin, side; - int N = 0, N_visible, N_conv, hN; - - Uint32 iCol; - - if (mu->raised == 0) - return ; - - SDL_LockSurface(surface); - - baseY = mu->box_Y + mu->size_Y; - baseY += (mu->fuzzy[0] != 0) ? mu->layout_height : 0; - - drawFillRect(surface, mu->box_X, mu->box_Y, mu->box_X + mu->size_X, - baseY, mu->sch->menu_background); - - if (mu->hovered_N != -1) { - - topY = mu->box_Y + (mu->hovered_N - mu->scroll_shift) * mu->layout_height; - baseX = (mu->scroll_limit != 0) ? mu->size_X - mu->layout_height : mu->size_X; - - drawFillRect(surface, mu->box_X, topY, mu->box_X + baseX, - topY + mu->layout_height, mu->sch->menu_hovered); - } - - if (mu->scroll_limit != 0) { - - margin = mu->layout_height / 4; - side = mu->layout_height - margin; - - baseX = mu->box_X + mu->size_X - mu->layout_height; - baseY = mu->box_Y + (mu->size_Y - mu->layout_height) - * mu->scroll_shift / mu->scroll_limit; - - drawFillRect(surface, baseX + margin, baseY + margin, baseX + side, - baseY + side, mu->sch->menu_scrollbar); - - baseX = mu->box_X + mu->size_X - mu->layout_height + margin; - baseY = mu->box_Y + margin; - - margin = side - margin + 1; - side = mu->size_Y - mu->layout_height + margin; - - drawLine(mu->dw, surface, &mu->screen, baseX, baseY, - baseX + margin, baseY, mu->sch->menu_scrollbar); - - drawLine(mu->dw, surface, &mu->screen, baseX, baseY + side, - baseX + margin, baseY + side, mu->sch->menu_scrollbar); - - drawLine(mu->dw, surface, &mu->screen, baseX, baseY, - baseX, baseY + side, mu->sch->menu_scrollbar); - - drawLine(mu->dw, surface, &mu->screen, baseX + margin, baseY, - baseX + margin, baseY + side, mu->sch->menu_scrollbar); - } - - while (*s != 0) { - - if (menuFuzzyMatch(mu, s, mu->fuzzy, NULL)) { - - if (N >= mu->scroll_shift) - break; - - N++; - } - - while (*s != 0) ++s; - ++s; - } - - SDL_UnlockSurface(surface); - - N = 0; - N_visible = mu->size_Y / mu->layout_height; - - margin = mu->layout_height / 4; - side = mu->layout_height / 2; - - while (*s != 0) { - - if (menuFuzzyMatch(mu, s, mu->fuzzy, light)) { - - topY = mu->box_Y + N * mu->layout_height; - - if (N > N_visible - 1) { - - break; - } - - if (mu->fuzzy[0] != 0) { - - SDL_LockSurface(surface); - - fu = mu->fuzzy; - N_fu = 0; - - while (*fu != 0) { - - baseX = mu->box_X + margin; - - drawFillRect(surface, baseX + light[N_fu + 0], - topY, baseX + light[N_fu + 1], - topY + mu->layout_height, - mu->sch->menu_fuzzy_light); - - fu = utf8_go_next(fu); - N_fu += 2; - } - - SDL_UnlockSurface(surface); - } - - N_conv = menuConvFuzzy(mu, N) + mu->scroll_shift; - - if (mu->colorful != 0 && N_conv != -1) { - - iCol = mu->sch->plot_figure[N_conv]; - - for (hN = 0; hN < MENU_OPTION_MAX; ++hN) { - - iCol = (N_conv == mu->hidden_N[hN]) - ? mu->sch->menu_background : iCol; - } - - baseX = (mu->scroll_limit != 0) - ? mu->size_X - mu->layout_height - : mu->size_X; - - drawFillRect(surface, mu->box_X + side, - topY + margin, mu->box_X + baseX - side, - topY + mu->layout_height - margin, iCol); - } - else { - const char *text = s; - char sbuf[MENU_STRING_MAX + 1]; - - if (strncmp(s, "---", 3) != 0) { - - iCol = mu->sch->menu_item_text; - } - else { - iCol = mu->sch->menu_item_hidden; - } - - for (hN = 0; hN < MENU_OPTION_MAX; ++hN) { - - if (N_conv == mu->hidden_N[hN]) { - - iCol = mu->sch->menu_item_hidden; - } - else if (N_conv == mu->mark[hN].N) { - - strcpy(sbuf, s); - sprintf(sbuf, s, mu->mark[hN].subs); - - text = sbuf; - } - } - - drawText(mu->dw, surface, mu->font, mu->box_X + margin, - topY + side, text, TEXT_CENTERED_ON_Y, iCol); - } - - N++; - } - - while (*s != 0) ++s; - ++s; - } - - if (mu->fuzzy[0] != 0) { - - topY = mu->box_Y + mu->size_Y + side; - - drawText(mu->dw, surface, mu->font, mu->box_X + margin, topY, mu->fuzzy, - TEXT_CENTERED_ON_Y, mu->sch->menu_fuzzy_light); - } -} - diff --git a/phobia/gp/menu.h b/phobia/gp/menu.h deleted file mode 100644 index ac54135..0000000 --- a/phobia/gp/menu.h +++ /dev/null @@ -1,108 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_MENU_ -#define _H_MENU_ - -#include -#include - -#include "draw.h" -#include "scheme.h" - -#define MENU_FUZZY_SIZE 80 -#define MENU_STRING_MAX 200 -#define MENU_OPTION_MAX 10 - -typedef struct { - - int raised; - int clicked; - int id; - - const char *list; - int hidden_N[MENU_OPTION_MAX]; - int colorful; - - struct { - - int N; - const char *subs; - } - mark[MENU_OPTION_MAX]; - - int cur_X; - int cur_Y; - - int box_X; - int box_Y; - - int size_X; - int size_Y; - int size_N; - - int scroll_limit; - int scroll_shift; - int scroll_drag; - int scroll_page; - - int hovered_N; - int clicked_N; - - TTF_Font *font; - clipBox_t screen; - - char fuzzy[MENU_FUZZY_SIZE]; - - int layout_height; - - draw_t *dw; - scheme_t *sch; -} -menu_t; - -enum { - MENU_EVNO_CLICK = 1, - MENU_EVNO_UNCLICK, - MENU_EVNO_MOTION, - MENU_EVNO_SCROLL_UP, - MENU_EVNO_SCROLL_DOWN, - MENU_EVNO_ARROW_UP, - MENU_EVNO_ARROW_DOWN, - MENU_EVNO_PAGE_UP, - MENU_EVNO_PAGE_DOWN, - MENU_EVNO_HOME, - MENU_EVNO_END, - MENU_EVNO_RETURN, - MENU_EVNO_BACKSPACE, -}; - -menu_t *menuAlloc(draw_t *dw, scheme_t *sch); -void menuClean(menu_t *mu); - -void menuLayout(menu_t *mu); -void menuRaise(menu_t *mu, int id, const char *list, int sx, int sy); -void menuHalt(menu_t *mu); -void menuResume(menu_t *mu); -void menuSelect(menu_t *mu, int item_N); -void menuEvent(menu_t *mu, int evno, int ex, int ey); -void menuEventText(menu_t *mu, const char *tx); -void menuDraw(menu_t *mu, SDL_Surface *surface); - -#endif /* _H_MENU_ */ - diff --git a/phobia/gp/plot.c b/phobia/gp/plot.c deleted file mode 100644 index 480894b..0000000 --- a/phobia/gp/plot.c +++ /dev/null @@ -1,7517 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include -#include - -#include -#include - -#include "plot.h" -#include "read.h" -#include "draw.h" -#include "lse.h" -#include "lz4.h" -#include "scheme.h" - -extern SDL_RWops *TTF_RW_roboto_mono_normal(); -extern SDL_RWops *TTF_RW_roboto_mono_thin(); - -double fp_nan() -{ - union { - unsigned long long l; - double f; - } - u = { 0xFFF8000000000000ULL }; - - return u.f; -} - -int fp_isfinite(double x) -{ - union { - double f; - unsigned long long l; - } - u = { x }; - - return ((0x7FFUL & (unsigned long) (u.l >> 52)) != 0x7FFUL) ? 1 : 0; -} - -plot_t *plotAlloc(draw_t *dw, scheme_t *sch) -{ - plot_t *pl; - int N; - - pl = calloc(1, sizeof(plot_t)); - - pl->dw = dw; - pl->sch = sch; - - for (N = 0; N < PLOT_SKETCH_MAX - 1; ++N) - pl->sketch[N].linked = N + 1; - - pl->sketch[PLOT_SKETCH_MAX - 1].linked = -1; - - pl->sketch_list_garbage = 0; - pl->sketch_list_todraw = -1; - pl->sketch_list_current = -1; - pl->sketch_list_current_end = -1; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) - pl->draw[N].list_self = -1; - - pl->layout_font_long = 11; - pl->layout_font_space = 16; - pl->layout_border = 5; - pl->layout_tick_tooth = 5; - pl->layout_grid_dash = 2; - pl->layout_grid_space = 8; - pl->layout_drawing_dash = 8; - pl->layout_drawing_space = 12; - pl->layout_fence_dash = 10; - pl->layout_fence_space = 10; - pl->layout_fence_point = 10; - - pl->interpolation = 1; - pl->defungap = 10; - - pl->mark_size = 40; - pl->mark_density = 40; - - pl->default_drawing = FIGURE_DRAWING_LINE; - pl->default_width = 2; - - pl->transparency = 1; - pl->fprecision = 9; - pl->lz4_compress = 1; - - return pl; -} - -static void -plotSketchFree(plot_t *pl) -{ - int N; - - plotSketchClean(pl); - - for (N = 0; N < PLOT_SKETCH_MAX; ++N) { - - if (pl->sketch[N].chunk != NULL) { - - free(pl->sketch[N].chunk); - - pl->sketch[N].chunk = NULL; - } - } -} - -void plotClean(plot_t *pl) -{ - int dN; - - drawPixmapClean(pl->dw); - plotSketchFree(pl); - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (pl->data[dN].column_N != 0) - plotDataClean(pl, dN); - } - - free(pl); -} - -static void -plotFontLayout(plot_t *pl) -{ - TTF_SizeUTF8(pl->font, "M", &pl->layout_font_long, &pl->layout_font_height); - - pl->layout_font_height = TTF_FontHeight(pl->font); - - pl->layout_font_space = pl->layout_font_long * 14 / 10; - pl->layout_axis_box = pl->layout_tick_tooth + pl->layout_font_height; - pl->layout_label_box = pl->layout_font_height; - - pl->layout_mark_size = pl->layout_font_height * pl->mark_size / 200; - pl->layout_mark_size = (pl->layout_mark_size < 1) ? 1 : pl->layout_mark_size; -} - -void plotFontDefault(plot_t *pl, int ttfnum, int ptsize, int style) -{ - if (pl->font != NULL) { - - TTF_CloseFont(pl->font); - - pl->font = NULL; - } - - switch (ttfnum) { - - default: - ttfnum = TTF_ID_ROBOTO_MONO_NORMAL; - - case TTF_ID_ROBOTO_MONO_NORMAL: - pl->font = TTF_OpenFontRW(TTF_RW_roboto_mono_normal(), 1, ptsize); - break; - - case TTF_ID_ROBOTO_MONO_THIN: - pl->font = TTF_OpenFontRW(TTF_RW_roboto_mono_thin(), 1, ptsize); - break; - } - - TTF_SetFontStyle(pl->font, style); - - pl->layout_font_ttf = ttfnum; - pl->layout_font_pt = ptsize; - - plotFontLayout(pl); -} - -int plotFontOpen(plot_t *pl, const char *ttf, int ptsize, int style) -{ - if (pl->font != NULL) { - - TTF_CloseFont(pl->font); - - pl->font = NULL; - } - - pl->font = TTF_OpenFont(ttf, ptsize); - - if (pl->font == NULL) { - - ERROR("TTF_OpenFont: \"%s\"\n", TTF_GetError()); - return -1; - } - - TTF_SetFontStyle(pl->font, style); - - pl->layout_font_ttf = 0; - pl->layout_font_pt = ptsize; - - plotFontLayout(pl); - - return 0; -} - -static void -plotDataChunkAlloc(plot_t *pl, int dN, int lN) -{ - int N, kN, lSHIFT; - - lSHIFT = pl->data[dN].chunk_SHIFT; - - kN = (lN & pl->data[dN].chunk_MASK) ? 1 : 0; - kN += lN >> lSHIFT; - - if (kN > PLOT_CHUNK_MAX) { - - kN = PLOT_CHUNK_MAX; - lN = kN * (1UL << lSHIFT); - } - - if (pl->data[dN].lz4_compress != 0) { - - for (N = kN; N < PLOT_CHUNK_MAX; ++N) { - - if (pl->data[dN].compress[N].raw != NULL) { - - free(pl->data[dN].compress[N].raw); - - pl->data[dN].compress[N].raw = NULL; - } - } - } - else { - for (N = 0; N < kN; ++N) { - - if (pl->data[dN].raw[N] == NULL) { - - pl->data[dN].raw[N] = (fval_t *) malloc(pl->data[dN].chunk_bSIZE); - - if (pl->data[dN].raw[N] == NULL) { - - lN = N * (1UL << lSHIFT); - - ERROR("Unable to allocate memory of %i dataset\n", dN); - break; - } - } - } - - for (N = kN; N < PLOT_CHUNK_MAX; ++N) { - - if (pl->data[dN].raw[N] != NULL) { - - free(pl->data[dN].raw[N]); - - pl->data[dN].raw[N] = NULL; - } - } - } - - pl->data[dN].length_N = lN; -} - -unsigned long long plotDataMemoryUsage(plot_t *pl, int dN) -{ - int N; - unsigned long long bUSAGE; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return 0; - } - - bUSAGE = 0; - - for (N = 0; N < PLOT_CHUNK_MAX; ++N) { - - if (pl->data[dN].raw[N] != NULL) { - - bUSAGE += pl->data[dN].chunk_bSIZE; - } - - if (pl->data[dN].compress[N].raw != NULL) { - - bUSAGE += pl->data[dN].compress[N].length; - } - } - - return bUSAGE; -} - -unsigned long long plotDataMemoryUncompressed(plot_t *pl, int dN) -{ - int N; - unsigned long long bUSAGE; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return 0; - } - - bUSAGE = 0; - - for (N = 0; N < PLOT_CHUNK_MAX; ++N) { - - if ( pl->data[dN].raw[N] != NULL - || pl->data[dN].compress[N].raw != NULL) { - - bUSAGE += pl->data[dN].chunk_bSIZE; - } - } - - return bUSAGE; -} - -unsigned long long plotDataMemoryCached(plot_t *pl, int dN) -{ - int N; - unsigned long long bUSAGE; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return 0; - } - - bUSAGE = 0; - - for (N = 0; N < PLOT_CHUNK_CACHE; ++N) { - - if (pl->data[dN].cache[N].raw != NULL) { - - bUSAGE += pl->data[dN].chunk_bSIZE; - } - } - - return bUSAGE; -} - -static int -plotDataCacheGetNode(plot_t *pl, int dN, int kN) -{ - int N, kNOT, xN = -1; - - for (N = 0; N < PLOT_CHUNK_CACHE; ++N) { - - if (pl->data[dN].cache[N].raw == NULL) { - - xN = N; - break; - } - } - - if (xN < 0) { - - kNOT = pl->data[dN].tail_N >> pl->data[dN].chunk_SHIFT; - - N = (pl->data[dN].cache_ID < PLOT_CHUNK_CACHE - 1) - ? pl->data[dN].cache_ID + 1 : 0; - - if (pl->data[dN].cache[N].chunk_N == kNOT) { - - N = (N < PLOT_CHUNK_CACHE - 1) ? N + 1 : 0; - } - - xN = N; - - pl->data[dN].cache_ID = N; - } - - return xN; -} - -static void -plotDataCacheFetch(plot_t *pl, int dN, int kN) -{ - int xN, kNZ, lzLEN; - - xN = plotDataCacheGetNode(pl, dN, kN); - - if (pl->data[dN].cache[xN].raw != NULL) { - - kNZ = pl->data[dN].cache[xN].chunk_N; - - if (pl->data[dN].cache[xN].dirty != 0) { - - lzLEN = LZ4_compressBound(pl->data[dN].chunk_bSIZE); - - if (pl->data[dN].compress[kNZ].raw != NULL) { - - free(pl->data[dN].compress[kNZ].raw); - } - - pl->data[dN].compress[kNZ].raw = (void *) malloc(lzLEN); - - if (pl->data[dN].compress[kNZ].raw == NULL) { - - ERROR("Unable to allocate LZ4 memory of %i dataset\n", dN); - } - - lzLEN = LZ4_compress_default( - (const char *) pl->data[dN].cache[xN].raw, - (char *) pl->data[dN].compress[kNZ].raw, - pl->data[dN].chunk_bSIZE, lzLEN); - - if (lzLEN > 0) { - - pl->data[dN].compress[kNZ].raw = - realloc(pl->data[dN].compress[kNZ].raw, lzLEN); - pl->data[dN].compress[kNZ].length = lzLEN; - } - else { - ERROR("Unable to compress the chunk of %i dataset\n", dN); - - free(pl->data[dN].compress[kNZ].raw); - - pl->data[dN].compress[kNZ].raw = NULL; - pl->data[dN].compress[kNZ].length = 0; - } - } - - pl->data[dN].raw[kNZ] = NULL; - } - else { - pl->data[dN].cache[xN].raw = (fval_t *) malloc(pl->data[dN].chunk_bSIZE); - - if (pl->data[dN].cache[xN].raw == NULL) { - - ERROR("Unable to allocate cache of %i dataset\n", dN); - } - } - - pl->data[dN].cache[xN].chunk_N = kN; - pl->data[dN].cache[xN].dirty = 0; - - pl->data[dN].raw[kN] = pl->data[dN].cache[xN].raw; - - if (pl->data[dN].compress[kN].raw != NULL) { - - lzLEN = LZ4_decompress_safe( - (const char *) pl->data[dN].compress[kN].raw, - (char *) pl->data[dN].raw[kN], - pl->data[dN].compress[kN].length, - pl->data[dN].chunk_bSIZE); - - if (lzLEN != pl->data[dN].chunk_bSIZE) { - - ERROR("Unable to decompress the chunk of %i dataset\n", dN); - } - } -} - -static void -plotDataChunkFetch(plot_t *pl, int dN, int kN) -{ - if ( pl->data[dN].raw[kN] == NULL - && pl->data[dN].length_N != 0) { - - plotDataCacheFetch(pl, dN, kN); - } -} - -static void -plotDataChunkWrite(plot_t *pl, int dN, int kN) -{ - int N; - - if ( pl->data[dN].raw[kN] == NULL - && pl->data[dN].length_N != 0) { - - plotDataCacheFetch(pl, dN, kN); - } - - if (pl->data[dN].raw[kN] != NULL) { - - for (N = 0; N < PLOT_CHUNK_CACHE; ++N) { - - if (pl->data[dN].cache[N].chunk_N == kN) { - - pl->data[dN].cache[N].dirty = 1; - break; - } - } - } -} - -void plotDataAlloc(plot_t *pl, int dN, int cN, int lN) -{ - int *map; - int N, bSIZE; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (cN < 1) { - - ERROR("Number of columns is too few\n"); - return ; - } - - if (lN < 1) { - - ERROR("Length of dataset is too short\n"); - return ; - } - - if (pl->data[dN].column_N != 0) { - - if (pl->data[dN].column_N != cN) { - - ERROR("Number of columns cannot be changed\n"); - return ; - } - - plotSketchClean(pl); - - plotDataRangeCacheClean(pl, dN); - plotDataChunkAlloc(pl, dN, lN); - - pl->data[dN].head_N = 0; - pl->data[dN].tail_N = 0; - pl->data[dN].id_N = 0; - pl->data[dN].sub_N = 0; - } - else { - pl->data[dN].column_N = cN; - - for (N = 0; N < 30; ++N) { - - bSIZE = sizeof(fval_t) * (cN + PLOT_SUBTRACT) * (1UL << N); - - if (bSIZE >= PLOT_CHUNK_SIZE) { - - pl->data[dN].chunk_SHIFT = N; - pl->data[dN].chunk_MASK = (1UL << N) - 1UL; - pl->data[dN].chunk_bSIZE = bSIZE; - break; - } - } - - pl->data[dN].lz4_compress = pl->lz4_compress; - - plotDataChunkAlloc(pl, dN, lN); - - pl->data[dN].cache_ID = 0; - - pl->data[dN].head_N = 0; - pl->data[dN].tail_N = 0; - pl->data[dN].id_N = 0; - pl->data[dN].sub_N = 0; - - for (N = 0; N < PLOT_SUBTRACT; ++N) { - - pl->data[dN].sub[N].busy = SUBTRACT_FREE; - } - - map = (int *) malloc(sizeof(int) * (cN + PLOT_SUBTRACT + 1)); - - if (map == NULL) { - - ERROR("No memory allocated for %i map\n", dN); - return ; - } - - pl->data[dN].map = (int *) map + 1; - - for (N = -1; N < (cN + PLOT_SUBTRACT); ++N) { - - pl->data[dN].map[N] = -1; - } - } -} - -void plotDataResize(plot_t *pl, int dN, int lN) -{ - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (lN < 1) { - - ERROR("Length of dataset is too short\n"); - return ; - } - - if (pl->data[dN].column_N != 0) { - - if (lN < pl->data[dN].length_N) { - - pl->data[dN].head_N = 0; - pl->data[dN].tail_N = 0; - pl->data[dN].id_N = 0; - pl->data[dN].sub_N = 0; - } - - plotDataChunkAlloc(pl, dN, lN); - } -} - -int plotDataSpaceLeft(plot_t *pl, int dN) -{ - int N; - - N = pl->data[dN].tail_N - pl->data[dN].head_N; - N += (N < 0) ? pl->data[dN].length_N : 0; - - return pl->data[dN].length_N - N; -} - -void plotDataGrowUp(plot_t *pl, int dN) -{ - int lSHIFT, lN; - - lSHIFT = pl->data[dN].chunk_SHIFT; - - lN = pl->data[dN].length_N; - lN = ((lN >> lSHIFT) + 1) << lSHIFT; - - plotDataResize(pl, dN, lN); -} - -static const fval_t * -plotDataGet(plot_t *pl, int dN, int *rN) -{ - const fval_t *row = NULL; - int lN, kN, jN; - - if (*rN != pl->data[dN].tail_N) { - - kN = *rN >> pl->data[dN].chunk_SHIFT; - jN = *rN & pl->data[dN].chunk_MASK; - - if (pl->data[dN].lz4_compress != 0) { - - plotDataChunkFetch(pl, dN, kN); - } - - row = pl->data[dN].raw[kN]; - - if (row != NULL) { - - row += (pl->data[dN].column_N + PLOT_SUBTRACT) * jN; - - lN = pl->data[dN].length_N; - *rN = (*rN < lN - 1) ? *rN + 1 : 0; - } - } - - return row; -} - -static void -plotDataRangeCacheWipe(plot_t *pl, int dN, int kN) -{ - int N; - - for (N = 0; N < PLOT_RCACHE_SIZE; ++N) { - - if ( pl->rcache[N].busy != 0 - && pl->rcache[N].data_N == dN) { - - pl->rcache[N].chunk[kN].computed = 0; - pl->rcache[N].cached = 0; - } - } -} - -static fval_t * -plotDataWrite(plot_t *pl, int dN, int *rN) -{ - fval_t *row = NULL; - int lN, kN, jN; - - if (*rN != pl->data[dN].tail_N) { - - kN = *rN >> pl->data[dN].chunk_SHIFT; - jN = *rN & pl->data[dN].chunk_MASK; - - if (pl->data[dN].lz4_compress != 0) { - - plotDataChunkWrite(pl, dN, kN); - } - - if ( pl->rcache_wipe_data_N != dN - || pl->rcache_wipe_chunk_N != kN) { - - plotDataRangeCacheWipe(pl, dN, kN); - - pl->rcache_wipe_data_N = dN; - pl->rcache_wipe_chunk_N = kN; - } - - row = pl->data[dN].raw[kN]; - - if (row != NULL) { - - row += (pl->data[dN].column_N + PLOT_SUBTRACT) * jN; - - lN = pl->data[dN].length_N; - *rN = (*rN < lN - 1) ? *rN + 1 : 0; - } - } - - return row; -} - -static void -plotDataSkip(plot_t *pl, int dN, int *rN, int *id_N, int iN) -{ - int N, lN, tN; - - lN = pl->data[dN].length_N; - - N = *rN - pl->data[dN].head_N; - N = (N < 0) ? N + lN : N; - - tN = pl->data[dN].tail_N - pl->data[dN].head_N; - tN = (tN < 0) ? tN + lN : tN; - - iN = (N + iN < 0) ? - N : iN; - iN = (N + iN > tN) ? tN - N : iN; - - N += iN; - - N = pl->data[dN].head_N + N; - N = (N > lN - 1) ? N - lN : N; - - if (rN != NULL) { - - *rN = N; - } - - if (id_N != NULL) { - - *id_N += iN; - } -} - -static int -plotDataChunkN(plot_t *pl, int dN, int rN) -{ - int kN; - - kN = rN >> pl->data[dN].chunk_SHIFT; - - return kN; -} - -static void -plotDataChunkSkip(plot_t *pl, int dN, int *rN, int *id_N) -{ - int skip_N, wrap_N; - - skip_N = (1UL << pl->data[dN].chunk_SHIFT) - - (*rN & pl->data[dN].chunk_MASK); - - wrap_N = pl->data[dN].length_N - *rN; - skip_N = (wrap_N < skip_N) ? wrap_N : skip_N; - - plotDataSkip(pl, dN, rN, id_N, skip_N); -} - -static tuple_t -plotDataMedianAdd(plot_t *pl, int dN, int sN, double fval, double fpay) -{ - int index[PLOT_MEDIAN_MAX]; - int N, Nq, N0, N1, length, keep, tail, N_len; - - tuple_t mN = { -1, -1 }; - - length = pl->data[dN].sub[sN].op.median.length; - keep = pl->data[dN].sub[sN].op.median.keep; - tail = pl->data[dN].sub[sN].op.median.tail; - - pl->data[dN].sub[sN].op.median.window[tail].fval = fval; - pl->data[dN].sub[sN].op.median.window[tail].fpay = fpay; - - keep = (keep < length - 1) ? keep + 1 : length; - tail = (tail < length - 1) ? tail + 1 : 0; - - pl->data[dN].sub[sN].op.median.keep = keep; - pl->data[dN].sub[sN].op.median.tail = tail; - - for (N = 0, N_len = 0; N < keep; ++N) { - - fval = pl->data[dN].sub[sN].op.median.window[N].fval; - - if (fp_isfinite(fval)) { - - index[N_len++] = N; - - for (Nq = N_len - 1; Nq > 0; --Nq) { - - N0 = index[Nq - 1]; - N1 = index[Nq]; - - fval = pl->data[dN].sub[sN].op.median.window[N0].fval; - fpay = pl->data[dN].sub[sN].op.median.window[N1].fval; - - if (fval < fpay) { - - index[Nq - 1] = N1; - index[Nq] = N0; - } - } - } - } - - if (N_len > 0) { - - mN.X = index[N_len / 2]; - mN.Y = mN.X; - } - - if (pl->data[dN].sub[sN].op.median.opdata != 0) { - - for (N = 0, N_len = 0; N < keep; ++N) { - - fval = pl->data[dN].sub[sN].op.median.window[N].fval; - fpay = pl->data[dN].sub[sN].op.median.window[N].fpay; - - if (fp_isfinite(fval) && fp_isfinite(fpay)) { - - index[N_len++] = N; - - for (Nq = N_len - 1; Nq > 0; --Nq) { - - N0 = index[Nq - 1]; - N1 = index[Nq]; - - fval = pl->data[dN].sub[sN].op.median.window[N0].fpay; - fpay = pl->data[dN].sub[sN].op.median.window[N1].fpay; - - if (fval < fpay) { - - index[Nq - 1] = N1; - index[Nq] = N0; - } - } - } - } - - if (N_len > 0) { - - mN.Y = index[N_len / 2]; - } - } - - return mN; -} - -static void -plotDataResample(plot_t *pl, int dN, int cNX, int cNY, int in_dN, int in_cNX, int in_cNY) -{ - fval_t *row, X, Y, X2, Y2, prev_X2, prev_Y2, Qf; - const fval_t *prey; - - int rN, id_N, rN2, id_N2; - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - rN2 = pl->data[in_dN].head_N; - id_N2 = pl->data[in_dN].id_N; - - do { - prey = plotDataGet(pl, in_dN, &rN2); - - if (prey == NULL) - break; - - X2 = (in_cNX < 0) ? id_N2 : prey[in_cNX]; - Y2 = (in_cNY < 0) ? id_N2 : prey[in_cNY]; - - id_N2++; - - if (fp_isfinite(X2)) - break; - } - while (1); - - if (id_N2 != pl->data[in_dN].id_N) { - - prev_X2 = X2; - prev_Y2 = Y2; - } - else { - ERROR("No data to resample in dataset %i column %i\n", in_dN, in_cNX); - return ; - } - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X = (cNX < 0) ? id_N : row[cNX]; - - if (fp_isfinite(X)) { - - do { - if (X2 >= X) - break; - - prey = plotDataGet(pl, in_dN, &rN2); - - if (prey == NULL) - break; - - if (fp_isfinite(X2)) { - - prev_X2 = X2; - prev_Y2 = Y2; - } - - X2 = (in_cNX < 0) ? id_N2 : prey[in_cNX]; - Y2 = (in_cNY < 0) ? id_N2 : prey[in_cNY]; - - id_N2++; - } - while (1); - - if ( pl->interpolation != 0 - && X2 >= X) { - - if ( prev_X2 <= X - && prev_X2 < X2) { - - Qf = (X - prev_X2) / (X2 - prev_X2); - Y = prev_Y2 + (Y2 - prev_Y2) * Qf; - } - else { - Y = prev_Y2; - } - } - else { - Y = Y2; - } - } - else { - Y = FP_NAN; - } - - row[cNY] = Y; - - id_N++; - } - while (1); -} - -static void -plotDataPolyfit(plot_t *pl, int dN, int cNX, int cNY, - double scale_X, double offset_X, - double scale_Y, double offset_Y, int N0, int N1) -{ - const fval_t *row; - double fval_X, fval_Y, fvec[LSE_FULL_MAX]; - int N, xN, yN, kN, rN, id_N, job; - - lse_construct(&pl->lsq, LSE_CASCADE_MAX, N1 - N0 + 1, 1); - - xN = plotDataRangeCacheFetch(pl, dN, cNX); - yN = plotDataRangeCacheFetch(pl, dN, cNY); - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (xN >= 0 && pl->rcache[xN].chunk[kN].computed != 0) { - - if (pl->rcache[xN].chunk[kN].finite != 0) { - - fvec[0] = pl->rcache[xN].chunk[kN].fmin * scale_X + offset_X; - fvec[1] = pl->rcache[xN].chunk[kN].fmax * scale_X + offset_X; - - if (fvec[0] > 1. || fvec[1] < 0.) { - - job = 0; - } - } - else { - job = 0; - } - } - - if (yN >= 0 && pl->rcache[yN].chunk[kN].computed != 0) { - - if (pl->rcache[yN].chunk[kN].finite != 0) { - - fvec[0] = pl->rcache[yN].chunk[kN].fmin * scale_Y + offset_Y; - fvec[1] = pl->rcache[yN].chunk[kN].fmax * scale_Y + offset_Y; - - if (fvec[0] > 1. || fvec[1] < 0.) { - - job = 0; - } - } - else { - job = 0; - } - } - - if (job != 0) { - - do { - if (kN != plotDataChunkN(pl, dN, rN)) - break; - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) - break; - - fval_X = (cNX < 0) ? id_N : row[cNX]; - fval_Y = (cNY < 0) ? id_N : row[cNY]; - - if (fp_isfinite(fval_X) && fp_isfinite(fval_Y)) { - - fvec[0] = fval_X * scale_X + offset_X; - fvec[1] = fval_Y * scale_Y + offset_Y; - - if ( fvec[0] >= 0. && fvec[0] <= 1. - && fvec[1] >= 0. && fvec[1] <= 1.) { - - fvec[0] = 1.; - - for (N = 0; N < N1; ++N) - fvec[N + 1] = fvec[N] * fval_X; - - for (N = 0; N < N1 - N0 + 1; ++N) - fvec[N] = fvec[N + N0]; - - fvec[N1 - N0 + 1] = fval_Y; - - lse_insert(&pl->lsq, fvec); - } - } - - id_N++; - } - while (1); - } - else { - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (rN == pl->data[dN].tail_N) - break; - } - while (1); - - lse_solve(&pl->lsq); - lse_std(&pl->lsq); -} - -static void -plotDataFileCSV(plot_t *pl, int *list_dN, int *list_cN, int len_N, FILE *fd_csv) -{ - const read_t *rd = (const read_t *) pl->ld; - - char numfmt[PLOT_STRING_MAX]; - - fval_t fval; - int N, dN, job; - - struct { - - const fval_t *row; - - int rN; - int id_N; - } - local[PLOT_DATASET_MAX]; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - job = 0; - - if (pl->data[dN].column_N != 0) { - - for (N = 0; N < len_N; ++N) { - - if (list_dN[N] == dN) { - - job = 1; - break; - } - } - } - - if (job != 0) { - - local[dN].row = (const fval_t *) 1; - local[dN].rN = pl->data[dN].head_N; - local[dN].id_N = pl->data[dN].id_N; - } - else { - local[dN].row = NULL; - } - } - - do { - job = 0; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (local[dN].row != NULL) { - - local[dN].row = plotDataGet(pl, dN, &local[dN].rN); - } - - if (local[dN].row != NULL) - job = 1; - } - - if (job == 0) - break; - - for (N = 0; N < len_N; ++N) { - - job = 0; - - dN = list_dN[N]; - - if (local[dN].row != NULL) { - - fval = (list_cN[N] < 0) ? local[dN].id_N - : local[dN].row[list_cN[N]]; - - if (fp_isfinite(fval)) - job = 1; - } - - if (job != 0) { - - int fexp = 1; - - if (fval != 0.) { - - fexp += (int) floor(log10(fabs(fval))); - } - - if (fexp >= -2 && fexp < pl->fprecision) { - - fexp = (fexp < 1) ? 1 : fexp; - - sprintf(numfmt, "%%.%df%%c", pl->fprecision - fexp); - } - else { - sprintf(numfmt, "%%.%dE%%c", pl->fprecision - 1); - } - - fprintf(fd_csv, numfmt, fval, rd->mk_text.space[0]); - } - else { - fprintf(fd_csv, "NaN%c", rd->mk_text.space[0]); - } - } - - fprintf(fd_csv, "\n"); - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (local[dN].row != NULL) - local[dN].id_N++; - } - } - while (1); -} - -static void -plotDataSubtractWrite(plot_t *pl, int dN, int sN, int rN_beg, int id_N_beg, int rN_end) -{ - fval_t *row, X1, X2, X3, X4; - double scale, offset, gain; - int cN, rN, id_N, cN1, cN2, cN3, mode; - - mode = pl->data[dN].sub[sN].busy; - - if (mode != SUBTRACT_FREE) { - - cN = sN + pl->data[dN].column_N; - - rN = rN_beg; - id_N = id_N_beg; - } - - if (mode == SUBTRACT_TIME_MEDIAN) { - - /* Do not to calculate HERE */ - } - else if (mode == SUBTRACT_DATA_MEDIAN) { - - tuple_t mN; - - if (rN_beg == pl->data[dN].head_N) { - - pl->data[dN].sub[sN].op.median.keep = 0; - pl->data[dN].sub[sN].op.median.tail = 0; - - pl->data[dN].sub[sN].op.median.offset = (double) 0.; - pl->data[dN].sub[sN].op.median.prev[0] = FP_NAN; - pl->data[dN].sub[sN].op.median.prev[1] = FP_NAN; - } - - cN1 = pl->data[dN].sub[sN].op.median.column_1; - cN2 = pl->data[dN].sub[sN].op.median.column_2; - cN3 = pl->data[dN].sub[sN].op.median.column_3; - - offset = pl->data[dN].sub[sN].op.median.offset; - - if (pl->data[dN].sub[sN].op.median.unwrap != 0) { - - X3 = (fval_t) pl->data[dN].sub[sN].op.median.prev[0]; - X4 = (fval_t) pl->data[dN].sub[sN].op.median.prev[1]; - } - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = (cN2 < 0) ? id_N : row[cN2]; - - mN = plotDataMedianAdd(pl, dN, sN, X1, X2); - - if (mN.X < 0) { - - X1 = FP_NAN; - X2 = FP_NAN; - } - else { - X1 = pl->data[dN].sub[sN].op.median.window[mN.X].fval; - X2 = pl->data[dN].sub[sN].op.median.window[mN.Y].fpay; - } - - if (pl->data[dN].sub[sN].op.median.unwrap != 0) { - - if (X1 + (fval_t) pl->defungap < X3) { - - offset += X3 - X1; - - if (X4 < X3) { - - offset += X3 - X4; - } - } - - if (fp_isfinite(X1)) { - - X4 = X3; - X3 = X1; - } - } - - row[cN3] = X1 + offset; - row[cN] = X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - - pl->data[dN].sub[sN].op.median.offset = offset; - - if (pl->data[dN].sub[sN].op.median.unwrap != 0) { - - pl->data[dN].sub[sN].op.median.prev[0] = (double) X3; - pl->data[dN].sub[sN].op.median.prev[1] = (double) X4; - } - } - else if (mode == SUBTRACT_SCALE) { - - cN1 = pl->data[dN].sub[sN].op.scale.column_1; - scale = pl->data[dN].sub[sN].op.scale.scale; - offset = pl->data[dN].sub[sN].op.scale.offset; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X1 = X1 * scale + offset; - - row[cN] = X1; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_RESAMPLE) { - - /* Do not to calculate HERE */ - } - else if (mode == SUBTRACT_POLYFIT) { - - const double *coefs; - int N, N0, N1; - - cN1 = pl->data[dN].sub[sN].op.polyfit.column_X; - N0 = pl->data[dN].sub[sN].op.polyfit.poly_N0; - N1 = pl->data[dN].sub[sN].op.polyfit.poly_N1; - coefs = pl->data[dN].sub[sN].op.polyfit.coefs; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = coefs[N1 - N0]; - - for (N = N1 - N0 - 1; N >= 0; --N) - X2 = X2 * X1 + coefs[N]; - - for (N = N0 - 1; N >= 0; --N) - X2 = X2 * X1; - - row[cN] = X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_BINARY_SUBTRACTION) { - - cN1 = pl->data[dN].sub[sN].op.binary.column_1; - cN2 = pl->data[dN].sub[sN].op.binary.column_2; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = (cN2 < 0) ? id_N : row[cN2]; - - row[cN] = X1 - X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_BINARY_ADDITION) { - - cN1 = pl->data[dN].sub[sN].op.binary.column_1; - cN2 = pl->data[dN].sub[sN].op.binary.column_2; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = (cN2 < 0) ? id_N : row[cN2]; - - row[cN] = X1 + X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_BINARY_MULTIPLICATION) { - - cN1 = pl->data[dN].sub[sN].op.binary.column_1; - cN2 = pl->data[dN].sub[sN].op.binary.column_2; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = (cN2 < 0) ? id_N : row[cN2]; - - row[cN] = X1 * X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_BINARY_HYPOTENUSE) { - - cN1 = pl->data[dN].sub[sN].op.binary.column_1; - cN2 = pl->data[dN].sub[sN].op.binary.column_2; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - X2 = (cN2 < 0) ? id_N : row[cN2]; - - row[cN] = sqrt(X1 * X1 + X2 * X2); - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_FILTER_DIFFERENCE) { - - if (rN_beg == pl->data[dN].head_N) { - - pl->data[dN].sub[sN].op.filter.state = FP_NAN; - } - - cN1 = pl->data[dN].sub[sN].op.filter.column_1; - X2 = (fval_t) pl->data[dN].sub[sN].op.filter.state; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - - row[cN] = X1 - X2; - - X2 = X1; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - - pl->data[dN].sub[sN].op.filter.state = (double) X2; - } - else if (mode == SUBTRACT_FILTER_CUMULATIVE) { - - if (rN_beg == pl->data[dN].head_N) { - - pl->data[dN].sub[sN].op.filter.state = 0.; - } - - cN1 = pl->data[dN].sub[sN].op.filter.column_1; - X2 = (fval_t) pl->data[dN].sub[sN].op.filter.state; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - - if (fp_isfinite(X1)) { - - X2 += X1; - } - - row[cN] = X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - - pl->data[dN].sub[sN].op.filter.state = (double) X2; - } - else if (mode == SUBTRACT_FILTER_BITMASK) { - - unsigned long shift, mask, ulval; - - cN1 = pl->data[dN].sub[sN].op.filter.column_1; - ulval = (unsigned long) pl->data[dN].sub[sN].op.filter.gain; - - shift = ulval & 0xFFU; - ulval = ulval >> 8; - - mask = ((1U << (ulval - shift + 1U)) - 1U) << shift; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - - ulval = ((unsigned long) X1 & mask) >> shift; - row[cN] = (fval_t) ulval; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } - else if (mode == SUBTRACT_FILTER_LOW_PASS) { - - if (rN_beg == pl->data[dN].head_N) { - - pl->data[dN].sub[sN].op.filter.state = FP_NAN; - } - - cN1 = pl->data[dN].sub[sN].op.filter.column_1; - gain = pl->data[dN].sub[sN].op.filter.gain; - X2 = (fval_t) pl->data[dN].sub[sN].op.filter.state; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - - if (fp_isfinite(X1)) { - - if (fp_isfinite(X2)) { - - X2 += (X1 - X2) * gain; - } - else { - X2 = X1; - } - } - - row[cN] = X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - - pl->data[dN].sub[sN].op.filter.state = (double) X2; - } - else if (mode == SUBTRACT_FILTER_MEDIAN) { - - tuple_t mN; - - if (rN_beg == pl->data[dN].head_N) { - - pl->data[dN].sub[sN].op.median.keep = 0; - pl->data[dN].sub[sN].op.median.tail = 0; - } - - cN1 = pl->data[dN].sub[sN].op.median.column_1; - - do { - row = plotDataWrite(pl, dN, &rN); - - if (row == NULL) - break; - - X1 = (cN1 < 0) ? id_N : row[cN1]; - - mN = plotDataMedianAdd(pl, dN, sN, X1, X1); - - if (mN.X < 0) { - - X2 = FP_NAN; - } - else { - X2 = pl->data[dN].sub[sN].op.median.window[mN.X].fval; - } - - row[cN] = X2; - - id_N++; - - if (rN == rN_end) - break; - } - while (1); - } -} - -static void -plotDataSubtractResample(plot_t *pl, int dN, int sN) -{ - int cNX, cNY, in_dN, in_cNX, in_cNY; - - if (pl->data[dN].sub[sN].busy == SUBTRACT_RESAMPLE) { - - cNX = pl->data[dN].sub[sN].op.resample.column_X; - cNY = sN + pl->data[dN].column_N; - - in_dN = pl->data[dN].sub[sN].op.resample.in_data_N; - in_cNX = pl->data[dN].sub[sN].op.resample.in_column_X; - in_cNY = pl->data[dN].sub[sN].op.resample.in_column_Y; - - plotDataResample(pl, dN, cNX, cNY, in_dN, in_cNX, in_cNY); - } -} - -static void -plotDataSubtractWriteSeq(plot_t *pl, int dN, int rN_beg, int id_N_beg, int rN_end) -{ - int N; - - for (N = 0; N < PLOT_SUBTRACT; ++N) { - - plotDataSubtractWrite(pl, dN, N, rN_beg, id_N_beg, rN_end); - } -} - -static void -plotDataSubtractResampleSeq(plot_t *pl, int dN) -{ - int N; - - for (N = 0; N < PLOT_SUBTRACT; ++N) { - - plotDataSubtractResample(pl, dN, N); - } -} - -void plotDataSubtractCompute(plot_t *pl, int dN, int sN) -{ - int rN, id_N, rN_end; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (sN < 0 || sN >= PLOT_SUBTRACT) { - - ERROR("Subtract number %i is out of range\n", sN); - return ; - } - - if (pl->data[dN].sub_paused != 0) - return ; - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - rN_end = pl->data[dN].tail_N; - - if (rN == rN_end) - return ; - - plotDataSubtractWrite(pl, dN, sN, rN, id_N, rN_end); - plotDataSubtractResample(pl, dN, sN); -} - -void plotDataSubtractResidual(plot_t *pl, int dN) -{ - int rN, id_N, rN_end; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - rN = pl->data[dN].sub_N; - id_N = pl->data[dN].id_N; - - rN_end = pl->data[dN].tail_N; - - if (rN == rN_end) - return ; - - plotDataSubtractWriteSeq(pl, dN, rN, id_N, rN_end); - - pl->data[dN].sub_N = rN_end; -} - -void plotDataSubtractClean(plot_t *pl) -{ - int dN, N; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (pl->data[dN].column_N != 0) { - - for (N = 0; N < PLOT_SUBTRACT; ++N) { - - pl->data[dN].sub[N].busy = SUBTRACT_FREE; - } - } - } -} - -void plotDataSubtractPaused(plot_t *pl) -{ - int dN; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (pl->data[dN].column_N != 0) { - - pl->data[dN].sub_paused = 1; - } - } -} - -void plotDataSubtractAlternate(plot_t *pl) -{ - int dN, rN, id_N, rN_end, id_N_end, lCHUNK; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if (pl->data[dN].column_N != 0) { - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - if (rN != pl->data[dN].tail_N) { - - lCHUNK = (1UL << pl->data[dN].chunk_SHIFT); - - rN_end = rN; - id_N_end = id_N; - - do { - plotDataSkip(pl, dN, &rN_end, &id_N_end, lCHUNK); - plotDataSubtractWriteSeq(pl, dN, rN, id_N, rN_end); - - rN = rN_end; - id_N = id_N_end; - } - while (rN != pl->data[dN].tail_N); - - pl->data[dN].sub_N = rN_end; - - plotDataSubtractResampleSeq(pl, dN); - } - - pl->data[dN].sub_paused = 0; - } - } -} - -void plotDataInsert(plot_t *pl, int dN, const fval_t *row) -{ - fval_t *place; - int cN, lN, hN, tN, kN, jN, sN; - - cN = pl->data[dN].column_N; - lN = pl->data[dN].length_N; - hN = pl->data[dN].head_N; - tN = pl->data[dN].tail_N; - - kN = tN >> pl->data[dN].chunk_SHIFT; - jN = tN & pl->data[dN].chunk_MASK; - - if (pl->data[dN].lz4_compress != 0) { - - plotDataChunkWrite(pl, dN, kN); - } - - if ( pl->rcache_wipe_data_N != dN - || pl->rcache_wipe_chunk_N != kN) { - - plotDataRangeCacheWipe(pl, dN, kN); - - pl->rcache_wipe_data_N = dN; - pl->rcache_wipe_chunk_N = kN; - } - - place = pl->data[dN].raw[kN]; - - if (place != NULL) { - - place += (cN + PLOT_SUBTRACT) * jN; - - memcpy(place, row, cN * sizeof(fval_t)); - memset(place + cN, 0, PLOT_SUBTRACT * sizeof(fval_t)); - - tN = (tN < lN - 1) ? tN + 1 : 0; - - if (hN == tN) { - - pl->data[dN].id_N++; - - hN = (hN < lN - 1) ? hN + 1 : 0; - pl->data[dN].head_N = hN; - - sN = pl->data[dN].sub_N; - pl->data[dN].sub_N = (sN == tN) ? hN : sN; - } - - pl->data[dN].tail_N = tN; - } -} - -void plotDataClean(plot_t *pl, int dN) -{ - int N; - - if (pl->data[dN].column_N != 0) { - - pl->data[dN].column_N = 0; - pl->data[dN].length_N = 0; - - if (pl->data[dN].lz4_compress != 0) { - - for (N = 0; N < PLOT_CHUNK_CACHE; ++N) { - - if (pl->data[dN].cache[N].raw) { - - free(pl->data[dN].cache[N].raw); - - pl->data[dN].cache[N].raw = NULL; - } - } - - for (N = 0; N < PLOT_CHUNK_MAX; ++N) { - - pl->data[dN].raw[N] = NULL; - - if (pl->data[dN].compress[N].raw != NULL) { - - free(pl->data[dN].compress[N].raw); - - pl->data[dN].compress[N].raw = NULL; - } - } - } - else { - for (N = 0; N < PLOT_CHUNK_MAX; ++N) { - - if (pl->data[dN].raw[N] != NULL) { - - free(pl->data[dN].raw[N]); - - pl->data[dN].raw[N] = NULL; - } - } - } - - free(pl->data[dN].map - 1); - - pl->data[dN].map = NULL; - } -} - -static int -plotDataRangeCacheGetNode(plot_t *pl, int dN, int cN) -{ - int N, xN = -1; - - for (N = 0; N < PLOT_RCACHE_SIZE; ++N) { - - if ( pl->rcache[N].busy != 0 - && pl->rcache[N].data_N == dN - && pl->rcache[N].column_N == cN) { - - xN = N; - break; - } - } - - return xN; -} - -void plotDataRangeCacheClean(plot_t *pl, int dN) -{ - int N; - - for (N = 0; N < PLOT_RCACHE_SIZE; ++N) { - - if (pl->rcache[N].data_N == dN) - pl->rcache[N].busy = 0; - } -} - -void plotDataRangeCacheSubtractClean(plot_t *pl) -{ - int N, dN; - - for (N = 0; N < PLOT_RCACHE_SIZE; ++N) { - - if (pl->rcache[N].busy != 0) { - - dN = pl->rcache[N].data_N; - - if ( dN >= 0 && dN < PLOT_DATASET_MAX - && pl->data[dN].column_N != 0) { - - if (pl->rcache[N].column_N >= pl->data[dN].column_N) - pl->rcache[N].busy = 0; - } - } - } -} - -int plotDataRangeCacheFetch(plot_t *pl, int dN, int cN) -{ - const fval_t *row; - fval_t fval, fmin, fmax, ymin, ymax; - int N, xN, rN, id_N, kN; - int job, finite, started; - - xN = plotDataRangeCacheGetNode(pl, dN, cN); - - if (xN >= 0) { - - if (pl->rcache[xN].cached != 0) - return xN; - } - else { - xN = pl->rcache_ID; - - pl->rcache_ID = (pl->rcache_ID < PLOT_RCACHE_SIZE - 1) - ? pl->rcache_ID + 1 : 0; - - for (N = 0; N < PLOT_CHUNK_MAX; ++N) { - - pl->rcache[xN].chunk[N].computed = 0; - } - } - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - fmin = (fval_t) 0.; - fmax = (fval_t) 0.; - - started = 0; - - do { - kN = plotDataChunkN(pl, dN, rN); - - if (pl->rcache[xN].chunk[kN].computed != 0) { - - if (kN == plotDataChunkN(pl, dN, pl->data[dN].tail_N)) { - - job = 1; - - finite = pl->rcache[xN].chunk[kN].finite; - ymin = pl->rcache[xN].chunk[kN].fmin; - ymax = pl->rcache[xN].chunk[kN].fmax; - } - else { - job = 0; - } - } - else { - finite = 0; - job = 1; - } - - if (job != 0) { - - do { - if (kN != plotDataChunkN(pl, dN, rN)) - break; - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) - break; - - fval = (cN < 0) ? id_N : row[cN]; - - if (fp_isfinite(fval)) { - - if (finite != 0) { - - ymin = (fval < ymin) ? fval : ymin; - ymax = (fval > ymax) ? fval : ymax; - } - else { - finite = 1; - - ymin = fval; - ymax = fval; - } - } - - id_N++; - } - while (1); - - pl->rcache[xN].chunk[kN].computed = 1; - pl->rcache[xN].chunk[kN].finite = finite; - - if (finite != 0) { - - pl->rcache[xN].chunk[kN].fmin = ymin; - pl->rcache[xN].chunk[kN].fmax = ymax; - } - } - else { - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (pl->rcache[xN].chunk[kN].finite != 0) { - - if (started != 0) { - - fmin = (pl->rcache[xN].chunk[kN].fmin < fmin) - ? pl->rcache[xN].chunk[kN].fmin : fmin; - - fmax = (pl->rcache[xN].chunk[kN].fmax > fmax) - ? pl->rcache[xN].chunk[kN].fmax : fmax; - } - else { - started = 1; - - fmin = pl->rcache[xN].chunk[kN].fmin; - fmax = pl->rcache[xN].chunk[kN].fmax; - } - } - - if (rN == pl->data[dN].tail_N) - break; - } - while (1); - - pl->rcache[xN].busy = 1; - pl->rcache[xN].data_N = dN; - pl->rcache[xN].column_N = cN; - pl->rcache[xN].cached = 1; - pl->rcache[xN].fmin = fmin; - pl->rcache[xN].fmax = fmax; - - pl->rcache_wipe_data_N = -1; - pl->rcache_wipe_chunk_N = -1; - - return xN; -} - -static void -plotDataRangeGet(plot_t *pl, int dN, int cN, double *pmin, double *pmax) -{ - int xN; - - xN = plotDataRangeCacheFetch(pl, dN, cN); - - *pmin = (double) pl->rcache[xN].fmin; - *pmax = (double) pl->rcache[xN].fmax; -} - -static void -plotDataRangeCond(plot_t *pl, int dN, int cN, int cN_cond, int *pflag, - double scale, double offset, double *pmin, double *pmax) -{ - const fval_t *row; - double fval, fmin, fmax, fcond, vmin, vmax; - int xN, yN, kN, rN, id_N, job, started; - - started = *pflag; - fmin = *pmin; - fmax = *pmax; - - xN = plotDataRangeCacheFetch(pl, dN, cN_cond); - yN = plotDataRangeCacheFetch(pl, dN, cN); - - if (xN >= 0 && yN >= 0) { - - vmin = pl->rcache[xN].fmin * scale + offset; - vmax = pl->rcache[xN].fmax * scale + offset; - - if ( vmin >= 0. && vmin <= 1. - && vmax >= 0. && vmax <= 1.) { - - if (started != 0) { - - fmin = (pl->rcache[yN].fmin < fmin) - ? pl->rcache[yN].fmin : fmin; - - fmax = (pl->rcache[yN].fmax > fmax) - ? pl->rcache[yN].fmax : fmax; - } - else { - started = 1; - - fmin = pl->rcache[yN].fmin; - fmax = pl->rcache[yN].fmax; - } - - *pflag = started; - *pmin = fmin; - *pmax = fmax; - - return ; - } - } - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (xN >= 0 && pl->rcache[xN].chunk[kN].computed != 0) { - - if (pl->rcache[xN].chunk[kN].finite != 0) { - - vmin = pl->rcache[xN].chunk[kN].fmin * scale + offset; - vmax = pl->rcache[xN].chunk[kN].fmax * scale + offset; - - if (yN >= 0 && pl->rcache[yN].chunk[kN].computed != 0 - && vmin >= 0. && vmin <= 1. - && vmax >= 0. && vmax <= 1.) { - - job = 0; - - if (pl->rcache[yN].chunk[kN].finite != 0) { - - if (started != 0) { - - fmin = (pl->rcache[yN].chunk[kN].fmin < fmin) - ? pl->rcache[yN].chunk[kN].fmin : fmin; - - fmax = (pl->rcache[yN].chunk[kN].fmax > fmax) - ? pl->rcache[yN].chunk[kN].fmax : fmax; - } - else { - started = 1; - - fmin = pl->rcache[yN].chunk[kN].fmin; - fmax = pl->rcache[yN].chunk[kN].fmax; - } - } - } - else if (vmin > 1. || vmax < 0.) { - - job = 0; - } - } - else { - job = 0; - } - } - - if (job != 0) { - - do { - if (kN != plotDataChunkN(pl, dN, rN)) - break; - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) - break; - - fval = (cN < 0) ? id_N : row[cN]; - fcond = (cN_cond < 0) ? id_N : row[cN_cond]; - - fcond = fcond * scale + offset; - - if (fcond >= 0. && fcond <= 1.) { - - if (fp_isfinite(fval)) { - - if (started != 0) { - - fmin = (fval < fmin) ? fval : fmin; - fmax = (fval > fmax) ? fval : fmax; - } - else { - started = 1; - - fmin = fval; - fmax = fval; - } - } - } - - id_N++; - } - while (1); - } - else { - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (rN == pl->data[dN].tail_N) - break; - } - while (1); - - *pflag = started; - *pmin = fmin; - *pmax = fmax; -} - -static int -plotDataRangeAxis(plot_t *pl, int dN, int cN, int aN, double *pmin, double *pmax) -{ - double scale, offset, fmin, fmax; - int xN, yN, fN, cN_cond, job, started; - - started = 0; - - fmin = 0.; - fmax = 0.; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - job = 0; - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0 - && pl->figure[fN].data_N == dN) { - - if ( pl->figure[fN].axis_X == aN - && pl->figure[fN].column_Y == cN) { - - scale = 1.; - offset = 0.; - - cN_cond = pl->figure[fN].column_X; - job = 1; - } - else if ( pl->figure[fN].axis_Y == aN - && pl->figure[fN].column_X == cN) { - - scale = 1.; - offset = 0.; - - cN_cond = pl->figure[fN].column_Y; - job = 1; - } - - xN = pl->figure[fN].axis_X; - yN = pl->figure[fN].axis_Y; - - if ( pl->axis[xN].slave != 0 - && pl->axis[xN].slave_N == aN - && pl->figure[fN].column_Y == cN) { - - scale = pl->axis[xN].scale; - offset = pl->axis[xN].offset; - - cN_cond = pl->figure[fN].column_X; - job = 1; - } - else if ( pl->axis[yN].slave != 0 - && pl->axis[yN].slave_N == aN - && pl->figure[fN].column_X == cN) { - - scale = pl->axis[yN].scale; - offset = pl->axis[yN].offset; - - cN_cond = pl->figure[fN].column_Y; - job = 1; - } - } - - if (job != 0) { - - scale *= pl->axis[aN].scale; - offset = offset * pl->axis[aN].scale + pl->axis[aN].offset; - - plotDataRangeCond(pl, dN, cN, cN_cond, &started, - scale, offset, &fmin, &fmax); - } - } - - *pmin = fmin; - *pmax = fmax; - - return started; -} - -static const fval_t * -plotDataSliceGet(plot_t *pl, int dN, int cN, double fsamp, int *m_id_N) -{ - const fval_t *row; - double fval, fbest, fmin, fmax, fneard; - int xN, lN, rN, id_N, kN, kN_rep, best_N; - int job, started, span; - - xN = plotDataRangeCacheFetch(pl, dN, cN); - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - kN_rep = -1; - - started = 0; - span = 0; - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (xN >= 0 && pl->rcache[xN].chunk[kN].computed != 0) { - - if (pl->rcache[xN].chunk[kN].finite != 0) { - - fmin = pl->rcache[xN].chunk[kN].fmin; - fmax = pl->rcache[xN].chunk[kN].fmax; - - if (fsamp < fmin || fsamp > fmax) { - - job = 0; - - fmin = fabs(fmin - fsamp); - fmax = fabs(fmax - fsamp); - - if (kN_rep >= 0) { - - if (fmin < fneard) { - - fneard = fmin; - kN_rep = kN; - } - - if (fmax < fneard) { - - fneard = fmax; - kN_rep = kN; - } - } - else { - fneard = (fmin < fmax) - ? fmin : fmax; - - kN_rep = kN; - } - } - } - else { - job = 0; - } - } - - if (job != 0) { - - span++; - - do { - if (kN != plotDataChunkN(pl, dN, rN)) - break; - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) - break; - - fval = (cN < 0) ? id_N : row[cN]; - - if (fp_isfinite(fval)) { - - if (started != 0) { - - fval = fabs(fsamp - fval); - - if (fval < fbest) { - - fbest = fval; - best_N = id_N; - } - } - else { - started = 1; - - fbest = fabs(fsamp - fval); - best_N = id_N; - } - } - - id_N++; - } - while (1); - - if (span >= PLOT_SLICE_SPAN) - break; - } - else { - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (rN == pl->data[dN].tail_N) - break; - } - while (1); - - if ( started == 0 - && kN_rep >= 0) { - - rN = pl->data[dN].head_N; - id_N = pl->data[dN].id_N; - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (kN == kN_rep) { - - do { - if (kN != plotDataChunkN(pl, dN, rN)) - break; - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) - break; - - fval = (cN < 0) ? id_N : row[cN]; - - if (fp_isfinite(fval)) { - - if (started != 0) { - - fval = fabs(fsamp - fval); - - if (fval < fbest) { - - fbest = fval; - best_N = id_N; - } - } - else { - started = 1; - - fbest = fabs(fsamp - fval); - best_N = id_N; - } - } - - id_N++; - } - while (1); - } - else { - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (rN == pl->data[dN].tail_N) - break; - } - while (1); - } - - if (started != 0) { - - *m_id_N = best_N; - - lN = pl->data[dN].length_N; - - rN = pl->data[dN].head_N + (best_N - pl->data[dN].id_N); - rN = (rN > lN - 1) ? rN - lN : rN; - - row = plotDataGet(pl, dN, &rN); - } - else { - row = NULL; - } - - return row; -} - -void plotAxisLabel(plot_t *pl, int aN, const char *label) -{ - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (label[0] != 0) { - - strcpy(pl->axis[aN].label, label); - - pl->axis[aN].compact = (strlen(pl->axis[aN].label) >= 3) ? 0 : 1; - } -} - -static int -plotAxisRangeGet(plot_t *pl, int aN, double *pmin, double *pmax) -{ - double min, max, fmin, fmax, scale, offset; - int fN, dN, cN, xN, yN, started = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) { - - dN = pl->figure[fN].data_N; - - do { - if (pl->figure[fN].axis_X == aN) { - - cN = pl->figure[fN].column_X; - } - else if (pl->figure[fN].axis_Y == aN) { - - cN = pl->figure[fN].column_Y; - } - else - break; - - plotDataRangeGet(pl, dN, cN, &min, &max); - - if (started != 0) { - - fmin = (min < fmin) ? min : fmin; - fmax = (max > fmax) ? max : fmax; - } - else { - started = 1; - - fmin = min; - fmax = max; - } - } - while (0); - - do { - xN = pl->figure[fN].axis_X; - yN = pl->figure[fN].axis_Y; - - if ( pl->axis[xN].slave != 0 - && pl->axis[xN].slave_N == aN) { - - cN = pl->figure[fN].column_X; - - scale = pl->axis[xN].scale; - offset = pl->axis[xN].offset; - } - else if ( pl->axis[yN].slave != 0 - && pl->axis[yN].slave_N == aN) { - - cN = pl->figure[fN].column_Y; - - scale = pl->axis[yN].scale; - offset = pl->axis[yN].offset; - } - else - break; - - plotDataRangeGet(pl, dN, cN, &min, &max); - - min = min * scale + offset; - max = max * scale + offset; - - if (started != 0) { - - fmin = (min < fmin) ? min : fmin; - fmax = (max > fmax) ? max : fmax; - } - else { - started = 1; - - fmin = min; - fmax = max; - } - } - while (0); - } - } - - *pmin = fmin; - *pmax = fmax; - - return started; -} - -static int -plotAxisRangeCond(plot_t *pl, int aN, int bN, double *pmin, double *pmax) -{ - double min, max, fmin, fmax, scale, offset; - int fN, dN, cN, xN, yN, nN, started, cond; - - started = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) { - - dN = pl->figure[fN].data_N; - - do { - if (pl->figure[fN].axis_X == aN) { - - cN = pl->figure[fN].column_X; - nN = pl->figure[fN].axis_Y; - } - else if (pl->figure[fN].axis_Y == aN) { - - cN = pl->figure[fN].column_Y; - nN = pl->figure[fN].axis_X; - } - else - break; - - if (bN >= 0) { - - cond = plotDataRangeAxis(pl, dN, cN, bN, &min, &max); - } - else { - cond = plotDataRangeAxis(pl, dN, cN, nN, &min, &max); - } - - if (cond != 0) { - - if (started != 0) { - - fmin = (min < fmin) ? min : fmin; - fmax = (max > fmax) ? max : fmax; - } - else { - started = 1; - - fmin = min; - fmax = max; - } - } - } - while (0); - - do { - xN = pl->figure[fN].axis_X; - yN = pl->figure[fN].axis_Y; - - if ( pl->axis[xN].slave != 0 - && pl->axis[xN].slave_N == aN) { - - cN = pl->figure[fN].column_X; - nN = pl->figure[fN].axis_Y; - - scale = pl->axis[xN].scale; - offset = pl->axis[xN].offset; - } - else if ( pl->axis[yN].slave != 0 - && pl->axis[yN].slave_N == aN) { - - cN = pl->figure[fN].column_Y; - nN = pl->figure[fN].axis_X; - - scale = pl->axis[yN].scale; - offset = pl->axis[yN].offset; - } - else - break; - - - if (bN >= 0) { - - cond = plotDataRangeAxis(pl, dN, cN, bN, &min, &max); - } - else { - cond = plotDataRangeAxis(pl, dN, cN, nN, &min, &max); - } - - if (cond != 0) { - - min = min * scale + offset; - max = max * scale + offset; - - if (started != 0) { - - fmin = (min < fmin) ? min : fmin; - fmax = (max > fmax) ? max : fmax; - } - else { - started = 1; - - fmin = min; - fmax = max; - } - } - } - while (0); - } - } - - *pmin = fmin; - *pmax = fmax; - - return started; -} - -void plotAxisScaleManual(plot_t *pl, int aN, double min, double max) -{ - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].busy == AXIS_FREE) - return ; - - if (pl->axis[aN].slave != 0) - return ; - - pl->axis[aN].scale = 1. / (max - min); - pl->axis[aN].offset = - min / (max - min); -} - -void plotAxisScaleAuto(plot_t *pl, int aN) -{ - double fmin, fmax; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].busy == AXIS_FREE) - return ; - - if (pl->axis[aN].slave != 0) - return ; - - if (plotAxisRangeGet(pl, aN, &fmin, &fmax) != 0) { - - if (fmin == fmax) { - - fmin += (double) - 1.; - fmax += (double) + 1.; - } - - plotAxisScaleManual(pl, aN, fmin, fmax); - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - fmin = plotAxisConvBackward(pl, aN, pl->viewport.min_x - pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, pl->viewport.max_x + pl->layout_mark_size); - - plotAxisScaleManual(pl, aN, fmin, fmax); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - fmin = plotAxisConvBackward(pl, aN, pl->viewport.max_y + pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, pl->viewport.min_y - pl->layout_mark_size); - - plotAxisScaleManual(pl, aN, fmin, fmax); - } - - pl->axis[aN].lock_scale = LOCK_AUTO; - pl->axis[aN].lock_tick = 0; - } -} - -void plotAxisScaleAutoCond(plot_t *pl, int aN, int bN) -{ - double fmin, fmax; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (bN < -1 || bN >= PLOT_AXES_MAX) { - - ERROR("Conditional axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].busy == AXIS_FREE) - return ; - - if (pl->axis[aN].slave != 0) - return ; - - if (plotAxisRangeCond(pl, aN, bN, &fmin, &fmax) != 0) { - - if (fmin == fmax) { - - fmin += (double) - 1.; - fmax += (double) + 1.; - } - - plotAxisScaleManual(pl, aN, fmin, fmax); - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - fmin = plotAxisConvBackward(pl, aN, pl->viewport.min_x - pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, pl->viewport.max_x + pl->layout_mark_size); - - plotAxisScaleManual(pl, aN, fmin, fmax); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - fmin = plotAxisConvBackward(pl, aN, pl->viewport.max_y + pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, pl->viewport.min_y - pl->layout_mark_size); - - plotAxisScaleManual(pl, aN, fmin, fmax); - } - - pl->axis[aN].lock_tick = 0; - } -} - -void plotAxisScaleLock(plot_t *pl, int knob) -{ - int aN; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) - pl->axis[aN].lock_scale = knob; -} - -void plotAxisScaleDefault(plot_t *pl) -{ - int aN; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if ( pl->axis[aN].busy != AXIS_FREE - && pl->axis[aN].lock_scale == LOCK_AUTO) { - - plotAxisScaleAuto(pl, aN); - } - } - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if ( pl->axis[aN].busy == AXIS_BUSY_Y - && pl->axis[aN].lock_scale == LOCK_STACKED) { - - plotAxisScaleStacked(pl, -1); - break; - } - } -} - -void plotAxisScaleZoom(plot_t *pl, int aN, int origin, double zoom) -{ - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].slave != 0) - return ; - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - pl->axis[aN].scale *= zoom; - pl->axis[aN].offset = pl->axis[aN].offset * zoom - + (double) (pl->viewport.min_x - origin) / - (double) (pl->viewport.max_x - pl->viewport.min_x) * (zoom - 1.); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - pl->axis[aN].scale *= zoom; - pl->axis[aN].offset = pl->axis[aN].offset * zoom - + (double) (pl->viewport.max_y - origin) / - (double) (pl->viewport.min_y - pl->viewport.max_y) * (zoom - 1.); - } - - pl->axis[aN].lock_scale = LOCK_FREE; -} - -void plotAxisScaleMove(plot_t *pl, int aN, double move) -{ - double span; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].slave != 0) - return ; - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - span = (double) (pl->viewport.max_x - pl->viewport.min_x); - pl->axis[aN].offset += move / span; - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - span = (double) (pl->viewport.min_y - pl->viewport.max_y); - pl->axis[aN].offset += move / span; - } - - pl->axis[aN].lock_scale = LOCK_FREE; -} - -void plotAxisScaleEqual(plot_t *pl) -{ - double zoom, aspect_x, aspect_y; - - if (pl->on_X < 0 || pl->on_X >= PLOT_AXES_MAX) - return ; - - if (pl->on_Y < 0 || pl->on_Y >= PLOT_AXES_MAX) - return ; - - aspect_x = (double) (pl->viewport.max_x - pl->viewport.min_x); - aspect_y = (double) (pl->viewport.max_y - pl->viewport.min_y); - - if (pl->axis[pl->on_Y].scale < pl->axis[pl->on_X].scale) { - - zoom = pl->axis[pl->on_Y].scale / pl->axis[pl->on_X].scale; - zoom *= aspect_y / aspect_x; - - pl->axis[pl->on_X].offset *= zoom; - pl->axis[pl->on_X].offset += (1. - zoom) / 2.; - pl->axis[pl->on_X].scale *= zoom; - } - else { - zoom = pl->axis[pl->on_X].scale / pl->axis[pl->on_Y].scale; - zoom *= aspect_x / aspect_y; - - pl->axis[pl->on_Y].offset *= zoom; - pl->axis[pl->on_Y].offset += (1. - zoom) / 2.; - pl->axis[pl->on_Y].scale *= zoom; - } - - pl->axis[pl->on_X].lock_scale = LOCK_FREE; - pl->axis[pl->on_Y].lock_scale = LOCK_FREE; - - pl->axis[pl->on_X].lock_tick = 0; - pl->axis[pl->on_Y].lock_tick = 0; -} - -static void -plotAxisGridPairwiseAlign(plot_t *pl, int aN, int bN) -{ - double scale, offset; - - if (pl->axis[aN].slave != 0) - return ; - - if (aN != bN) { - - scale = pl->axis[bN].ruler_tih / pl->axis[aN].ruler_tih; - offset = pl->axis[bN].ruler_tis - pl->axis[aN].ruler_tis; - - pl->axis[aN].scale *= scale; - pl->axis[aN].offset = pl->axis[aN].offset * scale - + offset - pl->axis[aN].ruler_tis * (scale - 1.); - - pl->axis[aN].lock_scale = LOCK_FREE; - pl->axis[aN].lock_tick = 0; - } -} - -void plotAxisScaleGridAlign(plot_t *pl) -{ - int aN; - - if (pl->on_X < 0 || pl->on_Y < 0) - return ; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - plotAxisGridPairwiseAlign(pl, aN, pl->on_X); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - plotAxisGridPairwiseAlign(pl, aN, pl->on_Y); - } - } - - pl->axis[pl->on_X].lock_scale = LOCK_FREE; - pl->axis[pl->on_Y].lock_scale = LOCK_FREE; - - pl->axis[pl->on_X].lock_tick = 0; - pl->axis[pl->on_Y].lock_tick = 0; -} - -void plotAxisScaleGridLock(plot_t *pl, int aN) -{ - double scale, offset, ymin, ymax, fmin, fmax; - int bN; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - scale = pl->axis[aN].scale; - offset = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale *= pl->axis[bN].scale; - offset = offset * pl->axis[bN].scale + pl->axis[bN].offset; - } - - ymin = - offset / scale; - ymax = 1. / scale + ymin; - - if (plotAxisRangeCond(pl, aN, -1, &fmin, &fmax) != 0) { - - if (fmin == fmax) { - - fmin += (double) - 1.; - fmax += (double) + 1.; - } - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - fmin = plotAxisConvBackward(pl, aN, plotAxisConvForward(pl, aN, fmin) - pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, plotAxisConvForward(pl, aN, fmax) + pl->layout_mark_size); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - fmin = plotAxisConvBackward(pl, aN, plotAxisConvForward(pl, aN, fmin) + pl->layout_mark_size); - fmax = plotAxisConvBackward(pl, aN, plotAxisConvForward(pl, aN, fmax) - pl->layout_mark_size); - } - - ymin = (ymin < fmin) ? (fmin < ymax) ? fmin : ymax : ymin; - ymax = (ymax > fmax) ? (fmax > ymin) ? fmax : ymin : ymax; - } - - pl->axis[aN].lock_tick = 1; - - pl->axis[aN].ruler_min = ymin; - pl->axis[aN].ruler_max = ymax; -} - -typedef struct { - - int aN; - double yval; - - double fmin; - double fmax; -} -yaxis_t; - -static int -plotAxisGetSorted(plot_t *pl, int bN, yaxis_t *map) -{ - int aN, N, job, cond, yN = 0; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if ( pl->axis[aN].busy == AXIS_BUSY_Y - && pl->axis[aN].slave == 0) { - - job = 0; - - if (bN >= 0) { - - job = 1; - } - else if (pl->axis[aN].lock_scale == LOCK_STACKED) { - - job = 1; - } - - if (job != 0) { - - cond = plotAxisRangeCond(pl, aN, -1, &map[yN].fmin, - &map[yN].fmax); - - if (cond != 0) { - - map[yN].aN = aN; - map[yN].yval = plotAxisConvForward(pl, aN, - (map[yN].fmin + map[yN].fmax) / 2.); - - yN++; - } - } - } - } - - do { - yaxis_t ybackup; - - job = 0; - - for (N = 1; N < yN; ++N) { - - if (map[N - 1].yval < map[N].yval) { - - memcpy(&ybackup, &map[N - 1], sizeof(yaxis_t)); - memcpy(&map[N - 1], &map[N], sizeof(yaxis_t)); - memcpy(&map[N], &ybackup, sizeof(yaxis_t)); - - job = 1; - } - } - } - while (job != 0); - - return yN; -} - -void plotAxisScaleStacked(plot_t *pl, int bN) -{ - double scale, offset, ypad, yself; - int aN, yN, N; - - yaxis_t ymap[PLOT_AXES_MAX]; - - yN = plotAxisGetSorted(pl, bN, ymap); - - if (yN >= 2) { - - scale = 1. / (double) yN; - offset = 0.; - - for (N = 0; N < yN; ++N) { - - aN = ymap[N].aN; - - if (ymap[N].fmin == ymap[N].fmax) { - - ymap[N].fmin += (double) - 1.; - ymap[N].fmax += (double) + 1.; - } - - ypad = (double) pl->layout_mark_size / (double) - (pl->viewport.max_y - pl->viewport.min_y); - - ypad *= (ymap[N].fmax - ymap[N].fmin) / (scale - ypad * 2.); - - ymap[N].fmin += (double) - ypad; - ymap[N].fmax += (double) + ypad; - - yself = ymap[N].fmin / (ymap[N].fmax - ymap[N].fmin); - - pl->axis[aN].scale = scale / (ymap[N].fmax - ymap[N].fmin); - pl->axis[aN].offset = offset - yself * scale; - - pl->axis[aN].lock_scale = LOCK_STACKED; - pl->axis[aN].lock_tick = 1; - - pl->axis[aN].ruler_min = ymap[N].fmin; - pl->axis[aN].ruler_max = ymap[N].fmax; - - offset += scale; - } - } - else { - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (pl->axis[N].lock_scale == LOCK_STACKED) - pl->axis[N].lock_scale = LOCK_FREE; - } - } -} - -int plotAxisGetByClick(plot_t *pl, int cur_X, int cur_Y) -{ - int aN, len, rN = -1; - - cur_X = pl->viewport.min_x - pl->layout_border - cur_X; - cur_Y = cur_Y - pl->viewport.max_y - pl->layout_border; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - len = pl->layout_axis_box; - len += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - - if ( cur_Y < pl->axis[aN].layout_pos + len - && cur_Y > pl->axis[aN].layout_pos) { - - rN = aN; - break; - } - } - - if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - len = pl->layout_axis_box; - len += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - - if ( cur_X < pl->axis[aN].layout_pos + len - && cur_X > pl->axis[aN].layout_pos) { - - rN = aN; - break; - } - } - } - - pl->hover_axis = rN; - - return rN; -} - -double plotAxisConvForward(plot_t *pl, int aN, double fval) -{ - double scale, offset, temp; - int bN; - - scale = pl->axis[aN].scale; - offset = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale *= pl->axis[bN].scale; - offset = offset * pl->axis[bN].scale + pl->axis[bN].offset; - } - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - temp = (double) (pl->viewport.max_x - pl->viewport.min_x); - scale *= temp; - offset = offset * temp + pl->viewport.min_x; - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - temp = (double) (pl->viewport.min_y - pl->viewport.max_y); - scale *= temp; - offset = offset * temp + pl->viewport.max_y; - } - - return fval * scale + offset; -} - -double plotAxisConvBackward(plot_t *pl, int aN, double xval) -{ - double scale, offset, temp; - int bN; - - scale = pl->axis[aN].scale; - offset = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale *= pl->axis[bN].scale; - offset = offset * pl->axis[bN].scale + pl->axis[bN].offset; - } - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - temp = (double) (pl->viewport.max_x - pl->viewport.min_x); - scale *= temp; - offset = offset * temp + pl->viewport.min_x; - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - temp = (double) (pl->viewport.min_y - pl->viewport.max_y); - scale *= temp; - offset = offset * temp + pl->viewport.max_y; - } - - return (xval - offset) / scale; -} - -void plotAxisSlave(plot_t *pl, int aN, int bN, double scale, double offset, int action) -{ - int N, base = 0; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Slave axis number is out of range\n"); - return ; - } - - if (action == AXIS_SLAVE_DISABLE) { - - bN = pl->axis[aN].slave_N; - } - - if (bN < 0 || bN >= PLOT_AXES_MAX) { - - ERROR("Base axis number is out of range\n"); - return ; - } - - if (bN == aN) { - - ERROR("Axes must not be the same\n"); - return ; - } - - if (pl->axis[bN].slave != 0) { - - ERROR("Base axis must not be slave\n"); - return ; - } - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (pl->axis[N].busy != AXIS_FREE - && pl->axis[N].slave != 0) { - - if (pl->axis[N].slave_N == aN) { - - base = 1; - break; - } - } - } - - if (base) { - - ERROR("The axis is base for another slave\n"); - return ; - } - - if (action == AXIS_SLAVE_ENABLE) { - - if (pl->axis[aN].slave == 0) { - - pl->axis[aN].slave = 1; - pl->axis[aN].slave_N = bN; - pl->axis[aN].scale = scale; - pl->axis[aN].offset = offset; - - pl->on_X = (aN == pl->on_X) ? bN : pl->on_X; - pl->on_Y = (aN == pl->on_Y) ? bN : pl->on_Y; - } - } - else if (action == AXIS_SLAVE_HOLD_AS_IS) { - - if (bN < 0 || bN >= PLOT_AXES_MAX) { - - ERROR("Base axis number is out of range\n"); - return ; - } - - if (pl->axis[aN].slave == 0) { - - pl->axis[aN].slave = 1; - pl->axis[aN].slave_N = bN; - - pl->axis[aN].scale = pl->axis[aN].scale / pl->axis[bN].scale; - pl->axis[aN].offset = (pl->axis[aN].offset - pl->axis[bN].offset) - / pl->axis[bN].scale; - - pl->on_X = (aN == pl->on_X) ? bN : pl->on_X; - pl->on_Y = (aN == pl->on_Y) ? bN : pl->on_Y; - } - } - else { - if (pl->axis[aN].slave != 0) { - - pl->axis[aN].slave = 0; - - pl->axis[aN].scale = pl->axis[aN].scale * pl->axis[bN].scale; - pl->axis[aN].offset = pl->axis[aN].offset * pl->axis[bN].scale - + pl->axis[bN].offset; - } - } -} - -void plotAxisRemove(plot_t *pl, int aN) -{ - int N, cN; - - if (aN < 0 || aN >= PLOT_AXES_MAX) { - - ERROR("Axis number is out of range\n"); - return ; - } - - if (aN == pl->on_X || aN == pl->on_Y) { - - ERROR("Unable to remove active axis\n"); - return ; - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - if (pl->figure[N].axis_X == aN) { - - if (pl->axis[aN].slave != 0) { - - cN = plotGetSubtractScale(pl, pl->figure[N].data_N, - pl->figure[N].column_X, - pl->axis[aN].scale, - pl->axis[aN].offset); - - if (cN != -1) { - - pl->figure[N].column_X = cN; - } - - pl->figure[N].axis_X = pl->axis[aN].slave_N; - } - else { - pl->figure[N].axis_X = pl->on_X; - } - } - - if (pl->figure[N].axis_Y == aN) { - - if (pl->axis[aN].slave != 0) { - - cN = plotGetSubtractScale(pl, pl->figure[N].data_N, - pl->figure[N].column_Y, - pl->axis[aN].scale, - pl->axis[aN].offset); - - if (cN != -1) { - - pl->figure[N].column_Y = cN; - } - - pl->figure[N].axis_Y = pl->axis[aN].slave_N; - } - else { - pl->figure[N].axis_Y = pl->on_Y; - } - } - } - } - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (pl->axis[N].busy != AXIS_FREE - && pl->axis[N].slave != 0) { - - if (pl->axis[N].slave_N == aN) { - - plotAxisSlave(pl, N, -1, 0., 0., AXIS_SLAVE_DISABLE); - } - } - } - - pl->axis[aN].busy = AXIS_FREE; - pl->axis[aN].slave = 0; - pl->axis[aN].label[0] = 0; - pl->axis[aN].compact = 1; - pl->axis[aN].exponential = 0; -} - -void plotFigureAdd(plot_t *pl, int fN, int dN, int nX, int nY, int aX, int aY, const char *label) -{ - int gN; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (pl->data[dN].column_N < 1) { - - ERROR("Dataset %i has no DATA\n", dN); - return ; - } - - if (nX < -1 || nX >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("X column number %i is out of range\n", nX); - return ; - } - - if (nY < -1 || nY >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Y column number %i is out of range\n", nY); - return ; - } - - if (aX < 0 || aX >= PLOT_AXES_MAX) { - - ERROR("X axis number %i is out of range\n", aX); - return ; - } - - if (aY < 0 || aY >= PLOT_AXES_MAX) { - - ERROR("Y axis number %i is out of range\n", aY); - return ; - } - - if (aX == aY || pl->axis[aX].busy == AXIS_BUSY_Y - || pl->axis[aY].busy == AXIS_BUSY_X) { - - ERROR("Invalid axes mapping %i %i\n", aX, aY); - return ; - } - - pl->draw[fN].sketch = SKETCH_FINISHED; - - pl->figure[fN].busy = 1; - pl->figure[fN].hidden = 0; - pl->figure[fN].drawing = pl->default_drawing; - pl->figure[fN].width = pl->default_width; - pl->figure[fN].data_N = dN; - pl->figure[fN].column_X = nX; - pl->figure[fN].column_Y = nY; - pl->figure[fN].axis_X = aX; - pl->figure[fN].axis_Y = aY; - - if (pl->axis[aX].busy == AXIS_FREE) { - - pl->axis[aX].busy = AXIS_BUSY_X; - pl->axis[aX].lock_scale = LOCK_AUTO; - pl->axis[aX].compact = 1; - } - - if (pl->axis[aY].busy == AXIS_FREE) { - - pl->axis[aY].busy = AXIS_BUSY_Y; - pl->axis[aY].lock_scale = LOCK_AUTO; - pl->axis[aY].compact = 1; - } - - gN = pl->data[dN].map[nX]; - - if (gN != -1) { - - plotAxisLabel(pl, aX, pl->group[gN].label); - } - - gN = pl->data[dN].map[nY]; - - if (gN != -1) { - - plotAxisLabel(pl, aY, pl->group[gN].label); - } - - strcpy(pl->figure[fN].label, label); - - pl->on_X = (pl->on_X < 0) ? aX : pl->on_X; - pl->on_Y = (pl->on_Y < 0) ? aY : pl->on_Y; -} - -static void -plotDataBoxTextFmt(plot_t *pl, int fN, double val) -{ - char tfmt[PLOT_STRING_MAX]; - char tbuf[PLOT_STRING_MAX]; - - int fexp = 1; - - if (val != 0.) { - - fexp += (int) floor(log10(fabs(val))); - } - - if (fexp >= -2 && fexp < pl->fprecision) { - - fexp = (fexp < 1) ? 1 : fexp; - - sprintf(tfmt, "%% .%df ", pl->fprecision - fexp); - } - else { - sprintf(tfmt, "%% .%dE ", pl->fprecision - 1); - } - - sprintf(tbuf, tfmt, val); - strcat(pl->data_box_text[fN], tbuf); -} - -static void -plotDataBoxTextHex(plot_t *pl, int fN, double val) -{ - char tbuf[PLOT_STRING_MAX]; - - sprintf(tbuf, " 0x%08lX", (unsigned long) val); - strcat(pl->data_box_text[fN], tbuf); -} - -static int -plotCheckColumnLinked(plot_t *pl, int dN, int cN) -{ - int sN, fN, dNf, linked = 0; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if (pl->data[dN].sub[sN].busy == SUBTRACT_TIME_MEDIAN) { - - if (cN == pl->data[dN].sub[sN].op.median.column_1) { - - linked = 1; - break; - } - } - else if (pl->data[dN].sub[sN].busy == SUBTRACT_DATA_MEDIAN) { - - if (cN == pl->data[dN].sub[sN].op.median.column_2) { - - linked = 1; - break; - } - } - else if (pl->data[dN].sub[sN].busy == SUBTRACT_SCALE) { - - if (cN == pl->data[dN].sub[sN].op.scale.column_1) { - - linked = 1; - break; - } - } - else if (pl->data[dN].sub[sN].busy == SUBTRACT_RESAMPLE) { - - if (cN == pl->data[dN].sub[sN].op.resample.column_X) { - - linked = 1; - break; - } - } - else if (pl->data[dN].sub[sN].busy == SUBTRACT_POLYFIT) { - - if ( cN == pl->data[dN].sub[sN].op.polyfit.column_X - || cN == pl->data[dN].sub[sN].op.polyfit.column_Y) { - - linked = 1; - break; - } - } - else if ( pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_SUBTRACTION - || pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_ADDITION - || pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_MULTIPLICATION - || pl->data[dN].sub[sN].busy == SUBTRACT_BINARY_HYPOTENUSE) { - - if ( cN == pl->data[dN].sub[sN].op.binary.column_1 - || cN == pl->data[dN].sub[sN].op.binary.column_2) { - - linked = 1; - break; - } - } - else if ( pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_DIFFERENCE - || pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_CUMULATIVE - || pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_BITMASK - || pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_LOW_PASS) { - - if (cN == pl->data[dN].sub[sN].op.filter.column_1) { - - linked = 1; - break; - } - } - else if (pl->data[dN].sub[sN].busy == SUBTRACT_FILTER_MEDIAN) { - - if (cN == pl->data[dN].sub[sN].op.median.column_1) { - - linked = 1; - break; - } - } - } - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - if ( cN == pl->figure[fN].column_X - || cN == pl->figure[fN].column_Y) { - - linked = 1; - break; - } - - dNf = pl->figure[fN].data_N; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if (pl->data[dNf].sub[sN].busy == SUBTRACT_RESAMPLE) { - - if ( dN == pl->data[dNf].sub[sN].op.resample.in_data_N - && cN == pl->data[dNf].sub[sN].op.resample.in_column_X) { - - linked = 1; - break; - } - else if ( dN == pl->data[dNf].sub[sN].op.resample.in_data_N - && cN == pl->data[dNf].sub[sN].op.resample.in_column_Y) { - - linked = 1; - break; - } - } - } - - if (linked != 0) - break; - } - } - - return linked; -} - -static void -plotSubtractGarbage(plot_t *pl, int dN) -{ - int sN, cN, N; - - do { - N = 0; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if (pl->data[dN].sub[sN].busy != SUBTRACT_FREE) { - - cN = sN + pl->data[dN].column_N; - - if (plotCheckColumnLinked(pl, dN, cN) == 0) { - - pl->data[dN].sub[sN].busy = SUBTRACT_FREE; - - N++; - } - } - } - } - while (N != 0); -} - -void plotFigureRemove(plot_t *pl, int fN) -{ - int N, aN, rX = 1, rY = 1; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0 && N != fN) { - - if (pl->figure[N].axis_X == pl->figure[fN].axis_X) - rX = 0; - - if (pl->figure[N].axis_Y == pl->figure[fN].axis_Y) - rY = 0; - } - } - - pl->figure[fN].busy = 0; - - if (rX != 0) { - - aN = pl->figure[fN].axis_X; - - if (pl->on_X == aN) { - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (N != aN && pl->axis[N].busy == AXIS_BUSY_X - && pl->axis[N].slave == 0) { - - pl->on_X = N; - break; - } - } - } - - if (pl->on_X != aN) { - - plotAxisRemove(pl, aN); - } - } - - if (rY != 0) { - - aN = pl->figure[fN].axis_Y; - - if (pl->on_Y == aN) { - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (N != aN && pl->axis[N].busy == AXIS_BUSY_Y - && pl->axis[N].slave == 0) { - - pl->on_Y = N; - break; - } - } - } - - if (pl->on_Y != aN) { - - plotAxisRemove(pl, aN); - } - } - - plotSubtractGarbage(pl, pl->figure[fN].data_N); -} - -void plotFigureGarbage(plot_t *pl, int dN) -{ - int fN; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].data_N == dN) { - - plotFigureRemove(pl, fN); - } - } -} - -void plotFigureMoveAxes(plot_t *pl, int fN) -{ - int N, aN, rX = 1, rY = 1; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - if (pl->on_X < 0 || pl->on_X >= PLOT_AXES_MAX) - return ; - - if (pl->on_Y < 0 || pl->on_Y >= PLOT_AXES_MAX) - return ; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0 && N != fN) { - - if (pl->figure[N].axis_X == pl->figure[fN].axis_X) - rX = 0; - - if (pl->figure[N].axis_Y == pl->figure[fN].axis_Y) - rY = 0; - } - } - - if (pl->figure[fN].axis_X != pl->on_X) { - - aN = pl->figure[fN].axis_X; - pl->figure[fN].axis_X = pl->on_X; - - if (rX != 0) { - - plotAxisRemove(pl, aN); - } - } - - if (pl->figure[fN].axis_Y != pl->on_Y) { - - aN = pl->figure[fN].axis_Y; - pl->figure[fN].axis_Y = pl->on_Y; - - if (rY != 0) { - - plotAxisRemove(pl, aN); - } - } -} - -static int -plotGetFreeAxis(plot_t *pl) -{ - int N, aN = -1; - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (pl->axis[N].busy == AXIS_FREE) { - - aN = N; - break; - } - } - - return aN; -} - -void plotFigureMakeIndividualAxes(plot_t *pl, int fN) -{ - int N, aN, rX = 1, rY = 1; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0 && N != fN) { - - if (pl->figure[N].axis_X == pl->figure[fN].axis_X) - rX = 0; - - if (pl->figure[N].axis_Y == pl->figure[fN].axis_Y) - rY = 0; - } - } - - if (rX == 0) { - - aN = plotGetFreeAxis(pl); - - if (aN != -1) { - - N = pl->figure[fN].axis_X; - - pl->axis[aN].busy = AXIS_BUSY_X; - pl->figure[fN].axis_X = aN; - - plotAxisScaleAuto(pl, aN); - plotAxisLabel(pl, aN, pl->axis[N].label); - } - else { - ERROR("Unable to get free axis on X\n"); - return ; - } - } - - if (rY == 0) { - - aN = plotGetFreeAxis(pl); - - if (aN != -1) { - - N = pl->figure[fN].axis_Y; - - pl->axis[aN].busy = AXIS_BUSY_Y; - pl->figure[fN].axis_Y = aN; - - plotAxisScaleAuto(pl, aN); - plotAxisLabel(pl, aN, pl->axis[N].label); - } - else { - ERROR("Unable to get free axis on Y\n"); - return ; - } - } -} - -void plotFigureExchange(plot_t *pl, int fN, int fN_1) -{ - char backup[sizeof(pl->figure[0])]; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - if (fN_1 < 0 || fN_1 >= PLOT_FIGURE_MAX) { - - ERROR("Figure number (exchange) is out of range\n"); - return ; - } - - memcpy(backup, &pl->figure[fN_1], sizeof(pl->figure[0])); - memcpy(&pl->figure[fN_1], &pl->figure[fN], sizeof(pl->figure[0])); - memcpy(&pl->figure[fN], backup, sizeof(pl->figure[0])); -} - -int plotFigureSelected(plot_t *pl) -{ - int fN, N = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - N++; - } - } - - return N; -} - -int plotFigureAnyData(plot_t *pl) -{ - int fN, dN = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - dN = pl->figure[fN].data_N; - break; - } - } - - return dN; -} - -static int -plotGetSubtractTimeMedianByMatch(plot_t *pl, int dN, int cNX, int length, int unwrap) -{ - int sN, rN = -1; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if ( pl->data[dN].sub[sN].busy == SUBTRACT_TIME_MEDIAN - && pl->data[dN].sub[sN].op.median.column_1 == cNX - && pl->data[dN].sub[sN].op.median.length == length - && pl->data[dN].sub[sN].op.median.unwrap == unwrap) { - - rN = sN; - break; - } - } - - return rN; -} - -static int -plotGetSubtractScaleByMatch(plot_t *pl, int dN, int cN, double scale, double offset) -{ - int sN, rN = -1; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if (pl->data[dN].sub[sN].busy == SUBTRACT_SCALE - && pl->data[dN].sub[sN].op.scale.column_1 == cN - && pl->data[dN].sub[sN].op.scale.scale == scale - && pl->data[dN].sub[sN].op.scale.offset == offset) { - - rN = sN; - break; - } - } - - return rN; -} - -static int -plotGetFreeSubtract(plot_t *pl, int dN) -{ - int sN, rN = -1; - - for (sN = 0; sN < PLOT_SUBTRACT; ++sN) { - - if (pl->data[dN].sub[sN].busy == 0) { - - rN = sN; - break; - } - } - - return rN; -} - -tuple_t plotGetSubtractTimeMedian(plot_t *pl, int dN, int cNX, int cNY, - int length, int unwrap, int opdata) -{ - tuple_t uN = { -1, -1 }; - int sNX, sNY; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return uN; - } - - if (length < 1 || length > PLOT_MEDIAN_MAX) { - - ERROR("Median length %i is out of range\n", length); - return uN; - } - - sNX = plotGetSubtractTimeMedianByMatch(pl, dN, cNX, length, unwrap); - - if (sNX < 0) { - - sNX = plotGetFreeSubtract(pl, dN); - - if (sNX < 0) { - - ERROR("Unable to get free subtract\n"); - return uN; - } - - pl->data[dN].sub[sNX].busy = SUBTRACT_TIME_MEDIAN; - pl->data[dN].sub[sNX].op.median.column_1 = cNX; - pl->data[dN].sub[sNX].op.median.length = length; - pl->data[dN].sub[sNX].op.median.unwrap = unwrap; - pl->data[dN].sub[sNX].op.median.opdata = 0; - } - - sNY = plotGetFreeSubtract(pl, dN); - - if (sNY < 0) { - - ERROR("Unable to get free subtract\n"); - return uN; - } - - pl->data[dN].sub[sNY].busy = SUBTRACT_DATA_MEDIAN; - pl->data[dN].sub[sNY].op.median.column_1 = cNX; - pl->data[dN].sub[sNY].op.median.column_2 = cNY; - pl->data[dN].sub[sNY].op.median.column_3 = sNX + pl->data[dN].column_N; - pl->data[dN].sub[sNY].op.median.length = length; - pl->data[dN].sub[sNY].op.median.unwrap = unwrap; - pl->data[dN].sub[sNY].op.median.opdata = opdata; - - plotDataSubtractCompute(pl, dN, sNY); - - uN.X = sNX + pl->data[dN].column_N; - uN.Y = sNY + pl->data[dN].column_N; - - return uN; -} - -int plotGetSubtractScale(plot_t *pl, int dN, int cN, double scale, double offset) -{ - int sN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - sN = plotGetSubtractScaleByMatch(pl, dN, cN, scale, offset); - - if (sN < 0) { - - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return -1; - } - - pl->data[dN].sub[sN].busy = SUBTRACT_SCALE; - pl->data[dN].sub[sN].op.scale.column_1 = cN; - pl->data[dN].sub[sN].op.scale.scale = scale; - pl->data[dN].sub[sN].op.scale.offset = offset; - - plotDataSubtractCompute(pl, dN, sN); - } - - cN = sN + pl->data[dN].column_N; - - return cN; -} - -int plotGetSubtractResample(plot_t *pl, int dN, int cNX, int in_dN, int in_cNX, int in_cNY) -{ - int sN, cN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return -1; - } - - pl->data[dN].sub[sN].busy = SUBTRACT_RESAMPLE; - pl->data[dN].sub[sN].op.resample.column_X = cNX; - pl->data[dN].sub[sN].op.resample.in_data_N = in_dN; - pl->data[dN].sub[sN].op.resample.in_column_X = in_cNX; - pl->data[dN].sub[sN].op.resample.in_column_Y = in_cNY; - - plotDataSubtractCompute(pl, dN, sN); - - cN = sN + pl->data[dN].column_N; - - return cN; -} - -int plotGetSubtractBinary(plot_t *pl, int dN, int opSUB, int cN1, int cN2) -{ - int sN, cN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - if (cN1 < -1 || cN1 >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN1); - return -1; - } - - if (cN2 < -1 || cN2 >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN2); - return -1; - } - - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return -1; - } - - pl->data[dN].sub[sN].busy = opSUB; - pl->data[dN].sub[sN].op.binary.column_1 = cN1; - pl->data[dN].sub[sN].op.binary.column_2 = cN2; - - plotDataSubtractCompute(pl, dN, sN); - - cN = sN + pl->data[dN].column_N; - - return cN; -} - -int plotGetSubtractFilter(plot_t *pl, int dN, int cN, int opSUB, double gain) -{ - int sN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - if (cN < -1 || cN >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN); - return -1; - } - - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return -1; - } - - pl->data[dN].sub[sN].busy = opSUB; - pl->data[dN].sub[sN].op.filter.column_1 = cN; - pl->data[dN].sub[sN].op.filter.gain = gain; - - plotDataSubtractCompute(pl, dN, sN); - - cN = sN + pl->data[dN].column_N; - - return cN; -} - -int plotGetSubtractMedian(plot_t *pl, int dN, int cN, int opSUB, int length) -{ - int sN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - if (cN < -1 || cN >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN); - return -1; - } - - if (length < 1 || length > PLOT_MEDIAN_MAX) { - - ERROR("Median length %i is out of range\n", length); - return -1; - } - - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return -1; - } - - pl->data[dN].sub[sN].busy = opSUB; - pl->data[dN].sub[sN].op.median.column_1 = cN; - pl->data[dN].sub[sN].op.median.length = length; - pl->data[dN].sub[sN].op.median.unwrap = 0; - pl->data[dN].sub[sN].op.median.opdata = 0; - - plotDataSubtractCompute(pl, dN, sN); - - cN = sN + pl->data[dN].column_N; - - return cN; -} - -int plotGetFreeFigure(plot_t *pl) -{ - int N, fN = -1; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy == 0) { - - fN = N; - break; - } - } - - return fN; -} - -int plotFigureSubtractGetMedianConfig(plot_t *pl, int fN, int config[3]) -{ - int dN, cN, sN; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return -1; - } - - dN = pl->figure[fN].data_N; - cN = pl->figure[fN].column_Y; - - sN = cN - pl->data[dN].column_N; - - if ( sN >= 0 && sN < PLOT_SUBTRACT - && pl->data[dN].sub[sN].busy == SUBTRACT_DATA_MEDIAN) { - - config[0] = pl->data[dN].sub[sN].op.median.length; - config[1] = pl->data[dN].sub[sN].op.median.unwrap; - config[2] = pl->data[dN].sub[sN].op.median.opdata; - - return sN; - } - - return -1; -} - -void plotFigureSubtractTimeMedian(plot_t *pl, int fN, int length, int unwrap, int opdata) -{ - tuple_t uN; - int dN, cNX, cNY, sN; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - dN = pl->figure[fN].data_N; - cNX = pl->figure[fN].column_X; - cNY = pl->figure[fN].column_Y; - - if (length < 1) { - - sN = cNY - pl->data[dN].column_N; - - if ( sN >= 0 && sN < PLOT_SUBTRACT - && pl->data[dN].sub[sN].busy == SUBTRACT_DATA_MEDIAN) { - - cNX = pl->data[dN].sub[sN].op.median.column_1; - cNY = pl->data[dN].sub[sN].op.median.column_2; - - pl->figure[fN].column_X = cNX; - pl->figure[fN].column_Y = cNY; - - plotSubtractGarbage(pl, dN); - } - } - else { - sN = cNY - pl->data[dN].column_N; - - if ( sN >= 0 && sN < PLOT_SUBTRACT - && pl->data[dN].sub[sN].busy == SUBTRACT_DATA_MEDIAN) { - - if ( pl->data[dN].sub[sN].op.median.length != length - || pl->data[dN].sub[sN].op.median.unwrap != unwrap - || pl->data[dN].sub[sN].op.median.opdata != opdata) { - - cNX = pl->data[dN].sub[sN].op.median.column_1; - cNY = pl->data[dN].sub[sN].op.median.column_2; - - pl->figure[fN].column_X = cNX; - pl->figure[fN].column_Y = cNY; - - plotSubtractGarbage(pl, dN); - - uN = plotGetSubtractTimeMedian(pl, dN, cNX, cNY, length, unwrap, opdata); - - if (uN.X != -1) { - - pl->figure[fN].column_X = uN.X; - pl->figure[fN].column_Y = uN.Y; - } - } - } - else { - uN = plotGetSubtractTimeMedian(pl, dN, cNX, cNY, length, unwrap, opdata); - - if (uN.X != -1) { - - pl->figure[fN].column_X = uN.X; - pl->figure[fN].column_Y = uN.Y; - } - } - } -} - -void plotFigureSubtractScale(plot_t *pl, int fN, int aBUSY, double scale, double offset) -{ - int dN, cN; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - dN = pl->figure[fN].data_N; - - if (aBUSY == AXIS_BUSY_X) { - - cN = plotGetSubtractScale(pl, dN, pl->figure[fN].column_X, scale, offset); - - if (cN != -1) { - - pl->figure[fN].column_X = cN; - } - } - else if (aBUSY == AXIS_BUSY_Y) { - - cN = plotGetSubtractScale(pl, dN, pl->figure[fN].column_Y, scale, offset); - - if (cN != -1) { - - pl->figure[fN].column_Y = cN; - } - } -} - -static int -plotFigureSubtractAdd(plot_t *pl, int fN, int fN_1, int fN_2, int opSUB) -{ - const char *label_1, *label_2, *delim; - int dN, aNX, aNY, cNX, cNY; - - dN = pl->figure[fN_1].data_N; - - cNX = pl->figure[fN_1].column_X; - aNX = pl->figure[fN_1].axis_X; - - if (aNX != pl->figure[fN_2].axis_X) { - - ERROR("Both figures must be on the same axis on X\n"); - return 0; - } - - if ( dN != pl->figure[fN_2].data_N - || cNX != pl->figure[fN_2].column_X) { - - cNY = plotGetSubtractResample(pl, dN, cNX, - pl->figure[fN_2].data_N, - pl->figure[fN_2].column_X, - pl->figure[fN_2].column_Y); - - if (cNY < 0) { - - ERROR("Unable to get resample subtract\n"); - return 0; - } - } - else { - cNY = pl->figure[fN_2].column_Y; - } - - cNY = plotGetSubtractBinary(pl, dN, opSUB, pl->figure[fN_1].column_Y, cNY); - - if (cNY < 0) { - - return 0; - } - - aNY = plotGetFreeAxis(pl); - - if (aNY != -1) { - - pl->axis[aNY].busy = AXIS_BUSY_Y; - plotAxisLabel(pl, aNY, pl->axis[pl->figure[fN_1].axis_Y].label); - } - else { - aNY = pl->figure[fN_1].axis_Y; - } - - plotFigureAdd(pl, fN, dN, cNX, cNY, aNX, aNY, ""); - - label_1 = pl->figure[fN_1].label; - label_2 = pl->figure[fN_2].label; - - delim = strrchr(label_1, ' '); - label_1 = (delim != NULL) ? delim + 1 : label_1; - - delim = strrchr(label_2, ' '); - label_2 = (delim != NULL) ? delim + 1 : label_2; - - if (opSUB == SUBTRACT_BINARY_SUBTRACTION) { - - sprintf(pl->figure[fN].label, "R: %.35s - %.35s", label_1, label_2); - } - else if (opSUB == SUBTRACT_BINARY_ADDITION) { - - sprintf(pl->figure[fN].label, "A: %.35s + %.35s", label_1, label_2); - } - else if (opSUB == SUBTRACT_BINARY_MULTIPLICATION) { - - sprintf(pl->figure[fN].label, "X: %.35s * %.35s", label_1, label_2); - } - else if (opSUB == SUBTRACT_BINARY_HYPOTENUSE) { - - sprintf(pl->figure[fN].label, "H: %.35s ~ %.35s", label_1, label_2); - } - - pl->figure[fN].drawing = pl->figure[fN_1].drawing; - pl->figure[fN].width = pl->figure[fN_1].width; - - return AXIS_BUSY_Y; -} - -void plotFigureSubtractFilter(plot_t *pl, int fN_1, int opSUB, double gain) -{ - int fN, dN, cN, aN; - - if (fN_1 < 0 || fN_1 >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - dN = pl->figure[fN_1].data_N; - cN = pl->figure[fN_1].column_Y; - - fN = plotGetFreeFigure(pl); - - if (fN < 0) { - - ERROR("Unable to get free figure to subtract\n"); - return ; - } - - if (opSUB == SUBTRACT_FILTER_MEDIAN) { - - cN = plotGetSubtractMedian(pl, dN, cN, opSUB, (int) gain); - } - else { - cN = plotGetSubtractFilter(pl, dN, cN, opSUB, gain); - } - - if (cN < 0) { - - return ; - } - - if ( opSUB == SUBTRACT_FILTER_LOW_PASS - || opSUB == SUBTRACT_FILTER_MEDIAN) { - - aN = pl->figure[fN_1].axis_Y; - } - else { - aN = plotGetFreeAxis(pl); - - if (aN != -1) { - - pl->axis[aN].busy = AXIS_BUSY_Y; - plotAxisLabel(pl, aN, pl->axis[pl->figure[fN_1].axis_Y].label); - } - else { - aN = pl->figure[fN_1].axis_Y; - } - } - - plotFigureAdd(pl, fN, dN, pl->figure[fN_1].column_X, cN, - pl->figure[fN_1].axis_X, aN, ""); - - if (opSUB == SUBTRACT_FILTER_DIFFERENCE) { - - sprintf(pl->figure[fN].label, "D: %.75s", pl->figure[fN_1].label); - } - else if (opSUB == SUBTRACT_FILTER_CUMULATIVE) { - - sprintf(pl->figure[fN].label, "C: %.75s", pl->figure[fN_1].label); - } - else if (opSUB == SUBTRACT_FILTER_BITMASK) { - - int bf[2] = { 0, (int) gain }; - - bf[0] = bf[1] & 0xFFU; - bf[1] = bf[1] >> 8; - - if (bf[0] == bf[1]) { - - sprintf(pl->figure[fN].label, "B(%d): %.75s", - (int) bf[0], pl->figure[fN_1].label); - } - else { - sprintf(pl->figure[fN].label, "B(%d-%d): %.75s", - (int) bf[0], (int) bf[1], pl->figure[fN_1].label); - } - } - else if (opSUB == SUBTRACT_FILTER_LOW_PASS) { - - sprintf(pl->figure[fN].label, "L(%.2E): %.75s", - gain, pl->figure[fN_1].label); - } - else if (opSUB == SUBTRACT_FILTER_MEDIAN) { - - sprintf(pl->figure[fN].label, "M(%d): %.75s", - (int) gain, pl->figure[fN_1].label); - } - - pl->figure[fN].drawing = pl->figure[fN_1].drawing; - pl->figure[fN].width = pl->figure[fN_1].width; - - if (opSUB == SUBTRACT_FILTER_LOW_PASS) { - - /* Do nothing */ - } - else { - plotAxisScaleAutoCond(pl, pl->figure[fN].axis_Y, pl->figure[fN].axis_X); - - pl->on_X = pl->figure[fN].axis_X; - pl->on_Y = pl->figure[fN].axis_Y; - - if (pl->axis[pl->on_X].slave != 0) { - - pl->on_X = pl->axis[pl->on_X].slave_N; - } - - if (pl->axis[pl->on_Y].slave != 0) { - - pl->on_Y = pl->axis[pl->on_Y].slave_N; - } - } -} - -static void -plotFigureSubtractBinaryLinked(plot_t *pl, int fN, int opSUB, int fNP[2]) -{ - int dN, dN1, sN, sE, cN, cN1, fN_1, fN_2; - - dN = pl->figure[fN].data_N; - sN = pl->figure[fN].column_Y - pl->data[dN].column_N; - - fN_1 = -1; - fN_2 = -1; - - if ( sN >= 0 && sN < PLOT_SUBTRACT - && pl->data[dN].sub[sN].busy == opSUB) { - - cN = pl->data[dN].sub[sN].op.binary.column_1; - sE = cN - pl->data[dN].column_N; - - dN1 = dN; - cN1 = cN; - - if ( sE >= 0 && sE < PLOT_SUBTRACT - && pl->data[dN].sub[sE].busy == SUBTRACT_RESAMPLE) { - - dN1 = pl->data[dN].sub[sE].op.resample.in_data_N; - cN1 = pl->data[dN].sub[sE].op.resample.in_column_Y; - } - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - if ( dN == pl->figure[fN].data_N - && cN == pl->figure[fN].column_Y) { - - fN_1 = fN; - break; - } - - if ( dN1 == pl->figure[fN].data_N - && cN1 == pl->figure[fN].column_Y) { - - fN_1 = fN; - break; - } - } - } - - cN = pl->data[dN].sub[sN].op.binary.column_2; - sE = cN - pl->data[dN].column_N; - - dN1 = dN; - cN1 = cN; - - if ( sE >= 0 && sE < PLOT_SUBTRACT - && pl->data[dN].sub[sE].busy == SUBTRACT_RESAMPLE) { - - dN1 = pl->data[dN].sub[sE].op.resample.in_data_N; - cN1 = pl->data[dN].sub[sE].op.resample.in_column_Y; - } - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - if ( dN == pl->figure[fN].data_N - && cN == pl->figure[fN].column_Y) { - - fN_2 = fN; - break; - } - - if ( dN1 == pl->figure[fN].data_N - && cN1 == pl->figure[fN].column_Y) { - - fN_2 = fN; - break; - } - } - } - } - - fNP[0] = fN_1; - fNP[1] = fN_2; -} - -void plotFigureSubtractSwitch(plot_t *pl, int opSUB) -{ - int fN, fN_1, fN_2, fNQ[2], rBUSY, N = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) { - - if (N < 2) { - - fNQ[N] = fN; - } - - N++; - } - } - - if (N == 1) { - - fN = fNQ[0]; - - plotFigureSubtractBinaryLinked(pl, fN, opSUB, fNQ); - - fN_1 = fNQ[0]; - fN_2 = fNQ[1]; - - if (fN_1 != -1 && fN_2 != -1) { - - pl->figure[fN].hidden = 1; - - pl->figure[fN_1].hidden = 0; - pl->figure[fN_2].hidden = 0; - - pl->on_X = pl->figure[fN_1].axis_X; - pl->on_Y = pl->figure[fN_1].axis_Y; - } - } - else if (N == 2) { - - fN_1 = fNQ[0]; - fN_2 = fNQ[1]; - - fN = -1; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - plotFigureSubtractBinaryLinked(pl, N, opSUB, fNQ); - - if (fNQ[0] == fN_1 && fNQ[1] == fN_2) { - - fN = N; - break; - } - - if (fNQ[0] == fN_2 && fNQ[1] == fN_1) { - - fN = N; - break; - } - } - } - - if (fN != -1) { - - pl->figure[fN].hidden = 0; - - pl->figure[fN_1].hidden = 1; - pl->figure[fN_2].hidden = 1; - - if ( pl->figure[fN].axis_X == pl->figure[fN_1].axis_X - && pl->figure[fN].axis_X == pl->figure[fN_2].axis_X) { - - plotAxisScaleAutoCond(pl, pl->figure[fN].axis_Y, - pl->figure[fN].axis_X); - } - else if ( pl->figure[fN].axis_Y == pl->figure[fN_1].axis_Y - && pl->figure[fN].axis_Y == pl->figure[fN_2].axis_Y) { - - plotAxisScaleAutoCond(pl, pl->figure[fN].axis_X, - pl->figure[fN].axis_Y); - } - - pl->on_X = pl->figure[fN].axis_X; - pl->on_Y = pl->figure[fN].axis_Y; - } - else { - fN = plotGetFreeFigure(pl); - - if (fN < 0) { - - ERROR("Unable to get free figure to subtract\n"); - return ; - } - - rBUSY = plotFigureSubtractAdd(pl, fN, fN_1, fN_2, opSUB); - - if (rBUSY != 0) { - - pl->figure[fN_1].hidden = 1; - pl->figure[fN_2].hidden = 1; - - if (rBUSY == AXIS_BUSY_X) { - - plotAxisScaleAutoCond(pl, pl->figure[fN].axis_X, - pl->figure[fN].axis_Y); - } - else if (rBUSY == AXIS_BUSY_Y) { - - plotAxisScaleAutoCond(pl, pl->figure[fN].axis_Y, - pl->figure[fN].axis_X); - } - else { - plotAxisScaleAuto(pl, pl->figure[fN].axis_X); - plotAxisScaleAuto(pl, pl->figure[fN].axis_Y); - } - - pl->on_X = pl->figure[fN].axis_X; - pl->on_Y = pl->figure[fN].axis_Y; - } - } - } - - if (pl->axis[pl->on_X].slave != 0) { - - pl->on_X = pl->axis[pl->on_X].slave_N; - } - - if (pl->axis[pl->on_Y].slave != 0) { - - pl->on_Y = pl->axis[pl->on_Y].slave_N; - } -} - -void plotFigureSubtractResample(plot_t *pl, int fN) -{ - int N, dN, aN, cNX, cNY; - - dN = pl->figure[fN].data_N; - aN = pl->figure[fN].axis_X; - cNX = pl->figure[fN].column_X; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if ( pl->figure[N].busy != 0 - && pl->figure[N].hidden == 0 - && N != fN) { - - if (aN != pl->figure[N].axis_X) { - - ERROR("All figures must be on the same axis on X\n"); - return ; - } - } - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if ( pl->figure[N].busy != 0 - && pl->figure[N].hidden == 0 - && N != fN) { - - if ( dN != pl->figure[N].data_N - || cNX != pl->figure[N].column_X) { - - cNY = plotGetSubtractResample(pl, dN, cNX, - pl->figure[N].data_N, - pl->figure[N].column_X, - pl->figure[N].column_Y); - - if (cNY < 0) { - - ERROR("Unable to get resample subtract\n"); - return ; - } - - pl->figure[N].data_N = dN; - pl->figure[N].column_X = cNX; - pl->figure[N].column_Y = cNY; - } - } - } -} - -int plotDataBoxPolyfit(plot_t *pl, int fN) -{ - int N, dN, sN, N0, N1; - double *coefs, std; - - if (fN < 0 || fN >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return 0; - } - - dN = pl->figure[fN].data_N; - sN = pl->figure[fN].column_Y - pl->data[dN].column_N; - - if (sN < 0 || sN >= PLOT_SUBTRACT) { - - return 0; - } - else if (pl->data[dN].sub[sN].busy != SUBTRACT_POLYFIT) { - - return 0; - } - - N0 = pl->data[dN].sub[sN].op.polyfit.poly_N0; - N1 = pl->data[dN].sub[sN].op.polyfit.poly_N1; - - coefs = pl->data[dN].sub[sN].op.polyfit.coefs; - std = pl->data[dN].sub[sN].op.polyfit.std; - - for (N = 0; N < PLOT_DATA_BOX_MAX; ++N) { - - pl->data_box_text[N][0] = 0; - - if (N == 0 && N1 == 0) { - - sprintf(pl->data_box_text[N], " [%i] = ", N); - plotDataBoxTextFmt(pl, N, coefs[N]); - } - else if (N < N1 - N0 + 1) { - - char sfmt[PLOT_STRING_MAX]; - - sprintf(sfmt, " [%%i] = %% .%iE ", pl->fprecision - 1); - sprintf(pl->data_box_text[N], sfmt, N + N0, coefs[N]); - } - else if (N == N1 - N0 + 1) { - - sprintf(pl->data_box_text[N], " STD = "); - plotDataBoxTextFmt(pl, N, std); - } - } - - if (pl->data_box_on != DATA_BOX_POLYFIT) { - - pl->data_box_on = DATA_BOX_POLYFIT; - pl->data_box_X = pl->viewport.max_x; - pl->data_box_Y = 0; - } - - return 1; -} - -void plotFigureSubtractPolyfit(plot_t *pl, int fN_1, int N0, int N1) -{ - int N, fN, dN, sN, cN, aN, bN; - double scale_X, offset_X, scale_Y, offset_Y; - - if (fN_1 < 0 || fN_1 >= PLOT_FIGURE_MAX) { - - ERROR("Figure number is out of range\n"); - return ; - } - - if (N0 < 0 || N0 > N1) { - - ERROR("Polynomial base %i is out of range\n", N0); - return ; - } - - if (N1 < 0 || N1 > PLOT_POLYFIT_MAX) { - - ERROR("Polynomial degree %i is out of range\n", N1); - return ; - } - - fN = plotGetFreeFigure(pl); - - if (fN < 0) { - - ERROR("Unable to get free figure to subtract\n"); - return ; - } - - dN = pl->figure[fN_1].data_N; - sN = plotGetFreeSubtract(pl, dN); - - if (sN < 0) { - - ERROR("Unable to get free subtract\n"); - return ; - } - - aN = pl->figure[fN_1].axis_X; - - scale_X = pl->axis[aN].scale; - offset_X = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_X *= pl->axis[bN].scale; - offset_X = offset_X * pl->axis[bN].scale + pl->axis[bN].offset; - } - - aN = pl->figure[fN_1].axis_Y; - - scale_Y = pl->axis[aN].scale; - offset_Y = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_Y *= pl->axis[bN].scale; - offset_Y = offset_X * pl->axis[bN].scale + pl->axis[bN].offset; - } - - plotDataPolyfit(pl, dN, pl->figure[fN_1].column_X, pl->figure[fN_1].column_Y, - scale_X, offset_X, scale_Y, offset_Y, N0, N1); - - pl->data[dN].sub[sN].busy = SUBTRACT_POLYFIT; - pl->data[dN].sub[sN].op.polyfit.column_X = pl->figure[fN_1].column_X; - pl->data[dN].sub[sN].op.polyfit.column_Y = pl->figure[fN_1].column_Y; - pl->data[dN].sub[sN].op.polyfit.poly_N0 = N0; - pl->data[dN].sub[sN].op.polyfit.poly_N1 = N1; - - for (N = 0; N < N1 - N0 + 1; ++N) { - - pl->data[dN].sub[sN].op.polyfit.coefs[N] = pl->lsq.sol.m[N]; - } - - pl->data[dN].sub[sN].op.polyfit.std = pl->lsq.std.m[0]; - - plotDataSubtractCompute(pl, dN, sN); - - cN = sN + pl->data[dN].column_N; - aN = pl->figure[fN_1].axis_Y; - - plotFigureAdd(pl, fN, dN, pl->figure[fN_1].column_X, cN, - pl->figure[fN_1].axis_X, aN, ""); - - sprintf(pl->figure[fN].label, "P: %.75s", pl->figure[fN_1].label); - - pl->figure[fN].drawing = pl->figure[fN_1].drawing; - pl->figure[fN].width = pl->figure[fN_1].width; - - plotDataBoxPolyfit(pl, fN); -} - -static void -plotLabelFusedCSV(plot_t *pl, char *label, const char *name, const char *unit) -{ - const read_t *rd = (const read_t *) pl->ld; - - const char *s; - char *l = label; - int n; - - s = strrchr(name, ' '); - s = (s != NULL) ? s + 1 : name; - n = 0; - - while (*s != 0) { - - if (*s == '@') - break; - - *l++ = (strchr(rd->mk_text.space, *s) == NULL) ? *s : '_'; - - ++s; - ++n; - - if (n >= 50) - break; - } - - s = unit; - n = 0; - - if (*s != 0) { - - *l++ = '@'; - } - - while (*s != 0) { - - if (*s == '@') - break; - - *l++ = (strchr(rd->mk_text.space, *s) == NULL) ? *s : '_'; - - ++s; - ++n; - - if (n >= 20) - break; - } - - *l = 0; -} - -void plotFigureExportCSV(plot_t *pl, const char *file) -{ - int list_dN[16], list_cN[16], list_fN[16]; - int N, fN, aN, job, len_N = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - job = 1; - - for (N = 0; N < len_N; ++N) { - - if ( list_dN[N] == pl->figure[fN].data_N - && list_cN[N] == pl->figure[fN].column_X) { - - job = 0; - break; - } - } - - if (job != 0) { - - list_dN[len_N] = pl->figure[fN].data_N; - list_cN[len_N] = pl->figure[fN].column_X; - list_fN[len_N] = fN; - - len_N++; - } - - job = 1; - - for (N = 0; N < len_N; ++N) { - - if ( list_dN[N] == pl->figure[fN].data_N - && list_cN[N] == pl->figure[fN].column_Y) { - - job = 0; - break; - } - } - - if (job != 0) { - - list_dN[len_N] = pl->figure[fN].data_N; - list_cN[len_N] = pl->figure[fN].column_Y; - list_fN[len_N] = fN; - - len_N++; - } - } - } - - if (len_N >= 2) { - - const read_t *rd = (const read_t *) pl->ld; - FILE *fd_csv; - - char labelbuf[PLOT_STRING_MAX]; - - fd_csv = unified_fopen(file, "w"); - - if (fd_csv == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - return ; - } - - for (N = 0; N < len_N; ++N) { - - fN = list_fN[N]; - - if (list_cN[N] == pl->figure[fN].column_X) { - - aN = pl->figure[fN].axis_X; - - plotLabelFusedCSV(pl, labelbuf, "time", - pl->axis[aN].label); - } - else { - aN = pl->figure[fN].axis_Y; - - plotLabelFusedCSV(pl, labelbuf, - pl->figure[fN].label, - pl->axis[aN].label); - } - -#ifdef _WINDOWS - if (rd->legacy_label == 1) { - - legacy_UTF8_to_ACP(labelbuf, labelbuf, sizeof(labelbuf)); - } - else if (rd->legacy_label == 2) { - - legacy_UTF8_to_OEM(labelbuf, labelbuf, sizeof(labelbuf)); - } -#endif /* _WINDOWS */ - - fprintf(fd_csv, "%s%c", labelbuf, rd->mk_text.space[0]); - } - - fprintf(fd_csv, "\n"); - - plotDataFileCSV(pl, list_dN, list_cN, len_N, fd_csv); - - fclose(fd_csv); - } -} - -void plotFigureClean(plot_t *pl) -{ - int N; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - pl->figure[N].busy = 0; - pl->figure[N].hidden = 0; - pl->figure[N].label[0] = 0; - } - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - pl->axis[N].busy = AXIS_FREE; - pl->axis[N].slave = 0; - pl->axis[N].label[0] = 0; - pl->axis[N].compact = 1; - pl->axis[N].exponential = 0; - } - - pl->legend_X = 0; - pl->legend_Y = 0; - - pl->data_box_on = DATA_BOX_FREE; - pl->data_box_X = pl->viewport.max_x; - pl->data_box_Y = 0; - - pl->slice_on = 0; - pl->slice_mode_N = 0; - - pl->on_X = -1; - pl->on_Y = -1; - - pl->hover_figure = -1; - pl->hover_legend = -1; - pl->hover_data_box = -1; - pl->hover_axis = -1; - - pl->mark_on = 0; - - plotSketchClean(pl); -} - -static void -plotMarkLayout(plot_t *pl) -{ - const fval_t *row; - double shuffle, total, scale, offset, fval_X, fval_Y; - int fN, vN, aN, bN, cX, cY, cZ, N, id_N, fMAX = 0; - - const int ltdense[PLOT_FIGURE_MAX] = { - - 250, 353, 433, 500, 559, 612, 661, 707 /* 250 * sqrt(N) */ - }; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - fMAX++; - } - } - - if (fMAX == 0) - return ; - - pl->layout_mark_size = pl->layout_font_height * pl->mark_size / 200; - pl->layout_mark_size = (pl->layout_mark_size < 1) ? 1 : pl->layout_mark_size; - - pl->mark_count = (pl->viewport.max_x - pl->viewport.min_x) - * pl->mark_density / (pl->layout_mark_size * ltdense[fMAX - 1]); - - pl->mark_count = (pl->mark_count > PLOT_MARK_MAX) ? PLOT_MARK_MAX - : (pl->mark_count < 4) ? 4 : pl->mark_count; - - shuffle = (double) (SDL_GetTicks() % 100) / (double) (pl->mark_count * 100); - total = (double) (pl->mark_count * fMAX); - - for (fN = 0, vN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - aN = pl->figure[fN].axis_X; - cZ = pl->figure[fN].column_X; - - scale = pl->axis[aN].scale; - offset = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - - scale *= pl->axis[bN].scale; - offset = offset * pl->axis[bN].scale - + pl->axis[bN].offset; - } - - for (N = 0; N < pl->mark_count; ++N) { - - fval_X = shuffle + (double) (N * fMAX + vN) / total; - fval_X = (fval_X > 1.) ? fval_X - 1. : fval_X; - - fval_X = (fval_X - offset) / scale; - - row = plotDataSliceGet(pl, pl->figure[fN].data_N, - cZ, fval_X, &id_N); - - if (row != NULL) { - - cX = pl->figure[fN].column_X; - cY = pl->figure[fN].column_Y; - - fval_X = (cX < 0) ? id_N : row[cX]; - fval_Y = (cY < 0) ? id_N : row[cY]; - - pl->figure[fN].mark_X[N] = fval_X; - pl->figure[fN].mark_Y[N] = fval_Y; - } - else { - pl->figure[fN].mark_X[N] = FP_NAN; - pl->figure[fN].mark_Y[N] = FP_NAN; - } - } - - vN++; - } - } -} - -static void -plotMarkDraw(plot_t *pl, SDL_Surface *surface) -{ - double X, Y, scale_X, scale_Y, offset_X, offset_Y; - int N, fN, aN, bN, fwidth; - - int ncolor; - - SDL_LockSurface(surface); - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if ( pl->figure[fN].busy != 0 - && pl->figure[fN].hidden == 0) { - - ncolor = (pl->figure[fN].hidden != 0) ? 9 : fN + 1; - - fwidth = pl->figure[fN].width; - fwidth = (fwidth < 1) ? 1 : fwidth; - - aN = pl->figure[fN].axis_X; - scale_X = pl->axis[aN].scale; - offset_X = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - - scale_X *= pl->axis[bN].scale; - offset_X = offset_X * pl->axis[bN].scale - + pl->axis[bN].offset; - } - - aN = pl->figure[fN].axis_Y; - scale_Y = pl->axis[aN].scale; - offset_Y = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - - scale_Y *= pl->axis[bN].scale; - offset_Y = offset_Y * pl->axis[bN].scale - + pl->axis[bN].offset; - } - - X = (double) (pl->viewport.max_x - pl->viewport.min_x); - Y = (double) (pl->viewport.min_y - pl->viewport.max_y); - - scale_X *= X; - offset_X = offset_X * X + pl->viewport.min_x; - scale_Y *= Y; - offset_Y = offset_Y * Y + pl->viewport.max_y; - - for (N = 0; N < pl->mark_count; ++N) { - - X = pl->figure[fN].mark_X[N] * scale_X + offset_X; - Y = pl->figure[fN].mark_Y[N] * scale_Y + offset_Y; - - if (fp_isfinite(X) && fp_isfinite(Y)) { - - drawMarkCanvas(pl->dw, surface, &pl->viewport, X, Y, - pl->layout_mark_size, fN, ncolor, fwidth); - } - } - } - } - - SDL_UnlockSurface(surface); -} - -void plotGroupAdd(plot_t *pl, int dN, int gN, int cN) -{ - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (gN < 0 || gN >= PLOT_GROUP_MAX) { - - ERROR("Group number is out of range\n"); - return ; - } - - if (cN < -1 || cN >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN); - return ; - } - - pl->data[dN].map[cN] = gN; -} - -void plotGroupLabel(plot_t *pl, int gN, const char *label) -{ - if (gN < 0 || gN >= PLOT_GROUP_MAX) { - - ERROR("Group number is out of range\n"); - return ; - } - - if (label[0] != 0) { - - strcpy(pl->group[gN].label, label); - } -} - -void plotGroupMedian(plot_t *pl, int gN, int length, int unwrap, int opdata) -{ - if (gN < 0 || gN >= PLOT_GROUP_MAX) { - - ERROR("Group number is out of range\n"); - return ; - } - - pl->group[gN].op_time_median = (length >= 1) ? 1 : 0; - pl->group[gN].op_time_unwrap = (unwrap != 0) ? 1 : 0; - pl->group[gN].op_time_opdata = (opdata != 0) ? 1 : 0; - - pl->group[gN].length = length; -} - -void plotGroupScale(plot_t *pl, int gN, int knob, double scale, double offset) -{ - if (gN < 0 || gN >= PLOT_GROUP_MAX) { - - ERROR("Group number is out of range\n"); - return ; - } - - pl->group[gN].op_scale = (knob != 0) ? 1 : 0; - - pl->group[gN].scale = scale; - pl->group[gN].offset = offset; -} - -void plotSliceSwitch(plot_t *pl) -{ - int fN; - - if (pl->slice_mode_N == 0) { - - pl->slice_mode_N = 1; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].slice_busy != 0) { - - pl->figure[fN].slice_base_X = pl->figure[fN].slice_X; - pl->figure[fN].slice_base_Y = pl->figure[fN].slice_Y; - } - } - } - else if (pl->slice_mode_N == 1) { - - pl->slice_mode_N = 2; - } - else if (pl->slice_mode_N == 2) { - - pl->slice_mode_N = 0; - } -} - -void plotSliceTrack(plot_t *pl, int cur_X, int cur_Y) -{ - const fval_t *row = NULL; - double fval_X, fval_Y; - int fN, aN, bN, dN, cX, cY, id_N; - int dN_s, aN_s, cX_s, job; - - if (pl->slice_mode_N == 2) - return ; - - if (pl->slice_axis_N < 0) { - - pl->slice_axis_N = pl->on_X; - } - - if (pl->slice_axis_N < 0) { - - ERROR("No valid axis number to slice\n"); - return ; - } - - dN_s = -1; - aN_s = -1; - cX_s = -1; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - pl->figure[fN].slice_busy = 0; - - job = 0; - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) { - - aN = pl->slice_axis_N; - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - if (pl->figure[fN].axis_X == aN) { - - job = 1; - } - else { - bN = pl->figure[fN].axis_X; - - if (pl->axis[bN].slave != 0) { - - if (pl->axis[bN].slave_N == aN) - job = 1; - } - else if (pl->axis[aN].slave != 0) { - - if (pl->axis[aN].slave_N == bN) - job = 1; - } - } - - aN = pl->figure[fN].axis_X; - cX = pl->figure[fN].column_X; - - fval_X = plotAxisConvBackward(pl, aN, cur_X); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - if (pl->figure[fN].axis_Y == aN) { - - job = 1; - } - else { - bN = pl->figure[fN].axis_Y; - - if (pl->axis[bN].slave != 0) { - - if (pl->axis[bN].slave_N == aN) - job = 1; - } - else if (pl->axis[aN].slave != 0) { - - if (pl->axis[aN].slave_N == bN) - job = 1; - } - } - - aN = pl->figure[fN].axis_Y; - cX = pl->figure[fN].column_Y; - - fval_X = plotAxisConvBackward(pl, aN, cur_Y); - } - } - - if (job) { - - dN = pl->figure[fN].data_N; - - if (dN_s != dN || aN_s != aN || cX_s != cX) { - - row = plotDataSliceGet(pl, dN, cX, - fval_X, &id_N); - - dN_s = dN; - aN_s = aN; - cX_s = cX; - } - - if (row != NULL) { - - cX = pl->figure[fN].column_X; - cY = pl->figure[fN].column_Y; - - fval_X = (cX < 0) ? id_N : row[cX]; - fval_Y = (cY < 0) ? id_N : row[cY]; - - pl->figure[fN].slice_busy = 1; - pl->figure[fN].slice_X = fval_X; - pl->figure[fN].slice_Y = fval_Y; - } - } - } - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - pl->data_box_text[fN][0] = 0; - - if (pl->figure[fN].slice_busy != 0) { - - const read_t *rd = (const read_t *) pl->ld; - - if (pl->slice_mode_N != 0) { - - fval_X = pl->figure[fN].slice_base_X; - fval_Y = pl->figure[fN].slice_base_Y; - - strcat(pl->data_box_text[fN], " \xCE\x94"); - plotDataBoxTextFmt(pl, fN, pl->figure[fN].slice_X - fval_X); - - strcat(pl->data_box_text[fN], "\xCE\x94"); - plotDataBoxTextFmt(pl, fN, pl->figure[fN].slice_Y - fval_Y); - } - else { - plotDataBoxTextFmt(pl, fN, pl->figure[fN].slice_X); - - dN = pl->figure[fN].data_N; - cY = pl->figure[fN].column_Y; - - if ( rd->data[dN].hint[cY] == DATA_HINT_HEX - || rd->data[dN].hint[cY] == DATA_HINT_OCT) { - - plotDataBoxTextHex(pl, fN, pl->figure[fN].slice_Y); - } - else { - plotDataBoxTextFmt(pl, fN, pl->figure[fN].slice_Y); - } - } - } - } - - if (pl->data_box_on != DATA_BOX_SLICE) { - - pl->data_box_on = DATA_BOX_SLICE; - pl->data_box_X = pl->viewport.max_x; - pl->data_box_Y = 0; - } -} - -static void -plotSliceLightDraw(plot_t *pl, SDL_Surface *surface) -{ - double base_X, base_Y, data_X, data_Y, temp; - int fN, aN, bN; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].slice_busy != 0) { - - aN = pl->figure[fN].axis_X; - bN = pl->figure[fN].axis_Y; - - base_X = plotAxisConvForward(pl, aN, pl->figure[fN].slice_base_X); - base_Y = plotAxisConvForward(pl, bN, pl->figure[fN].slice_base_Y); - - data_X = plotAxisConvForward(pl, aN, pl->figure[fN].slice_X); - data_Y = plotAxisConvForward(pl, bN, pl->figure[fN].slice_Y); - - if (data_X < base_X) { - - temp = base_X; - base_X = data_X; - data_X = temp; - } - - if (data_Y < base_Y) { - - temp = base_Y; - base_Y = data_Y; - data_Y = temp; - } - - SDL_LockSurface(surface); - - if (pl->axis[pl->slice_axis_N].busy == AXIS_BUSY_X) { - - if (fp_isfinite(base_X) && fp_isfinite(data_X)) { - - drawClipRect(surface, &pl->viewport, - base_X, pl->viewport.min_y, - data_X, pl->viewport.max_y, - pl->sch->plot_hidden); - } - } - else if (pl->axis[pl->slice_axis_N].busy == AXIS_BUSY_Y) { - - if (fp_isfinite(base_Y) && fp_isfinite(data_Y)) { - - drawClipRect(surface, &pl->viewport, - pl->viewport.min_x, base_Y, - pl->viewport.max_x, data_Y, - pl->sch->plot_hidden); - } - } - - SDL_UnlockSurface(surface); - } - } -} - -static void -plotSliceDraw(plot_t *pl, SDL_Surface *surface) -{ - double base_X, base_Y, data_X, data_Y; - int fN, aN, bN; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].slice_busy != 0) { - - aN = pl->figure[fN].axis_X; - bN = pl->figure[fN].axis_Y; - - if (pl->slice_mode_N != 0) { - - base_X = plotAxisConvForward(pl, aN, pl->figure[fN].slice_base_X); - base_Y = plotAxisConvForward(pl, bN, pl->figure[fN].slice_base_Y); - } - - data_X = plotAxisConvForward(pl, aN, pl->figure[fN].slice_X); - data_Y = plotAxisConvForward(pl, bN, pl->figure[fN].slice_Y); - - SDL_LockSurface(surface); - - if (pl->axis[pl->slice_axis_N].busy == AXIS_BUSY_X) { - - if (pl->slice_mode_N != 0) { - - if (fp_isfinite(base_X)) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->viewport, - base_X, pl->viewport.min_y, - base_X, pl->viewport.max_y, - pl->sch->plot_text, - pl->layout_fence_dash, - pl->layout_fence_space); - } - } - - if (fp_isfinite(data_X)) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->viewport, - data_X, pl->viewport.min_y, - data_X, pl->viewport.max_y, - pl->sch->plot_text, - pl->layout_fence_dash, - pl->layout_fence_space); - } - } - else if (pl->axis[pl->slice_axis_N].busy == AXIS_BUSY_Y) { - - if (pl->slice_mode_N != 0) { - - if (fp_isfinite(base_Y)) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->viewport, - pl->viewport.min_x, base_Y, - pl->viewport.max_x, base_Y, - pl->sch->plot_text, - pl->layout_fence_dash, - pl->layout_fence_space); - } - } - - if (fp_isfinite(data_Y)) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->viewport, - pl->viewport.min_x, data_Y, - pl->viewport.max_x, data_Y, - pl->sch->plot_text, - pl->layout_fence_dash, - pl->layout_fence_space); - } - } - - if (pl->slice_mode_N != 0) { - - if (fp_isfinite(base_X) && fp_isfinite(base_Y)) { - - drawDotCanvas(pl->dw, surface, &pl->viewport, - base_X, base_Y, - pl->layout_fence_point, 10, 0); - } - } - - if (fp_isfinite(data_X) && fp_isfinite(data_Y)) { - - drawDotCanvas(pl->dw, surface, &pl->viewport, - data_X, data_Y, - pl->layout_fence_point, 10, 0); - } - - SDL_UnlockSurface(surface); - } - } -} - -static void -plotSketchDataChunkSetUp(plot_t *pl, int fN) -{ - int hN; - - hN = pl->draw[fN].list_self; - - if (hN >= 0 && pl->sketch[hN].figure_N == fN - && pl->sketch[hN].drawing == pl->figure[fN].drawing - && pl->sketch[hN].width == pl->figure[fN].width - && pl->sketch[hN].length < PLOT_SKETCH_CHUNK_SIZE) { - - /* Keep using this chunk */ - } - else if (pl->sketch_list_garbage >= 0) { - - hN = pl->sketch_list_garbage; - pl->sketch_list_garbage = pl->sketch[hN].linked; - - pl->sketch[hN].figure_N = fN; - pl->sketch[hN].drawing = pl->figure[fN].drawing; - pl->sketch[hN].width = pl->figure[fN].width; - - if (pl->sketch[hN].chunk == NULL) { - - pl->sketch[hN].chunk = (double *) malloc(sizeof(double) * PLOT_SKETCH_CHUNK_SIZE); - - if (pl->sketch[hN].chunk == NULL) { - - ERROR("Unable to allocate memory of %i sketch chunk\n", hN); - } - } - - pl->sketch[hN].length = 0; - - if (pl->draw[fN].list_self >= 0) { - - pl->sketch[hN].linked = pl->sketch[pl->draw[fN].list_self].linked; - pl->sketch[pl->draw[fN].list_self].linked = hN; - - if (pl->draw[fN].list_self == pl->sketch_list_current_end) - pl->sketch_list_current_end = hN; - } - else { - pl->sketch[hN].linked = -1; - - if (pl->sketch_list_current >= 0) { - - pl->sketch[pl->sketch_list_current_end].linked = hN; - pl->sketch_list_current_end = hN; - } - else { - pl->sketch_list_current = hN; - pl->sketch_list_current_end = hN; - } - } - - pl->draw[fN].list_self = hN; - } - else { - ERROR("Unable to get free sketch chunk\n"); - - pl->draw[fN].list_self = -1; - } -} - -static void -plotSketchDataAdd(plot_t *pl, int fN, double X, double Y) -{ - int hN, length; - - hN = pl->draw[fN].list_self; - - if (hN >= 0) { - - length = pl->sketch[hN].length; - - pl->sketch[hN].chunk[length++] = X; - pl->sketch[hN].chunk[length++] = Y; - - pl->sketch[hN].length = length; - - if (length >= PLOT_SKETCH_CHUNK_SIZE) { - - plotSketchDataChunkSetUp(pl, fN); - } - } -} - -static void -plotSketchGarbage(plot_t *pl) -{ - int N, hN, linked; - - hN = pl->sketch_list_todraw; - - while (hN >= 0) { - - linked = pl->sketch[hN].linked; - - pl->sketch[hN].linked = pl->sketch_list_garbage; - pl->sketch_list_garbage = hN; - - hN = linked; - } - - pl->sketch_list_todraw = pl->sketch_list_current; - pl->sketch_list_current = -1; - pl->sketch_list_current_end = -1; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) - pl->draw[N].list_self = -1; -} - -void plotSketchClean(plot_t *pl) -{ - int N, hN, linked; - - hN = pl->sketch_list_todraw; - - while (hN >= 0) { - - linked = pl->sketch[hN].linked; - - pl->sketch[hN].linked = pl->sketch_list_garbage; - pl->sketch_list_garbage = hN; - - hN = linked; - } - - hN = pl->sketch_list_current; - - while (hN >= 0) { - - linked = pl->sketch[hN].linked; - - pl->sketch[hN].linked = pl->sketch_list_garbage; - pl->sketch_list_garbage = hN; - - hN = linked; - } - - pl->sketch_list_todraw = -1; - pl->sketch_list_current = -1; - pl->sketch_list_current_end = -1; - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) - pl->draw[N].list_self = -1; - - pl->draw_in_progress = 0; -} - -static void -plotDrawPalette(plot_t *pl) -{ - draw_t *dw = pl->dw; - scheme_t *sch = pl->sch; - Uint32 *palette; - - palette = dw->palette; - - palette[0] = drawRGBMap(dw, sch->plot_background); - palette[1] = drawRGBMap(dw, sch->plot_figure[0]); - palette[2] = drawRGBMap(dw, sch->plot_figure[1]); - palette[3] = drawRGBMap(dw, sch->plot_figure[2]); - palette[4] = drawRGBMap(dw, sch->plot_figure[3]); - palette[5] = drawRGBMap(dw, sch->plot_figure[4]); - palette[6] = drawRGBMap(dw, sch->plot_figure[5]); - palette[7] = drawRGBMap(dw, sch->plot_figure[6]); - palette[8] = drawRGBMap(dw, sch->plot_figure[7]); - palette[9] = drawRGBMap(dw, sch->plot_hidden); - palette[10] = drawRGBMap(dw, sch->plot_text); -} - -static int -plotGetTickCached(plot_t *pl) -{ - if (pl->tick_skip > 0) { - - pl->tick_skip--; - } - else { - pl->tick_cached = SDL_GetTicks(); - pl->tick_skip = 63; - } - - return pl->tick_cached; -} - -static void -plotDrawFigureTrial(plot_t *pl, int fN, int tTOP) -{ - const fval_t *row; - double scale_X, scale_Y, offset_X, offset_Y, im_MIN, im_MAX; - double X, Y, last_X, last_Y, im_X, im_Y, last_im_X, last_im_Y; - int dN, rN, xN, yN, xNR, yNR, aN, bN, id_N, id_N_top, kN, kN_cached; - int job, skipped, line, rc, ncolor, fdrawing, fwidth; - - ncolor = (pl->figure[fN].hidden != 0) ? 9 : fN + 1; - - fdrawing = pl->figure[fN].drawing; - fwidth = pl->figure[fN].width; - - dN = pl->figure[fN].data_N; - xN = pl->figure[fN].column_X; - yN = pl->figure[fN].column_Y; - - xNR = plotDataRangeCacheFetch(pl, dN, xN); - yNR = plotDataRangeCacheFetch(pl, dN, yN); - - aN = pl->figure[fN].axis_X; - scale_X = pl->axis[aN].scale; - offset_X = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_X *= pl->axis[bN].scale; - offset_X = offset_X * pl->axis[bN].scale + pl->axis[bN].offset; - } - - aN = pl->figure[fN].axis_Y; - scale_Y = pl->axis[aN].scale; - offset_Y = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_Y *= pl->axis[bN].scale; - offset_Y = offset_Y * pl->axis[bN].scale + pl->axis[bN].offset; - } - - X = (double) (pl->viewport.max_x - pl->viewport.min_x); - Y = (double) (pl->viewport.min_y - pl->viewport.max_y); - - scale_X *= X; - offset_X = offset_X * X + pl->viewport.min_x; - scale_Y *= Y; - offset_Y = offset_Y * Y + pl->viewport.max_y; - - rN = pl->draw[fN].rN; - id_N = pl->draw[fN].id_N; - - id_N_top = id_N + (1UL << pl->data[dN].chunk_SHIFT); - kN_cached = -1; - - plotSketchDataChunkSetUp(pl, fN); - - if ( fdrawing == FIGURE_DRAWING_LINE - || fdrawing == FIGURE_DRAWING_DASH) { - - skipped = pl->draw[fN].skipped; - line = pl->draw[fN].line; - - last_X = pl->draw[fN].last_X; - last_Y = pl->draw[fN].last_Y; - - last_im_X = last_X * scale_X + offset_X; - last_im_Y = last_Y * scale_Y + offset_Y; - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (kN != kN_cached) { - - if (xNR >= 0 && pl->rcache[xNR].chunk[kN].computed != 0) { - - if (pl->rcache[xNR].chunk[kN].finite != 0) { - - im_MIN = pl->rcache[xNR].chunk[kN].fmin * scale_X + offset_X; - im_MAX = pl->rcache[xNR].chunk[kN].fmax * scale_X + offset_X; - - job = ( im_MAX < pl->viewport.min_x - 16 - || im_MIN > pl->viewport.max_x + 16) ? 0 : job; - } - else { - job = 0; - } - } - - if (yNR >= 0 && pl->rcache[yNR].chunk[kN].computed != 0) { - - if (pl->rcache[yNR].chunk[kN].finite != 0) { - - im_MIN = pl->rcache[yNR].chunk[kN].fmin * scale_Y + offset_Y; - im_MAX = pl->rcache[yNR].chunk[kN].fmax * scale_Y + offset_Y; - - job = ( im_MIN < pl->viewport.min_y - 16 - || im_MAX > pl->viewport.max_y + 16) ? 0 : job; - } - else { - job = 0; - } - } - - kN_cached = kN; - } - - if (job != 0 || line != 0) { - - if (skipped != 0) { - - plotDataSkip(pl, dN, &rN, &id_N, -1); - - skipped = 0; - } - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) { - - pl->draw[fN].sketch = SKETCH_FINISHED; - break; - } - - X = (xN < 0) ? id_N : row[xN]; - Y = (yN < 0) ? id_N : row[yN]; - - im_X = X * scale_X + offset_X; - im_Y = Y * scale_Y + offset_Y; - - if (fp_isfinite(im_X) && fp_isfinite(im_Y)) { - - if (line != 0) { - - rc = drawLineTrial(pl->dw, &pl->viewport, - last_im_X, last_im_Y, im_X, im_Y, - ncolor, fwidth); - - if (rc != 0) { - - plotSketchDataAdd(pl, fN, last_X, last_Y); - plotSketchDataAdd(pl, fN, X, Y); - } - } - else { - line = 1; - } - - last_X = X; - last_Y = Y; - - last_im_X = im_X; - last_im_Y = im_Y; - } - else { - line = 0; - } - - id_N++; - } - - if (job == 0) { - - plotDataChunkSkip(pl, dN, &rN, &id_N); - - skipped = 1; - line = 0; - } - - if (id_N > id_N_top || plotGetTickCached(pl) > tTOP) { - - pl->draw[fN].sketch = SKETCH_INTERRUPTED; - pl->draw[fN].rN = rN; - pl->draw[fN].id_N = id_N; - pl->draw[fN].skipped = skipped; - pl->draw[fN].line = line; - pl->draw[fN].last_X = last_X; - pl->draw[fN].last_Y = last_Y; - break; - } - } - while (1); - } - else if (fdrawing == FIGURE_DRAWING_DOT) { - - do { - kN = plotDataChunkN(pl, dN, rN); - job = 1; - - if (kN != kN_cached) { - - if (xNR >= 0 && pl->rcache[xNR].chunk[kN].computed != 0) { - - if (pl->rcache[xNR].chunk[kN].finite != 0) { - - im_MIN = pl->rcache[xNR].chunk[kN].fmin * scale_X + offset_X; - im_MAX = pl->rcache[xNR].chunk[kN].fmax * scale_X + offset_X; - - job = ( im_MAX < pl->viewport.min_x - 16 - || im_MIN > pl->viewport.max_x + 16) ? 0 : job; - } - else { - job = 0; - } - } - - if (yNR >= 0 && pl->rcache[yNR].chunk[kN].computed != 0) { - - if (pl->rcache[yNR].chunk[kN].finite != 0) { - - im_MIN = pl->rcache[yNR].chunk[kN].fmin * scale_Y + offset_Y; - im_MAX = pl->rcache[yNR].chunk[kN].fmax * scale_Y + offset_Y; - - job = ( im_MIN < pl->viewport.min_y - 16 - || im_MAX > pl->viewport.max_y + 16) ? 0 : job; - } - else { - job = 0; - } - } - - kN_cached = kN; - } - - if (job != 0) { - - row = plotDataGet(pl, dN, &rN); - - if (row == NULL) { - - pl->draw[fN].sketch = SKETCH_FINISHED; - break; - } - - X = (xN < 0) ? id_N : row[xN]; - Y = (yN < 0) ? id_N : row[yN]; - - im_X = X * scale_X + offset_X; - im_Y = Y * scale_Y + offset_Y; - - if (fp_isfinite(im_X) && fp_isfinite(im_Y)) { - - rc = drawDotTrial(pl->dw, &pl->viewport, - im_X, im_Y, fwidth, - ncolor, 1); - - if (rc != 0) { - - plotSketchDataAdd(pl, fN, X, Y); - } - } - - id_N++; - } - - if (job == 0) { - - plotDataChunkSkip(pl, dN, &rN, &id_N); - } - - if (id_N > id_N_top || plotGetTickCached(pl) > tTOP) { - - pl->draw[fN].sketch = SKETCH_INTERRUPTED; - pl->draw[fN].rN = rN; - pl->draw[fN].id_N = id_N; - break; - } - } - while (1); - } -} - -int plotGetSketchLength(plot_t *pl) -{ - int hN, length = 0; - - hN = pl->sketch_list_todraw; - - while (hN >= 0) { - - length += pl->sketch[hN].length; - hN = pl->sketch[hN].linked; - } - - return length; -} - -static void -plotDrawSketch(plot_t *pl, SDL_Surface *surface) -{ - double scale_X, offset_X, scale_Y, offset_Y; - double X, Y, last_X, last_Y, *chunk, *lend; - int hN, fN, aN, bN; - - int fdrawing, fwidth, ncolor; - - hN = pl->sketch_list_todraw; - - drawDashReset(pl->dw); - - SDL_LockSurface(surface); - - while (hN >= 0) { - - fN = pl->sketch[hN].figure_N; - - ncolor = (pl->figure[fN].hidden != 0) ? 9 : fN + 1; - - fdrawing = pl->sketch[hN].drawing; - fwidth = pl->sketch[hN].width; - - aN = pl->figure[fN].axis_X; - scale_X = pl->axis[aN].scale; - offset_X = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_X *= pl->axis[bN].scale; - offset_X = offset_X * pl->axis[bN].scale + pl->axis[bN].offset; - } - - aN = pl->figure[fN].axis_Y; - scale_Y = pl->axis[aN].scale; - offset_Y = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale_Y *= pl->axis[bN].scale; - offset_Y = offset_Y * pl->axis[bN].scale + pl->axis[bN].offset; - } - - X = (double) (pl->viewport.max_x - pl->viewport.min_x); - Y = (double) (pl->viewport.min_y - pl->viewport.max_y); - - scale_X *= X; - offset_X = offset_X * X + pl->viewport.min_x; - scale_Y *= Y; - offset_Y = offset_Y * Y + pl->viewport.max_y; - - chunk = pl->sketch[hN].chunk; - lend = chunk + pl->sketch[hN].length; - - if (fdrawing == FIGURE_DRAWING_LINE) { - - while (chunk < lend) { - - X = *chunk++; - Y = *chunk++; - - last_X = X * scale_X + offset_X; - last_Y = Y * scale_Y + offset_Y; - - X = *chunk++; - Y = *chunk++; - - X = X * scale_X + offset_X; - Y = Y * scale_Y + offset_Y; - - drawLineCanvas(pl->dw, surface, &pl->viewport, - last_X, last_Y, X, Y, - ncolor, fwidth); - } - } - else if (fdrawing == FIGURE_DRAWING_DASH) { - - while (chunk < lend) { - - X = *chunk++; - Y = *chunk++; - - last_X = X * scale_X + offset_X; - last_Y = Y * scale_Y + offset_Y; - - X = *chunk++; - Y = *chunk++; - - X = X * scale_X + offset_X; - Y = Y * scale_Y + offset_Y; - - drawDashCanvas(pl->dw, surface, &pl->viewport, - last_X, last_Y, X, Y, - ncolor, fwidth, pl->layout_drawing_dash, - pl->layout_drawing_space); - } - } - else if (fdrawing == FIGURE_DRAWING_DOT) { - - while (chunk < lend) { - - X = *chunk++; - Y = *chunk++; - - X = X * scale_X + offset_X; - Y = Y * scale_Y + offset_Y; - - drawDotCanvas(pl->dw, surface, &pl->viewport, - X, Y, fwidth, - ncolor, 1); - } - } - - hN = pl->sketch[hN].linked; - } - - SDL_UnlockSurface(surface); -} - -static void -plotDrawAxis(plot_t *pl, SDL_Surface *surface, int aN) -{ - char numfmt[PLOT_STRING_MAX]; - char numbuf[PLOT_STRING_MAX]; - - double scale, offset, fmin, fmax, fpow, tih, tis, tik, la; - int fN, bN, texp, lpos, tpos, tdec, hovered; - - Uint32 axCol = pl->sch->plot_hidden; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) { - - if ( pl->figure[fN].axis_X == aN - || pl->figure[fN].axis_Y == aN) { - - if (axCol != pl->sch->plot_hidden) { - - axCol = pl->sch->plot_text; - } - else { - axCol = pl->sch->plot_figure[fN]; - } - } - } - } - - scale = pl->axis[aN].scale; - offset = pl->axis[aN].offset; - - if (pl->axis[aN].slave != 0) { - - bN = pl->axis[aN].slave_N; - scale *= pl->axis[bN].scale; - offset = offset * pl->axis[bN].scale + pl->axis[bN].offset; - } - - fmin = - offset / scale; - fmax = 1. / scale + fmin; - - if (pl->axis[aN].lock_tick != 0) { - - if ( pl->axis[aN].ruler_min > fmin - || pl->axis[aN].ruler_max < fmax) { - - fmin = pl->axis[aN].ruler_min; - fmax = pl->axis[aN].ruler_max; - } - } - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - la = (double) (pl->viewport.max_x - pl->viewport.min_x); - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - la = (double) (pl->viewport.max_y - pl->viewport.min_y); - } - - if (fmin < fmax) { - - texp = (int) ceil(log10((fmax - fmin) / 10.)); - tih = pow(10., (double) texp); - - if ((fmax - fmin) / tih < 2.) { - - tdec = (int) (tih * scale * la / 5.); - - if (tdec > pl->layout_font_height) { - - tih /= 5.; - texp--; - } - } - - if ((fmax - fmin) / tih < 4.) { - - tdec = (int) (tih * scale * la / 2.); - - if (tdec > pl->layout_font_height) { - - tih /= 2.; - texp--; - } - } - - tdec = (int) (tih * scale * la); - - if (tdec < pl->layout_font_height) { - - tih *= 2.; - } - - tis = floor(fmin / tih) * tih; - tis += (tis < fmin) ? tih : 0.; - tih = (tis + tih == tis) ? fmax - tis : tih; - } - else { - texp = 0; - tis = fmax; - tih = fmax; - } - - pl->axis[aN].ruler_tih = tih * scale; - pl->axis[aN].ruler_tis = tis * scale + offset; - - fpow = 1.; - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - la = (double) (pl->viewport.max_x - pl->viewport.min_x); - scale *= la; - offset = offset * la + pl->viewport.min_x; - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - la = (double) (pl->viewport.min_y - pl->viewport.max_y); - scale *= la; - offset = offset * la + pl->viewport.max_y; - } - - SDL_LockSurface(surface); - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - lpos = pl->viewport.max_y + pl->layout_border + pl->axis[aN].layout_pos; - hovered = (pl->hover_axis == aN) ? 1 : 0; - - if (pl->hover_figure != -1 && pl->shift_on != 0) { - - fN = pl->hover_figure; - - hovered = (pl->figure[fN].axis_X == aN) ? 1 : hovered; - hovered = (pl->figure[fN].axis_Y == aN) ? 1 : hovered; - } - - if (hovered != 0) { - - tdec = pl->layout_axis_box; - tdec += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - - drawFillRect(surface, pl->viewport.min_x, lpos, pl->viewport.max_x, - lpos + tdec, pl->sch->plot_hovered); - } - - drawLine(pl->dw, surface, &pl->screen, pl->viewport.min_x, lpos, - pl->viewport.max_x, lpos, pl->sch->plot_axis); - - for (tik = tis; tik < fmax; tik += tih) { - - tpos = (int) (tik * scale + offset); - - if (tpos < pl->viewport.min_x || tpos > pl->viewport.max_x) - continue ; - - drawLine(pl->dw, surface, &pl->screen, tpos, lpos, tpos, - lpos + pl->layout_tick_tooth, pl->sch->plot_axis); - - if ( pl->axis[aN].lock_tick != 0 - || pl->on_X == aN) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->screen, tpos, - pl->viewport.min_y, tpos, - pl->viewport.max_y, pl->sch->plot_axis, - pl->layout_grid_dash, pl->layout_grid_space); - } - } - - if (pl->on_X == aN) { - - drawLine(pl->dw, surface, &pl->screen, pl->viewport.min_x, - lpos + 1, pl->viewport.max_x, lpos + 1, - pl->sch->plot_axis); - } - - if (pl->axis[aN].slave != 0) { - - drawLine(pl->dw, surface, &pl->screen, pl->viewport.min_x, - lpos + pl->layout_tick_tooth, pl->viewport.max_x, - lpos + pl->layout_tick_tooth, pl->sch->plot_axis); - } - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - lpos = pl->viewport.min_x - pl->layout_border - pl->axis[aN].layout_pos; - hovered = (pl->hover_axis == aN) ? 1 : 0; - - if (pl->hover_figure != -1 && pl->shift_on != 0) { - - fN = pl->hover_figure; - - hovered = (pl->figure[fN].axis_X == aN) ? 1 : hovered; - hovered = (pl->figure[fN].axis_Y == aN) ? 1 : hovered; - } - - if (hovered != 0) { - - tdec = pl->layout_axis_box; - tdec += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - - drawFillRect(surface, lpos - tdec, pl->viewport.min_y, lpos, - pl->viewport.max_y, pl->sch->plot_hovered); - } - - drawLine(pl->dw, surface, &pl->screen, lpos, pl->viewport.min_y, - lpos, pl->viewport.max_y, pl->sch->plot_axis); - - for (tik = tis; tik < fmax; tik += tih) { - - tpos = (int) (tik * scale + offset); - - if (tpos < pl->viewport.min_y || tpos > pl->viewport.max_y) - continue ; - - drawLine(pl->dw, surface, &pl->screen, lpos, tpos, - lpos - pl->layout_tick_tooth, tpos, - pl->sch->plot_axis); - - if ( pl->axis[aN].lock_tick != 0 - || pl->on_Y == aN) { - - drawDashReset(pl->dw); - drawDash(pl->dw, surface, &pl->screen, - pl->viewport.min_x, tpos, - pl->viewport.max_x, tpos, - pl->sch->plot_axis, pl->layout_grid_dash, - pl->layout_grid_space); - } - } - - if (pl->on_Y == aN) { - - drawLine(pl->dw, surface, &pl->screen, lpos - 1, - pl->viewport.min_y, lpos - 1, - pl->viewport.max_y, pl->sch->plot_axis); - } - - if (pl->axis[aN].slave != 0) { - - drawLine(pl->dw, surface, &pl->screen, lpos - pl->layout_tick_tooth, - pl->viewport.min_y, lpos - pl->layout_tick_tooth, - pl->viewport.max_y, pl->sch->plot_axis); - } - } - - SDL_UnlockSurface(surface); - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - int tmove, taway, tleft, tright, txlen; - - lpos = pl->viewport.max_y + pl->layout_border + pl->axis[aN].layout_pos; - tmove = pl->screen.min_x; - taway = pl->viewport.max_x; - - if ( pl->axis[aN].exponential != 0 - || abs(texp) > 16) { - - tdec = 3 * (- texp / 3); - - if (tdec != 0) { - - texp += tdec; - fpow *= pow(10., (double) tdec); - - sprintf(numbuf, "E%+i", - tdec); - - tpos = (pl->axis[aN].compact == 0) ? - lpos + pl->layout_axis_box : - lpos + pl->layout_tick_tooth; - - tpos += pl->layout_font_height / 2; - - TTF_SizeUTF8(pl->font, numbuf, &txlen, &tdec); - - drawText(pl->dw, surface, pl->font, taway - txlen, tpos, - numbuf, TEXT_CENTERED_ON_Y, axCol); - - if (pl->axis[aN].compact != 0) - taway += - (txlen + pl->layout_font_space); - - if (pl->axis[aN].exponential == 0) - pl->axis[aN].exponential = 1; - } - } - - if ( pl->axis[aN].label[0] != 0 - && pl->axis[aN].compact != 0) { - - TTF_SizeUTF8(pl->font, pl->axis[aN].label, &txlen, &tdec); - - taway += - (txlen + pl->layout_font_space); - } - - if (abs(texp) < 170) { - - sprintf(numfmt, "%%.%df", (texp < 0) ? - texp : 0); - } - else { - numfmt[0] = 0; - } - - for (tik = tis; tik < fmax; tik += tih) { - - tpos = (int) (tik * scale + offset); - - if (tpos < pl->viewport.min_x || tpos > pl->viewport.max_x) - continue ; - - sprintf(numbuf, numfmt, tik * fpow); - - TTF_SizeUTF8(pl->font, numbuf, &txlen, &tdec); - - tleft = tpos - txlen / 2 - pl->layout_font_long; - tright = tpos + (txlen - txlen / 2); - - if (tmove < tleft && tright < taway) { - - drawText(pl->dw, surface, pl->font, tpos, - lpos + pl->layout_tick_tooth - + pl->layout_font_height / 2, numbuf, - TEXT_CENTERED, axCol); - - tmove = tright; - } - } - - if (pl->axis[aN].compact != 0) { - - tpos = taway + pl->layout_font_height / 2; - lpos = lpos + pl->layout_tick_tooth + pl->layout_font_height / 2; - - if (pl->axis[aN].label[0] != 0) { - - drawText(pl->dw, surface, pl->font, tpos, lpos, - pl->axis[aN].label, - TEXT_CENTERED_ON_Y, axCol); - } - } - else { - tpos = (pl->viewport.min_x + pl->viewport.max_x) / 2; - lpos = lpos + pl->layout_axis_box + pl->layout_font_height / 2; - - if (pl->axis[aN].label[0] != 0) { - - drawText(pl->dw, surface, pl->font, tpos, lpos, - pl->axis[aN].label, - TEXT_CENTERED, axCol); - } - } - } - else if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - int tmove, taway, tawayb, tleft, tright, txlen; - - lpos = pl->viewport.min_x - pl->layout_border - pl->axis[aN].layout_pos; - tmove = pl->screen.max_y; - taway = pl->viewport.min_y; - - if ( pl->axis[aN].exponential != 0 - || abs(texp) > 16) { - - tdec = 3 * (- texp / 3); - - if (tdec != 0) { - - texp += tdec; - fpow *= pow(10., (double) tdec); - - sprintf(numbuf, "E%+i", - tdec); - - tpos = (pl->axis[aN].compact == 0) ? - lpos - pl->layout_axis_box : - lpos - pl->layout_tick_tooth; - - tpos -= pl->layout_font_height / 2; - - TTF_SizeUTF8(pl->font, numbuf, &txlen, &tdec); - - drawText(pl->dw, surface, pl->font, tpos, taway, numbuf, - TEXT_CENTERED_ON_X | TEXT_VERTICAL, axCol); - - if (pl->axis[aN].compact != 0) - taway += txlen + pl->layout_font_space; - - if (pl->axis[aN].exponential == 0) - pl->axis[aN].exponential = 1; - } - } - - tawayb = taway; - - if ( pl->axis[aN].label[0] != 0 - && pl->axis[aN].compact != 0) { - - TTF_SizeUTF8(pl->font, pl->axis[aN].label, &txlen, &tdec); - - taway += txlen + pl->layout_font_space; - } - - if (abs(texp) < 170) { - - sprintf(numfmt, "%%.%df", (texp < 0) ? - texp : 0); - } - else { - numfmt[0] = 0; - } - - for (tik = tis; tik < fmax; tik += tih) { - - tpos = (int) (tik * scale + offset); - - if (tpos < pl->viewport.min_y || tpos > pl->viewport.max_y) - continue ; - - sprintf(numbuf, numfmt, tik * fpow); - - TTF_SizeUTF8(pl->font, numbuf, &txlen, &tdec); - - tleft = tpos + txlen / 2 + pl->layout_font_long; - tright = tpos - (txlen - txlen / 2); - - if (tmove > tleft && tright > taway) { - - drawText(pl->dw, surface, pl->font, - lpos - pl->layout_tick_tooth - - pl->layout_font_height / 2, tpos, numbuf, - TEXT_CENTERED | TEXT_VERTICAL, axCol); - - tmove = tright; - } - } - - if (pl->axis[aN].compact != 0) { - - lpos = lpos - pl->layout_tick_tooth - pl->layout_font_height / 2; - tpos = tawayb; - - if (pl->axis[aN].label[0] != 0) { - - drawText(pl->dw, surface, pl->font, lpos, tpos, - pl->axis[aN].label, - TEXT_CENTERED_ON_X | TEXT_VERTICAL, axCol); - } - } - else { - lpos = lpos - pl->layout_axis_box - pl->layout_font_height / 2; - tpos = (pl->viewport.min_y + pl->viewport.max_y) / 2; - - if (pl->axis[aN].label[0] != 0) { - - drawText(pl->dw, surface, pl->font, lpos, tpos, - pl->axis[aN].label, - TEXT_CENTERED | TEXT_VERTICAL, axCol); - } - } - } -} - -static void -plotLegendLayout(plot_t *pl) -{ - int fN, size_X, size_Y; - int size_N = 0, size_MAX = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - TTF_SizeUTF8(pl->font, pl->figure[fN].label, &size_X, &size_Y); - size_MAX = (size_MAX < size_X) ? size_X : size_MAX; - - size_N++; - } - } - - pl->legend_size_X = size_MAX + pl->layout_font_long * 2; - pl->legend_N = size_N; - - if (pl->legend_X > pl->viewport.max_x - (size_MAX + pl->layout_font_height * 3)) - pl->legend_X = pl->viewport.max_x - (size_MAX + pl->layout_font_height * 3); - - if (pl->legend_Y > pl->viewport.max_y - pl->layout_font_height * (size_N + 1)) - pl->legend_Y = pl->viewport.max_y - pl->layout_font_height * (size_N + 1); - - if (pl->legend_X < pl->viewport.min_x + pl->layout_font_height) - pl->legend_X = pl->viewport.min_x + pl->layout_font_height; - - if (pl->legend_Y < pl->viewport.min_y + pl->layout_font_height) - pl->legend_Y = pl->viewport.min_y + pl->layout_font_height; -} - -static void -plotLegendDraw(plot_t *pl, SDL_Surface *surface) -{ - int boxX, boxY, size_X, size_Y; - int fN, legX, legY, ncolor, fwidth, hovered; - - legX = pl->legend_X; - legY = pl->legend_Y; - - size_X = pl->layout_font_height * 2 + pl->legend_size_X; - size_Y = pl->layout_font_height * pl->legend_N; - - SDL_LockSurface(surface); - - if (pl->hover_legend != -1) { - - drawFillRect(surface, legX, legY, legX + size_X, - legY + size_Y, pl->sch->plot_hovered); - } - else if ( pl->transparency == 0 - && pl->legend_hidden == 0) { - - drawFillRect(surface, legX, legY, legX + size_X, - legY + size_Y, pl->sch->plot_background); - } - - SDL_UnlockSurface(surface); - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - SDL_LockSurface(surface); - - ncolor = (pl->figure[fN].hidden != 0) ? 9 : fN + 1; - hovered = (pl->hover_figure == fN) ? 1 : 0; - - if (pl->shift_on != 0) { - - hovered = (pl->figure[fN].axis_X == pl->hover_axis) ? 1 : hovered; - hovered = (pl->figure[fN].axis_Y == pl->hover_axis) ? 1 : hovered; - } - - if (hovered != 0) { - - boxX = legX + pl->layout_font_height * 2; - size_X = pl->legend_size_X; - size_Y = pl->layout_font_height; - - drawFillRect(surface, boxX, legY, boxX + size_X, - legY + size_Y, pl->sch->plot_hovered); - } - - if (pl->legend_hidden == 0) { - - double padY; - - fwidth = pl->figure[fN].width; - boxY = legY + pl->layout_font_height / 2; - - padY = (fwidth < 1 || (fwidth % 2) != 0) ? 0.5 : 0.; - - if (pl->figure[fN].drawing == FIGURE_DRAWING_LINE) { - - boxX = legX + pl->layout_font_height / 2; - - drawLineCanvas(pl->dw, surface, &pl->viewport, boxX, - boxY + padY, boxX + pl->layout_font_height, - boxY + padY, ncolor, fwidth); - } - else if (pl->figure[fN].drawing == FIGURE_DRAWING_DASH) { - - boxX = legX + pl->layout_font_height / 2; - - drawDashReset(pl->dw); - - drawDashCanvas(pl->dw, surface, &pl->viewport, boxX, - boxY + padY, boxX + pl->layout_font_height, - boxY + padY, ncolor, fwidth, - pl->layout_drawing_dash, pl->layout_drawing_space); - } - else if (pl->figure[fN].drawing == FIGURE_DRAWING_DOT) { - - boxX = legX + pl->layout_font_height; - - drawDotCanvas(pl->dw, surface, &pl->viewport, - boxX + padY, boxY + padY, - (fwidth > 4) ? fwidth : 4, ncolor, 1); - } - - if (pl->mark_on != 0) { - - boxX = legX + pl->layout_font_height; - - drawMarkCanvas(pl->dw, surface, &pl->viewport, boxX, - boxY + padY, pl->layout_mark_size, - fN, ncolor, (fwidth < 1) ? 1 : fwidth); - } - } - - SDL_UnlockSurface(surface); - - if (pl->legend_hidden == 0) { - - drawText(pl->dw, surface, pl->font, legX + pl->layout_font_height * 2 - + pl->layout_font_long, boxY, pl->figure[fN].label, - TEXT_CENTERED_ON_Y, (pl->figure[fN].hidden != 0) - ? pl->sch->plot_hidden : pl->sch->plot_text); - } - - legY += pl->layout_font_height; - } - } -} - -int plotLegendGetByClick(plot_t *pl, int cur_X, int cur_Y) -{ - int legX, legY, relX, relY; - int fN, rN = -1; - - legX = pl->legend_X; - legY = pl->legend_Y; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0) { - - relX = cur_X - (legX + pl->layout_font_height * 2); - relY = cur_Y - legY; - - if ( relX > 0 && relX < pl->legend_size_X - && relY > 0 && relY < pl->layout_font_height) { - - rN = fN; - break; - } - - legY += pl->layout_font_height; - } - } - - pl->hover_figure = rN; - - return rN; -} - -int plotLegendBoxGetByClick(plot_t *pl, int cur_X, int cur_Y) -{ - int relX, relY, lenY, rN = -1; - - relX = cur_X - pl->legend_X; - relY = cur_Y - pl->legend_Y; - - lenY = pl->layout_font_height * pl->legend_N; - - if ( relX > 0 && relX < pl->layout_font_height * 2 - && relY > 0 && relY < lenY) { - - rN = 0; - } - - pl->hover_legend = rN; - - return rN; -} - -static void -plotDataBoxLayout(plot_t *pl) -{ - int N, size_X, size_Y; - int size_N = 0, size_MAX = 0; - - if (pl->data_box_on == DATA_BOX_SLICE) { - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - TTF_SizeUTF8(pl->font, pl->data_box_text[N], &size_X, &size_Y); - - size_MAX = (size_MAX < size_X) ? size_X : size_MAX; - size_N++; - } - } - } - else if (pl->data_box_on == DATA_BOX_POLYFIT) { - - for (N = 0; N < PLOT_DATA_BOX_MAX; ++N) { - - if (pl->data_box_text[N][0] != 0) { - - TTF_SizeUTF8(pl->font, pl->data_box_text[N], &size_X, &size_Y); - - size_MAX = (size_MAX < size_X) ? size_X : size_MAX; - size_N++; - } - } - } - - pl->data_box_size_X = size_MAX; - pl->data_box_N = size_N; - - if (pl->data_box_X > pl->viewport.max_x - (size_MAX + pl->layout_font_height)) - pl->data_box_X = pl->viewport.max_x - (size_MAX + pl->layout_font_height); - - if (pl->data_box_Y > pl->viewport.max_y - pl->layout_font_height * (size_N + 1)) - pl->data_box_Y = pl->viewport.max_y - pl->layout_font_height * (size_N + 1); - - if (pl->data_box_X < pl->viewport.min_x + pl->layout_font_height) - pl->data_box_X = pl->viewport.min_x + pl->layout_font_height; - - if (pl->data_box_Y < pl->viewport.min_y + pl->layout_font_height) - pl->data_box_Y = pl->viewport.min_y + pl->layout_font_height; -} - -static void -plotDataBoxDraw(plot_t *pl, SDL_Surface *surface) -{ - int boxY, size_X, size_Y; - int N, legX, legY; - - legX = pl->data_box_X; - legY = pl->data_box_Y; - size_X = pl->data_box_size_X; - size_Y = pl->layout_font_height * pl->data_box_N; - - SDL_LockSurface(surface); - - if (pl->hover_data_box != -1) { - - drawFillRect(surface, legX, legY, legX + size_X, - legY + size_Y, pl->sch->plot_hovered); - } - else if (pl->transparency == 0) { - - drawFillRect(surface, legX, legY, legX + size_X, - legY + size_Y, pl->sch->plot_background); - } - - SDL_UnlockSurface(surface); - - if (pl->data_box_on == DATA_BOX_SLICE) { - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - if (pl->data_box_text[N][0] != 0) { - - boxY = legY + pl->layout_font_height / 2; - - drawText(pl->dw, surface, pl->font, legX, boxY, - pl->data_box_text[N], TEXT_CENTERED_ON_Y, - pl->sch->plot_figure[N]); - } - - legY += pl->layout_font_height; - } - } - } - else if (pl->data_box_on == DATA_BOX_POLYFIT) { - - for (N = 0; N < PLOT_DATA_BOX_MAX; ++N) { - - if (pl->data_box_text[N][0] != 0) { - - boxY = legY + pl->layout_font_height / 2; - - drawText(pl->dw, surface, pl->font, legX, boxY, - pl->data_box_text[N], TEXT_CENTERED_ON_Y, - pl->sch->plot_text); - - legY += pl->layout_font_height; - } - } - } -} - -int plotDataBoxGetByClick(plot_t *pl, int cur_X, int cur_Y) -{ - int relX, relY, lenY, rN = -1; - - if (pl->data_box_on != DATA_BOX_FREE) { - - relX = cur_X - pl->data_box_X; - relY = cur_Y - pl->data_box_Y; - - lenY = pl->layout_font_height * pl->data_box_N; - - if ( relX > 0 && relX < pl->data_box_size_X - && relY > 0 && relY < lenY) { - - rN = 0; - } - } - - pl->hover_data_box = rN; - - return rN; -} - -void plotDataBoxCopyClipboard(plot_t *pl) -{ - int N; - - if (pl->data_box_on != DATA_BOX_FREE) { - - pl->data_box_clipboard[0] = 0; - - for (N = 0; N < PLOT_DATA_BOX_MAX; ++N) { - - if (pl->data_box_text[N][0] != 0) { - - strcat(pl->data_box_clipboard, pl->data_box_text[N]); - strcat(pl->data_box_clipboard, "\r\n"); - } - } - - if (pl->data_box_clipboard[0] != 0) { - - SDL_SetClipboardText(pl->data_box_clipboard); - } - } -} - -void plotLayout(plot_t *pl) -{ - int aN, posX, posY; - - posX = 0; - posY = 0; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if (pl->axis[aN].busy == AXIS_BUSY_X) { - - if (pl->axis[aN].label[0] == 0) - pl->axis[aN].compact = 1; - - pl->axis[aN].layout_pos = posX; - - posX += pl->layout_axis_box; - posX += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - } - - if (pl->axis[aN].busy == AXIS_BUSY_Y) { - - if (pl->axis[aN].label[0] == 0) - pl->axis[aN].compact = 1; - - pl->axis[aN].layout_pos = posY; - - posY += pl->layout_axis_box; - posY += (pl->axis[aN].compact == 0) ? pl->layout_label_box : 0; - } - } - - pl->viewport.min_x = pl->screen.min_x + posY + pl->layout_border; - pl->viewport.max_x = pl->screen.max_x - pl->layout_border; - pl->viewport.min_y = pl->screen.min_y + pl->layout_border; - pl->viewport.max_y = pl->screen.max_y - posX - pl->layout_border; - - plotLegendLayout(pl); - - if (pl->data_box_on != DATA_BOX_FREE) { - - plotDataBoxLayout(pl); - } - - if (pl->mark_on != 0) { - - if (pl->mark_count == 0) { - - plotMarkLayout(pl); - } - } - else { - pl->mark_count = 0; - } -} - -static void -plotDrawFigureTrialAll(plot_t *pl) -{ - int FIGS[PLOT_FIGURE_MAX]; - int N, fN, fQ, lN, dN, tTOP; - - lN = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden != 0) - FIGS[lN++] = fN; - } - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pl->figure[fN].busy != 0 && pl->figure[fN].hidden == 0) - FIGS[lN++] = fN; - } - - if (pl->draw_in_progress == 0) { - - for (N = 0; N < lN; ++N) { - - fN = FIGS[N]; - dN = pl->figure[fN].data_N; - - pl->draw[fN].sketch = SKETCH_STARTED; - pl->draw[fN].rN = pl->data[dN].head_N; - pl->draw[fN].id_N = pl->data[dN].id_N; - - pl->draw[fN].skipped = 0; - pl->draw[fN].line = 0; - } - - pl->draw_in_progress = 1; - } - - if (pl->draw_in_progress != 0) { - - tTOP = SDL_GetTicks() + 20; - - drawClearTrial(pl->dw); - - do { - fN = -1; - - for (N = 0; N < lN; ++N) { - - fQ = FIGS[N]; - - if (pl->draw[fQ].sketch != SKETCH_FINISHED) { - - if (fN < 0) { - - fN = fQ; - } - else if (pl->draw[fQ].id_N < pl->draw[fN].id_N) { - - fN = fQ; - } - } - } - - if (fN >= 0) { - - if (SDL_GetTicks() > tTOP) - break; - - plotDrawFigureTrial(pl, fN, tTOP); - } - else { - plotSketchGarbage(pl); - - pl->draw_in_progress = 0; - break; - } - } - while (1); - } -} - -static void -plotDrawAxisAll(plot_t *pl, SDL_Surface *surface) -{ - int aN; - - for (aN = 0; aN < PLOT_AXES_MAX; ++aN) { - - if (pl->axis[aN].busy != AXIS_FREE) { - - plotDrawAxis(pl, surface, aN); - } - } -} - -void plotDraw(plot_t *pl, SDL_Surface *surface) -{ - if (pl->slice_mode_N != 0) { - - plotSliceLightDraw(pl, surface); - } - - drawPixmapAlloc(pl->dw, surface); - - plotDrawPalette(pl); - plotDrawFigureTrialAll(pl); - - drawClearCanvas(pl->dw); - - plotDrawSketch(pl, surface); - - if (pl->mark_on != 0) { - - plotMarkDraw(pl, surface); - } - - SDL_LockSurface(surface); - - drawFlushCanvas(pl->dw, surface, &pl->viewport); - - SDL_UnlockSurface(surface); - - drawClearCanvas(pl->dw); - - plotDrawAxisAll(pl, surface); - - if (pl->slice_on != 0) { - - plotSliceDraw(pl, surface); - } - - plotLegendDraw(pl, surface); - - SDL_LockSurface(surface); - - drawFlushCanvas(pl->dw, surface, &pl->viewport); - - SDL_UnlockSurface(surface); - - if (pl->data_box_on != DATA_BOX_FREE) { - - plotDataBoxDraw(pl, surface); - } -} - diff --git a/phobia/gp/plot.h b/phobia/gp/plot.h deleted file mode 100644 index f5eea4f..0000000 --- a/phobia/gp/plot.h +++ /dev/null @@ -1,566 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_PLOT_ -#define _H_PLOT_ - -#include -#include - -#include "draw.h" -#include "lse.h" -#include "scheme.h" - -#ifdef ERROR -#undef ERROR -#endif - -#ifdef FP_NAN -#undef FP_NAN -#endif - -#define ERROR(fmt, ...) fprintf(stderr, "%s:%i: " fmt, __FILE__, __LINE__, ## __VA_ARGS__) -#define FP_NAN fp_nan() - -#define PLOT_DATASET_MAX 10 -#define PLOT_CHUNK_SIZE 16777216 -#define PLOT_CHUNK_MAX 2000 -#define PLOT_CHUNK_CACHE 4 -#define PLOT_RCACHE_SIZE 32 -#define PLOT_SLICE_SPAN 4 -#define PLOT_AXES_MAX 9 -#define PLOT_FIGURE_MAX 8 -#define PLOT_DATA_BOX_MAX 8 -#define PLOT_MEDIAN_MAX 91 -#define PLOT_POLYFIT_MAX 7 -#define PLOT_SUBTRACT 20 -#define PLOT_GROUP_MAX 40 -#define PLOT_MARK_MAX 80 -#define PLOT_SKETCH_CHUNK_SIZE 32768 -#define PLOT_SKETCH_MAX 800 -#define PLOT_STRING_MAX 200 - -enum { - TTF_ID_NONE = 0, - TTF_ID_ROBOTO_MONO_NORMAL, - TTF_ID_ROBOTO_MONO_THIN -}; - -enum { - AXIS_FREE = 0, - AXIS_BUSY_X, - AXIS_BUSY_Y -}; - -enum { - AXIS_SLAVE_DISABLE = 0, - AXIS_SLAVE_ENABLE, - AXIS_SLAVE_HOLD_AS_IS -}; - -enum { - LOCK_FREE = 0, - LOCK_AUTO, - LOCK_STACKED -}; - -enum { - FIGURE_DRAWING_LINE = 0, - FIGURE_DRAWING_DASH, - FIGURE_DRAWING_DOT -}; - -enum { - SUBTRACT_FREE = 0, - SUBTRACT_TIME_MEDIAN, - SUBTRACT_DATA_MEDIAN, - SUBTRACT_SCALE, - SUBTRACT_RESAMPLE, - SUBTRACT_POLYFIT, - SUBTRACT_BINARY_SUBTRACTION, - SUBTRACT_BINARY_ADDITION, - SUBTRACT_BINARY_MULTIPLICATION, - SUBTRACT_BINARY_HYPOTENUSE, - SUBTRACT_FILTER_DIFFERENCE, - SUBTRACT_FILTER_CUMULATIVE, - SUBTRACT_FILTER_BITMASK, - SUBTRACT_FILTER_LOW_PASS, - SUBTRACT_FILTER_MEDIAN -}; - -enum { - SKETCH_STARTED = 0, - SKETCH_INTERRUPTED, - SKETCH_FINISHED -}; - -enum { - DATA_BOX_FREE = 0, - DATA_BOX_SLICE, - DATA_BOX_POLYFIT -}; - -typedef double fval_t; - -typedef struct { - - int X; - int Y; -} -tuple_t; - -typedef struct { - - draw_t *dw; - scheme_t *sch; - - void *ld; - - struct { - - int column_N; - int length_N; - - int chunk_SHIFT; - int chunk_MASK; - int chunk_bSIZE; - - int lz4_compress; - - struct { - - fval_t *raw; - - int chunk_N; - int dirty; - } - cache[PLOT_CHUNK_CACHE]; - - int cache_ID; - - struct { - - void *raw; - int length; - } - compress[PLOT_CHUNK_MAX]; - - fval_t *raw[PLOT_CHUNK_MAX]; - int *map; - - int head_N; - int tail_N; - int id_N; - - struct { - - int busy; - - union { - - struct { - - int column_1; - int column_2; - int column_3; - - int length; - int unwrap; - int opdata; - - struct { - - double fval; - double fpay; - } - window[PLOT_MEDIAN_MAX]; - - int keep; - int tail; - - double prev[2]; - double offset; - } - median; - - struct { - - int column_1; - - double scale; - double offset; - } - scale; - - struct { - - int column_X; - - int in_data_N; - int in_column_X; - int in_column_Y; - } - resample; - - struct { - - int column_X; - int column_Y; - - int poly_N0; - int poly_N1; - - double coefs[PLOT_POLYFIT_MAX + 1]; - double std; - } - polyfit; - - struct { - - int column_1; - int column_2; - } - binary; - - struct { - - int column_1; - - double gain; - double state; - } - filter; - } - op; - } - sub[PLOT_SUBTRACT]; - - int sub_N; - int sub_paused; - } - data[PLOT_DATASET_MAX]; - - struct { - - int busy; - - int data_N; - int column_N; - - struct { - - int computed; - int finite; - - fval_t fmin; - fval_t fmax; - } - chunk[PLOT_CHUNK_MAX]; - - int cached; - - fval_t fmin; - fval_t fmax; - } - rcache[PLOT_RCACHE_SIZE]; - - struct { - - int busy; - - int lock_scale; - int lock_tick; - - int slave; - int slave_N; - - double scale; - double offset; - - char label[PLOT_STRING_MAX]; - - int compact; - int exponential; - - int layout_pos; - - double ruler_tih; - double ruler_tis; - double ruler_min; - double ruler_max; - } - axis[PLOT_AXES_MAX]; - - struct { - - int busy; - int hidden; - - int drawing; - int width; - - int data_N; - int column_X; - int column_Y; - int axis_X; - int axis_Y; - - double mark_X[PLOT_MARK_MAX]; - double mark_Y[PLOT_MARK_MAX]; - - int slice_busy; - double slice_X; - double slice_Y; - double slice_base_X; - double slice_base_Y; - - char label[PLOT_STRING_MAX]; - } - figure[PLOT_FIGURE_MAX]; - - struct { - - int op_time_median; - int op_time_unwrap; - int op_time_opdata; - int op_scale; - - int length; - double ungap; - - double scale; - double offset; - - char label[PLOT_STRING_MAX]; - } - group[PLOT_GROUP_MAX]; - - clipBox_t viewport; - clipBox_t screen; - - TTF_Font *font; - - lse_t lsq; - - int rcache_ID; - int rcache_wipe_data_N; - int rcache_wipe_chunk_N; - - int legend_hidden; - int legend_X; - int legend_Y; - int legend_size_X; - int legend_N; - - int data_box_on; - int data_box_X; - int data_box_Y; - int data_box_size_X; - int data_box_N; - char data_box_text[PLOT_DATA_BOX_MAX][PLOT_STRING_MAX]; - char data_box_clipboard[PLOT_DATA_BOX_MAX * PLOT_STRING_MAX]; - - int slice_on; - int slice_mode_N; - int slice_axis_N; - - struct { - - int sketch; - - int rN; - int id_N; - - int skipped; - int line; - - double last_X; - double last_Y; - - int list_self; - } - draw[PLOT_FIGURE_MAX]; - - int draw_in_progress; - - int tick_cached; - int tick_skip; - - struct { - - int figure_N; - - int drawing; - int width; - - double *chunk; - int length; - - int linked; - } - sketch[PLOT_SKETCH_MAX]; - - int sketch_list_garbage; - int sketch_list_todraw; - int sketch_list_current; - int sketch_list_current_end; - - int layout_font_ttf; - int layout_font_pt; - int layout_font_height; - int layout_font_long; - int layout_font_space; - int layout_border; - int layout_axis_box; - int layout_label_box; - int layout_tick_tooth; - int layout_grid_dash; - int layout_grid_space; - int layout_drawing_dash; - int layout_drawing_space; - int layout_mark_size; - int layout_fence_dash; - int layout_fence_space; - int layout_fence_point; - - int on_X; - int on_Y; - - int hover_figure; - int hover_legend; - int hover_data_box; - int hover_axis; - - int mark_on; - int mark_count; - int mark_size; - int mark_density; - - int interpolation; - int defungap; - - int default_drawing; - int default_width; - - int transparency; - int fprecision; - int lz4_compress; - - int shift_on; -} -plot_t; - -double fp_nan(); -int fp_isfinite(double x); - -plot_t *plotAlloc(draw_t *dw, scheme_t *sch); -void plotClean(plot_t *pl); - -void plotFontDefault(plot_t *pl, int ttfnum, int ptsize, int style); -int plotFontOpen(plot_t *pl, const char *ttf, int ptsize, int style); - -unsigned long long plotDataMemoryUsage(plot_t *pl, int dN); -unsigned long long plotDataMemoryUncompressed(plot_t *pl, int dN); -unsigned long long plotDataMemoryCached(plot_t *pl, int dN); - -void plotDataAlloc(plot_t *pl, int dN, int cN, int lN); -void plotDataResize(plot_t *pl, int dN, int lN); -int plotDataSpaceLeft(plot_t *pl, int dN); -void plotDataGrowUp(plot_t *pl, int dN); -void plotDataSubtractCompute(plot_t *pl, int dN, int sN); -void plotDataSubtractResidual(plot_t *pl, int dN); -void plotDataSubtractClean(plot_t *pl); -void plotDataSubtractPaused(plot_t *pl); -void plotDataSubtractAlternate(plot_t *pl); -void plotDataInsert(plot_t *pl, int dN, const fval_t *row); -void plotDataClean(plot_t *pl, int dN); - -void plotDataRangeCacheClean(plot_t *pl, int dN); -void plotDataRangeCacheSubtractClean(plot_t *pl); -int plotDataRangeCacheFetch(plot_t *pl, int dN, int cN); - -void plotAxisLabel(plot_t *pl, int aN, const char *label); -void plotAxisScaleManual(plot_t *pl, int aN, double min, double max); -void plotAxisScaleAuto(plot_t *pl, int aN); -void plotAxisScaleAutoCond(plot_t *pl, int aN, int bN); -void plotAxisScaleLock(plot_t *pl, int knob); -void plotAxisScaleDefault(plot_t *pl); -void plotAxisScaleZoom(plot_t *pl, int aN, int origin, double zoom); -void plotAxisScaleMove(plot_t *pl, int aN, double move); -void plotAxisScaleEqual(plot_t *pl); -void plotAxisScaleGridAlign(plot_t *pl); -void plotAxisScaleGridLock(plot_t *pl, int aN); -void plotAxisScaleStacked(plot_t *pl, int bN); - -int plotAxisGetByClick(plot_t *pl, int cur_X, int cur_Y); -double plotAxisConvForward(plot_t *pl, int aN, double fval); -double plotAxisConvBackward(plot_t *pl, int aN, double xval); -void plotAxisSlave(plot_t *pl, int aN, int bN, double scale, double offset, int action); -void plotAxisRemove(plot_t *pl, int aN); - -void plotFigureAdd(plot_t *pl, int fN, int dN, int nX, int nY, int aX, int aY, const char *label); -void plotFigureRemove(plot_t *pl, int fN); -void plotFigureGarbage(plot_t *pl, int dN); -void plotFigureMoveAxes(plot_t *pl, int fN); -void plotFigureMakeIndividualAxes(plot_t *pl, int fN); -void plotFigureExchange(plot_t *pl, int fN_1, int fN_2); - -int plotFigureSelected(plot_t *pl); -int plotFigureAnyData(plot_t *pl); - -tuple_t plotGetSubtractTimeMedian(plot_t *pl, int dN, int cNX, int cNY, - int length, int unwrap, int opdata); -int plotGetSubtractScale(plot_t *pl, int dN, int cN, double scale, double offset); -int plotGetSubtractResample(plot_t *pl, int dN, int cN_X, int in_dN, int in_cN_X, int in_cN_Y); -int plotGetSubtractBinary(plot_t *pl, int dN, int opSUB, int cN_1, int cN_2); -int plotGetSubtractFilter(plot_t *pl, int dN, int cN, int opSUB, double gain); -int plotGetSubtractMedian(plot_t *pl, int dN, int cN, int opSUB, int length); -int plotGetFreeFigure(plot_t *pl); - -int plotFigureSubtractGetMedianConfig(plot_t *pl, int fN, int config[3]); -void plotFigureSubtractTimeMedian(plot_t *pl, int fN_1, int length, int unwrap, int opdata); -void plotFigureSubtractScale(plot_t *pl, int fN_1, int aBUSY, double scale, double offset); -void plotFigureSubtractFilter(plot_t *pl, int fN_1, int opSUB, double gain); -void plotFigureSubtractSwitch(plot_t *pl, int opSUB); -void plotFigureSubtractResample(plot_t *pl, int fN); - -int plotDataBoxPolyfit(plot_t *pl, int fN); -void plotFigureSubtractPolyfit(plot_t *pl, int fN_1, int N0, int N1); -void plotFigureExportCSV(plot_t *pl, const char *file); -void plotFigureClean(plot_t *pl); -void plotSketchClean(plot_t *pl); -int plotGetSketchLength(plot_t *pl); - -void plotGroupAdd(plot_t *pl, int dN, int gN, int cN); -void plotGroupLabel(plot_t *pl, int gN, const char *label); -void plotGroupMedian(plot_t *pl, int gN, int length, int unwrap, int opdata); -void plotGroupScale(plot_t *pl, int gN, int knob, double scale, double offset); - -void plotSliceSwitch(plot_t *pl); -void plotSliceTrack(plot_t *pl, int cur_X, int cur_Y); - -int plotLegendGetByClick(plot_t *pl, int cur_X, int cur_Y); -int plotLegendBoxGetByClick(plot_t *pl, int cur_X, int cur_Y); -int plotDataBoxGetByClick(plot_t *pl, int cur_X, int cur_Y); -void plotDataBoxCopyClipboard(plot_t *pl); - -void plotLayout(plot_t *pl); -void plotDraw(plot_t *pl, SDL_Surface *surface); - -#endif /* _H_PLOT_ */ - diff --git a/phobia/gp/read.c b/phobia/gp/read.c deleted file mode 100644 index 1f895a4..0000000 --- a/phobia/gp/read.c +++ /dev/null @@ -1,4053 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include - -#include - -#ifdef _WINDOWS -#include -#endif /* _WINDOWS */ - -#include "async.h" -#include "dirent.h" -#include "draw.h" -#include "edit.h" -#include "lang.h" -#include "plot.h" -#include "read.h" - -char *stoi(const markup_t *mk, int *x, char *s) -{ - int n, d, i; - - if (*s == '-') { n = - 1; s++; } - else if (*s == '+') { n = 1; s++; } - else { n = 1; } - - d = 0; - i = 0; - - while (*s >= '0' && *s <= '9') { - - i = 10 * i + (*s++ - '0') * n; - d += 1; - } - - if (d == 0 || d > 9) { return NULL; } - - if (*s == 0 || strchr(mk->space, *s) != NULL - || strchr(mk->lend, *s) != NULL) { - - *x = i; - } - else { return NULL; } - - return s; -} - -char *htoi(const markup_t *mk, int *x, char *s) -{ - int i, d, h; - - d = 0; - h = 0; - - if (*s == '0' && *(s + 1) == 'x') { s += 2; } - - do { - if (*s >= '0' && *s <= '9') { i = *s++ - '0'; } - else if (*s >= 'A' && *s <= 'F') { i = 10 + *s++ - 'A'; } - else if (*s >= 'a' && *s <= 'f') { i = 10 + *s++ - 'a'; } - else break; - - h = 16 * h + i; - d += 1; - } - while (1); - - if (d == 0 || d > 8) { return NULL; } - - if (*s == 0 || strchr(mk->space, *s) != NULL - || strchr(mk->lend, *s) != NULL) { - - *x = h; - } - else { return NULL; } - - return s; -} - -char *otoi(const markup_t *mk, int *x, char *s) -{ - int i, d, h; - - d = 0; - h = 0; - - do { - if (*s >= '0' && *s <= '7') { i = *s++ - '0'; } - else break; - - h = 8 * h + i; - d += 1; - } - while (1); - - if (d == 0 || d > 11) { return NULL; } - - if (*s == 0 || strchr(mk->space, *s) != NULL - || strchr(mk->lend, *s) != NULL) { - - *x = h; - } - else { return NULL; } - - return s; -} - -char *stod(const markup_t *mk, double *x, char *s) -{ - int n, d, v, e; - double f; - - if (*s == '-') { n = - 1; s++; } - else if (*s == '+') { n = 1; s++; } - else { n = 1; } - - d = 0; - v = 0; - f = 0.; - - while (*s >= '0' && *s <= '9') { - - f = 10. * f + (*s++ - '0') * n; - d += 1; - } - - if (*s == mk->delim) { - - s++; - - while (*s >= '0' && *s <= '9') { - - f = 10. * f + (*s++ - '0') * n; - d += 1; v -= 1; - } - } - - if (d == 0) { return NULL; } - - if (*s == 'n') { v += - 9; s++; } - else if (*s == 'u') { v += - 6; s++; } - else if (*s == 'm') { v += - 3; s++; } - else if (*s == 'K') { v += 3; s++; } - else if (*s == 'M') { v += 6; s++; } - else if (*s == 'G') { v += 9; s++; } - else if (*s == 'e' || *s == 'E') { - - s = stoi(mk, &e, s + 1); - - if (s != NULL) { v += e; } - else { return NULL; } - } - - if (*s == 0 || strchr(mk->space, *s) != NULL - || strchr(mk->lend, *s) != NULL) { - - while (v < 0) { f /= 10.; v += 1; } - while (v > 0) { f *= 10.; v -= 1; } - - *x = f; - } - else { return NULL; } - - return s; -} - -read_t *readAlloc(draw_t *dw, plot_t *pl) -{ - read_t *rd; - - rd = calloc(1, sizeof(read_t)); - - rd->dw = dw; - rd->pl = pl; - - strcpy(rd->screenpath, "."); - - rd->ttfname[0] = 0; - - rd->window_size_x = GP_MIN_SIZE_X; - rd->window_size_y = GP_MIN_SIZE_Y; - rd->timecol = -1; - rd->shortfilename = 1; - rd->fastdraw = 200; - - rd->mk_config.delim = '.'; - strcpy(rd->mk_config.space, " \t"); - strcpy(rd->mk_config.lend, "\r\n"); - - rd->mk_text.delim = rd->mk_config.delim; - strcpy(rd->mk_text.space, "; \t"); - strcpy(rd->mk_text.lend, rd->mk_config.lend); - -#ifdef _WINDOWS - rd->legacy_label = 1; -#endif /* _WINDOWS */ - - rd->preload = 8388608; - rd->chunk = 4096; - rd->timeout = 5000; - rd->length_N = 1000; - - rd->bind_N = -1; - rd->page_N = -1; - rd->figure_N = -1; - - return rd; -} - -void readClean(read_t *rd) -{ - free(rd); -} - -static void -readCutLabel(char *tbuf, const char *text, int allowed) -{ - int length; - - length = strlen(text); - - if (length > (allowed - 1)) { - - text = utf8_skip_b(text, length - (allowed - 2)); - - strcpy(tbuf, "~"); - strcat(tbuf, text); - } - else { - strcpy(tbuf, text); - } -} - -static void -readCutFile(read_t *rd, char *tbuf, const char *file, int allowed) -{ - const char *eol; - int length, ndir; - - file = (file[0] == '.' && file[1] == '/') - ? file + 2 : file; - - if (allowed < 25 || rd->shortfilename != 0) { - - eol = file + strlen(file); - ndir = rd->shortfilename; - - do { - if (*eol == '/' || *eol == '\\') { - - if (ndir > 1) ndir--; - else break; - } - - if (file == eol) - break; - - eol--; - } - while (1); - } - else { - eol = file; - } - - length = utf8_length(eol); - - if (length > (allowed - 1)) { - - eol = utf8_skip(eol, length - (allowed - 1)); - - strcpy(tbuf, "~"); - strcat(tbuf, eol); - } - else { - if (file == eol) { - - strcpy(tbuf, eol); - } - else { - strcpy(tbuf, "~"); - strcat(tbuf, eol); - } - } -} - -#ifdef _WINDOWS -void legacy_ACP_to_UTF8(char *us, const char *text, int n) -{ - wchar_t wbuf[READ_TOKEN_MAX * READ_COLUMN_MAX]; - - MultiByteToWideChar(CP_ACP, 0, text, -1, wbuf, sizeof(wbuf) / sizeof(wchar_t)); - WideCharToMultiByte(CP_UTF8, 0, wbuf, -1, us, n, NULL, NULL); -} - -void legacy_OEM_to_UTF8(char *us, const char *text, int n) -{ - wchar_t wbuf[READ_TOKEN_MAX * READ_COLUMN_MAX]; - - MultiByteToWideChar(CP_OEMCP, 0, text, -1, wbuf, sizeof(wbuf) / sizeof(wchar_t)); - WideCharToMultiByte(CP_UTF8, 0, wbuf, -1, us, n, NULL, NULL); -} - -void legacy_UTF8_to_ACP(char *text, const char *us, int n) -{ - wchar_t wbuf[READ_TOKEN_MAX * READ_COLUMN_MAX]; - - MultiByteToWideChar(CP_UTF8, 0, us, -1, wbuf, sizeof(wbuf) / sizeof(wchar_t)); - WideCharToMultiByte(CP_ACP, 0, wbuf, -1, text, n, NULL, NULL); -} - -void legacy_UTF8_to_OEM(char *text, const char *us, int n) -{ - wchar_t wbuf[READ_TOKEN_MAX * READ_COLUMN_MAX]; - - MultiByteToWideChar(CP_UTF8, 0, us, -1, wbuf, sizeof(wbuf) / sizeof(wchar_t)); - WideCharToMultiByte(CP_OEMCP, 0, wbuf, -1, text, n, NULL, NULL); -} - -static FILE * -legacy_fopen_from_UTF8(const char *file, const char *mode) -{ - wchar_t wfile[READ_FILE_PATH_MAX]; - wchar_t wmode[READ_TOKEN_MAX]; - - MultiByteToWideChar(CP_UTF8, 0, file, -1, wfile, READ_FILE_PATH_MAX); - MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, READ_TOKEN_MAX); - - return _wfopen(wfile, wmode); -} -#endif /* _WINDOWS */ - -#ifdef _LEGACY -static int -legacy_GetFreeData(read_t *rd) -{ - int N, dN = -1; - - for (N = 0; N < PLOT_DATASET_MAX; ++N) { - - if ( rd->data[N].format == FORMAT_NONE - && rd->data[N].file[0] == 0) { - - dN = N; - break; - } - } - - return dN; -} - -static int -legacy_LabelExtract(char *s, char *label[9]) -{ - char *cur; - int m, N; - - cur = s; - m = 0; - N = 0; - - while (*s != 0) { - - if (strchr(" \t,\'", *s) != NULL) { - - if (m != 0) { - - if (N != 0 || *s == ',') { - - label[N++] = cur; - - *s = 0; - - if (N >= 9) - break; - } - - m = 0; - } - } - else { - if (m == 0) { - - cur = s; - m = 1; - } - } - - ++s; - } - - if (m != 0 && N > 0 && N < 9) { - - label[N++] = cur; - } - - return N; -} - -static char * -legacy_TextTrim(read_t *rd, char *s) -{ - char *eol; - - while (*s != 0) { - - if (strchr(" \t\'", *s) == NULL) - break; - - s++; - } - - if (strlen(s) > 1) { - - eol = s + strlen(s) - 1; - - if (strchr("\r\n", *eol) != NULL) { - - *eol = 0; - } - } - - return s; -} - -void legacy_ConfigGRM(read_t *rd, const char *path, const char *confile, - const char *file, int fromUI) -{ - FILE *fd; - - char pbuf[READ_FILE_PATH_MAX]; - char xbuf[READ_FILE_PATH_MAX]; - char lbuf[PLOT_STRING_MAX]; - char nbuf[PLOT_STRING_MAX]; - - char *tbuf, *label[9]; - const char *pfile, *ptext; - - int cX, cY, cYm, N; - double scale, offset; - - int dN, cN, pN, fN, line_N, lbN, stub, len; - float fpN; - - dN = legacy_GetFreeData(rd); - - if (dN < 0) { - - ERROR("Unable to get free dataset\n"); - return ; - } - - pfile = file; - - if (path != NULL) { - - sprintf(pbuf, "%s/%s", path, file); - pfile = pbuf; - } - -#ifdef _WINDOWS - fd = legacy_fopen_from_UTF8(pfile, "rb"); -#else /* _WINDOWS */ - fd = fopen(pfile, "rb"); -#endif - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - return ; - } - else { - len = fread(&stub, 2, 1, fd); - len += fread(&fpN, 4, 1, fd); - - cN = (int) fpN; - - if ( len != 0 && fpN == (float) cN - && cN > 1 && cN < READ_COLUMN_MAX) { - - fclose(fd); - - readOpenUnified(rd, dN, cN + 1, 0, pfile, FORMAT_BINARY_LEGACY_V1); - } - else { - fseek(fd, 0UL, SEEK_SET); - len = fread(&fpN, 4, 1, fd); - - cN = (int) fpN; - - if ( len != 0 && fpN == (float) cN - && cN > 1 && cN < READ_COLUMN_MAX) { - - fclose(fd); - - readOpenUnified(rd, dN, cN + 1, 0, pfile, FORMAT_BINARY_LEGACY_V2); - } - else { - fclose(fd); - - ERROR("Unable to load legacy file \"%s\"\n", file); - return ; - } - } - } - - pfile = confile; - - if (path != NULL) { - - sprintf(pbuf, "%s/%s", path, confile); - pfile = pbuf; - } - -#ifdef _WINDOWS - fd = legacy_fopen_from_UTF8(pfile, "r"); -#else /* _WINDOWS */ - fd = fopen(pfile, "r"); -#endif - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", confile, strerror(errno)); - return ; - } - else { - tbuf = rd->data[dN].buf; - line_N = 0; - - pN = rd->page_N; - - while (fgets(tbuf, sizeof(rd->data[0].buf), fd) != NULL) { - - line_N++; - - if (strncmp(tbuf, "LI", 2) == 0) { - - if (fgets(tbuf, sizeof(rd->data[0].buf), fd) == NULL) - break; - - line_N++; -#ifdef _WINDOWS - legacy_OEM_to_UTF8(tbuf, tbuf, sizeof(rd->data[0].buf)); -#endif /* _WINDOWS */ - if (pN < 0) { - - pN = 1; - } - - while (rd->page[pN].busy != 0) { - - pN++; - - if (pN >= READ_PAGE_MAX) - break; - } - - if (pN >= READ_PAGE_MAX) - break; - - rd->page[pN].busy = 1; - - strcpy(lbuf, legacy_TextTrim(rd, tbuf)); - ptext = lbuf; - - if (fromUI != 0) { - - readCutFile(rd, nbuf, pfile, 95); - - sprintf(xbuf, "%s: %.95s", nbuf, lbuf); - ptext = xbuf; - } - - readCutLabel(rd->page[pN].title, ptext, PLOT_STRING_MAX); - - lbN = legacy_LabelExtract(lbuf, label); - - if (fgets(tbuf, sizeof(rd->data[0].buf), fd) == NULL) - break; - - line_N++; - - N = sscanf(tbuf, "%i", &cX); - - if (N != 1) { - - cX = 0; - } - - if (cX < -1 || cX >= rd->pl->data[dN].column_N) { - - ERROR("%s:%i: page %i column number %i is out of range\n", - confile, line_N, pN, cX); - cX = 0; - } - - if (fgets(tbuf, sizeof(rd->data[0].buf), fd) == NULL) - break; - - line_N++; -#ifdef _WINDOWS - legacy_OEM_to_UTF8(tbuf, tbuf, sizeof(rd->data[0].buf)); -#endif /* _WINDOWS */ - sprintf(rd->page[pN].ax[0].label, "%.20s", legacy_TextTrim(rd, tbuf)); - - fN = 0; - - do { - if (fgets(tbuf, sizeof(rd->data[0].buf), fd) == NULL) - break; - - line_N++; - - if (strlen(tbuf) < 5) - break; - - N = sscanf(tbuf, "%i %i %i %le %le", - &stub, &cY, &cYm, &scale, &offset); - - if (N != 5) { - - ERROR("%s:%i: page %i figure %i invalid format\n", - confile, line_N, pN, fN); - break; - } - - if (cY < -1 || cY >= rd->pl->data[dN].column_N) { - - ERROR("%s:%i: page %i column number %i is out of range\n", - confile, line_N, pN, cY); - break; - } - - if (fN < PLOT_FIGURE_MAX) { - - rd->page[pN].fig[fN].busy = 1; - rd->page[pN].fig[fN].drawing = -1; - rd->page[pN].fig[fN].dN = dN; - rd->page[pN].fig[fN].cX = cX; - rd->page[pN].fig[fN].cY = cY; - rd->page[pN].fig[fN].aX = 0; - rd->page[pN].fig[fN].aY = 1; - - sprintf(rd->page[pN].fig[fN].label, "fig.%i.%i", fN, cY); - - N = 0; - - if (cY != cYm) { - - rd->page[pN].fig[fN].bY[N].busy = SUBTRACT_BINARY_SUBTRACTION; - rd->page[pN].fig[fN].bY[N].column_2 = cYm; - - N++; - } - - if (scale != 1. || offset != 0.) { - - rd->page[pN].fig[fN].bY[N].busy = SUBTRACT_SCALE; - rd->page[pN].fig[fN].bY[N].args[0] = scale; - rd->page[pN].fig[fN].bY[N].args[1] = offset; - } - - fN++; - } - else { - ERROR("%s:%i: too many figures on page %i\n", - confile, line_N, pN); - break; - } - - if (strstr(tbuf, "'END") != NULL) - break; - } - while (1); - - if (lbN >= fN) { - - for (N = 0; N < fN; ++N) { - - sprintf(rd->page[pN].fig[N].label, "%.75s.%i", - label[N], rd->page[pN].fig[N].cY); - } - - if (lbN - 1 >= fN) { - - sprintf(rd->page[pN].ax[1].label, "%.20s", label[lbN - 1]); - } - } - } - } - - fclose(fd); - - if (fromUI == 0) { - - rd->page_N = pN; - rd->figure_N = -1; - } - } -} -#endif /* _LEGACY */ - -FILE *unified_fopen(const char *file, const char *mode) -{ -#ifdef _WINDOWS - return legacy_fopen_from_UTF8(file, mode); -#else /* _WINDOWS */ - return fopen(file, mode); -#endif -} - -static char * -readTimeGetBuf(char *s, int len, FILE *fd, int timeout) -{ - int c, eol, nq, waiting; - - eol = 0; - nq = 0; - waiting = 0; - - do { - c = fgetc(fd); - - if (c != EOF) { - - if (c == '\r' || c == '\n') { - - eol = (nq > 0) ? 1 : 0; - } - else if (eol == 1) { - - ungetc(c, fd); - break; - } - else if (nq < len - 1) { - - *s++ = (char) c; - nq++; - } - } - else { - if (feof(fd) || ferror(fd)) { - - if (waiting < timeout) { - - clearerr(fd); - - SDL_Delay(10); - - waiting += 10; - } - else { - eol = 1; - break; - } - } - } - } - while (1); - - if (eol != 0) { - - *s = 0; - - return s; - } - else { - return NULL; - } -} - -static int -readTEXTGetRow(read_t *rd, int dN, int label_N) -{ - fval_t *row = rd->data[dN].row; - int *hint = rd->data[dN].hint; - char *r, *s = rd->data[dN].buf; - - int hex, m, N; - double val; - - m = 0; - N = 0; - - while (*s != 0) { - - if ( strchr(rd->mk_text.space, *s) != NULL - || strchr(rd->mk_text.lend, *s) != NULL) { - - m = 0; - } - else { - if (m == 0) { - - m = 1; - - if (hint[N] == DATA_HINT_FLOAT) { - - r = stod(&rd->mk_text, &val, s); - - if (r != NULL) { - - *row++ = (fval_t) val; - } - else { - *row++ = (fval_t) FP_NAN; - } - } - else if (hint[N] == DATA_HINT_HEX) { - - r = htoi(&rd->mk_text, &hex, s); - - if (r != NULL) { - - *row++ = (fval_t) hex; - } - else { - *row++ = (fval_t) FP_NAN; - } - } - else if (hint[N] == DATA_HINT_OCT) { - - r = otoi(&rd->mk_text, &hex, s); - - if (r != NULL) { - - *row++ = (fval_t) hex; - } - else { - *row++ = (fval_t) FP_NAN; - } - } - else { - r = stod(&rd->mk_text, &val, s); - - if (r != NULL) { - - *row++ = (fval_t) val; - } - else { - r = htoi(&rd->mk_text, &hex, s); - - if (r != NULL) { - - if (hint[N] == DATA_HINT_NONE) { - - hint[N] = DATA_HINT_HEX; - } - - *row++ = (fval_t) hex; - } - else { - *row++ = (fval_t) FP_NAN; - } - } - } - - N++; - - if (N >= READ_COLUMN_MAX) - break; - } - } - - s++; - } - - if (N > label_N) { - - fval_t *end = row; - - row = rd->data[dN].row; - - m = 0; - - while (row < end - m) { - - if (fp_isfinite(*row)) { - - /* nothing */ - } - else if ( m < READ_TEXT_DEVIATE_MAX - && N > label_N) { - - N--; - m++; - } - - *row = *(row + m); - - row++; - } - } - else { - m = N + READ_TEXT_DEVIATE_MAX; - - while (N < label_N) { - - *row++ = (fval_t) FP_NAN; - - N++; - - if (N >= m) - break; - } - } - - return N; -} - -static int -readTEXTGetLabel(read_t *rd, int dN) -{ - char *label, *s = rd->data[dN].buf; - int m, N; - -#ifdef _WINDOWS - if (rd->legacy_label == 1) { - - legacy_ACP_to_UTF8(s, rd->data[dN].buf, sizeof(rd->data[0].buf)); - } - else if (rd->legacy_label == 2) { - - legacy_OEM_to_UTF8(s, rd->data[dN].buf, sizeof(rd->data[0].buf)); - } -#endif /* _WINDOWS */ - - m = 0; - N = 0; - - while (*s != 0) { - - if ( strchr(rd->mk_text.space, *s) != NULL - || strchr(rd->mk_text.lend, *s) != NULL) { - - if (m != 0) { - - *label = 0; - m = 0; - } - } - else { - if (m == 0) { - - label = rd->data[dN].label[N++]; - - if (N >= READ_COLUMN_MAX) - break; - } - - if (m < READ_TOKEN_MAX - 1) { - - *label++ = *s; - m++; - } - } - - s++; - } - - if (m != 0) { - - *label = 0; - } - - return N; -} - -static int -readTEXTSkipBOM(read_t *rd, FILE *fd) -{ - char tbuf[8]; - int len, bom = 0; - - len = fread(tbuf, 4, 1, fd); - - fseek(fd, 0UL, SEEK_SET); - - if (len != 0) { - - if ( memcmp(tbuf, "\x00\x00\xFE\xFF", 4) == 0 - || memcmp(tbuf, "\xFF\xFE\x00\x00", 4) == 0) { - - ERROR("UTF-32 signature detected\n"); - bom = 1; - } - else if ( memcmp(tbuf, "\xFE\xFF", 2) == 0 - || memcmp(tbuf, "\xFF\xFE", 2) == 0) { - - ERROR("UTF-16 signature detected\n"); - bom = 1; - } - else if (memcmp(tbuf, "\xEF\xBB\xBF", 3) == 0) { - - fseek(fd, 3UL, SEEK_SET); - } - } - - return bom; -} - -static int -readTEXTGetCN(read_t *rd, int dN, FILE *fd, fval_t *rbuf, int *rbuf_N) -{ - int label_N, fixed_N, total_N; - int N, cN, timeout; - char *r; - - label_N = 0; - cN = 0; - - fixed_N = 0; - total_N = 0; - - timeout = 100; - - do { - r = readTimeGetBuf(rd->data[dN].buf, sizeof(rd->data[0].buf), fd, timeout); - - total_N++; - - if (r == NULL) - break; - - if (label_N < 1) { - - label_N = readTEXTGetLabel(rd, dN); - } - else { - cN = readTEXTGetRow(rd, dN, label_N); - - if (cN != 0) { - - if (cN > label_N) { - - label_N = readTEXTGetLabel(rd, dN); - fixed_N = 0; - } - else { - for (N = 0; N < cN; ++N) { - - rbuf[fixed_N * READ_COLUMN_MAX + N] = rd->data[dN].row[N]; - } - - fixed_N++; - - if (fixed_N >= 3) { - - rd->data[dN].line_N = total_N + 1; - break; - } - } - } - } - - if (total_N >= READ_TEXT_SCAN_MAX) { - - cN = 0; - break; - } - } - while (1); - - *rbuf_N = fixed_N; - - return cN; -} - -static void -readClose(read_t *rd, int dN) -{ - async_close(rd->data[dN].afd); - - if (rd->data[dN].fd != stdin) { - - fclose(rd->data[dN].fd); - } - - rd->data[dN].fd = NULL; - rd->data[dN].afd = NULL; - - rd->files_N -= 1; -} - -void readOpenUnified(read_t *rd, int dN, int cN, int lN, const char *file, int fmt) -{ - fval_t rbuf[READ_COLUMN_MAX * 3]; - int N, rbuf_N; - - FILE *fd; - unsigned long long bF = 0U; - - if (rd->data[dN].fd != NULL) { - - readClose(rd, dN); - } - - if (fmt == FORMAT_PLAIN_STDIN) { - - fd = stdin; - } - else { - fd = unified_fopen(file, "rb"); - } - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - } - else { - if (fmt != FORMAT_PLAIN_STDIN) { - - file_stat(file, &bF); - } - - rd->data[dN].length_N = lN; - - if ( fmt == FORMAT_PLAIN_STDIN - || fmt == FORMAT_PLAIN_TEXT) { - - if (fmt != FORMAT_PLAIN_STDIN) { - - if (readTEXTSkipBOM(rd, fd) != 0) { - - fclose(fd); - return ; - } - } - - cN = readTEXTGetCN(rd, dN, fd, rbuf, &rbuf_N); - - if (cN < 1) { - - ERROR("No correct data in file \"%s\"\n", file); - fclose(fd); - return ; - } - - if (bF != 0 && lN < 1) { - - /* We do not use the file size to guess the - * length since there is an incremental dataset - * memory allocation. - * */ - lN = 1000; - } - else if (lN < 1) { - - lN = rd->length_N; - } - } - else if (fmt == FORMAT_BINARY_FLOAT) { - - lN = (lN < 1) ? bF / (cN * sizeof(float)) : lN; - rd->data[dN].line_N = 1; - } - else if (fmt == FORMAT_BINARY_DOUBLE) { - - lN = (lN < 1) ? bF / (cN * sizeof(double)) : lN; - rd->data[dN].line_N = 1; - } - -#ifdef _LEGACY - else if (fmt == FORMAT_BINARY_LEGACY_V1) { - - lN = (lN < 1) ? (bF - 6) / (cN * 6) : lN; - rd->data[dN].line_N = 1; - - fseek(fd, 6UL, SEEK_SET); - } - else if (fmt == FORMAT_BINARY_LEGACY_V2) { - - lN = (lN < 1) ? (bF - 4) / (cN * 4) : lN; - rd->data[dN].line_N = 1; - - fseek(fd, 4UL, SEEK_SET); - } -#endif /* _LEGACY */ - - plotDataAlloc(rd->pl, dN, cN, lN + 1); - - if ( fmt == FORMAT_PLAIN_STDIN - || fmt == FORMAT_PLAIN_TEXT) { - - for (N = 0; N < rbuf_N; ++N) { - - plotDataInsert(rd->pl, dN, rbuf + READ_COLUMN_MAX * N); - } - } - - rd->data[dN].format = fmt; - rd->data[dN].column_N = cN; - - strcpy(rd->data[dN].file, file); - - rd->data[dN].fd = fd; - rd->data[dN].afd = async_open(fd, rd->preload, rd->chunk, rd->timeout); - - rd->files_N += 1; - rd->bind_N = dN; - } -} - -void readOpenStub(read_t *rd, int dN, int cN, int lN, const char *file, int fmt) -{ - rd->data[dN].length_N = lN; - - lN = (lN < 1) ? 10 : lN; - - plotDataAlloc(rd->pl, dN, cN, lN + 1); - - rd->data[dN].format = fmt; - rd->data[dN].column_N = cN; - - strcpy(rd->data[dN].file, file); - - rd->bind_N = dN; -} - -void readToggleHint(read_t *rd, int dN, int cN) -{ - if (rd->data[dN].format == FORMAT_NONE) { - - ERROR("Dataset number %i was not allocated\n", dN); - return ; - } - - if (cN < 0 || cN >= rd->data[dN].column_N) { - - return ; - } - - if (rd->data[dN].hint[cN] == DATA_HINT_NONE) { - - rd->data[dN].hint[cN] = DATA_HINT_FLOAT; - } - else if (rd->data[dN].hint[cN] == DATA_HINT_FLOAT) { - - rd->data[dN].hint[cN] = DATA_HINT_HEX; - } - else if (rd->data[dN].hint[cN] == DATA_HINT_HEX) { - - rd->data[dN].hint[cN] = DATA_HINT_OCT; - } - else if (rd->data[dN].hint[cN] == DATA_HINT_OCT) { - - rd->data[dN].hint[cN] = DATA_HINT_NONE; - } -} - -static int -readTEXTCSV(read_t *rd, int dN) -{ - int r, cN; - - r = async_gets(rd->data[dN].afd, rd->data[dN].buf, sizeof(rd->data[0].buf)); - - if (r == ASYNC_OK) { - - cN = readTEXTGetRow(rd, dN, rd->pl->data[dN].column_N); - - if (cN == rd->pl->data[dN].column_N) { - - plotDataInsert(rd->pl, dN, rd->data[dN].row); - } - - return 1; - } - else if (r == ASYNC_END_OF_FILE) { - - readClose(rd, dN); - } - - return 0; -} - -static int -readFLOAT(read_t *rd, int dN) -{ - float *fb = (float *) rd->data[dN].buf; - int r, N, cN = rd->pl->data[dN].column_N; - - r = async_read(rd->data[dN].afd, (void *) fb, cN * sizeof(float)); - - if (r == ASYNC_OK) { - - for (N = 0; N < cN; ++N) - rd->data[dN].row[N] = (fval_t) fb[N]; - - plotDataInsert(rd->pl, dN, rd->data[dN].row); - - return 1; - } - else if (r == ASYNC_END_OF_FILE) { - - readClose(rd, dN); - } - - return 0; -} - -static int -readDOUBLE(read_t *rd, int dN) -{ - double *fb = (double *) rd->data[dN].buf; - int r, N, cN = rd->pl->data[dN].column_N; - - r = async_read(rd->data[dN].afd, (void *) fb, cN * sizeof(double)); - - if (r == ASYNC_OK) { - - for (N = 0; N < cN; ++N) - rd->data[dN].row[N] = (fval_t) fb[N]; - - plotDataInsert(rd->pl, dN, rd->data[dN].row); - - return 1; - } - else if (r == ASYNC_END_OF_FILE) { - - readClose(rd, dN); - } - - return 0; -} - -#ifdef _LEGACY -static int -readLEGACY(read_t *rd, int dN) -{ - char *fb = (char *) rd->data[dN].buf; - int r, N, cN = rd->pl->data[dN].column_N; - - if (rd->data[dN].format == FORMAT_BINARY_LEGACY_V1) { - - r = async_read(rd->data[dN].afd, (void *) fb, cN * 6); - } - else { - r = async_read(rd->data[dN].afd, (void *) fb, cN * 4); - } - - if (r == ASYNC_OK) { - - if (rd->data[dN].format == FORMAT_BINARY_LEGACY_V1) { - - for (N = 0; N < cN; ++N) - rd->data[dN].row[N] = * (float *) (fb + N * 6 + 2); - } - else { - for (N = 0; N < cN; ++N) - rd->data[dN].row[N] = * (float *) (fb + N * 4); - } - - plotDataInsert(rd->pl, dN, rd->data[dN].row); - - return 1; - } - else if (r == ASYNC_END_OF_FILE) { - - readClose(rd, dN); - } - - return 0; -} -#endif /* _LEGACY */ - -int readUpdate(read_t *rd) -{ - FILE *fd; - int dN, bN, tTOP, file_N = 0, ulN = 0; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - fd = rd->data[dN].fd; - - if (fd != NULL) { - - bN = 0; - file_N += 1; - - tTOP = SDL_GetTicks() + 20; - - do { - if ( rd->data[dN].format == FORMAT_PLAIN_STDIN - || rd->data[dN].format == FORMAT_PLAIN_TEXT) { - - if (readTEXTCSV(rd, dN) != 0) { - - ulN += 1; - } - else { - break; - } - } - else if (rd->data[dN].format == FORMAT_BINARY_FLOAT) { - - if (readFLOAT(rd, dN) != 0) { - - ulN += 1; - } - else { - break; - } - } - else if (rd->data[dN].format == FORMAT_BINARY_DOUBLE) { - - if (readDOUBLE(rd, dN) != 0) { - - ulN += 1; - } - else { - break; - } - } - -#ifdef _LEGACY - else if (rd->data[dN].format == FORMAT_BINARY_LEGACY_V1 - || rd->data[dN].format == FORMAT_BINARY_LEGACY_V2) { - - if (readLEGACY(rd, dN) != 0) { - - ulN += 1; - } - else { - break; - } - } -#endif /* _LEGACY */ - - rd->data[dN].line_N++; - bN++; - - if ( rd->data[dN].length_N < 1 - && plotDataSpaceLeft(rd->pl, dN) < 10) { - - plotDataGrowUp(rd->pl, dN); - } - } - while (SDL_GetTicks() < tTOP); - - plotDataSubtractResidual(rd->pl, dN); - } - } - - rd->files_N = (file_N < rd->files_N) ? file_N : rd->files_N; - - return ulN; -} - -static int -configGetC(parse_t *pa) -{ - int rc; - - if (pa->unchar < 0) { - - if (pa->fd != NULL) { - - rc = fgetc(pa->fd); - rc = (rc == EOF) ? -1 : rc; - } - else if (pa->in != NULL) { - - rc = *pa->in++; - rc = (rc == 0) ? -1 : rc; - } - else { - rc = -1; - } - } - else { - rc = pa->unchar; - pa->unchar = -1; - } - - return rc; -} - -static int -configUngetC(parse_t *pa, int c) -{ - pa->unchar = c; - - return c; -} - -static int -configToken(read_t *rd, parse_t *pa) -{ - char *p = pa->tbuf; - int c, n, rc = 0; - - do { c = configGetC(pa); } - while (strchr(rd->mk_config.space, c) != NULL); - - if (c < 0) { - - rc = -1; - } - else if (c == '"') { - - c = configGetC(pa); - n = 0; - - while (c != -1 && c != '"' && strchr(rd->mk_config.lend, c) == NULL) { - - if (n < READ_FILE_PATH_MAX - 1) { - - *p++ = c; - n++; - } - - c = configGetC(pa); - } - - if (strchr(rd->mk_config.lend, c) != NULL) - configUngetC(pa, c); - - *p = 0; - } - else if (strchr(rd->mk_config.lend, c) != NULL) { - - pa->line_N++; - pa->newline = 1; - - rc = 1; - } - else { - n = 0; - - do { - if (n < READ_TOKEN_MAX) { - - *p++ = c; - n++; - } - - c = configGetC(pa); - } - while (c != -1 && strchr(rd->mk_config.space, c) == NULL - && strchr(rd->mk_config.lend, c) == NULL); - - if (strchr(rd->mk_config.lend, c) != NULL) - configUngetC(pa, c); - - *p = 0; - } - - return rc; -} - -static void -configDataMap(read_t *rd, parse_t *pa) -{ - int dN, N = 0; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) - pa->dmap[dN] = -1; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if ( rd->data[dN].format == FORMAT_NONE - && rd->data[dN].file[0] == 0) { - - pa->dmap[N++] = dN; - } - } -} - -static int -configGetSubtract(read_t *rd, int pN, int fN, int axis) -{ - int N, sN = -1; - - for (N = 0; N < READ_SUBTRACT_MAX; ++N) { - - if (axis == 0) { - - if (rd->page[pN].fig[fN].bX[N].busy == SUBTRACT_FREE) { - - sN = N; - break; - } - } - else if (axis == 1) { - - if (rd->page[pN].fig[fN].bY[N].busy == SUBTRACT_FREE) { - - sN = N; - break; - } - } - } - - return sN; -} - -static void -configParseFSM(read_t *rd, parse_t *pa) -{ - char msg_tbuf[READ_FILE_PATH_MAX]; - char lpath[READ_FILE_PATH_MAX]; - char lname[READ_FILE_PATH_MAX]; - - char *lbuf, *tbuf = pa->tbuf; - int r, failed, N; - - double argd[2]; - int argi[4]; - - FILE *fd; - parse_t rpa; - - configDataMap(rd, pa); - - failed = 0; - - do { - r = configToken(rd, pa); - - if (r == 0 && pa->newline != 0) { - - sprintf(msg_tbuf, "unable to parse \"%.80s\"", tbuf); - - if (tbuf[0] == '#') { - - failed = 0; - } - else if (strcmp(tbuf, "include") == 0) { - - failed = 1; - - r = configToken(rd, pa); - - if (r == 0) { - - lbuf = tbuf; - - if (pa->path != NULL && tbuf[0] != '/') { - - sprintf(lpath, "%s/%s", pa->path, tbuf); - lbuf = lpath; - } - - fd = unified_fopen(lbuf, "r"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", tbuf, strerror(errno)); - } - else { - failed = 0; - - strcpy(rpa.file, tbuf); - - rpa.path = pa->path; - rpa.fd = fd; - rpa.in = NULL; - - rpa.unchar = -1; - rpa.line_N = 1; - rpa.newline = 1; - rpa.fromUI = pa->fromUI; - - configParseFSM(rd, &rpa); - - fclose(fd); - } - } - } - else if (strcmp(tbuf, "gpconfig") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0) { - - failed = 0; - rd->config_version = argi[0]; - } - else { - sprintf(msg_tbuf, "unknown config version %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "font") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0) { - - if (strcmp(tbuf, "normal") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_NORMAL, - argi[0], TTF_STYLE_NORMAL); - } - else if (strcmp(tbuf, "normal-bold") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_NORMAL, - argi[0], TTF_STYLE_BOLD); - } - else if (strcmp(tbuf, "normal-italic") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_NORMAL, - argi[0], TTF_STYLE_ITALIC); - } - else if (strcmp(tbuf, "thin") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_THIN, - argi[0], TTF_STYLE_NORMAL); - } - else if (strcmp(tbuf, "thin-bold") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_THIN, - argi[0], TTF_STYLE_BOLD); - } - else if (strcmp(tbuf, "thin-italic") == 0) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_THIN, - argi[0], TTF_STYLE_ITALIC); - } - else { - r = plotFontOpen(rd->pl, tbuf, argi[0], TTF_STYLE_NORMAL); - - if (r == 0) { - - strcpy(rd->ttfname, tbuf); - } - else { - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_NORMAL, - argi[0], TTF_STYLE_NORMAL); - } - } - - if (rd->pl->font != NULL) { - - failed = 0; - } - } - } - while (0); - } - -#ifdef _WINDOWS - else if (strcmp(tbuf, "legacy_label") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - failed = 0; - rd->legacy_label = argi[0]; - } - while (0); - } -#endif /* _WINDOWS */ - - else if (strcmp(tbuf, "preload") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > sizeof(rd->data[0].buf)) { - - failed = 0; - rd->preload = argi[0]; - } - else { - sprintf(msg_tbuf, "preload size %i is too small", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "chunk") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0) { - - failed = 0; - rd->chunk = argi[0]; - } - else { - sprintf(msg_tbuf, "chunk size %i must be positive", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "timeout") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0) { - - failed = 0; - rd->timeout = argi[0]; - } - else { - sprintf(msg_tbuf, "timeout %i must be non-negative", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "length") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0) { - - failed = 0; - rd->length_N = argi[0]; - } - else { - sprintf(msg_tbuf, "data length %i must be positive", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "screenpath") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0) { - - failed = 0; - strcpy(rd->screenpath, tbuf); - } - } - while (0); - } - else if (strcmp(tbuf, "windowsize") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - if (argi[0] >= GP_MIN_SIZE_X && argi[1] >= GP_MIN_SIZE_Y) { - - failed = 0; - rd->window_size_x = argi[0]; - rd->window_size_y = argi[1]; - } - else { - sprintf(msg_tbuf, "too small window sizes %i %i", argi[0], argi[1]); - } - } - while (0); - } - else if (strcmp(tbuf, "language") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= LANG_EN && argi[0] < LANG_END_OF_LIST) { - - failed = 0; - rd->language = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid language number %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "colorscheme") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] <= 2) { - - failed = 0; - rd->colorscheme = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid colorscheme number %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "antialiasing") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] < 3) { - - failed = 0; - rd->dw->antialiasing = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid antialiasing %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "blendfont") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] <= 1) { - - failed = 0; - rd->dw->blendfont = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid blendfont %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "thickness") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] < 3) { - - failed = 0; - rd->dw->thickness = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid thickness %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "gamma") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0 && argi[0] < 1000) { - - failed = 0; - rd->dw->gamma = argi[0]; - - drawGamma(rd->dw); - } - else { - sprintf(msg_tbuf, "invalid gamma %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "timecol") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= -1 && argi[0] < READ_COLUMN_MAX) { - - failed = 0; - rd->timecol = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid column number %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "shortfilename") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0) { - - failed = 0; - rd->shortfilename = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid number of dirs %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "fastdraw") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0) { - - failed = 0; - rd->fastdraw = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid fastdraw %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "interpolation") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] <= 1) { - - failed = 0; - rd->pl->interpolation = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid interpolation %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "defungap") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0) { - - failed = 0; - rd->pl->defungap = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid defungap %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "density") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0 && argi[0] < 100) { - - failed = 0; - rd->pl->mark_density = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid density %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "marker") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] > 0 && argi[0] < 100) { - - failed = 0; - rd->pl->mark_size = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid marker %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "transparency") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] <= 1) { - - failed = 0; - rd->pl->transparency = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid transparency %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "precision") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 1 && argi[0] <= 16) { - - failed = 0; - rd->pl->fprecision = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid precision %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "delim") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0) { - - failed = 0; - rd->mk_text.delim = tbuf[0]; - } - } - while (0); - } - else if (strcmp(tbuf, "space") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0) { - - failed = 0; - strcpy(rd->mk_text.space, tbuf); - strcat(rd->mk_text.space, rd->mk_config.space); - } - } - while (0); - } - else if (strcmp(tbuf, "lz4_compress") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (rd->bind_N != -1) { - - if (pa->fromUI != 0) { - - failed = 0; - break; - } - - sprintf(msg_tbuf, "unable if dataset was already opened"); - break; - } - - if (argi[0] >= 0 && argi[0] < 2) { - - failed = 0; - rd->pl->lz4_compress = argi[0]; - } - else { - sprintf(msg_tbuf, "invalid lz4_compress %i", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "load") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] < 0 || argi[0] >= PLOT_DATASET_MAX) { - - sprintf(msg_tbuf, "dataset number %i is out of range", argi[0]); - break; - } - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0) { - - if (strcmp(tbuf, "stdin") == 0) { - - argi[2] = FORMAT_PLAIN_STDIN; - } - else if (strcmp(tbuf, "text") == 0) { - - argi[2] = FORMAT_PLAIN_TEXT; - } - else if (strcmp(tbuf, "float") == 0) { - - argi[2] = FORMAT_BINARY_FLOAT; - } - else if (strcmp(tbuf, "double") == 0) { - - argi[2] = FORMAT_BINARY_DOUBLE; - } - else { - sprintf(msg_tbuf, "invalid file format \"%.80s\"", tbuf); - break; - } - } - else break; - - if (argi[2] == FORMAT_PLAIN_STDIN) { - - int dN_remap; - - dN_remap = pa->dmap[argi[0]]; - - if (dN_remap < 0) { - - sprintf(msg_tbuf, "no free dataset to remap %i", argi[0]); - break; - } - - readOpenUnified(rd, dN_remap, argi[3], argi[1], "", argi[2]); - - if (rd->data[dN_remap].fd == NULL) { - - rd->bind_N = -1; - } - - failed = 0; - break; - } - else if ( argi[2] == FORMAT_BINARY_FLOAT - || argi[2] == FORMAT_BINARY_DOUBLE) { - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[3], tbuf) != NULL) ; - else break; - } - - r = configToken(rd, pa); - - if (r == 0) { - - int dN_remap; - - dN_remap = pa->dmap[argi[0]]; - - if (dN_remap < 0) { - - sprintf(msg_tbuf, "no free dataset to remap %i", argi[0]); - break; - } - - lbuf = tbuf; - - if (pa->path != NULL && tbuf[0] != '/') { - - sprintf(lpath, "%s/%s", pa->path, tbuf); - lbuf = lpath; - } - - readOpenUnified(rd, dN_remap, argi[3], argi[1], lbuf, argi[2]); - - if (rd->data[dN_remap].fd == NULL) { - - if ( argi[2] == FORMAT_BINARY_FLOAT - || argi[2] == FORMAT_BINARY_DOUBLE) { - - readOpenStub(rd, dN_remap, argi[3], - argi[1], lbuf, argi[2]); - } - else { - rd->bind_N = -1; - } - } - - failed = 0; - } - else break; - } - while (0); - } - else if (strcmp(tbuf, "bind") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] < PLOT_DATASET_MAX) { - - int dN_remap; - - dN_remap = pa->dmap[argi[0]]; - - if ( dN_remap >= 0 && - rd->data[dN_remap].format != FORMAT_NONE) { - - failed = 0; - rd->bind_N = dN_remap; - } - else { - sprintf(msg_tbuf, "no dataset has a number %i", argi[0]); - } - } - else { - sprintf(msg_tbuf, "dataset number %i is out of range", argi[0]); - } - } - while (0); - } - else if (strcmp(tbuf, "group") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (argi[0] < 0 || argi[0] >= PLOT_GROUP_MAX) { - - sprintf(msg_tbuf, "group number %i is out of range", argi[0]); - break; - } - - if (rd->bind_N < 0) { - - sprintf(msg_tbuf, "no dataset selected"); - break; - } - - do { - r = configToken(rd, pa); - - if (r != 0) { - - failed = 0; - break; - } - - if (stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - if (argi[1] >= -1 && argi[1] < rd->pl->data[rd->bind_N].column_N) { - - failed = 0; - - plotGroupAdd(rd->pl, rd->bind_N, argi[0], argi[1]); - } - else { - sprintf(msg_tbuf, "column number %i is out of range", argi[1]); - break; - } - } - while (1); - } - while (0); - } - else if (strcmp(tbuf, "deflabel") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (argi[0] >= 0 && argi[0] < PLOT_GROUP_MAX) { - - failed = 0; - - plotGroupLabel(rd->pl, argi[0], tbuf); - } - else { - sprintf(msg_tbuf, "group number %i is out of range", argi[0]); - break; - } - } - while (0); - } - else if (strcmp(tbuf, "defmedian") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - if (argi[1] < 1 || argi[1] > PLOT_MEDIAN_MAX) { - - sprintf(msg_tbuf, "median length %i is out of range", argi[1]); - break; - } - - argi[2] = 0; - argi[3] = 0; - - r = configToken(rd, pa); - - if (r == 0) { - - stoi(&rd->mk_config, &argi[2], tbuf); - - r = configToken(rd, pa); - - if (r == 0) { - - stoi(&rd->mk_config, &argi[3], tbuf); - } - } - - if (argi[0] >= 0 && argi[0] < PLOT_GROUP_MAX) { - - failed = 0; - - plotGroupMedian(rd->pl, argi[0], argi[1], argi[2], argi[3]); - } - else { - sprintf(msg_tbuf, "group number %i is out of range", argi[0]); - break; - } - } - while (0); - } - else if (strcmp(tbuf, "defscale") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[1], tbuf) != NULL) ; - else break; - - if (argi[0] >= 0 && argi[0] < PLOT_GROUP_MAX) { - - failed = 0; - - plotGroupScale(rd->pl, argi[0], 1, argd[0], argd[1]); - } - else { - sprintf(msg_tbuf, "group number %i is out of range", argi[0]); - break; - } - } - while (0); - } - else if (strcmp(tbuf, "page") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (rd->bind_N < 0) { - - sprintf(msg_tbuf, "no dataset selected"); - break; - } - - if (r == 0) { - - failed = 0; - - if (rd->page_N < 0) { - - rd->page_N = 1; - } - - while (rd->page[rd->page_N].busy != 0) { - - rd->page_N++; - - if (rd->page_N >= READ_PAGE_MAX) - break; - } - - if (rd->page_N >= READ_PAGE_MAX) { - - sprintf(msg_tbuf, "no free pages to remap"); - break; - } - - rd->figure_N = -1; - rd->page[rd->page_N].busy = 1; - - lbuf = tbuf; - - if (pa->fromUI != 0) { - - readCutFile(rd, lpath, pa->file, 95); - - sprintf(lname, "%s: %.95s", lpath, tbuf); - lbuf = lname; - } - - readCutLabel(rd->page[rd->page_N].title, lbuf, PLOT_STRING_MAX); - } - } - while (0); - } - else if (strcmp(tbuf, "mkpages") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - if (rd->bind_N < 0) { - - sprintf(msg_tbuf, "no dataset selected"); - break; - } - - if (argi[0] >= -2 && argi[0] < rd->pl->data[rd->bind_N].column_N) { - - failed = 0; - - readMakePages(rd, rd->bind_N, argi[0], pa->fromUI); - } - else { - sprintf(msg_tbuf, "column number %i is out of range", argi[0]); - break; - } - } - while (0); - } - else if (strcmp(tbuf, "label") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (rd->page_N < 0) { - - sprintf(msg_tbuf, "no page selected"); - break; - } - - if (r == 0) { - - if (argi[0] >= 0 && argi[0] < PLOT_AXES_MAX) { - - failed = 0; - strcpy(rd->page[rd->page_N].ax[argi[0]].label, tbuf); - } - else { - sprintf(msg_tbuf, "axis number %i is out of range", argi[0]); - } - } - } - while (0); - } - else if (strcmp(tbuf, "slave") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[1], tbuf) != NULL) ; - else break; - - if (rd->page_N < 0) { - - sprintf(msg_tbuf, "no page selected"); - break; - } - - if (argi[0] >= 0 && argi[0] < PLOT_AXES_MAX - && argi[1] >= 0 && argi[1] < PLOT_AXES_MAX) { - - failed = 0; - rd->page[rd->page_N].ax[argi[0]].slave = 1; - rd->page[rd->page_N].ax[argi[0]].slave_N = argi[1]; - rd->page[rd->page_N].ax[argi[0]].scale = argd[0]; - rd->page[rd->page_N].ax[argi[0]].offset = argd[1]; - } - else { - sprintf(msg_tbuf, "axes numbers %i %i are out of range", argi[0], argi[1]); - } - } - while (0); - } - else if (strcmp(tbuf, "figure") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (rd->page_N < 0) { - - sprintf(msg_tbuf, "no page selected"); - break; - } - - if (rd->bind_N < 0) { - - sprintf(msg_tbuf, "no dataset selected"); - break; - } - - if (argi[0] < -1 || argi[0] >= rd->pl->data[rd->bind_N].column_N - || argi[1] < -1 || argi[1] >= rd->pl->data[rd->bind_N].column_N) { - - sprintf(msg_tbuf, "column numbers %i %i are out of range", argi[0], argi[1]); - break; - } - - if (r == 0) { - - if (rd->figure_N < PLOT_FIGURE_MAX - 1) { - - failed = 0; - rd->figure_N++; - - rd->page[rd->page_N].fig[rd->figure_N].busy = 1; - rd->page[rd->page_N].fig[rd->figure_N].drawing = -1; - rd->page[rd->page_N].fig[rd->figure_N].dN = rd->bind_N; - rd->page[rd->page_N].fig[rd->figure_N].cX = argi[0]; - rd->page[rd->page_N].fig[rd->figure_N].cY = argi[1]; - rd->page[rd->page_N].fig[rd->figure_N].aX = 0; - rd->page[rd->page_N].fig[rd->figure_N].aY = 1; - - strcpy(rd->page[rd->page_N].fig[rd->figure_N].label, tbuf); - } - else { - sprintf(msg_tbuf, "too many figures on page %i", rd->page_N); - } - } - } - while (0); - } - else if (strcmp(tbuf, "map") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - if (rd->figure_N < 0) { - - sprintf(msg_tbuf, "no figure selected"); - break; - } - - if (argi[0] >= 0 && argi[0] < PLOT_AXES_MAX - && argi[1] >= 0 && argi[1] < PLOT_AXES_MAX) { - - failed = 0; - rd->page[rd->page_N].fig[rd->figure_N].aX = argi[0]; - rd->page[rd->page_N].fig[rd->figure_N].aY = argi[1]; - } - else { - sprintf(msg_tbuf, "axes numbers %i %i are out of range", argi[0], argi[1]); - } - } - while (0); - } - else if (strcmp(tbuf, "xscale") == 0 || strcmp(tbuf, "yscale") == 0) { - - failed = 1; - - do { - argi[0] = (int) tbuf[0]; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[0], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[1], tbuf) != NULL) ; - else break; - - if (rd->figure_N < 0) { - - sprintf(msg_tbuf, "no figure selected"); - break; - } - - if (argi[0] == 'x') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 0); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].busy = SUBTRACT_SCALE; - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[0] = argd[0]; - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[1] = argd[1]; - } - } - else if (argi[0] == 'y') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 1); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].busy = SUBTRACT_SCALE; - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[0] = argd[0]; - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[1] = argd[1]; - } - } - } - while (0); - } - else if (strcmp(tbuf, "xsubtract") == 0 || strcmp(tbuf, "ysubtract") == 0) { - - failed = 1; - - do { - argi[0] = (int) tbuf[0]; - - r = configToken(rd, pa); - - if (r == 0) { - - if (strcmp(tbuf, "sub") == 0) { - - argi[1] = SUBTRACT_BINARY_SUBTRACTION; - } - else if (strcmp(tbuf, "add") == 0) { - - argi[1] = SUBTRACT_BINARY_ADDITION; - } - else if (strcmp(tbuf, "mul") == 0) { - - argi[1] = SUBTRACT_BINARY_MULTIPLICATION; - } - else if (strcmp(tbuf, "hyp") == 0) { - - argi[1] = SUBTRACT_BINARY_HYPOTENUSE; - } - else { - sprintf(msg_tbuf, "invalid subtract operation \"%.80s\"", tbuf); - break; - } - } - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[2], tbuf) != NULL) ; - else break; - - if (rd->figure_N < 0) { - - sprintf(msg_tbuf, "no figure selected"); - break; - } - - if (argi[0] == 'x') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 0); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].busy = argi[1]; - rd->page[rd->page_N].fig[rd->figure_N].bX[N].column_2 = argi[2]; - } - } - else if (argi[0] == 'y') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 1); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].busy = argi[1]; - rd->page[rd->page_N].fig[rd->figure_N].bY[N].column_2 = argi[2]; - } - } - } - while (0); - } - else if (strcmp(tbuf, "xfilter") == 0 || strcmp(tbuf, "yfilter") == 0) { - - failed = 1; - - do { - argi[0] = (int) tbuf[0]; - - r = configToken(rd, pa); - - if (r == 0) { - - if (strcmp(tbuf, "diff") == 0) { - - argi[1] = SUBTRACT_FILTER_DIFFERENCE; - } - else if (strcmp(tbuf, "csum") == 0) { - - argi[1] = SUBTRACT_FILTER_CUMULATIVE; - } - else if (strcmp(tbuf, "bf") == 0) { - - argi[1] = SUBTRACT_FILTER_BITMASK; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[2], tbuf) != NULL) ; - else break; - - r = configToken(rd, pa); - - if (r != 0) { - - if (stoi(&rd->mk_config, &argi[3], tbuf) != NULL) ; - else break; - } - else { - argi[3] = argi[2]; - } - } - else if (strcmp(tbuf, "low") == 0) { - - argi[1] = SUBTRACT_FILTER_LOW_PASS; - - r = configToken(rd, pa); - - if (r == 0 && stod(&rd->mk_config, &argd[0], tbuf) != NULL) ; - else break; - } - else if (strcmp(tbuf, "med") == 0) { - - argi[1] = SUBTRACT_FILTER_MEDIAN; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[2], tbuf) != NULL) ; - else break; - - if (argi[2] < 3 || argi[2] > PLOT_MEDIAN_MAX) { - - sprintf(msg_tbuf, "median length %i is out of range", argi[2]); - break; - } - } - else { - sprintf(msg_tbuf, "invalid filter operation \"%.80s\"", tbuf); - break; - } - } - - if (rd->figure_N < 0) { - - sprintf(msg_tbuf, "no figure selected"); - break; - } - - if (argi[0] == 'x') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 0); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].busy = argi[1]; - - if (argi[1] == SUBTRACT_FILTER_BITMASK) { - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[0] = argi[2]; - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[1] = argi[3]; - } - else if (argi[1] == SUBTRACT_FILTER_LOW_PASS) { - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[0] = argd[0]; - } - else if (argi[1] == SUBTRACT_FILTER_MEDIAN) { - - rd->page[rd->page_N].fig[rd->figure_N].bX[N].args[0] = argi[2]; - } - } - } - else if (argi[0] == 'y') { - - N = configGetSubtract(rd, rd->page_N, rd->figure_N, 1); - - if (N < 0) { - - sprintf(msg_tbuf, "no free subtract found"); - } - else { - failed = 0; - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].busy = argi[1]; - - if (argi[1] == SUBTRACT_FILTER_BITMASK) { - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[0] = argi[2]; - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[1] = argi[3]; - } - else if (argi[1] == SUBTRACT_FILTER_LOW_PASS) { - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[0] = argd[0]; - } - else if (argi[1] == SUBTRACT_FILTER_MEDIAN) { - - rd->page[rd->page_N].fig[rd->figure_N].bY[N].args[0] = argi[2]; - } - } - } - } - while (0); - } - else if (strcmp(tbuf, "drawing") == 0) { - - failed = 1; - - do { - r = configToken(rd, pa); - - if (r == 0) { - - if (strcmp(tbuf, "line") == 0) - argi[0] = FIGURE_DRAWING_LINE; - else if (strcmp(tbuf, "dash") == 0) - argi[0] = FIGURE_DRAWING_DASH; - else if (strcmp(tbuf, "dot") == 0) - argi[0] = FIGURE_DRAWING_DOT; - else { - sprintf(msg_tbuf, "invalid drawing \"%.80s\"", tbuf); - break; - } - } - else break; - - r = configToken(rd, pa); - - if (r == 0 && stoi(&rd->mk_config, &argi[1], tbuf) != NULL) ; - else break; - - if (argi[1] >= 0 && argi[1] <= 16) { - - failed = 0; - - if (rd->figure_N < 0) { - - rd->pl->default_drawing = argi[0]; - rd->pl->default_width = argi[1]; - } - else { - rd->page[rd->page_N].fig[rd->figure_N].drawing = argi[0]; - rd->page[rd->page_N].fig[rd->figure_N].width = argi[1]; - } - } - else { - sprintf(msg_tbuf, "figure width %i is out of range", argi[1]); - } - } - while (0); - } - else { - failed = 1; - - sprintf(msg_tbuf, "unknown token \"%.80s\"", tbuf); - } - - if (failed) { - - ERROR("%s:%i: %s\n", pa->file, pa->line_N, msg_tbuf); - } - - pa->newline = 0; - } - else if (r < 0) - break; - } - while (1); -} - -void readConfigIN(read_t *rd, const char *config, int fromUI) -{ - parse_t pa; - int pN; - - strcpy(pa.file, "inline"); - - pa.path = NULL; - pa.fd = NULL; - pa.in = config; - - pa.unchar = -1; - pa.line_N = 1; - pa.newline = 1; - pa.fromUI = fromUI; - - pN = rd->page_N; - - configParseFSM(rd, &pa); - - if (fromUI != 0) { - - rd->page_N = pN; - } -} - -static char * -readDirName(char *path) -{ - char *eol; - - eol = path + strlen(path) - 1; - - do { - if (*eol == '/' || *eol == '\\') - break; - - if (path == eol) - break; - - eol--; - } - while (1); - - if (eol != path) { - - *eol = 0; - } - else { - path = NULL; - } - - return path; -} - -void readConfigGP(read_t *rd, const char *file, int fromUI) -{ - char lpath[READ_FILE_PATH_MAX]; - - FILE *fd; - parse_t pa; - int pN; - - fd = unified_fopen(file, "r"); - - if (fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - } - else { - if (readTEXTSkipBOM(rd, fd) != 0) { - - fclose(fd); - return ; - } - - strcpy(pa.file, file); - strcpy(lpath, file); - - pa.path = readDirName(lpath); - pa.fd = fd; - pa.in = NULL; - - pa.unchar = -1; - pa.line_N = 1; - pa.newline = 1; - pa.fromUI = fromUI; - - pN = rd->page_N; - - configParseFSM(rd, &pa); - - if (fromUI != 0) { - - rd->page_N = pN; - } - - fclose(fd); - } -} - -void readConfigVerify(read_t *rd) -{ - if (rd->pl->font == NULL) { - - plotFontDefault(rd->pl, TTF_ID_ROBOTO_MONO_NORMAL, 24, TTF_STYLE_NORMAL); - } - - rd->page_N = -1; -} - -static void -readGetUnit(char *tbuf, const char *label, int allowed) -{ - const char *text; - int length; - - text = strchr(label, '@'); - - if (text != NULL) { - - text += 1; - length = utf8_length(text); - - if (length > (allowed - 1)) { - - text = utf8_skip(text, length - (allowed - 1)); - - strcpy(tbuf, "~"); - strcat(tbuf, text); - } - else { - strcpy(tbuf, text); - } - } - else { - *tbuf = 0; - } -} - -void readMakePages(read_t *rd, int dN, int cX, int fromUI) -{ - char tbuf[READ_FILE_PATH_MAX]; - char sbuf[READ_FILE_PATH_MAX]; - int N, pN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - cX = (cX < -1) ? rd->timecol : cX; - pN = rd->page_N; - - if (cX < -1 || cX >= rd->pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Time column number %i is out of range\n", cX); - return ; - } - - for (N = 0; N < rd->data[dN].column_N; ++N) { - - if (pN < 0) { - - pN = 1; - } - - while (rd->page[pN].busy != 0) { - - pN++; - - if (pN >= READ_PAGE_MAX) - break; - } - - if (pN >= READ_PAGE_MAX) - break; - - rd->page[pN].busy = 2; - - readCutFile(rd, tbuf, rd->data[dN].file, 95); - - sprintf(sbuf, "%s: [%2i] %.95s", tbuf, N, rd->data[dN].label[N]); - readCutLabel(rd->page[pN].title, sbuf, PLOT_STRING_MAX); - - rd->page[pN].fig[0].busy = 1; - rd->page[pN].fig[0].drawing = -1; - rd->page[pN].fig[0].dN = dN; - rd->page[pN].fig[0].cX = cX; - rd->page[pN].fig[0].cY = N; - rd->page[pN].fig[0].aX = 0; - rd->page[pN].fig[0].aY = 1; - - readCutFile(rd, tbuf, rd->data[dN].file, 20); - - sprintf(sbuf, "%s: [%2i] %.95s", tbuf, N, rd->data[dN].label[N]); - readCutLabel(rd->page[pN].fig[0].label, sbuf, PLOT_STRING_MAX); - - if (cX >= 0) { - - readGetUnit(tbuf, rd->data[dN].label[cX], 20); - strcpy(rd->page[pN].ax[0].label, tbuf); - } - else { - rd->page[pN].ax[0].label[0] = 0; - } - - readGetUnit(tbuf, rd->data[dN].label[N], 20); - strcpy(rd->page[pN].ax[1].label, tbuf); - } - - if (fromUI == 0) { - - rd->page_N = pN; - rd->figure_N = -1; - } -} - -void readDatasetClean(read_t *rd, int dN) -{ - page_t *pg; - int N, pN, pW, fN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - pN = 1; - - do { - if (rd->page[pN].busy != 0) { - - pg = rd->page + pN; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pg->fig[fN].dN == dN) - pg->fig[fN].busy = 0; - } - - N = 0; - - for (fN = 0; fN < PLOT_FIGURE_MAX; ++fN) { - - if (pg->fig[fN].busy != 0) - ++N; - } - - if (N == 0) { - - memset(&rd->page[pN], 0, sizeof(rd->page[0])); - } - } - - pN += 1; - - if (pN >= READ_PAGE_MAX) - break; - } - while (1); - - pN = 1; - pW = 1; - - do { - if (rd->page[pN].busy != 0) { - - if (pN != pW) { - - memcpy(&rd->page[pW], &rd->page[pN], sizeof(rd->page[0])); - memset(&rd->page[pN], 0, sizeof(rd->page[0])); - } - - pW += 1; - } - - pN += 1; - - if (pN >= READ_PAGE_MAX) - break; - } - while (1); - - if (rd->data[dN].fd != NULL) { - - readClose(rd, dN); - } - - memset(&rd->data[dN], 0, sizeof(rd->data[0])); - - plotFigureGarbage(rd->pl, dN); - - plotDataRangeCacheClean(rd->pl, dN); - plotDataClean(rd->pl, dN); -} - -int readGetTimeColumn(read_t *rd, int dN) -{ - page_t *pg; - int cNP, pN; - - cNP = -2; - pN = 1; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return cNP; - } - - do { - if (rd->page[pN].busy == 2) { - - pg = rd->page + pN; - - if (pg->fig[0].dN == dN) { - - cNP = pg->fig[0].cX; - break; - } - } - - pN += 1; - - if (pN >= READ_PAGE_MAX) - break; - } - while (1); - - return cNP; -} - -void readSetTimeColumn(read_t *rd, int dN, int cX) -{ - char tbuf[READ_TOKEN_MAX]; - page_t *pg; - int gN, cNP, pN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return ; - } - - if (cX < -1 || cX >= rd->pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Time column number %i is out of range\n", cX); - return ; - } - - cNP = -2; - pN = 1; - - do { - if (rd->page[pN].busy == 2) { - - pg = rd->page + pN; - - if (pg->fig[0].dN == dN) { - - cNP = (cNP == -2) ? pg->fig[0].cX : cNP; - - pg->fig[0].cX = cX; - - if (cX >= 0) { - - readGetUnit(tbuf, rd->data[dN].label[cX], 20); - strcpy(rd->page[pN].ax[0].label, tbuf); - } - else { - rd->page[pN].ax[0].label[0] = 0; - } - } - } - - pN += 1; - - if (pN >= READ_PAGE_MAX) - break; - } - while (1); - - if (cNP != -2) { - - gN = rd->pl->data[dN].map[cNP]; - - if (gN != -1) { - - rd->pl->data[dN].map[cNP] = -1; - rd->pl->data[dN].map[cX] = gN; - } - } -} - -static tuple_t -readTimeDataMap(plot_t *pl, int dN, int cNX, int cNY) -{ - tuple_t uMAP, uN = { cNX, cNY }; - int gN; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return uN; - } - - if (cNX < -1 || cNX >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cNX); - return uN; - } - - if (cNY < -1 || cNY >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cNY); - return uN; - } - - if (pl->data[dN].map == NULL) { - - ERROR("Dataset number %i was not allocated\n", dN); - return uN; - } - - gN = pl->data[dN].map[cNX]; - - if (gN != -1) { - - if (pl->group[gN].op_time_median != 0) { - - uMAP = plotGetSubtractTimeMedian(pl, dN, cNX, cNY, - pl->group[gN].length, pl->group[gN].op_time_unwrap, - pl->group[gN].op_time_opdata); - - if (uMAP.X != -1) { - - pl->data[dN].map[uMAP.X] = gN; - - uN = uMAP; - } - } - } - - return uN; -} - -static int -readScaleDataMap(plot_t *pl, int dN, int cN, subtract_t *sb) -{ - int N, gN, cMAP; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return cN; - } - - if (cN < -1 || cN >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN); - return cN; - } - - if (pl->data[dN].map == NULL) { - - ERROR("Dataset number %i was not allocated\n", dN); - return cN; - } - - gN = pl->data[dN].map[cN]; - - if (gN != -1) { - - if (pl->group[gN].op_scale != 0) { - - cMAP = plotGetSubtractScale(pl, dN, cN, - pl->group[gN].scale, - pl->group[gN].offset); - - if (cMAP != -1) { - - pl->data[dN].map[cMAP] = gN; - cN = cMAP; - } - } - } - - for (N = 0; N < READ_SUBTRACT_MAX; ++N) { - - if (sb[N].busy == SUBTRACT_SCALE) { - - cMAP = plotGetSubtractScale(pl, dN, cN, - sb[N].args[0], sb[N].args[1]); - - if (cMAP != -1) { - - cN = cMAP; - } - } - else if (sb[N].busy == SUBTRACT_RESAMPLE) { - - /* TODO */ - } - else if ( sb[N].busy == SUBTRACT_BINARY_SUBTRACTION - || sb[N].busy == SUBTRACT_BINARY_ADDITION - || sb[N].busy == SUBTRACT_BINARY_MULTIPLICATION - || sb[N].busy == SUBTRACT_BINARY_HYPOTENUSE) { - - cMAP = plotGetSubtractBinary(pl, dN, sb[N].busy, - cN, sb[N].column_2); - - if (cMAP != -1) { - - cN = cMAP; - } - } - else if ( sb[N].busy == SUBTRACT_FILTER_DIFFERENCE - || sb[N].busy == SUBTRACT_FILTER_CUMULATIVE - || sb[N].busy == SUBTRACT_FILTER_LOW_PASS) { - - cMAP = plotGetSubtractFilter(pl, dN, cN, - sb[N].busy, sb[N].args[0]); - - if (cMAP != -1) { - - cN = cMAP; - } - } - else if (sb[N].busy == SUBTRACT_FILTER_BITMASK) { - - cMAP = plotGetSubtractFilter(pl, dN, cN, sb[N].busy, - sb[N].args[0] + sb[N].args[1] * (double) 0x100U); - - if (cMAP != -1) { - - cN = cMAP; - } - } - else if (sb[N].busy == SUBTRACT_FILTER_MEDIAN) { - - cMAP = plotGetSubtractMedian(pl, dN, cN, - sb[N].busy, sb[N].args[0]); - - if (cMAP != -1) { - - cN = cMAP; - } - } - } - - return cN; -} - -void readSelectPage(read_t *rd, int pN) -{ - plot_t *pl = rd->pl; - page_t *pg; - - tuple_t uN; - int N, cX, cY; - - if (pN < 0 || pN >= READ_PAGE_MAX) { - - ERROR("Page number is out of range\n"); - return ; - } - - pg = rd->page + pN; - - if (pg->busy == 0) - return; - - rd->page_N = pN; - - plotFigureClean(pl); - - plotDataRangeCacheSubtractClean(pl); - plotDataSubtractClean(pl); - plotDataSubtractPaused(pl); - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pg->fig[N].busy != 0) { - - uN = readTimeDataMap(pl, pg->fig[N].dN, pg->fig[N].cX, pg->fig[N].cY); - - cX = uN.X; - cY = uN.Y; - - cX = readScaleDataMap(pl, pg->fig[N].dN, cX, pg->fig[N].bX); - cY = readScaleDataMap(pl, pg->fig[N].dN, cY, pg->fig[N].bY); - - plotFigureAdd(pl, N, pg->fig[N].dN, cX, cY, pg->fig[N].aX, - pg->fig[N].aY, pg->fig[N].label); - - if (pg->fig[N].drawing != -1) { - - pl->figure[N].drawing = pg->fig[N].drawing; - pl->figure[N].width = pg->fig[N].width; - } - } - } - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - plotAxisLabel(pl, N, pg->ax[N].label); - - if (pg->ax[N].slave != 0) { - - plotAxisSlave(pl, N, pg->ax[N].slave_N, pg->ax[N].scale, - pg->ax[N].offset, AXIS_SLAVE_ENABLE); - } - } - - plotDataSubtractAlternate(rd->pl); - - plotLayout(pl); - plotAxisScaleDefault(pl); -} - -static int -readCombineGetFreeAxis(plot_t *pl, int *map) -{ - int N, J, sF, aN = -1; - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - if (pl->axis[N].busy == AXIS_FREE) { - - sF = 0; - - for (J = 0; J < PLOT_AXES_MAX; ++J) { - - if (map[J] == N) { - - sF = 1; - break; - } - } - - if (sF == 0) { - - aN = N; - break; - } - } - } - - return aN; -} - -static int -readCombineGetMappedAxis(plot_t *pl, int dN, int cN, int aBUSY) -{ - int N, aN = -1; - int gN, *map; - - if (dN < 0 || dN >= PLOT_DATASET_MAX) { - - ERROR("Dataset number is out of range\n"); - return -1; - } - - if (cN < -1 || cN >= pl->data[dN].column_N + PLOT_SUBTRACT) { - - ERROR("Column number %i is out of range\n", cN); - return -1; - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pl->figure[N].busy != 0) { - - if (pl->figure[N].data_N == dN) { - - if ( aBUSY == AXIS_BUSY_X - && pl->figure[N].column_X == cN) { - - aN = pl->figure[N].axis_X; - break; - } - else if ( aBUSY == AXIS_BUSY_Y - && pl->figure[N].column_Y == cN) { - - aN = pl->figure[N].axis_Y; - break; - } - } - - gN = pl->data[dN].map[cN]; - - if (gN != -1) { - - map = pl->data[pl->figure[N].data_N].map; - - if ( aBUSY == AXIS_BUSY_X - && gN == map[pl->figure[N].column_X]) { - - aN = pl->figure[N].axis_X; - break; - } - else if ( aBUSY == AXIS_BUSY_Y - && gN == map[pl->figure[N].column_Y]) { - - aN = pl->figure[N].axis_Y; - break; - } - } - } - } - - return aN; -} - -void readCombinePage(read_t *rd, int pN, int remap) -{ - plot_t *pl = rd->pl; - page_t *pg; - - tuple_t uN; - int N, fN, bN, cX, cY, aX, aY; - int map[PLOT_AXES_MAX]; - - if (pN < 0 || pN >= READ_PAGE_MAX) { - - ERROR("Page number is out of range\n"); - return ; - } - - if (pN == rd->page_N) - return; - - pg = rd->page + pN; - - if (pg->busy == 0) - return; - - plotDataSubtractPaused(pl); - - for (N = 0; N < PLOT_AXES_MAX; ++N) - map[N] = -1; - - if (remap == 0) { - - map[0] = pl->on_X; - map[1] = pl->on_Y; - } - else { - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pg->fig[N].busy != 0) { - - if (map[pg->fig[N].aX] < 0) { - - aX = readCombineGetMappedAxis(pl, pg->fig[N].dN, - pg->fig[N].cX, AXIS_BUSY_X); - - aX = (aX < 0) ? readCombineGetFreeAxis(pl, map) : aX; - map[pg->fig[N].aX] = aX; - } - - if (map[pg->fig[N].aY] < 0) { - - aY = readCombineGetMappedAxis(pl, pg->fig[N].dN, - pg->fig[N].cY, AXIS_BUSY_Y); - - aY = (aY < 0) ? readCombineGetFreeAxis(pl, map) : aY; - map[pg->fig[N].aY] = aY; - } - } - } - } - - for (N = 0; N < PLOT_FIGURE_MAX; ++N) { - - if (pg->fig[N].busy != 0) { - - fN = plotGetFreeFigure(pl); - - if (fN < 0) { - - ERROR("No free figure to combine\n"); - break; - } - - aX = (map[pg->fig[N].aX] != -1) ? map[pg->fig[N].aX] : pg->fig[N].aX; - aY = (map[pg->fig[N].aY] != -1) ? map[pg->fig[N].aY] : pg->fig[N].aY; - - uN = readTimeDataMap(pl, pg->fig[N].dN, pg->fig[N].cX, pg->fig[N].cY); - - cX = uN.X; - cY = uN.Y; - - cX = readScaleDataMap(pl, pg->fig[N].dN, cX, pg->fig[N].bX); - cY = readScaleDataMap(pl, pg->fig[N].dN, cY, pg->fig[N].bY); - - plotFigureAdd(pl, fN, pg->fig[N].dN, cX, cY, aX, aY, pg->fig[N].label); - - if (pg->fig[N].drawing != -1) { - - pl->figure[fN].drawing = pg->fig[N].drawing; - pl->figure[fN].width = pg->fig[N].width; - } - } - } - - for (N = 0; N < PLOT_AXES_MAX; ++N) { - - aX = (map[N] != -1) ? map[N] : N; - - if (pl->axis[aX].label[0] == 0) { - - plotAxisLabel(pl, aX, pg->ax[N].label); - } - - if (pg->ax[N].slave != 0) { - - aY = pg->ax[N].slave_N; - bN = (map[aY] != -1) ? map[aY] : aY; - - plotAxisSlave(pl, aX, bN, pg->ax[N].scale, - pg->ax[N].offset, AXIS_SLAVE_ENABLE); - } - } - - plotDataSubtractAlternate(rd->pl); - - plotLayout(pl); - plotAxisScaleDefault(pl); -} - -void readDataReload(read_t *rd) -{ - int dN; - - for (dN = 0; dN < PLOT_DATASET_MAX; ++dN) { - - if ( rd->data[dN].format != FORMAT_NONE - && rd->data[dN].file[0] != 0) { - - readOpenUnified(rd, dN, rd->data[dN].column_N, - rd->data[dN].length_N, rd->data[dN].file, - rd->data[dN].format); - } - } -} - diff --git a/phobia/gp/read.h b/phobia/gp/read.h deleted file mode 100644 index c4869c9..0000000 --- a/phobia/gp/read.h +++ /dev/null @@ -1,236 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_READ_ -#define _H_READ_ - -#include -#include - -#include - -#include "async.h" -#include "draw.h" -#include "plot.h" - -#define READ_PAGE_MAX 1000 -#define READ_COLUMN_MAX 2000 -#define READ_TOKEN_MAX 80 -#define READ_FILE_PATH_MAX 800 -#define READ_TEXT_SCAN_MAX 9 -#define READ_TEXT_DEVIATE_MAX 2 -#define READ_SUBTRACT_MAX 4 - -#define GP_MIN_SIZE_X 640 -#define GP_MIN_SIZE_Y 480 - -#define GP_CONFIG_VERSION 15 - -enum { - FORMAT_NONE = 0, - FORMAT_PLAIN_STDIN, - FORMAT_PLAIN_TEXT, - FORMAT_BINARY_FLOAT, - FORMAT_BINARY_DOUBLE, - -#ifdef _LEGACY - FORMAT_BINARY_LEGACY_V1, - FORMAT_BINARY_LEGACY_V2, -#endif /* _LEGACY */ -}; - -enum { - DATA_HINT_NONE = 0, - DATA_HINT_FLOAT, - DATA_HINT_HEX, - DATA_HINT_OCT -}; - -typedef struct { - - char delim; - char space[READ_TOKEN_MAX]; - char lend[READ_TOKEN_MAX]; -} -markup_t; - -typedef struct { - - int busy; - int column_2; - - double args[2]; -} -subtract_t; - -typedef struct { - - int busy; - char title[PLOT_STRING_MAX]; - - struct { - - int busy; - - int drawing; - int width; - - int dN; - int cX; - int cY; - int aX; - int aY; - - subtract_t bX[READ_SUBTRACT_MAX]; - subtract_t bY[READ_SUBTRACT_MAX]; - - char label[PLOT_STRING_MAX]; - } - fig[PLOT_FIGURE_MAX]; - - struct { - - int slave; - int slave_N; - - double scale; - double offset; - - char label[PLOT_STRING_MAX]; - } - ax[PLOT_AXES_MAX]; -} -page_t; - -typedef struct { - - char file[READ_FILE_PATH_MAX]; - const char *path; - - FILE *fd; - const char *in; - - char tbuf[READ_FILE_PATH_MAX]; - int unchar; - int line_N; - int newline; - int fromUI; - - int dmap[PLOT_DATASET_MAX]; -} -parse_t; - -typedef struct { - - draw_t *dw; - plot_t *pl; - - char screenpath[READ_FILE_PATH_MAX]; - char ttfname[READ_FILE_PATH_MAX]; - - int config_version; - int window_size_x; - int window_size_y; - int language; - int colorscheme; - int timecol; - int shortfilename; - int fastdraw; - - markup_t mk_config; - markup_t mk_text; - -#ifdef _WINDOWS - int legacy_label; -#endif /* _WINDOWS */ - - int preload; - int chunk; - int timeout; - int length_N; - - struct { - - int format; - int column_N; - int length_N; - - char file[READ_FILE_PATH_MAX]; - int line_N; - - FILE *fd; - async_FILE *afd; - - char buf[READ_TOKEN_MAX * READ_COLUMN_MAX]; - fval_t row[READ_COLUMN_MAX]; - - char label[READ_COLUMN_MAX][READ_TOKEN_MAX]; - - int hint[READ_COLUMN_MAX]; - } - data[PLOT_DATASET_MAX]; - - page_t page[READ_PAGE_MAX]; - - int files_N; - - int bind_N; - int page_N; - int figure_N; -} -read_t; - -char *stoi(const markup_t *mk, int *x, char *s); -char *htoi(const markup_t *mk, int *x, char *s); -char *otoi(const markup_t *mk, int *x, char *s); -char *stod(const markup_t *mk, double *x, char *s); - -read_t *readAlloc(draw_t *dw, plot_t *pl); -void readClean(read_t *rd); -void readOpenUnified(read_t *rd, int dN, int cN, int lN, const char *file, int fmt); -void readToggleHint(read_t *rd, int dN, int cN); -int readUpdate(read_t *rd); - -#ifdef _WINDOWS -void legacy_ACP_to_UTF8(char *us, const char *text, int n); -void legacy_OEM_to_UTF8(char *us, const char *text, int n); -void legacy_UTF8_to_ACP(char *text, const char *us, int n); -void legacy_UTF8_to_OEM(char *text, const char *us, int n); -#endif /* _WINDOWS */ - -#ifdef _LEGACY -void legacy_ConfigGRM(read_t *rd, const char *path, const char *confile, const char *file, int fromUI); -#endif /* _LEGACY */ - -FILE *unified_fopen(const char *file, const char *mode); - -void readConfigIN(read_t *rd, const char *config, int fromUI); -void readConfigGP(read_t *rd, const char *file, int fromUI); -void readConfigVerify(read_t *rd); - -void readMakePages(read_t *rd, int dN, int cX, int fromUI); -void readDatasetClean(read_t *rd, int dN); -int readGetTimeColumn(read_t *rd, int dN); -void readSetTimeColumn(read_t *rd, int dN, int cX); - -void readSelectPage(read_t *rd, int pN); -void readCombinePage(read_t *rd, int pN, int remap); -void readDataReload(read_t *rd); - -#endif /* _H_READ_ */ - diff --git a/phobia/gp/scheme.c b/phobia/gp/scheme.c deleted file mode 100644 index fc26ac8..0000000 --- a/phobia/gp/scheme.c +++ /dev/null @@ -1,96 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include - -#include "scheme.h" - -void schemeFill(scheme_t *sch, int nu) -{ - if (nu == 0) { - - sch->plot_background = 0x000000; - sch->plot_figure[0] = 0xFFFFFF; - sch->plot_figure[1] = 0xFF0000; - sch->plot_figure[2] = 0x00FF00; - sch->plot_figure[3] = 0xFFFF00; - sch->plot_figure[4] = 0x00FFFF; - sch->plot_figure[5] = 0xFF00FF; - sch->plot_figure[6] = 0xFF7700; - sch->plot_figure[7] = 0x7700FF; - sch->plot_axis = 0x00BFCF; - sch->plot_hovered = 0x223344; - sch->plot_text = 0xFFFFFF; - sch->plot_hidden = 0x111119; - - sch->menu_background = 0x37373F; - sch->menu_hovered = 0x777788; - sch->menu_scrollbar = 0xBBBBCC; - sch->menu_item_text = 0xFFFFFF; - sch->menu_item_hidden = 0x555555; - sch->menu_fuzzy_light = 0xFF3333; - } - else if (nu == 1) { - - sch->plot_background = 0xFFFFFF; - sch->plot_figure[0] = 0x000000; - sch->plot_figure[1] = 0xFF0000; - sch->plot_figure[2] = 0x00AA00; - sch->plot_figure[3] = 0x0000FF; - sch->plot_figure[4] = 0x00AAAA; - sch->plot_figure[5] = 0xFF00FF; - sch->plot_figure[6] = 0xFF7700; - sch->plot_figure[7] = 0x7700FF; - sch->plot_axis = 0x005F6F; - sch->plot_hovered = 0xCCDDEE; - sch->plot_text = 0x000000; - sch->plot_hidden = 0xEEEEF9; - - sch->menu_background = 0xC0C0CF; - sch->menu_hovered = 0x888899; - sch->menu_scrollbar = 0x555566; - sch->menu_item_text = 0x000000; - sch->menu_item_hidden = 0xAAAAAA; - sch->menu_fuzzy_light = 0xFF3333; - } - else if (nu == 2) { - - sch->plot_background = 0xFFFFFF; - sch->plot_figure[0] = 0x000000; - sch->plot_figure[1] = 0x777777; - sch->plot_figure[2] = 0xBBBBBB; - sch->plot_figure[3] = 0x333333; - sch->plot_figure[4] = 0x555555; - sch->plot_figure[5] = 0x999999; - sch->plot_figure[6] = 0xCCCCCC; - sch->plot_figure[7] = 0xDDDDDD; - sch->plot_axis = 0x5F5F5F; - sch->plot_hovered = 0xDDDDDD; - sch->plot_text = 0x000000; - sch->plot_hidden = 0xEEEEEE; - - sch->menu_background = 0xCCCCCC; - sch->menu_hovered = 0x888888; - sch->menu_scrollbar = 0x555555; - sch->menu_item_text = 0x000000; - sch->menu_item_hidden = 0xAAAAAA; - sch->menu_fuzzy_light = 0xFFFFFF; - } -} - diff --git a/phobia/gp/scheme.h b/phobia/gp/scheme.h deleted file mode 100644 index 099b96e..0000000 --- a/phobia/gp/scheme.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_SCHEME_ -#define _H_SCHEME_ - -#include -#include - -#include "draw.h" - -typedef struct { - - Uint32 plot_background; - Uint32 plot_figure[8]; - Uint32 plot_axis; - Uint32 plot_hovered; - Uint32 plot_text; - Uint32 plot_hidden; - - Uint32 menu_background; - Uint32 menu_hovered; - Uint32 menu_scrollbar; - Uint32 menu_item_text; - Uint32 menu_item_hidden; - Uint32 menu_fuzzy_light; -} -scheme_t; - -void schemeFill(scheme_t *sch, int nu); - -#endif /* _H_SCHEME_ */ - diff --git a/phobia/gp/svg.c b/phobia/gp/svg.c deleted file mode 100644 index ff1272c..0000000 --- a/phobia/gp/svg.c +++ /dev/null @@ -1,166 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#include -#include -#include -#include - -#include - -#include "svg.h" -#include "draw.h" -#include "plot.h" -#include "read.h" - -svg_t *svgOpenNew(const char *file, int width, int height) -{ - svg_t *g; - - g = calloc(1, sizeof(svg_t)); - g->fd = unified_fopen(file, "w"); - - if (g->fd == NULL) { - - ERROR("fopen(\"%s\"): %s\n", file, strerror(errno)); - free(g); - - return NULL; - } - - fprintf(g->fd, "\n", width, height); - - g->line_open = 0; - - return g; -} - -void svgClose(svg_t *g) -{ - if (g->line_open != 0) { - - fprintf(g->fd, "\"/>\n"); - g->line_open = 0; - } - - fprintf(g->fd, "\n"); - - fclose(g->fd); - free(g); -} - -void svgDrawLine(svg_t *g, double xs, double ys, double xe, double ye, svgCol_t col, int h, int d, int s) -{ - if (g->line_open != 0) { - - if (xs == g->last_x && ys == g->last_y) { - - fprintf(g->fd, " %.1f,%.1f", xe, ye); - } - else if (xe == g->last_x && ye == g->last_y) { - - fprintf(g->fd, " %.1f,%.1f", xs, ys); - } - else { - fprintf(g->fd, "\"/>\n"); - g->line_open = 0; - } - } - - if (g->line_open == 0) { - - if (d == 0) { - - fprintf(g->fd, "fd, "line_open = 1; - } - - g->last_x = xe; - g->last_y = ye; -} - -void svgDrawRect(svg_t *g, double xs, double ys, double xe, double ye, svgCol_t col) -{ - if (g->line_open != 0) { - - fprintf(g->fd, "\"/>\n"); - g->line_open = 0; - } - - fprintf(g->fd, "\n", - (int) (col & 0xFFFFFF), xs, ys, xe, ys, xe, ye, xs, ye); -} - -void svgDrawCircle(svg_t *g, double xs, double ys, double r, svgCol_t col) -{ - if (g->line_open != 0) { - - fprintf(g->fd, "\"/>\n"); - g->line_open = 0; - } - - fprintf(g->fd, "\n", - (int) (col & 0xFFFFFF), xs, ys, r); -} - -void svgDrawText(svg_t *g, double xs, double ys, const char *text, svgCol_t col, int flags) -{ - if (g->line_open != 0) { - - fprintf(g->fd, "\"/>\n"); - g->line_open = 0; - } - - if (flags & TEXT_VERTICAL) { - - fprintf(g->fd, "%s\n", - g->font_family, g->font_pt, (int) (col & 0xFFFFFF), - (flags & TEXT_CENTERED_ON_X) ? "middle" : "text-before-edge", - (flags & TEXT_CENTERED_ON_Y) ? "middle" : "end", - xs, ys, xs, ys, text); - } - else { - fprintf(g->fd, "%s\n", - g->font_family, g->font_pt, (int) (col & 0xFFFFFF), - (flags & TEXT_CENTERED_ON_Y) ? "middle" : "text-before-edge", - (flags & TEXT_CENTERED_ON_X) ? "middle" : "start", - xs, ys, text); - } -} - diff --git a/phobia/gp/svg.h b/phobia/gp/svg.h deleted file mode 100644 index 5b3975d..0000000 --- a/phobia/gp/svg.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - Graph Plotter is a tool to analyse numerical data. - Copyright (C) 2024 Roman Belov - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _H_SVG_ -#define _H_SVG_ - -#include -#include - -#include - -typedef Uint32 svgCol_t; - -typedef struct { - - FILE *fd; - - const char *font_family; - int font_pt; - - int line_open; - double last_x; - double last_y; -} -svg_t; - -svg_t *svgOpenNew(const char *file, int width, int height); -void svgClose(svg_t *g); - -void svgDrawLine(svg_t *g, double xs, double ys, double xe, double ye, svgCol_t col, int h, int d, int s); -void svgDrawRect(svg_t *g, double xs, double ys, double xe, double ye, svgCol_t col); -void svgDrawCircle(svg_t *g, double xs, double ys, double r, svgCol_t col); -void svgDrawText(svg_t *g, double xs, double ys, const char *text, svgCol_t col, int flags); - -#endif /* _H_SVG_ */ - diff --git a/phobia/link.c b/phobia/link.c deleted file mode 100644 index 0d66403..0000000 --- a/phobia/link.c +++ /dev/null @@ -1,1163 +0,0 @@ -#include -#include -#include -#include - -#include - -#include "gp/dirent.h" -#include "config.h" -#include "link.h" -#include "serial.h" - -#define LINK_EOL "\r\n" -#define LINK_SPACE " \t" -#define LINK_EXTRA "])" - -#define LINK_ALLOC_MAX 92160U -#define LINK_CACHE_MAX 4096U - -enum { - LINK_MODE_IDLE = 0, - LINK_MODE_HWINFO, - LINK_MODE_CLOCK, - LINK_MODE_DATA_GRAB, - LINK_MODE_EPCAN_MAP, - LINK_MODE_FLASH_MAP, - LINK_MODE_UNABLE_WARNING, -}; - -struct link_priv { - - struct serial_fd *fd; - - int link_mode; - int reg_push_ID; - - char lbuf[LINK_MESSAGE_MAX]; - - FILE *fd_log; - FILE *fd_grab; - - char hw_revision[LINK_NAME_MAX]; - char hw_build[LINK_NAME_MAX]; - char hw_crc32[LINK_NAME_MAX]; - - char mb[LINK_ALLOC_MAX]; - char *mbflow; - - int cache[LINK_CACHE_MAX]; -}; - -const char *lk_stoi(int *x, const char *s) -{ - int n, k, i; - - if (*s == '-') { n = - 1; s++; } - else if (*s == '+') { n = 1; s++; } - else { n = 1; } - - k = 0; - i = 0; - - while (*s >= '0' && *s <= '9') { - - i = 10 * i + (*s++ - '0') * n; - k++; - - if (k > 9) return NULL; - } - - if (k == 0) return NULL; - - if (*s == 0 || strchr(LINK_SPACE LINK_EXTRA LINK_EOL, *s) != NULL) { - - *x = i; - } - else return NULL; - - return s; -} - -const char *lk_stod(double *x, const char *s) -{ - int n, k, v, e; - double f = 0.; - - if (*s == '-') { n = - 1; s++; } - else if (*s == '+') { n = 1; s++; } - else { n = 1; } - - k = 0; - v = 0; - f = 0.; - - while (*s >= '0' && *s <= '9') { - - f = 10. * f + (*s++ - '0') * n; - k++; - } - - if (*s == '.') { - - s++; - - while (*s >= '0' && *s <= '9') { - - f = 10. * f + (*s++ - '0') * n; - k++; v--; - } - } - - if (k == 0) return NULL; - - if (*s == 'n') { v += - 9; s++; } - else if (*s == 'u') { v += - 6; s++; } - else if (*s == 'm') { v += - 3; s++; } - else if (*s == 'K') { v += 3; s++; } - else if (*s == 'M') { v += 6; s++; } - else if (*s == 'G') { v += 9; s++; } - else if (*s == 'e' || *s == 'E') { - - s = lk_stoi(&e, s + 1); - - if (s != NULL) { v += e; } - else return NULL; - } - - if (*s == 0 || strchr(LINK_SPACE LINK_EXTRA LINK_EOL, *s) != NULL) { - - while (v < 0) { f /= 10.; v++; } - while (v > 0) { f *= 10.; v--; } - - *x = f; - } - else return NULL; - - return s; -} - -static const char * -lk_space(char **sp) -{ - char *s = *sp; - - while (*s != 0 && strchr(LINK_SPACE, *s) != 0) { ++s; } - - *sp = s; - - return s; -} - -static const char * -lk_token(char **sp) -{ - char *s = *sp; - const char *r; - - while (*s != 0 && strchr(LINK_SPACE, *s) != 0) { ++s; } - - r = s; - - if (r[0] == '"') { - - ++r; - ++s; - - while (*s != 0 && *s != '"') { ++s; } - } - else if (r[0] == '(') { - - ++r; - ++s; - - while (*s != 0 && *s != ')') { ++s; } - } - else { - while (*s != 0 && strchr(LINK_SPACE, *s) == 0) { ++s; } - } - - if (*s != 0) { - - *s = 0; - ++s; - } - - *sp = s; - - return r; -} - -static unsigned int -lk_hash(const char *sym) -{ - unsigned long hash = 0U; - - while (*sym != 0) { - - hash = (hash + *sym) * 1149773U; - hash ^= (hash << 1) + (hash >> 4); - - ++sym; - } - - hash ^= (hash << 15); - hash = (hash >> 16) & (LINK_CACHE_MAX - 1U); - - return hash; -} - -static char * -link_mballoc(struct link_pmc *lp, int len) -{ - struct link_priv *priv = lp->priv; - char *mb = NULL; - - if ((int) (priv->mbflow - priv->mb) < LINK_ALLOC_MAX - len) { - - mb = priv->mbflow; - priv->mbflow += len; - } - - return mb; -} - -static int -link_fetch_network(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char *lbuf = priv->lbuf; - int net_ID, rc = 0; - - if (strstr(lbuf, "(pmc)") == lbuf) { - - sprintf(lp->network, "SERIAL"); - - rc = 1; - } - - if (strstr(lbuf, "(net/") == lbuf) { - - if (lk_stoi(&net_ID, lbuf + 5) != NULL) { - - sprintf(lp->network, "REMOTE/%i", net_ID); - } - else { - lp->network[0] = 0; - } - - rc = 2; - } - - return rc; -} - -static void -link_reg_postproc(struct link_pmc *lp, struct link_reg *reg) -{ - double dval; - - if (lk_stoi(®->lval, reg->val) != NULL) { - - reg->mode |= LINK_REG_TYPE_INT; - } - - if (lk_stod(&dval, reg->val) != NULL) { - - reg->mode |= LINK_REG_TYPE_FLOAT; - reg->fval = (float) dval; - - if (reg->started != 0) { - - if (reg->fval < reg->fmin) { - - reg->fmin = reg->fval; - strcpy(reg->vmin, reg->val); - } - - if (reg->fval > reg->fmax) { - - reg->fmax = reg->fval; - strcpy(reg->vmax, reg->val); - } - } - else { - reg->fmin = reg->fval; - reg->fmax = reg->fval; - - strcpy(reg->vmin, reg->val); - strcpy(reg->vmax, reg->val); - - reg->started = 1; - } - } - - if ( (reg->mode & 7U) == LINK_REG_CONFIG - && (reg->mode & LINK_REG_TYPE_INT) != 0 - && strlen(reg->um) >= 7 - && strlen(reg->um) < LINK_NAME_MAX - && reg->lval >= 0 - && reg->lval < LINK_COMBO_MAX) { - - if (reg->combo[reg->lval] == NULL) { - - reg->combo[reg->lval] = link_mballoc(lp, LINK_NAME_MAX); - } - - if (reg->combo[reg->lval] != NULL) { - - sprintf(reg->combo[reg->lval], "%.77s", reg->um); - - reg->lmax_combo = (reg->lval > reg->lmax_combo) - ? reg->lval : reg->lmax_combo; - } - } -} - -static void -link_fetch_reg_format(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char ldup[LINK_MESSAGE_MAX], *sp = ldup; - const char *tok, *sym; - int reg_mode, reg_ID, eol, n; - - strcpy(ldup, priv->lbuf); - - reg_ID = -1; - - if (*sp >= '0' && *sp <= '7') { - - reg_mode = (int) (*sp - '0'); - - if ( *(sp + 1) == ' ' - && *(sp + 2) == '[') { - - sp += 2; - - tok = lk_token(&sp); - eol = strlen(tok) - 1; - - if (tok[eol] == ']') { - - if (lk_stoi(&n, tok + 1) != NULL) { - - reg_ID = n; - } - } - } - } - - if (reg_ID >= 0 && reg_ID < LINK_REGS_MAX) { - - struct link_reg *reg = lp->reg + reg_ID; - - sym = lk_token(&sp); - tok = lk_token(&sp); - - if (strcmp(tok, "=") == 0) { - - char vbuf[80]; - - sprintf(vbuf, "%.77s", lk_space(&sp)); - - reg->mode = reg_mode; - - sprintf(reg->sym, "%.77s", sym); - sprintf(reg->val, "%.77s", lk_token(&sp)); - sprintf(reg->um, "%.77s", lk_token(&sp)); - - tok = lk_space(&sp); - - if (tok[0] == 0) { - - link_reg_postproc(lp, reg); - } - else { - sprintf(reg->val, "%.77s", vbuf); - - reg->um[0] = 0; - } - - reg->fetched = lp->clock; - reg->queued = 0; - - lp->reg_MAX_N = (reg_ID + 1 > lp->reg_MAX_N) - ? reg_ID + 1 : lp->reg_MAX_N; - } - } -} - -static void -link_fetch_hwinfo(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char *sp = priv->lbuf; - const char *tok; - - tok = lk_token(&sp); - - if (strcmp(tok, "Revision") == 0) { - - sprintf(priv->hw_revision, "%.16s", lk_token(&sp)); - } - else if (strcmp(tok, "Build") == 0) { - - sprintf(priv->hw_build, "%.16s", lk_token(&sp)); - } - else if (strcmp(tok, "CRC32") == 0) { - - sprintf(priv->hw_crc32, "%.10s", lk_token(&sp)); - - tok = lk_token(&sp); - - sprintf(priv->hw_crc32 + strlen(priv->hw_crc32), " (%.16s)", tok); - - sprintf(lp->hwinfo, "%.16s / %.16s / %.36s", priv->hw_revision, - priv->hw_build, priv->hw_crc32); - } -} - -static void -link_fetch_clock(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char *sp = priv->lbuf; - int time; - - if (strcmp(lk_token(&sp), "Clock") == 0) { - - lk_token(&sp); - - if (lk_stoi(&time, lk_token(&sp)) != NULL) { - - if (time < lp->uptime) { - - lp->uptime_warning = 1; - } - - lp->uptime = time; - } - } -} - -static void -link_fetch_epcan_map(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char *sp = priv->lbuf; - const char *tok, *eol; - int N; - - tok = lk_token(&sp); - eol = tok; - - while (*eol != 0) { - - if (*eol >= '0' && *eol <= '9') ; - else if (*eol >= 'A' && *eol <= 'F') ; - else if (*eol >= 'a' && *eol <= 'f') ; - else break; - - ++eol; - } - - if (*eol == 0) { - - for (N = 0; N < LINK_EPCAN_MAX; ++N) { - - if (lp->epcan[N].UID[0] == 0) - break; - } - - if (lp->epcan[N].UID[0] != 0) - return ; - - sprintf(lp->epcan[N].UID, "%.15s", tok); - sprintf(lp->epcan[N].node_ID, "%.23s", lk_token(&sp)); - } -} - -static void -link_fetch_flash_map(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - const char *sp = priv->lbuf; - int N, bN; - - for (N = 0; N < LINK_FLASH_MAX; ++N) { - - if (lp->flash[N].block[0] == 0) - break; - } - - if (lp->flash[N].block[0] != 0) - return ; - - bN = 0; - - while (*sp != 0) { - - if ( *sp == 'x' - || *sp == 'a' - || *sp == '.') { - - lp->flash[N].block[bN++] = *sp; - - if (bN >= sizeof(lp->flash[0].block)) - break ; - } - else if (*sp != ' ') - break; - - ++sp; - } -} - -static void -link_fetch_unable_warning(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - char *lbuf = priv->lbuf; - - if (strstr(lbuf, "Unable ") == lbuf) { - - sprintf(lp->unable_warning, "%.200s", lbuf); - } -} - -void link_open(struct link_pmc *lp, struct config_phobia *fe, - const char *devname, int baudrate, const char *mode) -{ - struct link_priv *priv; - - if (lp->linked != 0) - return ; - - lp->fe = fe; - - sprintf(lp->devname, "%.77s", devname); - - lp->baudrate = baudrate; - lp->quantum = 10; - - if (lp->priv != NULL) { - - memset(lp->priv, 0, sizeof(struct link_priv)); - } - else { - lp->priv = calloc(1, sizeof(struct link_priv)); - } - - priv = lp->priv; - priv->fd = serial_open(devname, baudrate, mode); - - if (priv->fd == NULL) - return ; - - priv->link_mode = LINK_MODE_IDLE; - priv->mbflow = priv->mb; - - lp->locked = lp->clock + 1000; - lp->active = lp->clock; - lp->keep = lp->clock; - - sprintf(priv->lbuf, "\x04\x04" LINK_EOL LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "ap_version" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "flash_info" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "reg" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - lp->linked = 1; -} - -void link_close(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - - if (lp->linked == 0) - return ; - - if (priv != NULL) { - - if (priv->fd != NULL) { - - serial_close(priv->fd); - } - - if (priv->fd_log != NULL) { - - fclose(priv->fd_log); - } - - if (priv->fd_grab != NULL) { - - fclose(priv->fd_grab); - } - - memset(priv, 0, sizeof(struct link_priv)); - } - - memset(lp, 0, sizeof(struct link_pmc)); - - lp->priv = priv; -} - -void link_remote(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - - if (lp->linked == 0) - return ; - - priv->link_mode = LINK_MODE_IDLE; - priv->reg_push_ID = 0; - priv->mbflow = priv->mb; - - if (priv->fd_grab != NULL) { - - fclose(priv->fd_grab); - priv->fd_grab = NULL; - } - - lp->uptime = 0; - - lp->locked = lp->clock + 1000; - lp->active = lp->clock; - lp->keep = lp->clock; - - lp->grab_N = 0; - - memset(lp->reg, 0, sizeof(lp->reg)); - - lp->reg_MAX_N = 0; - - sprintf(priv->lbuf, LINK_EOL LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "ap_version" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "flash_info" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - - sprintf(priv->lbuf, "reg" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); -} - -int link_fetch(struct link_pmc *lp, int clock) -{ - struct link_priv *priv = lp->priv; - int rc_local, N = 0; - - struct { - - const char *command; - int mode; - } - const link_map[] = { - - { "ap_version", LINK_MODE_HWINFO }, - { "ap_clock", LINK_MODE_CLOCK }, - { "ap_log_flush", LINK_MODE_DATA_GRAB }, - { "ap_reboot", LINK_MODE_UNABLE_WARNING }, - { "ap_bootload", LINK_MODE_UNABLE_WARNING }, - { "flash_info", LINK_MODE_FLASH_MAP }, - { "flash_prog", LINK_MODE_UNABLE_WARNING }, - { "flash_wipe", LINK_MODE_UNABLE_WARNING }, - { "pm_self", LINK_MODE_UNABLE_WARNING }, - { "pm_probe", LINK_MODE_UNABLE_WARNING }, - { "pm_adjust", LINK_MODE_UNABLE_WARNING }, - { "tlm_flush_sync", LINK_MODE_DATA_GRAB }, - { "tlm_live_sync", LINK_MODE_DATA_GRAB }, - { "net_survey", LINK_MODE_EPCAN_MAP }, - { "net_assign", LINK_MODE_UNABLE_WARNING }, - { "net_revoke", LINK_MODE_UNABLE_WARNING }, - - { NULL, 0 } /* END */ - }, - *mp; - - lp->clock = clock; - - if (lp->linked == 0) - return 0; - - while (serial_fgets(priv->fd, priv->lbuf, sizeof(priv->lbuf)) == SERIAL_OK) { - - lp->active = lp->clock; - - if (priv->fd_log != NULL) { - - fprintf(priv->fd_log, "%s\n", priv->lbuf); - fflush(priv->fd_log); - } - - rc_local = link_fetch_network(lp); - - if (rc_local != 0) { - - if (priv->link_mode == LINK_MODE_DATA_GRAB) { - - link_grab_file_close(lp); - } - - priv->link_mode = LINK_MODE_IDLE; - } - else { - link_fetch_reg_format(lp); - } - - switch (priv->link_mode) { - - case LINK_MODE_IDLE: - - if (rc_local == 0) - break; - - mp = link_map; - - while (mp->command != NULL) { - - if (strstr(priv->lbuf, mp->command) != NULL) { - - priv->link_mode = mp->mode; - break; - } - - mp++; - } - - if (priv->link_mode == LINK_MODE_FLASH_MAP) - memset(lp->flash, 0, sizeof(lp->flash)); - else if (priv->link_mode == LINK_MODE_EPCAN_MAP) - memset(lp->epcan, 0, sizeof(lp->epcan)); - - break; - - case LINK_MODE_HWINFO: - link_fetch_hwinfo(lp); - break; - - case LINK_MODE_CLOCK: - link_fetch_clock(lp); - break; - - case LINK_MODE_DATA_GRAB: - - if (priv->fd_grab == NULL) - break; - - fprintf(priv->fd_grab, "%s\n", priv->lbuf); - fflush(priv->fd_grab); - - lp->grab_N++; - break; - - case LINK_MODE_EPCAN_MAP: - link_fetch_epcan_map(lp); - break; - - case LINK_MODE_FLASH_MAP: - link_fetch_flash_map(lp); - break; - - case LINK_MODE_UNABLE_WARNING: - link_fetch_unable_warning(lp); - break; - } - - N++; - } - - if (priv->link_mode != LINK_MODE_DATA_GRAB) { - - if (lp->keep + 2000 < lp->clock) { - - if (lp->active + 12000 < lp->clock) { - - link_close(lp); - } - else { - sprintf(priv->lbuf, "ap_clock" LINK_EOL); - serial_fputs(priv->fd, priv->lbuf); - } - - lp->keep = lp->clock; - } - } - else { - if (lp->active + 1000 < lp->clock) { - - link_grab_file_close(lp); - } - } - - lp->line_N += N; - - return N; -} - -void link_push(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - struct link_reg *reg; - int reg_ID, dofetch; - - if (lp->linked == 0) - return ; - - if (priv->link_mode == LINK_MODE_DATA_GRAB) - return ; - - if (lp->locked > lp->clock) - return ; - - reg_ID = priv->reg_push_ID; - - do { - reg = lp->reg + reg_ID; - - if (reg->queued == 0) { - - dofetch = 0; - - if (reg->update != 0) { - - if (reg->fetched + reg->update < reg->shown) - dofetch = 1; - } - - if (reg->onefetch != 0) { - - if (reg->fetched < reg->shown) { - - reg->onefetch = 0; - dofetch = 1; - } - } - - if (reg->mode & LINK_REG_READ_ONLY) { - - if (reg->fetched + 10000 < reg->shown) - dofetch = 1; - } - - if (reg->modified > reg->fetched) { - - sprintf(priv->lbuf, "reg %i %.77s" LINK_EOL, - reg_ID, reg->val); - - if (serial_fputs(priv->fd, priv->lbuf) == SERIAL_OK) { - - reg->queued = lp->clock; - lp->locked = lp->clock + lp->quantum; - } - - break; - } - else if (dofetch != 0) { - - sprintf(priv->lbuf, "reg %i" LINK_EOL, reg_ID); - - if (serial_fputs(priv->fd, priv->lbuf) == SERIAL_OK) { - - reg->queued = lp->clock; - lp->locked = lp->clock + lp->quantum; - } - - break; - } - } - else { - if (reg->queued + 1000 < lp->clock) - reg->queued = 0; - } - - reg_ID++; - - if (reg_ID >= lp->reg_MAX_N) - reg_ID = 0; - - if (reg_ID == priv->reg_push_ID) - break; - } - while (1); - - priv->reg_push_ID = reg_ID; -} - -int link_command(struct link_pmc *lp, const char *command) -{ - struct link_priv *priv = lp->priv; - int pushed = 0; - - if (lp->linked == 0) - return 0; - - if (lp->locked > lp->clock + 50) - return 0; - - sprintf(priv->lbuf, "%.90s" LINK_EOL, command); - - if (serial_fputs(priv->fd, priv->lbuf) == SERIAL_OK) { - - pushed = 1; - - lp->locked = lp->clock + 100; - } - - return pushed; -} - -struct link_reg *link_reg_lookup(struct link_pmc *lp, const char *sym) -{ - struct link_priv *priv = lp->priv; - struct link_reg *reg = NULL; - int hash, reg_ID; - - if (lp->linked == 0) - return NULL; - - hash = lk_hash(sym); - reg_ID = priv->cache[hash]; - - if (strcmp(lp->reg[reg_ID].sym, sym) == 0) { - - reg = &lp->reg[reg_ID]; - } - else { - for (reg_ID = 0; reg_ID < lp->reg_MAX_N; ++reg_ID) { - - if (lp->reg[reg_ID].sym[0] != 0) { - - if (strcmp(lp->reg[reg_ID].sym, sym) == 0) { - - priv->cache[hash] = reg_ID; - reg = &lp->reg[reg_ID]; - - break; - } - } - } - } - - return reg; -} - -int link_reg_lookup_range(struct link_pmc *lp, const char *sym, int *min, int *max) -{ - struct link_priv *priv = lp->priv; - int len, hash, reg_ID, found = 0; - - if (lp->linked == 0) - return 0; - - len = strlen(sym); - - hash = lk_hash(sym); - reg_ID = priv->cache[hash]; - - if (strncmp(lp->reg[reg_ID].sym, sym, len) == 0) { - - *min = reg_ID; - *max = reg_ID++; - - found = 1; - } - else { - reg_ID = 0; - } - - for (; reg_ID < lp->reg_MAX_N; ++reg_ID) { - - if (lp->reg[reg_ID].sym[0] != 0) { - - if (strncmp(lp->reg[reg_ID].sym, sym, len) == 0) { - - if (found == 0) { - - priv->cache[hash] = reg_ID; - - *min = reg_ID; - found = 1; - } - - *max = reg_ID; - } - else if (found != 0) - break; - } - } - - return found; -} - -void link_reg_fetch_all_shown(struct link_pmc *lp) -{ - struct link_reg *reg = NULL; - int reg_ID; - - for (reg_ID = 0; reg_ID < lp->reg_MAX_N; ++reg_ID) { - - if (lp->reg[reg_ID].sym[0] != 0) { - - reg = &lp->reg[reg_ID]; - - reg->update = 0; - reg->onefetch = 1; - } - } -} - -void link_config_write(struct link_pmc *lp, const char *file) -{ - struct link_reg *reg; - FILE *fd; - int reg_ID; - - if (lp->linked == 0) - return ; - - fd = fopen_from_UTF8(file, "w"); - - if (fd != NULL) { - - for (reg_ID = 0; reg_ID < lp->reg_MAX_N; ++reg_ID) { - - if (lp->reg[reg_ID].sym[0] != 0) { - - reg = &lp->reg[reg_ID]; - - if (reg->mode & LINK_REG_LINKED) { - - fprintf(fd, "%s %s\n", reg->sym, reg->um); - } - else { - fprintf(fd, "%s %s\n", reg->sym, reg->val); - } - } - } - - fclose(fd); - } -} - -void link_config_read(struct link_pmc *lp, const char *file) -{ - struct link_priv *priv = lp->priv; - struct link_reg *reg; - const char *sym, *val; - - FILE *fd; - - if (lp->linked == 0) - return ; - - fd = fopen_from_UTF8(file, "r"); - - if (fd != NULL) { - - while (fgets(priv->lbuf, sizeof(priv->lbuf), fd) != NULL) { - - char *sp = priv->lbuf; - - sym = lk_token(&sp); - val = lk_token(&sp); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - sprintf(reg->val, "%.70s", val); - - reg->modified = lp->clock; - } - } - - fclose(fd); - } -} - -int link_log_file_open(struct link_pmc *lp, const char *file) -{ - struct link_priv *priv = lp->priv; - FILE *fd; - time_t tm; - int rc = 0; - - if (lp->linked == 0) - return 0; - - if (priv->fd_log == NULL) { - - fd = fopen_from_UTF8(file, "a"); - - if (fd != NULL) { - - time(&tm); - - fprintf(fd, "# log opened %s\n", ctime(&tm)); - - priv->fd_log = fd; - - rc = 1; - } - } - - return rc; -} - -int link_grab_file_open(struct link_pmc *lp, const char *file) -{ - struct link_priv *priv = lp->priv; - FILE *fd; - int rc = 0; - - if (lp->linked == 0) - return 0; - - if (priv->fd_grab == NULL) { - - fd = fopen_from_UTF8(file, "w"); - - if (fd != NULL) { - - priv->fd_grab = fd; - - lp->grab_N = 1; - - rc = 1; - } - } - - return rc; -} - -void link_grab_file_close(struct link_pmc *lp) -{ - struct link_priv *priv = lp->priv; - - if (lp->linked == 0) - return ; - - if (priv->fd_grab != NULL) { - - fclose(priv->fd_grab); - priv->fd_grab = NULL; - } - - if (priv->link_mode == LINK_MODE_DATA_GRAB) { - - priv->link_mode = LINK_MODE_IDLE; - - lp->grab_N = 0; - } -} - diff --git a/phobia/link.h b/phobia/link.h deleted file mode 100644 index 0f5384f..0000000 --- a/phobia/link.h +++ /dev/null @@ -1,122 +0,0 @@ -#ifndef _H_LINK_ -#define _H_LINK_ - -#include "config.h" - -#define LINK_REGS_MAX 900 -#define LINK_NAME_MAX 80 -#define LINK_MESSAGE_MAX 220 -#define LINK_COMBO_MAX 40 -#define LINK_EPCAN_MAX 32 -#define LINK_FLASH_MAX 10 - -enum { - LINK_REG_CONFIG = 1U, - LINK_REG_READ_ONLY = 2U, - LINK_REG_LINKED = 4U, - - LINK_REG_TYPE_INT = (1UL << 8), - LINK_REG_TYPE_FLOAT = (1UL << 9), -}; - -struct link_priv; - -struct link_reg { - - int mode; - - int shown; - int modified; - int fetched; - int queued; - - char sym[LINK_NAME_MAX]; - char val[LINK_NAME_MAX]; - char um[LINK_NAME_MAX]; - - int lval; - float fval; - - float fmin; - float fmax; - - char vmin[LINK_NAME_MAX]; - char vmax[LINK_NAME_MAX]; - - int started; - int update; - int onefetch; - - char *combo[LINK_COMBO_MAX]; - int lmax_combo; - - int um_sel; -}; - -struct link_pmc { - - struct link_priv *priv; - struct config_phobia *fe; - - char devname[LINK_NAME_MAX]; - int baudrate; - int quantum; - - int linked; - int uptime; - - int clock; - int locked; - int active; - int keep; - - char hwinfo[LINK_NAME_MAX]; - char network[LINK_NAME_MAX]; - - struct { - - char UID[16]; - char node_ID[24]; - } - epcan[LINK_EPCAN_MAX]; - - struct { - - char block[32]; - } - flash[LINK_FLASH_MAX]; - - char unable_warning[LINK_MESSAGE_MAX]; - int uptime_warning; - - int line_N; - int grab_N; - - struct link_reg reg[LINK_REGS_MAX]; - - int reg_MAX_N; -}; - -const char *lk_stoi(int *x, const char *s); -const char *lk_stod(double *x, const char *s); - -void link_open(struct link_pmc *lp, struct config_phobia *fe, - const char *devname, int baudrate, const char *mode); -void link_close(struct link_pmc *lp); -void link_remote(struct link_pmc *lp); - -int link_fetch(struct link_pmc *lp, int clock); -void link_push(struct link_pmc *lp); -int link_command(struct link_pmc *lp, const char *command); - -struct link_reg *link_reg_lookup(struct link_pmc *lp, const char *sym); -int link_reg_lookup_range(struct link_pmc *lp, const char *sym, int *min, int *max); -void link_reg_fetch_all_shown(struct link_pmc *lp); -void link_reg_clean_all_always(struct link_pmc *lp); - -int link_log_file_open(struct link_pmc *lp, const char *file); -int link_grab_file_open(struct link_pmc *lp, const char *file); -void link_grab_file_close(struct link_pmc *lp); - -#endif /* _H_LINK_ */ - diff --git a/phobia/nksdl.c b/phobia/nksdl.c deleted file mode 100644 index 27432df..0000000 --- a/phobia/nksdl.c +++ /dev/null @@ -1,1012 +0,0 @@ -/* - * MIT License - * - * Copyright (c) 2016-2017 Patrick Rudolph - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. -*/ - -/* Adapted from sdl2surface_rawfb.h for use in Phobia by Roman Belov. - * */ - -#include -#include - -#include -#include - -#define NK_MEMSET memset -#define NK_MEMCPY memcpy -#define NK_INV_SQRT -#define NK_SQRT sqrtf -#define NK_SIN sinf -#define NK_COS cosf - -#include "nksdl.h" - -#define NK_IMPLEMENTATION -#include "nuklear.h" - -static const char * -nk_sdl_nullstr(const char *text, int len) -{ - static char nbuf[1024]; - - len = NK_MIN(len, sizeof(nbuf)); - - memcpy(nbuf, text, len); - - nbuf[len] = 0; - - return (const char *) nbuf; -} - -NK_API void nk_sdl_input_event(struct nk_sdl *nk, SDL_Event *ev) -{ - struct nk_vec2 wheel; - int key, button; - - switch (ev->type) - { - case SDL_QUIT: - nk->onquit = 1; - break; - - case SDL_WINDOWEVENT: - if (ev->window.event == SDL_WINDOWEVENT_SIZE_CHANGED) { - - nk->fb = SDL_GetWindowSurface(nk->window); - - if ( nk->fb->w != nk->surface->w - || nk->fb->h != nk->surface->h) { - - SDL_FreeSurface(nk->surface); - - nk->surface = SDL_CreateRGBSurfaceWithFormat(0, nk->fb->w, - nk->fb->h, 32, SDL_PIXELFORMAT_XRGB8888); - } - } - else if (ev->window.event == SDL_WINDOWEVENT_CLOSE) { - - nk->onquit = 1; - } - break; - - case SDL_TEXTINPUT: - nk_input_glyph(&nk->ctx, ev->text.text); - break; - - case SDL_KEYDOWN: - case SDL_KEYUP: - switch (ev->key.keysym.sym) { - - case SDLK_ESCAPE: - key = NK_KEY_NONE; - SDL_StopTextInput(); - break; - - case SDLK_LSHIFT: - case SDLK_RSHIFT: - key = NK_KEY_SHIFT; - break; - - case SDLK_LCTRL: - case SDLK_RCTRL: - key = NK_KEY_CTRL; - nk->keyctrl = (ev->type == SDL_KEYDOWN) ? 1 : 0; - break; - - case SDLK_DELETE: - key = NK_KEY_DEL; - break; - - case SDLK_RETURN: - key = NK_KEY_ENTER; - break; - - case SDLK_TAB: - key = NK_KEY_TAB; - break; - - case SDLK_BACKSPACE: - key = NK_KEY_BACKSPACE; - break; - - case SDLK_a: - key = (nk->keyctrl != 0) ? NK_KEY_TEXT_SELECT_ALL : NK_KEY_NONE; - break; - - case SDLK_c: - key = (nk->keyctrl != 0) ? NK_KEY_COPY : NK_KEY_NONE; - break; - - case SDLK_x: - key = (nk->keyctrl != 0) ? NK_KEY_CUT : NK_KEY_NONE; - break; - - case SDLK_v: - key = (nk->keyctrl != 0) ? NK_KEY_PASTE : NK_KEY_NONE; - break; - - case SDLK_UP: - key = NK_KEY_UP; - break; - - case SDLK_DOWN: - key = NK_KEY_DOWN; - break; - - case SDLK_LEFT: - key = NK_KEY_LEFT; - break; - - case SDLK_RIGHT: - key = NK_KEY_RIGHT; - break; - - default: - key = NK_KEY_NONE; - break; - } - nk_input_key(&nk->ctx, key, (ev->type == SDL_KEYDOWN) ? nk_true : nk_false); - break; - - case SDL_MOUSEMOTION: - nk_input_motion(&nk->ctx, ev->motion.x, ev->motion.y); - break; - - case SDL_MOUSEBUTTONDOWN: - case SDL_MOUSEBUTTONUP: - switch (ev->button.button) { - - case SDL_BUTTON_LEFT: - SDL_StartTextInput(); - button = NK_BUTTON_LEFT; - break; - - case SDL_BUTTON_MIDDLE: - button = NK_BUTTON_MIDDLE; - break; - - default: - case SDL_BUTTON_RIGHT: - button = NK_BUTTON_RIGHT; - break; - } - nk_input_button(&nk->ctx, button, ev->button.x, ev->button.y, - (ev->type == SDL_MOUSEBUTTONDOWN) ? nk_true : nk_false); - break; - - case SDL_MOUSEWHEEL: - wheel.x = ev->wheel.x; - wheel.y = ev->wheel.y; - nk_input_scroll(&nk->ctx, wheel); - break; - - default: - break; - } -} - -NK_API void nk_sdl_clipboard_paste(nk_handle userdata, struct nk_text_edit* edit) -{ - char *clip; - - if (SDL_HasClipboardText() != 0) { - - clip = SDL_GetClipboardText(); - - if (clip != NULL) { - - nk_textedit_paste(edit, clip, strlen(clip)); - - SDL_free(clip); - } - } -} - -NK_API void nk_sdl_clipboard_copy(nk_handle userdata, const char *text, int len) -{ - SDL_SetClipboardText(nk_sdl_nullstr(text, len)); -} - -NK_API void nk_sdl_style_custom(struct nk_sdl *nk) -{ - struct nk_context *ctx = &nk->ctx; - struct nk_style *style; - - nk->table[NK_COLOR_TEXT] = nk_rgba(190, 210, 210, 255); - nk->table[NK_COLOR_WINDOW] = nk_rgba(30, 30, 35, 255); - nk->table[NK_COLOR_HEADER] = nk_rgba(60, 60, 65, 255); - nk->table[NK_COLOR_BORDER] = nk_rgba(10, 10, 15, 255); - nk->table[NK_COLOR_BUTTON] = nk_rgba(35, 65, 95, 255); - nk->table[NK_COLOR_BUTTON_HOVER] = nk_rgba(65, 95, 125, 255); - nk->table[NK_COLOR_BUTTON_ACTIVE] = nk_rgba(40, 40, 45, 255); - nk->table[NK_COLOR_TOGGLE] = nk_rgba(50, 50, 55, 255); - nk->table[NK_COLOR_TOGGLE_HOVER] = nk_rgba(60, 60, 65, 255); - nk->table[NK_COLOR_TOGGLE_CURSOR] = nk_rgba(210, 120, 60, 255); - nk->table[NK_COLOR_SELECT] = nk_rgba(50, 50, 55, 255); - nk->table[NK_COLOR_SELECT_ACTIVE] = nk_rgba(45, 125, 55, 255); - nk->table[NK_COLOR_SLIDER] = nk_rgba(50, 55, 65, 255); - nk->table[NK_COLOR_SLIDER_CURSOR] = nk_rgba(45, 85, 115, 245); - nk->table[NK_COLOR_SLIDER_CURSOR_HOVER] = nk_rgba(55, 85, 115, 255); - nk->table[NK_COLOR_SLIDER_CURSOR_ACTIVE] = nk_rgba(55, 95, 125, 255); - nk->table[NK_COLOR_PROPERTY] = nk_rgba(50, 55, 65, 255); - nk->table[NK_COLOR_EDIT] = nk_rgba(50, 50, 55, 225); - nk->table[NK_COLOR_EDIT_CURSOR] = nk_rgba(190, 210, 210, 255); - nk->table[NK_COLOR_COMBO] = nk_rgba(50, 50, 55, 255); - nk->table[NK_COLOR_CHART] = nk_rgba(50, 55, 65, 255); - nk->table[NK_COLOR_CHART_COLOR] = nk_rgba(45, 85, 115, 255); - nk->table[NK_COLOR_CHART_COLOR_HIGHLIGHT] = nk_rgba(210, 0, 0, 255); - nk->table[NK_COLOR_SCROLLBAR] = nk_rgba(50, 50, 55, 255); - nk->table[NK_COLOR_SCROLLBAR_CURSOR] = nk_rgba(35, 65, 95, 255); - nk->table[NK_COLOR_SCROLLBAR_CURSOR_HOVER] = nk_rgba(45, 75, 105, 255); - nk->table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE] = nk_rgba(65, 95, 125, 255); - nk->table[NK_COLOR_TAB_HEADER] = nk_rgba(45, 85, 115, 255); - - nk->table[NK_COLOR_BACKGROUND] = nk_rgba(40, 40, 45, 255); - nk->table[NK_COLOR_HIDDEN] = nk_rgba(50, 50, 55, 255); - nk->table[NK_COLOR_CONFIG] = nk_rgba(210, 190, 120, 255); - nk->table[NK_COLOR_DESIGN] = nk_rgba(90, 90, 105, 255); - nk->table[NK_COLOR_FLICKER_LIGHT] = nk_rgba(75, 75, 85, 255); - nk->table[NK_COLOR_FLICKER_ALERT] = nk_rgba(175, 45, 55, 255); - nk->table[NK_COLOR_ENABLED] = nk_rgba(45, 155, 55, 255); - nk->table[NK_COLOR_ORANGE_BUTTON] = nk_rgba(155, 65, 35, 255); - nk->table[NK_COLOR_ORANGE_HOVER] = nk_rgba(185, 95, 65, 255); - nk->table[NK_COLOR_EDIT_NUMBER] = nk_rgba(210, 110, 55, 255); - nk->table[NK_COLOR_COMBO_HOVER] = nk_rgba(60, 60, 65, 255); - nk->table[NK_COLOR_ACTIVE_HOVER] = nk_rgba(55, 135, 65, 255); - nk->table[NK_COLOR_MENU_BUTTON] = nk_rgba(50, 55, 65, 255); - nk->table[NK_COLOR_MENU_HOVER] = nk_rgba(70, 75, 85, 255); - nk->table[NK_COLOR_TEXT_HOVER] = nk_rgba(210, 110, 55, 255); - - nk_style_from_table(ctx, nk->table); - - style = &ctx->style; - - style->button.text_active = nk->table[NK_COLOR_EDIT_NUMBER]; - style->button.padding = nk_vec2(4.0f, 4.0f); - style->button.rounding = 4.0f; - - style->menu_button.normal = nk_style_item_color(nk->table[NK_COLOR_MENU_BUTTON]); - style->menu_button.hover = nk_style_item_color(nk->table[NK_COLOR_MENU_HOVER]); - style->menu_button.active = nk_style_item_color(nk->table[NK_COLOR_MENU_BUTTON]); - style->menu_button.border_color = nk->table[NK_COLOR_BORDER]; - style->menu_button.padding = nk_vec2(4.0f, 4.0f); - style->menu_button.border = 1.0f; - style->menu_button.rounding = 2.0f; - - style->contextual_button.hover = style->menu_button.hover; - style->contextual_button.active = style->menu_button.active; - style->contextual_button.text_hover = nk->table[NK_COLOR_TEXT_HOVER]; - style->contextual_button.padding = nk_vec2(4.0f, 4.0f); - - style->selectable.normal = nk_style_item_color(nk->table[NK_COLOR_SELECT]); - style->selectable.hover = nk_style_item_color(nk->table[NK_COLOR_COMBO_HOVER]); - style->selectable.pressed = nk_style_item_color(nk->table[NK_COLOR_COMBO_HOVER]); - style->selectable.normal_active = nk_style_item_color(nk->table[NK_COLOR_SELECT_ACTIVE]); - style->selectable.hover_active = nk_style_item_color(nk->table[NK_COLOR_ACTIVE_HOVER]); - style->selectable.pressed_active = nk_style_item_color(nk->table[NK_COLOR_ACTIVE_HOVER]); - style->selectable.rounding = 2.0f; - - style->combo.hover = nk_style_item_color(nk->table[NK_COLOR_COMBO_HOVER]); - style->combo.button.hover = style->combo.hover; - style->combo.content_padding = nk_vec2(4.0f, 4.0f); - style->combo.button_padding = nk_vec2(0.0f, 8.0f); - style->combo.rounding = 2.0f; - - style->edit.normal = nk_style_item_color(nk->table[NK_COLOR_EDIT]); - style->edit.hover = nk_style_item_color(nk->table[NK_COLOR_EDIT]); - style->edit.active = nk_style_item_color(nk->table[NK_COLOR_EDIT]); - style->edit.cursor_normal = nk->table[NK_COLOR_EDIT_CURSOR]; - style->edit.cursor_hover = nk->table[NK_COLOR_EDIT_CURSOR]; - style->edit.cursor_text_normal = nk->table[NK_COLOR_EDIT]; - style->edit.cursor_text_hover = nk->table[NK_COLOR_EDIT]; - style->edit.text_normal = nk->table[NK_COLOR_EDIT_NUMBER]; - style->edit.text_hover = nk->table[NK_COLOR_EDIT_NUMBER]; - style->edit.text_active = nk->table[NK_COLOR_EDIT_NUMBER]; - style->edit.selected_normal = nk->table[NK_COLOR_EDIT_NUMBER]; - style->edit.selected_hover = nk->table[NK_COLOR_EDIT_NUMBER]; - style->edit.selected_text_normal = nk->table[NK_COLOR_EDIT]; - style->edit.selected_text_hover = nk->table[NK_COLOR_EDIT]; - style->edit.padding = nk_vec2(4.0f, 4.0f); - style->edit.rounding = 2.0f; - - ctx->clip.paste = &nk_sdl_clipboard_paste; - ctx->clip.copy = &nk_sdl_clipboard_copy; - - nk_style_hide_cursor(ctx); -} - -NK_API float nk_sdl_text_width(nk_handle font, float height, const char *text, int len) -{ - TTF_Font *ttf_font = (TTF_Font *) font.ptr; - int text_w = 0, text_h = 0; - - TTF_SizeUTF8(ttf_font, nk_sdl_nullstr(text, len), &text_w, &text_h); - - return (float) text_w; -} - -static Uint32 -nk_sdl_color_packed(const struct nk_color col) -{ - union { - Uint32 l; - Uint8 b[4]; - } - vcol; - - vcol.b[0] = col.b; - vcol.b[1] = col.g; - vcol.b[2] = col.r; - vcol.b[3] = col.a; - - return vcol.l; -} - -static void -nk_sdl_scissor(struct nk_sdl *nk, const struct nk_command_scissor *s) -{ - nk->scissor.x = NK_MIN(NK_MAX(s->x, 0), nk->surface->w); - nk->scissor.y = NK_MIN(NK_MAX(s->y, 0), nk->surface->h); - nk->scissor.w = NK_MIN(NK_MAX(s->w + s->x + 1, 0), nk->surface->w); - nk->scissor.h = NK_MIN(NK_MAX(s->h + s->y + 1, 0), nk->surface->h); -} - -static void -nk_sdl_line_horizontal(struct nk_sdl *nk, int x0, int y0, int x1, Uint32 qcol) -{ - Uint32 *pixels = nk->surface->pixels; - - if (y0 >= nk->scissor.h || y0 < nk->scissor.y) - return ; - - if (x1 < x0) { - - int temp = x1; - - x1 = x0; - x0 = temp; - } - - if (x0 >= nk->scissor.w || x1 < nk->scissor.x) - return ; - - x0 = NK_MAX(nk->scissor.x, x0); - x1 = NK_MIN(nk->scissor.w - 1, x1); - - pixels += x0 + y0 * (nk->surface->pitch / 4); - - while (x1 - x0 >= 7) { - - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - *pixels++ = qcol; - - x0 += 8; - } - - while (x1 >= x0) { - - *pixels++ = qcol; - - x0 += 1; - } -} - -static void -nk_sdl_setpixel(struct nk_sdl *nk, int x0, int y0, Uint32 qcol) -{ - Uint32 *pixels = nk->surface->pixels; - - if ( y0 >= nk->scissor.y && y0 < nk->scissor.h - && x0 >= nk->scissor.x && x0 < nk->scissor.w) { - - *(pixels + x0 + y0 * (nk->surface->pitch / 4)) = qcol; - } -} - -static void -nk_sdl_stroke_line(struct nk_sdl *nk, int x0, int y0, int x1, int y1, - int thickness, const struct nk_color col) -{ - int dy, dx, stepx, stepy; - Uint32 qcol; - - qcol = nk_sdl_color_packed(col); - - dy = y1 - y0; - dx = x1 - x0; - - if (dy == 0) { - - nk_sdl_line_horizontal(nk, x0, y0, x1, qcol); - - return ; - } - - if (dy < 0) { - - dy = - dy; - stepy = -1; - } - else { - stepy = 1; - } - - if (dx < 0) { - - dx = - dx; - stepx = -1; - } - else { - stepx = 1; - } - - dy <<= 1; - dx <<= 1; - - nk_sdl_setpixel(nk, x0, y0, qcol); - - if (dx > dy) { - - int fraction = dy - (dx >> 1); - - while (x0 != x1) { - - if (fraction >= 0) { - - y0 += stepy; - fraction -= dx; - } - - x0 += stepx; - fraction += dy; - - nk_sdl_setpixel(nk, x0, y0, qcol); - } - } - else { - int fraction = dx - (dy >> 1); - - while (y0 != y1) { - - if (fraction >= 0) { - - x0 += stepx; - fraction -= dy; - } - - y0 += stepy; - fraction += dx; - - nk_sdl_setpixel(nk, x0, y0, qcol); - } - } -} - -static void -nk_sdl_fill_polygon(struct nk_sdl *nk, const struct nk_vec2i *pnts, - int count, const struct nk_color col) -{ - int left, top, bottom, right, swap, i, j; - int nodes, nodeX[80], pixelY; - Uint32 qcol; - - if (count == 0) - return ; - - count = NK_MIN(count, NK_LEN(nodeX)); - - qcol = nk_sdl_color_packed(col); - - left = pnts[0].x; - right = pnts[0].x; - top = pnts[0].y; - bottom = pnts[0].y; - - for (i = 1; i < count; i++) { - - left = NK_MIN(left, pnts[i].x); - right = NK_MAX(right, pnts[i].x); - top = NK_MIN(top, pnts[i].y); - bottom = NK_MAX(bottom, pnts[i].y); - } - - bottom++; - right++; - - for (pixelY = top; pixelY < bottom; pixelY++) { - - nodes = 0; - j = count - 1; - - for (i = 0; i < count; i++) { - - if ( ((pnts[i].y < pixelY) && (pnts[j].y >= pixelY)) - || ((pnts[j].y < pixelY) && (pnts[i].y >= pixelY))) { - - nodeX[nodes++] = (int) ((float) pnts[i].x - + ((float) pixelY - (float) pnts[i].y) - / ((float) pnts[j].y - (float) pnts[i].y) - * ((float) pnts[j].x - (float) pnts[i].x)); - } - - j = i; - } - - i = 0; - - while (i < nodes - 1) { - - if (nodeX[i] > nodeX[i+1]) { - - swap = nodeX[i]; - nodeX[i] = nodeX[i+1]; - nodeX[i+1] = swap; - - if (i) i--; - } - else i++; - } - - for (i = 0; i < nodes; i += 2) { - - if (nodeX[i+0] >= right) break; - if (nodeX[i+1] > left) { - - if (nodeX[i+0] < left) nodeX[i+0] = left; - if (nodeX[i+1] > right) nodeX[i+1] = right; - - nk_sdl_line_horizontal(nk, nodeX[i], pixelY, - nodeX[i+1], qcol); - } - } - } -} - -static void -nk_sdl_line(struct nk_sdl *nk, const struct nk_command_line *l) -{ - nk_sdl_stroke_line(nk, l->begin.x, l->begin.y, l->end.x, - l->end.y, l->line_thickness, l->color); -} - -static void -nk_sdl_curve(struct nk_sdl *nk, const struct nk_command_curve *c) -{ - struct nk_vec2i last = c->begin; - float t_step; - int i_step, segments; - - segments = 24; - t_step = 1.f / (float) segments; - - for (i_step = 1; i_step <= segments; ++i_step) { - - float t = t_step * (float) i_step; - float u = 1.f - t; - float w1 = u*u*u; - float w2 = 3.f*u*u*t; - float w3 = 3.f*u*t*t; - float w4 = t*t*t; - - float x = w1 * c->begin.x + w2 * c->ctrl[0].x - + w3 * c->ctrl[1].x + w4 * c->end.x; - - float y = w1 * c->begin.y + w2 * c->ctrl[0].y - + w3 * c->ctrl[1].y + w4 * c->end.y; - - nk_sdl_stroke_line(nk, last.x, last.y, (int) x, (int) y, - c->line_thickness, c->color); - - last.x = (int) x; - last.y = (int) y; - } -} - -static void -nk_sdl_rect(struct nk_sdl *nk, const struct nk_command_rect *r) -{ - int x, y, w, h, b, tc; - - x = r->x; - y = r->y; - w = r->w; - h = r->h; - - b = r->rounding; - tc = r->line_thickness; - - nk_sdl_stroke_line(nk, x + b, y, x + w - b, y, tc, r->color); - nk_sdl_stroke_line(nk, x + b, y + h, x + w - b, y + h, tc, r->color); - nk_sdl_stroke_line(nk, x, y + b, x, y + h - b, tc, r->color); - nk_sdl_stroke_line(nk, x + w, y + b, x + w, y + h - b, tc, r->color); - - nk_sdl_stroke_line(nk, x + b, y, x, y + b, tc, r->color); - nk_sdl_stroke_line(nk, x + w - b, y, x + w, y + b, tc, r->color); - nk_sdl_stroke_line(nk, x, y + h - b, x + b, y + h, tc, r->color); - nk_sdl_stroke_line(nk, x + w - b, y + h, x + w, y + h - b, tc, r->color); -} - -static void -nk_sdl_rect_filled(struct nk_sdl *nk, const struct nk_command_rect_filled *r) -{ - int x, y, w, h, i, b; - - Uint32 qcol; - - x = r->x; - y = r->y; - w = r->w; - h = r->h; - - qcol = nk_sdl_color_packed(r->color); - - for (i = 0; i < r->rounding; i++) { - - b = r->rounding - i; - - nk_sdl_line_horizontal(nk, x + b, y + i, x + w - b, qcol); - } - - for (i = r->rounding; i < h - r->rounding; i++) { - - nk_sdl_line_horizontal(nk, x, y + i, x + w, qcol); - } - - for (i = h - r->rounding; i <= h; i++) { - - b = i - (h - r->rounding); - - nk_sdl_line_horizontal(nk, x + b, y + i, x + w - b, qcol); - } -} - -static void -nk_sdl_rect_multi_color(struct nk_sdl *nk, const struct nk_command_rect_multi_color *r) -{ - /* TODO */ -} - -static void -nk_sdl_circle(struct nk_sdl *nk, const struct nk_command_circle *c) -{ - int x0, y0, w, h, x, y, sigma; - int a2, b2, fa2, fb2; - - Uint32 qcol; - - qcol = nk_sdl_color_packed(c->color); - - x0 = c->x; - y0 = c->y; - w = c->w; - h = c->h; - - a2 = (w * w) / 4; - b2 = (h * h) / 4; - fa2 = 4 * a2; - fb2 = 4 * b2; - - h = (h + 1) / 2; - w = (w + 1) / 2; - - x0 += w; - y0 += h; - - for (x = 0, y = h, sigma = 2*b2+a2*(1-2*h); b2*x <= a2*y; x++) { - - nk_sdl_setpixel(nk, x0 + x, y0 + y, qcol); - nk_sdl_setpixel(nk, x0 - x, y0 + y, qcol); - nk_sdl_setpixel(nk, x0 + x, y0 - y, qcol); - nk_sdl_setpixel(nk, x0 - x, y0 - y, qcol); - - if (sigma >= 0) { - - sigma += fa2 * (1 - y); - y--; - } - - sigma += b2 * ((4 * x) + 6); - } - - for (x = w, y = 0, sigma = 2*a2+b2*(1-2*w); a2*y <= b2*x; y++) { - - nk_sdl_setpixel(nk, x0 + x, y0 + y, qcol); - nk_sdl_setpixel(nk, x0 - x, y0 + y, qcol); - nk_sdl_setpixel(nk, x0 + x, y0 - y, qcol); - nk_sdl_setpixel(nk, x0 - x, y0 - y, qcol); - - if (sigma >= 0) { - - sigma += fb2 * (1 - x); - x--; - } - - sigma += a2 * ((4 * y) + 6); - } -} - -static void -nk_sdl_circle_filled(struct nk_sdl *nk, const struct nk_command_circle_filled *c) -{ - int x0, y0, w, h, x, y, sigma; - int a2, b2, fa2, fb2; - Uint32 qcol; - - qcol = nk_sdl_color_packed(c->color); - - x0 = c->x; - y0 = c->y; - w = c->w; - h = c->h; - - a2 = (w * w) / 4; - b2 = (h * h) / 4; - fa2 = 4 * a2; - fb2 = 4 * b2; - - h = (h + 1) / 2; - w = (w + 1) / 2; - - x0 += w; - y0 += h; - - for (x = 0, y = h, sigma = 2*b2+a2*(1-2*h); b2*x <= a2*y; x++) { - - nk_sdl_line_horizontal(nk, x0 - x, y0 + y, x0 + x, qcol); - nk_sdl_line_horizontal(nk, x0 - x, y0 - y, x0 + x, qcol); - - if (sigma >= 0) { - - sigma += fa2 * (1 - y); - y--; - } - - sigma += b2 * ((4 * x) + 6); - } - - for (x = w, y = 0, sigma = 2*a2+b2*(1-2*w); a2*y <= b2*x; y++) { - - nk_sdl_line_horizontal(nk, x0 - x, y0 + y, x0 + x, qcol); - nk_sdl_line_horizontal(nk, x0 - x, y0 - y, x0 + x, qcol); - - if (sigma >= 0) { - - sigma += fb2 * (1 - x); - x--; - } - - sigma += a2 * ((4 * y) + 6); - } -} - -static void -nk_sdl_arc(struct nk_sdl *nk, const struct nk_command_arc *a) -{ - /* TODO */ -} - -static void -nk_sdl_arc_filled(struct nk_sdl *nk, const struct nk_command_arc_filled *a) -{ - /* TODO */ -} - -static void -nk_sdl_triangle(struct nk_sdl *nk, const struct nk_command_triangle *t) -{ - int tc = t->line_thickness; - - nk_sdl_stroke_line(nk, t->a.x, t->a.y, t->b.x, t->b.y, tc, t->color); - nk_sdl_stroke_line(nk, t->b.x, t->b.y, t->c.x, t->c.y, tc, t->color); - nk_sdl_stroke_line(nk, t->c.x, t->c.y, t->a.x, t->a.y, tc, t->color); -} - -static void -nk_sdl_triangle_filled(struct nk_sdl *nk, const struct nk_command_triangle_filled *t) -{ - struct nk_vec2i pnts[3]; - - pnts[0].x = t->a.x; - pnts[0].y = t->a.y; - pnts[1].x = t->b.x; - pnts[1].y = t->b.y; - pnts[2].x = t->c.x; - pnts[2].y = t->c.y; - - nk_sdl_fill_polygon(nk, pnts, 3, t->color); -} - -static void -nk_sdl_polygon(struct nk_sdl *nk, const struct nk_command_polygon *p) -{ - int i; - - for (i = 1; i < p->point_count; ++i) { - - nk_sdl_stroke_line(nk, p->points[i-1].x, p->points[i-1].y, p->points[i].x, - p->points[i].y, p->line_thickness, p->color); - } - - nk_sdl_stroke_line(nk, p->points[p->point_count-1].x, p->points[p->point_count-1].y, - p->points[0].x, p->points[0].y, p->line_thickness, p->color); -} - -static void -nk_sdl_polygon_filled(struct nk_sdl *nk, const struct nk_command_polygon_filled *p) -{ - nk_sdl_fill_polygon(nk, p->points, p->point_count, p->color); -} - -static void -nk_sdl_polyline(struct nk_sdl *nk, const struct nk_command_polyline *l) -{ - int i; - - for (i = 0; i < l->point_count - 1; ++i) { - - nk_sdl_stroke_line(nk, l->points[i].x, l->points[i].y, - l->points[i+1].x, l->points[i+1].y, - l->line_thickness, l->color); - } -} - -static void -nk_sdl_text(struct nk_sdl *nk, const struct nk_command_text *t) -{ - TTF_Font *ttf_font = (TTF_Font *) t->font->userdata.ptr; - SDL_Surface *text_surface; - SDL_Rect clip_rect, text_rect; - SDL_Color fgcol; - - fgcol.r = t->foreground.r; - fgcol.g = t->foreground.g; - fgcol.b = t->foreground.b; - fgcol.a = t->foreground.a; - - text_surface = TTF_RenderUTF8_Blended(ttf_font, - nk_sdl_nullstr(t->string, t->length), fgcol); - - if (text_surface != NULL) { - - clip_rect.x = nk->scissor.x; - clip_rect.y = nk->scissor.y; - clip_rect.w = nk->scissor.w - nk->scissor.x; - clip_rect.h = nk->scissor.h - nk->scissor.y; - - text_rect.x = t->x; - text_rect.y = t->y; - text_rect.w = t->w; - text_rect.h = t->h; - - SDL_SetClipRect(nk->surface, &clip_rect); - - SDL_BlitSurface(text_surface, NULL, nk->surface, &text_rect); - SDL_FreeSurface(text_surface); - - SDL_SetClipRect(nk->surface, NULL); - } -} - -static void -nk_sdl_image(struct nk_sdl *nk, const struct nk_command_image *i) -{ - /* TODO */ -} - -NK_API void nk_sdl_render(struct nk_sdl *nk) -{ - const struct nk_command *cmd; - - nk->scissor.x = 0; - nk->scissor.y = 0; - nk->scissor.w = nk->surface->w; - nk->scissor.h = nk->surface->h; - - nk_foreach(cmd, (struct nk_context *) &nk->ctx) { - - switch (cmd->type) { - - case NK_COMMAND_NOP: - break; - - case NK_COMMAND_SCISSOR: - nk_sdl_scissor(nk, (void *) cmd); - break; - - case NK_COMMAND_LINE: - nk_sdl_line(nk, (void *) cmd); - break; - - case NK_COMMAND_CURVE: - nk_sdl_curve(nk, (void *) cmd); - break; - - case NK_COMMAND_RECT: - nk_sdl_rect(nk, (void *) cmd); - break; - - case NK_COMMAND_RECT_FILLED: - nk_sdl_rect_filled(nk, (void *) cmd); - break; - - case NK_COMMAND_RECT_MULTI_COLOR: - nk_sdl_rect_multi_color(nk, (void *) cmd); - break; - - case NK_COMMAND_CIRCLE: - nk_sdl_circle(nk, (void *) cmd); - break; - - case NK_COMMAND_CIRCLE_FILLED: - nk_sdl_circle_filled(nk, (void *) cmd); - break; - - case NK_COMMAND_ARC: - nk_sdl_arc(nk, (void *) cmd); - break; - - case NK_COMMAND_ARC_FILLED: - nk_sdl_arc_filled(nk, (void *) cmd); - break; - - case NK_COMMAND_TRIANGLE: - nk_sdl_triangle(nk, (void *) cmd); - break; - - case NK_COMMAND_TRIANGLE_FILLED: - nk_sdl_triangle_filled(nk, (void *) cmd); - break; - - case NK_COMMAND_POLYGON: - nk_sdl_polygon(nk, (void *) cmd); - break; - - case NK_COMMAND_POLYGON_FILLED: - nk_sdl_polygon_filled(nk, (void *) cmd); - break; - - case NK_COMMAND_POLYLINE: - nk_sdl_polyline(nk, (void *) cmd); - break; - - case NK_COMMAND_TEXT: - nk_sdl_text(nk, (void *) cmd); - break; - - case NK_COMMAND_IMAGE: - nk_sdl_image(nk, (void *) cmd); - break; - - case NK_COMMAND_CUSTOM: - break; - } - } - - nk_clear((struct nk_context*) &nk->ctx); -} - diff --git a/phobia/nksdl.h b/phobia/nksdl.h deleted file mode 100644 index bab63f5..0000000 --- a/phobia/nksdl.h +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef _H_NK_SDL_ -#define _H_NK_SDL_ - -#include -#include - -#define NK_ASSERT(s) /* do nothing */ - -#define NK_INCLUDE_FIXED_TYPES -#define NK_INCLUDE_DEFAULT_ALLOCATOR - -#include "nuklear.h" - -enum { - NK_COLOR_BACKGROUND = NK_COLOR_COUNT, - NK_COLOR_HIDDEN, - NK_COLOR_CONFIG, - NK_COLOR_DESIGN, - NK_COLOR_FLICKER_LIGHT, - NK_COLOR_FLICKER_ALERT, - NK_COLOR_ENABLED, - NK_COLOR_ORANGE_BUTTON, - NK_COLOR_ORANGE_HOVER, - NK_COLOR_EDIT_NUMBER, - NK_COLOR_COMBO_HOVER, - NK_COLOR_ACTIVE_HOVER, - NK_COLOR_MENU_BUTTON, - NK_COLOR_MENU_HOVER, - NK_COLOR_TEXT_HOVER -}; - -struct nk_sdl { - - struct nk_context ctx; - struct nk_user_font font; - struct nk_recti scissor; - struct nk_color table[NK_COLOR_COUNT + 20]; - - int clock; - int updated; - int idled; - - SDL_Window *window; - SDL_Surface *fb; - SDL_Surface *surface; - TTF_Font *ttf_font; - - int window_ID; - - int onquit; - int active; - int keyctrl; -}; - -NK_API void nk_sdl_input_event(struct nk_sdl *nk, SDL_Event *ev); -NK_API void nk_sdl_style_custom(struct nk_sdl *nk); -NK_API float nk_sdl_text_width(nk_handle font, float height, const char *text, int len); -NK_API void nk_sdl_render(struct nk_sdl *nk); - -#endif /* _H_NK_SDL_ */ - diff --git a/phobia/nuklear.h b/phobia/nuklear.h deleted file mode 100644 index 25a3e14..0000000 --- a/phobia/nuklear.h +++ /dev/null @@ -1,30486 +0,0 @@ -/* -/// # Nuklear -/// ![](https://cloud.githubusercontent.com/assets/8057201/11761525/ae06f0ca-a0c6-11e5-819d-5610b25f6ef4.gif) -/// -/// ## Contents -/// 1. About section -/// 2. Highlights section -/// 3. Features section -/// 4. Usage section -/// 1. Flags section -/// 2. Constants section -/// 3. Dependencies section -/// 5. Example section -/// 6. API section -/// 1. Context section -/// 2. Input section -/// 3. Drawing section -/// 4. Window section -/// 5. Layouting section -/// 6. Groups section -/// 7. Tree section -/// 8. Properties section -/// 7. License section -/// 8. Changelog section -/// 9. Gallery section -/// 10. Credits section -/// -/// ## About -/// This is a minimal state immediate mode graphical user interface toolkit -/// written in ANSI C and licensed under public domain. It was designed as a simple -/// embeddable user interface for application and does not have any dependencies, -/// a default renderbackend or OS window and input handling but instead provides a very modular -/// library approach by using simple input state for input and draw -/// commands describing primitive shapes as output. So instead of providing a -/// layered library that tries to abstract over a number of platform and -/// render backends it only focuses on the actual UI. -/// -/// ## Highlights -/// - Graphical user interface toolkit -/// - Single header library -/// - Written in C89 (a.k.a. ANSI C or ISO C90) -/// - Small codebase (~18kLOC) -/// - Focus on portability, efficiency and simplicity -/// - No dependencies (not even the standard library if not wanted) -/// - Fully skinnable and customizable -/// - Low memory footprint with total memory control if needed or wanted -/// - UTF-8 support -/// - No global or hidden state -/// - Customizable library modules (you can compile and use only what you need) -/// - Optional font baker and vertex buffer output -/// - [Code available on github](https://github.com/Immediate-Mode-UI/Nuklear/) -/// -/// ## Features -/// - Absolutely no platform dependent code -/// - Memory management control ranging from/to -/// - Ease of use by allocating everything from standard library -/// - Control every byte of memory inside the library -/// - Font handling control ranging from/to -/// - Use your own font implementation for everything -/// - Use this libraries internal font baking and handling API -/// - Drawing output control ranging from/to -/// - Simple shapes for more high level APIs which already have drawing capabilities -/// - Hardware accessible anti-aliased vertex buffer output -/// - Customizable colors and properties ranging from/to -/// - Simple changes to color by filling a simple color table -/// - Complete control with ability to use skinning to decorate widgets -/// - Bendable UI library with widget ranging from/to -/// - Basic widgets like buttons, checkboxes, slider, ... -/// - Advanced widget like abstract comboboxes, contextual menus,... -/// - Compile time configuration to only compile what you need -/// - Subset which can be used if you do not want to link or use the standard library -/// - Can be easily modified to only update on user input instead of frame updates -/// -/// ## Usage -/// This library is self contained in one single header file and can be used either -/// in header only mode or in implementation mode. The header only mode is used -/// by default when included and allows including this header in other headers -/// and does not contain the actual implementation.

-/// -/// The implementation mode requires to define the preprocessor macro -/// NK_IMPLEMENTATION in *one* .c/.cpp file before #including this file, e.g.: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~C -/// #define NK_IMPLEMENTATION -/// #include "nuklear.h" -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Also optionally define the symbols listed in the section "OPTIONAL DEFINES" -/// below in header and implementation mode if you want to use additional functionality -/// or need more control over the library. -/// -/// !!! WARNING -/// Every time nuklear is included define the same compiler flags. This very important not doing so could lead to compiler errors or even worse stack corruptions. -/// -/// ### Flags -/// Flag | Description -/// --------------------------------|------------------------------------------ -/// NK_PRIVATE | If defined declares all functions as static, so they can only be accessed inside the file that contains the implementation -/// NK_INCLUDE_FIXED_TYPES | If defined it will include header `` for fixed sized types otherwise nuklear tries to select the correct type. If that fails it will throw a compiler error and you have to select the correct types yourself. -/// NK_INCLUDE_DEFAULT_ALLOCATOR | If defined it will include header `` and provide additional functions to use this library without caring for memory allocation control and therefore ease memory management. -/// NK_INCLUDE_STANDARD_IO | If defined it will include header `` and provide additional functions depending on file loading. -/// NK_INCLUDE_STANDARD_VARARGS | If defined it will include header and provide additional functions depending on file loading. -/// NK_INCLUDE_STANDARD_BOOL | If defined it will include header `` for nk_bool otherwise nuklear defines nk_bool as int. -/// NK_INCLUDE_VERTEX_BUFFER_OUTPUT | Defining this adds a vertex draw command list backend to this library, which allows you to convert queue commands into vertex draw commands. This is mainly if you need a hardware accessible format for OpenGL, DirectX, Vulkan, Metal,... -/// NK_INCLUDE_FONT_BAKING | Defining this adds `stb_truetype` and `stb_rect_pack` implementation to this library and provides font baking and rendering. If you already have font handling or do not want to use this font handler you don't have to define it. -/// NK_INCLUDE_DEFAULT_FONT | Defining this adds the default font: ProggyClean.ttf into this library which can be loaded into a font atlas and allows using this library without having a truetype font -/// NK_INCLUDE_COMMAND_USERDATA | Defining this adds a userdata pointer into each command. Can be useful for example if you want to provide custom shaders depending on the used widget. Can be combined with the style structures. -/// NK_BUTTON_TRIGGER_ON_RELEASE | Different platforms require button clicks occurring either on buttons being pressed (up to down) or released (down to up). By default this library will react on buttons being pressed, but if you define this it will only trigger if a button is released. -/// NK_ZERO_COMMAND_MEMORY | Defining this will zero out memory for each drawing command added to a drawing queue (inside nk_command_buffer_push). Zeroing command memory is very useful for fast checking (using memcmp) if command buffers are equal and avoid drawing frames when nothing on screen has changed since previous frame. -/// NK_UINT_DRAW_INDEX | Defining this will set the size of vertex index elements when using NK_VERTEX_BUFFER_OUTPUT to 32bit instead of the default of 16bit -/// NK_KEYSTATE_BASED_INPUT | Define this if your backend uses key state for each frame rather than key press/release events -/// -/// !!! WARNING -/// The following flags will pull in the standard C library: -/// - NK_INCLUDE_DEFAULT_ALLOCATOR -/// - NK_INCLUDE_STANDARD_IO -/// - NK_INCLUDE_STANDARD_VARARGS -/// -/// !!! WARNING -/// The following flags if defined need to be defined for both header and implementation: -/// - NK_INCLUDE_FIXED_TYPES -/// - NK_INCLUDE_DEFAULT_ALLOCATOR -/// - NK_INCLUDE_STANDARD_VARARGS -/// - NK_INCLUDE_STANDARD_BOOL -/// - NK_INCLUDE_VERTEX_BUFFER_OUTPUT -/// - NK_INCLUDE_FONT_BAKING -/// - NK_INCLUDE_DEFAULT_FONT -/// - NK_INCLUDE_STANDARD_VARARGS -/// - NK_INCLUDE_COMMAND_USERDATA -/// - NK_UINT_DRAW_INDEX -/// -/// ### Constants -/// Define | Description -/// --------------------------------|--------------------------------------- -/// NK_BUFFER_DEFAULT_INITIAL_SIZE | Initial buffer size allocated by all buffers while using the default allocator functions included by defining NK_INCLUDE_DEFAULT_ALLOCATOR. If you don't want to allocate the default 4k memory then redefine it. -/// NK_MAX_NUMBER_BUFFER | Maximum buffer size for the conversion buffer between float and string Under normal circumstances this should be more than sufficient. -/// NK_INPUT_MAX | Defines the max number of bytes which can be added as text input in one frame. Under normal circumstances this should be more than sufficient. -/// -/// !!! WARNING -/// The following constants if defined need to be defined for both header and implementation: -/// - NK_MAX_NUMBER_BUFFER -/// - NK_BUFFER_DEFAULT_INITIAL_SIZE -/// - NK_INPUT_MAX -/// -/// ### Dependencies -/// Function | Description -/// ------------|--------------------------------------------------------------- -/// NK_ASSERT | If you don't define this, nuklear will use with assert(). -/// NK_MEMSET | You can define this to 'memset' or your own memset implementation replacement. If not nuklear will use its own version. -/// NK_MEMCPY | You can define this to 'memcpy' or your own memcpy implementation replacement. If not nuklear will use its own version. -/// NK_INV_SQRT | You can define this to your own inverse sqrt implementation replacement. If not nuklear will use its own slow and not highly accurate version. -/// NK_SIN | You can define this to 'sinf' or your own sine implementation replacement. If not nuklear will use its own approximation implementation. -/// NK_COS | You can define this to 'cosf' or your own cosine implementation replacement. If not nuklear will use its own approximation implementation. -/// NK_STRTOD | You can define this to `strtod` or your own string to double conversion implementation replacement. If not defined nuklear will use its own imprecise and possibly unsafe version (does not handle nan or infinity!). -/// NK_DTOA | You can define this to `dtoa` or your own double to string conversion implementation replacement. If not defined nuklear will use its own imprecise and possibly unsafe version (does not handle nan or infinity!). -/// NK_VSNPRINTF| If you define `NK_INCLUDE_STANDARD_VARARGS` as well as `NK_INCLUDE_STANDARD_IO` and want to be safe define this to `vsnprintf` on compilers supporting later versions of C or C++. By default nuklear will check for your stdlib version in C as well as compiler version in C++. if `vsnprintf` is available it will define it to `vsnprintf` directly. If not defined and if you have older versions of C or C++ it will be defined to `vsprintf` which is unsafe. -/// -/// !!! WARNING -/// The following dependencies will pull in the standard C library if not redefined: -/// - NK_ASSERT -/// -/// !!! WARNING -/// The following dependencies if defined need to be defined for both header and implementation: -/// - NK_ASSERT -/// -/// !!! WARNING -/// The following dependencies if defined need to be defined only for the implementation part: -/// - NK_MEMSET -/// - NK_MEMCPY -/// - NK_SQRT -/// - NK_SIN -/// - NK_COS -/// - NK_STRTOD -/// - NK_DTOA -/// - NK_VSNPRINTF -/// -/// ## Example -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// // init gui state -/// enum {EASY, HARD}; -/// static int op = EASY; -/// static float value = 0.6f; -/// static int i = 20; -/// struct nk_context ctx; -/// -/// nk_init_fixed(&ctx, calloc(1, MAX_MEMORY), MAX_MEMORY, &font); -/// if (nk_begin(&ctx, "Show", nk_rect(50, 50, 220, 220), -/// NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_CLOSABLE)) { -/// // fixed widget pixel width -/// nk_layout_row_static(&ctx, 30, 80, 1); -/// if (nk_button_label(&ctx, "button")) { -/// // event handling -/// } -/// -/// // fixed widget window ratio width -/// nk_layout_row_dynamic(&ctx, 30, 2); -/// if (nk_option_label(&ctx, "easy", op == EASY)) op = EASY; -/// if (nk_option_label(&ctx, "hard", op == HARD)) op = HARD; -/// -/// // custom widget pixel width -/// nk_layout_row_begin(&ctx, NK_STATIC, 30, 2); -/// { -/// nk_layout_row_push(&ctx, 50); -/// nk_label(&ctx, "Volume:", NK_TEXT_LEFT); -/// nk_layout_row_push(&ctx, 110); -/// nk_slider_float(&ctx, 0, &value, 1.0f, 0.1f); -/// } -/// nk_layout_row_end(&ctx); -/// } -/// nk_end(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// ![](https://cloud.githubusercontent.com/assets/8057201/10187981/584ecd68-675c-11e5-897c-822ef534a876.png) -/// -/// ## API -/// -*/ -#ifndef NK_SINGLE_FILE - #define NK_SINGLE_FILE -#endif - -#ifndef NK_NUKLEAR_H_ -#define NK_NUKLEAR_H_ - -#ifdef __cplusplus -extern "C" { -#endif -/* - * ============================================================== - * - * CONSTANTS - * - * =============================================================== - */ -#define NK_UNDEFINED (-1.0f) -#define NK_UTF_INVALID 0xFFFD /* internal invalid utf8 rune */ -#define NK_UTF_SIZE 4 /* describes the number of bytes a glyph consists of*/ -#ifndef NK_INPUT_MAX - #define NK_INPUT_MAX 16 -#endif -#ifndef NK_MAX_NUMBER_BUFFER - #define NK_MAX_NUMBER_BUFFER 64 -#endif -#ifndef NK_SCROLLBAR_HIDING_TIMEOUT - #define NK_SCROLLBAR_HIDING_TIMEOUT 4.0f -#endif -/* - * ============================================================== - * - * HELPER - * - * =============================================================== - */ -#ifndef NK_API - #ifdef NK_PRIVATE - #if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199409L)) - #define NK_API static inline - #elif defined(__cplusplus) - #define NK_API static inline - #else - #define NK_API static - #endif - #else - #define NK_API extern - #endif -#endif -#ifndef NK_LIB - #ifdef NK_SINGLE_FILE - #define NK_LIB static - #else - #define NK_LIB extern - #endif -#endif - -#define NK_INTERN static -#define NK_STORAGE static -#define NK_GLOBAL static - -#define NK_FLAG(x) (1 << (x)) -#define NK_STRINGIFY(x) #x -#define NK_MACRO_STRINGIFY(x) NK_STRINGIFY(x) -#define NK_STRING_JOIN_IMMEDIATE(arg1, arg2) arg1 ## arg2 -#define NK_STRING_JOIN_DELAY(arg1, arg2) NK_STRING_JOIN_IMMEDIATE(arg1, arg2) -#define NK_STRING_JOIN(arg1, arg2) NK_STRING_JOIN_DELAY(arg1, arg2) - -#ifdef _MSC_VER - #define NK_UNIQUE_NAME(name) NK_STRING_JOIN(name,__COUNTER__) -#else - #define NK_UNIQUE_NAME(name) NK_STRING_JOIN(name,__LINE__) -#endif - -#ifndef NK_STATIC_ASSERT - #define NK_STATIC_ASSERT(exp) typedef char NK_UNIQUE_NAME(_dummy_array)[(exp)?1:-1] -#endif - -#ifndef NK_FILE_LINE -#ifdef _MSC_VER - #define NK_FILE_LINE __FILE__ ":" NK_MACRO_STRINGIFY(__COUNTER__) -#else - #define NK_FILE_LINE __FILE__ ":" NK_MACRO_STRINGIFY(__LINE__) -#endif -#endif - -#define NK_MIN(a,b) ((a) < (b) ? (a) : (b)) -#define NK_MAX(a,b) ((a) < (b) ? (b) : (a)) -#define NK_CLAMP(i,v,x) (NK_MAX(NK_MIN(v,x), i)) - -#ifdef NK_INCLUDE_STANDARD_VARARGS - #include - #if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */ - #include - #define NK_PRINTF_FORMAT_STRING _Printf_format_string_ - #else - #define NK_PRINTF_FORMAT_STRING - #endif - #if defined(__GNUC__) - #define NK_PRINTF_VARARG_FUNC(fmtargnumber) __attribute__((format(__printf__, fmtargnumber, fmtargnumber+1))) - #define NK_PRINTF_VALIST_FUNC(fmtargnumber) __attribute__((format(__printf__, fmtargnumber, 0))) - #else - #define NK_PRINTF_VARARG_FUNC(fmtargnumber) - #define NK_PRINTF_VALIST_FUNC(fmtargnumber) - #endif -#endif - -/* - * =============================================================== - * - * BASIC - * - * =============================================================== - */ -#ifdef NK_INCLUDE_FIXED_TYPES - #include - #define NK_INT8 int8_t - #define NK_UINT8 uint8_t - #define NK_INT16 int16_t - #define NK_UINT16 uint16_t - #define NK_INT32 int32_t - #define NK_UINT32 uint32_t - #define NK_SIZE_TYPE uintptr_t - #define NK_POINTER_TYPE uintptr_t -#else - #ifndef NK_INT8 - #define NK_INT8 signed char - #endif - #ifndef NK_UINT8 - #define NK_UINT8 unsigned char - #endif - #ifndef NK_INT16 - #define NK_INT16 signed short - #endif - #ifndef NK_UINT16 - #define NK_UINT16 unsigned short - #endif - #ifndef NK_INT32 - #if defined(_MSC_VER) - #define NK_INT32 __int32 - #else - #define NK_INT32 signed int - #endif - #endif - #ifndef NK_UINT32 - #if defined(_MSC_VER) - #define NK_UINT32 unsigned __int32 - #else - #define NK_UINT32 unsigned int - #endif - #endif - #ifndef NK_SIZE_TYPE - #if defined(_WIN64) && defined(_MSC_VER) - #define NK_SIZE_TYPE unsigned __int64 - #elif (defined(_WIN32) || defined(WIN32)) && defined(_MSC_VER) - #define NK_SIZE_TYPE unsigned __int32 - #elif defined(__GNUC__) || defined(__clang__) - #if defined(__x86_64__) || defined(__ppc64__) || defined(__PPC64__) || defined(__aarch64__) - #define NK_SIZE_TYPE unsigned long - #else - #define NK_SIZE_TYPE unsigned int - #endif - #else - #define NK_SIZE_TYPE unsigned long - #endif - #endif - #ifndef NK_POINTER_TYPE - #if defined(_WIN64) && defined(_MSC_VER) - #define NK_POINTER_TYPE unsigned __int64 - #elif (defined(_WIN32) || defined(WIN32)) && defined(_MSC_VER) - #define NK_POINTER_TYPE unsigned __int32 - #elif defined(__GNUC__) || defined(__clang__) - #if defined(__x86_64__) || defined(__ppc64__) || defined(__PPC64__) || defined(__aarch64__) - #define NK_POINTER_TYPE unsigned long - #else - #define NK_POINTER_TYPE unsigned int - #endif - #else - #define NK_POINTER_TYPE unsigned long - #endif - #endif -#endif - -#ifndef NK_BOOL - #ifdef NK_INCLUDE_STANDARD_BOOL - #include - #define NK_BOOL bool - #else - #define NK_BOOL int /* could be char, use int for drop-in replacement backwards compatibility */ - #endif -#endif - -typedef NK_INT8 nk_char; -typedef NK_UINT8 nk_uchar; -typedef NK_UINT8 nk_byte; -typedef NK_INT16 nk_short; -typedef NK_UINT16 nk_ushort; -typedef NK_INT32 nk_int; -typedef NK_UINT32 nk_uint; -typedef NK_SIZE_TYPE nk_size; -typedef NK_POINTER_TYPE nk_ptr; -typedef NK_BOOL nk_bool; - -typedef nk_uint nk_hash; -typedef nk_uint nk_flags; -typedef nk_uint nk_rune; - -/* Make sure correct type size: - * This will fire with a negative subscript error if the type sizes - * are set incorrectly by the compiler, and compile out if not */ -NK_STATIC_ASSERT(sizeof(nk_short) == 2); -NK_STATIC_ASSERT(sizeof(nk_ushort) == 2); -NK_STATIC_ASSERT(sizeof(nk_uint) == 4); -NK_STATIC_ASSERT(sizeof(nk_int) == 4); -NK_STATIC_ASSERT(sizeof(nk_byte) == 1); -NK_STATIC_ASSERT(sizeof(nk_flags) >= 4); -NK_STATIC_ASSERT(sizeof(nk_rune) >= 4); -NK_STATIC_ASSERT(sizeof(nk_size) >= sizeof(void*)); -NK_STATIC_ASSERT(sizeof(nk_ptr) >= sizeof(void*)); -#ifdef NK_INCLUDE_STANDARD_BOOL -NK_STATIC_ASSERT(sizeof(nk_bool) == sizeof(bool)); -#else -NK_STATIC_ASSERT(sizeof(nk_bool) >= 2); -#endif - -/* ============================================================================ - * - * API - * - * =========================================================================== */ -struct nk_buffer; -struct nk_allocator; -struct nk_command_buffer; -struct nk_draw_command; -struct nk_convert_config; -struct nk_style_item; -struct nk_text_edit; -struct nk_draw_list; -struct nk_user_font; -struct nk_panel; -struct nk_context; -struct nk_draw_vertex_layout_element; -struct nk_style_button; -struct nk_style_toggle; -struct nk_style_selectable; -struct nk_style_slide; -struct nk_style_progress; -struct nk_style_scrollbar; -struct nk_style_edit; -struct nk_style_property; -struct nk_style_chart; -struct nk_style_combo; -struct nk_style_tab; -struct nk_style_window_header; -struct nk_style_window; - -enum {nk_false, nk_true}; -struct nk_color {nk_byte r,g,b,a;}; -struct nk_colorf {float r,g,b,a;}; -struct nk_vec2 {float x,y;}; -struct nk_vec2i {short x, y;}; -struct nk_rect {float x,y,w,h;}; -struct nk_recti {short x,y,w,h;}; -typedef char nk_glyph[NK_UTF_SIZE]; -typedef union {void *ptr; int id;} nk_handle; -struct nk_image {nk_handle handle; nk_ushort w, h; nk_ushort region[4];}; -struct nk_nine_slice {struct nk_image img; nk_ushort l, t, r, b;}; -struct nk_cursor {struct nk_image img; struct nk_vec2 size, offset;}; -struct nk_scroll {nk_uint x, y;}; - -enum nk_heading {NK_UP, NK_RIGHT, NK_DOWN, NK_LEFT}; -enum nk_button_behavior {NK_BUTTON_DEFAULT, NK_BUTTON_REPEATER}; -enum nk_modify {NK_FIXED = nk_false, NK_MODIFIABLE = nk_true}; -enum nk_orientation {NK_VERTICAL, NK_HORIZONTAL}; -enum nk_collapse_states {NK_MINIMIZED = nk_false, NK_MAXIMIZED = nk_true}; -enum nk_show_states {NK_HIDDEN = nk_false, NK_SHOWN = nk_true}; -enum nk_chart_type {NK_CHART_LINES, NK_CHART_COLUMN, NK_CHART_MAX}; -enum nk_chart_event {NK_CHART_HOVERING = 0x01, NK_CHART_CLICKED = 0x02}; -enum nk_color_format {NK_RGB, NK_RGBA}; -enum nk_popup_type {NK_POPUP_STATIC, NK_POPUP_DYNAMIC}; -enum nk_layout_format {NK_DYNAMIC, NK_STATIC}; -enum nk_tree_type {NK_TREE_NODE, NK_TREE_TAB}; - -typedef void*(*nk_plugin_alloc)(nk_handle, void *old, nk_size); -typedef void (*nk_plugin_free)(nk_handle, void *old); -typedef nk_bool(*nk_plugin_filter)(const struct nk_text_edit*, nk_rune unicode); -typedef void(*nk_plugin_paste)(nk_handle, struct nk_text_edit*); -typedef void(*nk_plugin_copy)(nk_handle, const char*, int len); - -struct nk_allocator { - nk_handle userdata; - nk_plugin_alloc alloc; - nk_plugin_free free; -}; -enum nk_symbol_type { - NK_SYMBOL_NONE, - NK_SYMBOL_X, - NK_SYMBOL_UNDERSCORE, - NK_SYMBOL_CIRCLE_SOLID, - NK_SYMBOL_CIRCLE_OUTLINE, - NK_SYMBOL_RECT_SOLID, - NK_SYMBOL_RECT_OUTLINE, - NK_SYMBOL_TRIANGLE_UP, - NK_SYMBOL_TRIANGLE_DOWN, - NK_SYMBOL_TRIANGLE_LEFT, - NK_SYMBOL_TRIANGLE_RIGHT, - NK_SYMBOL_PLUS, - NK_SYMBOL_MINUS, - NK_SYMBOL_MAX -}; -/* ============================================================================= - * - * CONTEXT - * - * =============================================================================*/ -/*/// ### Context -/// Contexts are the main entry point and the majestro of nuklear and contain all required state. -/// They are used for window, memory, input, style, stack, commands and time management and need -/// to be passed into all nuklear GUI specific functions. -/// -/// #### Usage -/// To use a context it first has to be initialized which can be achieved by calling -/// one of either `nk_init_default`, `nk_init_fixed`, `nk_init`, `nk_init_custom`. -/// Each takes in a font handle and a specific way of handling memory. Memory control -/// hereby ranges from standard library to just specifying a fixed sized block of memory -/// which nuklear has to manage itself from. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// // [...] -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// --------------------|------------------------------------------------------- -/// __nk_init_default__ | Initializes context with standard library memory allocation (malloc,free) -/// __nk_init_fixed__ | Initializes context from single fixed size memory block -/// __nk_init__ | Initializes context with memory allocator callbacks for alloc and free -/// __nk_init_custom__ | Initializes context from two buffers. One for draw commands the other for window/panel/table allocations -/// __nk_clear__ | Called at the end of the frame to reset and prepare the context for the next frame -/// __nk_free__ | Shutdown and free all memory allocated inside the context -/// __nk_set_user_data__| Utility function to pass user data to draw command - */ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -/*/// #### nk_init_default -/// Initializes a `nk_context` struct with a default standard library allocator. -/// Should be used if you don't want to be bothered with memory management in nuklear. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_init_default(struct nk_context *ctx, const struct nk_user_font *font); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|--------------------------------------------------------------- -/// __ctx__ | Must point to an either stack or heap allocated `nk_context` struct -/// __font__ | Must point to a previously initialized font handle for more info look at font documentation -/// -/// Returns either `false(0)` on failure or `true(1)` on success. -/// -*/ -NK_API nk_bool nk_init_default(struct nk_context*, const struct nk_user_font*); -#endif -/*/// #### nk_init_fixed -/// Initializes a `nk_context` struct from single fixed size memory block -/// Should be used if you want complete control over nuklear's memory management. -/// Especially recommended for system with little memory or systems with virtual memory. -/// For the later case you can just allocate for example 16MB of virtual memory -/// and only the required amount of memory will actually be committed. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_init_fixed(struct nk_context *ctx, void *memory, nk_size size, const struct nk_user_font *font); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// !!! Warning -/// make sure the passed memory block is aligned correctly for `nk_draw_commands`. -/// -/// Parameter | Description -/// ------------|-------------------------------------------------------------- -/// __ctx__ | Must point to an either stack or heap allocated `nk_context` struct -/// __memory__ | Must point to a previously allocated memory block -/// __size__ | Must contain the total size of __memory__ -/// __font__ | Must point to a previously initialized font handle for more info look at font documentation -/// -/// Returns either `false(0)` on failure or `true(1)` on success. -*/ -NK_API nk_bool nk_init_fixed(struct nk_context*, void *memory, nk_size size, const struct nk_user_font*); -/*/// #### nk_init -/// Initializes a `nk_context` struct with memory allocation callbacks for nuklear to allocate -/// memory from. Used internally for `nk_init_default` and provides a kitchen sink allocation -/// interface to nuklear. Can be useful for cases like monitoring memory consumption. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_init(struct nk_context *ctx, struct nk_allocator *alloc, const struct nk_user_font *font); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|--------------------------------------------------------------- -/// __ctx__ | Must point to an either stack or heap allocated `nk_context` struct -/// __alloc__ | Must point to a previously allocated memory allocator -/// __font__ | Must point to a previously initialized font handle for more info look at font documentation -/// -/// Returns either `false(0)` on failure or `true(1)` on success. -*/ -NK_API nk_bool nk_init(struct nk_context*, struct nk_allocator*, const struct nk_user_font*); -/*/// #### nk_init_custom -/// Initializes a `nk_context` struct from two different either fixed or growing -/// buffers. The first buffer is for allocating draw commands while the second buffer is -/// used for allocating windows, panels and state tables. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_init_custom(struct nk_context *ctx, struct nk_buffer *cmds, struct nk_buffer *pool, const struct nk_user_font *font); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|--------------------------------------------------------------- -/// __ctx__ | Must point to an either stack or heap allocated `nk_context` struct -/// __cmds__ | Must point to a previously initialized memory buffer either fixed or dynamic to store draw commands into -/// __pool__ | Must point to a previously initialized memory buffer either fixed or dynamic to store windows, panels and tables -/// __font__ | Must point to a previously initialized font handle for more info look at font documentation -/// -/// Returns either `false(0)` on failure or `true(1)` on success. -*/ -NK_API nk_bool nk_init_custom(struct nk_context*, struct nk_buffer *cmds, struct nk_buffer *pool, const struct nk_user_font*); -/*/// #### nk_clear -/// Resets the context state at the end of the frame. This includes mostly -/// garbage collector tasks like removing windows or table not called and therefore -/// used anymore. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_clear(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -*/ -NK_API void nk_clear(struct nk_context*); -/*/// #### nk_free -/// Frees all memory allocated by nuklear. Not needed if context was -/// initialized with `nk_init_fixed`. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_free(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -*/ -NK_API void nk_free(struct nk_context*); -#ifdef NK_INCLUDE_COMMAND_USERDATA -/*/// #### nk_set_user_data -/// Sets the currently passed userdata passed down into each draw command. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_set_user_data(struct nk_context *ctx, nk_handle data); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|-------------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __data__ | Handle with either pointer or index to be passed into every draw commands -*/ -NK_API void nk_set_user_data(struct nk_context*, nk_handle handle); -#endif -/* ============================================================================= - * - * INPUT - * - * =============================================================================*/ -/*/// ### Input -/// The input API is responsible for holding the current input state composed of -/// mouse, key and text input states. -/// It is worth noting that no direct OS or window handling is done in nuklear. -/// Instead all input state has to be provided by platform specific code. This on one hand -/// expects more work from the user and complicates usage but on the other hand -/// provides simple abstraction over a big number of platforms, libraries and other -/// already provided functionality. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// // [...] -/// } -/// } nk_input_end(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Usage -/// Input state needs to be provided to nuklear by first calling `nk_input_begin` -/// which resets internal state like delta mouse position and button transitions. -/// After `nk_input_begin` all current input state needs to be provided. This includes -/// mouse motion, button and key pressed and released, text input and scrolling. -/// Both event- or state-based input handling are supported by this API -/// and should work without problems. Finally after all input state has been -/// mirrored `nk_input_end` needs to be called to finish input process. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// Event evt; -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// // [...] -/// } -/// } -/// nk_input_end(&ctx); -/// // [...] -/// nk_clear(&ctx); -/// } nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// --------------------|------------------------------------------------------- -/// __nk_input_begin__ | Begins the input mirroring process. Needs to be called before all other `nk_input_xxx` calls -/// __nk_input_motion__ | Mirrors mouse cursor position -/// __nk_input_key__ | Mirrors key state with either pressed or released -/// __nk_input_button__ | Mirrors mouse button state with either pressed or released -/// __nk_input_scroll__ | Mirrors mouse scroll values -/// __nk_input_char__ | Adds a single ASCII text character into an internal text buffer -/// __nk_input_glyph__ | Adds a single multi-byte UTF-8 character into an internal text buffer -/// __nk_input_unicode__| Adds a single unicode rune into an internal text buffer -/// __nk_input_end__ | Ends the input mirroring process by calculating state changes. Don't call any `nk_input_xxx` function referenced above after this call -*/ -enum nk_keys { - NK_KEY_NONE, - NK_KEY_SHIFT, - NK_KEY_CTRL, - NK_KEY_DEL, - NK_KEY_ENTER, - NK_KEY_TAB, - NK_KEY_BACKSPACE, - NK_KEY_COPY, - NK_KEY_CUT, - NK_KEY_PASTE, - NK_KEY_UP, - NK_KEY_DOWN, - NK_KEY_LEFT, - NK_KEY_RIGHT, - /* Shortcuts: text field */ - NK_KEY_TEXT_INSERT_MODE, - NK_KEY_TEXT_REPLACE_MODE, - NK_KEY_TEXT_RESET_MODE, - NK_KEY_TEXT_LINE_START, - NK_KEY_TEXT_LINE_END, - NK_KEY_TEXT_START, - NK_KEY_TEXT_END, - NK_KEY_TEXT_UNDO, - NK_KEY_TEXT_REDO, - NK_KEY_TEXT_SELECT_ALL, - NK_KEY_TEXT_WORD_LEFT, - NK_KEY_TEXT_WORD_RIGHT, - /* Shortcuts: scrollbar */ - NK_KEY_SCROLL_START, - NK_KEY_SCROLL_END, - NK_KEY_SCROLL_DOWN, - NK_KEY_SCROLL_UP, - NK_KEY_MAX -}; -enum nk_buttons { - NK_BUTTON_LEFT, - NK_BUTTON_MIDDLE, - NK_BUTTON_RIGHT, - NK_BUTTON_DOUBLE, - NK_BUTTON_MAX -}; -/*/// #### nk_input_begin -/// Begins the input mirroring process by resetting text, scroll -/// mouse, previous mouse position and movement as well as key state transitions, -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_begin(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -*/ -NK_API void nk_input_begin(struct nk_context*); -/*/// #### nk_input_motion -/// Mirrors current mouse position to nuklear -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_motion(struct nk_context *ctx, int x, int y); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __x__ | Must hold an integer describing the current mouse cursor x-position -/// __y__ | Must hold an integer describing the current mouse cursor y-position -*/ -NK_API void nk_input_motion(struct nk_context*, int x, int y); -/*/// #### nk_input_key -/// Mirrors the state of a specific key to nuklear -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_key(struct nk_context*, enum nk_keys key, nk_bool down); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __key__ | Must be any value specified in enum `nk_keys` that needs to be mirrored -/// __down__ | Must be 0 for key is up and 1 for key is down -*/ -NK_API void nk_input_key(struct nk_context*, enum nk_keys, nk_bool down); -/*/// #### nk_input_button -/// Mirrors the state of a specific mouse button to nuklear -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_button(struct nk_context *ctx, enum nk_buttons btn, int x, int y, nk_bool down); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __btn__ | Must be any value specified in enum `nk_buttons` that needs to be mirrored -/// __x__ | Must contain an integer describing mouse cursor x-position on click up/down -/// __y__ | Must contain an integer describing mouse cursor y-position on click up/down -/// __down__ | Must be 0 for key is up and 1 for key is down -*/ -NK_API void nk_input_button(struct nk_context*, enum nk_buttons, int x, int y, nk_bool down); -/*/// #### nk_input_scroll -/// Copies the last mouse scroll value to nuklear. Is generally -/// a scroll value. So does not have to come from mouse and could also originate -/// TODO finish this sentence -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_scroll(struct nk_context *ctx, struct nk_vec2 val); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __val__ | vector with both X- as well as Y-scroll value -*/ -NK_API void nk_input_scroll(struct nk_context*, struct nk_vec2 val); -/*/// #### nk_input_char -/// Copies a single ASCII character into an internal text buffer -/// This is basically a helper function to quickly push ASCII characters into -/// nuklear. -/// -/// !!! Note -/// Stores up to NK_INPUT_MAX bytes between `nk_input_begin` and `nk_input_end`. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_char(struct nk_context *ctx, char c); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __c__ | Must be a single ASCII character preferable one that can be printed -*/ -NK_API void nk_input_char(struct nk_context*, char); -/*/// #### nk_input_glyph -/// Converts an encoded unicode rune into UTF-8 and copies the result into an -/// internal text buffer. -/// -/// !!! Note -/// Stores up to NK_INPUT_MAX bytes between `nk_input_begin` and `nk_input_end`. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_glyph(struct nk_context *ctx, const nk_glyph g); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __g__ | UTF-32 unicode codepoint -*/ -NK_API void nk_input_glyph(struct nk_context*, const nk_glyph); -/*/// #### nk_input_unicode -/// Converts a unicode rune into UTF-8 and copies the result -/// into an internal text buffer. -/// !!! Note -/// Stores up to NK_INPUT_MAX bytes between `nk_input_begin` and `nk_input_end`. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_unicode(struct nk_context*, nk_rune rune); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -/// __rune__ | UTF-32 unicode codepoint -*/ -NK_API void nk_input_unicode(struct nk_context*, nk_rune); -/*/// #### nk_input_end -/// End the input mirroring process by resetting mouse grabbing -/// state to ensure the mouse cursor is not grabbed indefinitely. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_input_end(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to a previously initialized `nk_context` struct -*/ -NK_API void nk_input_end(struct nk_context*); -/* ============================================================================= - * - * DRAWING - * - * =============================================================================*/ -/*/// ### Drawing -/// This library was designed to be render backend agnostic so it does -/// not draw anything to screen directly. Instead all drawn shapes, widgets -/// are made of, are buffered into memory and make up a command queue. -/// Each frame therefore fills the command buffer with draw commands -/// that then need to be executed by the user and his own render backend. -/// After that the command buffer needs to be cleared and a new frame can be -/// started. It is probably important to note that the command buffer is the main -/// drawing API and the optional vertex buffer API only takes this format and -/// converts it into a hardware accessible format. -/// -/// #### Usage -/// To draw all draw commands accumulated over a frame you need your own render -/// backend able to draw a number of 2D primitives. This includes at least -/// filled and stroked rectangles, circles, text, lines, triangles and scissors. -/// As soon as this criterion is met you can iterate over each draw command -/// and execute each draw command in a interpreter like fashion: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case //...: -/// //[...] -/// } -/// } -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// In program flow context draw commands need to be executed after input has been -/// gathered and the complete UI with windows and their contained widgets have -/// been executed and before calling `nk_clear` which frees all previously -/// allocated draw commands. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// Event evt; -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// [...] -/// } -/// } -/// nk_input_end(&ctx); -/// // -/// // [...] -/// // -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case ...: -/// // [...] -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// You probably noticed that you have to draw all of the UI each frame which is -/// quite wasteful. While the actual UI updating loop is quite fast rendering -/// without actually needing it is not. So there are multiple things you could do. -/// -/// First is only update on input. This of course is only an option if your -/// application only depends on the UI and does not require any outside calculations. -/// If you actually only update on input make sure to update the UI two times each -/// frame and call `nk_clear` directly after the first pass and only draw in -/// the second pass. In addition it is recommended to also add additional timers -/// to make sure the UI is not drawn more than a fixed number of frames per second. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// // [...wait for input ] -/// // [...do two UI passes ...] -/// do_ui(...) -/// nk_clear(&ctx); -/// do_ui(...) -/// // -/// // draw -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case ...: -/// //[...] -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// The second probably more applicable trick is to only draw if anything changed. -/// It is not really useful for applications with continuous draw loop but -/// quite useful for desktop applications. To actually get nuklear to only -/// draw on changes you first have to define `NK_ZERO_COMMAND_MEMORY` and -/// allocate a memory buffer that will store each unique drawing output. -/// After each frame you compare the draw command memory inside the library -/// with your allocated buffer by memcmp. If memcmp detects differences -/// you have to copy the command buffer into the allocated buffer -/// and then draw like usual (this example uses fixed memory but you could -/// use dynamically allocated memory). -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// //[... other defines ...] -/// #define NK_ZERO_COMMAND_MEMORY -/// #include "nuklear.h" -/// // -/// // setup context -/// struct nk_context ctx; -/// void *last = calloc(1,64*1024); -/// void *buf = calloc(1,64*1024); -/// nk_init_fixed(&ctx, buf, 64*1024); -/// // -/// // loop -/// while (1) { -/// // [...input...] -/// // [...ui...] -/// void *cmds = nk_buffer_memory(&ctx.memory); -/// if (memcmp(cmds, last, ctx.memory.allocated)) { -/// memcpy(last,cmds,ctx.memory.allocated); -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case ...: -/// // [...] -/// } -/// } -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Finally while using draw commands makes sense for higher abstracted platforms like -/// X11 and Win32 or drawing libraries it is often desirable to use graphics -/// hardware directly. Therefore it is possible to just define -/// `NK_INCLUDE_VERTEX_BUFFER_OUTPUT` which includes optional vertex output. -/// To access the vertex output you first have to convert all draw commands into -/// vertexes by calling `nk_convert` which takes in your preferred vertex format. -/// After successfully converting all draw commands just iterate over and execute all -/// vertex draw commands: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// // fill configuration -/// struct your_vertex -/// { -/// float pos[2]; // important to keep it to 2 floats -/// float uv[2]; -/// unsigned char col[4]; -/// }; -/// struct nk_convert_config cfg = {}; -/// static const struct nk_draw_vertex_layout_element vertex_layout[] = { -/// {NK_VERTEX_POSITION, NK_FORMAT_FLOAT, NK_OFFSETOF(struct your_vertex, pos)}, -/// {NK_VERTEX_TEXCOORD, NK_FORMAT_FLOAT, NK_OFFSETOF(struct your_vertex, uv)}, -/// {NK_VERTEX_COLOR, NK_FORMAT_R8G8B8A8, NK_OFFSETOF(struct your_vertex, col)}, -/// {NK_VERTEX_LAYOUT_END} -/// }; -/// cfg.shape_AA = NK_ANTI_ALIASING_ON; -/// cfg.line_AA = NK_ANTI_ALIASING_ON; -/// cfg.vertex_layout = vertex_layout; -/// cfg.vertex_size = sizeof(struct your_vertex); -/// cfg.vertex_alignment = NK_ALIGNOF(struct your_vertex); -/// cfg.circle_segment_count = 22; -/// cfg.curve_segment_count = 22; -/// cfg.arc_segment_count = 22; -/// cfg.global_alpha = 1.0f; -/// cfg.tex_null = dev->tex_null; -/// // -/// // setup buffers and convert -/// struct nk_buffer cmds, verts, idx; -/// nk_buffer_init_default(&cmds); -/// nk_buffer_init_default(&verts); -/// nk_buffer_init_default(&idx); -/// nk_convert(&ctx, &cmds, &verts, &idx, &cfg); -/// // -/// // draw -/// nk_draw_foreach(cmd, &ctx, &cmds) { -/// if (!cmd->elem_count) continue; -/// //[...] -/// } -/// nk_buffer_free(&cms); -/// nk_buffer_free(&verts); -/// nk_buffer_free(&idx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// --------------------|------------------------------------------------------- -/// __nk__begin__ | Returns the first draw command in the context draw command list to be drawn -/// __nk__next__ | Increments the draw command iterator to the next command inside the context draw command list -/// __nk_foreach__ | Iterates over each draw command inside the context draw command list -/// __nk_convert__ | Converts from the abstract draw commands list into a hardware accessible vertex format -/// __nk_draw_begin__ | Returns the first vertex command in the context vertex draw list to be executed -/// __nk__draw_next__ | Increments the vertex command iterator to the next command inside the context vertex command list -/// __nk__draw_end__ | Returns the end of the vertex draw list -/// __nk_draw_foreach__ | Iterates over each vertex draw command inside the vertex draw list -*/ -enum nk_anti_aliasing {NK_ANTI_ALIASING_OFF, NK_ANTI_ALIASING_ON}; -enum nk_convert_result { - NK_CONVERT_SUCCESS = 0, - NK_CONVERT_INVALID_PARAM = 1, - NK_CONVERT_COMMAND_BUFFER_FULL = NK_FLAG(1), - NK_CONVERT_VERTEX_BUFFER_FULL = NK_FLAG(2), - NK_CONVERT_ELEMENT_BUFFER_FULL = NK_FLAG(3) -}; -struct nk_draw_null_texture { - nk_handle texture; /* texture handle to a texture with a white pixel */ - struct nk_vec2 uv; /* coordinates to a white pixel in the texture */ -}; -struct nk_convert_config { - float global_alpha; /* global alpha value */ - enum nk_anti_aliasing line_AA; /* line anti-aliasing flag can be turned off if you are tight on memory */ - enum nk_anti_aliasing shape_AA; /* shape anti-aliasing flag can be turned off if you are tight on memory */ - unsigned circle_segment_count; /* number of segments used for circles: default to 22 */ - unsigned arc_segment_count; /* number of segments used for arcs: default to 22 */ - unsigned curve_segment_count; /* number of segments used for curves: default to 22 */ - struct nk_draw_null_texture tex_null; /* handle to texture with a white pixel for shape drawing */ - const struct nk_draw_vertex_layout_element *vertex_layout; /* describes the vertex output format and packing */ - nk_size vertex_size; /* sizeof one vertex for vertex packing */ - nk_size vertex_alignment; /* vertex alignment: Can be obtained by NK_ALIGNOF */ -}; -/*/// #### nk__begin -/// Returns a draw command list iterator to iterate all draw -/// commands accumulated over one frame. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_command* nk__begin(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | must point to an previously initialized `nk_context` struct at the end of a frame -/// -/// Returns draw command pointer pointing to the first command inside the draw command list -*/ -NK_API const struct nk_command* nk__begin(struct nk_context*); -/*/// #### nk__next -/// Returns draw command pointer pointing to the next command inside the draw command list -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_command* nk__next(struct nk_context*, const struct nk_command*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// __cmd__ | Must point to an previously a draw command either returned by `nk__begin` or `nk__next` -/// -/// Returns draw command pointer pointing to the next command inside the draw command list -*/ -NK_API const struct nk_command* nk__next(struct nk_context*, const struct nk_command*); -/*/// #### nk_foreach -/// Iterates over each draw command inside the context draw command list -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_foreach(c, ctx) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// __cmd__ | Command pointer initialized to NULL -/// -/// Iterates over each draw command inside the context draw command list -*/ -#define nk_foreach(c, ctx) for((c) = nk__begin(ctx); (c) != 0; (c) = nk__next(ctx,c)) -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT -/*/// #### nk_convert -/// Converts all internal draw commands into vertex draw commands and fills -/// three buffers with vertexes, vertex draw commands and vertex indices. The vertex format -/// as well as some other configuration values have to be configured by filling out a -/// `nk_convert_config` struct. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_flags nk_convert(struct nk_context *ctx, struct nk_buffer *cmds, -/// struct nk_buffer *vertices, struct nk_buffer *elements, const struct nk_convert_config*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// __cmds__ | Must point to a previously initialized buffer to hold converted vertex draw commands -/// __vertices__| Must point to a previously initialized buffer to hold all produced vertices -/// __elements__| Must point to a previously initialized buffer to hold all produced vertex indices -/// __config__ | Must point to a filled out `nk_config` struct to configure the conversion process -/// -/// Returns one of enum nk_convert_result error codes -/// -/// Parameter | Description -/// --------------------------------|----------------------------------------------------------- -/// NK_CONVERT_SUCCESS | Signals a successful draw command to vertex buffer conversion -/// NK_CONVERT_INVALID_PARAM | An invalid argument was passed in the function call -/// NK_CONVERT_COMMAND_BUFFER_FULL | The provided buffer for storing draw commands is full or failed to allocate more memory -/// NK_CONVERT_VERTEX_BUFFER_FULL | The provided buffer for storing vertices is full or failed to allocate more memory -/// NK_CONVERT_ELEMENT_BUFFER_FULL | The provided buffer for storing indices is full or failed to allocate more memory -*/ -NK_API nk_flags nk_convert(struct nk_context*, struct nk_buffer *cmds, struct nk_buffer *vertices, struct nk_buffer *elements, const struct nk_convert_config*); -/*/// #### nk__draw_begin -/// Returns a draw vertex command buffer iterator to iterate over the vertex draw command buffer -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_draw_command* nk__draw_begin(const struct nk_context*, const struct nk_buffer*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// __buf__ | Must point to an previously by `nk_convert` filled out vertex draw command buffer -/// -/// Returns vertex draw command pointer pointing to the first command inside the vertex draw command buffer -*/ -NK_API const struct nk_draw_command* nk__draw_begin(const struct nk_context*, const struct nk_buffer*); -/*/// #### nk__draw_end -/// Returns the vertex draw command at the end of the vertex draw command buffer -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_draw_command* nk__draw_end(const struct nk_context *ctx, const struct nk_buffer *buf); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// __buf__ | Must point to an previously by `nk_convert` filled out vertex draw command buffer -/// -/// Returns vertex draw command pointer pointing to the end of the last vertex draw command inside the vertex draw command buffer -*/ -NK_API const struct nk_draw_command* nk__draw_end(const struct nk_context*, const struct nk_buffer*); -/*/// #### nk__draw_next -/// Increments the vertex draw command buffer iterator -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// const struct nk_draw_command* nk__draw_next(const struct nk_draw_command*, const struct nk_buffer*, const struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __cmd__ | Must point to an previously either by `nk__draw_begin` or `nk__draw_next` returned vertex draw command -/// __buf__ | Must point to an previously by `nk_convert` filled out vertex draw command buffer -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -/// -/// Returns vertex draw command pointer pointing to the end of the last vertex draw command inside the vertex draw command buffer -*/ -NK_API const struct nk_draw_command* nk__draw_next(const struct nk_draw_command*, const struct nk_buffer*, const struct nk_context*); -/*/// #### nk_draw_foreach -/// Iterates over each vertex draw command inside a vertex draw command buffer -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_draw_foreach(cmd,ctx, b) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __cmd__ | `nk_draw_command`iterator set to NULL -/// __buf__ | Must point to an previously by `nk_convert` filled out vertex draw command buffer -/// __ctx__ | Must point to an previously initialized `nk_context` struct at the end of a frame -*/ -#define nk_draw_foreach(cmd,ctx, b) for((cmd)=nk__draw_begin(ctx, b); (cmd)!=0; (cmd)=nk__draw_next(cmd, b, ctx)) -#endif -/* ============================================================================= - * - * WINDOW - * - * ============================================================================= -/// ### Window -/// Windows are the main persistent state used inside nuklear and are life time -/// controlled by simply "retouching" (i.e. calling) each window each frame. -/// All widgets inside nuklear can only be added inside the function pair `nk_begin_xxx` -/// and `nk_end`. Calling any widgets outside these two functions will result in an -/// assert in debug or no state change in release mode.

-/// -/// Each window holds frame persistent state like position, size, flags, state tables, -/// and some garbage collected internal persistent widget state. Each window -/// is linked into a window stack list which determines the drawing and overlapping -/// order. The topmost window thereby is the currently active window.

-/// -/// To change window position inside the stack occurs either automatically by -/// user input by being clicked on or programmatically by calling `nk_window_focus`. -/// Windows by default are visible unless explicitly being defined with flag -/// `NK_WINDOW_HIDDEN`, the user clicked the close button on windows with flag -/// `NK_WINDOW_CLOSABLE` or if a window was explicitly hidden by calling -/// `nk_window_show`. To explicitly close and destroy a window call `nk_window_close`.

-/// -/// #### Usage -/// To create and keep a window you have to call one of the two `nk_begin_xxx` -/// functions to start window declarations and `nk_end` at the end. Furthermore it -/// is recommended to check the return value of `nk_begin_xxx` and only process -/// widgets inside the window if the value is not 0. Either way you have to call -/// `nk_end` at the end of window declarations. Furthermore, do not attempt to -/// nest `nk_begin_xxx` calls which will hopefully result in an assert or if not -/// in a segmentation fault. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // [... widgets ...] -/// } -/// nk_end(ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// In the grand concept window and widget declarations need to occur after input -/// handling and before drawing to screen. Not doing so can result in higher -/// latency or at worst invalid behavior. Furthermore make sure that `nk_clear` -/// is called at the end of the frame. While nuklear's default platform backends -/// already call `nk_clear` for you if you write your own backend not calling -/// `nk_clear` can cause asserts or even worse undefined behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// Event evt; -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// nk_input_xxx(...); -/// } -/// } -/// nk_input_end(&ctx); -/// -/// if (nk_begin_xxx(...) { -/// //[...] -/// } -/// nk_end(ctx); -/// -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case //...: -/// //[...] -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// ------------------------------------|---------------------------------------- -/// nk_begin | Starts a new window; needs to be called every frame for every window (unless hidden) or otherwise the window gets removed -/// nk_begin_titled | Extended window start with separated title and identifier to allow multiple windows with same name but not title -/// nk_end | Needs to be called at the end of the window building process to process scaling, scrollbars and general cleanup -// -/// nk_window_find | Finds and returns the window with give name -/// nk_window_get_bounds | Returns a rectangle with screen position and size of the currently processed window. -/// nk_window_get_position | Returns the position of the currently processed window -/// nk_window_get_size | Returns the size with width and height of the currently processed window -/// nk_window_get_width | Returns the width of the currently processed window -/// nk_window_get_height | Returns the height of the currently processed window -/// nk_window_get_panel | Returns the underlying panel which contains all processing state of the current window -/// nk_window_get_content_region | Returns the position and size of the currently visible and non-clipped space inside the currently processed window -/// nk_window_get_content_region_min | Returns the upper rectangle position of the currently visible and non-clipped space inside the currently processed window -/// nk_window_get_content_region_max | Returns the upper rectangle position of the currently visible and non-clipped space inside the currently processed window -/// nk_window_get_content_region_size | Returns the size of the currently visible and non-clipped space inside the currently processed window -/// nk_window_get_canvas | Returns the draw command buffer. Can be used to draw custom widgets -/// nk_window_get_scroll | Gets the scroll offset of the current window -/// nk_window_has_focus | Returns if the currently processed window is currently active -/// nk_window_is_collapsed | Returns if the window with given name is currently minimized/collapsed -/// nk_window_is_closed | Returns if the currently processed window was closed -/// nk_window_is_hidden | Returns if the currently processed window was hidden -/// nk_window_is_active | Same as nk_window_has_focus for some reason -/// nk_window_is_hovered | Returns if the currently processed window is currently being hovered by mouse -/// nk_window_is_any_hovered | Return if any window currently hovered -/// nk_item_is_any_active | Returns if any window or widgets is currently hovered or active -// -/// nk_window_set_bounds | Updates position and size of the currently processed window -/// nk_window_set_position | Updates position of the currently process window -/// nk_window_set_size | Updates the size of the currently processed window -/// nk_window_set_focus | Set the currently processed window as active window -/// nk_window_set_scroll | Sets the scroll offset of the current window -// -/// nk_window_close | Closes the window with given window name which deletes the window at the end of the frame -/// nk_window_collapse | Collapses the window with given window name -/// nk_window_collapse_if | Collapses the window with given window name if the given condition was met -/// nk_window_show | Hides a visible or reshows a hidden window -/// nk_window_show_if | Hides/shows a window depending on condition -*/ -/* -/// #### nk_panel_flags -/// Flag | Description -/// ----------------------------|---------------------------------------- -/// NK_WINDOW_BORDER | Draws a border around the window to visually separate window from the background -/// NK_WINDOW_MOVABLE | The movable flag indicates that a window can be moved by user input or by dragging the window header -/// NK_WINDOW_SCALABLE | The scalable flag indicates that a window can be scaled by user input by dragging a scaler icon at the button of the window -/// NK_WINDOW_CLOSABLE | Adds a closable icon into the header -/// NK_WINDOW_MINIMIZABLE | Adds a minimize icon into the header -/// NK_WINDOW_NO_SCROLLBAR | Removes the scrollbar from the window -/// NK_WINDOW_TITLE | Forces a header at the top at the window showing the title -/// NK_WINDOW_SCROLL_AUTO_HIDE | Automatically hides the window scrollbar if no user interaction: also requires delta time in `nk_context` to be set each frame -/// NK_WINDOW_BACKGROUND | Always keep window in the background -/// NK_WINDOW_SCALE_LEFT | Puts window scaler in the left-bottom corner instead right-bottom -/// NK_WINDOW_NO_INPUT | Prevents window of scaling, moving or getting focus -/// -/// #### nk_collapse_states -/// State | Description -/// ----------------|----------------------------------------------------------- -/// __NK_MINIMIZED__| UI section is collased and not visible until maximized -/// __NK_MAXIMIZED__| UI section is extended and visible until minimized -///

-*/ -enum nk_panel_flags { - NK_WINDOW_BORDER = NK_FLAG(0), - NK_WINDOW_MOVABLE = NK_FLAG(1), - NK_WINDOW_SCALABLE = NK_FLAG(2), - NK_WINDOW_CLOSABLE = NK_FLAG(3), - NK_WINDOW_MINIMIZABLE = NK_FLAG(4), - NK_WINDOW_NO_SCROLLBAR = NK_FLAG(5), - NK_WINDOW_TITLE = NK_FLAG(6), - NK_WINDOW_SCROLL_AUTO_HIDE = NK_FLAG(7), - NK_WINDOW_BACKGROUND = NK_FLAG(8), - NK_WINDOW_SCALE_LEFT = NK_FLAG(9), - NK_WINDOW_NO_INPUT = NK_FLAG(10) -}; -/*/// #### nk_begin -/// Starts a new window; needs to be called every frame for every -/// window (unless hidden) or otherwise the window gets removed -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_begin(struct nk_context *ctx, const char *title, struct nk_rect bounds, nk_flags flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __title__ | Window title and identifier. Needs to be persistent over frames to identify the window -/// __bounds__ | Initial position and window size. However if you do not define `NK_WINDOW_SCALABLE` or `NK_WINDOW_MOVABLE` you can set window position and size every frame -/// __flags__ | Window flags defined in the nk_panel_flags section with a number of different window behaviors -/// -/// Returns `true(1)` if the window can be filled up with widgets from this point -/// until `nk_end` or `false(0)` otherwise for example if minimized -*/ -NK_API nk_bool nk_begin(struct nk_context *ctx, const char *title, struct nk_rect bounds, nk_flags flags); -/*/// #### nk_begin_titled -/// Extended window start with separated title and identifier to allow multiple -/// windows with same title but not name -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_begin_titled(struct nk_context *ctx, const char *name, const char *title, struct nk_rect bounds, nk_flags flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Window identifier. Needs to be persistent over frames to identify the window -/// __title__ | Window title displayed inside header if flag `NK_WINDOW_TITLE` or either `NK_WINDOW_CLOSABLE` or `NK_WINDOW_MINIMIZED` was set -/// __bounds__ | Initial position and window size. However if you do not define `NK_WINDOW_SCALABLE` or `NK_WINDOW_MOVABLE` you can set window position and size every frame -/// __flags__ | Window flags defined in the nk_panel_flags section with a number of different window behaviors -/// -/// Returns `true(1)` if the window can be filled up with widgets from this point -/// until `nk_end` or `false(0)` otherwise for example if minimized -*/ -NK_API nk_bool nk_begin_titled(struct nk_context *ctx, const char *name, const char *title, struct nk_rect bounds, nk_flags flags); -/*/// #### nk_end -/// Needs to be called at the end of the window building process to process scaling, scrollbars and general cleanup. -/// All widget calls after this functions will result in asserts or no state changes -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_end(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -*/ -NK_API void nk_end(struct nk_context *ctx); -/*/// #### nk_window_find -/// Finds and returns a window from passed name -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_window *nk_window_find(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Window identifier -/// -/// Returns a `nk_window` struct pointing to the identified window or NULL if -/// no window with the given name was found -*/ -NK_API struct nk_window *nk_window_find(struct nk_context *ctx, const char *name); -/*/// #### nk_window_get_bounds -/// Returns a rectangle with screen position and size of the currently processed window -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_window_get_bounds(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns a `nk_rect` struct with window upper left window position and size -*/ -NK_API struct nk_rect nk_window_get_bounds(const struct nk_context *ctx); -/*/// #### nk_window_get_position -/// Returns the position of the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_window_get_position(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns a `nk_vec2` struct with window upper left position -*/ -NK_API struct nk_vec2 nk_window_get_position(const struct nk_context *ctx); -/*/// #### nk_window_get_size -/// Returns the size with width and height of the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_window_get_size(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns a `nk_vec2` struct with window width and height -*/ -NK_API struct nk_vec2 nk_window_get_size(const struct nk_context*); -/*/// #### nk_window_get_width -/// Returns the width of the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// float nk_window_get_width(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns the current window width -*/ -NK_API float nk_window_get_width(const struct nk_context*); -/*/// #### nk_window_get_height -/// Returns the height of the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// float nk_window_get_height(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns the current window height -*/ -NK_API float nk_window_get_height(const struct nk_context*); -/*/// #### nk_window_get_panel -/// Returns the underlying panel which contains all processing state of the current window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// !!! WARNING -/// Do not keep the returned panel pointer around, it is only valid until `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_panel* nk_window_get_panel(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns a pointer to window internal `nk_panel` state. -*/ -NK_API struct nk_panel* nk_window_get_panel(struct nk_context*); -/*/// #### nk_window_get_content_region -/// Returns the position and size of the currently visible and non-clipped space -/// inside the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_window_get_content_region(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `nk_rect` struct with screen position and size (no scrollbar offset) -/// of the visible space inside the current window -*/ -NK_API struct nk_rect nk_window_get_content_region(struct nk_context*); -/*/// #### nk_window_get_content_region_min -/// Returns the upper left position of the currently visible and non-clipped -/// space inside the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_window_get_content_region_min(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// returns `nk_vec2` struct with upper left screen position (no scrollbar offset) -/// of the visible space inside the current window -*/ -NK_API struct nk_vec2 nk_window_get_content_region_min(struct nk_context*); -/*/// #### nk_window_get_content_region_max -/// Returns the lower right screen position of the currently visible and -/// non-clipped space inside the currently processed window. -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_window_get_content_region_max(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `nk_vec2` struct with lower right screen position (no scrollbar offset) -/// of the visible space inside the current window -*/ -NK_API struct nk_vec2 nk_window_get_content_region_max(struct nk_context*); -/*/// #### nk_window_get_content_region_size -/// Returns the size of the currently visible and non-clipped space inside the -/// currently processed window -/// -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_window_get_content_region_size(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `nk_vec2` struct with size the visible space inside the current window -*/ -NK_API struct nk_vec2 nk_window_get_content_region_size(struct nk_context*); -/*/// #### nk_window_get_canvas -/// Returns the draw command buffer. Can be used to draw custom widgets -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// !!! WARNING -/// Do not keep the returned command buffer pointer around it is only valid until `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_command_buffer* nk_window_get_canvas(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns a pointer to window internal `nk_command_buffer` struct used as -/// drawing canvas. Can be used to do custom drawing. -*/ -NK_API struct nk_command_buffer* nk_window_get_canvas(struct nk_context*); -/*/// #### nk_window_get_scroll -/// Gets the scroll offset for the current window -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// -------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __offset_x__ | A pointer to the x offset output (or NULL to ignore) -/// __offset_y__ | A pointer to the y offset output (or NULL to ignore) -*/ -NK_API void nk_window_get_scroll(struct nk_context*, nk_uint *offset_x, nk_uint *offset_y); -/*/// #### nk_window_has_focus -/// Returns if the currently processed window is currently active -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_has_focus(const struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `false(0)` if current window is not active or `true(1)` if it is -*/ -NK_API nk_bool nk_window_has_focus(const struct nk_context*); -/*/// #### nk_window_is_hovered -/// Return if the current window is being hovered -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_hovered(struct nk_context *ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `true(1)` if current window is hovered or `false(0)` otherwise -*/ -NK_API nk_bool nk_window_is_hovered(struct nk_context*); -/*/// #### nk_window_is_collapsed -/// Returns if the window with given name is currently minimized/collapsed -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_collapsed(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of window you want to check if it is collapsed -/// -/// Returns `true(1)` if current window is minimized and `false(0)` if window not -/// found or is not minimized -*/ -NK_API nk_bool nk_window_is_collapsed(struct nk_context *ctx, const char *name); -/*/// #### nk_window_is_closed -/// Returns if the window with given name was closed by calling `nk_close` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_closed(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of window you want to check if it is closed -/// -/// Returns `true(1)` if current window was closed or `false(0)` window not found or not closed -*/ -NK_API nk_bool nk_window_is_closed(struct nk_context*, const char*); -/*/// #### nk_window_is_hidden -/// Returns if the window with given name is hidden -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_hidden(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of window you want to check if it is hidden -/// -/// Returns `true(1)` if current window is hidden or `false(0)` window not found or visible -*/ -NK_API nk_bool nk_window_is_hidden(struct nk_context*, const char*); -/*/// #### nk_window_is_active -/// Same as nk_window_has_focus for some reason -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_active(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of window you want to check if it is active -/// -/// Returns `true(1)` if current window is active or `false(0)` window not found or not active -*/ -NK_API nk_bool nk_window_is_active(struct nk_context*, const char*); -/*/// #### nk_window_is_any_hovered -/// Returns if the any window is being hovered -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_window_is_any_hovered(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `true(1)` if any window is hovered or `false(0)` otherwise -*/ -NK_API nk_bool nk_window_is_any_hovered(struct nk_context*); -/*/// #### nk_item_is_any_active -/// Returns if the any window is being hovered or any widget is currently active. -/// Can be used to decide if input should be processed by UI or your specific input handling. -/// Example could be UI and 3D camera to move inside a 3D space. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_item_is_any_active(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// -/// Returns `true(1)` if any window is hovered or any item is active or `false(0)` otherwise -*/ -NK_API nk_bool nk_item_is_any_active(struct nk_context*); -/*/// #### nk_window_set_bounds -/// Updates position and size of window with passed in name -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_set_bounds(struct nk_context*, const char *name, struct nk_rect bounds); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to modify both position and size -/// __bounds__ | Must point to a `nk_rect` struct with the new position and size -*/ -NK_API void nk_window_set_bounds(struct nk_context*, const char *name, struct nk_rect bounds); -/*/// #### nk_window_set_position -/// Updates position of window with passed name -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_set_position(struct nk_context*, const char *name, struct nk_vec2 pos); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to modify both position -/// __pos__ | Must point to a `nk_vec2` struct with the new position -*/ -NK_API void nk_window_set_position(struct nk_context*, const char *name, struct nk_vec2 pos); -/*/// #### nk_window_set_size -/// Updates size of window with passed in name -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_set_size(struct nk_context*, const char *name, struct nk_vec2); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to modify both window size -/// __size__ | Must point to a `nk_vec2` struct with new window size -*/ -NK_API void nk_window_set_size(struct nk_context*, const char *name, struct nk_vec2); -/*/// #### nk_window_set_focus -/// Sets the window with given name as active -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_set_focus(struct nk_context*, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to set focus on -*/ -NK_API void nk_window_set_focus(struct nk_context*, const char *name); -/*/// #### nk_window_set_scroll -/// Sets the scroll offset for the current window -/// !!! WARNING -/// Only call this function between calls `nk_begin_xxx` and `nk_end` -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// -------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __offset_x__ | The x offset to scroll to -/// __offset_y__ | The y offset to scroll to -*/ -NK_API void nk_window_set_scroll(struct nk_context*, nk_uint offset_x, nk_uint offset_y); -/*/// #### nk_window_close -/// Closes a window and marks it for being freed at the end of the frame -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_close(struct nk_context *ctx, const char *name); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to close -*/ -NK_API void nk_window_close(struct nk_context *ctx, const char *name); -/*/// #### nk_window_collapse -/// Updates collapse state of a window with given name -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_collapse(struct nk_context*, const char *name, enum nk_collapse_states state); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to close -/// __state__ | value out of nk_collapse_states section -*/ -NK_API void nk_window_collapse(struct nk_context*, const char *name, enum nk_collapse_states state); -/*/// #### nk_window_collapse_if -/// Updates collapse state of a window with given name if given condition is met -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_collapse_if(struct nk_context*, const char *name, enum nk_collapse_states, int cond); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to either collapse or maximize -/// __state__ | value out of nk_collapse_states section the window should be put into -/// __cond__ | condition that has to be met to actually commit the collapse state change -*/ -NK_API void nk_window_collapse_if(struct nk_context*, const char *name, enum nk_collapse_states, int cond); -/*/// #### nk_window_show -/// updates visibility state of a window with given name -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_show(struct nk_context*, const char *name, enum nk_show_states); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to either collapse or maximize -/// __state__ | state with either visible or hidden to modify the window with -*/ -NK_API void nk_window_show(struct nk_context*, const char *name, enum nk_show_states); -/*/// #### nk_window_show_if -/// Updates visibility state of a window with given name if a given condition is met -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_window_show_if(struct nk_context*, const char *name, enum nk_show_states, int cond); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __name__ | Identifier of the window to either hide or show -/// __state__ | state with either visible or hidden to modify the window with -/// __cond__ | condition that has to be met to actually commit the visbility state change -*/ -NK_API void nk_window_show_if(struct nk_context*, const char *name, enum nk_show_states, int cond); -/*/// #### nk_window_show_if -/// Line for visual seperation. Draws a line with thickness determined by the current row height. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, NK_BOOL rounding) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ----------------|------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __color__ | Color of the horizontal line -/// __rounding__ | Whether or not to make the line round -*/ -NK_API void nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding); -/* ============================================================================= - * - * LAYOUT - * - * ============================================================================= -/// ### Layouting -/// Layouting in general describes placing widget inside a window with position and size. -/// While in this particular implementation there are five different APIs for layouting -/// each with different trade offs between control and ease of use.

-/// -/// All layouting methods in this library are based around the concept of a row. -/// A row has a height the window content grows by and a number of columns and each -/// layouting method specifies how each widget is placed inside the row. -/// After a row has been allocated by calling a layouting functions and then -/// filled with widgets will advance an internal pointer over the allocated row.

-/// -/// To actually define a layout you just call the appropriate layouting function -/// and each subsequent widget call will place the widget as specified. Important -/// here is that if you define more widgets then columns defined inside the layout -/// functions it will allocate the next row without you having to make another layouting

-/// call. -/// -/// Biggest limitation with using all these APIs outside the `nk_layout_space_xxx` API -/// is that you have to define the row height for each. However the row height -/// often depends on the height of the font.

-/// -/// To fix that internally nuklear uses a minimum row height that is set to the -/// height plus padding of currently active font and overwrites the row height -/// value if zero.

-/// -/// If you manually want to change the minimum row height then -/// use nk_layout_set_min_row_height, and use nk_layout_reset_min_row_height to -/// reset it back to be derived from font height.

-/// -/// Also if you change the font in nuklear it will automatically change the minimum -/// row height for you and. This means if you change the font but still want -/// a minimum row height smaller than the font you have to repush your value.

-/// -/// For actually more advanced UI I would even recommend using the `nk_layout_space_xxx` -/// layouting method in combination with a cassowary constraint solver (there are -/// some versions on github with permissive license model) to take over all control over widget -/// layouting yourself. However for quick and dirty layouting using all the other layouting -/// functions should be fine. -/// -/// #### Usage -/// 1. __nk_layout_row_dynamic__

-/// The easiest layouting function is `nk_layout_row_dynamic`. It provides each -/// widgets with same horizontal space inside the row and dynamically grows -/// if the owning window grows in width. So the number of columns dictates -/// the size of each widget dynamically by formula: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// widget_width = (window_width - padding - spacing) * (1/colum_count) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Just like all other layouting APIs if you define more widget than columns this -/// library will allocate a new row and keep all layouting parameters previously -/// defined. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // first row with height: 30 composed of two widgets -/// nk_layout_row_dynamic(&ctx, 30, 2); -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // second row with same parameter as defined above -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // third row uses 0 for height which will use auto layouting -/// nk_layout_row_dynamic(&ctx, 0, 2); -/// nk_widget(...); -/// nk_widget(...); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// 2. __nk_layout_row_static__

-/// Another easy layouting function is `nk_layout_row_static`. It provides each -/// widget with same horizontal pixel width inside the row and does not grow -/// if the owning window scales smaller or bigger. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // first row with height: 30 composed of two widgets with width: 80 -/// nk_layout_row_static(&ctx, 30, 80, 2); -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // second row with same parameter as defined above -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // third row uses 0 for height which will use auto layouting -/// nk_layout_row_static(&ctx, 0, 80, 2); -/// nk_widget(...); -/// nk_widget(...); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// 3. __nk_layout_row_xxx__

-/// A little bit more advanced layouting API are functions `nk_layout_row_begin`, -/// `nk_layout_row_push` and `nk_layout_row_end`. They allow to directly -/// specify each column pixel or window ratio in a row. It supports either -/// directly setting per column pixel width or widget window ratio but not -/// both. Furthermore it is a immediate mode API so each value is directly -/// pushed before calling a widget. Therefore the layout is not automatically -/// repeating like the last two layouting functions. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // first row with height: 25 composed of two widgets with width 60 and 40 -/// nk_layout_row_begin(ctx, NK_STATIC, 25, 2); -/// nk_layout_row_push(ctx, 60); -/// nk_widget(...); -/// nk_layout_row_push(ctx, 40); -/// nk_widget(...); -/// nk_layout_row_end(ctx); -/// // -/// // second row with height: 25 composed of two widgets with window ratio 0.25 and 0.75 -/// nk_layout_row_begin(ctx, NK_DYNAMIC, 25, 2); -/// nk_layout_row_push(ctx, 0.25f); -/// nk_widget(...); -/// nk_layout_row_push(ctx, 0.75f); -/// nk_widget(...); -/// nk_layout_row_end(ctx); -/// // -/// // third row with auto generated height: composed of two widgets with window ratio 0.25 and 0.75 -/// nk_layout_row_begin(ctx, NK_DYNAMIC, 0, 2); -/// nk_layout_row_push(ctx, 0.25f); -/// nk_widget(...); -/// nk_layout_row_push(ctx, 0.75f); -/// nk_widget(...); -/// nk_layout_row_end(ctx); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// 4. __nk_layout_row__

-/// The array counterpart to API nk_layout_row_xxx is the single nk_layout_row -/// functions. Instead of pushing either pixel or window ratio for every widget -/// it allows to define it by array. The trade of for less control is that -/// `nk_layout_row` is automatically repeating. Otherwise the behavior is the -/// same. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // two rows with height: 30 composed of two widgets with width 60 and 40 -/// const float ratio[] = {60,40}; -/// nk_layout_row(ctx, NK_STATIC, 30, 2, ratio); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // two rows with height: 30 composed of two widgets with window ratio 0.25 and 0.75 -/// const float ratio[] = {0.25, 0.75}; -/// nk_layout_row(ctx, NK_DYNAMIC, 30, 2, ratio); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// // -/// // two rows with auto generated height composed of two widgets with window ratio 0.25 and 0.75 -/// const float ratio[] = {0.25, 0.75}; -/// nk_layout_row(ctx, NK_DYNAMIC, 30, 2, ratio); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// 5. __nk_layout_row_template_xxx__

-/// The most complex and second most flexible API is a simplified flexbox version without -/// line wrapping and weights for dynamic widgets. It is an immediate mode API but -/// unlike `nk_layout_row_xxx` it has auto repeat behavior and needs to be called -/// before calling the templated widgets. -/// The row template layout has three different per widget size specifier. The first -/// one is the `nk_layout_row_template_push_static` with fixed widget pixel width. -/// They do not grow if the row grows and will always stay the same. -/// The second size specifier is `nk_layout_row_template_push_variable` -/// which defines a minimum widget size but it also can grow if more space is available -/// not taken by other widgets. -/// Finally there are dynamic widgets with `nk_layout_row_template_push_dynamic` -/// which are completely flexible and unlike variable widgets can even shrink -/// to zero if not enough space is provided. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // two rows with height: 30 composed of three widgets -/// nk_layout_row_template_begin(ctx, 30); -/// nk_layout_row_template_push_dynamic(ctx); -/// nk_layout_row_template_push_variable(ctx, 80); -/// nk_layout_row_template_push_static(ctx, 80); -/// nk_layout_row_template_end(ctx); -/// // -/// // first row -/// nk_widget(...); // dynamic widget can go to zero if not enough space -/// nk_widget(...); // variable widget with min 80 pixel but can grow bigger if enough space -/// nk_widget(...); // static widget with fixed 80 pixel width -/// // -/// // second row same layout -/// nk_widget(...); -/// nk_widget(...); -/// nk_widget(...); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// 6. __nk_layout_space_xxx__

-/// Finally the most flexible API directly allows you to place widgets inside the -/// window. The space layout API is an immediate mode API which does not support -/// row auto repeat and directly sets position and size of a widget. Position -/// and size hereby can be either specified as ratio of allocated space or -/// allocated space local position and pixel size. Since this API is quite -/// powerful there are a number of utility functions to get the available space -/// and convert between local allocated space and screen space. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_begin_xxx(...) { -/// // static row with height: 500 (you can set column count to INT_MAX if you don't want to be bothered) -/// nk_layout_space_begin(ctx, NK_STATIC, 500, INT_MAX); -/// nk_layout_space_push(ctx, nk_rect(0,0,150,200)); -/// nk_widget(...); -/// nk_layout_space_push(ctx, nk_rect(200,200,100,200)); -/// nk_widget(...); -/// nk_layout_space_end(ctx); -/// // -/// // dynamic row with height: 500 (you can set column count to INT_MAX if you don't want to be bothered) -/// nk_layout_space_begin(ctx, NK_DYNAMIC, 500, INT_MAX); -/// nk_layout_space_push(ctx, nk_rect(0.5,0.5,0.1,0.1)); -/// nk_widget(...); -/// nk_layout_space_push(ctx, nk_rect(0.7,0.6,0.1,0.1)); -/// nk_widget(...); -/// } -/// nk_end(...); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// ----------------------------------------|------------------------------------ -/// nk_layout_set_min_row_height | Set the currently used minimum row height to a specified value -/// nk_layout_reset_min_row_height | Resets the currently used minimum row height to font height -/// nk_layout_widget_bounds | Calculates current width a static layout row can fit inside a window -/// nk_layout_ratio_from_pixel | Utility functions to calculate window ratio from pixel size -// -/// nk_layout_row_dynamic | Current layout is divided into n same sized growing columns -/// nk_layout_row_static | Current layout is divided into n same fixed sized columns -/// nk_layout_row_begin | Starts a new row with given height and number of columns -/// nk_layout_row_push | Pushes another column with given size or window ratio -/// nk_layout_row_end | Finished previously started row -/// nk_layout_row | Specifies row columns in array as either window ratio or size -// -/// nk_layout_row_template_begin | Begins the row template declaration -/// nk_layout_row_template_push_dynamic | Adds a dynamic column that dynamically grows and can go to zero if not enough space -/// nk_layout_row_template_push_variable | Adds a variable column that dynamically grows but does not shrink below specified pixel width -/// nk_layout_row_template_push_static | Adds a static column that does not grow and will always have the same size -/// nk_layout_row_template_end | Marks the end of the row template -// -/// nk_layout_space_begin | Begins a new layouting space that allows to specify each widgets position and size -/// nk_layout_space_push | Pushes position and size of the next widget in own coordinate space either as pixel or ratio -/// nk_layout_space_end | Marks the end of the layouting space -// -/// nk_layout_space_bounds | Callable after nk_layout_space_begin and returns total space allocated -/// nk_layout_space_to_screen | Converts vector from nk_layout_space coordinate space into screen space -/// nk_layout_space_to_local | Converts vector from screen space into nk_layout_space coordinates -/// nk_layout_space_rect_to_screen | Converts rectangle from nk_layout_space coordinate space into screen space -/// nk_layout_space_rect_to_local | Converts rectangle from screen space into nk_layout_space coordinates -*/ - -enum nk_widget_align { - NK_WIDGET_ALIGN_LEFT = 0x01, - NK_WIDGET_ALIGN_CENTERED = 0x02, - NK_WIDGET_ALIGN_RIGHT = 0x04, - NK_WIDGET_ALIGN_TOP = 0x08, - NK_WIDGET_ALIGN_MIDDLE = 0x10, - NK_WIDGET_ALIGN_BOTTOM = 0x20 -}; -enum nk_widget_alignment { - NK_WIDGET_LEFT = NK_WIDGET_ALIGN_MIDDLE|NK_WIDGET_ALIGN_LEFT, - NK_WIDGET_CENTERED = NK_WIDGET_ALIGN_MIDDLE|NK_WIDGET_ALIGN_CENTERED, - NK_WIDGET_RIGHT = NK_WIDGET_ALIGN_MIDDLE|NK_WIDGET_ALIGN_RIGHT -}; - -/*/// #### nk_layout_set_min_row_height -/// Sets the currently used minimum row height. -/// !!! WARNING -/// The passed height needs to include both your preferred row height -/// as well as padding. No internal padding is added. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_set_min_row_height(struct nk_context*, float height); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __height__ | New minimum row height to be used for auto generating the row height -*/ -NK_API void nk_layout_set_min_row_height(struct nk_context*, float height); -/*/// #### nk_layout_reset_min_row_height -/// Reset the currently used minimum row height back to `font_height + text_padding + padding` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_reset_min_row_height(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -*/ -NK_API void nk_layout_reset_min_row_height(struct nk_context*); -/*/// #### nk_layout_widget_bounds -/// Returns the width of the next row allocate by one of the layouting functions -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_layout_widget_bounds(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// -/// Return `nk_rect` with both position and size of the next row -*/ -NK_API struct nk_rect nk_layout_widget_bounds(struct nk_context*); -/*/// #### nk_layout_ratio_from_pixel -/// Utility functions to calculate window ratio from pixel size -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// float nk_layout_ratio_from_pixel(struct nk_context*, float pixel_width); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __pixel__ | Pixel_width to convert to window ratio -/// -/// Returns `nk_rect` with both position and size of the next row -*/ -NK_API float nk_layout_ratio_from_pixel(struct nk_context*, float pixel_width); -/*/// #### nk_layout_row_dynamic -/// Sets current row layout to share horizontal space -/// between @cols number of widgets evenly. Once called all subsequent widget -/// calls greater than @cols will allocate a new row with same layout. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_dynamic(struct nk_context *ctx, float height, int cols); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __height__ | Holds height of each widget in row or zero for auto layouting -/// __columns__ | Number of widget inside row -*/ -NK_API void nk_layout_row_dynamic(struct nk_context *ctx, float height, int cols); -/*/// #### nk_layout_row_static -/// Sets current row layout to fill @cols number of widgets -/// in row with same @item_width horizontal size. Once called all subsequent widget -/// calls greater than @cols will allocate a new row with same layout. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __height__ | Holds height of each widget in row or zero for auto layouting -/// __width__ | Holds pixel width of each widget in the row -/// __columns__ | Number of widget inside row -*/ -NK_API void nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols); -/*/// #### nk_layout_row_begin -/// Starts a new dynamic or fixed row with given height and columns. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_begin(struct nk_context *ctx, enum nk_layout_format fmt, float row_height, int cols); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __fmt__ | either `NK_DYNAMIC` for window ratio or `NK_STATIC` for fixed size columns -/// __height__ | holds height of each widget in row or zero for auto layouting -/// __columns__ | Number of widget inside row -*/ -NK_API void nk_layout_row_begin(struct nk_context *ctx, enum nk_layout_format fmt, float row_height, int cols); -/*/// #### nk_layout_row_push -/// Specifies either window ratio or width of a single column -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_push(struct nk_context*, float value); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __value__ | either a window ratio or fixed width depending on @fmt in previous `nk_layout_row_begin` call -*/ -NK_API void nk_layout_row_push(struct nk_context*, float value); -/*/// #### nk_layout_row_end -/// Finished previously started row -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_end(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -*/ -NK_API void nk_layout_row_end(struct nk_context*); -/*/// #### nk_layout_row -/// Specifies row columns in array as either window ratio or size -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row(struct nk_context*, enum nk_layout_format, float height, int cols, const float *ratio); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __fmt__ | Either `NK_DYNAMIC` for window ratio or `NK_STATIC` for fixed size columns -/// __height__ | Holds height of each widget in row or zero for auto layouting -/// __columns__ | Number of widget inside row -*/ -NK_API void nk_layout_row(struct nk_context*, enum nk_layout_format, float height, int cols, const float *ratio); -/*/// #### nk_layout_row_template_begin -/// Begins the row template declaration -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_template_begin(struct nk_context*, float row_height); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __height__ | Holds height of each widget in row or zero for auto layouting -*/ -NK_API void nk_layout_row_template_begin(struct nk_context*, float row_height); -/*/// #### nk_layout_row_template_push_dynamic -/// Adds a dynamic column that dynamically grows and can go to zero if not enough space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_template_push_dynamic(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __height__ | Holds height of each widget in row or zero for auto layouting -*/ -NK_API void nk_layout_row_template_push_dynamic(struct nk_context*); -/*/// #### nk_layout_row_template_push_variable -/// Adds a variable column that dynamically grows but does not shrink below specified pixel width -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_template_push_variable(struct nk_context*, float min_width); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __width__ | Holds the minimum pixel width the next column must always be -*/ -NK_API void nk_layout_row_template_push_variable(struct nk_context*, float min_width); -/*/// #### nk_layout_row_template_push_static -/// Adds a static column that does not grow and will always have the same size -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_template_push_static(struct nk_context*, float width); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __width__ | Holds the absolute pixel width value the next column must be -*/ -NK_API void nk_layout_row_template_push_static(struct nk_context*, float width); -/*/// #### nk_layout_row_template_end -/// Marks the end of the row template -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_row_template_end(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -*/ -NK_API void nk_layout_row_template_end(struct nk_context*); -/*/// #### nk_layout_space_begin -/// Begins a new layouting space that allows to specify each widgets position and size. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_space_begin(struct nk_context*, enum nk_layout_format, float height, int widget_count); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_begin_xxx` -/// __fmt__ | Either `NK_DYNAMIC` for window ratio or `NK_STATIC` for fixed size columns -/// __height__ | Holds height of each widget in row or zero for auto layouting -/// __columns__ | Number of widgets inside row -*/ -NK_API void nk_layout_space_begin(struct nk_context*, enum nk_layout_format, float height, int widget_count); -/*/// #### nk_layout_space_push -/// Pushes position and size of the next widget in own coordinate space either as pixel or ratio -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_space_push(struct nk_context *ctx, struct nk_rect bounds); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// __bounds__ | Position and size in laoyut space local coordinates -*/ -NK_API void nk_layout_space_push(struct nk_context*, struct nk_rect bounds); -/*/// #### nk_layout_space_end -/// Marks the end of the layout space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_layout_space_end(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -*/ -NK_API void nk_layout_space_end(struct nk_context*); -/*/// #### nk_layout_space_bounds -/// Utility function to calculate total space allocated for `nk_layout_space` -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_layout_space_bounds(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// -/// Returns `nk_rect` holding the total space allocated -*/ -NK_API struct nk_rect nk_layout_space_bounds(struct nk_context*); -/*/// #### nk_layout_space_to_screen -/// Converts vector from nk_layout_space coordinate space into screen space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_layout_space_to_screen(struct nk_context*, struct nk_vec2); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// __vec__ | Position to convert from layout space into screen coordinate space -/// -/// Returns transformed `nk_vec2` in screen space coordinates -*/ -NK_API struct nk_vec2 nk_layout_space_to_screen(struct nk_context*, struct nk_vec2); -/*/// #### nk_layout_space_to_local -/// Converts vector from layout space into screen space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_vec2 nk_layout_space_to_local(struct nk_context*, struct nk_vec2); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// __vec__ | Position to convert from screen space into layout coordinate space -/// -/// Returns transformed `nk_vec2` in layout space coordinates -*/ -NK_API struct nk_vec2 nk_layout_space_to_local(struct nk_context*, struct nk_vec2); -/*/// #### nk_layout_space_rect_to_screen -/// Converts rectangle from screen space into layout space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_layout_space_rect_to_screen(struct nk_context*, struct nk_rect); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// __bounds__ | Rectangle to convert from layout space into screen space -/// -/// Returns transformed `nk_rect` in screen space coordinates -*/ -NK_API struct nk_rect nk_layout_space_rect_to_screen(struct nk_context*, struct nk_rect); -/*/// #### nk_layout_space_rect_to_local -/// Converts rectangle from layout space into screen space -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_rect nk_layout_space_rect_to_local(struct nk_context*, struct nk_rect); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// __bounds__ | Rectangle to convert from layout space into screen space -/// -/// Returns transformed `nk_rect` in layout space coordinates -*/ -NK_API struct nk_rect nk_layout_space_rect_to_local(struct nk_context*, struct nk_rect); - -/*/// #### nk_spacer -/// Spacer is a dummy widget that consumes space as usual but doesn't draw anything -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_spacer(struct nk_context* ); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after call `nk_layout_space_begin` -/// -*/ -NK_API void nk_spacer(struct nk_context* ); - - -/* ============================================================================= - * - * GROUP - * - * ============================================================================= -/// ### Groups -/// Groups are basically windows inside windows. They allow to subdivide space -/// in a window to layout widgets as a group. Almost all more complex widget -/// layouting requirements can be solved using groups and basic layouting -/// fuctionality. Groups just like windows are identified by an unique name and -/// internally keep track of scrollbar offsets by default. However additional -/// versions are provided to directly manage the scrollbar. -/// -/// #### Usage -/// To create a group you have to call one of the three `nk_group_begin_xxx` -/// functions to start group declarations and `nk_group_end` at the end. Furthermore it -/// is required to check the return value of `nk_group_begin_xxx` and only process -/// widgets inside the window if the value is not 0. -/// Nesting groups is possible and even encouraged since many layouting schemes -/// can only be achieved by nesting. Groups, unlike windows, need `nk_group_end` -/// to be only called if the corresponding `nk_group_begin_xxx` call does not return 0: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_group_begin_xxx(ctx, ...) { -/// // [... widgets ...] -/// nk_group_end(ctx); -/// } -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// In the grand concept groups can be called after starting a window -/// with `nk_begin_xxx` and before calling `nk_end`: -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// // Input -/// Event evt; -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// nk_input_xxx(...); -/// } -/// } -/// nk_input_end(&ctx); -/// // -/// // Window -/// if (nk_begin_xxx(...) { -/// // [...widgets...] -/// nk_layout_row_dynamic(...); -/// if (nk_group_begin_xxx(ctx, ...) { -/// //[... widgets ...] -/// nk_group_end(ctx); -/// } -/// } -/// nk_end(ctx); -/// // -/// // Draw -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case ...: -/// // [...] -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// #### Reference -/// Function | Description -/// --------------------------------|------------------------------------------- -/// nk_group_begin | Start a new group with internal scrollbar handling -/// nk_group_begin_titled | Start a new group with separated name and title and internal scrollbar handling -/// nk_group_end | Ends a group. Should only be called if nk_group_begin returned non-zero -/// nk_group_scrolled_offset_begin | Start a new group with manual separated handling of scrollbar x- and y-offset -/// nk_group_scrolled_begin | Start a new group with manual scrollbar handling -/// nk_group_scrolled_end | Ends a group with manual scrollbar handling. Should only be called if nk_group_begin returned non-zero -/// nk_group_get_scroll | Gets the scroll offset for the given group -/// nk_group_set_scroll | Sets the scroll offset for the given group -*/ -/*/// #### nk_group_begin -/// Starts a new widget group. Requires a previous layouting function to specify a pos/size. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_group_begin(struct nk_context*, const char *title, nk_flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __title__ | Must be an unique identifier for this group that is also used for the group header -/// __flags__ | Window flags defined in the nk_panel_flags section with a number of different group behaviors -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_group_begin(struct nk_context*, const char *title, nk_flags); -/*/// #### nk_group_begin_titled -/// Starts a new widget group. Requires a previous layouting function to specify a pos/size. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_group_begin_titled(struct nk_context*, const char *name, const char *title, nk_flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __id__ | Must be an unique identifier for this group -/// __title__ | Group header title -/// __flags__ | Window flags defined in the nk_panel_flags section with a number of different group behaviors -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_group_begin_titled(struct nk_context*, const char *name, const char *title, nk_flags); -/*/// #### nk_group_end -/// Ends a widget group -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_group_end(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -*/ -NK_API void nk_group_end(struct nk_context*); -/*/// #### nk_group_scrolled_offset_begin -/// starts a new widget group. requires a previous layouting function to specify -/// a size. Does not keep track of scrollbar. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_group_scrolled_offset_begin(struct nk_context*, nk_uint *x_offset, nk_uint *y_offset, const char *title, nk_flags flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __x_offset__| Scrollbar x-offset to offset all widgets inside the group horizontally. -/// __y_offset__| Scrollbar y-offset to offset all widgets inside the group vertically -/// __title__ | Window unique group title used to both identify and display in the group header -/// __flags__ | Window flags from the nk_panel_flags section -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_group_scrolled_offset_begin(struct nk_context*, nk_uint *x_offset, nk_uint *y_offset, const char *title, nk_flags flags); -/*/// #### nk_group_scrolled_begin -/// Starts a new widget group. requires a previous -/// layouting function to specify a size. Does not keep track of scrollbar. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_group_scrolled_begin(struct nk_context*, struct nk_scroll *off, const char *title, nk_flags); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __off__ | Both x- and y- scroll offset. Allows for manual scrollbar control -/// __title__ | Window unique group title used to both identify and display in the group header -/// __flags__ | Window flags from nk_panel_flags section -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_group_scrolled_begin(struct nk_context*, struct nk_scroll *off, const char *title, nk_flags); -/*/// #### nk_group_scrolled_end -/// Ends a widget group after calling nk_group_scrolled_offset_begin or nk_group_scrolled_begin. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_group_scrolled_end(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -*/ -NK_API void nk_group_scrolled_end(struct nk_context*); -/*/// #### nk_group_get_scroll -/// Gets the scroll position of the given group. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_group_get_scroll(struct nk_context*, const char *id, nk_uint *x_offset, nk_uint *y_offset); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// -------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __id__ | The id of the group to get the scroll position of -/// __x_offset__ | A pointer to the x offset output (or NULL to ignore) -/// __y_offset__ | A pointer to the y offset output (or NULL to ignore) -*/ -NK_API void nk_group_get_scroll(struct nk_context*, const char *id, nk_uint *x_offset, nk_uint *y_offset); -/*/// #### nk_group_set_scroll -/// Sets the scroll position of the given group. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_group_set_scroll(struct nk_context*, const char *id, nk_uint x_offset, nk_uint y_offset); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// -------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __id__ | The id of the group to scroll -/// __x_offset__ | The x offset to scroll to -/// __y_offset__ | The y offset to scroll to -*/ -NK_API void nk_group_set_scroll(struct nk_context*, const char *id, nk_uint x_offset, nk_uint y_offset); -/* ============================================================================= - * - * TREE - * - * ============================================================================= -/// ### Tree -/// Trees represent two different concept. First the concept of a collapsible -/// UI section that can be either in a hidden or visible state. They allow the UI -/// user to selectively minimize the current set of visible UI to comprehend. -/// The second concept are tree widgets for visual UI representation of trees.

-/// -/// Trees thereby can be nested for tree representations and multiple nested -/// collapsible UI sections. All trees are started by calling of the -/// `nk_tree_xxx_push_tree` functions and ended by calling one of the -/// `nk_tree_xxx_pop_xxx()` functions. Each starting functions takes a title label -/// and optionally an image to be displayed and the initial collapse state from -/// the nk_collapse_states section.

-/// -/// The runtime state of the tree is either stored outside the library by the caller -/// or inside which requires a unique ID. The unique ID can either be generated -/// automatically from `__FILE__` and `__LINE__` with function `nk_tree_push`, -/// by `__FILE__` and a user provided ID generated for example by loop index with -/// function `nk_tree_push_id` or completely provided from outside by user with -/// function `nk_tree_push_hashed`. -/// -/// #### Usage -/// To create a tree you have to call one of the seven `nk_tree_xxx_push_xxx` -/// functions to start a collapsible UI section and `nk_tree_xxx_pop` to mark the -/// end. -/// Each starting function will either return `false(0)` if the tree is collapsed -/// or hidden and therefore does not need to be filled with content or `true(1)` -/// if visible and required to be filled. -/// -/// !!! Note -/// The tree header does not require and layouting function and instead -/// calculates a auto height based on the currently used font size -/// -/// The tree ending functions only need to be called if the tree content is -/// actually visible. So make sure the tree push function is guarded by `if` -/// and the pop call is only taken if the tree is visible. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// if (nk_tree_push(ctx, NK_TREE_TAB, "Tree", NK_MINIMIZED)) { -/// nk_layout_row_dynamic(...); -/// nk_widget(...); -/// nk_tree_pop(ctx); -/// } -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// ----------------------------|------------------------------------------- -/// nk_tree_push | Start a collapsible UI section with internal state management -/// nk_tree_push_id | Start a collapsible UI section with internal state management callable in a look -/// nk_tree_push_hashed | Start a collapsible UI section with internal state management with full control over internal unique ID use to store state -/// nk_tree_image_push | Start a collapsible UI section with image and label header -/// nk_tree_image_push_id | Start a collapsible UI section with image and label header and internal state management callable in a look -/// nk_tree_image_push_hashed | Start a collapsible UI section with image and label header and internal state management with full control over internal unique ID use to store state -/// nk_tree_pop | Ends a collapsible UI section -// -/// nk_tree_state_push | Start a collapsible UI section with external state management -/// nk_tree_state_image_push | Start a collapsible UI section with image and label header and external state management -/// nk_tree_state_pop | Ends a collapsabale UI section -/// -/// #### nk_tree_type -/// Flag | Description -/// ----------------|---------------------------------------- -/// NK_TREE_NODE | Highlighted tree header to mark a collapsible UI section -/// NK_TREE_TAB | Non-highlighted tree header closer to tree representations -*/ -/*/// #### nk_tree_push -/// Starts a collapsible UI section with internal state management -/// !!! WARNING -/// To keep track of the runtime tree collapsible state this function uses -/// defines `__FILE__` and `__LINE__` to generate a unique ID. If you want -/// to call this function in a loop please use `nk_tree_push_id` or -/// `nk_tree_push_hashed` instead. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_tree_push(ctx, type, title, state) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -#define nk_tree_push(ctx, type, title, state) nk_tree_push_hashed(ctx, type, title, state, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),__LINE__) -/*/// #### nk_tree_push_id -/// Starts a collapsible UI section with internal state management callable in a look -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_tree_push_id(ctx, type, title, state, id) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// __id__ | Loop counter index if this function is called in a loop -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -#define nk_tree_push_id(ctx, type, title, state, id) nk_tree_push_hashed(ctx, type, title, state, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),id) -/*/// #### nk_tree_push_hashed -/// Start a collapsible UI section with internal state management with full -/// control over internal unique ID used to store state -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_tree_push_hashed(struct nk_context*, enum nk_tree_type, const char *title, enum nk_collapse_states initial_state, const char *hash, int len,int seed); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// __hash__ | Memory block or string to generate the ID from -/// __len__ | Size of passed memory block or string in __hash__ -/// __seed__ | Seeding value if this function is called in a loop or default to `0` -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_tree_push_hashed(struct nk_context*, enum nk_tree_type, const char *title, enum nk_collapse_states initial_state, const char *hash, int len,int seed); -/*/// #### nk_tree_image_push -/// Start a collapsible UI section with image and label header -/// !!! WARNING -/// To keep track of the runtime tree collapsible state this function uses -/// defines `__FILE__` and `__LINE__` to generate a unique ID. If you want -/// to call this function in a loop please use `nk_tree_image_push_id` or -/// `nk_tree_image_push_hashed` instead. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_tree_image_push(ctx, type, img, title, state) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __img__ | Image to display inside the header on the left of the label -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -#define nk_tree_image_push(ctx, type, img, title, state) nk_tree_image_push_hashed(ctx, type, img, title, state, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),__LINE__) -/*/// #### nk_tree_image_push_id -/// Start a collapsible UI section with image and label header and internal state -/// management callable in a look -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// #define nk_tree_image_push_id(ctx, type, img, title, state, id) -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __img__ | Image to display inside the header on the left of the label -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// __id__ | Loop counter index if this function is called in a loop -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -#define nk_tree_image_push_id(ctx, type, img, title, state, id) nk_tree_image_push_hashed(ctx, type, img, title, state, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),id) -/*/// #### nk_tree_image_push_hashed -/// Start a collapsible UI section with internal state management with full -/// control over internal unique ID used to store state -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_tree_image_push_hashed(struct nk_context*, enum nk_tree_type, struct nk_image, const char *title, enum nk_collapse_states initial_state, const char *hash, int len,int seed); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __img__ | Image to display inside the header on the left of the label -/// __title__ | Label printed in the tree header -/// __state__ | Initial tree state value out of nk_collapse_states -/// __hash__ | Memory block or string to generate the ID from -/// __len__ | Size of passed memory block or string in __hash__ -/// __seed__ | Seeding value if this function is called in a loop or default to `0` -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_tree_image_push_hashed(struct nk_context*, enum nk_tree_type, struct nk_image, const char *title, enum nk_collapse_states initial_state, const char *hash, int len,int seed); -/*/// #### nk_tree_pop -/// Ends a collapsabale UI section -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_tree_pop(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling `nk_tree_xxx_push_xxx` -*/ -NK_API void nk_tree_pop(struct nk_context*); -/*/// #### nk_tree_state_push -/// Start a collapsible UI section with external state management -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_tree_state_push(struct nk_context*, enum nk_tree_type, const char *title, enum nk_collapse_states *state); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling `nk_tree_xxx_push_xxx` -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __title__ | Label printed in the tree header -/// __state__ | Persistent state to update -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_tree_state_push(struct nk_context*, enum nk_tree_type, const char *title, enum nk_collapse_states *state); -/*/// #### nk_tree_state_image_push -/// Start a collapsible UI section with image and label header and external state management -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// nk_bool nk_tree_state_image_push(struct nk_context*, enum nk_tree_type, struct nk_image, const char *title, enum nk_collapse_states *state); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling `nk_tree_xxx_push_xxx` -/// __img__ | Image to display inside the header on the left of the label -/// __type__ | Value from the nk_tree_type section to visually mark a tree node header as either a collapseable UI section or tree node -/// __title__ | Label printed in the tree header -/// __state__ | Persistent state to update -/// -/// Returns `true(1)` if visible and fillable with widgets or `false(0)` otherwise -*/ -NK_API nk_bool nk_tree_state_image_push(struct nk_context*, enum nk_tree_type, struct nk_image, const char *title, enum nk_collapse_states *state); -/*/// #### nk_tree_state_pop -/// Ends a collapsabale UI section -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_tree_state_pop(struct nk_context*); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// ------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling `nk_tree_xxx_push_xxx` -*/ -NK_API void nk_tree_state_pop(struct nk_context*); - -#define nk_tree_element_push(ctx, type, title, state, sel) nk_tree_element_push_hashed(ctx, type, title, state, sel, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),__LINE__) -#define nk_tree_element_push_id(ctx, type, title, state, sel, id) nk_tree_element_push_hashed(ctx, type, title, state, sel, NK_FILE_LINE,nk_strlen(NK_FILE_LINE),id) -NK_API nk_bool nk_tree_element_push_hashed(struct nk_context*, enum nk_tree_type, const char *title, enum nk_collapse_states initial_state, nk_bool *selected, const char *hash, int len, int seed); -NK_API nk_bool nk_tree_element_image_push_hashed(struct nk_context*, enum nk_tree_type, struct nk_image, const char *title, enum nk_collapse_states initial_state, nk_bool *selected, const char *hash, int len,int seed); -NK_API void nk_tree_element_pop(struct nk_context*); - -/* ============================================================================= - * - * LIST VIEW - * - * ============================================================================= */ -struct nk_list_view { -/* public: */ - int begin, end, count; -/* private: */ - int total_height; - struct nk_context *ctx; - nk_uint *scroll_pointer; - nk_uint scroll_value; -}; -NK_API nk_bool nk_list_view_begin(struct nk_context*, struct nk_list_view *out, const char *id, nk_flags, int row_height, int row_count); -NK_API void nk_list_view_end(struct nk_list_view*); -/* ============================================================================= - * - * WIDGET - * - * ============================================================================= */ -enum nk_widget_layout_states { - NK_WIDGET_INVALID, /* The widget cannot be seen and is completely out of view */ - NK_WIDGET_VALID, /* The widget is completely inside the window and can be updated and drawn */ - NK_WIDGET_ROM, /* The widget is partially visible and cannot be updated */ - NK_WIDGET_DISABLED /* The widget is manually disabled and acts like NK_WIDGET_ROM */ -}; -enum nk_widget_states { - NK_WIDGET_STATE_MODIFIED = NK_FLAG(1), - NK_WIDGET_STATE_INACTIVE = NK_FLAG(2), /* widget is neither active nor hovered */ - NK_WIDGET_STATE_ENTERED = NK_FLAG(3), /* widget has been hovered on the current frame */ - NK_WIDGET_STATE_HOVER = NK_FLAG(4), /* widget is being hovered */ - NK_WIDGET_STATE_ACTIVED = NK_FLAG(5),/* widget is currently activated */ - NK_WIDGET_STATE_LEFT = NK_FLAG(6), /* widget is from this frame on not hovered anymore */ - NK_WIDGET_STATE_HOVERED = NK_WIDGET_STATE_HOVER|NK_WIDGET_STATE_MODIFIED, /* widget is being hovered */ - NK_WIDGET_STATE_ACTIVE = NK_WIDGET_STATE_ACTIVED|NK_WIDGET_STATE_MODIFIED /* widget is currently activated */ -}; -NK_API enum nk_widget_layout_states nk_widget(struct nk_rect*, const struct nk_context*); -NK_API enum nk_widget_layout_states nk_widget_fitting(struct nk_rect*, struct nk_context*, struct nk_vec2); -NK_API struct nk_rect nk_widget_bounds(struct nk_context*); -NK_API struct nk_vec2 nk_widget_position(struct nk_context*); -NK_API struct nk_vec2 nk_widget_size(struct nk_context*); -NK_API float nk_widget_width(struct nk_context*); -NK_API float nk_widget_height(struct nk_context*); -NK_API nk_bool nk_widget_is_hovered(struct nk_context*); -NK_API nk_bool nk_widget_is_mouse_clicked(struct nk_context*, enum nk_buttons); -NK_API nk_bool nk_widget_has_mouse_click_down(struct nk_context*, enum nk_buttons, nk_bool down); -NK_API void nk_spacing(struct nk_context*, int cols); -NK_API void nk_widget_disable_begin(struct nk_context* ctx); -NK_API void nk_widget_disable_end(struct nk_context* ctx); -/* ============================================================================= - * - * TEXT - * - * ============================================================================= */ -enum nk_text_align { - NK_TEXT_ALIGN_LEFT = 0x01, - NK_TEXT_ALIGN_CENTERED = 0x02, - NK_TEXT_ALIGN_RIGHT = 0x04, - NK_TEXT_ALIGN_TOP = 0x08, - NK_TEXT_ALIGN_MIDDLE = 0x10, - NK_TEXT_ALIGN_BOTTOM = 0x20 -}; -enum nk_text_alignment { - NK_TEXT_LEFT = NK_TEXT_ALIGN_MIDDLE|NK_TEXT_ALIGN_LEFT, - NK_TEXT_CENTERED = NK_TEXT_ALIGN_MIDDLE|NK_TEXT_ALIGN_CENTERED, - NK_TEXT_RIGHT = NK_TEXT_ALIGN_MIDDLE|NK_TEXT_ALIGN_RIGHT -}; -NK_API void nk_text(struct nk_context*, const char*, int, nk_flags); -NK_API void nk_text_colored(struct nk_context*, const char*, int, nk_flags, struct nk_color); -NK_API void nk_text_wrap(struct nk_context*, const char*, int); -NK_API void nk_text_wrap_colored(struct nk_context*, const char*, int, struct nk_color); -NK_API void nk_label(struct nk_context*, const char*, nk_flags align); -NK_API void nk_label_colored(struct nk_context*, const char*, nk_flags align, struct nk_color); -NK_API void nk_label_wrap(struct nk_context*, const char*); -NK_API void nk_label_colored_wrap(struct nk_context*, const char*, struct nk_color); -NK_API void nk_image(struct nk_context*, struct nk_image); -NK_API void nk_image_color(struct nk_context*, struct nk_image, struct nk_color); -#ifdef NK_INCLUDE_STANDARD_VARARGS -NK_API void nk_labelf(struct nk_context*, nk_flags, NK_PRINTF_FORMAT_STRING const char*, ...) NK_PRINTF_VARARG_FUNC(3); -NK_API void nk_labelf_colored(struct nk_context*, nk_flags, struct nk_color, NK_PRINTF_FORMAT_STRING const char*,...) NK_PRINTF_VARARG_FUNC(4); -NK_API void nk_labelf_wrap(struct nk_context*, NK_PRINTF_FORMAT_STRING const char*,...) NK_PRINTF_VARARG_FUNC(2); -NK_API void nk_labelf_colored_wrap(struct nk_context*, struct nk_color, NK_PRINTF_FORMAT_STRING const char*,...) NK_PRINTF_VARARG_FUNC(3); -NK_API void nk_labelfv(struct nk_context*, nk_flags, NK_PRINTF_FORMAT_STRING const char*, va_list) NK_PRINTF_VALIST_FUNC(3); -NK_API void nk_labelfv_colored(struct nk_context*, nk_flags, struct nk_color, NK_PRINTF_FORMAT_STRING const char*, va_list) NK_PRINTF_VALIST_FUNC(4); -NK_API void nk_labelfv_wrap(struct nk_context*, NK_PRINTF_FORMAT_STRING const char*, va_list) NK_PRINTF_VALIST_FUNC(2); -NK_API void nk_labelfv_colored_wrap(struct nk_context*, struct nk_color, NK_PRINTF_FORMAT_STRING const char*, va_list) NK_PRINTF_VALIST_FUNC(3); -NK_API void nk_value_bool(struct nk_context*, const char *prefix, int); -NK_API void nk_value_int(struct nk_context*, const char *prefix, int); -NK_API void nk_value_uint(struct nk_context*, const char *prefix, unsigned int); -NK_API void nk_value_float(struct nk_context*, const char *prefix, float); -NK_API void nk_value_color_byte(struct nk_context*, const char *prefix, struct nk_color); -NK_API void nk_value_color_float(struct nk_context*, const char *prefix, struct nk_color); -NK_API void nk_value_color_hex(struct nk_context*, const char *prefix, struct nk_color); -#endif -/* ============================================================================= - * - * BUTTON - * - * ============================================================================= */ -NK_API nk_bool nk_button_text(struct nk_context*, const char *title, int len); -NK_API nk_bool nk_button_label(struct nk_context*, const char *title); -NK_API nk_bool nk_button_color(struct nk_context*, struct nk_color); -NK_API nk_bool nk_button_symbol(struct nk_context*, enum nk_symbol_type); -NK_API nk_bool nk_button_image(struct nk_context*, struct nk_image img); -NK_API nk_bool nk_button_symbol_label(struct nk_context*, enum nk_symbol_type, const char*, nk_flags text_alignment); -NK_API nk_bool nk_button_symbol_text(struct nk_context*, enum nk_symbol_type, const char*, int, nk_flags alignment); -NK_API nk_bool nk_button_image_label(struct nk_context*, struct nk_image img, const char*, nk_flags text_alignment); -NK_API nk_bool nk_button_image_text(struct nk_context*, struct nk_image img, const char*, int, nk_flags alignment); -NK_API nk_bool nk_button_text_styled(struct nk_context*, const struct nk_style_button*, const char *title, int len); -NK_API nk_bool nk_button_label_styled(struct nk_context*, const struct nk_style_button*, const char *title); -NK_API nk_bool nk_button_symbol_styled(struct nk_context*, const struct nk_style_button*, enum nk_symbol_type); -NK_API nk_bool nk_button_image_styled(struct nk_context*, const struct nk_style_button*, struct nk_image img); -NK_API nk_bool nk_button_symbol_text_styled(struct nk_context*,const struct nk_style_button*, enum nk_symbol_type, const char*, int, nk_flags alignment); -NK_API nk_bool nk_button_symbol_label_styled(struct nk_context *ctx, const struct nk_style_button *style, enum nk_symbol_type symbol, const char *title, nk_flags align); -NK_API nk_bool nk_button_image_label_styled(struct nk_context*,const struct nk_style_button*, struct nk_image img, const char*, nk_flags text_alignment); -NK_API nk_bool nk_button_image_text_styled(struct nk_context*,const struct nk_style_button*, struct nk_image img, const char*, int, nk_flags alignment); -NK_API void nk_button_set_behavior(struct nk_context*, enum nk_button_behavior); -NK_API nk_bool nk_button_push_behavior(struct nk_context*, enum nk_button_behavior); -NK_API nk_bool nk_button_pop_behavior(struct nk_context*); -/* ============================================================================= - * - * CHECKBOX - * - * ============================================================================= */ -NK_API nk_bool nk_check_label(struct nk_context*, const char*, nk_bool active); -NK_API nk_bool nk_check_text(struct nk_context*, const char*, int, nk_bool active); -NK_API nk_bool nk_check_text_align(struct nk_context*, const char*, int, nk_bool active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API unsigned nk_check_flags_label(struct nk_context*, const char*, unsigned int flags, unsigned int value); -NK_API unsigned nk_check_flags_text(struct nk_context*, const char*, int, unsigned int flags, unsigned int value); -NK_API nk_bool nk_checkbox_label(struct nk_context*, const char*, nk_bool *active); -NK_API nk_bool nk_checkbox_label_align(struct nk_context *ctx, const char *label, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API nk_bool nk_checkbox_text(struct nk_context*, const char*, int, nk_bool *active); -NK_API nk_bool nk_checkbox_text_align(struct nk_context *ctx, const char *text, int len, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API nk_bool nk_checkbox_flags_label(struct nk_context*, const char*, unsigned int *flags, unsigned int value); -NK_API nk_bool nk_checkbox_flags_text(struct nk_context*, const char*, int, unsigned int *flags, unsigned int value); -/* ============================================================================= - * - * RADIO BUTTON - * - * ============================================================================= */ -NK_API nk_bool nk_radio_label(struct nk_context*, const char*, nk_bool *active); -NK_API nk_bool nk_radio_label_align(struct nk_context *ctx, const char *label, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API nk_bool nk_radio_text(struct nk_context*, const char*, int, nk_bool *active); -NK_API nk_bool nk_radio_text_align(struct nk_context *ctx, const char *text, int len, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API nk_bool nk_option_label(struct nk_context*, const char*, nk_bool active); -NK_API nk_bool nk_option_label_align(struct nk_context *ctx, const char *label, nk_bool active, nk_flags widget_alignment, nk_flags text_alignment); -NK_API nk_bool nk_option_text(struct nk_context*, const char*, int, nk_bool active); -NK_API nk_bool nk_option_text_align(struct nk_context *ctx, const char *text, int len, nk_bool is_active, nk_flags widget_alignment, nk_flags text_alignment); -/* ============================================================================= - * - * SELECTABLE - * - * ============================================================================= */ -NK_API nk_bool nk_selectable_label(struct nk_context*, const char*, nk_flags align, nk_bool *value); -NK_API nk_bool nk_selectable_text(struct nk_context*, const char*, int, nk_flags align, nk_bool *value); -NK_API nk_bool nk_selectable_image_label(struct nk_context*,struct nk_image, const char*, nk_flags align, nk_bool *value); -NK_API nk_bool nk_selectable_image_text(struct nk_context*,struct nk_image, const char*, int, nk_flags align, nk_bool *value); -NK_API nk_bool nk_selectable_symbol_label(struct nk_context*,enum nk_symbol_type, const char*, nk_flags align, nk_bool *value); -NK_API nk_bool nk_selectable_symbol_text(struct nk_context*,enum nk_symbol_type, const char*, int, nk_flags align, nk_bool *value); - -NK_API nk_bool nk_select_label(struct nk_context*, const char*, nk_flags align, nk_bool value); -NK_API nk_bool nk_select_text(struct nk_context*, const char*, int, nk_flags align, nk_bool value); -NK_API nk_bool nk_select_image_label(struct nk_context*, struct nk_image,const char*, nk_flags align, nk_bool value); -NK_API nk_bool nk_select_image_text(struct nk_context*, struct nk_image,const char*, int, nk_flags align, nk_bool value); -NK_API nk_bool nk_select_symbol_label(struct nk_context*,enum nk_symbol_type, const char*, nk_flags align, nk_bool value); -NK_API nk_bool nk_select_symbol_text(struct nk_context*,enum nk_symbol_type, const char*, int, nk_flags align, nk_bool value); - -/* ============================================================================= - * - * SLIDER - * - * ============================================================================= */ -NK_API float nk_slide_float(struct nk_context*, float min, float val, float max, float step); -NK_API int nk_slide_int(struct nk_context*, int min, int val, int max, int step); -NK_API nk_bool nk_slider_float(struct nk_context*, float min, float *val, float max, float step); -NK_API nk_bool nk_slider_int(struct nk_context*, int min, int *val, int max, int step); -/* ============================================================================= - * - * PROGRESSBAR - * - * ============================================================================= */ -NK_API nk_bool nk_progress(struct nk_context*, nk_size *cur, nk_size max, nk_bool modifyable); -NK_API nk_size nk_prog(struct nk_context*, nk_size cur, nk_size max, nk_bool modifyable); - -/* ============================================================================= - * - * COLOR PICKER - * - * ============================================================================= */ -NK_API struct nk_colorf nk_color_picker(struct nk_context*, struct nk_colorf, enum nk_color_format); -NK_API nk_bool nk_color_pick(struct nk_context*, struct nk_colorf*, enum nk_color_format); -/* ============================================================================= - * - * PROPERTIES - * - * ============================================================================= -/// ### Properties -/// Properties are the main value modification widgets in Nuklear. Changing a value -/// can be achieved by dragging, adding/removing incremental steps on button click -/// or by directly typing a number. -/// -/// #### Usage -/// Each property requires a unique name for identification that is also used for -/// displaying a label. If you want to use the same name multiple times make sure -/// add a '#' before your name. The '#' will not be shown but will generate a -/// unique ID. Each property also takes in a minimum and maximum value. If you want -/// to make use of the complete number range of a type just use the provided -/// type limits from `limits.h`. For example `INT_MIN` and `INT_MAX` for -/// `nk_property_int` and `nk_propertyi`. In additional each property takes in -/// a increment value that will be added or subtracted if either the increment -/// decrement button is clicked. Finally there is a value for increment per pixel -/// dragged that is added or subtracted from the value. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// int value = 0; -/// struct nk_context ctx; -/// nk_init_xxx(&ctx, ...); -/// while (1) { -/// // Input -/// Event evt; -/// nk_input_begin(&ctx); -/// while (GetEvent(&evt)) { -/// if (evt.type == MOUSE_MOVE) -/// nk_input_motion(&ctx, evt.motion.x, evt.motion.y); -/// else if (evt.type == [...]) { -/// nk_input_xxx(...); -/// } -/// } -/// nk_input_end(&ctx); -/// // -/// // Window -/// if (nk_begin_xxx(...) { -/// // Property -/// nk_layout_row_dynamic(...); -/// nk_property_int(ctx, "ID", INT_MIN, &value, INT_MAX, 1, 1); -/// } -/// nk_end(ctx); -/// // -/// // Draw -/// const struct nk_command *cmd = 0; -/// nk_foreach(cmd, &ctx) { -/// switch (cmd->type) { -/// case NK_COMMAND_LINE: -/// your_draw_line_function(...) -/// break; -/// case NK_COMMAND_RECT -/// your_draw_rect_function(...) -/// break; -/// case ...: -/// // [...] -/// } -/// nk_clear(&ctx); -/// } -/// nk_free(&ctx); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// #### Reference -/// Function | Description -/// --------------------|------------------------------------------- -/// nk_property_int | Integer property directly modifying a passed in value -/// nk_property_float | Float property directly modifying a passed in value -/// nk_property_double | Double property directly modifying a passed in value -/// nk_propertyi | Integer property returning the modified int value -/// nk_propertyf | Float property returning the modified float value -/// nk_propertyd | Double property returning the modified double value -/// -*/ -/*/// #### nk_property_int -/// Integer property directly modifying a passed in value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_property_int(struct nk_context *ctx, const char *name, int min, int *val, int max, int step, float inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Integer pointer to be modified -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -*/ -NK_API void nk_property_int(struct nk_context*, const char *name, int min, int *val, int max, int step, float inc_per_pixel); -/*/// #### nk_property_float -/// Float property directly modifying a passed in value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_property_float(struct nk_context *ctx, const char *name, float min, float *val, float max, float step, float inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Float pointer to be modified -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -*/ -NK_API void nk_property_float(struct nk_context*, const char *name, float min, float *val, float max, float step, float inc_per_pixel); -/*/// #### nk_property_double -/// Double property directly modifying a passed in value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// void nk_property_double(struct nk_context *ctx, const char *name, double min, double *val, double max, double step, double inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Double pointer to be modified -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -*/ -NK_API void nk_property_double(struct nk_context*, const char *name, double min, double *val, double max, double step, float inc_per_pixel); -/*/// #### nk_propertyi -/// Integer property modifying a passed in value and returning the new value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// int nk_propertyi(struct nk_context *ctx, const char *name, int min, int val, int max, int step, float inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Current integer value to be modified and returned -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -/// -/// Returns the new modified integer value -*/ -NK_API int nk_propertyi(struct nk_context*, const char *name, int min, int val, int max, int step, float inc_per_pixel); -/*/// #### nk_propertyf -/// Float property modifying a passed in value and returning the new value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// float nk_propertyf(struct nk_context *ctx, const char *name, float min, float val, float max, float step, float inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Current float value to be modified and returned -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -/// -/// Returns the new modified float value -*/ -NK_API float nk_propertyf(struct nk_context*, const char *name, float min, float val, float max, float step, float inc_per_pixel); -/*/// #### nk_propertyd -/// Float property modifying a passed in value and returning the new value -/// !!! WARNING -/// To generate a unique property ID using the same label make sure to insert -/// a `#` at the beginning. It will not be shown but guarantees correct behavior. -/// -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~c -/// float nk_propertyd(struct nk_context *ctx, const char *name, double min, double val, double max, double step, double inc_per_pixel); -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// -/// Parameter | Description -/// --------------------|----------------------------------------------------------- -/// __ctx__ | Must point to an previously initialized `nk_context` struct after calling a layouting function -/// __name__ | String used both as a label as well as a unique identifier -/// __min__ | Minimum value not allowed to be underflown -/// __val__ | Current double value to be modified and returned -/// __max__ | Maximum value not allowed to be overflown -/// __step__ | Increment added and subtracted on increment and decrement button -/// __inc_per_pixel__ | Value per pixel added or subtracted on dragging -/// -/// Returns the new modified double value -*/ -NK_API double nk_propertyd(struct nk_context*, const char *name, double min, double val, double max, double step, float inc_per_pixel); -/* ============================================================================= - * - * TEXT EDIT - * - * ============================================================================= */ -enum nk_edit_flags { - NK_EDIT_DEFAULT = 0, - NK_EDIT_READ_ONLY = NK_FLAG(0), - NK_EDIT_AUTO_SELECT = NK_FLAG(1), - NK_EDIT_SIG_ENTER = NK_FLAG(2), - NK_EDIT_ALLOW_TAB = NK_FLAG(3), - NK_EDIT_NO_CURSOR = NK_FLAG(4), - NK_EDIT_SELECTABLE = NK_FLAG(5), - NK_EDIT_CLIPBOARD = NK_FLAG(6), - NK_EDIT_CTRL_ENTER_NEWLINE = NK_FLAG(7), - NK_EDIT_NO_HORIZONTAL_SCROLL = NK_FLAG(8), - NK_EDIT_ALWAYS_INSERT_MODE = NK_FLAG(9), - NK_EDIT_MULTILINE = NK_FLAG(10), - NK_EDIT_GOTO_END_ON_ACTIVATE = NK_FLAG(11) -}; -enum nk_edit_types { - NK_EDIT_SIMPLE = NK_EDIT_ALWAYS_INSERT_MODE, - NK_EDIT_FIELD = NK_EDIT_SIMPLE|NK_EDIT_SELECTABLE|NK_EDIT_CLIPBOARD, - NK_EDIT_BOX = NK_EDIT_ALWAYS_INSERT_MODE| NK_EDIT_SELECTABLE| NK_EDIT_MULTILINE|NK_EDIT_ALLOW_TAB|NK_EDIT_CLIPBOARD, - NK_EDIT_EDITOR = NK_EDIT_SELECTABLE|NK_EDIT_MULTILINE|NK_EDIT_ALLOW_TAB| NK_EDIT_CLIPBOARD -}; -enum nk_edit_events { - NK_EDIT_ACTIVE = NK_FLAG(0), /* edit widget is currently being modified */ - NK_EDIT_INACTIVE = NK_FLAG(1), /* edit widget is not active and is not being modified */ - NK_EDIT_ACTIVATED = NK_FLAG(2), /* edit widget went from state inactive to state active */ - NK_EDIT_DEACTIVATED = NK_FLAG(3), /* edit widget went from state active to state inactive */ - NK_EDIT_COMMITED = NK_FLAG(4) /* edit widget has received an enter and lost focus */ -}; -NK_API nk_flags nk_edit_string(struct nk_context*, nk_flags, char *buffer, int *len, int max, nk_plugin_filter); -NK_API nk_flags nk_edit_string_zero_terminated(struct nk_context*, nk_flags, char *buffer, int max, nk_plugin_filter); -NK_API nk_flags nk_edit_buffer(struct nk_context*, nk_flags, struct nk_text_edit*, nk_plugin_filter); -NK_API void nk_edit_focus(struct nk_context*, nk_flags flags); -NK_API void nk_edit_unfocus(struct nk_context*); -/* ============================================================================= - * - * CHART - * - * ============================================================================= */ -NK_API nk_bool nk_chart_begin(struct nk_context*, enum nk_chart_type, int num, float min, float max); -NK_API nk_bool nk_chart_begin_colored(struct nk_context*, enum nk_chart_type, struct nk_color, struct nk_color active, int num, float min, float max); -NK_API void nk_chart_add_slot(struct nk_context *ctx, const enum nk_chart_type, int count, float min_value, float max_value); -NK_API void nk_chart_add_slot_colored(struct nk_context *ctx, const enum nk_chart_type, struct nk_color, struct nk_color active, int count, float min_value, float max_value); -NK_API nk_flags nk_chart_push(struct nk_context*, float); -NK_API nk_flags nk_chart_push_slot(struct nk_context*, float, int); -NK_API void nk_chart_end(struct nk_context*); -NK_API void nk_plot(struct nk_context*, enum nk_chart_type, const float *values, int count, int offset); -NK_API void nk_plot_function(struct nk_context*, enum nk_chart_type, void *userdata, float(*value_getter)(void* user, int index), int count, int offset); -/* ============================================================================= - * - * POPUP - * - * ============================================================================= */ -NK_API nk_bool nk_popup_begin(struct nk_context*, enum nk_popup_type, const char*, nk_flags, struct nk_rect bounds); -NK_API void nk_popup_close(struct nk_context*); -NK_API void nk_popup_end(struct nk_context*); -NK_API void nk_popup_get_scroll(struct nk_context*, nk_uint *offset_x, nk_uint *offset_y); -NK_API void nk_popup_set_scroll(struct nk_context*, nk_uint offset_x, nk_uint offset_y); -/* ============================================================================= - * - * COMBOBOX - * - * ============================================================================= */ -NK_API int nk_combo(struct nk_context*, const char **items, int count, int selected, int item_height, struct nk_vec2 size); -NK_API int nk_combo_separator(struct nk_context*, const char *items_separated_by_separator, int separator, int selected, int count, int item_height, struct nk_vec2 size); -NK_API int nk_combo_string(struct nk_context*, const char *items_separated_by_zeros, int selected, int count, int item_height, struct nk_vec2 size); -NK_API int nk_combo_callback(struct nk_context*, void(*item_getter)(void*, int, const char**), void *userdata, int selected, int count, int item_height, struct nk_vec2 size); -NK_API void nk_combobox(struct nk_context*, const char **items, int count, int *selected, int item_height, struct nk_vec2 size); -NK_API void nk_combobox_string(struct nk_context*, const char *items_separated_by_zeros, int *selected, int count, int item_height, struct nk_vec2 size); -NK_API void nk_combobox_separator(struct nk_context*, const char *items_separated_by_separator, int separator, int *selected, int count, int item_height, struct nk_vec2 size); -NK_API void nk_combobox_callback(struct nk_context*, void(*item_getter)(void*, int, const char**), void*, int *selected, int count, int item_height, struct nk_vec2 size); -/* ============================================================================= - * - * ABSTRACT COMBOBOX - * - * ============================================================================= */ -NK_API nk_bool nk_combo_begin_text(struct nk_context*, const char *selected, int, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_label(struct nk_context*, const char *selected, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_color(struct nk_context*, struct nk_color color, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_symbol(struct nk_context*, enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_symbol_label(struct nk_context*, const char *selected, enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_symbol_text(struct nk_context*, const char *selected, int, enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_image(struct nk_context*, struct nk_image img, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_image_label(struct nk_context*, const char *selected, struct nk_image, struct nk_vec2 size); -NK_API nk_bool nk_combo_begin_image_text(struct nk_context*, const char *selected, int, struct nk_image, struct nk_vec2 size); -NK_API nk_bool nk_combo_item_label(struct nk_context*, const char*, nk_flags alignment); -NK_API nk_bool nk_combo_item_text(struct nk_context*, const char*,int, nk_flags alignment); -NK_API nk_bool nk_combo_item_image_label(struct nk_context*, struct nk_image, const char*, nk_flags alignment); -NK_API nk_bool nk_combo_item_image_text(struct nk_context*, struct nk_image, const char*, int,nk_flags alignment); -NK_API nk_bool nk_combo_item_symbol_label(struct nk_context*, enum nk_symbol_type, const char*, nk_flags alignment); -NK_API nk_bool nk_combo_item_symbol_text(struct nk_context*, enum nk_symbol_type, const char*, int, nk_flags alignment); -NK_API void nk_combo_close(struct nk_context*); -NK_API void nk_combo_end(struct nk_context*); -/* ============================================================================= - * - * CONTEXTUAL - * - * ============================================================================= */ -NK_API nk_bool nk_contextual_begin(struct nk_context*, nk_flags, struct nk_vec2, struct nk_rect trigger_bounds); -NK_API nk_bool nk_contextual_item_text(struct nk_context*, const char*, int,nk_flags align); -NK_API nk_bool nk_contextual_item_label(struct nk_context*, const char*, nk_flags align); -NK_API nk_bool nk_contextual_item_image_label(struct nk_context*, struct nk_image, const char*, nk_flags alignment); -NK_API nk_bool nk_contextual_item_image_text(struct nk_context*, struct nk_image, const char*, int len, nk_flags alignment); -NK_API nk_bool nk_contextual_item_symbol_label(struct nk_context*, enum nk_symbol_type, const char*, nk_flags alignment); -NK_API nk_bool nk_contextual_item_symbol_text(struct nk_context*, enum nk_symbol_type, const char*, int, nk_flags alignment); -NK_API void nk_contextual_close(struct nk_context*); -NK_API void nk_contextual_end(struct nk_context*); -/* ============================================================================= - * - * TOOLTIP - * - * ============================================================================= */ -NK_API void nk_tooltip(struct nk_context*, const char*); -#ifdef NK_INCLUDE_STANDARD_VARARGS -NK_API void nk_tooltipf(struct nk_context*, NK_PRINTF_FORMAT_STRING const char*, ...) NK_PRINTF_VARARG_FUNC(2); -NK_API void nk_tooltipfv(struct nk_context*, NK_PRINTF_FORMAT_STRING const char*, va_list) NK_PRINTF_VALIST_FUNC(2); -#endif -NK_API nk_bool nk_tooltip_begin(struct nk_context*, float width); -NK_API void nk_tooltip_end(struct nk_context*); -/* ============================================================================= - * - * MENU - * - * ============================================================================= */ -NK_API void nk_menubar_begin(struct nk_context*); -NK_API void nk_menubar_end(struct nk_context*); -NK_API nk_bool nk_menu_begin_text(struct nk_context*, const char* title, int title_len, nk_flags align, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_label(struct nk_context*, const char*, nk_flags align, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_image(struct nk_context*, const char*, struct nk_image, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_image_text(struct nk_context*, const char*, int,nk_flags align,struct nk_image, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_image_label(struct nk_context*, const char*, nk_flags align,struct nk_image, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_symbol(struct nk_context*, const char*, enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_symbol_text(struct nk_context*, const char*, int,nk_flags align,enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_menu_begin_symbol_label(struct nk_context*, const char*, nk_flags align,enum nk_symbol_type, struct nk_vec2 size); -NK_API nk_bool nk_menu_item_text(struct nk_context*, const char*, int,nk_flags align); -NK_API nk_bool nk_menu_item_label(struct nk_context*, const char*, nk_flags alignment); -NK_API nk_bool nk_menu_item_image_label(struct nk_context*, struct nk_image, const char*, nk_flags alignment); -NK_API nk_bool nk_menu_item_image_text(struct nk_context*, struct nk_image, const char*, int len, nk_flags alignment); -NK_API nk_bool nk_menu_item_symbol_text(struct nk_context*, enum nk_symbol_type, const char*, int, nk_flags alignment); -NK_API nk_bool nk_menu_item_symbol_label(struct nk_context*, enum nk_symbol_type, const char*, nk_flags alignment); -NK_API void nk_menu_close(struct nk_context*); -NK_API void nk_menu_end(struct nk_context*); -/* ============================================================================= - * - * STYLE - * - * ============================================================================= */ - -#define NK_WIDGET_DISABLED_FACTOR 0.5f - -enum nk_style_colors { - NK_COLOR_TEXT, - NK_COLOR_WINDOW, - NK_COLOR_HEADER, - NK_COLOR_BORDER, - NK_COLOR_BUTTON, - NK_COLOR_BUTTON_HOVER, - NK_COLOR_BUTTON_ACTIVE, - NK_COLOR_TOGGLE, - NK_COLOR_TOGGLE_HOVER, - NK_COLOR_TOGGLE_CURSOR, - NK_COLOR_SELECT, - NK_COLOR_SELECT_ACTIVE, - NK_COLOR_SLIDER, - NK_COLOR_SLIDER_CURSOR, - NK_COLOR_SLIDER_CURSOR_HOVER, - NK_COLOR_SLIDER_CURSOR_ACTIVE, - NK_COLOR_PROPERTY, - NK_COLOR_EDIT, - NK_COLOR_EDIT_CURSOR, - NK_COLOR_COMBO, - NK_COLOR_CHART, - NK_COLOR_CHART_COLOR, - NK_COLOR_CHART_COLOR_HIGHLIGHT, - NK_COLOR_SCROLLBAR, - NK_COLOR_SCROLLBAR_CURSOR, - NK_COLOR_SCROLLBAR_CURSOR_HOVER, - NK_COLOR_SCROLLBAR_CURSOR_ACTIVE, - NK_COLOR_TAB_HEADER, - NK_COLOR_COUNT -}; -enum nk_style_cursor { - NK_CURSOR_ARROW, - NK_CURSOR_TEXT, - NK_CURSOR_MOVE, - NK_CURSOR_RESIZE_VERTICAL, - NK_CURSOR_RESIZE_HORIZONTAL, - NK_CURSOR_RESIZE_TOP_LEFT_DOWN_RIGHT, - NK_CURSOR_RESIZE_TOP_RIGHT_DOWN_LEFT, - NK_CURSOR_COUNT -}; -NK_API void nk_style_default(struct nk_context*); -NK_API void nk_style_from_table(struct nk_context*, const struct nk_color*); -NK_API void nk_style_load_cursor(struct nk_context*, enum nk_style_cursor, const struct nk_cursor*); -NK_API void nk_style_load_all_cursors(struct nk_context*, struct nk_cursor*); -NK_API const char* nk_style_get_color_by_name(enum nk_style_colors); -NK_API void nk_style_set_font(struct nk_context*, const struct nk_user_font*); -NK_API nk_bool nk_style_set_cursor(struct nk_context*, enum nk_style_cursor); -NK_API void nk_style_show_cursor(struct nk_context*); -NK_API void nk_style_hide_cursor(struct nk_context*); - -NK_API nk_bool nk_style_push_font(struct nk_context*, const struct nk_user_font*); -NK_API nk_bool nk_style_push_float(struct nk_context*, float*, float); -NK_API nk_bool nk_style_push_vec2(struct nk_context*, struct nk_vec2*, struct nk_vec2); -NK_API nk_bool nk_style_push_style_item(struct nk_context*, struct nk_style_item*, struct nk_style_item); -NK_API nk_bool nk_style_push_flags(struct nk_context*, nk_flags*, nk_flags); -NK_API nk_bool nk_style_push_color(struct nk_context*, struct nk_color*, struct nk_color); - -NK_API nk_bool nk_style_pop_font(struct nk_context*); -NK_API nk_bool nk_style_pop_float(struct nk_context*); -NK_API nk_bool nk_style_pop_vec2(struct nk_context*); -NK_API nk_bool nk_style_pop_style_item(struct nk_context*); -NK_API nk_bool nk_style_pop_flags(struct nk_context*); -NK_API nk_bool nk_style_pop_color(struct nk_context*); -/* ============================================================================= - * - * COLOR - * - * ============================================================================= */ -NK_API struct nk_color nk_rgb(int r, int g, int b); -NK_API struct nk_color nk_rgb_iv(const int *rgb); -NK_API struct nk_color nk_rgb_bv(const nk_byte* rgb); -NK_API struct nk_color nk_rgb_f(float r, float g, float b); -NK_API struct nk_color nk_rgb_fv(const float *rgb); -NK_API struct nk_color nk_rgb_cf(struct nk_colorf c); -NK_API struct nk_color nk_rgb_hex(const char *rgb); -NK_API struct nk_color nk_rgb_factor(struct nk_color col, const float factor); - -NK_API struct nk_color nk_rgba(int r, int g, int b, int a); -NK_API struct nk_color nk_rgba_u32(nk_uint); -NK_API struct nk_color nk_rgba_iv(const int *rgba); -NK_API struct nk_color nk_rgba_bv(const nk_byte *rgba); -NK_API struct nk_color nk_rgba_f(float r, float g, float b, float a); -NK_API struct nk_color nk_rgba_fv(const float *rgba); -NK_API struct nk_color nk_rgba_cf(struct nk_colorf c); -NK_API struct nk_color nk_rgba_hex(const char *rgb); - -NK_API struct nk_colorf nk_hsva_colorf(float h, float s, float v, float a); -NK_API struct nk_colorf nk_hsva_colorfv(float *c); -NK_API void nk_colorf_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_colorf in); -NK_API void nk_colorf_hsva_fv(float *hsva, struct nk_colorf in); - -NK_API struct nk_color nk_hsv(int h, int s, int v); -NK_API struct nk_color nk_hsv_iv(const int *hsv); -NK_API struct nk_color nk_hsv_bv(const nk_byte *hsv); -NK_API struct nk_color nk_hsv_f(float h, float s, float v); -NK_API struct nk_color nk_hsv_fv(const float *hsv); - -NK_API struct nk_color nk_hsva(int h, int s, int v, int a); -NK_API struct nk_color nk_hsva_iv(const int *hsva); -NK_API struct nk_color nk_hsva_bv(const nk_byte *hsva); -NK_API struct nk_color nk_hsva_f(float h, float s, float v, float a); -NK_API struct nk_color nk_hsva_fv(const float *hsva); - -/* color (conversion nuklear --> user) */ -NK_API void nk_color_f(float *r, float *g, float *b, float *a, struct nk_color); -NK_API void nk_color_fv(float *rgba_out, struct nk_color); -NK_API struct nk_colorf nk_color_cf(struct nk_color); -NK_API void nk_color_d(double *r, double *g, double *b, double *a, struct nk_color); -NK_API void nk_color_dv(double *rgba_out, struct nk_color); - -NK_API nk_uint nk_color_u32(struct nk_color); -NK_API void nk_color_hex_rgba(char *output, struct nk_color); -NK_API void nk_color_hex_rgb(char *output, struct nk_color); - -NK_API void nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color); -NK_API void nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color); -NK_API void nk_color_hsv_iv(int *hsv_out, struct nk_color); -NK_API void nk_color_hsv_bv(nk_byte *hsv_out, struct nk_color); -NK_API void nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color); -NK_API void nk_color_hsv_fv(float *hsv_out, struct nk_color); - -NK_API void nk_color_hsva_i(int *h, int *s, int *v, int *a, struct nk_color); -NK_API void nk_color_hsva_b(nk_byte *h, nk_byte *s, nk_byte *v, nk_byte *a, struct nk_color); -NK_API void nk_color_hsva_iv(int *hsva_out, struct nk_color); -NK_API void nk_color_hsva_bv(nk_byte *hsva_out, struct nk_color); -NK_API void nk_color_hsva_f(float *out_h, float *out_s, float *out_v, float *out_a, struct nk_color); -NK_API void nk_color_hsva_fv(float *hsva_out, struct nk_color); -/* ============================================================================= - * - * IMAGE - * - * ============================================================================= */ -NK_API nk_handle nk_handle_ptr(void*); -NK_API nk_handle nk_handle_id(int); -NK_API struct nk_image nk_image_handle(nk_handle); -NK_API struct nk_image nk_image_ptr(void*); -NK_API struct nk_image nk_image_id(int); -NK_API nk_bool nk_image_is_subimage(const struct nk_image* img); -NK_API struct nk_image nk_subimage_ptr(void*, nk_ushort w, nk_ushort h, struct nk_rect sub_region); -NK_API struct nk_image nk_subimage_id(int, nk_ushort w, nk_ushort h, struct nk_rect sub_region); -NK_API struct nk_image nk_subimage_handle(nk_handle, nk_ushort w, nk_ushort h, struct nk_rect sub_region); -/* ============================================================================= - * - * 9-SLICE - * - * ============================================================================= */ -NK_API struct nk_nine_slice nk_nine_slice_handle(nk_handle, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -NK_API struct nk_nine_slice nk_nine_slice_ptr(void*, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -NK_API struct nk_nine_slice nk_nine_slice_id(int, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -NK_API int nk_nine_slice_is_sub9slice(const struct nk_nine_slice* img); -NK_API struct nk_nine_slice nk_sub9slice_ptr(void*, nk_ushort w, nk_ushort h, struct nk_rect sub_region, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -NK_API struct nk_nine_slice nk_sub9slice_id(int, nk_ushort w, nk_ushort h, struct nk_rect sub_region, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -NK_API struct nk_nine_slice nk_sub9slice_handle(nk_handle, nk_ushort w, nk_ushort h, struct nk_rect sub_region, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b); -/* ============================================================================= - * - * MATH - * - * ============================================================================= */ -NK_API nk_hash nk_murmur_hash(const void *key, int len, nk_hash seed); -NK_API void nk_triangle_from_direction(struct nk_vec2 *result, struct nk_rect r, float pad_x, float pad_y, enum nk_heading); - -NK_API struct nk_vec2 nk_vec2(float x, float y); -NK_API struct nk_vec2 nk_vec2i(int x, int y); -NK_API struct nk_vec2 nk_vec2v(const float *xy); -NK_API struct nk_vec2 nk_vec2iv(const int *xy); - -NK_API struct nk_rect nk_get_null_rect(void); -NK_API struct nk_rect nk_rect(float x, float y, float w, float h); -NK_API struct nk_rect nk_recti(int x, int y, int w, int h); -NK_API struct nk_rect nk_recta(struct nk_vec2 pos, struct nk_vec2 size); -NK_API struct nk_rect nk_rectv(const float *xywh); -NK_API struct nk_rect nk_rectiv(const int *xywh); -NK_API struct nk_vec2 nk_rect_pos(struct nk_rect); -NK_API struct nk_vec2 nk_rect_size(struct nk_rect); -/* ============================================================================= - * - * STRING - * - * ============================================================================= */ -NK_API int nk_strlen(const char *str); -NK_API int nk_stricmp(const char *s1, const char *s2); -NK_API int nk_stricmpn(const char *s1, const char *s2, int n); -NK_API int nk_strtoi(const char *str, const char **endptr); -NK_API float nk_strtof(const char *str, const char **endptr); -#ifndef NK_STRTOD -#define NK_STRTOD nk_strtod -NK_API double nk_strtod(const char *str, const char **endptr); -#endif -NK_API int nk_strfilter(const char *text, const char *regexp); -NK_API int nk_strmatch_fuzzy_string(char const *str, char const *pattern, int *out_score); -NK_API int nk_strmatch_fuzzy_text(const char *txt, int txt_len, const char *pattern, int *out_score); -/* ============================================================================= - * - * UTF-8 - * - * ============================================================================= */ -NK_API int nk_utf_decode(const char*, nk_rune*, int); -NK_API int nk_utf_encode(nk_rune, char*, int); -NK_API int nk_utf_len(const char*, int byte_len); -NK_API const char* nk_utf_at(const char *buffer, int length, int index, nk_rune *unicode, int *len); -/* =============================================================== - * - * FONT - * - * ===============================================================*/ -/*/// ### Font -/// Font handling in this library was designed to be quite customizable and lets -/// you decide what you want to use and what you want to provide. There are three -/// different ways to use the font atlas. The first two will use your font -/// handling scheme and only requires essential data to run nuklear. The next -/// slightly more advanced features is font handling with vertex buffer output. -/// Finally the most complex API wise is using nuklear's font baking API. -// -/// #### Using your own implementation without vertex buffer output -/// -/// So first up the easiest way to do font handling is by just providing a -/// `nk_user_font` struct which only requires the height in pixel of the used -/// font and a callback to calculate the width of a string. This way of handling -/// fonts is best fitted for using the normal draw shape command API where you -/// do all the text drawing yourself and the library does not require any kind -/// of deeper knowledge about which font handling mechanism you use. -/// IMPORTANT: the `nk_user_font` pointer provided to nuklear has to persist -/// over the complete life time! I know this sucks but it is currently the only -/// way to switch between fonts. -/// -/// ```c -/// float your_text_width_calculation(nk_handle handle, float height, const char *text, int len) -/// { -/// your_font_type *type = handle.ptr; -/// float text_width = ...; -/// return text_width; -/// } -/// -/// struct nk_user_font font; -/// font.userdata.ptr = &your_font_class_or_struct; -/// font.height = your_font_height; -/// font.width = your_text_width_calculation; -/// -/// struct nk_context ctx; -/// nk_init_default(&ctx, &font); -/// ``` -/// #### Using your own implementation with vertex buffer output -/// -/// While the first approach works fine if you don't want to use the optional -/// vertex buffer output it is not enough if you do. To get font handling working -/// for these cases you have to provide two additional parameters inside the -/// `nk_user_font`. First a texture atlas handle used to draw text as subimages -/// of a bigger font atlas texture and a callback to query a character's glyph -/// information (offset, size, ...). So it is still possible to provide your own -/// font and use the vertex buffer output. -/// -/// ```c -/// float your_text_width_calculation(nk_handle handle, float height, const char *text, int len) -/// { -/// your_font_type *type = handle.ptr; -/// float text_width = ...; -/// return text_width; -/// } -/// void query_your_font_glyph(nk_handle handle, float font_height, struct nk_user_font_glyph *glyph, nk_rune codepoint, nk_rune next_codepoint) -/// { -/// your_font_type *type = handle.ptr; -/// glyph.width = ...; -/// glyph.height = ...; -/// glyph.xadvance = ...; -/// glyph.uv[0].x = ...; -/// glyph.uv[0].y = ...; -/// glyph.uv[1].x = ...; -/// glyph.uv[1].y = ...; -/// glyph.offset.x = ...; -/// glyph.offset.y = ...; -/// } -/// -/// struct nk_user_font font; -/// font.userdata.ptr = &your_font_class_or_struct; -/// font.height = your_font_height; -/// font.width = your_text_width_calculation; -/// font.query = query_your_font_glyph; -/// font.texture.id = your_font_texture; -/// -/// struct nk_context ctx; -/// nk_init_default(&ctx, &font); -/// ``` -/// -/// #### Nuklear font baker -/// -/// The final approach if you do not have a font handling functionality or don't -/// want to use it in this library is by using the optional font baker. -/// The font baker APIs can be used to create a font plus font atlas texture -/// and can be used with or without the vertex buffer output. -/// -/// It still uses the `nk_user_font` struct and the two different approaches -/// previously stated still work. The font baker is not located inside -/// `nk_context` like all other systems since it can be understood as more of -/// an extension to nuklear and does not really depend on any `nk_context` state. -/// -/// Font baker need to be initialized first by one of the nk_font_atlas_init_xxx -/// functions. If you don't care about memory just call the default version -/// `nk_font_atlas_init_default` which will allocate all memory from the standard library. -/// If you want to control memory allocation but you don't care if the allocated -/// memory is temporary and therefore can be freed directly after the baking process -/// is over or permanent you can call `nk_font_atlas_init`. -/// -/// After successfully initializing the font baker you can add Truetype(.ttf) fonts from -/// different sources like memory or from file by calling one of the `nk_font_atlas_add_xxx`. -/// functions. Adding font will permanently store each font, font config and ttf memory block(!) -/// inside the font atlas and allows to reuse the font atlas. If you don't want to reuse -/// the font baker by for example adding additional fonts you can call -/// `nk_font_atlas_cleanup` after the baking process is over (after calling nk_font_atlas_end). -/// -/// As soon as you added all fonts you wanted you can now start the baking process -/// for every selected glyph to image by calling `nk_font_atlas_bake`. -/// The baking process returns image memory, width and height which can be used to -/// either create your own image object or upload it to any graphics library. -/// No matter which case you finally have to call `nk_font_atlas_end` which -/// will free all temporary memory including the font atlas image so make sure -/// you created our texture beforehand. `nk_font_atlas_end` requires a handle -/// to your font texture or object and optionally fills a `struct nk_draw_null_texture` -/// which can be used for the optional vertex output. If you don't want it just -/// set the argument to `NULL`. -/// -/// At this point you are done and if you don't want to reuse the font atlas you -/// can call `nk_font_atlas_cleanup` to free all truetype blobs and configuration -/// memory. Finally if you don't use the font atlas and any of it's fonts anymore -/// you need to call `nk_font_atlas_clear` to free all memory still being used. -/// -/// ```c -/// struct nk_font_atlas atlas; -/// nk_font_atlas_init_default(&atlas); -/// nk_font_atlas_begin(&atlas); -/// nk_font *font = nk_font_atlas_add_from_file(&atlas, "Path/To/Your/TTF_Font.ttf", 13, 0); -/// nk_font *font2 = nk_font_atlas_add_from_file(&atlas, "Path/To/Your/TTF_Font2.ttf", 16, 0); -/// const void* img = nk_font_atlas_bake(&atlas, &img_width, &img_height, NK_FONT_ATLAS_RGBA32); -/// nk_font_atlas_end(&atlas, nk_handle_id(texture), 0); -/// -/// struct nk_context ctx; -/// nk_init_default(&ctx, &font->handle); -/// while (1) { -/// -/// } -/// nk_font_atlas_clear(&atlas); -/// ``` -/// The font baker API is probably the most complex API inside this library and -/// I would suggest reading some of my examples `example/` to get a grip on how -/// to use the font atlas. There are a number of details I left out. For example -/// how to merge fonts, configure a font with `nk_font_config` to use other languages, -/// use another texture coordinate format and a lot more: -/// -/// ```c -/// struct nk_font_config cfg = nk_font_config(font_pixel_height); -/// cfg.merge_mode = nk_false or nk_true; -/// cfg.range = nk_font_korean_glyph_ranges(); -/// cfg.coord_type = NK_COORD_PIXEL; -/// nk_font *font = nk_font_atlas_add_from_file(&atlas, "Path/To/Your/TTF_Font.ttf", 13, &cfg); -/// ``` -*/ -struct nk_user_font_glyph; -typedef float(*nk_text_width_f)(nk_handle, float h, const char*, int len); -typedef void(*nk_query_font_glyph_f)(nk_handle handle, float font_height, - struct nk_user_font_glyph *glyph, - nk_rune codepoint, nk_rune next_codepoint); - -#if defined(NK_INCLUDE_VERTEX_BUFFER_OUTPUT) || defined(NK_INCLUDE_SOFTWARE_FONT) -struct nk_user_font_glyph { - struct nk_vec2 uv[2]; - /* texture coordinates */ - struct nk_vec2 offset; - /* offset between top left and glyph */ - float width, height; - /* size of the glyph */ - float xadvance; - /* offset to the next glyph */ -}; -#endif - -struct nk_user_font { - nk_handle userdata; - /* user provided font handle */ - float height; - /* max height of the font */ - nk_text_width_f width; - /* font string width in pixel callback */ -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT - nk_query_font_glyph_f query; - /* font glyph callback to query drawing info */ - nk_handle texture; - /* texture handle to the used font atlas or texture */ -#endif -}; - -#ifdef NK_INCLUDE_FONT_BAKING -enum nk_font_coord_type { - NK_COORD_UV, /* texture coordinates inside font glyphs are clamped between 0-1 */ - NK_COORD_PIXEL /* texture coordinates inside font glyphs are in absolute pixel */ -}; - -struct nk_font; -struct nk_baked_font { - float height; - /* height of the font */ - float ascent, descent; - /* font glyphs ascent and descent */ - nk_rune glyph_offset; - /* glyph array offset inside the font glyph baking output array */ - nk_rune glyph_count; - /* number of glyphs of this font inside the glyph baking array output */ - const nk_rune *ranges; - /* font codepoint ranges as pairs of (from/to) and 0 as last element */ -}; - -struct nk_font_config { - struct nk_font_config *next; - /* NOTE: only used internally */ - void *ttf_blob; - /* pointer to loaded TTF file memory block. - * NOTE: not needed for nk_font_atlas_add_from_memory and nk_font_atlas_add_from_file. */ - nk_size ttf_size; - /* size of the loaded TTF file memory block - * NOTE: not needed for nk_font_atlas_add_from_memory and nk_font_atlas_add_from_file. */ - - unsigned char ttf_data_owned_by_atlas; - /* used inside font atlas: default to: 0*/ - unsigned char merge_mode; - /* merges this font into the last font */ - unsigned char pixel_snap; - /* align every character to pixel boundary (if true set oversample (1,1)) */ - unsigned char oversample_v, oversample_h; - /* rasterize at high quality for sub-pixel position */ - unsigned char padding[3]; - - float size; - /* baked pixel height of the font */ - enum nk_font_coord_type coord_type; - /* texture coordinate format with either pixel or UV coordinates */ - struct nk_vec2 spacing; - /* extra pixel spacing between glyphs */ - const nk_rune *range; - /* list of unicode ranges (2 values per range, zero terminated) */ - struct nk_baked_font *font; - /* font to setup in the baking process: NOTE: not needed for font atlas */ - nk_rune fallback_glyph; - /* fallback glyph to use if a given rune is not found */ - struct nk_font_config *n; - struct nk_font_config *p; -}; - -struct nk_font_glyph { - nk_rune codepoint; - float xadvance; - float x0, y0, x1, y1, w, h; - float u0, v0, u1, v1; -}; - -struct nk_font { - struct nk_font *next; - struct nk_user_font handle; - struct nk_baked_font info; - float scale; - struct nk_font_glyph *glyphs; - const struct nk_font_glyph *fallback; - nk_rune fallback_codepoint; - nk_handle texture; - struct nk_font_config *config; -}; - -enum nk_font_atlas_format { - NK_FONT_ATLAS_ALPHA8, - NK_FONT_ATLAS_RGBA32 -}; - -struct nk_font_atlas { - void *pixel; - int tex_width; - int tex_height; - - struct nk_allocator permanent; - struct nk_allocator temporary; - - struct nk_recti custom; - struct nk_cursor cursors[NK_CURSOR_COUNT]; - - int glyph_count; - struct nk_font_glyph *glyphs; - struct nk_font *default_font; - struct nk_font *fonts; - struct nk_font_config *config; - int font_num; -}; - -/* some language glyph codepoint ranges */ -NK_API const nk_rune *nk_font_default_glyph_ranges(void); -NK_API const nk_rune *nk_font_chinese_glyph_ranges(void); -NK_API const nk_rune *nk_font_cyrillic_glyph_ranges(void); -NK_API const nk_rune *nk_font_korean_glyph_ranges(void); - -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void nk_font_atlas_init_default(struct nk_font_atlas*); -#endif -NK_API void nk_font_atlas_init(struct nk_font_atlas*, struct nk_allocator*); -NK_API void nk_font_atlas_init_custom(struct nk_font_atlas*, struct nk_allocator *persistent, struct nk_allocator *transient); -NK_API void nk_font_atlas_begin(struct nk_font_atlas*); -NK_API struct nk_font_config nk_font_config(float pixel_height); -NK_API struct nk_font *nk_font_atlas_add(struct nk_font_atlas*, const struct nk_font_config*); -#ifdef NK_INCLUDE_DEFAULT_FONT -NK_API struct nk_font* nk_font_atlas_add_default(struct nk_font_atlas*, float height, const struct nk_font_config*); -#endif -NK_API struct nk_font* nk_font_atlas_add_from_memory(struct nk_font_atlas *atlas, void *memory, nk_size size, float height, const struct nk_font_config *config); -#ifdef NK_INCLUDE_STANDARD_IO -NK_API struct nk_font* nk_font_atlas_add_from_file(struct nk_font_atlas *atlas, const char *file_path, float height, const struct nk_font_config*); -#endif -NK_API struct nk_font *nk_font_atlas_add_compressed(struct nk_font_atlas*, void *memory, nk_size size, float height, const struct nk_font_config*); -NK_API struct nk_font* nk_font_atlas_add_compressed_base85(struct nk_font_atlas*, const char *data, float height, const struct nk_font_config *config); -NK_API const void* nk_font_atlas_bake(struct nk_font_atlas*, int *width, int *height, enum nk_font_atlas_format); -NK_API void nk_font_atlas_end(struct nk_font_atlas*, nk_handle tex, struct nk_draw_null_texture*); -NK_API const struct nk_font_glyph* nk_font_find_glyph(struct nk_font*, nk_rune unicode); -NK_API void nk_font_atlas_cleanup(struct nk_font_atlas *atlas); -NK_API void nk_font_atlas_clear(struct nk_font_atlas*); - -#endif - -/* ============================================================== - * - * MEMORY BUFFER - * - * ===============================================================*/ -/*/// ### Memory Buffer -/// A basic (double)-buffer with linear allocation and resetting as only -/// freeing policy. The buffer's main purpose is to control all memory management -/// inside the GUI toolkit and still leave memory control as much as possible in -/// the hand of the user while also making sure the library is easy to use if -/// not as much control is needed. -/// In general all memory inside this library can be provided from the user in -/// three different ways. -/// -/// The first way and the one providing most control is by just passing a fixed -/// size memory block. In this case all control lies in the hand of the user -/// since he can exactly control where the memory comes from and how much memory -/// the library should consume. Of course using the fixed size API removes the -/// ability to automatically resize a buffer if not enough memory is provided so -/// you have to take over the resizing. While being a fixed sized buffer sounds -/// quite limiting, it is very effective in this library since the actual memory -/// consumption is quite stable and has a fixed upper bound for a lot of cases. -/// -/// If you don't want to think about how much memory the library should allocate -/// at all time or have a very dynamic UI with unpredictable memory consumption -/// habits but still want control over memory allocation you can use the dynamic -/// allocator based API. The allocator consists of two callbacks for allocating -/// and freeing memory and optional userdata so you can plugin your own allocator. -/// -/// The final and easiest way can be used by defining -/// NK_INCLUDE_DEFAULT_ALLOCATOR which uses the standard library memory -/// allocation functions malloc and free and takes over complete control over -/// memory in this library. -*/ -struct nk_memory_status { - void *memory; - unsigned int type; - nk_size size; - nk_size allocated; - nk_size needed; - nk_size calls; -}; - -enum nk_allocation_type { - NK_BUFFER_FIXED, - NK_BUFFER_DYNAMIC -}; - -enum nk_buffer_allocation_type { - NK_BUFFER_FRONT, - NK_BUFFER_BACK, - NK_BUFFER_MAX -}; - -struct nk_buffer_marker { - nk_bool active; - nk_size offset; -}; - -struct nk_memory {void *ptr;nk_size size;}; -struct nk_buffer { - struct nk_buffer_marker marker[NK_BUFFER_MAX]; - /* buffer marker to free a buffer to a certain offset */ - struct nk_allocator pool; - /* allocator callback for dynamic buffers */ - enum nk_allocation_type type; - /* memory management type */ - struct nk_memory memory; - /* memory and size of the current memory block */ - float grow_factor; - /* growing factor for dynamic memory management */ - nk_size allocated; - /* total amount of memory allocated */ - nk_size needed; - /* totally consumed memory given that enough memory is present */ - nk_size calls; - /* number of allocation calls */ - nk_size size; - /* current size of the buffer */ -}; - -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void nk_buffer_init_default(struct nk_buffer*); -#endif -NK_API void nk_buffer_init(struct nk_buffer*, const struct nk_allocator*, nk_size size); -NK_API void nk_buffer_init_fixed(struct nk_buffer*, void *memory, nk_size size); -NK_API void nk_buffer_info(struct nk_memory_status*, struct nk_buffer*); -NK_API void nk_buffer_push(struct nk_buffer*, enum nk_buffer_allocation_type type, const void *memory, nk_size size, nk_size align); -NK_API void nk_buffer_mark(struct nk_buffer*, enum nk_buffer_allocation_type type); -NK_API void nk_buffer_reset(struct nk_buffer*, enum nk_buffer_allocation_type type); -NK_API void nk_buffer_clear(struct nk_buffer*); -NK_API void nk_buffer_free(struct nk_buffer*); -NK_API void *nk_buffer_memory(struct nk_buffer*); -NK_API const void *nk_buffer_memory_const(const struct nk_buffer*); -NK_API nk_size nk_buffer_total(struct nk_buffer*); - -/* ============================================================== - * - * STRING - * - * ===============================================================*/ -/* Basic string buffer which is only used in context with the text editor - * to manage and manipulate dynamic or fixed size string content. This is _NOT_ - * the default string handling method. The only instance you should have any contact - * with this API is if you interact with an `nk_text_edit` object inside one of the - * copy and paste functions and even there only for more advanced cases. */ -struct nk_str { - struct nk_buffer buffer; - int len; /* in codepoints/runes/glyphs */ -}; - -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void nk_str_init_default(struct nk_str*); -#endif -NK_API void nk_str_init(struct nk_str*, const struct nk_allocator*, nk_size size); -NK_API void nk_str_init_fixed(struct nk_str*, void *memory, nk_size size); -NK_API void nk_str_clear(struct nk_str*); -NK_API void nk_str_free(struct nk_str*); - -NK_API int nk_str_append_text_char(struct nk_str*, const char*, int); -NK_API int nk_str_append_str_char(struct nk_str*, const char*); -NK_API int nk_str_append_text_utf8(struct nk_str*, const char*, int); -NK_API int nk_str_append_str_utf8(struct nk_str*, const char*); -NK_API int nk_str_append_text_runes(struct nk_str*, const nk_rune*, int); -NK_API int nk_str_append_str_runes(struct nk_str*, const nk_rune*); - -NK_API int nk_str_insert_at_char(struct nk_str*, int pos, const char*, int); -NK_API int nk_str_insert_at_rune(struct nk_str*, int pos, const char*, int); - -NK_API int nk_str_insert_text_char(struct nk_str*, int pos, const char*, int); -NK_API int nk_str_insert_str_char(struct nk_str*, int pos, const char*); -NK_API int nk_str_insert_text_utf8(struct nk_str*, int pos, const char*, int); -NK_API int nk_str_insert_str_utf8(struct nk_str*, int pos, const char*); -NK_API int nk_str_insert_text_runes(struct nk_str*, int pos, const nk_rune*, int); -NK_API int nk_str_insert_str_runes(struct nk_str*, int pos, const nk_rune*); - -NK_API void nk_str_remove_chars(struct nk_str*, int len); -NK_API void nk_str_remove_runes(struct nk_str *str, int len); -NK_API void nk_str_delete_chars(struct nk_str*, int pos, int len); -NK_API void nk_str_delete_runes(struct nk_str*, int pos, int len); - -NK_API char *nk_str_at_char(struct nk_str*, int pos); -NK_API char *nk_str_at_rune(struct nk_str*, int pos, nk_rune *unicode, int *len); -NK_API nk_rune nk_str_rune_at(const struct nk_str*, int pos); -NK_API const char *nk_str_at_char_const(const struct nk_str*, int pos); -NK_API const char *nk_str_at_const(const struct nk_str*, int pos, nk_rune *unicode, int *len); - -NK_API char *nk_str_get(struct nk_str*); -NK_API const char *nk_str_get_const(const struct nk_str*); -NK_API int nk_str_len(struct nk_str*); -NK_API int nk_str_len_char(struct nk_str*); - -/*=============================================================== - * - * TEXT EDITOR - * - * ===============================================================*/ -/*/// ### Text Editor -/// Editing text in this library is handled by either `nk_edit_string` or -/// `nk_edit_buffer`. But like almost everything in this library there are multiple -/// ways of doing it and a balance between control and ease of use with memory -/// as well as functionality controlled by flags. -/// -/// This library generally allows three different levels of memory control: -/// First of is the most basic way of just providing a simple char array with -/// string length. This method is probably the easiest way of handling simple -/// user text input. Main upside is complete control over memory while the biggest -/// downside in comparison with the other two approaches is missing undo/redo. -/// -/// For UIs that require undo/redo the second way was created. It is based on -/// a fixed size nk_text_edit struct, which has an internal undo/redo stack. -/// This is mainly useful if you want something more like a text editor but don't want -/// to have a dynamically growing buffer. -/// -/// The final way is using a dynamically growing nk_text_edit struct, which -/// has both a default version if you don't care where memory comes from and an -/// allocator version if you do. While the text editor is quite powerful for its -/// complexity I would not recommend editing gigabytes of data with it. -/// It is rather designed for uses cases which make sense for a GUI library not for -/// an full blown text editor. - */ -#ifndef NK_TEXTEDIT_UNDOSTATECOUNT -#define NK_TEXTEDIT_UNDOSTATECOUNT 99 -#endif - -#ifndef NK_TEXTEDIT_UNDOCHARCOUNT -#define NK_TEXTEDIT_UNDOCHARCOUNT 999 -#endif - -struct nk_text_edit; -struct nk_clipboard { - nk_handle userdata; - nk_plugin_paste paste; - nk_plugin_copy copy; -}; - -struct nk_text_undo_record { - int where; - short insert_length; - short delete_length; - short char_storage; -}; - -struct nk_text_undo_state { - struct nk_text_undo_record undo_rec[NK_TEXTEDIT_UNDOSTATECOUNT]; - nk_rune undo_char[NK_TEXTEDIT_UNDOCHARCOUNT]; - short undo_point; - short redo_point; - short undo_char_point; - short redo_char_point; -}; - -enum nk_text_edit_type { - NK_TEXT_EDIT_SINGLE_LINE, - NK_TEXT_EDIT_MULTI_LINE -}; - -enum nk_text_edit_mode { - NK_TEXT_EDIT_MODE_VIEW, - NK_TEXT_EDIT_MODE_INSERT, - NK_TEXT_EDIT_MODE_REPLACE -}; - -struct nk_text_edit { - struct nk_clipboard clip; - struct nk_str string; - nk_plugin_filter filter; - struct nk_vec2 scrollbar; - - int cursor; - int select_start; - int select_end; - unsigned char mode; - unsigned char cursor_at_end_of_line; - unsigned char initialized; - unsigned char has_preferred_x; - unsigned char single_line; - unsigned char active; - unsigned char padding1; - float preferred_x; - struct nk_text_undo_state undo; -}; - -/* filter function */ -NK_API nk_bool nk_filter_default(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_ascii(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_float(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_decimal(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_hex(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_oct(const struct nk_text_edit*, nk_rune unicode); -NK_API nk_bool nk_filter_binary(const struct nk_text_edit*, nk_rune unicode); - -/* text editor */ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void nk_textedit_init_default(struct nk_text_edit*); -#endif -NK_API void nk_textedit_init(struct nk_text_edit*, struct nk_allocator*, nk_size size); -NK_API void nk_textedit_init_fixed(struct nk_text_edit*, void *memory, nk_size size); -NK_API void nk_textedit_free(struct nk_text_edit*); -NK_API void nk_textedit_text(struct nk_text_edit*, const char*, int total_len); -NK_API void nk_textedit_delete(struct nk_text_edit*, int where, int len); -NK_API void nk_textedit_delete_selection(struct nk_text_edit*); -NK_API void nk_textedit_select_all(struct nk_text_edit*); -NK_API nk_bool nk_textedit_cut(struct nk_text_edit*); -NK_API nk_bool nk_textedit_paste(struct nk_text_edit*, char const*, int len); -NK_API void nk_textedit_undo(struct nk_text_edit*); -NK_API void nk_textedit_redo(struct nk_text_edit*); - -/* =============================================================== - * - * DRAWING - * - * ===============================================================*/ -/*/// ### Drawing -/// This library was designed to be render backend agnostic so it does -/// not draw anything to screen. Instead all drawn shapes, widgets -/// are made of, are buffered into memory and make up a command queue. -/// Each frame therefore fills the command buffer with draw commands -/// that then need to be executed by the user and his own render backend. -/// After that the command buffer needs to be cleared and a new frame can be -/// started. It is probably important to note that the command buffer is the main -/// drawing API and the optional vertex buffer API only takes this format and -/// converts it into a hardware accessible format. -/// -/// To use the command queue to draw your own widgets you can access the -/// command buffer of each window by calling `nk_window_get_canvas` after -/// previously having called `nk_begin`: -/// -/// ```c -/// void draw_red_rectangle_widget(struct nk_context *ctx) -/// { -/// struct nk_command_buffer *canvas; -/// struct nk_input *input = &ctx->input; -/// canvas = nk_window_get_canvas(ctx); -/// -/// struct nk_rect space; -/// enum nk_widget_layout_states state; -/// state = nk_widget(&space, ctx); -/// if (!state) return; -/// -/// if (state != NK_WIDGET_ROM) -/// update_your_widget_by_user_input(...); -/// nk_fill_rect(canvas, space, 0, nk_rgb(255,0,0)); -/// } -/// -/// if (nk_begin(...)) { -/// nk_layout_row_dynamic(ctx, 25, 1); -/// draw_red_rectangle_widget(ctx); -/// } -/// nk_end(..) -/// -/// ``` -/// Important to know if you want to create your own widgets is the `nk_widget` -/// call. It allocates space on the panel reserved for this widget to be used, -/// but also returns the state of the widget space. If your widget is not seen and does -/// not have to be updated it is '0' and you can just return. If it only has -/// to be drawn the state will be `NK_WIDGET_ROM` otherwise you can do both -/// update and draw your widget. The reason for separating is to only draw and -/// update what is actually necessary which is crucial for performance. -*/ -enum nk_command_type { - NK_COMMAND_NOP, - NK_COMMAND_SCISSOR, - NK_COMMAND_LINE, - NK_COMMAND_CURVE, - NK_COMMAND_RECT, - NK_COMMAND_RECT_FILLED, - NK_COMMAND_RECT_MULTI_COLOR, - NK_COMMAND_CIRCLE, - NK_COMMAND_CIRCLE_FILLED, - NK_COMMAND_ARC, - NK_COMMAND_ARC_FILLED, - NK_COMMAND_TRIANGLE, - NK_COMMAND_TRIANGLE_FILLED, - NK_COMMAND_POLYGON, - NK_COMMAND_POLYGON_FILLED, - NK_COMMAND_POLYLINE, - NK_COMMAND_TEXT, - NK_COMMAND_IMAGE, - NK_COMMAND_CUSTOM -}; - -/* command base and header of every command inside the buffer */ -struct nk_command { - enum nk_command_type type; - nk_size next; -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_handle userdata; -#endif -}; - -struct nk_command_scissor { - struct nk_command header; - short x, y; - unsigned short w, h; -}; - -struct nk_command_line { - struct nk_command header; - unsigned short line_thickness; - struct nk_vec2i begin; - struct nk_vec2i end; - struct nk_color color; -}; - -struct nk_command_curve { - struct nk_command header; - unsigned short line_thickness; - struct nk_vec2i begin; - struct nk_vec2i end; - struct nk_vec2i ctrl[2]; - struct nk_color color; -}; - -struct nk_command_rect { - struct nk_command header; - unsigned short rounding; - unsigned short line_thickness; - short x, y; - unsigned short w, h; - struct nk_color color; -}; - -struct nk_command_rect_filled { - struct nk_command header; - unsigned short rounding; - short x, y; - unsigned short w, h; - struct nk_color color; -}; - -struct nk_command_rect_multi_color { - struct nk_command header; - short x, y; - unsigned short w, h; - struct nk_color left; - struct nk_color top; - struct nk_color bottom; - struct nk_color right; -}; - -struct nk_command_triangle { - struct nk_command header; - unsigned short line_thickness; - struct nk_vec2i a; - struct nk_vec2i b; - struct nk_vec2i c; - struct nk_color color; -}; - -struct nk_command_triangle_filled { - struct nk_command header; - struct nk_vec2i a; - struct nk_vec2i b; - struct nk_vec2i c; - struct nk_color color; -}; - -struct nk_command_circle { - struct nk_command header; - short x, y; - unsigned short line_thickness; - unsigned short w, h; - struct nk_color color; -}; - -struct nk_command_circle_filled { - struct nk_command header; - short x, y; - unsigned short w, h; - struct nk_color color; -}; - -struct nk_command_arc { - struct nk_command header; - short cx, cy; - unsigned short r; - unsigned short line_thickness; - float a[2]; - struct nk_color color; -}; - -struct nk_command_arc_filled { - struct nk_command header; - short cx, cy; - unsigned short r; - float a[2]; - struct nk_color color; -}; - -struct nk_command_polygon { - struct nk_command header; - struct nk_color color; - unsigned short line_thickness; - unsigned short point_count; - struct nk_vec2i points[1]; -}; - -struct nk_command_polygon_filled { - struct nk_command header; - struct nk_color color; - unsigned short point_count; - struct nk_vec2i points[1]; -}; - -struct nk_command_polyline { - struct nk_command header; - struct nk_color color; - unsigned short line_thickness; - unsigned short point_count; - struct nk_vec2i points[1]; -}; - -struct nk_command_image { - struct nk_command header; - short x, y; - unsigned short w, h; - struct nk_image img; - struct nk_color col; -}; - -typedef void (*nk_command_custom_callback)(void *canvas, short x,short y, - unsigned short w, unsigned short h, nk_handle callback_data); -struct nk_command_custom { - struct nk_command header; - short x, y; - unsigned short w, h; - nk_handle callback_data; - nk_command_custom_callback callback; -}; - -struct nk_command_text { - struct nk_command header; - const struct nk_user_font *font; - struct nk_color background; - struct nk_color foreground; - short x, y; - unsigned short w, h; - float height; - int length; - char string[1]; -}; - -enum nk_command_clipping { - NK_CLIPPING_OFF = nk_false, - NK_CLIPPING_ON = nk_true -}; - -struct nk_command_buffer { - struct nk_buffer *base; - struct nk_rect clip; - int use_clipping; - nk_handle userdata; - nk_size begin, end, last; -}; - -/* shape outlines */ -NK_API void nk_stroke_line(struct nk_command_buffer *b, float x0, float y0, float x1, float y1, float line_thickness, struct nk_color); -NK_API void nk_stroke_curve(struct nk_command_buffer*, float, float, float, float, float, float, float, float, float line_thickness, struct nk_color); -NK_API void nk_stroke_rect(struct nk_command_buffer*, struct nk_rect, float rounding, float line_thickness, struct nk_color); -NK_API void nk_stroke_circle(struct nk_command_buffer*, struct nk_rect, float line_thickness, struct nk_color); -NK_API void nk_stroke_arc(struct nk_command_buffer*, float cx, float cy, float radius, float a_min, float a_max, float line_thickness, struct nk_color); -NK_API void nk_stroke_triangle(struct nk_command_buffer*, float, float, float, float, float, float, float line_thichness, struct nk_color); -NK_API void nk_stroke_polyline(struct nk_command_buffer*, float *points, int point_count, float line_thickness, struct nk_color col); -NK_API void nk_stroke_polygon(struct nk_command_buffer*, float*, int point_count, float line_thickness, struct nk_color); - -/* filled shades */ -NK_API void nk_fill_rect(struct nk_command_buffer*, struct nk_rect, float rounding, struct nk_color); -NK_API void nk_fill_rect_multi_color(struct nk_command_buffer*, struct nk_rect, struct nk_color left, struct nk_color top, struct nk_color right, struct nk_color bottom); -NK_API void nk_fill_circle(struct nk_command_buffer*, struct nk_rect, struct nk_color); -NK_API void nk_fill_arc(struct nk_command_buffer*, float cx, float cy, float radius, float a_min, float a_max, struct nk_color); -NK_API void nk_fill_triangle(struct nk_command_buffer*, float x0, float y0, float x1, float y1, float x2, float y2, struct nk_color); -NK_API void nk_fill_polygon(struct nk_command_buffer*, float*, int point_count, struct nk_color); - -/* misc */ -NK_API void nk_draw_image(struct nk_command_buffer*, struct nk_rect, const struct nk_image*, struct nk_color); -NK_API void nk_draw_nine_slice(struct nk_command_buffer*, struct nk_rect, const struct nk_nine_slice*, struct nk_color); -NK_API void nk_draw_text(struct nk_command_buffer*, struct nk_rect, const char *text, int len, const struct nk_user_font*, struct nk_color, struct nk_color); -NK_API void nk_push_scissor(struct nk_command_buffer*, struct nk_rect); -NK_API void nk_push_custom(struct nk_command_buffer*, struct nk_rect, nk_command_custom_callback, nk_handle usr); - -/* =============================================================== - * - * INPUT - * - * ===============================================================*/ -struct nk_mouse_button { - nk_bool down; - unsigned int clicked; - struct nk_vec2 clicked_pos; -}; -struct nk_mouse { - struct nk_mouse_button buttons[NK_BUTTON_MAX]; - struct nk_vec2 pos; -#ifdef NK_BUTTON_TRIGGER_ON_RELEASE - struct nk_vec2 down_pos; -#endif - struct nk_vec2 prev; - struct nk_vec2 delta; - struct nk_vec2 scroll_delta; - unsigned char grab; - unsigned char grabbed; - unsigned char ungrab; -}; - -struct nk_key { - nk_bool down; - unsigned int clicked; -}; -struct nk_keyboard { - struct nk_key keys[NK_KEY_MAX]; - char text[NK_INPUT_MAX]; - int text_len; -}; - -struct nk_input { - struct nk_keyboard keyboard; - struct nk_mouse mouse; -}; - -NK_API nk_bool nk_input_has_mouse_click(const struct nk_input*, enum nk_buttons); -NK_API nk_bool nk_input_has_mouse_click_in_rect(const struct nk_input*, enum nk_buttons, struct nk_rect); -NK_API nk_bool nk_input_has_mouse_click_in_button_rect(const struct nk_input*, enum nk_buttons, struct nk_rect); -NK_API nk_bool nk_input_has_mouse_click_down_in_rect(const struct nk_input*, enum nk_buttons, struct nk_rect, nk_bool down); -NK_API nk_bool nk_input_is_mouse_click_in_rect(const struct nk_input*, enum nk_buttons, struct nk_rect); -NK_API nk_bool nk_input_is_mouse_click_down_in_rect(const struct nk_input *i, enum nk_buttons id, struct nk_rect b, nk_bool down); -NK_API nk_bool nk_input_any_mouse_click_in_rect(const struct nk_input*, struct nk_rect); -NK_API nk_bool nk_input_is_mouse_prev_hovering_rect(const struct nk_input*, struct nk_rect); -NK_API nk_bool nk_input_is_mouse_hovering_rect(const struct nk_input*, struct nk_rect); -NK_API nk_bool nk_input_mouse_clicked(const struct nk_input*, enum nk_buttons, struct nk_rect); -NK_API nk_bool nk_input_is_mouse_down(const struct nk_input*, enum nk_buttons); -NK_API nk_bool nk_input_is_mouse_pressed(const struct nk_input*, enum nk_buttons); -NK_API nk_bool nk_input_is_mouse_released(const struct nk_input*, enum nk_buttons); -NK_API nk_bool nk_input_is_key_pressed(const struct nk_input*, enum nk_keys); -NK_API nk_bool nk_input_is_key_released(const struct nk_input*, enum nk_keys); -NK_API nk_bool nk_input_is_key_down(const struct nk_input*, enum nk_keys); - -/* =============================================================== - * - * DRAW LIST - * - * ===============================================================*/ -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT -/* ### Draw List -/// The optional vertex buffer draw list provides a 2D drawing context -/// with antialiasing functionality which takes basic filled or outlined shapes -/// or a path and outputs vertexes, elements and draw commands. -/// The actual draw list API is not required to be used directly while using this -/// library since converting the default library draw command output is done by -/// just calling `nk_convert` but I decided to still make this library accessible -/// since it can be useful. -/// -/// The draw list is based on a path buffering and polygon and polyline -/// rendering API which allows a lot of ways to draw 2D content to screen. -/// In fact it is probably more powerful than needed but allows even more crazy -/// things than this library provides by default. -*/ -#ifdef NK_UINT_DRAW_INDEX -typedef nk_uint nk_draw_index; -#else -typedef nk_ushort nk_draw_index; -#endif -enum nk_draw_list_stroke { - NK_STROKE_OPEN = nk_false, - /* build up path has no connection back to the beginning */ - NK_STROKE_CLOSED = nk_true - /* build up path has a connection back to the beginning */ -}; - -enum nk_draw_vertex_layout_attribute { - NK_VERTEX_POSITION, - NK_VERTEX_COLOR, - NK_VERTEX_TEXCOORD, - NK_VERTEX_ATTRIBUTE_COUNT -}; - -enum nk_draw_vertex_layout_format { - NK_FORMAT_SCHAR, - NK_FORMAT_SSHORT, - NK_FORMAT_SINT, - NK_FORMAT_UCHAR, - NK_FORMAT_USHORT, - NK_FORMAT_UINT, - NK_FORMAT_FLOAT, - NK_FORMAT_DOUBLE, - -NK_FORMAT_COLOR_BEGIN, - NK_FORMAT_R8G8B8 = NK_FORMAT_COLOR_BEGIN, - NK_FORMAT_R16G15B16, - NK_FORMAT_R32G32B32, - - NK_FORMAT_R8G8B8A8, - NK_FORMAT_B8G8R8A8, - NK_FORMAT_R16G15B16A16, - NK_FORMAT_R32G32B32A32, - NK_FORMAT_R32G32B32A32_FLOAT, - NK_FORMAT_R32G32B32A32_DOUBLE, - - NK_FORMAT_RGB32, - NK_FORMAT_RGBA32, -NK_FORMAT_COLOR_END = NK_FORMAT_RGBA32, - NK_FORMAT_COUNT -}; - -#define NK_VERTEX_LAYOUT_END NK_VERTEX_ATTRIBUTE_COUNT,NK_FORMAT_COUNT,0 -struct nk_draw_vertex_layout_element { - enum nk_draw_vertex_layout_attribute attribute; - enum nk_draw_vertex_layout_format format; - nk_size offset; -}; - -struct nk_draw_command { - unsigned int elem_count; - /* number of elements in the current draw batch */ - struct nk_rect clip_rect; - /* current screen clipping rectangle */ - nk_handle texture; - /* current texture to set */ -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_handle userdata; -#endif -}; - -struct nk_draw_list { - struct nk_rect clip_rect; - struct nk_vec2 circle_vtx[12]; - struct nk_convert_config config; - - struct nk_buffer *buffer; - struct nk_buffer *vertices; - struct nk_buffer *elements; - - unsigned int element_count; - unsigned int vertex_count; - unsigned int cmd_count; - nk_size cmd_offset; - - unsigned int path_count; - unsigned int path_offset; - - enum nk_anti_aliasing line_AA; - enum nk_anti_aliasing shape_AA; - -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_handle userdata; -#endif -}; - -/* draw list */ -NK_API void nk_draw_list_init(struct nk_draw_list*); -NK_API void nk_draw_list_setup(struct nk_draw_list*, const struct nk_convert_config*, struct nk_buffer *cmds, struct nk_buffer *vertices, struct nk_buffer *elements, enum nk_anti_aliasing line_aa,enum nk_anti_aliasing shape_aa); - -/* drawing */ -#define nk_draw_list_foreach(cmd, can, b) for((cmd)=nk__draw_list_begin(can, b); (cmd)!=0; (cmd)=nk__draw_list_next(cmd, b, can)) -NK_API const struct nk_draw_command* nk__draw_list_begin(const struct nk_draw_list*, const struct nk_buffer*); -NK_API const struct nk_draw_command* nk__draw_list_next(const struct nk_draw_command*, const struct nk_buffer*, const struct nk_draw_list*); -NK_API const struct nk_draw_command* nk__draw_list_end(const struct nk_draw_list*, const struct nk_buffer*); - -/* path */ -NK_API void nk_draw_list_path_clear(struct nk_draw_list*); -NK_API void nk_draw_list_path_line_to(struct nk_draw_list*, struct nk_vec2 pos); -NK_API void nk_draw_list_path_arc_to_fast(struct nk_draw_list*, struct nk_vec2 center, float radius, int a_min, int a_max); -NK_API void nk_draw_list_path_arc_to(struct nk_draw_list*, struct nk_vec2 center, float radius, float a_min, float a_max, unsigned int segments); -NK_API void nk_draw_list_path_rect_to(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, float rounding); -NK_API void nk_draw_list_path_curve_to(struct nk_draw_list*, struct nk_vec2 p2, struct nk_vec2 p3, struct nk_vec2 p4, unsigned int num_segments); -NK_API void nk_draw_list_path_fill(struct nk_draw_list*, struct nk_color); -NK_API void nk_draw_list_path_stroke(struct nk_draw_list*, struct nk_color, enum nk_draw_list_stroke closed, float thickness); - -/* stroke */ -NK_API void nk_draw_list_stroke_line(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, struct nk_color, float thickness); -NK_API void nk_draw_list_stroke_rect(struct nk_draw_list*, struct nk_rect rect, struct nk_color, float rounding, float thickness); -NK_API void nk_draw_list_stroke_triangle(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, struct nk_vec2 c, struct nk_color, float thickness); -NK_API void nk_draw_list_stroke_circle(struct nk_draw_list*, struct nk_vec2 center, float radius, struct nk_color, unsigned int segs, float thickness); -NK_API void nk_draw_list_stroke_curve(struct nk_draw_list*, struct nk_vec2 p0, struct nk_vec2 cp0, struct nk_vec2 cp1, struct nk_vec2 p1, struct nk_color, unsigned int segments, float thickness); -NK_API void nk_draw_list_stroke_poly_line(struct nk_draw_list*, const struct nk_vec2 *pnts, const unsigned int cnt, struct nk_color, enum nk_draw_list_stroke, float thickness, enum nk_anti_aliasing); - -/* fill */ -NK_API void nk_draw_list_fill_rect(struct nk_draw_list*, struct nk_rect rect, struct nk_color, float rounding); -NK_API void nk_draw_list_fill_rect_multi_color(struct nk_draw_list*, struct nk_rect rect, struct nk_color left, struct nk_color top, struct nk_color right, struct nk_color bottom); -NK_API void nk_draw_list_fill_triangle(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, struct nk_vec2 c, struct nk_color); -NK_API void nk_draw_list_fill_circle(struct nk_draw_list*, struct nk_vec2 center, float radius, struct nk_color col, unsigned int segs); -NK_API void nk_draw_list_fill_poly_convex(struct nk_draw_list*, const struct nk_vec2 *points, const unsigned int count, struct nk_color, enum nk_anti_aliasing); - -/* misc */ -NK_API void nk_draw_list_add_image(struct nk_draw_list*, struct nk_image texture, struct nk_rect rect, struct nk_color); -NK_API void nk_draw_list_add_text(struct nk_draw_list*, const struct nk_user_font*, struct nk_rect, const char *text, int len, float font_height, struct nk_color); -#ifdef NK_INCLUDE_COMMAND_USERDATA -NK_API void nk_draw_list_push_userdata(struct nk_draw_list*, nk_handle userdata); -#endif - -#endif - -/* =============================================================== - * - * GUI - * - * ===============================================================*/ -enum nk_style_item_type { - NK_STYLE_ITEM_COLOR, - NK_STYLE_ITEM_IMAGE, - NK_STYLE_ITEM_NINE_SLICE -}; - -union nk_style_item_data { - struct nk_color color; - struct nk_image image; - struct nk_nine_slice slice; -}; - -struct nk_style_item { - enum nk_style_item_type type; - union nk_style_item_data data; -}; - -struct nk_style_text { - struct nk_color color; - struct nk_vec2 padding; - float color_factor; - float disabled_factor; -}; - -struct nk_style_button { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - float color_factor_background; - - /* text */ - struct nk_color text_background; - struct nk_color text_normal; - struct nk_color text_hover; - struct nk_color text_active; - nk_flags text_alignment; - float color_factor_text; - - /* properties */ - float border; - float rounding; - struct nk_vec2 padding; - struct nk_vec2 image_padding; - struct nk_vec2 touch_padding; - float disabled_factor; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle userdata); - void(*draw_end)(struct nk_command_buffer*, nk_handle userdata); -}; - -struct nk_style_toggle { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* cursor */ - struct nk_style_item cursor_normal; - struct nk_style_item cursor_hover; - - /* text */ - struct nk_color text_normal; - struct nk_color text_hover; - struct nk_color text_active; - struct nk_color text_background; - nk_flags text_alignment; - - /* properties */ - struct nk_vec2 padding; - struct nk_vec2 touch_padding; - float spacing; - float border; - float color_factor; - float disabled_factor; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_selectable { - /* background (inactive) */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item pressed; - - /* background (active) */ - struct nk_style_item normal_active; - struct nk_style_item hover_active; - struct nk_style_item pressed_active; - - /* text color (inactive) */ - struct nk_color text_normal; - struct nk_color text_hover; - struct nk_color text_pressed; - - /* text color (active) */ - struct nk_color text_normal_active; - struct nk_color text_hover_active; - struct nk_color text_pressed_active; - struct nk_color text_background; - nk_flags text_alignment; - - /* properties */ - float rounding; - struct nk_vec2 padding; - struct nk_vec2 touch_padding; - struct nk_vec2 image_padding; - float color_factor; - float disabled_factor; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_slider { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* background bar */ - struct nk_color bar_normal; - struct nk_color bar_hover; - struct nk_color bar_active; - struct nk_color bar_filled; - - /* cursor */ - struct nk_style_item cursor_normal; - struct nk_style_item cursor_hover; - struct nk_style_item cursor_active; - - /* properties */ - float border; - float rounding; - float bar_height; - struct nk_vec2 padding; - struct nk_vec2 spacing; - struct nk_vec2 cursor_size; - float color_factor; - float disabled_factor; - - /* optional buttons */ - int show_buttons; - struct nk_style_button inc_button; - struct nk_style_button dec_button; - enum nk_symbol_type inc_symbol; - enum nk_symbol_type dec_symbol; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_progress { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* cursor */ - struct nk_style_item cursor_normal; - struct nk_style_item cursor_hover; - struct nk_style_item cursor_active; - struct nk_color cursor_border_color; - - /* properties */ - float rounding; - float border; - float cursor_border; - float cursor_rounding; - struct nk_vec2 padding; - float color_factor; - float disabled_factor; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_scrollbar { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* cursor */ - struct nk_style_item cursor_normal; - struct nk_style_item cursor_hover; - struct nk_style_item cursor_active; - struct nk_color cursor_border_color; - - /* properties */ - float border; - float rounding; - float border_cursor; - float rounding_cursor; - struct nk_vec2 padding; - float color_factor; - float disabled_factor; - - /* optional buttons */ - int show_buttons; - struct nk_style_button inc_button; - struct nk_style_button dec_button; - enum nk_symbol_type inc_symbol; - enum nk_symbol_type dec_symbol; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_edit { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - struct nk_style_scrollbar scrollbar; - - /* cursor */ - struct nk_color cursor_normal; - struct nk_color cursor_hover; - struct nk_color cursor_text_normal; - struct nk_color cursor_text_hover; - - /* text (unselected) */ - struct nk_color text_normal; - struct nk_color text_hover; - struct nk_color text_active; - - /* text (selected) */ - struct nk_color selected_normal; - struct nk_color selected_hover; - struct nk_color selected_text_normal; - struct nk_color selected_text_hover; - - /* properties */ - float border; - float rounding; - float cursor_size; - struct nk_vec2 scrollbar_size; - struct nk_vec2 padding; - float row_padding; - float color_factor; - float disabled_factor; -}; - -struct nk_style_property { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* text */ - struct nk_color label_normal; - struct nk_color label_hover; - struct nk_color label_active; - - /* symbols */ - enum nk_symbol_type sym_left; - enum nk_symbol_type sym_right; - - /* properties */ - float border; - float rounding; - struct nk_vec2 padding; - float color_factor; - float disabled_factor; - - struct nk_style_edit edit; - struct nk_style_button inc_button; - struct nk_style_button dec_button; - - /* optional user callbacks */ - nk_handle userdata; - void(*draw_begin)(struct nk_command_buffer*, nk_handle); - void(*draw_end)(struct nk_command_buffer*, nk_handle); -}; - -struct nk_style_chart { - /* colors */ - struct nk_style_item background; - struct nk_color border_color; - struct nk_color selected_color; - struct nk_color color; - - /* properties */ - float border; - float rounding; - struct nk_vec2 padding; - float color_factor; - float disabled_factor; -}; - -struct nk_style_combo { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - struct nk_color border_color; - - /* label */ - struct nk_color label_normal; - struct nk_color label_hover; - struct nk_color label_active; - - /* symbol */ - struct nk_color symbol_normal; - struct nk_color symbol_hover; - struct nk_color symbol_active; - - /* button */ - struct nk_style_button button; - enum nk_symbol_type sym_normal; - enum nk_symbol_type sym_hover; - enum nk_symbol_type sym_active; - - /* properties */ - float border; - float rounding; - struct nk_vec2 content_padding; - struct nk_vec2 button_padding; - struct nk_vec2 spacing; - float color_factor; - float disabled_factor; -}; - -struct nk_style_tab { - /* background */ - struct nk_style_item background; - struct nk_color border_color; - struct nk_color text; - - /* button */ - struct nk_style_button tab_maximize_button; - struct nk_style_button tab_minimize_button; - struct nk_style_button node_maximize_button; - struct nk_style_button node_minimize_button; - enum nk_symbol_type sym_minimize; - enum nk_symbol_type sym_maximize; - - /* properties */ - float border; - float rounding; - float indent; - struct nk_vec2 padding; - struct nk_vec2 spacing; - float color_factor; - float disabled_factor; -}; - -enum nk_style_header_align { - NK_HEADER_LEFT, - NK_HEADER_RIGHT -}; -struct nk_style_window_header { - /* background */ - struct nk_style_item normal; - struct nk_style_item hover; - struct nk_style_item active; - - /* button */ - struct nk_style_button close_button; - struct nk_style_button minimize_button; - enum nk_symbol_type close_symbol; - enum nk_symbol_type minimize_symbol; - enum nk_symbol_type maximize_symbol; - - /* title */ - struct nk_color label_normal; - struct nk_color label_hover; - struct nk_color label_active; - - /* properties */ - enum nk_style_header_align align; - struct nk_vec2 padding; - struct nk_vec2 label_padding; - struct nk_vec2 spacing; -}; - -struct nk_style_window { - struct nk_style_window_header header; - struct nk_style_item fixed_background; - struct nk_color background; - - struct nk_color border_color; - struct nk_color popup_border_color; - struct nk_color combo_border_color; - struct nk_color contextual_border_color; - struct nk_color menu_border_color; - struct nk_color group_border_color; - struct nk_color tooltip_border_color; - struct nk_style_item scaler; - - float border; - float combo_border; - float contextual_border; - float menu_border; - float group_border; - float tooltip_border; - float popup_border; - float min_row_height_padding; - - float rounding; - struct nk_vec2 spacing; - struct nk_vec2 scrollbar_size; - struct nk_vec2 min_size; - - struct nk_vec2 padding; - struct nk_vec2 group_padding; - struct nk_vec2 popup_padding; - struct nk_vec2 combo_padding; - struct nk_vec2 contextual_padding; - struct nk_vec2 menu_padding; - struct nk_vec2 tooltip_padding; -}; - -struct nk_style { - const struct nk_user_font *font; - const struct nk_cursor *cursors[NK_CURSOR_COUNT]; - const struct nk_cursor *cursor_active; - struct nk_cursor *cursor_last; - int cursor_visible; - - struct nk_style_text text; - struct nk_style_button button; - struct nk_style_button contextual_button; - struct nk_style_button menu_button; - struct nk_style_toggle option; - struct nk_style_toggle checkbox; - struct nk_style_selectable selectable; - struct nk_style_slider slider; - struct nk_style_progress progress; - struct nk_style_property property; - struct nk_style_edit edit; - struct nk_style_chart chart; - struct nk_style_scrollbar scrollh; - struct nk_style_scrollbar scrollv; - struct nk_style_tab tab; - struct nk_style_combo combo; - struct nk_style_window window; -}; - -NK_API struct nk_style_item nk_style_item_color(struct nk_color); -NK_API struct nk_style_item nk_style_item_image(struct nk_image img); -NK_API struct nk_style_item nk_style_item_nine_slice(struct nk_nine_slice slice); -NK_API struct nk_style_item nk_style_item_hide(void); - -/*============================================================== - * PANEL - * =============================================================*/ -#ifndef NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS -#define NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS 16 -#endif -#ifndef NK_CHART_MAX_SLOT -#define NK_CHART_MAX_SLOT 4 -#endif - -enum nk_panel_type { - NK_PANEL_NONE = 0, - NK_PANEL_WINDOW = NK_FLAG(0), - NK_PANEL_GROUP = NK_FLAG(1), - NK_PANEL_POPUP = NK_FLAG(2), - NK_PANEL_CONTEXTUAL = NK_FLAG(4), - NK_PANEL_COMBO = NK_FLAG(5), - NK_PANEL_MENU = NK_FLAG(6), - NK_PANEL_TOOLTIP = NK_FLAG(7) -}; -enum nk_panel_set { - NK_PANEL_SET_NONBLOCK = NK_PANEL_CONTEXTUAL|NK_PANEL_COMBO|NK_PANEL_MENU|NK_PANEL_TOOLTIP, - NK_PANEL_SET_POPUP = NK_PANEL_SET_NONBLOCK|NK_PANEL_POPUP, - NK_PANEL_SET_SUB = NK_PANEL_SET_POPUP|NK_PANEL_GROUP -}; - -struct nk_chart_slot { - enum nk_chart_type type; - struct nk_color color; - struct nk_color highlight; - float min, max, range; - int count; - struct nk_vec2 last; - int index; -}; - -struct nk_chart { - int slot; - float x, y, w, h; - struct nk_chart_slot slots[NK_CHART_MAX_SLOT]; -}; - -enum nk_panel_row_layout_type { - NK_LAYOUT_DYNAMIC_FIXED = 0, - NK_LAYOUT_DYNAMIC_ROW, - NK_LAYOUT_DYNAMIC_FREE, - NK_LAYOUT_DYNAMIC, - NK_LAYOUT_STATIC_FIXED, - NK_LAYOUT_STATIC_ROW, - NK_LAYOUT_STATIC_FREE, - NK_LAYOUT_STATIC, - NK_LAYOUT_TEMPLATE, - NK_LAYOUT_COUNT -}; -struct nk_row_layout { - enum nk_panel_row_layout_type type; - int index; - float height; - float min_height; - int columns; - const float *ratio; - float item_width; - float item_height; - float item_offset; - float filled; - struct nk_rect item; - int tree_depth; - float templates[NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS]; -}; - -struct nk_popup_buffer { - nk_size begin; - nk_size parent; - nk_size last; - nk_size end; - nk_bool active; -}; - -struct nk_menu_state { - float x, y, w, h; - struct nk_scroll offset; -}; - -struct nk_panel { - enum nk_panel_type type; - nk_flags flags; - struct nk_rect bounds; - nk_uint *offset_x; - nk_uint *offset_y; - float at_x, at_y, max_x; - float footer_height; - float header_height; - float border; - unsigned int has_scrolling; - struct nk_rect clip; - struct nk_menu_state menu; - struct nk_row_layout row; - struct nk_chart chart; - struct nk_command_buffer *buffer; - struct nk_panel *parent; -}; - -/*============================================================== - * WINDOW - * =============================================================*/ -#ifndef NK_WINDOW_MAX_NAME -#define NK_WINDOW_MAX_NAME 64 -#endif - -struct nk_table; -enum nk_window_flags { - NK_WINDOW_PRIVATE = NK_FLAG(11), - NK_WINDOW_DYNAMIC = NK_WINDOW_PRIVATE, - /* special window type growing up in height while being filled to a certain maximum height */ - NK_WINDOW_ROM = NK_FLAG(12), - /* sets window widgets into a read only mode and does not allow input changes */ - NK_WINDOW_NOT_INTERACTIVE = NK_WINDOW_ROM|NK_WINDOW_NO_INPUT, - /* prevents all interaction caused by input to either window or widgets inside */ - NK_WINDOW_HIDDEN = NK_FLAG(13), - /* Hides window and stops any window interaction and drawing */ - NK_WINDOW_CLOSED = NK_FLAG(14), - /* Directly closes and frees the window at the end of the frame */ - NK_WINDOW_MINIMIZED = NK_FLAG(15), - /* marks the window as minimized */ - NK_WINDOW_REMOVE_ROM = NK_FLAG(16) - /* Removes read only mode at the end of the window */ -}; - -struct nk_popup_state { - struct nk_window *win; - enum nk_panel_type type; - struct nk_popup_buffer buf; - nk_hash name; - nk_bool active; - unsigned combo_count; - unsigned con_count, con_old; - unsigned active_con; - struct nk_rect header; -}; - -struct nk_edit_state { - nk_hash name; - unsigned int seq; - unsigned int old; - int active, prev; - int cursor; - int sel_start; - int sel_end; - struct nk_scroll scrollbar; - unsigned char mode; - unsigned char single_line; -}; - -struct nk_property_state { - int active, prev; - char buffer[NK_MAX_NUMBER_BUFFER]; - int length; - int cursor; - int select_start; - int select_end; - nk_hash name; - unsigned int seq; - unsigned int old; - int state; -}; - -struct nk_window { - unsigned int seq; - nk_hash name; - char name_string[NK_WINDOW_MAX_NAME]; - nk_flags flags; - - struct nk_rect bounds; - struct nk_scroll scrollbar; - struct nk_command_buffer buffer; - struct nk_panel *layout; - float scrollbar_hiding_timer; - - /* persistent widget state */ - struct nk_property_state property; - struct nk_popup_state popup; - struct nk_edit_state edit; - unsigned int scrolled; - nk_bool widgets_disabled; - - struct nk_table *tables; - unsigned int table_count; - - /* window list hooks */ - struct nk_window *next; - struct nk_window *prev; - struct nk_window *parent; -}; - -/*============================================================== - * STACK - * =============================================================*/ -/*/// ### Stack -/// The style modifier stack can be used to temporarily change a -/// property inside `nk_style`. For example if you want a special -/// red button you can temporarily push the old button color onto a stack -/// draw the button with a red color and then you just pop the old color -/// back from the stack: -/// -/// nk_style_push_style_item(ctx, &ctx->style.button.normal, nk_style_item_color(nk_rgb(255,0,0))); -/// nk_style_push_style_item(ctx, &ctx->style.button.hover, nk_style_item_color(nk_rgb(255,0,0))); -/// nk_style_push_style_item(ctx, &ctx->style.button.active, nk_style_item_color(nk_rgb(255,0,0))); -/// nk_style_push_vec2(ctx, &cx->style.button.padding, nk_vec2(2,2)); -/// -/// nk_button(...); -/// -/// nk_style_pop_style_item(ctx); -/// nk_style_pop_style_item(ctx); -/// nk_style_pop_style_item(ctx); -/// nk_style_pop_vec2(ctx); -/// -/// Nuklear has a stack for style_items, float properties, vector properties, -/// flags, colors, fonts and for button_behavior. Each has it's own fixed size stack -/// which can be changed at compile time. - */ -#ifndef NK_BUTTON_BEHAVIOR_STACK_SIZE -#define NK_BUTTON_BEHAVIOR_STACK_SIZE 8 -#endif - -#ifndef NK_FONT_STACK_SIZE -#define NK_FONT_STACK_SIZE 8 -#endif - -#ifndef NK_STYLE_ITEM_STACK_SIZE -#define NK_STYLE_ITEM_STACK_SIZE 16 -#endif - -#ifndef NK_FLOAT_STACK_SIZE -#define NK_FLOAT_STACK_SIZE 32 -#endif - -#ifndef NK_VECTOR_STACK_SIZE -#define NK_VECTOR_STACK_SIZE 16 -#endif - -#ifndef NK_FLAGS_STACK_SIZE -#define NK_FLAGS_STACK_SIZE 32 -#endif - -#ifndef NK_COLOR_STACK_SIZE -#define NK_COLOR_STACK_SIZE 32 -#endif - -#define NK_CONFIGURATION_STACK_TYPE(prefix, name, type)\ - struct nk_config_stack_##name##_element {\ - prefix##_##type *address;\ - prefix##_##type old_value;\ - } -#define NK_CONFIG_STACK(type,size)\ - struct nk_config_stack_##type {\ - int head;\ - struct nk_config_stack_##type##_element elements[size];\ - } - -#define nk_float float -NK_CONFIGURATION_STACK_TYPE(struct nk, style_item, style_item); -NK_CONFIGURATION_STACK_TYPE(nk ,float, float); -NK_CONFIGURATION_STACK_TYPE(struct nk, vec2, vec2); -NK_CONFIGURATION_STACK_TYPE(nk ,flags, flags); -NK_CONFIGURATION_STACK_TYPE(struct nk, color, color); -NK_CONFIGURATION_STACK_TYPE(const struct nk, user_font, user_font*); -NK_CONFIGURATION_STACK_TYPE(enum nk, button_behavior, button_behavior); - -NK_CONFIG_STACK(style_item, NK_STYLE_ITEM_STACK_SIZE); -NK_CONFIG_STACK(float, NK_FLOAT_STACK_SIZE); -NK_CONFIG_STACK(vec2, NK_VECTOR_STACK_SIZE); -NK_CONFIG_STACK(flags, NK_FLAGS_STACK_SIZE); -NK_CONFIG_STACK(color, NK_COLOR_STACK_SIZE); -NK_CONFIG_STACK(user_font, NK_FONT_STACK_SIZE); -NK_CONFIG_STACK(button_behavior, NK_BUTTON_BEHAVIOR_STACK_SIZE); - -struct nk_configuration_stacks { - struct nk_config_stack_style_item style_items; - struct nk_config_stack_float floats; - struct nk_config_stack_vec2 vectors; - struct nk_config_stack_flags flags; - struct nk_config_stack_color colors; - struct nk_config_stack_user_font fonts; - struct nk_config_stack_button_behavior button_behaviors; -}; - -/*============================================================== - * CONTEXT - * =============================================================*/ -#define NK_VALUE_PAGE_CAPACITY \ - (((NK_MAX(sizeof(struct nk_window),sizeof(struct nk_panel)) / sizeof(nk_uint))) / 2) - -struct nk_table { - unsigned int seq; - unsigned int size; - nk_hash keys[NK_VALUE_PAGE_CAPACITY]; - nk_uint values[NK_VALUE_PAGE_CAPACITY]; - struct nk_table *next, *prev; -}; - -union nk_page_data { - struct nk_table tbl; - struct nk_panel pan; - struct nk_window win; -}; - -struct nk_page_element { - union nk_page_data data; - struct nk_page_element *next; - struct nk_page_element *prev; -}; - -struct nk_page { - unsigned int size; - struct nk_page *next; - struct nk_page_element win[1]; -}; - -struct nk_pool { - struct nk_allocator alloc; - enum nk_allocation_type type; - unsigned int page_count; - struct nk_page *pages; - struct nk_page_element *freelist; - unsigned capacity; - nk_size size; - nk_size cap; -}; - -struct nk_context { -/* public: can be accessed freely */ - struct nk_input input; - struct nk_style style; - struct nk_buffer memory; - struct nk_clipboard clip; - nk_flags last_widget_state; - enum nk_button_behavior button_behavior; - struct nk_configuration_stacks stacks; - float delta_time_seconds; - -/* private: - should only be accessed if you - know what you are doing */ -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT - struct nk_draw_list draw_list; -#endif -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_handle userdata; -#endif - /* text editor objects are quite big because of an internal - * undo/redo stack. Therefore it does not make sense to have one for - * each window for temporary use cases, so I only provide *one* instance - * for all windows. This works because the content is cleared anyway */ - struct nk_text_edit text_edit; - /* draw buffer used for overlay drawing operation like cursor */ - struct nk_command_buffer overlay; - - /* windows */ - int build; - int use_pool; - struct nk_pool pool; - struct nk_window *begin; - struct nk_window *end; - struct nk_window *active; - struct nk_window *current; - struct nk_page_element *freelist; - unsigned int count; - unsigned int seq; -}; - -/* ============================================================== - * MATH - * =============================================================== */ -#define NK_PI 3.141592654f -#define NK_UTF_INVALID 0xFFFD -#define NK_MAX_FLOAT_PRECISION 2 - -#define NK_UNUSED(x) ((void)(x)) -#define NK_SATURATE(x) (NK_MAX(0, NK_MIN(1.0f, x))) -#define NK_LEN(a) (sizeof(a)/sizeof(a)[0]) -#define NK_ABS(a) (((a) < 0) ? -(a) : (a)) -#define NK_BETWEEN(x, a, b) ((a) <= (x) && (x) < (b)) -#define NK_INBOX(px, py, x, y, w, h)\ - (NK_BETWEEN(px,x,x+w) && NK_BETWEEN(py,y,y+h)) -#define NK_INTERSECT(x0, y0, w0, h0, x1, y1, w1, h1) \ - ((x1 < (x0 + w0)) && (x0 < (x1 + w1)) && \ - (y1 < (y0 + h0)) && (y0 < (y1 + h1))) -#define NK_CONTAINS(x, y, w, h, bx, by, bw, bh)\ - (NK_INBOX(x,y, bx, by, bw, bh) && NK_INBOX(x+w,y+h, bx, by, bw, bh)) - -#define nk_vec2_sub(a, b) nk_vec2((a).x - (b).x, (a).y - (b).y) -#define nk_vec2_add(a, b) nk_vec2((a).x + (b).x, (a).y + (b).y) -#define nk_vec2_len_sqr(a) ((a).x*(a).x+(a).y*(a).y) -#define nk_vec2_muls(a, t) nk_vec2((a).x * (t), (a).y * (t)) - -#define nk_ptr_add(t, p, i) ((t*)((void*)((nk_byte*)(p) + (i)))) -#define nk_ptr_add_const(t, p, i) ((const t*)((const void*)((const nk_byte*)(p) + (i)))) -#define nk_zero_struct(s) nk_zero(&s, sizeof(s)) - -/* ============================================================== - * ALIGNMENT - * =============================================================== */ -/* Pointer to Integer type conversion for pointer alignment */ -#if defined(__PTRDIFF_TYPE__) /* This case should work for GCC*/ -# define NK_UINT_TO_PTR(x) ((void*)(__PTRDIFF_TYPE__)(x)) -# define NK_PTR_TO_UINT(x) ((nk_size)(__PTRDIFF_TYPE__)(x)) -#elif !defined(__GNUC__) /* works for compilers other than LLVM */ -# define NK_UINT_TO_PTR(x) ((void*)&((char*)0)[x]) -# define NK_PTR_TO_UINT(x) ((nk_size)(((char*)x)-(char*)0)) -#elif defined(NK_USE_FIXED_TYPES) /* used if we have */ -# define NK_UINT_TO_PTR(x) ((void*)(uintptr_t)(x)) -# define NK_PTR_TO_UINT(x) ((uintptr_t)(x)) -#else /* generates warning but works */ -# define NK_UINT_TO_PTR(x) ((void*)(x)) -# define NK_PTR_TO_UINT(x) ((nk_size)(x)) -#endif - -#define NK_ALIGN_PTR(x, mask)\ - (NK_UINT_TO_PTR((NK_PTR_TO_UINT((nk_byte*)(x) + (mask-1)) & ~(mask-1)))) -#define NK_ALIGN_PTR_BACK(x, mask)\ - (NK_UINT_TO_PTR((NK_PTR_TO_UINT((nk_byte*)(x)) & ~(mask-1)))) - -#if (defined(__GNUC__) && __GNUC__ >= 4) || defined(__clang__) -#define NK_OFFSETOF(st,m) (__builtin_offsetof(st,m)) -#else -#define NK_OFFSETOF(st,m) ((nk_ptr)&(((st*)0)->m)) -#endif - -#ifdef __cplusplus -} -#endif - -#ifdef __cplusplus -template struct nk_alignof; -template struct nk_helper{enum {value = size_diff};}; -template struct nk_helper{enum {value = nk_alignof::value};}; -template struct nk_alignof{struct Big {T x; char c;}; enum { - diff = sizeof(Big) - sizeof(T), value = nk_helper::value};}; -#define NK_ALIGNOF(t) (nk_alignof::value) -#else -#define NK_ALIGNOF(t) NK_OFFSETOF(struct {char c; t _h;}, _h) -#endif - -#define NK_CONTAINER_OF(ptr,type,member)\ - (type*)((void*)((char*)(1 ? (ptr): &((type*)0)->member) - NK_OFFSETOF(type, member))) - - - -#endif /* NK_NUKLEAR_H_ */ - -#ifdef NK_IMPLEMENTATION - -#ifndef NK_INTERNAL_H -#define NK_INTERNAL_H - -#ifndef NK_POOL_DEFAULT_CAPACITY -#define NK_POOL_DEFAULT_CAPACITY 16 -#endif - -#ifndef NK_DEFAULT_COMMAND_BUFFER_SIZE -#define NK_DEFAULT_COMMAND_BUFFER_SIZE (4*1024) -#endif - -#ifndef NK_BUFFER_DEFAULT_INITIAL_SIZE -#define NK_BUFFER_DEFAULT_INITIAL_SIZE (4*1024) -#endif - -/* standard library headers */ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -#include /* malloc, free */ -#endif -#ifdef NK_INCLUDE_STANDARD_IO -#include /* fopen, fclose,... */ -#endif -#ifdef NK_INCLUDE_STANDARD_VARARGS -#include /* valist, va_start, va_end, ... */ -#endif -#ifndef NK_ASSERT -#include -#define NK_ASSERT(expr) assert(expr) -#endif - -#define NK_DEFAULT (-1) - -#ifndef NK_VSNPRINTF -/* If your compiler does support `vsnprintf` I would highly recommend - * defining this to vsnprintf instead since `vsprintf` is basically - * unbelievable unsafe and should *NEVER* be used. But I have to support - * it since C89 only provides this unsafe version. */ - #if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) ||\ - (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ - (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) ||\ - (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) ||\ - defined(_ISOC99_SOURCE) || defined(_BSD_SOURCE) - #define NK_VSNPRINTF(s,n,f,a) vsnprintf(s,n,f,a) - #else - #define NK_VSNPRINTF(s,n,f,a) vsprintf(s,f,a) - #endif -#endif - -#define NK_SCHAR_MIN (-127) -#define NK_SCHAR_MAX 127 -#define NK_UCHAR_MIN 0 -#define NK_UCHAR_MAX 256 -#define NK_SSHORT_MIN (-32767) -#define NK_SSHORT_MAX 32767 -#define NK_USHORT_MIN 0 -#define NK_USHORT_MAX 65535 -#define NK_SINT_MIN (-2147483647) -#define NK_SINT_MAX 2147483647 -#define NK_UINT_MIN 0 -#define NK_UINT_MAX 4294967295u - -/* Make sure correct type size: - * This will fire with a negative subscript error if the type sizes - * are set incorrectly by the compiler, and compile out if not */ -NK_STATIC_ASSERT(sizeof(nk_size) >= sizeof(void*)); -NK_STATIC_ASSERT(sizeof(nk_ptr) == sizeof(void*)); -NK_STATIC_ASSERT(sizeof(nk_flags) >= 4); -NK_STATIC_ASSERT(sizeof(nk_rune) >= 4); -NK_STATIC_ASSERT(sizeof(nk_ushort) == 2); -NK_STATIC_ASSERT(sizeof(nk_short) == 2); -NK_STATIC_ASSERT(sizeof(nk_uint) == 4); -NK_STATIC_ASSERT(sizeof(nk_int) == 4); -NK_STATIC_ASSERT(sizeof(nk_byte) == 1); -#ifdef NK_INCLUDE_STANDARD_BOOL -NK_STATIC_ASSERT(sizeof(nk_bool) == sizeof(bool)); -#else -NK_STATIC_ASSERT(sizeof(nk_bool) == 4); -#endif - -NK_GLOBAL const struct nk_rect nk_null_rect = {-8192.0f, -8192.0f, 16384, 16384}; -#define NK_FLOAT_PRECISION 0.00000000000001 - -NK_GLOBAL const struct nk_color nk_red = {255,0,0,255}; -NK_GLOBAL const struct nk_color nk_green = {0,255,0,255}; -NK_GLOBAL const struct nk_color nk_blue = {0,0,255,255}; -NK_GLOBAL const struct nk_color nk_white = {255,255,255,255}; -NK_GLOBAL const struct nk_color nk_black = {0,0,0,255}; -NK_GLOBAL const struct nk_color nk_yellow = {255,255,0,255}; - -/* widget */ -#define nk_widget_state_reset(s)\ - if ((*(s)) & NK_WIDGET_STATE_MODIFIED)\ - (*(s)) = NK_WIDGET_STATE_INACTIVE|NK_WIDGET_STATE_MODIFIED;\ - else (*(s)) = NK_WIDGET_STATE_INACTIVE; - -/* math */ -#ifndef NK_INV_SQRT -NK_LIB float nk_inv_sqrt(float n); -#endif -#ifndef NK_SIN -NK_LIB float nk_sin(float x); -#endif -#ifndef NK_COS -NK_LIB float nk_cos(float x); -#endif -NK_LIB nk_uint nk_round_up_pow2(nk_uint v); -NK_LIB struct nk_rect nk_shrink_rect(struct nk_rect r, float amount); -NK_LIB struct nk_rect nk_pad_rect(struct nk_rect r, struct nk_vec2 pad); -NK_LIB void nk_unify(struct nk_rect *clip, const struct nk_rect *a, float x0, float y0, float x1, float y1); -NK_LIB double nk_pow(double x, int n); -NK_LIB int nk_ifloord(double x); -NK_LIB int nk_ifloorf(float x); -NK_LIB int nk_iceilf(float x); -NK_LIB int nk_log10(double n); - -/* util */ -enum {NK_DO_NOT_STOP_ON_NEW_LINE, NK_STOP_ON_NEW_LINE}; -NK_LIB nk_bool nk_is_lower(int c); -NK_LIB nk_bool nk_is_upper(int c); -NK_LIB int nk_to_upper(int c); -NK_LIB int nk_to_lower(int c); - -#ifndef NK_MEMCPY -NK_LIB void* nk_memcopy(void *dst, const void *src, nk_size n); -#endif -#ifndef NK_MEMSET -NK_LIB void nk_memset(void *ptr, int c0, nk_size size); -#endif -NK_LIB void nk_zero(void *ptr, nk_size size); -NK_LIB char *nk_itoa(char *s, long n); -NK_LIB int nk_string_float_limit(char *string, int prec); -#ifndef NK_DTOA -NK_LIB char *nk_dtoa(char *s, double n); -#endif -NK_LIB int nk_text_clamp(const struct nk_user_font *font, const char *text, int text_len, float space, int *glyphs, float *text_width, nk_rune *sep_list, int sep_count); -NK_LIB struct nk_vec2 nk_text_calculate_text_bounds(const struct nk_user_font *font, const char *begin, int byte_len, float row_height, const char **remaining, struct nk_vec2 *out_offset, int *glyphs, int op); -#ifdef NK_INCLUDE_STANDARD_VARARGS -NK_LIB int nk_strfmt(char *buf, int buf_size, const char *fmt, va_list args); -#endif -#ifdef NK_INCLUDE_STANDARD_IO -NK_LIB char *nk_file_load(const char* path, nk_size* siz, struct nk_allocator *alloc); -#endif - -/* buffer */ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_LIB void* nk_malloc(nk_handle unused, void *old,nk_size size); -NK_LIB void nk_mfree(nk_handle unused, void *ptr); -#endif -NK_LIB void* nk_buffer_align(void *unaligned, nk_size align, nk_size *alignment, enum nk_buffer_allocation_type type); -NK_LIB void* nk_buffer_alloc(struct nk_buffer *b, enum nk_buffer_allocation_type type, nk_size size, nk_size align); -NK_LIB void* nk_buffer_realloc(struct nk_buffer *b, nk_size capacity, nk_size *size); - -/* draw */ -NK_LIB void nk_command_buffer_init(struct nk_command_buffer *cb, struct nk_buffer *b, enum nk_command_clipping clip); -NK_LIB void nk_command_buffer_reset(struct nk_command_buffer *b); -NK_LIB void* nk_command_buffer_push(struct nk_command_buffer* b, enum nk_command_type t, nk_size size); -NK_LIB void nk_draw_symbol(struct nk_command_buffer *out, enum nk_symbol_type type, struct nk_rect content, struct nk_color background, struct nk_color foreground, float border_width, const struct nk_user_font *font); - -/* buffering */ -NK_LIB void nk_start_buffer(struct nk_context *ctx, struct nk_command_buffer *b); -NK_LIB void nk_start(struct nk_context *ctx, struct nk_window *win); -NK_LIB void nk_start_popup(struct nk_context *ctx, struct nk_window *win); -NK_LIB void nk_finish_popup(struct nk_context *ctx, struct nk_window*); -NK_LIB void nk_finish_buffer(struct nk_context *ctx, struct nk_command_buffer *b); -NK_LIB void nk_finish(struct nk_context *ctx, struct nk_window *w); -NK_LIB void nk_build(struct nk_context *ctx); - -/* text editor */ -NK_LIB void nk_textedit_clear_state(struct nk_text_edit *state, enum nk_text_edit_type type, nk_plugin_filter filter); -NK_LIB void nk_textedit_click(struct nk_text_edit *state, float x, float y, const struct nk_user_font *font, float row_height); -NK_LIB void nk_textedit_drag(struct nk_text_edit *state, float x, float y, const struct nk_user_font *font, float row_height); -NK_LIB void nk_textedit_key(struct nk_text_edit *state, enum nk_keys key, int shift_mod, const struct nk_user_font *font, float row_height); - -/* window */ -enum nk_window_insert_location { - NK_INSERT_BACK, /* inserts window into the back of list (front of screen) */ - NK_INSERT_FRONT /* inserts window into the front of list (back of screen) */ -}; -NK_LIB void *nk_create_window(struct nk_context *ctx); -NK_LIB void nk_remove_window(struct nk_context*, struct nk_window*); -NK_LIB void nk_free_window(struct nk_context *ctx, struct nk_window *win); -NK_LIB struct nk_window *nk_find_window(struct nk_context *ctx, nk_hash hash, const char *name); -NK_LIB void nk_insert_window(struct nk_context *ctx, struct nk_window *win, enum nk_window_insert_location loc); - -/* pool */ -NK_LIB void nk_pool_init(struct nk_pool *pool, struct nk_allocator *alloc, unsigned int capacity); -NK_LIB void nk_pool_free(struct nk_pool *pool); -NK_LIB void nk_pool_init_fixed(struct nk_pool *pool, void *memory, nk_size size); -NK_LIB struct nk_page_element *nk_pool_alloc(struct nk_pool *pool); - -/* page-element */ -NK_LIB struct nk_page_element* nk_create_page_element(struct nk_context *ctx); -NK_LIB void nk_link_page_element_into_freelist(struct nk_context *ctx, struct nk_page_element *elem); -NK_LIB void nk_free_page_element(struct nk_context *ctx, struct nk_page_element *elem); - -/* table */ -NK_LIB struct nk_table* nk_create_table(struct nk_context *ctx); -NK_LIB void nk_remove_table(struct nk_window *win, struct nk_table *tbl); -NK_LIB void nk_free_table(struct nk_context *ctx, struct nk_table *tbl); -NK_LIB void nk_push_table(struct nk_window *win, struct nk_table *tbl); -NK_LIB nk_uint *nk_add_value(struct nk_context *ctx, struct nk_window *win, nk_hash name, nk_uint value); -NK_LIB nk_uint *nk_find_value(struct nk_window *win, nk_hash name); - -/* panel */ -NK_LIB void *nk_create_panel(struct nk_context *ctx); -NK_LIB void nk_free_panel(struct nk_context*, struct nk_panel *pan); -NK_LIB nk_bool nk_panel_has_header(nk_flags flags, const char *title); -NK_LIB struct nk_vec2 nk_panel_get_padding(const struct nk_style *style, enum nk_panel_type type); -NK_LIB float nk_panel_get_border(const struct nk_style *style, nk_flags flags, enum nk_panel_type type); -NK_LIB struct nk_color nk_panel_get_border_color(const struct nk_style *style, enum nk_panel_type type); -NK_LIB nk_bool nk_panel_is_sub(enum nk_panel_type type); -NK_LIB nk_bool nk_panel_is_nonblock(enum nk_panel_type type); -NK_LIB nk_bool nk_panel_begin(struct nk_context *ctx, const char *title, enum nk_panel_type panel_type); -NK_LIB void nk_panel_end(struct nk_context *ctx); - -/* layout */ -NK_LIB float nk_layout_row_calculate_usable_space(const struct nk_style *style, enum nk_panel_type type, float total_space, int columns); -NK_LIB void nk_panel_layout(const struct nk_context *ctx, struct nk_window *win, float height, int cols); -NK_LIB void nk_row_layout(struct nk_context *ctx, enum nk_layout_format fmt, float height, int cols, int width); -NK_LIB void nk_panel_alloc_row(const struct nk_context *ctx, struct nk_window *win); -NK_LIB void nk_layout_widget_space(struct nk_rect *bounds, const struct nk_context *ctx, struct nk_window *win, int modify); -NK_LIB void nk_panel_alloc_space(struct nk_rect *bounds, const struct nk_context *ctx); -NK_LIB void nk_layout_peek(struct nk_rect *bounds, struct nk_context *ctx); - -/* popup */ -NK_LIB nk_bool nk_nonblock_begin(struct nk_context *ctx, nk_flags flags, struct nk_rect body, struct nk_rect header, enum nk_panel_type panel_type); - -/* text */ -struct nk_text { - struct nk_vec2 padding; - struct nk_color background; - struct nk_color text; -}; -NK_LIB void nk_widget_text(struct nk_command_buffer *o, struct nk_rect b, const char *string, int len, const struct nk_text *t, nk_flags a, const struct nk_user_font *f); -NK_LIB void nk_widget_text_wrap(struct nk_command_buffer *o, struct nk_rect b, const char *string, int len, const struct nk_text *t, const struct nk_user_font *f); - -/* button */ -NK_LIB nk_bool nk_button_behavior(nk_flags *state, struct nk_rect r, const struct nk_input *i, enum nk_button_behavior behavior); -NK_LIB const struct nk_style_item* nk_draw_button(struct nk_command_buffer *out, const struct nk_rect *bounds, nk_flags state, const struct nk_style_button *style); -NK_LIB nk_bool nk_do_button(nk_flags *state, struct nk_command_buffer *out, struct nk_rect r, const struct nk_style_button *style, const struct nk_input *in, enum nk_button_behavior behavior, struct nk_rect *content); -NK_LIB void nk_draw_button_text(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *content, nk_flags state, const struct nk_style_button *style, const char *txt, int len, nk_flags text_alignment, const struct nk_user_font *font); -NK_LIB nk_bool nk_do_button_text(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *string, int len, nk_flags align, enum nk_button_behavior behavior, const struct nk_style_button *style, const struct nk_input *in, const struct nk_user_font *font); -NK_LIB void nk_draw_button_symbol(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *content, nk_flags state, const struct nk_style_button *style, enum nk_symbol_type type, const struct nk_user_font *font); -NK_LIB nk_bool nk_do_button_symbol(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, enum nk_symbol_type symbol, enum nk_button_behavior behavior, const struct nk_style_button *style, const struct nk_input *in, const struct nk_user_font *font); -NK_LIB void nk_draw_button_image(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *content, nk_flags state, const struct nk_style_button *style, const struct nk_image *img); -NK_LIB nk_bool nk_do_button_image(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, struct nk_image img, enum nk_button_behavior b, const struct nk_style_button *style, const struct nk_input *in); -NK_LIB void nk_draw_button_text_symbol(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *label, const struct nk_rect *symbol, nk_flags state, const struct nk_style_button *style, const char *str, int len, enum nk_symbol_type type, const struct nk_user_font *font); -NK_LIB nk_bool nk_do_button_text_symbol(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, enum nk_symbol_type symbol, const char *str, int len, nk_flags align, enum nk_button_behavior behavior, const struct nk_style_button *style, const struct nk_user_font *font, const struct nk_input *in); -NK_LIB void nk_draw_button_text_image(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *label, const struct nk_rect *image, nk_flags state, const struct nk_style_button *style, const char *str, int len, const struct nk_user_font *font, const struct nk_image *img); -NK_LIB nk_bool nk_do_button_text_image(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, struct nk_image img, const char* str, int len, nk_flags align, enum nk_button_behavior behavior, const struct nk_style_button *style, const struct nk_user_font *font, const struct nk_input *in); - -/* toggle */ -enum nk_toggle_type { - NK_TOGGLE_CHECK, - NK_TOGGLE_OPTION -}; -NK_LIB nk_bool nk_toggle_behavior(const struct nk_input *in, struct nk_rect select, nk_flags *state, nk_bool active); -NK_LIB void nk_draw_checkbox(struct nk_command_buffer *out, nk_flags state, const struct nk_style_toggle *style, nk_bool active, const struct nk_rect *label, const struct nk_rect *selector, const struct nk_rect *cursors, const char *string, int len, const struct nk_user_font *font, nk_flags text_alignment); -NK_LIB void nk_draw_option(struct nk_command_buffer *out, nk_flags state, const struct nk_style_toggle *style, nk_bool active, const struct nk_rect *label, const struct nk_rect *selector, const struct nk_rect *cursors, const char *string, int len, const struct nk_user_font *font, nk_flags text_alignment); -NK_LIB nk_bool nk_do_toggle(nk_flags *state, struct nk_command_buffer *out, struct nk_rect r, nk_bool *active, const char *str, int len, enum nk_toggle_type type, const struct nk_style_toggle *style, const struct nk_input *in, const struct nk_user_font *font, nk_flags widget_alignment, nk_flags text_alignment); - -/* progress */ -NK_LIB nk_size nk_progress_behavior(nk_flags *state, struct nk_input *in, struct nk_rect r, struct nk_rect cursor, nk_size max, nk_size value, nk_bool modifiable); -NK_LIB void nk_draw_progress(struct nk_command_buffer *out, nk_flags state, const struct nk_style_progress *style, const struct nk_rect *bounds, const struct nk_rect *scursor, nk_size value, nk_size max); -NK_LIB nk_size nk_do_progress(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, nk_size value, nk_size max, nk_bool modifiable, const struct nk_style_progress *style, struct nk_input *in); - -/* slider */ -NK_LIB float nk_slider_behavior(nk_flags *state, struct nk_rect *logical_cursor, struct nk_rect *visual_cursor, struct nk_input *in, struct nk_rect bounds, float slider_min, float slider_max, float slider_value, float slider_step, float slider_steps); -NK_LIB void nk_draw_slider(struct nk_command_buffer *out, nk_flags state, const struct nk_style_slider *style, const struct nk_rect *bounds, const struct nk_rect *visual_cursor, float min, float value, float max); -NK_LIB float nk_do_slider(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, float min, float val, float max, float step, const struct nk_style_slider *style, struct nk_input *in, const struct nk_user_font *font); - -/* scrollbar */ -NK_LIB float nk_scrollbar_behavior(nk_flags *state, struct nk_input *in, int has_scrolling, const struct nk_rect *scroll, const struct nk_rect *cursor, const struct nk_rect *empty0, const struct nk_rect *empty1, float scroll_offset, float target, float scroll_step, enum nk_orientation o); -NK_LIB void nk_draw_scrollbar(struct nk_command_buffer *out, nk_flags state, const struct nk_style_scrollbar *style, const struct nk_rect *bounds, const struct nk_rect *scroll); -NK_LIB float nk_do_scrollbarv(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font); -NK_LIB float nk_do_scrollbarh(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font); - -/* selectable */ -NK_LIB void nk_draw_selectable(struct nk_command_buffer *out, nk_flags state, const struct nk_style_selectable *style, nk_bool active, const struct nk_rect *bounds, const struct nk_rect *icon, const struct nk_image *img, enum nk_symbol_type sym, const char *string, int len, nk_flags align, const struct nk_user_font *font); -NK_LIB nk_bool nk_do_selectable(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *str, int len, nk_flags align, nk_bool *value, const struct nk_style_selectable *style, const struct nk_input *in, const struct nk_user_font *font); -NK_LIB nk_bool nk_do_selectable_image(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, const char *str, int len, nk_flags align, nk_bool *value, const struct nk_image *img, const struct nk_style_selectable *style, const struct nk_input *in, const struct nk_user_font *font); - -/* edit */ -NK_LIB void nk_edit_draw_text(struct nk_command_buffer *out, const struct nk_style_edit *style, float pos_x, float pos_y, float x_offset, const char *text, int byte_len, float row_height, const struct nk_user_font *font, struct nk_color background, struct nk_color foreground, nk_bool is_selected); -NK_LIB nk_flags nk_do_edit(nk_flags *state, struct nk_command_buffer *out, struct nk_rect bounds, nk_flags flags, nk_plugin_filter filter, struct nk_text_edit *edit, const struct nk_style_edit *style, struct nk_input *in, const struct nk_user_font *font); - -/* color-picker */ -NK_LIB nk_bool nk_color_picker_behavior(nk_flags *state, const struct nk_rect *bounds, const struct nk_rect *matrix, const struct nk_rect *hue_bar, const struct nk_rect *alpha_bar, struct nk_colorf *color, const struct nk_input *in); -NK_LIB void nk_draw_color_picker(struct nk_command_buffer *o, const struct nk_rect *matrix, const struct nk_rect *hue_bar, const struct nk_rect *alpha_bar, struct nk_colorf col); -NK_LIB nk_bool nk_do_color_picker(nk_flags *state, struct nk_command_buffer *out, struct nk_colorf *col, enum nk_color_format fmt, struct nk_rect bounds, struct nk_vec2 padding, const struct nk_input *in, const struct nk_user_font *font); - -/* property */ -enum nk_property_status { - NK_PROPERTY_DEFAULT, - NK_PROPERTY_EDIT, - NK_PROPERTY_DRAG -}; -enum nk_property_filter { - NK_FILTER_INT, - NK_FILTER_FLOAT -}; -enum nk_property_kind { - NK_PROPERTY_INT, - NK_PROPERTY_FLOAT, - NK_PROPERTY_DOUBLE -}; -union nk_property { - int i; - float f; - double d; -}; -struct nk_property_variant { - enum nk_property_kind kind; - union nk_property value; - union nk_property min_value; - union nk_property max_value; - union nk_property step; -}; -NK_LIB struct nk_property_variant nk_property_variant_int(int value, int min_value, int max_value, int step); -NK_LIB struct nk_property_variant nk_property_variant_float(float value, float min_value, float max_value, float step); -NK_LIB struct nk_property_variant nk_property_variant_double(double value, double min_value, double max_value, double step); - -NK_LIB void nk_drag_behavior(nk_flags *state, const struct nk_input *in, struct nk_rect drag, struct nk_property_variant *variant, float inc_per_pixel); -NK_LIB void nk_property_behavior(nk_flags *ws, const struct nk_input *in, struct nk_rect property, struct nk_rect label, struct nk_rect edit, struct nk_rect empty, int *state, struct nk_property_variant *variant, float inc_per_pixel); -NK_LIB void nk_draw_property(struct nk_command_buffer *out, const struct nk_style_property *style, const struct nk_rect *bounds, const struct nk_rect *label, nk_flags state, const char *name, int len, const struct nk_user_font *font); -NK_LIB void nk_do_property(nk_flags *ws, struct nk_command_buffer *out, struct nk_rect property, const char *name, struct nk_property_variant *variant, float inc_per_pixel, char *buffer, int *len, int *state, int *cursor, int *select_begin, int *select_end, const struct nk_style_property *style, enum nk_property_filter filter, struct nk_input *in, const struct nk_user_font *font, struct nk_text_edit *text_edit, enum nk_button_behavior behavior); -NK_LIB void nk_property(struct nk_context *ctx, const char *name, struct nk_property_variant *variant, float inc_per_pixel, const enum nk_property_filter filter); - -#ifdef NK_INCLUDE_FONT_BAKING - -/** - * @def NK_NO_STB_RECT_PACK_IMPLEMENTATION - * - * When defined, will avoid enabling STB_RECT_PACK_IMPLEMENTATION for when stb_rect_pack.h is already implemented elsewhere. - */ -#ifndef NK_NO_STB_RECT_PACK_IMPLEMENTATION -#define STB_RECT_PACK_IMPLEMENTATION -#endif /* NK_NO_STB_RECT_PACK_IMPLEMENTATION */ - -/** - * @def NK_NO_STB_TRUETYPE_IMPLEMENTATION - * - * When defined, will avoid enabling STB_TRUETYPE_IMPLEMENTATION for when stb_truetype.h is already implemented elsewhere. - */ -#ifndef NK_NO_STB_TRUETYPE_IMPLEMENTATION -#define STB_TRUETYPE_IMPLEMENTATION -#endif /* NK_NO_STB_TRUETYPE_IMPLEMENTATION */ - -/* Allow consumer to define own STBTT_malloc/STBTT_free, and use the font atlas' allocator otherwise */ -#ifndef STBTT_malloc -static void* -nk_stbtt_malloc(nk_size size, void *user_data) { - struct nk_allocator *alloc = (struct nk_allocator *) user_data; - return alloc->alloc(alloc->userdata, 0, size); -} - -static void -nk_stbtt_free(void *ptr, void *user_data) { - struct nk_allocator *alloc = (struct nk_allocator *) user_data; - alloc->free(alloc->userdata, ptr); -} - -#define STBTT_malloc(x,u) nk_stbtt_malloc(x,u) -#define STBTT_free(x,u) nk_stbtt_free(x,u) - -#endif /* STBTT_malloc */ - -#endif /* NK_INCLUDE_FONT_BAKING */ - -#endif - - - - - -/* =============================================================== - * - * MATH - * - * ===============================================================*/ -/*/// ### Math -/// Since nuklear is supposed to work on all systems providing floating point -/// math without any dependencies I also had to implement my own math functions -/// for sqrt, sin and cos. Since the actual highly accurate implementations for -/// the standard library functions are quite complex and I do not need high -/// precision for my use cases I use approximations. -/// -/// Sqrt -/// ---- -/// For square root nuklear uses the famous fast inverse square root: -/// https://en.wikipedia.org/wiki/Fast_inverse_square_root with -/// slightly tweaked magic constant. While on today's hardware it is -/// probably not faster it is still fast and accurate enough for -/// nuklear's use cases. IMPORTANT: this requires float format IEEE 754 -/// -/// Sine/Cosine -/// ----------- -/// All constants inside both function are generated Remez's minimax -/// approximations for value range 0...2*PI. The reason why I decided to -/// approximate exactly that range is that nuklear only needs sine and -/// cosine to generate circles which only requires that exact range. -/// In addition I used Remez instead of Taylor for additional precision: -/// www.lolengine.net/blog/2011/12/21/better-function-approximations. -/// -/// The tool I used to generate constants for both sine and cosine -/// (it can actually approximate a lot more functions) can be -/// found here: www.lolengine.net/wiki/oss/lolremez -*/ -#ifndef NK_INV_SQRT -#define NK_INV_SQRT nk_inv_sqrt -NK_LIB float -nk_inv_sqrt(float n) -{ - float x2; - const float threehalfs = 1.5f; - union {nk_uint i; float f;} conv = {0}; - conv.f = n; - x2 = n * 0.5f; - conv.i = 0x5f375A84 - (conv.i >> 1); - conv.f = conv.f * (threehalfs - (x2 * conv.f * conv.f)); - return conv.f; -} -#endif -#ifndef NK_SIN -#define NK_SIN nk_sin -NK_LIB float -nk_sin(float x) -{ - NK_STORAGE const float a0 = +1.91059300966915117e-31f; - NK_STORAGE const float a1 = +1.00086760103908896f; - NK_STORAGE const float a2 = -1.21276126894734565e-2f; - NK_STORAGE const float a3 = -1.38078780785773762e-1f; - NK_STORAGE const float a4 = -2.67353392911981221e-2f; - NK_STORAGE const float a5 = +2.08026600266304389e-2f; - NK_STORAGE const float a6 = -3.03996055049204407e-3f; - NK_STORAGE const float a7 = +1.38235642404333740e-4f; - return a0 + x*(a1 + x*(a2 + x*(a3 + x*(a4 + x*(a5 + x*(a6 + x*a7)))))); -} -#endif -#ifndef NK_COS -#define NK_COS nk_cos -NK_LIB float -nk_cos(float x) -{ - /* New implementation. Also generated using lolremez. */ - /* Old version significantly deviated from expected results. */ - NK_STORAGE const float a0 = 9.9995999154986614e-1f; - NK_STORAGE const float a1 = 1.2548995793001028e-3f; - NK_STORAGE const float a2 = -5.0648546280678015e-1f; - NK_STORAGE const float a3 = 1.2942246466519995e-2f; - NK_STORAGE const float a4 = 2.8668384702547972e-2f; - NK_STORAGE const float a5 = 7.3726485210586547e-3f; - NK_STORAGE const float a6 = -3.8510875386947414e-3f; - NK_STORAGE const float a7 = 4.7196604604366623e-4f; - NK_STORAGE const float a8 = -1.8776444013090451e-5f; - return a0 + x*(a1 + x*(a2 + x*(a3 + x*(a4 + x*(a5 + x*(a6 + x*(a7 + x*a8))))))); -} -#endif -NK_LIB nk_uint -nk_round_up_pow2(nk_uint v) -{ - v--; - v |= v >> 1; - v |= v >> 2; - v |= v >> 4; - v |= v >> 8; - v |= v >> 16; - v++; - return v; -} -NK_LIB double -nk_pow(double x, int n) -{ - /* check the sign of n */ - double r = 1; - int plus = n >= 0; - n = (plus) ? n : -n; - while (n > 0) { - if ((n & 1) == 1) - r *= x; - n /= 2; - x *= x; - } - return plus ? r : 1.0 / r; -} -NK_LIB int -nk_ifloord(double x) -{ - x = (double)((int)x - ((x < 0.0) ? 1 : 0)); - return (int)x; -} -NK_LIB int -nk_ifloorf(float x) -{ - x = (float)((int)x - ((x < 0.0f) ? 1 : 0)); - return (int)x; -} -NK_LIB int -nk_iceilf(float x) -{ - if (x >= 0) { - int i = (int)x; - return (x > i) ? i+1: i; - } else { - int t = (int)x; - float r = x - (float)t; - return (r > 0.0f) ? t+1: t; - } -} -NK_LIB int -nk_log10(double n) -{ - int neg; - int ret; - int exp = 0; - - neg = (n < 0) ? 1 : 0; - ret = (neg) ? (int)-n : (int)n; - while ((ret / 10) > 0) { - ret /= 10; - exp++; - } - if (neg) exp = -exp; - return exp; -} -NK_API struct nk_rect -nk_get_null_rect(void) -{ - return nk_null_rect; -} -NK_API struct nk_rect -nk_rect(float x, float y, float w, float h) -{ - struct nk_rect r; - r.x = x; r.y = y; - r.w = w; r.h = h; - return r; -} -NK_API struct nk_rect -nk_recti(int x, int y, int w, int h) -{ - struct nk_rect r; - r.x = (float)x; - r.y = (float)y; - r.w = (float)w; - r.h = (float)h; - return r; -} -NK_API struct nk_rect -nk_recta(struct nk_vec2 pos, struct nk_vec2 size) -{ - return nk_rect(pos.x, pos.y, size.x, size.y); -} -NK_API struct nk_rect -nk_rectv(const float *r) -{ - return nk_rect(r[0], r[1], r[2], r[3]); -} -NK_API struct nk_rect -nk_rectiv(const int *r) -{ - return nk_recti(r[0], r[1], r[2], r[3]); -} -NK_API struct nk_vec2 -nk_rect_pos(struct nk_rect r) -{ - struct nk_vec2 ret; - ret.x = r.x; ret.y = r.y; - return ret; -} -NK_API struct nk_vec2 -nk_rect_size(struct nk_rect r) -{ - struct nk_vec2 ret; - ret.x = r.w; ret.y = r.h; - return ret; -} -NK_LIB struct nk_rect -nk_shrink_rect(struct nk_rect r, float amount) -{ - struct nk_rect res; - r.w = NK_MAX(r.w, 2 * amount); - r.h = NK_MAX(r.h, 2 * amount); - res.x = r.x + amount; - res.y = r.y + amount; - res.w = r.w - 2 * amount; - res.h = r.h - 2 * amount; - return res; -} -NK_LIB struct nk_rect -nk_pad_rect(struct nk_rect r, struct nk_vec2 pad) -{ - r.w = NK_MAX(r.w, 2 * pad.x); - r.h = NK_MAX(r.h, 2 * pad.y); - r.x += pad.x; r.y += pad.y; - r.w -= 2 * pad.x; - r.h -= 2 * pad.y; - return r; -} -NK_API struct nk_vec2 -nk_vec2(float x, float y) -{ - struct nk_vec2 ret; - ret.x = x; ret.y = y; - return ret; -} -NK_API struct nk_vec2 -nk_vec2i(int x, int y) -{ - struct nk_vec2 ret; - ret.x = (float)x; - ret.y = (float)y; - return ret; -} -NK_API struct nk_vec2 -nk_vec2v(const float *v) -{ - return nk_vec2(v[0], v[1]); -} -NK_API struct nk_vec2 -nk_vec2iv(const int *v) -{ - return nk_vec2i(v[0], v[1]); -} -NK_LIB void -nk_unify(struct nk_rect *clip, const struct nk_rect *a, float x0, float y0, - float x1, float y1) -{ - NK_ASSERT(a); - NK_ASSERT(clip); - clip->x = NK_MAX(a->x, x0); - clip->y = NK_MAX(a->y, y0); - clip->w = NK_MIN(a->x + a->w, x1) - clip->x; - clip->h = NK_MIN(a->y + a->h, y1) - clip->y; - clip->w = NK_MAX(0, clip->w); - clip->h = NK_MAX(0, clip->h); -} - -NK_API void -nk_triangle_from_direction(struct nk_vec2 *result, struct nk_rect r, - float pad_x, float pad_y, enum nk_heading direction) -{ - float w_half, h_half; - NK_ASSERT(result); - - r.w = NK_MAX(2 * pad_x, r.w); - r.h = NK_MAX(2 * pad_y, r.h); - r.w = r.w - 2 * pad_x; - r.h = r.h - 2 * pad_y; - - r.x = r.x + pad_x; - r.y = r.y + pad_y; - - w_half = r.w / 2.0f; - h_half = r.h / 2.0f; - - if (direction == NK_UP) { - result[0] = nk_vec2(r.x + w_half, r.y); - result[1] = nk_vec2(r.x + r.w, r.y + r.h); - result[2] = nk_vec2(r.x, r.y + r.h); - } else if (direction == NK_RIGHT) { - result[0] = nk_vec2(r.x, r.y); - result[1] = nk_vec2(r.x + r.w, r.y + h_half); - result[2] = nk_vec2(r.x, r.y + r.h); - } else if (direction == NK_DOWN) { - result[0] = nk_vec2(r.x, r.y); - result[1] = nk_vec2(r.x + r.w, r.y); - result[2] = nk_vec2(r.x + w_half, r.y + r.h); - } else { - result[0] = nk_vec2(r.x, r.y + h_half); - result[1] = nk_vec2(r.x + r.w, r.y); - result[2] = nk_vec2(r.x + r.w, r.y + r.h); - } -} - - - - - -/* =============================================================== - * - * UTIL - * - * ===============================================================*/ -NK_INTERN int nk_str_match_here(const char *regexp, const char *text); -NK_INTERN int nk_str_match_star(int c, const char *regexp, const char *text); -NK_LIB nk_bool nk_is_lower(int c) {return (c >= 'a' && c <= 'z') || (c >= 0xE0 && c <= 0xFF);} -NK_LIB nk_bool nk_is_upper(int c){return (c >= 'A' && c <= 'Z') || (c >= 0xC0 && c <= 0xDF);} -NK_LIB int nk_to_upper(int c) {return (c >= 'a' && c <= 'z') ? (c - ('a' - 'A')) : c;} -NK_LIB int nk_to_lower(int c) {return (c >= 'A' && c <= 'Z') ? (c - ('a' + 'A')) : c;} - -#ifndef NK_MEMCPY -#define NK_MEMCPY nk_memcopy -NK_LIB void* -nk_memcopy(void *dst0, const void *src0, nk_size length) -{ - nk_ptr t; - char *dst = (char*)dst0; - const char *src = (const char*)src0; - if (length == 0 || dst == src) - goto done; - - #define nk_word int - #define nk_wsize sizeof(nk_word) - #define nk_wmask (nk_wsize-1) - #define NK_TLOOP(s) if (t) NK_TLOOP1(s) - #define NK_TLOOP1(s) do { s; } while (--t) - - if (dst < src) { - t = (nk_ptr)src; /* only need low bits */ - if ((t | (nk_ptr)dst) & nk_wmask) { - if ((t ^ (nk_ptr)dst) & nk_wmask || length < nk_wsize) - t = length; - else - t = nk_wsize - (t & nk_wmask); - length -= t; - NK_TLOOP1(*dst++ = *src++); - } - t = length / nk_wsize; - NK_TLOOP(*(nk_word*)(void*)dst = *(const nk_word*)(const void*)src; - src += nk_wsize; dst += nk_wsize); - t = length & nk_wmask; - NK_TLOOP(*dst++ = *src++); - } else { - src += length; - dst += length; - t = (nk_ptr)src; - if ((t | (nk_ptr)dst) & nk_wmask) { - if ((t ^ (nk_ptr)dst) & nk_wmask || length <= nk_wsize) - t = length; - else - t &= nk_wmask; - length -= t; - NK_TLOOP1(*--dst = *--src); - } - t = length / nk_wsize; - NK_TLOOP(src -= nk_wsize; dst -= nk_wsize; - *(nk_word*)(void*)dst = *(const nk_word*)(const void*)src); - t = length & nk_wmask; - NK_TLOOP(*--dst = *--src); - } - #undef nk_word - #undef nk_wsize - #undef nk_wmask - #undef NK_TLOOP - #undef NK_TLOOP1 -done: - return (dst0); -} -#endif -#ifndef NK_MEMSET -#define NK_MEMSET nk_memset -NK_LIB void -nk_memset(void *ptr, int c0, nk_size size) -{ - #define nk_word unsigned - #define nk_wsize sizeof(nk_word) - #define nk_wmask (nk_wsize - 1) - nk_byte *dst = (nk_byte*)ptr; - unsigned c = 0; - nk_size t = 0; - - if ((c = (nk_byte)c0) != 0) { - c = (c << 8) | c; /* at least 16-bits */ - if (sizeof(unsigned int) > 2) - c = (c << 16) | c; /* at least 32-bits*/ - } - - /* too small of a word count */ - dst = (nk_byte*)ptr; - if (size < 3 * nk_wsize) { - while (size--) *dst++ = (nk_byte)c0; - return; - } - - /* align destination */ - if ((t = NK_PTR_TO_UINT(dst) & nk_wmask) != 0) { - t = nk_wsize -t; - size -= t; - do { - *dst++ = (nk_byte)c0; - } while (--t != 0); - } - - /* fill word */ - t = size / nk_wsize; - do { - *(nk_word*)((void*)dst) = c; - dst += nk_wsize; - } while (--t != 0); - - /* fill trailing bytes */ - t = (size & nk_wmask); - if (t != 0) { - do { - *dst++ = (nk_byte)c0; - } while (--t != 0); - } - - #undef nk_word - #undef nk_wsize - #undef nk_wmask -} -#endif -NK_LIB void -nk_zero(void *ptr, nk_size size) -{ - NK_ASSERT(ptr); - NK_MEMSET(ptr, 0, size); -} -NK_API int -nk_strlen(const char *str) -{ - int siz = 0; - NK_ASSERT(str); - while (str && *str++ != '\0') siz++; - return siz; -} -NK_API int -nk_strtoi(const char *str, const char **endptr) -{ - int neg = 1; - const char *p = str; - int value = 0; - - NK_ASSERT(str); - if (!str) return 0; - - /* skip whitespace */ - while (*p == ' ') p++; - if (*p == '-') { - neg = -1; - p++; - } - while (*p && *p >= '0' && *p <= '9') { - value = value * 10 + (int) (*p - '0'); - p++; - } - if (endptr) - *endptr = p; - return neg*value; -} -NK_API double -nk_strtod(const char *str, const char **endptr) -{ - double m; - double neg = 1.0; - const char *p = str; - double value = 0; - double number = 0; - - NK_ASSERT(str); - if (!str) return 0; - - /* skip whitespace */ - while (*p == ' ') p++; - if (*p == '-') { - neg = -1.0; - p++; - } - - while (*p && *p != '.' && *p != 'e') { - value = value * 10.0 + (double) (*p - '0'); - p++; - } - - if (*p == '.') { - p++; - for(m = 0.1; *p && *p != 'e'; p++ ) { - value = value + (double) (*p - '0') * m; - m *= 0.1; - } - } - if (*p == 'e') { - int i, pow, div; - p++; - if (*p == '-') { - div = nk_true; - p++; - } else if (*p == '+') { - div = nk_false; - p++; - } else div = nk_false; - - for (pow = 0; *p; p++) - pow = pow * 10 + (int) (*p - '0'); - - for (m = 1.0, i = 0; i < pow; i++) - m *= 10.0; - - if (div) - value /= m; - else value *= m; - } - number = value * neg; - if (endptr) - *endptr = p; - return number; -} -NK_API float -nk_strtof(const char *str, const char **endptr) -{ - float float_value; - double double_value; - double_value = NK_STRTOD(str, endptr); - float_value = (float)double_value; - return float_value; -} -NK_API int -nk_stricmp(const char *s1, const char *s2) -{ - nk_int c1,c2,d; - do { - c1 = *s1++; - c2 = *s2++; - d = c1 - c2; - while (d) { - if (c1 <= 'Z' && c1 >= 'A') { - d += ('a' - 'A'); - if (!d) break; - } - if (c2 <= 'Z' && c2 >= 'A') { - d -= ('a' - 'A'); - if (!d) break; - } - return ((d >= 0) << 1) - 1; - } - } while (c1); - return 0; -} -NK_API int -nk_stricmpn(const char *s1, const char *s2, int n) -{ - int c1,c2,d; - NK_ASSERT(n >= 0); - do { - c1 = *s1++; - c2 = *s2++; - if (!n--) return 0; - - d = c1 - c2; - while (d) { - if (c1 <= 'Z' && c1 >= 'A') { - d += ('a' - 'A'); - if (!d) break; - } - if (c2 <= 'Z' && c2 >= 'A') { - d -= ('a' - 'A'); - if (!d) break; - } - return ((d >= 0) << 1) - 1; - } - } while (c1); - return 0; -} -NK_INTERN int -nk_str_match_here(const char *regexp, const char *text) -{ - if (regexp[0] == '\0') - return 1; - if (regexp[1] == '*') - return nk_str_match_star(regexp[0], regexp+2, text); - if (regexp[0] == '$' && regexp[1] == '\0') - return *text == '\0'; - if (*text!='\0' && (regexp[0]=='.' || regexp[0]==*text)) - return nk_str_match_here(regexp+1, text+1); - return 0; -} -NK_INTERN int -nk_str_match_star(int c, const char *regexp, const char *text) -{ - do {/* a '* matches zero or more instances */ - if (nk_str_match_here(regexp, text)) - return 1; - } while (*text != '\0' && (*text++ == c || c == '.')); - return 0; -} -NK_API int -nk_strfilter(const char *text, const char *regexp) -{ - /* - c matches any literal character c - . matches any single character - ^ matches the beginning of the input string - $ matches the end of the input string - * matches zero or more occurrences of the previous character*/ - if (regexp[0] == '^') - return nk_str_match_here(regexp+1, text); - do { /* must look even if string is empty */ - if (nk_str_match_here(regexp, text)) - return 1; - } while (*text++ != '\0'); - return 0; -} -NK_API int -nk_strmatch_fuzzy_text(const char *str, int str_len, - const char *pattern, int *out_score) -{ - /* Returns true if each character in pattern is found sequentially within str - * if found then out_score is also set. Score value has no intrinsic meaning. - * Range varies with pattern. Can only compare scores with same search pattern. */ - - /* bonus for adjacent matches */ - #define NK_ADJACENCY_BONUS 5 - /* bonus if match occurs after a separator */ - #define NK_SEPARATOR_BONUS 10 - /* bonus if match is uppercase and prev is lower */ - #define NK_CAMEL_BONUS 10 - /* penalty applied for every letter in str before the first match */ - #define NK_LEADING_LETTER_PENALTY (-3) - /* maximum penalty for leading letters */ - #define NK_MAX_LEADING_LETTER_PENALTY (-9) - /* penalty for every letter that doesn't matter */ - #define NK_UNMATCHED_LETTER_PENALTY (-1) - - /* loop variables */ - int score = 0; - char const * pattern_iter = pattern; - int str_iter = 0; - int prev_matched = nk_false; - int prev_lower = nk_false; - /* true so if first letter match gets separator bonus*/ - int prev_separator = nk_true; - - /* use "best" matched letter if multiple string letters match the pattern */ - char const * best_letter = 0; - int best_letter_score = 0; - - /* loop over strings */ - NK_ASSERT(str); - NK_ASSERT(pattern); - if (!str || !str_len || !pattern) return 0; - while (str_iter < str_len) - { - const char pattern_letter = *pattern_iter; - const char str_letter = str[str_iter]; - - int next_match = *pattern_iter != '\0' && - nk_to_lower(pattern_letter) == nk_to_lower(str_letter); - int rematch = best_letter && nk_to_upper(*best_letter) == nk_to_upper(str_letter); - - int advanced = next_match && best_letter; - int pattern_repeat = best_letter && *pattern_iter != '\0'; - pattern_repeat = pattern_repeat && - nk_to_lower(*best_letter) == nk_to_lower(pattern_letter); - - if (advanced || pattern_repeat) { - score += best_letter_score; - best_letter = 0; - best_letter_score = 0; - } - - if (next_match || rematch) - { - int new_score = 0; - /* Apply penalty for each letter before the first pattern match */ - if (pattern_iter == pattern) { - int count = (int)(&str[str_iter] - str); - int penalty = NK_LEADING_LETTER_PENALTY * count; - if (penalty < NK_MAX_LEADING_LETTER_PENALTY) - penalty = NK_MAX_LEADING_LETTER_PENALTY; - - score += penalty; - } - - /* apply bonus for consecutive bonuses */ - if (prev_matched) - new_score += NK_ADJACENCY_BONUS; - - /* apply bonus for matches after a separator */ - if (prev_separator) - new_score += NK_SEPARATOR_BONUS; - - /* apply bonus across camel case boundaries */ - if (prev_lower && nk_is_upper(str_letter)) - new_score += NK_CAMEL_BONUS; - - /* update pattern iter IFF the next pattern letter was matched */ - if (next_match) - ++pattern_iter; - - /* update best letter in str which may be for a "next" letter or a rematch */ - if (new_score >= best_letter_score) { - /* apply penalty for now skipped letter */ - if (best_letter != 0) - score += NK_UNMATCHED_LETTER_PENALTY; - - best_letter = &str[str_iter]; - best_letter_score = new_score; - } - prev_matched = nk_true; - } else { - score += NK_UNMATCHED_LETTER_PENALTY; - prev_matched = nk_false; - } - - /* separators should be more easily defined */ - prev_lower = nk_is_lower(str_letter) != 0; - prev_separator = str_letter == '_' || str_letter == ' '; - - ++str_iter; - } - - /* apply score for last match */ - if (best_letter) - score += best_letter_score; - - /* did not match full pattern */ - if (*pattern_iter != '\0') - return nk_false; - - if (out_score) - *out_score = score; - return nk_true; -} -NK_API int -nk_strmatch_fuzzy_string(char const *str, char const *pattern, int *out_score) -{ - return nk_strmatch_fuzzy_text(str, nk_strlen(str), pattern, out_score); -} -NK_LIB int -nk_string_float_limit(char *string, int prec) -{ - int dot = 0; - char *c = string; - while (*c) { - if (*c == '.') { - dot = 1; - c++; - continue; - } - if (dot == (prec+1)) { - *c = 0; - break; - } - if (dot > 0) dot++; - c++; - } - return (int)(c - string); -} -NK_INTERN void -nk_strrev_ascii(char *s) -{ - int len = nk_strlen(s); - int end = len / 2; - int i = 0; - char t; - for (; i < end; ++i) { - t = s[i]; - s[i] = s[len - 1 - i]; - s[len -1 - i] = t; - } -} -NK_LIB char* -nk_itoa(char *s, long n) -{ - long i = 0; - if (n == 0) { - s[i++] = '0'; - s[i] = 0; - return s; - } - if (n < 0) { - s[i++] = '-'; - n = -n; - } - while (n > 0) { - s[i++] = (char)('0' + (n % 10)); - n /= 10; - } - s[i] = 0; - if (s[0] == '-') - ++s; - - nk_strrev_ascii(s); - return s; -} -#ifndef NK_DTOA -#define NK_DTOA nk_dtoa -NK_LIB char* -nk_dtoa(char *s, double n) -{ - int useExp = 0; - int digit = 0, m = 0, m1 = 0; - char *c = s; - int neg = 0; - - NK_ASSERT(s); - if (!s) return 0; - - if (n == 0.0) { - s[0] = '0'; s[1] = '\0'; - return s; - } - - neg = (n < 0); - if (neg) n = -n; - - /* calculate magnitude */ - m = nk_log10(n); - useExp = (m >= 14 || (neg && m >= 9) || m <= -9); - if (neg) *(c++) = '-'; - - /* set up for scientific notation */ - if (useExp) { - if (m < 0) - m -= 1; - n = n / (double)nk_pow(10.0, m); - m1 = m; - m = 0; - } - if (m < 1.0) { - m = 0; - } - - /* convert the number */ - while (n > NK_FLOAT_PRECISION || m >= 0) { - double weight = nk_pow(10.0, m); - if (weight > 0) { - double t = (double)n / weight; - digit = nk_ifloord(t); - n -= ((double)digit * weight); - *(c++) = (char)('0' + (char)digit); - } - if (m == 0 && n > 0) - *(c++) = '.'; - m--; - } - - if (useExp) { - /* convert the exponent */ - int i, j; - *(c++) = 'e'; - if (m1 > 0) { - *(c++) = '+'; - } else { - *(c++) = '-'; - m1 = -m1; - } - m = 0; - while (m1 > 0) { - *(c++) = (char)('0' + (char)(m1 % 10)); - m1 /= 10; - m++; - } - c -= m; - for (i = 0, j = m-1; i= buf_size) break; - iter++; - - /* flag arguments */ - while (*iter) { - if (*iter == '-') flag |= NK_ARG_FLAG_LEFT; - else if (*iter == '+') flag |= NK_ARG_FLAG_PLUS; - else if (*iter == ' ') flag |= NK_ARG_FLAG_SPACE; - else if (*iter == '#') flag |= NK_ARG_FLAG_NUM; - else if (*iter == '0') flag |= NK_ARG_FLAG_ZERO; - else break; - iter++; - } - - /* width argument */ - width = NK_DEFAULT; - if (*iter >= '1' && *iter <= '9') { - const char *end; - width = nk_strtoi(iter, &end); - if (end == iter) - width = -1; - else iter = end; - } else if (*iter == '*') { - width = va_arg(args, int); - iter++; - } - - /* precision argument */ - precision = NK_DEFAULT; - if (*iter == '.') { - iter++; - if (*iter == '*') { - precision = va_arg(args, int); - iter++; - } else { - const char *end; - precision = nk_strtoi(iter, &end); - if (end == iter) - precision = -1; - else iter = end; - } - } - - /* length modifier */ - if (*iter == 'h') { - if (*(iter+1) == 'h') { - arg_type = NK_ARG_TYPE_CHAR; - iter++; - } else arg_type = NK_ARG_TYPE_SHORT; - iter++; - } else if (*iter == 'l') { - arg_type = NK_ARG_TYPE_LONG; - iter++; - } else arg_type = NK_ARG_TYPE_DEFAULT; - - /* specifier */ - if (*iter == '%') { - NK_ASSERT(arg_type == NK_ARG_TYPE_DEFAULT); - NK_ASSERT(precision == NK_DEFAULT); - NK_ASSERT(width == NK_DEFAULT); - if (len < buf_size) - buf[len++] = '%'; - } else if (*iter == 's') { - /* string */ - const char *str = va_arg(args, const char*); - NK_ASSERT(str != buf && "buffer and argument are not allowed to overlap!"); - NK_ASSERT(arg_type == NK_ARG_TYPE_DEFAULT); - NK_ASSERT(precision == NK_DEFAULT); - NK_ASSERT(width == NK_DEFAULT); - if (str == buf) return -1; - while (str && *str && len < buf_size) - buf[len++] = *str++; - } else if (*iter == 'n') { - /* current length callback */ - signed int *n = va_arg(args, int*); - NK_ASSERT(arg_type == NK_ARG_TYPE_DEFAULT); - NK_ASSERT(precision == NK_DEFAULT); - NK_ASSERT(width == NK_DEFAULT); - if (n) *n = len; - } else if (*iter == 'c' || *iter == 'i' || *iter == 'd') { - /* signed integer */ - long value = 0; - const char *num_iter; - int num_len, num_print, padding; - int cur_precision = NK_MAX(precision, 1); - int cur_width = NK_MAX(width, 0); - - /* retrieve correct value type */ - if (arg_type == NK_ARG_TYPE_CHAR) - value = (signed char)va_arg(args, int); - else if (arg_type == NK_ARG_TYPE_SHORT) - value = (signed short)va_arg(args, int); - else if (arg_type == NK_ARG_TYPE_LONG) - value = va_arg(args, signed long); - else if (*iter == 'c') - value = (unsigned char)va_arg(args, int); - else value = va_arg(args, signed int); - - /* convert number to string */ - nk_itoa(number_buffer, value); - num_len = nk_strlen(number_buffer); - padding = NK_MAX(cur_width - NK_MAX(cur_precision, num_len), 0); - if ((flag & NK_ARG_FLAG_PLUS) || (flag & NK_ARG_FLAG_SPACE)) - padding = NK_MAX(padding-1, 0); - - /* fill left padding up to a total of `width` characters */ - if (!(flag & NK_ARG_FLAG_LEFT)) { - while (padding-- > 0 && (len < buf_size)) { - if ((flag & NK_ARG_FLAG_ZERO) && (precision == NK_DEFAULT)) - buf[len++] = '0'; - else buf[len++] = ' '; - } - } - - /* copy string value representation into buffer */ - if ((flag & NK_ARG_FLAG_PLUS) && value >= 0 && len < buf_size) - buf[len++] = '+'; - else if ((flag & NK_ARG_FLAG_SPACE) && value >= 0 && len < buf_size) - buf[len++] = ' '; - - /* fill up to precision number of digits with '0' */ - num_print = NK_MAX(cur_precision, num_len); - while (precision && (num_print > num_len) && (len < buf_size)) { - buf[len++] = '0'; - num_print--; - } - - /* copy string value representation into buffer */ - num_iter = number_buffer; - while (precision && *num_iter && len < buf_size) - buf[len++] = *num_iter++; - - /* fill right padding up to width characters */ - if (flag & NK_ARG_FLAG_LEFT) { - while ((padding-- > 0) && (len < buf_size)) - buf[len++] = ' '; - } - } else if (*iter == 'o' || *iter == 'x' || *iter == 'X' || *iter == 'u') { - /* unsigned integer */ - unsigned long value = 0; - int num_len = 0, num_print, padding = 0; - int cur_precision = NK_MAX(precision, 1); - int cur_width = NK_MAX(width, 0); - unsigned int base = (*iter == 'o') ? 8: (*iter == 'u')? 10: 16; - - /* print oct/hex/dec value */ - const char *upper_output_format = "0123456789ABCDEF"; - const char *lower_output_format = "0123456789abcdef"; - const char *output_format = (*iter == 'x') ? - lower_output_format: upper_output_format; - - /* retrieve correct value type */ - if (arg_type == NK_ARG_TYPE_CHAR) - value = (unsigned char)va_arg(args, int); - else if (arg_type == NK_ARG_TYPE_SHORT) - value = (unsigned short)va_arg(args, int); - else if (arg_type == NK_ARG_TYPE_LONG) - value = va_arg(args, unsigned long); - else value = va_arg(args, unsigned int); - - do { - /* convert decimal number into hex/oct number */ - int digit = output_format[value % base]; - if (num_len < NK_MAX_NUMBER_BUFFER) - number_buffer[num_len++] = (char)digit; - value /= base; - } while (value > 0); - - num_print = NK_MAX(cur_precision, num_len); - padding = NK_MAX(cur_width - NK_MAX(cur_precision, num_len), 0); - if (flag & NK_ARG_FLAG_NUM) - padding = NK_MAX(padding-1, 0); - - /* fill left padding up to a total of `width` characters */ - if (!(flag & NK_ARG_FLAG_LEFT)) { - while ((padding-- > 0) && (len < buf_size)) { - if ((flag & NK_ARG_FLAG_ZERO) && (precision == NK_DEFAULT)) - buf[len++] = '0'; - else buf[len++] = ' '; - } - } - - /* fill up to precision number of digits */ - if (num_print && (flag & NK_ARG_FLAG_NUM)) { - if ((*iter == 'o') && (len < buf_size)) { - buf[len++] = '0'; - } else if ((*iter == 'x') && ((len+1) < buf_size)) { - buf[len++] = '0'; - buf[len++] = 'x'; - } else if ((*iter == 'X') && ((len+1) < buf_size)) { - buf[len++] = '0'; - buf[len++] = 'X'; - } - } - while (precision && (num_print > num_len) && (len < buf_size)) { - buf[len++] = '0'; - num_print--; - } - - /* reverse number direction */ - while (num_len > 0) { - if (precision && (len < buf_size)) - buf[len++] = number_buffer[num_len-1]; - num_len--; - } - - /* fill right padding up to width characters */ - if (flag & NK_ARG_FLAG_LEFT) { - while ((padding-- > 0) && (len < buf_size)) - buf[len++] = ' '; - } - } else if (*iter == 'f') { - /* floating point */ - const char *num_iter; - int cur_precision = (precision < 0) ? 6: precision; - int prefix, cur_width = NK_MAX(width, 0); - double value = va_arg(args, double); - int num_len = 0, frac_len = 0, dot = 0; - int padding = 0; - - NK_ASSERT(arg_type == NK_ARG_TYPE_DEFAULT); - NK_DTOA(number_buffer, value); - num_len = nk_strlen(number_buffer); - - /* calculate padding */ - num_iter = number_buffer; - while (*num_iter && *num_iter != '.') - num_iter++; - - prefix = (*num_iter == '.')?(int)(num_iter - number_buffer)+1:0; - padding = NK_MAX(cur_width - (prefix + NK_MIN(cur_precision, num_len - prefix)) , 0); - if ((flag & NK_ARG_FLAG_PLUS) || (flag & NK_ARG_FLAG_SPACE)) - padding = NK_MAX(padding-1, 0); - - /* fill left padding up to a total of `width` characters */ - if (!(flag & NK_ARG_FLAG_LEFT)) { - while (padding-- > 0 && (len < buf_size)) { - if (flag & NK_ARG_FLAG_ZERO) - buf[len++] = '0'; - else buf[len++] = ' '; - } - } - - /* copy string value representation into buffer */ - num_iter = number_buffer; - if ((flag & NK_ARG_FLAG_PLUS) && (value >= 0) && (len < buf_size)) - buf[len++] = '+'; - else if ((flag & NK_ARG_FLAG_SPACE) && (value >= 0) && (len < buf_size)) - buf[len++] = ' '; - while (*num_iter) { - if (dot) frac_len++; - if (len < buf_size) - buf[len++] = *num_iter; - if (*num_iter == '.') dot = 1; - if (frac_len >= cur_precision) break; - num_iter++; - } - - /* fill number up to precision */ - while (frac_len < cur_precision) { - if (!dot && len < buf_size) { - buf[len++] = '.'; - dot = 1; - } - if (len < buf_size) - buf[len++] = '0'; - frac_len++; - } - - /* fill right padding up to width characters */ - if (flag & NK_ARG_FLAG_LEFT) { - while ((padding-- > 0) && (len < buf_size)) - buf[len++] = ' '; - } - } else { - /* Specifier not supported: g,G,e,E,p,z */ - NK_ASSERT(0 && "specifier is not supported!"); - return result; - } - } - buf[(len >= buf_size)?(buf_size-1):len] = 0; - result = (len >= buf_size)?-1:len; - return result; -} -#endif -NK_LIB int -nk_strfmt(char *buf, int buf_size, const char *fmt, va_list args) -{ - int result = -1; - NK_ASSERT(buf); - NK_ASSERT(buf_size); - if (!buf || !buf_size || !fmt) return 0; -#ifdef NK_INCLUDE_STANDARD_IO - result = NK_VSNPRINTF(buf, (nk_size)buf_size, fmt, args); - result = (result >= buf_size) ? -1: result; - buf[buf_size-1] = 0; -#else - result = nk_vsnprintf(buf, buf_size, fmt, args); -#endif - return result; -} -#endif -NK_API nk_hash -nk_murmur_hash(const void * key, int len, nk_hash seed) -{ - /* 32-Bit MurmurHash3: https://code.google.com/p/smhasher/wiki/MurmurHash3*/ - #define NK_ROTL(x,r) ((x) << (r) | ((x) >> (32 - r))) - - nk_uint h1 = seed; - nk_uint k1; - const nk_byte *data = (const nk_byte*)key; - const nk_byte *keyptr = data; - nk_byte *k1ptr; - const int bsize = sizeof(k1); - const int nblocks = len/4; - - const nk_uint c1 = 0xcc9e2d51; - const nk_uint c2 = 0x1b873593; - const nk_byte *tail; - int i; - - /* body */ - if (!key) return 0; - for (i = 0; i < nblocks; ++i, keyptr += bsize) { - k1ptr = (nk_byte*)&k1; - k1ptr[0] = keyptr[0]; - k1ptr[1] = keyptr[1]; - k1ptr[2] = keyptr[2]; - k1ptr[3] = keyptr[3]; - - k1 *= c1; - k1 = NK_ROTL(k1,15); - k1 *= c2; - - h1 ^= k1; - h1 = NK_ROTL(h1,13); - h1 = h1*5+0xe6546b64; - } - - /* tail */ - tail = (const nk_byte*)(data + nblocks*4); - k1 = 0; - switch (len & 3) { - case 3: k1 ^= (nk_uint)(tail[2] << 16); /* fallthrough */ - case 2: k1 ^= (nk_uint)(tail[1] << 8u); /* fallthrough */ - case 1: k1 ^= tail[0]; - k1 *= c1; - k1 = NK_ROTL(k1,15); - k1 *= c2; - h1 ^= k1; - break; - default: break; - } - - /* finalization */ - h1 ^= (nk_uint)len; - /* fmix32 */ - h1 ^= h1 >> 16; - h1 *= 0x85ebca6b; - h1 ^= h1 >> 13; - h1 *= 0xc2b2ae35; - h1 ^= h1 >> 16; - - #undef NK_ROTL - return h1; -} -#ifdef NK_INCLUDE_STANDARD_IO -NK_LIB char* -nk_file_load(const char* path, nk_size* siz, struct nk_allocator *alloc) -{ - char *buf; - FILE *fd; - long ret; - - NK_ASSERT(path); - NK_ASSERT(siz); - NK_ASSERT(alloc); - if (!path || !siz || !alloc) - return 0; - - fd = fopen(path, "rb"); - if (!fd) return 0; - fseek(fd, 0, SEEK_END); - ret = ftell(fd); - if (ret < 0) { - fclose(fd); - return 0; - } - *siz = (nk_size)ret; - fseek(fd, 0, SEEK_SET); - buf = (char*)alloc->alloc(alloc->userdata,0, *siz); - NK_ASSERT(buf); - if (!buf) { - fclose(fd); - return 0; - } - *siz = (nk_size)fread(buf, 1,*siz, fd); - fclose(fd); - return buf; -} -#endif -NK_LIB int -nk_text_clamp(const struct nk_user_font *font, const char *text, - int text_len, float space, int *glyphs, float *text_width, - nk_rune *sep_list, int sep_count) -{ - int i = 0; - int glyph_len = 0; - float last_width = 0; - nk_rune unicode = 0; - float width = 0; - int len = 0; - int g = 0; - float s; - - int sep_len = 0; - int sep_g = 0; - float sep_width = 0; - sep_count = NK_MAX(sep_count,0); - - glyph_len = nk_utf_decode(text, &unicode, text_len); - while (glyph_len && (width < space) && (len < text_len)) { - len += glyph_len; - s = font->width(font->userdata, font->height, text, len); - for (i = 0; i < sep_count; ++i) { - if (unicode != sep_list[i]) continue; - sep_width = last_width = width; - sep_g = g+1; - sep_len = len; - break; - } - if (i == sep_count){ - last_width = sep_width = width; - sep_g = g+1; - } - width = s; - glyph_len = nk_utf_decode(&text[len], &unicode, text_len - len); - g++; - } - if (len >= text_len) { - *glyphs = g; - *text_width = last_width; - return len; - } else { - *glyphs = sep_g; - *text_width = sep_width; - return (!sep_len) ? len: sep_len; - } -} -NK_LIB struct nk_vec2 -nk_text_calculate_text_bounds(const struct nk_user_font *font, - const char *begin, int byte_len, float row_height, const char **remaining, - struct nk_vec2 *out_offset, int *glyphs, int op) -{ - float line_height = row_height; - struct nk_vec2 text_size = nk_vec2(0,0); - float line_width = 0.0f; - - float glyph_width; - int glyph_len = 0; - nk_rune unicode = 0; - int text_len = 0; - if (!begin || byte_len <= 0 || !font) - return nk_vec2(0,row_height); - - glyph_len = nk_utf_decode(begin, &unicode, byte_len); - if (!glyph_len) return text_size; - glyph_width = font->width(font->userdata, font->height, begin, glyph_len); - - *glyphs = 0; - while ((text_len < byte_len) && glyph_len) { - if (unicode == '\n') { - text_size.x = NK_MAX(text_size.x, line_width); - text_size.y += line_height; - line_width = 0; - *glyphs+=1; - if (op == NK_STOP_ON_NEW_LINE) - break; - - text_len++; - glyph_len = nk_utf_decode(begin + text_len, &unicode, byte_len-text_len); - continue; - } - - if (unicode == '\r') { - text_len++; - *glyphs+=1; - glyph_len = nk_utf_decode(begin + text_len, &unicode, byte_len-text_len); - continue; - } - - *glyphs = *glyphs + 1; - text_len += glyph_len; - line_width += (float)glyph_width; - glyph_len = nk_utf_decode(begin + text_len, &unicode, byte_len-text_len); - glyph_width = font->width(font->userdata, font->height, begin+text_len, glyph_len); - continue; - } - - if (text_size.x < line_width) - text_size.x = line_width; - if (out_offset) - *out_offset = nk_vec2(line_width, text_size.y + line_height); - if (line_width > 0 || text_size.y == 0.0f) - text_size.y += line_height; - if (remaining) - *remaining = begin+text_len; - return text_size; -} - - - - - -/* ============================================================== - * - * COLOR - * - * ===============================================================*/ -NK_INTERN int -nk_parse_hex(const char *p, int length) -{ - int i = 0; - int len = 0; - while (len < length) { - i <<= 4; - if (p[len] >= 'a' && p[len] <= 'f') - i += ((p[len] - 'a') + 10); - else if (p[len] >= 'A' && p[len] <= 'F') - i += ((p[len] - 'A') + 10); - else i += (p[len] - '0'); - len++; - } - return i; -} -NK_API struct nk_color -nk_rgb_factor(struct nk_color col, const float factor) -{ - if (factor == 1.0f) - return col; - col.r = (nk_byte)(col.r * factor); - col.g = (nk_byte)(col.g * factor); - col.b = (nk_byte)(col.b * factor); - return col; -} -NK_API struct nk_color -nk_rgba(int r, int g, int b, int a) -{ - struct nk_color ret; - ret.r = (nk_byte)NK_CLAMP(0, r, 255); - ret.g = (nk_byte)NK_CLAMP(0, g, 255); - ret.b = (nk_byte)NK_CLAMP(0, b, 255); - ret.a = (nk_byte)NK_CLAMP(0, a, 255); - return ret; -} -NK_API struct nk_color -nk_rgb_hex(const char *rgb) -{ - struct nk_color col; - const char *c = rgb; - if (*c == '#') c++; - col.r = (nk_byte)nk_parse_hex(c, 2); - col.g = (nk_byte)nk_parse_hex(c+2, 2); - col.b = (nk_byte)nk_parse_hex(c+4, 2); - col.a = 255; - return col; -} -NK_API struct nk_color -nk_rgba_hex(const char *rgb) -{ - struct nk_color col; - const char *c = rgb; - if (*c == '#') c++; - col.r = (nk_byte)nk_parse_hex(c, 2); - col.g = (nk_byte)nk_parse_hex(c+2, 2); - col.b = (nk_byte)nk_parse_hex(c+4, 2); - col.a = (nk_byte)nk_parse_hex(c+6, 2); - return col; -} -NK_API void -nk_color_hex_rgba(char *output, struct nk_color col) -{ - #define NK_TO_HEX(i) ((i) <= 9 ? '0' + (i): 'A' - 10 + (i)) - output[0] = (char)NK_TO_HEX((col.r & 0xF0) >> 4); - output[1] = (char)NK_TO_HEX((col.r & 0x0F)); - output[2] = (char)NK_TO_HEX((col.g & 0xF0) >> 4); - output[3] = (char)NK_TO_HEX((col.g & 0x0F)); - output[4] = (char)NK_TO_HEX((col.b & 0xF0) >> 4); - output[5] = (char)NK_TO_HEX((col.b & 0x0F)); - output[6] = (char)NK_TO_HEX((col.a & 0xF0) >> 4); - output[7] = (char)NK_TO_HEX((col.a & 0x0F)); - output[8] = '\0'; - #undef NK_TO_HEX -} -NK_API void -nk_color_hex_rgb(char *output, struct nk_color col) -{ - #define NK_TO_HEX(i) ((i) <= 9 ? '0' + (i): 'A' - 10 + (i)) - output[0] = (char)NK_TO_HEX((col.r & 0xF0) >> 4); - output[1] = (char)NK_TO_HEX((col.r & 0x0F)); - output[2] = (char)NK_TO_HEX((col.g & 0xF0) >> 4); - output[3] = (char)NK_TO_HEX((col.g & 0x0F)); - output[4] = (char)NK_TO_HEX((col.b & 0xF0) >> 4); - output[5] = (char)NK_TO_HEX((col.b & 0x0F)); - output[6] = '\0'; - #undef NK_TO_HEX -} -NK_API struct nk_color -nk_rgba_iv(const int *c) -{ - return nk_rgba(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_color -nk_rgba_bv(const nk_byte *c) -{ - return nk_rgba(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_color -nk_rgb(int r, int g, int b) -{ - struct nk_color ret; - ret.r = (nk_byte)NK_CLAMP(0, r, 255); - ret.g = (nk_byte)NK_CLAMP(0, g, 255); - ret.b = (nk_byte)NK_CLAMP(0, b, 255); - ret.a = (nk_byte)255; - return ret; -} -NK_API struct nk_color -nk_rgb_iv(const int *c) -{ - return nk_rgb(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_rgb_bv(const nk_byte* c) -{ - return nk_rgb(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_rgba_u32(nk_uint in) -{ - struct nk_color ret; - ret.r = (in & 0xFF); - ret.g = ((in >> 8) & 0xFF); - ret.b = ((in >> 16) & 0xFF); - ret.a = (nk_byte)((in >> 24) & 0xFF); - return ret; -} -NK_API struct nk_color -nk_rgba_f(float r, float g, float b, float a) -{ - struct nk_color ret; - ret.r = (nk_byte)(NK_SATURATE(r) * 255.0f); - ret.g = (nk_byte)(NK_SATURATE(g) * 255.0f); - ret.b = (nk_byte)(NK_SATURATE(b) * 255.0f); - ret.a = (nk_byte)(NK_SATURATE(a) * 255.0f); - return ret; -} -NK_API struct nk_color -nk_rgba_fv(const float *c) -{ - return nk_rgba_f(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_color -nk_rgba_cf(struct nk_colorf c) -{ - return nk_rgba_f(c.r, c.g, c.b, c.a); -} -NK_API struct nk_color -nk_rgb_f(float r, float g, float b) -{ - struct nk_color ret; - ret.r = (nk_byte)(NK_SATURATE(r) * 255.0f); - ret.g = (nk_byte)(NK_SATURATE(g) * 255.0f); - ret.b = (nk_byte)(NK_SATURATE(b) * 255.0f); - ret.a = 255; - return ret; -} -NK_API struct nk_color -nk_rgb_fv(const float *c) -{ - return nk_rgb_f(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_rgb_cf(struct nk_colorf c) -{ - return nk_rgb_f(c.r, c.g, c.b); -} -NK_API struct nk_color -nk_hsv(int h, int s, int v) -{ - return nk_hsva(h, s, v, 255); -} -NK_API struct nk_color -nk_hsv_iv(const int *c) -{ - return nk_hsv(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_hsv_bv(const nk_byte *c) -{ - return nk_hsv(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_hsv_f(float h, float s, float v) -{ - return nk_hsva_f(h, s, v, 1.0f); -} -NK_API struct nk_color -nk_hsv_fv(const float *c) -{ - return nk_hsv_f(c[0], c[1], c[2]); -} -NK_API struct nk_color -nk_hsva(int h, int s, int v, int a) -{ - float hf = ((float)NK_CLAMP(0, h, 255)) / 255.0f; - float sf = ((float)NK_CLAMP(0, s, 255)) / 255.0f; - float vf = ((float)NK_CLAMP(0, v, 255)) / 255.0f; - float af = ((float)NK_CLAMP(0, a, 255)) / 255.0f; - return nk_hsva_f(hf, sf, vf, af); -} -NK_API struct nk_color -nk_hsva_iv(const int *c) -{ - return nk_hsva(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_color -nk_hsva_bv(const nk_byte *c) -{ - return nk_hsva(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_colorf -nk_hsva_colorf(float h, float s, float v, float a) -{ - int i; - float p, q, t, f; - struct nk_colorf out = {0,0,0,0}; - if (s <= 0.0f) { - out.r = v; out.g = v; out.b = v; out.a = a; - return out; - } - h = h / (60.0f/360.0f); - i = (int)h; - f = h - (float)i; - p = v * (1.0f - s); - q = v * (1.0f - (s * f)); - t = v * (1.0f - s * (1.0f - f)); - - switch (i) { - case 0: default: out.r = v; out.g = t; out.b = p; break; - case 1: out.r = q; out.g = v; out.b = p; break; - case 2: out.r = p; out.g = v; out.b = t; break; - case 3: out.r = p; out.g = q; out.b = v; break; - case 4: out.r = t; out.g = p; out.b = v; break; - case 5: out.r = v; out.g = p; out.b = q; break;} - out.a = a; - return out; -} -NK_API struct nk_colorf -nk_hsva_colorfv(float *c) -{ - return nk_hsva_colorf(c[0], c[1], c[2], c[3]); -} -NK_API struct nk_color -nk_hsva_f(float h, float s, float v, float a) -{ - struct nk_colorf c = nk_hsva_colorf(h, s, v, a); - return nk_rgba_f(c.r, c.g, c.b, c.a); -} -NK_API struct nk_color -nk_hsva_fv(const float *c) -{ - return nk_hsva_f(c[0], c[1], c[2], c[3]); -} -NK_API nk_uint -nk_color_u32(struct nk_color in) -{ - nk_uint out = (nk_uint)in.r; - out |= ((nk_uint)in.g << 8); - out |= ((nk_uint)in.b << 16); - out |= ((nk_uint)in.a << 24); - return out; -} -NK_API void -nk_color_f(float *r, float *g, float *b, float *a, struct nk_color in) -{ - NK_STORAGE const float s = 1.0f/255.0f; - *r = (float)in.r * s; - *g = (float)in.g * s; - *b = (float)in.b * s; - *a = (float)in.a * s; -} -NK_API void -nk_color_fv(float *c, struct nk_color in) -{ - nk_color_f(&c[0], &c[1], &c[2], &c[3], in); -} -NK_API struct nk_colorf -nk_color_cf(struct nk_color in) -{ - struct nk_colorf o; - nk_color_f(&o.r, &o.g, &o.b, &o.a, in); - return o; -} -NK_API void -nk_color_d(double *r, double *g, double *b, double *a, struct nk_color in) -{ - NK_STORAGE const double s = 1.0/255.0; - *r = (double)in.r * s; - *g = (double)in.g * s; - *b = (double)in.b * s; - *a = (double)in.a * s; -} -NK_API void -nk_color_dv(double *c, struct nk_color in) -{ - nk_color_d(&c[0], &c[1], &c[2], &c[3], in); -} -NK_API void -nk_color_hsv_f(float *out_h, float *out_s, float *out_v, struct nk_color in) -{ - float a; - nk_color_hsva_f(out_h, out_s, out_v, &a, in); -} -NK_API void -nk_color_hsv_fv(float *out, struct nk_color in) -{ - float a; - nk_color_hsva_f(&out[0], &out[1], &out[2], &a, in); -} -NK_API void -nk_colorf_hsva_f(float *out_h, float *out_s, - float *out_v, float *out_a, struct nk_colorf in) -{ - float chroma; - float K = 0.0f; - if (in.g < in.b) { - const float t = in.g; in.g = in.b; in.b = t; - K = -1.f; - } - if (in.r < in.g) { - const float t = in.r; in.r = in.g; in.g = t; - K = -2.f/6.0f - K; - } - chroma = in.r - ((in.g < in.b) ? in.g: in.b); - *out_h = NK_ABS(K + (in.g - in.b)/(6.0f * chroma + 1e-20f)); - *out_s = chroma / (in.r + 1e-20f); - *out_v = in.r; - *out_a = in.a; - -} -NK_API void -nk_colorf_hsva_fv(float *hsva, struct nk_colorf in) -{ - nk_colorf_hsva_f(&hsva[0], &hsva[1], &hsva[2], &hsva[3], in); -} -NK_API void -nk_color_hsva_f(float *out_h, float *out_s, - float *out_v, float *out_a, struct nk_color in) -{ - struct nk_colorf col; - nk_color_f(&col.r,&col.g,&col.b,&col.a, in); - nk_colorf_hsva_f(out_h, out_s, out_v, out_a, col); -} -NK_API void -nk_color_hsva_fv(float *out, struct nk_color in) -{ - nk_color_hsva_f(&out[0], &out[1], &out[2], &out[3], in); -} -NK_API void -nk_color_hsva_i(int *out_h, int *out_s, int *out_v, - int *out_a, struct nk_color in) -{ - float h,s,v,a; - nk_color_hsva_f(&h, &s, &v, &a, in); - *out_h = (nk_byte)(h * 255.0f); - *out_s = (nk_byte)(s * 255.0f); - *out_v = (nk_byte)(v * 255.0f); - *out_a = (nk_byte)(a * 255.0f); -} -NK_API void -nk_color_hsva_iv(int *out, struct nk_color in) -{ - nk_color_hsva_i(&out[0], &out[1], &out[2], &out[3], in); -} -NK_API void -nk_color_hsva_bv(nk_byte *out, struct nk_color in) -{ - int tmp[4]; - nk_color_hsva_i(&tmp[0], &tmp[1], &tmp[2], &tmp[3], in); - out[0] = (nk_byte)tmp[0]; - out[1] = (nk_byte)tmp[1]; - out[2] = (nk_byte)tmp[2]; - out[3] = (nk_byte)tmp[3]; -} -NK_API void -nk_color_hsva_b(nk_byte *h, nk_byte *s, nk_byte *v, nk_byte *a, struct nk_color in) -{ - int tmp[4]; - nk_color_hsva_i(&tmp[0], &tmp[1], &tmp[2], &tmp[3], in); - *h = (nk_byte)tmp[0]; - *s = (nk_byte)tmp[1]; - *v = (nk_byte)tmp[2]; - *a = (nk_byte)tmp[3]; -} -NK_API void -nk_color_hsv_i(int *out_h, int *out_s, int *out_v, struct nk_color in) -{ - int a; - nk_color_hsva_i(out_h, out_s, out_v, &a, in); -} -NK_API void -nk_color_hsv_b(nk_byte *out_h, nk_byte *out_s, nk_byte *out_v, struct nk_color in) -{ - int tmp[4]; - nk_color_hsva_i(&tmp[0], &tmp[1], &tmp[2], &tmp[3], in); - *out_h = (nk_byte)tmp[0]; - *out_s = (nk_byte)tmp[1]; - *out_v = (nk_byte)tmp[2]; -} -NK_API void -nk_color_hsv_iv(int *out, struct nk_color in) -{ - nk_color_hsv_i(&out[0], &out[1], &out[2], in); -} -NK_API void -nk_color_hsv_bv(nk_byte *out, struct nk_color in) -{ - int tmp[4]; - nk_color_hsv_i(&tmp[0], &tmp[1], &tmp[2], in); - out[0] = (nk_byte)tmp[0]; - out[1] = (nk_byte)tmp[1]; - out[2] = (nk_byte)tmp[2]; -} - - - - - -/* =============================================================== - * - * UTF-8 - * - * ===============================================================*/ -NK_GLOBAL const nk_byte nk_utfbyte[NK_UTF_SIZE+1] = {0x80, 0, 0xC0, 0xE0, 0xF0}; -NK_GLOBAL const nk_byte nk_utfmask[NK_UTF_SIZE+1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8}; -NK_GLOBAL const nk_uint nk_utfmin[NK_UTF_SIZE+1] = {0, 0, 0x80, 0x800, 0x10000}; -NK_GLOBAL const nk_uint nk_utfmax[NK_UTF_SIZE+1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF}; - -NK_INTERN int -nk_utf_validate(nk_rune *u, int i) -{ - NK_ASSERT(u); - if (!u) return 0; - if (!NK_BETWEEN(*u, nk_utfmin[i], nk_utfmax[i]) || - NK_BETWEEN(*u, 0xD800, 0xDFFF)) - *u = NK_UTF_INVALID; - for (i = 1; *u > nk_utfmax[i]; ++i); - return i; -} -NK_INTERN nk_rune -nk_utf_decode_byte(char c, int *i) -{ - NK_ASSERT(i); - if (!i) return 0; - for(*i = 0; *i < (int)NK_LEN(nk_utfmask); ++(*i)) { - if (((nk_byte)c & nk_utfmask[*i]) == nk_utfbyte[*i]) - return (nk_byte)(c & ~nk_utfmask[*i]); - } - return 0; -} -NK_API int -nk_utf_decode(const char *c, nk_rune *u, int clen) -{ - int i, j, len, type=0; - nk_rune udecoded; - - NK_ASSERT(c); - NK_ASSERT(u); - - if (!c || !u) return 0; - if (!clen) return 0; - *u = NK_UTF_INVALID; - - udecoded = nk_utf_decode_byte(c[0], &len); - if (!NK_BETWEEN(len, 1, NK_UTF_SIZE)) - return 1; - - for (i = 1, j = 1; i < clen && j < len; ++i, ++j) { - udecoded = (udecoded << 6) | nk_utf_decode_byte(c[i], &type); - if (type != 0) - return j; - } - if (j < len) - return 0; - *u = udecoded; - nk_utf_validate(u, len); - return len; -} -NK_INTERN char -nk_utf_encode_byte(nk_rune u, int i) -{ - return (char)((nk_utfbyte[i]) | ((nk_byte)u & ~nk_utfmask[i])); -} -NK_API int -nk_utf_encode(nk_rune u, char *c, int clen) -{ - int len, i; - len = nk_utf_validate(&u, 0); - if (clen < len || !len || len > NK_UTF_SIZE) - return 0; - - for (i = len - 1; i != 0; --i) { - c[i] = nk_utf_encode_byte(u, 0); - u >>= 6; - } - c[0] = nk_utf_encode_byte(u, len); - return len; -} -NK_API int -nk_utf_len(const char *str, int len) -{ - const char *text; - int glyphs = 0; - int text_len; - int glyph_len; - int src_len = 0; - nk_rune unicode; - - NK_ASSERT(str); - if (!str || !len) return 0; - - text = str; - text_len = len; - glyph_len = nk_utf_decode(text, &unicode, text_len); - while (glyph_len && src_len < len) { - glyphs++; - src_len = src_len + glyph_len; - glyph_len = nk_utf_decode(text + src_len, &unicode, text_len - src_len); - } - return glyphs; -} -NK_API const char* -nk_utf_at(const char *buffer, int length, int index, - nk_rune *unicode, int *len) -{ - int i = 0; - int src_len = 0; - int glyph_len = 0; - const char *text; - int text_len; - - NK_ASSERT(buffer); - NK_ASSERT(unicode); - NK_ASSERT(len); - - if (!buffer || !unicode || !len) return 0; - if (index < 0) { - *unicode = NK_UTF_INVALID; - *len = 0; - return 0; - } - - text = buffer; - text_len = length; - glyph_len = nk_utf_decode(text, unicode, text_len); - while (glyph_len) { - if (i == index) { - *len = glyph_len; - break; - } - - i++; - src_len = src_len + glyph_len; - glyph_len = nk_utf_decode(text + src_len, unicode, text_len - src_len); - } - if (i != index) return 0; - return buffer + src_len; -} - - - - - -/* ============================================================== - * - * BUFFER - * - * ===============================================================*/ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_LIB void* -nk_malloc(nk_handle unused, void *old,nk_size size) -{ - NK_UNUSED(unused); - NK_UNUSED(old); - return malloc(size); -} -NK_LIB void -nk_mfree(nk_handle unused, void *ptr) -{ - NK_UNUSED(unused); - free(ptr); -} -NK_API void -nk_buffer_init_default(struct nk_buffer *buffer) -{ - struct nk_allocator alloc; - alloc.userdata.ptr = 0; - alloc.alloc = nk_malloc; - alloc.free = nk_mfree; - nk_buffer_init(buffer, &alloc, NK_BUFFER_DEFAULT_INITIAL_SIZE); -} -#endif - -NK_API void -nk_buffer_init(struct nk_buffer *b, const struct nk_allocator *a, - nk_size initial_size) -{ - NK_ASSERT(b); - NK_ASSERT(a); - NK_ASSERT(initial_size); - if (!b || !a || !initial_size) return; - - nk_zero(b, sizeof(*b)); - b->type = NK_BUFFER_DYNAMIC; - b->memory.ptr = a->alloc(a->userdata,0, initial_size); - b->memory.size = initial_size; - b->size = initial_size; - b->grow_factor = 2.0f; - b->pool = *a; -} -NK_API void -nk_buffer_init_fixed(struct nk_buffer *b, void *m, nk_size size) -{ - NK_ASSERT(b); - NK_ASSERT(m); - NK_ASSERT(size); - if (!b || !m || !size) return; - - nk_zero(b, sizeof(*b)); - b->type = NK_BUFFER_FIXED; - b->memory.ptr = m; - b->memory.size = size; - b->size = size; -} -NK_LIB void* -nk_buffer_align(void *unaligned, - nk_size align, nk_size *alignment, - enum nk_buffer_allocation_type type) -{ - void *memory = 0; - switch (type) { - default: - case NK_BUFFER_MAX: - case NK_BUFFER_FRONT: - if (align) { - memory = NK_ALIGN_PTR(unaligned, align); - *alignment = (nk_size)((nk_byte*)memory - (nk_byte*)unaligned); - } else { - memory = unaligned; - *alignment = 0; - } - break; - case NK_BUFFER_BACK: - if (align) { - memory = NK_ALIGN_PTR_BACK(unaligned, align); - *alignment = (nk_size)((nk_byte*)unaligned - (nk_byte*)memory); - } else { - memory = unaligned; - *alignment = 0; - } - break; - } - return memory; -} -NK_LIB void* -nk_buffer_realloc(struct nk_buffer *b, nk_size capacity, nk_size *size) -{ - void *temp; - nk_size buffer_size; - - NK_ASSERT(b); - NK_ASSERT(size); - if (!b || !size || !b->pool.alloc || !b->pool.free) - return 0; - - buffer_size = b->memory.size; - temp = b->pool.alloc(b->pool.userdata, b->memory.ptr, capacity); - NK_ASSERT(temp); - if (!temp) return 0; - - *size = capacity; - if (temp != b->memory.ptr) { - NK_MEMCPY(temp, b->memory.ptr, buffer_size); - b->pool.free(b->pool.userdata, b->memory.ptr); - } - - if (b->size == buffer_size) { - /* no back buffer so just set correct size */ - b->size = capacity; - return temp; - } else { - /* copy back buffer to the end of the new buffer */ - void *dst, *src; - nk_size back_size; - back_size = buffer_size - b->size; - dst = nk_ptr_add(void, temp, capacity - back_size); - src = nk_ptr_add(void, temp, b->size); - NK_MEMCPY(dst, src, back_size); - b->size = capacity - back_size; - } - return temp; -} -NK_LIB void* -nk_buffer_alloc(struct nk_buffer *b, enum nk_buffer_allocation_type type, - nk_size size, nk_size align) -{ - int full; - nk_size alignment; - void *unaligned; - void *memory; - - NK_ASSERT(b); - NK_ASSERT(size); - if (!b || !size) return 0; - b->needed += size; - - /* calculate total size with needed alignment + size */ - if (type == NK_BUFFER_FRONT) - unaligned = nk_ptr_add(void, b->memory.ptr, b->allocated); - else unaligned = nk_ptr_add(void, b->memory.ptr, b->size - size); - memory = nk_buffer_align(unaligned, align, &alignment, type); - - /* check if buffer has enough memory*/ - if (type == NK_BUFFER_FRONT) - full = ((b->allocated + size + alignment) > b->size); - else full = ((b->size - NK_MIN(b->size,(size + alignment))) <= b->allocated); - - if (full) { - nk_size capacity; - if (b->type != NK_BUFFER_DYNAMIC) - return 0; - NK_ASSERT(b->pool.alloc && b->pool.free); - if (b->type != NK_BUFFER_DYNAMIC || !b->pool.alloc || !b->pool.free) - return 0; - - /* buffer is full so allocate bigger buffer if dynamic */ - capacity = (nk_size)((float)b->memory.size * b->grow_factor); - capacity = NK_MAX(capacity, nk_round_up_pow2((nk_uint)(b->allocated + size))); - b->memory.ptr = nk_buffer_realloc(b, capacity, &b->memory.size); - if (!b->memory.ptr) return 0; - - /* align newly allocated pointer */ - if (type == NK_BUFFER_FRONT) - unaligned = nk_ptr_add(void, b->memory.ptr, b->allocated); - else unaligned = nk_ptr_add(void, b->memory.ptr, b->size - size); - memory = nk_buffer_align(unaligned, align, &alignment, type); - } - if (type == NK_BUFFER_FRONT) - b->allocated += size + alignment; - else b->size -= (size + alignment); - b->needed += alignment; - b->calls++; - return memory; -} -NK_API void -nk_buffer_push(struct nk_buffer *b, enum nk_buffer_allocation_type type, - const void *memory, nk_size size, nk_size align) -{ - void *mem = nk_buffer_alloc(b, type, size, align); - if (!mem) return; - NK_MEMCPY(mem, memory, size); -} -NK_API void -nk_buffer_mark(struct nk_buffer *buffer, enum nk_buffer_allocation_type type) -{ - NK_ASSERT(buffer); - if (!buffer) return; - buffer->marker[type].active = nk_true; - if (type == NK_BUFFER_BACK) - buffer->marker[type].offset = buffer->size; - else buffer->marker[type].offset = buffer->allocated; -} -NK_API void -nk_buffer_reset(struct nk_buffer *buffer, enum nk_buffer_allocation_type type) -{ - NK_ASSERT(buffer); - if (!buffer) return; - if (type == NK_BUFFER_BACK) { - /* reset back buffer either back to marker or empty */ - buffer->needed -= (buffer->memory.size - buffer->marker[type].offset); - if (buffer->marker[type].active) - buffer->size = buffer->marker[type].offset; - else buffer->size = buffer->memory.size; - buffer->marker[type].active = nk_false; - } else { - /* reset front buffer either back to back marker or empty */ - buffer->needed -= (buffer->allocated - buffer->marker[type].offset); - if (buffer->marker[type].active) - buffer->allocated = buffer->marker[type].offset; - else buffer->allocated = 0; - buffer->marker[type].active = nk_false; - } -} -NK_API void -nk_buffer_clear(struct nk_buffer *b) -{ - NK_ASSERT(b); - if (!b) return; - b->allocated = 0; - b->size = b->memory.size; - b->calls = 0; - b->needed = 0; -} -NK_API void -nk_buffer_free(struct nk_buffer *b) -{ - NK_ASSERT(b); - if (!b || !b->memory.ptr) return; - if (b->type == NK_BUFFER_FIXED) return; - if (!b->pool.free) return; - NK_ASSERT(b->pool.free); - b->pool.free(b->pool.userdata, b->memory.ptr); -} -NK_API void -nk_buffer_info(struct nk_memory_status *s, struct nk_buffer *b) -{ - NK_ASSERT(b); - NK_ASSERT(s); - if (!s || !b) return; - s->allocated = b->allocated; - s->size = b->memory.size; - s->needed = b->needed; - s->memory = b->memory.ptr; - s->calls = b->calls; -} -NK_API void* -nk_buffer_memory(struct nk_buffer *buffer) -{ - NK_ASSERT(buffer); - if (!buffer) return 0; - return buffer->memory.ptr; -} -NK_API const void* -nk_buffer_memory_const(const struct nk_buffer *buffer) -{ - NK_ASSERT(buffer); - if (!buffer) return 0; - return buffer->memory.ptr; -} -NK_API nk_size -nk_buffer_total(struct nk_buffer *buffer) -{ - NK_ASSERT(buffer); - if (!buffer) return 0; - return buffer->memory.size; -} - - - - - -/* =============================================================== - * - * STRING - * - * ===============================================================*/ -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void -nk_str_init_default(struct nk_str *str) -{ - struct nk_allocator alloc; - alloc.userdata.ptr = 0; - alloc.alloc = nk_malloc; - alloc.free = nk_mfree; - nk_buffer_init(&str->buffer, &alloc, 32); - str->len = 0; -} -#endif - -NK_API void -nk_str_init(struct nk_str *str, const struct nk_allocator *alloc, nk_size size) -{ - nk_buffer_init(&str->buffer, alloc, size); - str->len = 0; -} -NK_API void -nk_str_init_fixed(struct nk_str *str, void *memory, nk_size size) -{ - nk_buffer_init_fixed(&str->buffer, memory, size); - str->len = 0; -} -NK_API int -nk_str_append_text_char(struct nk_str *s, const char *str, int len) -{ - char *mem; - NK_ASSERT(s); - NK_ASSERT(str); - if (!s || !str || !len) return 0; - mem = (char*)nk_buffer_alloc(&s->buffer, NK_BUFFER_FRONT, (nk_size)len * sizeof(char), 0); - if (!mem) return 0; - NK_MEMCPY(mem, str, (nk_size)len * sizeof(char)); - s->len += nk_utf_len(str, len); - return len; -} -NK_API int -nk_str_append_str_char(struct nk_str *s, const char *str) -{ - return nk_str_append_text_char(s, str, nk_strlen(str)); -} -NK_API int -nk_str_append_text_utf8(struct nk_str *str, const char *text, int len) -{ - int i = 0; - int byte_len = 0; - nk_rune unicode; - if (!str || !text || !len) return 0; - for (i = 0; i < len; ++i) - byte_len += nk_utf_decode(text+byte_len, &unicode, 4); - nk_str_append_text_char(str, text, byte_len); - return len; -} -NK_API int -nk_str_append_str_utf8(struct nk_str *str, const char *text) -{ - int byte_len = 0; - int num_runes = 0; - int glyph_len = 0; - nk_rune unicode; - if (!str || !text) return 0; - - glyph_len = byte_len = nk_utf_decode(text+byte_len, &unicode, 4); - while (unicode != '\0' && glyph_len) { - glyph_len = nk_utf_decode(text+byte_len, &unicode, 4); - byte_len += glyph_len; - num_runes++; - } - nk_str_append_text_char(str, text, byte_len); - return num_runes; -} -NK_API int -nk_str_append_text_runes(struct nk_str *str, const nk_rune *text, int len) -{ - int i = 0; - int byte_len = 0; - nk_glyph glyph; - - NK_ASSERT(str); - if (!str || !text || !len) return 0; - for (i = 0; i < len; ++i) { - byte_len = nk_utf_encode(text[i], glyph, NK_UTF_SIZE); - if (!byte_len) break; - nk_str_append_text_char(str, glyph, byte_len); - } - return len; -} -NK_API int -nk_str_append_str_runes(struct nk_str *str, const nk_rune *runes) -{ - int i = 0; - nk_glyph glyph; - int byte_len; - NK_ASSERT(str); - if (!str || !runes) return 0; - while (runes[i] != '\0') { - byte_len = nk_utf_encode(runes[i], glyph, NK_UTF_SIZE); - nk_str_append_text_char(str, glyph, byte_len); - i++; - } - return i; -} -NK_API int -nk_str_insert_at_char(struct nk_str *s, int pos, const char *str, int len) -{ - int i; - void *mem; - char *src; - char *dst; - - int copylen; - NK_ASSERT(s); - NK_ASSERT(str); - NK_ASSERT(len >= 0); - if (!s || !str || !len || (nk_size)pos > s->buffer.allocated) return 0; - if ((s->buffer.allocated + (nk_size)len >= s->buffer.memory.size) && - (s->buffer.type == NK_BUFFER_FIXED)) return 0; - - copylen = (int)s->buffer.allocated - pos; - if (!copylen) { - nk_str_append_text_char(s, str, len); - return 1; - } - mem = nk_buffer_alloc(&s->buffer, NK_BUFFER_FRONT, (nk_size)len * sizeof(char), 0); - if (!mem) return 0; - - /* memmove */ - NK_ASSERT(((int)pos + (int)len + ((int)copylen - 1)) >= 0); - NK_ASSERT(((int)pos + ((int)copylen - 1)) >= 0); - dst = nk_ptr_add(char, s->buffer.memory.ptr, pos + len + (copylen - 1)); - src = nk_ptr_add(char, s->buffer.memory.ptr, pos + (copylen-1)); - for (i = 0; i < copylen; ++i) *dst-- = *src--; - mem = nk_ptr_add(void, s->buffer.memory.ptr, pos); - NK_MEMCPY(mem, str, (nk_size)len * sizeof(char)); - s->len = nk_utf_len((char *)s->buffer.memory.ptr, (int)s->buffer.allocated); - return 1; -} -NK_API int -nk_str_insert_at_rune(struct nk_str *str, int pos, const char *cstr, int len) -{ - int glyph_len; - nk_rune unicode; - const char *begin; - const char *buffer; - - NK_ASSERT(str); - NK_ASSERT(cstr); - NK_ASSERT(len); - if (!str || !cstr || !len) return 0; - begin = nk_str_at_rune(str, pos, &unicode, &glyph_len); - if (!str->len) - return nk_str_append_text_char(str, cstr, len); - buffer = nk_str_get_const(str); - if (!begin) return 0; - return nk_str_insert_at_char(str, (int)(begin - buffer), cstr, len); -} -NK_API int -nk_str_insert_text_char(struct nk_str *str, int pos, const char *text, int len) -{ - return nk_str_insert_text_utf8(str, pos, text, len); -} -NK_API int -nk_str_insert_str_char(struct nk_str *str, int pos, const char *text) -{ - return nk_str_insert_text_utf8(str, pos, text, nk_strlen(text)); -} -NK_API int -nk_str_insert_text_utf8(struct nk_str *str, int pos, const char *text, int len) -{ - int i = 0; - int byte_len = 0; - nk_rune unicode; - - NK_ASSERT(str); - NK_ASSERT(text); - if (!str || !text || !len) return 0; - for (i = 0; i < len; ++i) - byte_len += nk_utf_decode(text+byte_len, &unicode, 4); - nk_str_insert_at_rune(str, pos, text, byte_len); - return len; -} -NK_API int -nk_str_insert_str_utf8(struct nk_str *str, int pos, const char *text) -{ - int byte_len = 0; - int num_runes = 0; - int glyph_len = 0; - nk_rune unicode; - if (!str || !text) return 0; - - glyph_len = byte_len = nk_utf_decode(text+byte_len, &unicode, 4); - while (unicode != '\0' && glyph_len) { - glyph_len = nk_utf_decode(text+byte_len, &unicode, 4); - byte_len += glyph_len; - num_runes++; - } - nk_str_insert_at_rune(str, pos, text, byte_len); - return num_runes; -} -NK_API int -nk_str_insert_text_runes(struct nk_str *str, int pos, const nk_rune *runes, int len) -{ - int i = 0; - int byte_len = 0; - nk_glyph glyph; - - NK_ASSERT(str); - if (!str || !runes || !len) return 0; - for (i = 0; i < len; ++i) { - byte_len = nk_utf_encode(runes[i], glyph, NK_UTF_SIZE); - if (!byte_len) break; - nk_str_insert_at_rune(str, pos+i, glyph, byte_len); - } - return len; -} -NK_API int -nk_str_insert_str_runes(struct nk_str *str, int pos, const nk_rune *runes) -{ - int i = 0; - nk_glyph glyph; - int byte_len; - NK_ASSERT(str); - if (!str || !runes) return 0; - while (runes[i] != '\0') { - byte_len = nk_utf_encode(runes[i], glyph, NK_UTF_SIZE); - nk_str_insert_at_rune(str, pos+i, glyph, byte_len); - i++; - } - return i; -} -NK_API void -nk_str_remove_chars(struct nk_str *s, int len) -{ - NK_ASSERT(s); - NK_ASSERT(len >= 0); - if (!s || len < 0 || (nk_size)len > s->buffer.allocated) return; - NK_ASSERT(((int)s->buffer.allocated - (int)len) >= 0); - s->buffer.allocated -= (nk_size)len; - s->len = nk_utf_len((char *)s->buffer.memory.ptr, (int)s->buffer.allocated); -} -NK_API void -nk_str_remove_runes(struct nk_str *str, int len) -{ - int index; - const char *begin; - const char *end; - nk_rune unicode; - - NK_ASSERT(str); - NK_ASSERT(len >= 0); - if (!str || len < 0) return; - if (len >= str->len) { - str->len = 0; - return; - } - - index = str->len - len; - begin = nk_str_at_rune(str, index, &unicode, &len); - end = (const char*)str->buffer.memory.ptr + str->buffer.allocated; - nk_str_remove_chars(str, (int)(end-begin)+1); -} -NK_API void -nk_str_delete_chars(struct nk_str *s, int pos, int len) -{ - NK_ASSERT(s); - if (!s || !len || (nk_size)pos > s->buffer.allocated || - (nk_size)(pos + len) > s->buffer.allocated) return; - - if ((nk_size)(pos + len) < s->buffer.allocated) { - /* memmove */ - char *dst = nk_ptr_add(char, s->buffer.memory.ptr, pos); - char *src = nk_ptr_add(char, s->buffer.memory.ptr, pos + len); - NK_MEMCPY(dst, src, s->buffer.allocated - (nk_size)(pos + len)); - NK_ASSERT(((int)s->buffer.allocated - (int)len) >= 0); - s->buffer.allocated -= (nk_size)len; - } else nk_str_remove_chars(s, len); - s->len = nk_utf_len((char *)s->buffer.memory.ptr, (int)s->buffer.allocated); -} -NK_API void -nk_str_delete_runes(struct nk_str *s, int pos, int len) -{ - char *temp; - nk_rune unicode; - char *begin; - char *end; - int unused; - - NK_ASSERT(s); - NK_ASSERT(s->len >= pos + len); - if (s->len < pos + len) - len = NK_CLAMP(0, (s->len - pos), s->len); - if (!len) return; - - temp = (char *)s->buffer.memory.ptr; - begin = nk_str_at_rune(s, pos, &unicode, &unused); - if (!begin) return; - s->buffer.memory.ptr = begin; - end = nk_str_at_rune(s, len, &unicode, &unused); - s->buffer.memory.ptr = temp; - if (!end) return; - nk_str_delete_chars(s, (int)(begin - temp), (int)(end - begin)); -} -NK_API char* -nk_str_at_char(struct nk_str *s, int pos) -{ - NK_ASSERT(s); - if (!s || pos > (int)s->buffer.allocated) return 0; - return nk_ptr_add(char, s->buffer.memory.ptr, pos); -} -NK_API char* -nk_str_at_rune(struct nk_str *str, int pos, nk_rune *unicode, int *len) -{ - int i = 0; - int src_len = 0; - int glyph_len = 0; - char *text; - int text_len; - - NK_ASSERT(str); - NK_ASSERT(unicode); - NK_ASSERT(len); - - if (!str || !unicode || !len) return 0; - if (pos < 0) { - *unicode = 0; - *len = 0; - return 0; - } - - text = (char*)str->buffer.memory.ptr; - text_len = (int)str->buffer.allocated; - glyph_len = nk_utf_decode(text, unicode, text_len); - while (glyph_len) { - if (i == pos) { - *len = glyph_len; - break; - } - - i++; - src_len = src_len + glyph_len; - glyph_len = nk_utf_decode(text + src_len, unicode, text_len - src_len); - } - if (i != pos) return 0; - return text + src_len; -} -NK_API const char* -nk_str_at_char_const(const struct nk_str *s, int pos) -{ - NK_ASSERT(s); - if (!s || pos > (int)s->buffer.allocated) return 0; - return nk_ptr_add(char, s->buffer.memory.ptr, pos); -} -NK_API const char* -nk_str_at_const(const struct nk_str *str, int pos, nk_rune *unicode, int *len) -{ - int i = 0; - int src_len = 0; - int glyph_len = 0; - char *text; - int text_len; - - NK_ASSERT(str); - NK_ASSERT(unicode); - NK_ASSERT(len); - - if (!str || !unicode || !len) return 0; - if (pos < 0) { - *unicode = 0; - *len = 0; - return 0; - } - - text = (char*)str->buffer.memory.ptr; - text_len = (int)str->buffer.allocated; - glyph_len = nk_utf_decode(text, unicode, text_len); - while (glyph_len) { - if (i == pos) { - *len = glyph_len; - break; - } - - i++; - src_len = src_len + glyph_len; - glyph_len = nk_utf_decode(text + src_len, unicode, text_len - src_len); - } - if (i != pos) return 0; - return text + src_len; -} -NK_API nk_rune -nk_str_rune_at(const struct nk_str *str, int pos) -{ - int len; - nk_rune unicode = 0; - nk_str_at_const(str, pos, &unicode, &len); - return unicode; -} -NK_API char* -nk_str_get(struct nk_str *s) -{ - NK_ASSERT(s); - if (!s || !s->len || !s->buffer.allocated) return 0; - return (char*)s->buffer.memory.ptr; -} -NK_API const char* -nk_str_get_const(const struct nk_str *s) -{ - NK_ASSERT(s); - if (!s || !s->len || !s->buffer.allocated) return 0; - return (const char*)s->buffer.memory.ptr; -} -NK_API int -nk_str_len(struct nk_str *s) -{ - NK_ASSERT(s); - if (!s || !s->len || !s->buffer.allocated) return 0; - return s->len; -} -NK_API int -nk_str_len_char(struct nk_str *s) -{ - NK_ASSERT(s); - if (!s || !s->len || !s->buffer.allocated) return 0; - return (int)s->buffer.allocated; -} -NK_API void -nk_str_clear(struct nk_str *str) -{ - NK_ASSERT(str); - nk_buffer_clear(&str->buffer); - str->len = 0; -} -NK_API void -nk_str_free(struct nk_str *str) -{ - NK_ASSERT(str); - nk_buffer_free(&str->buffer); - str->len = 0; -} - - - - - -/* ============================================================== - * - * DRAW - * - * ===============================================================*/ -NK_LIB void -nk_command_buffer_init(struct nk_command_buffer *cb, - struct nk_buffer *b, enum nk_command_clipping clip) -{ - NK_ASSERT(cb); - NK_ASSERT(b); - if (!cb || !b) return; - cb->base = b; - cb->use_clipping = (int)clip; - cb->begin = b->allocated; - cb->end = b->allocated; - cb->last = b->allocated; -} -NK_LIB void -nk_command_buffer_reset(struct nk_command_buffer *b) -{ - NK_ASSERT(b); - if (!b) return; - b->begin = 0; - b->end = 0; - b->last = 0; - b->clip = nk_null_rect; -#ifdef NK_INCLUDE_COMMAND_USERDATA - b->userdata.ptr = 0; -#endif -} -NK_LIB void* -nk_command_buffer_push(struct nk_command_buffer* b, - enum nk_command_type t, nk_size size) -{ - NK_STORAGE const nk_size align = NK_ALIGNOF(struct nk_command); - struct nk_command *cmd; - nk_size alignment; - void *unaligned; - void *memory; - - NK_ASSERT(b); - NK_ASSERT(b->base); - if (!b) return 0; - cmd = (struct nk_command*)nk_buffer_alloc(b->base,NK_BUFFER_FRONT,size,align); - if (!cmd) return 0; - - /* make sure the offset to the next command is aligned */ - b->last = (nk_size)((nk_byte*)cmd - (nk_byte*)b->base->memory.ptr); - unaligned = (nk_byte*)cmd + size; - memory = NK_ALIGN_PTR(unaligned, align); - alignment = (nk_size)((nk_byte*)memory - (nk_byte*)unaligned); -#ifdef NK_ZERO_COMMAND_MEMORY - NK_MEMSET(cmd, 0, size + alignment); -#endif - - cmd->type = t; - cmd->next = b->base->allocated + alignment; -#ifdef NK_INCLUDE_COMMAND_USERDATA - cmd->userdata = b->userdata; -#endif - b->end = cmd->next; - return cmd; -} -NK_API void -nk_push_scissor(struct nk_command_buffer *b, struct nk_rect r) -{ - struct nk_command_scissor *cmd; - NK_ASSERT(b); - if (!b) return; - - b->clip.x = r.x; - b->clip.y = r.y; - b->clip.w = r.w; - b->clip.h = r.h; - cmd = (struct nk_command_scissor*) - nk_command_buffer_push(b, NK_COMMAND_SCISSOR, sizeof(*cmd)); - - if (!cmd) return; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)NK_MAX(0, r.w); - cmd->h = (unsigned short)NK_MAX(0, r.h); -} -NK_API void -nk_stroke_line(struct nk_command_buffer *b, float x0, float y0, - float x1, float y1, float line_thickness, struct nk_color c) -{ - struct nk_command_line *cmd; - NK_ASSERT(b); - if (!b || line_thickness <= 0) return; - cmd = (struct nk_command_line*) - nk_command_buffer_push(b, NK_COMMAND_LINE, sizeof(*cmd)); - if (!cmd) return; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->begin.x = (short)x0; - cmd->begin.y = (short)y0; - cmd->end.x = (short)x1; - cmd->end.y = (short)y1; - cmd->color = c; -} -NK_API void -nk_stroke_curve(struct nk_command_buffer *b, float ax, float ay, - float ctrl0x, float ctrl0y, float ctrl1x, float ctrl1y, - float bx, float by, float line_thickness, struct nk_color col) -{ - struct nk_command_curve *cmd; - NK_ASSERT(b); - if (!b || col.a == 0 || line_thickness <= 0) return; - - cmd = (struct nk_command_curve*) - nk_command_buffer_push(b, NK_COMMAND_CURVE, sizeof(*cmd)); - if (!cmd) return; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->begin.x = (short)ax; - cmd->begin.y = (short)ay; - cmd->ctrl[0].x = (short)ctrl0x; - cmd->ctrl[0].y = (short)ctrl0y; - cmd->ctrl[1].x = (short)ctrl1x; - cmd->ctrl[1].y = (short)ctrl1y; - cmd->end.x = (short)bx; - cmd->end.y = (short)by; - cmd->color = col; -} -NK_API void -nk_stroke_rect(struct nk_command_buffer *b, struct nk_rect rect, - float rounding, float line_thickness, struct nk_color c) -{ - struct nk_command_rect *cmd; - NK_ASSERT(b); - if (!b || c.a == 0 || rect.w == 0 || rect.h == 0 || line_thickness <= 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INTERSECT(rect.x, rect.y, rect.w, rect.h, - clip->x, clip->y, clip->w, clip->h)) return; - } - cmd = (struct nk_command_rect*) - nk_command_buffer_push(b, NK_COMMAND_RECT, sizeof(*cmd)); - if (!cmd) return; - cmd->rounding = (unsigned short)rounding; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->x = (short)rect.x; - cmd->y = (short)rect.y; - cmd->w = (unsigned short)NK_MAX(0, rect.w); - cmd->h = (unsigned short)NK_MAX(0, rect.h); - cmd->color = c; -} -NK_API void -nk_fill_rect(struct nk_command_buffer *b, struct nk_rect rect, - float rounding, struct nk_color c) -{ - struct nk_command_rect_filled *cmd; - NK_ASSERT(b); - if (!b || c.a == 0 || rect.w == 0 || rect.h == 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INTERSECT(rect.x, rect.y, rect.w, rect.h, - clip->x, clip->y, clip->w, clip->h)) return; - } - - cmd = (struct nk_command_rect_filled*) - nk_command_buffer_push(b, NK_COMMAND_RECT_FILLED, sizeof(*cmd)); - if (!cmd) return; - cmd->rounding = (unsigned short)rounding; - cmd->x = (short)rect.x; - cmd->y = (short)rect.y; - cmd->w = (unsigned short)NK_MAX(0, rect.w); - cmd->h = (unsigned short)NK_MAX(0, rect.h); - cmd->color = c; -} -NK_API void -nk_fill_rect_multi_color(struct nk_command_buffer *b, struct nk_rect rect, - struct nk_color left, struct nk_color top, struct nk_color right, - struct nk_color bottom) -{ - struct nk_command_rect_multi_color *cmd; - NK_ASSERT(b); - if (!b || rect.w == 0 || rect.h == 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INTERSECT(rect.x, rect.y, rect.w, rect.h, - clip->x, clip->y, clip->w, clip->h)) return; - } - - cmd = (struct nk_command_rect_multi_color*) - nk_command_buffer_push(b, NK_COMMAND_RECT_MULTI_COLOR, sizeof(*cmd)); - if (!cmd) return; - cmd->x = (short)rect.x; - cmd->y = (short)rect.y; - cmd->w = (unsigned short)NK_MAX(0, rect.w); - cmd->h = (unsigned short)NK_MAX(0, rect.h); - cmd->left = left; - cmd->top = top; - cmd->right = right; - cmd->bottom = bottom; -} -NK_API void -nk_stroke_circle(struct nk_command_buffer *b, struct nk_rect r, - float line_thickness, struct nk_color c) -{ - struct nk_command_circle *cmd; - if (!b || r.w == 0 || r.h == 0 || line_thickness <= 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INTERSECT(r.x, r.y, r.w, r.h, clip->x, clip->y, clip->w, clip->h)) - return; - } - - cmd = (struct nk_command_circle*) - nk_command_buffer_push(b, NK_COMMAND_CIRCLE, sizeof(*cmd)); - if (!cmd) return; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)NK_MAX(r.w, 0); - cmd->h = (unsigned short)NK_MAX(r.h, 0); - cmd->color = c; -} -NK_API void -nk_fill_circle(struct nk_command_buffer *b, struct nk_rect r, struct nk_color c) -{ - struct nk_command_circle_filled *cmd; - NK_ASSERT(b); - if (!b || c.a == 0 || r.w == 0 || r.h == 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INTERSECT(r.x, r.y, r.w, r.h, clip->x, clip->y, clip->w, clip->h)) - return; - } - - cmd = (struct nk_command_circle_filled*) - nk_command_buffer_push(b, NK_COMMAND_CIRCLE_FILLED, sizeof(*cmd)); - if (!cmd) return; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)NK_MAX(r.w, 0); - cmd->h = (unsigned short)NK_MAX(r.h, 0); - cmd->color = c; -} -NK_API void -nk_stroke_arc(struct nk_command_buffer *b, float cx, float cy, float radius, - float a_min, float a_max, float line_thickness, struct nk_color c) -{ - struct nk_command_arc *cmd; - if (!b || c.a == 0 || line_thickness <= 0) return; - cmd = (struct nk_command_arc*) - nk_command_buffer_push(b, NK_COMMAND_ARC, sizeof(*cmd)); - if (!cmd) return; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->cx = (short)cx; - cmd->cy = (short)cy; - cmd->r = (unsigned short)radius; - cmd->a[0] = a_min; - cmd->a[1] = a_max; - cmd->color = c; -} -NK_API void -nk_fill_arc(struct nk_command_buffer *b, float cx, float cy, float radius, - float a_min, float a_max, struct nk_color c) -{ - struct nk_command_arc_filled *cmd; - NK_ASSERT(b); - if (!b || c.a == 0) return; - cmd = (struct nk_command_arc_filled*) - nk_command_buffer_push(b, NK_COMMAND_ARC_FILLED, sizeof(*cmd)); - if (!cmd) return; - cmd->cx = (short)cx; - cmd->cy = (short)cy; - cmd->r = (unsigned short)radius; - cmd->a[0] = a_min; - cmd->a[1] = a_max; - cmd->color = c; -} -NK_API void -nk_stroke_triangle(struct nk_command_buffer *b, float x0, float y0, float x1, - float y1, float x2, float y2, float line_thickness, struct nk_color c) -{ - struct nk_command_triangle *cmd; - NK_ASSERT(b); - if (!b || c.a == 0 || line_thickness <= 0) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INBOX(x0, y0, clip->x, clip->y, clip->w, clip->h) && - !NK_INBOX(x1, y1, clip->x, clip->y, clip->w, clip->h) && - !NK_INBOX(x2, y2, clip->x, clip->y, clip->w, clip->h)) - return; - } - - cmd = (struct nk_command_triangle*) - nk_command_buffer_push(b, NK_COMMAND_TRIANGLE, sizeof(*cmd)); - if (!cmd) return; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->a.x = (short)x0; - cmd->a.y = (short)y0; - cmd->b.x = (short)x1; - cmd->b.y = (short)y1; - cmd->c.x = (short)x2; - cmd->c.y = (short)y2; - cmd->color = c; -} -NK_API void -nk_fill_triangle(struct nk_command_buffer *b, float x0, float y0, float x1, - float y1, float x2, float y2, struct nk_color c) -{ - struct nk_command_triangle_filled *cmd; - NK_ASSERT(b); - if (!b || c.a == 0) return; - if (!b) return; - if (b->use_clipping) { - const struct nk_rect *clip = &b->clip; - if (!NK_INBOX(x0, y0, clip->x, clip->y, clip->w, clip->h) && - !NK_INBOX(x1, y1, clip->x, clip->y, clip->w, clip->h) && - !NK_INBOX(x2, y2, clip->x, clip->y, clip->w, clip->h)) - return; - } - - cmd = (struct nk_command_triangle_filled*) - nk_command_buffer_push(b, NK_COMMAND_TRIANGLE_FILLED, sizeof(*cmd)); - if (!cmd) return; - cmd->a.x = (short)x0; - cmd->a.y = (short)y0; - cmd->b.x = (short)x1; - cmd->b.y = (short)y1; - cmd->c.x = (short)x2; - cmd->c.y = (short)y2; - cmd->color = c; -} -NK_API void -nk_stroke_polygon(struct nk_command_buffer *b, float *points, int point_count, - float line_thickness, struct nk_color col) -{ - int i; - nk_size size = 0; - struct nk_command_polygon *cmd; - - NK_ASSERT(b); - if (!b || col.a == 0 || line_thickness <= 0) return; - size = sizeof(*cmd) + sizeof(short) * 2 * (nk_size)point_count; - cmd = (struct nk_command_polygon*) nk_command_buffer_push(b, NK_COMMAND_POLYGON, size); - if (!cmd) return; - cmd->color = col; - cmd->line_thickness = (unsigned short)line_thickness; - cmd->point_count = (unsigned short)point_count; - for (i = 0; i < point_count; ++i) { - cmd->points[i].x = (short)points[i*2]; - cmd->points[i].y = (short)points[i*2+1]; - } -} -NK_API void -nk_fill_polygon(struct nk_command_buffer *b, float *points, int point_count, - struct nk_color col) -{ - int i; - nk_size size = 0; - struct nk_command_polygon_filled *cmd; - - NK_ASSERT(b); - if (!b || col.a == 0) return; - size = sizeof(*cmd) + sizeof(short) * 2 * (nk_size)point_count; - cmd = (struct nk_command_polygon_filled*) - nk_command_buffer_push(b, NK_COMMAND_POLYGON_FILLED, size); - if (!cmd) return; - cmd->color = col; - cmd->point_count = (unsigned short)point_count; - for (i = 0; i < point_count; ++i) { - cmd->points[i].x = (short)points[i*2+0]; - cmd->points[i].y = (short)points[i*2+1]; - } -} -NK_API void -nk_stroke_polyline(struct nk_command_buffer *b, float *points, int point_count, - float line_thickness, struct nk_color col) -{ - int i; - nk_size size = 0; - struct nk_command_polyline *cmd; - - NK_ASSERT(b); - if (!b || col.a == 0 || line_thickness <= 0) return; - size = sizeof(*cmd) + sizeof(short) * 2 * (nk_size)point_count; - cmd = (struct nk_command_polyline*) nk_command_buffer_push(b, NK_COMMAND_POLYLINE, size); - if (!cmd) return; - cmd->color = col; - cmd->point_count = (unsigned short)point_count; - cmd->line_thickness = (unsigned short)line_thickness; - for (i = 0; i < point_count; ++i) { - cmd->points[i].x = (short)points[i*2]; - cmd->points[i].y = (short)points[i*2+1]; - } -} -NK_API void -nk_draw_image(struct nk_command_buffer *b, struct nk_rect r, - const struct nk_image *img, struct nk_color col) -{ - struct nk_command_image *cmd; - NK_ASSERT(b); - if (!b) return; - if (b->use_clipping) { - const struct nk_rect *c = &b->clip; - if (c->w == 0 || c->h == 0 || !NK_INTERSECT(r.x, r.y, r.w, r.h, c->x, c->y, c->w, c->h)) - return; - } - - cmd = (struct nk_command_image*) - nk_command_buffer_push(b, NK_COMMAND_IMAGE, sizeof(*cmd)); - if (!cmd) return; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)NK_MAX(0, r.w); - cmd->h = (unsigned short)NK_MAX(0, r.h); - cmd->img = *img; - cmd->col = col; -} -NK_API void -nk_draw_nine_slice(struct nk_command_buffer *b, struct nk_rect r, - const struct nk_nine_slice *slc, struct nk_color col) -{ - struct nk_image img; - const struct nk_image *slcimg = (const struct nk_image*)slc; - nk_ushort rgnX, rgnY, rgnW, rgnH; - rgnX = slcimg->region[0]; - rgnY = slcimg->region[1]; - rgnW = slcimg->region[2]; - rgnH = slcimg->region[3]; - - /* top-left */ - img.handle = slcimg->handle; - img.w = slcimg->w; - img.h = slcimg->h; - img.region[0] = rgnX; - img.region[1] = rgnY; - img.region[2] = slc->l; - img.region[3] = slc->t; - - nk_draw_image(b, - nk_rect(r.x, r.y, (float)slc->l, (float)slc->t), - &img, col); - -#define IMG_RGN(x, y, w, h) img.region[0] = (nk_ushort)(x); img.region[1] = (nk_ushort)(y); img.region[2] = (nk_ushort)(w); img.region[3] = (nk_ushort)(h); - - /* top-center */ - IMG_RGN(rgnX + slc->l, rgnY, rgnW - slc->l - slc->r, slc->t); - nk_draw_image(b, - nk_rect(r.x + (float)slc->l, r.y, (float)(r.w - slc->l - slc->r), (float)slc->t), - &img, col); - - /* top-right */ - IMG_RGN(rgnX + rgnW - slc->r, rgnY, slc->r, slc->t); - nk_draw_image(b, - nk_rect(r.x + r.w - (float)slc->r, r.y, (float)slc->r, (float)slc->t), - &img, col); - - /* center-left */ - IMG_RGN(rgnX, rgnY + slc->t, slc->l, rgnH - slc->t - slc->b); - nk_draw_image(b, - nk_rect(r.x, r.y + (float)slc->t, (float)slc->l, (float)(r.h - slc->t - slc->b)), - &img, col); - - /* center */ - IMG_RGN(rgnX + slc->l, rgnY + slc->t, rgnW - slc->l - slc->r, rgnH - slc->t - slc->b); - nk_draw_image(b, - nk_rect(r.x + (float)slc->l, r.y + (float)slc->t, (float)(r.w - slc->l - slc->r), (float)(r.h - slc->t - slc->b)), - &img, col); - - /* center-right */ - IMG_RGN(rgnX + rgnW - slc->r, rgnY + slc->t, slc->r, rgnH - slc->t - slc->b); - nk_draw_image(b, - nk_rect(r.x + r.w - (float)slc->r, r.y + (float)slc->t, (float)slc->r, (float)(r.h - slc->t - slc->b)), - &img, col); - - /* bottom-left */ - IMG_RGN(rgnX, rgnY + rgnH - slc->b, slc->l, slc->b); - nk_draw_image(b, - nk_rect(r.x, r.y + r.h - (float)slc->b, (float)slc->l, (float)slc->b), - &img, col); - - /* bottom-center */ - IMG_RGN(rgnX + slc->l, rgnY + rgnH - slc->b, rgnW - slc->l - slc->r, slc->b); - nk_draw_image(b, - nk_rect(r.x + (float)slc->l, r.y + r.h - (float)slc->b, (float)(r.w - slc->l - slc->r), (float)slc->b), - &img, col); - - /* bottom-right */ - IMG_RGN(rgnX + rgnW - slc->r, rgnY + rgnH - slc->b, slc->r, slc->b); - nk_draw_image(b, - nk_rect(r.x + r.w - (float)slc->r, r.y + r.h - (float)slc->b, (float)slc->r, (float)slc->b), - &img, col); - -#undef IMG_RGN -} -NK_API void -nk_push_custom(struct nk_command_buffer *b, struct nk_rect r, - nk_command_custom_callback cb, nk_handle usr) -{ - struct nk_command_custom *cmd; - NK_ASSERT(b); - if (!b) return; - if (b->use_clipping) { - const struct nk_rect *c = &b->clip; - if (c->w == 0 || c->h == 0 || !NK_INTERSECT(r.x, r.y, r.w, r.h, c->x, c->y, c->w, c->h)) - return; - } - - cmd = (struct nk_command_custom*) - nk_command_buffer_push(b, NK_COMMAND_CUSTOM, sizeof(*cmd)); - if (!cmd) return; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)NK_MAX(0, r.w); - cmd->h = (unsigned short)NK_MAX(0, r.h); - cmd->callback_data = usr; - cmd->callback = cb; -} -NK_API void -nk_draw_text(struct nk_command_buffer *b, struct nk_rect r, - const char *string, int length, const struct nk_user_font *font, - struct nk_color bg, struct nk_color fg) -{ - float text_width = 0; - struct nk_command_text *cmd; - - NK_ASSERT(b); - NK_ASSERT(font); - if (!b || !string || !length || (bg.a == 0 && fg.a == 0)) return; - if (b->use_clipping) { - const struct nk_rect *c = &b->clip; - if (c->w == 0 || c->h == 0 || !NK_INTERSECT(r.x, r.y, r.w, r.h, c->x, c->y, c->w, c->h)) - return; - } - - /* make sure text fits inside bounds */ - text_width = font->width(font->userdata, font->height, string, length); - if (text_width > r.w){ - int glyphs = 0; - float txt_width = (float)text_width; - length = nk_text_clamp(font, string, length, r.w, &glyphs, &txt_width, 0,0); - } - - if (!length) return; - cmd = (struct nk_command_text*) - nk_command_buffer_push(b, NK_COMMAND_TEXT, sizeof(*cmd) + (nk_size)(length + 1)); - if (!cmd) return; - cmd->x = (short)r.x; - cmd->y = (short)r.y; - cmd->w = (unsigned short)r.w; - cmd->h = (unsigned short)r.h; - cmd->background = bg; - cmd->foreground = fg; - cmd->font = font; - cmd->length = length; - cmd->height = font->height; - NK_MEMCPY(cmd->string, string, (nk_size)length); - cmd->string[length] = '\0'; -} - - - - - -/* =============================================================== - * - * VERTEX - * - * ===============================================================*/ -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT -NK_API void -nk_draw_list_init(struct nk_draw_list *list) -{ - nk_size i = 0; - NK_ASSERT(list); - if (!list) return; - nk_zero(list, sizeof(*list)); - for (i = 0; i < NK_LEN(list->circle_vtx); ++i) { - const float a = ((float)i / (float)NK_LEN(list->circle_vtx)) * 2 * NK_PI; - list->circle_vtx[i].x = (float)NK_COS(a); - list->circle_vtx[i].y = (float)NK_SIN(a); - } -} -NK_API void -nk_draw_list_setup(struct nk_draw_list *canvas, const struct nk_convert_config *config, - struct nk_buffer *cmds, struct nk_buffer *vertices, struct nk_buffer *elements, - enum nk_anti_aliasing line_aa, enum nk_anti_aliasing shape_aa) -{ - NK_ASSERT(canvas); - NK_ASSERT(config); - NK_ASSERT(cmds); - NK_ASSERT(vertices); - NK_ASSERT(elements); - if (!canvas || !config || !cmds || !vertices || !elements) - return; - - canvas->buffer = cmds; - canvas->config = *config; - canvas->elements = elements; - canvas->vertices = vertices; - canvas->line_AA = line_aa; - canvas->shape_AA = shape_aa; - canvas->clip_rect = nk_null_rect; - - canvas->cmd_offset = 0; - canvas->element_count = 0; - canvas->vertex_count = 0; - canvas->cmd_offset = 0; - canvas->cmd_count = 0; - canvas->path_count = 0; -} -NK_API const struct nk_draw_command* -nk__draw_list_begin(const struct nk_draw_list *canvas, const struct nk_buffer *buffer) -{ - nk_byte *memory; - nk_size offset; - const struct nk_draw_command *cmd; - - NK_ASSERT(buffer); - if (!buffer || !buffer->size || !canvas->cmd_count) - return 0; - - memory = (nk_byte*)buffer->memory.ptr; - offset = buffer->memory.size - canvas->cmd_offset; - cmd = nk_ptr_add(const struct nk_draw_command, memory, offset); - return cmd; -} -NK_API const struct nk_draw_command* -nk__draw_list_end(const struct nk_draw_list *canvas, const struct nk_buffer *buffer) -{ - nk_size size; - nk_size offset; - nk_byte *memory; - const struct nk_draw_command *end; - - NK_ASSERT(buffer); - NK_ASSERT(canvas); - if (!buffer || !canvas) - return 0; - - memory = (nk_byte*)buffer->memory.ptr; - size = buffer->memory.size; - offset = size - canvas->cmd_offset; - end = nk_ptr_add(const struct nk_draw_command, memory, offset); - end -= (canvas->cmd_count-1); - return end; -} -NK_API const struct nk_draw_command* -nk__draw_list_next(const struct nk_draw_command *cmd, - const struct nk_buffer *buffer, const struct nk_draw_list *canvas) -{ - const struct nk_draw_command *end; - NK_ASSERT(buffer); - NK_ASSERT(canvas); - if (!cmd || !buffer || !canvas) - return 0; - - end = nk__draw_list_end(canvas, buffer); - if (cmd <= end) return 0; - return (cmd-1); -} -NK_INTERN struct nk_vec2* -nk_draw_list_alloc_path(struct nk_draw_list *list, int count) -{ - struct nk_vec2 *points; - NK_STORAGE const nk_size point_align = NK_ALIGNOF(struct nk_vec2); - NK_STORAGE const nk_size point_size = sizeof(struct nk_vec2); - points = (struct nk_vec2*) - nk_buffer_alloc(list->buffer, NK_BUFFER_FRONT, - point_size * (nk_size)count, point_align); - - if (!points) return 0; - if (!list->path_offset) { - void *memory = nk_buffer_memory(list->buffer); - list->path_offset = (unsigned int)((nk_byte*)points - (nk_byte*)memory); - } - list->path_count += (unsigned int)count; - return points; -} -NK_INTERN struct nk_vec2 -nk_draw_list_path_last(struct nk_draw_list *list) -{ - void *memory; - struct nk_vec2 *point; - NK_ASSERT(list->path_count); - memory = nk_buffer_memory(list->buffer); - point = nk_ptr_add(struct nk_vec2, memory, list->path_offset); - point += (list->path_count-1); - return *point; -} -NK_INTERN struct nk_draw_command* -nk_draw_list_push_command(struct nk_draw_list *list, struct nk_rect clip, - nk_handle texture) -{ - NK_STORAGE const nk_size cmd_align = NK_ALIGNOF(struct nk_draw_command); - NK_STORAGE const nk_size cmd_size = sizeof(struct nk_draw_command); - struct nk_draw_command *cmd; - - NK_ASSERT(list); - cmd = (struct nk_draw_command*) - nk_buffer_alloc(list->buffer, NK_BUFFER_BACK, cmd_size, cmd_align); - - if (!cmd) return 0; - if (!list->cmd_count) { - nk_byte *memory = (nk_byte*)nk_buffer_memory(list->buffer); - nk_size total = nk_buffer_total(list->buffer); - memory = nk_ptr_add(nk_byte, memory, total); - list->cmd_offset = (nk_size)(memory - (nk_byte*)cmd); - } - - cmd->elem_count = 0; - cmd->clip_rect = clip; - cmd->texture = texture; -#ifdef NK_INCLUDE_COMMAND_USERDATA - cmd->userdata = list->userdata; -#endif - - list->cmd_count++; - list->clip_rect = clip; - return cmd; -} -NK_INTERN struct nk_draw_command* -nk_draw_list_command_last(struct nk_draw_list *list) -{ - void *memory; - nk_size size; - struct nk_draw_command *cmd; - NK_ASSERT(list->cmd_count); - - memory = nk_buffer_memory(list->buffer); - size = nk_buffer_total(list->buffer); - cmd = nk_ptr_add(struct nk_draw_command, memory, size - list->cmd_offset); - return (cmd - (list->cmd_count-1)); -} -NK_INTERN void -nk_draw_list_add_clip(struct nk_draw_list *list, struct nk_rect rect) -{ - NK_ASSERT(list); - if (!list) return; - if (!list->cmd_count) { - nk_draw_list_push_command(list, rect, list->config.tex_null.texture); - } else { - struct nk_draw_command *prev = nk_draw_list_command_last(list); - if (prev->elem_count == 0) - prev->clip_rect = rect; - nk_draw_list_push_command(list, rect, prev->texture); - } -} -NK_INTERN void -nk_draw_list_push_image(struct nk_draw_list *list, nk_handle texture) -{ - NK_ASSERT(list); - if (!list) return; - if (!list->cmd_count) { - nk_draw_list_push_command(list, nk_null_rect, texture); - } else { - struct nk_draw_command *prev = nk_draw_list_command_last(list); - if (prev->elem_count == 0) { - prev->texture = texture; - #ifdef NK_INCLUDE_COMMAND_USERDATA - prev->userdata = list->userdata; - #endif - } else if (prev->texture.id != texture.id - #ifdef NK_INCLUDE_COMMAND_USERDATA - || prev->userdata.id != list->userdata.id - #endif - ) nk_draw_list_push_command(list, prev->clip_rect, texture); - } -} -#ifdef NK_INCLUDE_COMMAND_USERDATA -NK_API void -nk_draw_list_push_userdata(struct nk_draw_list *list, nk_handle userdata) -{ - list->userdata = userdata; -} -#endif -NK_INTERN void* -nk_draw_list_alloc_vertices(struct nk_draw_list *list, nk_size count) -{ - void *vtx; - NK_ASSERT(list); - if (!list) return 0; - vtx = nk_buffer_alloc(list->vertices, NK_BUFFER_FRONT, - list->config.vertex_size*count, list->config.vertex_alignment); - if (!vtx) return 0; - list->vertex_count += (unsigned int)count; - - /* This assert triggers because your are drawing a lot of stuff and nuklear - * defined `nk_draw_index` as `nk_ushort` to safe space be default. - * - * So you reached the maximum number of indices or rather vertexes. - * To solve this issue please change typedef `nk_draw_index` to `nk_uint` - * and don't forget to specify the new element size in your drawing - * backend (OpenGL, DirectX, ...). For example in OpenGL for `glDrawElements` - * instead of specifying `GL_UNSIGNED_SHORT` you have to define `GL_UNSIGNED_INT`. - * Sorry for the inconvenience. */ - if(sizeof(nk_draw_index)==2) NK_ASSERT((list->vertex_count < NK_USHORT_MAX && - "To many vertices for 16-bit vertex indices. Please read comment above on how to solve this problem")); - return vtx; -} -NK_INTERN nk_draw_index* -nk_draw_list_alloc_elements(struct nk_draw_list *list, nk_size count) -{ - nk_draw_index *ids; - struct nk_draw_command *cmd; - NK_STORAGE const nk_size elem_align = NK_ALIGNOF(nk_draw_index); - NK_STORAGE const nk_size elem_size = sizeof(nk_draw_index); - NK_ASSERT(list); - if (!list) return 0; - - ids = (nk_draw_index*) - nk_buffer_alloc(list->elements, NK_BUFFER_FRONT, elem_size*count, elem_align); - if (!ids) return 0; - cmd = nk_draw_list_command_last(list); - list->element_count += (unsigned int)count; - cmd->elem_count += (unsigned int)count; - return ids; -} -NK_INTERN int -nk_draw_vertex_layout_element_is_end_of_layout( - const struct nk_draw_vertex_layout_element *element) -{ - return (element->attribute == NK_VERTEX_ATTRIBUTE_COUNT || - element->format == NK_FORMAT_COUNT); -} -NK_INTERN void -nk_draw_vertex_color(void *attr, const float *vals, - enum nk_draw_vertex_layout_format format) -{ - /* if this triggers you tried to provide a value format for a color */ - float val[4]; - NK_ASSERT(format >= NK_FORMAT_COLOR_BEGIN); - NK_ASSERT(format <= NK_FORMAT_COLOR_END); - if (format < NK_FORMAT_COLOR_BEGIN || format > NK_FORMAT_COLOR_END) return; - - val[0] = NK_SATURATE(vals[0]); - val[1] = NK_SATURATE(vals[1]); - val[2] = NK_SATURATE(vals[2]); - val[3] = NK_SATURATE(vals[3]); - - switch (format) { - default: NK_ASSERT(0 && "Invalid vertex layout color format"); break; - case NK_FORMAT_R8G8B8A8: - case NK_FORMAT_R8G8B8: { - struct nk_color col = nk_rgba_fv(val); - NK_MEMCPY(attr, &col.r, sizeof(col)); - } break; - case NK_FORMAT_B8G8R8A8: { - struct nk_color col = nk_rgba_fv(val); - struct nk_color bgra = nk_rgba(col.b, col.g, col.r, col.a); - NK_MEMCPY(attr, &bgra, sizeof(bgra)); - } break; - case NK_FORMAT_R16G15B16: { - nk_ushort col[3]; - col[0] = (nk_ushort)(val[0]*(float)NK_USHORT_MAX); - col[1] = (nk_ushort)(val[1]*(float)NK_USHORT_MAX); - col[2] = (nk_ushort)(val[2]*(float)NK_USHORT_MAX); - NK_MEMCPY(attr, col, sizeof(col)); - } break; - case NK_FORMAT_R16G15B16A16: { - nk_ushort col[4]; - col[0] = (nk_ushort)(val[0]*(float)NK_USHORT_MAX); - col[1] = (nk_ushort)(val[1]*(float)NK_USHORT_MAX); - col[2] = (nk_ushort)(val[2]*(float)NK_USHORT_MAX); - col[3] = (nk_ushort)(val[3]*(float)NK_USHORT_MAX); - NK_MEMCPY(attr, col, sizeof(col)); - } break; - case NK_FORMAT_R32G32B32: { - nk_uint col[3]; - col[0] = (nk_uint)(val[0]*(float)NK_UINT_MAX); - col[1] = (nk_uint)(val[1]*(float)NK_UINT_MAX); - col[2] = (nk_uint)(val[2]*(float)NK_UINT_MAX); - NK_MEMCPY(attr, col, sizeof(col)); - } break; - case NK_FORMAT_R32G32B32A32: { - nk_uint col[4]; - col[0] = (nk_uint)(val[0]*(float)NK_UINT_MAX); - col[1] = (nk_uint)(val[1]*(float)NK_UINT_MAX); - col[2] = (nk_uint)(val[2]*(float)NK_UINT_MAX); - col[3] = (nk_uint)(val[3]*(float)NK_UINT_MAX); - NK_MEMCPY(attr, col, sizeof(col)); - } break; - case NK_FORMAT_R32G32B32A32_FLOAT: - NK_MEMCPY(attr, val, sizeof(float)*4); - break; - case NK_FORMAT_R32G32B32A32_DOUBLE: { - double col[4]; - col[0] = (double)val[0]; - col[1] = (double)val[1]; - col[2] = (double)val[2]; - col[3] = (double)val[3]; - NK_MEMCPY(attr, col, sizeof(col)); - } break; - case NK_FORMAT_RGB32: - case NK_FORMAT_RGBA32: { - struct nk_color col = nk_rgba_fv(val); - nk_uint color = nk_color_u32(col); - NK_MEMCPY(attr, &color, sizeof(color)); - } break; } -} -NK_INTERN void -nk_draw_vertex_element(void *dst, const float *values, int value_count, - enum nk_draw_vertex_layout_format format) -{ - int value_index; - void *attribute = dst; - /* if this triggers you tried to provide a color format for a value */ - NK_ASSERT(format < NK_FORMAT_COLOR_BEGIN); - if (format >= NK_FORMAT_COLOR_BEGIN && format <= NK_FORMAT_COLOR_END) return; - for (value_index = 0; value_index < value_count; ++value_index) { - switch (format) { - default: NK_ASSERT(0 && "invalid vertex layout format"); break; - case NK_FORMAT_SCHAR: { - char value = (char)NK_CLAMP((float)NK_SCHAR_MIN, values[value_index], (float)NK_SCHAR_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(char)); - } break; - case NK_FORMAT_SSHORT: { - nk_short value = (nk_short)NK_CLAMP((float)NK_SSHORT_MIN, values[value_index], (float)NK_SSHORT_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(value)); - } break; - case NK_FORMAT_SINT: { - nk_int value = (nk_int)NK_CLAMP((float)NK_SINT_MIN, values[value_index], (float)NK_SINT_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(nk_int)); - } break; - case NK_FORMAT_UCHAR: { - unsigned char value = (unsigned char)NK_CLAMP((float)NK_UCHAR_MIN, values[value_index], (float)NK_UCHAR_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(unsigned char)); - } break; - case NK_FORMAT_USHORT: { - nk_ushort value = (nk_ushort)NK_CLAMP((float)NK_USHORT_MIN, values[value_index], (float)NK_USHORT_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(value)); - } break; - case NK_FORMAT_UINT: { - nk_uint value = (nk_uint)NK_CLAMP((float)NK_UINT_MIN, values[value_index], (float)NK_UINT_MAX); - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(nk_uint)); - } break; - case NK_FORMAT_FLOAT: - NK_MEMCPY(attribute, &values[value_index], sizeof(values[value_index])); - attribute = (void*)((char*)attribute + sizeof(float)); - break; - case NK_FORMAT_DOUBLE: { - double value = (double)values[value_index]; - NK_MEMCPY(attribute, &value, sizeof(value)); - attribute = (void*)((char*)attribute + sizeof(double)); - } break; - } - } -} -NK_INTERN void* -nk_draw_vertex(void *dst, const struct nk_convert_config *config, - struct nk_vec2 pos, struct nk_vec2 uv, struct nk_colorf color) -{ - void *result = (void*)((char*)dst + config->vertex_size); - const struct nk_draw_vertex_layout_element *elem_iter = config->vertex_layout; - while (!nk_draw_vertex_layout_element_is_end_of_layout(elem_iter)) { - void *address = (void*)((char*)dst + elem_iter->offset); - switch (elem_iter->attribute) { - case NK_VERTEX_ATTRIBUTE_COUNT: - default: NK_ASSERT(0 && "wrong element attribute"); break; - case NK_VERTEX_POSITION: nk_draw_vertex_element(address, &pos.x, 2, elem_iter->format); break; - case NK_VERTEX_TEXCOORD: nk_draw_vertex_element(address, &uv.x, 2, elem_iter->format); break; - case NK_VERTEX_COLOR: nk_draw_vertex_color(address, &color.r, elem_iter->format); break; - } - elem_iter++; - } - return result; -} -NK_API void -nk_draw_list_stroke_poly_line(struct nk_draw_list *list, const struct nk_vec2 *points, - const unsigned int points_count, struct nk_color color, enum nk_draw_list_stroke closed, - float thickness, enum nk_anti_aliasing aliasing) -{ - nk_size count; - int thick_line; - struct nk_colorf col; - struct nk_colorf col_trans; - NK_ASSERT(list); - if (!list || points_count < 2) return; - - color.a = (nk_byte)((float)color.a * list->config.global_alpha); - count = points_count; - if (!closed) count = points_count-1; - thick_line = thickness > 1.0f; - -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_draw_list_push_userdata(list, list->userdata); -#endif - - color.a = (nk_byte)((float)color.a * list->config.global_alpha); - nk_color_fv(&col.r, color); - col_trans = col; - col_trans.a = 0; - - if (aliasing == NK_ANTI_ALIASING_ON) { - /* ANTI-ALIASED STROKE */ - const float AA_SIZE = 1.0f; - NK_STORAGE const nk_size pnt_align = NK_ALIGNOF(struct nk_vec2); - NK_STORAGE const nk_size pnt_size = sizeof(struct nk_vec2); - - /* allocate vertices and elements */ - nk_size i1 = 0; - nk_size vertex_offset; - nk_size index = list->vertex_count; - - const nk_size idx_count = (thick_line) ? (count * 18) : (count * 12); - const nk_size vtx_count = (thick_line) ? (points_count * 4): (points_count *3); - - void *vtx = nk_draw_list_alloc_vertices(list, vtx_count); - nk_draw_index *ids = nk_draw_list_alloc_elements(list, idx_count); - - nk_size size; - struct nk_vec2 *normals, *temp; - if (!vtx || !ids) return; - - /* temporary allocate normals + points */ - vertex_offset = (nk_size)((nk_byte*)vtx - (nk_byte*)list->vertices->memory.ptr); - nk_buffer_mark(list->vertices, NK_BUFFER_FRONT); - size = pnt_size * ((thick_line) ? 5 : 3) * points_count; - normals = (struct nk_vec2*) nk_buffer_alloc(list->vertices, NK_BUFFER_FRONT, size, pnt_align); - if (!normals) return; - temp = normals + points_count; - - /* make sure vertex pointer is still correct */ - vtx = (void*)((nk_byte*)list->vertices->memory.ptr + vertex_offset); - - /* calculate normals */ - for (i1 = 0; i1 < count; ++i1) { - const nk_size i2 = ((i1 + 1) == points_count) ? 0 : (i1 + 1); - struct nk_vec2 diff = nk_vec2_sub(points[i2], points[i1]); - float len; - - /* vec2 inverted length */ - len = nk_vec2_len_sqr(diff); - if (len != 0.0f) - len = NK_INV_SQRT(len); - else len = 1.0f; - - diff = nk_vec2_muls(diff, len); - normals[i1].x = diff.y; - normals[i1].y = -diff.x; - } - - if (!closed) - normals[points_count-1] = normals[points_count-2]; - - if (!thick_line) { - nk_size idx1, i; - if (!closed) { - struct nk_vec2 d; - temp[0] = nk_vec2_add(points[0], nk_vec2_muls(normals[0], AA_SIZE)); - temp[1] = nk_vec2_sub(points[0], nk_vec2_muls(normals[0], AA_SIZE)); - d = nk_vec2_muls(normals[points_count-1], AA_SIZE); - temp[(points_count-1) * 2 + 0] = nk_vec2_add(points[points_count-1], d); - temp[(points_count-1) * 2 + 1] = nk_vec2_sub(points[points_count-1], d); - } - - /* fill elements */ - idx1 = index; - for (i1 = 0; i1 < count; i1++) { - struct nk_vec2 dm; - float dmr2; - nk_size i2 = ((i1 + 1) == points_count) ? 0 : (i1 + 1); - nk_size idx2 = ((i1+1) == points_count) ? index: (idx1 + 3); - - /* average normals */ - dm = nk_vec2_muls(nk_vec2_add(normals[i1], normals[i2]), 0.5f); - dmr2 = dm.x * dm.x + dm.y* dm.y; - if (dmr2 > 0.000001f) { - float scale = 1.0f/dmr2; - scale = NK_MIN(100.0f, scale); - dm = nk_vec2_muls(dm, scale); - } - - dm = nk_vec2_muls(dm, AA_SIZE); - temp[i2*2+0] = nk_vec2_add(points[i2], dm); - temp[i2*2+1] = nk_vec2_sub(points[i2], dm); - - ids[0] = (nk_draw_index)(idx2 + 0); ids[1] = (nk_draw_index)(idx1+0); - ids[2] = (nk_draw_index)(idx1 + 2); ids[3] = (nk_draw_index)(idx1+2); - ids[4] = (nk_draw_index)(idx2 + 2); ids[5] = (nk_draw_index)(idx2+0); - ids[6] = (nk_draw_index)(idx2 + 1); ids[7] = (nk_draw_index)(idx1+1); - ids[8] = (nk_draw_index)(idx1 + 0); ids[9] = (nk_draw_index)(idx1+0); - ids[10]= (nk_draw_index)(idx2 + 0); ids[11]= (nk_draw_index)(idx2+1); - ids += 12; - idx1 = idx2; - } - - /* fill vertices */ - for (i = 0; i < points_count; ++i) { - const struct nk_vec2 uv = list->config.tex_null.uv; - vtx = nk_draw_vertex(vtx, &list->config, points[i], uv, col); - vtx = nk_draw_vertex(vtx, &list->config, temp[i*2+0], uv, col_trans); - vtx = nk_draw_vertex(vtx, &list->config, temp[i*2+1], uv, col_trans); - } - } else { - nk_size idx1, i; - const float half_inner_thickness = (thickness - AA_SIZE) * 0.5f; - if (!closed) { - struct nk_vec2 d1 = nk_vec2_muls(normals[0], half_inner_thickness + AA_SIZE); - struct nk_vec2 d2 = nk_vec2_muls(normals[0], half_inner_thickness); - - temp[0] = nk_vec2_add(points[0], d1); - temp[1] = nk_vec2_add(points[0], d2); - temp[2] = nk_vec2_sub(points[0], d2); - temp[3] = nk_vec2_sub(points[0], d1); - - d1 = nk_vec2_muls(normals[points_count-1], half_inner_thickness + AA_SIZE); - d2 = nk_vec2_muls(normals[points_count-1], half_inner_thickness); - - temp[(points_count-1)*4+0] = nk_vec2_add(points[points_count-1], d1); - temp[(points_count-1)*4+1] = nk_vec2_add(points[points_count-1], d2); - temp[(points_count-1)*4+2] = nk_vec2_sub(points[points_count-1], d2); - temp[(points_count-1)*4+3] = nk_vec2_sub(points[points_count-1], d1); - } - - /* add all elements */ - idx1 = index; - for (i1 = 0; i1 < count; ++i1) { - struct nk_vec2 dm_out, dm_in; - const nk_size i2 = ((i1+1) == points_count) ? 0: (i1 + 1); - nk_size idx2 = ((i1+1) == points_count) ? index: (idx1 + 4); - - /* average normals */ - struct nk_vec2 dm = nk_vec2_muls(nk_vec2_add(normals[i1], normals[i2]), 0.5f); - float dmr2 = dm.x * dm.x + dm.y* dm.y; - if (dmr2 > 0.000001f) { - float scale = 1.0f/dmr2; - scale = NK_MIN(100.0f, scale); - dm = nk_vec2_muls(dm, scale); - } - - dm_out = nk_vec2_muls(dm, ((half_inner_thickness) + AA_SIZE)); - dm_in = nk_vec2_muls(dm, half_inner_thickness); - temp[i2*4+0] = nk_vec2_add(points[i2], dm_out); - temp[i2*4+1] = nk_vec2_add(points[i2], dm_in); - temp[i2*4+2] = nk_vec2_sub(points[i2], dm_in); - temp[i2*4+3] = nk_vec2_sub(points[i2], dm_out); - - /* add indexes */ - ids[0] = (nk_draw_index)(idx2 + 1); ids[1] = (nk_draw_index)(idx1+1); - ids[2] = (nk_draw_index)(idx1 + 2); ids[3] = (nk_draw_index)(idx1+2); - ids[4] = (nk_draw_index)(idx2 + 2); ids[5] = (nk_draw_index)(idx2+1); - ids[6] = (nk_draw_index)(idx2 + 1); ids[7] = (nk_draw_index)(idx1+1); - ids[8] = (nk_draw_index)(idx1 + 0); ids[9] = (nk_draw_index)(idx1+0); - ids[10]= (nk_draw_index)(idx2 + 0); ids[11] = (nk_draw_index)(idx2+1); - ids[12]= (nk_draw_index)(idx2 + 2); ids[13] = (nk_draw_index)(idx1+2); - ids[14]= (nk_draw_index)(idx1 + 3); ids[15] = (nk_draw_index)(idx1+3); - ids[16]= (nk_draw_index)(idx2 + 3); ids[17] = (nk_draw_index)(idx2+2); - ids += 18; - idx1 = idx2; - } - - /* add vertices */ - for (i = 0; i < points_count; ++i) { - const struct nk_vec2 uv = list->config.tex_null.uv; - vtx = nk_draw_vertex(vtx, &list->config, temp[i*4+0], uv, col_trans); - vtx = nk_draw_vertex(vtx, &list->config, temp[i*4+1], uv, col); - vtx = nk_draw_vertex(vtx, &list->config, temp[i*4+2], uv, col); - vtx = nk_draw_vertex(vtx, &list->config, temp[i*4+3], uv, col_trans); - } - } - /* free temporary normals + points */ - nk_buffer_reset(list->vertices, NK_BUFFER_FRONT); - } else { - /* NON ANTI-ALIASED STROKE */ - nk_size i1 = 0; - nk_size idx = list->vertex_count; - const nk_size idx_count = count * 6; - const nk_size vtx_count = count * 4; - void *vtx = nk_draw_list_alloc_vertices(list, vtx_count); - nk_draw_index *ids = nk_draw_list_alloc_elements(list, idx_count); - if (!vtx || !ids) return; - - for (i1 = 0; i1 < count; ++i1) { - float dx, dy; - const struct nk_vec2 uv = list->config.tex_null.uv; - const nk_size i2 = ((i1+1) == points_count) ? 0 : i1 + 1; - const struct nk_vec2 p1 = points[i1]; - const struct nk_vec2 p2 = points[i2]; - struct nk_vec2 diff = nk_vec2_sub(p2, p1); - float len; - - /* vec2 inverted length */ - len = nk_vec2_len_sqr(diff); - if (len != 0.0f) - len = NK_INV_SQRT(len); - else len = 1.0f; - diff = nk_vec2_muls(diff, len); - - /* add vertices */ - dx = diff.x * (thickness * 0.5f); - dy = diff.y * (thickness * 0.5f); - - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(p1.x + dy, p1.y - dx), uv, col); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(p2.x + dy, p2.y - dx), uv, col); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(p2.x - dy, p2.y + dx), uv, col); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(p1.x - dy, p1.y + dx), uv, col); - - ids[0] = (nk_draw_index)(idx+0); ids[1] = (nk_draw_index)(idx+1); - ids[2] = (nk_draw_index)(idx+2); ids[3] = (nk_draw_index)(idx+0); - ids[4] = (nk_draw_index)(idx+2); ids[5] = (nk_draw_index)(idx+3); - - ids += 6; - idx += 4; - } - } -} -NK_API void -nk_draw_list_fill_poly_convex(struct nk_draw_list *list, - const struct nk_vec2 *points, const unsigned int points_count, - struct nk_color color, enum nk_anti_aliasing aliasing) -{ - struct nk_colorf col; - struct nk_colorf col_trans; - - NK_STORAGE const nk_size pnt_align = NK_ALIGNOF(struct nk_vec2); - NK_STORAGE const nk_size pnt_size = sizeof(struct nk_vec2); - NK_ASSERT(list); - if (!list || points_count < 3) return; - -#ifdef NK_INCLUDE_COMMAND_USERDATA - nk_draw_list_push_userdata(list, list->userdata); -#endif - - color.a = (nk_byte)((float)color.a * list->config.global_alpha); - nk_color_fv(&col.r, color); - col_trans = col; - col_trans.a = 0; - - if (aliasing == NK_ANTI_ALIASING_ON) { - nk_size i = 0; - nk_size i0 = 0; - nk_size i1 = 0; - - const float AA_SIZE = 1.0f; - nk_size vertex_offset = 0; - nk_size index = list->vertex_count; - - const nk_size idx_count = (points_count-2)*3 + points_count*6; - const nk_size vtx_count = (points_count*2); - - void *vtx = nk_draw_list_alloc_vertices(list, vtx_count); - nk_draw_index *ids = nk_draw_list_alloc_elements(list, idx_count); - - nk_size size = 0; - struct nk_vec2 *normals = 0; - unsigned int vtx_inner_idx = (unsigned int)(index + 0); - unsigned int vtx_outer_idx = (unsigned int)(index + 1); - if (!vtx || !ids) return; - - /* temporary allocate normals */ - vertex_offset = (nk_size)((nk_byte*)vtx - (nk_byte*)list->vertices->memory.ptr); - nk_buffer_mark(list->vertices, NK_BUFFER_FRONT); - size = pnt_size * points_count; - normals = (struct nk_vec2*) nk_buffer_alloc(list->vertices, NK_BUFFER_FRONT, size, pnt_align); - if (!normals) return; - vtx = (void*)((nk_byte*)list->vertices->memory.ptr + vertex_offset); - - /* add elements */ - for (i = 2; i < points_count; i++) { - ids[0] = (nk_draw_index)(vtx_inner_idx); - ids[1] = (nk_draw_index)(vtx_inner_idx + ((i-1) << 1)); - ids[2] = (nk_draw_index)(vtx_inner_idx + (i << 1)); - ids += 3; - } - - /* compute normals */ - for (i0 = points_count-1, i1 = 0; i1 < points_count; i0 = i1++) { - struct nk_vec2 p0 = points[i0]; - struct nk_vec2 p1 = points[i1]; - struct nk_vec2 diff = nk_vec2_sub(p1, p0); - - /* vec2 inverted length */ - float len = nk_vec2_len_sqr(diff); - if (len != 0.0f) - len = NK_INV_SQRT(len); - else len = 1.0f; - diff = nk_vec2_muls(diff, len); - - normals[i0].x = diff.y; - normals[i0].y = -diff.x; - } - - /* add vertices + indexes */ - for (i0 = points_count-1, i1 = 0; i1 < points_count; i0 = i1++) { - const struct nk_vec2 uv = list->config.tex_null.uv; - struct nk_vec2 n0 = normals[i0]; - struct nk_vec2 n1 = normals[i1]; - struct nk_vec2 dm = nk_vec2_muls(nk_vec2_add(n0, n1), 0.5f); - float dmr2 = dm.x*dm.x + dm.y*dm.y; - if (dmr2 > 0.000001f) { - float scale = 1.0f / dmr2; - scale = NK_MIN(scale, 100.0f); - dm = nk_vec2_muls(dm, scale); - } - dm = nk_vec2_muls(dm, AA_SIZE * 0.5f); - - /* add vertices */ - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2_sub(points[i1], dm), uv, col); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2_add(points[i1], dm), uv, col_trans); - - /* add indexes */ - ids[0] = (nk_draw_index)(vtx_inner_idx+(i1<<1)); - ids[1] = (nk_draw_index)(vtx_inner_idx+(i0<<1)); - ids[2] = (nk_draw_index)(vtx_outer_idx+(i0<<1)); - ids[3] = (nk_draw_index)(vtx_outer_idx+(i0<<1)); - ids[4] = (nk_draw_index)(vtx_outer_idx+(i1<<1)); - ids[5] = (nk_draw_index)(vtx_inner_idx+(i1<<1)); - ids += 6; - } - /* free temporary normals + points */ - nk_buffer_reset(list->vertices, NK_BUFFER_FRONT); - } else { - nk_size i = 0; - nk_size index = list->vertex_count; - const nk_size idx_count = (points_count-2)*3; - const nk_size vtx_count = points_count; - void *vtx = nk_draw_list_alloc_vertices(list, vtx_count); - nk_draw_index *ids = nk_draw_list_alloc_elements(list, idx_count); - - if (!vtx || !ids) return; - for (i = 0; i < vtx_count; ++i) - vtx = nk_draw_vertex(vtx, &list->config, points[i], list->config.tex_null.uv, col); - for (i = 2; i < points_count; ++i) { - ids[0] = (nk_draw_index)index; - ids[1] = (nk_draw_index)(index+ i - 1); - ids[2] = (nk_draw_index)(index+i); - ids += 3; - } - } -} -NK_API void -nk_draw_list_path_clear(struct nk_draw_list *list) -{ - NK_ASSERT(list); - if (!list) return; - nk_buffer_reset(list->buffer, NK_BUFFER_FRONT); - list->path_count = 0; - list->path_offset = 0; -} -NK_API void -nk_draw_list_path_line_to(struct nk_draw_list *list, struct nk_vec2 pos) -{ - struct nk_vec2 *points = 0; - struct nk_draw_command *cmd = 0; - NK_ASSERT(list); - if (!list) return; - if (!list->cmd_count) - nk_draw_list_add_clip(list, nk_null_rect); - - cmd = nk_draw_list_command_last(list); - if (cmd && cmd->texture.ptr != list->config.tex_null.texture.ptr) - nk_draw_list_push_image(list, list->config.tex_null.texture); - - points = nk_draw_list_alloc_path(list, 1); - if (!points) return; - points[0] = pos; -} -NK_API void -nk_draw_list_path_arc_to_fast(struct nk_draw_list *list, struct nk_vec2 center, - float radius, int a_min, int a_max) -{ - int a = 0; - NK_ASSERT(list); - if (!list) return; - if (a_min <= a_max) { - for (a = a_min; a <= a_max; a++) { - const struct nk_vec2 c = list->circle_vtx[(nk_size)a % NK_LEN(list->circle_vtx)]; - const float x = center.x + c.x * radius; - const float y = center.y + c.y * radius; - nk_draw_list_path_line_to(list, nk_vec2(x, y)); - } - } -} -NK_API void -nk_draw_list_path_arc_to(struct nk_draw_list *list, struct nk_vec2 center, - float radius, float a_min, float a_max, unsigned int segments) -{ - unsigned int i = 0; - NK_ASSERT(list); - if (!list) return; - if (radius == 0.0f) return; - - /* This algorithm for arc drawing relies on these two trigonometric identities[1]: - sin(a + b) = sin(a) * cos(b) + cos(a) * sin(b) - cos(a + b) = cos(a) * cos(b) - sin(a) * sin(b) - - Two coordinates (x, y) of a point on a circle centered on - the origin can be written in polar form as: - x = r * cos(a) - y = r * sin(a) - where r is the radius of the circle, - a is the angle between (x, y) and the origin. - - This allows us to rotate the coordinates around the - origin by an angle b using the following transformation: - x' = r * cos(a + b) = x * cos(b) - y * sin(b) - y' = r * sin(a + b) = y * cos(b) + x * sin(b) - - [1] https://en.wikipedia.org/wiki/List_of_trigonometric_identities#Angle_sum_and_difference_identities - */ - {const float d_angle = (a_max - a_min) / (float)segments; - const float sin_d = (float)NK_SIN(d_angle); - const float cos_d = (float)NK_COS(d_angle); - - float cx = (float)NK_COS(a_min) * radius; - float cy = (float)NK_SIN(a_min) * radius; - for(i = 0; i <= segments; ++i) { - float new_cx, new_cy; - const float x = center.x + cx; - const float y = center.y + cy; - nk_draw_list_path_line_to(list, nk_vec2(x, y)); - - new_cx = cx * cos_d - cy * sin_d; - new_cy = cy * cos_d + cx * sin_d; - cx = new_cx; - cy = new_cy; - }} -} -NK_API void -nk_draw_list_path_rect_to(struct nk_draw_list *list, struct nk_vec2 a, - struct nk_vec2 b, float rounding) -{ - float r; - NK_ASSERT(list); - if (!list) return; - r = rounding; - r = NK_MIN(r, ((b.x-a.x) < 0) ? -(b.x-a.x): (b.x-a.x)); - r = NK_MIN(r, ((b.y-a.y) < 0) ? -(b.y-a.y): (b.y-a.y)); - - if (r == 0.0f) { - nk_draw_list_path_line_to(list, a); - nk_draw_list_path_line_to(list, nk_vec2(b.x,a.y)); - nk_draw_list_path_line_to(list, b); - nk_draw_list_path_line_to(list, nk_vec2(a.x,b.y)); - } else { - nk_draw_list_path_arc_to_fast(list, nk_vec2(a.x + r, a.y + r), r, 6, 9); - nk_draw_list_path_arc_to_fast(list, nk_vec2(b.x - r, a.y + r), r, 9, 12); - nk_draw_list_path_arc_to_fast(list, nk_vec2(b.x - r, b.y - r), r, 0, 3); - nk_draw_list_path_arc_to_fast(list, nk_vec2(a.x + r, b.y - r), r, 3, 6); - } -} -NK_API void -nk_draw_list_path_curve_to(struct nk_draw_list *list, struct nk_vec2 p2, - struct nk_vec2 p3, struct nk_vec2 p4, unsigned int num_segments) -{ - float t_step; - unsigned int i_step; - struct nk_vec2 p1; - - NK_ASSERT(list); - NK_ASSERT(list->path_count); - if (!list || !list->path_count) return; - num_segments = NK_MAX(num_segments, 1); - - p1 = nk_draw_list_path_last(list); - t_step = 1.0f/(float)num_segments; - for (i_step = 1; i_step <= num_segments; ++i_step) { - float t = t_step * (float)i_step; - float u = 1.0f - t; - float w1 = u*u*u; - float w2 = 3*u*u*t; - float w3 = 3*u*t*t; - float w4 = t * t *t; - float x = w1 * p1.x + w2 * p2.x + w3 * p3.x + w4 * p4.x; - float y = w1 * p1.y + w2 * p2.y + w3 * p3.y + w4 * p4.y; - nk_draw_list_path_line_to(list, nk_vec2(x,y)); - } -} -NK_API void -nk_draw_list_path_fill(struct nk_draw_list *list, struct nk_color color) -{ - struct nk_vec2 *points; - NK_ASSERT(list); - if (!list) return; - points = (struct nk_vec2*)nk_buffer_memory(list->buffer); - nk_draw_list_fill_poly_convex(list, points, list->path_count, color, list->config.shape_AA); - nk_draw_list_path_clear(list); -} -NK_API void -nk_draw_list_path_stroke(struct nk_draw_list *list, struct nk_color color, - enum nk_draw_list_stroke closed, float thickness) -{ - struct nk_vec2 *points; - NK_ASSERT(list); - if (!list) return; - points = (struct nk_vec2*)nk_buffer_memory(list->buffer); - nk_draw_list_stroke_poly_line(list, points, list->path_count, color, - closed, thickness, list->config.line_AA); - nk_draw_list_path_clear(list); -} -NK_API void -nk_draw_list_stroke_line(struct nk_draw_list *list, struct nk_vec2 a, - struct nk_vec2 b, struct nk_color col, float thickness) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - if (list->line_AA == NK_ANTI_ALIASING_ON) { - nk_draw_list_path_line_to(list, a); - nk_draw_list_path_line_to(list, b); - } else { - nk_draw_list_path_line_to(list, nk_vec2_sub(a,nk_vec2(0.5f,0.5f))); - nk_draw_list_path_line_to(list, nk_vec2_sub(b,nk_vec2(0.5f,0.5f))); - } - nk_draw_list_path_stroke(list, col, NK_STROKE_OPEN, thickness); -} -NK_API void -nk_draw_list_fill_rect(struct nk_draw_list *list, struct nk_rect rect, - struct nk_color col, float rounding) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - - if (list->line_AA == NK_ANTI_ALIASING_ON) { - nk_draw_list_path_rect_to(list, nk_vec2(rect.x, rect.y), - nk_vec2(rect.x + rect.w, rect.y + rect.h), rounding); - } else { - nk_draw_list_path_rect_to(list, nk_vec2(rect.x-0.5f, rect.y-0.5f), - nk_vec2(rect.x + rect.w, rect.y + rect.h), rounding); - } nk_draw_list_path_fill(list, col); -} -NK_API void -nk_draw_list_stroke_rect(struct nk_draw_list *list, struct nk_rect rect, - struct nk_color col, float rounding, float thickness) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - if (list->line_AA == NK_ANTI_ALIASING_ON) { - nk_draw_list_path_rect_to(list, nk_vec2(rect.x, rect.y), - nk_vec2(rect.x + rect.w, rect.y + rect.h), rounding); - } else { - nk_draw_list_path_rect_to(list, nk_vec2(rect.x-0.5f, rect.y-0.5f), - nk_vec2(rect.x + rect.w, rect.y + rect.h), rounding); - } nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness); -} -NK_API void -nk_draw_list_fill_rect_multi_color(struct nk_draw_list *list, struct nk_rect rect, - struct nk_color left, struct nk_color top, struct nk_color right, - struct nk_color bottom) -{ - void *vtx; - struct nk_colorf col_left, col_top; - struct nk_colorf col_right, col_bottom; - nk_draw_index *idx; - nk_draw_index index; - - nk_color_fv(&col_left.r, left); - nk_color_fv(&col_right.r, right); - nk_color_fv(&col_top.r, top); - nk_color_fv(&col_bottom.r, bottom); - - NK_ASSERT(list); - if (!list) return; - - nk_draw_list_push_image(list, list->config.tex_null.texture); - index = (nk_draw_index)list->vertex_count; - vtx = nk_draw_list_alloc_vertices(list, 4); - idx = nk_draw_list_alloc_elements(list, 6); - if (!vtx || !idx) return; - - idx[0] = (nk_draw_index)(index+0); idx[1] = (nk_draw_index)(index+1); - idx[2] = (nk_draw_index)(index+2); idx[3] = (nk_draw_index)(index+0); - idx[4] = (nk_draw_index)(index+2); idx[5] = (nk_draw_index)(index+3); - - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(rect.x, rect.y), list->config.tex_null.uv, col_left); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(rect.x + rect.w, rect.y), list->config.tex_null.uv, col_top); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(rect.x + rect.w, rect.y + rect.h), list->config.tex_null.uv, col_right); - vtx = nk_draw_vertex(vtx, &list->config, nk_vec2(rect.x, rect.y + rect.h), list->config.tex_null.uv, col_bottom); -} -NK_API void -nk_draw_list_fill_triangle(struct nk_draw_list *list, struct nk_vec2 a, - struct nk_vec2 b, struct nk_vec2 c, struct nk_color col) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - nk_draw_list_path_line_to(list, a); - nk_draw_list_path_line_to(list, b); - nk_draw_list_path_line_to(list, c); - nk_draw_list_path_fill(list, col); -} -NK_API void -nk_draw_list_stroke_triangle(struct nk_draw_list *list, struct nk_vec2 a, - struct nk_vec2 b, struct nk_vec2 c, struct nk_color col, float thickness) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - nk_draw_list_path_line_to(list, a); - nk_draw_list_path_line_to(list, b); - nk_draw_list_path_line_to(list, c); - nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness); -} -NK_API void -nk_draw_list_fill_circle(struct nk_draw_list *list, struct nk_vec2 center, - float radius, struct nk_color col, unsigned int segs) -{ - float a_max; - NK_ASSERT(list); - if (!list || !col.a) return; - a_max = NK_PI * 2.0f * ((float)segs - 1.0f) / (float)segs; - nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs); - nk_draw_list_path_fill(list, col); -} -NK_API void -nk_draw_list_stroke_circle(struct nk_draw_list *list, struct nk_vec2 center, - float radius, struct nk_color col, unsigned int segs, float thickness) -{ - float a_max; - NK_ASSERT(list); - if (!list || !col.a) return; - a_max = NK_PI * 2.0f * ((float)segs - 1.0f) / (float)segs; - nk_draw_list_path_arc_to(list, center, radius, 0.0f, a_max, segs); - nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness); -} -NK_API void -nk_draw_list_stroke_curve(struct nk_draw_list *list, struct nk_vec2 p0, - struct nk_vec2 cp0, struct nk_vec2 cp1, struct nk_vec2 p1, - struct nk_color col, unsigned int segments, float thickness) -{ - NK_ASSERT(list); - if (!list || !col.a) return; - nk_draw_list_path_line_to(list, p0); - nk_draw_list_path_curve_to(list, cp0, cp1, p1, segments); - nk_draw_list_path_stroke(list, col, NK_STROKE_OPEN, thickness); -} -NK_INTERN void -nk_draw_list_push_rect_uv(struct nk_draw_list *list, struct nk_vec2 a, - struct nk_vec2 c, struct nk_vec2 uva, struct nk_vec2 uvc, - struct nk_color color) -{ - void *vtx; - struct nk_vec2 uvb; - struct nk_vec2 uvd; - struct nk_vec2 b; - struct nk_vec2 d; - - struct nk_colorf col; - nk_draw_index *idx; - nk_draw_index index; - NK_ASSERT(list); - if (!list) return; - - nk_color_fv(&col.r, color); - uvb = nk_vec2(uvc.x, uva.y); - uvd = nk_vec2(uva.x, uvc.y); - b = nk_vec2(c.x, a.y); - d = nk_vec2(a.x, c.y); - - index = (nk_draw_index)list->vertex_count; - vtx = nk_draw_list_alloc_vertices(list, 4); - idx = nk_draw_list_alloc_elements(list, 6); - if (!vtx || !idx) return; - - idx[0] = (nk_draw_index)(index+0); idx[1] = (nk_draw_index)(index+1); - idx[2] = (nk_draw_index)(index+2); idx[3] = (nk_draw_index)(index+0); - idx[4] = (nk_draw_index)(index+2); idx[5] = (nk_draw_index)(index+3); - - vtx = nk_draw_vertex(vtx, &list->config, a, uva, col); - vtx = nk_draw_vertex(vtx, &list->config, b, uvb, col); - vtx = nk_draw_vertex(vtx, &list->config, c, uvc, col); - vtx = nk_draw_vertex(vtx, &list->config, d, uvd, col); -} -NK_API void -nk_draw_list_add_image(struct nk_draw_list *list, struct nk_image texture, - struct nk_rect rect, struct nk_color color) -{ - NK_ASSERT(list); - if (!list) return; - /* push new command with given texture */ - nk_draw_list_push_image(list, texture.handle); - if (nk_image_is_subimage(&texture)) { - /* add region inside of the texture */ - struct nk_vec2 uv[2]; - uv[0].x = (float)texture.region[0]/(float)texture.w; - uv[0].y = (float)texture.region[1]/(float)texture.h; - uv[1].x = (float)(texture.region[0] + texture.region[2])/(float)texture.w; - uv[1].y = (float)(texture.region[1] + texture.region[3])/(float)texture.h; - nk_draw_list_push_rect_uv(list, nk_vec2(rect.x, rect.y), - nk_vec2(rect.x + rect.w, rect.y + rect.h), uv[0], uv[1], color); - } else nk_draw_list_push_rect_uv(list, nk_vec2(rect.x, rect.y), - nk_vec2(rect.x + rect.w, rect.y + rect.h), - nk_vec2(0.0f, 0.0f), nk_vec2(1.0f, 1.0f),color); -} -NK_API void -nk_draw_list_add_text(struct nk_draw_list *list, const struct nk_user_font *font, - struct nk_rect rect, const char *text, int len, float font_height, - struct nk_color fg) -{ - float x = 0; - int text_len = 0; - nk_rune unicode = 0; - nk_rune next = 0; - int glyph_len = 0; - int next_glyph_len = 0; - struct nk_user_font_glyph g; - - NK_ASSERT(list); - if (!list || !len || !text) return; - if (!NK_INTERSECT(rect.x, rect.y, rect.w, rect.h, - list->clip_rect.x, list->clip_rect.y, list->clip_rect.w, list->clip_rect.h)) return; - - nk_draw_list_push_image(list, font->texture); - x = rect.x; - glyph_len = nk_utf_decode(text, &unicode, len); - if (!glyph_len) return; - - /* draw every glyph image */ - fg.a = (nk_byte)((float)fg.a * list->config.global_alpha); - while (text_len < len && glyph_len) { - float gx, gy, gh, gw; - float char_width = 0; - if (unicode == NK_UTF_INVALID) break; - - /* query currently drawn glyph information */ - next_glyph_len = nk_utf_decode(text + text_len + glyph_len, &next, (int)len - text_len); - font->query(font->userdata, font_height, &g, unicode, - (next == NK_UTF_INVALID) ? '\0' : next); - - /* calculate and draw glyph drawing rectangle and image */ - gx = x + g.offset.x; - gy = rect.y + g.offset.y; - gw = g.width; gh = g.height; - char_width = g.xadvance; - nk_draw_list_push_rect_uv(list, nk_vec2(gx,gy), nk_vec2(gx + gw, gy+ gh), - g.uv[0], g.uv[1], fg); - - /* offset next glyph */ - text_len += glyph_len; - x += char_width; - glyph_len = next_glyph_len; - unicode = next; - } -} -NK_API nk_flags -nk_convert(struct nk_context *ctx, struct nk_buffer *cmds, - struct nk_buffer *vertices, struct nk_buffer *elements, - const struct nk_convert_config *config) -{ - nk_flags res = NK_CONVERT_SUCCESS; - const struct nk_command *cmd; - NK_ASSERT(ctx); - NK_ASSERT(cmds); - NK_ASSERT(vertices); - NK_ASSERT(elements); - NK_ASSERT(config); - NK_ASSERT(config->vertex_layout); - NK_ASSERT(config->vertex_size); - if (!ctx || !cmds || !vertices || !elements || !config || !config->vertex_layout) - return NK_CONVERT_INVALID_PARAM; - - nk_draw_list_setup(&ctx->draw_list, config, cmds, vertices, elements, - config->line_AA, config->shape_AA); - nk_foreach(cmd, ctx) - { -#ifdef NK_INCLUDE_COMMAND_USERDATA - ctx->draw_list.userdata = cmd->userdata; -#endif - switch (cmd->type) { - case NK_COMMAND_NOP: break; - case NK_COMMAND_SCISSOR: { - const struct nk_command_scissor *s = (const struct nk_command_scissor*)cmd; - nk_draw_list_add_clip(&ctx->draw_list, nk_rect(s->x, s->y, s->w, s->h)); - } break; - case NK_COMMAND_LINE: { - const struct nk_command_line *l = (const struct nk_command_line*)cmd; - nk_draw_list_stroke_line(&ctx->draw_list, nk_vec2(l->begin.x, l->begin.y), - nk_vec2(l->end.x, l->end.y), l->color, l->line_thickness); - } break; - case NK_COMMAND_CURVE: { - const struct nk_command_curve *q = (const struct nk_command_curve*)cmd; - nk_draw_list_stroke_curve(&ctx->draw_list, nk_vec2(q->begin.x, q->begin.y), - nk_vec2(q->ctrl[0].x, q->ctrl[0].y), nk_vec2(q->ctrl[1].x, - q->ctrl[1].y), nk_vec2(q->end.x, q->end.y), q->color, - config->curve_segment_count, q->line_thickness); - } break; - case NK_COMMAND_RECT: { - const struct nk_command_rect *r = (const struct nk_command_rect*)cmd; - nk_draw_list_stroke_rect(&ctx->draw_list, nk_rect(r->x, r->y, r->w, r->h), - r->color, (float)r->rounding, r->line_thickness); - } break; - case NK_COMMAND_RECT_FILLED: { - const struct nk_command_rect_filled *r = (const struct nk_command_rect_filled*)cmd; - nk_draw_list_fill_rect(&ctx->draw_list, nk_rect(r->x, r->y, r->w, r->h), - r->color, (float)r->rounding); - } break; - case NK_COMMAND_RECT_MULTI_COLOR: { - const struct nk_command_rect_multi_color *r = (const struct nk_command_rect_multi_color*)cmd; - nk_draw_list_fill_rect_multi_color(&ctx->draw_list, nk_rect(r->x, r->y, r->w, r->h), - r->left, r->top, r->right, r->bottom); - } break; - case NK_COMMAND_CIRCLE: { - const struct nk_command_circle *c = (const struct nk_command_circle*)cmd; - nk_draw_list_stroke_circle(&ctx->draw_list, nk_vec2((float)c->x + (float)c->w/2, - (float)c->y + (float)c->h/2), (float)c->w/2, c->color, - config->circle_segment_count, c->line_thickness); - } break; - case NK_COMMAND_CIRCLE_FILLED: { - const struct nk_command_circle_filled *c = (const struct nk_command_circle_filled *)cmd; - nk_draw_list_fill_circle(&ctx->draw_list, nk_vec2((float)c->x + (float)c->w/2, - (float)c->y + (float)c->h/2), (float)c->w/2, c->color, - config->circle_segment_count); - } break; - case NK_COMMAND_ARC: { - const struct nk_command_arc *c = (const struct nk_command_arc*)cmd; - nk_draw_list_path_line_to(&ctx->draw_list, nk_vec2(c->cx, c->cy)); - nk_draw_list_path_arc_to(&ctx->draw_list, nk_vec2(c->cx, c->cy), c->r, - c->a[0], c->a[1], config->arc_segment_count); - nk_draw_list_path_stroke(&ctx->draw_list, c->color, NK_STROKE_CLOSED, c->line_thickness); - } break; - case NK_COMMAND_ARC_FILLED: { - const struct nk_command_arc_filled *c = (const struct nk_command_arc_filled*)cmd; - nk_draw_list_path_line_to(&ctx->draw_list, nk_vec2(c->cx, c->cy)); - nk_draw_list_path_arc_to(&ctx->draw_list, nk_vec2(c->cx, c->cy), c->r, - c->a[0], c->a[1], config->arc_segment_count); - nk_draw_list_path_fill(&ctx->draw_list, c->color); - } break; - case NK_COMMAND_TRIANGLE: { - const struct nk_command_triangle *t = (const struct nk_command_triangle*)cmd; - nk_draw_list_stroke_triangle(&ctx->draw_list, nk_vec2(t->a.x, t->a.y), - nk_vec2(t->b.x, t->b.y), nk_vec2(t->c.x, t->c.y), t->color, - t->line_thickness); - } break; - case NK_COMMAND_TRIANGLE_FILLED: { - const struct nk_command_triangle_filled *t = (const struct nk_command_triangle_filled*)cmd; - nk_draw_list_fill_triangle(&ctx->draw_list, nk_vec2(t->a.x, t->a.y), - nk_vec2(t->b.x, t->b.y), nk_vec2(t->c.x, t->c.y), t->color); - } break; - case NK_COMMAND_POLYGON: { - int i; - const struct nk_command_polygon*p = (const struct nk_command_polygon*)cmd; - for (i = 0; i < p->point_count; ++i) { - struct nk_vec2 pnt = nk_vec2((float)p->points[i].x, (float)p->points[i].y); - nk_draw_list_path_line_to(&ctx->draw_list, pnt); - } - nk_draw_list_path_stroke(&ctx->draw_list, p->color, NK_STROKE_CLOSED, p->line_thickness); - } break; - case NK_COMMAND_POLYGON_FILLED: { - int i; - const struct nk_command_polygon_filled *p = (const struct nk_command_polygon_filled*)cmd; - for (i = 0; i < p->point_count; ++i) { - struct nk_vec2 pnt = nk_vec2((float)p->points[i].x, (float)p->points[i].y); - nk_draw_list_path_line_to(&ctx->draw_list, pnt); - } - nk_draw_list_path_fill(&ctx->draw_list, p->color); - } break; - case NK_COMMAND_POLYLINE: { - int i; - const struct nk_command_polyline *p = (const struct nk_command_polyline*)cmd; - for (i = 0; i < p->point_count; ++i) { - struct nk_vec2 pnt = nk_vec2((float)p->points[i].x, (float)p->points[i].y); - nk_draw_list_path_line_to(&ctx->draw_list, pnt); - } - nk_draw_list_path_stroke(&ctx->draw_list, p->color, NK_STROKE_OPEN, p->line_thickness); - } break; - case NK_COMMAND_TEXT: { - const struct nk_command_text *t = (const struct nk_command_text*)cmd; - nk_draw_list_add_text(&ctx->draw_list, t->font, nk_rect(t->x, t->y, t->w, t->h), - t->string, t->length, t->height, t->foreground); - } break; - case NK_COMMAND_IMAGE: { - const struct nk_command_image *i = (const struct nk_command_image*)cmd; - nk_draw_list_add_image(&ctx->draw_list, i->img, nk_rect(i->x, i->y, i->w, i->h), i->col); - } break; - case NK_COMMAND_CUSTOM: { - const struct nk_command_custom *c = (const struct nk_command_custom*)cmd; - c->callback(&ctx->draw_list, c->x, c->y, c->w, c->h, c->callback_data); - } break; - default: break; - } - } - res |= (cmds->needed > cmds->allocated + (cmds->memory.size - cmds->size)) ? NK_CONVERT_COMMAND_BUFFER_FULL: 0; - res |= (vertices->needed > vertices->allocated) ? NK_CONVERT_VERTEX_BUFFER_FULL: 0; - res |= (elements->needed > elements->allocated) ? NK_CONVERT_ELEMENT_BUFFER_FULL: 0; - return res; -} -NK_API const struct nk_draw_command* -nk__draw_begin(const struct nk_context *ctx, - const struct nk_buffer *buffer) -{ - return nk__draw_list_begin(&ctx->draw_list, buffer); -} -NK_API const struct nk_draw_command* -nk__draw_end(const struct nk_context *ctx, const struct nk_buffer *buffer) -{ - return nk__draw_list_end(&ctx->draw_list, buffer); -} -NK_API const struct nk_draw_command* -nk__draw_next(const struct nk_draw_command *cmd, - const struct nk_buffer *buffer, const struct nk_context *ctx) -{ - return nk__draw_list_next(cmd, buffer, &ctx->draw_list); -} -#endif - - -/* stb_rect_pack.h - v1.01 - public domain - rectangle packing */ -/* Sean Barrett 2014 */ -/* */ -/* Useful for e.g. packing rectangular textures into an atlas. */ -/* Does not do rotation. */ -/* */ -/* Before #including, */ -/* */ -/* #define STB_RECT_PACK_IMPLEMENTATION */ -/* */ -/* in the file that you want to have the implementation. */ -/* */ -/* Not necessarily the awesomest packing method, but better than */ -/* the totally naive one in stb_truetype (which is primarily what */ -/* this is meant to replace). */ -/* */ -/* Has only had a few tests run, may have issues. */ -/* */ -/* More docs to come. */ -/* */ -/* No memory allocations; uses qsort() and assert() from stdlib. */ -/* Can override those by defining STBRP_SORT and STBRP_ASSERT. */ -/* */ -/* This library currently uses the Skyline Bottom-Left algorithm. */ -/* */ -/* Please note: better rectangle packers are welcome! Please */ -/* implement them to the same API, but with a different init */ -/* function. */ -/* */ -/* Credits */ -/* */ -/* Library */ -/* Sean Barrett */ -/* Minor features */ -/* Martins Mozeiko */ -/* github:IntellectualKitty */ -/* */ -/* Bugfixes / warning fixes */ -/* Jeremy Jaussaud */ -/* Fabian Giesen */ -/* */ -/* Version history: */ -/* */ -/* 1.01 (2021-07-11) always use large rect mode, expose STBRP__MAXVAL in public section */ -/* 1.00 (2019-02-25) avoid small space waste; gracefully fail too-wide rectangles */ -/* 0.99 (2019-02-07) warning fixes */ -/* 0.11 (2017-03-03) return packing success/fail result */ -/* 0.10 (2016-10-25) remove cast-away-const to avoid warnings */ -/* 0.09 (2016-08-27) fix compiler warnings */ -/* 0.08 (2015-09-13) really fix bug with empty rects (w=0 or h=0) */ -/* 0.07 (2015-09-13) fix bug with empty rects (w=0 or h=0) */ -/* 0.06 (2015-04-15) added STBRP_SORT to allow replacing qsort */ -/* 0.05: added STBRP_ASSERT to allow replacing assert */ -/* 0.04: fixed minor bug in STBRP_LARGE_RECTS support */ -/* 0.01: initial release */ -/* */ -/* LICENSE */ -/* */ -/* See end of file for license information. */ - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* INCLUDE SECTION */ -/* */ - -#ifndef STB_INCLUDE_STB_RECT_PACK_H -#define STB_INCLUDE_STB_RECT_PACK_H - -#define STB_RECT_PACK_VERSION 1 - -#ifdef STBRP_STATIC -#define STBRP_DEF static -#else -#define STBRP_DEF extern -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct stbrp_context stbrp_context; -typedef struct stbrp_node stbrp_node; -typedef struct stbrp_rect stbrp_rect; - -typedef int stbrp_coord; - -#define STBRP__MAXVAL 0x7fffffff -/* Mostly for internal use, but this is the maximum supported coordinate value. */ - -STBRP_DEF int stbrp_pack_rects (stbrp_context *context, stbrp_rect *rects, int num_rects); -/* Assign packed locations to rectangles. The rectangles are of type */ -/* 'stbrp_rect' defined below, stored in the array 'rects', and there */ -/* are 'num_rects' many of them. */ -/* */ -/* Rectangles which are successfully packed have the 'was_packed' flag */ -/* set to a non-zero value and 'x' and 'y' store the minimum location */ -/* on each axis (i.e. bottom-left in cartesian coordinates, top-left */ -/* if you imagine y increasing downwards). Rectangles which do not fit */ -/* have the 'was_packed' flag set to 0. */ -/* */ -/* You should not try to access the 'rects' array from another thread */ -/* while this function is running, as the function temporarily reorders */ -/* the array while it executes. */ -/* */ -/* To pack into another rectangle, you need to call stbrp_init_target */ -/* again. To continue packing into the same rectangle, you can call */ -/* this function again. Calling this multiple times with multiple rect */ -/* arrays will probably produce worse packing results than calling it */ -/* a single time with the full rectangle array, but the option is */ -/* available. */ -/* */ -/* The function returns 1 if all of the rectangles were successfully */ -/* packed and 0 otherwise. */ - -struct stbrp_rect -{ - /* reserved for your use: */ - int id; - - /* input: */ - stbrp_coord w, h; - - /* output: */ - stbrp_coord x, y; - int was_packed; /* non-zero if valid packing */ - -}; /* 16 bytes, nominally */ - - -STBRP_DEF void stbrp_init_target (stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes); -/* Initialize a rectangle packer to: */ -/* pack a rectangle that is 'width' by 'height' in dimensions */ -/* using temporary storage provided by the array 'nodes', which is 'num_nodes' long */ -/* */ -/* You must call this function every time you start packing into a new target. */ -/* */ -/* There is no "shutdown" function. The 'nodes' memory must stay valid for */ -/* the following stbrp_pack_rects() call (or calls), but can be freed after */ -/* the call (or calls) finish. */ -/* */ -/* Note: to guarantee best results, either: */ -/* 1. make sure 'num_nodes' >= 'width' */ -/* or 2. call stbrp_allow_out_of_mem() defined below with 'allow_out_of_mem = 1' */ -/* */ -/* If you don't do either of the above things, widths will be quantized to multiples */ -/* of small integers to guarantee the algorithm doesn't run out of temporary storage. */ -/* */ -/* If you do #2, then the non-quantized algorithm will be used, but the algorithm */ -/* may run out of temporary storage and be unable to pack some rectangles. */ - -STBRP_DEF void stbrp_setup_allow_out_of_mem (stbrp_context *context, int allow_out_of_mem); -/* Optionally call this function after init but before doing any packing to */ -/* change the handling of the out-of-temp-memory scenario, described above. */ -/* If you call init again, this will be reset to the default (false). */ - - -STBRP_DEF void stbrp_setup_heuristic (stbrp_context *context, int heuristic); -/* Optionally select which packing heuristic the library should use. Different */ -/* heuristics will produce better/worse results for different data sets. */ -/* If you call init again, this will be reset to the default. */ - -enum -{ - STBRP_HEURISTIC_Skyline_default=0, - STBRP_HEURISTIC_Skyline_BL_sortHeight = STBRP_HEURISTIC_Skyline_default, - STBRP_HEURISTIC_Skyline_BF_sortHeight -}; - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* the details of the following structures don't matter to you, but they must */ -/* be visible so you can handle the memory allocations for them */ - -struct stbrp_node -{ - stbrp_coord x,y; - stbrp_node *next; -}; - -struct stbrp_context -{ - int width; - int height; - int align; - int init_mode; - int heuristic; - int num_nodes; - stbrp_node *active_head; - stbrp_node *free_head; - stbrp_node extra[2]; /* we allocate two extra nodes so optimal user-node-count is 'width' not 'width+2' */ -}; - -#ifdef __cplusplus -} -#endif - -#endif - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* IMPLEMENTATION SECTION */ -/* */ - -#ifdef STB_RECT_PACK_IMPLEMENTATION -#ifndef STBRP_SORT -#include -#define STBRP_SORT qsort -#endif - -#ifndef STBRP_ASSERT -#include -#define STBRP_ASSERT assert -#endif - -#ifdef _MSC_VER -#define STBRP__NOTUSED(v) (void)(v) -#define STBRP__CDECL __cdecl -#else -#define STBRP__NOTUSED(v) (void)sizeof(v) -#define STBRP__CDECL -#endif - -enum -{ - STBRP__INIT_skyline = 1 -}; - -STBRP_DEF void stbrp_setup_heuristic(stbrp_context *context, int heuristic) -{ - switch (context->init_mode) { - case STBRP__INIT_skyline: - STBRP_ASSERT(heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight || heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight); - context->heuristic = heuristic; - break; - default: - STBRP_ASSERT(0); - } -} - -STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context *context, int allow_out_of_mem) -{ - if (allow_out_of_mem) - /* if it's ok to run out of memory, then don't bother aligning them; */ - /* this gives better packing, but may fail due to OOM (even though */ - /* the rectangles easily fit). @TODO a smarter approach would be to only */ - /* quantize once we've hit OOM, then we could get rid of this parameter. */ - context->align = 1; - else { - /* if it's not ok to run out of memory, then quantize the widths */ - /* so that num_nodes is always enough nodes. */ - /* */ - /* I.e. num_nodes * align >= width */ - /* align >= width / num_nodes */ - /* align = ceil(width/num_nodes) */ - - context->align = (context->width + context->num_nodes-1) / context->num_nodes; - } -} - -STBRP_DEF void stbrp_init_target(stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes) -{ - int i; - - for (i=0; i < num_nodes-1; ++i) - nodes[i].next = &nodes[i+1]; - nodes[i].next = NULL; - context->init_mode = STBRP__INIT_skyline; - context->heuristic = STBRP_HEURISTIC_Skyline_default; - context->free_head = &nodes[0]; - context->active_head = &context->extra[0]; - context->width = width; - context->height = height; - context->num_nodes = num_nodes; - stbrp_setup_allow_out_of_mem(context, 0); - - /* node 0 is the full width, node 1 is the sentinel (lets us not store width explicitly) */ - context->extra[0].x = 0; - context->extra[0].y = 0; - context->extra[0].next = &context->extra[1]; - context->extra[1].x = (stbrp_coord) width; - context->extra[1].y = (1<<30); - context->extra[1].next = NULL; -} - -/* find minimum y position if it starts at x1 */ -static int stbrp__skyline_find_min_y(stbrp_context *c, stbrp_node *first, int x0, int width, int *pwaste) -{ - stbrp_node *node = first; - int x1 = x0 + width; - int min_y, visited_width, waste_area; - - STBRP__NOTUSED(c); - - STBRP_ASSERT(first->x <= x0); - - #if 0 - /* skip in case we're past the node */ - while (node->next->x <= x0) - ++node; - #else - STBRP_ASSERT(node->next->x > x0); /* we ended up handling this in the caller for efficiency */ - #endif - - STBRP_ASSERT(node->x <= x0); - - min_y = 0; - waste_area = 0; - visited_width = 0; - while (node->x < x1) { - if (node->y > min_y) { - /* raise min_y higher. */ - /* we've accounted for all waste up to min_y, */ - /* but we'll now add more waste for everything we've visted */ - waste_area += visited_width * (node->y - min_y); - min_y = node->y; - /* the first time through, visited_width might be reduced */ - if (node->x < x0) - visited_width += node->next->x - x0; - else - visited_width += node->next->x - node->x; - } else { - /* add waste area */ - int under_width = node->next->x - node->x; - if (under_width + visited_width > width) - under_width = width - visited_width; - waste_area += under_width * (min_y - node->y); - visited_width += under_width; - } - node = node->next; - } - - *pwaste = waste_area; - return min_y; -} - -typedef struct -{ - int x,y; - stbrp_node **prev_link; -} stbrp__findresult; - -static stbrp__findresult stbrp__skyline_find_best_pos(stbrp_context *c, int width, int height) -{ - int best_waste = (1<<30), best_x, best_y = (1 << 30); - stbrp__findresult fr; - stbrp_node **prev, *node, *tail, **best = NULL; - - /* align to multiple of c->align */ - width = (width + c->align - 1); - width -= width % c->align; - STBRP_ASSERT(width % c->align == 0); - - /* if it can't possibly fit, bail immediately */ - if (width > c->width || height > c->height) { - fr.prev_link = NULL; - fr.x = fr.y = 0; - return fr; - } - - node = c->active_head; - prev = &c->active_head; - while (node->x + width <= c->width) { - int y,waste; - y = stbrp__skyline_find_min_y(c, node, node->x, width, &waste); - if (c->heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight) { /* actually just want to test BL */ - /* bottom left */ - if (y < best_y) { - best_y = y; - best = prev; - } - } else { - /* best-fit */ - if (y + height <= c->height) { - /* can only use it if it first vertically */ - if (y < best_y || (y == best_y && waste < best_waste)) { - best_y = y; - best_waste = waste; - best = prev; - } - } - } - prev = &node->next; - node = node->next; - } - - best_x = (best == NULL) ? 0 : (*best)->x; - - /* if doing best-fit (BF), we also have to try aligning right edge to each node position */ - /* */ - /* e.g, if fitting */ - /* */ - /* ____________________ */ - /* |____________________| */ - /* */ - /* into */ - /* */ - /* | | */ - /* | ____________| */ - /* |____________| */ - /* */ - /* then right-aligned reduces waste, but bottom-left BL is always chooses left-aligned */ - /* */ - /* This makes BF take about 2x the time */ - - if (c->heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight) { - tail = c->active_head; - node = c->active_head; - prev = &c->active_head; - /* find first node that's admissible */ - while (tail->x < width) - tail = tail->next; - while (tail) { - int xpos = tail->x - width; - int y,waste; - STBRP_ASSERT(xpos >= 0); - /* find the left position that matches this */ - while (node->next->x <= xpos) { - prev = &node->next; - node = node->next; - } - STBRP_ASSERT(node->next->x > xpos && node->x <= xpos); - y = stbrp__skyline_find_min_y(c, node, xpos, width, &waste); - if (y + height <= c->height) { - if (y <= best_y) { - if (y < best_y || waste < best_waste || (waste==best_waste && xpos < best_x)) { - best_x = xpos; - STBRP_ASSERT(y <= best_y); - best_y = y; - best_waste = waste; - best = prev; - } - } - } - tail = tail->next; - } - } - - fr.prev_link = best; - fr.x = best_x; - fr.y = best_y; - return fr; -} - -static stbrp__findresult stbrp__skyline_pack_rectangle(stbrp_context *context, int width, int height) -{ - /* find best position according to heuristic */ - stbrp__findresult res = stbrp__skyline_find_best_pos(context, width, height); - stbrp_node *node, *cur; - - /* bail if: */ - /* 1. it failed */ - /* 2. the best node doesn't fit (we don't always check this) */ - /* 3. we're out of memory */ - if (res.prev_link == NULL || res.y + height > context->height || context->free_head == NULL) { - res.prev_link = NULL; - return res; - } - - /* on success, create new node */ - node = context->free_head; - node->x = (stbrp_coord) res.x; - node->y = (stbrp_coord) (res.y + height); - - context->free_head = node->next; - - /* insert the new node into the right starting point, and */ - /* let 'cur' point to the remaining nodes needing to be */ - /* stiched back in */ - - cur = *res.prev_link; - if (cur->x < res.x) { - /* preserve the existing one, so start testing with the next one */ - stbrp_node *next = cur->next; - cur->next = node; - cur = next; - } else { - *res.prev_link = node; - } - - /* from here, traverse cur and free the nodes, until we get to one */ - /* that shouldn't be freed */ - while (cur->next && cur->next->x <= res.x + width) { - stbrp_node *next = cur->next; - /* move the current node to the free list */ - cur->next = context->free_head; - context->free_head = cur; - cur = next; - } - - /* stitch the list back in */ - node->next = cur; - - if (cur->x < res.x + width) - cur->x = (stbrp_coord) (res.x + width); - -#ifdef _DEBUG - cur = context->active_head; - while (cur->x < context->width) { - STBRP_ASSERT(cur->x < cur->next->x); - cur = cur->next; - } - STBRP_ASSERT(cur->next == NULL); - - { - int count=0; - cur = context->active_head; - while (cur) { - cur = cur->next; - ++count; - } - cur = context->free_head; - while (cur) { - cur = cur->next; - ++count; - } - STBRP_ASSERT(count == context->num_nodes+2); - } -#endif - - return res; -} - -static int STBRP__CDECL rect_height_compare(const void *a, const void *b) -{ - const stbrp_rect *p = (const stbrp_rect *) a; - const stbrp_rect *q = (const stbrp_rect *) b; - if (p->h > q->h) - return -1; - if (p->h < q->h) - return 1; - return (p->w > q->w) ? -1 : (p->w < q->w); -} - -static int STBRP__CDECL rect_original_order(const void *a, const void *b) -{ - const stbrp_rect *p = (const stbrp_rect *) a; - const stbrp_rect *q = (const stbrp_rect *) b; - return (p->was_packed < q->was_packed) ? -1 : (p->was_packed > q->was_packed); -} - -STBRP_DEF int stbrp_pack_rects(stbrp_context *context, stbrp_rect *rects, int num_rects) -{ - int i, all_rects_packed = 1; - - /* we use the 'was_packed' field internally to allow sorting/unsorting */ - for (i=0; i < num_rects; ++i) { - rects[i].was_packed = i; - } - - /* sort according to heuristic */ - STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_height_compare); - - for (i=0; i < num_rects; ++i) { - if (rects[i].w == 0 || rects[i].h == 0) { - rects[i].x = rects[i].y = 0; /* empty rect needs no space */ - } else { - stbrp__findresult fr = stbrp__skyline_pack_rectangle(context, rects[i].w, rects[i].h); - if (fr.prev_link) { - rects[i].x = (stbrp_coord) fr.x; - rects[i].y = (stbrp_coord) fr.y; - } else { - rects[i].x = rects[i].y = STBRP__MAXVAL; - } - } - } - - /* unsort */ - STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_original_order); - - /* set was_packed flags and all_rects_packed status */ - for (i=0; i < num_rects; ++i) { - rects[i].was_packed = !(rects[i].x == STBRP__MAXVAL && rects[i].y == STBRP__MAXVAL); - if (!rects[i].was_packed) - all_rects_packed = 0; - } - - /* return the all_rects_packed status */ - return all_rects_packed; -} -#endif - -/* ------------------------------------------------------------------------------- -This software is available under 2 licenses -- choose whichever you prefer. ------------------------------------------------------------------------------- -ALTERNATIVE A - MIT License -Copyright (c) 2017 Sean Barrett -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. ------------------------------------------------------------------------------- -ALTERNATIVE B - Public Domain (www.unlicense.org) -This is free and unencumbered software released into the public domain. -Anyone is free to copy, modify, publish, use, compile, sell, or distribute this -software, either in source code form or as a compiled binary, for any purpose, -commercial or non-commercial, and by any means. -In jurisdictions that recognize copyright laws, the author or authors of this -software dedicate any and all copyright interest in the software to the public -domain. We make this dedication for the benefit of the public at large and to -the detriment of our heirs and successors. We intend this dedication to be an -overt act of relinquishment in perpetuity of all present and future rights to -this software under copyright law. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------------------------------------------------- -*/ - -/* stb_truetype.h - v1.26 - public domain */ -/* authored from 2009-2021 by Sean Barrett / RAD Game Tools */ -/* */ -/* ======================================================================= */ -/* */ -/* NO SECURITY GUARANTEE -- DO NOT USE THIS ON UNTRUSTED FONT FILES */ -/* */ -/* This library does no range checking of the offsets found in the file, */ -/* meaning an attacker can use it to read arbitrary memory. */ -/* */ -/* ======================================================================= */ -/* */ -/* This library processes TrueType files: */ -/* parse files */ -/* extract glyph metrics */ -/* extract glyph shapes */ -/* render glyphs to one-channel bitmaps with antialiasing (box filter) */ -/* render glyphs to one-channel SDF bitmaps (signed-distance field/function) */ -/* */ -/* Todo: */ -/* non-MS cmaps */ -/* crashproof on bad data */ -/* hinting? (no longer patented) */ -/* cleartype-style AA? */ -/* optimize: use simple memory allocator for intermediates */ -/* optimize: build edge-list directly from curves */ -/* optimize: rasterize directly from curves? */ -/* */ -/* ADDITIONAL CONTRIBUTORS */ -/* */ -/* Mikko Mononen: compound shape support, more cmap formats */ -/* Tor Andersson: kerning, subpixel rendering */ -/* Dougall Johnson: OpenType / Type 2 font handling */ -/* Daniel Ribeiro Maciel: basic GPOS-based kerning */ -/* */ -/* Misc other: */ -/* Ryan Gordon */ -/* Simon Glass */ -/* github:IntellectualKitty */ -/* Imanol Celaya */ -/* Daniel Ribeiro Maciel */ -/* */ -/* Bug/warning reports/fixes: */ -/* "Zer" on mollyrocket Fabian "ryg" Giesen github:NiLuJe */ -/* Cass Everitt Martins Mozeiko github:aloucks */ -/* stoiko (Haemimont Games) Cap Petschulat github:oyvindjam */ -/* Brian Hook Omar Cornut github:vassvik */ -/* Walter van Niftrik Ryan Griege */ -/* David Gow Peter LaValle */ -/* David Given Sergey Popov */ -/* Ivan-Assen Ivanov Giumo X. Clanjor */ -/* Anthony Pesch Higor Euripedes */ -/* Johan Duparc Thomas Fields */ -/* Hou Qiming Derek Vinyard */ -/* Rob Loach Cort Stratton */ -/* Kenney Phillis Jr. Brian Costabile */ -/* Ken Voskuil (kaesve) */ -/* */ -/* VERSION HISTORY */ -/* */ -/* 1.26 (2021-08-28) fix broken rasterizer */ -/* 1.25 (2021-07-11) many fixes */ -/* 1.24 (2020-02-05) fix warning */ -/* 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) */ -/* 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined */ -/* 1.21 (2019-02-25) fix warning */ -/* 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() */ -/* 1.19 (2018-02-11) GPOS kerning, STBTT_fmod */ -/* 1.18 (2018-01-29) add missing function */ -/* 1.17 (2017-07-23) make more arguments const; doc fix */ -/* 1.16 (2017-07-12) SDF support */ -/* 1.15 (2017-03-03) make more arguments const */ -/* 1.14 (2017-01-16) num-fonts-in-TTC function */ -/* 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts */ -/* 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual */ -/* 1.11 (2016-04-02) fix unused-variable warning */ -/* 1.10 (2016-04-02) user-defined fabs(); rare memory leak; remove duplicate typedef */ -/* 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use allocation userdata properly */ -/* 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges */ -/* 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; */ -/* variant PackFontRanges to pack and render in separate phases; */ -/* fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); */ -/* fixed an assert() bug in the new rasterizer */ -/* replace assert() with STBTT_assert() in new rasterizer */ -/* */ -/* Full history can be found at the end of this file. */ -/* */ -/* LICENSE */ -/* */ -/* See end of file for license information. */ -/* */ -/* USAGE */ -/* */ -/* Include this file in whatever places need to refer to it. In ONE C/C++ */ -/* file, write: */ -/* #define STB_TRUETYPE_IMPLEMENTATION */ -/* before the #include of this file. This expands out the actual */ -/* implementation into that C/C++ file. */ -/* */ -/* To make the implementation private to the file that generates the implementation, */ -/* #define STBTT_STATIC */ -/* */ -/* Simple 3D API (don't ship this, but it's fine for tools and quick start) */ -/* stbtt_BakeFontBitmap() -- bake a font to a bitmap for use as texture */ -/* stbtt_GetBakedQuad() -- compute quad to draw for a given char */ -/* */ -/* Improved 3D API (more shippable): */ -/* #include "stb_rect_pack.h" -- optional, but you really want it */ -/* stbtt_PackBegin() */ -/* stbtt_PackSetOversampling() -- for improved quality on small fonts */ -/* stbtt_PackFontRanges() -- pack and renders */ -/* stbtt_PackEnd() */ -/* stbtt_GetPackedQuad() */ -/* */ -/* "Load" a font file from a memory buffer (you have to keep the buffer loaded) */ -/* stbtt_InitFont() */ -/* stbtt_GetFontOffsetForIndex() -- indexing for TTC font collections */ -/* stbtt_GetNumberOfFonts() -- number of fonts for TTC font collections */ -/* */ -/* Render a unicode codepoint to a bitmap */ -/* stbtt_GetCodepointBitmap() -- allocates and returns a bitmap */ -/* stbtt_MakeCodepointBitmap() -- renders into bitmap you provide */ -/* stbtt_GetCodepointBitmapBox() -- how big the bitmap must be */ -/* */ -/* Character advance/positioning */ -/* stbtt_GetCodepointHMetrics() */ -/* stbtt_GetFontVMetrics() */ -/* stbtt_GetFontVMetricsOS2() */ -/* stbtt_GetCodepointKernAdvance() */ -/* */ -/* Starting with version 1.06, the rasterizer was replaced with a new, */ -/* faster and generally-more-precise rasterizer. The new rasterizer more */ -/* accurately measures pixel coverage for anti-aliasing, except in the case */ -/* where multiple shapes overlap, in which case it overestimates the AA pixel */ -/* coverage. Thus, anti-aliasing of intersecting shapes may look wrong. If */ -/* this turns out to be a problem, you can re-enable the old rasterizer with */ -/* #define STBTT_RASTERIZER_VERSION 1 */ -/* which will incur about a 15% speed hit. */ -/* */ -/* ADDITIONAL DOCUMENTATION */ -/* */ -/* Immediately after this block comment are a series of sample programs. */ -/* */ -/* After the sample programs is the "header file" section. This section */ -/* includes documentation for each API function. */ -/* */ -/* Some important concepts to understand to use this library: */ -/* */ -/* Codepoint */ -/* Characters are defined by unicode codepoints, e.g. 65 is */ -/* uppercase A, 231 is lowercase c with a cedilla, 0x7e30 is */ -/* the hiragana for "ma". */ -/* */ -/* Glyph */ -/* A visual character shape (every codepoint is rendered as */ -/* some glyph) */ -/* */ -/* Glyph index */ -/* A font-specific integer ID representing a glyph */ -/* */ -/* Baseline */ -/* Glyph shapes are defined relative to a baseline, which is the */ -/* bottom of uppercase characters. Characters extend both above */ -/* and below the baseline. */ -/* */ -/* Current Point */ -/* As you draw text to the screen, you keep track of a "current point" */ -/* which is the origin of each character. The current point's vertical */ -/* position is the baseline. Even "baked fonts" use this model. */ -/* */ -/* Vertical Font Metrics */ -/* The vertical qualities of the font, used to vertically position */ -/* and space the characters. See docs for stbtt_GetFontVMetrics. */ -/* */ -/* Font Size in Pixels or Points */ -/* The preferred interface for specifying font sizes in stb_truetype */ -/* is to specify how tall the font's vertical extent should be in pixels. */ -/* If that sounds good enough, skip the next paragraph. */ -/* */ -/* Most font APIs instead use "points", which are a common typographic */ -/* measurement for describing font size, defined as 72 points per inch. */ -/* stb_truetype provides a point API for compatibility. However, true */ -/* "per inch" conventions don't make much sense on computer displays */ -/* since different monitors have different number of pixels per */ -/* inch. For example, Windows traditionally uses a convention that */ -/* there are 96 pixels per inch, thus making 'inch' measurements have */ -/* nothing to do with inches, and thus effectively defining a point to */ -/* be 1.333 pixels. Additionally, the TrueType font data provides */ -/* an explicit scale factor to scale a given font's glyphs to points, */ -/* but the author has observed that this scale factor is often wrong */ -/* for non-commercial fonts, thus making fonts scaled in points */ -/* according to the TrueType spec incoherently sized in practice. */ -/* */ -/* DETAILED USAGE: */ -/* */ -/* Scale: */ -/* Select how high you want the font to be, in points or pixels. */ -/* Call ScaleForPixelHeight or ScaleForMappingEmToPixels to compute */ -/* a scale factor SF that will be used by all other functions. */ -/* */ -/* Baseline: */ -/* You need to select a y-coordinate that is the baseline of where */ -/* your text will appear. Call GetFontBoundingBox to get the baseline-relative */ -/* bounding box for all characters. SF*-y0 will be the distance in pixels */ -/* that the worst-case character could extend above the baseline, so if */ -/* you want the top edge of characters to appear at the top of the */ -/* screen where y=0, then you would set the baseline to SF*-y0. */ -/* */ -/* Current point: */ -/* Set the current point where the first character will appear. The */ -/* first character could extend left of the current point; this is font */ -/* dependent. You can either choose a current point that is the leftmost */ -/* point and hope, or add some padding, or check the bounding box or */ -/* left-side-bearing of the first character to be displayed and set */ -/* the current point based on that. */ -/* */ -/* Displaying a character: */ -/* Compute the bounding box of the character. It will contain signed values */ -/* relative to . I.e. if it returns x0,y0,x1,y1, */ -/* then the character should be displayed in the rectangle from */ -/* to = 32 && *text < 128) { - stbtt_aligned_quad q; - stbtt_GetBakedQuad(cdata, 512,512, *text-32, &x,&y,&q,1);/* 1=opengl & d3d10+,0=d3d9 */ - glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y0); - glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y0); - glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y1); - glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y1); - } - ++text; - } - glEnd(); -} -#endif -/* */ -/* */ -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* Complete program (this compiles): get a single bitmap, print as ASCII art */ -/* */ -#if 0 -#include -#define STB_TRUETYPE_IMPLEMENTATION /* force following include to generate implementation */ -#include "stb_truetype.h" - -char ttf_buffer[1<<25]; - -int main(int argc, char **argv) -{ - stbtt_fontinfo font; - unsigned char *bitmap; - int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) : 'a'), s = (argc > 2 ? atoi(argv[2]) : 20); - - fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] : "c:/windows/fonts/arialbd.ttf", "rb")); - - stbtt_InitFont(&font, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0)); - bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0); - - for (j=0; j < h; ++j) { - for (i=0; i < w; ++i) - putchar(" .:ioVM@"[bitmap[j*w+i]>>5]); - putchar('\n'); - } - return 0; -} -#endif -/* */ -/* Output: */ -/* */ -/* .ii. */ -/* @@@@@@. */ -/* V@Mio@@o */ -/* :i. V@V */ -/* :oM@@M */ -/* :@@@MM@M */ -/* @@o o@M */ -/* :@@. M@M */ -/* @@@o@@@@ */ -/* :M@@V:@@. */ -/* */ -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* Complete program: print "Hello World!" banner, with bugs */ -/* */ -#if 0 -char buffer[24<<20]; -unsigned char screen[20][79]; - -int main(int arg, char **argv) -{ - stbtt_fontinfo font; - int i,j,ascent,baseline,ch=0; - float scale, xpos=2; /* leave a little padding in case the character extends left */ - char *text = "Heljo World!"; /* intentionally misspelled to show 'lj' brokenness */ - - fread(buffer, 1, 1000000, fopen("c:/windows/fonts/arialbd.ttf", "rb")); - stbtt_InitFont(&font, buffer, 0); - - scale = stbtt_ScaleForPixelHeight(&font, 15); - stbtt_GetFontVMetrics(&font, &ascent,0,0); - baseline = (int) (ascent*scale); - - while (text[ch]) { - int advance,lsb,x0,y0,x1,y1; - float x_shift = xpos - (float) floor(xpos); - stbtt_GetCodepointHMetrics(&font, text[ch], &advance, &lsb); - stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1); - stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]); - /* note that this stomps the old data, so where character boxes overlap (e.g. 'lj') it's wrong */ - /* because this API is really for baking character bitmaps into textures. if you want to render */ - /* a sequence of characters, you really need to render each bitmap to a temp buffer, then */ - /* "alpha blend" that into the working buffer */ - xpos += (advance * scale); - if (text[ch+1]) - xpos += scale*stbtt_GetCodepointKernAdvance(&font, text[ch],text[ch+1]); - ++ch; - } - - for (j=0; j < 20; ++j) { - for (i=0; i < 78; ++i) - putchar(" .:ioVM@"[screen[j][i]>>5]); - putchar('\n'); - } - - return 0; -} -#endif - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* //////////////////////////////////////////////////////////////////////////// */ -/* // */ -/* // INTEGRATION WITH YOUR CODEBASE */ -/* // */ -/* // The following sections allow you to supply alternate definitions */ -/* // of C library functions used by stb_truetype, e.g. if you don't */ -/* // link with the C runtime library. */ - -#ifdef STB_TRUETYPE_IMPLEMENTATION - /* #define your own (u)stbtt_int8/16/32 before including to override this */ - #ifndef stbtt_uint8 - typedef unsigned char stbtt_uint8; - typedef signed char stbtt_int8; - typedef unsigned short stbtt_uint16; - typedef signed short stbtt_int16; - typedef unsigned int stbtt_uint32; - typedef signed int stbtt_int32; - #endif - - typedef char stbtt__check_size32[sizeof(stbtt_int32)==4 ? 1 : -1]; - typedef char stbtt__check_size16[sizeof(stbtt_int16)==2 ? 1 : -1]; - - /* e.g. #define your own STBTT_ifloor/STBTT_iceil() to avoid math.h */ - #ifndef STBTT_ifloor - #include - #define STBTT_ifloor(x) ((int) floor(x)) - #define STBTT_iceil(x) ((int) ceil(x)) - #endif - - #ifndef STBTT_sqrt - #include - #define STBTT_sqrt(x) sqrt(x) - #define STBTT_pow(x,y) pow(x,y) - #endif - - #ifndef STBTT_fmod - #include - #define STBTT_fmod(x,y) fmod(x,y) - #endif - - #ifndef STBTT_cos - #include - #define STBTT_cos(x) cos(x) - #define STBTT_acos(x) acos(x) - #endif - - #ifndef STBTT_fabs - #include - #define STBTT_fabs(x) fabs(x) - #endif - - /* #define your own functions "STBTT_malloc" / "STBTT_free" to avoid malloc.h */ - #ifndef STBTT_malloc - #include - #define STBTT_malloc(x,u) ((void)(u),malloc(x)) - #define STBTT_free(x,u) ((void)(u),free(x)) - #endif - - #ifndef STBTT_assert - #include - #define STBTT_assert(x) assert(x) - #endif - - #ifndef STBTT_strlen - #include - #define STBTT_strlen(x) strlen(x) - #endif - - #ifndef STBTT_memcpy - #include - #define STBTT_memcpy memcpy - #define STBTT_memset memset - #endif -#endif - -/* ///////////////////////////////////////////////////////////////////////////// */ -/* ///////////////////////////////////////////////////////////////////////////// */ -/* // */ -/* // INTERFACE */ -/* // */ -/* // */ - -#ifndef __STB_INCLUDE_STB_TRUETYPE_H__ -#define __STB_INCLUDE_STB_TRUETYPE_H__ - -#ifdef STBTT_STATIC -#define STBTT_DEF static -#else -#define STBTT_DEF extern -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -/* private structure */ -typedef struct -{ - unsigned char *data; - int cursor; - int size; -} stbtt__buf; - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* TEXTURE BAKING API */ -/* */ -/* If you use this API, you only have to call two functions ever. */ -/* */ - -typedef struct -{ - unsigned short x0,y0,x1,y1; /* coordinates of bbox in bitmap */ - float xoff,yoff,xadvance; -} stbtt_bakedchar; - -STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, /* font location (use offset=0 for plain .ttf) */ - float pixel_height, /* height of font in pixels */ - unsigned char *pixels, int pw, int ph, /* bitmap to be filled in */ - int first_char, int num_chars, /* characters to bake */ - stbtt_bakedchar *chardata); /* you allocate this, it's num_chars long */ -/* if return is positive, the first unused row of the bitmap */ -/* if return is negative, returns the negative of the number of characters that fit */ -/* if return is 0, no characters fit and no rows were used */ -/* This uses a very crappy packing. */ - -typedef struct -{ - float x0,y0,s0,t0; /* top-left */ - float x1,y1,s1,t1; /* bottom-right */ -} stbtt_aligned_quad; - -STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, /* same data as above */ - int char_index, /* character to display */ - float *xpos, float *ypos, /* pointers to current position in screen pixel space */ - stbtt_aligned_quad *q, /* output: quad to draw */ - int opengl_fillrule); /* true if opengl fill rule; false if DX9 or earlier */ -/* Call GetBakedQuad with char_index = 'character - first_char', and it */ -/* creates the quad you need to draw and advances the current position. */ -/* */ -/* The coordinate system used assumes y increases downwards. */ -/* */ -/* Characters will extend both above and below the current position; */ -/* see discussion of "BASELINE" above. */ -/* */ -/* It's inefficient; you might want to c&p it and optimize it. */ - -STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap); -/* Query the font vertical metrics without having to create a font first. */ - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* NEW TEXTURE BAKING API */ -/* */ -/* This provides options for packing multiple fonts into one atlas, not */ -/* perfectly but better than nothing. */ - -typedef struct -{ - unsigned short x0,y0,x1,y1; /* coordinates of bbox in bitmap */ - float xoff,yoff,xadvance; - float xoff2,yoff2; -} stbtt_packedchar; - -typedef struct stbtt_pack_context stbtt_pack_context; -typedef struct stbtt_fontinfo stbtt_fontinfo; -#ifndef STB_RECT_PACK_VERSION -typedef struct stbrp_rect stbrp_rect; -#endif - -STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int width, int height, int stride_in_bytes, int padding, void *alloc_context); -/* Initializes a packing context stored in the passed-in stbtt_pack_context. */ -/* Future calls using this context will pack characters into the bitmap passed */ -/* in here: a 1-channel bitmap that is width * height. stride_in_bytes is */ -/* the distance from one row to the next (or 0 to mean they are packed tightly */ -/* together). "padding" is the amount of padding to leave between each */ -/* character (normally you want '1' for bitmaps you'll use as textures with */ -/* bilinear filtering). */ -/* */ -/* Returns 0 on failure, 1 on success. */ - -STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc); -/* Cleans up the packing context and frees all memory. */ - -#define STBTT_POINT_SIZE(x) (-(x)) - -STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, - int first_unicode_char_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range); -/* Creates character bitmaps from the font_index'th font found in fontdata (use */ -/* font_index=0 if you don't know what that is). It creates num_chars_in_range */ -/* bitmaps for characters with unicode values starting at first_unicode_char_in_range */ -/* and increasing. Data for how to render them is stored in chardata_for_range; */ -/* pass these to stbtt_GetPackedQuad to get back renderable quads. */ -/* */ -/* font_size is the full height of the character from ascender to descender, */ -/* as computed by stbtt_ScaleForPixelHeight. To use a point size as computed */ -/* by stbtt_ScaleForMappingEmToPixels, wrap the point size in STBTT_POINT_SIZE() */ -/* and pass that result as 'font_size': */ -/* ..., 20 , ... // font max minus min y is 20 pixels tall */ -/* ..., STBTT_POINT_SIZE(20), ... // 'M' is 20 pixels tall */ - -typedef struct -{ - float font_size; - int first_unicode_codepoint_in_range; /* if non-zero, then the chars are continuous, and this is the first codepoint */ - int *array_of_unicode_codepoints; /* if non-zero, then this is an array of unicode codepoints */ - int num_chars; - stbtt_packedchar *chardata_for_range; /* output */ - unsigned char h_oversample, v_oversample; /* don't set these, they're used internally */ -} stbtt_pack_range; - -STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges); -/* Creates character bitmaps from multiple ranges of characters stored in */ -/* ranges. This will usually create a better-packed bitmap than multiple */ -/* calls to stbtt_PackFontRange. Note that you can call this multiple */ -/* times within a single PackBegin/PackEnd. */ - -STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample); -/* Oversampling a font increases the quality by allowing higher-quality subpixel */ -/* positioning, and is especially valuable at smaller text sizes. */ -/* */ -/* This function sets the amount of oversampling for all following calls to */ -/* stbtt_PackFontRange(s) or stbtt_PackFontRangesGatherRects for a given */ -/* pack context. The default (no oversampling) is achieved by h_oversample=1 */ -/* and v_oversample=1. The total number of pixels required is */ -/* h_oversample*v_oversample larger than the default; for example, 2x2 */ -/* oversampling requires 4x the storage of 1x1. For best results, render */ -/* oversampled textures with bilinear filtering. Look at the readme in */ -/* stb/tests/oversample for information about oversampled fonts */ -/* */ -/* To use with PackFontRangesGather etc., you must set it before calls */ -/* call to PackFontRangesGatherRects. */ - -STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip); -/* If skip != 0, this tells stb_truetype to skip any codepoints for which */ -/* there is no corresponding glyph. If skip=0, which is the default, then */ -/* codepoints without a glyph recived the font's "missing character" glyph, */ -/* typically an empty box by convention. */ - -STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, /* same data as above */ - int char_index, /* character to display */ - float *xpos, float *ypos, /* pointers to current position in screen pixel space */ - stbtt_aligned_quad *q, /* output: quad to draw */ - int align_to_integer); - -STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); -STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects); -STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); -/* Calling these functions in sequence is roughly equivalent to calling */ -/* stbtt_PackFontRanges(). If you more control over the packing of multiple */ -/* fonts, or if you want to pack custom data into a font texture, take a look */ -/* at the source to of stbtt_PackFontRanges() and create a custom version */ -/* using these functions, e.g. call GatherRects multiple times, */ -/* building up a single array of rects, then call PackRects once, */ -/* then call RenderIntoRects repeatedly. This may result in a */ -/* better packing than calling PackFontRanges multiple times */ -/* (or it may not). */ - -/* this is an opaque structure that you shouldn't mess with which holds */ -/* all the context needed from PackBegin to PackEnd. */ -struct stbtt_pack_context { - void *user_allocator_context; - void *pack_info; - int width; - int height; - int stride_in_bytes; - int padding; - int skip_missing; - unsigned int h_oversample, v_oversample; - unsigned char *pixels; - void *nodes; -}; - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* FONT LOADING */ -/* */ -/* */ - -STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data); -/* This function will determine the number of fonts in a font file. TrueType */ -/* collection (.ttc) files may contain multiple fonts, while TrueType font */ -/* (.ttf) files only contain one font. The number of fonts can be used for */ -/* indexing with the previous function where the index is between zero and one */ -/* less than the total fonts. If an error occurs, -1 is returned. */ - -STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index); -/* Each .ttf/.ttc file may have more than one font. Each font has a sequential */ -/* index number starting from 0. Call this function to get the font offset for */ -/* a given index; it returns -1 if the index is out of range. A regular .ttf */ -/* file will only define one font and it always be at offset 0, so it will */ -/* return '0' for index 0, and -1 for all other indices. */ - -/* The following structure is defined publicly so you can declare one on */ -/* the stack or as a global or etc, but you should treat it as opaque. */ -struct stbtt_fontinfo -{ - void * userdata; - unsigned char * data; /* pointer to .ttf file */ - int fontstart; /* offset of start of font */ - - int numGlyphs; /* number of glyphs, needed for range checking */ - - int loca,head,glyf,hhea,hmtx,kern,gpos,svg; /* table locations as offset from start of .ttf */ - int index_map; /* a cmap mapping for our chosen character encoding */ - int indexToLocFormat; /* format needed to map from glyph index to glyph */ - - stbtt__buf cff; /* cff font data */ - stbtt__buf charstrings; /* the charstring index */ - stbtt__buf gsubrs; /* global charstring subroutines index */ - stbtt__buf subrs; /* private charstring subroutines index */ - stbtt__buf fontdicts; /* array of font dicts */ - stbtt__buf fdselect; /* map from glyph to fontdict */ -}; - -STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset); -/* Given an offset into the file that defines a font, this function builds */ -/* the necessary cached info for the rest of the system. You must allocate */ -/* the stbtt_fontinfo yourself, and stbtt_InitFont will fill it out. You don't */ -/* need to do anything special to free it, because the contents are pure */ -/* value data with no additional data structures. Returns 0 on failure. */ - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* CHARACTER TO GLYPH-INDEX CONVERSIOn */ - -STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint); -/* If you're going to perform multiple operations on the same character */ -/* and you want a speed-up, call this function with the character you're */ -/* going to process, then use glyph-based functions instead of the */ -/* codepoint-based functions. */ -/* Returns 0 if the character codepoint is not defined in the font. */ - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* CHARACTER PROPERTIES */ -/* */ - -STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float pixels); -/* computes a scale factor to produce a font whose "height" is 'pixels' tall. */ -/* Height is measured as the distance from the highest ascender to the lowest */ -/* descender; in other words, it's equivalent to calling stbtt_GetFontVMetrics */ -/* and computing: */ -/* scale = pixels / (ascent - descent) */ -/* so if you prefer to measure height by the ascent only, use a similar calculation. */ - -STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels); -/* computes a scale factor to produce a font whose EM size is mapped to */ -/* 'pixels' tall. This is probably what traditional APIs compute, but */ -/* I'm not positive. */ - -STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap); -/* ascent is the coordinate above the baseline the font extends; descent */ -/* is the coordinate below the baseline the font extends (i.e. it is typically negative) */ -/* lineGap is the spacing between one row's descent and the next row's ascent... */ -/* so you should advance the vertical position by "*ascent - *descent + *lineGap" */ -/* these are expressed in unscaled coordinates, so you must multiply by */ -/* the scale factor for a given size */ - -STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap); -/* analogous to GetFontVMetrics, but returns the "typographic" values from the OS/2 */ -/* table (specific to MS/Windows TTF files). */ -/* */ -/* Returns 1 on success (table present), 0 on failure. */ - -STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1); -/* the bounding box around all possible characters */ - -STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing); -/* leftSideBearing is the offset from the current horizontal position to the left edge of the character */ -/* advanceWidth is the offset from the current horizontal position to the next horizontal position */ -/* these are expressed in unscaled coordinates */ - -STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2); -/* an additional amount to add to the 'advance' value between ch1 and ch2 */ - -STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1); -/* Gets the bounding box of the visible part of the glyph, in unscaled coordinates */ - -STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing); -STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2); -STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); -/* as above, but takes one or more glyph indices for greater efficiency */ - -typedef struct stbtt_kerningentry -{ - int glyph1; /* use stbtt_FindGlyphIndex */ - int glyph2; - int advance; -} stbtt_kerningentry; - -STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info); -STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length); -/* Retrieves a complete list of all of the kerning pairs provided by the font */ -/* stbtt_GetKerningTable never writes more than table_length entries and returns how many entries it did write. */ -/* The table will be sorted by (a.glyph1 == b.glyph1)?(a.glyph2 < b.glyph2):(a.glyph1 < b.glyph1) */ - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* GLYPH SHAPES (you probably don't need these, but they have to go before */ -/* the bitmaps for C declaration-order reasons) */ -/* */ - -#ifndef STBTT_vmove /* you can predefine these to use different values (but why?) */ - enum { - STBTT_vmove=1, - STBTT_vline, - STBTT_vcurve, - STBTT_vcubic - }; -#endif - -#ifndef stbtt_vertex /* you can predefine this to use different values */ - /* (we share this with other code at RAD) */ - #define stbtt_vertex_type short /* can't use stbtt_int16 because that's not visible in the header file */ - typedef struct - { - stbtt_vertex_type x,y,cx,cy,cx1,cy1; - unsigned char type,padding; - } stbtt_vertex; -#endif - -STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index); -/* returns non-zero if nothing is drawn for this glyph */ - -STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices); -STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **vertices); -/* returns # of vertices and fills *vertices with the pointer to them */ -/* these are expressed in "unscaled" coordinates */ -/* */ -/* The shape is a series of contours. Each one starts with */ -/* a STBTT_moveto, then consists of a series of mixed */ -/* STBTT_lineto and STBTT_curveto segments. A lineto */ -/* draws a line from previous endpoint to its x,y; a curveto */ -/* draws a quadratic bezier from previous endpoint to */ -/* its x,y, using cx,cy as the bezier control point. */ - -STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *vertices); -/* frees the data allocated above */ - -STBTT_DEF unsigned char *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl); -STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg); -STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg); -/* fills svg with the character's SVG data. */ -/* returns data size or 0 if SVG not found. */ - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* BITMAP RENDERING */ -/* */ - -STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata); -/* frees the bitmap allocated below */ - -STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff); -/* allocates a large-enough single-channel 8bpp bitmap and renders the */ -/* specified character/glyph at the specified scale into it, with */ -/* antialiasing. 0 is no coverage (transparent), 255 is fully covered (opaque). */ -/* *width & *height are filled out with the width & height of the bitmap, */ -/* which is stored left-to-right, top-to-bottom. */ -/* */ -/* xoff/yoff are the offset it pixel space from the glyph origin to the top-left of the bitmap */ - -STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff); -/* the same as stbtt_GetCodepoitnBitmap, but you can specify a subpixel */ -/* shift for the character */ - -STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint); -/* the same as stbtt_GetCodepointBitmap, but you pass in storage for the bitmap */ -/* in the form of 'output', with row spacing of 'out_stride' bytes. the bitmap */ -/* is clipped to out_w/out_h bytes. Call stbtt_GetCodepointBitmapBox to get the */ -/* width and height and positioning info for it first. */ - -STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint); -/* same as stbtt_MakeCodepointBitmap, but you can specify a subpixel */ -/* shift for the character */ - -STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint); -/* same as stbtt_MakeCodepointBitmapSubpixel, but prefiltering */ -/* is performed (see stbtt_PackSetOversampling) */ - -STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); -/* get the bbox of the bitmap centered around the glyph origin; so the */ -/* bitmap width is ix1-ix0, height is iy1-iy0, and location to place */ -/* the bitmap top left is (leftSideBearing*scale,iy0). */ -/* (Note that the bitmap uses y-increases-down, but the shape uses */ -/* y-increases-up, so CodepointBitmapBox and CodepointBox are inverted.) */ - -STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); -/* same as stbtt_GetCodepointBitmapBox, but you can specify a subpixel */ -/* shift for the character */ - -/* the following functions are equivalent to the above functions, but operate */ -/* on glyph indices instead of Unicode codepoints (for efficiency) */ -STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff); -STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff); -STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph); -STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph); -STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph); -STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); -STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); - - -/* @TODO: don't expose this structure */ -typedef struct -{ - int w,h,stride; - unsigned char *pixels; -} stbtt__bitmap; - -/* rasterize a shape with quadratic beziers into a bitmap */ -STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, /* 1-channel bitmap to draw into */ - float flatness_in_pixels, /* allowable error of curve in pixels */ - stbtt_vertex *vertices, /* array of vertices defining shape */ - int num_verts, /* number of vertices in above array */ - float scale_x, float scale_y, /* scale applied to input vertices */ - float shift_x, float shift_y, /* translation applied to input vertices */ - int x_off, int y_off, /* another translation applied to input */ - int invert, /* if non-zero, vertically flip shape */ - void *userdata); /* context for to STBTT_MALLOC */ - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* Signed Distance Function (or Field) rendering */ - -STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata); -/* frees the SDF bitmap allocated below */ - -STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); -STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); -/* These functions compute a discretized SDF field for a single character, suitable for storing */ -/* in a single-channel texture, sampling with bilinear filtering, and testing against */ -/* larger than some threshold to produce scalable fonts. */ -/* info -- the font */ -/* scale -- controls the size of the resulting SDF bitmap, same as it would be creating a regular bitmap */ -/* glyph/codepoint -- the character to generate the SDF for */ -/* padding -- extra "pixels" around the character which are filled with the distance to the character (not 0), */ -/* which allows effects like bit outlines */ -/* onedge_value -- value 0-255 to test the SDF against to reconstruct the character (i.e. the isocontour of the character) */ -/* pixel_dist_scale -- what value the SDF should increase by when moving one SDF "pixel" away from the edge (on the 0..255 scale) */ -/* if positive, > onedge_value is inside; if negative, < onedge_value is inside */ -/* width,height -- output height & width of the SDF bitmap (including padding) */ -/* xoff,yoff -- output origin of the character */ -/* return value -- a 2D array of bytes 0..255, width*height in size */ -/* */ -/* pixel_dist_scale & onedge_value are a scale & bias that allows you to make */ -/* optimal use of the limited 0..255 for your application, trading off precision */ -/* and special effects. SDF values outside the range 0..255 are clamped to 0..255. */ -/* */ -/* Example: */ -/* scale = stbtt_ScaleForPixelHeight(22) */ -/* padding = 5 */ -/* onedge_value = 180 */ -/* pixel_dist_scale = 180/5.0 = 36.0 */ -/* */ -/* This will create an SDF bitmap in which the character is about 22 pixels */ -/* high but the whole bitmap is about 22+5+5=32 pixels high. To produce a filled */ -/* shape, sample the SDF at each pixel and fill the pixel if the SDF value */ -/* is greater than or equal to 180/255. (You'll actually want to antialias, */ -/* which is beyond the scope of this example.) Additionally, you can compute */ -/* offset outlines (e.g. to stroke the character border inside & outside, */ -/* or only outside). For example, to fill outside the character up to 3 SDF */ -/* pixels, you would compare against (180-36.0*3)/255 = 72/255. The above */ -/* choice of variables maps a range from 5 pixels outside the shape to */ -/* 2 pixels inside the shape to 0..255; this is intended primarily for apply */ -/* outside effects only (the interior range is needed to allow proper */ -/* antialiasing of the font at *smaller* sizes) */ -/* */ -/* The function computes the SDF analytically at each SDF pixel, not by e.g. */ -/* building a higher-res bitmap and approximating it. In theory the quality */ -/* should be as high as possible for an SDF of this size & representation, but */ -/* unclear if this is true in practice (perhaps building a higher-res bitmap */ -/* and computing from that can allow drop-out prevention). */ -/* */ -/* The algorithm has not been optimized at all, so expect it to be slow */ -/* if computing lots of characters or very large sizes. */ - - - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* Finding the right font... */ -/* */ -/* You should really just solve this offline, keep your own tables */ -/* of what font is what, and don't try to get it out of the .ttf file. */ -/* That's because getting it out of the .ttf file is really hard, because */ -/* the names in the file can appear in many possible encodings, in many */ -/* possible languages, and e.g. if you need a case-insensitive comparison, */ -/* the details of that depend on the encoding & language in a complex way */ -/* (actually underspecified in truetype, but also gigantic). */ -/* */ -/* But you can use the provided functions in two possible ways: */ -/* stbtt_FindMatchingFont() will use *case-sensitive* comparisons on */ -/* unicode-encoded names to try to find the font you want; */ -/* you can run this before calling stbtt_InitFont() */ -/* */ -/* stbtt_GetFontNameString() lets you get any of the various strings */ -/* from the file yourself and do your own comparisons on them. */ -/* You have to have called stbtt_InitFont() first. */ - - -STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags); -/* returns the offset (not index) of the font that matches, or -1 if none */ -/* if you use STBTT_MACSTYLE_DONTCARE, use a font name like "Arial Bold". */ -/* if you use any other flag, use a font name like "Arial"; this checks */ -/* the 'macStyle' header field; i don't know if fonts set this consistently */ -#define STBTT_MACSTYLE_DONTCARE 0 -#define STBTT_MACSTYLE_BOLD 1 -#define STBTT_MACSTYLE_ITALIC 2 -#define STBTT_MACSTYLE_UNDERSCORE 4 -#define STBTT_MACSTYLE_NONE 8 /* <= not same as 0, this makes us check the bitfield is 0 */ - -STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2); -/* returns 1/0 whether the first string interpreted as utf8 is identical to */ -/* the second string interpreted as big-endian utf16... useful for strings from next func */ - -STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID); -/* returns the string (which may be big-endian double byte, e.g. for unicode) */ -/* and puts the length in bytes in *length. */ -/* */ -/* some of the values for the IDs are below; for more see the truetype spec: */ -/* http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6name.html */ -/* http://www.microsoft.com/typography/otspec/name.htm */ - -enum { /* platformID */ - STBTT_PLATFORM_ID_UNICODE =0, - STBTT_PLATFORM_ID_MAC =1, - STBTT_PLATFORM_ID_ISO =2, - STBTT_PLATFORM_ID_MICROSOFT =3 -}; - -enum { /* encodingID for STBTT_PLATFORM_ID_UNICODE */ - STBTT_UNICODE_EID_UNICODE_1_0 =0, - STBTT_UNICODE_EID_UNICODE_1_1 =1, - STBTT_UNICODE_EID_ISO_10646 =2, - STBTT_UNICODE_EID_UNICODE_2_0_BMP=3, - STBTT_UNICODE_EID_UNICODE_2_0_FULL=4 -}; - -enum { /* encodingID for STBTT_PLATFORM_ID_MICROSOFT */ - STBTT_MS_EID_SYMBOL =0, - STBTT_MS_EID_UNICODE_BMP =1, - STBTT_MS_EID_SHIFTJIS =2, - STBTT_MS_EID_UNICODE_FULL =10 -}; - -enum { /* encodingID for STBTT_PLATFORM_ID_MAC; same as Script Manager codes */ - STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4, - STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5, - STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6, - STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7 -}; - -enum { /* languageID for STBTT_PLATFORM_ID_MICROSOFT; same as LCID... */ - /* problematic because there are e.g. 16 english LCIDs and 16 arabic LCIDs */ - STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410, - STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411, - STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412, - STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419, - STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409, - STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D -}; - -enum { /* languageID for STBTT_PLATFORM_ID_MAC */ - STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11, - STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23, - STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32, - STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 , - STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 , - STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33, - STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19 -}; - -#ifdef __cplusplus -} -#endif - -#endif /* __STB_INCLUDE_STB_TRUETYPE_H__ */ - -/* ///////////////////////////////////////////////////////////////////////////// */ -/* ///////////////////////////////////////////////////////////////////////////// */ -/* // */ -/* // IMPLEMENTATION */ -/* // */ -/* // */ - -#ifdef STB_TRUETYPE_IMPLEMENTATION - -#ifndef STBTT_MAX_OVERSAMPLE -#define STBTT_MAX_OVERSAMPLE 8 -#endif - -#if STBTT_MAX_OVERSAMPLE > 255 -#error "STBTT_MAX_OVERSAMPLE cannot be > 255" -#endif - -typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1]; - -#ifndef STBTT_RASTERIZER_VERSION -#define STBTT_RASTERIZER_VERSION 2 -#endif - -#ifdef _MSC_VER -#define STBTT__NOTUSED(v) (void)(v) -#else -#define STBTT__NOTUSED(v) (void)sizeof(v) -#endif - -/* //////////////////////////////////////////////////////////////////////// */ -/* */ -/* stbtt__buf helpers to parse data from file */ -/* */ - -static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b) -{ - if (b->cursor >= b->size) - return 0; - return b->data[b->cursor++]; -} - -static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b) -{ - if (b->cursor >= b->size) - return 0; - return b->data[b->cursor]; -} - -static void stbtt__buf_seek(stbtt__buf *b, int o) -{ - STBTT_assert(!(o > b->size || o < 0)); - b->cursor = (o > b->size || o < 0) ? b->size : o; -} - -static void stbtt__buf_skip(stbtt__buf *b, int o) -{ - stbtt__buf_seek(b, b->cursor + o); -} - -static stbtt_uint32 stbtt__buf_get(stbtt__buf *b, int n) -{ - stbtt_uint32 v = 0; - int i; - STBTT_assert(n >= 1 && n <= 4); - for (i = 0; i < n; i++) - v = (v << 8) | stbtt__buf_get8(b); - return v; -} - -static stbtt__buf stbtt__new_buf(const void *p, size_t size) -{ - stbtt__buf r; - STBTT_assert(size < 0x40000000); - r.data = (stbtt_uint8*) p; - r.size = (int) size; - r.cursor = 0; - return r; -} - -#define stbtt__buf_get16(b) stbtt__buf_get((b), 2) -#define stbtt__buf_get32(b) stbtt__buf_get((b), 4) - -static stbtt__buf stbtt__buf_range(const stbtt__buf *b, int o, int s) -{ - stbtt__buf r = stbtt__new_buf(NULL, 0); - if (o < 0 || s < 0 || o > b->size || s > b->size - o) return r; - r.data = b->data + o; - r.size = s; - return r; -} - -static stbtt__buf stbtt__cff_get_index(stbtt__buf *b) -{ - int count, start, offsize; - start = b->cursor; - count = stbtt__buf_get16(b); - if (count) { - offsize = stbtt__buf_get8(b); - STBTT_assert(offsize >= 1 && offsize <= 4); - stbtt__buf_skip(b, offsize * count); - stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); - } - return stbtt__buf_range(b, start, b->cursor - start); -} - -static stbtt_uint32 stbtt__cff_int(stbtt__buf *b) -{ - int b0 = stbtt__buf_get8(b); - if (b0 >= 32 && b0 <= 246) return b0 - 139; - else if (b0 >= 247 && b0 <= 250) return (b0 - 247)*256 + stbtt__buf_get8(b) + 108; - else if (b0 >= 251 && b0 <= 254) return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108; - else if (b0 == 28) return stbtt__buf_get16(b); - else if (b0 == 29) return stbtt__buf_get32(b); - STBTT_assert(0); - return 0; -} - -static void stbtt__cff_skip_operand(stbtt__buf *b) { - int v, b0 = stbtt__buf_peek8(b); - STBTT_assert(b0 >= 28); - if (b0 == 30) { - stbtt__buf_skip(b, 1); - while (b->cursor < b->size) { - v = stbtt__buf_get8(b); - if ((v & 0xF) == 0xF || (v >> 4) == 0xF) - break; - } - } else { - stbtt__cff_int(b); - } -} - -static stbtt__buf stbtt__dict_get(stbtt__buf *b, int key) -{ - stbtt__buf_seek(b, 0); - while (b->cursor < b->size) { - int start = b->cursor, end, op; - while (stbtt__buf_peek8(b) >= 28) - stbtt__cff_skip_operand(b); - end = b->cursor; - op = stbtt__buf_get8(b); - if (op == 12) op = stbtt__buf_get8(b) | 0x100; - if (op == key) return stbtt__buf_range(b, start, end-start); - } - return stbtt__buf_range(b, 0, 0); -} - -static void stbtt__dict_get_ints(stbtt__buf *b, int key, int outcount, stbtt_uint32 *out) -{ - int i; - stbtt__buf operands = stbtt__dict_get(b, key); - for (i = 0; i < outcount && operands.cursor < operands.size; i++) - out[i] = stbtt__cff_int(&operands); -} - -static int stbtt__cff_index_count(stbtt__buf *b) -{ - stbtt__buf_seek(b, 0); - return stbtt__buf_get16(b); -} - -static stbtt__buf stbtt__cff_index_get(stbtt__buf b, int i) -{ - int count, offsize, start, end; - stbtt__buf_seek(&b, 0); - count = stbtt__buf_get16(&b); - offsize = stbtt__buf_get8(&b); - STBTT_assert(i >= 0 && i < count); - STBTT_assert(offsize >= 1 && offsize <= 4); - stbtt__buf_skip(&b, i*offsize); - start = stbtt__buf_get(&b, offsize); - end = stbtt__buf_get(&b, offsize); - return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start); -} - -/* //////////////////////////////////////////////////////////////////////// */ -/* */ -/* accessors to parse data from file */ -/* */ - -/* on platforms that don't allow misaligned reads, if we want to allow */ -/* truetype fonts that aren't padded to alignment, define ALLOW_UNALIGNED_TRUETYPE */ - -#define ttBYTE(p) (* (stbtt_uint8 *) (p)) -#define ttCHAR(p) (* (stbtt_int8 *) (p)) -#define ttFixed(p) ttLONG(p) - -static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } -static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } -static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } -static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } - -#define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3)) -#define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3]) - -static int stbtt__isfont(stbtt_uint8 *font) -{ - /* check the version number */ - if (stbtt_tag4(font, '1',0,0,0)) return 1; /* TrueType 1 */ - if (stbtt_tag(font, "typ1")) return 1; /* TrueType with type 1 font -- we don't support this! */ - if (stbtt_tag(font, "OTTO")) return 1; /* OpenType with CFF */ - if (stbtt_tag4(font, 0,1,0,0)) return 1; /* OpenType 1.0 */ - if (stbtt_tag(font, "true")) return 1; /* Apple specification for TrueType fonts */ - return 0; -} - -/* @OPTIMIZE: binary search */ -static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag) -{ - stbtt_int32 num_tables = ttUSHORT(data+fontstart+4); - stbtt_uint32 tabledir = fontstart + 12; - stbtt_int32 i; - for (i=0; i < num_tables; ++i) { - stbtt_uint32 loc = tabledir + 16*i; - if (stbtt_tag(data+loc+0, tag)) - return ttULONG(data+loc+8); - } - return 0; -} - -static int stbtt_GetFontOffsetForIndex_internal(unsigned char *font_collection, int index) -{ - /* if it's just a font, there's only one valid index */ - if (stbtt__isfont(font_collection)) - return index == 0 ? 0 : -1; - - /* check if it's a TTC */ - if (stbtt_tag(font_collection, "ttcf")) { - /* version 1? */ - if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { - stbtt_int32 n = ttLONG(font_collection+8); - if (index >= n) - return -1; - return ttULONG(font_collection+12+index*4); - } - } - return -1; -} - -static int stbtt_GetNumberOfFonts_internal(unsigned char *font_collection) -{ - /* if it's just a font, there's only one valid font */ - if (stbtt__isfont(font_collection)) - return 1; - - /* check if it's a TTC */ - if (stbtt_tag(font_collection, "ttcf")) { - /* version 1? */ - if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { - return ttLONG(font_collection+8); - } - } - return 0; -} - -static stbtt__buf stbtt__get_subrs(stbtt__buf cff, stbtt__buf fontdict) -{ - stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 }; - stbtt__buf pdict; - stbtt__dict_get_ints(&fontdict, 18, 2, private_loc); - if (!private_loc[1] || !private_loc[0]) return stbtt__new_buf(NULL, 0); - pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]); - stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff); - if (!subrsoff) return stbtt__new_buf(NULL, 0); - stbtt__buf_seek(&cff, private_loc[1]+subrsoff); - return stbtt__cff_get_index(&cff); -} - -/* since most people won't use this, find this table the first time it's needed */ -static int stbtt__get_svg(stbtt_fontinfo *info) -{ - stbtt_uint32 t; - if (info->svg < 0) { - t = stbtt__find_table(info->data, info->fontstart, "SVG "); - if (t) { - stbtt_uint32 offset = ttULONG(info->data + t + 2); - info->svg = t + offset; - } else { - info->svg = 0; - } - } - return info->svg; -} - -static int stbtt_InitFont_internal(stbtt_fontinfo *info, unsigned char *data, int fontstart) -{ - stbtt_uint32 cmap, t; - stbtt_int32 i,numTables; - - info->data = data; - info->fontstart = fontstart; - info->cff = stbtt__new_buf(NULL, 0); - - cmap = stbtt__find_table(data, fontstart, "cmap"); /* required */ - info->loca = stbtt__find_table(data, fontstart, "loca"); /* required */ - info->head = stbtt__find_table(data, fontstart, "head"); /* required */ - info->glyf = stbtt__find_table(data, fontstart, "glyf"); /* required */ - info->hhea = stbtt__find_table(data, fontstart, "hhea"); /* required */ - info->hmtx = stbtt__find_table(data, fontstart, "hmtx"); /* required */ - info->kern = stbtt__find_table(data, fontstart, "kern"); /* not required */ - info->gpos = stbtt__find_table(data, fontstart, "GPOS"); /* not required */ - - if (!cmap || !info->head || !info->hhea || !info->hmtx) - return 0; - if (info->glyf) { - /* required for truetype */ - if (!info->loca) return 0; - } else { - /* initialization for CFF / Type2 fonts (OTF) */ - stbtt__buf b, topdict, topdictidx; - stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0; - stbtt_uint32 cff; - - cff = stbtt__find_table(data, fontstart, "CFF "); - if (!cff) return 0; - - info->fontdicts = stbtt__new_buf(NULL, 0); - info->fdselect = stbtt__new_buf(NULL, 0); - - /* @TODO this should use size from table (not 512MB) */ - info->cff = stbtt__new_buf(data+cff, 512*1024*1024); - b = info->cff; - - /* read the header */ - stbtt__buf_skip(&b, 2); - stbtt__buf_seek(&b, stbtt__buf_get8(&b)); /* hdrsize */ - - /* @TODO the name INDEX could list multiple fonts, */ - /* but we just use the first one. */ - stbtt__cff_get_index(&b); /* name INDEX */ - topdictidx = stbtt__cff_get_index(&b); - topdict = stbtt__cff_index_get(topdictidx, 0); - stbtt__cff_get_index(&b); /* string INDEX */ - info->gsubrs = stbtt__cff_get_index(&b); - - stbtt__dict_get_ints(&topdict, 17, 1, &charstrings); - stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype); - stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff); - stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff); - info->subrs = stbtt__get_subrs(b, topdict); - - /* we only support Type 2 charstrings */ - if (cstype != 2) return 0; - if (charstrings == 0) return 0; - - if (fdarrayoff) { - /* looks like a CID font */ - if (!fdselectoff) return 0; - stbtt__buf_seek(&b, fdarrayoff); - info->fontdicts = stbtt__cff_get_index(&b); - info->fdselect = stbtt__buf_range(&b, fdselectoff, b.size-fdselectoff); - } - - stbtt__buf_seek(&b, charstrings); - info->charstrings = stbtt__cff_get_index(&b); - } - - t = stbtt__find_table(data, fontstart, "maxp"); - if (t) - info->numGlyphs = ttUSHORT(data+t+4); - else - info->numGlyphs = 0xffff; - - info->svg = -1; - - /* find a cmap encoding table we understand *now* to avoid searching */ - /* later. (todo: could make this installable) */ - /* the same regardless of glyph. */ - numTables = ttUSHORT(data + cmap + 2); - info->index_map = 0; - for (i=0; i < numTables; ++i) { - stbtt_uint32 encoding_record = cmap + 4 + 8 * i; - /* find an encoding we understand: */ - switch(ttUSHORT(data+encoding_record)) { - case STBTT_PLATFORM_ID_MICROSOFT: - switch (ttUSHORT(data+encoding_record+2)) { - case STBTT_MS_EID_UNICODE_BMP: - case STBTT_MS_EID_UNICODE_FULL: - /* MS/Unicode */ - info->index_map = cmap + ttULONG(data+encoding_record+4); - break; - } - break; - case STBTT_PLATFORM_ID_UNICODE: - /* Mac/iOS has these */ - /* all the encodingIDs are unicode, so we don't bother to check it */ - info->index_map = cmap + ttULONG(data+encoding_record+4); - break; - } - } - if (info->index_map == 0) - return 0; - - info->indexToLocFormat = ttUSHORT(data+info->head + 50); - return 1; -} - -STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint) -{ - stbtt_uint8 *data = info->data; - stbtt_uint32 index_map = info->index_map; - - stbtt_uint16 format = ttUSHORT(data + index_map + 0); - if (format == 0) { /* apple byte encoding */ - stbtt_int32 bytes = ttUSHORT(data + index_map + 2); - if (unicode_codepoint < bytes-6) - return ttBYTE(data + index_map + 6 + unicode_codepoint); - return 0; - } else if (format == 6) { - stbtt_uint32 first = ttUSHORT(data + index_map + 6); - stbtt_uint32 count = ttUSHORT(data + index_map + 8); - if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count) - return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2); - return 0; - } else if (format == 2) { - STBTT_assert(0); /* @TODO: high-byte mapping for japanese/chinese/korean */ - return 0; - } else if (format == 4) { /* standard mapping for windows fonts: binary search collection of ranges */ - stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1; - stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1; - stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10); - stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1; - - /* do a binary search of the segments */ - stbtt_uint32 endCount = index_map + 14; - stbtt_uint32 search = endCount; - - if (unicode_codepoint > 0xffff) - return 0; - - /* they lie from endCount .. endCount + segCount */ - /* but searchRange is the nearest power of two, so... */ - if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2)) - search += rangeShift*2; - - /* now decrement to bias correctly to find smallest */ - search -= 2; - while (entrySelector) { - stbtt_uint16 end; - searchRange >>= 1; - end = ttUSHORT(data + search + searchRange*2); - if (unicode_codepoint > end) - search += searchRange*2; - --entrySelector; - } - search += 2; - - { - stbtt_uint16 offset, start, last; - stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1); - - start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item); - last = ttUSHORT(data + endCount + 2*item); - if (unicode_codepoint < start || unicode_codepoint > last) - return 0; - - offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item); - if (offset == 0) - return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item)); - - return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item); - } - } else if (format == 12 || format == 13) { - stbtt_uint32 ngroups = ttULONG(data+index_map+12); - stbtt_int32 low,high; - low = 0; high = (stbtt_int32)ngroups; - /* Binary search the right group. */ - while (low < high) { - stbtt_int32 mid = low + ((high-low) >> 1); /* rounds down, so low <= mid < high */ - stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12); - stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4); - if ((stbtt_uint32) unicode_codepoint < start_char) - high = mid; - else if ((stbtt_uint32) unicode_codepoint > end_char) - low = mid+1; - else { - stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8); - if (format == 12) - return start_glyph + unicode_codepoint-start_char; - else /* format == 13 */ - return start_glyph; - } - } - return 0; /* not found */ - } - /* @TODO */ - STBTT_assert(0); - return 0; -} - -STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices) -{ - return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices); -} - -static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy) -{ - v->type = type; - v->x = (stbtt_int16) x; - v->y = (stbtt_int16) y; - v->cx = (stbtt_int16) cx; - v->cy = (stbtt_int16) cy; -} - -static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index) -{ - int g1,g2; - - STBTT_assert(!info->cff.size); - - if (glyph_index >= info->numGlyphs) return -1; /* glyph index out of range */ - if (info->indexToLocFormat >= 2) return -1; /* unknown index->glyph map format */ - - if (info->indexToLocFormat == 0) { - g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2; - g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2; - } else { - g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4); - g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4); - } - - return g1==g2 ? -1 : g1; /* if length is 0, return -1 */ -} - -static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); - -STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) -{ - if (info->cff.size) { - stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1); - } else { - int g = stbtt__GetGlyfOffset(info, glyph_index); - if (g < 0) return 0; - - if (x0) *x0 = ttSHORT(info->data + g + 2); - if (y0) *y0 = ttSHORT(info->data + g + 4); - if (x1) *x1 = ttSHORT(info->data + g + 6); - if (y1) *y1 = ttSHORT(info->data + g + 8); - } - return 1; -} - -STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1) -{ - return stbtt_GetGlyphBox(info, stbtt_FindGlyphIndex(info,codepoint), x0,y0,x1,y1); -} - -STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index) -{ - stbtt_int16 numberOfContours; - int g; - if (info->cff.size) - return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0; - g = stbtt__GetGlyfOffset(info, glyph_index); - if (g < 0) return 1; - numberOfContours = ttSHORT(info->data + g); - return numberOfContours == 0; -} - -static int stbtt__close_shape(stbtt_vertex *vertices, int num_vertices, int was_off, int start_off, - stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy) -{ - if (start_off) { - if (was_off) - stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy); - stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx,sy,scx,scy); - } else { - if (was_off) - stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy); - else - stbtt_setvertex(&vertices[num_vertices++], STBTT_vline,sx,sy,0,0); - } - return num_vertices; -} - -static int stbtt__GetGlyphShapeTT(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) -{ - stbtt_int16 numberOfContours; - stbtt_uint8 *endPtsOfContours; - stbtt_uint8 *data = info->data; - stbtt_vertex *vertices=0; - int num_vertices=0; - int g = stbtt__GetGlyfOffset(info, glyph_index); - - *pvertices = NULL; - - if (g < 0) return 0; - - numberOfContours = ttSHORT(data + g); - - if (numberOfContours > 0) { - stbtt_uint8 flags=0,flagcount; - stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0; - stbtt_int32 x,y,cx,cy,sx,sy, scx,scy; - stbtt_uint8 *points; - endPtsOfContours = (data + g + 10); - ins = ttUSHORT(data + g + 10 + numberOfContours * 2); - points = data + g + 10 + numberOfContours * 2 + 2 + ins; - - n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); - - m = n + 2*numberOfContours; /* a loose bound on how many vertices we might need */ - vertices = (stbtt_vertex *) STBTT_malloc(m * sizeof(vertices[0]), info->userdata); - if (vertices == 0) - return 0; - - next_move = 0; - flagcount=0; - - /* in first pass, we load uninterpreted data into the allocated array */ - /* above, shifted to the end of the array so we won't overwrite it when */ - /* we create our final data starting from the front */ - - off = m - n; /* starting offset for uninterpreted data, regardless of how m ends up being calculated */ - - /* first load flags */ - - for (i=0; i < n; ++i) { - if (flagcount == 0) { - flags = *points++; - if (flags & 8) - flagcount = *points++; - } else - --flagcount; - vertices[off+i].type = flags; - } - - /* now load x coordinates */ - x=0; - for (i=0; i < n; ++i) { - flags = vertices[off+i].type; - if (flags & 2) { - stbtt_int16 dx = *points++; - x += (flags & 16) ? dx : -dx; /* ??? */ - } else { - if (!(flags & 16)) { - x = x + (stbtt_int16) (points[0]*256 + points[1]); - points += 2; - } - } - vertices[off+i].x = (stbtt_int16) x; - } - - /* now load y coordinates */ - y=0; - for (i=0; i < n; ++i) { - flags = vertices[off+i].type; - if (flags & 4) { - stbtt_int16 dy = *points++; - y += (flags & 32) ? dy : -dy; /* ??? */ - } else { - if (!(flags & 32)) { - y = y + (stbtt_int16) (points[0]*256 + points[1]); - points += 2; - } - } - vertices[off+i].y = (stbtt_int16) y; - } - - /* now convert them to our format */ - num_vertices=0; - sx = sy = cx = cy = scx = scy = 0; - for (i=0; i < n; ++i) { - flags = vertices[off+i].type; - x = (stbtt_int16) vertices[off+i].x; - y = (stbtt_int16) vertices[off+i].y; - - if (next_move == i) { - if (i != 0) - num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); - - /* now start the new one */ - start_off = !(flags & 1); - if (start_off) { - /* if we start off with an off-curve point, then when we need to find a point on the curve */ - /* where we can start, and we need to save some state for when we wraparound. */ - scx = x; - scy = y; - if (!(vertices[off+i+1].type & 1)) { - /* next point is also a curve point, so interpolate an on-point curve */ - sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1; - sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1; - } else { - /* otherwise just use the next point as our start point */ - sx = (stbtt_int32) vertices[off+i+1].x; - sy = (stbtt_int32) vertices[off+i+1].y; - ++i; /* we're using point i+1 as the starting point, so skip it */ - } - } else { - sx = x; - sy = y; - } - stbtt_setvertex(&vertices[num_vertices++], STBTT_vmove,sx,sy,0,0); - was_off = 0; - next_move = 1 + ttUSHORT(endPtsOfContours+j*2); - ++j; - } else { - if (!(flags & 1)) { /* if it's a curve */ - if (was_off) /* two off-curve control points in a row means interpolate an on-curve midpoint */ - stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy); - cx = x; - cy = y; - was_off = 1; - } else { - if (was_off) - stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, x,y, cx, cy); - else - stbtt_setvertex(&vertices[num_vertices++], STBTT_vline, x,y,0,0); - was_off = 0; - } - } - } - num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); - } else if (numberOfContours < 0) { - /* Compound shapes. */ - int more = 1; - stbtt_uint8 *comp = data + g + 10; - num_vertices = 0; - vertices = 0; - while (more) { - stbtt_uint16 flags, gidx; - int comp_num_verts = 0, i; - stbtt_vertex *comp_verts = 0, *tmp = 0; - float mtx[6] = {1,0,0,1,0,0}, m, n; - - flags = ttSHORT(comp); comp+=2; - gidx = ttSHORT(comp); comp+=2; - - if (flags & 2) { /* XY values */ - if (flags & 1) { /* shorts */ - mtx[4] = ttSHORT(comp); comp+=2; - mtx[5] = ttSHORT(comp); comp+=2; - } else { - mtx[4] = ttCHAR(comp); comp+=1; - mtx[5] = ttCHAR(comp); comp+=1; - } - } - else { - /* @TODO handle matching point */ - STBTT_assert(0); - } - if (flags & (1<<3)) { /* WE_HAVE_A_SCALE */ - mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; - mtx[1] = mtx[2] = 0; - } else if (flags & (1<<6)) { /* WE_HAVE_AN_X_AND_YSCALE */ - mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; - mtx[1] = mtx[2] = 0; - mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; - } else if (flags & (1<<7)) { /* WE_HAVE_A_TWO_BY_TWO */ - mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; - mtx[1] = ttSHORT(comp)/16384.0f; comp+=2; - mtx[2] = ttSHORT(comp)/16384.0f; comp+=2; - mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; - } - - /* Find transformation scales. */ - m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]); - n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]); - - /* Get indexed glyph. */ - comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); - if (comp_num_verts > 0) { - /* Transform vertices. */ - for (i = 0; i < comp_num_verts; ++i) { - stbtt_vertex* v = &comp_verts[i]; - stbtt_vertex_type x,y; - x=v->x; y=v->y; - v->x = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); - v->y = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); - x=v->cx; y=v->cy; - v->cx = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); - v->cy = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); - } - /* Append vertices. */ - tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userdata); - if (!tmp) { - if (vertices) STBTT_free(vertices, info->userdata); - if (comp_verts) STBTT_free(comp_verts, info->userdata); - return 0; - } - if (num_vertices > 0 && vertices) STBTT_memcpy(tmp, vertices, num_vertices*sizeof(stbtt_vertex)); - STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex)); - if (vertices) STBTT_free(vertices, info->userdata); - vertices = tmp; - STBTT_free(comp_verts, info->userdata); - num_vertices += comp_num_verts; - } - /* More components ? */ - more = flags & (1<<5); - } - } else { - /* numberOfCounters == 0, do nothing */ - } - - *pvertices = vertices; - return num_vertices; -} - -typedef struct -{ - int bounds; - int started; - float first_x, first_y; - float x, y; - stbtt_int32 min_x, max_x, min_y, max_y; - - stbtt_vertex *pvertices; - int num_vertices; -} stbtt__csctx; - -#define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0} - -static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y) -{ - if (x > c->max_x || !c->started) c->max_x = x; - if (y > c->max_y || !c->started) c->max_y = y; - if (x < c->min_x || !c->started) c->min_x = x; - if (y < c->min_y || !c->started) c->min_y = y; - c->started = 1; -} - -static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy, stbtt_int32 cx1, stbtt_int32 cy1) -{ - if (c->bounds) { - stbtt__track_vertex(c, x, y); - if (type == STBTT_vcubic) { - stbtt__track_vertex(c, cx, cy); - stbtt__track_vertex(c, cx1, cy1); - } - } else { - stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy); - c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1; - c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1; - } - c->num_vertices++; -} - -static void stbtt__csctx_close_shape(stbtt__csctx *ctx) -{ - if (ctx->first_x != ctx->x || ctx->first_y != ctx->y) - stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->first_x, (int)ctx->first_y, 0, 0, 0, 0); -} - -static void stbtt__csctx_rmove_to(stbtt__csctx *ctx, float dx, float dy) -{ - stbtt__csctx_close_shape(ctx); - ctx->first_x = ctx->x = ctx->x + dx; - ctx->first_y = ctx->y = ctx->y + dy; - stbtt__csctx_v(ctx, STBTT_vmove, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); -} - -static void stbtt__csctx_rline_to(stbtt__csctx *ctx, float dx, float dy) -{ - ctx->x += dx; - ctx->y += dy; - stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); -} - -static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3) -{ - float cx1 = ctx->x + dx1; - float cy1 = ctx->y + dy1; - float cx2 = cx1 + dx2; - float cy2 = cy1 + dy2; - ctx->x = cx2 + dx3; - ctx->y = cy2 + dy3; - stbtt__csctx_v(ctx, STBTT_vcubic, (int)ctx->x, (int)ctx->y, (int)cx1, (int)cy1, (int)cx2, (int)cy2); -} - -static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n) -{ - int count = stbtt__cff_index_count(&idx); - int bias = 107; - if (count >= 33900) - bias = 32768; - else if (count >= 1240) - bias = 1131; - n += bias; - if (n < 0 || n >= count) - return stbtt__new_buf(NULL, 0); - return stbtt__cff_index_get(idx, n); -} - -static stbtt__buf stbtt__cid_get_glyph_subrs(const stbtt_fontinfo *info, int glyph_index) -{ - stbtt__buf fdselect = info->fdselect; - int nranges, start, end, v, fmt, fdselector = -1, i; - - stbtt__buf_seek(&fdselect, 0); - fmt = stbtt__buf_get8(&fdselect); - if (fmt == 0) { - /* untested */ - stbtt__buf_skip(&fdselect, glyph_index); - fdselector = stbtt__buf_get8(&fdselect); - } else if (fmt == 3) { - nranges = stbtt__buf_get16(&fdselect); - start = stbtt__buf_get16(&fdselect); - for (i = 0; i < nranges; i++) { - v = stbtt__buf_get8(&fdselect); - end = stbtt__buf_get16(&fdselect); - if (glyph_index >= start && glyph_index < end) { - fdselector = v; - break; - } - start = end; - } - } - if (fdselector == -1) stbtt__new_buf(NULL, 0); - return stbtt__get_subrs(info->cff, stbtt__cff_index_get(info->fontdicts, fdselector)); -} - -static int stbtt__run_charstring(const stbtt_fontinfo *info, int glyph_index, stbtt__csctx *c) -{ - int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0; - int has_subrs = 0, clear_stack; - float s[48]; - stbtt__buf subr_stack[10], subrs = info->subrs, b; - float f; - -#define STBTT__CSERR(s) (0) - - /* this currently ignores the initial width value, which isn't needed if we have hmtx */ - b = stbtt__cff_index_get(info->charstrings, glyph_index); - while (b.cursor < b.size) { - i = 0; - clear_stack = 1; - b0 = stbtt__buf_get8(&b); - switch (b0) { - /* @TODO implement hinting */ - case 0x13: /* hintmask */ - case 0x14: /* cntrmask */ - if (in_header) - maskbits += (sp / 2); /* implicit "vstem" */ - in_header = 0; - stbtt__buf_skip(&b, (maskbits + 7) / 8); - break; - - case 0x01: /* hstem */ - case 0x03: /* vstem */ - case 0x12: /* hstemhm */ - case 0x17: /* vstemhm */ - maskbits += (sp / 2); - break; - - case 0x15: /* rmoveto */ - in_header = 0; - if (sp < 2) return STBTT__CSERR("rmoveto stack"); - stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]); - break; - case 0x04: /* vmoveto */ - in_header = 0; - if (sp < 1) return STBTT__CSERR("vmoveto stack"); - stbtt__csctx_rmove_to(c, 0, s[sp-1]); - break; - case 0x16: /* hmoveto */ - in_header = 0; - if (sp < 1) return STBTT__CSERR("hmoveto stack"); - stbtt__csctx_rmove_to(c, s[sp-1], 0); - break; - - case 0x05: /* rlineto */ - if (sp < 2) return STBTT__CSERR("rlineto stack"); - for (; i + 1 < sp; i += 2) - stbtt__csctx_rline_to(c, s[i], s[i+1]); - break; - - /* hlineto/vlineto and vhcurveto/hvcurveto alternate horizontal and vertical */ - /* starting from a different place. */ - - case 0x07: /* vlineto */ - if (sp < 1) return STBTT__CSERR("vlineto stack"); - goto vlineto; - case 0x06: /* hlineto */ - if (sp < 1) return STBTT__CSERR("hlineto stack"); - for (;;) { - if (i >= sp) break; - stbtt__csctx_rline_to(c, s[i], 0); - i++; - vlineto: - if (i >= sp) break; - stbtt__csctx_rline_to(c, 0, s[i]); - i++; - } - break; - - case 0x1F: /* hvcurveto */ - if (sp < 4) return STBTT__CSERR("hvcurveto stack"); - goto hvcurveto; - case 0x1E: /* vhcurveto */ - if (sp < 4) return STBTT__CSERR("vhcurveto stack"); - for (;;) { - if (i + 3 >= sp) break; - stbtt__csctx_rccurve_to(c, 0, s[i], s[i+1], s[i+2], s[i+3], (sp - i == 5) ? s[i + 4] : 0.0f); - i += 4; - hvcurveto: - if (i + 3 >= sp) break; - stbtt__csctx_rccurve_to(c, s[i], 0, s[i+1], s[i+2], (sp - i == 5) ? s[i+4] : 0.0f, s[i+3]); - i += 4; - } - break; - - case 0x08: /* rrcurveto */ - if (sp < 6) return STBTT__CSERR("rcurveline stack"); - for (; i + 5 < sp; i += 6) - stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); - break; - - case 0x18: /* rcurveline */ - if (sp < 8) return STBTT__CSERR("rcurveline stack"); - for (; i + 5 < sp - 2; i += 6) - stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); - if (i + 1 >= sp) return STBTT__CSERR("rcurveline stack"); - stbtt__csctx_rline_to(c, s[i], s[i+1]); - break; - - case 0x19: /* rlinecurve */ - if (sp < 8) return STBTT__CSERR("rlinecurve stack"); - for (; i + 1 < sp - 6; i += 2) - stbtt__csctx_rline_to(c, s[i], s[i+1]); - if (i + 5 >= sp) return STBTT__CSERR("rlinecurve stack"); - stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); - break; - - case 0x1A: /* vvcurveto */ - case 0x1B: /* hhcurveto */ - if (sp < 4) return STBTT__CSERR("(vv|hh)curveto stack"); - f = 0.0; - if (sp & 1) { f = s[i]; i++; } - for (; i + 3 < sp; i += 4) { - if (b0 == 0x1B) - stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0); - else - stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]); - f = 0.0; - } - break; - - case 0x0A: /* callsubr */ - if (!has_subrs) { - if (info->fdselect.size) - subrs = stbtt__cid_get_glyph_subrs(info, glyph_index); - has_subrs = 1; - } - /* FALLTHROUGH */ - case 0x1D: /* callgsubr */ - if (sp < 1) return STBTT__CSERR("call(g|)subr stack"); - v = (int) s[--sp]; - if (subr_stack_height >= 10) return STBTT__CSERR("recursion limit"); - subr_stack[subr_stack_height++] = b; - b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v); - if (b.size == 0) return STBTT__CSERR("subr not found"); - b.cursor = 0; - clear_stack = 0; - break; - - case 0x0B: /* return */ - if (subr_stack_height <= 0) return STBTT__CSERR("return outside subr"); - b = subr_stack[--subr_stack_height]; - clear_stack = 0; - break; - - case 0x0E: /* endchar */ - stbtt__csctx_close_shape(c); - return 1; - - case 0x0C: { /* two-byte escape */ - float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6; - float dx, dy; - int b1 = stbtt__buf_get8(&b); - switch (b1) { - /* @TODO These "flex" implementations ignore the flex-depth and resolution, */ - /* and always draw beziers. */ - case 0x22: /* hflex */ - if (sp < 7) return STBTT__CSERR("hflex stack"); - dx1 = s[0]; - dx2 = s[1]; - dy2 = s[2]; - dx3 = s[3]; - dx4 = s[4]; - dx5 = s[5]; - dx6 = s[6]; - stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0); - stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0); - break; - - case 0x23: /* flex */ - if (sp < 13) return STBTT__CSERR("flex stack"); - dx1 = s[0]; - dy1 = s[1]; - dx2 = s[2]; - dy2 = s[3]; - dx3 = s[4]; - dy3 = s[5]; - dx4 = s[6]; - dy4 = s[7]; - dx5 = s[8]; - dy5 = s[9]; - dx6 = s[10]; - dy6 = s[11]; - /* fd is s[12] */ - stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); - stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); - break; - - case 0x24: /* hflex1 */ - if (sp < 9) return STBTT__CSERR("hflex1 stack"); - dx1 = s[0]; - dy1 = s[1]; - dx2 = s[2]; - dy2 = s[3]; - dx3 = s[4]; - dx4 = s[5]; - dx5 = s[6]; - dy5 = s[7]; - dx6 = s[8]; - stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0); - stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5)); - break; - - case 0x25: /* flex1 */ - if (sp < 11) return STBTT__CSERR("flex1 stack"); - dx1 = s[0]; - dy1 = s[1]; - dx2 = s[2]; - dy2 = s[3]; - dx3 = s[4]; - dy3 = s[5]; - dx4 = s[6]; - dy4 = s[7]; - dx5 = s[8]; - dy5 = s[9]; - dx6 = dy6 = s[10]; - dx = dx1+dx2+dx3+dx4+dx5; - dy = dy1+dy2+dy3+dy4+dy5; - if (STBTT_fabs(dx) > STBTT_fabs(dy)) - dy6 = -dy; - else - dx6 = -dx; - stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); - stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); - break; - - default: - return STBTT__CSERR("unimplemented"); - } - } break; - - default: - if (b0 != 255 && b0 != 28 && b0 < 32) - return STBTT__CSERR("reserved operator"); - - /* push immediate */ - if (b0 == 255) { - f = (float)(stbtt_int32)stbtt__buf_get32(&b) / 0x10000; - } else { - stbtt__buf_skip(&b, -1); - f = (float)(stbtt_int16)stbtt__cff_int(&b); - } - if (sp >= 48) return STBTT__CSERR("push stack overflow"); - s[sp++] = f; - clear_stack = 0; - break; - } - if (clear_stack) sp = 0; - } - return STBTT__CSERR("no endchar"); - -#undef STBTT__CSERR -} - -static int stbtt__GetGlyphShapeT2(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) -{ - /* runs the charstring twice, once to count and once to output (to avoid realloc) */ - stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1); - stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0); - if (stbtt__run_charstring(info, glyph_index, &count_ctx)) { - *pvertices = (stbtt_vertex*)STBTT_malloc(count_ctx.num_vertices*sizeof(stbtt_vertex), info->userdata); - output_ctx.pvertices = *pvertices; - if (stbtt__run_charstring(info, glyph_index, &output_ctx)) { - STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices); - return output_ctx.num_vertices; - } - } - *pvertices = NULL; - return 0; -} - -static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) -{ - stbtt__csctx c = STBTT__CSCTX_INIT(1); - int r = stbtt__run_charstring(info, glyph_index, &c); - if (x0) *x0 = r ? c.min_x : 0; - if (y0) *y0 = r ? c.min_y : 0; - if (x1) *x1 = r ? c.max_x : 0; - if (y1) *y1 = r ? c.max_y : 0; - return r ? c.num_vertices : 0; -} - -STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) -{ - if (!info->cff.size) - return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices); - else - return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices); -} - -STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing) -{ - stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34); - if (glyph_index < numOfLongHorMetrics) { - if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*glyph_index); - if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*glyph_index + 2); - } else { - if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*(numOfLongHorMetrics-1)); - if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics)); - } -} - -STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info) -{ - stbtt_uint8 *data = info->data + info->kern; - - /* we only look at the first table. it must be 'horizontal' and format 0. */ - if (!info->kern) - return 0; - if (ttUSHORT(data+2) < 1) /* number of tables, need at least 1 */ - return 0; - if (ttUSHORT(data+8) != 1) /* horizontal flag must be set in format */ - return 0; - - return ttUSHORT(data+10); -} - -STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length) -{ - stbtt_uint8 *data = info->data + info->kern; - int k, length; - - /* we only look at the first table. it must be 'horizontal' and format 0. */ - if (!info->kern) - return 0; - if (ttUSHORT(data+2) < 1) /* number of tables, need at least 1 */ - return 0; - if (ttUSHORT(data+8) != 1) /* horizontal flag must be set in format */ - return 0; - - length = ttUSHORT(data+10); - if (table_length < length) - length = table_length; - - for (k = 0; k < length; k++) - { - table[k].glyph1 = ttUSHORT(data+18+(k*6)); - table[k].glyph2 = ttUSHORT(data+20+(k*6)); - table[k].advance = ttSHORT(data+22+(k*6)); - } - - return length; -} - -static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) -{ - stbtt_uint8 *data = info->data + info->kern; - stbtt_uint32 needle, straw; - int l, r, m; - - /* we only look at the first table. it must be 'horizontal' and format 0. */ - if (!info->kern) - return 0; - if (ttUSHORT(data+2) < 1) /* number of tables, need at least 1 */ - return 0; - if (ttUSHORT(data+8) != 1) /* horizontal flag must be set in format */ - return 0; - - l = 0; - r = ttUSHORT(data+10) - 1; - needle = glyph1 << 16 | glyph2; - while (l <= r) { - m = (l + r) >> 1; - straw = ttULONG(data+18+(m*6)); /* note: unaligned read */ - if (needle < straw) - r = m - 1; - else if (needle > straw) - l = m + 1; - else - return ttSHORT(data+22+(m*6)); - } - return 0; -} - -static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable, int glyph) -{ - stbtt_uint16 coverageFormat = ttUSHORT(coverageTable); - switch (coverageFormat) { - case 1: { - stbtt_uint16 glyphCount = ttUSHORT(coverageTable + 2); - - /* Binary search. */ - stbtt_int32 l=0, r=glyphCount-1, m; - int straw, needle=glyph; - while (l <= r) { - stbtt_uint8 *glyphArray = coverageTable + 4; - stbtt_uint16 glyphID; - m = (l + r) >> 1; - glyphID = ttUSHORT(glyphArray + 2 * m); - straw = glyphID; - if (needle < straw) - r = m - 1; - else if (needle > straw) - l = m + 1; - else { - return m; - } - } - break; - } - - case 2: { - stbtt_uint16 rangeCount = ttUSHORT(coverageTable + 2); - stbtt_uint8 *rangeArray = coverageTable + 4; - - /* Binary search. */ - stbtt_int32 l=0, r=rangeCount-1, m; - int strawStart, strawEnd, needle=glyph; - while (l <= r) { - stbtt_uint8 *rangeRecord; - m = (l + r) >> 1; - rangeRecord = rangeArray + 6 * m; - strawStart = ttUSHORT(rangeRecord); - strawEnd = ttUSHORT(rangeRecord + 2); - if (needle < strawStart) - r = m - 1; - else if (needle > strawEnd) - l = m + 1; - else { - stbtt_uint16 startCoverageIndex = ttUSHORT(rangeRecord + 4); - return startCoverageIndex + glyph - strawStart; - } - } - break; - } - - default: return -1; /* unsupported */ - } - - return -1; -} - -static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable, int glyph) -{ - stbtt_uint16 classDefFormat = ttUSHORT(classDefTable); - switch (classDefFormat) - { - case 1: { - stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2); - stbtt_uint16 glyphCount = ttUSHORT(classDefTable + 4); - stbtt_uint8 *classDef1ValueArray = classDefTable + 6; - - if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount) - return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID)); - break; - } - - case 2: { - stbtt_uint16 classRangeCount = ttUSHORT(classDefTable + 2); - stbtt_uint8 *classRangeRecords = classDefTable + 4; - - /* Binary search. */ - stbtt_int32 l=0, r=classRangeCount-1, m; - int strawStart, strawEnd, needle=glyph; - while (l <= r) { - stbtt_uint8 *classRangeRecord; - m = (l + r) >> 1; - classRangeRecord = classRangeRecords + 6 * m; - strawStart = ttUSHORT(classRangeRecord); - strawEnd = ttUSHORT(classRangeRecord + 2); - if (needle < strawStart) - r = m - 1; - else if (needle > strawEnd) - l = m + 1; - else - return (stbtt_int32)ttUSHORT(classRangeRecord + 4); - } - break; - } - - default: - return -1; /* Unsupported definition type, return an error. */ - } - - /* "All glyphs not assigned to a class fall into class 0". (OpenType spec) */ - return 0; -} - -/* Define to STBTT_assert(x) if you want to break on unimplemented formats. */ -#define STBTT_GPOS_TODO_assert(x) - -static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) -{ - stbtt_uint16 lookupListOffset; - stbtt_uint8 *lookupList; - stbtt_uint16 lookupCount; - stbtt_uint8 *data; - stbtt_int32 i, sti; - - if (!info->gpos) return 0; - - data = info->data + info->gpos; - - if (ttUSHORT(data+0) != 1) return 0; /* Major version 1 */ - if (ttUSHORT(data+2) != 0) return 0; /* Minor version 0 */ - - lookupListOffset = ttUSHORT(data+8); - lookupList = data + lookupListOffset; - lookupCount = ttUSHORT(lookupList); - - for (i=0; i= pairSetCount) return 0; - - needle=glyph2; - r=pairValueCount-1; - l=0; - - /* Binary search. */ - while (l <= r) { - stbtt_uint16 secondGlyph; - stbtt_uint8 *pairValue; - m = (l + r) >> 1; - pairValue = pairValueArray + (2 + valueRecordPairSizeInBytes) * m; - secondGlyph = ttUSHORT(pairValue); - straw = secondGlyph; - if (needle < straw) - r = m - 1; - else if (needle > straw) - l = m + 1; - else { - stbtt_int16 xAdvance = ttSHORT(pairValue + 2); - return xAdvance; - } - } - } else - return 0; - break; - } - - case 2: { - stbtt_uint16 valueFormat1 = ttUSHORT(table + 4); - stbtt_uint16 valueFormat2 = ttUSHORT(table + 6); - if (valueFormat1 == 4 && valueFormat2 == 0) { /* Support more formats? */ - stbtt_uint16 classDef1Offset = ttUSHORT(table + 8); - stbtt_uint16 classDef2Offset = ttUSHORT(table + 10); - int glyph1class = stbtt__GetGlyphClass(table + classDef1Offset, glyph1); - int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2); - - stbtt_uint16 class1Count = ttUSHORT(table + 12); - stbtt_uint16 class2Count = ttUSHORT(table + 14); - stbtt_uint8 *class1Records, *class2Records; - stbtt_int16 xAdvance; - - if (glyph1class < 0 || glyph1class >= class1Count) return 0; /* malformed */ - if (glyph2class < 0 || glyph2class >= class2Count) return 0; /* malformed */ - - class1Records = table + 16; - class2Records = class1Records + 2 * (glyph1class * class2Count); - xAdvance = ttSHORT(class2Records + 2 * glyph2class); - return xAdvance; - } else - return 0; - break; - } - - default: - return 0; /* Unsupported position format */ - } - } - } - - return 0; -} - -STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int g1, int g2) -{ - int xAdvance = 0; - - if (info->gpos) - xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2); - else if (info->kern) - xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2); - - return xAdvance; -} - -STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2) -{ - if (!info->kern && !info->gpos) /* if no kerning table, don't waste time looking up both codepoint->glyphs */ - return 0; - return stbtt_GetGlyphKernAdvance(info, stbtt_FindGlyphIndex(info,ch1), stbtt_FindGlyphIndex(info,ch2)); -} - -STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing) -{ - stbtt_GetGlyphHMetrics(info, stbtt_FindGlyphIndex(info,codepoint), advanceWidth, leftSideBearing); -} - -STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap) -{ - if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4); - if (descent) *descent = ttSHORT(info->data+info->hhea + 6); - if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8); -} - -STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap) -{ - int tab = stbtt__find_table(info->data, info->fontstart, "OS/2"); - if (!tab) - return 0; - if (typoAscent ) *typoAscent = ttSHORT(info->data+tab + 68); - if (typoDescent) *typoDescent = ttSHORT(info->data+tab + 70); - if (typoLineGap) *typoLineGap = ttSHORT(info->data+tab + 72); - return 1; -} - -STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1) -{ - *x0 = ttSHORT(info->data + info->head + 36); - *y0 = ttSHORT(info->data + info->head + 38); - *x1 = ttSHORT(info->data + info->head + 40); - *y1 = ttSHORT(info->data + info->head + 42); -} - -STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float height) -{ - int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6); - return (float) height / fheight; -} - -STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels) -{ - int unitsPerEm = ttUSHORT(info->data + info->head + 18); - return pixels / unitsPerEm; -} - -STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v) -{ - STBTT_free(v, info->userdata); -} - -STBTT_DEF stbtt_uint8 *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl) -{ - int i; - stbtt_uint8 *data = info->data; - stbtt_uint8 *svg_doc_list = data + stbtt__get_svg((stbtt_fontinfo *) info); - - int numEntries = ttUSHORT(svg_doc_list); - stbtt_uint8 *svg_docs = svg_doc_list + 2; - - for(i=0; i= ttUSHORT(svg_doc)) && (gl <= ttUSHORT(svg_doc + 2))) - return svg_doc; - } - return 0; -} - -STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg) -{ - stbtt_uint8 *data = info->data; - stbtt_uint8 *svg_doc; - - if (info->svg == 0) - return 0; - - svg_doc = stbtt_FindSVGDoc(info, gl); - if (svg_doc != NULL) { - *svg = (char *) data + info->svg + ttULONG(svg_doc + 4); - return ttULONG(svg_doc + 8); - } else { - return 0; - } -} - -STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg) -{ - return stbtt_GetGlyphSVG(info, stbtt_FindGlyphIndex(info, unicode_codepoint), svg); -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* antialiasing software rasterizer */ -/* */ - -STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) -{ - int x0=0,y0=0,x1,y1; /* =0 suppresses compiler warning */ - if (!stbtt_GetGlyphBox(font, glyph, &x0,&y0,&x1,&y1)) { - /* e.g. space character */ - if (ix0) *ix0 = 0; - if (iy0) *iy0 = 0; - if (ix1) *ix1 = 0; - if (iy1) *iy1 = 0; - } else { - /* move to integral bboxes (treating pixels as little squares, what pixels get touched)? */ - if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x); - if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y); - if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); - if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); - } -} - -STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) -{ - stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); -} - -STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) -{ - stbtt_GetGlyphBitmapBoxSubpixel(font, stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1); -} - -STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) -{ - stbtt_GetCodepointBitmapBoxSubpixel(font, codepoint, scale_x, scale_y,0.0f,0.0f, ix0,iy0,ix1,iy1); -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* Rasterizer */ - -typedef struct stbtt__hheap_chunk -{ - struct stbtt__hheap_chunk *next; -} stbtt__hheap_chunk; - -typedef struct stbtt__hheap -{ - struct stbtt__hheap_chunk *head; - void *first_free; - int num_remaining_in_head_chunk; -} stbtt__hheap; - -static void *stbtt__hheap_alloc(stbtt__hheap *hh, size_t size, void *userdata) -{ - if (hh->first_free) { - void *p = hh->first_free; - hh->first_free = * (void **) p; - return p; - } else { - if (hh->num_remaining_in_head_chunk == 0) { - int count = (size < 32 ? 2000 : size < 128 ? 800 : 100); - stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * count, userdata); - if (c == NULL) - return NULL; - c->next = hh->head; - hh->head = c; - hh->num_remaining_in_head_chunk = count; - } - --hh->num_remaining_in_head_chunk; - return (char *) (hh->head) + sizeof(stbtt__hheap_chunk) + size * hh->num_remaining_in_head_chunk; - } -} - -static void stbtt__hheap_free(stbtt__hheap *hh, void *p) -{ - *(void **) p = hh->first_free; - hh->first_free = p; -} - -static void stbtt__hheap_cleanup(stbtt__hheap *hh, void *userdata) -{ - stbtt__hheap_chunk *c = hh->head; - while (c) { - stbtt__hheap_chunk *n = c->next; - STBTT_free(c, userdata); - c = n; - } -} - -typedef struct stbtt__edge { - float x0,y0, x1,y1; - int invert; -} stbtt__edge; - - -typedef struct stbtt__active_edge -{ - struct stbtt__active_edge *next; - #if STBTT_RASTERIZER_VERSION==1 - int x,dx; - float ey; - int direction; - #elif STBTT_RASTERIZER_VERSION==2 - float fx,fdx,fdy; - float direction; - float sy; - float ey; - #else - #error "Unrecognized value of STBTT_RASTERIZER_VERSION" - #endif -} stbtt__active_edge; - -#if STBTT_RASTERIZER_VERSION == 1 -#define STBTT_FIXSHIFT 10 -#define STBTT_FIX (1 << STBTT_FIXSHIFT) -#define STBTT_FIXMASK (STBTT_FIX-1) - -static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) -{ - stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); - float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); - STBTT_assert(z != NULL); - if (!z) return z; - - /* round dx down to avoid overshooting */ - if (dxdy < 0) - z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy); - else - z->dx = STBTT_ifloor(STBTT_FIX * dxdy); - - z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0)); /* use z->dx so when we offset later it's by the same amount */ - z->x -= off_x * STBTT_FIX; - - z->ey = e->y1; - z->next = 0; - z->direction = e->invert ? 1 : -1; - return z; -} -#elif STBTT_RASTERIZER_VERSION == 2 -static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) -{ - stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); - float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); - STBTT_assert(z != NULL); - /* STBTT_assert(e->y0 <= start_point); */ - if (!z) return z; - z->fdx = dxdy; - z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f; - z->fx = e->x0 + dxdy * (start_point - e->y0); - z->fx -= off_x; - z->direction = e->invert ? 1.0f : -1.0f; - z->sy = e->y0; - z->ey = e->y1; - z->next = 0; - return z; -} -#else -#error "Unrecognized value of STBTT_RASTERIZER_VERSION" -#endif - -#if STBTT_RASTERIZER_VERSION == 1 -/* note: this routine clips fills that extend off the edges... ideally this */ -/* wouldn't happen, but it could happen if the truetype glyph bounding boxes */ -/* are wrong, or if the user supplies a too-small bitmap */ -static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int max_weight) -{ - /* non-zero winding fill */ - int x0=0, w=0; - - while (e) { - if (w == 0) { - /* if we're currently at zero, we need to record the edge start point */ - x0 = e->x; w += e->direction; - } else { - int x1 = e->x; w += e->direction; - /* if we went to zero, we need to draw */ - if (w == 0) { - int i = x0 >> STBTT_FIXSHIFT; - int j = x1 >> STBTT_FIXSHIFT; - - if (i < len && j >= 0) { - if (i == j) { - /* x0,x1 are the same pixel, so compute combined coverage */ - scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); - } else { - if (i >= 0) /* add antialiasing for x0 */ - scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT); - else - i = -1; /* clip */ - - if (j < len) /* add antialiasing for x1 */ - scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); - else - j = len; /* clip */ - - for (++i; i < j; ++i) /* fill pixels between x0 and x1 */ - scanline[i] = scanline[i] + (stbtt_uint8) max_weight; - } - } - } - } - - e = e->next; - } -} - -static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) -{ - stbtt__hheap hh = { 0, 0, 0 }; - stbtt__active_edge *active = NULL; - int y,j=0; - int max_weight = (255 / vsubsample); /* weight per vertical scanline */ - int s; /* vertical subsample index */ - unsigned char scanline_data[512], *scanline; - - if (result->w > 512) - scanline = (unsigned char *) STBTT_malloc(result->w, userdata); - else - scanline = scanline_data; - - y = off_y * vsubsample; - e[n].y0 = (off_y + result->h) * (float) vsubsample + 1; - - while (j < result->h) { - STBTT_memset(scanline, 0, result->w); - for (s=0; s < vsubsample; ++s) { - /* find center of pixel for this scanline */ - float scan_y = y + 0.5f; - stbtt__active_edge **step = &active; - - /* update all active edges; */ - /* remove all active edges that terminate before the center of this scanline */ - while (*step) { - stbtt__active_edge * z = *step; - if (z->ey <= scan_y) { - *step = z->next; /* delete from list */ - STBTT_assert(z->direction); - z->direction = 0; - stbtt__hheap_free(&hh, z); - } else { - z->x += z->dx; /* advance to position for current scanline */ - step = &((*step)->next); /* advance through list */ - } - } - - /* resort the list if needed */ - for(;;) { - int changed=0; - step = &active; - while (*step && (*step)->next) { - if ((*step)->x > (*step)->next->x) { - stbtt__active_edge *t = *step; - stbtt__active_edge *q = t->next; - - t->next = q->next; - q->next = t; - *step = q; - changed = 1; - } - step = &(*step)->next; - } - if (!changed) break; - } - - /* insert all edges that start before the center of this scanline -- omit ones that also end on this scanline */ - while (e->y0 <= scan_y) { - if (e->y1 > scan_y) { - stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata); - if (z != NULL) { - /* find insertion point */ - if (active == NULL) - active = z; - else if (z->x < active->x) { - /* insert at front */ - z->next = active; - active = z; - } else { - /* find thing to insert AFTER */ - stbtt__active_edge *p = active; - while (p->next && p->next->x < z->x) - p = p->next; - /* at this point, p->next->x is NOT < z->x */ - z->next = p->next; - p->next = z; - } - } - } - ++e; - } - - /* now process all active edges in XOR fashion */ - if (active) - stbtt__fill_active_edges(scanline, result->w, active, max_weight); - - ++y; - } - STBTT_memcpy(result->pixels + j * result->stride, scanline, result->w); - ++j; - } - - stbtt__hheap_cleanup(&hh, userdata); - - if (scanline != scanline_data) - STBTT_free(scanline, userdata); -} - -#elif STBTT_RASTERIZER_VERSION == 2 - -/* the edge passed in here does not cross the vertical line at x or the vertical line at x+1 */ -/* (i.e. it has already been clipped to those) */ -static void stbtt__handle_clipped_edge(float *scanline, int x, stbtt__active_edge *e, float x0, float y0, float x1, float y1) -{ - if (y0 == y1) return; - STBTT_assert(y0 < y1); - STBTT_assert(e->sy <= e->ey); - if (y0 > e->ey) return; - if (y1 < e->sy) return; - if (y0 < e->sy) { - x0 += (x1-x0) * (e->sy - y0) / (y1-y0); - y0 = e->sy; - } - if (y1 > e->ey) { - x1 += (x1-x0) * (e->ey - y1) / (y1-y0); - y1 = e->ey; - } - - if (x0 == x) - STBTT_assert(x1 <= x+1); - else if (x0 == x+1) - STBTT_assert(x1 >= x); - else if (x0 <= x) - STBTT_assert(x1 <= x); - else if (x0 >= x+1) - STBTT_assert(x1 >= x+1); - else - STBTT_assert(x1 >= x && x1 <= x+1); - - if (x0 <= x && x1 <= x) - scanline[x] += e->direction * (y1-y0); - else if (x0 >= x+1 && x1 >= x+1) - ; - else { - STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1); - scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2); /* coverage = 1 - average x position */ - } -} - -static float stbtt__sized_trapezoid_area(float height, float top_width, float bottom_width) -{ - STBTT_assert(top_width >= 0); - STBTT_assert(bottom_width >= 0); - return (top_width + bottom_width) / 2.0f * height; -} - -static float stbtt__position_trapezoid_area(float height, float tx0, float tx1, float bx0, float bx1) -{ - return stbtt__sized_trapezoid_area(height, tx1 - tx0, bx1 - bx0); -} - -static float stbtt__sized_triangle_area(float height, float width) -{ - return height * width / 2; -} - -static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill, int len, stbtt__active_edge *e, float y_top) -{ - float y_bottom = y_top+1; - - while (e) { - /* brute force every pixel */ - - /* compute intersection points with top & bottom */ - STBTT_assert(e->ey >= y_top); - - if (e->fdx == 0) { - float x0 = e->fx; - if (x0 < len) { - if (x0 >= 0) { - stbtt__handle_clipped_edge(scanline,(int) x0,e, x0,y_top, x0,y_bottom); - stbtt__handle_clipped_edge(scanline_fill-1,(int) x0+1,e, x0,y_top, x0,y_bottom); - } else { - stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom); - } - } - } else { - float x0 = e->fx; - float dx = e->fdx; - float xb = x0 + dx; - float x_top, x_bottom; - float sy0,sy1; - float dy = e->fdy; - STBTT_assert(e->sy <= y_bottom && e->ey >= y_top); - - /* compute endpoints of line segment clipped to this scanline (if the */ - /* line segment starts on this scanline. x0 is the intersection of the */ - /* line with y_top, but that may be off the line segment. */ - if (e->sy > y_top) { - x_top = x0 + dx * (e->sy - y_top); - sy0 = e->sy; - } else { - x_top = x0; - sy0 = y_top; - } - if (e->ey < y_bottom) { - x_bottom = x0 + dx * (e->ey - y_top); - sy1 = e->ey; - } else { - x_bottom = xb; - sy1 = y_bottom; - } - - if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) { - /* from here on, we don't have to range check x values */ - - if ((int) x_top == (int) x_bottom) { - float height; - /* simple case, only spans one pixel */ - int x = (int) x_top; - height = (sy1 - sy0) * e->direction; - STBTT_assert(x >= 0 && x < len); - scanline[x] += stbtt__position_trapezoid_area(height, x_top, x+1.0f, x_bottom, x+1.0f); - scanline_fill[x] += height; /* everything right of this pixel is filled */ - } else { - int x,x1,x2; - float y_crossing, y_final, step, sign, area; - /* covers 2+ pixels */ - if (x_top > x_bottom) { - /* flip scanline vertically; signed area is the same */ - float t; - sy0 = y_bottom - (sy0 - y_top); - sy1 = y_bottom - (sy1 - y_top); - t = sy0, sy0 = sy1, sy1 = t; - t = x_bottom, x_bottom = x_top, x_top = t; - dx = -dx; - dy = -dy; - t = x0, x0 = xb, xb = t; - } - STBTT_assert(dy >= 0); - STBTT_assert(dx >= 0); - - x1 = (int) x_top; - x2 = (int) x_bottom; - /* compute intersection with y axis at x1+1 */ - y_crossing = y_top + dy * (x1+1 - x0); - - /* compute intersection with y axis at x2 */ - y_final = y_top + dy * (x2 - x0); - - /* x1 x_top x2 x_bottom */ - /* y_top +------|-----+------------+------------+--------|---+------------+ */ - /* | | | | | | */ - /* | | | | | | */ - /* sy0 | Txxxxx|............|............|............|............| */ - /* y_crossing | *xxxxx.......|............|............|............| */ - /* | | xxxxx..|............|............|............| */ - /* | | /- xx*xxxx........|............|............| */ - /* | | dy < | xxxxxx..|............|............| */ - /* y_final | | \- | xx*xxx.........|............| */ - /* sy1 | | | | xxxxxB...|............| */ - /* | | | | | | */ - /* | | | | | | */ - /* y_bottom +------------+------------+------------+------------+------------+ */ - /* */ - /* goal is to measure the area covered by '.' in each pixel */ - - /* if x2 is right at the right edge of x1, y_crossing can blow up, github #1057 */ - /* @TODO: maybe test against sy1 rather than y_bottom? */ - if (y_crossing > y_bottom) - y_crossing = y_bottom; - - sign = e->direction; - - /* area of the rectangle covered from sy0..y_crossing */ - area = sign * (y_crossing-sy0); - - /* area of the triangle (x_top,sy0), (x1+1,sy0), (x1+1,y_crossing) */ - scanline[x1] += stbtt__sized_triangle_area(area, x1+1 - x_top); - - /* check if final y_crossing is blown up; no test case for this */ - if (y_final > y_bottom) { - y_final = y_bottom; - dy = (y_final - y_crossing ) / (x2 - (x1+1)); /* if denom=0, y_final = y_crossing, so y_final <= y_bottom */ - } - - /* in second pixel, area covered by line segment found in first pixel */ - /* is always a rectangle 1 wide * the height of that line segment; this */ - /* is exactly what the variable 'area' stores. it also gets a contribution */ - /* from the line segment within it. the THIRD pixel will get the first */ - /* pixel's rectangle contribution, the second pixel's rectangle contribution, */ - /* and its own contribution. the 'own contribution' is the same in every pixel except */ - /* the leftmost and rightmost, a trapezoid that slides down in each pixel. */ - /* the second pixel's contribution to the third pixel will be the */ - /* rectangle 1 wide times the height change in the second pixel, which is dy. */ - - step = sign * dy * 1; /* dy is dy/dx, change in y for every 1 change in x, */ - /* which multiplied by 1-pixel-width is how much pixel area changes for each step in x */ - /* so the area advances by 'step' every time */ - - for (x = x1+1; x < x2; ++x) { - scanline[x] += area + step/2; /* area of trapezoid is 1*step/2 */ - area += step; - } - STBTT_assert(STBTT_fabs(area) <= 1.01f); /* accumulated error from area += step unless we round step down */ - STBTT_assert(sy1 > y_final-0.01f); - - /* area covered in the last pixel is the rectangle from all the pixels to the left, */ - /* plus the trapezoid filled by the line segment in this pixel all the way to the right edge */ - scanline[x2] += area + sign * stbtt__position_trapezoid_area(sy1-y_final, (float) x2, x2+1.0f, x_bottom, x2+1.0f); - - /* the rest of the line is filled based on the total height of the line segment in this pixel */ - scanline_fill[x2] += sign * (sy1-sy0); - } - } else { - /* if edge goes outside of box we're drawing, we require */ - /* clipping logic. since this does not match the intended use */ - /* of this library, we use a different, very slow brute */ - /* force implementation */ - /* note though that this does happen some of the time because */ - /* x_top and x_bottom can be extrapolated at the top & bottom of */ - /* the shape and actually lie outside the bounding box */ - int x; - for (x=0; x < len; ++x) { - /* cases: */ - /* */ - /* there can be up to two intersections with the pixel. any intersection */ - /* with left or right edges can be handled by splitting into two (or three) */ - /* regions. intersections with top & bottom do not necessitate case-wise logic. */ - /* */ - /* the old way of doing this found the intersections with the left & right edges, */ - /* then used some simple logic to produce up to three segments in sorted order */ - /* from top-to-bottom. however, this had a problem: if an x edge was epsilon */ - /* across the x border, then the corresponding y position might not be distinct */ - /* from the other y segment, and it might ignored as an empty segment. to avoid */ - /* that, we need to explicitly produce segments based on x positions. */ - - /* rename variables to clearly-defined pairs */ - float y0 = y_top; - float x1 = (float) (x); - float x2 = (float) (x+1); - float x3 = xb; - float y3 = y_bottom; - - /* x = e->x + e->dx * (y-y_top) */ - /* (y-y_top) = (x - e->x) / e->dx */ - /* y = (x - e->x) / e->dx + y_top */ - float y1 = (x - x0) / dx + y_top; - float y2 = (x+1 - x0) / dx + y_top; - - if (x0 < x1 && x3 > x2) { /* three segments descending down-right */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); - stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2); - stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); - } else if (x3 < x1 && x0 > x2) { /* three segments descending down-left */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); - stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1); - stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); - } else if (x0 < x1 && x3 > x1) { /* two segments across x, down-right */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); - stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); - } else if (x3 < x1 && x0 > x1) { /* two segments across x, down-left */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); - stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); - } else if (x0 < x2 && x3 > x2) { /* two segments across x+1, down-right */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); - stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); - } else if (x3 < x2 && x0 > x2) { /* two segments across x+1, down-left */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); - stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); - } else { /* one segment */ - stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3); - } - } - } - } - e = e->next; - } -} - -/* directly AA rasterize edges w/o supersampling */ -static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) -{ - stbtt__hheap hh = { 0, 0, 0 }; - stbtt__active_edge *active = NULL; - int y,j=0, i; - float scanline_data[129], *scanline, *scanline2; - - STBTT__NOTUSED(vsubsample); - - if (result->w > 64) - scanline = (float *) STBTT_malloc((result->w*2+1) * sizeof(float), userdata); - else - scanline = scanline_data; - - scanline2 = scanline + result->w; - - y = off_y; - e[n].y0 = (float) (off_y + result->h) + 1; - - while (j < result->h) { - /* find center of pixel for this scanline */ - float scan_y_top = y + 0.0f; - float scan_y_bottom = y + 1.0f; - stbtt__active_edge **step = &active; - - STBTT_memset(scanline , 0, result->w*sizeof(scanline[0])); - STBTT_memset(scanline2, 0, (result->w+1)*sizeof(scanline[0])); - - /* update all active edges; */ - /* remove all active edges that terminate before the top of this scanline */ - while (*step) { - stbtt__active_edge * z = *step; - if (z->ey <= scan_y_top) { - *step = z->next; /* delete from list */ - STBTT_assert(z->direction); - z->direction = 0; - stbtt__hheap_free(&hh, z); - } else { - step = &((*step)->next); /* advance through list */ - } - } - - /* insert all edges that start before the bottom of this scanline */ - while (e->y0 <= scan_y_bottom) { - if (e->y0 != e->y1) { - stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata); - if (z != NULL) { - if (j == 0 && off_y != 0) { - if (z->ey < scan_y_top) { - /* this can happen due to subpixel positioning and some kind of fp rounding error i think */ - z->ey = scan_y_top; - } - } - STBTT_assert(z->ey >= scan_y_top); /* if we get really unlucky a tiny bit of an edge can be out of bounds */ - /* insert at front */ - z->next = active; - active = z; - } - } - ++e; - } - - /* now process all active edges */ - if (active) - stbtt__fill_active_edges_new(scanline, scanline2+1, result->w, active, scan_y_top); - - { - float sum = 0; - for (i=0; i < result->w; ++i) { - float k; - int m; - sum += scanline2[i]; - k = scanline[i] + sum; - k = (float) STBTT_fabs(k)*255 + 0.5f; - m = (int) k; - if (m > 255) m = 255; - result->pixels[j*result->stride + i] = (unsigned char) m; - } - } - /* advance all the edges */ - step = &active; - while (*step) { - stbtt__active_edge *z = *step; - z->fx += z->fdx; /* advance to position for current scanline */ - step = &((*step)->next); /* advance through list */ - } - - ++y; - ++j; - } - - stbtt__hheap_cleanup(&hh, userdata); - - if (scanline != scanline_data) - STBTT_free(scanline, userdata); -} -#else -#error "Unrecognized value of STBTT_RASTERIZER_VERSION" -#endif - -#define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0) - -static void stbtt__sort_edges_ins_sort(stbtt__edge *p, int n) -{ - int i,j; - for (i=1; i < n; ++i) { - stbtt__edge t = p[i], *a = &t; - j = i; - while (j > 0) { - stbtt__edge *b = &p[j-1]; - int c = STBTT__COMPARE(a,b); - if (!c) break; - p[j] = p[j-1]; - --j; - } - if (i != j) - p[j] = t; - } -} - -static void stbtt__sort_edges_quicksort(stbtt__edge *p, int n) -{ - /* threshold for transitioning to insertion sort */ - while (n > 12) { - stbtt__edge t; - int c01,c12,c,m,i,j; - - /* compute median of three */ - m = n >> 1; - c01 = STBTT__COMPARE(&p[0],&p[m]); - c12 = STBTT__COMPARE(&p[m],&p[n-1]); - /* if 0 >= mid >= end, or 0 < mid < end, then use mid */ - if (c01 != c12) { - /* otherwise, we'll need to swap something else to middle */ - int z; - c = STBTT__COMPARE(&p[0],&p[n-1]); - /* 0>mid && midn => n; 0 0 */ - /* 0n: 0>n => 0; 0 n */ - z = (c == c12) ? 0 : n-1; - t = p[z]; - p[z] = p[m]; - p[m] = t; - } - /* now p[m] is the median-of-three */ - /* swap it to the beginning so it won't move around */ - t = p[0]; - p[0] = p[m]; - p[m] = t; - - /* partition loop */ - i=1; - j=n-1; - for(;;) { - /* handling of equality is crucial here */ - /* for sentinels & efficiency with duplicates */ - for (;;++i) { - if (!STBTT__COMPARE(&p[i], &p[0])) break; - } - for (;;--j) { - if (!STBTT__COMPARE(&p[0], &p[j])) break; - } - /* make sure we haven't crossed */ - if (i >= j) break; - t = p[i]; - p[i] = p[j]; - p[j] = t; - - ++i; - --j; - } - /* recurse on smaller side, iterate on larger */ - if (j < (n-i)) { - stbtt__sort_edges_quicksort(p,j); - p = p+i; - n = n-i; - } else { - stbtt__sort_edges_quicksort(p+i, n-i); - n = j; - } - } -} - -static void stbtt__sort_edges(stbtt__edge *p, int n) -{ - stbtt__sort_edges_quicksort(p, n); - stbtt__sort_edges_ins_sort(p, n); -} - -typedef struct -{ - float x,y; -} stbtt__point; - -static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, void *userdata) -{ - float y_scale_inv = invert ? -scale_y : scale_y; - stbtt__edge *e; - int n,i,j,k,m; -#if STBTT_RASTERIZER_VERSION == 1 - int vsubsample = result->h < 8 ? 15 : 5; -#elif STBTT_RASTERIZER_VERSION == 2 - int vsubsample = 1; -#else - #error "Unrecognized value of STBTT_RASTERIZER_VERSION" -#endif - /* vsubsample should divide 255 evenly; otherwise we won't reach full opacity */ - - /* now we have to blow out the windings into explicit edge lists */ - n = 0; - for (i=0; i < windings; ++i) - n += wcount[i]; - - e = (stbtt__edge *) STBTT_malloc(sizeof(*e) * (n+1), userdata); /* add an extra one as a sentinel */ - if (e == 0) return; - n = 0; - - m=0; - for (i=0; i < windings; ++i) { - stbtt__point *p = pts + m; - m += wcount[i]; - j = wcount[i]-1; - for (k=0; k < wcount[i]; j=k++) { - int a=k,b=j; - /* skip the edge if horizontal */ - if (p[j].y == p[k].y) - continue; - /* add edge from j to k to the list */ - e[n].invert = 0; - if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) { - e[n].invert = 1; - a=j,b=k; - } - e[n].x0 = p[a].x * scale_x + shift_x; - e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample; - e[n].x1 = p[b].x * scale_x + shift_x; - e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample; - ++n; - } - } - - /* now sort the edges by their highest point (should snap to integer, and then by x) */ - /* STBTT_sort(e, n, sizeof(e[0]), stbtt__edge_compare); */ - stbtt__sort_edges(e, n); - - /* now, traverse the scanlines and find the intersections on each scanline, use xor winding rule */ - stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata); - - STBTT_free(e, userdata); -} - -static void stbtt__add_point(stbtt__point *points, int n, float x, float y) -{ - if (!points) return; /* during first pass, it's unallocated */ - points[n].x = x; - points[n].y = y; -} - -/* tessellate until threshold p is happy... @TODO warped to compensate for non-linear stretching */ -static int stbtt__tesselate_curve(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float objspace_flatness_squared, int n) -{ - /* midpoint */ - float mx = (x0 + 2*x1 + x2)/4; - float my = (y0 + 2*y1 + y2)/4; - /* versus directly drawn line */ - float dx = (x0+x2)/2 - mx; - float dy = (y0+y2)/2 - my; - if (n > 16) /* 65536 segments on one curve better be enough! */ - return 1; - if (dx*dx+dy*dy > objspace_flatness_squared) { /* half-pixel error allowed... need to be smaller if AA */ - stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1); - stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1); - } else { - stbtt__add_point(points, *num_points,x2,y2); - *num_points = *num_points+1; - } - return 1; -} - -static void stbtt__tesselate_cubic(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, float objspace_flatness_squared, int n) -{ - /* @TODO this "flatness" calculation is just made-up nonsense that seems to work well enough */ - float dx0 = x1-x0; - float dy0 = y1-y0; - float dx1 = x2-x1; - float dy1 = y2-y1; - float dx2 = x3-x2; - float dy2 = y3-y2; - float dx = x3-x0; - float dy = y3-y0; - float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2)); - float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy); - float flatness_squared = longlen*longlen-shortlen*shortlen; - - if (n > 16) /* 65536 segments on one curve better be enough! */ - return; - - if (flatness_squared > objspace_flatness_squared) { - float x01 = (x0+x1)/2; - float y01 = (y0+y1)/2; - float x12 = (x1+x2)/2; - float y12 = (y1+y2)/2; - float x23 = (x2+x3)/2; - float y23 = (y2+y3)/2; - - float xa = (x01+x12)/2; - float ya = (y01+y12)/2; - float xb = (x12+x23)/2; - float yb = (y12+y23)/2; - - float mx = (xa+xb)/2; - float my = (ya+yb)/2; - - stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1); - stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1); - } else { - stbtt__add_point(points, *num_points,x3,y3); - *num_points = *num_points+1; - } -} - -/* returns number of contours */ -static stbtt__point *stbtt_FlattenCurves(stbtt_vertex *vertices, int num_verts, float objspace_flatness, int **contour_lengths, int *num_contours, void *userdata) -{ - stbtt__point *points=0; - int num_points=0; - - float objspace_flatness_squared = objspace_flatness * objspace_flatness; - int i,n=0,start=0, pass; - - /* count how many "moves" there are to get the contour count */ - for (i=0; i < num_verts; ++i) - if (vertices[i].type == STBTT_vmove) - ++n; - - *num_contours = n; - if (n == 0) return 0; - - *contour_lengths = (int *) STBTT_malloc(sizeof(**contour_lengths) * n, userdata); - - if (*contour_lengths == 0) { - *num_contours = 0; - return 0; - } - - /* make two passes through the points so we don't need to realloc */ - for (pass=0; pass < 2; ++pass) { - float x=0,y=0; - if (pass == 1) { - points = (stbtt__point *) STBTT_malloc(num_points * sizeof(points[0]), userdata); - if (points == NULL) goto error; - } - num_points = 0; - n= -1; - for (i=0; i < num_verts; ++i) { - switch (vertices[i].type) { - case STBTT_vmove: - /* start the next contour */ - if (n >= 0) - (*contour_lengths)[n] = num_points - start; - ++n; - start = num_points; - - x = vertices[i].x, y = vertices[i].y; - stbtt__add_point(points, num_points++, x,y); - break; - case STBTT_vline: - x = vertices[i].x, y = vertices[i].y; - stbtt__add_point(points, num_points++, x, y); - break; - case STBTT_vcurve: - stbtt__tesselate_curve(points, &num_points, x,y, - vertices[i].cx, vertices[i].cy, - vertices[i].x, vertices[i].y, - objspace_flatness_squared, 0); - x = vertices[i].x, y = vertices[i].y; - break; - case STBTT_vcubic: - stbtt__tesselate_cubic(points, &num_points, x,y, - vertices[i].cx, vertices[i].cy, - vertices[i].cx1, vertices[i].cy1, - vertices[i].x, vertices[i].y, - objspace_flatness_squared, 0); - x = vertices[i].x, y = vertices[i].y; - break; - } - } - (*contour_lengths)[n] = num_points - start; - } - - return points; -error: - STBTT_free(points, userdata); - STBTT_free(*contour_lengths, userdata); - *contour_lengths = 0; - *num_contours = 0; - return NULL; -} - -STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata) -{ - float scale = scale_x > scale_y ? scale_y : scale_x; - int winding_count = 0; - int *winding_lengths = NULL; - stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata); - if (windings) { - stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata); - STBTT_free(winding_lengths, userdata); - STBTT_free(windings, userdata); - } -} - -STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata) -{ - STBTT_free(bitmap, userdata); -} - -STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff) -{ - int ix0,iy0,ix1,iy1; - stbtt__bitmap gbm; - stbtt_vertex *vertices; - int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); - - if (scale_x == 0) scale_x = scale_y; - if (scale_y == 0) { - if (scale_x == 0) { - STBTT_free(vertices, info->userdata); - return NULL; - } - scale_y = scale_x; - } - - stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,&ix1,&iy1); - - /* now we get the size */ - gbm.w = (ix1 - ix0); - gbm.h = (iy1 - iy0); - gbm.pixels = NULL; /* in case we error */ - - if (width ) *width = gbm.w; - if (height) *height = gbm.h; - if (xoff ) *xoff = ix0; - if (yoff ) *yoff = iy0; - - if (gbm.w && gbm.h) { - gbm.pixels = (unsigned char *) STBTT_malloc(gbm.w * gbm.h, info->userdata); - if (gbm.pixels) { - gbm.stride = gbm.w; - - stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->userdata); - } - } - STBTT_free(vertices, info->userdata); - return gbm.pixels; -} - -STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff) -{ - return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y, 0.0f, 0.0f, glyph, width, height, xoff, yoff); -} - -STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph) -{ - int ix0,iy0; - stbtt_vertex *vertices; - int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); - stbtt__bitmap gbm; - - stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,0,0); - gbm.pixels = output; - gbm.w = out_w; - gbm.h = out_h; - gbm.stride = out_stride; - - if (gbm.w && gbm.h) - stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->userdata); - - STBTT_free(vertices, info->userdata); -} - -STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph) -{ - stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, glyph); -} - -STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff) -{ - return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y, stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff); -} - -STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint) -{ - stbtt_MakeGlyphBitmapSubpixelPrefilter(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, oversample_x, oversample_y, sub_x, sub_y, stbtt_FindGlyphIndex(info,codepoint)); -} - -STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint) -{ - stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, stbtt_FindGlyphIndex(info,codepoint)); -} - -STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff) -{ - return stbtt_GetCodepointBitmapSubpixel(info, scale_x, scale_y, 0.0f,0.0f, codepoint, width,height,xoff,yoff); -} - -STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint) -{ - stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint); -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* bitmap baking */ -/* */ -/* This is SUPER-CRAPPY packing to keep source code small */ - -static int stbtt_BakeFontBitmap_internal(unsigned char *data, int offset, /* font location (use offset=0 for plain .ttf) */ - float pixel_height, /* height of font in pixels */ - unsigned char *pixels, int pw, int ph, /* bitmap to be filled in */ - int first_char, int num_chars, /* characters to bake */ - stbtt_bakedchar *chardata) -{ - float scale; - int x,y,bottom_y, i; - stbtt_fontinfo f; - f.userdata = NULL; - if (!stbtt_InitFont(&f, data, offset)) - return -1; - STBTT_memset(pixels, 0, pw*ph); /* background of 0 around pixels */ - x=y=1; - bottom_y = 1; - - scale = stbtt_ScaleForPixelHeight(&f, pixel_height); - - for (i=0; i < num_chars; ++i) { - int advance, lsb, x0,y0,x1,y1,gw,gh; - int g = stbtt_FindGlyphIndex(&f, first_char + i); - stbtt_GetGlyphHMetrics(&f, g, &advance, &lsb); - stbtt_GetGlyphBitmapBox(&f, g, scale,scale, &x0,&y0,&x1,&y1); - gw = x1-x0; - gh = y1-y0; - if (x + gw + 1 >= pw) - y = bottom_y, x = 1; /* advance to next row */ - if (y + gh + 1 >= ph) /* check if it fits vertically AFTER potentially moving to next row */ - return -i; - STBTT_assert(x+gw < pw); - STBTT_assert(y+gh < ph); - stbtt_MakeGlyphBitmap(&f, pixels+x+y*pw, gw,gh,pw, scale,scale, g); - chardata[i].x0 = (stbtt_int16) x; - chardata[i].y0 = (stbtt_int16) y; - chardata[i].x1 = (stbtt_int16) (x + gw); - chardata[i].y1 = (stbtt_int16) (y + gh); - chardata[i].xadvance = scale * advance; - chardata[i].xoff = (float) x0; - chardata[i].yoff = (float) y0; - x = x + gw + 1; - if (y+gh+1 > bottom_y) - bottom_y = y+gh+1; - } - return bottom_y; -} - -STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int opengl_fillrule) -{ - float d3d_bias = opengl_fillrule ? 0 : -0.5f; - float ipw = 1.0f / pw, iph = 1.0f / ph; - const stbtt_bakedchar *b = chardata + char_index; - int round_x = STBTT_ifloor((*xpos + b->xoff) + 0.5f); - int round_y = STBTT_ifloor((*ypos + b->yoff) + 0.5f); - - q->x0 = round_x + d3d_bias; - q->y0 = round_y + d3d_bias; - q->x1 = round_x + b->x1 - b->x0 + d3d_bias; - q->y1 = round_y + b->y1 - b->y0 + d3d_bias; - - q->s0 = b->x0 * ipw; - q->t0 = b->y0 * iph; - q->s1 = b->x1 * ipw; - q->t1 = b->y1 * iph; - - *xpos += b->xadvance; -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* rectangle packing replacement routines if you don't have stb_rect_pack.h */ -/* */ - -#ifndef STB_RECT_PACK_VERSION - -typedef int stbrp_coord; - -/* ////////////////////////////////////////////////////////////////////////////////// */ -/* // */ -/* // */ -/* COMPILER WARNING ?!?!? // */ -/* // */ -/* // */ -/* if you get a compile warning due to these symbols being defined more than // */ -/* once, move #include "stb_rect_pack.h" before #include "stb_truetype.h" // */ -/* // */ -/* ////////////////////////////////////////////////////////////////////////////////// */ - -typedef struct -{ - int width,height; - int x,y,bottom_y; -} stbrp_context; - -typedef struct -{ - unsigned char x; -} stbrp_node; - -struct stbrp_rect -{ - stbrp_coord x,y; - int id,w,h,was_packed; -}; - -static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes) -{ - con->width = pw; - con->height = ph; - con->x = 0; - con->y = 0; - con->bottom_y = 0; - STBTT__NOTUSED(nodes); - STBTT__NOTUSED(num_nodes); -} - -static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects) -{ - int i; - for (i=0; i < num_rects; ++i) { - if (con->x + rects[i].w > con->width) { - con->x = 0; - con->y = con->bottom_y; - } - if (con->y + rects[i].h > con->height) - break; - rects[i].x = con->x; - rects[i].y = con->y; - rects[i].was_packed = 1; - con->x += rects[i].w; - if (con->y + rects[i].h > con->bottom_y) - con->bottom_y = con->y + rects[i].h; - } - for ( ; i < num_rects; ++i) - rects[i].was_packed = 0; -} -#endif - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* bitmap baking */ -/* */ -/* This is SUPER-AWESOME (tm Ryan Gordon) packing using stb_rect_pack.h. If */ -/* stb_rect_pack.h isn't available, it uses the BakeFontBitmap strategy. */ - -STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int stride_in_bytes, int padding, void *alloc_context) -{ - stbrp_context *context = (stbrp_context *) STBTT_malloc(sizeof(*context) ,alloc_context); - int num_nodes = pw - padding; - stbrp_node *nodes = (stbrp_node *) STBTT_malloc(sizeof(*nodes ) * num_nodes,alloc_context); - - if (context == NULL || nodes == NULL) { - if (context != NULL) STBTT_free(context, alloc_context); - if (nodes != NULL) STBTT_free(nodes , alloc_context); - return 0; - } - - spc->user_allocator_context = alloc_context; - spc->width = pw; - spc->height = ph; - spc->pixels = pixels; - spc->pack_info = context; - spc->nodes = nodes; - spc->padding = padding; - spc->stride_in_bytes = stride_in_bytes != 0 ? stride_in_bytes : pw; - spc->h_oversample = 1; - spc->v_oversample = 1; - spc->skip_missing = 0; - - stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes); - - if (pixels) - STBTT_memset(pixels, 0, pw*ph); /* background of 0 around pixels */ - - return 1; -} - -STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc) -{ - STBTT_free(spc->nodes , spc->user_allocator_context); - STBTT_free(spc->pack_info, spc->user_allocator_context); -} - -STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample) -{ - STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE); - STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE); - if (h_oversample <= STBTT_MAX_OVERSAMPLE) - spc->h_oversample = h_oversample; - if (v_oversample <= STBTT_MAX_OVERSAMPLE) - spc->v_oversample = v_oversample; -} - -STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip) -{ - spc->skip_missing = skip; -} - -#define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1) - -static void stbtt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) -{ - unsigned char buffer[STBTT_MAX_OVERSAMPLE]; - int safe_w = w - kernel_width; - int j; - STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); /* suppress bogus warning from VS2013 -analyze */ - for (j=0; j < h; ++j) { - int i; - unsigned int total; - STBTT_memset(buffer, 0, kernel_width); - - total = 0; - - /* make kernel_width a constant in common cases so compiler can optimize out the divide */ - switch (kernel_width) { - case 2: - for (i=0; i <= safe_w; ++i) { - total += pixels[i] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; - pixels[i] = (unsigned char) (total / 2); - } - break; - case 3: - for (i=0; i <= safe_w; ++i) { - total += pixels[i] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; - pixels[i] = (unsigned char) (total / 3); - } - break; - case 4: - for (i=0; i <= safe_w; ++i) { - total += pixels[i] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; - pixels[i] = (unsigned char) (total / 4); - } - break; - case 5: - for (i=0; i <= safe_w; ++i) { - total += pixels[i] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; - pixels[i] = (unsigned char) (total / 5); - } - break; - default: - for (i=0; i <= safe_w; ++i) { - total += pixels[i] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; - pixels[i] = (unsigned char) (total / kernel_width); - } - break; - } - - for (; i < w; ++i) { - STBTT_assert(pixels[i] == 0); - total -= buffer[i & STBTT__OVER_MASK]; - pixels[i] = (unsigned char) (total / kernel_width); - } - - pixels += stride_in_bytes; - } -} - -static void stbtt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) -{ - unsigned char buffer[STBTT_MAX_OVERSAMPLE]; - int safe_h = h - kernel_width; - int j; - STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); /* suppress bogus warning from VS2013 -analyze */ - for (j=0; j < w; ++j) { - int i; - unsigned int total; - STBTT_memset(buffer, 0, kernel_width); - - total = 0; - - /* make kernel_width a constant in common cases so compiler can optimize out the divide */ - switch (kernel_width) { - case 2: - for (i=0; i <= safe_h; ++i) { - total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; - pixels[i*stride_in_bytes] = (unsigned char) (total / 2); - } - break; - case 3: - for (i=0; i <= safe_h; ++i) { - total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; - pixels[i*stride_in_bytes] = (unsigned char) (total / 3); - } - break; - case 4: - for (i=0; i <= safe_h; ++i) { - total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; - pixels[i*stride_in_bytes] = (unsigned char) (total / 4); - } - break; - case 5: - for (i=0; i <= safe_h; ++i) { - total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; - pixels[i*stride_in_bytes] = (unsigned char) (total / 5); - } - break; - default: - for (i=0; i <= safe_h; ++i) { - total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; - buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; - pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); - } - break; - } - - for (; i < h; ++i) { - STBTT_assert(pixels[i*stride_in_bytes] == 0); - total -= buffer[i & STBTT__OVER_MASK]; - pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); - } - - pixels += 1; - } -} - -static float stbtt__oversample_shift(int oversample) -{ - if (!oversample) - return 0.0f; - - /* The prefilter is a box filter of width "oversample", */ - /* which shifts phase by (oversample - 1)/2 pixels in */ - /* oversampled space. We want to shift in the opposite */ - /* direction to counter this. */ - return (float)-(oversample - 1) / (2.0f * (float)oversample); -} - -/* rects array must be big enough to accommodate all characters in the given ranges */ -STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) -{ - int i,j,k; - int missing_glyph_added = 0; - - k=0; - for (i=0; i < num_ranges; ++i) { - float fh = ranges[i].font_size; - float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); - ranges[i].h_oversample = (unsigned char) spc->h_oversample; - ranges[i].v_oversample = (unsigned char) spc->v_oversample; - for (j=0; j < ranges[i].num_chars; ++j) { - int x0,y0,x1,y1; - int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; - int glyph = stbtt_FindGlyphIndex(info, codepoint); - if (glyph == 0 && (spc->skip_missing || missing_glyph_added)) { - rects[k].w = rects[k].h = 0; - } else { - stbtt_GetGlyphBitmapBoxSubpixel(info,glyph, - scale * spc->h_oversample, - scale * spc->v_oversample, - 0,0, - &x0,&y0,&x1,&y1); - rects[k].w = (stbrp_coord) (x1-x0 + spc->padding + spc->h_oversample-1); - rects[k].h = (stbrp_coord) (y1-y0 + spc->padding + spc->v_oversample-1); - if (glyph == 0) - missing_glyph_added = 1; - } - ++k; - } - } - - return k; -} - -STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int prefilter_x, int prefilter_y, float *sub_x, float *sub_y, int glyph) -{ - stbtt_MakeGlyphBitmapSubpixel(info, - output, - out_w - (prefilter_x - 1), - out_h - (prefilter_y - 1), - out_stride, - scale_x, - scale_y, - shift_x, - shift_y, - glyph); - - if (prefilter_x > 1) - stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x); - - if (prefilter_y > 1) - stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y); - - *sub_x = stbtt__oversample_shift(prefilter_x); - *sub_y = stbtt__oversample_shift(prefilter_y); -} - -/* rects array must be big enough to accommodate all characters in the given ranges */ -STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) -{ - int i,j,k, missing_glyph = -1, return_value = 1; - - /* save current values */ - int old_h_over = spc->h_oversample; - int old_v_over = spc->v_oversample; - - k = 0; - for (i=0; i < num_ranges; ++i) { - float fh = ranges[i].font_size; - float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); - float recip_h,recip_v,sub_x,sub_y; - spc->h_oversample = ranges[i].h_oversample; - spc->v_oversample = ranges[i].v_oversample; - recip_h = 1.0f / spc->h_oversample; - recip_v = 1.0f / spc->v_oversample; - sub_x = stbtt__oversample_shift(spc->h_oversample); - sub_y = stbtt__oversample_shift(spc->v_oversample); - for (j=0; j < ranges[i].num_chars; ++j) { - stbrp_rect *r = &rects[k]; - if (r->was_packed && r->w != 0 && r->h != 0) { - stbtt_packedchar *bc = &ranges[i].chardata_for_range[j]; - int advance, lsb, x0,y0,x1,y1; - int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; - int glyph = stbtt_FindGlyphIndex(info, codepoint); - stbrp_coord pad = (stbrp_coord) spc->padding; - - /* pad on left and top */ - r->x += pad; - r->y += pad; - r->w -= pad; - r->h -= pad; - stbtt_GetGlyphHMetrics(info, glyph, &advance, &lsb); - stbtt_GetGlyphBitmapBox(info, glyph, - scale * spc->h_oversample, - scale * spc->v_oversample, - &x0,&y0,&x1,&y1); - stbtt_MakeGlyphBitmapSubpixel(info, - spc->pixels + r->x + r->y*spc->stride_in_bytes, - r->w - spc->h_oversample+1, - r->h - spc->v_oversample+1, - spc->stride_in_bytes, - scale * spc->h_oversample, - scale * spc->v_oversample, - 0,0, - glyph); - - if (spc->h_oversample > 1) - stbtt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, - r->w, r->h, spc->stride_in_bytes, - spc->h_oversample); - - if (spc->v_oversample > 1) - stbtt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, - r->w, r->h, spc->stride_in_bytes, - spc->v_oversample); - - bc->x0 = (stbtt_int16) r->x; - bc->y0 = (stbtt_int16) r->y; - bc->x1 = (stbtt_int16) (r->x + r->w); - bc->y1 = (stbtt_int16) (r->y + r->h); - bc->xadvance = scale * advance; - bc->xoff = (float) x0 * recip_h + sub_x; - bc->yoff = (float) y0 * recip_v + sub_y; - bc->xoff2 = (x0 + r->w) * recip_h + sub_x; - bc->yoff2 = (y0 + r->h) * recip_v + sub_y; - - if (glyph == 0) - missing_glyph = j; - } else if (spc->skip_missing) { - return_value = 0; - } else if (r->was_packed && r->w == 0 && r->h == 0 && missing_glyph >= 0) { - ranges[i].chardata_for_range[j] = ranges[i].chardata_for_range[missing_glyph]; - } else { - return_value = 0; /* if any fail, report failure */ - } - - ++k; - } - } - - /* restore original values */ - spc->h_oversample = old_h_over; - spc->v_oversample = old_v_over; - - return return_value; -} - -STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects) -{ - stbrp_pack_rects((stbrp_context *) spc->pack_info, rects, num_rects); -} - -STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges) -{ - stbtt_fontinfo info; - int i,j,n, return_value = 1; - /* stbrp_context *context = (stbrp_context *) spc->pack_info; */ - stbrp_rect *rects; - - /* flag all characters as NOT packed */ - for (i=0; i < num_ranges; ++i) - for (j=0; j < ranges[i].num_chars; ++j) - ranges[i].chardata_for_range[j].x0 = - ranges[i].chardata_for_range[j].y0 = - ranges[i].chardata_for_range[j].x1 = - ranges[i].chardata_for_range[j].y1 = 0; - - n = 0; - for (i=0; i < num_ranges; ++i) - n += ranges[i].num_chars; - - rects = (stbrp_rect *) STBTT_malloc(sizeof(*rects) * n, spc->user_allocator_context); - if (rects == NULL) - return 0; - - info.userdata = spc->user_allocator_context; - stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata,font_index)); - - n = stbtt_PackFontRangesGatherRects(spc, &info, ranges, num_ranges, rects); - - stbtt_PackFontRangesPackRects(spc, rects, n); - - return_value = stbtt_PackFontRangesRenderIntoRects(spc, &info, ranges, num_ranges, rects); - - STBTT_free(rects, spc->user_allocator_context); - return return_value; -} - -STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, - int first_unicode_codepoint_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range) -{ - stbtt_pack_range range; - range.first_unicode_codepoint_in_range = first_unicode_codepoint_in_range; - range.array_of_unicode_codepoints = NULL; - range.num_chars = num_chars_in_range; - range.chardata_for_range = chardata_for_range; - range.font_size = font_size; - return stbtt_PackFontRanges(spc, fontdata, font_index, &range, 1); -} - -STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap) -{ - int i_ascent, i_descent, i_lineGap; - float scale; - stbtt_fontinfo info; - stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata, index)); - scale = size > 0 ? stbtt_ScaleForPixelHeight(&info, size) : stbtt_ScaleForMappingEmToPixels(&info, -size); - stbtt_GetFontVMetrics(&info, &i_ascent, &i_descent, &i_lineGap); - *ascent = (float) i_ascent * scale; - *descent = (float) i_descent * scale; - *lineGap = (float) i_lineGap * scale; -} - -STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int align_to_integer) -{ - float ipw = 1.0f / pw, iph = 1.0f / ph; - const stbtt_packedchar *b = chardata + char_index; - - if (align_to_integer) { - float x = (float) STBTT_ifloor((*xpos + b->xoff) + 0.5f); - float y = (float) STBTT_ifloor((*ypos + b->yoff) + 0.5f); - q->x0 = x; - q->y0 = y; - q->x1 = x + b->xoff2 - b->xoff; - q->y1 = y + b->yoff2 - b->yoff; - } else { - q->x0 = *xpos + b->xoff; - q->y0 = *ypos + b->yoff; - q->x1 = *xpos + b->xoff2; - q->y1 = *ypos + b->yoff2; - } - - q->s0 = b->x0 * ipw; - q->t0 = b->y0 * iph; - q->s1 = b->x1 * ipw; - q->t1 = b->y1 * iph; - - *xpos += b->xadvance; -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* sdf computation */ -/* */ - -#define STBTT_min(a,b) ((a) < (b) ? (a) : (b)) -#define STBTT_max(a,b) ((a) < (b) ? (b) : (a)) - -static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2]) -{ - float q0perp = q0[1]*ray[0] - q0[0]*ray[1]; - float q1perp = q1[1]*ray[0] - q1[0]*ray[1]; - float q2perp = q2[1]*ray[0] - q2[0]*ray[1]; - float roperp = orig[1]*ray[0] - orig[0]*ray[1]; - - float a = q0perp - 2*q1perp + q2perp; - float b = q1perp - q0perp; - float c = q0perp - roperp; - - float s0 = 0., s1 = 0.; - int num_s = 0; - - if (a != 0.0) { - float discr = b*b - a*c; - if (discr > 0.0) { - float rcpna = -1 / a; - float d = (float) STBTT_sqrt(discr); - s0 = (b+d) * rcpna; - s1 = (b-d) * rcpna; - if (s0 >= 0.0 && s0 <= 1.0) - num_s = 1; - if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) { - if (num_s == 0) s0 = s1; - ++num_s; - } - } - } else { - /* 2*b*s + c = 0 */ - /* s = -c / (2*b) */ - s0 = c / (-2 * b); - if (s0 >= 0.0 && s0 <= 1.0) - num_s = 1; - } - - if (num_s == 0) - return 0; - else { - float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]); - float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2; - - float q0d = q0[0]*rayn_x + q0[1]*rayn_y; - float q1d = q1[0]*rayn_x + q1[1]*rayn_y; - float q2d = q2[0]*rayn_x + q2[1]*rayn_y; - float rod = orig[0]*rayn_x + orig[1]*rayn_y; - - float q10d = q1d - q0d; - float q20d = q2d - q0d; - float q0rd = q0d - rod; - - hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d; - hits[0][1] = a*s0+b; - - if (num_s > 1) { - hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d; - hits[1][1] = a*s1+b; - return 2; - } else { - return 1; - } - } -} - -static int equal(float *a, float *b) -{ - return (a[0] == b[0] && a[1] == b[1]); -} - -static int stbtt__compute_crossings_x(float x, float y, int nverts, stbtt_vertex *verts) -{ - int i; - float orig[2], ray[2] = { 1, 0 }; - float y_frac; - int winding = 0; - - /* make sure y never passes through a vertex of the shape */ - y_frac = (float) STBTT_fmod(y, 1.0f); - if (y_frac < 0.01f) - y += 0.01f; - else if (y_frac > 0.99f) - y -= 0.01f; - - orig[0] = x; - orig[1] = y; - - /* test a ray from (-infinity,y) to (x,y) */ - for (i=0; i < nverts; ++i) { - if (verts[i].type == STBTT_vline) { - int x0 = (int) verts[i-1].x, y0 = (int) verts[i-1].y; - int x1 = (int) verts[i ].x, y1 = (int) verts[i ].y; - if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { - float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; - if (x_inter < x) - winding += (y0 < y1) ? 1 : -1; - } - } - if (verts[i].type == STBTT_vcurve) { - int x0 = (int) verts[i-1].x , y0 = (int) verts[i-1].y ; - int x1 = (int) verts[i ].cx, y1 = (int) verts[i ].cy; - int x2 = (int) verts[i ].x , y2 = (int) verts[i ].y ; - int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2)); - int by = STBTT_max(y0,STBTT_max(y1,y2)); - if (y > ay && y < by && x > ax) { - float q0[2],q1[2],q2[2]; - float hits[2][2]; - q0[0] = (float)x0; - q0[1] = (float)y0; - q1[0] = (float)x1; - q1[1] = (float)y1; - q2[0] = (float)x2; - q2[1] = (float)y2; - if (equal(q0,q1) || equal(q1,q2)) { - x0 = (int)verts[i-1].x; - y0 = (int)verts[i-1].y; - x1 = (int)verts[i ].x; - y1 = (int)verts[i ].y; - if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { - float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; - if (x_inter < x) - winding += (y0 < y1) ? 1 : -1; - } - } else { - int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits); - if (num_hits >= 1) - if (hits[0][0] < 0) - winding += (hits[0][1] < 0 ? -1 : 1); - if (num_hits >= 2) - if (hits[1][0] < 0) - winding += (hits[1][1] < 0 ? -1 : 1); - } - } - } - } - return winding; -} - -static float stbtt__cuberoot( float x ) -{ - if (x<0) - return -(float) STBTT_pow(-x,1.0f/3.0f); - else - return (float) STBTT_pow( x,1.0f/3.0f); -} - -/* x^3 + a*x^2 + b*x + c = 0 */ -static int stbtt__solve_cubic(float a, float b, float c, float* r) -{ - float s = -a / 3; - float p = b - a*a / 3; - float q = a * (2*a*a - 9*b) / 27 + c; - float p3 = p*p*p; - float d = q*q + 4*p3 / 27; - if (d >= 0) { - float z = (float) STBTT_sqrt(d); - float u = (-q + z) / 2; - float v = (-q - z) / 2; - u = stbtt__cuberoot(u); - v = stbtt__cuberoot(v); - r[0] = s + u + v; - return 1; - } else { - float u = (float) STBTT_sqrt(-p/3); - float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3; /* p3 must be negative, since d is negative */ - float m = (float) STBTT_cos(v); - float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f; - r[0] = s + u * 2 * m; - r[1] = s - u * (m + n); - r[2] = s - u * (m - n); - - /* STBTT_assert( STBTT_fabs(((r[0]+a)*r[0]+b)*r[0]+c) < 0.05f); // these asserts may not be safe at all scales, though they're in bezier t parameter units so maybe? */ - /* STBTT_assert( STBTT_fabs(((r[1]+a)*r[1]+b)*r[1]+c) < 0.05f); */ - /* STBTT_assert( STBTT_fabs(((r[2]+a)*r[2]+b)*r[2]+c) < 0.05f); */ - return 3; - } -} - -STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) -{ - float scale_x = scale, scale_y = scale; - int ix0,iy0,ix1,iy1; - int w,h; - unsigned char *data; - - if (scale == 0) return NULL; - - stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale, scale, 0.0f,0.0f, &ix0,&iy0,&ix1,&iy1); - - /* if empty, return NULL */ - if (ix0 == ix1 || iy0 == iy1) - return NULL; - - ix0 -= padding; - iy0 -= padding; - ix1 += padding; - iy1 += padding; - - w = (ix1 - ix0); - h = (iy1 - iy0); - - if (width ) *width = w; - if (height) *height = h; - if (xoff ) *xoff = ix0; - if (yoff ) *yoff = iy0; - - /* invert for y-downwards bitmaps */ - scale_y = -scale_y; - - { - int x,y,i,j; - float *precompute; - stbtt_vertex *verts; - int num_verts = stbtt_GetGlyphShape(info, glyph, &verts); - data = (unsigned char *) STBTT_malloc(w * h, info->userdata); - precompute = (float *) STBTT_malloc(num_verts * sizeof(float), info->userdata); - - for (i=0,j=num_verts-1; i < num_verts; j=i++) { - if (verts[i].type == STBTT_vline) { - float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; - float x1 = verts[j].x*scale_x, y1 = verts[j].y*scale_y; - float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0)); - precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist; - } else if (verts[i].type == STBTT_vcurve) { - float x2 = verts[j].x *scale_x, y2 = verts[j].y *scale_y; - float x1 = verts[i].cx*scale_x, y1 = verts[i].cy*scale_y; - float x0 = verts[i].x *scale_x, y0 = verts[i].y *scale_y; - float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; - float len2 = bx*bx + by*by; - if (len2 != 0.0f) - precompute[i] = 1.0f / (bx*bx + by*by); - else - precompute[i] = 0.0f; - } else - precompute[i] = 0.0f; - } - - for (y=iy0; y < iy1; ++y) { - for (x=ix0; x < ix1; ++x) { - float val; - float min_dist = 999999.0f; - float sx = (float) x + 0.5f; - float sy = (float) y + 0.5f; - float x_gspace = (sx / scale_x); - float y_gspace = (sy / scale_y); - - int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts); /* @OPTIMIZE: this could just be a rasterization, but needs to be line vs. non-tesselated curves so a new path */ - - for (i=0; i < num_verts; ++i) { - float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; - - if (verts[i].type == STBTT_vline && precompute[i] != 0.0f) { - float x1 = verts[i-1].x*scale_x, y1 = verts[i-1].y*scale_y; - - float dist,dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); - if (dist2 < min_dist*min_dist) - min_dist = (float) STBTT_sqrt(dist2); - - /* coarse culling against bbox */ - /* if (sx > STBTT_min(x0,x1)-min_dist && sx < STBTT_max(x0,x1)+min_dist && */ - /* sy > STBTT_min(y0,y1)-min_dist && sy < STBTT_max(y0,y1)+min_dist) */ - dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i]; - STBTT_assert(i != 0); - if (dist < min_dist) { - /* check position along line */ - /* x' = x0 + t*(x1-x0), y' = y0 + t*(y1-y0) */ - /* minimize (x'-sx)*(x'-sx)+(y'-sy)*(y'-sy) */ - float dx = x1-x0, dy = y1-y0; - float px = x0-sx, py = y0-sy; - /* minimize (px+t*dx)^2 + (py+t*dy)^2 = px*px + 2*px*dx*t + t^2*dx*dx + py*py + 2*py*dy*t + t^2*dy*dy */ - /* derivative: 2*px*dx + 2*py*dy + (2*dx*dx+2*dy*dy)*t, set to 0 and solve */ - float t = -(px*dx + py*dy) / (dx*dx + dy*dy); - if (t >= 0.0f && t <= 1.0f) - min_dist = dist; - } - } else if (verts[i].type == STBTT_vcurve) { - float x2 = verts[i-1].x *scale_x, y2 = verts[i-1].y *scale_y; - float x1 = verts[i ].cx*scale_x, y1 = verts[i ].cy*scale_y; - float box_x0 = STBTT_min(STBTT_min(x0,x1),x2); - float box_y0 = STBTT_min(STBTT_min(y0,y1),y2); - float box_x1 = STBTT_max(STBTT_max(x0,x1),x2); - float box_y1 = STBTT_max(STBTT_max(y0,y1),y2); - /* coarse culling against bbox to avoid computing cubic unnecessarily */ - if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) { - int num=0; - float ax = x1-x0, ay = y1-y0; - float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; - float mx = x0 - sx, my = y0 - sy; - float res[3] = {0.f,0.f,0.f}; - float px,py,t,it,dist2; - float a_inv = precompute[i]; - if (a_inv == 0.0) { /* if a_inv is 0, it's 2nd degree so use quadratic formula */ - float a = 3*(ax*bx + ay*by); - float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by); - float c = mx*ax+my*ay; - if (a == 0.0) { /* if a is 0, it's linear */ - if (b != 0.0) { - res[num++] = -c/b; - } - } else { - float discriminant = b*b - 4*a*c; - if (discriminant < 0) - num = 0; - else { - float root = (float) STBTT_sqrt(discriminant); - res[0] = (-b - root)/(2*a); - res[1] = (-b + root)/(2*a); - num = 2; /* don't bother distinguishing 1-solution case, as code below will still work */ - } - } - } else { - float b = 3*(ax*bx + ay*by) * a_inv; /* could precompute this as it doesn't depend on sample point */ - float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv; - float d = (mx*ax+my*ay) * a_inv; - num = stbtt__solve_cubic(b, c, d, res); - } - dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); - if (dist2 < min_dist*min_dist) - min_dist = (float) STBTT_sqrt(dist2); - - if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) { - t = res[0], it = 1.0f - t; - px = it*it*x0 + 2*t*it*x1 + t*t*x2; - py = it*it*y0 + 2*t*it*y1 + t*t*y2; - dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); - if (dist2 < min_dist * min_dist) - min_dist = (float) STBTT_sqrt(dist2); - } - if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) { - t = res[1], it = 1.0f - t; - px = it*it*x0 + 2*t*it*x1 + t*t*x2; - py = it*it*y0 + 2*t*it*y1 + t*t*y2; - dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); - if (dist2 < min_dist * min_dist) - min_dist = (float) STBTT_sqrt(dist2); - } - if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) { - t = res[2], it = 1.0f - t; - px = it*it*x0 + 2*t*it*x1 + t*t*x2; - py = it*it*y0 + 2*t*it*y1 + t*t*y2; - dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); - if (dist2 < min_dist * min_dist) - min_dist = (float) STBTT_sqrt(dist2); - } - } - } - } - if (winding == 0) - min_dist = -min_dist; /* if outside the shape, value is negative */ - val = onedge_value + pixel_dist_scale * min_dist; - if (val < 0) - val = 0; - else if (val > 255) - val = 255; - data[(y-iy0)*w+(x-ix0)] = (unsigned char) val; - } - } - STBTT_free(precompute, info->userdata); - STBTT_free(verts, info->userdata); - } - return data; -} - -STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) -{ - return stbtt_GetGlyphSDF(info, scale, stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff); -} - -STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata) -{ - STBTT_free(bitmap, userdata); -} - -/* //////////////////////////////////////////////////////////////////////////// */ -/* */ -/* font name matching -- recommended not to use this */ -/* */ - -/* check if a utf8 string contains a prefix which is the utf16 string; if so return length of matching utf8 string */ -static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2) -{ - stbtt_int32 i=0; - - /* convert utf16 to utf8 and compare the results while converting */ - while (len2) { - stbtt_uint16 ch = s2[0]*256 + s2[1]; - if (ch < 0x80) { - if (i >= len1) return -1; - if (s1[i++] != ch) return -1; - } else if (ch < 0x800) { - if (i+1 >= len1) return -1; - if (s1[i++] != 0xc0 + (ch >> 6)) return -1; - if (s1[i++] != 0x80 + (ch & 0x3f)) return -1; - } else if (ch >= 0xd800 && ch < 0xdc00) { - stbtt_uint32 c; - stbtt_uint16 ch2 = s2[2]*256 + s2[3]; - if (i+3 >= len1) return -1; - c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000; - if (s1[i++] != 0xf0 + (c >> 18)) return -1; - if (s1[i++] != 0x80 + ((c >> 12) & 0x3f)) return -1; - if (s1[i++] != 0x80 + ((c >> 6) & 0x3f)) return -1; - if (s1[i++] != 0x80 + ((c ) & 0x3f)) return -1; - s2 += 2; /* plus another 2 below */ - len2 -= 2; - } else if (ch >= 0xdc00 && ch < 0xe000) { - return -1; - } else { - if (i+2 >= len1) return -1; - if (s1[i++] != 0xe0 + (ch >> 12)) return -1; - if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f)) return -1; - if (s1[i++] != 0x80 + ((ch ) & 0x3f)) return -1; - } - s2 += 2; - len2 -= 2; - } - return i; -} - -static int stbtt_CompareUTF8toUTF16_bigendian_internal(char *s1, int len1, char *s2, int len2) -{ - return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2); -} - -/* returns results in whatever encoding you request... but note that 2-byte encodings */ -/* will be BIG-ENDIAN... use stbtt_CompareUTF8toUTF16_bigendian() to compare */ -STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID) -{ - stbtt_int32 i,count,stringOffset; - stbtt_uint8 *fc = font->data; - stbtt_uint32 offset = font->fontstart; - stbtt_uint32 nm = stbtt__find_table(fc, offset, "name"); - if (!nm) return NULL; - - count = ttUSHORT(fc+nm+2); - stringOffset = nm + ttUSHORT(fc+nm+4); - for (i=0; i < count; ++i) { - stbtt_uint32 loc = nm + 6 + 12 * i; - if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2) - && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) { - *length = ttUSHORT(fc+loc+8); - return (const char *) (fc+stringOffset+ttUSHORT(fc+loc+10)); - } - } - return NULL; -} - -static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id) -{ - stbtt_int32 i; - stbtt_int32 count = ttUSHORT(fc+nm+2); - stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4); - - for (i=0; i < count; ++i) { - stbtt_uint32 loc = nm + 6 + 12 * i; - stbtt_int32 id = ttUSHORT(fc+loc+6); - if (id == target_id) { - /* find the encoding */ - stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4); - - /* is this a Unicode encoding? */ - if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) { - stbtt_int32 slen = ttUSHORT(fc+loc+8); - stbtt_int32 off = ttUSHORT(fc+loc+10); - - /* check if there's a prefix match */ - stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen); - if (matchlen >= 0) { - /* check for target_id+1 immediately following, with same encoding & language */ - if (i+1 < count && ttUSHORT(fc+loc+12+6) == next_id && ttUSHORT(fc+loc+12) == platform && ttUSHORT(fc+loc+12+2) == encoding && ttUSHORT(fc+loc+12+4) == language) { - slen = ttUSHORT(fc+loc+12+8); - off = ttUSHORT(fc+loc+12+10); - if (slen == 0) { - if (matchlen == nlen) - return 1; - } else if (matchlen < nlen && name[matchlen] == ' ') { - ++matchlen; - if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc+stringOffset+off),slen)) - return 1; - } - } else { - /* if nothing immediately following */ - if (matchlen == nlen) - return 1; - } - } - } - - /* @TODO handle other encodings */ - } - } - return 0; -} - -static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags) -{ - stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((char *) name); - stbtt_uint32 nm,hd; - if (!stbtt__isfont(fc+offset)) return 0; - - /* check italics/bold/underline flags in macStyle... */ - if (flags) { - hd = stbtt__find_table(fc, offset, "head"); - if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7)) return 0; - } - - nm = stbtt__find_table(fc, offset, "name"); - if (!nm) return 0; - - if (flags) { - /* if we checked the macStyle flags, then just check the family and ignore the subfamily */ - if (stbtt__matchpair(fc, nm, name, nlen, 16, -1)) return 1; - if (stbtt__matchpair(fc, nm, name, nlen, 1, -1)) return 1; - if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; - } else { - if (stbtt__matchpair(fc, nm, name, nlen, 16, 17)) return 1; - if (stbtt__matchpair(fc, nm, name, nlen, 1, 2)) return 1; - if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; - } - - return 0; -} - -static int stbtt_FindMatchingFont_internal(unsigned char *font_collection, char *name_utf8, stbtt_int32 flags) -{ - stbtt_int32 i; - for (i=0;;++i) { - stbtt_int32 off = stbtt_GetFontOffsetForIndex(font_collection, i); - if (off < 0) return off; - if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags)) - return off; - } -} - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wcast-qual" -#endif - -STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, - float pixel_height, unsigned char *pixels, int pw, int ph, - int first_char, int num_chars, stbtt_bakedchar *chardata) -{ - return stbtt_BakeFontBitmap_internal((unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata); -} - -STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index) -{ - return stbtt_GetFontOffsetForIndex_internal((unsigned char *) data, index); -} - -STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data) -{ - return stbtt_GetNumberOfFonts_internal((unsigned char *) data); -} - -STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset) -{ - return stbtt_InitFont_internal(info, (unsigned char *) data, offset); -} - -STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags) -{ - return stbtt_FindMatchingFont_internal((unsigned char *) fontdata, (char *) name, flags); -} - -STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2) -{ - return stbtt_CompareUTF8toUTF16_bigendian_internal((char *) s1, len1, (char *) s2, len2); -} - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic pop -#endif - -#endif /* STB_TRUETYPE_IMPLEMENTATION */ - - -/* FULL VERSION HISTORY */ -/* */ -/* 1.25 (2021-07-11) many fixes */ -/* 1.24 (2020-02-05) fix warning */ -/* 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) */ -/* 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined */ -/* 1.21 (2019-02-25) fix warning */ -/* 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() */ -/* 1.19 (2018-02-11) OpenType GPOS kerning (horizontal only), STBTT_fmod */ -/* 1.18 (2018-01-29) add missing function */ -/* 1.17 (2017-07-23) make more arguments const; doc fix */ -/* 1.16 (2017-07-12) SDF support */ -/* 1.15 (2017-03-03) make more arguments const */ -/* 1.14 (2017-01-16) num-fonts-in-TTC function */ -/* 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts */ -/* 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual */ -/* 1.11 (2016-04-02) fix unused-variable warning */ -/* 1.10 (2016-04-02) allow user-defined fabs() replacement */ -/* fix memory leak if fontsize=0.0 */ -/* fix warning from duplicate typedef */ -/* 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use alloc userdata for PackFontRanges */ -/* 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges */ -/* 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; */ -/* allow PackFontRanges to pack and render in separate phases; */ -/* fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); */ -/* fixed an assert() bug in the new rasterizer */ -/* replace assert() with STBTT_assert() in new rasterizer */ -/* 1.06 (2015-07-14) performance improvements (~35% faster on x86 and x64 on test machine) */ -/* also more precise AA rasterizer, except if shapes overlap */ -/* remove need for STBTT_sort */ -/* 1.05 (2015-04-15) fix misplaced definitions for STBTT_STATIC */ -/* 1.04 (2015-04-15) typo in example */ -/* 1.03 (2015-04-12) STBTT_STATIC, fix memory leak in new packing, various fixes */ -/* 1.02 (2014-12-10) fix various warnings & compile issues w/ stb_rect_pack, C++ */ -/* 1.01 (2014-12-08) fix subpixel position when oversampling to exactly match */ -/* non-oversampled; STBTT_POINT_SIZE for packed case only */ -/* 1.00 (2014-12-06) add new PackBegin etc. API, w/ support for oversampling */ -/* 0.99 (2014-09-18) fix multiple bugs with subpixel rendering (ryg) */ -/* 0.9 (2014-08-07) support certain mac/iOS fonts without an MS platformID */ -/* 0.8b (2014-07-07) fix a warning */ -/* 0.8 (2014-05-25) fix a few more warnings */ -/* 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back */ -/* 0.6c (2012-07-24) improve documentation */ -/* 0.6b (2012-07-20) fix a few more warnings */ -/* 0.6 (2012-07-17) fix warnings; added stbtt_ScaleForMappingEmToPixels, */ -/* stbtt_GetFontBoundingBox, stbtt_IsGlyphEmpty */ -/* 0.5 (2011-12-09) bugfixes: */ -/* subpixel glyph renderer computed wrong bounding box */ -/* first vertex of shape can be off-curve (FreeSans) */ -/* 0.4b (2011-12-03) fixed an error in the font baking example */ -/* 0.4 (2011-12-01) kerning, subpixel rendering (tor) */ -/* bugfixes for: */ -/* codepoint-to-glyph conversion using table fmt=12 */ -/* codepoint-to-glyph conversion using table fmt=4 */ -/* stbtt_GetBakedQuad with non-square texture (Zer) */ -/* updated Hello World! sample to use kerning and subpixel */ -/* fixed some warnings */ -/* 0.3 (2009-06-24) cmap fmt=12, compound shapes (MM) */ -/* userdata, malloc-from-userdata, non-zero fill (stb) */ -/* 0.2 (2009-03-11) Fix unsigned/signed char warnings */ -/* 0.1 (2009-03-09) First public release */ -/* */ - -/* ------------------------------------------------------------------------------- -This software is available under 2 licenses -- choose whichever you prefer. ------------------------------------------------------------------------------- -ALTERNATIVE A - MIT License -Copyright (c) 2017 Sean Barrett -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. ------------------------------------------------------------------------------- -ALTERNATIVE B - Public Domain (www.unlicense.org) -This is free and unencumbered software released into the public domain. -Anyone is free to copy, modify, publish, use, compile, sell, or distribute this -software, either in source code form or as a compiled binary, for any purpose, -commercial or non-commercial, and by any means. -In jurisdictions that recognize copyright laws, the author or authors of this -software dedicate any and all copyright interest in the software to the public -domain. We make this dedication for the benefit of the public at large and to -the detriment of our heirs and successors. We intend this dedication to be an -overt act of relinquishment in perpetuity of all present and future rights to -this software under copyright law. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ------------------------------------------------------------------------------- -*/ - - - - -#ifdef NK_INCLUDE_FONT_BAKING -/* ------------------------------------------------------------- - * - * RECT PACK - * - * --------------------------------------------------------------*/ - - - -/* - * ============================================================== - * - * TRUETYPE - * - * =============================================================== - */ -#define STBTT_MAX_OVERSAMPLE 8 - - -/* ------------------------------------------------------------- - * - * FONT BAKING - * - * --------------------------------------------------------------*/ -struct nk_font_bake_data { - struct stbtt_fontinfo info; - struct stbrp_rect *rects; - stbtt_pack_range *ranges; - nk_rune range_count; -}; - -struct nk_font_baker { - struct nk_allocator alloc; - struct stbtt_pack_context spc; - struct nk_font_bake_data *build; - stbtt_packedchar *packed_chars; - struct stbrp_rect *rects; - stbtt_pack_range *ranges; -}; - -NK_GLOBAL const nk_size nk_rect_align = NK_ALIGNOF(struct stbrp_rect); -NK_GLOBAL const nk_size nk_range_align = NK_ALIGNOF(stbtt_pack_range); -NK_GLOBAL const nk_size nk_char_align = NK_ALIGNOF(stbtt_packedchar); -NK_GLOBAL const nk_size nk_build_align = NK_ALIGNOF(struct nk_font_bake_data); -NK_GLOBAL const nk_size nk_baker_align = NK_ALIGNOF(struct nk_font_baker); - -NK_INTERN int -nk_range_count(const nk_rune *range) -{ - const nk_rune *iter = range; - NK_ASSERT(range); - if (!range) return 0; - while (*(iter++) != 0); - return (iter == range) ? 0 : (int)((iter - range)/2); -} -NK_INTERN int -nk_range_glyph_count(const nk_rune *range, int count) -{ - int i = 0; - int total_glyphs = 0; - for (i = 0; i < count; ++i) { - int diff; - nk_rune f = range[(i*2)+0]; - nk_rune t = range[(i*2)+1]; - NK_ASSERT(t >= f); - diff = (int)((t - f) + 1); - total_glyphs += diff; - } - return total_glyphs; -} -NK_API const nk_rune* -nk_font_default_glyph_ranges(void) -{ - NK_STORAGE const nk_rune ranges[] = {0x0020, 0x00FF, 0}; - return ranges; -} -NK_API const nk_rune* -nk_font_chinese_glyph_ranges(void) -{ - NK_STORAGE const nk_rune ranges[] = { - 0x0020, 0x00FF, - 0x3000, 0x30FF, - 0x31F0, 0x31FF, - 0xFF00, 0xFFEF, - 0x4E00, 0x9FAF, - 0 - }; - return ranges; -} -NK_API const nk_rune* -nk_font_cyrillic_glyph_ranges(void) -{ - NK_STORAGE const nk_rune ranges[] = { - 0x0020, 0x00FF, - 0x0400, 0x052F, - 0x2DE0, 0x2DFF, - 0xA640, 0xA69F, - 0 - }; - return ranges; -} -NK_API const nk_rune* -nk_font_korean_glyph_ranges(void) -{ - NK_STORAGE const nk_rune ranges[] = { - 0x0020, 0x00FF, - 0x3131, 0x3163, - 0xAC00, 0xD79D, - 0 - }; - return ranges; -} -NK_INTERN void -nk_font_baker_memory(nk_size *temp, int *glyph_count, - struct nk_font_config *config_list, int count) -{ - int range_count = 0; - int total_range_count = 0; - struct nk_font_config *iter, *i; - - NK_ASSERT(config_list); - NK_ASSERT(glyph_count); - if (!config_list) { - *temp = 0; - *glyph_count = 0; - return; - } - *glyph_count = 0; - for (iter = config_list; iter; iter = iter->next) { - i = iter; - do {if (!i->range) iter->range = nk_font_default_glyph_ranges(); - range_count = nk_range_count(i->range); - total_range_count += range_count; - *glyph_count += nk_range_glyph_count(i->range, range_count); - } while ((i = i->n) != iter); - } - *temp = (nk_size)*glyph_count * sizeof(struct stbrp_rect); - *temp += (nk_size)total_range_count * sizeof(stbtt_pack_range); - *temp += (nk_size)*glyph_count * sizeof(stbtt_packedchar); - *temp += (nk_size)count * sizeof(struct nk_font_bake_data); - *temp += sizeof(struct nk_font_baker); - *temp += nk_rect_align + nk_range_align + nk_char_align; - *temp += nk_build_align + nk_baker_align; -} -NK_INTERN struct nk_font_baker* -nk_font_baker(void *memory, int glyph_count, int count, struct nk_allocator *alloc) -{ - struct nk_font_baker *baker; - if (!memory) return 0; - /* setup baker inside a memory block */ - baker = (struct nk_font_baker*)NK_ALIGN_PTR(memory, nk_baker_align); - baker->build = (struct nk_font_bake_data*)NK_ALIGN_PTR((baker + 1), nk_build_align); - baker->packed_chars = (stbtt_packedchar*)NK_ALIGN_PTR((baker->build + count), nk_char_align); - baker->rects = (struct stbrp_rect*)NK_ALIGN_PTR((baker->packed_chars + glyph_count), nk_rect_align); - baker->ranges = (stbtt_pack_range*)NK_ALIGN_PTR((baker->rects + glyph_count), nk_range_align); - baker->alloc = *alloc; - return baker; -} -NK_INTERN int -nk_font_bake_pack(struct nk_font_baker *baker, - nk_size *image_memory, int *width, int *height, struct nk_recti *custom, - const struct nk_font_config *config_list, int count, - struct nk_allocator *alloc) -{ - NK_STORAGE const nk_size max_height = 1024 * 32; - const struct nk_font_config *config_iter, *it; - int total_glyph_count = 0; - int total_range_count = 0; - int range_count = 0; - int i = 0; - - NK_ASSERT(image_memory); - NK_ASSERT(width); - NK_ASSERT(height); - NK_ASSERT(config_list); - NK_ASSERT(count); - NK_ASSERT(alloc); - - if (!image_memory || !width || !height || !config_list || !count) return nk_false; - for (config_iter = config_list; config_iter; config_iter = config_iter->next) { - it = config_iter; - do {range_count = nk_range_count(it->range); - total_range_count += range_count; - total_glyph_count += nk_range_glyph_count(it->range, range_count); - } while ((it = it->n) != config_iter); - } - /* setup font baker from temporary memory */ - for (config_iter = config_list; config_iter; config_iter = config_iter->next) { - it = config_iter; - do { - struct stbtt_fontinfo *font_info = &baker->build[i++].info; - font_info->userdata = alloc; - - if (!stbtt_InitFont(font_info, (const unsigned char*)it->ttf_blob, stbtt_GetFontOffsetForIndex((const unsigned char*)it->ttf_blob, 0))) - return nk_false; - } while ((it = it->n) != config_iter); - } - *height = 0; - *width = (total_glyph_count > 1000) ? 1024 : 512; - stbtt_PackBegin(&baker->spc, 0, (int)*width, (int)max_height, 0, 1, alloc); - { - int input_i = 0; - int range_n = 0; - int rect_n = 0; - int char_n = 0; - - if (custom) { - /* pack custom user data first so it will be in the upper left corner*/ - struct stbrp_rect custom_space; - nk_zero(&custom_space, sizeof(custom_space)); - custom_space.w = (stbrp_coord)(custom->w); - custom_space.h = (stbrp_coord)(custom->h); - - stbtt_PackSetOversampling(&baker->spc, 1, 1); - stbrp_pack_rects((struct stbrp_context*)baker->spc.pack_info, &custom_space, 1); - *height = NK_MAX(*height, (int)(custom_space.y + custom_space.h)); - - custom->x = (short)custom_space.x; - custom->y = (short)custom_space.y; - custom->w = (short)custom_space.w; - custom->h = (short)custom_space.h; - } - - /* first font pass: pack all glyphs */ - for (input_i = 0, config_iter = config_list; input_i < count && config_iter; - config_iter = config_iter->next) { - it = config_iter; - do {int n = 0; - int glyph_count; - const nk_rune *in_range; - const struct nk_font_config *cfg = it; - struct nk_font_bake_data *tmp = &baker->build[input_i++]; - - /* count glyphs + ranges in current font */ - glyph_count = 0; range_count = 0; - for (in_range = cfg->range; in_range[0] && in_range[1]; in_range += 2) { - glyph_count += (int)(in_range[1] - in_range[0]) + 1; - range_count++; - } - - /* setup ranges */ - tmp->ranges = baker->ranges + range_n; - tmp->range_count = (nk_rune)range_count; - range_n += range_count; - for (i = 0; i < range_count; ++i) { - in_range = &cfg->range[i * 2]; - tmp->ranges[i].font_size = cfg->size; - tmp->ranges[i].first_unicode_codepoint_in_range = (int)in_range[0]; - tmp->ranges[i].num_chars = (int)(in_range[1]- in_range[0]) + 1; - tmp->ranges[i].chardata_for_range = baker->packed_chars + char_n; - char_n += tmp->ranges[i].num_chars; - } - - /* pack */ - tmp->rects = baker->rects + rect_n; - rect_n += glyph_count; - stbtt_PackSetOversampling(&baker->spc, cfg->oversample_h, cfg->oversample_v); - n = stbtt_PackFontRangesGatherRects(&baker->spc, &tmp->info, - tmp->ranges, (int)tmp->range_count, tmp->rects); - stbrp_pack_rects((struct stbrp_context*)baker->spc.pack_info, tmp->rects, (int)n); - - /* texture height */ - for (i = 0; i < n; ++i) { - if (tmp->rects[i].was_packed) - *height = NK_MAX(*height, tmp->rects[i].y + tmp->rects[i].h); - } - } while ((it = it->n) != config_iter); - } - NK_ASSERT(rect_n == total_glyph_count); - NK_ASSERT(char_n == total_glyph_count); - NK_ASSERT(range_n == total_range_count); - } - *height = (int)nk_round_up_pow2((nk_uint)*height); - *image_memory = (nk_size)(*width) * (nk_size)(*height); - return nk_true; -} -NK_INTERN void -nk_font_bake(struct nk_font_baker *baker, void *image_memory, int width, int height, - struct nk_font_glyph *glyphs, int glyphs_count, - const struct nk_font_config *config_list, int font_count) -{ - int input_i = 0; - nk_rune glyph_n = 0; - const struct nk_font_config *config_iter; - const struct nk_font_config *it; - - NK_ASSERT(image_memory); - NK_ASSERT(width); - NK_ASSERT(height); - NK_ASSERT(config_list); - NK_ASSERT(baker); - NK_ASSERT(font_count); - NK_ASSERT(glyphs_count); - if (!image_memory || !width || !height || !config_list || - !font_count || !glyphs || !glyphs_count) - return; - - /* second font pass: render glyphs */ - nk_zero(image_memory, (nk_size)((nk_size)width * (nk_size)height)); - baker->spc.pixels = (unsigned char*)image_memory; - baker->spc.height = (int)height; - for (input_i = 0, config_iter = config_list; input_i < font_count && config_iter; - config_iter = config_iter->next) { - it = config_iter; - do {const struct nk_font_config *cfg = it; - struct nk_font_bake_data *tmp = &baker->build[input_i++]; - stbtt_PackSetOversampling(&baker->spc, cfg->oversample_h, cfg->oversample_v); - stbtt_PackFontRangesRenderIntoRects(&baker->spc, &tmp->info, tmp->ranges, (int)tmp->range_count, tmp->rects); - } while ((it = it->n) != config_iter); - } stbtt_PackEnd(&baker->spc); - - /* third pass: setup font and glyphs */ - for (input_i = 0, config_iter = config_list; input_i < font_count && config_iter; - config_iter = config_iter->next) { - it = config_iter; - do {nk_size i = 0; - int char_idx = 0; - nk_rune glyph_count = 0; - const struct nk_font_config *cfg = it; - struct nk_font_bake_data *tmp = &baker->build[input_i++]; - struct nk_baked_font *dst_font = cfg->font; - - float font_scale = stbtt_ScaleForPixelHeight(&tmp->info, cfg->size); - int unscaled_ascent, unscaled_descent, unscaled_line_gap; - stbtt_GetFontVMetrics(&tmp->info, &unscaled_ascent, &unscaled_descent, - &unscaled_line_gap); - - /* fill baked font */ - if (!cfg->merge_mode) { - dst_font->ranges = cfg->range; - dst_font->height = cfg->size; - dst_font->ascent = ((float)unscaled_ascent * font_scale); - dst_font->descent = ((float)unscaled_descent * font_scale); - dst_font->glyph_offset = glyph_n; - /* - Need to zero this, or it will carry over from a previous - bake, and cause a segfault when accessing glyphs[]. - */ - dst_font->glyph_count = 0; - } - - /* fill own baked font glyph array */ - for (i = 0; i < tmp->range_count; ++i) { - stbtt_pack_range *range = &tmp->ranges[i]; - for (char_idx = 0; char_idx < range->num_chars; char_idx++) - { - nk_rune codepoint = 0; - float dummy_x = 0, dummy_y = 0; - stbtt_aligned_quad q; - struct nk_font_glyph *glyph; - - /* query glyph bounds from stb_truetype */ - const stbtt_packedchar *pc = &range->chardata_for_range[char_idx]; - codepoint = (nk_rune)(range->first_unicode_codepoint_in_range + char_idx); - stbtt_GetPackedQuad(range->chardata_for_range, (int)width, - (int)height, char_idx, &dummy_x, &dummy_y, &q, 0); - - /* fill own glyph type with data */ - glyph = &glyphs[dst_font->glyph_offset + dst_font->glyph_count + (unsigned int)glyph_count]; - glyph->codepoint = codepoint; - glyph->x0 = q.x0; glyph->y0 = q.y0; - glyph->x1 = q.x1; glyph->y1 = q.y1; - glyph->y0 += (dst_font->ascent + 0.5f); - glyph->y1 += (dst_font->ascent + 0.5f); - glyph->w = glyph->x1 - glyph->x0 + 0.5f; - glyph->h = glyph->y1 - glyph->y0; - - if (cfg->coord_type == NK_COORD_PIXEL) { - glyph->u0 = q.s0 * (float)width; - glyph->v0 = q.t0 * (float)height; - glyph->u1 = q.s1 * (float)width; - glyph->v1 = q.t1 * (float)height; - } else { - glyph->u0 = q.s0; - glyph->v0 = q.t0; - glyph->u1 = q.s1; - glyph->v1 = q.t1; - } - glyph->xadvance = (pc->xadvance + cfg->spacing.x); - if (cfg->pixel_snap) - glyph->xadvance = (float)(int)(glyph->xadvance + 0.5f); - glyph_count++; - } - } - dst_font->glyph_count += glyph_count; - glyph_n += glyph_count; - } while ((it = it->n) != config_iter); - } -} -NK_INTERN void -nk_font_bake_custom_data(void *img_memory, int img_width, int img_height, - struct nk_recti img_dst, const char *texture_data_mask, int tex_width, - int tex_height, char white, char black) -{ - nk_byte *pixels; - int y = 0; - int x = 0; - int n = 0; - - NK_ASSERT(img_memory); - NK_ASSERT(img_width); - NK_ASSERT(img_height); - NK_ASSERT(texture_data_mask); - NK_UNUSED(tex_height); - if (!img_memory || !img_width || !img_height || !texture_data_mask) - return; - - pixels = (nk_byte*)img_memory; - for (y = 0, n = 0; y < tex_height; ++y) { - for (x = 0; x < tex_width; ++x, ++n) { - const int off0 = ((img_dst.x + x) + (img_dst.y + y) * img_width); - const int off1 = off0 + 1 + tex_width; - pixels[off0] = (texture_data_mask[n] == white) ? 0xFF : 0x00; - pixels[off1] = (texture_data_mask[n] == black) ? 0xFF : 0x00; - } - } -} -NK_INTERN void -nk_font_bake_convert(void *out_memory, int img_width, int img_height, - const void *in_memory) -{ - int n = 0; - nk_rune *dst; - const nk_byte *src; - - NK_ASSERT(out_memory); - NK_ASSERT(in_memory); - NK_ASSERT(img_width); - NK_ASSERT(img_height); - if (!out_memory || !in_memory || !img_height || !img_width) return; - - dst = (nk_rune*)out_memory; - src = (const nk_byte*)in_memory; - for (n = (int)(img_width * img_height); n > 0; n--) - *dst++ = ((nk_rune)(*src++) << 24) | 0x00FFFFFF; -} - -/* ------------------------------------------------------------- - * - * FONT - * - * --------------------------------------------------------------*/ -NK_INTERN float -nk_font_text_width(nk_handle handle, float height, const char *text, int len) -{ - nk_rune unicode; - int text_len = 0; - float text_width = 0; - int glyph_len = 0; - float scale = 0; - - struct nk_font *font = (struct nk_font*)handle.ptr; - NK_ASSERT(font); - NK_ASSERT(font->glyphs); - if (!font || !text || !len) - return 0; - - scale = height/font->info.height; - glyph_len = text_len = nk_utf_decode(text, &unicode, (int)len); - if (!glyph_len) return 0; - while (text_len <= (int)len && glyph_len) { - const struct nk_font_glyph *g; - if (unicode == NK_UTF_INVALID) break; - - /* query currently drawn glyph information */ - g = nk_font_find_glyph(font, unicode); - text_width += g->xadvance * scale; - - /* offset next glyph */ - glyph_len = nk_utf_decode(text + text_len, &unicode, (int)len - text_len); - text_len += glyph_len; - } - return text_width; -} -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT -NK_INTERN void -nk_font_query_font_glyph(nk_handle handle, float height, - struct nk_user_font_glyph *glyph, nk_rune codepoint, nk_rune next_codepoint) -{ - float scale; - const struct nk_font_glyph *g; - struct nk_font *font; - - NK_ASSERT(glyph); - NK_UNUSED(next_codepoint); - - font = (struct nk_font*)handle.ptr; - NK_ASSERT(font); - NK_ASSERT(font->glyphs); - if (!font || !glyph) - return; - - scale = height/font->info.height; - g = nk_font_find_glyph(font, codepoint); - glyph->width = (g->x1 - g->x0) * scale; - glyph->height = (g->y1 - g->y0) * scale; - glyph->offset = nk_vec2(g->x0 * scale, g->y0 * scale); - glyph->xadvance = (g->xadvance * scale); - glyph->uv[0] = nk_vec2(g->u0, g->v0); - glyph->uv[1] = nk_vec2(g->u1, g->v1); -} -#endif -NK_API const struct nk_font_glyph* -nk_font_find_glyph(struct nk_font *font, nk_rune unicode) -{ - int i = 0; - int count; - int total_glyphs = 0; - const struct nk_font_glyph *glyph = 0; - const struct nk_font_config *iter = 0; - - NK_ASSERT(font); - NK_ASSERT(font->glyphs); - NK_ASSERT(font->info.ranges); - if (!font || !font->glyphs) return 0; - - glyph = font->fallback; - iter = font->config; - do {count = nk_range_count(iter->range); - for (i = 0; i < count; ++i) { - nk_rune f = iter->range[(i*2)+0]; - nk_rune t = iter->range[(i*2)+1]; - int diff = (int)((t - f) + 1); - if (unicode >= f && unicode <= t) - return &font->glyphs[((nk_rune)total_glyphs + (unicode - f))]; - total_glyphs += diff; - } - } while ((iter = iter->n) != font->config); - return glyph; -} -NK_INTERN void -nk_font_init(struct nk_font *font, float pixel_height, - nk_rune fallback_codepoint, struct nk_font_glyph *glyphs, - const struct nk_baked_font *baked_font, nk_handle atlas) -{ - struct nk_baked_font baked; - NK_ASSERT(font); - NK_ASSERT(glyphs); - NK_ASSERT(baked_font); - if (!font || !glyphs || !baked_font) - return; - - baked = *baked_font; - font->fallback = 0; - font->info = baked; - font->scale = (float)pixel_height / (float)font->info.height; - font->glyphs = &glyphs[baked_font->glyph_offset]; - font->texture = atlas; - font->fallback_codepoint = fallback_codepoint; - font->fallback = nk_font_find_glyph(font, fallback_codepoint); - - font->handle.height = font->info.height * font->scale; - font->handle.width = nk_font_text_width; - font->handle.userdata.ptr = font; -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT - font->handle.query = nk_font_query_font_glyph; - font->handle.texture = font->texture; -#endif -} - -/* --------------------------------------------------------------------------- - * - * DEFAULT FONT - * - * ProggyClean.ttf - * Copyright (c) 2004, 2005 Tristan Grimmer - * MIT license (see License.txt in http://www.upperbounds.net/download/ProggyClean.ttf.zip) - * Download and more information at http://upperbounds.net - *-----------------------------------------------------------------------------*/ -#ifdef __clang__ -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Woverlength-strings" -#elif defined(__GNUC__) || defined(__GNUG__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Woverlength-strings" -#endif - -#ifdef NK_INCLUDE_DEFAULT_FONT - -NK_GLOBAL const char nk_proggy_clean_ttf_compressed_data_base85[11980+1] = - "7])#######hV0qs'/###[),##/l:$#Q6>##5[n42>c-TH`->>#/e>11NNV=Bv(*:.F?uu#(gRU.o0XGH`$vhLG1hxt9?W`#,5LsCp#-i>.r$<$6pD>Lb';9Crc6tgXmKVeU2cD4Eo3R/" - "2*>]b(MC;$jPfY.;h^`IWM9Qo#t'X#(v#Y9w0#1D$CIf;W'#pWUPXOuxXuU(H9M(1=Ke$$'5F%)]0^#0X@U.a$FBjVQTSDgEKnIS7EM9>ZY9w0#L;>>#Mx&4Mvt//L[MkA#W@lK.N'[0#7RL_&#w+F%HtG9M#XL`N&.,GM4Pg;--VsM.M0rJfLH2eTM`*oJMHRC`N" - "kfimM2J,W-jXS:)r0wK#@Fge$U>`w'N7G#$#fB#$E^$#:9:hk+eOe--6x)F7*E%?76%^GMHePW-Z5l'&GiF#$956:rS?dA#fiK:)Yr+`�j@'DbG&#^$PG.Ll+DNa&VZ>1i%h1S9u5o@YaaW$e+bROPOpxTO7Stwi1::iB1q)C_=dV26J;2,]7op$]uQr@_V7$q^%lQwtuHY]=DX,n3L#0PHDO4f9>dC@O>HBuKPpP*E,N+b3L#lpR/MrTEH.IAQk.a>D[.e;mc." - "x]Ip.PH^'/aqUO/$1WxLoW0[iLAw=4h(9.`G" - "CRUxHPeR`5Mjol(dUWxZa(>STrPkrJiWx`5U7F#.g*jrohGg`cg:lSTvEY/EV_7H4Q9[Z%cnv;JQYZ5q.l7Zeas:HOIZOB?Ggv:[7MI2k).'2($5FNP&EQ(,)" - "U]W]+fh18.vsai00);D3@4ku5P?DP8aJt+;qUM]=+b'8@;mViBKx0DE[-auGl8:PJ&Dj+M6OC]O^((##]`0i)drT;-7X`=-H3[igUnPG-NZlo.#k@h#=Ork$m>a>$-?Tm$UV(?#P6YY#" - "'/###xe7q.73rI3*pP/$1>s9)W,JrM7SN]'/4C#v$U`0#V.[0>xQsH$fEmPMgY2u7Kh(G%siIfLSoS+MK2eTM$=5,M8p`A.;_R%#u[K#$x4AG8.kK/HSB==-'Ie/QTtG?-.*^N-4B/ZM" - "_3YlQC7(p7q)&](`6_c)$/*JL(L-^(]$wIM`dPtOdGA,U3:w2M-0+WomX2u7lqM2iEumMTcsF?-aT=Z-97UEnXglEn1K-bnEO`gu" - "Ft(c%=;Am_Qs@jLooI&NX;]0#j4#F14;gl8-GQpgwhrq8'=l_f-b49'UOqkLu7-##oDY2L(te+Mch&gLYtJ,MEtJfLh'x'M=$CS-ZZ%P]8bZ>#S?YY#%Q&q'3^Fw&?D)UDNrocM3A76/" - "/oL?#h7gl85[qW/NDOk%16ij;+:1a'iNIdb-ou8.P*w,v5#EI$TWS>Pot-R*H'-SEpA:g)f+O$%%`kA#G=8RMmG1&O`>to8bC]T&$,n.LoO>29sp3dt-52U%VM#q7'DHpg+#Z9%H[Ket`e;)f#Km8&+DC$I46>#Kr]]u-[=99tts1.qb#q72g1WJO81q+eN'03'eM>&1XxY-caEnO" - "j%2n8)),?ILR5^.Ibn<-X-Mq7[a82Lq:F&#ce+S9wsCK*x`569E8ew'He]h:sI[2LM$[guka3ZRd6:t%IG:;$%YiJ:Nq=?eAw;/:nnDq0(CYcMpG)qLN4$##&J-XTt,%OVU4)S1+R-#dg0/Nn?Ku1^0f$B*P:Rowwm-`0PKjYDDM'3]d39VZHEl4,.j']Pk-M.h^&:0FACm$maq-&sgw0t7/6(^xtk%" - "LuH88Fj-ekm>GA#_>568x6(OFRl-IZp`&b,_P'$MhLbxfc$mj`,O;&%W2m`Zh:/)Uetw:aJ%]K9h:TcF]u_-Sj9,VK3M.*'&0D[Ca]J9gp8,kAW]" - "%(?A%R$f<->Zts'^kn=-^@c4%-pY6qI%J%1IGxfLU9CP8cbPlXv);C=b),<2mOvP8up,UVf3839acAWAW-W?#ao/^#%KYo8fRULNd2.>%m]UK:n%r$'sw]J;5pAoO_#2mO3n,'=H5(et" - "Hg*`+RLgv>=4U8guD$I%D:W>-r5V*%j*W:Kvej.Lp$'?;++O'>()jLR-^u68PHm8ZFWe+ej8h:9r6L*0//c&iH&R8pRbA#Kjm%upV1g:" - "a_#Ur7FuA#(tRh#.Y5K+@?3<-8m0$PEn;J:rh6?I6uG<-`wMU'ircp0LaE_OtlMb&1#6T.#FDKu#1Lw%u%+GM+X'e?YLfjM[VO0MbuFp7;>Q&#WIo)0@F%q7c#4XAXN-U&VBpqB>0ie&jhZ[?iLR@@_AvA-iQC(=ksRZRVp7`.=+NpBC%rh&3]R:8XDmE5^V8O(x<-+k?'(^](H.aREZSi,#1:[IXaZFOm<-ui#qUq2$##Ri;u75OK#(RtaW-K-F`S+cF]uN`-KMQ%rP/Xri.LRcB##=YL3BgM/3M" - "D?@f&1'BW-)Ju#bmmWCMkk&#TR`C,5d>g)F;t,4:@_l8G/5h4vUd%&%950:VXD'QdWoY-F$BtUwmfe$YqL'8(PWX(" - "P?^@Po3$##`MSs?DWBZ/S>+4%>fX,VWv/w'KD`LP5IbH;rTV>n3cEK8U#bX]l-/V+^lj3;vlMb&[5YQ8#pekX9JP3XUC72L,,?+Ni&co7ApnO*5NK,((W-i:$,kp'UDAO(G0Sq7MVjJs" - "bIu)'Z,*[>br5fX^:FPAWr-m2KgLQ_nN6'8uTGT5g)uLv:873UpTLgH+#FgpH'_o1780Ph8KmxQJ8#H72L4@768@Tm&Q" - "h4CB/5OvmA&,Q&QbUoi$a_%3M01H)4x7I^&KQVgtFnV+;[Pc>[m4k//,]1?#`VY[Jr*3&&slRfLiVZJ:]?=K3Sw=[$=uRB?3xk48@aege0jT6'N#(q%.O=?2S]u*(m<-" - "V8J'(1)G][68hW$5'q[GC&5j`TE?m'esFGNRM)j,ffZ?-qx8;->g4t*:CIP/[Qap7/9'#(1sao7w-.qNUdkJ)tCF&#B^;xGvn2r9FEPFFFcL@.iFNkTve$m%#QvQS8U@)2Z+3K:AKM5i" - "sZ88+dKQ)W6>J%CL`.d*(B`-n8D9oK-XV1q['-5k'cAZ69e;D_?$ZPP&s^+7])$*$#@QYi9,5P r+$%CE=68>K8r0=dSC%%(@p7" - ".m7jilQ02'0-VWAgTlGW'b)Tq7VT9q^*^$$.:&N@@" - "$&)WHtPm*5_rO0&e%K&#-30j(E4#'Zb.o/(Tpm$>K'f@[PvFl,hfINTNU6u'0pao7%XUp9]5.>%h`8_=VYbxuel.NTSsJfLacFu3B'lQSu/m6-Oqem8T+oE--$0a/k]uj9EwsG>%veR*" - "hv^BFpQj:K'#SJ,sB-'#](j.Lg92rTw-*n%@/;39rrJF,l#qV%OrtBeC6/,;qB3ebNW[?,Hqj2L.1NP&GjUR=1D8QaS3Up&@*9wP?+lo7b?@%'k4`p0Z$22%K3+iCZj?XJN4Nm&+YF]u" - "@-W$U%VEQ/,,>>#)D#%8cY#YZ?=,`Wdxu/ae&#" - "w6)R89tI#6@s'(6Bf7a&?S=^ZI_kS&ai`&=tE72L_D,;^R)7[$so8lKN%5/$(vdfq7+ebA#" - "u1p]ovUKW&Y%q]'>$1@-[xfn$7ZTp7mM,G,Ko7a&Gu%G[RMxJs[0MM%wci.LFDK)(%:_i2B5CsR8&9Z&#=mPEnm0f`<&c)QL5uJ#%u%lJj+D-r;BoFDoS97h5g)E#o:&S4weDF,9^Hoe`h*L+_a*NrLW-1pG_&2UdB8" - "6e%B/:=>)N4xeW.*wft-;$'58-ESqr#U`'6AQ]m&6/`Z>#S?YY#Vc;r7U2&326d=w&H####?TZ`*4?&.MK?LP8Vxg>$[QXc%QJv92.(Db*B)gb*BM9dM*hJMAo*c&#" - "b0v=Pjer]$gG&JXDf->'StvU7505l9$AFvgYRI^&<^b68?j#q9QX4SM'RO#&sL1IM.rJfLUAj221]d##DW=m83u5;'bYx,*Sl0hL(W;;$doB&O/TQ:(Z^xBdLjLV#*8U_72Lh+2Q8Cj0i:6hp&$C/:p(HK>T8Y[gHQ4`4)'$Ab(Nof%V'8hL&#SfD07&6D@M.*J:;$-rv29'M]8qMv-tLp,'886iaC=Hb*YJoKJ,(j%K=H`K.v9HggqBIiZu'QvBT.#=)0ukruV&.)3=(^1`o*Pj4<-#MJ+gLq9-##@HuZPN0]u:h7.T..G:;$/Usj(T7`Q8tT72LnYl<-qx8;-HV7Q-&Xdx%1a,hC=0u+HlsV>nuIQL-5" - "_>@kXQtMacfD.m-VAb8;IReM3$wf0''hra*so568'Ip&vRs849'MRYSp%:t:h5qSgwpEr$B>Q,;s(C#$)`svQuF$##-D,##,g68@2[T;.XSdN9Qe)rpt._K-#5wF)sP'##p#C0c%-Gb%" - "hd+<-j'Ai*x&&HMkT]C'OSl##5RG[JXaHN;d'uA#x._U;.`PU@(Z3dt4r152@:v,'R.Sj'w#0<-;kPI)FfJ&#AYJ&#//)>-k=m=*XnK$>=)72L]0I%>.G690a:$##<,);?;72#?x9+d;" - "^V'9;jY@;)br#q^YQpx:X#Te$Z^'=-=bGhLf:D6&bNwZ9-ZD#n^9HhLMr5G;']d&6'wYmTFmLq9wI>P(9mI[>kC-ekLC/R&CH+s'B;K-M6$EB%is00:" - "+A4[7xks.LrNk0&E)wILYF@2L'0Nb$+pv<(2.768/FrY&h$^3i&@+G%JT'<-,v`3;_)I9M^AE]CN?Cl2AZg+%4iTpT3$U4O]GKx'm9)b@p7YsvK3w^YR-" - "CdQ*:Ir<($u&)#(&?L9Rg3H)4fiEp^iI9O8KnTj,]H?D*r7'M;PwZ9K0E^k&-cpI;.p/6_vwoFMV<->#%Xi.LxVnrU(4&8/P+:hLSKj$#U%]49t'I:rgMi'FL@a:0Y-uA[39',(vbma*" - "hU%<-SRF`Tt:542R_VV$p@[p8DV[A,?1839FWdFTi1O*H&#(AL8[_P%.M>v^-))qOT*F5Cq0`Ye%+$B6i:7@0IXSsDiWP,##P`%/L-" - "S(qw%sf/@%#B6;/U7K]uZbi^Oc^2n%t<)'mEVE''n`WnJra$^TKvX5B>;_aSEK',(hwa0:i4G?.Bci.(X[?b*($,=-n<.Q%`(X=?+@Am*Js0&=3bh8K]mL69=Lb,OcZV/);TTm8VI;?%OtJ<(b4mq7M6:u?KRdFl*:xP?Yb.5)%w_I?7uk5JC+FS(m#i'k.'a0i)9<7b'fs'59hq$*5Uhv##pi^8+hIEBF`nvo`;'l0.^S1<-wUK2/Coh58KKhLj" - "M=SO*rfO`+qC`W-On.=AJ56>>i2@2LH6A:&5q`?9I3@@'04&p2/LVa*T-4<-i3;M9UvZd+N7>b*eIwg:CC)c<>nO&#$(>.Z-I&J(Q0Hd5Q%7Co-b`-cP)hI;*_F]u`Rb[.j8_Q/<&>uu+VsH$sM9TA%?)(vmJ80),P7E>)tjD%2L=-t#fK[%`v=Q8WlA2);Sa" - ">gXm8YB`1d@K#n]76-a$U,mF%Ul:#/'xoFM9QX-$.QN'>" - "[%$Z$uF6pA6Ki2O5:8w*vP1<-1`[G,)-m#>0`P&#eb#.3i)rtB61(o'$?X3B2Qft^ae_5tKL9MUe9b*sLEQ95C&`=G?@Mj=wh*'3E>=-<)Gt*Iw)'QG:`@I" - "wOf7&]1i'S01B+Ev/Nac#9S;=;YQpg_6U`*kVY39xK,[/6Aj7:'1Bm-_1EYfa1+o&o4hp7KN_Q(OlIo@S%;jVdn0'1h19w,WQhLI)3S#f$2(eb,jr*b;3Vw]*7NH%$c4Vs,eD9>XW8?N]o+(*pgC%/72LV-uW%iewS8W6m2rtCpo'RS1R84=@paTKt)>=%&1[)*vp'u+x,VrwN;&]kuO9JDbg=pO$J*.jVe;u'm0dr9l,<*wMK*Oe=g8lV_KEBFkO'oU]^=[-792#ok,)" - "i]lR8qQ2oA8wcRCZ^7w/Njh;?.stX?Q1>S1q4Bn$)K1<-rGdO'$Wr.Lc.CG)$/*JL4tNR/,SVO3,aUw'DJN:)Ss;wGn9A32ijw%FL+Z0Fn.U9;reSq)bmI32U==5ALuG&#Vf1398/pVo" - "1*c-(aY168o<`JsSbk-,1N;$>0:OUas(3:8Z972LSfF8eb=c-;>SPw7.6hn3m`9^Xkn(r.qS[0;T%&Qc=+STRxX'q1BNk3&*eu2;&8q$&x>Q#Q7^Tf+6<(d%ZVmj2bDi%.3L2n+4W'$P" - "iDDG)g,r%+?,$@?uou5tSe2aN_AQU*'IAO" - "URQ##V^Fv-XFbGM7Fl(N<3DhLGF%q.1rC$#:T__&Pi68%0xi_&[qFJ(77j_&JWoF.V735&T,[R*:xFR*K5>>#`bW-?4Ne_&6Ne_&6Ne_&n`kr-#GJcM6X;uM6X;uM(.a..^2TkL%oR(#" - ";u.T%fAr%4tJ8&><1=GHZ_+m9/#H1F^R#SC#*N=BA9(D?v[UiFY>>^8p,KKF.W]L29uLkLlu/+4T" - "w$)F./^n3+rlo+DB;5sIYGNk+i1t-69Jg--0pao7Sm#K)pdHW&;LuDNH@H>#/X-TI(;P>#,Gc>#0Su>#4`1?#8lC?#xL$#B.`$#F:r$#JF.%#NR@%#R_R%#Vke%#Zww%#_-4^Rh%Sflr-k'MS.o?.5/sWel/wpEM0%3'/1)K^f1-d>G21&v(35>V`39V7A4=onx4" - "A1OY5EI0;6Ibgr6M$HS7Q<)58C5w,;WoA*#[%T*#`1g*#d=#+#hI5+#lUG+#pbY+#tnl+#x$),#&1;,#*=M,#.I`,#2Ur,#6b.-#;w[H#iQtA#m^0B#qjBB#uvTB##-hB#'9$C#+E6C#" - "/QHC#3^ZC#7jmC#;v)D#?,)4kMYD4lVu`4m`:&5niUA5@(A5BA1]PBB:xlBCC=2CDLXMCEUtiCf&0g2'tN?PGT4CPGT4CPGT4CPGT4CPGT4CPGT4CPGT4CP" - "GT4CPGT4CPGT4CPGT4CPGT4CPGT4CP-qekC`.9kEg^+F$kwViFJTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5o,^<-28ZI'O?;xp" - "O?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xp;7q-#lLYI:xvD=#"; - -#endif /* NK_INCLUDE_DEFAULT_FONT */ - -#define NK_CURSOR_DATA_W 90 -#define NK_CURSOR_DATA_H 27 -NK_GLOBAL const char nk_custom_cursor_data[NK_CURSOR_DATA_W * NK_CURSOR_DATA_H + 1] = -{ - "..- -XXXXXXX- X - X -XXXXXXX - XXXXXXX" - "..- -X.....X- X.X - X.X -X.....X - X.....X" - "--- -XXX.XXX- X...X - X...X -X....X - X....X" - "X - X.X - X.....X - X.....X -X...X - X...X" - "XX - X.X -X.......X- X.......X -X..X.X - X.X..X" - "X.X - X.X -XXXX.XXXX- XXXX.XXXX -X.X X.X - X.X X.X" - "X..X - X.X - X.X - X.X -XX X.X - X.X XX" - "X...X - X.X - X.X - XX X.X XX - X.X - X.X " - "X....X - X.X - X.X - X.X X.X X.X - X.X - X.X " - "X.....X - X.X - X.X - X..X X.X X..X - X.X - X.X " - "X......X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X XX-XX X.X " - "X.......X - X.X - X.X -X.....................X- X.X X.X-X.X X.X " - "X........X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X..X-X..X.X " - "X.........X -XXX.XXX- X.X - X..X X.X X..X - X...X-X...X " - "X..........X-X.....X- X.X - X.X X.X X.X - X....X-X....X " - "X......XXXXX-XXXXXXX- X.X - XX X.X XX - X.....X-X.....X " - "X...X..X --------- X.X - X.X - XXXXXXX-XXXXXXX " - "X..X X..X - -XXXX.XXXX- XXXX.XXXX ------------------------------------" - "X.X X..X - -X.......X- X.......X - XX XX - " - "XX X..X - - X.....X - X.....X - X.X X.X - " - " X..X - X...X - X...X - X..X X..X - " - " XX - X.X - X.X - X...XXXXXXXXXXXXX...X - " - "------------ - X - X -X.....................X- " - " ----------------------------------- X...XXXXXXXXXXXXX...X - " - " - X..X X..X - " - " - X.X X.X - " - " - XX XX - " -}; - -#ifdef __clang__ -#pragma clang diagnostic pop -#elif defined(__GNUC__) || defined(__GNUG__) -#pragma GCC diagnostic pop -#endif - -NK_GLOBAL unsigned char *nk__barrier; -NK_GLOBAL unsigned char *nk__barrier2; -NK_GLOBAL unsigned char *nk__barrier3; -NK_GLOBAL unsigned char *nk__barrier4; -NK_GLOBAL unsigned char *nk__dout; - -NK_INTERN unsigned int -nk_decompress_length(unsigned char *input) -{ - return (unsigned int)((input[8] << 24) + (input[9] << 16) + (input[10] << 8) + input[11]); -} -NK_INTERN void -nk__match(unsigned char *data, unsigned int length) -{ - /* INVERSE of memmove... write each byte before copying the next...*/ - NK_ASSERT (nk__dout + length <= nk__barrier); - if (nk__dout + length > nk__barrier) { nk__dout += length; return; } - if (data < nk__barrier4) { nk__dout = nk__barrier+1; return; } - while (length--) *nk__dout++ = *data++; -} -NK_INTERN void -nk__lit(unsigned char *data, unsigned int length) -{ - NK_ASSERT (nk__dout + length <= nk__barrier); - if (nk__dout + length > nk__barrier) { nk__dout += length; return; } - if (data < nk__barrier2) { nk__dout = nk__barrier+1; return; } - NK_MEMCPY(nk__dout, data, length); - nk__dout += length; -} -NK_INTERN unsigned char* -nk_decompress_token(unsigned char *i) -{ - #define nk__in2(x) ((i[x] << 8) + i[(x)+1]) - #define nk__in3(x) ((i[x] << 16) + nk__in2((x)+1)) - #define nk__in4(x) ((i[x] << 24) + nk__in3((x)+1)) - - if (*i >= 0x20) { /* use fewer if's for cases that expand small */ - if (*i >= 0x80) nk__match(nk__dout-i[1]-1, (unsigned int)i[0] - 0x80 + 1), i += 2; - else if (*i >= 0x40) nk__match(nk__dout-(nk__in2(0) - 0x4000 + 1), (unsigned int)i[2]+1), i += 3; - else /* *i >= 0x20 */ nk__lit(i+1, (unsigned int)i[0] - 0x20 + 1), i += 1 + (i[0] - 0x20 + 1); - } else { /* more ifs for cases that expand large, since overhead is amortized */ - if (*i >= 0x18) nk__match(nk__dout-(unsigned int)(nk__in3(0) - 0x180000 + 1), (unsigned int)i[3]+1), i += 4; - else if (*i >= 0x10) nk__match(nk__dout-(unsigned int)(nk__in3(0) - 0x100000 + 1), (unsigned int)nk__in2(3)+1), i += 5; - else if (*i >= 0x08) nk__lit(i+2, (unsigned int)nk__in2(0) - 0x0800 + 1), i += 2 + (nk__in2(0) - 0x0800 + 1); - else if (*i == 0x07) nk__lit(i+3, (unsigned int)nk__in2(1) + 1), i += 3 + (nk__in2(1) + 1); - else if (*i == 0x06) nk__match(nk__dout-(unsigned int)(nk__in3(1)+1), i[4]+1u), i += 5; - else if (*i == 0x04) nk__match(nk__dout-(unsigned int)(nk__in3(1)+1), (unsigned int)nk__in2(4)+1u), i += 6; - } - return i; -} -NK_INTERN unsigned int -nk_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen) -{ - const unsigned long ADLER_MOD = 65521; - unsigned long s1 = adler32 & 0xffff, s2 = adler32 >> 16; - unsigned long blocklen, i; - - blocklen = buflen % 5552; - while (buflen) { - for (i=0; i + 7 < blocklen; i += 8) { - s1 += buffer[0]; s2 += s1; - s1 += buffer[1]; s2 += s1; - s1 += buffer[2]; s2 += s1; - s1 += buffer[3]; s2 += s1; - s1 += buffer[4]; s2 += s1; - s1 += buffer[5]; s2 += s1; - s1 += buffer[6]; s2 += s1; - s1 += buffer[7]; s2 += s1; - buffer += 8; - } - for (; i < blocklen; ++i) { - s1 += *buffer++; s2 += s1; - } - - s1 %= ADLER_MOD; s2 %= ADLER_MOD; - buflen -= (unsigned int)blocklen; - blocklen = 5552; - } - return (unsigned int)(s2 << 16) + (unsigned int)s1; -} -NK_INTERN unsigned int -nk_decompress(unsigned char *output, unsigned char *i, unsigned int length) -{ - unsigned int olen; - if (nk__in4(0) != 0x57bC0000) return 0; - if (nk__in4(4) != 0) return 0; /* error! stream is > 4GB */ - olen = nk_decompress_length(i); - nk__barrier2 = i; - nk__barrier3 = i+length; - nk__barrier = output + olen; - nk__barrier4 = output; - i += 16; - - nk__dout = output; - for (;;) { - unsigned char *old_i = i; - i = nk_decompress_token(i); - if (i == old_i) { - if (*i == 0x05 && i[1] == 0xfa) { - NK_ASSERT(nk__dout == output + olen); - if (nk__dout != output + olen) return 0; - if (nk_adler32(1, output, olen) != (unsigned int) nk__in4(2)) - return 0; - return olen; - } else { - NK_ASSERT(0); /* NOTREACHED */ - return 0; - } - } - NK_ASSERT(nk__dout <= output + olen); - if (nk__dout > output + olen) - return 0; - } -} -NK_INTERN unsigned int -nk_decode_85_byte(char c) -{ - return (unsigned int)((c >= '\\') ? c-36 : c-35); -} -NK_INTERN void -nk_decode_85(unsigned char* dst, const unsigned char* src) -{ - while (*src) - { - unsigned int tmp = - nk_decode_85_byte((char)src[0]) + - 85 * (nk_decode_85_byte((char)src[1]) + - 85 * (nk_decode_85_byte((char)src[2]) + - 85 * (nk_decode_85_byte((char)src[3]) + - 85 * nk_decode_85_byte((char)src[4])))); - - /* we can't assume little-endianess. */ - dst[0] = (unsigned char)((tmp >> 0) & 0xFF); - dst[1] = (unsigned char)((tmp >> 8) & 0xFF); - dst[2] = (unsigned char)((tmp >> 16) & 0xFF); - dst[3] = (unsigned char)((tmp >> 24) & 0xFF); - - src += 5; - dst += 4; - } -} - -/* ------------------------------------------------------------- - * - * FONT ATLAS - * - * --------------------------------------------------------------*/ -NK_API struct nk_font_config -nk_font_config(float pixel_height) -{ - struct nk_font_config cfg; - nk_zero_struct(cfg); - cfg.ttf_blob = 0; - cfg.ttf_size = 0; - cfg.ttf_data_owned_by_atlas = 0; - cfg.size = pixel_height; - cfg.oversample_h = 3; - cfg.oversample_v = 1; - cfg.pixel_snap = 0; - cfg.coord_type = NK_COORD_UV; - cfg.spacing = nk_vec2(0,0); - cfg.range = nk_font_default_glyph_ranges(); - cfg.merge_mode = 0; - cfg.fallback_glyph = '?'; - cfg.font = 0; - cfg.n = 0; - return cfg; -} -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void -nk_font_atlas_init_default(struct nk_font_atlas *atlas) -{ - NK_ASSERT(atlas); - if (!atlas) return; - nk_zero_struct(*atlas); - atlas->temporary.userdata.ptr = 0; - atlas->temporary.alloc = nk_malloc; - atlas->temporary.free = nk_mfree; - atlas->permanent.userdata.ptr = 0; - atlas->permanent.alloc = nk_malloc; - atlas->permanent.free = nk_mfree; -} -#endif -NK_API void -nk_font_atlas_init(struct nk_font_atlas *atlas, struct nk_allocator *alloc) -{ - NK_ASSERT(atlas); - NK_ASSERT(alloc); - if (!atlas || !alloc) return; - nk_zero_struct(*atlas); - atlas->permanent = *alloc; - atlas->temporary = *alloc; -} -NK_API void -nk_font_atlas_init_custom(struct nk_font_atlas *atlas, - struct nk_allocator *permanent, struct nk_allocator *temporary) -{ - NK_ASSERT(atlas); - NK_ASSERT(permanent); - NK_ASSERT(temporary); - if (!atlas || !permanent || !temporary) return; - nk_zero_struct(*atlas); - atlas->permanent = *permanent; - atlas->temporary = *temporary; -} -NK_API void -nk_font_atlas_begin(struct nk_font_atlas *atlas) -{ - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc && atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc && atlas->permanent.free); - if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free || - !atlas->temporary.alloc || !atlas->temporary.free) return; - if (atlas->glyphs) { - atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs); - atlas->glyphs = 0; - } - if (atlas->pixel) { - atlas->permanent.free(atlas->permanent.userdata, atlas->pixel); - atlas->pixel = 0; - } -} -NK_API struct nk_font* -nk_font_atlas_add(struct nk_font_atlas *atlas, const struct nk_font_config *config) -{ - struct nk_font *font = 0; - struct nk_font_config *cfg; - - NK_ASSERT(atlas); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - - NK_ASSERT(config); - NK_ASSERT(config->ttf_blob); - NK_ASSERT(config->ttf_size); - NK_ASSERT(config->size > 0.0f); - - if (!atlas || !config || !config->ttf_blob || !config->ttf_size || config->size <= 0.0f|| - !atlas->permanent.alloc || !atlas->permanent.free || - !atlas->temporary.alloc || !atlas->temporary.free) - return 0; - - /* allocate font config */ - cfg = (struct nk_font_config*) - atlas->permanent.alloc(atlas->permanent.userdata,0, sizeof(struct nk_font_config)); - NK_MEMCPY(cfg, config, sizeof(*config)); - cfg->n = cfg; - cfg->p = cfg; - - if (!config->merge_mode) { - /* insert font config into list */ - if (!atlas->config) { - atlas->config = cfg; - cfg->next = 0; - } else { - struct nk_font_config *i = atlas->config; - while (i->next) i = i->next; - i->next = cfg; - cfg->next = 0; - } - /* allocate new font */ - font = (struct nk_font*) - atlas->permanent.alloc(atlas->permanent.userdata,0, sizeof(struct nk_font)); - NK_ASSERT(font); - nk_zero(font, sizeof(*font)); - if (!font) return 0; - font->config = cfg; - - /* insert font into list */ - if (!atlas->fonts) { - atlas->fonts = font; - font->next = 0; - } else { - struct nk_font *i = atlas->fonts; - while (i->next) i = i->next; - i->next = font; - font->next = 0; - } - cfg->font = &font->info; - } else { - /* extend previously added font */ - struct nk_font *f = 0; - struct nk_font_config *c = 0; - NK_ASSERT(atlas->font_num); - f = atlas->fonts; - c = f->config; - cfg->font = &f->info; - - cfg->n = c; - cfg->p = c->p; - c->p->n = cfg; - c->p = cfg; - } - /* create own copy of .TTF font blob */ - if (!config->ttf_data_owned_by_atlas) { - cfg->ttf_blob = atlas->permanent.alloc(atlas->permanent.userdata,0, cfg->ttf_size); - NK_ASSERT(cfg->ttf_blob); - if (!cfg->ttf_blob) { - atlas->font_num++; - return 0; - } - NK_MEMCPY(cfg->ttf_blob, config->ttf_blob, cfg->ttf_size); - cfg->ttf_data_owned_by_atlas = 1; - } - atlas->font_num++; - return font; -} -NK_API struct nk_font* -nk_font_atlas_add_from_memory(struct nk_font_atlas *atlas, void *memory, - nk_size size, float height, const struct nk_font_config *config) -{ - struct nk_font_config cfg; - NK_ASSERT(memory); - NK_ASSERT(size); - - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - if (!atlas || !atlas->temporary.alloc || !atlas->temporary.free || !memory || !size || - !atlas->permanent.alloc || !atlas->permanent.free) - return 0; - - cfg = (config) ? *config: nk_font_config(height); - cfg.ttf_blob = memory; - cfg.ttf_size = size; - cfg.size = height; - cfg.ttf_data_owned_by_atlas = 0; - return nk_font_atlas_add(atlas, &cfg); -} -#ifdef NK_INCLUDE_STANDARD_IO -NK_API struct nk_font* -nk_font_atlas_add_from_file(struct nk_font_atlas *atlas, const char *file_path, - float height, const struct nk_font_config *config) -{ - nk_size size; - char *memory; - struct nk_font_config cfg; - - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - - if (!atlas || !file_path) return 0; - memory = nk_file_load(file_path, &size, &atlas->permanent); - if (!memory) return 0; - - cfg = (config) ? *config: nk_font_config(height); - cfg.ttf_blob = memory; - cfg.ttf_size = size; - cfg.size = height; - cfg.ttf_data_owned_by_atlas = 1; - return nk_font_atlas_add(atlas, &cfg); -} -#endif -NK_API struct nk_font* -nk_font_atlas_add_compressed(struct nk_font_atlas *atlas, - void *compressed_data, nk_size compressed_size, float height, - const struct nk_font_config *config) -{ - unsigned int decompressed_size; - void *decompressed_data; - struct nk_font_config cfg; - - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - - NK_ASSERT(compressed_data); - NK_ASSERT(compressed_size); - if (!atlas || !compressed_data || !atlas->temporary.alloc || !atlas->temporary.free || - !atlas->permanent.alloc || !atlas->permanent.free) - return 0; - - decompressed_size = nk_decompress_length((unsigned char*)compressed_data); - decompressed_data = atlas->permanent.alloc(atlas->permanent.userdata,0,decompressed_size); - NK_ASSERT(decompressed_data); - if (!decompressed_data) return 0; - nk_decompress((unsigned char*)decompressed_data, (unsigned char*)compressed_data, - (unsigned int)compressed_size); - - cfg = (config) ? *config: nk_font_config(height); - cfg.ttf_blob = decompressed_data; - cfg.ttf_size = decompressed_size; - cfg.size = height; - cfg.ttf_data_owned_by_atlas = 1; - return nk_font_atlas_add(atlas, &cfg); -} -NK_API struct nk_font* -nk_font_atlas_add_compressed_base85(struct nk_font_atlas *atlas, - const char *data_base85, float height, const struct nk_font_config *config) -{ - int compressed_size; - void *compressed_data; - struct nk_font *font; - - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - - NK_ASSERT(data_base85); - if (!atlas || !data_base85 || !atlas->temporary.alloc || !atlas->temporary.free || - !atlas->permanent.alloc || !atlas->permanent.free) - return 0; - - compressed_size = (((int)nk_strlen(data_base85) + 4) / 5) * 4; - compressed_data = atlas->temporary.alloc(atlas->temporary.userdata,0, (nk_size)compressed_size); - NK_ASSERT(compressed_data); - if (!compressed_data) return 0; - nk_decode_85((unsigned char*)compressed_data, (const unsigned char*)data_base85); - font = nk_font_atlas_add_compressed(atlas, compressed_data, - (nk_size)compressed_size, height, config); - atlas->temporary.free(atlas->temporary.userdata, compressed_data); - return font; -} - -#ifdef NK_INCLUDE_DEFAULT_FONT -NK_API struct nk_font* -nk_font_atlas_add_default(struct nk_font_atlas *atlas, - float pixel_height, const struct nk_font_config *config) -{ - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - return nk_font_atlas_add_compressed_base85(atlas, - nk_proggy_clean_ttf_compressed_data_base85, pixel_height, config); -} -#endif -NK_API const void* -nk_font_atlas_bake(struct nk_font_atlas *atlas, int *width, int *height, - enum nk_font_atlas_format fmt) -{ - int i = 0; - void *tmp = 0; - nk_size tmp_size, img_size; - struct nk_font *font_iter; - struct nk_font_baker *baker; - - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - - NK_ASSERT(width); - NK_ASSERT(height); - if (!atlas || !width || !height || - !atlas->temporary.alloc || !atlas->temporary.free || - !atlas->permanent.alloc || !atlas->permanent.free) - return 0; - -#ifdef NK_INCLUDE_DEFAULT_FONT - /* no font added so just use default font */ - if (!atlas->font_num) - atlas->default_font = nk_font_atlas_add_default(atlas, 13.0f, 0); -#endif - NK_ASSERT(atlas->font_num); - if (!atlas->font_num) return 0; - - /* allocate temporary baker memory required for the baking process */ - nk_font_baker_memory(&tmp_size, &atlas->glyph_count, atlas->config, atlas->font_num); - tmp = atlas->temporary.alloc(atlas->temporary.userdata,0, tmp_size); - NK_ASSERT(tmp); - if (!tmp) goto failed; - NK_MEMSET(tmp,0,tmp_size); - - /* allocate glyph memory for all fonts */ - baker = nk_font_baker(tmp, atlas->glyph_count, atlas->font_num, &atlas->temporary); - atlas->glyphs = (struct nk_font_glyph*)atlas->permanent.alloc( - atlas->permanent.userdata,0, sizeof(struct nk_font_glyph)*(nk_size)atlas->glyph_count); - NK_ASSERT(atlas->glyphs); - if (!atlas->glyphs) - goto failed; - - /* pack all glyphs into a tight fit space */ - atlas->custom.w = (NK_CURSOR_DATA_W*2)+1; - atlas->custom.h = NK_CURSOR_DATA_H + 1; - if (!nk_font_bake_pack(baker, &img_size, width, height, &atlas->custom, - atlas->config, atlas->font_num, &atlas->temporary)) - goto failed; - - /* allocate memory for the baked image font atlas */ - atlas->pixel = atlas->temporary.alloc(atlas->temporary.userdata,0, img_size); - NK_ASSERT(atlas->pixel); - if (!atlas->pixel) - goto failed; - - /* bake glyphs and custom white pixel into image */ - nk_font_bake(baker, atlas->pixel, *width, *height, - atlas->glyphs, atlas->glyph_count, atlas->config, atlas->font_num); - nk_font_bake_custom_data(atlas->pixel, *width, *height, atlas->custom, - nk_custom_cursor_data, NK_CURSOR_DATA_W, NK_CURSOR_DATA_H, '.', 'X'); - - if (fmt == NK_FONT_ATLAS_RGBA32) { - /* convert alpha8 image into rgba32 image */ - void *img_rgba = atlas->temporary.alloc(atlas->temporary.userdata,0, - (nk_size)(*width * *height * 4)); - NK_ASSERT(img_rgba); - if (!img_rgba) goto failed; - nk_font_bake_convert(img_rgba, *width, *height, atlas->pixel); - atlas->temporary.free(atlas->temporary.userdata, atlas->pixel); - atlas->pixel = img_rgba; - } - atlas->tex_width = *width; - atlas->tex_height = *height; - - /* initialize each font */ - for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) { - struct nk_font *font = font_iter; - struct nk_font_config *config = font->config; - nk_font_init(font, config->size, config->fallback_glyph, atlas->glyphs, - config->font, nk_handle_ptr(0)); - } - - /* initialize each cursor */ - {NK_STORAGE const struct nk_vec2 nk_cursor_data[NK_CURSOR_COUNT][3] = { - /* Pos Size Offset */ - {{ 0, 3}, {12,19}, { 0, 0}}, - {{13, 0}, { 7,16}, { 4, 8}}, - {{31, 0}, {23,23}, {11,11}}, - {{21, 0}, { 9, 23}, { 5,11}}, - {{55,18}, {23, 9}, {11, 5}}, - {{73, 0}, {17,17}, { 9, 9}}, - {{55, 0}, {17,17}, { 9, 9}} - }; - for (i = 0; i < NK_CURSOR_COUNT; ++i) { - struct nk_cursor *cursor = &atlas->cursors[i]; - cursor->img.w = (unsigned short)*width; - cursor->img.h = (unsigned short)*height; - cursor->img.region[0] = (unsigned short)(atlas->custom.x + nk_cursor_data[i][0].x); - cursor->img.region[1] = (unsigned short)(atlas->custom.y + nk_cursor_data[i][0].y); - cursor->img.region[2] = (unsigned short)nk_cursor_data[i][1].x; - cursor->img.region[3] = (unsigned short)nk_cursor_data[i][1].y; - cursor->size = nk_cursor_data[i][1]; - cursor->offset = nk_cursor_data[i][2]; - }} - /* free temporary memory */ - atlas->temporary.free(atlas->temporary.userdata, tmp); - return atlas->pixel; - -failed: - /* error so cleanup all memory */ - if (tmp) atlas->temporary.free(atlas->temporary.userdata, tmp); - if (atlas->glyphs) { - atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs); - atlas->glyphs = 0; - } - if (atlas->pixel) { - atlas->temporary.free(atlas->temporary.userdata, atlas->pixel); - atlas->pixel = 0; - } - return 0; -} -NK_API void -nk_font_atlas_end(struct nk_font_atlas *atlas, nk_handle texture, - struct nk_draw_null_texture *tex_null) -{ - int i = 0; - struct nk_font *font_iter; - NK_ASSERT(atlas); - if (!atlas) { - if (!tex_null) return; - tex_null->texture = texture; - tex_null->uv = nk_vec2(0.5f,0.5f); - } - if (tex_null) { - tex_null->texture = texture; - tex_null->uv.x = (atlas->custom.x + 0.5f)/(float)atlas->tex_width; - tex_null->uv.y = (atlas->custom.y + 0.5f)/(float)atlas->tex_height; - } - for (font_iter = atlas->fonts; font_iter; font_iter = font_iter->next) { - font_iter->texture = texture; -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT - font_iter->handle.texture = texture; -#endif - } - for (i = 0; i < NK_CURSOR_COUNT; ++i) - atlas->cursors[i].img.handle = texture; - - atlas->temporary.free(atlas->temporary.userdata, atlas->pixel); - atlas->pixel = 0; - atlas->tex_width = 0; - atlas->tex_height = 0; - atlas->custom.x = 0; - atlas->custom.y = 0; - atlas->custom.w = 0; - atlas->custom.h = 0; -} -NK_API void -nk_font_atlas_cleanup(struct nk_font_atlas *atlas) -{ - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free) return; - if (atlas->config) { - struct nk_font_config *iter; - for (iter = atlas->config; iter; iter = iter->next) { - struct nk_font_config *i; - for (i = iter->n; i != iter; i = i->n) { - atlas->permanent.free(atlas->permanent.userdata, i->ttf_blob); - i->ttf_blob = 0; - } - atlas->permanent.free(atlas->permanent.userdata, iter->ttf_blob); - iter->ttf_blob = 0; - } - } -} -NK_API void -nk_font_atlas_clear(struct nk_font_atlas *atlas) -{ - NK_ASSERT(atlas); - NK_ASSERT(atlas->temporary.alloc); - NK_ASSERT(atlas->temporary.free); - NK_ASSERT(atlas->permanent.alloc); - NK_ASSERT(atlas->permanent.free); - if (!atlas || !atlas->permanent.alloc || !atlas->permanent.free) return; - - if (atlas->config) { - struct nk_font_config *iter, *next; - for (iter = atlas->config; iter; iter = next) { - struct nk_font_config *i, *n; - for (i = iter->n; i != iter; i = n) { - n = i->n; - if (i->ttf_blob) - atlas->permanent.free(atlas->permanent.userdata, i->ttf_blob); - atlas->permanent.free(atlas->permanent.userdata, i); - } - next = iter->next; - if (i->ttf_blob) - atlas->permanent.free(atlas->permanent.userdata, iter->ttf_blob); - atlas->permanent.free(atlas->permanent.userdata, iter); - } - atlas->config = 0; - } - if (atlas->fonts) { - struct nk_font *iter, *next; - for (iter = atlas->fonts; iter; iter = next) { - next = iter->next; - atlas->permanent.free(atlas->permanent.userdata, iter); - } - atlas->fonts = 0; - } - if (atlas->glyphs) - atlas->permanent.free(atlas->permanent.userdata, atlas->glyphs); - nk_zero_struct(*atlas); -} -#endif - - - - - -/* =============================================================== - * - * INPUT - * - * ===============================================================*/ -NK_API void -nk_input_begin(struct nk_context *ctx) -{ - int i; - struct nk_input *in; - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; - for (i = 0; i < NK_BUTTON_MAX; ++i) - in->mouse.buttons[i].clicked = 0; - - in->keyboard.text_len = 0; - in->mouse.scroll_delta = nk_vec2(0,0); - in->mouse.prev.x = in->mouse.pos.x; - in->mouse.prev.y = in->mouse.pos.y; - in->mouse.delta.x = 0; - in->mouse.delta.y = 0; - for (i = 0; i < NK_KEY_MAX; i++) - in->keyboard.keys[i].clicked = 0; -} -NK_API void -nk_input_end(struct nk_context *ctx) -{ - struct nk_input *in; - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; - if (in->mouse.grab) - in->mouse.grab = 0; - if (in->mouse.ungrab) { - in->mouse.grabbed = 0; - in->mouse.ungrab = 0; - in->mouse.grab = 0; - } -} -NK_API void -nk_input_motion(struct nk_context *ctx, int x, int y) -{ - struct nk_input *in; - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; - in->mouse.pos.x = (float)x; - in->mouse.pos.y = (float)y; - in->mouse.delta.x = in->mouse.pos.x - in->mouse.prev.x; - in->mouse.delta.y = in->mouse.pos.y - in->mouse.prev.y; -} -NK_API void -nk_input_key(struct nk_context *ctx, enum nk_keys key, nk_bool down) -{ - struct nk_input *in; - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; -#ifdef NK_KEYSTATE_BASED_INPUT - if (in->keyboard.keys[key].down != down) - in->keyboard.keys[key].clicked++; -#else - in->keyboard.keys[key].clicked++; -#endif - in->keyboard.keys[key].down = down; -} -NK_API void -nk_input_button(struct nk_context *ctx, enum nk_buttons id, int x, int y, nk_bool down) -{ - struct nk_mouse_button *btn; - struct nk_input *in; - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; - if (in->mouse.buttons[id].down == down) return; - - btn = &in->mouse.buttons[id]; - btn->clicked_pos.x = (float)x; - btn->clicked_pos.y = (float)y; - btn->down = down; - btn->clicked++; - - /* Fix Click-Drag for touch events. */ - in->mouse.delta.x = 0; - in->mouse.delta.y = 0; -#ifdef NK_BUTTON_TRIGGER_ON_RELEASE - if (down == 1 && id == NK_BUTTON_LEFT) - { - in->mouse.down_pos.x = btn->clicked_pos.x; - in->mouse.down_pos.y = btn->clicked_pos.y; - } -#endif -} -NK_API void -nk_input_scroll(struct nk_context *ctx, struct nk_vec2 val) -{ - NK_ASSERT(ctx); - if (!ctx) return; - ctx->input.mouse.scroll_delta.x += val.x; - ctx->input.mouse.scroll_delta.y += val.y; -} -NK_API void -nk_input_glyph(struct nk_context *ctx, const nk_glyph glyph) -{ - int len = 0; - nk_rune unicode; - struct nk_input *in; - - NK_ASSERT(ctx); - if (!ctx) return; - in = &ctx->input; - - len = nk_utf_decode(glyph, &unicode, NK_UTF_SIZE); - if (len && ((in->keyboard.text_len + len) < NK_INPUT_MAX)) { - nk_utf_encode(unicode, &in->keyboard.text[in->keyboard.text_len], - NK_INPUT_MAX - in->keyboard.text_len); - in->keyboard.text_len += len; - } -} -NK_API void -nk_input_char(struct nk_context *ctx, char c) -{ - nk_glyph glyph; - NK_ASSERT(ctx); - if (!ctx) return; - glyph[0] = c; - nk_input_glyph(ctx, glyph); -} -NK_API void -nk_input_unicode(struct nk_context *ctx, nk_rune unicode) -{ - nk_glyph rune; - NK_ASSERT(ctx); - if (!ctx) return; - nk_utf_encode(unicode, rune, NK_UTF_SIZE); - nk_input_glyph(ctx, rune); -} -NK_API nk_bool -nk_input_has_mouse_click(const struct nk_input *i, enum nk_buttons id) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; - return (btn->clicked && btn->down == nk_false) ? nk_true : nk_false; -} -NK_API nk_bool -nk_input_has_mouse_click_in_rect(const struct nk_input *i, enum nk_buttons id, - struct nk_rect b) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; - if (!NK_INBOX(btn->clicked_pos.x,btn->clicked_pos.y,b.x,b.y,b.w,b.h)) - return nk_false; - return nk_true; -} -NK_API nk_bool -nk_input_has_mouse_click_in_button_rect(const struct nk_input *i, enum nk_buttons id, - struct nk_rect b) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; -#ifdef NK_BUTTON_TRIGGER_ON_RELEASE - if (!NK_INBOX(btn->clicked_pos.x,btn->clicked_pos.y,b.x,b.y,b.w,b.h) - || !NK_INBOX(i->mouse.down_pos.x,i->mouse.down_pos.y,b.x,b.y,b.w,b.h)) -#else - if (!NK_INBOX(btn->clicked_pos.x,btn->clicked_pos.y,b.x,b.y,b.w,b.h)) -#endif - return nk_false; - return nk_true; -} -NK_API nk_bool -nk_input_has_mouse_click_down_in_rect(const struct nk_input *i, enum nk_buttons id, - struct nk_rect b, nk_bool down) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; - return nk_input_has_mouse_click_in_rect(i, id, b) && (btn->down == down); -} -NK_API nk_bool -nk_input_is_mouse_click_in_rect(const struct nk_input *i, enum nk_buttons id, - struct nk_rect b) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; - return (nk_input_has_mouse_click_down_in_rect(i, id, b, nk_false) && - btn->clicked) ? nk_true : nk_false; -} -NK_API nk_bool -nk_input_is_mouse_click_down_in_rect(const struct nk_input *i, enum nk_buttons id, - struct nk_rect b, nk_bool down) -{ - const struct nk_mouse_button *btn; - if (!i) return nk_false; - btn = &i->mouse.buttons[id]; - return (nk_input_has_mouse_click_down_in_rect(i, id, b, down) && - btn->clicked) ? nk_true : nk_false; -} -NK_API nk_bool -nk_input_any_mouse_click_in_rect(const struct nk_input *in, struct nk_rect b) -{ - int i, down = 0; - for (i = 0; i < NK_BUTTON_MAX; ++i) - down = down || nk_input_is_mouse_click_in_rect(in, (enum nk_buttons)i, b); - return down; -} -NK_API nk_bool -nk_input_is_mouse_hovering_rect(const struct nk_input *i, struct nk_rect rect) -{ - if (!i) return nk_false; - return NK_INBOX(i->mouse.pos.x, i->mouse.pos.y, rect.x, rect.y, rect.w, rect.h); -} -NK_API nk_bool -nk_input_is_mouse_prev_hovering_rect(const struct nk_input *i, struct nk_rect rect) -{ - if (!i) return nk_false; - return NK_INBOX(i->mouse.prev.x, i->mouse.prev.y, rect.x, rect.y, rect.w, rect.h); -} -NK_API nk_bool -nk_input_mouse_clicked(const struct nk_input *i, enum nk_buttons id, struct nk_rect rect) -{ - if (!i) return nk_false; - if (!nk_input_is_mouse_hovering_rect(i, rect)) return nk_false; - return nk_input_is_mouse_click_in_rect(i, id, rect); -} -NK_API nk_bool -nk_input_is_mouse_down(const struct nk_input *i, enum nk_buttons id) -{ - if (!i) return nk_false; - return i->mouse.buttons[id].down; -} -NK_API nk_bool -nk_input_is_mouse_pressed(const struct nk_input *i, enum nk_buttons id) -{ - const struct nk_mouse_button *b; - if (!i) return nk_false; - b = &i->mouse.buttons[id]; - if (b->down && b->clicked) - return nk_true; - return nk_false; -} -NK_API nk_bool -nk_input_is_mouse_released(const struct nk_input *i, enum nk_buttons id) -{ - if (!i) return nk_false; - return (!i->mouse.buttons[id].down && i->mouse.buttons[id].clicked); -} -NK_API nk_bool -nk_input_is_key_pressed(const struct nk_input *i, enum nk_keys key) -{ - const struct nk_key *k; - if (!i) return nk_false; - k = &i->keyboard.keys[key]; - if ((k->down && k->clicked) || (!k->down && k->clicked >= 2)) - return nk_true; - return nk_false; -} -NK_API nk_bool -nk_input_is_key_released(const struct nk_input *i, enum nk_keys key) -{ - const struct nk_key *k; - if (!i) return nk_false; - k = &i->keyboard.keys[key]; - if ((!k->down && k->clicked) || (k->down && k->clicked >= 2)) - return nk_true; - return nk_false; -} -NK_API nk_bool -nk_input_is_key_down(const struct nk_input *i, enum nk_keys key) -{ - const struct nk_key *k; - if (!i) return nk_false; - k = &i->keyboard.keys[key]; - if (k->down) return nk_true; - return nk_false; -} - - - - - -/* =============================================================== - * - * STYLE - * - * ===============================================================*/ -NK_API void nk_style_default(struct nk_context *ctx){nk_style_from_table(ctx, 0);} -#define NK_COLOR_MAP(NK_COLOR)\ - NK_COLOR(NK_COLOR_TEXT, 175,175,175,255) \ - NK_COLOR(NK_COLOR_WINDOW, 45, 45, 45, 255) \ - NK_COLOR(NK_COLOR_HEADER, 40, 40, 40, 255) \ - NK_COLOR(NK_COLOR_BORDER, 65, 65, 65, 255) \ - NK_COLOR(NK_COLOR_BUTTON, 50, 50, 50, 255) \ - NK_COLOR(NK_COLOR_BUTTON_HOVER, 40, 40, 40, 255) \ - NK_COLOR(NK_COLOR_BUTTON_ACTIVE, 35, 35, 35, 255) \ - NK_COLOR(NK_COLOR_TOGGLE, 100,100,100,255) \ - NK_COLOR(NK_COLOR_TOGGLE_HOVER, 120,120,120,255) \ - NK_COLOR(NK_COLOR_TOGGLE_CURSOR, 45, 45, 45, 255) \ - NK_COLOR(NK_COLOR_SELECT, 45, 45, 45, 255) \ - NK_COLOR(NK_COLOR_SELECT_ACTIVE, 35, 35, 35,255) \ - NK_COLOR(NK_COLOR_SLIDER, 38, 38, 38, 255) \ - NK_COLOR(NK_COLOR_SLIDER_CURSOR, 100,100,100,255) \ - NK_COLOR(NK_COLOR_SLIDER_CURSOR_HOVER, 120,120,120,255) \ - NK_COLOR(NK_COLOR_SLIDER_CURSOR_ACTIVE, 150,150,150,255) \ - NK_COLOR(NK_COLOR_PROPERTY, 38, 38, 38, 255) \ - NK_COLOR(NK_COLOR_EDIT, 38, 38, 38, 255) \ - NK_COLOR(NK_COLOR_EDIT_CURSOR, 175,175,175,255) \ - NK_COLOR(NK_COLOR_COMBO, 45, 45, 45, 255) \ - NK_COLOR(NK_COLOR_CHART, 120,120,120,255) \ - NK_COLOR(NK_COLOR_CHART_COLOR, 45, 45, 45, 255) \ - NK_COLOR(NK_COLOR_CHART_COLOR_HIGHLIGHT, 255, 0, 0, 255) \ - NK_COLOR(NK_COLOR_SCROLLBAR, 40, 40, 40, 255) \ - NK_COLOR(NK_COLOR_SCROLLBAR_CURSOR, 100,100,100,255) \ - NK_COLOR(NK_COLOR_SCROLLBAR_CURSOR_HOVER, 120,120,120,255) \ - NK_COLOR(NK_COLOR_SCROLLBAR_CURSOR_ACTIVE, 150,150,150,255) \ - NK_COLOR(NK_COLOR_TAB_HEADER, 40, 40, 40,255) - -NK_GLOBAL const struct nk_color -nk_default_color_style[NK_COLOR_COUNT] = { -#define NK_COLOR(a,b,c,d,e) {b,c,d,e}, - NK_COLOR_MAP(NK_COLOR) -#undef NK_COLOR -}; -NK_GLOBAL const char *nk_color_names[NK_COLOR_COUNT] = { -#define NK_COLOR(a,b,c,d,e) #a, - NK_COLOR_MAP(NK_COLOR) -#undef NK_COLOR -}; - -NK_API const char* -nk_style_get_color_by_name(enum nk_style_colors c) -{ - return nk_color_names[c]; -} -NK_API struct nk_style_item -nk_style_item_color(struct nk_color col) -{ - struct nk_style_item i; - i.type = NK_STYLE_ITEM_COLOR; - i.data.color = col; - return i; -} -NK_API struct nk_style_item -nk_style_item_image(struct nk_image img) -{ - struct nk_style_item i; - i.type = NK_STYLE_ITEM_IMAGE; - i.data.image = img; - return i; -} -NK_API struct nk_style_item -nk_style_item_nine_slice(struct nk_nine_slice slice) -{ - struct nk_style_item i; - i.type = NK_STYLE_ITEM_NINE_SLICE; - i.data.slice = slice; - return i; -} -NK_API struct nk_style_item -nk_style_item_hide(void) -{ - struct nk_style_item i; - i.type = NK_STYLE_ITEM_COLOR; - i.data.color = nk_rgba(0,0,0,0); - return i; -} -NK_API void -nk_style_from_table(struct nk_context *ctx, const struct nk_color *table) -{ - struct nk_style *style; - struct nk_style_text *text; - struct nk_style_button *button; - struct nk_style_toggle *toggle; - struct nk_style_selectable *select; - struct nk_style_slider *slider; - struct nk_style_progress *prog; - struct nk_style_scrollbar *scroll; - struct nk_style_edit *edit; - struct nk_style_property *property; - struct nk_style_combo *combo; - struct nk_style_chart *chart; - struct nk_style_tab *tab; - struct nk_style_window *win; - - NK_ASSERT(ctx); - if (!ctx) return; - style = &ctx->style; - table = (!table) ? nk_default_color_style: table; - - /* default text */ - text = &style->text; - text->color = table[NK_COLOR_TEXT]; - text->padding = nk_vec2(0,0); - text->color_factor = 1.0f; - text->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* default button */ - button = &style->button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_BUTTON]); - button->hover = nk_style_item_color(table[NK_COLOR_BUTTON_HOVER]); - button->active = nk_style_item_color(table[NK_COLOR_BUTTON_ACTIVE]); - button->border_color = table[NK_COLOR_BORDER]; - button->text_background = table[NK_COLOR_BUTTON]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->image_padding = nk_vec2(0.0f,0.0f); - button->touch_padding = nk_vec2(0.0f, 0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 1.0f; - button->rounding = 4.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* contextual button */ - button = &style->contextual_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->hover = nk_style_item_color(table[NK_COLOR_BUTTON_HOVER]); - button->active = nk_style_item_color(table[NK_COLOR_BUTTON_ACTIVE]); - button->border_color = table[NK_COLOR_WINDOW]; - button->text_background = table[NK_COLOR_WINDOW]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* menu button */ - button = &style->menu_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->hover = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->active = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->border_color = table[NK_COLOR_WINDOW]; - button->text_background = table[NK_COLOR_WINDOW]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 1.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* checkbox toggle */ - toggle = &style->checkbox; - nk_zero_struct(*toggle); - toggle->normal = nk_style_item_color(table[NK_COLOR_TOGGLE]); - toggle->hover = nk_style_item_color(table[NK_COLOR_TOGGLE_HOVER]); - toggle->active = nk_style_item_color(table[NK_COLOR_TOGGLE_HOVER]); - toggle->cursor_normal = nk_style_item_color(table[NK_COLOR_TOGGLE_CURSOR]); - toggle->cursor_hover = nk_style_item_color(table[NK_COLOR_TOGGLE_CURSOR]); - toggle->userdata = nk_handle_ptr(0); - toggle->text_background = table[NK_COLOR_WINDOW]; - toggle->text_normal = table[NK_COLOR_TEXT]; - toggle->text_hover = table[NK_COLOR_TEXT]; - toggle->text_active = table[NK_COLOR_TEXT]; - toggle->padding = nk_vec2(2.0f, 2.0f); - toggle->touch_padding = nk_vec2(0,0); - toggle->border_color = nk_rgba(0,0,0,0); - toggle->border = 0.0f; - toggle->spacing = 4; - toggle->color_factor = 1.0f; - toggle->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* option toggle */ - toggle = &style->option; - nk_zero_struct(*toggle); - toggle->normal = nk_style_item_color(table[NK_COLOR_TOGGLE]); - toggle->hover = nk_style_item_color(table[NK_COLOR_TOGGLE_HOVER]); - toggle->active = nk_style_item_color(table[NK_COLOR_TOGGLE_HOVER]); - toggle->cursor_normal = nk_style_item_color(table[NK_COLOR_TOGGLE_CURSOR]); - toggle->cursor_hover = nk_style_item_color(table[NK_COLOR_TOGGLE_CURSOR]); - toggle->userdata = nk_handle_ptr(0); - toggle->text_background = table[NK_COLOR_WINDOW]; - toggle->text_normal = table[NK_COLOR_TEXT]; - toggle->text_hover = table[NK_COLOR_TEXT]; - toggle->text_active = table[NK_COLOR_TEXT]; - toggle->padding = nk_vec2(3.0f, 3.0f); - toggle->touch_padding = nk_vec2(0,0); - toggle->border_color = nk_rgba(0,0,0,0); - toggle->border = 0.0f; - toggle->spacing = 4; - toggle->color_factor = 1.0f; - toggle->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* selectable */ - select = &style->selectable; - nk_zero_struct(*select); - select->normal = nk_style_item_color(table[NK_COLOR_SELECT]); - select->hover = nk_style_item_color(table[NK_COLOR_SELECT]); - select->pressed = nk_style_item_color(table[NK_COLOR_SELECT]); - select->normal_active = nk_style_item_color(table[NK_COLOR_SELECT_ACTIVE]); - select->hover_active = nk_style_item_color(table[NK_COLOR_SELECT_ACTIVE]); - select->pressed_active = nk_style_item_color(table[NK_COLOR_SELECT_ACTIVE]); - select->text_normal = table[NK_COLOR_TEXT]; - select->text_hover = table[NK_COLOR_TEXT]; - select->text_pressed = table[NK_COLOR_TEXT]; - select->text_normal_active = table[NK_COLOR_TEXT]; - select->text_hover_active = table[NK_COLOR_TEXT]; - select->text_pressed_active = table[NK_COLOR_TEXT]; - select->padding = nk_vec2(2.0f,2.0f); - select->image_padding = nk_vec2(2.0f,2.0f); - select->touch_padding = nk_vec2(0,0); - select->userdata = nk_handle_ptr(0); - select->rounding = 0.0f; - select->color_factor = 1.0f; - select->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - select->draw_begin = 0; - select->draw_end = 0; - - /* slider */ - slider = &style->slider; - nk_zero_struct(*slider); - slider->normal = nk_style_item_hide(); - slider->hover = nk_style_item_hide(); - slider->active = nk_style_item_hide(); - slider->bar_normal = table[NK_COLOR_SLIDER]; - slider->bar_hover = table[NK_COLOR_SLIDER]; - slider->bar_active = table[NK_COLOR_SLIDER]; - slider->bar_filled = table[NK_COLOR_SLIDER_CURSOR]; - slider->cursor_normal = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR]); - slider->cursor_hover = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR_HOVER]); - slider->cursor_active = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR_ACTIVE]); - slider->inc_symbol = NK_SYMBOL_TRIANGLE_RIGHT; - slider->dec_symbol = NK_SYMBOL_TRIANGLE_LEFT; - slider->cursor_size = nk_vec2(16,16); - slider->padding = nk_vec2(2,2); - slider->spacing = nk_vec2(2,2); - slider->userdata = nk_handle_ptr(0); - slider->show_buttons = nk_false; - slider->bar_height = 8; - slider->rounding = 0; - slider->color_factor = 1.0f; - slider->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - slider->draw_begin = 0; - slider->draw_end = 0; - - /* slider buttons */ - button = &style->slider.inc_button; - button->normal = nk_style_item_color(nk_rgb(40,40,40)); - button->hover = nk_style_item_color(nk_rgb(42,42,42)); - button->active = nk_style_item_color(nk_rgb(44,44,44)); - button->border_color = nk_rgb(65,65,65); - button->text_background = nk_rgb(40,40,40); - button->text_normal = nk_rgb(175,175,175); - button->text_hover = nk_rgb(175,175,175); - button->text_active = nk_rgb(175,175,175); - button->padding = nk_vec2(8.0f,8.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 1.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - style->slider.dec_button = style->slider.inc_button; - - /* progressbar */ - prog = &style->progress; - nk_zero_struct(*prog); - prog->normal = nk_style_item_color(table[NK_COLOR_SLIDER]); - prog->hover = nk_style_item_color(table[NK_COLOR_SLIDER]); - prog->active = nk_style_item_color(table[NK_COLOR_SLIDER]); - prog->cursor_normal = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR]); - prog->cursor_hover = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR_HOVER]); - prog->cursor_active = nk_style_item_color(table[NK_COLOR_SLIDER_CURSOR_ACTIVE]); - prog->border_color = nk_rgba(0,0,0,0); - prog->cursor_border_color = nk_rgba(0,0,0,0); - prog->userdata = nk_handle_ptr(0); - prog->padding = nk_vec2(4,4); - prog->rounding = 0; - prog->border = 0; - prog->cursor_rounding = 0; - prog->cursor_border = 0; - prog->color_factor = 1.0f; - prog->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - prog->draw_begin = 0; - prog->draw_end = 0; - - /* scrollbars */ - scroll = &style->scrollh; - nk_zero_struct(*scroll); - scroll->normal = nk_style_item_color(table[NK_COLOR_SCROLLBAR]); - scroll->hover = nk_style_item_color(table[NK_COLOR_SCROLLBAR]); - scroll->active = nk_style_item_color(table[NK_COLOR_SCROLLBAR]); - scroll->cursor_normal = nk_style_item_color(table[NK_COLOR_SCROLLBAR_CURSOR]); - scroll->cursor_hover = nk_style_item_color(table[NK_COLOR_SCROLLBAR_CURSOR_HOVER]); - scroll->cursor_active = nk_style_item_color(table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE]); - scroll->dec_symbol = NK_SYMBOL_CIRCLE_SOLID; - scroll->inc_symbol = NK_SYMBOL_CIRCLE_SOLID; - scroll->userdata = nk_handle_ptr(0); - scroll->border_color = table[NK_COLOR_SCROLLBAR]; - scroll->cursor_border_color = table[NK_COLOR_SCROLLBAR]; - scroll->padding = nk_vec2(0,0); - scroll->show_buttons = nk_false; - scroll->border = 0; - scroll->rounding = 0; - scroll->border_cursor = 0; - scroll->rounding_cursor = 0; - scroll->color_factor = 1.0f; - scroll->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - scroll->draw_begin = 0; - scroll->draw_end = 0; - style->scrollv = style->scrollh; - - /* scrollbars buttons */ - button = &style->scrollh.inc_button; - button->normal = nk_style_item_color(nk_rgb(40,40,40)); - button->hover = nk_style_item_color(nk_rgb(42,42,42)); - button->active = nk_style_item_color(nk_rgb(44,44,44)); - button->border_color = nk_rgb(65,65,65); - button->text_background = nk_rgb(40,40,40); - button->text_normal = nk_rgb(175,175,175); - button->text_hover = nk_rgb(175,175,175); - button->text_active = nk_rgb(175,175,175); - button->padding = nk_vec2(4.0f,4.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 1.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - style->scrollh.dec_button = style->scrollh.inc_button; - style->scrollv.inc_button = style->scrollh.inc_button; - style->scrollv.dec_button = style->scrollh.inc_button; - - /* edit */ - edit = &style->edit; - nk_zero_struct(*edit); - edit->normal = nk_style_item_color(table[NK_COLOR_EDIT]); - edit->hover = nk_style_item_color(table[NK_COLOR_EDIT]); - edit->active = nk_style_item_color(table[NK_COLOR_EDIT]); - edit->cursor_normal = table[NK_COLOR_TEXT]; - edit->cursor_hover = table[NK_COLOR_TEXT]; - edit->cursor_text_normal= table[NK_COLOR_EDIT]; - edit->cursor_text_hover = table[NK_COLOR_EDIT]; - edit->border_color = table[NK_COLOR_BORDER]; - edit->text_normal = table[NK_COLOR_TEXT]; - edit->text_hover = table[NK_COLOR_TEXT]; - edit->text_active = table[NK_COLOR_TEXT]; - edit->selected_normal = table[NK_COLOR_TEXT]; - edit->selected_hover = table[NK_COLOR_TEXT]; - edit->selected_text_normal = table[NK_COLOR_EDIT]; - edit->selected_text_hover = table[NK_COLOR_EDIT]; - edit->scrollbar_size = nk_vec2(10,10); - edit->scrollbar = style->scrollv; - edit->padding = nk_vec2(4,4); - edit->row_padding = 2; - edit->cursor_size = 4; - edit->border = 1; - edit->rounding = 0; - edit->color_factor = 1.0f; - edit->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* property */ - property = &style->property; - nk_zero_struct(*property); - property->normal = nk_style_item_color(table[NK_COLOR_PROPERTY]); - property->hover = nk_style_item_color(table[NK_COLOR_PROPERTY]); - property->active = nk_style_item_color(table[NK_COLOR_PROPERTY]); - property->border_color = table[NK_COLOR_BORDER]; - property->label_normal = table[NK_COLOR_TEXT]; - property->label_hover = table[NK_COLOR_TEXT]; - property->label_active = table[NK_COLOR_TEXT]; - property->sym_left = NK_SYMBOL_TRIANGLE_LEFT; - property->sym_right = NK_SYMBOL_TRIANGLE_RIGHT; - property->userdata = nk_handle_ptr(0); - property->padding = nk_vec2(4,4); - property->border = 1; - property->rounding = 10; - property->draw_begin = 0; - property->draw_end = 0; - property->color_factor = 1.0f; - property->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* property buttons */ - button = &style->property.dec_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_PROPERTY]); - button->hover = nk_style_item_color(table[NK_COLOR_PROPERTY]); - button->active = nk_style_item_color(table[NK_COLOR_PROPERTY]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_PROPERTY]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(0.0f,0.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - style->property.inc_button = style->property.dec_button; - - /* property edit */ - edit = &style->property.edit; - nk_zero_struct(*edit); - edit->normal = nk_style_item_color(table[NK_COLOR_PROPERTY]); - edit->hover = nk_style_item_color(table[NK_COLOR_PROPERTY]); - edit->active = nk_style_item_color(table[NK_COLOR_PROPERTY]); - edit->border_color = nk_rgba(0,0,0,0); - edit->cursor_normal = table[NK_COLOR_TEXT]; - edit->cursor_hover = table[NK_COLOR_TEXT]; - edit->cursor_text_normal= table[NK_COLOR_EDIT]; - edit->cursor_text_hover = table[NK_COLOR_EDIT]; - edit->text_normal = table[NK_COLOR_TEXT]; - edit->text_hover = table[NK_COLOR_TEXT]; - edit->text_active = table[NK_COLOR_TEXT]; - edit->selected_normal = table[NK_COLOR_TEXT]; - edit->selected_hover = table[NK_COLOR_TEXT]; - edit->selected_text_normal = table[NK_COLOR_EDIT]; - edit->selected_text_hover = table[NK_COLOR_EDIT]; - edit->padding = nk_vec2(0,0); - edit->cursor_size = 8; - edit->border = 0; - edit->rounding = 0; - edit->color_factor = 1.0f; - edit->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* chart */ - chart = &style->chart; - nk_zero_struct(*chart); - chart->background = nk_style_item_color(table[NK_COLOR_CHART]); - chart->border_color = table[NK_COLOR_BORDER]; - chart->selected_color = table[NK_COLOR_CHART_COLOR_HIGHLIGHT]; - chart->color = table[NK_COLOR_CHART_COLOR]; - chart->padding = nk_vec2(4,4); - chart->border = 0; - chart->rounding = 0; - chart->color_factor = 1.0f; - chart->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* combo */ - combo = &style->combo; - combo->normal = nk_style_item_color(table[NK_COLOR_COMBO]); - combo->hover = nk_style_item_color(table[NK_COLOR_COMBO]); - combo->active = nk_style_item_color(table[NK_COLOR_COMBO]); - combo->border_color = table[NK_COLOR_BORDER]; - combo->label_normal = table[NK_COLOR_TEXT]; - combo->label_hover = table[NK_COLOR_TEXT]; - combo->label_active = table[NK_COLOR_TEXT]; - combo->sym_normal = NK_SYMBOL_TRIANGLE_DOWN; - combo->sym_hover = NK_SYMBOL_TRIANGLE_DOWN; - combo->sym_active = NK_SYMBOL_TRIANGLE_DOWN; - combo->content_padding = nk_vec2(4,4); - combo->button_padding = nk_vec2(0,4); - combo->spacing = nk_vec2(4,0); - combo->border = 1; - combo->rounding = 0; - combo->color_factor = 1.0f; - combo->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* combo button */ - button = &style->combo.button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_COMBO]); - button->hover = nk_style_item_color(table[NK_COLOR_COMBO]); - button->active = nk_style_item_color(table[NK_COLOR_COMBO]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_COMBO]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* tab */ - tab = &style->tab; - tab->background = nk_style_item_color(table[NK_COLOR_TAB_HEADER]); - tab->border_color = table[NK_COLOR_BORDER]; - tab->text = table[NK_COLOR_TEXT]; - tab->sym_minimize = NK_SYMBOL_TRIANGLE_RIGHT; - tab->sym_maximize = NK_SYMBOL_TRIANGLE_DOWN; - tab->padding = nk_vec2(4,4); - tab->spacing = nk_vec2(4,4); - tab->indent = 10.0f; - tab->border = 1; - tab->rounding = 0; - tab->color_factor = 1.0f; - tab->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - - /* tab button */ - button = &style->tab.tab_minimize_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_TAB_HEADER]); - button->hover = nk_style_item_color(table[NK_COLOR_TAB_HEADER]); - button->active = nk_style_item_color(table[NK_COLOR_TAB_HEADER]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_TAB_HEADER]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - style->tab.tab_maximize_button =*button; - - /* node button */ - button = &style->tab.node_minimize_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->hover = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->active = nk_style_item_color(table[NK_COLOR_WINDOW]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_TAB_HEADER]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(2.0f,2.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - style->tab.node_maximize_button =*button; - - /* window header */ - win = &style->window; - win->header.align = NK_HEADER_RIGHT; - win->header.close_symbol = NK_SYMBOL_X; - win->header.minimize_symbol = NK_SYMBOL_MINUS; - win->header.maximize_symbol = NK_SYMBOL_PLUS; - win->header.normal = nk_style_item_color(table[NK_COLOR_HEADER]); - win->header.hover = nk_style_item_color(table[NK_COLOR_HEADER]); - win->header.active = nk_style_item_color(table[NK_COLOR_HEADER]); - win->header.label_normal = table[NK_COLOR_TEXT]; - win->header.label_hover = table[NK_COLOR_TEXT]; - win->header.label_active = table[NK_COLOR_TEXT]; - win->header.label_padding = nk_vec2(4,4); - win->header.padding = nk_vec2(4,4); - win->header.spacing = nk_vec2(0,0); - - /* window header close button */ - button = &style->window.header.close_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_HEADER]); - button->hover = nk_style_item_color(table[NK_COLOR_HEADER]); - button->active = nk_style_item_color(table[NK_COLOR_HEADER]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_HEADER]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(0.0f,0.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* window header minimize button */ - button = &style->window.header.minimize_button; - nk_zero_struct(*button); - button->normal = nk_style_item_color(table[NK_COLOR_HEADER]); - button->hover = nk_style_item_color(table[NK_COLOR_HEADER]); - button->active = nk_style_item_color(table[NK_COLOR_HEADER]); - button->border_color = nk_rgba(0,0,0,0); - button->text_background = table[NK_COLOR_HEADER]; - button->text_normal = table[NK_COLOR_TEXT]; - button->text_hover = table[NK_COLOR_TEXT]; - button->text_active = table[NK_COLOR_TEXT]; - button->padding = nk_vec2(0.0f,0.0f); - button->touch_padding = nk_vec2(0.0f,0.0f); - button->userdata = nk_handle_ptr(0); - button->text_alignment = NK_TEXT_CENTERED; - button->border = 0.0f; - button->rounding = 0.0f; - button->color_factor_text = 1.0f; - button->color_factor_background = 1.0f; - button->disabled_factor = NK_WIDGET_DISABLED_FACTOR; - button->draw_begin = 0; - button->draw_end = 0; - - /* window */ - win->background = table[NK_COLOR_WINDOW]; - win->fixed_background = nk_style_item_color(table[NK_COLOR_WINDOW]); - win->border_color = table[NK_COLOR_BORDER]; - win->popup_border_color = table[NK_COLOR_BORDER]; - win->combo_border_color = table[NK_COLOR_BORDER]; - win->contextual_border_color = table[NK_COLOR_BORDER]; - win->menu_border_color = table[NK_COLOR_BORDER]; - win->group_border_color = table[NK_COLOR_BORDER]; - win->tooltip_border_color = table[NK_COLOR_BORDER]; - win->scaler = nk_style_item_color(table[NK_COLOR_TEXT]); - - win->rounding = 0.0f; - win->spacing = nk_vec2(4,4); - win->scrollbar_size = nk_vec2(10,10); - win->min_size = nk_vec2(64,64); - - win->combo_border = 1.0f; - win->contextual_border = 1.0f; - win->menu_border = 1.0f; - win->group_border = 1.0f; - win->tooltip_border = 1.0f; - win->popup_border = 1.0f; - win->border = 2.0f; - win->min_row_height_padding = 8; - - win->padding = nk_vec2(4,4); - win->group_padding = nk_vec2(4,4); - win->popup_padding = nk_vec2(4,4); - win->combo_padding = nk_vec2(4,4); - win->contextual_padding = nk_vec2(4,4); - win->menu_padding = nk_vec2(4,4); - win->tooltip_padding = nk_vec2(4,4); -} -NK_API void -nk_style_set_font(struct nk_context *ctx, const struct nk_user_font *font) -{ - struct nk_style *style; - NK_ASSERT(ctx); - - if (!ctx) return; - style = &ctx->style; - style->font = font; - ctx->stacks.fonts.head = 0; - if (ctx->current) - nk_layout_reset_min_row_height(ctx); -} -NK_API nk_bool -nk_style_push_font(struct nk_context *ctx, const struct nk_user_font *font) -{ - struct nk_config_stack_user_font *font_stack; - struct nk_config_stack_user_font_element *element; - - NK_ASSERT(ctx); - if (!ctx) return 0; - - font_stack = &ctx->stacks.fonts; - NK_ASSERT(font_stack->head < (int)NK_LEN(font_stack->elements)); - if (font_stack->head >= (int)NK_LEN(font_stack->elements)) - return 0; - - element = &font_stack->elements[font_stack->head++]; - element->address = &ctx->style.font; - element->old_value = ctx->style.font; - ctx->style.font = font; - return 1; -} -NK_API nk_bool -nk_style_pop_font(struct nk_context *ctx) -{ - struct nk_config_stack_user_font *font_stack; - struct nk_config_stack_user_font_element *element; - - NK_ASSERT(ctx); - if (!ctx) return 0; - - font_stack = &ctx->stacks.fonts; - NK_ASSERT(font_stack->head > 0); - if (font_stack->head < 1) - return 0; - - element = &font_stack->elements[--font_stack->head]; - *element->address = element->old_value; - return 1; -} -#define NK_STYLE_PUSH_IMPLEMENATION(prefix, type, stack) \ -nk_style_push_##type(struct nk_context *ctx, prefix##_##type *address, prefix##_##type value)\ -{\ - struct nk_config_stack_##type * type_stack;\ - struct nk_config_stack_##type##_element *element;\ - NK_ASSERT(ctx);\ - if (!ctx) return 0;\ - type_stack = &ctx->stacks.stack;\ - NK_ASSERT(type_stack->head < (int)NK_LEN(type_stack->elements));\ - if (type_stack->head >= (int)NK_LEN(type_stack->elements))\ - return 0;\ - element = &type_stack->elements[type_stack->head++];\ - element->address = address;\ - element->old_value = *address;\ - *address = value;\ - return 1;\ -} -#define NK_STYLE_POP_IMPLEMENATION(type, stack) \ -nk_style_pop_##type(struct nk_context *ctx)\ -{\ - struct nk_config_stack_##type *type_stack;\ - struct nk_config_stack_##type##_element *element;\ - NK_ASSERT(ctx);\ - if (!ctx) return 0;\ - type_stack = &ctx->stacks.stack;\ - NK_ASSERT(type_stack->head > 0);\ - if (type_stack->head < 1)\ - return 0;\ - element = &type_stack->elements[--type_stack->head];\ - *element->address = element->old_value;\ - return 1;\ -} -NK_API nk_bool NK_STYLE_PUSH_IMPLEMENATION(struct nk, style_item, style_items) -NK_API nk_bool NK_STYLE_PUSH_IMPLEMENATION(nk,float, floats) -NK_API nk_bool NK_STYLE_PUSH_IMPLEMENATION(struct nk, vec2, vectors) -NK_API nk_bool NK_STYLE_PUSH_IMPLEMENATION(nk,flags, flags) -NK_API nk_bool NK_STYLE_PUSH_IMPLEMENATION(struct nk,color, colors) - -NK_API nk_bool NK_STYLE_POP_IMPLEMENATION(style_item, style_items) -NK_API nk_bool NK_STYLE_POP_IMPLEMENATION(float,floats) -NK_API nk_bool NK_STYLE_POP_IMPLEMENATION(vec2, vectors) -NK_API nk_bool NK_STYLE_POP_IMPLEMENATION(flags,flags) -NK_API nk_bool NK_STYLE_POP_IMPLEMENATION(color,colors) - -NK_API nk_bool -nk_style_set_cursor(struct nk_context *ctx, enum nk_style_cursor c) -{ - struct nk_style *style; - NK_ASSERT(ctx); - if (!ctx) return 0; - style = &ctx->style; - if (style->cursors[c]) { - style->cursor_active = style->cursors[c]; - return 1; - } - return 0; -} -NK_API void -nk_style_show_cursor(struct nk_context *ctx) -{ - ctx->style.cursor_visible = nk_true; -} -NK_API void -nk_style_hide_cursor(struct nk_context *ctx) -{ - ctx->style.cursor_visible = nk_false; -} -NK_API void -nk_style_load_cursor(struct nk_context *ctx, enum nk_style_cursor cursor, - const struct nk_cursor *c) -{ - struct nk_style *style; - NK_ASSERT(ctx); - if (!ctx) return; - style = &ctx->style; - style->cursors[cursor] = c; -} -NK_API void -nk_style_load_all_cursors(struct nk_context *ctx, struct nk_cursor *cursors) -{ - int i = 0; - struct nk_style *style; - NK_ASSERT(ctx); - if (!ctx) return; - style = &ctx->style; - for (i = 0; i < NK_CURSOR_COUNT; ++i) - style->cursors[i] = &cursors[i]; - style->cursor_visible = nk_true; -} - - - - - -/* ============================================================== - * - * CONTEXT - * - * ===============================================================*/ -NK_INTERN void -nk_setup(struct nk_context *ctx, const struct nk_user_font *font) -{ - NK_ASSERT(ctx); - if (!ctx) return; - nk_zero_struct(*ctx); - nk_style_default(ctx); - ctx->seq = 1; - if (font) ctx->style.font = font; -#ifdef NK_INCLUDE_VERTEX_BUFFER_OUTPUT - nk_draw_list_init(&ctx->draw_list); -#endif -} -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API nk_bool -nk_init_default(struct nk_context *ctx, const struct nk_user_font *font) -{ - struct nk_allocator alloc; - alloc.userdata.ptr = 0; - alloc.alloc = nk_malloc; - alloc.free = nk_mfree; - return nk_init(ctx, &alloc, font); -} -#endif -NK_API nk_bool -nk_init_fixed(struct nk_context *ctx, void *memory, nk_size size, - const struct nk_user_font *font) -{ - NK_ASSERT(memory); - if (!memory) return 0; - nk_setup(ctx, font); - nk_buffer_init_fixed(&ctx->memory, memory, size); - ctx->use_pool = nk_false; - return 1; -} -NK_API nk_bool -nk_init_custom(struct nk_context *ctx, struct nk_buffer *cmds, - struct nk_buffer *pool, const struct nk_user_font *font) -{ - NK_ASSERT(cmds); - NK_ASSERT(pool); - if (!cmds || !pool) return 0; - - nk_setup(ctx, font); - ctx->memory = *cmds; - if (pool->type == NK_BUFFER_FIXED) { - /* take memory from buffer and alloc fixed pool */ - nk_pool_init_fixed(&ctx->pool, pool->memory.ptr, pool->memory.size); - } else { - /* create dynamic pool from buffer allocator */ - struct nk_allocator *alloc = &pool->pool; - nk_pool_init(&ctx->pool, alloc, NK_POOL_DEFAULT_CAPACITY); - } - ctx->use_pool = nk_true; - return 1; -} -NK_API nk_bool -nk_init(struct nk_context *ctx, struct nk_allocator *alloc, - const struct nk_user_font *font) -{ - NK_ASSERT(alloc); - if (!alloc) return 0; - nk_setup(ctx, font); - nk_buffer_init(&ctx->memory, alloc, NK_DEFAULT_COMMAND_BUFFER_SIZE); - nk_pool_init(&ctx->pool, alloc, NK_POOL_DEFAULT_CAPACITY); - ctx->use_pool = nk_true; - return 1; -} -#ifdef NK_INCLUDE_COMMAND_USERDATA -NK_API void -nk_set_user_data(struct nk_context *ctx, nk_handle handle) -{ - if (!ctx) return; - ctx->userdata = handle; - if (ctx->current) - ctx->current->buffer.userdata = handle; -} -#endif -NK_API void -nk_free(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - if (!ctx) return; - nk_buffer_free(&ctx->memory); - if (ctx->use_pool) - nk_pool_free(&ctx->pool); - - nk_zero(&ctx->input, sizeof(ctx->input)); - nk_zero(&ctx->style, sizeof(ctx->style)); - nk_zero(&ctx->memory, sizeof(ctx->memory)); - - ctx->seq = 0; - ctx->build = 0; - ctx->begin = 0; - ctx->end = 0; - ctx->active = 0; - ctx->current = 0; - ctx->freelist = 0; - ctx->count = 0; -} -NK_API void -nk_clear(struct nk_context *ctx) -{ - struct nk_window *iter; - struct nk_window *next; - NK_ASSERT(ctx); - - if (!ctx) return; - if (ctx->use_pool) - nk_buffer_clear(&ctx->memory); - else nk_buffer_reset(&ctx->memory, NK_BUFFER_FRONT); - - ctx->build = 0; - ctx->memory.calls = 0; - ctx->last_widget_state = 0; - ctx->style.cursor_active = ctx->style.cursors[NK_CURSOR_ARROW]; - NK_MEMSET(&ctx->overlay, 0, sizeof(ctx->overlay)); - - /* garbage collector */ - iter = ctx->begin; - while (iter) { - /* make sure valid minimized windows do not get removed */ - if ((iter->flags & NK_WINDOW_MINIMIZED) && - !(iter->flags & NK_WINDOW_CLOSED) && - iter->seq == ctx->seq) { - iter = iter->next; - continue; - } - /* remove hotness from hidden or closed windows*/ - if (((iter->flags & NK_WINDOW_HIDDEN) || - (iter->flags & NK_WINDOW_CLOSED)) && - iter == ctx->active) { - ctx->active = iter->prev; - ctx->end = iter->prev; - if (!ctx->end) - ctx->begin = 0; - if (ctx->active) - ctx->active->flags &= ~(unsigned)NK_WINDOW_ROM; - } - /* free unused popup windows */ - if (iter->popup.win && iter->popup.win->seq != ctx->seq) { - nk_free_window(ctx, iter->popup.win); - iter->popup.win = 0; - } - /* remove unused window state tables */ - {struct nk_table *n, *it = iter->tables; - while (it) { - n = it->next; - if (it->seq != ctx->seq) { - nk_remove_table(iter, it); - nk_zero(it, sizeof(union nk_page_data)); - nk_free_table(ctx, it); - if (it == iter->tables) - iter->tables = n; - } it = n; - }} - /* window itself is not used anymore so free */ - if (iter->seq != ctx->seq || iter->flags & NK_WINDOW_CLOSED) { - next = iter->next; - nk_remove_window(ctx, iter); - nk_free_window(ctx, iter); - iter = next; - } else iter = iter->next; - } - ctx->seq++; -} -NK_LIB void -nk_start_buffer(struct nk_context *ctx, struct nk_command_buffer *buffer) -{ - NK_ASSERT(ctx); - NK_ASSERT(buffer); - if (!ctx || !buffer) return; - buffer->begin = ctx->memory.allocated; - buffer->end = buffer->begin; - buffer->last = buffer->begin; - buffer->clip = nk_null_rect; -} -NK_LIB void -nk_start(struct nk_context *ctx, struct nk_window *win) -{ - NK_ASSERT(ctx); - NK_ASSERT(win); - nk_start_buffer(ctx, &win->buffer); -} -NK_LIB void -nk_start_popup(struct nk_context *ctx, struct nk_window *win) -{ - struct nk_popup_buffer *buf; - NK_ASSERT(ctx); - NK_ASSERT(win); - if (!ctx || !win) return; - - /* save buffer fill state for popup */ - buf = &win->popup.buf; - buf->begin = win->buffer.end; - buf->end = win->buffer.end; - buf->parent = win->buffer.last; - buf->last = buf->begin; - buf->active = nk_true; -} -NK_LIB void -nk_finish_popup(struct nk_context *ctx, struct nk_window *win) -{ - struct nk_popup_buffer *buf; - NK_ASSERT(ctx); - NK_ASSERT(win); - if (!ctx || !win) return; - - buf = &win->popup.buf; - buf->last = win->buffer.last; - buf->end = win->buffer.end; -} -NK_LIB void -nk_finish_buffer(struct nk_context *ctx, struct nk_command_buffer *buffer) -{ - NK_ASSERT(ctx); - NK_ASSERT(buffer); - if (!ctx || !buffer) return; - buffer->end = ctx->memory.allocated; -} -NK_LIB void -nk_finish(struct nk_context *ctx, struct nk_window *win) -{ - struct nk_popup_buffer *buf; - struct nk_command *parent_last; - void *memory; - - NK_ASSERT(ctx); - NK_ASSERT(win); - if (!ctx || !win) return; - nk_finish_buffer(ctx, &win->buffer); - if (!win->popup.buf.active) return; - - buf = &win->popup.buf; - memory = ctx->memory.memory.ptr; - parent_last = nk_ptr_add(struct nk_command, memory, buf->parent); - parent_last->next = buf->end; -} -NK_LIB void -nk_build(struct nk_context *ctx) -{ - struct nk_window *it = 0; - struct nk_command *cmd = 0; - nk_byte *buffer = 0; - - /* draw cursor overlay */ - if (!ctx->style.cursor_active) - ctx->style.cursor_active = ctx->style.cursors[NK_CURSOR_ARROW]; - if (ctx->style.cursor_active && !ctx->input.mouse.grabbed && ctx->style.cursor_visible) { - struct nk_rect mouse_bounds; - const struct nk_cursor *cursor = ctx->style.cursor_active; - nk_command_buffer_init(&ctx->overlay, &ctx->memory, NK_CLIPPING_OFF); - nk_start_buffer(ctx, &ctx->overlay); - - mouse_bounds.x = ctx->input.mouse.pos.x - cursor->offset.x; - mouse_bounds.y = ctx->input.mouse.pos.y - cursor->offset.y; - mouse_bounds.w = cursor->size.x; - mouse_bounds.h = cursor->size.y; - - nk_draw_image(&ctx->overlay, mouse_bounds, &cursor->img, nk_white); - nk_finish_buffer(ctx, &ctx->overlay); - } - /* build one big draw command list out of all window buffers */ - it = ctx->begin; - buffer = (nk_byte*)ctx->memory.memory.ptr; - while (it != 0) { - struct nk_window *next = it->next; - if (it->buffer.last == it->buffer.begin || (it->flags & NK_WINDOW_HIDDEN)|| - it->seq != ctx->seq) - goto cont; - - cmd = nk_ptr_add(struct nk_command, buffer, it->buffer.last); - while (next && ((next->buffer.last == next->buffer.begin) || - (next->flags & NK_WINDOW_HIDDEN) || next->seq != ctx->seq)) - next = next->next; /* skip empty command buffers */ - - if (next) cmd->next = next->buffer.begin; - cont: it = next; - } - /* append all popup draw commands into lists */ - it = ctx->begin; - while (it != 0) { - struct nk_window *next = it->next; - struct nk_popup_buffer *buf; - if (!it->popup.buf.active) - goto skip; - - buf = &it->popup.buf; - cmd->next = buf->begin; - cmd = nk_ptr_add(struct nk_command, buffer, buf->last); - buf->active = nk_false; - skip: it = next; - } - if (cmd) { - /* append overlay commands */ - if (ctx->overlay.end != ctx->overlay.begin) - cmd->next = ctx->overlay.begin; - else cmd->next = ctx->memory.allocated; - } -} -NK_API const struct nk_command* -nk__begin(struct nk_context *ctx) -{ - struct nk_window *iter; - nk_byte *buffer; - NK_ASSERT(ctx); - if (!ctx) return 0; - if (!ctx->count) return 0; - - buffer = (nk_byte*)ctx->memory.memory.ptr; - if (!ctx->build) { - nk_build(ctx); - ctx->build = nk_true; - } - iter = ctx->begin; - while (iter && ((iter->buffer.begin == iter->buffer.end) || - (iter->flags & NK_WINDOW_HIDDEN) || iter->seq != ctx->seq)) - iter = iter->next; - if (!iter) return 0; - return nk_ptr_add_const(struct nk_command, buffer, iter->buffer.begin); -} - -NK_API const struct nk_command* -nk__next(struct nk_context *ctx, const struct nk_command *cmd) -{ - nk_byte *buffer; - const struct nk_command *next; - NK_ASSERT(ctx); - if (!ctx || !cmd || !ctx->count) return 0; - if (cmd->next >= ctx->memory.allocated) return 0; - buffer = (nk_byte*)ctx->memory.memory.ptr; - next = nk_ptr_add_const(struct nk_command, buffer, cmd->next); - return next; -} - - - - - - -/* =============================================================== - * - * POOL - * - * ===============================================================*/ -NK_LIB void -nk_pool_init(struct nk_pool *pool, struct nk_allocator *alloc, - unsigned int capacity) -{ - NK_ASSERT(capacity >= 1); - nk_zero(pool, sizeof(*pool)); - pool->alloc = *alloc; - pool->capacity = capacity; - pool->type = NK_BUFFER_DYNAMIC; - pool->pages = 0; -} -NK_LIB void -nk_pool_free(struct nk_pool *pool) -{ - struct nk_page *iter; - if (!pool) return; - iter = pool->pages; - if (pool->type == NK_BUFFER_FIXED) return; - while (iter) { - struct nk_page *next = iter->next; - pool->alloc.free(pool->alloc.userdata, iter); - iter = next; - } -} -NK_LIB void -nk_pool_init_fixed(struct nk_pool *pool, void *memory, nk_size size) -{ - nk_zero(pool, sizeof(*pool)); - NK_ASSERT(size >= sizeof(struct nk_page)); - if (size < sizeof(struct nk_page)) return; - /* first nk_page_element is embedded in nk_page, additional elements follow in adjacent space */ - pool->capacity = (unsigned)(1 + (size - sizeof(struct nk_page)) / sizeof(struct nk_page_element)); - pool->pages = (struct nk_page*)memory; - pool->type = NK_BUFFER_FIXED; - pool->size = size; -} -NK_LIB struct nk_page_element* -nk_pool_alloc(struct nk_pool *pool) -{ - if (!pool->pages || pool->pages->size >= pool->capacity) { - /* allocate new page */ - struct nk_page *page; - if (pool->type == NK_BUFFER_FIXED) { - NK_ASSERT(pool->pages); - if (!pool->pages) return 0; - NK_ASSERT(pool->pages->size < pool->capacity); - return 0; - } else { - nk_size size = sizeof(struct nk_page); - size += (pool->capacity - 1) * sizeof(struct nk_page_element); - page = (struct nk_page*)pool->alloc.alloc(pool->alloc.userdata,0, size); - page->next = pool->pages; - pool->pages = page; - page->size = 0; - } - } return &pool->pages->win[pool->pages->size++]; -} - - - - - -/* =============================================================== - * - * PAGE ELEMENT - * - * ===============================================================*/ -NK_LIB struct nk_page_element* -nk_create_page_element(struct nk_context *ctx) -{ - struct nk_page_element *elem; - if (ctx->freelist) { - /* unlink page element from free list */ - elem = ctx->freelist; - ctx->freelist = elem->next; - } else if (ctx->use_pool) { - /* allocate page element from memory pool */ - elem = nk_pool_alloc(&ctx->pool); - NK_ASSERT(elem); - if (!elem) return 0; - } else { - /* allocate new page element from back of fixed size memory buffer */ - NK_STORAGE const nk_size size = sizeof(struct nk_page_element); - NK_STORAGE const nk_size align = NK_ALIGNOF(struct nk_page_element); - elem = (struct nk_page_element*)nk_buffer_alloc(&ctx->memory, NK_BUFFER_BACK, size, align); - NK_ASSERT(elem); - if (!elem) return 0; - } - nk_zero_struct(*elem); - elem->next = 0; - elem->prev = 0; - return elem; -} -NK_LIB void -nk_link_page_element_into_freelist(struct nk_context *ctx, - struct nk_page_element *elem) -{ - /* link table into freelist */ - if (!ctx->freelist) { - ctx->freelist = elem; - } else { - elem->next = ctx->freelist; - ctx->freelist = elem; - } -} -NK_LIB void -nk_free_page_element(struct nk_context *ctx, struct nk_page_element *elem) -{ - /* we have a pool so just add to free list */ - if (ctx->use_pool) { - nk_link_page_element_into_freelist(ctx, elem); - return; - } - /* if possible remove last element from back of fixed memory buffer */ - {void *elem_end = (void*)(elem + 1); - void *buffer_end = (nk_byte*)ctx->memory.memory.ptr + ctx->memory.size; - if (elem_end == buffer_end) - ctx->memory.size -= sizeof(struct nk_page_element); - else nk_link_page_element_into_freelist(ctx, elem);} -} - - - - - -/* =============================================================== - * - * TABLE - * - * ===============================================================*/ -NK_LIB struct nk_table* -nk_create_table(struct nk_context *ctx) -{ - struct nk_page_element *elem; - elem = nk_create_page_element(ctx); - if (!elem) return 0; - nk_zero_struct(*elem); - return &elem->data.tbl; -} -NK_LIB void -nk_free_table(struct nk_context *ctx, struct nk_table *tbl) -{ - union nk_page_data *pd = NK_CONTAINER_OF(tbl, union nk_page_data, tbl); - struct nk_page_element *pe = NK_CONTAINER_OF(pd, struct nk_page_element, data); - nk_free_page_element(ctx, pe); -} -NK_LIB void -nk_push_table(struct nk_window *win, struct nk_table *tbl) -{ - if (!win->tables) { - win->tables = tbl; - tbl->next = 0; - tbl->prev = 0; - tbl->size = 0; - win->table_count = 1; - return; - } - win->tables->prev = tbl; - tbl->next = win->tables; - tbl->prev = 0; - tbl->size = 0; - win->tables = tbl; - win->table_count++; -} -NK_LIB void -nk_remove_table(struct nk_window *win, struct nk_table *tbl) -{ - if (win->tables == tbl) - win->tables = tbl->next; - if (tbl->next) - tbl->next->prev = tbl->prev; - if (tbl->prev) - tbl->prev->next = tbl->next; - tbl->next = 0; - tbl->prev = 0; -} -NK_LIB nk_uint* -nk_add_value(struct nk_context *ctx, struct nk_window *win, - nk_hash name, nk_uint value) -{ - NK_ASSERT(ctx); - NK_ASSERT(win); - if (!win || !ctx) return 0; - if (!win->tables || win->tables->size >= NK_VALUE_PAGE_CAPACITY) { - struct nk_table *tbl = nk_create_table(ctx); - NK_ASSERT(tbl); - if (!tbl) return 0; - nk_push_table(win, tbl); - } - win->tables->seq = win->seq; - win->tables->keys[win->tables->size] = name; - win->tables->values[win->tables->size] = value; - return &win->tables->values[win->tables->size++]; -} -NK_LIB nk_uint* -nk_find_value(struct nk_window *win, nk_hash name) -{ - struct nk_table *iter = win->tables; - while (iter) { - unsigned int i = 0; - unsigned int size = iter->size; - for (i = 0; i < size; ++i) { - if (iter->keys[i] == name) { - iter->seq = win->seq; - return &iter->values[i]; - } - } size = NK_VALUE_PAGE_CAPACITY; - iter = iter->next; - } - return 0; -} - - - - - -/* =============================================================== - * - * PANEL - * - * ===============================================================*/ -NK_LIB void* -nk_create_panel(struct nk_context *ctx) -{ - struct nk_page_element *elem; - elem = nk_create_page_element(ctx); - if (!elem) return 0; - nk_zero_struct(*elem); - return &elem->data.pan; -} -NK_LIB void -nk_free_panel(struct nk_context *ctx, struct nk_panel *pan) -{ - union nk_page_data *pd = NK_CONTAINER_OF(pan, union nk_page_data, pan); - struct nk_page_element *pe = NK_CONTAINER_OF(pd, struct nk_page_element, data); - nk_free_page_element(ctx, pe); -} -NK_LIB nk_bool -nk_panel_has_header(nk_flags flags, const char *title) -{ - nk_bool active = 0; - active = (flags & (NK_WINDOW_CLOSABLE|NK_WINDOW_MINIMIZABLE)); - active = active || (flags & NK_WINDOW_TITLE); - active = active && !(flags & NK_WINDOW_HIDDEN) && title; - return active; -} -NK_LIB struct nk_vec2 -nk_panel_get_padding(const struct nk_style *style, enum nk_panel_type type) -{ - switch (type) { - default: - case NK_PANEL_WINDOW: return style->window.padding; - case NK_PANEL_GROUP: return style->window.group_padding; - case NK_PANEL_POPUP: return style->window.popup_padding; - case NK_PANEL_CONTEXTUAL: return style->window.contextual_padding; - case NK_PANEL_COMBO: return style->window.combo_padding; - case NK_PANEL_MENU: return style->window.menu_padding; - case NK_PANEL_TOOLTIP: return style->window.menu_padding;} -} -NK_LIB float -nk_panel_get_border(const struct nk_style *style, nk_flags flags, - enum nk_panel_type type) -{ - if (flags & NK_WINDOW_BORDER) { - switch (type) { - default: - case NK_PANEL_WINDOW: return style->window.border; - case NK_PANEL_GROUP: return style->window.group_border; - case NK_PANEL_POPUP: return style->window.popup_border; - case NK_PANEL_CONTEXTUAL: return style->window.contextual_border; - case NK_PANEL_COMBO: return style->window.combo_border; - case NK_PANEL_MENU: return style->window.menu_border; - case NK_PANEL_TOOLTIP: return style->window.menu_border; - }} else return 0; -} -NK_LIB struct nk_color -nk_panel_get_border_color(const struct nk_style *style, enum nk_panel_type type) -{ - switch (type) { - default: - case NK_PANEL_WINDOW: return style->window.border_color; - case NK_PANEL_GROUP: return style->window.group_border_color; - case NK_PANEL_POPUP: return style->window.popup_border_color; - case NK_PANEL_CONTEXTUAL: return style->window.contextual_border_color; - case NK_PANEL_COMBO: return style->window.combo_border_color; - case NK_PANEL_MENU: return style->window.menu_border_color; - case NK_PANEL_TOOLTIP: return style->window.menu_border_color;} -} -NK_LIB nk_bool -nk_panel_is_sub(enum nk_panel_type type) -{ - return (type & NK_PANEL_SET_SUB)?1:0; -} -NK_LIB nk_bool -nk_panel_is_nonblock(enum nk_panel_type type) -{ - return (type & NK_PANEL_SET_NONBLOCK)?1:0; -} -NK_LIB nk_bool -nk_panel_begin(struct nk_context *ctx, const char *title, enum nk_panel_type panel_type) -{ - struct nk_input *in; - struct nk_window *win; - struct nk_panel *layout; - struct nk_command_buffer *out; - const struct nk_style *style; - const struct nk_user_font *font; - - struct nk_vec2 scrollbar_size; - struct nk_vec2 panel_padding; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return 0; - nk_zero(ctx->current->layout, sizeof(*ctx->current->layout)); - if ((ctx->current->flags & NK_WINDOW_HIDDEN) || (ctx->current->flags & NK_WINDOW_CLOSED)) { - nk_zero(ctx->current->layout, sizeof(struct nk_panel)); - ctx->current->layout->type = panel_type; - return 0; - } - /* pull state into local stack */ - style = &ctx->style; - font = style->font; - win = ctx->current; - layout = win->layout; - out = &win->buffer; - in = (win->flags & NK_WINDOW_NO_INPUT) ? 0: &ctx->input; -#ifdef NK_INCLUDE_COMMAND_USERDATA - win->buffer.userdata = ctx->userdata; -#endif - /* pull style configuration into local stack */ - scrollbar_size = style->window.scrollbar_size; - panel_padding = nk_panel_get_padding(style, panel_type); - - /* window movement */ - if ((win->flags & NK_WINDOW_MOVABLE) && !(win->flags & NK_WINDOW_ROM)) { - nk_bool left_mouse_down; - unsigned int left_mouse_clicked; - int left_mouse_click_in_cursor; - - /* calculate draggable window space */ - struct nk_rect header; - header.x = win->bounds.x; - header.y = win->bounds.y; - header.w = win->bounds.w; - if (nk_panel_has_header(win->flags, title)) { - header.h = font->height + 2.0f * style->window.header.padding.y; - header.h += 2.0f * style->window.header.label_padding.y; - } else header.h = panel_padding.y; - - /* window movement by dragging */ - left_mouse_down = in->mouse.buttons[NK_BUTTON_LEFT].down; - left_mouse_clicked = in->mouse.buttons[NK_BUTTON_LEFT].clicked; - left_mouse_click_in_cursor = nk_input_has_mouse_click_down_in_rect(in, - NK_BUTTON_LEFT, header, nk_true); - if (left_mouse_down && left_mouse_click_in_cursor && !left_mouse_clicked) { - win->bounds.x = win->bounds.x + in->mouse.delta.x; - win->bounds.y = win->bounds.y + in->mouse.delta.y; - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.x += in->mouse.delta.x; - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.y += in->mouse.delta.y; - ctx->style.cursor_active = ctx->style.cursors[NK_CURSOR_MOVE]; - } - } - - /* setup panel */ - layout->type = panel_type; - layout->flags = win->flags; - layout->bounds = win->bounds; - layout->bounds.x += panel_padding.x; - layout->bounds.w -= 2*panel_padding.x; - if (win->flags & NK_WINDOW_BORDER) { - layout->border = nk_panel_get_border(style, win->flags, panel_type); - layout->bounds = nk_shrink_rect(layout->bounds, layout->border); - } else layout->border = 0; - layout->at_y = layout->bounds.y; - layout->at_x = layout->bounds.x; - layout->max_x = 0; - layout->header_height = 0; - layout->footer_height = 0; - nk_layout_reset_min_row_height(ctx); - layout->row.index = 0; - layout->row.columns = 0; - layout->row.ratio = 0; - layout->row.item_width = 0; - layout->row.tree_depth = 0; - layout->row.height = panel_padding.y; - layout->has_scrolling = nk_true; - if (!(win->flags & NK_WINDOW_NO_SCROLLBAR)) - layout->bounds.w -= scrollbar_size.x; - if (!nk_panel_is_nonblock(panel_type)) { - layout->footer_height = 0; - if (!(win->flags & NK_WINDOW_NO_SCROLLBAR) || win->flags & NK_WINDOW_SCALABLE) - layout->footer_height = scrollbar_size.y; - layout->bounds.h -= layout->footer_height; - } - - /* panel header */ - if (nk_panel_has_header(win->flags, title)) - { - struct nk_text text; - struct nk_rect header; - const struct nk_style_item *background = 0; - - /* calculate header bounds */ - header.x = win->bounds.x; - header.y = win->bounds.y; - header.w = win->bounds.w; - header.h = font->height + 2.0f * style->window.header.padding.y; - header.h += (2.0f * style->window.header.label_padding.y); - - /* shrink panel by header */ - layout->header_height = header.h; - layout->bounds.y += header.h; - layout->bounds.h -= header.h; - layout->at_y += header.h; - - /* select correct header background and text color */ - if (ctx->active == win) { - background = &style->window.header.active; - text.text = style->window.header.label_active; - } else if (nk_input_is_mouse_hovering_rect(&ctx->input, header)) { - background = &style->window.header.hover; - text.text = style->window.header.label_hover; - } else { - background = &style->window.header.normal; - text.text = style->window.header.label_normal; - } - - /* draw header background */ - header.h += 1.0f; - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0,0,0,0); - nk_draw_image(&win->buffer, header, &background->data.image, nk_white); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_white); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(out, header, 0, background->data.color); - break; - } - - /* window close button */ - {struct nk_rect button; - button.y = header.y + style->window.header.padding.y; - button.h = header.h - 2 * style->window.header.padding.y; - button.w = button.h; - if (win->flags & NK_WINDOW_CLOSABLE) { - nk_flags ws = 0; - if (style->window.header.align == NK_HEADER_RIGHT) { - button.x = (header.w + header.x) - (button.w + style->window.header.padding.x); - header.w -= button.w + style->window.header.spacing.x + style->window.header.padding.x; - } else { - button.x = header.x + style->window.header.padding.x; - header.x += button.w + style->window.header.spacing.x + style->window.header.padding.x; - } - - if (nk_do_button_symbol(&ws, &win->buffer, button, - style->window.header.close_symbol, NK_BUTTON_DEFAULT, - &style->window.header.close_button, in, style->font) && !(win->flags & NK_WINDOW_ROM)) - { - layout->flags |= NK_WINDOW_HIDDEN; - layout->flags &= (nk_flags)~NK_WINDOW_MINIMIZED; - } - } - - /* window minimize button */ - if (win->flags & NK_WINDOW_MINIMIZABLE) { - nk_flags ws = 0; - if (style->window.header.align == NK_HEADER_RIGHT) { - button.x = (header.w + header.x) - button.w; - if (!(win->flags & NK_WINDOW_CLOSABLE)) { - button.x -= style->window.header.padding.x; - header.w -= style->window.header.padding.x; - } - header.w -= button.w + style->window.header.spacing.x; - } else { - button.x = header.x; - header.x += button.w + style->window.header.spacing.x + style->window.header.padding.x; - } - if (nk_do_button_symbol(&ws, &win->buffer, button, (layout->flags & NK_WINDOW_MINIMIZED)? - style->window.header.maximize_symbol: style->window.header.minimize_symbol, - NK_BUTTON_DEFAULT, &style->window.header.minimize_button, in, style->font) && !(win->flags & NK_WINDOW_ROM)) - layout->flags = (layout->flags & NK_WINDOW_MINIMIZED) ? - layout->flags & (nk_flags)~NK_WINDOW_MINIMIZED: - layout->flags | NK_WINDOW_MINIMIZED; - }} - - {/* window header title */ - int text_len = nk_strlen(title); - struct nk_rect label = {0,0,0,0}; - float t = font->width(font->userdata, font->height, title, text_len); - text.padding = nk_vec2(0,0); - - label.x = header.x + style->window.header.padding.x; - label.x += style->window.header.label_padding.x; - label.y = header.y + style->window.header.label_padding.y; - label.h = font->height + 2 * style->window.header.label_padding.y; - label.w = t + 2 * style->window.header.spacing.x; - label.w = NK_CLAMP(0, label.w, header.x + header.w - label.x); - nk_widget_text(out, label, (const char*)title, text_len, &text, NK_TEXT_LEFT, font);} - } - - /* draw window background */ - if (!(layout->flags & NK_WINDOW_MINIMIZED) && !(layout->flags & NK_WINDOW_DYNAMIC)) { - struct nk_rect body; - body.x = win->bounds.x; - body.w = win->bounds.w; - body.y = (win->bounds.y + layout->header_height); - body.h = (win->bounds.h - layout->header_height); - - switch(style->window.fixed_background.type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, body, &style->window.fixed_background.data.image, nk_white); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, body, &style->window.fixed_background.data.slice, nk_white); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, body, 0, style->window.fixed_background.data.color); - break; - } - } - - /* set clipping rectangle */ - {struct nk_rect clip; - layout->clip = layout->bounds; - nk_unify(&clip, &win->buffer.clip, layout->clip.x, layout->clip.y, - layout->clip.x + layout->clip.w, layout->clip.y + layout->clip.h); - nk_push_scissor(out, clip); - layout->clip = clip;} - return !(layout->flags & NK_WINDOW_HIDDEN) && !(layout->flags & NK_WINDOW_MINIMIZED); -} -NK_LIB void -nk_panel_end(struct nk_context *ctx) -{ - struct nk_input *in; - struct nk_window *window; - struct nk_panel *layout; - const struct nk_style *style; - struct nk_command_buffer *out; - - struct nk_vec2 scrollbar_size; - struct nk_vec2 panel_padding; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - window = ctx->current; - layout = window->layout; - style = &ctx->style; - out = &window->buffer; - in = (layout->flags & NK_WINDOW_ROM || layout->flags & NK_WINDOW_NO_INPUT) ? 0 :&ctx->input; - if (!nk_panel_is_sub(layout->type)) - nk_push_scissor(out, nk_null_rect); - - /* cache configuration data */ - scrollbar_size = style->window.scrollbar_size; - panel_padding = nk_panel_get_padding(style, layout->type); - - /* update the current cursor Y-position to point over the last added widget */ - layout->at_y += layout->row.height; - - /* dynamic panels */ - if (layout->flags & NK_WINDOW_DYNAMIC && !(layout->flags & NK_WINDOW_MINIMIZED)) - { - /* update panel height to fit dynamic growth */ - struct nk_rect empty_space; - if (layout->at_y < (layout->bounds.y + layout->bounds.h)) - layout->bounds.h = layout->at_y - layout->bounds.y; - - /* fill top empty space */ - empty_space.x = window->bounds.x; - empty_space.y = layout->bounds.y; - empty_space.h = panel_padding.y; - empty_space.w = window->bounds.w; - nk_fill_rect(out, empty_space, 0, style->window.background); - - /* fill left empty space */ - empty_space.x = window->bounds.x; - empty_space.y = layout->bounds.y; - empty_space.w = panel_padding.x + layout->border; - empty_space.h = layout->bounds.h; - nk_fill_rect(out, empty_space, 0, style->window.background); - - /* fill right empty space */ - empty_space.x = layout->bounds.x + layout->bounds.w; - empty_space.y = layout->bounds.y; - empty_space.w = panel_padding.x + layout->border; - empty_space.h = layout->bounds.h; - if (*layout->offset_y == 0 && !(layout->flags & NK_WINDOW_NO_SCROLLBAR)) - empty_space.w += scrollbar_size.x; - nk_fill_rect(out, empty_space, 0, style->window.background); - - /* fill bottom empty space */ - if (layout->footer_height > 0) { - empty_space.x = window->bounds.x; - empty_space.y = layout->bounds.y + layout->bounds.h; - empty_space.w = window->bounds.w; - empty_space.h = layout->footer_height; - nk_fill_rect(out, empty_space, 0, style->window.background); - } - } - - /* scrollbars */ - if (!(layout->flags & NK_WINDOW_NO_SCROLLBAR) && - !(layout->flags & NK_WINDOW_MINIMIZED) && - window->scrollbar_hiding_timer < NK_SCROLLBAR_HIDING_TIMEOUT) - { - struct nk_rect scroll; - int scroll_has_scrolling; - float scroll_target; - float scroll_offset; - float scroll_step; - float scroll_inc; - - /* mouse wheel scrolling */ - if (nk_panel_is_sub(layout->type)) - { - /* sub-window mouse wheel scrolling */ - struct nk_window *root_window = window; - struct nk_panel *root_panel = window->layout; - while (root_panel->parent) - root_panel = root_panel->parent; - while (root_window->parent) - root_window = root_window->parent; - - /* only allow scrolling if parent window is active */ - scroll_has_scrolling = 0; - if ((root_window == ctx->active) && layout->has_scrolling) { - /* and panel is being hovered and inside clip rect*/ - if (nk_input_is_mouse_hovering_rect(in, layout->bounds) && - NK_INTERSECT(layout->bounds.x, layout->bounds.y, layout->bounds.w, layout->bounds.h, - root_panel->clip.x, root_panel->clip.y, root_panel->clip.w, root_panel->clip.h)) - { - /* deactivate all parent scrolling */ - root_panel = window->layout; - while (root_panel->parent) { - root_panel->has_scrolling = nk_false; - root_panel = root_panel->parent; - } - root_panel->has_scrolling = nk_false; - scroll_has_scrolling = nk_true; - } - } - } else if (!nk_panel_is_sub(layout->type)) { - /* window mouse wheel scrolling */ - scroll_has_scrolling = (window == ctx->active) && layout->has_scrolling; - if (in && (in->mouse.scroll_delta.y > 0 || in->mouse.scroll_delta.x > 0) && scroll_has_scrolling) - window->scrolled = nk_true; - else window->scrolled = nk_false; - } else scroll_has_scrolling = nk_false; - - { - /* vertical scrollbar */ - nk_flags state = 0; - scroll.x = layout->bounds.x + layout->bounds.w + panel_padding.x; - scroll.y = layout->bounds.y; - scroll.w = scrollbar_size.x; - scroll.h = layout->bounds.h; - - scroll_offset = (float)*layout->offset_y; - scroll_step = scroll.h * 0.10f; - scroll_inc = scroll.h * 0.01f; - scroll_target = (float)(int)(layout->at_y - scroll.y); - scroll_offset = nk_do_scrollbarv(&state, out, scroll, scroll_has_scrolling, - scroll_offset, scroll_target, scroll_step, scroll_inc, - &ctx->style.scrollv, in, style->font); - *layout->offset_y = (nk_uint)scroll_offset; - if (in && scroll_has_scrolling) - in->mouse.scroll_delta.y = 0; - } - { - /* horizontal scrollbar */ - nk_flags state = 0; - scroll.x = layout->bounds.x; - scroll.y = layout->bounds.y + layout->bounds.h; - scroll.w = layout->bounds.w; - scroll.h = scrollbar_size.y; - - scroll_offset = (float)*layout->offset_x; - scroll_target = (float)(int)(layout->max_x - scroll.x); - scroll_step = layout->max_x * 0.05f; - scroll_inc = layout->max_x * 0.005f; - scroll_offset = nk_do_scrollbarh(&state, out, scroll, scroll_has_scrolling, - scroll_offset, scroll_target, scroll_step, scroll_inc, - &ctx->style.scrollh, in, style->font); - *layout->offset_x = (nk_uint)scroll_offset; - } - } - - /* hide scroll if no user input */ - if (window->flags & NK_WINDOW_SCROLL_AUTO_HIDE) { - int has_input = ctx->input.mouse.delta.x != 0 || ctx->input.mouse.delta.y != 0 || ctx->input.mouse.scroll_delta.y != 0; - int is_window_hovered = nk_window_is_hovered(ctx); - int any_item_active = (ctx->last_widget_state & NK_WIDGET_STATE_MODIFIED); - if ((!has_input && is_window_hovered) || (!is_window_hovered && !any_item_active)) - window->scrollbar_hiding_timer += ctx->delta_time_seconds; - else window->scrollbar_hiding_timer = 0; - } else window->scrollbar_hiding_timer = 0; - - /* window border */ - if (layout->flags & NK_WINDOW_BORDER) - { - struct nk_color border_color = nk_panel_get_border_color(style, layout->type); - const float padding_y = (layout->flags & NK_WINDOW_MINIMIZED) - ? (style->window.border + window->bounds.y + layout->header_height) - : ((layout->flags & NK_WINDOW_DYNAMIC) - ? (layout->bounds.y + layout->bounds.h + layout->footer_height) - : (window->bounds.y + window->bounds.h)); - struct nk_rect b = window->bounds; - b.h = padding_y - window->bounds.y; - nk_stroke_rect(out, b, 0, layout->border, border_color); - } - - /* scaler */ - if ((layout->flags & NK_WINDOW_SCALABLE) && in && !(layout->flags & NK_WINDOW_MINIMIZED)) - { - /* calculate scaler bounds */ - struct nk_rect scaler; - scaler.w = scrollbar_size.x; - scaler.h = scrollbar_size.y; - scaler.y = layout->bounds.y + layout->bounds.h; - if (layout->flags & NK_WINDOW_SCALE_LEFT) - scaler.x = layout->bounds.x - panel_padding.x * 0.5f; - else scaler.x = layout->bounds.x + layout->bounds.w + panel_padding.x; - if (layout->flags & NK_WINDOW_NO_SCROLLBAR) - scaler.x -= scaler.w; - - /* draw scaler */ - {const struct nk_style_item *item = &style->window.scaler; - if (item->type == NK_STYLE_ITEM_IMAGE) - nk_draw_image(out, scaler, &item->data.image, nk_white); - else { - if (layout->flags & NK_WINDOW_SCALE_LEFT) { - nk_fill_triangle(out, scaler.x, scaler.y, scaler.x, - scaler.y + scaler.h, scaler.x + scaler.w, - scaler.y + scaler.h, item->data.color); - } else { - nk_fill_triangle(out, scaler.x + scaler.w, scaler.y, scaler.x + scaler.w, - scaler.y + scaler.h, scaler.x, scaler.y + scaler.h, item->data.color); - } - }} - - /* do window scaling */ - if (!(window->flags & NK_WINDOW_ROM)) { - struct nk_vec2 window_size = style->window.min_size; - int left_mouse_down = in->mouse.buttons[NK_BUTTON_LEFT].down; - int left_mouse_click_in_scaler = nk_input_has_mouse_click_down_in_rect(in, - NK_BUTTON_LEFT, scaler, nk_true); - - if (left_mouse_down && left_mouse_click_in_scaler) { - float delta_x = in->mouse.delta.x; - if (layout->flags & NK_WINDOW_SCALE_LEFT) { - delta_x = -delta_x; - window->bounds.x += in->mouse.delta.x; - } - /* dragging in x-direction */ - if (window->bounds.w + delta_x >= window_size.x) { - if ((delta_x < 0) || (delta_x > 0 && in->mouse.pos.x >= scaler.x)) { - window->bounds.w = window->bounds.w + delta_x; - scaler.x += in->mouse.delta.x; - } - } - /* dragging in y-direction (only possible if static window) */ - if (!(layout->flags & NK_WINDOW_DYNAMIC)) { - if (window_size.y < window->bounds.h + in->mouse.delta.y) { - if ((in->mouse.delta.y < 0) || (in->mouse.delta.y > 0 && in->mouse.pos.y >= scaler.y)) { - window->bounds.h = window->bounds.h + in->mouse.delta.y; - scaler.y += in->mouse.delta.y; - } - } - } - ctx->style.cursor_active = ctx->style.cursors[NK_CURSOR_RESIZE_TOP_RIGHT_DOWN_LEFT]; - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.x = scaler.x + scaler.w/2.0f; - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.y = scaler.y + scaler.h/2.0f; - } - } - } - if (!nk_panel_is_sub(layout->type)) { - /* window is hidden so clear command buffer */ - if (layout->flags & NK_WINDOW_HIDDEN) - nk_command_buffer_reset(&window->buffer); - /* window is visible and not tab */ - else nk_finish(ctx, window); - } - - /* NK_WINDOW_REMOVE_ROM flag was set so remove NK_WINDOW_ROM */ - if (layout->flags & NK_WINDOW_REMOVE_ROM) { - layout->flags &= ~(nk_flags)NK_WINDOW_ROM; - layout->flags &= ~(nk_flags)NK_WINDOW_REMOVE_ROM; - } - window->flags = layout->flags; - - /* property garbage collector */ - if (window->property.active && window->property.old != window->property.seq && - window->property.active == window->property.prev) { - nk_zero(&window->property, sizeof(window->property)); - } else { - window->property.old = window->property.seq; - window->property.prev = window->property.active; - window->property.seq = 0; - } - /* edit garbage collector */ - if (window->edit.active && window->edit.old != window->edit.seq && - window->edit.active == window->edit.prev) { - nk_zero(&window->edit, sizeof(window->edit)); - } else { - window->edit.old = window->edit.seq; - window->edit.prev = window->edit.active; - window->edit.seq = 0; - } - /* contextual garbage collector */ - if (window->popup.active_con && window->popup.con_old != window->popup.con_count) { - window->popup.con_count = 0; - window->popup.con_old = 0; - window->popup.active_con = 0; - } else { - window->popup.con_old = window->popup.con_count; - window->popup.con_count = 0; - } - window->popup.combo_count = 0; - /* helper to make sure you have a 'nk_tree_push' for every 'nk_tree_pop' */ - NK_ASSERT(!layout->row.tree_depth); -} - - - - - -/* =============================================================== - * - * WINDOW - * - * ===============================================================*/ -NK_LIB void* -nk_create_window(struct nk_context *ctx) -{ - struct nk_page_element *elem; - elem = nk_create_page_element(ctx); - if (!elem) return 0; - elem->data.win.seq = ctx->seq; - return &elem->data.win; -} -NK_LIB void -nk_free_window(struct nk_context *ctx, struct nk_window *win) -{ - /* unlink windows from list */ - struct nk_table *it = win->tables; - if (win->popup.win) { - nk_free_window(ctx, win->popup.win); - win->popup.win = 0; - } - win->next = 0; - win->prev = 0; - - while (it) { - /*free window state tables */ - struct nk_table *n = it->next; - nk_remove_table(win, it); - nk_free_table(ctx, it); - if (it == win->tables) - win->tables = n; - it = n; - } - - /* link windows into freelist */ - {union nk_page_data *pd = NK_CONTAINER_OF(win, union nk_page_data, win); - struct nk_page_element *pe = NK_CONTAINER_OF(pd, struct nk_page_element, data); - nk_free_page_element(ctx, pe);} -} -NK_LIB struct nk_window* -nk_find_window(struct nk_context *ctx, nk_hash hash, const char *name) -{ - struct nk_window *iter; - iter = ctx->begin; - while (iter) { - NK_ASSERT(iter != iter->next); - if (iter->name == hash) { - int max_len = nk_strlen(iter->name_string); - if (!nk_stricmpn(iter->name_string, name, max_len)) - return iter; - } - iter = iter->next; - } - return 0; -} -NK_LIB void -nk_insert_window(struct nk_context *ctx, struct nk_window *win, - enum nk_window_insert_location loc) -{ - const struct nk_window *iter; - NK_ASSERT(ctx); - NK_ASSERT(win); - if (!win || !ctx) return; - - iter = ctx->begin; - while (iter) { - NK_ASSERT(iter != iter->next); - NK_ASSERT(iter != win); - if (iter == win) return; - iter = iter->next; - } - - if (!ctx->begin) { - win->next = 0; - win->prev = 0; - ctx->begin = win; - ctx->end = win; - ctx->count = 1; - return; - } - if (loc == NK_INSERT_BACK) { - struct nk_window *end; - end = ctx->end; - end->flags |= NK_WINDOW_ROM; - end->next = win; - win->prev = ctx->end; - win->next = 0; - ctx->end = win; - ctx->active = ctx->end; - ctx->end->flags &= ~(nk_flags)NK_WINDOW_ROM; - } else { - /*ctx->end->flags |= NK_WINDOW_ROM;*/ - ctx->begin->prev = win; - win->next = ctx->begin; - win->prev = 0; - ctx->begin = win; - ctx->begin->flags &= ~(nk_flags)NK_WINDOW_ROM; - } - ctx->count++; -} -NK_LIB void -nk_remove_window(struct nk_context *ctx, struct nk_window *win) -{ - if (win == ctx->begin || win == ctx->end) { - if (win == ctx->begin) { - ctx->begin = win->next; - if (win->next) - win->next->prev = 0; - } - if (win == ctx->end) { - ctx->end = win->prev; - if (win->prev) - win->prev->next = 0; - } - } else { - if (win->next) - win->next->prev = win->prev; - if (win->prev) - win->prev->next = win->next; - } - if (win == ctx->active || !ctx->active) { - ctx->active = ctx->end; - if (ctx->end) - ctx->end->flags &= ~(nk_flags)NK_WINDOW_ROM; - } - win->next = 0; - win->prev = 0; - ctx->count--; -} -NK_API nk_bool -nk_begin(struct nk_context *ctx, const char *title, - struct nk_rect bounds, nk_flags flags) -{ - return nk_begin_titled(ctx, title, title, bounds, flags); -} -NK_API nk_bool -nk_begin_titled(struct nk_context *ctx, const char *name, const char *title, - struct nk_rect bounds, nk_flags flags) -{ - struct nk_window *win; - struct nk_style *style; - nk_hash name_hash; - int name_len; - int ret = 0; - - NK_ASSERT(ctx); - NK_ASSERT(name); - NK_ASSERT(title); - NK_ASSERT(ctx->style.font && ctx->style.font->width && "if this triggers you forgot to add a font"); - NK_ASSERT(!ctx->current && "if this triggers you missed a `nk_end` call"); - if (!ctx || ctx->current || !title || !name) - return 0; - - /* find or create window */ - style = &ctx->style; - name_len = (int)nk_strlen(name); - name_hash = nk_murmur_hash(name, (int)name_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, name_hash, name); - if (!win) { - /* create new window */ - nk_size name_length = (nk_size)name_len; - win = (struct nk_window*)nk_create_window(ctx); - NK_ASSERT(win); - if (!win) return 0; - - if (flags & NK_WINDOW_BACKGROUND) - nk_insert_window(ctx, win, NK_INSERT_FRONT); - else nk_insert_window(ctx, win, NK_INSERT_BACK); - nk_command_buffer_init(&win->buffer, &ctx->memory, NK_CLIPPING_ON); - - win->flags = flags; - win->bounds = bounds; - win->name = name_hash; - name_length = NK_MIN(name_length, NK_WINDOW_MAX_NAME-1); - NK_MEMCPY(win->name_string, name, name_length); - win->name_string[name_length] = 0; - win->popup.win = 0; - win->widgets_disabled = nk_false; - if (!ctx->active) - ctx->active = win; - } else { - /* update window */ - win->flags &= ~(nk_flags)(NK_WINDOW_PRIVATE-1); - win->flags |= flags; - if (!(win->flags & (NK_WINDOW_MOVABLE | NK_WINDOW_SCALABLE))) - win->bounds = bounds; - /* If this assert triggers you either: - * - * I.) Have more than one window with the same name or - * II.) You forgot to actually draw the window. - * More specific you did not call `nk_clear` (nk_clear will be - * automatically called for you if you are using one of the - * provided demo backends). */ - NK_ASSERT(win->seq != ctx->seq); - win->seq = ctx->seq; - if (!ctx->active && !(win->flags & NK_WINDOW_HIDDEN)) { - ctx->active = win; - ctx->end = win; - } - } - if (win->flags & NK_WINDOW_HIDDEN) { - ctx->current = win; - win->layout = 0; - return 0; - } else nk_start(ctx, win); - - /* window overlapping */ - if (!(win->flags & NK_WINDOW_HIDDEN) && !(win->flags & NK_WINDOW_NO_INPUT)) - { - int inpanel, ishovered; - struct nk_window *iter = win; - float h = ctx->style.font->height + 2.0f * style->window.header.padding.y + - (2.0f * style->window.header.label_padding.y); - struct nk_rect win_bounds = (!(win->flags & NK_WINDOW_MINIMIZED))? - win->bounds: nk_rect(win->bounds.x, win->bounds.y, win->bounds.w, h); - - /* activate window if hovered and no other window is overlapping this window */ - inpanel = nk_input_has_mouse_click_down_in_rect(&ctx->input, NK_BUTTON_LEFT, win_bounds, nk_true); - inpanel = inpanel && ctx->input.mouse.buttons[NK_BUTTON_LEFT].clicked; - ishovered = nk_input_is_mouse_hovering_rect(&ctx->input, win_bounds); - if ((win != ctx->active) && ishovered && !ctx->input.mouse.buttons[NK_BUTTON_LEFT].down) { - iter = win->next; - while (iter) { - struct nk_rect iter_bounds = (!(iter->flags & NK_WINDOW_MINIMIZED))? - iter->bounds: nk_rect(iter->bounds.x, iter->bounds.y, iter->bounds.w, h); - if (NK_INTERSECT(win_bounds.x, win_bounds.y, win_bounds.w, win_bounds.h, - iter_bounds.x, iter_bounds.y, iter_bounds.w, iter_bounds.h) && - (!(iter->flags & NK_WINDOW_HIDDEN))) - break; - - if (iter->popup.win && iter->popup.active && !(iter->flags & NK_WINDOW_HIDDEN) && - NK_INTERSECT(win->bounds.x, win_bounds.y, win_bounds.w, win_bounds.h, - iter->popup.win->bounds.x, iter->popup.win->bounds.y, - iter->popup.win->bounds.w, iter->popup.win->bounds.h)) - break; - iter = iter->next; - } - } - - /* activate window if clicked */ - if (iter && inpanel && (win != ctx->end)) { - iter = win->next; - while (iter) { - /* try to find a panel with higher priority in the same position */ - struct nk_rect iter_bounds = (!(iter->flags & NK_WINDOW_MINIMIZED))? - iter->bounds: nk_rect(iter->bounds.x, iter->bounds.y, iter->bounds.w, h); - if (NK_INBOX(ctx->input.mouse.pos.x, ctx->input.mouse.pos.y, - iter_bounds.x, iter_bounds.y, iter_bounds.w, iter_bounds.h) && - !(iter->flags & NK_WINDOW_HIDDEN)) - break; - if (iter->popup.win && iter->popup.active && !(iter->flags & NK_WINDOW_HIDDEN) && - NK_INTERSECT(win_bounds.x, win_bounds.y, win_bounds.w, win_bounds.h, - iter->popup.win->bounds.x, iter->popup.win->bounds.y, - iter->popup.win->bounds.w, iter->popup.win->bounds.h)) - break; - iter = iter->next; - } - } - if (iter && !(win->flags & NK_WINDOW_ROM) && (win->flags & NK_WINDOW_BACKGROUND)) { - win->flags |= (nk_flags)NK_WINDOW_ROM; - iter->flags &= ~(nk_flags)NK_WINDOW_ROM; - ctx->active = iter; - if (!(iter->flags & NK_WINDOW_BACKGROUND)) { - /* current window is active in that position so transfer to top - * at the highest priority in stack */ - nk_remove_window(ctx, iter); - nk_insert_window(ctx, iter, NK_INSERT_BACK); - } - } else { - if (!iter && ctx->end != win) { - if (!(win->flags & NK_WINDOW_BACKGROUND)) { - /* current window is active in that position so transfer to top - * at the highest priority in stack */ - nk_remove_window(ctx, win); - nk_insert_window(ctx, win, NK_INSERT_BACK); - } - win->flags &= ~(nk_flags)NK_WINDOW_ROM; - ctx->active = win; - } - if (ctx->end != win && !(win->flags & NK_WINDOW_BACKGROUND)) - win->flags |= NK_WINDOW_ROM; - } - } - win->layout = (struct nk_panel*)nk_create_panel(ctx); - ctx->current = win; - ret = nk_panel_begin(ctx, title, NK_PANEL_WINDOW); - win->layout->offset_x = &win->scrollbar.x; - win->layout->offset_y = &win->scrollbar.y; - return ret; -} -NK_API void -nk_end(struct nk_context *ctx) -{ - struct nk_panel *layout; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current && "if this triggers you forgot to call `nk_begin`"); - if (!ctx || !ctx->current) - return; - - layout = ctx->current->layout; - if (!layout || (layout->type == NK_PANEL_WINDOW && (ctx->current->flags & NK_WINDOW_HIDDEN))) { - ctx->current = 0; - return; - } - nk_panel_end(ctx); - nk_free_panel(ctx, ctx->current->layout); - ctx->current = 0; -} -NK_API struct nk_rect -nk_window_get_bounds(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return nk_rect(0,0,0,0); - return ctx->current->bounds; -} -NK_API struct nk_vec2 -nk_window_get_position(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return nk_vec2(0,0); - return nk_vec2(ctx->current->bounds.x, ctx->current->bounds.y); -} -NK_API struct nk_vec2 -nk_window_get_size(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return nk_vec2(0,0); - return nk_vec2(ctx->current->bounds.w, ctx->current->bounds.h); -} -NK_API float -nk_window_get_width(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return 0; - return ctx->current->bounds.w; -} -NK_API float -nk_window_get_height(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return 0; - return ctx->current->bounds.h; -} -NK_API struct nk_rect -nk_window_get_content_region(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return nk_rect(0,0,0,0); - return ctx->current->layout->clip; -} -NK_API struct nk_vec2 -nk_window_get_content_region_min(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current) return nk_vec2(0,0); - return nk_vec2(ctx->current->layout->clip.x, ctx->current->layout->clip.y); -} -NK_API struct nk_vec2 -nk_window_get_content_region_max(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current) return nk_vec2(0,0); - return nk_vec2(ctx->current->layout->clip.x + ctx->current->layout->clip.w, - ctx->current->layout->clip.y + ctx->current->layout->clip.h); -} -NK_API struct nk_vec2 -nk_window_get_content_region_size(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current) return nk_vec2(0,0); - return nk_vec2(ctx->current->layout->clip.w, ctx->current->layout->clip.h); -} -NK_API struct nk_command_buffer* -nk_window_get_canvas(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current) return 0; - return &ctx->current->buffer; -} -NK_API struct nk_panel* -nk_window_get_panel(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return 0; - return ctx->current->layout; -} -NK_API void -nk_window_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y) -{ - struct nk_window *win; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return ; - win = ctx->current; - if (offset_x) - *offset_x = win->scrollbar.x; - if (offset_y) - *offset_y = win->scrollbar.y; -} -NK_API nk_bool -nk_window_has_focus(const struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current) return 0; - return ctx->current == ctx->active; -} -NK_API nk_bool -nk_window_is_hovered(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current || (ctx->current->flags & NK_WINDOW_HIDDEN)) - return 0; - else { - struct nk_rect actual_bounds = ctx->current->bounds; - if (ctx->begin->flags & NK_WINDOW_MINIMIZED) { - actual_bounds.h = ctx->current->layout->header_height; - } - return nk_input_is_mouse_hovering_rect(&ctx->input, actual_bounds); - } -} -NK_API nk_bool -nk_window_is_any_hovered(struct nk_context *ctx) -{ - struct nk_window *iter; - NK_ASSERT(ctx); - if (!ctx) return 0; - iter = ctx->begin; - while (iter) { - /* check if window is being hovered */ - if(!(iter->flags & NK_WINDOW_HIDDEN)) { - /* check if window popup is being hovered */ - if (iter->popup.active && iter->popup.win && nk_input_is_mouse_hovering_rect(&ctx->input, iter->popup.win->bounds)) - return 1; - - if (iter->flags & NK_WINDOW_MINIMIZED) { - struct nk_rect header = iter->bounds; - header.h = ctx->style.font->height + 2 * ctx->style.window.header.padding.y; - if (nk_input_is_mouse_hovering_rect(&ctx->input, header)) - return 1; - } else if (nk_input_is_mouse_hovering_rect(&ctx->input, iter->bounds)) { - return 1; - } - } - iter = iter->next; - } - return 0; -} -NK_API nk_bool -nk_item_is_any_active(struct nk_context *ctx) -{ - int any_hovered = nk_window_is_any_hovered(ctx); - int any_active = (ctx->last_widget_state & NK_WIDGET_STATE_MODIFIED); - return any_hovered || any_active; -} -NK_API nk_bool -nk_window_is_collapsed(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return 0; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return 0; - return win->flags & NK_WINDOW_MINIMIZED; -} -NK_API nk_bool -nk_window_is_closed(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return 1; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return 1; - return (win->flags & NK_WINDOW_CLOSED); -} -NK_API nk_bool -nk_window_is_hidden(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return 1; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return 1; - return (win->flags & NK_WINDOW_HIDDEN); -} -NK_API nk_bool -nk_window_is_active(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return 0; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return 0; - return win == ctx->active; -} -NK_API struct nk_window* -nk_window_find(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - return nk_find_window(ctx, title_hash, name); -} -NK_API void -nk_window_close(struct nk_context *ctx, const char *name) -{ - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return; - win = nk_window_find(ctx, name); - if (!win) return; - NK_ASSERT(ctx->current != win && "You cannot close a currently active window"); - if (ctx->current == win) return; - win->flags |= NK_WINDOW_HIDDEN; - win->flags |= NK_WINDOW_CLOSED; -} -NK_API void -nk_window_set_bounds(struct nk_context *ctx, - const char *name, struct nk_rect bounds) -{ - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return; - win = nk_window_find(ctx, name); - if (!win) return; - NK_ASSERT(ctx->current != win && "You cannot update a currently in procecss window"); - win->bounds = bounds; -} -NK_API void -nk_window_set_position(struct nk_context *ctx, - const char *name, struct nk_vec2 pos) -{ - struct nk_window *win = nk_window_find(ctx, name); - if (!win) return; - win->bounds.x = pos.x; - win->bounds.y = pos.y; -} -NK_API void -nk_window_set_size(struct nk_context *ctx, - const char *name, struct nk_vec2 size) -{ - struct nk_window *win = nk_window_find(ctx, name); - if (!win) return; - win->bounds.w = size.x; - win->bounds.h = size.y; -} -NK_API void -nk_window_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y) -{ - struct nk_window *win; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return; - win = ctx->current; - win->scrollbar.x = offset_x; - win->scrollbar.y = offset_y; -} -NK_API void -nk_window_collapse(struct nk_context *ctx, const char *name, - enum nk_collapse_states c) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return; - if (c == NK_MINIMIZED) - win->flags |= NK_WINDOW_MINIMIZED; - else win->flags &= ~(nk_flags)NK_WINDOW_MINIMIZED; -} -NK_API void -nk_window_collapse_if(struct nk_context *ctx, const char *name, - enum nk_collapse_states c, int cond) -{ - NK_ASSERT(ctx); - if (!ctx || !cond) return; - nk_window_collapse(ctx, name, c); -} -NK_API void -nk_window_show(struct nk_context *ctx, const char *name, enum nk_show_states s) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (!win) return; - if (s == NK_HIDDEN) { - win->flags |= NK_WINDOW_HIDDEN; - } else win->flags &= ~(nk_flags)NK_WINDOW_HIDDEN; -} -NK_API void -nk_window_show_if(struct nk_context *ctx, const char *name, - enum nk_show_states s, int cond) -{ - NK_ASSERT(ctx); - if (!ctx || !cond) return; - nk_window_show(ctx, name, s); -} - -NK_API void -nk_window_set_focus(struct nk_context *ctx, const char *name) -{ - int title_len; - nk_hash title_hash; - struct nk_window *win; - NK_ASSERT(ctx); - if (!ctx) return; - - title_len = (int)nk_strlen(name); - title_hash = nk_murmur_hash(name, (int)title_len, NK_WINDOW_TITLE); - win = nk_find_window(ctx, title_hash, name); - if (win && ctx->end != win) { - nk_remove_window(ctx, win); - nk_insert_window(ctx, win, NK_INSERT_BACK); - } - ctx->active = win; -} -NK_API void -nk_rule_horizontal(struct nk_context *ctx, struct nk_color color, nk_bool rounding) -{ - struct nk_rect space; - enum nk_widget_layout_states state = nk_widget(&space, ctx); - struct nk_command_buffer *canvas = nk_window_get_canvas(ctx); - if (!state) return; - nk_fill_rect(canvas, space, rounding && space.h > 1.5f ? space.h / 2.0f : 0, color); -} - - - - -/* =============================================================== - * - * POPUP - * - * ===============================================================*/ -NK_API nk_bool -nk_popup_begin(struct nk_context *ctx, enum nk_popup_type type, - const char *title, nk_flags flags, struct nk_rect rect) -{ - struct nk_window *popup; - struct nk_window *win; - struct nk_panel *panel; - - int title_len; - nk_hash title_hash; - nk_size allocated; - - NK_ASSERT(ctx); - NK_ASSERT(title); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - panel = win->layout; - NK_ASSERT(!(panel->type & NK_PANEL_SET_POPUP) && "popups are not allowed to have popups"); - (void)panel; - title_len = (int)nk_strlen(title); - title_hash = nk_murmur_hash(title, (int)title_len, NK_PANEL_POPUP); - - popup = win->popup.win; - if (!popup) { - popup = (struct nk_window*)nk_create_window(ctx); - popup->parent = win; - win->popup.win = popup; - win->popup.active = 0; - win->popup.type = NK_PANEL_POPUP; - } - - /* make sure we have correct popup */ - if (win->popup.name != title_hash) { - if (!win->popup.active) { - nk_zero(popup, sizeof(*popup)); - win->popup.name = title_hash; - win->popup.active = 1; - win->popup.type = NK_PANEL_POPUP; - } else return 0; - } - - /* popup position is local to window */ - ctx->current = popup; - rect.x += win->layout->clip.x; - rect.y += win->layout->clip.y; - - /* setup popup data */ - popup->parent = win; - popup->bounds = rect; - popup->seq = ctx->seq; - popup->layout = (struct nk_panel*)nk_create_panel(ctx); - popup->flags = flags; - popup->flags |= NK_WINDOW_BORDER; - if (type == NK_POPUP_DYNAMIC) - popup->flags |= NK_WINDOW_DYNAMIC; - - popup->buffer = win->buffer; - nk_start_popup(ctx, win); - allocated = ctx->memory.allocated; - nk_push_scissor(&popup->buffer, nk_null_rect); - - if (nk_panel_begin(ctx, title, NK_PANEL_POPUP)) { - /* popup is running therefore invalidate parent panels */ - struct nk_panel *root; - root = win->layout; - while (root) { - root->flags |= NK_WINDOW_ROM; - root->flags &= ~(nk_flags)NK_WINDOW_REMOVE_ROM; - root = root->parent; - } - win->popup.active = 1; - popup->layout->offset_x = &popup->scrollbar.x; - popup->layout->offset_y = &popup->scrollbar.y; - popup->layout->parent = win->layout; - return 1; - } else { - /* popup was closed/is invalid so cleanup */ - struct nk_panel *root; - root = win->layout; - while (root) { - root->flags |= NK_WINDOW_REMOVE_ROM; - root = root->parent; - } - win->popup.buf.active = 0; - win->popup.active = 0; - ctx->memory.allocated = allocated; - ctx->current = win; - nk_free_panel(ctx, popup->layout); - popup->layout = 0; - return 0; - } -} -NK_LIB nk_bool -nk_nonblock_begin(struct nk_context *ctx, - nk_flags flags, struct nk_rect body, struct nk_rect header, - enum nk_panel_type panel_type) -{ - struct nk_window *popup; - struct nk_window *win; - struct nk_panel *panel; - int is_active = nk_true; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - /* popups cannot have popups */ - win = ctx->current; - panel = win->layout; - NK_ASSERT(!(panel->type & NK_PANEL_SET_POPUP)); - (void)panel; - popup = win->popup.win; - if (!popup) { - /* create window for nonblocking popup */ - popup = (struct nk_window*)nk_create_window(ctx); - popup->parent = win; - win->popup.win = popup; - win->popup.type = panel_type; - nk_command_buffer_init(&popup->buffer, &ctx->memory, NK_CLIPPING_ON); - } else { - /* close the popup if user pressed outside or in the header */ - int pressed, in_body, in_header; -#ifdef NK_BUTTON_TRIGGER_ON_RELEASE - pressed = nk_input_is_mouse_released(&ctx->input, NK_BUTTON_LEFT); -#else - pressed = nk_input_is_mouse_pressed(&ctx->input, NK_BUTTON_LEFT); -#endif - in_body = nk_input_is_mouse_hovering_rect(&ctx->input, body); - in_header = nk_input_is_mouse_hovering_rect(&ctx->input, header); - if (pressed && (!in_body || in_header)) - is_active = nk_false; - } - win->popup.header = header; - - if (!is_active) { - /* remove read only mode from all parent panels */ - struct nk_panel *root = win->layout; - while (root) { - root->flags |= NK_WINDOW_REMOVE_ROM; - root = root->parent; - } - return is_active; - } - popup->bounds = body; - popup->parent = win; - popup->layout = (struct nk_panel*)nk_create_panel(ctx); - popup->flags = flags; - popup->flags |= NK_WINDOW_BORDER; - popup->flags |= NK_WINDOW_DYNAMIC; - popup->seq = ctx->seq; - win->popup.active = 1; - NK_ASSERT(popup->layout); - - nk_start_popup(ctx, win); - popup->buffer = win->buffer; - nk_push_scissor(&popup->buffer, nk_null_rect); - ctx->current = popup; - - nk_panel_begin(ctx, 0, panel_type); - win->buffer = popup->buffer; - popup->layout->parent = win->layout; - popup->layout->offset_x = &popup->scrollbar.x; - popup->layout->offset_y = &popup->scrollbar.y; - - /* set read only mode to all parent panels */ - {struct nk_panel *root; - root = win->layout; - while (root) { - root->flags |= NK_WINDOW_ROM; - root = root->parent; - }} - return is_active; -} -NK_API void -nk_popup_close(struct nk_context *ctx) -{ - struct nk_window *popup; - NK_ASSERT(ctx); - if (!ctx || !ctx->current) return; - - popup = ctx->current; - NK_ASSERT(popup->parent); - NK_ASSERT(popup->layout->type & NK_PANEL_SET_POPUP); - popup->flags |= NK_WINDOW_HIDDEN; -} -NK_API void -nk_popup_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_window *popup; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - popup = ctx->current; - if (!popup->parent) return; - win = popup->parent; - if (popup->flags & NK_WINDOW_HIDDEN) { - struct nk_panel *root; - root = win->layout; - while (root) { - root->flags |= NK_WINDOW_REMOVE_ROM; - root = root->parent; - } - win->popup.active = 0; - } - nk_push_scissor(&popup->buffer, nk_null_rect); - nk_end(ctx); - - win->buffer = popup->buffer; - nk_finish_popup(ctx, win); - ctx->current = win; - nk_push_scissor(&win->buffer, win->layout->clip); -} -NK_API void -nk_popup_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y) -{ - struct nk_window *popup; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - popup = ctx->current; - if (offset_x) - *offset_x = popup->scrollbar.x; - if (offset_y) - *offset_y = popup->scrollbar.y; -} -NK_API void -nk_popup_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y) -{ - struct nk_window *popup; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - popup = ctx->current; - popup->scrollbar.x = offset_x; - popup->scrollbar.y = offset_y; -} - - - - -/* ============================================================== - * - * CONTEXTUAL - * - * ===============================================================*/ -NK_API nk_bool -nk_contextual_begin(struct nk_context *ctx, nk_flags flags, struct nk_vec2 size, - struct nk_rect trigger_bounds) -{ - struct nk_window *win; - struct nk_window *popup; - struct nk_rect body; - struct nk_input* in; - - NK_STORAGE const struct nk_rect null_rect = {-1,-1,0,0}; - int is_clicked = 0; - int is_open = 0; - int ret = 0; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - ++win->popup.con_count; - if (ctx->current != ctx->active) - return 0; - - /* check if currently active contextual is active */ - popup = win->popup.win; - is_open = (popup && win->popup.type == NK_PANEL_CONTEXTUAL); - in = win->widgets_disabled ? 0 : &ctx->input; - if (in) { - is_clicked = nk_input_mouse_clicked(in, NK_BUTTON_RIGHT, trigger_bounds); - if (win->popup.active_con && win->popup.con_count != win->popup.active_con) - return 0; - if (!is_open && win->popup.active_con) - win->popup.active_con = 0; - if ((!is_open && !is_clicked)) - return 0; - - /* calculate contextual position on click */ - win->popup.active_con = win->popup.con_count; - if (is_clicked) { - body.x = in->mouse.pos.x; - body.y = in->mouse.pos.y; - } else { - body.x = popup->bounds.x; - body.y = popup->bounds.y; - } - - body.w = size.x; - body.h = size.y; - - /* start nonblocking contextual popup */ - ret = nk_nonblock_begin(ctx, flags | NK_WINDOW_NO_SCROLLBAR, body, - null_rect, NK_PANEL_CONTEXTUAL); - if (ret) win->popup.type = NK_PANEL_CONTEXTUAL; - else { - win->popup.active_con = 0; - win->popup.type = NK_PANEL_NONE; - if (win->popup.win) - win->popup.win->flags = 0; - } - } - return ret; -} -NK_API nk_bool -nk_contextual_item_text(struct nk_context *ctx, const char *text, int len, - nk_flags alignment) -{ - struct nk_window *win; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - state = nk_widget_fitting(&bounds, ctx, style->contextual_button.padding); - if (!state) return nk_false; - - in = (state == NK_WIDGET_ROM || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text(&ctx->last_widget_state, &win->buffer, bounds, - text, len, alignment, NK_BUTTON_DEFAULT, &style->contextual_button, in, style->font)) { - nk_contextual_close(ctx); - return nk_true; - } - return nk_false; -} -NK_API nk_bool -nk_contextual_item_label(struct nk_context *ctx, const char *label, nk_flags align) -{ - return nk_contextual_item_text(ctx, label, nk_strlen(label), align); -} -NK_API nk_bool -nk_contextual_item_image_text(struct nk_context *ctx, struct nk_image img, - const char *text, int len, nk_flags align) -{ - struct nk_window *win; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - state = nk_widget_fitting(&bounds, ctx, style->contextual_button.padding); - if (!state) return nk_false; - - in = (state == NK_WIDGET_ROM || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text_image(&ctx->last_widget_state, &win->buffer, bounds, - img, text, len, align, NK_BUTTON_DEFAULT, &style->contextual_button, style->font, in)){ - nk_contextual_close(ctx); - return nk_true; - } - return nk_false; -} -NK_API nk_bool -nk_contextual_item_image_label(struct nk_context *ctx, struct nk_image img, - const char *label, nk_flags align) -{ - return nk_contextual_item_image_text(ctx, img, label, nk_strlen(label), align); -} -NK_API nk_bool -nk_contextual_item_symbol_text(struct nk_context *ctx, enum nk_symbol_type symbol, - const char *text, int len, nk_flags align) -{ - struct nk_window *win; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - state = nk_widget_fitting(&bounds, ctx, style->contextual_button.padding); - if (!state) return nk_false; - - in = (state == NK_WIDGET_ROM || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text_symbol(&ctx->last_widget_state, &win->buffer, bounds, - symbol, text, len, align, NK_BUTTON_DEFAULT, &style->contextual_button, style->font, in)) { - nk_contextual_close(ctx); - return nk_true; - } - return nk_false; -} -NK_API nk_bool -nk_contextual_item_symbol_label(struct nk_context *ctx, enum nk_symbol_type symbol, - const char *text, nk_flags align) -{ - return nk_contextual_item_symbol_text(ctx, symbol, text, nk_strlen(text), align); -} -NK_API void -nk_contextual_close(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return; - nk_popup_close(ctx); -} -NK_API void -nk_contextual_end(struct nk_context *ctx) -{ - struct nk_window *popup; - struct nk_panel *panel; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return; - - popup = ctx->current; - panel = popup->layout; - NK_ASSERT(popup->parent); - NK_ASSERT(panel->type & NK_PANEL_SET_POPUP); - if (panel->flags & NK_WINDOW_DYNAMIC) { - /* Close behavior - This is a bit of a hack solution since we do not know before we end our popup - how big it will be. We therefore do not directly know when a - click outside the non-blocking popup must close it at that direct frame. - Instead it will be closed in the next frame.*/ - struct nk_rect body = {0,0,0,0}; - if (panel->at_y < (panel->bounds.y + panel->bounds.h)) { - struct nk_vec2 padding = nk_panel_get_padding(&ctx->style, panel->type); - body = panel->bounds; - body.y = (panel->at_y + panel->footer_height + panel->border + padding.y + panel->row.height); - body.h = (panel->bounds.y + panel->bounds.h) - body.y; - } - {int pressed = nk_input_is_mouse_pressed(&ctx->input, NK_BUTTON_LEFT); - int in_body = nk_input_is_mouse_hovering_rect(&ctx->input, body); - if (pressed && in_body) - popup->flags |= NK_WINDOW_HIDDEN; - } - } - if (popup->flags & NK_WINDOW_HIDDEN) - popup->seq = 0; - nk_popup_end(ctx); - return; -} - - - - - -/* =============================================================== - * - * MENU - * - * ===============================================================*/ -NK_API void -nk_menubar_begin(struct nk_context *ctx) -{ - struct nk_panel *layout; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - layout = ctx->current->layout; - NK_ASSERT(layout->at_y == layout->bounds.y); - /* if this assert triggers you allocated space between nk_begin and nk_menubar_begin. - If you want a menubar the first nuklear function after `nk_begin` has to be a - `nk_menubar_begin` call. Inside the menubar you then have to allocate space for - widgets (also supports multiple rows). - Example: - if (nk_begin(...)) { - nk_menubar_begin(...); - nk_layout_xxxx(...); - nk_button(...); - nk_layout_xxxx(...); - nk_button(...); - nk_menubar_end(...); - } - nk_end(...); - */ - if (layout->flags & NK_WINDOW_HIDDEN || layout->flags & NK_WINDOW_MINIMIZED) - return; - - layout->menu.x = layout->at_x; - layout->menu.y = layout->at_y + layout->row.height; - layout->menu.w = layout->bounds.w; - layout->menu.offset.x = *layout->offset_x; - layout->menu.offset.y = *layout->offset_y; - *layout->offset_y = 0; -} -NK_API void -nk_menubar_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - struct nk_command_buffer *out; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - out = &win->buffer; - layout = win->layout; - if (layout->flags & NK_WINDOW_HIDDEN || layout->flags & NK_WINDOW_MINIMIZED) - return; - - layout->menu.h = layout->at_y - layout->menu.y; - layout->menu.h += layout->row.height + ctx->style.window.spacing.y; - - layout->bounds.y += layout->menu.h; - layout->bounds.h -= layout->menu.h; - - *layout->offset_x = layout->menu.offset.x; - *layout->offset_y = layout->menu.offset.y; - layout->at_y = layout->bounds.y - layout->row.height; - - layout->clip.y = layout->bounds.y; - layout->clip.h = layout->bounds.h; - nk_push_scissor(out, layout->clip); -} -NK_INTERN int -nk_menu_begin(struct nk_context *ctx, struct nk_window *win, - const char *id, int is_clicked, struct nk_rect header, struct nk_vec2 size) -{ - int is_open = 0; - int is_active = 0; - struct nk_rect body; - struct nk_window *popup; - nk_hash hash = nk_murmur_hash(id, (int)nk_strlen(id), NK_PANEL_MENU); - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - body.x = header.x; - body.w = size.x; - body.y = header.y + header.h; - body.h = size.y; - - popup = win->popup.win; - is_open = popup ? nk_true : nk_false; - is_active = (popup && (win->popup.name == hash) && win->popup.type == NK_PANEL_MENU); - if ((is_clicked && is_open && !is_active) || (is_open && !is_active) || - (!is_open && !is_active && !is_clicked)) return 0; - if (!nk_nonblock_begin(ctx, NK_WINDOW_NO_SCROLLBAR, body, header, NK_PANEL_MENU)) - return 0; - - win->popup.type = NK_PANEL_MENU; - win->popup.name = hash; - return 1; -} -NK_API nk_bool -nk_menu_begin_text(struct nk_context *ctx, const char *title, int len, - nk_flags align, struct nk_vec2 size) -{ - struct nk_window *win; - const struct nk_input *in; - struct nk_rect header; - int is_clicked = nk_false; - nk_flags state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - state = nk_widget(&header, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || win->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text(&ctx->last_widget_state, &win->buffer, header, - title, len, align, NK_BUTTON_DEFAULT, &ctx->style.menu_button, in, ctx->style.font)) - is_clicked = nk_true; - return nk_menu_begin(ctx, win, title, is_clicked, header, size); -} -NK_API nk_bool nk_menu_begin_label(struct nk_context *ctx, - const char *text, nk_flags align, struct nk_vec2 size) -{ - return nk_menu_begin_text(ctx, text, nk_strlen(text), align, size); -} -NK_API nk_bool -nk_menu_begin_image(struct nk_context *ctx, const char *id, struct nk_image img, - struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_rect header; - const struct nk_input *in; - int is_clicked = nk_false; - nk_flags state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - state = nk_widget(&header, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_image(&ctx->last_widget_state, &win->buffer, header, - img, NK_BUTTON_DEFAULT, &ctx->style.menu_button, in)) - is_clicked = nk_true; - return nk_menu_begin(ctx, win, id, is_clicked, header, size); -} -NK_API nk_bool -nk_menu_begin_symbol(struct nk_context *ctx, const char *id, - enum nk_symbol_type sym, struct nk_vec2 size) -{ - struct nk_window *win; - const struct nk_input *in; - struct nk_rect header; - int is_clicked = nk_false; - nk_flags state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - state = nk_widget(&header, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_symbol(&ctx->last_widget_state, &win->buffer, header, - sym, NK_BUTTON_DEFAULT, &ctx->style.menu_button, in, ctx->style.font)) - is_clicked = nk_true; - return nk_menu_begin(ctx, win, id, is_clicked, header, size); -} -NK_API nk_bool -nk_menu_begin_image_text(struct nk_context *ctx, const char *title, int len, - nk_flags align, struct nk_image img, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_rect header; - const struct nk_input *in; - int is_clicked = nk_false; - nk_flags state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - state = nk_widget(&header, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text_image(&ctx->last_widget_state, &win->buffer, - header, img, title, len, align, NK_BUTTON_DEFAULT, &ctx->style.menu_button, - ctx->style.font, in)) - is_clicked = nk_true; - return nk_menu_begin(ctx, win, title, is_clicked, header, size); -} -NK_API nk_bool -nk_menu_begin_image_label(struct nk_context *ctx, - const char *title, nk_flags align, struct nk_image img, struct nk_vec2 size) -{ - return nk_menu_begin_image_text(ctx, title, nk_strlen(title), align, img, size); -} -NK_API nk_bool -nk_menu_begin_symbol_text(struct nk_context *ctx, const char *title, int len, - nk_flags align, enum nk_symbol_type sym, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_rect header; - const struct nk_input *in; - int is_clicked = nk_false; - nk_flags state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - state = nk_widget(&header, ctx); - if (!state) return 0; - - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - if (nk_do_button_text_symbol(&ctx->last_widget_state, &win->buffer, - header, sym, title, len, align, NK_BUTTON_DEFAULT, &ctx->style.menu_button, - ctx->style.font, in)) is_clicked = nk_true; - return nk_menu_begin(ctx, win, title, is_clicked, header, size); -} -NK_API nk_bool -nk_menu_begin_symbol_label(struct nk_context *ctx, - const char *title, nk_flags align, enum nk_symbol_type sym, struct nk_vec2 size ) -{ - return nk_menu_begin_symbol_text(ctx, title, nk_strlen(title), align,sym,size); -} -NK_API nk_bool -nk_menu_item_text(struct nk_context *ctx, const char *title, int len, nk_flags align) -{ - return nk_contextual_item_text(ctx, title, len, align); -} -NK_API nk_bool -nk_menu_item_label(struct nk_context *ctx, const char *label, nk_flags align) -{ - return nk_contextual_item_label(ctx, label, align); -} -NK_API nk_bool -nk_menu_item_image_label(struct nk_context *ctx, struct nk_image img, - const char *label, nk_flags align) -{ - return nk_contextual_item_image_label(ctx, img, label, align); -} -NK_API nk_bool -nk_menu_item_image_text(struct nk_context *ctx, struct nk_image img, - const char *text, int len, nk_flags align) -{ - return nk_contextual_item_image_text(ctx, img, text, len, align); -} -NK_API nk_bool nk_menu_item_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, - const char *text, int len, nk_flags align) -{ - return nk_contextual_item_symbol_text(ctx, sym, text, len, align); -} -NK_API nk_bool nk_menu_item_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, - const char *label, nk_flags align) -{ - return nk_contextual_item_symbol_label(ctx, sym, label, align); -} -NK_API void nk_menu_close(struct nk_context *ctx) -{ - nk_contextual_close(ctx); -} -NK_API void -nk_menu_end(struct nk_context *ctx) -{ - nk_contextual_end(ctx); -} - - - - - -/* =============================================================== - * - * LAYOUT - * - * ===============================================================*/ -NK_API void -nk_layout_set_min_row_height(struct nk_context *ctx, float height) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - layout->row.min_height = height; -} -NK_API void -nk_layout_reset_min_row_height(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - layout->row.min_height = ctx->style.font->height; - layout->row.min_height += ctx->style.text.padding.y*2; - layout->row.min_height += ctx->style.window.min_row_height_padding*2; -} -NK_LIB float -nk_layout_row_calculate_usable_space(const struct nk_style *style, enum nk_panel_type type, - float total_space, int columns) -{ - float panel_spacing; - float panel_space; - - struct nk_vec2 spacing; - - NK_UNUSED(type); - - spacing = style->window.spacing; - - /* calculate the usable panel space */ - panel_spacing = (float)NK_MAX(columns - 1, 0) * spacing.x; - panel_space = total_space - panel_spacing; - return panel_space; -} -NK_LIB void -nk_panel_layout(const struct nk_context *ctx, struct nk_window *win, - float height, int cols) -{ - struct nk_panel *layout; - const struct nk_style *style; - struct nk_command_buffer *out; - - struct nk_vec2 item_spacing; - struct nk_color color; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - /* prefetch some configuration data */ - layout = win->layout; - style = &ctx->style; - out = &win->buffer; - color = style->window.background; - item_spacing = style->window.spacing; - - /* if one of these triggers you forgot to add an `if` condition around either - a window, group, popup, combobox or contextual menu `begin` and `end` block. - Example: - if (nk_begin(...) {...} nk_end(...); or - if (nk_group_begin(...) { nk_group_end(...);} */ - NK_ASSERT(!(layout->flags & NK_WINDOW_MINIMIZED)); - NK_ASSERT(!(layout->flags & NK_WINDOW_HIDDEN)); - NK_ASSERT(!(layout->flags & NK_WINDOW_CLOSED)); - - /* update the current row and set the current row layout */ - layout->row.index = 0; - layout->at_y += layout->row.height; - layout->row.columns = cols; - if (height == 0.0f) - layout->row.height = NK_MAX(height, layout->row.min_height) + item_spacing.y; - else layout->row.height = height + item_spacing.y; - - layout->row.item_offset = 0; - if (layout->flags & NK_WINDOW_DYNAMIC) { - /* draw background for dynamic panels */ - struct nk_rect background; - background.x = win->bounds.x; - background.w = win->bounds.w; - background.y = layout->at_y - 1.0f; - background.h = layout->row.height + 1.0f; - nk_fill_rect(out, background, 0, color); - } -} -NK_LIB void -nk_row_layout(struct nk_context *ctx, enum nk_layout_format fmt, - float height, int cols, int width) -{ - /* update the current row and set the current row layout */ - struct nk_window *win; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - nk_panel_layout(ctx, win, height, cols); - if (fmt == NK_DYNAMIC) - win->layout->row.type = NK_LAYOUT_DYNAMIC_FIXED; - else win->layout->row.type = NK_LAYOUT_STATIC_FIXED; - - win->layout->row.ratio = 0; - win->layout->row.filled = 0; - win->layout->row.item_offset = 0; - win->layout->row.item_width = (float)width; -} -NK_API float -nk_layout_ratio_from_pixel(struct nk_context *ctx, float pixel_width) -{ - struct nk_window *win; - NK_ASSERT(ctx); - NK_ASSERT(pixel_width); - if (!ctx || !ctx->current || !ctx->current->layout) return 0; - win = ctx->current; - return NK_CLAMP(0.0f, pixel_width/win->bounds.x, 1.0f); -} -NK_API void -nk_layout_row_dynamic(struct nk_context *ctx, float height, int cols) -{ - nk_row_layout(ctx, NK_DYNAMIC, height, cols, 0); -} -NK_API void -nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols) -{ - nk_row_layout(ctx, NK_STATIC, height, cols, item_width); -} -NK_API void -nk_layout_row_begin(struct nk_context *ctx, enum nk_layout_format fmt, - float row_height, int cols) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - nk_panel_layout(ctx, win, row_height, cols); - if (fmt == NK_DYNAMIC) - layout->row.type = NK_LAYOUT_DYNAMIC_ROW; - else layout->row.type = NK_LAYOUT_STATIC_ROW; - - layout->row.ratio = 0; - layout->row.filled = 0; - layout->row.item_width = 0; - layout->row.item_offset = 0; - layout->row.columns = cols; -} -NK_API void -nk_layout_row_push(struct nk_context *ctx, float ratio_or_width) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_STATIC_ROW || layout->row.type == NK_LAYOUT_DYNAMIC_ROW); - if (layout->row.type != NK_LAYOUT_STATIC_ROW && layout->row.type != NK_LAYOUT_DYNAMIC_ROW) - return; - - if (layout->row.type == NK_LAYOUT_DYNAMIC_ROW) { - float ratio = ratio_or_width; - if ((ratio + layout->row.filled) > 1.0f) return; - if (ratio > 0.0f) - layout->row.item_width = NK_SATURATE(ratio); - else layout->row.item_width = 1.0f - layout->row.filled; - } else layout->row.item_width = ratio_or_width; -} -NK_API void -nk_layout_row_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_STATIC_ROW || layout->row.type == NK_LAYOUT_DYNAMIC_ROW); - if (layout->row.type != NK_LAYOUT_STATIC_ROW && layout->row.type != NK_LAYOUT_DYNAMIC_ROW) - return; - layout->row.item_width = 0; - layout->row.item_offset = 0; -} -NK_API void -nk_layout_row(struct nk_context *ctx, enum nk_layout_format fmt, - float height, int cols, const float *ratio) -{ - int i; - int n_undef = 0; - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - nk_panel_layout(ctx, win, height, cols); - if (fmt == NK_DYNAMIC) { - /* calculate width of undefined widget ratios */ - float r = 0; - layout->row.ratio = ratio; - for (i = 0; i < cols; ++i) { - if (ratio[i] < 0.0f) - n_undef++; - else r += ratio[i]; - } - r = NK_SATURATE(1.0f - r); - layout->row.type = NK_LAYOUT_DYNAMIC; - layout->row.item_width = (r > 0 && n_undef > 0) ? (r / (float)n_undef):0; - } else { - layout->row.ratio = ratio; - layout->row.type = NK_LAYOUT_STATIC; - layout->row.item_width = 0; - layout->row.item_offset = 0; - } - layout->row.item_offset = 0; - layout->row.filled = 0; -} -NK_API void -nk_layout_row_template_begin(struct nk_context *ctx, float height) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - nk_panel_layout(ctx, win, height, 1); - layout->row.type = NK_LAYOUT_TEMPLATE; - layout->row.columns = 0; - layout->row.ratio = 0; - layout->row.item_width = 0; - layout->row.item_height = 0; - layout->row.item_offset = 0; - layout->row.filled = 0; - layout->row.item.x = 0; - layout->row.item.y = 0; - layout->row.item.w = 0; - layout->row.item.h = 0; -} -NK_API void -nk_layout_row_template_push_dynamic(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_TEMPLATE); - NK_ASSERT(layout->row.columns < NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS); - if (layout->row.type != NK_LAYOUT_TEMPLATE) return; - if (layout->row.columns >= NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS) return; - layout->row.templates[layout->row.columns++] = -1.0f; -} -NK_API void -nk_layout_row_template_push_variable(struct nk_context *ctx, float min_width) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_TEMPLATE); - NK_ASSERT(layout->row.columns < NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS); - if (layout->row.type != NK_LAYOUT_TEMPLATE) return; - if (layout->row.columns >= NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS) return; - layout->row.templates[layout->row.columns++] = -min_width; -} -NK_API void -nk_layout_row_template_push_static(struct nk_context *ctx, float width) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_TEMPLATE); - NK_ASSERT(layout->row.columns < NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS); - if (layout->row.type != NK_LAYOUT_TEMPLATE) return; - if (layout->row.columns >= NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS) return; - layout->row.templates[layout->row.columns++] = width; -} -NK_API void -nk_layout_row_template_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - int i = 0; - int variable_count = 0; - int min_variable_count = 0; - float min_fixed_width = 0.0f; - float total_fixed_width = 0.0f; - float max_variable_width = 0.0f; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - NK_ASSERT(layout->row.type == NK_LAYOUT_TEMPLATE); - if (layout->row.type != NK_LAYOUT_TEMPLATE) return; - for (i = 0; i < layout->row.columns; ++i) { - float width = layout->row.templates[i]; - if (width >= 0.0f) { - total_fixed_width += width; - min_fixed_width += width; - } else if (width < -1.0f) { - width = -width; - total_fixed_width += width; - max_variable_width = NK_MAX(max_variable_width, width); - variable_count++; - } else { - min_variable_count++; - variable_count++; - } - } - if (variable_count) { - float space = nk_layout_row_calculate_usable_space(&ctx->style, layout->type, - layout->bounds.w, layout->row.columns); - float var_width = (NK_MAX(space-min_fixed_width,0.0f)) / (float)variable_count; - int enough_space = var_width >= max_variable_width; - if (!enough_space) - var_width = (NK_MAX(space-total_fixed_width,0)) / (float)min_variable_count; - for (i = 0; i < layout->row.columns; ++i) { - float *width = &layout->row.templates[i]; - *width = (*width >= 0.0f)? *width: (*width < -1.0f && !enough_space)? -(*width): var_width; - } - } -} -NK_API void -nk_layout_space_begin(struct nk_context *ctx, enum nk_layout_format fmt, - float height, int widget_count) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - nk_panel_layout(ctx, win, height, widget_count); - if (fmt == NK_STATIC) - layout->row.type = NK_LAYOUT_STATIC_FREE; - else layout->row.type = NK_LAYOUT_DYNAMIC_FREE; - - layout->row.ratio = 0; - layout->row.filled = 0; - layout->row.item_width = 0; - layout->row.item_offset = 0; -} -NK_API void -nk_layout_space_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - layout->row.item_width = 0; - layout->row.item_height = 0; - layout->row.item_offset = 0; - nk_zero(&layout->row.item, sizeof(layout->row.item)); -} -NK_API void -nk_layout_space_push(struct nk_context *ctx, struct nk_rect rect) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - layout->row.item = rect; -} -NK_API struct nk_rect -nk_layout_space_bounds(struct nk_context *ctx) -{ - struct nk_rect ret; - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x = layout->clip.x; - ret.y = layout->clip.y; - ret.w = layout->clip.w; - ret.h = layout->row.height; - return ret; -} -NK_API struct nk_rect -nk_layout_widget_bounds(struct nk_context *ctx) -{ - struct nk_rect ret; - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x = layout->at_x; - ret.y = layout->at_y; - ret.w = layout->bounds.w - NK_MAX(layout->at_x - layout->bounds.x,0); - ret.h = layout->row.height; - return ret; -} -NK_API struct nk_vec2 -nk_layout_space_to_screen(struct nk_context *ctx, struct nk_vec2 ret) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x += layout->at_x - (float)*layout->offset_x; - ret.y += layout->at_y - (float)*layout->offset_y; - return ret; -} -NK_API struct nk_vec2 -nk_layout_space_to_local(struct nk_context *ctx, struct nk_vec2 ret) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x += -layout->at_x + (float)*layout->offset_x; - ret.y += -layout->at_y + (float)*layout->offset_y; - return ret; -} -NK_API struct nk_rect -nk_layout_space_rect_to_screen(struct nk_context *ctx, struct nk_rect ret) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x += layout->at_x - (float)*layout->offset_x; - ret.y += layout->at_y - (float)*layout->offset_y; - return ret; -} -NK_API struct nk_rect -nk_layout_space_rect_to_local(struct nk_context *ctx, struct nk_rect ret) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - win = ctx->current; - layout = win->layout; - - ret.x += -layout->at_x + (float)*layout->offset_x; - ret.y += -layout->at_y + (float)*layout->offset_y; - return ret; -} -NK_LIB void -nk_panel_alloc_row(const struct nk_context *ctx, struct nk_window *win) -{ - struct nk_panel *layout = win->layout; - struct nk_vec2 spacing = ctx->style.window.spacing; - const float row_height = layout->row.height - spacing.y; - nk_panel_layout(ctx, win, row_height, layout->row.columns); -} -NK_LIB void -nk_layout_widget_space(struct nk_rect *bounds, const struct nk_context *ctx, - struct nk_window *win, int modify) -{ - struct nk_panel *layout; - const struct nk_style *style; - - struct nk_vec2 spacing; - - float item_offset = 0; - float item_width = 0; - float item_spacing = 0; - float panel_space = 0; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - style = &ctx->style; - NK_ASSERT(bounds); - - spacing = style->window.spacing; - panel_space = nk_layout_row_calculate_usable_space(&ctx->style, layout->type, - layout->bounds.w, layout->row.columns); - - #define NK_FRAC(x) (x - (float)(int)x) /* will be used to remove fookin gaps */ - /* calculate the width of one item inside the current layout space */ - switch (layout->row.type) { - case NK_LAYOUT_DYNAMIC_FIXED: { - /* scaling fixed size widgets item width */ - float w = NK_MAX(1.0f,panel_space) / (float)layout->row.columns; - item_offset = (float)layout->row.index * w; - item_width = w + NK_FRAC(item_offset); - item_spacing = (float)layout->row.index * spacing.x; - } break; - case NK_LAYOUT_DYNAMIC_ROW: { - /* scaling single ratio widget width */ - float w = layout->row.item_width * panel_space; - item_offset = layout->row.item_offset; - item_width = w + NK_FRAC(item_offset); - item_spacing = 0; - - if (modify) { - layout->row.item_offset += w + spacing.x; - layout->row.filled += layout->row.item_width; - layout->row.index = 0; - } - } break; - case NK_LAYOUT_DYNAMIC_FREE: { - /* panel width depended free widget placing */ - bounds->x = layout->at_x + (layout->bounds.w * layout->row.item.x); - bounds->x -= (float)*layout->offset_x; - bounds->y = layout->at_y + (layout->row.height * layout->row.item.y); - bounds->y -= (float)*layout->offset_y; - bounds->w = layout->bounds.w * layout->row.item.w + NK_FRAC(bounds->x); - bounds->h = layout->row.height * layout->row.item.h + NK_FRAC(bounds->y); - return; - } - case NK_LAYOUT_DYNAMIC: { - /* scaling arrays of panel width ratios for every widget */ - float ratio, w; - NK_ASSERT(layout->row.ratio); - ratio = (layout->row.ratio[layout->row.index] < 0) ? - layout->row.item_width : layout->row.ratio[layout->row.index]; - - w = (ratio * panel_space); - item_spacing = (float)layout->row.index * spacing.x; - item_offset = layout->row.item_offset; - item_width = w + NK_FRAC(item_offset); - - if (modify) { - layout->row.item_offset += w; - layout->row.filled += ratio; - } - } break; - case NK_LAYOUT_STATIC_FIXED: { - /* non-scaling fixed widgets item width */ - item_width = layout->row.item_width; - item_offset = (float)layout->row.index * item_width; - item_spacing = (float)layout->row.index * spacing.x; - } break; - case NK_LAYOUT_STATIC_ROW: { - /* scaling single ratio widget width */ - item_width = layout->row.item_width; - item_offset = layout->row.item_offset; - item_spacing = (float)layout->row.index * spacing.x; - if (modify) layout->row.item_offset += item_width; - } break; - case NK_LAYOUT_STATIC_FREE: { - /* free widget placing */ - bounds->x = layout->at_x + layout->row.item.x; - bounds->w = layout->row.item.w; - if (((bounds->x + bounds->w) > layout->max_x) && modify) - layout->max_x = (bounds->x + bounds->w); - bounds->x -= (float)*layout->offset_x; - bounds->y = layout->at_y + layout->row.item.y; - bounds->y -= (float)*layout->offset_y; - bounds->h = layout->row.item.h; - return; - } - case NK_LAYOUT_STATIC: { - /* non-scaling array of panel pixel width for every widget */ - item_spacing = (float)layout->row.index * spacing.x; - item_width = layout->row.ratio[layout->row.index]; - item_offset = layout->row.item_offset; - if (modify) layout->row.item_offset += item_width; - } break; - case NK_LAYOUT_TEMPLATE: { - /* stretchy row layout with combined dynamic/static widget width*/ - float w; - NK_ASSERT(layout->row.index < layout->row.columns); - NK_ASSERT(layout->row.index < NK_MAX_LAYOUT_ROW_TEMPLATE_COLUMNS); - w = layout->row.templates[layout->row.index]; - item_offset = layout->row.item_offset; - item_width = w + NK_FRAC(item_offset); - item_spacing = (float)layout->row.index * spacing.x; - if (modify) layout->row.item_offset += w; - } break; - #undef NK_FRAC - default: NK_ASSERT(0); break; - }; - - /* set the bounds of the newly allocated widget */ - bounds->w = item_width; - bounds->h = layout->row.height - spacing.y; - bounds->y = layout->at_y - (float)*layout->offset_y; - bounds->x = layout->at_x + item_offset + item_spacing; - if (((bounds->x + bounds->w) > layout->max_x) && modify) - layout->max_x = bounds->x + bounds->w; - bounds->x -= (float)*layout->offset_x; -} -NK_LIB void -nk_panel_alloc_space(struct nk_rect *bounds, const struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - /* check if the end of the row has been hit and begin new row if so */ - win = ctx->current; - layout = win->layout; - if (layout->row.index >= layout->row.columns) - nk_panel_alloc_row(ctx, win); - - /* calculate widget position and size */ - nk_layout_widget_space(bounds, ctx, win, nk_true); - layout->row.index++; -} -NK_LIB void -nk_layout_peek(struct nk_rect *bounds, struct nk_context *ctx) -{ - float y; - int index; - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) { - *bounds = nk_rect(0,0,0,0); - return; - } - - win = ctx->current; - layout = win->layout; - y = layout->at_y; - index = layout->row.index; - if (layout->row.index >= layout->row.columns) { - layout->at_y += layout->row.height; - layout->row.index = 0; - } - nk_layout_widget_space(bounds, ctx, win, nk_false); - if (!layout->row.index) { - bounds->x -= layout->row.item_offset; - } - layout->at_y = y; - layout->row.index = index; -} -NK_API void -nk_spacer(struct nk_context *ctx ) -{ - struct nk_rect dummy_rect = { 0, 0, 0, 0 }; - nk_panel_alloc_space( &dummy_rect, ctx ); -} - - - - -/* =============================================================== - * - * TREE - * - * ===============================================================*/ -NK_INTERN int -nk_tree_state_base(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image *img, const char *title, enum nk_collapse_states *state) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_style *style; - struct nk_command_buffer *out; - const struct nk_input *in; - const struct nk_style_button *button; - enum nk_symbol_type symbol; - float row_height; - - struct nk_vec2 item_spacing; - struct nk_rect header = {0,0,0,0}; - struct nk_rect sym = {0,0,0,0}; - struct nk_text text; - - nk_flags ws = 0; - enum nk_widget_layout_states widget_state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - /* cache some data */ - win = ctx->current; - layout = win->layout; - out = &win->buffer; - style = &ctx->style; - item_spacing = style->window.spacing; - - /* calculate header bounds and draw background */ - row_height = style->font->height + 2 * style->tab.padding.y; - nk_layout_set_min_row_height(ctx, row_height); - nk_layout_row_dynamic(ctx, row_height, 1); - nk_layout_reset_min_row_height(ctx); - - widget_state = nk_widget(&header, ctx); - if (type == NK_TREE_TAB) { - const struct nk_style_item *background = &style->tab.background; - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, header, &background->data.image, nk_rgb_factor(nk_white, style->tab.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, header, &background->data.slice, nk_rgb_factor(nk_white, style->tab.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, header, 0, nk_rgb_factor(style->tab.border_color, style->tab.color_factor)); - nk_fill_rect(out, nk_shrink_rect(header, style->tab.border), - style->tab.rounding, nk_rgb_factor(background->data.color, style->tab.color_factor)); - break; - } - } else text.background = style->window.background; - - /* update node state */ - in = (!(layout->flags & NK_WINDOW_ROM)) ? &ctx->input: 0; - in = (in && widget_state == NK_WIDGET_VALID) ? &ctx->input : 0; - if (nk_button_behavior(&ws, header, in, NK_BUTTON_DEFAULT)) - *state = (*state == NK_MAXIMIZED) ? NK_MINIMIZED : NK_MAXIMIZED; - - /* select correct button style */ - if (*state == NK_MAXIMIZED) { - symbol = style->tab.sym_maximize; - if (type == NK_TREE_TAB) - button = &style->tab.tab_maximize_button; - else button = &style->tab.node_maximize_button; - } else { - symbol = style->tab.sym_minimize; - if (type == NK_TREE_TAB) - button = &style->tab.tab_minimize_button; - else button = &style->tab.node_minimize_button; - } - - {/* draw triangle button */ - sym.w = sym.h = style->font->height; - sym.y = header.y + style->tab.padding.y; - sym.x = header.x + style->tab.padding.x; - nk_do_button_symbol(&ws, &win->buffer, sym, symbol, NK_BUTTON_DEFAULT, - button, 0, style->font); - - if (img) { - /* draw optional image icon */ - sym.x = sym.x + sym.w + 4 * item_spacing.x; - nk_draw_image(&win->buffer, sym, img, nk_white); - sym.w = style->font->height + style->tab.spacing.x;} - } - - {/* draw label */ - struct nk_rect label; - header.w = NK_MAX(header.w, sym.w + item_spacing.x); - label.x = sym.x + sym.w + item_spacing.x; - label.y = sym.y; - label.w = header.w - (sym.w + item_spacing.y + style->tab.indent); - label.h = style->font->height; - text.text = nk_rgb_factor(style->tab.text, style->tab.color_factor); - text.padding = nk_vec2(0,0); - nk_widget_text(out, label, title, nk_strlen(title), &text, - NK_TEXT_LEFT, style->font);} - - /* increase x-axis cursor widget position pointer */ - if (*state == NK_MAXIMIZED) { - layout->at_x = header.x + (float)*layout->offset_x + style->tab.indent; - layout->bounds.w = NK_MAX(layout->bounds.w, style->tab.indent); - layout->bounds.w -= (style->tab.indent + style->window.padding.x); - layout->row.tree_depth++; - return nk_true; - } else return nk_false; -} -NK_INTERN int -nk_tree_base(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image *img, const char *title, enum nk_collapse_states initial_state, - const char *hash, int len, int line) -{ - struct nk_window *win = ctx->current; - int title_len = 0; - nk_hash tree_hash = 0; - nk_uint *state = 0; - - /* retrieve tree state from internal widget state tables */ - if (!hash) { - title_len = (int)nk_strlen(title); - tree_hash = nk_murmur_hash(title, (int)title_len, (nk_hash)line); - } else tree_hash = nk_murmur_hash(hash, len, (nk_hash)line); - state = nk_find_value(win, tree_hash); - if (!state) { - state = nk_add_value(ctx, win, tree_hash, 0); - *state = initial_state; - } - return nk_tree_state_base(ctx, type, img, title, (enum nk_collapse_states*)state); -} -NK_API nk_bool -nk_tree_state_push(struct nk_context *ctx, enum nk_tree_type type, - const char *title, enum nk_collapse_states *state) -{ - return nk_tree_state_base(ctx, type, 0, title, state); -} -NK_API nk_bool -nk_tree_state_image_push(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image img, const char *title, enum nk_collapse_states *state) -{ - return nk_tree_state_base(ctx, type, &img, title, state); -} -NK_API void -nk_tree_state_pop(struct nk_context *ctx) -{ - struct nk_window *win = 0; - struct nk_panel *layout = 0; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - layout->at_x -= ctx->style.tab.indent + (float)*layout->offset_x; - layout->bounds.w += ctx->style.tab.indent + ctx->style.window.padding.x; - NK_ASSERT(layout->row.tree_depth); - layout->row.tree_depth--; -} -NK_API nk_bool -nk_tree_push_hashed(struct nk_context *ctx, enum nk_tree_type type, - const char *title, enum nk_collapse_states initial_state, - const char *hash, int len, int line) -{ - return nk_tree_base(ctx, type, 0, title, initial_state, hash, len, line); -} -NK_API nk_bool -nk_tree_image_push_hashed(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image img, const char *title, enum nk_collapse_states initial_state, - const char *hash, int len,int seed) -{ - return nk_tree_base(ctx, type, &img, title, initial_state, hash, len, seed); -} -NK_API void -nk_tree_pop(struct nk_context *ctx) -{ - nk_tree_state_pop(ctx); -} -NK_INTERN int -nk_tree_element_image_push_hashed_base(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image *img, const char *title, int title_len, - enum nk_collapse_states *state, nk_bool *selected) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_style *style; - struct nk_command_buffer *out; - const struct nk_input *in; - const struct nk_style_button *button; - enum nk_symbol_type symbol; - float row_height; - struct nk_vec2 padding; - - int text_len; - float text_width; - - struct nk_vec2 item_spacing; - struct nk_rect header = {0,0,0,0}; - struct nk_rect sym = {0,0,0,0}; - - nk_flags ws = 0; - enum nk_widget_layout_states widget_state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - /* cache some data */ - win = ctx->current; - layout = win->layout; - out = &win->buffer; - style = &ctx->style; - item_spacing = style->window.spacing; - padding = style->selectable.padding; - - /* calculate header bounds and draw background */ - row_height = style->font->height + 2 * style->tab.padding.y; - nk_layout_set_min_row_height(ctx, row_height); - nk_layout_row_dynamic(ctx, row_height, 1); - nk_layout_reset_min_row_height(ctx); - - widget_state = nk_widget(&header, ctx); - if (type == NK_TREE_TAB) { - const struct nk_style_item *background = &style->tab.background; - - switch (background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, header, &background->data.image, nk_rgb_factor(nk_white, style->tab.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, header, &background->data.slice, nk_rgb_factor(nk_white, style->tab.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, header, 0, nk_rgb_factor(style->tab.border_color, style->tab.color_factor)); - nk_fill_rect(out, nk_shrink_rect(header, style->tab.border), - style->tab.rounding, nk_rgb_factor(background->data.color, style->tab.color_factor)); - - break; - } - } - - in = (!(layout->flags & NK_WINDOW_ROM)) ? &ctx->input: 0; - in = (in && widget_state == NK_WIDGET_VALID) ? &ctx->input : 0; - - /* select correct button style */ - if (*state == NK_MAXIMIZED) { - symbol = style->tab.sym_maximize; - if (type == NK_TREE_TAB) - button = &style->tab.tab_maximize_button; - else button = &style->tab.node_maximize_button; - } else { - symbol = style->tab.sym_minimize; - if (type == NK_TREE_TAB) - button = &style->tab.tab_minimize_button; - else button = &style->tab.node_minimize_button; - } - {/* draw triangle button */ - sym.w = sym.h = style->font->height; - sym.y = header.y + style->tab.padding.y; - sym.x = header.x + style->tab.padding.x; - if (nk_do_button_symbol(&ws, &win->buffer, sym, symbol, NK_BUTTON_DEFAULT, button, in, style->font)) - *state = (*state == NK_MAXIMIZED) ? NK_MINIMIZED : NK_MAXIMIZED;} - - /* draw label */ - {nk_flags dummy = 0; - struct nk_rect label; - /* calculate size of the text and tooltip */ - text_len = nk_strlen(title); - text_width = style->font->width(style->font->userdata, style->font->height, title, text_len); - text_width += (4 * padding.x); - - header.w = NK_MAX(header.w, sym.w + item_spacing.x); - label.x = sym.x + sym.w + item_spacing.x; - label.y = sym.y; - label.w = NK_MIN(header.w - (sym.w + item_spacing.y + style->tab.indent), text_width); - label.h = style->font->height; - - if (img) { - nk_do_selectable_image(&dummy, &win->buffer, label, title, title_len, NK_TEXT_LEFT, - selected, img, &style->selectable, in, style->font); - } else nk_do_selectable(&dummy, &win->buffer, label, title, title_len, NK_TEXT_LEFT, - selected, &style->selectable, in, style->font); - } - /* increase x-axis cursor widget position pointer */ - if (*state == NK_MAXIMIZED) { - layout->at_x = header.x + (float)*layout->offset_x + style->tab.indent; - layout->bounds.w = NK_MAX(layout->bounds.w, style->tab.indent); - layout->bounds.w -= (style->tab.indent + style->window.padding.x); - layout->row.tree_depth++; - return nk_true; - } else return nk_false; -} -NK_INTERN int -nk_tree_element_base(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image *img, const char *title, enum nk_collapse_states initial_state, - nk_bool *selected, const char *hash, int len, int line) -{ - struct nk_window *win = ctx->current; - int title_len = 0; - nk_hash tree_hash = 0; - nk_uint *state = 0; - - /* retrieve tree state from internal widget state tables */ - if (!hash) { - title_len = (int)nk_strlen(title); - tree_hash = nk_murmur_hash(title, (int)title_len, (nk_hash)line); - } else tree_hash = nk_murmur_hash(hash, len, (nk_hash)line); - state = nk_find_value(win, tree_hash); - if (!state) { - state = nk_add_value(ctx, win, tree_hash, 0); - *state = initial_state; - } return nk_tree_element_image_push_hashed_base(ctx, type, img, title, - nk_strlen(title), (enum nk_collapse_states*)state, selected); -} -NK_API nk_bool -nk_tree_element_push_hashed(struct nk_context *ctx, enum nk_tree_type type, - const char *title, enum nk_collapse_states initial_state, - nk_bool *selected, const char *hash, int len, int seed) -{ - return nk_tree_element_base(ctx, type, 0, title, initial_state, selected, hash, len, seed); -} -NK_API nk_bool -nk_tree_element_image_push_hashed(struct nk_context *ctx, enum nk_tree_type type, - struct nk_image img, const char *title, enum nk_collapse_states initial_state, - nk_bool *selected, const char *hash, int len,int seed) -{ - return nk_tree_element_base(ctx, type, &img, title, initial_state, selected, hash, len, seed); -} -NK_API void -nk_tree_element_pop(struct nk_context *ctx) -{ - nk_tree_state_pop(ctx); -} - - - - - -/* =============================================================== - * - * GROUP - * - * ===============================================================*/ -NK_API nk_bool -nk_group_scrolled_offset_begin(struct nk_context *ctx, - nk_uint *x_offset, nk_uint *y_offset, const char *title, nk_flags flags) -{ - struct nk_rect bounds; - struct nk_window panel; - struct nk_window *win; - - win = ctx->current; - nk_panel_alloc_space(&bounds, ctx); - {const struct nk_rect *c = &win->layout->clip; - if (!NK_INTERSECT(c->x, c->y, c->w, c->h, bounds.x, bounds.y, bounds.w, bounds.h) && - !(flags & NK_WINDOW_MOVABLE)) { - return 0; - }} - if (win->flags & NK_WINDOW_ROM) - flags |= NK_WINDOW_ROM; - - /* initialize a fake window to create the panel from */ - nk_zero(&panel, sizeof(panel)); - panel.bounds = bounds; - panel.flags = flags; - panel.scrollbar.x = *x_offset; - panel.scrollbar.y = *y_offset; - panel.buffer = win->buffer; - panel.layout = (struct nk_panel*)nk_create_panel(ctx); - ctx->current = &panel; - nk_panel_begin(ctx, (flags & NK_WINDOW_TITLE) ? title: 0, NK_PANEL_GROUP); - - win->buffer = panel.buffer; - win->buffer.clip = panel.layout->clip; - panel.layout->offset_x = x_offset; - panel.layout->offset_y = y_offset; - panel.layout->parent = win->layout; - win->layout = panel.layout; - - ctx->current = win; - if ((panel.layout->flags & NK_WINDOW_CLOSED) || - (panel.layout->flags & NK_WINDOW_MINIMIZED)) - { - nk_flags f = panel.layout->flags; - nk_group_scrolled_end(ctx); - if (f & NK_WINDOW_CLOSED) - return NK_WINDOW_CLOSED; - if (f & NK_WINDOW_MINIMIZED) - return NK_WINDOW_MINIMIZED; - } - return 1; -} -NK_API void -nk_group_scrolled_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_panel *parent; - struct nk_panel *g; - - struct nk_rect clip; - struct nk_window pan; - struct nk_vec2 panel_padding; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return; - - /* make sure nk_group_begin was called correctly */ - NK_ASSERT(ctx->current); - win = ctx->current; - NK_ASSERT(win->layout); - g = win->layout; - NK_ASSERT(g->parent); - parent = g->parent; - - /* dummy window */ - nk_zero_struct(pan); - panel_padding = nk_panel_get_padding(&ctx->style, NK_PANEL_GROUP); - pan.bounds.y = g->bounds.y - (g->header_height + g->menu.h); - pan.bounds.x = g->bounds.x - panel_padding.x; - pan.bounds.w = g->bounds.w + 2 * panel_padding.x; - pan.bounds.h = g->bounds.h + g->header_height + g->menu.h; - if (g->flags & NK_WINDOW_BORDER) { - pan.bounds.x -= g->border; - pan.bounds.y -= g->border; - pan.bounds.w += 2*g->border; - pan.bounds.h += 2*g->border; - } - if (!(g->flags & NK_WINDOW_NO_SCROLLBAR)) { - pan.bounds.w += ctx->style.window.scrollbar_size.x; - pan.bounds.h += ctx->style.window.scrollbar_size.y; - } - pan.scrollbar.x = *g->offset_x; - pan.scrollbar.y = *g->offset_y; - pan.flags = g->flags; - pan.buffer = win->buffer; - pan.layout = g; - pan.parent = win; - ctx->current = &pan; - - /* make sure group has correct clipping rectangle */ - nk_unify(&clip, &parent->clip, pan.bounds.x, pan.bounds.y, - pan.bounds.x + pan.bounds.w, pan.bounds.y + pan.bounds.h + panel_padding.x); - nk_push_scissor(&pan.buffer, clip); - nk_end(ctx); - - win->buffer = pan.buffer; - nk_push_scissor(&win->buffer, parent->clip); - ctx->current = win; - win->layout = parent; - g->bounds = pan.bounds; - return; -} -NK_API nk_bool -nk_group_scrolled_begin(struct nk_context *ctx, - struct nk_scroll *scroll, const char *title, nk_flags flags) -{ - return nk_group_scrolled_offset_begin(ctx, &scroll->x, &scroll->y, title, flags); -} -NK_API nk_bool -nk_group_begin_titled(struct nk_context *ctx, const char *id, - const char *title, nk_flags flags) -{ - int id_len; - nk_hash id_hash; - struct nk_window *win; - nk_uint *x_offset; - nk_uint *y_offset; - - NK_ASSERT(ctx); - NK_ASSERT(id); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !id) - return 0; - - /* find persistent group scrollbar value */ - win = ctx->current; - id_len = (int)nk_strlen(id); - id_hash = nk_murmur_hash(id, (int)id_len, NK_PANEL_GROUP); - x_offset = nk_find_value(win, id_hash); - if (!x_offset) { - x_offset = nk_add_value(ctx, win, id_hash, 0); - y_offset = nk_add_value(ctx, win, id_hash+1, 0); - - NK_ASSERT(x_offset); - NK_ASSERT(y_offset); - if (!x_offset || !y_offset) return 0; - *x_offset = *y_offset = 0; - } else y_offset = nk_find_value(win, id_hash+1); - return nk_group_scrolled_offset_begin(ctx, x_offset, y_offset, title, flags); -} -NK_API nk_bool -nk_group_begin(struct nk_context *ctx, const char *title, nk_flags flags) -{ - return nk_group_begin_titled(ctx, title, title, flags); -} -NK_API void -nk_group_end(struct nk_context *ctx) -{ - nk_group_scrolled_end(ctx); -} -NK_API void -nk_group_get_scroll(struct nk_context *ctx, const char *id, nk_uint *x_offset, nk_uint *y_offset) -{ - int id_len; - nk_hash id_hash; - struct nk_window *win; - nk_uint *x_offset_ptr; - nk_uint *y_offset_ptr; - - NK_ASSERT(ctx); - NK_ASSERT(id); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !id) - return; - - /* find persistent group scrollbar value */ - win = ctx->current; - id_len = (int)nk_strlen(id); - id_hash = nk_murmur_hash(id, (int)id_len, NK_PANEL_GROUP); - x_offset_ptr = nk_find_value(win, id_hash); - if (!x_offset_ptr) { - x_offset_ptr = nk_add_value(ctx, win, id_hash, 0); - y_offset_ptr = nk_add_value(ctx, win, id_hash+1, 0); - - NK_ASSERT(x_offset_ptr); - NK_ASSERT(y_offset_ptr); - if (!x_offset_ptr || !y_offset_ptr) return; - *x_offset_ptr = *y_offset_ptr = 0; - } else y_offset_ptr = nk_find_value(win, id_hash+1); - if (x_offset) - *x_offset = *x_offset_ptr; - if (y_offset) - *y_offset = *y_offset_ptr; -} -NK_API void -nk_group_set_scroll(struct nk_context *ctx, const char *id, nk_uint x_offset, nk_uint y_offset) -{ - int id_len; - nk_hash id_hash; - struct nk_window *win; - nk_uint *x_offset_ptr; - nk_uint *y_offset_ptr; - - NK_ASSERT(ctx); - NK_ASSERT(id); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !id) - return; - - /* find persistent group scrollbar value */ - win = ctx->current; - id_len = (int)nk_strlen(id); - id_hash = nk_murmur_hash(id, (int)id_len, NK_PANEL_GROUP); - x_offset_ptr = nk_find_value(win, id_hash); - if (!x_offset_ptr) { - x_offset_ptr = nk_add_value(ctx, win, id_hash, 0); - y_offset_ptr = nk_add_value(ctx, win, id_hash+1, 0); - - NK_ASSERT(x_offset_ptr); - NK_ASSERT(y_offset_ptr); - if (!x_offset_ptr || !y_offset_ptr) return; - *x_offset_ptr = *y_offset_ptr = 0; - } else y_offset_ptr = nk_find_value(win, id_hash+1); - *x_offset_ptr = x_offset; - *y_offset_ptr = y_offset; -} - - - - -/* =============================================================== - * - * LIST VIEW - * - * ===============================================================*/ -NK_API nk_bool -nk_list_view_begin(struct nk_context *ctx, struct nk_list_view *view, - const char *title, nk_flags flags, int row_height, int row_count) -{ - int title_len; - nk_hash title_hash; - nk_uint *x_offset; - nk_uint *y_offset; - - int result; - struct nk_window *win; - struct nk_panel *layout; - const struct nk_style *style; - struct nk_vec2 item_spacing; - - NK_ASSERT(ctx); - NK_ASSERT(view); - NK_ASSERT(title); - if (!ctx || !view || !title) return 0; - - win = ctx->current; - style = &ctx->style; - item_spacing = style->window.spacing; - row_height += NK_MAX(0, (int)item_spacing.y); - - /* find persistent list view scrollbar offset */ - title_len = (int)nk_strlen(title); - title_hash = nk_murmur_hash(title, (int)title_len, NK_PANEL_GROUP); - x_offset = nk_find_value(win, title_hash); - if (!x_offset) { - x_offset = nk_add_value(ctx, win, title_hash, 0); - y_offset = nk_add_value(ctx, win, title_hash+1, 0); - - NK_ASSERT(x_offset); - NK_ASSERT(y_offset); - if (!x_offset || !y_offset) return 0; - *x_offset = *y_offset = 0; - } else y_offset = nk_find_value(win, title_hash+1); - view->scroll_value = *y_offset; - view->scroll_pointer = y_offset; - - *y_offset = 0; - result = nk_group_scrolled_offset_begin(ctx, x_offset, y_offset, title, flags); - win = ctx->current; - layout = win->layout; - - view->total_height = row_height * NK_MAX(row_count,1); - view->begin = (int)NK_MAX(((float)view->scroll_value / (float)row_height), 0.0f); - view->count = (int)NK_MAX(nk_iceilf((layout->clip.h)/(float)row_height),0); - view->count = NK_MIN(view->count, row_count - view->begin); - view->end = view->begin + view->count; - view->ctx = ctx; - return result; -} -NK_API void -nk_list_view_end(struct nk_list_view *view) -{ - struct nk_context *ctx; - struct nk_window *win; - struct nk_panel *layout; - - NK_ASSERT(view); - NK_ASSERT(view->ctx); - NK_ASSERT(view->scroll_pointer); - if (!view || !view->ctx) return; - - ctx = view->ctx; - win = ctx->current; - layout = win->layout; - layout->at_y = layout->bounds.y + (float)view->total_height; - *view->scroll_pointer = *view->scroll_pointer + view->scroll_value; - nk_group_end(view->ctx); -} - - - - - -/* =============================================================== - * - * WIDGET - * - * ===============================================================*/ -NK_API struct nk_rect -nk_widget_bounds(struct nk_context *ctx) -{ - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return nk_rect(0,0,0,0); - nk_layout_peek(&bounds, ctx); - return bounds; -} -NK_API struct nk_vec2 -nk_widget_position(struct nk_context *ctx) -{ - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return nk_vec2(0,0); - - nk_layout_peek(&bounds, ctx); - return nk_vec2(bounds.x, bounds.y); -} -NK_API struct nk_vec2 -nk_widget_size(struct nk_context *ctx) -{ - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return nk_vec2(0,0); - - nk_layout_peek(&bounds, ctx); - return nk_vec2(bounds.w, bounds.h); -} -NK_API float -nk_widget_width(struct nk_context *ctx) -{ - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return 0; - - nk_layout_peek(&bounds, ctx); - return bounds.w; -} -NK_API float -nk_widget_height(struct nk_context *ctx) -{ - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return 0; - - nk_layout_peek(&bounds, ctx); - return bounds.h; -} -NK_API nk_bool -nk_widget_is_hovered(struct nk_context *ctx) -{ - struct nk_rect c, v; - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current || ctx->active != ctx->current) - return 0; - - c = ctx->current->layout->clip; - c.x = (float)((int)c.x); - c.y = (float)((int)c.y); - c.w = (float)((int)c.w); - c.h = (float)((int)c.h); - - nk_layout_peek(&bounds, ctx); - nk_unify(&v, &c, bounds.x, bounds.y, bounds.x + bounds.w, bounds.y + bounds.h); - if (!NK_INTERSECT(c.x, c.y, c.w, c.h, bounds.x, bounds.y, bounds.w, bounds.h)) - return 0; - return nk_input_is_mouse_hovering_rect(&ctx->input, bounds); -} -NK_API nk_bool -nk_widget_is_mouse_clicked(struct nk_context *ctx, enum nk_buttons btn) -{ - struct nk_rect c, v; - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current || ctx->active != ctx->current) - return 0; - - c = ctx->current->layout->clip; - c.x = (float)((int)c.x); - c.y = (float)((int)c.y); - c.w = (float)((int)c.w); - c.h = (float)((int)c.h); - - nk_layout_peek(&bounds, ctx); - nk_unify(&v, &c, bounds.x, bounds.y, bounds.x + bounds.w, bounds.y + bounds.h); - if (!NK_INTERSECT(c.x, c.y, c.w, c.h, bounds.x, bounds.y, bounds.w, bounds.h)) - return 0; - return nk_input_mouse_clicked(&ctx->input, btn, bounds); -} -NK_API nk_bool -nk_widget_has_mouse_click_down(struct nk_context *ctx, enum nk_buttons btn, nk_bool down) -{ - struct nk_rect c, v; - struct nk_rect bounds; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current || ctx->active != ctx->current) - return 0; - - c = ctx->current->layout->clip; - c.x = (float)((int)c.x); - c.y = (float)((int)c.y); - c.w = (float)((int)c.w); - c.h = (float)((int)c.h); - - nk_layout_peek(&bounds, ctx); - nk_unify(&v, &c, bounds.x, bounds.y, bounds.x + bounds.w, bounds.y + bounds.h); - if (!NK_INTERSECT(c.x, c.y, c.w, c.h, bounds.x, bounds.y, bounds.w, bounds.h)) - return 0; - return nk_input_has_mouse_click_down_in_rect(&ctx->input, btn, bounds, down); -} -NK_API enum nk_widget_layout_states -nk_widget(struct nk_rect *bounds, const struct nk_context *ctx) -{ - struct nk_rect c, v; - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return NK_WIDGET_INVALID; - - /* allocate space and check if the widget needs to be updated and drawn */ - nk_panel_alloc_space(bounds, ctx); - win = ctx->current; - layout = win->layout; - in = &ctx->input; - c = layout->clip; - - /* if one of these triggers you forgot to add an `if` condition around either - a window, group, popup, combobox or contextual menu `begin` and `end` block. - Example: - if (nk_begin(...) {...} nk_end(...); or - if (nk_group_begin(...) { nk_group_end(...);} */ - NK_ASSERT(!(layout->flags & NK_WINDOW_MINIMIZED)); - NK_ASSERT(!(layout->flags & NK_WINDOW_HIDDEN)); - NK_ASSERT(!(layout->flags & NK_WINDOW_CLOSED)); - - /* need to convert to int here to remove floating point errors */ - bounds->x = (float)((int)bounds->x); - bounds->y = (float)((int)bounds->y); - bounds->w = (float)((int)bounds->w); - bounds->h = (float)((int)bounds->h); - - c.x = (float)((int)c.x); - c.y = (float)((int)c.y); - c.w = (float)((int)c.w); - c.h = (float)((int)c.h); - - nk_unify(&v, &c, bounds->x, bounds->y, bounds->x + bounds->w, bounds->y + bounds->h); - if (!NK_INTERSECT(c.x, c.y, c.w, c.h, bounds->x, bounds->y, bounds->w, bounds->h)) - return NK_WIDGET_INVALID; - if (win->widgets_disabled) - return NK_WIDGET_DISABLED; - if (!NK_INBOX(in->mouse.pos.x, in->mouse.pos.y, v.x, v.y, v.w, v.h)) - return NK_WIDGET_ROM; - return NK_WIDGET_VALID; -} -NK_API enum nk_widget_layout_states -nk_widget_fitting(struct nk_rect *bounds, struct nk_context *ctx, - struct nk_vec2 item_padding) -{ - /* update the bounds to stand without padding */ - enum nk_widget_layout_states state; - NK_UNUSED(item_padding); - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return NK_WIDGET_INVALID; - - state = nk_widget(bounds, ctx); - return state; -} -NK_API void -nk_spacing(struct nk_context *ctx, int cols) -{ - struct nk_window *win; - struct nk_panel *layout; - struct nk_rect none; - int i, index, rows; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - /* spacing over row boundaries */ - win = ctx->current; - layout = win->layout; - index = (layout->row.index + cols) % layout->row.columns; - rows = (layout->row.index + cols) / layout->row.columns; - if (rows) { - for (i = 0; i < rows; ++i) - nk_panel_alloc_row(ctx, win); - cols = index; - } - /* non table layout need to allocate space */ - if (layout->row.type != NK_LAYOUT_DYNAMIC_FIXED && - layout->row.type != NK_LAYOUT_STATIC_FIXED) { - for (i = 0; i < cols; ++i) - nk_panel_alloc_space(&none, ctx); - } layout->row.index = index; -} -NK_API void -nk_widget_disable_begin(struct nk_context* ctx) -{ - struct nk_window* win; - struct nk_style* style; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - - if (!ctx || !ctx->current) - return; - - win = ctx->current; - style = &ctx->style; - - win->widgets_disabled = nk_true; - - style->button.color_factor_text = style->button.disabled_factor; - style->button.color_factor_background = style->button.disabled_factor; - style->chart.color_factor = style->chart.disabled_factor; - style->checkbox.color_factor = style->checkbox.disabled_factor; - style->combo.color_factor = style->combo.disabled_factor; - style->combo.button.color_factor_text = style->combo.button.disabled_factor; - style->combo.button.color_factor_background = style->combo.button.disabled_factor; - style->contextual_button.color_factor_text = style->contextual_button.disabled_factor; - style->contextual_button.color_factor_background = style->contextual_button.disabled_factor; - style->edit.color_factor = style->edit.disabled_factor; - style->edit.scrollbar.color_factor = style->edit.scrollbar.disabled_factor; - style->menu_button.color_factor_text = style->menu_button.disabled_factor; - style->menu_button.color_factor_background = style->menu_button.disabled_factor; - style->option.color_factor = style->option.disabled_factor; - style->progress.color_factor = style->progress.disabled_factor; - style->property.color_factor = style->property.disabled_factor; - style->property.inc_button.color_factor_text = style->property.inc_button.disabled_factor; - style->property.inc_button.color_factor_background = style->property.inc_button.disabled_factor; - style->property.dec_button.color_factor_text = style->property.dec_button.disabled_factor; - style->property.dec_button.color_factor_background = style->property.dec_button.disabled_factor; - style->property.edit.color_factor = style->property.edit.disabled_factor; - style->scrollh.color_factor = style->scrollh.disabled_factor; - style->scrollh.inc_button.color_factor_text = style->scrollh.inc_button.disabled_factor; - style->scrollh.inc_button.color_factor_background = style->scrollh.inc_button.disabled_factor; - style->scrollh.dec_button.color_factor_text = style->scrollh.dec_button.disabled_factor; - style->scrollh.dec_button.color_factor_background = style->scrollh.dec_button.disabled_factor; - style->scrollv.color_factor = style->scrollv.disabled_factor; - style->scrollv.inc_button.color_factor_text = style->scrollv.inc_button.disabled_factor; - style->scrollv.inc_button.color_factor_background = style->scrollv.inc_button.disabled_factor; - style->scrollv.dec_button.color_factor_text = style->scrollv.dec_button.disabled_factor; - style->scrollv.dec_button.color_factor_background = style->scrollv.dec_button.disabled_factor; - style->selectable.color_factor = style->selectable.disabled_factor; - style->slider.color_factor = style->slider.disabled_factor; - style->slider.inc_button.color_factor_text = style->slider.inc_button.disabled_factor; - style->slider.inc_button.color_factor_background = style->slider.inc_button.disabled_factor; - style->slider.dec_button.color_factor_text = style->slider.dec_button.disabled_factor; - style->slider.dec_button.color_factor_background = style->slider.dec_button.disabled_factor; - style->tab.color_factor = style->tab.disabled_factor; - style->tab.node_maximize_button.color_factor_text = style->tab.node_maximize_button.disabled_factor; - style->tab.node_minimize_button.color_factor_text = style->tab.node_minimize_button.disabled_factor; - style->tab.tab_maximize_button.color_factor_text = style->tab.tab_maximize_button.disabled_factor; - style->tab.tab_maximize_button.color_factor_background = style->tab.tab_maximize_button.disabled_factor; - style->tab.tab_minimize_button.color_factor_text = style->tab.tab_minimize_button.disabled_factor; - style->tab.tab_minimize_button.color_factor_background = style->tab.tab_minimize_button.disabled_factor; - style->text.color_factor = style->text.disabled_factor; -} -NK_API void -nk_widget_disable_end(struct nk_context* ctx) -{ - struct nk_window* win; - struct nk_style* style; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - - if (!ctx || !ctx->current) - return; - - win = ctx->current; - style = &ctx->style; - - win->widgets_disabled = nk_false; - - style->button.color_factor_text = 1.0f; - style->button.color_factor_background = 1.0f; - style->chart.color_factor = 1.0f; - style->checkbox.color_factor = 1.0f; - style->combo.color_factor = 1.0f; - style->combo.button.color_factor_text = 1.0f; - style->combo.button.color_factor_background = 1.0f; - style->contextual_button.color_factor_text = 1.0f; - style->contextual_button.color_factor_background = 1.0f; - style->edit.color_factor = 1.0f; - style->edit.scrollbar.color_factor = 1.0f; - style->menu_button.color_factor_text = 1.0f; - style->menu_button.color_factor_background = 1.0f; - style->option.color_factor = 1.0f; - style->progress.color_factor = 1.0f; - style->property.color_factor = 1.0f; - style->property.inc_button.color_factor_text = 1.0f; - style->property.inc_button.color_factor_background = 1.0f; - style->property.dec_button.color_factor_text = 1.0f; - style->property.dec_button.color_factor_background = 1.0f; - style->property.edit.color_factor = 1.0f; - style->scrollh.color_factor = 1.0f; - style->scrollh.inc_button.color_factor_text = 1.0f; - style->scrollh.inc_button.color_factor_background = 1.0f; - style->scrollh.dec_button.color_factor_text = 1.0f; - style->scrollh.dec_button.color_factor_background = 1.0f; - style->scrollv.color_factor = 1.0f; - style->scrollv.inc_button.color_factor_text = 1.0f; - style->scrollv.inc_button.color_factor_background = 1.0f; - style->scrollv.dec_button.color_factor_text = 1.0f; - style->scrollv.dec_button.color_factor_background = 1.0f; - style->selectable.color_factor = 1.0f; - style->slider.color_factor = 1.0f; - style->slider.inc_button.color_factor_text = 1.0f; - style->slider.inc_button.color_factor_background = 1.0f; - style->slider.dec_button.color_factor_text = 1.0f; - style->slider.dec_button.color_factor_background = 1.0f; - style->tab.color_factor = 1.0f; - style->tab.node_maximize_button.color_factor_text = 1.0f; - style->tab.node_minimize_button.color_factor_text = 1.0f; - style->tab.tab_maximize_button.color_factor_text = 1.0f; - style->tab.tab_maximize_button.color_factor_background = 1.0f; - style->tab.tab_minimize_button.color_factor_text = 1.0f; - style->tab.tab_minimize_button.color_factor_background = 1.0f; - style->text.color_factor = 1.0f; -} - - - - -/* =============================================================== - * - * TEXT - * - * ===============================================================*/ -NK_LIB void -nk_widget_text(struct nk_command_buffer *o, struct nk_rect b, - const char *string, int len, const struct nk_text *t, - nk_flags a, const struct nk_user_font *f) -{ - struct nk_rect label; - float text_width; - - NK_ASSERT(o); - NK_ASSERT(t); - if (!o || !t) return; - - b.h = NK_MAX(b.h, 2 * t->padding.y); - label.x = 0; label.w = 0; - label.y = b.y + t->padding.y; - label.h = NK_MIN(f->height, b.h - 2 * t->padding.y); - - text_width = f->width(f->userdata, f->height, (const char*)string, len); - text_width += (2.0f * t->padding.x); - - /* align in x-axis */ - if (a & NK_TEXT_ALIGN_LEFT) { - label.x = b.x + t->padding.x; - label.w = NK_MAX(0, b.w - 2 * t->padding.x); - } else if (a & NK_TEXT_ALIGN_CENTERED) { - label.w = NK_MAX(1, 2 * t->padding.x + (float)text_width); - label.x = (b.x + t->padding.x + ((b.w - 2 * t->padding.x) - label.w) / 2); - label.x = NK_MAX(b.x + t->padding.x, label.x); - label.w = NK_MIN(b.x + b.w, label.x + label.w); - if (label.w >= label.x) label.w -= label.x; - } else if (a & NK_TEXT_ALIGN_RIGHT) { - label.x = NK_MAX(b.x + t->padding.x, (b.x + b.w) - (2 * t->padding.x + (float)text_width)); - label.w = (float)text_width + 2 * t->padding.x; - } else return; - - /* align in y-axis */ - if (a & NK_TEXT_ALIGN_MIDDLE) { - label.y = b.y + b.h/2.0f - (float)f->height/2.0f; - label.h = NK_MAX(b.h/2.0f, b.h - (b.h/2.0f + f->height/2.0f)); - } else if (a & NK_TEXT_ALIGN_BOTTOM) { - label.y = b.y + b.h - f->height; - label.h = f->height; - } - nk_draw_text(o, label, (const char*)string, len, f, t->background, t->text); -} -NK_LIB void -nk_widget_text_wrap(struct nk_command_buffer *o, struct nk_rect b, - const char *string, int len, const struct nk_text *t, - const struct nk_user_font *f) -{ - float width; - int glyphs = 0; - int fitting = 0; - int done = 0; - struct nk_rect line; - struct nk_text text; - NK_INTERN nk_rune seperator[] = {' '}; - - NK_ASSERT(o); - NK_ASSERT(t); - if (!o || !t) return; - - text.padding = nk_vec2(0,0); - text.background = t->background; - text.text = t->text; - - b.w = NK_MAX(b.w, 2 * t->padding.x); - b.h = NK_MAX(b.h, 2 * t->padding.y); - b.h = b.h - 2 * t->padding.y; - - line.x = b.x + t->padding.x; - line.y = b.y + t->padding.y; - line.w = b.w - 2 * t->padding.x; - line.h = 2 * t->padding.y + f->height; - - fitting = nk_text_clamp(f, string, len, line.w, &glyphs, &width, seperator,NK_LEN(seperator)); - while (done < len) { - if (!fitting || line.y + line.h >= (b.y + b.h)) break; - nk_widget_text(o, line, &string[done], fitting, &text, NK_TEXT_LEFT, f); - done += fitting; - line.y += f->height + 2 * t->padding.y; - fitting = nk_text_clamp(f, &string[done], len - done, line.w, &glyphs, &width, seperator,NK_LEN(seperator)); - } -} -NK_API void -nk_text_colored(struct nk_context *ctx, const char *str, int len, - nk_flags alignment, struct nk_color color) -{ - struct nk_window *win; - const struct nk_style *style; - - struct nk_vec2 item_padding; - struct nk_rect bounds; - struct nk_text text; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return; - - win = ctx->current; - style = &ctx->style; - nk_panel_alloc_space(&bounds, ctx); - item_padding = style->text.padding; - - text.padding.x = item_padding.x; - text.padding.y = item_padding.y; - text.background = style->window.background; - text.text = nk_rgb_factor(color, style->text.color_factor); - nk_widget_text(&win->buffer, bounds, str, len, &text, alignment, style->font); -} -NK_API void -nk_text_wrap_colored(struct nk_context *ctx, const char *str, - int len, struct nk_color color) -{ - struct nk_window *win; - const struct nk_style *style; - - struct nk_vec2 item_padding; - struct nk_rect bounds; - struct nk_text text; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return; - - win = ctx->current; - style = &ctx->style; - nk_panel_alloc_space(&bounds, ctx); - item_padding = style->text.padding; - - text.padding.x = item_padding.x; - text.padding.y = item_padding.y; - text.background = style->window.background; - text.text = nk_rgb_factor(color, style->text.color_factor); - nk_widget_text_wrap(&win->buffer, bounds, str, len, &text, style->font); -} -#ifdef NK_INCLUDE_STANDARD_VARARGS -NK_API void -nk_labelf_colored(struct nk_context *ctx, nk_flags flags, - struct nk_color color, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - nk_labelfv_colored(ctx, flags, color, fmt, args); - va_end(args); -} -NK_API void -nk_labelf_colored_wrap(struct nk_context *ctx, struct nk_color color, - const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - nk_labelfv_colored_wrap(ctx, color, fmt, args); - va_end(args); -} -NK_API void -nk_labelf(struct nk_context *ctx, nk_flags flags, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - nk_labelfv(ctx, flags, fmt, args); - va_end(args); -} -NK_API void -nk_labelf_wrap(struct nk_context *ctx, const char *fmt,...) -{ - va_list args; - va_start(args, fmt); - nk_labelfv_wrap(ctx, fmt, args); - va_end(args); -} -NK_API void -nk_labelfv_colored(struct nk_context *ctx, nk_flags flags, - struct nk_color color, const char *fmt, va_list args) -{ - char buf[256]; - nk_strfmt(buf, NK_LEN(buf), fmt, args); - nk_label_colored(ctx, buf, flags, color); -} - -NK_API void -nk_labelfv_colored_wrap(struct nk_context *ctx, struct nk_color color, - const char *fmt, va_list args) -{ - char buf[256]; - nk_strfmt(buf, NK_LEN(buf), fmt, args); - nk_label_colored_wrap(ctx, buf, color); -} - -NK_API void -nk_labelfv(struct nk_context *ctx, nk_flags flags, const char *fmt, va_list args) -{ - char buf[256]; - nk_strfmt(buf, NK_LEN(buf), fmt, args); - nk_label(ctx, buf, flags); -} - -NK_API void -nk_labelfv_wrap(struct nk_context *ctx, const char *fmt, va_list args) -{ - char buf[256]; - nk_strfmt(buf, NK_LEN(buf), fmt, args); - nk_label_wrap(ctx, buf); -} - -NK_API void -nk_value_bool(struct nk_context *ctx, const char *prefix, int value) -{ - nk_labelf(ctx, NK_TEXT_LEFT, "%s: %s", prefix, ((value) ? "true": "false")); -} -NK_API void -nk_value_int(struct nk_context *ctx, const char *prefix, int value) -{ - nk_labelf(ctx, NK_TEXT_LEFT, "%s: %d", prefix, value); -} -NK_API void -nk_value_uint(struct nk_context *ctx, const char *prefix, unsigned int value) -{ - nk_labelf(ctx, NK_TEXT_LEFT, "%s: %u", prefix, value); -} -NK_API void -nk_value_float(struct nk_context *ctx, const char *prefix, float value) -{ - double double_value = (double)value; - nk_labelf(ctx, NK_TEXT_LEFT, "%s: %.3f", prefix, double_value); -} -NK_API void -nk_value_color_byte(struct nk_context *ctx, const char *p, struct nk_color c) -{ - nk_labelf(ctx, NK_TEXT_LEFT, "%s: (%d, %d, %d, %d)", p, c.r, c.g, c.b, c.a); -} -NK_API void -nk_value_color_float(struct nk_context *ctx, const char *p, struct nk_color color) -{ - double c[4]; nk_color_dv(c, color); - nk_labelf(ctx, NK_TEXT_LEFT, "%s: (%.2f, %.2f, %.2f, %.2f)", - p, c[0], c[1], c[2], c[3]); -} -NK_API void -nk_value_color_hex(struct nk_context *ctx, const char *prefix, struct nk_color color) -{ - char hex[16]; - nk_color_hex_rgba(hex, color); - nk_labelf(ctx, NK_TEXT_LEFT, "%s: %s", prefix, hex); -} -#endif -NK_API void -nk_text(struct nk_context *ctx, const char *str, int len, nk_flags alignment) -{ - NK_ASSERT(ctx); - if (!ctx) return; - nk_text_colored(ctx, str, len, alignment, ctx->style.text.color); -} -NK_API void -nk_text_wrap(struct nk_context *ctx, const char *str, int len) -{ - NK_ASSERT(ctx); - if (!ctx) return; - nk_text_wrap_colored(ctx, str, len, ctx->style.text.color); -} -NK_API void -nk_label(struct nk_context *ctx, const char *str, nk_flags alignment) -{ - nk_text(ctx, str, nk_strlen(str), alignment); -} -NK_API void -nk_label_colored(struct nk_context *ctx, const char *str, nk_flags align, - struct nk_color color) -{ - nk_text_colored(ctx, str, nk_strlen(str), align, color); -} -NK_API void -nk_label_wrap(struct nk_context *ctx, const char *str) -{ - nk_text_wrap(ctx, str, nk_strlen(str)); -} -NK_API void -nk_label_colored_wrap(struct nk_context *ctx, const char *str, struct nk_color color) -{ - nk_text_wrap_colored(ctx, str, nk_strlen(str), color); -} - - - - - -/* =============================================================== - * - * IMAGE - * - * ===============================================================*/ -NK_API nk_handle -nk_handle_ptr(void *ptr) -{ - nk_handle handle = {0}; - handle.ptr = ptr; - return handle; -} -NK_API nk_handle -nk_handle_id(int id) -{ - nk_handle handle; - nk_zero_struct(handle); - handle.id = id; - return handle; -} -NK_API struct nk_image -nk_subimage_ptr(void *ptr, nk_ushort w, nk_ushort h, struct nk_rect r) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - s.handle.ptr = ptr; - s.w = w; s.h = h; - s.region[0] = (nk_ushort)r.x; - s.region[1] = (nk_ushort)r.y; - s.region[2] = (nk_ushort)r.w; - s.region[3] = (nk_ushort)r.h; - return s; -} -NK_API struct nk_image -nk_subimage_id(int id, nk_ushort w, nk_ushort h, struct nk_rect r) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - s.handle.id = id; - s.w = w; s.h = h; - s.region[0] = (nk_ushort)r.x; - s.region[1] = (nk_ushort)r.y; - s.region[2] = (nk_ushort)r.w; - s.region[3] = (nk_ushort)r.h; - return s; -} -NK_API struct nk_image -nk_subimage_handle(nk_handle handle, nk_ushort w, nk_ushort h, struct nk_rect r) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - s.handle = handle; - s.w = w; s.h = h; - s.region[0] = (nk_ushort)r.x; - s.region[1] = (nk_ushort)r.y; - s.region[2] = (nk_ushort)r.w; - s.region[3] = (nk_ushort)r.h; - return s; -} -NK_API struct nk_image -nk_image_handle(nk_handle handle) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - s.handle = handle; - s.w = 0; s.h = 0; - s.region[0] = 0; - s.region[1] = 0; - s.region[2] = 0; - s.region[3] = 0; - return s; -} -NK_API struct nk_image -nk_image_ptr(void *ptr) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - NK_ASSERT(ptr); - s.handle.ptr = ptr; - s.w = 0; s.h = 0; - s.region[0] = 0; - s.region[1] = 0; - s.region[2] = 0; - s.region[3] = 0; - return s; -} -NK_API struct nk_image -nk_image_id(int id) -{ - struct nk_image s; - nk_zero(&s, sizeof(s)); - s.handle.id = id; - s.w = 0; s.h = 0; - s.region[0] = 0; - s.region[1] = 0; - s.region[2] = 0; - s.region[3] = 0; - return s; -} -NK_API nk_bool -nk_image_is_subimage(const struct nk_image* img) -{ - NK_ASSERT(img); - return !(img->w == 0 && img->h == 0); -} -NK_API void -nk_image(struct nk_context *ctx, struct nk_image img) -{ - struct nk_window *win; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return; - - win = ctx->current; - if (!nk_widget(&bounds, ctx)) return; - nk_draw_image(&win->buffer, bounds, &img, nk_white); -} -NK_API void -nk_image_color(struct nk_context *ctx, struct nk_image img, struct nk_color col) -{ - struct nk_window *win; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) return; - - win = ctx->current; - if (!nk_widget(&bounds, ctx)) return; - nk_draw_image(&win->buffer, bounds, &img, col); -} - - - - - -/* =============================================================== - * - * 9-SLICE - * - * ===============================================================*/ -NK_API struct nk_nine_slice -nk_sub9slice_ptr(void *ptr, nk_ushort w, nk_ushort h, struct nk_rect rgn, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - i->handle.ptr = ptr; - i->w = w; i->h = h; - i->region[0] = (nk_ushort)rgn.x; - i->region[1] = (nk_ushort)rgn.y; - i->region[2] = (nk_ushort)rgn.w; - i->region[3] = (nk_ushort)rgn.h; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API struct nk_nine_slice -nk_sub9slice_id(int id, nk_ushort w, nk_ushort h, struct nk_rect rgn, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - i->handle.id = id; - i->w = w; i->h = h; - i->region[0] = (nk_ushort)rgn.x; - i->region[1] = (nk_ushort)rgn.y; - i->region[2] = (nk_ushort)rgn.w; - i->region[3] = (nk_ushort)rgn.h; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API struct nk_nine_slice -nk_sub9slice_handle(nk_handle handle, nk_ushort w, nk_ushort h, struct nk_rect rgn, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - i->handle = handle; - i->w = w; i->h = h; - i->region[0] = (nk_ushort)rgn.x; - i->region[1] = (nk_ushort)rgn.y; - i->region[2] = (nk_ushort)rgn.w; - i->region[3] = (nk_ushort)rgn.h; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API struct nk_nine_slice -nk_nine_slice_handle(nk_handle handle, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - i->handle = handle; - i->w = 0; i->h = 0; - i->region[0] = 0; - i->region[1] = 0; - i->region[2] = 0; - i->region[3] = 0; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API struct nk_nine_slice -nk_nine_slice_ptr(void *ptr, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - NK_ASSERT(ptr); - i->handle.ptr = ptr; - i->w = 0; i->h = 0; - i->region[0] = 0; - i->region[1] = 0; - i->region[2] = 0; - i->region[3] = 0; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API struct nk_nine_slice -nk_nine_slice_id(int id, nk_ushort l, nk_ushort t, nk_ushort r, nk_ushort b) -{ - struct nk_nine_slice s; - struct nk_image *i = &s.img; - nk_zero(&s, sizeof(s)); - i->handle.id = id; - i->w = 0; i->h = 0; - i->region[0] = 0; - i->region[1] = 0; - i->region[2] = 0; - i->region[3] = 0; - s.l = l; s.t = t; s.r = r; s.b = b; - return s; -} -NK_API int -nk_nine_slice_is_sub9slice(const struct nk_nine_slice* slice) -{ - NK_ASSERT(slice); - return !(slice->img.w == 0 && slice->img.h == 0); -} - - - - - -/* ============================================================== - * - * BUTTON - * - * ===============================================================*/ -NK_LIB void -nk_draw_symbol(struct nk_command_buffer *out, enum nk_symbol_type type, - struct nk_rect content, struct nk_color background, struct nk_color foreground, - float border_width, const struct nk_user_font *font) -{ - switch (type) { - case NK_SYMBOL_X: - case NK_SYMBOL_UNDERSCORE: - case NK_SYMBOL_PLUS: - case NK_SYMBOL_MINUS: { - /* single character text symbol */ - const char *X = (type == NK_SYMBOL_X) ? "x": - (type == NK_SYMBOL_UNDERSCORE) ? "_": - (type == NK_SYMBOL_PLUS) ? "+": "-"; - struct nk_text text; - text.padding = nk_vec2(0,0); - text.background = background; - text.text = foreground; - nk_widget_text(out, content, X, 1, &text, NK_TEXT_CENTERED, font); - } break; - case NK_SYMBOL_CIRCLE_SOLID: - case NK_SYMBOL_CIRCLE_OUTLINE: - case NK_SYMBOL_RECT_SOLID: - case NK_SYMBOL_RECT_OUTLINE: { - /* simple empty/filled shapes */ - if (type == NK_SYMBOL_RECT_SOLID || type == NK_SYMBOL_RECT_OUTLINE) { - nk_fill_rect(out, content, 0, foreground); - if (type == NK_SYMBOL_RECT_OUTLINE) - nk_fill_rect(out, nk_shrink_rect(content, border_width), 0, background); - } else { - nk_fill_circle(out, content, foreground); - if (type == NK_SYMBOL_CIRCLE_OUTLINE) - nk_fill_circle(out, nk_shrink_rect(content, 1), background); - } - } break; - case NK_SYMBOL_TRIANGLE_UP: - case NK_SYMBOL_TRIANGLE_DOWN: - case NK_SYMBOL_TRIANGLE_LEFT: - case NK_SYMBOL_TRIANGLE_RIGHT: { - enum nk_heading heading; - struct nk_vec2 points[3]; - heading = (type == NK_SYMBOL_TRIANGLE_RIGHT) ? NK_RIGHT : - (type == NK_SYMBOL_TRIANGLE_LEFT) ? NK_LEFT: - (type == NK_SYMBOL_TRIANGLE_UP) ? NK_UP: NK_DOWN; - nk_triangle_from_direction(points, content, 0, 0, heading); - nk_fill_triangle(out, points[0].x, points[0].y, points[1].x, points[1].y, - points[2].x, points[2].y, foreground); - } break; - default: - case NK_SYMBOL_NONE: - case NK_SYMBOL_MAX: break; - } -} -NK_LIB nk_bool -nk_button_behavior(nk_flags *state, struct nk_rect r, - const struct nk_input *i, enum nk_button_behavior behavior) -{ - int ret = 0; - nk_widget_state_reset(state); - if (!i) return 0; - if (nk_input_is_mouse_hovering_rect(i, r)) { - *state = NK_WIDGET_STATE_HOVERED; - if (nk_input_is_mouse_down(i, NK_BUTTON_LEFT)) - *state = NK_WIDGET_STATE_ACTIVE; - if (nk_input_has_mouse_click_in_button_rect(i, NK_BUTTON_LEFT, r)) { - ret = (behavior != NK_BUTTON_DEFAULT) ? - nk_input_is_mouse_down(i, NK_BUTTON_LEFT): -#ifdef NK_BUTTON_TRIGGER_ON_RELEASE - nk_input_is_mouse_released(i, NK_BUTTON_LEFT); -#else - nk_input_is_mouse_pressed(i, NK_BUTTON_LEFT); -#endif - } - } - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(i, r)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(i, r)) - *state |= NK_WIDGET_STATE_LEFT; - return ret; -} -NK_LIB const struct nk_style_item* -nk_draw_button(struct nk_command_buffer *out, - const struct nk_rect *bounds, nk_flags state, - const struct nk_style_button *style) -{ - const struct nk_style_item *background; - if (state & NK_WIDGET_STATE_HOVER) - background = &style->hover; - else if (state & NK_WIDGET_STATE_ACTIVED) - background = &style->active; - else background = &style->normal; - - switch (background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor_background)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor_background)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *bounds, style->rounding, nk_rgb_factor(background->data.color, style->color_factor_background)); - nk_stroke_rect(out, *bounds, style->rounding, style->border, nk_rgb_factor(style->border_color, style->color_factor_background)); - break; - } - return background; -} -NK_LIB nk_bool -nk_do_button(nk_flags *state, struct nk_command_buffer *out, struct nk_rect r, - const struct nk_style_button *style, const struct nk_input *in, - enum nk_button_behavior behavior, struct nk_rect *content) -{ - struct nk_rect bounds; - NK_ASSERT(style); - NK_ASSERT(state); - NK_ASSERT(out); - if (!out || !style) - return nk_false; - - /* calculate button content space */ - content->x = r.x + style->padding.x + style->border + style->rounding; - content->y = r.y + style->padding.y + style->border + style->rounding; - content->w = r.w - (2 * (style->padding.x + style->border + style->rounding)); - content->h = r.h - (2 * (style->padding.y + style->border + style->rounding)); - - /* execute button behavior */ - bounds.x = r.x - style->touch_padding.x; - bounds.y = r.y - style->touch_padding.y; - bounds.w = r.w + 2 * style->touch_padding.x; - bounds.h = r.h + 2 * style->touch_padding.y; - return nk_button_behavior(state, bounds, in, behavior); -} -NK_LIB void -nk_draw_button_text(struct nk_command_buffer *out, - const struct nk_rect *bounds, const struct nk_rect *content, nk_flags state, - const struct nk_style_button *style, const char *txt, int len, - nk_flags text_alignment, const struct nk_user_font *font) -{ - struct nk_text text; - const struct nk_style_item *background; - background = nk_draw_button(out, bounds, state, style); - - /* select correct colors/images */ - if (background->type == NK_STYLE_ITEM_COLOR) - text.background = background->data.color; - else text.background = style->text_background; - if (state & NK_WIDGET_STATE_HOVER) - text.text = style->text_hover; - else if (state & NK_WIDGET_STATE_ACTIVED) - text.text = style->text_active; - else text.text = style->text_normal; - - text.text = nk_rgb_factor(text.text, style->color_factor_text); - - text.padding = nk_vec2(0,0); - nk_widget_text(out, *content, txt, len, &text, text_alignment, font); -} -NK_LIB nk_bool -nk_do_button_text(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - const char *string, int len, nk_flags align, enum nk_button_behavior behavior, - const struct nk_style_button *style, const struct nk_input *in, - const struct nk_user_font *font) -{ - struct nk_rect content; - int ret = nk_false; - - NK_ASSERT(state); - NK_ASSERT(style); - NK_ASSERT(out); - NK_ASSERT(string); - NK_ASSERT(font); - if (!out || !style || !font || !string) - return nk_false; - - ret = nk_do_button(state, out, bounds, style, in, behavior, &content); - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_button_text(out, &bounds, &content, *state, style, string, len, align, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return ret; -} -NK_LIB void -nk_draw_button_symbol(struct nk_command_buffer *out, - const struct nk_rect *bounds, const struct nk_rect *content, - nk_flags state, const struct nk_style_button *style, - enum nk_symbol_type type, const struct nk_user_font *font) -{ - struct nk_color sym, bg; - const struct nk_style_item *background; - - /* select correct colors/images */ - background = nk_draw_button(out, bounds, state, style); - if (background->type == NK_STYLE_ITEM_COLOR) - bg = background->data.color; - else bg = style->text_background; - - if (state & NK_WIDGET_STATE_HOVER) - sym = style->text_hover; - else if (state & NK_WIDGET_STATE_ACTIVED) - sym = style->text_active; - else sym = style->text_normal; - - sym = nk_rgb_factor(sym, style->color_factor_text); - nk_draw_symbol(out, type, *content, bg, sym, 1, font); -} -NK_LIB nk_bool -nk_do_button_symbol(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - enum nk_symbol_type symbol, enum nk_button_behavior behavior, - const struct nk_style_button *style, const struct nk_input *in, - const struct nk_user_font *font) -{ - int ret; - struct nk_rect content; - - NK_ASSERT(state); - NK_ASSERT(style); - NK_ASSERT(font); - NK_ASSERT(out); - if (!out || !style || !font || !state) - return nk_false; - - ret = nk_do_button(state, out, bounds, style, in, behavior, &content); - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_button_symbol(out, &bounds, &content, *state, style, symbol, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return ret; -} -NK_LIB void -nk_draw_button_image(struct nk_command_buffer *out, - const struct nk_rect *bounds, const struct nk_rect *content, - nk_flags state, const struct nk_style_button *style, const struct nk_image *img) -{ - nk_draw_button(out, bounds, state, style); - nk_draw_image(out, *content, img, nk_rgb_factor(nk_white, style->color_factor_background)); -} -NK_LIB nk_bool -nk_do_button_image(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - struct nk_image img, enum nk_button_behavior b, - const struct nk_style_button *style, const struct nk_input *in) -{ - int ret; - struct nk_rect content; - - NK_ASSERT(state); - NK_ASSERT(style); - NK_ASSERT(out); - if (!out || !style || !state) - return nk_false; - - ret = nk_do_button(state, out, bounds, style, in, b, &content); - content.x += style->image_padding.x; - content.y += style->image_padding.y; - content.w -= 2 * style->image_padding.x; - content.h -= 2 * style->image_padding.y; - - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_button_image(out, &bounds, &content, *state, style, &img); - if (style->draw_end) style->draw_end(out, style->userdata); - return ret; -} -NK_LIB void -nk_draw_button_text_symbol(struct nk_command_buffer *out, - const struct nk_rect *bounds, const struct nk_rect *label, - const struct nk_rect *symbol, nk_flags state, const struct nk_style_button *style, - const char *str, int len, enum nk_symbol_type type, - const struct nk_user_font *font) -{ - struct nk_color sym; - struct nk_text text; - const struct nk_style_item *background; - - /* select correct background colors/images */ - background = nk_draw_button(out, bounds, state, style); - if (background->type == NK_STYLE_ITEM_COLOR) - text.background = background->data.color; - else text.background = style->text_background; - - /* select correct text colors */ - if (state & NK_WIDGET_STATE_HOVER) { - sym = style->text_hover; - text.text = style->text_hover; - } else if (state & NK_WIDGET_STATE_ACTIVED) { - sym = style->text_active; - text.text = style->text_active; - } else { - sym = style->text_normal; - text.text = style->text_normal; - } - - sym = nk_rgb_factor(sym, style->color_factor_text); - text.text = nk_rgb_factor(text.text, style->color_factor_text); - text.padding = nk_vec2(0,0); - nk_draw_symbol(out, type, *symbol, style->text_background, sym, 0, font); - nk_widget_text(out, *label, str, len, &text, NK_TEXT_CENTERED, font); -} -NK_LIB nk_bool -nk_do_button_text_symbol(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - enum nk_symbol_type symbol, const char *str, int len, nk_flags align, - enum nk_button_behavior behavior, const struct nk_style_button *style, - const struct nk_user_font *font, const struct nk_input *in) -{ - int ret; - struct nk_rect tri = {0,0,0,0}; - struct nk_rect content; - - NK_ASSERT(style); - NK_ASSERT(out); - NK_ASSERT(font); - if (!out || !style || !font) - return nk_false; - - ret = nk_do_button(state, out, bounds, style, in, behavior, &content); - tri.y = content.y + (content.h/2) - font->height/2; - tri.w = font->height; tri.h = font->height; - if (align & NK_TEXT_ALIGN_LEFT) { - tri.x = (content.x + content.w) - (2 * style->padding.x + tri.w); - tri.x = NK_MAX(tri.x, 0); - } else tri.x = content.x + 2 * style->padding.x; - - /* draw button */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_button_text_symbol(out, &bounds, &content, &tri, - *state, style, str, len, symbol, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return ret; -} -NK_LIB void -nk_draw_button_text_image(struct nk_command_buffer *out, - const struct nk_rect *bounds, const struct nk_rect *label, - const struct nk_rect *image, nk_flags state, const struct nk_style_button *style, - const char *str, int len, const struct nk_user_font *font, - const struct nk_image *img) -{ - struct nk_text text; - const struct nk_style_item *background; - background = nk_draw_button(out, bounds, state, style); - - /* select correct colors */ - if (background->type == NK_STYLE_ITEM_COLOR) - text.background = background->data.color; - else text.background = style->text_background; - if (state & NK_WIDGET_STATE_HOVER) - text.text = style->text_hover; - else if (state & NK_WIDGET_STATE_ACTIVED) - text.text = style->text_active; - else text.text = style->text_normal; - - text.text = nk_rgb_factor(text.text, style->color_factor_text); - text.padding = nk_vec2(0, 0); - nk_widget_text(out, *label, str, len, &text, NK_TEXT_CENTERED, font); - nk_draw_image(out, *image, img, nk_rgb_factor(nk_white, style->color_factor_background)); -} -NK_LIB nk_bool -nk_do_button_text_image(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - struct nk_image img, const char* str, int len, nk_flags align, - enum nk_button_behavior behavior, const struct nk_style_button *style, - const struct nk_user_font *font, const struct nk_input *in) -{ - int ret; - struct nk_rect icon; - struct nk_rect content; - - NK_ASSERT(style); - NK_ASSERT(state); - NK_ASSERT(font); - NK_ASSERT(out); - if (!out || !font || !style || !str) - return nk_false; - - ret = nk_do_button(state, out, bounds, style, in, behavior, &content); - icon.y = bounds.y + style->padding.y; - icon.w = icon.h = bounds.h - 2 * style->padding.y; - if (align & NK_TEXT_ALIGN_LEFT) { - icon.x = (bounds.x + bounds.w) - (2 * style->padding.x + icon.w); - icon.x = NK_MAX(icon.x, 0); - } else icon.x = bounds.x + 2 * style->padding.x; - - icon.x += style->image_padding.x; - icon.y += style->image_padding.y; - icon.w -= 2 * style->image_padding.x; - icon.h -= 2 * style->image_padding.y; - - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_button_text_image(out, &bounds, &content, &icon, *state, style, str, len, font, &img); - if (style->draw_end) style->draw_end(out, style->userdata); - return ret; -} -NK_API void -nk_button_set_behavior(struct nk_context *ctx, enum nk_button_behavior behavior) -{ - NK_ASSERT(ctx); - if (!ctx) return; - ctx->button_behavior = behavior; -} -NK_API nk_bool -nk_button_push_behavior(struct nk_context *ctx, enum nk_button_behavior behavior) -{ - struct nk_config_stack_button_behavior *button_stack; - struct nk_config_stack_button_behavior_element *element; - - NK_ASSERT(ctx); - if (!ctx) return 0; - - button_stack = &ctx->stacks.button_behaviors; - NK_ASSERT(button_stack->head < (int)NK_LEN(button_stack->elements)); - if (button_stack->head >= (int)NK_LEN(button_stack->elements)) - return 0; - - element = &button_stack->elements[button_stack->head++]; - element->address = &ctx->button_behavior; - element->old_value = ctx->button_behavior; - ctx->button_behavior = behavior; - return 1; -} -NK_API nk_bool -nk_button_pop_behavior(struct nk_context *ctx) -{ - struct nk_config_stack_button_behavior *button_stack; - struct nk_config_stack_button_behavior_element *element; - - NK_ASSERT(ctx); - if (!ctx) return 0; - - button_stack = &ctx->stacks.button_behaviors; - NK_ASSERT(button_stack->head > 0); - if (button_stack->head < 1) - return 0; - - element = &button_stack->elements[--button_stack->head]; - *element->address = element->old_value; - return 1; -} -NK_API nk_bool -nk_button_text_styled(struct nk_context *ctx, - const struct nk_style_button *style, const char *title, int len) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(style); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!style || !ctx || !ctx->current || !ctx->current->layout) return 0; - - win = ctx->current; - layout = win->layout; - state = nk_widget(&bounds, ctx); - - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_button_text(&ctx->last_widget_state, &win->buffer, bounds, - title, len, style->text_alignment, ctx->button_behavior, - style, in, ctx->style.font); -} -NK_API nk_bool -nk_button_text(struct nk_context *ctx, const char *title, int len) -{ - NK_ASSERT(ctx); - if (!ctx) return 0; - return nk_button_text_styled(ctx, &ctx->style.button, title, len); -} -NK_API nk_bool nk_button_label_styled(struct nk_context *ctx, - const struct nk_style_button *style, const char *title) -{ - return nk_button_text_styled(ctx, style, title, nk_strlen(title)); -} -NK_API nk_bool nk_button_label(struct nk_context *ctx, const char *title) -{ - return nk_button_text(ctx, title, nk_strlen(title)); -} -NK_API nk_bool -nk_button_color(struct nk_context *ctx, struct nk_color color) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - struct nk_style_button button; - - int ret = 0; - struct nk_rect bounds; - struct nk_rect content; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - - button = ctx->style.button; - button.normal = nk_style_item_color(color); - button.hover = nk_style_item_color(color); - button.active = nk_style_item_color(color); - ret = nk_do_button(&ctx->last_widget_state, &win->buffer, bounds, - &button, in, ctx->button_behavior, &content); - nk_draw_button(&win->buffer, &bounds, ctx->last_widget_state, &button); - return ret; -} -NK_API nk_bool -nk_button_symbol_styled(struct nk_context *ctx, - const struct nk_style_button *style, enum nk_symbol_type symbol) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - layout = win->layout; - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_button_symbol(&ctx->last_widget_state, &win->buffer, bounds, - symbol, ctx->button_behavior, style, in, ctx->style.font); -} -NK_API nk_bool -nk_button_symbol(struct nk_context *ctx, enum nk_symbol_type symbol) -{ - NK_ASSERT(ctx); - if (!ctx) return 0; - return nk_button_symbol_styled(ctx, &ctx->style.button, symbol); -} -NK_API nk_bool -nk_button_image_styled(struct nk_context *ctx, const struct nk_style_button *style, - struct nk_image img) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_button_image(&ctx->last_widget_state, &win->buffer, bounds, - img, ctx->button_behavior, style, in); -} -NK_API nk_bool -nk_button_image(struct nk_context *ctx, struct nk_image img) -{ - NK_ASSERT(ctx); - if (!ctx) return 0; - return nk_button_image_styled(ctx, &ctx->style.button, img); -} -NK_API nk_bool -nk_button_symbol_text_styled(struct nk_context *ctx, - const struct nk_style_button *style, enum nk_symbol_type symbol, - const char *text, int len, nk_flags align) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_button_text_symbol(&ctx->last_widget_state, &win->buffer, bounds, - symbol, text, len, align, ctx->button_behavior, - style, ctx->style.font, in); -} -NK_API nk_bool -nk_button_symbol_text(struct nk_context *ctx, enum nk_symbol_type symbol, - const char* text, int len, nk_flags align) -{ - NK_ASSERT(ctx); - if (!ctx) return 0; - return nk_button_symbol_text_styled(ctx, &ctx->style.button, symbol, text, len, align); -} -NK_API nk_bool nk_button_symbol_label(struct nk_context *ctx, enum nk_symbol_type symbol, - const char *label, nk_flags align) -{ - return nk_button_symbol_text(ctx, symbol, label, nk_strlen(label), align); -} -NK_API nk_bool nk_button_symbol_label_styled(struct nk_context *ctx, - const struct nk_style_button *style, enum nk_symbol_type symbol, - const char *title, nk_flags align) -{ - return nk_button_symbol_text_styled(ctx, style, symbol, title, nk_strlen(title), align); -} -NK_API nk_bool -nk_button_image_text_styled(struct nk_context *ctx, - const struct nk_style_button *style, struct nk_image img, const char *text, - int len, nk_flags align) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_button_text_image(&ctx->last_widget_state, &win->buffer, - bounds, img, text, len, align, ctx->button_behavior, - style, ctx->style.font, in); -} -NK_API nk_bool -nk_button_image_text(struct nk_context *ctx, struct nk_image img, - const char *text, int len, nk_flags align) -{ - return nk_button_image_text_styled(ctx, &ctx->style.button,img, text, len, align); -} -NK_API nk_bool nk_button_image_label(struct nk_context *ctx, struct nk_image img, - const char *label, nk_flags align) -{ - return nk_button_image_text(ctx, img, label, nk_strlen(label), align); -} -NK_API nk_bool nk_button_image_label_styled(struct nk_context *ctx, - const struct nk_style_button *style, struct nk_image img, - const char *label, nk_flags text_alignment) -{ - return nk_button_image_text_styled(ctx, style, img, label, nk_strlen(label), text_alignment); -} - - - - - -/* =============================================================== - * - * TOGGLE - * - * ===============================================================*/ -NK_LIB nk_bool -nk_toggle_behavior(const struct nk_input *in, struct nk_rect select, - nk_flags *state, nk_bool active) -{ - nk_widget_state_reset(state); - if (nk_button_behavior(state, select, in, NK_BUTTON_DEFAULT)) { - *state = NK_WIDGET_STATE_ACTIVE; - active = !active; - } - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(in, select)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, select)) - *state |= NK_WIDGET_STATE_LEFT; - return active; -} -NK_LIB void -nk_draw_checkbox(struct nk_command_buffer *out, - nk_flags state, const struct nk_style_toggle *style, nk_bool active, - const struct nk_rect *label, const struct nk_rect *selector, - const struct nk_rect *cursors, const char *string, int len, - const struct nk_user_font *font, nk_flags text_alignment) -{ - const struct nk_style_item *background; - const struct nk_style_item *cursor; - struct nk_text text; - - /* select correct colors/images */ - if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - cursor = &style->cursor_hover; - text.text = style->text_hover; - } else if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->hover; - cursor = &style->cursor_hover; - text.text = style->text_active; - } else { - background = &style->normal; - cursor = &style->cursor_normal; - text.text = style->text_normal; - } - - text.text = nk_rgb_factor(text.text, style->color_factor); - text.padding.x = 0; - text.padding.y = 0; - text.background = style->text_background; - nk_widget_text(out, *label, string, len, &text, text_alignment, font); - - /* draw background and cursor */ - if (background->type == NK_STYLE_ITEM_COLOR) { - nk_fill_rect(out, *selector, 0, nk_rgb_factor(style->border_color, style->color_factor)); - nk_fill_rect(out, nk_shrink_rect(*selector, style->border), 0, nk_rgb_factor(background->data.color, style->color_factor)); - } else nk_draw_image(out, *selector, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - if (active) { - if (cursor->type == NK_STYLE_ITEM_IMAGE) - nk_draw_image(out, *cursors, &cursor->data.image, nk_rgb_factor(nk_white, style->color_factor)); - else nk_fill_rect(out, *cursors, 0, cursor->data.color); - } -} -NK_LIB void -nk_draw_option(struct nk_command_buffer *out, - nk_flags state, const struct nk_style_toggle *style, nk_bool active, - const struct nk_rect *label, const struct nk_rect *selector, - const struct nk_rect *cursors, const char *string, int len, - const struct nk_user_font *font, nk_flags text_alignment) -{ - const struct nk_style_item *background; - const struct nk_style_item *cursor; - struct nk_text text; - - /* select correct colors/images */ - if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - cursor = &style->cursor_hover; - text.text = style->text_hover; - } else if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->hover; - cursor = &style->cursor_hover; - text.text = style->text_active; - } else { - background = &style->normal; - cursor = &style->cursor_normal; - text.text = style->text_normal; - } - - text.text = nk_rgb_factor(text.text, style->color_factor); - text.padding.x = 0; - text.padding.y = 0; - text.background = style->text_background; - nk_widget_text(out, *label, string, len, &text, text_alignment, font); - - /* draw background and cursor */ - if (background->type == NK_STYLE_ITEM_COLOR) { - nk_fill_circle(out, *selector, nk_rgb_factor(style->border_color, style->color_factor)); - nk_fill_circle(out, nk_shrink_rect(*selector, style->border), nk_rgb_factor(background->data.color, style->color_factor)); - } else nk_draw_image(out, *selector, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - if (active) { - if (cursor->type == NK_STYLE_ITEM_IMAGE) - nk_draw_image(out, *cursors, &cursor->data.image, nk_rgb_factor(nk_white, style->color_factor)); - else nk_fill_circle(out, *cursors, cursor->data.color); - } -} -NK_LIB nk_bool -nk_do_toggle(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect r, - nk_bool *active, const char *str, int len, enum nk_toggle_type type, - const struct nk_style_toggle *style, const struct nk_input *in, - const struct nk_user_font *font, nk_flags widget_alignment, nk_flags text_alignment) -{ - int was_active; - struct nk_rect bounds; - struct nk_rect select; - struct nk_rect cursor; - struct nk_rect label; - - NK_ASSERT(style); - NK_ASSERT(out); - NK_ASSERT(font); - if (!out || !style || !font || !active) - return 0; - - r.w = NK_MAX(r.w, font->height + 2 * style->padding.x); - r.h = NK_MAX(r.h, font->height + 2 * style->padding.y); - - /* add additional touch padding for touch screen devices */ - bounds.x = r.x - style->touch_padding.x; - bounds.y = r.y - style->touch_padding.y; - bounds.w = r.w + 2 * style->touch_padding.x; - bounds.h = r.h + 2 * style->touch_padding.y; - - /* calculate the selector space */ - select.w = font->height; - select.h = select.w; - - if (widget_alignment & NK_WIDGET_ALIGN_RIGHT) { - select.x = r.x + r.w - font->height; - - /* label in front of the selector */ - label.x = r.x; - label.w = r.w - select.w - style->spacing * 2; - } else if (widget_alignment & NK_WIDGET_ALIGN_CENTERED) { - select.x = r.x + (r.w - select.w) / 2; - - /* label in front of selector */ - label.x = r.x; - label.w = (r.w - select.w - style->spacing * 2) / 2; - } else { /* Default: NK_WIDGET_ALIGN_LEFT */ - select.x = r.x; - - /* label behind the selector */ - label.x = select.x + select.w + style->spacing; - label.w = NK_MAX(r.x + r.w, label.x) - label.x; - } - - if (widget_alignment & NK_WIDGET_ALIGN_TOP) { - select.y = r.y; - } else if (widget_alignment & NK_WIDGET_ALIGN_BOTTOM) { - select.y = r.y + r.h - select.h - 2 * style->padding.y; - } else { /* Default: NK_WIDGET_ALIGN_MIDDLE */ - select.y = r.y + r.h/2.0f - select.h/2.0f; - } - - label.y = select.y; - label.h = select.w; - - /* calculate the bounds of the cursor inside the selector */ - cursor.x = select.x + style->padding.x + style->border; - cursor.y = select.y + style->padding.y + style->border; - cursor.w = select.w - (2 * style->padding.x + 2 * style->border); - cursor.h = select.h - (2 * style->padding.y + 2 * style->border); - - /* update selector */ - was_active = *active; - *active = nk_toggle_behavior(in, bounds, state, *active); - - /* draw selector */ - if (style->draw_begin) - style->draw_begin(out, style->userdata); - if (type == NK_TOGGLE_CHECK) { - nk_draw_checkbox(out, *state, style, *active, &label, &select, &cursor, str, len, font, text_alignment); - } else { - nk_draw_option(out, *state, style, *active, &label, &select, &cursor, str, len, font, text_alignment); - } - if (style->draw_end) - style->draw_end(out, style->userdata); - return (was_active != *active); -} -/*---------------------------------------------------------------- - * - * CHECKBOX - * - * --------------------------------------------------------------*/ -NK_API nk_bool -nk_check_text(struct nk_context *ctx, const char *text, int len, nk_bool active) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return active; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return active; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - nk_do_toggle(&ctx->last_widget_state, &win->buffer, bounds, &active, - text, len, NK_TOGGLE_CHECK, &style->checkbox, in, style->font, NK_WIDGET_LEFT, NK_TEXT_LEFT); - return active; -} -NK_API nk_bool -nk_check_text_align(struct nk_context *ctx, const char *text, int len, nk_bool active, nk_flags widget_alignment, nk_flags text_alignment) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return active; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return active; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - nk_do_toggle(&ctx->last_widget_state, &win->buffer, bounds, &active, - text, len, NK_TOGGLE_CHECK, &style->checkbox, in, style->font, widget_alignment, text_alignment); - return active; -} -NK_API unsigned int -nk_check_flags_text(struct nk_context *ctx, const char *text, int len, - unsigned int flags, unsigned int value) -{ - int old_active; - NK_ASSERT(ctx); - NK_ASSERT(text); - if (!ctx || !text) return flags; - old_active = (int)((flags & value) & value); - if (nk_check_text(ctx, text, len, old_active)) - flags |= value; - else flags &= ~value; - return flags; -} -NK_API nk_bool -nk_checkbox_text(struct nk_context *ctx, const char *text, int len, nk_bool *active) -{ - int old_val; - NK_ASSERT(ctx); - NK_ASSERT(text); - NK_ASSERT(active); - if (!ctx || !text || !active) return 0; - old_val = *active; - *active = nk_check_text(ctx, text, len, *active); - return old_val != *active; -} -NK_API nk_bool -nk_checkbox_text_align(struct nk_context *ctx, const char *text, int len, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment) -{ - int old_val; - NK_ASSERT(ctx); - NK_ASSERT(text); - NK_ASSERT(active); - if (!ctx || !text || !active) return 0; - old_val = *active; - *active = nk_check_text_align(ctx, text, len, *active, widget_alignment, text_alignment); - return old_val != *active; -} -NK_API nk_bool -nk_checkbox_flags_text(struct nk_context *ctx, const char *text, int len, - unsigned int *flags, unsigned int value) -{ - nk_bool active; - NK_ASSERT(ctx); - NK_ASSERT(text); - NK_ASSERT(flags); - if (!ctx || !text || !flags) return 0; - - active = (int)((*flags & value) & value); - if (nk_checkbox_text(ctx, text, len, &active)) { - if (active) *flags |= value; - else *flags &= ~value; - return 1; - } - return 0; -} -NK_API nk_bool nk_check_label(struct nk_context *ctx, const char *label, nk_bool active) -{ - return nk_check_text(ctx, label, nk_strlen(label), active); -} -NK_API unsigned int nk_check_flags_label(struct nk_context *ctx, const char *label, - unsigned int flags, unsigned int value) -{ - return nk_check_flags_text(ctx, label, nk_strlen(label), flags, value); -} -NK_API nk_bool nk_checkbox_label(struct nk_context *ctx, const char *label, nk_bool *active) -{ - return nk_checkbox_text(ctx, label, nk_strlen(label), active); -} -NK_API nk_bool nk_checkbox_label_align(struct nk_context *ctx, const char *label, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment) -{ - return nk_checkbox_text_align(ctx, label, nk_strlen(label), active, widget_alignment, text_alignment); -} -NK_API nk_bool nk_checkbox_flags_label(struct nk_context *ctx, const char *label, - unsigned int *flags, unsigned int value) -{ - return nk_checkbox_flags_text(ctx, label, nk_strlen(label), flags, value); -} -/*---------------------------------------------------------------- - * - * OPTION - * - * --------------------------------------------------------------*/ -NK_API nk_bool -nk_option_text(struct nk_context *ctx, const char *text, int len, nk_bool is_active) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return is_active; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return (int)state; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - nk_do_toggle(&ctx->last_widget_state, &win->buffer, bounds, &is_active, - text, len, NK_TOGGLE_OPTION, &style->option, in, style->font, NK_WIDGET_LEFT, NK_TEXT_LEFT); - return is_active; -} -NK_API nk_bool -nk_option_text_align(struct nk_context *ctx, const char *text, int len, nk_bool is_active, nk_flags widget_alignment, nk_flags text_alignment) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return is_active; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return (int)state; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - nk_do_toggle(&ctx->last_widget_state, &win->buffer, bounds, &is_active, - text, len, NK_TOGGLE_OPTION, &style->option, in, style->font, widget_alignment, text_alignment); - return is_active; -} -NK_API nk_bool -nk_radio_text(struct nk_context *ctx, const char *text, int len, nk_bool *active) -{ - int old_value; - NK_ASSERT(ctx); - NK_ASSERT(text); - NK_ASSERT(active); - if (!ctx || !text || !active) return 0; - old_value = *active; - *active = nk_option_text(ctx, text, len, old_value); - return old_value != *active; -} -NK_API nk_bool -nk_radio_text_align(struct nk_context *ctx, const char *text, int len, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment) -{ - int old_value; - NK_ASSERT(ctx); - NK_ASSERT(text); - NK_ASSERT(active); - if (!ctx || !text || !active) return 0; - old_value = *active; - *active = nk_option_text_align(ctx, text, len, old_value, widget_alignment, text_alignment); - return old_value != *active; -} -NK_API nk_bool -nk_option_label(struct nk_context *ctx, const char *label, nk_bool active) -{ - return nk_option_text(ctx, label, nk_strlen(label), active); -} -NK_API nk_bool -nk_option_label_align(struct nk_context *ctx, const char *label, nk_bool active, nk_flags widget_alignment, nk_flags text_alignment) -{ - return nk_option_text_align(ctx, label, nk_strlen(label), active, widget_alignment, text_alignment); -} -NK_API nk_bool -nk_radio_label(struct nk_context *ctx, const char *label, nk_bool *active) -{ - return nk_radio_text(ctx, label, nk_strlen(label), active); -} -NK_API nk_bool -nk_radio_label_align(struct nk_context *ctx, const char *label, nk_bool *active, nk_flags widget_alignment, nk_flags text_alignment) -{ - return nk_radio_text_align(ctx, label, nk_strlen(label), active, widget_alignment, text_alignment); -} - - - - - -/* =============================================================== - * - * SELECTABLE - * - * ===============================================================*/ -NK_LIB void -nk_draw_selectable(struct nk_command_buffer *out, - nk_flags state, const struct nk_style_selectable *style, nk_bool active, - const struct nk_rect *bounds, - const struct nk_rect *icon, const struct nk_image *img, enum nk_symbol_type sym, - const char *string, int len, nk_flags align, const struct nk_user_font *font) -{ - const struct nk_style_item *background; - struct nk_text text; - text.padding = style->padding; - - /* select correct colors/images */ - if (!active) { - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->pressed; - text.text = style->text_pressed; - } else if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - text.text = style->text_hover; - } else { - background = &style->normal; - text.text = style->text_normal; - } - } else { - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->pressed_active; - text.text = style->text_pressed_active; - } else if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover_active; - text.text = style->text_hover_active; - } else { - background = &style->normal_active; - text.text = style->text_normal_active; - } - } - - text.text = nk_rgb_factor(text.text, style->color_factor); - - /* draw selectable background and text */ - switch (background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_image(out, *bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(out, *bounds, style->rounding, background->data.color); - break; - } - if (icon) { - if (img) nk_draw_image(out, *icon, img, nk_rgb_factor(nk_white, style->color_factor)); - else nk_draw_symbol(out, sym, *icon, text.background, text.text, 1, font); - } - nk_widget_text(out, *bounds, string, len, &text, align, font); -} -NK_LIB nk_bool -nk_do_selectable(nk_flags *state, struct nk_command_buffer *out, - struct nk_rect bounds, const char *str, int len, nk_flags align, nk_bool *value, - const struct nk_style_selectable *style, const struct nk_input *in, - const struct nk_user_font *font) -{ - int old_value; - struct nk_rect touch; - - NK_ASSERT(state); - NK_ASSERT(out); - NK_ASSERT(str); - NK_ASSERT(len); - NK_ASSERT(value); - NK_ASSERT(style); - NK_ASSERT(font); - - if (!state || !out || !str || !len || !value || !style || !font) return 0; - old_value = *value; - - /* remove padding */ - touch.x = bounds.x - style->touch_padding.x; - touch.y = bounds.y - style->touch_padding.y; - touch.w = bounds.w + style->touch_padding.x * 2; - touch.h = bounds.h + style->touch_padding.y * 2; - - /* update button */ - if (nk_button_behavior(state, touch, in, NK_BUTTON_DEFAULT)) - *value = !(*value); - - /* draw selectable */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_selectable(out, *state, style, *value, &bounds, 0,0,NK_SYMBOL_NONE, str, len, align, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return old_value != *value; -} -NK_LIB nk_bool -nk_do_selectable_image(nk_flags *state, struct nk_command_buffer *out, - struct nk_rect bounds, const char *str, int len, nk_flags align, nk_bool *value, - const struct nk_image *img, const struct nk_style_selectable *style, - const struct nk_input *in, const struct nk_user_font *font) -{ - nk_bool old_value; - struct nk_rect touch; - struct nk_rect icon; - - NK_ASSERT(state); - NK_ASSERT(out); - NK_ASSERT(str); - NK_ASSERT(len); - NK_ASSERT(value); - NK_ASSERT(style); - NK_ASSERT(font); - - if (!state || !out || !str || !len || !value || !style || !font) return 0; - old_value = *value; - - /* toggle behavior */ - touch.x = bounds.x - style->touch_padding.x; - touch.y = bounds.y - style->touch_padding.y; - touch.w = bounds.w + style->touch_padding.x * 2; - touch.h = bounds.h + style->touch_padding.y * 2; - if (nk_button_behavior(state, touch, in, NK_BUTTON_DEFAULT)) - *value = !(*value); - - icon.y = bounds.y + style->padding.y; - icon.w = icon.h = bounds.h - 2 * style->padding.y; - if (align & NK_TEXT_ALIGN_LEFT) { - icon.x = (bounds.x + bounds.w) - (2 * style->padding.x + icon.w); - icon.x = NK_MAX(icon.x, 0); - } else icon.x = bounds.x + 2 * style->padding.x; - - icon.x += style->image_padding.x; - icon.y += style->image_padding.y; - icon.w -= 2 * style->image_padding.x; - icon.h -= 2 * style->image_padding.y; - - /* draw selectable */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_selectable(out, *state, style, *value, &bounds, &icon, img, NK_SYMBOL_NONE, str, len, align, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return old_value != *value; -} -NK_LIB nk_bool -nk_do_selectable_symbol(nk_flags *state, struct nk_command_buffer *out, - struct nk_rect bounds, const char *str, int len, nk_flags align, nk_bool *value, - enum nk_symbol_type sym, const struct nk_style_selectable *style, - const struct nk_input *in, const struct nk_user_font *font) -{ - int old_value; - struct nk_rect touch; - struct nk_rect icon; - - NK_ASSERT(state); - NK_ASSERT(out); - NK_ASSERT(str); - NK_ASSERT(len); - NK_ASSERT(value); - NK_ASSERT(style); - NK_ASSERT(font); - - if (!state || !out || !str || !len || !value || !style || !font) return 0; - old_value = *value; - - /* toggle behavior */ - touch.x = bounds.x - style->touch_padding.x; - touch.y = bounds.y - style->touch_padding.y; - touch.w = bounds.w + style->touch_padding.x * 2; - touch.h = bounds.h + style->touch_padding.y * 2; - if (nk_button_behavior(state, touch, in, NK_BUTTON_DEFAULT)) - *value = !(*value); - - icon.y = bounds.y + style->padding.y; - icon.w = icon.h = bounds.h - 2 * style->padding.y; - if (align & NK_TEXT_ALIGN_LEFT) { - icon.x = (bounds.x + bounds.w) - (2 * style->padding.x + icon.w); - icon.x = NK_MAX(icon.x, 0); - } else icon.x = bounds.x + 2 * style->padding.x; - - icon.x += style->image_padding.x; - icon.y += style->image_padding.y; - icon.w -= 2 * style->image_padding.x; - icon.h -= 2 * style->image_padding.y; - - /* draw selectable */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_selectable(out, *state, style, *value, &bounds, &icon, 0, sym, str, len, align, font); - if (style->draw_end) style->draw_end(out, style->userdata); - return old_value != *value; -} - -NK_API nk_bool -nk_selectable_text(struct nk_context *ctx, const char *str, int len, - nk_flags align, nk_bool *value) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - enum nk_widget_layout_states state; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(value); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !value) - return 0; - - win = ctx->current; - layout = win->layout; - style = &ctx->style; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_selectable(&ctx->last_widget_state, &win->buffer, bounds, - str, len, align, value, &style->selectable, in, style->font); -} -NK_API nk_bool -nk_selectable_image_text(struct nk_context *ctx, struct nk_image img, - const char *str, int len, nk_flags align, nk_bool *value) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - enum nk_widget_layout_states state; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(value); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !value) - return 0; - - win = ctx->current; - layout = win->layout; - style = &ctx->style; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_selectable_image(&ctx->last_widget_state, &win->buffer, bounds, - str, len, align, value, &img, &style->selectable, in, style->font); -} -NK_API nk_bool -nk_selectable_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, - const char *str, int len, nk_flags align, nk_bool *value) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_input *in; - const struct nk_style *style; - - enum nk_widget_layout_states state; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(value); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !value) - return 0; - - win = ctx->current; - layout = win->layout; - style = &ctx->style; - - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_selectable_symbol(&ctx->last_widget_state, &win->buffer, bounds, - str, len, align, value, sym, &style->selectable, in, style->font); -} -NK_API nk_bool -nk_selectable_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, - const char *title, nk_flags align, nk_bool *value) -{ - return nk_selectable_symbol_text(ctx, sym, title, nk_strlen(title), align, value); -} -NK_API nk_bool nk_select_text(struct nk_context *ctx, const char *str, int len, - nk_flags align, nk_bool value) -{ - nk_selectable_text(ctx, str, len, align, &value);return value; -} -NK_API nk_bool nk_selectable_label(struct nk_context *ctx, const char *str, nk_flags align, nk_bool *value) -{ - return nk_selectable_text(ctx, str, nk_strlen(str), align, value); -} -NK_API nk_bool nk_selectable_image_label(struct nk_context *ctx,struct nk_image img, - const char *str, nk_flags align, nk_bool *value) -{ - return nk_selectable_image_text(ctx, img, str, nk_strlen(str), align, value); -} -NK_API nk_bool nk_select_label(struct nk_context *ctx, const char *str, nk_flags align, nk_bool value) -{ - nk_selectable_text(ctx, str, nk_strlen(str), align, &value);return value; -} -NK_API nk_bool nk_select_image_label(struct nk_context *ctx, struct nk_image img, - const char *str, nk_flags align, nk_bool value) -{ - nk_selectable_image_text(ctx, img, str, nk_strlen(str), align, &value);return value; -} -NK_API nk_bool nk_select_image_text(struct nk_context *ctx, struct nk_image img, - const char *str, int len, nk_flags align, nk_bool value) -{ - nk_selectable_image_text(ctx, img, str, len, align, &value);return value; -} -NK_API nk_bool -nk_select_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, - const char *title, int title_len, nk_flags align, nk_bool value) -{ - nk_selectable_symbol_text(ctx, sym, title, title_len, align, &value);return value; -} -NK_API nk_bool -nk_select_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, - const char *title, nk_flags align, nk_bool value) -{ - return nk_select_symbol_text(ctx, sym, title, nk_strlen(title), align, value); -} - - - - - -/* =============================================================== - * - * SLIDER - * - * ===============================================================*/ -NK_LIB float -nk_slider_behavior(nk_flags *state, struct nk_rect *logical_cursor, - struct nk_rect *visual_cursor, struct nk_input *in, - struct nk_rect bounds, float slider_min, float slider_max, float slider_value, - float slider_step, float slider_steps) -{ - int left_mouse_down; - int left_mouse_click_in_cursor; - - /* check if visual cursor is being dragged */ - nk_widget_state_reset(state); - left_mouse_down = in && in->mouse.buttons[NK_BUTTON_LEFT].down; - left_mouse_click_in_cursor = in && nk_input_has_mouse_click_down_in_rect(in, - NK_BUTTON_LEFT, *visual_cursor, nk_true); - - if (left_mouse_down && left_mouse_click_in_cursor) { - float ratio = 0; - const float d = in->mouse.pos.x - (visual_cursor->x+visual_cursor->w*0.5f); - const float pxstep = bounds.w / slider_steps; - - /* only update value if the next slider step is reached */ - *state = NK_WIDGET_STATE_ACTIVE; - if (NK_ABS(d) >= pxstep) { - const float steps = (float)((int)(NK_ABS(d) / pxstep)); - slider_value += (d > 0) ? (slider_step*steps) : -(slider_step*steps); - slider_value = NK_CLAMP(slider_min, slider_value, slider_max); - ratio = (slider_value - slider_min)/slider_step; - logical_cursor->x = bounds.x + (logical_cursor->w * ratio); - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.x = logical_cursor->x; - } - } - - /* slider widget state */ - if (nk_input_is_mouse_hovering_rect(in, bounds)) - *state = NK_WIDGET_STATE_HOVERED; - if (*state & NK_WIDGET_STATE_HOVER && - !nk_input_is_mouse_prev_hovering_rect(in, bounds)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, bounds)) - *state |= NK_WIDGET_STATE_LEFT; - return slider_value; -} -NK_LIB void -nk_draw_slider(struct nk_command_buffer *out, nk_flags state, - const struct nk_style_slider *style, const struct nk_rect *bounds, - const struct nk_rect *visual_cursor, float min, float value, float max) -{ - struct nk_rect fill; - struct nk_rect bar; - const struct nk_style_item *background; - - /* select correct slider images/colors */ - struct nk_color bar_color; - const struct nk_style_item *cursor; - - NK_UNUSED(min); - NK_UNUSED(max); - NK_UNUSED(value); - - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - bar_color = style->bar_active; - cursor = &style->cursor_active; - } else if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - bar_color = style->bar_hover; - cursor = &style->cursor_hover; - } else { - background = &style->normal; - bar_color = style->bar_normal; - cursor = &style->cursor_normal; - } - - /* calculate slider background bar */ - bar.x = bounds->x; - bar.y = (visual_cursor->y + visual_cursor->h/2) - bounds->h/12; - bar.w = bounds->w; - bar.h = bounds->h/6; - - /* filled background bar style */ - fill.w = (visual_cursor->x + (visual_cursor->w/2.0f)) - bar.x; - fill.x = bar.x; - fill.y = bar.y; - fill.h = bar.h; - - /* draw background */ - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *bounds, style->rounding, nk_rgb_factor(background->data.color, style->color_factor)); - nk_stroke_rect(out, *bounds, style->rounding, style->border, nk_rgb_factor(style->border_color, style->color_factor)); - break; - } - - /* draw slider bar */ - nk_fill_rect(out, bar, style->rounding, nk_rgb_factor(bar_color, style->color_factor)); - nk_fill_rect(out, fill, style->rounding, nk_rgb_factor(style->bar_filled, style->color_factor)); - - /* draw cursor */ - if (cursor->type == NK_STYLE_ITEM_IMAGE) - nk_draw_image(out, *visual_cursor, &cursor->data.image, nk_rgb_factor(nk_white, style->color_factor)); - else - nk_fill_circle(out, *visual_cursor, nk_rgb_factor(cursor->data.color, style->color_factor)); -} -NK_LIB float -nk_do_slider(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - float min, float val, float max, float step, - const struct nk_style_slider *style, struct nk_input *in, - const struct nk_user_font *font) -{ - float slider_range; - float slider_min; - float slider_max; - float slider_value; - float slider_steps; - float cursor_offset; - - struct nk_rect visual_cursor; - struct nk_rect logical_cursor; - - NK_ASSERT(style); - NK_ASSERT(out); - if (!out || !style) - return 0; - - /* remove padding from slider bounds */ - bounds.x = bounds.x + style->padding.x; - bounds.y = bounds.y + style->padding.y; - bounds.h = NK_MAX(bounds.h, 2*style->padding.y); - bounds.w = NK_MAX(bounds.w, 2*style->padding.x + style->cursor_size.x); - bounds.w -= 2 * style->padding.x; - bounds.h -= 2 * style->padding.y; - - /* optional buttons */ - if (style->show_buttons) { - nk_flags ws; - struct nk_rect button; - button.y = bounds.y; - button.w = bounds.h; - button.h = bounds.h; - - /* decrement button */ - button.x = bounds.x; - if (nk_do_button_symbol(&ws, out, button, style->dec_symbol, NK_BUTTON_DEFAULT, - &style->dec_button, in, font)) - val -= step; - - /* increment button */ - button.x = (bounds.x + bounds.w) - button.w; - if (nk_do_button_symbol(&ws, out, button, style->inc_symbol, NK_BUTTON_DEFAULT, - &style->inc_button, in, font)) - val += step; - - bounds.x = bounds.x + button.w + style->spacing.x; - bounds.w = bounds.w - (2*button.w + 2*style->spacing.x); - } - - /* remove one cursor size to support visual cursor */ - bounds.x += style->cursor_size.x*0.5f; - bounds.w -= style->cursor_size.x; - - /* make sure the provided values are correct */ - slider_max = NK_MAX(min, max); - slider_min = NK_MIN(min, max); - slider_value = NK_CLAMP(slider_min, val, slider_max); - slider_range = slider_max - slider_min; - slider_steps = slider_range / step; - cursor_offset = (slider_value - slider_min) / step; - - /* calculate cursor - Basically you have two cursors. One for visual representation and interaction - and one for updating the actual cursor value. */ - logical_cursor.h = bounds.h; - logical_cursor.w = bounds.w / slider_steps; - logical_cursor.x = bounds.x + (logical_cursor.w * cursor_offset); - logical_cursor.y = bounds.y; - - visual_cursor.h = style->cursor_size.y; - visual_cursor.w = style->cursor_size.x; - visual_cursor.y = (bounds.y + bounds.h*0.5f) - visual_cursor.h*0.5f; - visual_cursor.x = logical_cursor.x - visual_cursor.w*0.5f; - - slider_value = nk_slider_behavior(state, &logical_cursor, &visual_cursor, - in, bounds, slider_min, slider_max, slider_value, step, slider_steps); - visual_cursor.x = logical_cursor.x - visual_cursor.w*0.5f; - - /* draw slider */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_slider(out, *state, style, &bounds, &visual_cursor, slider_min, slider_value, slider_max); - if (style->draw_end) style->draw_end(out, style->userdata); - return slider_value; -} -NK_API nk_bool -nk_slider_float(struct nk_context *ctx, float min_value, float *value, float max_value, - float value_step) -{ - struct nk_window *win; - struct nk_panel *layout; - struct nk_input *in; - const struct nk_style *style; - - int ret = 0; - float old_value; - struct nk_rect bounds; - enum nk_widget_layout_states state; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - NK_ASSERT(value); - if (!ctx || !ctx->current || !ctx->current->layout || !value) - return ret; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - - state = nk_widget(&bounds, ctx); - if (!state) return ret; - in = (/*state == NK_WIDGET_ROM || */ state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - - old_value = *value; - *value = nk_do_slider(&ctx->last_widget_state, &win->buffer, bounds, min_value, - old_value, max_value, value_step, &style->slider, in, style->font); - return (old_value > *value || old_value < *value); -} -NK_API float -nk_slide_float(struct nk_context *ctx, float min, float val, float max, float step) -{ - nk_slider_float(ctx, min, &val, max, step); return val; -} -NK_API int -nk_slide_int(struct nk_context *ctx, int min, int val, int max, int step) -{ - float value = (float)val; - nk_slider_float(ctx, (float)min, &value, (float)max, (float)step); - return (int)value; -} -NK_API nk_bool -nk_slider_int(struct nk_context *ctx, int min, int *val, int max, int step) -{ - int ret; - float value = (float)*val; - ret = nk_slider_float(ctx, (float)min, &value, (float)max, (float)step); - *val = (int)value; - return ret; -} - - - - - -/* =============================================================== - * - * PROGRESS - * - * ===============================================================*/ -NK_LIB nk_size -nk_progress_behavior(nk_flags *state, struct nk_input *in, - struct nk_rect r, struct nk_rect cursor, nk_size max, nk_size value, nk_bool modifiable) -{ - int left_mouse_down = 0; - int left_mouse_click_in_cursor = 0; - - nk_widget_state_reset(state); - if (!in || !modifiable) return value; - left_mouse_down = in && in->mouse.buttons[NK_BUTTON_LEFT].down; - left_mouse_click_in_cursor = in && nk_input_has_mouse_click_down_in_rect(in, - NK_BUTTON_LEFT, cursor, nk_true); - if (nk_input_is_mouse_hovering_rect(in, r)) - *state = NK_WIDGET_STATE_HOVERED; - - if (in && left_mouse_down && left_mouse_click_in_cursor) { - if (left_mouse_down && left_mouse_click_in_cursor) { - float ratio = NK_MAX(0, (float)(in->mouse.pos.x - cursor.x)) / (float)cursor.w; - value = (nk_size)NK_CLAMP(0, (float)max * ratio, (float)max); - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.x = cursor.x + cursor.w/2.0f; - *state |= NK_WIDGET_STATE_ACTIVE; - } - } - /* set progressbar widget state */ - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(in, r)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, r)) - *state |= NK_WIDGET_STATE_LEFT; - return value; -} -NK_LIB void -nk_draw_progress(struct nk_command_buffer *out, nk_flags state, - const struct nk_style_progress *style, const struct nk_rect *bounds, - const struct nk_rect *scursor, nk_size value, nk_size max) -{ - const struct nk_style_item *background; - const struct nk_style_item *cursor; - - NK_UNUSED(max); - NK_UNUSED(value); - - /* select correct colors/images to draw */ - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - cursor = &style->cursor_active; - } else if (state & NK_WIDGET_STATE_HOVER){ - background = &style->hover; - cursor = &style->cursor_hover; - } else { - background = &style->normal; - cursor = &style->cursor_normal; - } - - /* draw background */ - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *bounds, style->rounding, nk_rgb_factor(background->data.color, style->color_factor)); - nk_stroke_rect(out, *bounds, style->rounding, style->border, nk_rgb_factor(style->border_color, style->color_factor)); - break; - } - - /* draw cursor */ - switch(cursor->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *scursor, &cursor->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *scursor, &cursor->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *scursor, style->rounding, nk_rgb_factor(cursor->data.color, style->color_factor)); - nk_stroke_rect(out, *scursor, style->rounding, style->border, nk_rgb_factor(style->border_color, style->color_factor)); - break; - } -} -NK_LIB nk_size -nk_do_progress(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect bounds, - nk_size value, nk_size max, nk_bool modifiable, - const struct nk_style_progress *style, struct nk_input *in) -{ - float prog_scale; - nk_size prog_value; - struct nk_rect cursor; - - NK_ASSERT(style); - NK_ASSERT(out); - if (!out || !style) return 0; - - /* calculate progressbar cursor */ - cursor.w = NK_MAX(bounds.w, 2 * style->padding.x + 2 * style->border); - cursor.h = NK_MAX(bounds.h, 2 * style->padding.y + 2 * style->border); - cursor = nk_pad_rect(bounds, nk_vec2(style->padding.x + style->border, style->padding.y + style->border)); - prog_scale = (float)value / (float)max; - - /* update progressbar */ - prog_value = NK_MIN(value, max); - prog_value = nk_progress_behavior(state, in, bounds, cursor,max, prog_value, modifiable); - cursor.w = cursor.w * prog_scale; - - /* draw progressbar */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_progress(out, *state, style, &bounds, &cursor, value, max); - if (style->draw_end) style->draw_end(out, style->userdata); - return prog_value; -} -NK_API nk_bool -nk_progress(struct nk_context *ctx, nk_size *cur, nk_size max, nk_bool is_modifyable) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_style *style; - struct nk_input *in; - - struct nk_rect bounds; - enum nk_widget_layout_states state; - nk_size old_value; - - NK_ASSERT(ctx); - NK_ASSERT(cur); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !cur) - return 0; - - win = ctx->current; - style = &ctx->style; - layout = win->layout; - state = nk_widget(&bounds, ctx); - if (!state) return 0; - - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - old_value = *cur; - *cur = nk_do_progress(&ctx->last_widget_state, &win->buffer, bounds, - *cur, max, is_modifyable, &style->progress, in); - return (*cur != old_value); -} -NK_API nk_size -nk_prog(struct nk_context *ctx, nk_size cur, nk_size max, nk_bool modifyable) -{ - nk_progress(ctx, &cur, max, modifyable); - return cur; -} - - - - - -/* =============================================================== - * - * SCROLLBAR - * - * ===============================================================*/ -NK_LIB float -nk_scrollbar_behavior(nk_flags *state, struct nk_input *in, - int has_scrolling, const struct nk_rect *scroll, - const struct nk_rect *cursor, const struct nk_rect *empty0, - const struct nk_rect *empty1, float scroll_offset, - float target, float scroll_step, enum nk_orientation o) -{ - nk_flags ws = 0; - int left_mouse_down; - unsigned int left_mouse_clicked; - int left_mouse_click_in_cursor; - float scroll_delta; - - nk_widget_state_reset(state); - if (!in) return scroll_offset; - - left_mouse_down = in->mouse.buttons[NK_BUTTON_LEFT].down; - left_mouse_clicked = in->mouse.buttons[NK_BUTTON_LEFT].clicked; - left_mouse_click_in_cursor = nk_input_has_mouse_click_down_in_rect(in, - NK_BUTTON_LEFT, *cursor, nk_true); - if (nk_input_is_mouse_hovering_rect(in, *scroll)) - *state = NK_WIDGET_STATE_HOVERED; - - scroll_delta = (o == NK_VERTICAL) ? in->mouse.scroll_delta.y: in->mouse.scroll_delta.x; - if (left_mouse_down && left_mouse_click_in_cursor && !left_mouse_clicked) { - /* update cursor by mouse dragging */ - float pixel, delta; - *state = NK_WIDGET_STATE_ACTIVE; - if (o == NK_VERTICAL) { - float cursor_y; - pixel = in->mouse.delta.y; - delta = (pixel / scroll->h) * target; - scroll_offset = NK_CLAMP(0, scroll_offset + delta, target - scroll->h); - cursor_y = scroll->y + ((scroll_offset/target) * scroll->h); - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.y = cursor_y + cursor->h/2.0f; - } else { - float cursor_x; - pixel = in->mouse.delta.x; - delta = (pixel / scroll->w) * target; - scroll_offset = NK_CLAMP(0, scroll_offset + delta, target - scroll->w); - cursor_x = scroll->x + ((scroll_offset/target) * scroll->w); - in->mouse.buttons[NK_BUTTON_LEFT].clicked_pos.x = cursor_x + cursor->w/2.0f; - } - } else if ((nk_input_is_key_pressed(in, NK_KEY_SCROLL_UP) && o == NK_VERTICAL && has_scrolling)|| - nk_button_behavior(&ws, *empty0, in, NK_BUTTON_DEFAULT)) { - /* scroll page up by click on empty space or shortcut */ - if (o == NK_VERTICAL) - scroll_offset = NK_MAX(0, scroll_offset - scroll->h); - else scroll_offset = NK_MAX(0, scroll_offset - scroll->w); - } else if ((nk_input_is_key_pressed(in, NK_KEY_SCROLL_DOWN) && o == NK_VERTICAL && has_scrolling) || - nk_button_behavior(&ws, *empty1, in, NK_BUTTON_DEFAULT)) { - /* scroll page down by click on empty space or shortcut */ - if (o == NK_VERTICAL) - scroll_offset = NK_MIN(scroll_offset + scroll->h, target - scroll->h); - else scroll_offset = NK_MIN(scroll_offset + scroll->w, target - scroll->w); - } else if (has_scrolling) { - if ((scroll_delta < 0 || (scroll_delta > 0))) { - /* update cursor by mouse scrolling */ - scroll_offset = scroll_offset + scroll_step * (-scroll_delta); - if (o == NK_VERTICAL) - scroll_offset = NK_CLAMP(0, scroll_offset, target - scroll->h); - else scroll_offset = NK_CLAMP(0, scroll_offset, target - scroll->w); - } else if (nk_input_is_key_pressed(in, NK_KEY_SCROLL_START)) { - /* update cursor to the beginning */ - if (o == NK_VERTICAL) scroll_offset = 0; - } else if (nk_input_is_key_pressed(in, NK_KEY_SCROLL_END)) { - /* update cursor to the end */ - if (o == NK_VERTICAL) scroll_offset = target - scroll->h; - } - } - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(in, *scroll)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, *scroll)) - *state |= NK_WIDGET_STATE_LEFT; - return scroll_offset; -} -NK_LIB void -nk_draw_scrollbar(struct nk_command_buffer *out, nk_flags state, - const struct nk_style_scrollbar *style, const struct nk_rect *bounds, - const struct nk_rect *scroll) -{ - const struct nk_style_item *background; - const struct nk_style_item *cursor; - - /* select correct colors/images to draw */ - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - cursor = &style->cursor_active; - } else if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - cursor = &style->cursor_hover; - } else { - background = &style->normal; - cursor = &style->cursor_normal; - } - - /* draw background */ - switch (background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *bounds, &background->data.image, nk_white); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_white); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *bounds, style->rounding, background->data.color); - nk_stroke_rect(out, *bounds, style->rounding, style->border, style->border_color); - break; - } - - /* draw cursor */ - switch (cursor->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, *scroll, &cursor->data.image, nk_white); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, *scroll, &cursor->data.slice, nk_white); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, *scroll, style->rounding_cursor, cursor->data.color); - nk_stroke_rect(out, *scroll, style->rounding_cursor, style->border_cursor, style->cursor_border_color); - break; - } -} -NK_LIB float -nk_do_scrollbarv(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, - float offset, float target, float step, float button_pixel_inc, - const struct nk_style_scrollbar *style, struct nk_input *in, - const struct nk_user_font *font) -{ - struct nk_rect empty_north; - struct nk_rect empty_south; - struct nk_rect cursor; - - float scroll_step; - float scroll_offset; - float scroll_off; - float scroll_ratio; - - NK_ASSERT(out); - NK_ASSERT(style); - NK_ASSERT(state); - if (!out || !style) return 0; - - scroll.w = NK_MAX(scroll.w, 1); - scroll.h = NK_MAX(scroll.h, 0); - if (target <= scroll.h) return 0; - - /* optional scrollbar buttons */ - if (style->show_buttons) { - nk_flags ws; - float scroll_h; - struct nk_rect button; - - button.x = scroll.x; - button.w = scroll.w; - button.h = scroll.w; - - scroll_h = NK_MAX(scroll.h - 2 * button.h,0); - scroll_step = NK_MIN(step, button_pixel_inc); - - /* decrement button */ - button.y = scroll.y; - if (nk_do_button_symbol(&ws, out, button, style->dec_symbol, - NK_BUTTON_REPEATER, &style->dec_button, in, font)) - offset = offset - scroll_step; - - /* increment button */ - button.y = scroll.y + scroll.h - button.h; - if (nk_do_button_symbol(&ws, out, button, style->inc_symbol, - NK_BUTTON_REPEATER, &style->inc_button, in, font)) - offset = offset + scroll_step; - - scroll.y = scroll.y + button.h; - scroll.h = scroll_h; - } - - /* calculate scrollbar constants */ - scroll_step = NK_MIN(step, scroll.h); - scroll_offset = NK_CLAMP(0, offset, target - scroll.h); - scroll_ratio = scroll.h / target; - scroll_off = scroll_offset / target; - - /* calculate scrollbar cursor bounds */ - cursor.h = NK_MAX((scroll_ratio * scroll.h) - (2*style->border + 2*style->padding.y), 0); - cursor.y = scroll.y + (scroll_off * scroll.h) + style->border + style->padding.y; - cursor.w = scroll.w - (2 * style->border + 2 * style->padding.x); - cursor.x = scroll.x + style->border + style->padding.x; - - /* calculate empty space around cursor */ - empty_north.x = scroll.x; - empty_north.y = scroll.y; - empty_north.w = scroll.w; - empty_north.h = NK_MAX(cursor.y - scroll.y, 0); - - empty_south.x = scroll.x; - empty_south.y = cursor.y + cursor.h; - empty_south.w = scroll.w; - empty_south.h = NK_MAX((scroll.y + scroll.h) - (cursor.y + cursor.h), 0); - - /* update scrollbar */ - scroll_offset = nk_scrollbar_behavior(state, in, has_scrolling, &scroll, &cursor, - &empty_north, &empty_south, scroll_offset, target, scroll_step, NK_VERTICAL); - scroll_off = scroll_offset / target; - cursor.y = scroll.y + (scroll_off * scroll.h) + style->border_cursor + style->padding.y; - - /* draw scrollbar */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_scrollbar(out, *state, style, &scroll, &cursor); - if (style->draw_end) style->draw_end(out, style->userdata); - return scroll_offset; -} -NK_LIB float -nk_do_scrollbarh(nk_flags *state, - struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, - float offset, float target, float step, float button_pixel_inc, - const struct nk_style_scrollbar *style, struct nk_input *in, - const struct nk_user_font *font) -{ - struct nk_rect cursor; - struct nk_rect empty_west; - struct nk_rect empty_east; - - float scroll_step; - float scroll_offset; - float scroll_off; - float scroll_ratio; - - NK_ASSERT(out); - NK_ASSERT(style); - if (!out || !style) return 0; - - /* scrollbar background */ - scroll.h = NK_MAX(scroll.h, 1); - scroll.w = NK_MAX(scroll.w, 2 * scroll.h); - if (target <= scroll.w) return 0; - - /* optional scrollbar buttons */ - if (style->show_buttons) { - nk_flags ws; - float scroll_w; - struct nk_rect button; - button.y = scroll.y; - button.w = scroll.h; - button.h = scroll.h; - - scroll_w = scroll.w - 2 * button.w; - scroll_step = NK_MIN(step, button_pixel_inc); - - /* decrement button */ - button.x = scroll.x; - if (nk_do_button_symbol(&ws, out, button, style->dec_symbol, - NK_BUTTON_REPEATER, &style->dec_button, in, font)) - offset = offset - scroll_step; - - /* increment button */ - button.x = scroll.x + scroll.w - button.w; - if (nk_do_button_symbol(&ws, out, button, style->inc_symbol, - NK_BUTTON_REPEATER, &style->inc_button, in, font)) - offset = offset + scroll_step; - - scroll.x = scroll.x + button.w; - scroll.w = scroll_w; - } - - /* calculate scrollbar constants */ - scroll_step = NK_MIN(step, scroll.w); - scroll_offset = NK_CLAMP(0, offset, target - scroll.w); - scroll_ratio = scroll.w / target; - scroll_off = scroll_offset / target; - - /* calculate cursor bounds */ - cursor.w = (scroll_ratio * scroll.w) - (2*style->border + 2*style->padding.x); - cursor.x = scroll.x + (scroll_off * scroll.w) + style->border + style->padding.x; - cursor.h = scroll.h - (2 * style->border + 2 * style->padding.y); - cursor.y = scroll.y + style->border + style->padding.y; - - /* calculate empty space around cursor */ - empty_west.x = scroll.x; - empty_west.y = scroll.y; - empty_west.w = cursor.x - scroll.x; - empty_west.h = scroll.h; - - empty_east.x = cursor.x + cursor.w; - empty_east.y = scroll.y; - empty_east.w = (scroll.x + scroll.w) - (cursor.x + cursor.w); - empty_east.h = scroll.h; - - /* update scrollbar */ - scroll_offset = nk_scrollbar_behavior(state, in, has_scrolling, &scroll, &cursor, - &empty_west, &empty_east, scroll_offset, target, scroll_step, NK_HORIZONTAL); - scroll_off = scroll_offset / target; - cursor.x = scroll.x + (scroll_off * scroll.w); - - /* draw scrollbar */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_scrollbar(out, *state, style, &scroll, &cursor); - if (style->draw_end) style->draw_end(out, style->userdata); - return scroll_offset; -} - - - - - -/* =============================================================== - * - * TEXT EDITOR - * - * ===============================================================*/ -/* stb_textedit.h - v1.8 - public domain - Sean Barrett */ -struct nk_text_find { - float x,y; /* position of n'th character */ - float height; /* height of line */ - int first_char, length; /* first char of row, and length */ - int prev_first; /*_ first char of previous row */ -}; - -struct nk_text_edit_row { - float x0,x1; - /* starting x location, end x location (allows for align=right, etc) */ - float baseline_y_delta; - /* position of baseline relative to previous row's baseline*/ - float ymin,ymax; - /* height of row above and below baseline */ - int num_chars; -}; - -/* forward declarations */ -NK_INTERN void nk_textedit_makeundo_delete(struct nk_text_edit*, int, int); -NK_INTERN void nk_textedit_makeundo_insert(struct nk_text_edit*, int, int); -NK_INTERN void nk_textedit_makeundo_replace(struct nk_text_edit*, int, int, int); -#define NK_TEXT_HAS_SELECTION(s) ((s)->select_start != (s)->select_end) - -NK_INTERN float -nk_textedit_get_width(const struct nk_text_edit *edit, int line_start, int char_id, - const struct nk_user_font *font) -{ - int len = 0; - nk_rune unicode = 0; - const char *str = nk_str_at_const(&edit->string, line_start + char_id, &unicode, &len); - return font->width(font->userdata, font->height, str, len); -} -NK_INTERN void -nk_textedit_layout_row(struct nk_text_edit_row *r, struct nk_text_edit *edit, - int line_start_id, float row_height, const struct nk_user_font *font) -{ - int l; - int glyphs = 0; - nk_rune unicode; - const char *remaining; - int len = nk_str_len_char(&edit->string); - const char *end = nk_str_get_const(&edit->string) + len; - const char *text = nk_str_at_const(&edit->string, line_start_id, &unicode, &l); - const struct nk_vec2 size = nk_text_calculate_text_bounds(font, - text, (int)(end - text), row_height, &remaining, 0, &glyphs, NK_STOP_ON_NEW_LINE); - - r->x0 = 0.0f; - r->x1 = size.x; - r->baseline_y_delta = size.y; - r->ymin = 0.0f; - r->ymax = size.y; - r->num_chars = glyphs; -} -NK_INTERN int -nk_textedit_locate_coord(struct nk_text_edit *edit, float x, float y, - const struct nk_user_font *font, float row_height) -{ - struct nk_text_edit_row r; - int n = edit->string.len; - float base_y = 0, prev_x; - int i=0, k; - - r.x0 = r.x1 = 0; - r.ymin = r.ymax = 0; - r.num_chars = 0; - - /* search rows to find one that straddles 'y' */ - while (i < n) { - nk_textedit_layout_row(&r, edit, i, row_height, font); - if (r.num_chars <= 0) - return n; - - if (i==0 && y < base_y + r.ymin) - return 0; - - if (y < base_y + r.ymax) - break; - - i += r.num_chars; - base_y += r.baseline_y_delta; - } - - /* below all text, return 'after' last character */ - if (i >= n) - return n; - - /* check if it's before the beginning of the line */ - if (x < r.x0) - return i; - - /* check if it's before the end of the line */ - if (x < r.x1) { - /* search characters in row for one that straddles 'x' */ - k = i; - prev_x = r.x0; - for (i=0; i < r.num_chars; ++i) { - float w = nk_textedit_get_width(edit, k, i, font); - if (x < prev_x+w) { - if (x < prev_x+w/2) - return k+i; - else return k+i+1; - } - prev_x += w; - } - /* shouldn't happen, but if it does, fall through to end-of-line case */ - } - - /* if the last character is a newline, return that. - * otherwise return 'after' the last character */ - if (nk_str_rune_at(&edit->string, i+r.num_chars-1) == '\n') - return i+r.num_chars-1; - else return i+r.num_chars; -} -NK_LIB void -nk_textedit_click(struct nk_text_edit *state, float x, float y, - const struct nk_user_font *font, float row_height) -{ - /* API click: on mouse down, move the cursor to the clicked location, - * and reset the selection */ - state->cursor = nk_textedit_locate_coord(state, x, y, font, row_height); - state->select_start = state->cursor; - state->select_end = state->cursor; - state->has_preferred_x = 0; -} -NK_LIB void -nk_textedit_drag(struct nk_text_edit *state, float x, float y, - const struct nk_user_font *font, float row_height) -{ - /* API drag: on mouse drag, move the cursor and selection endpoint - * to the clicked location */ - int p = nk_textedit_locate_coord(state, x, y, font, row_height); - if (state->select_start == state->select_end) - state->select_start = state->cursor; - state->cursor = state->select_end = p; -} -NK_INTERN void -nk_textedit_find_charpos(struct nk_text_find *find, struct nk_text_edit *state, - int n, int single_line, const struct nk_user_font *font, float row_height) -{ - /* find the x/y location of a character, and remember info about the previous - * row in case we get a move-up event (for page up, we'll have to rescan) */ - struct nk_text_edit_row r; - int prev_start = 0; - int z = state->string.len; - int i=0, first; - - nk_zero_struct(r); - if (n == z) { - /* if it's at the end, then find the last line -- simpler than trying to - explicitly handle this case in the regular code */ - nk_textedit_layout_row(&r, state, 0, row_height, font); - if (single_line) { - find->first_char = 0; - find->length = z; - } else { - while (i < z) { - prev_start = i; - i += r.num_chars; - nk_textedit_layout_row(&r, state, i, row_height, font); - } - - find->first_char = i; - find->length = r.num_chars; - } - find->x = r.x1; - find->y = r.ymin; - find->height = r.ymax - r.ymin; - find->prev_first = prev_start; - return; - } - - /* search rows to find the one that straddles character n */ - find->y = 0; - - for(;;) { - nk_textedit_layout_row(&r, state, i, row_height, font); - if (n < i + r.num_chars) break; - prev_start = i; - i += r.num_chars; - find->y += r.baseline_y_delta; - } - - find->first_char = first = i; - find->length = r.num_chars; - find->height = r.ymax - r.ymin; - find->prev_first = prev_start; - - /* now scan to find xpos */ - find->x = r.x0; - for (i=0; first+i < n; ++i) - find->x += nk_textedit_get_width(state, first, i, font); -} -NK_INTERN void -nk_textedit_clamp(struct nk_text_edit *state) -{ - /* make the selection/cursor state valid if client altered the string */ - int n = state->string.len; - if (NK_TEXT_HAS_SELECTION(state)) { - if (state->select_start > n) state->select_start = n; - if (state->select_end > n) state->select_end = n; - /* if clamping forced them to be equal, move the cursor to match */ - if (state->select_start == state->select_end) - state->cursor = state->select_start; - } - if (state->cursor > n) state->cursor = n; -} -NK_API void -nk_textedit_delete(struct nk_text_edit *state, int where, int len) -{ - /* delete characters while updating undo */ - nk_textedit_makeundo_delete(state, where, len); - nk_str_delete_runes(&state->string, where, len); - state->has_preferred_x = 0; -} -NK_API void -nk_textedit_delete_selection(struct nk_text_edit *state) -{ - /* delete the section */ - nk_textedit_clamp(state); - if (NK_TEXT_HAS_SELECTION(state)) { - if (state->select_start < state->select_end) { - nk_textedit_delete(state, state->select_start, - state->select_end - state->select_start); - state->select_end = state->cursor = state->select_start; - } else { - nk_textedit_delete(state, state->select_end, - state->select_start - state->select_end); - state->select_start = state->cursor = state->select_end; - } - state->has_preferred_x = 0; - } -} -NK_INTERN void -nk_textedit_sortselection(struct nk_text_edit *state) -{ - /* canonicalize the selection so start <= end */ - if (state->select_end < state->select_start) { - int temp = state->select_end; - state->select_end = state->select_start; - state->select_start = temp; - } -} -NK_INTERN void -nk_textedit_move_to_first(struct nk_text_edit *state) -{ - /* move cursor to first character of selection */ - if (NK_TEXT_HAS_SELECTION(state)) { - nk_textedit_sortselection(state); - state->cursor = state->select_start; - state->select_end = state->select_start; - state->has_preferred_x = 0; - } -} -NK_INTERN void -nk_textedit_move_to_last(struct nk_text_edit *state) -{ - /* move cursor to last character of selection */ - if (NK_TEXT_HAS_SELECTION(state)) { - nk_textedit_sortselection(state); - nk_textedit_clamp(state); - state->cursor = state->select_end; - state->select_start = state->select_end; - state->has_preferred_x = 0; - } -} -NK_INTERN int -nk_is_word_boundary( struct nk_text_edit *state, int idx) -{ - int len; - nk_rune c; - if (idx <= 0) return 1; - if (!nk_str_at_rune(&state->string, idx, &c, &len)) return 1; - return (c == ' ' || c == '\t' ||c == 0x3000 || c == ',' || c == ';' || - c == '(' || c == ')' || c == '{' || c == '}' || c == '[' || c == ']' || - c == '|'); -} -NK_INTERN int -nk_textedit_move_to_word_previous(struct nk_text_edit *state) -{ - int c = state->cursor - 1; - while( c >= 0 && !nk_is_word_boundary(state, c)) - --c; - - if( c < 0 ) - c = 0; - - return c; -} -NK_INTERN int -nk_textedit_move_to_word_next(struct nk_text_edit *state) -{ - const int len = state->string.len; - int c = state->cursor+1; - while( c < len && !nk_is_word_boundary(state, c)) - ++c; - - if( c > len ) - c = len; - - return c; -} -NK_INTERN void -nk_textedit_prep_selection_at_cursor(struct nk_text_edit *state) -{ - /* update selection and cursor to match each other */ - if (!NK_TEXT_HAS_SELECTION(state)) - state->select_start = state->select_end = state->cursor; - else state->cursor = state->select_end; -} -NK_API nk_bool -nk_textedit_cut(struct nk_text_edit *state) -{ - /* API cut: delete selection */ - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) - return 0; - if (NK_TEXT_HAS_SELECTION(state)) { - nk_textedit_delete_selection(state); /* implicitly clamps */ - state->has_preferred_x = 0; - return 1; - } - return 0; -} -NK_API nk_bool -nk_textedit_paste(struct nk_text_edit *state, char const *ctext, int len) -{ - /* API paste: replace existing selection with passed-in text */ - int glyphs; - const char *text = (const char *) ctext; - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) return 0; - - /* if there's a selection, the paste should delete it */ - nk_textedit_clamp(state); - nk_textedit_delete_selection(state); - - /* try to insert the characters */ - glyphs = nk_utf_len(ctext, len); - if (nk_str_insert_text_char(&state->string, state->cursor, text, len)) { - nk_textedit_makeundo_insert(state, state->cursor, glyphs); - state->cursor += len; - state->has_preferred_x = 0; - return 1; - } - /* remove the undo since we didn't actually insert the characters */ - if (state->undo.undo_point) - --state->undo.undo_point; - return 0; -} -NK_API void -nk_textedit_text(struct nk_text_edit *state, const char *text, int total_len) -{ - nk_rune unicode; - int glyph_len; - int text_len = 0; - - NK_ASSERT(state); - NK_ASSERT(text); - if (!text || !total_len || state->mode == NK_TEXT_EDIT_MODE_VIEW) return; - - glyph_len = nk_utf_decode(text, &unicode, total_len); - while ((text_len < total_len) && glyph_len) - { - /* don't insert a backward delete, just process the event */ - if (unicode == 127) goto next; - /* can't add newline in single-line mode */ - if (unicode == '\n' && state->single_line) goto next; - /* filter incoming text */ - if (state->filter && !state->filter(state, unicode)) goto next; - - if (!NK_TEXT_HAS_SELECTION(state) && - state->cursor < state->string.len) - { - if (state->mode == NK_TEXT_EDIT_MODE_REPLACE) { - nk_textedit_makeundo_replace(state, state->cursor, 1, 1); - nk_str_delete_runes(&state->string, state->cursor, 1); - } - if (nk_str_insert_text_utf8(&state->string, state->cursor, - text+text_len, 1)) - { - ++state->cursor; - state->has_preferred_x = 0; - } - } else { - nk_textedit_delete_selection(state); /* implicitly clamps */ - if (nk_str_insert_text_utf8(&state->string, state->cursor, - text+text_len, 1)) - { - nk_textedit_makeundo_insert(state, state->cursor, 1); - state->cursor = NK_MIN(state->cursor + 1, state->string.len); - state->has_preferred_x = 0; - } - } - next: - text_len += glyph_len; - glyph_len = nk_utf_decode(text + text_len, &unicode, total_len-text_len); - } -} -NK_LIB void -nk_textedit_key(struct nk_text_edit *state, enum nk_keys key, int shift_mod, - const struct nk_user_font *font, float row_height) -{ -retry: - switch (key) - { - case NK_KEY_NONE: - case NK_KEY_CTRL: - case NK_KEY_ENTER: - case NK_KEY_SHIFT: - case NK_KEY_TAB: - case NK_KEY_COPY: - case NK_KEY_CUT: - case NK_KEY_PASTE: - case NK_KEY_MAX: - default: break; - case NK_KEY_TEXT_UNDO: - nk_textedit_undo(state); - state->has_preferred_x = 0; - break; - - case NK_KEY_TEXT_REDO: - nk_textedit_redo(state); - state->has_preferred_x = 0; - break; - - case NK_KEY_TEXT_SELECT_ALL: - nk_textedit_select_all(state); - state->has_preferred_x = 0; - break; - - case NK_KEY_TEXT_INSERT_MODE: - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) - state->mode = NK_TEXT_EDIT_MODE_INSERT; - break; - case NK_KEY_TEXT_REPLACE_MODE: - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) - state->mode = NK_TEXT_EDIT_MODE_REPLACE; - break; - case NK_KEY_TEXT_RESET_MODE: - if (state->mode == NK_TEXT_EDIT_MODE_INSERT || - state->mode == NK_TEXT_EDIT_MODE_REPLACE) - state->mode = NK_TEXT_EDIT_MODE_VIEW; - break; - - case NK_KEY_LEFT: - if (shift_mod) { - nk_textedit_clamp(state); - nk_textedit_prep_selection_at_cursor(state); - /* move selection left */ - if (state->select_end > 0) - --state->select_end; - state->cursor = state->select_end; - state->has_preferred_x = 0; - } else { - /* if currently there's a selection, - * move cursor to start of selection */ - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_first(state); - else if (state->cursor > 0) - --state->cursor; - state->has_preferred_x = 0; - } break; - - case NK_KEY_RIGHT: - if (shift_mod) { - nk_textedit_prep_selection_at_cursor(state); - /* move selection right */ - ++state->select_end; - nk_textedit_clamp(state); - state->cursor = state->select_end; - state->has_preferred_x = 0; - } else { - /* if currently there's a selection, - * move cursor to end of selection */ - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_last(state); - else ++state->cursor; - nk_textedit_clamp(state); - state->has_preferred_x = 0; - } break; - - case NK_KEY_TEXT_WORD_LEFT: - if (shift_mod) { - if( !NK_TEXT_HAS_SELECTION( state ) ) - nk_textedit_prep_selection_at_cursor(state); - state->cursor = nk_textedit_move_to_word_previous(state); - state->select_end = state->cursor; - nk_textedit_clamp(state ); - } else { - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_first(state); - else { - state->cursor = nk_textedit_move_to_word_previous(state); - nk_textedit_clamp(state ); - } - } break; - - case NK_KEY_TEXT_WORD_RIGHT: - if (shift_mod) { - if( !NK_TEXT_HAS_SELECTION( state ) ) - nk_textedit_prep_selection_at_cursor(state); - state->cursor = nk_textedit_move_to_word_next(state); - state->select_end = state->cursor; - nk_textedit_clamp(state); - } else { - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_last(state); - else { - state->cursor = nk_textedit_move_to_word_next(state); - nk_textedit_clamp(state ); - } - } break; - - case NK_KEY_DOWN: { - struct nk_text_find find; - struct nk_text_edit_row row; - int i, sel = shift_mod; - - if (state->single_line) { - /* on windows, up&down in single-line behave like left&right */ - key = NK_KEY_RIGHT; - goto retry; - } - - if (sel) - nk_textedit_prep_selection_at_cursor(state); - else if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_last(state); - - /* compute current position of cursor point */ - nk_textedit_clamp(state); - nk_textedit_find_charpos(&find, state, state->cursor, state->single_line, - font, row_height); - - /* now find character position down a row */ - if (find.length) - { - float x; - float goal_x = state->has_preferred_x ? state->preferred_x : find.x; - int start = find.first_char + find.length; - - state->cursor = start; - nk_textedit_layout_row(&row, state, state->cursor, row_height, font); - x = row.x0; - - for (i=0; i < row.num_chars && x < row.x1; ++i) { - float dx = nk_textedit_get_width(state, start, i, font); - x += dx; - if (x > goal_x) - break; - ++state->cursor; - } - nk_textedit_clamp(state); - - state->has_preferred_x = 1; - state->preferred_x = goal_x; - if (sel) - state->select_end = state->cursor; - } - } break; - - case NK_KEY_UP: { - struct nk_text_find find; - struct nk_text_edit_row row; - int i, sel = shift_mod; - - if (state->single_line) { - /* on windows, up&down become left&right */ - key = NK_KEY_LEFT; - goto retry; - } - - if (sel) - nk_textedit_prep_selection_at_cursor(state); - else if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_move_to_first(state); - - /* compute current position of cursor point */ - nk_textedit_clamp(state); - nk_textedit_find_charpos(&find, state, state->cursor, state->single_line, - font, row_height); - - /* can only go up if there's a previous row */ - if (find.prev_first != find.first_char) { - /* now find character position up a row */ - float x; - float goal_x = state->has_preferred_x ? state->preferred_x : find.x; - - state->cursor = find.prev_first; - nk_textedit_layout_row(&row, state, state->cursor, row_height, font); - x = row.x0; - - for (i=0; i < row.num_chars && x < row.x1; ++i) { - float dx = nk_textedit_get_width(state, find.prev_first, i, font); - x += dx; - if (x > goal_x) - break; - ++state->cursor; - } - nk_textedit_clamp(state); - - state->has_preferred_x = 1; - state->preferred_x = goal_x; - if (sel) state->select_end = state->cursor; - } - } break; - - case NK_KEY_DEL: - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) - break; - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_delete_selection(state); - else { - int n = state->string.len; - if (state->cursor < n) - nk_textedit_delete(state, state->cursor, 1); - } - state->has_preferred_x = 0; - break; - - case NK_KEY_BACKSPACE: - if (state->mode == NK_TEXT_EDIT_MODE_VIEW) - break; - if (NK_TEXT_HAS_SELECTION(state)) - nk_textedit_delete_selection(state); - else { - nk_textedit_clamp(state); - if (state->cursor > 0) { - nk_textedit_delete(state, state->cursor-1, 1); - --state->cursor; - } - } - state->has_preferred_x = 0; - break; - - case NK_KEY_TEXT_START: - if (shift_mod) { - nk_textedit_prep_selection_at_cursor(state); - state->cursor = state->select_end = 0; - state->has_preferred_x = 0; - } else { - state->cursor = state->select_start = state->select_end = 0; - state->has_preferred_x = 0; - } - break; - - case NK_KEY_TEXT_END: - if (shift_mod) { - nk_textedit_prep_selection_at_cursor(state); - state->cursor = state->select_end = state->string.len; - state->has_preferred_x = 0; - } else { - state->cursor = state->string.len; - state->select_start = state->select_end = 0; - state->has_preferred_x = 0; - } - break; - - case NK_KEY_TEXT_LINE_START: { - if (shift_mod) { - struct nk_text_find find; - nk_textedit_clamp(state); - nk_textedit_prep_selection_at_cursor(state); - if (state->string.len && state->cursor == state->string.len) - --state->cursor; - nk_textedit_find_charpos(&find, state,state->cursor, state->single_line, - font, row_height); - state->cursor = state->select_end = find.first_char; - state->has_preferred_x = 0; - } else { - struct nk_text_find find; - if (state->string.len && state->cursor == state->string.len) - --state->cursor; - nk_textedit_clamp(state); - nk_textedit_move_to_first(state); - nk_textedit_find_charpos(&find, state, state->cursor, state->single_line, - font, row_height); - state->cursor = find.first_char; - state->has_preferred_x = 0; - } - } break; - - case NK_KEY_TEXT_LINE_END: { - if (shift_mod) { - struct nk_text_find find; - nk_textedit_clamp(state); - nk_textedit_prep_selection_at_cursor(state); - nk_textedit_find_charpos(&find, state, state->cursor, state->single_line, - font, row_height); - state->has_preferred_x = 0; - state->cursor = find.first_char + find.length; - if (find.length > 0 && nk_str_rune_at(&state->string, state->cursor-1) == '\n') - --state->cursor; - state->select_end = state->cursor; - } else { - struct nk_text_find find; - nk_textedit_clamp(state); - nk_textedit_move_to_first(state); - nk_textedit_find_charpos(&find, state, state->cursor, state->single_line, - font, row_height); - - state->has_preferred_x = 0; - state->cursor = find.first_char + find.length; - if (find.length > 0 && nk_str_rune_at(&state->string, state->cursor-1) == '\n') - --state->cursor; - }} break; - } -} -NK_INTERN void -nk_textedit_flush_redo(struct nk_text_undo_state *state) -{ - state->redo_point = NK_TEXTEDIT_UNDOSTATECOUNT; - state->redo_char_point = NK_TEXTEDIT_UNDOCHARCOUNT; -} -NK_INTERN void -nk_textedit_discard_undo(struct nk_text_undo_state *state) -{ - /* discard the oldest entry in the undo list */ - if (state->undo_point > 0) { - /* if the 0th undo state has characters, clean those up */ - if (state->undo_rec[0].char_storage >= 0) { - int n = state->undo_rec[0].insert_length, i; - /* delete n characters from all other records */ - state->undo_char_point = (short)(state->undo_char_point - n); - NK_MEMCPY(state->undo_char, state->undo_char + n, - (nk_size)state->undo_char_point*sizeof(nk_rune)); - for (i=0; i < state->undo_point; ++i) { - if (state->undo_rec[i].char_storage >= 0) - state->undo_rec[i].char_storage = (short) - (state->undo_rec[i].char_storage - n); - } - } - --state->undo_point; - NK_MEMCPY(state->undo_rec, state->undo_rec+1, - (nk_size)((nk_size)state->undo_point * sizeof(state->undo_rec[0]))); - } -} -NK_INTERN void -nk_textedit_discard_redo(struct nk_text_undo_state *state) -{ -/* discard the oldest entry in the redo list--it's bad if this - ever happens, but because undo & redo have to store the actual - characters in different cases, the redo character buffer can - fill up even though the undo buffer didn't */ - nk_size num; - int k = NK_TEXTEDIT_UNDOSTATECOUNT-1; - if (state->redo_point <= k) { - /* if the k'th undo state has characters, clean those up */ - if (state->undo_rec[k].char_storage >= 0) { - int n = state->undo_rec[k].insert_length, i; - /* delete n characters from all other records */ - state->redo_char_point = (short)(state->redo_char_point + n); - num = (nk_size)(NK_TEXTEDIT_UNDOCHARCOUNT - state->redo_char_point); - NK_MEMCPY(state->undo_char + state->redo_char_point, - state->undo_char + state->redo_char_point-n, num * sizeof(char)); - for (i = state->redo_point; i < k; ++i) { - if (state->undo_rec[i].char_storage >= 0) { - state->undo_rec[i].char_storage = (short) - (state->undo_rec[i].char_storage + n); - } - } - } - ++state->redo_point; - num = (nk_size)(NK_TEXTEDIT_UNDOSTATECOUNT - state->redo_point); - if (num) NK_MEMCPY(state->undo_rec + state->redo_point-1, - state->undo_rec + state->redo_point, num * sizeof(state->undo_rec[0])); - } -} -NK_INTERN struct nk_text_undo_record* -nk_textedit_create_undo_record(struct nk_text_undo_state *state, int numchars) -{ - /* any time we create a new undo record, we discard redo*/ - nk_textedit_flush_redo(state); - - /* if we have no free records, we have to make room, - * by sliding the existing records down */ - if (state->undo_point == NK_TEXTEDIT_UNDOSTATECOUNT) - nk_textedit_discard_undo(state); - - /* if the characters to store won't possibly fit in the buffer, - * we can't undo */ - if (numchars > NK_TEXTEDIT_UNDOCHARCOUNT) { - state->undo_point = 0; - state->undo_char_point = 0; - return 0; - } - - /* if we don't have enough free characters in the buffer, - * we have to make room */ - while (state->undo_char_point + numchars > NK_TEXTEDIT_UNDOCHARCOUNT) - nk_textedit_discard_undo(state); - return &state->undo_rec[state->undo_point++]; -} -NK_INTERN nk_rune* -nk_textedit_createundo(struct nk_text_undo_state *state, int pos, - int insert_len, int delete_len) -{ - struct nk_text_undo_record *r = nk_textedit_create_undo_record(state, insert_len); - if (r == 0) - return 0; - - r->where = pos; - r->insert_length = (short) insert_len; - r->delete_length = (short) delete_len; - - if (insert_len == 0) { - r->char_storage = -1; - return 0; - } else { - r->char_storage = state->undo_char_point; - state->undo_char_point = (short)(state->undo_char_point + insert_len); - return &state->undo_char[r->char_storage]; - } -} -NK_API void -nk_textedit_undo(struct nk_text_edit *state) -{ - struct nk_text_undo_state *s = &state->undo; - struct nk_text_undo_record u, *r; - if (s->undo_point == 0) - return; - - /* we need to do two things: apply the undo record, and create a redo record */ - u = s->undo_rec[s->undo_point-1]; - r = &s->undo_rec[s->redo_point-1]; - r->char_storage = -1; - - r->insert_length = u.delete_length; - r->delete_length = u.insert_length; - r->where = u.where; - - if (u.delete_length) - { - /* if the undo record says to delete characters, then the redo record will - need to re-insert the characters that get deleted, so we need to store - them. - there are three cases: - - there's enough room to store the characters - - characters stored for *redoing* don't leave room for redo - - characters stored for *undoing* don't leave room for redo - if the last is true, we have to bail */ - if (s->undo_char_point + u.delete_length >= NK_TEXTEDIT_UNDOCHARCOUNT) { - /* the undo records take up too much character space; there's no space - * to store the redo characters */ - r->insert_length = 0; - } else { - int i; - /* there's definitely room to store the characters eventually */ - while (s->undo_char_point + u.delete_length > s->redo_char_point) { - /* there's currently not enough room, so discard a redo record */ - nk_textedit_discard_redo(s); - /* should never happen: */ - if (s->redo_point == NK_TEXTEDIT_UNDOSTATECOUNT) - return; - } - - r = &s->undo_rec[s->redo_point-1]; - r->char_storage = (short)(s->redo_char_point - u.delete_length); - s->redo_char_point = (short)(s->redo_char_point - u.delete_length); - - /* now save the characters */ - for (i=0; i < u.delete_length; ++i) - s->undo_char[r->char_storage + i] = - nk_str_rune_at(&state->string, u.where + i); - } - /* now we can carry out the deletion */ - nk_str_delete_runes(&state->string, u.where, u.delete_length); - } - - /* check type of recorded action: */ - if (u.insert_length) { - /* easy case: was a deletion, so we need to insert n characters */ - nk_str_insert_text_runes(&state->string, u.where, - &s->undo_char[u.char_storage], u.insert_length); - s->undo_char_point = (short)(s->undo_char_point - u.insert_length); - } - state->cursor = (short)(u.where + u.insert_length); - - s->undo_point--; - s->redo_point--; -} -NK_API void -nk_textedit_redo(struct nk_text_edit *state) -{ - struct nk_text_undo_state *s = &state->undo; - struct nk_text_undo_record *u, r; - if (s->redo_point == NK_TEXTEDIT_UNDOSTATECOUNT) - return; - - /* we need to do two things: apply the redo record, and create an undo record */ - u = &s->undo_rec[s->undo_point]; - r = s->undo_rec[s->redo_point]; - - /* we KNOW there must be room for the undo record, because the redo record - was derived from an undo record */ - u->delete_length = r.insert_length; - u->insert_length = r.delete_length; - u->where = r.where; - u->char_storage = -1; - - if (r.delete_length) { - /* the redo record requires us to delete characters, so the undo record - needs to store the characters */ - if (s->undo_char_point + u->insert_length > s->redo_char_point) { - u->insert_length = 0; - u->delete_length = 0; - } else { - int i; - u->char_storage = s->undo_char_point; - s->undo_char_point = (short)(s->undo_char_point + u->insert_length); - - /* now save the characters */ - for (i=0; i < u->insert_length; ++i) { - s->undo_char[u->char_storage + i] = - nk_str_rune_at(&state->string, u->where + i); - } - } - nk_str_delete_runes(&state->string, r.where, r.delete_length); - } - - if (r.insert_length) { - /* easy case: need to insert n characters */ - nk_str_insert_text_runes(&state->string, r.where, - &s->undo_char[r.char_storage], r.insert_length); - } - state->cursor = r.where + r.insert_length; - - s->undo_point++; - s->redo_point++; -} -NK_INTERN void -nk_textedit_makeundo_insert(struct nk_text_edit *state, int where, int length) -{ - nk_textedit_createundo(&state->undo, where, 0, length); -} -NK_INTERN void -nk_textedit_makeundo_delete(struct nk_text_edit *state, int where, int length) -{ - int i; - nk_rune *p = nk_textedit_createundo(&state->undo, where, length, 0); - if (p) { - for (i=0; i < length; ++i) - p[i] = nk_str_rune_at(&state->string, where+i); - } -} -NK_INTERN void -nk_textedit_makeundo_replace(struct nk_text_edit *state, int where, - int old_length, int new_length) -{ - int i; - nk_rune *p = nk_textedit_createundo(&state->undo, where, old_length, new_length); - if (p) { - for (i=0; i < old_length; ++i) - p[i] = nk_str_rune_at(&state->string, where+i); - } -} -NK_LIB void -nk_textedit_clear_state(struct nk_text_edit *state, enum nk_text_edit_type type, - nk_plugin_filter filter) -{ - /* reset the state to default */ - state->undo.undo_point = 0; - state->undo.undo_char_point = 0; - state->undo.redo_point = NK_TEXTEDIT_UNDOSTATECOUNT; - state->undo.redo_char_point = NK_TEXTEDIT_UNDOCHARCOUNT; - state->select_end = state->select_start = 0; - state->cursor = 0; - state->has_preferred_x = 0; - state->preferred_x = 0; - state->cursor_at_end_of_line = 0; - state->initialized = 1; - state->single_line = (unsigned char)(type == NK_TEXT_EDIT_SINGLE_LINE); - state->mode = NK_TEXT_EDIT_MODE_VIEW; - state->filter = filter; - state->scrollbar = nk_vec2(0,0); -} -NK_API void -nk_textedit_init_fixed(struct nk_text_edit *state, void *memory, nk_size size) -{ - NK_ASSERT(state); - NK_ASSERT(memory); - if (!state || !memory || !size) return; - NK_MEMSET(state, 0, sizeof(struct nk_text_edit)); - nk_textedit_clear_state(state, NK_TEXT_EDIT_SINGLE_LINE, 0); - nk_str_init_fixed(&state->string, memory, size); -} -NK_API void -nk_textedit_init(struct nk_text_edit *state, struct nk_allocator *alloc, nk_size size) -{ - NK_ASSERT(state); - NK_ASSERT(alloc); - if (!state || !alloc) return; - NK_MEMSET(state, 0, sizeof(struct nk_text_edit)); - nk_textedit_clear_state(state, NK_TEXT_EDIT_SINGLE_LINE, 0); - nk_str_init(&state->string, alloc, size); -} -#ifdef NK_INCLUDE_DEFAULT_ALLOCATOR -NK_API void -nk_textedit_init_default(struct nk_text_edit *state) -{ - NK_ASSERT(state); - if (!state) return; - NK_MEMSET(state, 0, sizeof(struct nk_text_edit)); - nk_textedit_clear_state(state, NK_TEXT_EDIT_SINGLE_LINE, 0); - nk_str_init_default(&state->string); -} -#endif -NK_API void -nk_textedit_select_all(struct nk_text_edit *state) -{ - NK_ASSERT(state); - state->select_start = 0; - state->select_end = state->string.len; -} -NK_API void -nk_textedit_free(struct nk_text_edit *state) -{ - NK_ASSERT(state); - if (!state) return; - nk_str_free(&state->string); -} - - - - - -/* =============================================================== - * - * FILTER - * - * ===============================================================*/ -NK_API nk_bool -nk_filter_default(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(unicode); - NK_UNUSED(box); - return nk_true; -} -NK_API nk_bool -nk_filter_ascii(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if (unicode > 128) return nk_false; - else return nk_true; -} -NK_API nk_bool -nk_filter_float(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if ((unicode < '0' || unicode > '9') && unicode != '.' && unicode != '-') - return nk_false; - else return nk_true; -} -NK_API nk_bool -nk_filter_decimal(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if ((unicode < '0' || unicode > '9') && unicode != '-') - return nk_false; - else return nk_true; -} -NK_API nk_bool -nk_filter_hex(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if ((unicode < '0' || unicode > '9') && - (unicode < 'a' || unicode > 'f') && - (unicode < 'A' || unicode > 'F')) - return nk_false; - else return nk_true; -} -NK_API nk_bool -nk_filter_oct(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if (unicode < '0' || unicode > '7') - return nk_false; - else return nk_true; -} -NK_API nk_bool -nk_filter_binary(const struct nk_text_edit *box, nk_rune unicode) -{ - NK_UNUSED(box); - if (unicode != '0' && unicode != '1') - return nk_false; - else return nk_true; -} - -/* =============================================================== - * - * EDIT - * - * ===============================================================*/ -NK_LIB void -nk_edit_draw_text(struct nk_command_buffer *out, - const struct nk_style_edit *style, float pos_x, float pos_y, - float x_offset, const char *text, int byte_len, float row_height, - const struct nk_user_font *font, struct nk_color background, - struct nk_color foreground, nk_bool is_selected) -{ - NK_ASSERT(out); - NK_ASSERT(font); - NK_ASSERT(style); - if (!text || !byte_len || !out || !style) return; - - {int glyph_len = 0; - nk_rune unicode = 0; - int text_len = 0; - float line_width = 0; - float glyph_width; - const char *line = text; - float line_offset = 0; - int line_count = 0; - - struct nk_text txt; - txt.padding = nk_vec2(0,0); - txt.background = background; - txt.text = foreground; - - foreground = nk_rgb_factor(foreground, style->color_factor); - background = nk_rgb_factor(background, style->color_factor); - - glyph_len = nk_utf_decode(text+text_len, &unicode, byte_len-text_len); - if (!glyph_len) return; - while ((text_len < byte_len) && glyph_len) - { - if (unicode == '\n') { - /* new line separator so draw previous line */ - struct nk_rect label; - label.y = pos_y + line_offset; - label.h = row_height; - label.w = line_width; - label.x = pos_x; - if (!line_count) - label.x += x_offset; - - if (is_selected) /* selection needs to draw different background color */ - nk_fill_rect(out, label, 0, background); - nk_widget_text(out, label, line, (int)((text + text_len) - line), - &txt, NK_TEXT_CENTERED, font); - - text_len++; - line_count++; - line_width = 0; - line = text + text_len; - line_offset += row_height; - glyph_len = nk_utf_decode(text + text_len, &unicode, (int)(byte_len-text_len)); - continue; - } - if (unicode == '\r') { - text_len++; - glyph_len = nk_utf_decode(text + text_len, &unicode, byte_len-text_len); - continue; - } - glyph_width = font->width(font->userdata, font->height, text+text_len, glyph_len); - line_width += (float)glyph_width; - text_len += glyph_len; - glyph_len = nk_utf_decode(text + text_len, &unicode, byte_len-text_len); - continue; - } - if (line_width > 0) { - /* draw last line */ - struct nk_rect label; - label.y = pos_y + line_offset; - label.h = row_height; - label.w = line_width; - label.x = pos_x; - if (!line_count) - label.x += x_offset; - - if (is_selected) - nk_fill_rect(out, label, 0, background); - nk_widget_text(out, label, line, (int)((text + text_len) - line), - &txt, NK_TEXT_LEFT, font); - }} -} -NK_LIB nk_flags -nk_do_edit(nk_flags *state, struct nk_command_buffer *out, - struct nk_rect bounds, nk_flags flags, nk_plugin_filter filter, - struct nk_text_edit *edit, const struct nk_style_edit *style, - struct nk_input *in, const struct nk_user_font *font) -{ - struct nk_rect area; - nk_flags ret = 0; - float row_height; - char prev_state = 0; - char is_hovered = 0; - char select_all = 0; - char cursor_follow = 0; - struct nk_rect old_clip; - struct nk_rect clip; - - NK_ASSERT(state); - NK_ASSERT(out); - NK_ASSERT(style); - if (!state || !out || !style) - return ret; - - /* visible text area calculation */ - area.x = bounds.x + style->padding.x + style->border; - area.y = bounds.y + style->padding.y + style->border; - area.w = bounds.w - (2.0f * style->padding.x + 2 * style->border); - area.h = bounds.h - (2.0f * style->padding.y + 2 * style->border); - if (flags & NK_EDIT_MULTILINE) - area.w = NK_MAX(0, area.w - style->scrollbar_size.x); - row_height = (flags & NK_EDIT_MULTILINE)? font->height + style->row_padding: area.h; - - /* calculate clipping rectangle */ - old_clip = out->clip; - nk_unify(&clip, &old_clip, area.x, area.y, area.x + area.w, area.y + area.h); - - /* update edit state */ - prev_state = (char)edit->active; - is_hovered = (char)nk_input_is_mouse_hovering_rect(in, bounds); - if (in && in->mouse.buttons[NK_BUTTON_LEFT].clicked && in->mouse.buttons[NK_BUTTON_LEFT].down) { - edit->active = NK_INBOX(in->mouse.pos.x, in->mouse.pos.y, - bounds.x, bounds.y, bounds.w, bounds.h); - } - - /* (de)activate text editor */ - if (!prev_state && edit->active) { - const enum nk_text_edit_type type = (flags & NK_EDIT_MULTILINE) ? - NK_TEXT_EDIT_MULTI_LINE: NK_TEXT_EDIT_SINGLE_LINE; - /* keep scroll position when re-activating edit widget */ - struct nk_vec2 oldscrollbar = edit->scrollbar; - nk_textedit_clear_state(edit, type, filter); - edit->scrollbar = oldscrollbar; - if (flags & NK_EDIT_AUTO_SELECT) - select_all = nk_true; - if (flags & NK_EDIT_GOTO_END_ON_ACTIVATE) { - edit->cursor = edit->string.len; - in = 0; - } - } else if (!edit->active) edit->mode = NK_TEXT_EDIT_MODE_VIEW; - if (flags & NK_EDIT_READ_ONLY) - edit->mode = NK_TEXT_EDIT_MODE_VIEW; - else if (flags & NK_EDIT_ALWAYS_INSERT_MODE) - edit->mode = NK_TEXT_EDIT_MODE_INSERT; - - ret = (edit->active) ? NK_EDIT_ACTIVE: NK_EDIT_INACTIVE; - if (prev_state != edit->active) - ret |= (edit->active) ? NK_EDIT_ACTIVATED: NK_EDIT_DEACTIVATED; - - /* handle user input */ - if (edit->active && in) - { - int shift_mod = in->keyboard.keys[NK_KEY_SHIFT].down; - const float mouse_x = (in->mouse.pos.x - area.x) + edit->scrollbar.x; - const float mouse_y = (in->mouse.pos.y - area.y) + edit->scrollbar.y; - - /* mouse click handler */ - is_hovered = (char)nk_input_is_mouse_hovering_rect(in, area); - if (select_all) { - nk_textedit_select_all(edit); - } else if (is_hovered && in->mouse.buttons[NK_BUTTON_LEFT].down && - in->mouse.buttons[NK_BUTTON_LEFT].clicked) { - nk_textedit_click(edit, mouse_x, mouse_y, font, row_height); - } else if (is_hovered && in->mouse.buttons[NK_BUTTON_LEFT].down && - (in->mouse.delta.x != 0.0f || in->mouse.delta.y != 0.0f)) { - nk_textedit_drag(edit, mouse_x, mouse_y, font, row_height); - cursor_follow = nk_true; - } else if (is_hovered && in->mouse.buttons[NK_BUTTON_RIGHT].clicked && - in->mouse.buttons[NK_BUTTON_RIGHT].down) { - nk_textedit_key(edit, NK_KEY_TEXT_WORD_LEFT, nk_false, font, row_height); - nk_textedit_key(edit, NK_KEY_TEXT_WORD_RIGHT, nk_true, font, row_height); - cursor_follow = nk_true; - } - - {int i; /* keyboard input */ - int old_mode = edit->mode; - for (i = 0; i < NK_KEY_MAX; ++i) { - if (i == NK_KEY_ENTER || i == NK_KEY_TAB) continue; /* special case */ - if (nk_input_is_key_pressed(in, (enum nk_keys)i)) { - nk_textedit_key(edit, (enum nk_keys)i, shift_mod, font, row_height); - cursor_follow = nk_true; - } - } - if (old_mode != edit->mode) { - in->keyboard.text_len = 0; - }} - - /* text input */ - edit->filter = filter; - if (in->keyboard.text_len) { - nk_textedit_text(edit, in->keyboard.text, in->keyboard.text_len); - cursor_follow = nk_true; - in->keyboard.text_len = 0; - } - - /* enter key handler */ - if (nk_input_is_key_pressed(in, NK_KEY_ENTER)) { - cursor_follow = nk_true; - if (flags & NK_EDIT_CTRL_ENTER_NEWLINE && shift_mod) - nk_textedit_text(edit, "\n", 1); - else if (flags & NK_EDIT_SIG_ENTER) - ret |= NK_EDIT_COMMITED; - else nk_textedit_text(edit, "\n", 1); - } - - /* cut & copy handler */ - {int copy= nk_input_is_key_pressed(in, NK_KEY_COPY); - int cut = nk_input_is_key_pressed(in, NK_KEY_CUT); - if ((copy || cut) && (flags & NK_EDIT_CLIPBOARD)) - { - int glyph_len; - nk_rune unicode; - const char *text; - int b = edit->select_start; - int e = edit->select_end; - - int begin = NK_MIN(b, e); - int end = NK_MAX(b, e); - text = nk_str_at_const(&edit->string, begin, &unicode, &glyph_len); - if (edit->clip.copy) - edit->clip.copy(edit->clip.userdata, text, end - begin); - if (cut && !(flags & NK_EDIT_READ_ONLY)){ - nk_textedit_cut(edit); - cursor_follow = nk_true; - } - }} - - /* paste handler */ - {int paste = nk_input_is_key_pressed(in, NK_KEY_PASTE); - if (paste && (flags & NK_EDIT_CLIPBOARD) && edit->clip.paste) { - edit->clip.paste(edit->clip.userdata, edit); - cursor_follow = nk_true; - }} - - /* tab handler */ - {int tab = nk_input_is_key_pressed(in, NK_KEY_TAB); - if (tab && (flags & NK_EDIT_ALLOW_TAB)) { - nk_textedit_text(edit, " ", 4); - cursor_follow = nk_true; - }} - } - - /* set widget state */ - if (edit->active) - *state = NK_WIDGET_STATE_ACTIVE; - else nk_widget_state_reset(state); - - if (is_hovered) - *state |= NK_WIDGET_STATE_HOVERED; - - /* DRAW EDIT */ - {const char *text = nk_str_get_const(&edit->string); - int len = nk_str_len_char(&edit->string); - - {/* select background colors/images */ - const struct nk_style_item *background; - if (*state & NK_WIDGET_STATE_ACTIVED) - background = &style->active; - else if (*state & NK_WIDGET_STATE_HOVER) - background = &style->hover; - else background = &style->normal; - - /* draw background frame */ - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(out, bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(out, bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(out, bounds, style->rounding, nk_rgb_factor(background->data.color, style->color_factor)); - nk_stroke_rect(out, bounds, style->rounding, style->border, nk_rgb_factor(style->border_color, style->color_factor)); - break; - }} - - - area.w = NK_MAX(0, area.w - style->cursor_size); - if (edit->active) - { - int total_lines = 1; - struct nk_vec2 text_size = nk_vec2(0,0); - - /* text pointer positions */ - const char *cursor_ptr = 0; - const char *select_begin_ptr = 0; - const char *select_end_ptr = 0; - - /* 2D pixel positions */ - struct nk_vec2 cursor_pos = nk_vec2(0,0); - struct nk_vec2 selection_offset_start = nk_vec2(0,0); - struct nk_vec2 selection_offset_end = nk_vec2(0,0); - - int selection_begin = NK_MIN(edit->select_start, edit->select_end); - int selection_end = NK_MAX(edit->select_start, edit->select_end); - - /* calculate total line count + total space + cursor/selection position */ - float line_width = 0.0f; - if (text && len) - { - /* utf8 encoding */ - float glyph_width; - int glyph_len = 0; - nk_rune unicode = 0; - int text_len = 0; - int glyphs = 0; - int row_begin = 0; - - glyph_len = nk_utf_decode(text, &unicode, len); - glyph_width = font->width(font->userdata, font->height, text, glyph_len); - line_width = 0; - - /* iterate all lines */ - while ((text_len < len) && glyph_len) - { - /* set cursor 2D position and line */ - if (!cursor_ptr && glyphs == edit->cursor) - { - int glyph_offset; - struct nk_vec2 out_offset; - struct nk_vec2 row_size; - const char *remaining; - - /* calculate 2d position */ - cursor_pos.y = (float)(total_lines-1) * row_height; - row_size = nk_text_calculate_text_bounds(font, text+row_begin, - text_len-row_begin, row_height, &remaining, - &out_offset, &glyph_offset, NK_STOP_ON_NEW_LINE); - cursor_pos.x = row_size.x; - cursor_ptr = text + text_len; - } - - /* set start selection 2D position and line */ - if (!select_begin_ptr && edit->select_start != edit->select_end && - glyphs == selection_begin) - { - int glyph_offset; - struct nk_vec2 out_offset; - struct nk_vec2 row_size; - const char *remaining; - - /* calculate 2d position */ - selection_offset_start.y = (float)(NK_MAX(total_lines-1,0)) * row_height; - row_size = nk_text_calculate_text_bounds(font, text+row_begin, - text_len-row_begin, row_height, &remaining, - &out_offset, &glyph_offset, NK_STOP_ON_NEW_LINE); - selection_offset_start.x = row_size.x; - select_begin_ptr = text + text_len; - } - - /* set end selection 2D position and line */ - if (!select_end_ptr && edit->select_start != edit->select_end && - glyphs == selection_end) - { - int glyph_offset; - struct nk_vec2 out_offset; - struct nk_vec2 row_size; - const char *remaining; - - /* calculate 2d position */ - selection_offset_end.y = (float)(total_lines-1) * row_height; - row_size = nk_text_calculate_text_bounds(font, text+row_begin, - text_len-row_begin, row_height, &remaining, - &out_offset, &glyph_offset, NK_STOP_ON_NEW_LINE); - selection_offset_end.x = row_size.x; - select_end_ptr = text + text_len; - } - if (unicode == '\n') { - text_size.x = NK_MAX(text_size.x, line_width); - total_lines++; - line_width = 0; - text_len++; - glyphs++; - row_begin = text_len; - glyph_len = nk_utf_decode(text + text_len, &unicode, len-text_len); - glyph_width = font->width(font->userdata, font->height, text+text_len, glyph_len); - continue; - } - - glyphs++; - text_len += glyph_len; - line_width += (float)glyph_width; - - glyph_len = nk_utf_decode(text + text_len, &unicode, len-text_len); - glyph_width = font->width(font->userdata, font->height, - text+text_len, glyph_len); - continue; - } - text_size.y = (float)total_lines * row_height; - - /* handle case when cursor is at end of text buffer */ - if (!cursor_ptr && edit->cursor == edit->string.len) { - cursor_pos.x = line_width; - cursor_pos.y = text_size.y - row_height; - } - } - { - /* scrollbar */ - if (cursor_follow) - { - /* update scrollbar to follow cursor */ - if (!(flags & NK_EDIT_NO_HORIZONTAL_SCROLL)) { - /* horizontal scroll */ - const float scroll_increment = area.w * 0.25f; - if (cursor_pos.x < edit->scrollbar.x) - edit->scrollbar.x = (float)(int)NK_MAX(0.0f, cursor_pos.x - scroll_increment); - if (cursor_pos.x >= edit->scrollbar.x + area.w) - edit->scrollbar.x = (float)(int)NK_MAX(0.0f, cursor_pos.x - area.w + scroll_increment); - } else edit->scrollbar.x = 0; - - if (flags & NK_EDIT_MULTILINE) { - /* vertical scroll */ - if (cursor_pos.y < edit->scrollbar.y) - edit->scrollbar.y = NK_MAX(0.0f, cursor_pos.y - row_height); - if (cursor_pos.y >= edit->scrollbar.y + row_height) - edit->scrollbar.y = edit->scrollbar.y + row_height; - } else edit->scrollbar.y = 0; - } - - /* scrollbar widget */ - if (flags & NK_EDIT_MULTILINE) - { - nk_flags ws; - struct nk_rect scroll; - float scroll_target; - float scroll_offset; - float scroll_step; - float scroll_inc; - - scroll = area; - scroll.x = (bounds.x + bounds.w - style->border) - style->scrollbar_size.x; - scroll.w = style->scrollbar_size.x; - - scroll_offset = edit->scrollbar.y; - scroll_step = scroll.h * 0.10f; - scroll_inc = scroll.h * 0.01f; - scroll_target = text_size.y; - edit->scrollbar.y = nk_do_scrollbarv(&ws, out, scroll, 0, - scroll_offset, scroll_target, scroll_step, scroll_inc, - &style->scrollbar, in, font); - } - } - - /* draw text */ - {struct nk_color background_color; - struct nk_color text_color; - struct nk_color sel_background_color; - struct nk_color sel_text_color; - struct nk_color cursor_color; - struct nk_color cursor_text_color; - const struct nk_style_item *background; - nk_push_scissor(out, clip); - - /* select correct colors to draw */ - if (*state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - text_color = style->text_active; - sel_text_color = style->selected_text_hover; - sel_background_color = style->selected_hover; - cursor_color = style->cursor_hover; - cursor_text_color = style->cursor_text_hover; - } else if (*state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - text_color = style->text_hover; - sel_text_color = style->selected_text_hover; - sel_background_color = style->selected_hover; - cursor_text_color = style->cursor_text_hover; - cursor_color = style->cursor_hover; - } else { - background = &style->normal; - text_color = style->text_normal; - sel_text_color = style->selected_text_normal; - sel_background_color = style->selected_normal; - cursor_color = style->cursor_normal; - cursor_text_color = style->cursor_text_normal; - } - if (background->type == NK_STYLE_ITEM_IMAGE) - background_color = nk_rgba(0,0,0,0); - else - background_color = background->data.color; - - cursor_color = nk_rgb_factor(cursor_color, style->color_factor); - cursor_text_color = nk_rgb_factor(cursor_text_color, style->color_factor); - - if (edit->select_start == edit->select_end) { - /* no selection so just draw the complete text */ - const char *begin = nk_str_get_const(&edit->string); - int l = nk_str_len_char(&edit->string); - nk_edit_draw_text(out, style, area.x - edit->scrollbar.x, - area.y - edit->scrollbar.y, 0, begin, l, row_height, font, - background_color, text_color, nk_false); - } else { - /* edit has selection so draw 1-3 text chunks */ - if (edit->select_start != edit->select_end && selection_begin > 0){ - /* draw unselected text before selection */ - const char *begin = nk_str_get_const(&edit->string); - NK_ASSERT(select_begin_ptr); - nk_edit_draw_text(out, style, area.x - edit->scrollbar.x, - area.y - edit->scrollbar.y, 0, begin, (int)(select_begin_ptr - begin), - row_height, font, background_color, text_color, nk_false); - } - if (edit->select_start != edit->select_end) { - /* draw selected text */ - NK_ASSERT(select_begin_ptr); - if (!select_end_ptr) { - const char *begin = nk_str_get_const(&edit->string); - select_end_ptr = begin + nk_str_len_char(&edit->string); - } - nk_edit_draw_text(out, style, - area.x - edit->scrollbar.x, - area.y + selection_offset_start.y - edit->scrollbar.y, - selection_offset_start.x, - select_begin_ptr, (int)(select_end_ptr - select_begin_ptr), - row_height, font, sel_background_color, sel_text_color, nk_true); - } - if ((edit->select_start != edit->select_end && - selection_end < edit->string.len)) - { - /* draw unselected text after selected text */ - const char *begin = select_end_ptr; - const char *end = nk_str_get_const(&edit->string) + - nk_str_len_char(&edit->string); - NK_ASSERT(select_end_ptr); - nk_edit_draw_text(out, style, - area.x - edit->scrollbar.x, - area.y + selection_offset_end.y - edit->scrollbar.y, - selection_offset_end.x, - begin, (int)(end - begin), row_height, font, - background_color, text_color, nk_true); - } - } - - /* cursor */ - if (edit->select_start == edit->select_end) - { - if (edit->cursor >= nk_str_len(&edit->string) || - (cursor_ptr && *cursor_ptr == '\n')) { - /* draw cursor at end of line */ - struct nk_rect cursor; - cursor.w = style->cursor_size; - cursor.h = font->height; - cursor.x = area.x + cursor_pos.x - edit->scrollbar.x; - cursor.y = area.y + cursor_pos.y + row_height/2.0f - cursor.h/2.0f; - cursor.y -= edit->scrollbar.y; - nk_fill_rect(out, cursor, 0, cursor_color); - } else { - /* draw cursor inside text */ - int glyph_len; - struct nk_rect label; - struct nk_text txt; - - nk_rune unicode; - NK_ASSERT(cursor_ptr); - glyph_len = nk_utf_decode(cursor_ptr, &unicode, 4); - - label.x = area.x + cursor_pos.x - edit->scrollbar.x; - label.y = area.y + cursor_pos.y - edit->scrollbar.y; - label.w = font->width(font->userdata, font->height, cursor_ptr, glyph_len); - label.h = row_height; - - txt.padding = nk_vec2(0,0); - txt.background = cursor_color;; - txt.text = cursor_text_color; - nk_fill_rect(out, label, 0, cursor_color); - nk_widget_text(out, label, cursor_ptr, glyph_len, &txt, NK_TEXT_LEFT, font); - } - }} - } else { - /* not active so just draw text */ - int l = nk_str_len_char(&edit->string); - const char *begin = nk_str_get_const(&edit->string); - - const struct nk_style_item *background; - struct nk_color background_color; - struct nk_color text_color; - nk_push_scissor(out, clip); - if (*state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - text_color = style->text_active; - } else if (*state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - text_color = style->text_hover; - } else { - background = &style->normal; - text_color = style->text_normal; - } - if (background->type == NK_STYLE_ITEM_IMAGE) - background_color = nk_rgba(0,0,0,0); - else - background_color = background->data.color; - - background_color = nk_rgb_factor(background_color, style->color_factor); - text_color = nk_rgb_factor(text_color, style->color_factor); - - nk_edit_draw_text(out, style, area.x - edit->scrollbar.x, - area.y - edit->scrollbar.y, 0, begin, l, row_height, font, - background_color, text_color, nk_false); - } - nk_push_scissor(out, old_clip);} - return ret; -} -NK_API void -nk_edit_focus(struct nk_context *ctx, nk_flags flags) -{ - nk_hash hash; - struct nk_window *win; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return; - - win = ctx->current; - hash = win->edit.seq; - win->edit.active = nk_true; - win->edit.name = hash; - if (flags & NK_EDIT_ALWAYS_INSERT_MODE) - win->edit.mode = NK_TEXT_EDIT_MODE_INSERT; -} -NK_API void -nk_edit_unfocus(struct nk_context *ctx) -{ - struct nk_window *win; - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return; - - win = ctx->current; - win->edit.active = nk_false; - win->edit.name = 0; -} -NK_API nk_flags -nk_edit_string(struct nk_context *ctx, nk_flags flags, - char *memory, int *len, int max, nk_plugin_filter filter) -{ - nk_hash hash; - nk_flags state; - struct nk_text_edit *edit; - struct nk_window *win; - - NK_ASSERT(ctx); - NK_ASSERT(memory); - NK_ASSERT(len); - if (!ctx || !memory || !len) - return 0; - - filter = (!filter) ? nk_filter_default: filter; - win = ctx->current; - hash = win->edit.seq; - edit = &ctx->text_edit; - nk_textedit_clear_state(&ctx->text_edit, (flags & NK_EDIT_MULTILINE)? - NK_TEXT_EDIT_MULTI_LINE: NK_TEXT_EDIT_SINGLE_LINE, filter); - - if (win->edit.active && hash == win->edit.name) { - if (flags & NK_EDIT_NO_CURSOR) - edit->cursor = nk_utf_len(memory, *len); - else edit->cursor = win->edit.cursor; - if (!(flags & NK_EDIT_SELECTABLE)) { - edit->select_start = win->edit.cursor; - edit->select_end = win->edit.cursor; - } else { - edit->select_start = win->edit.sel_start; - edit->select_end = win->edit.sel_end; - } - edit->mode = win->edit.mode; - edit->scrollbar.x = (float)win->edit.scrollbar.x; - edit->scrollbar.y = (float)win->edit.scrollbar.y; - edit->active = nk_true; - } else edit->active = nk_false; - - max = NK_MAX(1, max); - *len = NK_MIN(*len, max-1); - nk_str_init_fixed(&edit->string, memory, (nk_size)max); - edit->string.buffer.allocated = (nk_size)*len; - edit->string.len = nk_utf_len(memory, *len); - state = nk_edit_buffer(ctx, flags, edit, filter); - *len = (int)edit->string.buffer.allocated; - - if (edit->active) { - win->edit.cursor = edit->cursor; - win->edit.sel_start = edit->select_start; - win->edit.sel_end = edit->select_end; - win->edit.mode = edit->mode; - win->edit.scrollbar.x = (nk_uint)edit->scrollbar.x; - win->edit.scrollbar.y = (nk_uint)edit->scrollbar.y; - } return state; -} -NK_API nk_flags -nk_edit_buffer(struct nk_context *ctx, nk_flags flags, - struct nk_text_edit *edit, nk_plugin_filter filter) -{ - struct nk_window *win; - struct nk_style *style; - struct nk_input *in; - - enum nk_widget_layout_states state; - struct nk_rect bounds; - - nk_flags ret_flags = 0; - unsigned char prev_state; - nk_hash hash; - - /* make sure correct values */ - NK_ASSERT(ctx); - NK_ASSERT(edit); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - state = nk_widget(&bounds, ctx); - if (!state) return state; - else if (state == NK_WIDGET_DISABLED) - flags |= NK_EDIT_READ_ONLY; - in = (win->layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - - /* check if edit is currently hot item */ - hash = win->edit.seq++; - if (win->edit.active && hash == win->edit.name) { - if (flags & NK_EDIT_NO_CURSOR) - edit->cursor = edit->string.len; - if (!(flags & NK_EDIT_SELECTABLE)) { - edit->select_start = edit->cursor; - edit->select_end = edit->cursor; - } - if (flags & NK_EDIT_CLIPBOARD) - edit->clip = ctx->clip; - edit->active = (unsigned char)win->edit.active; - } else edit->active = nk_false; - edit->mode = win->edit.mode; - - filter = (!filter) ? nk_filter_default: filter; - prev_state = (unsigned char)edit->active; - in = (flags & NK_EDIT_READ_ONLY) ? 0: in; - ret_flags = nk_do_edit(&ctx->last_widget_state, &win->buffer, bounds, flags, - filter, edit, &style->edit, in, style->font); - - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - ctx->style.cursor_active = ctx->style.cursors[NK_CURSOR_TEXT]; - if (edit->active && prev_state != edit->active) { - /* current edit is now hot */ - win->edit.active = nk_true; - win->edit.name = hash; - } else if (prev_state && !edit->active) { - /* current edit is now cold */ - win->edit.active = nk_false; - } return ret_flags; -} -NK_API nk_flags -nk_edit_string_zero_terminated(struct nk_context *ctx, nk_flags flags, - char *buffer, int max, nk_plugin_filter filter) -{ - nk_flags result; - int len = nk_strlen(buffer); - result = nk_edit_string(ctx, flags, buffer, &len, max, filter); - buffer[NK_MIN(NK_MAX(max-1,0), len)] = '\0'; - return result; -} - - - - - -/* =============================================================== - * - * PROPERTY - * - * ===============================================================*/ -NK_LIB void -nk_drag_behavior(nk_flags *state, const struct nk_input *in, - struct nk_rect drag, struct nk_property_variant *variant, - float inc_per_pixel) -{ - int left_mouse_down = in && in->mouse.buttons[NK_BUTTON_LEFT].down; - int left_mouse_click_in_cursor = in && - nk_input_has_mouse_click_down_in_rect(in, NK_BUTTON_LEFT, drag, nk_true); - - nk_widget_state_reset(state); - if (nk_input_is_mouse_hovering_rect(in, drag)) - *state = NK_WIDGET_STATE_HOVERED; - - if (left_mouse_down && left_mouse_click_in_cursor) { - float delta, pixels; - pixels = in->mouse.delta.x; - delta = pixels * inc_per_pixel; - switch (variant->kind) { - default: break; - case NK_PROPERTY_INT: - variant->value.i = variant->value.i + (int)delta; - variant->value.i = NK_CLAMP(variant->min_value.i, variant->value.i, variant->max_value.i); - break; - case NK_PROPERTY_FLOAT: - variant->value.f = variant->value.f + (float)delta; - variant->value.f = NK_CLAMP(variant->min_value.f, variant->value.f, variant->max_value.f); - break; - case NK_PROPERTY_DOUBLE: - variant->value.d = variant->value.d + (double)delta; - variant->value.d = NK_CLAMP(variant->min_value.d, variant->value.d, variant->max_value.d); - break; - } - *state = NK_WIDGET_STATE_ACTIVE; - } - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(in, drag)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, drag)) - *state |= NK_WIDGET_STATE_LEFT; -} -NK_LIB void -nk_property_behavior(nk_flags *ws, const struct nk_input *in, - struct nk_rect property, struct nk_rect label, struct nk_rect edit, - struct nk_rect empty, int *state, struct nk_property_variant *variant, - float inc_per_pixel) -{ - nk_widget_state_reset(ws); - if (in && *state == NK_PROPERTY_DEFAULT) { - if (nk_button_behavior(ws, edit, in, NK_BUTTON_DEFAULT)) - *state = NK_PROPERTY_EDIT; - else if (nk_input_is_mouse_click_down_in_rect(in, NK_BUTTON_LEFT, label, nk_true)) - *state = NK_PROPERTY_DRAG; - else if (nk_input_is_mouse_click_down_in_rect(in, NK_BUTTON_LEFT, empty, nk_true)) - *state = NK_PROPERTY_DRAG; - } - if (*state == NK_PROPERTY_DRAG) { - nk_drag_behavior(ws, in, property, variant, inc_per_pixel); - if (!(*ws & NK_WIDGET_STATE_ACTIVED)) *state = NK_PROPERTY_DEFAULT; - } -} -NK_LIB void -nk_draw_property(struct nk_command_buffer *out, const struct nk_style_property *style, - const struct nk_rect *bounds, const struct nk_rect *label, nk_flags state, - const char *name, int len, const struct nk_user_font *font) -{ - struct nk_text text; - const struct nk_style_item *background; - - /* select correct background and text color */ - if (state & NK_WIDGET_STATE_ACTIVED) { - background = &style->active; - text.text = style->label_active; - } else if (state & NK_WIDGET_STATE_HOVER) { - background = &style->hover; - text.text = style->label_hover; - } else { - background = &style->normal; - text.text = style->label_normal; - } - - text.text = nk_rgb_factor(text.text, style->color_factor); - - /* draw background */ - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_image(out, *bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(out, *bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(out, *bounds, style->rounding, nk_rgb_factor(background->data.color, style->color_factor)); - nk_stroke_rect(out, *bounds, style->rounding, style->border, nk_rgb_factor(background->data.color, style->color_factor)); - break; - } - - /* draw label */ - text.padding = nk_vec2(0,0); - nk_widget_text(out, *label, name, len, &text, NK_TEXT_CENTERED, font); -} -NK_LIB void -nk_do_property(nk_flags *ws, - struct nk_command_buffer *out, struct nk_rect property, - const char *name, struct nk_property_variant *variant, - float inc_per_pixel, char *buffer, int *len, - int *state, int *cursor, int *select_begin, int *select_end, - const struct nk_style_property *style, - enum nk_property_filter filter, struct nk_input *in, - const struct nk_user_font *font, struct nk_text_edit *text_edit, - enum nk_button_behavior behavior) -{ - const nk_plugin_filter filters[] = { - nk_filter_decimal, - nk_filter_float - }; - nk_bool active, old; - int num_len = 0, name_len; - char string[NK_MAX_NUMBER_BUFFER]; - float size; - - char *dst = 0; - int *length; - - struct nk_rect left; - struct nk_rect right; - struct nk_rect label; - struct nk_rect edit; - struct nk_rect empty; - - /* left decrement button */ - left.h = font->height/2; - left.w = left.h; - left.x = property.x + style->border + style->padding.x; - left.y = property.y + style->border + property.h/2.0f - left.h/2; - - /* text label */ - name_len = nk_strlen(name); - size = font->width(font->userdata, font->height, name, name_len); - label.x = left.x + left.w + style->padding.x; - label.w = (float)size + 2 * style->padding.x; - label.y = property.y + style->border + style->padding.y; - label.h = property.h - (2 * style->border + 2 * style->padding.y); - - /* right increment button */ - right.y = left.y; - right.w = left.w; - right.h = left.h; - right.x = property.x + property.w - (right.w + style->padding.x); - - /* edit */ - if (*state == NK_PROPERTY_EDIT) { - size = font->width(font->userdata, font->height, buffer, *len); - size += style->edit.cursor_size; - length = len; - dst = buffer; - } else { - switch (variant->kind) { - default: break; - case NK_PROPERTY_INT: - nk_itoa(string, variant->value.i); - num_len = nk_strlen(string); - break; - case NK_PROPERTY_FLOAT: - NK_DTOA(string, (double)variant->value.f); - num_len = nk_string_float_limit(string, NK_MAX_FLOAT_PRECISION); - break; - case NK_PROPERTY_DOUBLE: - NK_DTOA(string, variant->value.d); - num_len = nk_string_float_limit(string, NK_MAX_FLOAT_PRECISION); - break; - } - size = font->width(font->userdata, font->height, string, num_len); - dst = string; - length = &num_len; - } - - edit.w = (float)size + 2 * style->padding.x; - edit.w = NK_MIN(edit.w, right.x - (label.x + label.w)); - edit.x = right.x - (edit.w + style->padding.x); - edit.y = property.y + style->border; - edit.h = property.h - (2 * style->border); - - /* empty left space activator */ - empty.w = edit.x - (label.x + label.w); - empty.x = label.x + label.w; - empty.y = property.y; - empty.h = property.h; - - /* update property */ - old = (*state == NK_PROPERTY_EDIT); - nk_property_behavior(ws, in, property, label, edit, empty, state, variant, inc_per_pixel); - - /* draw property */ - if (style->draw_begin) style->draw_begin(out, style->userdata); - nk_draw_property(out, style, &property, &label, *ws, name, name_len, font); - if (style->draw_end) style->draw_end(out, style->userdata); - - /* execute right button */ - if (nk_do_button_symbol(ws, out, left, style->sym_left, behavior, &style->dec_button, in, font)) { - switch (variant->kind) { - default: break; - case NK_PROPERTY_INT: - variant->value.i = NK_CLAMP(variant->min_value.i, variant->value.i - variant->step.i, variant->max_value.i); break; - case NK_PROPERTY_FLOAT: - variant->value.f = NK_CLAMP(variant->min_value.f, variant->value.f - variant->step.f, variant->max_value.f); break; - case NK_PROPERTY_DOUBLE: - variant->value.d = NK_CLAMP(variant->min_value.d, variant->value.d - variant->step.d, variant->max_value.d); break; - } - } - /* execute left button */ - if (nk_do_button_symbol(ws, out, right, style->sym_right, behavior, &style->inc_button, in, font)) { - switch (variant->kind) { - default: break; - case NK_PROPERTY_INT: - variant->value.i = NK_CLAMP(variant->min_value.i, variant->value.i + variant->step.i, variant->max_value.i); break; - case NK_PROPERTY_FLOAT: - variant->value.f = NK_CLAMP(variant->min_value.f, variant->value.f + variant->step.f, variant->max_value.f); break; - case NK_PROPERTY_DOUBLE: - variant->value.d = NK_CLAMP(variant->min_value.d, variant->value.d + variant->step.d, variant->max_value.d); break; - } - } - if (old != NK_PROPERTY_EDIT && (*state == NK_PROPERTY_EDIT)) { - /* property has been activated so setup buffer */ - NK_MEMCPY(buffer, dst, (nk_size)*length); - *cursor = nk_utf_len(buffer, *length); - *len = *length; - length = len; - dst = buffer; - active = 0; - } else active = (*state == NK_PROPERTY_EDIT); - - /* execute and run text edit field */ - nk_textedit_clear_state(text_edit, NK_TEXT_EDIT_SINGLE_LINE, filters[filter]); - text_edit->active = (unsigned char)active; - text_edit->string.len = *length; - text_edit->cursor = NK_CLAMP(0, *cursor, *length); - text_edit->select_start = NK_CLAMP(0,*select_begin, *length); - text_edit->select_end = NK_CLAMP(0,*select_end, *length); - text_edit->string.buffer.allocated = (nk_size)*length; - text_edit->string.buffer.memory.size = NK_MAX_NUMBER_BUFFER; - text_edit->string.buffer.memory.ptr = dst; - text_edit->string.buffer.size = NK_MAX_NUMBER_BUFFER; - text_edit->mode = NK_TEXT_EDIT_MODE_INSERT; - nk_do_edit(ws, out, edit, NK_EDIT_FIELD|NK_EDIT_AUTO_SELECT, - filters[filter], text_edit, &style->edit, (*state == NK_PROPERTY_EDIT) ? in: 0, font); - - *length = text_edit->string.len; - *cursor = text_edit->cursor; - *select_begin = text_edit->select_start; - *select_end = text_edit->select_end; - if (text_edit->active && nk_input_is_key_pressed(in, NK_KEY_ENTER)) - text_edit->active = nk_false; - - if (active && !text_edit->active) { - /* property is now not active so convert edit text to value*/ - *state = NK_PROPERTY_DEFAULT; - buffer[*len] = '\0'; - switch (variant->kind) { - default: break; - case NK_PROPERTY_INT: - variant->value.i = nk_strtoi(buffer, 0); - variant->value.i = NK_CLAMP(variant->min_value.i, variant->value.i, variant->max_value.i); - break; - case NK_PROPERTY_FLOAT: - nk_string_float_limit(buffer, NK_MAX_FLOAT_PRECISION); - variant->value.f = nk_strtof(buffer, 0); - variant->value.f = NK_CLAMP(variant->min_value.f, variant->value.f, variant->max_value.f); - break; - case NK_PROPERTY_DOUBLE: - nk_string_float_limit(buffer, NK_MAX_FLOAT_PRECISION); - variant->value.d = nk_strtod(buffer, 0); - variant->value.d = NK_CLAMP(variant->min_value.d, variant->value.d, variant->max_value.d); - break; - } - } -} -NK_LIB struct nk_property_variant -nk_property_variant_int(int value, int min_value, int max_value, int step) -{ - struct nk_property_variant result; - result.kind = NK_PROPERTY_INT; - result.value.i = value; - result.min_value.i = min_value; - result.max_value.i = max_value; - result.step.i = step; - return result; -} -NK_LIB struct nk_property_variant -nk_property_variant_float(float value, float min_value, float max_value, float step) -{ - struct nk_property_variant result; - result.kind = NK_PROPERTY_FLOAT; - result.value.f = value; - result.min_value.f = min_value; - result.max_value.f = max_value; - result.step.f = step; - return result; -} -NK_LIB struct nk_property_variant -nk_property_variant_double(double value, double min_value, double max_value, - double step) -{ - struct nk_property_variant result; - result.kind = NK_PROPERTY_DOUBLE; - result.value.d = value; - result.min_value.d = min_value; - result.max_value.d = max_value; - result.step.d = step; - return result; -} -NK_LIB void -nk_property(struct nk_context *ctx, const char *name, struct nk_property_variant *variant, - float inc_per_pixel, const enum nk_property_filter filter) -{ - struct nk_window *win; - struct nk_panel *layout; - struct nk_input *in; - const struct nk_style *style; - - struct nk_rect bounds; - enum nk_widget_layout_states s; - - int *state = 0; - nk_hash hash = 0; - char *buffer = 0; - int *len = 0; - int *cursor = 0; - int *select_begin = 0; - int *select_end = 0; - int old_state; - - char dummy_buffer[NK_MAX_NUMBER_BUFFER]; - int dummy_state = NK_PROPERTY_DEFAULT; - int dummy_length = 0; - int dummy_cursor = 0; - int dummy_select_begin = 0; - int dummy_select_end = 0; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return; - - win = ctx->current; - layout = win->layout; - style = &ctx->style; - s = nk_widget(&bounds, ctx); - if (!s) return; - - /* calculate hash from name */ - if (name[0] == '#') { - hash = nk_murmur_hash(name, (int)nk_strlen(name), win->property.seq++); - name++; /* special number hash */ - } else hash = nk_murmur_hash(name, (int)nk_strlen(name), 42); - - /* check if property is currently hot item */ - if (win->property.active && hash == win->property.name) { - buffer = win->property.buffer; - len = &win->property.length; - cursor = &win->property.cursor; - state = &win->property.state; - select_begin = &win->property.select_start; - select_end = &win->property.select_end; - } else { - buffer = dummy_buffer; - len = &dummy_length; - cursor = &dummy_cursor; - state = &dummy_state; - select_begin = &dummy_select_begin; - select_end = &dummy_select_end; - } - - /* execute property widget */ - old_state = *state; - ctx->text_edit.clip = ctx->clip; - in = ((s == NK_WIDGET_ROM && !win->property.active) || - layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED) ? 0 : &ctx->input; - nk_do_property(&ctx->last_widget_state, &win->buffer, bounds, name, - variant, inc_per_pixel, buffer, len, state, cursor, select_begin, - select_end, &style->property, filter, in, style->font, &ctx->text_edit, - ctx->button_behavior); - - if (in && *state != NK_PROPERTY_DEFAULT && !win->property.active) { - /* current property is now hot */ - win->property.active = 1; - NK_MEMCPY(win->property.buffer, buffer, (nk_size)*len); - win->property.length = *len; - win->property.cursor = *cursor; - win->property.state = *state; - win->property.name = hash; - win->property.select_start = *select_begin; - win->property.select_end = *select_end; - if (*state == NK_PROPERTY_DRAG) { - ctx->input.mouse.grab = nk_true; - ctx->input.mouse.grabbed = nk_true; - } - } - /* check if previously active property is now inactive */ - if (*state == NK_PROPERTY_DEFAULT && old_state != NK_PROPERTY_DEFAULT) { - if (old_state == NK_PROPERTY_DRAG) { - ctx->input.mouse.grab = nk_false; - ctx->input.mouse.grabbed = nk_false; - ctx->input.mouse.ungrab = nk_true; - } - win->property.select_start = 0; - win->property.select_end = 0; - win->property.active = 0; - } -} -NK_API void -nk_property_int(struct nk_context *ctx, const char *name, - int min, int *val, int max, int step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - NK_ASSERT(val); - - if (!ctx || !ctx->current || !name || !val) return; - variant = nk_property_variant_int(*val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_INT); - *val = variant.value.i; -} -NK_API void -nk_property_float(struct nk_context *ctx, const char *name, - float min, float *val, float max, float step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - NK_ASSERT(val); - - if (!ctx || !ctx->current || !name || !val) return; - variant = nk_property_variant_float(*val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_FLOAT); - *val = variant.value.f; -} -NK_API void -nk_property_double(struct nk_context *ctx, const char *name, - double min, double *val, double max, double step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - NK_ASSERT(val); - - if (!ctx || !ctx->current || !name || !val) return; - variant = nk_property_variant_double(*val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_FLOAT); - *val = variant.value.d; -} -NK_API int -nk_propertyi(struct nk_context *ctx, const char *name, int min, int val, - int max, int step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - - if (!ctx || !ctx->current || !name) return val; - variant = nk_property_variant_int(val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_INT); - val = variant.value.i; - return val; -} -NK_API float -nk_propertyf(struct nk_context *ctx, const char *name, float min, - float val, float max, float step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - - if (!ctx || !ctx->current || !name) return val; - variant = nk_property_variant_float(val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_FLOAT); - val = variant.value.f; - return val; -} -NK_API double -nk_propertyd(struct nk_context *ctx, const char *name, double min, - double val, double max, double step, float inc_per_pixel) -{ - struct nk_property_variant variant; - NK_ASSERT(ctx); - NK_ASSERT(name); - - if (!ctx || !ctx->current || !name) return val; - variant = nk_property_variant_double(val, min, max, step); - nk_property(ctx, name, &variant, inc_per_pixel, NK_FILTER_FLOAT); - val = variant.value.d; - return val; -} - - - - - -/* ============================================================== - * - * CHART - * - * ===============================================================*/ -NK_API nk_bool -nk_chart_begin_colored(struct nk_context *ctx, enum nk_chart_type type, - struct nk_color color, struct nk_color highlight, - int count, float min_value, float max_value) -{ - struct nk_window *win; - struct nk_chart *chart; - const struct nk_style *config; - const struct nk_style_chart *style; - - const struct nk_style_item *background; - struct nk_rect bounds = {0, 0, 0, 0}; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - - if (!ctx || !ctx->current || !ctx->current->layout) return 0; - if (!nk_widget(&bounds, ctx)) { - chart = &ctx->current->layout->chart; - nk_zero(chart, sizeof(*chart)); - return 0; - } - - win = ctx->current; - config = &ctx->style; - chart = &win->layout->chart; - style = &config->chart; - - /* setup basic generic chart */ - nk_zero(chart, sizeof(*chart)); - chart->x = bounds.x + style->padding.x; - chart->y = bounds.y + style->padding.y; - chart->w = bounds.w - 2 * style->padding.x; - chart->h = bounds.h - 2 * style->padding.y; - chart->w = NK_MAX(chart->w, 2 * style->padding.x); - chart->h = NK_MAX(chart->h, 2 * style->padding.y); - - /* add first slot into chart */ - {struct nk_chart_slot *slot = &chart->slots[chart->slot++]; - slot->type = type; - slot->count = count; - slot->color = nk_rgb_factor(color, style->color_factor); - slot->highlight = highlight; - slot->min = NK_MIN(min_value, max_value); - slot->max = NK_MAX(min_value, max_value); - slot->range = slot->max - slot->min;} - - /* draw chart background */ - background = &style->background; - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(&win->buffer, bounds, &background->data.image, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(&win->buffer, bounds, &background->data.slice, nk_rgb_factor(nk_white, style->color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(&win->buffer, bounds, style->rounding, nk_rgb_factor(style->border_color, style->color_factor)); - nk_fill_rect(&win->buffer, nk_shrink_rect(bounds, style->border), - style->rounding, nk_rgb_factor(style->background.data.color, style->color_factor)); - break; - } - return 1; -} -NK_API nk_bool -nk_chart_begin(struct nk_context *ctx, const enum nk_chart_type type, - int count, float min_value, float max_value) -{ - return nk_chart_begin_colored(ctx, type, ctx->style.chart.color, - ctx->style.chart.selected_color, count, min_value, max_value); -} -NK_API void -nk_chart_add_slot_colored(struct nk_context *ctx, const enum nk_chart_type type, - struct nk_color color, struct nk_color highlight, - int count, float min_value, float max_value) -{ - const struct nk_style_chart* style; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - NK_ASSERT(ctx->current->layout->chart.slot < NK_CHART_MAX_SLOT); - if (!ctx || !ctx->current || !ctx->current->layout) return; - if (ctx->current->layout->chart.slot >= NK_CHART_MAX_SLOT) return; - - style = &ctx->style.chart; - - /* add another slot into the graph */ - {struct nk_chart *chart = &ctx->current->layout->chart; - struct nk_chart_slot *slot = &chart->slots[chart->slot++]; - slot->type = type; - slot->count = count; - slot->color = nk_rgb_factor(color, style->color_factor); - slot->highlight = highlight; - slot->min = NK_MIN(min_value, max_value); - slot->max = NK_MAX(min_value, max_value); - slot->range = slot->max - slot->min;} -} -NK_API void -nk_chart_add_slot(struct nk_context *ctx, const enum nk_chart_type type, - int count, float min_value, float max_value) -{ - nk_chart_add_slot_colored(ctx, type, ctx->style.chart.color, - ctx->style.chart.selected_color, count, min_value, max_value); -} -NK_INTERN nk_flags -nk_chart_push_line(struct nk_context *ctx, struct nk_window *win, - struct nk_chart *g, float value, int slot) -{ - struct nk_panel *layout = win->layout; - const struct nk_input *i = ctx->current->widgets_disabled ? 0 : &ctx->input; - struct nk_command_buffer *out = &win->buffer; - - nk_flags ret = 0; - struct nk_vec2 cur; - struct nk_rect bounds; - struct nk_color color; - float step; - float range; - float ratio; - - NK_ASSERT(slot >= 0 && slot < NK_CHART_MAX_SLOT); - step = g->w / (float)g->slots[slot].count; - range = g->slots[slot].max - g->slots[slot].min; - ratio = (value - g->slots[slot].min) / range; - - if (g->slots[slot].index == 0) { - /* first data point does not have a connection */ - g->slots[slot].last.x = g->x; - g->slots[slot].last.y = (g->y + g->h) - ratio * (float)g->h; - - bounds.x = g->slots[slot].last.x - 2; - bounds.y = g->slots[slot].last.y - 2; - bounds.w = bounds.h = 4; - - color = g->slots[slot].color; - if (!(layout->flags & NK_WINDOW_ROM) && i && - NK_INBOX(i->mouse.pos.x,i->mouse.pos.y, g->slots[slot].last.x-3, g->slots[slot].last.y-3, 6, 6)){ - ret = nk_input_is_mouse_hovering_rect(i, bounds) ? NK_CHART_HOVERING : 0; - ret |= (i->mouse.buttons[NK_BUTTON_LEFT].down && - i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0; - color = g->slots[slot].highlight; - } - nk_fill_rect(out, bounds, 0, color); - g->slots[slot].index += 1; - return ret; - } - - /* draw a line between the last data point and the new one */ - color = g->slots[slot].color; - cur.x = g->x + (float)(step * (float)g->slots[slot].index); - cur.y = (g->y + g->h) - (ratio * (float)g->h); - nk_stroke_line(out, g->slots[slot].last.x, g->slots[slot].last.y, cur.x, cur.y, 1.0f, color); - - bounds.x = cur.x - 3; - bounds.y = cur.y - 3; - bounds.w = bounds.h = 6; - - /* user selection of current data point */ - if (!(layout->flags & NK_WINDOW_ROM)) { - if (nk_input_is_mouse_hovering_rect(i, bounds)) { - ret = NK_CHART_HOVERING; - ret |= (!i->mouse.buttons[NK_BUTTON_LEFT].down && - i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0; - color = g->slots[slot].highlight; - } - } - nk_fill_rect(out, nk_rect(cur.x - 2, cur.y - 2, 4, 4), 0, color); - - /* save current data point position */ - g->slots[slot].last.x = cur.x; - g->slots[slot].last.y = cur.y; - g->slots[slot].index += 1; - return ret; -} -NK_INTERN nk_flags -nk_chart_push_column(const struct nk_context *ctx, struct nk_window *win, - struct nk_chart *chart, float value, int slot) -{ - struct nk_command_buffer *out = &win->buffer; - const struct nk_input *in = ctx->current->widgets_disabled ? 0 : &ctx->input; - struct nk_panel *layout = win->layout; - - float ratio; - nk_flags ret = 0; - struct nk_color color; - struct nk_rect item = {0,0,0,0}; - - NK_ASSERT(slot >= 0 && slot < NK_CHART_MAX_SLOT); - if (chart->slots[slot].index >= chart->slots[slot].count) - return nk_false; - if (chart->slots[slot].count) { - float padding = (float)(chart->slots[slot].count-1); - item.w = (chart->w - padding) / (float)(chart->slots[slot].count); - } - - /* calculate bounds of current bar chart entry */ - color = chart->slots[slot].color;; - item.h = chart->h * NK_ABS((value/chart->slots[slot].range)); - if (value >= 0) { - ratio = (value + NK_ABS(chart->slots[slot].min)) / NK_ABS(chart->slots[slot].range); - item.y = (chart->y + chart->h) - chart->h * ratio; - } else { - ratio = (value - chart->slots[slot].max) / chart->slots[slot].range; - item.y = chart->y + (chart->h * NK_ABS(ratio)) - item.h; - } - item.x = chart->x + ((float)chart->slots[slot].index * item.w); - item.x = item.x + ((float)chart->slots[slot].index); - - /* user chart bar selection */ - if (!(layout->flags & NK_WINDOW_ROM) && in && - NK_INBOX(in->mouse.pos.x,in->mouse.pos.y,item.x,item.y,item.w,item.h)) { - ret = NK_CHART_HOVERING; - ret |= (!in->mouse.buttons[NK_BUTTON_LEFT].down && - in->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0; - color = chart->slots[slot].highlight; - } - nk_fill_rect(out, item, 0, color); - chart->slots[slot].index += 1; - return ret; -} -NK_API nk_flags -nk_chart_push_slot(struct nk_context *ctx, float value, int slot) -{ - nk_flags flags; - struct nk_window *win; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(slot >= 0 && slot < NK_CHART_MAX_SLOT); - NK_ASSERT(slot < ctx->current->layout->chart.slot); - if (!ctx || !ctx->current || slot >= NK_CHART_MAX_SLOT) return nk_false; - if (slot >= ctx->current->layout->chart.slot) return nk_false; - - win = ctx->current; - if (win->layout->chart.slot < slot) return nk_false; - switch (win->layout->chart.slots[slot].type) { - case NK_CHART_LINES: - flags = nk_chart_push_line(ctx, win, &win->layout->chart, value, slot); break; - case NK_CHART_COLUMN: - flags = nk_chart_push_column(ctx, win, &win->layout->chart, value, slot); break; - default: - case NK_CHART_MAX: - flags = 0; - } - return flags; -} -NK_API nk_flags -nk_chart_push(struct nk_context *ctx, float value) -{ - return nk_chart_push_slot(ctx, value, 0); -} -NK_API void -nk_chart_end(struct nk_context *ctx) -{ - struct nk_window *win; - struct nk_chart *chart; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) - return; - - win = ctx->current; - chart = &win->layout->chart; - NK_MEMSET(chart, 0, sizeof(*chart)); - return; -} -NK_API void -nk_plot(struct nk_context *ctx, enum nk_chart_type type, const float *values, - int count, int offset) -{ - int i = 0; - float min_value; - float max_value; - - NK_ASSERT(ctx); - NK_ASSERT(values); - if (!ctx || !values || !count) return; - - min_value = values[offset]; - max_value = values[offset]; - for (i = 0; i < count; ++i) { - min_value = NK_MIN(values[i + offset], min_value); - max_value = NK_MAX(values[i + offset], max_value); - } - - if (nk_chart_begin(ctx, type, count, min_value, max_value)) { - for (i = 0; i < count; ++i) - nk_chart_push(ctx, values[i + offset]); - nk_chart_end(ctx); - } -} -NK_API void -nk_plot_function(struct nk_context *ctx, enum nk_chart_type type, void *userdata, - float(*value_getter)(void* user, int index), int count, int offset) -{ - int i = 0; - float min_value; - float max_value; - - NK_ASSERT(ctx); - NK_ASSERT(value_getter); - if (!ctx || !value_getter || !count) return; - - max_value = min_value = value_getter(userdata, offset); - for (i = 0; i < count; ++i) { - float value = value_getter(userdata, i + offset); - min_value = NK_MIN(value, min_value); - max_value = NK_MAX(value, max_value); - } - - if (nk_chart_begin(ctx, type, count, min_value, max_value)) { - for (i = 0; i < count; ++i) - nk_chart_push(ctx, value_getter(userdata, i + offset)); - nk_chart_end(ctx); - } -} - - - - - -/* ============================================================== - * - * COLOR PICKER - * - * ===============================================================*/ -NK_LIB nk_bool -nk_color_picker_behavior(nk_flags *state, - const struct nk_rect *bounds, const struct nk_rect *matrix, - const struct nk_rect *hue_bar, const struct nk_rect *alpha_bar, - struct nk_colorf *color, const struct nk_input *in) -{ - float hsva[4]; - nk_bool value_changed = 0; - nk_bool hsv_changed = 0; - - NK_ASSERT(state); - NK_ASSERT(matrix); - NK_ASSERT(hue_bar); - NK_ASSERT(color); - - /* color matrix */ - nk_colorf_hsva_fv(hsva, *color); - if (nk_button_behavior(state, *matrix, in, NK_BUTTON_REPEATER)) { - hsva[1] = NK_SATURATE((in->mouse.pos.x - matrix->x) / (matrix->w-1)); - hsva[2] = 1.0f - NK_SATURATE((in->mouse.pos.y - matrix->y) / (matrix->h-1)); - value_changed = hsv_changed = 1; - } - /* hue bar */ - if (nk_button_behavior(state, *hue_bar, in, NK_BUTTON_REPEATER)) { - hsva[0] = NK_SATURATE((in->mouse.pos.y - hue_bar->y) / (hue_bar->h-1)); - value_changed = hsv_changed = 1; - } - /* alpha bar */ - if (alpha_bar) { - if (nk_button_behavior(state, *alpha_bar, in, NK_BUTTON_REPEATER)) { - hsva[3] = 1.0f - NK_SATURATE((in->mouse.pos.y - alpha_bar->y) / (alpha_bar->h-1)); - value_changed = 1; - } - } - nk_widget_state_reset(state); - if (hsv_changed) { - *color = nk_hsva_colorfv(hsva); - *state = NK_WIDGET_STATE_ACTIVE; - } - if (value_changed) { - color->a = hsva[3]; - *state = NK_WIDGET_STATE_ACTIVE; - } - /* set color picker widget state */ - if (nk_input_is_mouse_hovering_rect(in, *bounds)) - *state = NK_WIDGET_STATE_HOVERED; - if (*state & NK_WIDGET_STATE_HOVER && !nk_input_is_mouse_prev_hovering_rect(in, *bounds)) - *state |= NK_WIDGET_STATE_ENTERED; - else if (nk_input_is_mouse_prev_hovering_rect(in, *bounds)) - *state |= NK_WIDGET_STATE_LEFT; - return value_changed; -} -NK_LIB void -nk_draw_color_picker(struct nk_command_buffer *o, const struct nk_rect *matrix, - const struct nk_rect *hue_bar, const struct nk_rect *alpha_bar, - struct nk_colorf col) -{ - NK_STORAGE const struct nk_color black = {0,0,0,255}; - NK_STORAGE const struct nk_color white = {255, 255, 255, 255}; - NK_STORAGE const struct nk_color black_trans = {0,0,0,0}; - - const float crosshair_size = 7.0f; - struct nk_color temp; - float hsva[4]; - float line_y; - int i; - - NK_ASSERT(o); - NK_ASSERT(matrix); - NK_ASSERT(hue_bar); - - /* draw hue bar */ - nk_colorf_hsva_fv(hsva, col); - for (i = 0; i < 6; ++i) { - NK_GLOBAL const struct nk_color hue_colors[] = { - {255, 0, 0, 255}, {255,255,0,255}, {0,255,0,255}, {0, 255,255,255}, - {0,0,255,255}, {255, 0, 255, 255}, {255, 0, 0, 255} - }; - nk_fill_rect_multi_color(o, - nk_rect(hue_bar->x, hue_bar->y + (float)i * (hue_bar->h/6.0f) + 0.5f, - hue_bar->w, (hue_bar->h/6.0f) + 0.5f), hue_colors[i], hue_colors[i], - hue_colors[i+1], hue_colors[i+1]); - } - line_y = (float)(int)(hue_bar->y + hsva[0] * matrix->h + 0.5f); - nk_stroke_line(o, hue_bar->x-1, line_y, hue_bar->x + hue_bar->w + 2, - line_y, 1, nk_rgb(255,255,255)); - - /* draw alpha bar */ - if (alpha_bar) { - float alpha = NK_SATURATE(col.a); - line_y = (float)(int)(alpha_bar->y + (1.0f - alpha) * matrix->h + 0.5f); - - nk_fill_rect_multi_color(o, *alpha_bar, white, white, black, black); - nk_stroke_line(o, alpha_bar->x-1, line_y, alpha_bar->x + alpha_bar->w + 2, - line_y, 1, nk_rgb(255,255,255)); - } - - /* draw color matrix */ - temp = nk_hsv_f(hsva[0], 1.0f, 1.0f); - nk_fill_rect_multi_color(o, *matrix, white, temp, temp, white); - nk_fill_rect_multi_color(o, *matrix, black_trans, black_trans, black, black); - - /* draw cross-hair */ - {struct nk_vec2 p; float S = hsva[1]; float V = hsva[2]; - p.x = (float)(int)(matrix->x + S * matrix->w); - p.y = (float)(int)(matrix->y + (1.0f - V) * matrix->h); - nk_stroke_line(o, p.x - crosshair_size, p.y, p.x-2, p.y, 1.0f, white); - nk_stroke_line(o, p.x + crosshair_size + 1, p.y, p.x+3, p.y, 1.0f, white); - nk_stroke_line(o, p.x, p.y + crosshair_size + 1, p.x, p.y+3, 1.0f, white); - nk_stroke_line(o, p.x, p.y - crosshair_size, p.x, p.y-2, 1.0f, white);} -} -NK_LIB nk_bool -nk_do_color_picker(nk_flags *state, - struct nk_command_buffer *out, struct nk_colorf *col, - enum nk_color_format fmt, struct nk_rect bounds, - struct nk_vec2 padding, const struct nk_input *in, - const struct nk_user_font *font) -{ - int ret = 0; - struct nk_rect matrix; - struct nk_rect hue_bar; - struct nk_rect alpha_bar; - float bar_w; - - NK_ASSERT(out); - NK_ASSERT(col); - NK_ASSERT(state); - NK_ASSERT(font); - if (!out || !col || !state || !font) - return ret; - - bar_w = font->height; - bounds.x += padding.x; - bounds.y += padding.x; - bounds.w -= 2 * padding.x; - bounds.h -= 2 * padding.y; - - matrix.x = bounds.x; - matrix.y = bounds.y; - matrix.h = bounds.h; - matrix.w = bounds.w - (3 * padding.x + 2 * bar_w); - - hue_bar.w = bar_w; - hue_bar.y = bounds.y; - hue_bar.h = matrix.h; - hue_bar.x = matrix.x + matrix.w + padding.x; - - alpha_bar.x = hue_bar.x + hue_bar.w + padding.x; - alpha_bar.y = bounds.y; - alpha_bar.w = bar_w; - alpha_bar.h = matrix.h; - - ret = nk_color_picker_behavior(state, &bounds, &matrix, &hue_bar, - (fmt == NK_RGBA) ? &alpha_bar:0, col, in); - nk_draw_color_picker(out, &matrix, &hue_bar, (fmt == NK_RGBA) ? &alpha_bar:0, *col); - return ret; -} -NK_API nk_bool -nk_color_pick(struct nk_context * ctx, struct nk_colorf *color, - enum nk_color_format fmt) -{ - struct nk_window *win; - struct nk_panel *layout; - const struct nk_style *config; - const struct nk_input *in; - - enum nk_widget_layout_states state; - struct nk_rect bounds; - - NK_ASSERT(ctx); - NK_ASSERT(color); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !color) - return 0; - - win = ctx->current; - config = &ctx->style; - layout = win->layout; - state = nk_widget(&bounds, ctx); - if (!state) return 0; - in = (state == NK_WIDGET_ROM || state == NK_WIDGET_DISABLED || layout->flags & NK_WINDOW_ROM) ? 0 : &ctx->input; - return nk_do_color_picker(&ctx->last_widget_state, &win->buffer, color, fmt, bounds, - nk_vec2(0,0), in, config->font); -} -NK_API struct nk_colorf -nk_color_picker(struct nk_context *ctx, struct nk_colorf color, - enum nk_color_format fmt) -{ - nk_color_pick(ctx, &color, fmt); - return color; -} - - - - - -/* ============================================================== - * - * COMBO - * - * ===============================================================*/ -NK_INTERN nk_bool -nk_combo_begin(struct nk_context *ctx, struct nk_window *win, - struct nk_vec2 size, nk_bool is_clicked, struct nk_rect header) -{ - struct nk_window *popup; - int is_open = 0; - int is_active = 0; - struct nk_rect body; - nk_hash hash; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - popup = win->popup.win; - body.x = header.x; - body.w = size.x; - body.y = header.y + header.h-ctx->style.window.combo_border; - body.h = size.y; - - hash = win->popup.combo_count++; - is_open = (popup) ? nk_true:nk_false; - is_active = (popup && (win->popup.name == hash) && win->popup.type == NK_PANEL_COMBO); - if ((is_clicked && is_open && !is_active) || (is_open && !is_active) || - (!is_open && !is_active && !is_clicked)) return 0; - if (!nk_nonblock_begin(ctx, 0, body, - (is_clicked && is_open)?nk_rect(0,0,0,0):header, NK_PANEL_COMBO)) return 0; - - win->popup.type = NK_PANEL_COMBO; - win->popup.name = hash; - return 1; -} -NK_API nk_bool -nk_combo_begin_text(struct nk_context *ctx, const char *selected, int len, - struct nk_vec2 size) -{ - const struct nk_input *in; - struct nk_window *win; - struct nk_style *style; - - enum nk_widget_layout_states s; - int is_clicked = nk_false; - struct nk_rect header; - const struct nk_style_item *background; - struct nk_text text; - - NK_ASSERT(ctx); - NK_ASSERT(selected); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout || !selected) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (s == NK_WIDGET_INVALID) - return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) { - background = &style->combo.active; - text.text = style->combo.label_active; - } else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) { - background = &style->combo.hover; - text.text = style->combo.label_hover; - } else { - background = &style->combo.normal; - text.text = style->combo.label_normal; - } - - text.text = nk_rgb_factor(text.text, style->combo.color_factor); - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - /* print currently selected text item */ - struct nk_rect label; - struct nk_rect button; - struct nk_rect content; - int draw_button_symbol; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else - sym = style->combo.sym_normal; - - /* represents whether or not the combo's button symbol should be drawn */ - draw_button_symbol = sym != NK_SYMBOL_NONE; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.x; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - - /* draw selected label */ - text.padding = nk_vec2(0,0); - label.x = header.x + style->combo.content_padding.x; - label.y = header.y + style->combo.content_padding.y; - label.h = header.h - 2 * style->combo.content_padding.y; - if (draw_button_symbol) - label.w = button.x - (style->combo.content_padding.x + style->combo.spacing.x) - label.x; - else - label.w = header.w - 2 * style->combo.content_padding.x; - nk_widget_text(&win->buffer, label, selected, len, &text, - NK_TEXT_LEFT, ctx->style.font); - - /* draw open/close button */ - if (draw_button_symbol) - nk_draw_button_symbol(&win->buffer, &button, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_label(struct nk_context *ctx, const char *selected, struct nk_vec2 size) -{ - return nk_combo_begin_text(ctx, selected, nk_strlen(selected), size); -} -NK_API nk_bool -nk_combo_begin_color(struct nk_context *ctx, struct nk_color color, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_style *style; - const struct nk_input *in; - - struct nk_rect header; - int is_clicked = nk_false; - enum nk_widget_layout_states s; - const struct nk_style_item *background; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (s == NK_WIDGET_INVALID) - return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) - background = &style->combo.active; - else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - background = &style->combo.hover; - else background = &style->combo.normal; - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - struct nk_rect content; - struct nk_rect button; - struct nk_rect bounds; - int draw_button_symbol; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else sym = style->combo.sym_normal; - - /* represents whether or not the combo's button symbol should be drawn */ - draw_button_symbol = sym != NK_SYMBOL_NONE; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.x; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - - /* draw color */ - bounds.h = header.h - 4 * style->combo.content_padding.y; - bounds.y = header.y + 2 * style->combo.content_padding.y; - bounds.x = header.x + 2 * style->combo.content_padding.x; - if (draw_button_symbol) - bounds.w = (button.x - (style->combo.content_padding.x + style->combo.spacing.x)) - bounds.x; - else - bounds.w = header.w - 4 * style->combo.content_padding.x; - nk_fill_rect(&win->buffer, bounds, 0, nk_rgb_factor(color, style->combo.color_factor)); - - /* draw open/close button */ - if (draw_button_symbol) - nk_draw_button_symbol(&win->buffer, &button, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_symbol(struct nk_context *ctx, enum nk_symbol_type symbol, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_style *style; - const struct nk_input *in; - - struct nk_rect header; - int is_clicked = nk_false; - enum nk_widget_layout_states s; - const struct nk_style_item *background; - struct nk_color sym_background; - struct nk_color symbol_color; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (s == NK_WIDGET_INVALID) - return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) { - background = &style->combo.active; - symbol_color = style->combo.symbol_active; - } else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) { - background = &style->combo.hover; - symbol_color = style->combo.symbol_hover; - } else { - background = &style->combo.normal; - symbol_color = style->combo.symbol_hover; - } - - symbol_color = nk_rgb_factor(symbol_color, style->combo.color_factor); - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - sym_background = nk_rgba(0, 0, 0, 0); - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - sym_background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - sym_background = background->data.color; - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - struct nk_rect bounds = {0,0,0,0}; - struct nk_rect content; - struct nk_rect button; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else sym = style->combo.sym_normal; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.y; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - - /* draw symbol */ - bounds.h = header.h - 2 * style->combo.content_padding.y; - bounds.y = header.y + style->combo.content_padding.y; - bounds.x = header.x + style->combo.content_padding.x; - bounds.w = (button.x - style->combo.content_padding.y) - bounds.x; - nk_draw_symbol(&win->buffer, symbol, bounds, sym_background, symbol_color, - 1.0f, style->font); - - /* draw open/close button */ - nk_draw_button_symbol(&win->buffer, &bounds, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_symbol_text(struct nk_context *ctx, const char *selected, int len, - enum nk_symbol_type symbol, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_style *style; - struct nk_input *in; - - struct nk_rect header; - int is_clicked = nk_false; - enum nk_widget_layout_states s; - const struct nk_style_item *background; - struct nk_color symbol_color; - struct nk_text text; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (!s) return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) { - background = &style->combo.active; - symbol_color = style->combo.symbol_active; - text.text = style->combo.label_active; - } else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) { - background = &style->combo.hover; - symbol_color = style->combo.symbol_hover; - text.text = style->combo.label_hover; - } else { - background = &style->combo.normal; - symbol_color = style->combo.symbol_normal; - text.text = style->combo.label_normal; - } - - text.text = nk_rgb_factor(text.text, style->combo.color_factor); - symbol_color = nk_rgb_factor(symbol_color, style->combo.color_factor); - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - struct nk_rect content; - struct nk_rect button; - struct nk_rect label; - struct nk_rect image; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else sym = style->combo.sym_normal; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.x; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - nk_draw_button_symbol(&win->buffer, &button, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - - /* draw symbol */ - image.x = header.x + style->combo.content_padding.x; - image.y = header.y + style->combo.content_padding.y; - image.h = header.h - 2 * style->combo.content_padding.y; - image.w = image.h; - nk_draw_symbol(&win->buffer, symbol, image, text.background, symbol_color, - 1.0f, style->font); - - /* draw label */ - text.padding = nk_vec2(0,0); - label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x; - label.y = header.y + style->combo.content_padding.y; - label.w = (button.x - style->combo.content_padding.x) - label.x; - label.h = header.h - 2 * style->combo.content_padding.y; - nk_widget_text(&win->buffer, label, selected, len, &text, NK_TEXT_LEFT, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_image(struct nk_context *ctx, struct nk_image img, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_style *style; - const struct nk_input *in; - - struct nk_rect header; - int is_clicked = nk_false; - enum nk_widget_layout_states s; - const struct nk_style_item *background; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (s == NK_WIDGET_INVALID) - return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) - background = &style->combo.active; - else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - background = &style->combo.hover; - else background = &style->combo.normal; - - switch (background->type) { - case NK_STYLE_ITEM_IMAGE: - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - struct nk_rect bounds = {0,0,0,0}; - struct nk_rect content; - struct nk_rect button; - int draw_button_symbol; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else sym = style->combo.sym_normal; - - /* represents whether or not the combo's button symbol should be drawn */ - draw_button_symbol = sym != NK_SYMBOL_NONE; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.y; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - - /* draw image */ - bounds.h = header.h - 2 * style->combo.content_padding.y; - bounds.y = header.y + style->combo.content_padding.y; - bounds.x = header.x + style->combo.content_padding.x; - if (draw_button_symbol) - bounds.w = (button.x - style->combo.content_padding.y) - bounds.x; - else - bounds.w = header.w - 2 * style->combo.content_padding.x; - nk_draw_image(&win->buffer, bounds, &img, nk_rgb_factor(nk_white, style->combo.color_factor)); - - /* draw open/close button */ - if (draw_button_symbol) - nk_draw_button_symbol(&win->buffer, &bounds, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_image_text(struct nk_context *ctx, const char *selected, int len, - struct nk_image img, struct nk_vec2 size) -{ - struct nk_window *win; - struct nk_style *style; - struct nk_input *in; - - struct nk_rect header; - int is_clicked = nk_false; - enum nk_widget_layout_states s; - const struct nk_style_item *background; - struct nk_text text; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - win = ctx->current; - style = &ctx->style; - s = nk_widget(&header, ctx); - if (!s) return 0; - - in = (win->layout->flags & NK_WINDOW_ROM || s == NK_WIDGET_DISABLED || s == NK_WIDGET_ROM)? 0: &ctx->input; - if (nk_button_behavior(&ctx->last_widget_state, header, in, NK_BUTTON_DEFAULT)) - is_clicked = nk_true; - - /* draw combo box header background and border */ - if (ctx->last_widget_state & NK_WIDGET_STATE_ACTIVED) { - background = &style->combo.active; - text.text = style->combo.label_active; - } else if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) { - background = &style->combo.hover; - text.text = style->combo.label_hover; - } else { - background = &style->combo.normal; - text.text = style->combo.label_normal; - } - - text.text = nk_rgb_factor(text.text, style->combo.color_factor); - - switch(background->type) { - case NK_STYLE_ITEM_IMAGE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_image(&win->buffer, header, &background->data.image, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_NINE_SLICE: - text.background = nk_rgba(0, 0, 0, 0); - nk_draw_nine_slice(&win->buffer, header, &background->data.slice, nk_rgb_factor(nk_white, style->combo.color_factor)); - break; - case NK_STYLE_ITEM_COLOR: - text.background = background->data.color; - nk_fill_rect(&win->buffer, header, style->combo.rounding, nk_rgb_factor(background->data.color, style->combo.color_factor)); - nk_stroke_rect(&win->buffer, header, style->combo.rounding, style->combo.border, nk_rgb_factor(style->combo.border_color, style->combo.color_factor)); - break; - } - { - struct nk_rect content; - struct nk_rect button; - struct nk_rect label; - struct nk_rect image; - int draw_button_symbol; - - enum nk_symbol_type sym; - if (ctx->last_widget_state & NK_WIDGET_STATE_HOVER) - sym = style->combo.sym_hover; - else if (is_clicked) - sym = style->combo.sym_active; - else sym = style->combo.sym_normal; - - /* represents whether or not the combo's button symbol should be drawn */ - draw_button_symbol = sym != NK_SYMBOL_NONE; - - /* calculate button */ - button.w = header.h - 2 * style->combo.button_padding.y; - button.x = (header.x + header.w - header.h) - style->combo.button_padding.x; - button.y = header.y + style->combo.button_padding.y; - button.h = button.w; - - content.x = button.x + style->combo.button.padding.x; - content.y = button.y + style->combo.button.padding.y; - content.w = button.w - 2 * style->combo.button.padding.x; - content.h = button.h - 2 * style->combo.button.padding.y; - if (draw_button_symbol) - nk_draw_button_symbol(&win->buffer, &button, &content, ctx->last_widget_state, - &ctx->style.combo.button, sym, style->font); - - /* draw image */ - image.x = header.x + style->combo.content_padding.x; - image.y = header.y + style->combo.content_padding.y; - image.h = header.h - 2 * style->combo.content_padding.y; - image.w = image.h; - nk_draw_image(&win->buffer, image, &img, nk_rgb_factor(nk_white, style->combo.color_factor)); - - /* draw label */ - text.padding = nk_vec2(0,0); - label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x; - label.y = header.y + style->combo.content_padding.y; - label.h = header.h - 2 * style->combo.content_padding.y; - if (draw_button_symbol) - label.w = (button.x - style->combo.content_padding.x) - label.x; - else - label.w = (header.x + header.w - style->combo.content_padding.x) - label.x; - nk_widget_text(&win->buffer, label, selected, len, &text, NK_TEXT_LEFT, style->font); - } - return nk_combo_begin(ctx, win, size, is_clicked, header); -} -NK_API nk_bool -nk_combo_begin_symbol_label(struct nk_context *ctx, - const char *selected, enum nk_symbol_type type, struct nk_vec2 size) -{ - return nk_combo_begin_symbol_text(ctx, selected, nk_strlen(selected), type, size); -} -NK_API nk_bool -nk_combo_begin_image_label(struct nk_context *ctx, - const char *selected, struct nk_image img, struct nk_vec2 size) -{ - return nk_combo_begin_image_text(ctx, selected, nk_strlen(selected), img, size); -} -NK_API nk_bool -nk_combo_item_text(struct nk_context *ctx, const char *text, int len,nk_flags align) -{ - return nk_contextual_item_text(ctx, text, len, align); -} -NK_API nk_bool -nk_combo_item_label(struct nk_context *ctx, const char *label, nk_flags align) -{ - return nk_contextual_item_label(ctx, label, align); -} -NK_API nk_bool -nk_combo_item_image_text(struct nk_context *ctx, struct nk_image img, const char *text, - int len, nk_flags alignment) -{ - return nk_contextual_item_image_text(ctx, img, text, len, alignment); -} -NK_API nk_bool -nk_combo_item_image_label(struct nk_context *ctx, struct nk_image img, - const char *text, nk_flags alignment) -{ - return nk_contextual_item_image_label(ctx, img, text, alignment); -} -NK_API nk_bool -nk_combo_item_symbol_text(struct nk_context *ctx, enum nk_symbol_type sym, - const char *text, int len, nk_flags alignment) -{ - return nk_contextual_item_symbol_text(ctx, sym, text, len, alignment); -} -NK_API nk_bool -nk_combo_item_symbol_label(struct nk_context *ctx, enum nk_symbol_type sym, - const char *label, nk_flags alignment) -{ - return nk_contextual_item_symbol_label(ctx, sym, label, alignment); -} -NK_API void nk_combo_end(struct nk_context *ctx) -{ - nk_contextual_end(ctx); -} -NK_API void nk_combo_close(struct nk_context *ctx) -{ - nk_contextual_close(ctx); -} -NK_API int -nk_combo(struct nk_context *ctx, const char **items, int count, - int selected, int item_height, struct nk_vec2 size) -{ - int i = 0; - int max_height; - struct nk_vec2 item_spacing; - struct nk_vec2 window_padding; - - NK_ASSERT(ctx); - NK_ASSERT(items); - NK_ASSERT(ctx->current); - if (!ctx || !items ||!count) - return selected; - - item_spacing = ctx->style.window.spacing; - window_padding = nk_panel_get_padding(&ctx->style, ctx->current->layout->type); - max_height = count * item_height + count * (int)item_spacing.y; - max_height += (int)item_spacing.y * 2 + (int)window_padding.y * 2; - size.y = NK_MIN(size.y, (float)max_height); - if (nk_combo_begin_label(ctx, items[selected], size)) { - nk_layout_row_dynamic(ctx, (float)item_height, 1); - for (i = 0; i < count; ++i) { - if (nk_combo_item_label(ctx, items[i], NK_TEXT_LEFT)) - selected = i; - } - nk_combo_end(ctx); - } - return selected; -} -NK_API int -nk_combo_separator(struct nk_context *ctx, const char *items_separated_by_separator, - int separator, int selected, int count, int item_height, struct nk_vec2 size) -{ - int i; - int max_height; - struct nk_vec2 item_spacing; - struct nk_vec2 window_padding; - const char *current_item; - const char *iter; - int length = 0; - - NK_ASSERT(ctx); - NK_ASSERT(items_separated_by_separator); - if (!ctx || !items_separated_by_separator) - return selected; - - /* calculate popup window */ - item_spacing = ctx->style.window.spacing; - window_padding = nk_panel_get_padding(&ctx->style, ctx->current->layout->type); - max_height = count * item_height + count * (int)item_spacing.y; - max_height += (int)item_spacing.y * 2 + (int)window_padding.y * 2; - size.y = NK_MIN(size.y, (float)max_height); - - /* find selected item */ - current_item = items_separated_by_separator; - for (i = 0; i < count; ++i) { - iter = current_item; - while (*iter && *iter != separator) iter++; - length = (int)(iter - current_item); - if (i == selected) break; - current_item = iter + 1; - } - - if (nk_combo_begin_text(ctx, current_item, length, size)) { - current_item = items_separated_by_separator; - nk_layout_row_dynamic(ctx, (float)item_height, 1); - for (i = 0; i < count; ++i) { - iter = current_item; - while (*iter && *iter != separator) iter++; - length = (int)(iter - current_item); - if (nk_combo_item_text(ctx, current_item, length, NK_TEXT_LEFT)) - selected = i; - current_item = current_item + length + 1; - } - nk_combo_end(ctx); - } - return selected; -} -NK_API int -nk_combo_string(struct nk_context *ctx, const char *items_separated_by_zeros, - int selected, int count, int item_height, struct nk_vec2 size) -{ - return nk_combo_separator(ctx, items_separated_by_zeros, '\0', selected, count, item_height, size); -} -NK_API int -nk_combo_callback(struct nk_context *ctx, void(*item_getter)(void*, int, const char**), - void *userdata, int selected, int count, int item_height, struct nk_vec2 size) -{ - int i; - int max_height; - struct nk_vec2 item_spacing; - struct nk_vec2 window_padding; - const char *item; - - NK_ASSERT(ctx); - NK_ASSERT(item_getter); - if (!ctx || !item_getter) - return selected; - - /* calculate popup window */ - item_spacing = ctx->style.window.spacing; - window_padding = nk_panel_get_padding(&ctx->style, ctx->current->layout->type); - max_height = count * item_height + count * (int)item_spacing.y; - max_height += (int)item_spacing.y * 2 + (int)window_padding.y * 2; - size.y = NK_MIN(size.y, (float)max_height); - - item_getter(userdata, selected, &item); - if (nk_combo_begin_label(ctx, item, size)) { - nk_layout_row_dynamic(ctx, (float)item_height, 1); - for (i = 0; i < count; ++i) { - item_getter(userdata, i, &item); - if (nk_combo_item_label(ctx, item, NK_TEXT_LEFT)) - selected = i; - } - nk_combo_end(ctx); - } return selected; -} -NK_API void -nk_combobox(struct nk_context *ctx, const char **items, int count, - int *selected, int item_height, struct nk_vec2 size) -{ - *selected = nk_combo(ctx, items, count, *selected, item_height, size); -} -NK_API void -nk_combobox_string(struct nk_context *ctx, const char *items_separated_by_zeros, - int *selected, int count, int item_height, struct nk_vec2 size) -{ - *selected = nk_combo_string(ctx, items_separated_by_zeros, *selected, count, item_height, size); -} -NK_API void -nk_combobox_separator(struct nk_context *ctx, const char *items_separated_by_separator, - int separator, int *selected, int count, int item_height, struct nk_vec2 size) -{ - *selected = nk_combo_separator(ctx, items_separated_by_separator, separator, - *selected, count, item_height, size); -} -NK_API void -nk_combobox_callback(struct nk_context *ctx, - void(*item_getter)(void* data, int id, const char **out_text), - void *userdata, int *selected, int count, int item_height, struct nk_vec2 size) -{ - *selected = nk_combo_callback(ctx, item_getter, userdata, *selected, count, item_height, size); -} - - - - - -/* =============================================================== - * - * TOOLTIP - * - * ===============================================================*/ -NK_API nk_bool -nk_tooltip_begin(struct nk_context *ctx, float width) -{ - int x,y,w,h; - struct nk_window *win; - const struct nk_input *in; - struct nk_rect bounds; - int ret; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - if (!ctx || !ctx->current || !ctx->current->layout) - return 0; - - /* make sure that no nonblocking popup is currently active */ - win = ctx->current; - in = &ctx->input; - if (win->popup.win && (win->popup.type & NK_PANEL_SET_NONBLOCK)) - return 0; - - w = nk_iceilf(width); - h = nk_iceilf(nk_null_rect.h); - x = nk_ifloorf(in->mouse.pos.x + 1) - (int)win->layout->clip.x; - y = nk_ifloorf(in->mouse.pos.y + 1) - (int)win->layout->clip.y; - - bounds.x = (float)x; - bounds.y = (float)y; - bounds.w = (float)w; - bounds.h = (float)h; - - ret = nk_popup_begin(ctx, NK_POPUP_DYNAMIC, - "__##Tooltip##__", NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER, bounds); - if (ret) win->layout->flags &= ~(nk_flags)NK_WINDOW_ROM; - win->popup.type = NK_PANEL_TOOLTIP; - ctx->current->layout->type = NK_PANEL_TOOLTIP; - return ret; -} - -NK_API void -nk_tooltip_end(struct nk_context *ctx) -{ - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - if (!ctx || !ctx->current) return; - ctx->current->seq--; - nk_popup_close(ctx); - nk_popup_end(ctx); -} -NK_API void -nk_tooltip(struct nk_context *ctx, const char *text) -{ - const struct nk_style *style; - struct nk_vec2 padding; - - int text_len; - float text_width; - float text_height; - - NK_ASSERT(ctx); - NK_ASSERT(ctx->current); - NK_ASSERT(ctx->current->layout); - NK_ASSERT(text); - if (!ctx || !ctx->current || !ctx->current->layout || !text) - return; - - /* fetch configuration data */ - style = &ctx->style; - padding = style->window.padding; - - /* calculate size of the text and tooltip */ - text_len = nk_strlen(text); - text_width = style->font->width(style->font->userdata, - style->font->height, text, text_len); - text_width += (4 * padding.x); - text_height = (style->font->height + 2 * padding.y); - - /* execute tooltip and fill with text */ - if (nk_tooltip_begin(ctx, (float)text_width)) { - nk_layout_row_dynamic(ctx, (float)text_height, 1); - nk_text(ctx, text, text_len, NK_TEXT_LEFT); - nk_tooltip_end(ctx); - } -} -#ifdef NK_INCLUDE_STANDARD_VARARGS -NK_API void -nk_tooltipf(struct nk_context *ctx, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - nk_tooltipfv(ctx, fmt, args); - va_end(args); -} -NK_API void -nk_tooltipfv(struct nk_context *ctx, const char *fmt, va_list args) -{ - char buf[256]; - nk_strfmt(buf, NK_LEN(buf), fmt, args); - nk_tooltip(ctx, buf); -} -#endif - - - -#endif /* NK_IMPLEMENTATION */ - -/* -/// ## License -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~none -/// ------------------------------------------------------------------------------ -/// This software is available under 2 licenses -- choose whichever you prefer. -/// ------------------------------------------------------------------------------ -/// ALTERNATIVE A - MIT License -/// Copyright (c) 2016-2018 Micha Mettke -/// Permission is hereby granted, free of charge, to any person obtaining a copy of -/// this software and associated documentation files (the "Software"), to deal in -/// the Software without restriction, including without limitation the rights to -/// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -/// of the Software, and to permit persons to whom the Software is furnished to do -/// so, subject to the following conditions: -/// The above copyright notice and this permission notice shall be included in all -/// copies or substantial portions of the Software. -/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -/// SOFTWARE. -/// ------------------------------------------------------------------------------ -/// ALTERNATIVE B - Public Domain (www.unlicense.org) -/// This is free and unencumbered software released into the public domain. -/// Anyone is free to copy, modify, publish, use, compile, sell, or distribute this -/// software, either in source code form or as a compiled binary, for any purpose, -/// commercial or non-commercial, and by any means. -/// In jurisdictions that recognize copyright laws, the author or authors of this -/// software dedicate any and all copyright interest in the software to the public -/// domain. We make this dedication for the benefit of the public at large and to -/// the detriment of our heirs and successors. We intend this dedication to be an -/// overt act of relinquishment in perpetuity of all present and future rights to -/// this software under copyright law. -/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -/// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -/// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -/// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -/// ------------------------------------------------------------------------------ -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -/// ## Changelog -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~none -/// [date] ([x.y.z]) - [description] -/// - [date]: date on which the change has been pushed -/// - [x.y.z]: Version string, represented in Semantic Versioning format -/// - [x]: Major version with API and library breaking changes -/// - [y]: Minor version with non-breaking API and library changes -/// - [z]: Patch version with no direct changes to the API -/// -/// - 2023/11/26 (4.12.0) - Added an alignment option to checkboxes and radio buttons. -/// - 2023/10/11 (4.11.0) - Added nk_widget_disable_begin() and nk_widget_disable_end() -/// - 2022/12/23 (4.10.6) - Fix incorrect glyph index in nk_font_bake() -/// - 2022/12/17 (4.10.5) - Fix nk_font_bake_pack() using TTC font offset incorrectly -/// - 2022/10/24 (4.10.4) - Fix nk_str_{append,insert}_str_utf8 always returning 0 -/// - 2022/09/03 (4.10.3) - Renamed the `null` texture variable to `tex_null` -/// - 2022/08/01 (4.10.2) - Fix Apple Silicon with incorrect NK_SITE_TYPE and NK_POINTER_TYPE -/// - 2022/08/01 (4.10.1) - Fix cursor jumping back to beginning of text when typing more than -/// nk_edit_xxx limit -/// - 2022/05/27 (4.10.0) - Add nk_input_has_mouse_click_in_button_rect() to fix window move bug -/// - 2022/04/19 (4.9.8) - Added nk_rule_horizontal() widget -/// - 2022/04/18 (4.9.7) - Change button behavior when NK_BUTTON_TRIGGER_ON_RELEASE is defined to -/// only trigger when the mouse position was inside the same button on down -/// - 2022/02/03 (4.9.6) - Allow overriding the NK_INV_SQRT function, similar to NK_SIN and NK_COS -/// - 2021/12/22 (4.9.5) - Revert layout bounds not accounting for padding due to regressions -/// - 2021/12/22 (4.9.4) - Fix checking hovering when window is minimized -/// - 2021/12/22 (4.09.3) - Fix layout bounds not accounting for padding -/// - 2021/12/19 (4.09.2) - Update to stb_rect_pack.h v1.01 and stb_truetype.h v1.26 -/// - 2021/12/16 (4.09.1) - Fix the majority of GCC warnings -/// - 2021/10/16 (4.09.0) - Added nk_spacer() widget -/// - 2021/09/22 (4.08.6) - Fix "may be used uninitialized" warnings in nk_widget -/// - 2021/09/22 (4.08.5) - GCC __builtin_offsetof only exists in version 4 and later -/// - 2021/09/15 (4.08.4) - Fix "'num_len' may be used uninitialized" in nk_do_property -/// - 2021/09/15 (4.08.3) - Fix "Templates cannot be declared to have 'C' Linkage" -/// - 2021/09/08 (4.08.2) - Fix warnings in C89 builds -/// - 2021/09/08 (4.08.1) - Use compiler builtins for NK_OFFSETOF when possible -/// - 2021/08/17 (4.08.0) - Implemented 9-slice scaling support for widget styles -/// - 2021/08/16 (4.07.5) - Replace usage of memset in nk_font_atlas_bake with NK_MEMSET -/// - 2021/08/15 (4.07.4) - Fix conversion and sign conversion warnings -/// - 2021/08/08 (4.07.3) - Fix crash when baking merged fonts -/// - 2021/08/08 (4.07.2) - Fix Multiline Edit wrong offset -/// - 2021/03/17 (4.07.1) - Fix warning about unused parameter -/// - 2021/03/17 (4.07.0) - Fix nk_property hover bug -/// - 2021/03/15 (4.06.4) - Change nk_propertyi back to int -/// - 2021/03/15 (4.06.3) - Update documentation for functions that now return nk_bool -/// - 2020/12/19 (4.06.2) - Fix additional C++ style comments which are not allowed in ISO C90. -/// - 2020/10/11 (4.06.1) - Fix C++ style comments which are not allowed in ISO C90. -/// - 2020/10/07 (4.06.0) - Fix nk_combo return type wrongly changed to nk_bool -/// - 2020/09/05 (4.05.0) - Use the nk_font_atlas allocator for stb_truetype memory management. -/// - 2020/09/04 (4.04.1) - Replace every boolean int by nk_bool -/// - 2020/09/04 (4.04.0) - Add nk_bool with NK_INCLUDE_STANDARD_BOOL -/// - 2020/06/13 (4.03.1) - Fix nk_pool allocation sizes. -/// - 2020/06/04 (4.03.0) - Made nk_combo header symbols optional. -/// - 2020/05/27 (4.02.5) - Fix nk_do_edit: Keep scroll position when re-activating edit widget. -/// - 2020/05/09 (4.02.4) - Fix nk_menubar height calculation bug -/// - 2020/05/08 (4.02.3) - Fix missing stdarg.h with NK_INCLUDE_STANDARD_VARARGS -/// - 2020/04/30 (4.02.2) - Fix nk_edit border drawing bug -/// - 2020/04/09 (4.02.1) - Removed unused nk_sqrt function to fix compiler warnings -/// - Fixed compiler warnings if you bring your own methods for -/// nk_cos/nk_sin/nk_strtod/nk_memset/nk_memcopy/nk_dtoa -/// - 2020/04/06 (4.01.10) - Fix bug: Do not use pool before checking for NULL -/// - 2020/03/22 (4.01.9) - Fix bug where layout state wasn't restored correctly after -/// popping a tree. -/// - 2020/03/11 (4.01.8) - Fix bug where padding is subtracted from widget -/// - 2020/03/06 (4.01.7) - Fix bug where width padding was applied twice -/// - 2020/02/06 (4.01.6) - Update stb_truetype.h and stb_rect_pack.h and separate them -/// - 2019/12/10 (4.01.5) - Fix off-by-one error in NK_INTERSECT -/// - 2019/10/09 (4.01.4) - Fix bug for autoscrolling in nk_do_edit -/// - 2019/09/20 (4.01.3) - Fixed a bug wherein combobox cannot be closed by clicking the header -/// when NK_BUTTON_TRIGGER_ON_RELEASE is defined. -/// - 2019/09/10 (4.01.2) - Fixed the nk_cos function, which deviated significantly. -/// - 2019/09/08 (4.01.1) - Fixed a bug wherein re-baking of fonts caused a segmentation -/// fault due to dst_font->glyph_count not being zeroed on subsequent -/// bakes of the same set of fonts. -/// - 2019/06/23 (4.01.0) - Added nk_***_get_scroll and nk_***_set_scroll for groups, windows, and popups. -/// - 2019/06/12 (4.00.3) - Fix panel background drawing bug. -/// - 2018/10/31 (4.00.2) - Added NK_KEYSTATE_BASED_INPUT to "fix" state based backends -/// like GLFW without breaking key repeat behavior on event based. -/// - 2018/04/01 (4.00.1) - Fixed calling `nk_convert` multiple time per single frame. -/// - 2018/04/01 (4.00.0) - BREAKING CHANGE: nk_draw_list_clear no longer tries to -/// clear provided buffers. So make sure to either free -/// or clear each passed buffer after calling nk_convert. -/// - 2018/02/23 (3.00.6) - Fixed slider dragging behavior. -/// - 2018/01/31 (3.00.5) - Fixed overcalculation of cursor data in font baking process. -/// - 2018/01/31 (3.00.4) - Removed name collision with stb_truetype. -/// - 2018/01/28 (3.00.3) - Fixed panel window border drawing bug. -/// - 2018/01/12 (3.00.2) - Added `nk_group_begin_titled` for separated group identifier and title. -/// - 2018/01/07 (3.00.1) - Started to change documentation style. -/// - 2018/01/05 (3.00.0) - BREAKING CHANGE: The previous color picker API was broken -/// because of conversions between float and byte color representation. -/// Color pickers now use floating point values to represent -/// HSV values. To get back the old behavior I added some additional -/// color conversion functions to cast between nk_color and -/// nk_colorf. -/// - 2017/12/23 (2.00.7) - Fixed small warning. -/// - 2017/12/23 (2.00.7) - Fixed `nk_edit_buffer` behavior if activated to allow input. -/// - 2017/12/23 (2.00.7) - Fixed modifyable progressbar dragging visuals and input behavior. -/// - 2017/12/04 (2.00.6) - Added formatted string tooltip widget. -/// - 2017/11/18 (2.00.5) - Fixed window becoming hidden with flag `NK_WINDOW_NO_INPUT`. -/// - 2017/11/15 (2.00.4) - Fixed font merging. -/// - 2017/11/07 (2.00.3) - Fixed window size and position modifier functions. -/// - 2017/09/14 (2.00.2) - Fixed `nk_edit_buffer` and `nk_edit_focus` behavior. -/// - 2017/09/14 (2.00.1) - Fixed window closing behavior. -/// - 2017/09/14 (2.00.0) - BREAKING CHANGE: Modifying window position and size functions now -/// require the name of the window and must happen outside the window -/// building process (between function call nk_begin and nk_end). -/// - 2017/09/11 (1.40.9) - Fixed window background flag if background window is declared last. -/// - 2017/08/27 (1.40.8) - Fixed `nk_item_is_any_active` for hidden windows. -/// - 2017/08/27 (1.40.7) - Fixed window background flag. -/// - 2017/07/07 (1.40.6) - Fixed missing clipping rect check for hovering/clicked -/// query for widgets. -/// - 2017/07/07 (1.40.5) - Fixed drawing bug for vertex output for lines and stroked -/// and filled rectangles. -/// - 2017/07/07 (1.40.4) - Fixed bug in nk_convert trying to add windows that are in -/// process of being destroyed. -/// - 2017/07/07 (1.40.3) - Fixed table internal bug caused by storing table size in -/// window instead of directly in table. -/// - 2017/06/30 (1.40.2) - Removed unneeded semicolon in C++ NK_ALIGNOF macro. -/// - 2017/06/30 (1.40.1) - Fixed drawing lines smaller or equal zero. -/// - 2017/06/08 (1.40.0) - Removed the breaking part of last commit. Auto layout now only -/// comes in effect if you pass in zero was row height argument. -/// - 2017/06/08 (1.40.0) - BREAKING CHANGE: while not directly API breaking it will change -/// how layouting works. From now there will be an internal minimum -/// row height derived from font height. If you need a row smaller than -/// that you can directly set it by `nk_layout_set_min_row_height` and -/// reset the value back by calling `nk_layout_reset_min_row_height. -/// - 2017/06/08 (1.39.1) - Fixed property text edit handling bug caused by past `nk_widget` fix. -/// - 2017/06/08 (1.39.0) - Added function to retrieve window space without calling a `nk_layout_xxx` function. -/// - 2017/06/06 (1.38.5) - Fixed `nk_convert` return flag for command buffer. -/// - 2017/05/23 (1.38.4) - Fixed activation behavior for widgets partially clipped. -/// - 2017/05/10 (1.38.3) - Fixed wrong min window size mouse scaling over boundaries. -/// - 2017/05/09 (1.38.2) - Fixed vertical scrollbar drawing with not enough space. -/// - 2017/05/09 (1.38.1) - Fixed scaler dragging behavior if window size hits minimum size. -/// - 2017/05/06 (1.38.0) - Added platform double-click support. -/// - 2017/04/20 (1.37.1) - Fixed key repeat found inside glfw demo backends. -/// - 2017/04/20 (1.37.0) - Extended properties with selection and clipboard support. -/// - 2017/04/20 (1.36.2) - Fixed #405 overlapping rows with zero padding and spacing. -/// - 2017/04/09 (1.36.1) - Fixed #403 with another widget float error. -/// - 2017/04/09 (1.36.0) - Added window `NK_WINDOW_NO_INPUT` and `NK_WINDOW_NOT_INTERACTIVE` flags. -/// - 2017/04/09 (1.35.3) - Fixed buffer heap corruption. -/// - 2017/03/25 (1.35.2) - Fixed popup overlapping for `NK_WINDOW_BACKGROUND` windows. -/// - 2017/03/25 (1.35.1) - Fixed windows closing behavior. -/// - 2017/03/18 (1.35.0) - Added horizontal scroll requested in #377. -/// - 2017/03/18 (1.34.3) - Fixed long window header titles. -/// - 2017/03/04 (1.34.2) - Fixed text edit filtering. -/// - 2017/03/04 (1.34.1) - Fixed group closable flag. -/// - 2017/02/25 (1.34.0) - Added custom draw command for better language binding support. -/// - 2017/01/24 (1.33.0) - Added programmatic way to remove edit focus. -/// - 2017/01/24 (1.32.3) - Fixed wrong define for basic type definitions for windows. -/// - 2017/01/21 (1.32.2) - Fixed input capture from hidden or closed windows. -/// - 2017/01/21 (1.32.1) - Fixed slider behavior and drawing. -/// - 2017/01/13 (1.32.0) - Added flag to put scaler into the bottom left corner. -/// - 2017/01/13 (1.31.0) - Added additional row layouting method to combine both -/// dynamic and static widgets. -/// - 2016/12/31 (1.30.0) - Extended scrollbar offset from 16-bit to 32-bit. -/// - 2016/12/31 (1.29.2) - Fixed closing window bug of minimized windows. -/// - 2016/12/03 (1.29.1) - Fixed wrapped text with no seperator and C89 error. -/// - 2016/12/03 (1.29.0) - Changed text wrapping to process words not characters. -/// - 2016/11/22 (1.28.6) - Fixed window minimized closing bug. -/// - 2016/11/19 (1.28.5) - Fixed abstract combo box closing behavior. -/// - 2016/11/19 (1.28.4) - Fixed tooltip flickering. -/// - 2016/11/19 (1.28.3) - Fixed memory leak caused by popup repeated closing. -/// - 2016/11/18 (1.28.2) - Fixed memory leak caused by popup panel allocation. -/// - 2016/11/10 (1.28.1) - Fixed some warnings and C++ error. -/// - 2016/11/10 (1.28.0) - Added additional `nk_button` versions which allows to directly -/// pass in a style struct to change buttons visual. -/// - 2016/11/10 (1.27.0) - Added additional `nk_tree` versions to support external state -/// storage. Just like last the `nk_group` commit the main -/// advantage is that you optionally can minimize nuklears runtime -/// memory consumption or handle hash collisions. -/// - 2016/11/09 (1.26.0) - Added additional `nk_group` version to support external scrollbar -/// offset storage. Main advantage is that you can externalize -/// the memory management for the offset. It could also be helpful -/// if you have a hash collision in `nk_group_begin` but really -/// want the name. In addition I added `nk_list_view` which allows -/// to draw big lists inside a group without actually having to -/// commit the whole list to nuklear (issue #269). -/// - 2016/10/30 (1.25.1) - Fixed clipping rectangle bug inside `nk_draw_list`. -/// - 2016/10/29 (1.25.0) - Pulled `nk_panel` memory management into nuklear and out of -/// the hands of the user. From now on users don't have to care -/// about panels unless they care about some information. If you -/// still need the panel just call `nk_window_get_panel`. -/// - 2016/10/21 (1.24.0) - Changed widget border drawing to stroked rectangle from filled -/// rectangle for less overdraw and widget background transparency. -/// - 2016/10/18 (1.23.0) - Added `nk_edit_focus` for manually edit widget focus control. -/// - 2016/09/29 (1.22.7) - Fixed deduction of basic type in non `` compilation. -/// - 2016/09/29 (1.22.6) - Fixed edit widget UTF-8 text cursor drawing bug. -/// - 2016/09/28 (1.22.5) - Fixed edit widget UTF-8 text appending/inserting/removing. -/// - 2016/09/28 (1.22.4) - Fixed drawing bug inside edit widgets which offset all text -/// text in every edit widget if one of them is scrolled. -/// - 2016/09/28 (1.22.3) - Fixed small bug in edit widgets if not active. The wrong -/// text length is passed. It should have been in bytes but -/// was passed as glyphs. -/// - 2016/09/20 (1.22.2) - Fixed color button size calculation. -/// - 2016/09/20 (1.22.1) - Fixed some `nk_vsnprintf` behavior bugs and removed `` -/// again from `NK_INCLUDE_STANDARD_VARARGS`. -/// - 2016/09/18 (1.22.0) - C89 does not support vsnprintf only C99 and newer as well -/// as C++11 and newer. In addition to use vsnprintf you have -/// to include . So just defining `NK_INCLUDE_STD_VAR_ARGS` -/// is not enough. That behavior is now fixed. By default if -/// both varargs as well as stdio is selected I try to use -/// vsnprintf if not possible I will revert to vsprintf. If -/// varargs but not stdio was defined I will use my own function. -/// - 2016/09/15 (1.21.2) - Fixed panel `close` behavior for deeper panel levels. -/// - 2016/09/15 (1.21.1) - Fixed C++ errors and wrong argument to `nk_panel_get_xxxx`. -/// - 2016/09/13 (1.21.0) - !BREAKING! Fixed nonblocking popup behavior in menu, combo, -/// and contextual which prevented closing in y-direction if -/// popup did not reach max height. -/// In addition the height parameter was changed into vec2 -/// for width and height to have more control over the popup size. -/// - 2016/09/13 (1.20.3) - Cleaned up and extended type selection. -/// - 2016/09/13 (1.20.2) - Fixed slider behavior hopefully for the last time. This time -/// all calculation are correct so no more hackery. -/// - 2016/09/13 (1.20.1) - Internal change to divide window/panel flags into panel flags and types. -/// Suprisinly spend years in C and still happened to confuse types -/// with flags. Probably something to take note. -/// - 2016/09/08 (1.20.0) - Added additional helper function to make it easier to just -/// take the produced buffers from `nk_convert` and unplug the -/// iteration process from `nk_context`. So now you can -/// just use the vertex,element and command buffer + two pointer -/// inside the command buffer retrieved by calls `nk__draw_begin` -/// and `nk__draw_end` and macro `nk_draw_foreach_bounded`. -/// - 2016/09/08 (1.19.0) - Added additional asserts to make sure every `nk_xxx_begin` call -/// for windows, popups, combobox, menu and contextual is guarded by -/// `if` condition and does not produce false drawing output. -/// - 2016/09/08 (1.18.0) - Changed confusing name for `NK_SYMBOL_RECT_FILLED`, `NK_SYMBOL_RECT` -/// to hopefully easier to understand `NK_SYMBOL_RECT_FILLED` and -/// `NK_SYMBOL_RECT_OUTLINE`. -/// - 2016/09/08 (1.17.0) - Changed confusing name for `NK_SYMBOL_CIRLCE_FILLED`, `NK_SYMBOL_CIRCLE` -/// to hopefully easier to understand `NK_SYMBOL_CIRCLE_FILLED` and -/// `NK_SYMBOL_CIRCLE_OUTLINE`. -/// - 2016/09/08 (1.16.0) - Added additional checks to select correct types if `NK_INCLUDE_FIXED_TYPES` -/// is not defined by supporting the biggest compiler GCC, clang and MSVC. -/// - 2016/09/07 (1.15.3) - Fixed `NK_INCLUDE_COMMAND_USERDATA` define to not cause an error. -/// - 2016/09/04 (1.15.2) - Fixed wrong combobox height calculation. -/// - 2016/09/03 (1.15.1) - Fixed gaps inside combo boxes in OpenGL. -/// - 2016/09/02 (1.15.0) - Changed nuklear to not have any default vertex layout and -/// instead made it user provided. The range of types to convert -/// to is quite limited at the moment, but I would be more than -/// happy to accept PRs to add additional. -/// - 2016/08/30 (1.14.2) - Removed unused variables. -/// - 2016/08/30 (1.14.1) - Fixed C++ build errors. -/// - 2016/08/30 (1.14.0) - Removed mouse dragging from SDL demo since it does not work correctly. -/// - 2016/08/30 (1.13.4) - Tweaked some default styling variables. -/// - 2016/08/30 (1.13.3) - Hopefully fixed drawing bug in slider, in general I would -/// refrain from using slider with a big number of steps. -/// - 2016/08/30 (1.13.2) - Fixed close and minimize button which would fire even if the -/// window was in Read Only Mode. -/// - 2016/08/30 (1.13.1) - Fixed popup panel padding handling which was previously just -/// a hack for combo box and menu. -/// - 2016/08/30 (1.13.0) - Removed `NK_WINDOW_DYNAMIC` flag from public API since -/// it is bugged and causes issues in window selection. -/// - 2016/08/30 (1.12.0) - Removed scaler size. The size of the scaler is now -/// determined by the scrollbar size. -/// - 2016/08/30 (1.11.2) - Fixed some drawing bugs caused by changes from 1.11.0. -/// - 2016/08/30 (1.11.1) - Fixed overlapping minimized window selection. -/// - 2016/08/30 (1.11.0) - Removed some internal complexity and overly complex code -/// handling panel padding and panel border. -/// - 2016/08/29 (1.10.0) - Added additional height parameter to `nk_combobox_xxx`. -/// - 2016/08/29 (1.10.0) - Fixed drawing bug in dynamic popups. -/// - 2016/08/29 (1.10.0) - Added experimental mouse scrolling to popups, menus and comboboxes. -/// - 2016/08/26 (1.10.0) - Added window name string prepresentation to account for -/// hash collisions. Currently limited to `NK_WINDOW_MAX_NAME` -/// which in term can be redefined if not big enough. -/// - 2016/08/26 (1.10.0) - Added stacks for temporary style/UI changes in code. -/// - 2016/08/25 (1.10.0) - Changed `nk_input_is_key_pressed` and 'nk_input_is_key_released' -/// to account for key press and release happening in one frame. -/// - 2016/08/25 (1.10.0) - Added additional nk_edit flag to directly jump to the end on activate. -/// - 2016/08/17 (1.09.6) - Removed invalid check for value zero in `nk_propertyx`. -/// - 2016/08/16 (1.09.5) - Fixed ROM mode for deeper levels of popup windows parents. -/// - 2016/08/15 (1.09.4) - Editbox are now still active if enter was pressed with flag -/// `NK_EDIT_SIG_ENTER`. Main reasoning is to be able to keep -/// typing after committing. -/// - 2016/08/15 (1.09.4) - Removed redundant code. -/// - 2016/08/15 (1.09.4) - Fixed negative numbers in `nk_strtoi` and remove unused variable. -/// - 2016/08/15 (1.09.3) - Fixed `NK_WINDOW_BACKGROUND` flag behavior to select a background -/// window only as selected by hovering and not by clicking. -/// - 2016/08/14 (1.09.2) - Fixed a bug in font atlas which caused wrong loading -/// of glyphs for font with multiple ranges. -/// - 2016/08/12 (1.09.1) - Added additional function to check if window is currently -/// hidden and therefore not visible. -/// - 2016/08/12 (1.09.1) - nk_window_is_closed now queries the correct flag `NK_WINDOW_CLOSED` -/// instead of the old flag `NK_WINDOW_HIDDEN`. -/// - 2016/08/09 (1.09.0) - Added additional double version to nk_property and changed -/// the underlying implementation to not cast to float and instead -/// work directly on the given values. -/// - 2016/08/09 (1.08.0) - Added additional define to overwrite library internal -/// floating pointer number to string conversion for additional -/// precision. -/// - 2016/08/09 (1.08.0) - Added additional define to overwrite library internal -/// string to floating point number conversion for additional -/// precision. -/// - 2016/08/08 (1.07.2) - Fixed compiling error without define `NK_INCLUDE_FIXED_TYPE`. -/// - 2016/08/08 (1.07.1) - Fixed possible floating point error inside `nk_widget` leading -/// to wrong wiget width calculation which results in widgets falsely -/// becoming tagged as not inside window and cannot be accessed. -/// - 2016/08/08 (1.07.0) - Nuklear now differentiates between hiding a window (NK_WINDOW_HIDDEN) and -/// closing a window (NK_WINDOW_CLOSED). A window can be hidden/shown -/// by using `nk_window_show` and closed by either clicking the close -/// icon in a window or by calling `nk_window_close`. Only closed -/// windows get removed at the end of the frame while hidden windows -/// remain. -/// - 2016/08/08 (1.06.0) - Added `nk_edit_string_zero_terminated` as a second option to -/// `nk_edit_string` which takes, edits and outputs a '\0' terminated string. -/// - 2016/08/08 (1.05.4) - Fixed scrollbar auto hiding behavior. -/// - 2016/08/08 (1.05.3) - Fixed wrong panel padding selection in `nk_layout_widget_space`. -/// - 2016/08/07 (1.05.2) - Fixed old bug in dynamic immediate mode layout API, calculating -/// wrong item spacing and panel width. -/// - 2016/08/07 (1.05.1) - Hopefully finally fixed combobox popup drawing bug. -/// - 2016/08/07 (1.05.0) - Split varargs away from `NK_INCLUDE_STANDARD_IO` into own -/// define `NK_INCLUDE_STANDARD_VARARGS` to allow more fine -/// grained controlled over library includes. -/// - 2016/08/06 (1.04.5) - Changed memset calls to `NK_MEMSET`. -/// - 2016/08/04 (1.04.4) - Fixed fast window scaling behavior. -/// - 2016/08/04 (1.04.3) - Fixed window scaling, movement bug which appears if you -/// move/scale a window and another window is behind it. -/// If you are fast enough then the window behind gets activated -/// and the operation is blocked. I now require activating -/// by hovering only if mouse is not pressed. -/// - 2016/08/04 (1.04.2) - Fixed changing fonts. -/// - 2016/08/03 (1.04.1) - Fixed `NK_WINDOW_BACKGROUND` behavior. -/// - 2016/08/03 (1.04.0) - Added color parameter to `nk_draw_image`. -/// - 2016/08/03 (1.04.0) - Added additional window padding style attributes for -/// sub windows (combo, menu, ...). -/// - 2016/08/03 (1.04.0) - Added functions to show/hide software cursor. -/// - 2016/08/03 (1.04.0) - Added `NK_WINDOW_BACKGROUND` flag to force a window -/// to be always in the background of the screen. -/// - 2016/08/03 (1.03.2) - Removed invalid assert macro for NK_RGB color picker. -/// - 2016/08/01 (1.03.1) - Added helper macros into header include guard. -/// - 2016/07/29 (1.03.0) - Moved the window/table pool into the header part to -/// simplify memory management by removing the need to -/// allocate the pool. -/// - 2016/07/29 (1.02.0) - Added auto scrollbar hiding window flag which if enabled -/// will hide the window scrollbar after NK_SCROLLBAR_HIDING_TIMEOUT -/// seconds without window interaction. To make it work -/// you have to also set a delta time inside the `nk_context`. -/// - 2016/07/25 (1.01.1) - Fixed small panel and panel border drawing bugs. -/// - 2016/07/15 (1.01.0) - Added software cursor to `nk_style` and `nk_context`. -/// - 2016/07/15 (1.01.0) - Added const correctness to `nk_buffer_push' data argument. -/// - 2016/07/15 (1.01.0) - Removed internal font baking API and simplified -/// font atlas memory management by converting pointer -/// arrays for fonts and font configurations to lists. -/// - 2016/07/15 (1.00.0) - Changed button API to use context dependent button -/// behavior instead of passing it for every function call. -/// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/// ## Gallery -/// ![Figure [blue]: Feature overview with blue color styling](https://cloud.githubusercontent.com/assets/8057201/13538240/acd96876-e249-11e5-9547-5ac0b19667a0.png) -/// ![Figure [red]: Feature overview with red color styling](https://cloud.githubusercontent.com/assets/8057201/13538243/b04acd4c-e249-11e5-8fd2-ad7744a5b446.png) -/// ![Figure [widgets]: Widget overview](https://cloud.githubusercontent.com/assets/8057201/11282359/3325e3c6-8eff-11e5-86cb-cf02b0596087.png) -/// ![Figure [blackwhite]: Black and white](https://cloud.githubusercontent.com/assets/8057201/11033668/59ab5d04-86e5-11e5-8091-c56f16411565.png) -/// ![Figure [filexp]: File explorer](https://cloud.githubusercontent.com/assets/8057201/10718115/02a9ba08-7b6b-11e5-950f-adacdd637739.png) -/// ![Figure [opengl]: OpenGL Editor](https://cloud.githubusercontent.com/assets/8057201/12779619/2a20d72c-ca69-11e5-95fe-4edecf820d5c.png) -/// ![Figure [nodedit]: Node Editor](https://cloud.githubusercontent.com/assets/8057201/9976995/e81ac04a-5ef7-11e5-872b-acd54fbeee03.gif) -/// ![Figure [skinning]: Using skinning in Nuklear](https://cloud.githubusercontent.com/assets/8057201/15991632/76494854-30b8-11e6-9555-a69840d0d50b.png) -/// ![Figure [bf]: Heavy modified version](https://cloud.githubusercontent.com/assets/8057201/14902576/339926a8-0d9c-11e6-9fee-a8b73af04473.png) -/// -/// ## Credits -/// Developed by Micha Mettke and every direct or indirect github contributor.

-/// -/// Embeds [stb_texedit](https://github.com/nothings/stb/blob/master/stb_textedit.h), [stb_truetype](https://github.com/nothings/stb/blob/master/stb_truetype.h) and [stb_rectpack](https://github.com/nothings/stb/blob/master/stb_rect_pack.h) by Sean Barret (public domain)
-/// Uses [stddoc.c](https://github.com/r-lyeh/stddoc.c) from r-lyeh@github.com for documentation generation

-/// Embeds ProggyClean.ttf font by Tristan Grimmer (MIT license).
-/// -/// Big thank you to Omar Cornut (ocornut@github) for his [imgui library](https://github.com/ocornut/imgui) and -/// giving me the inspiration for this library, Casey Muratori for handmade hero -/// and his original immediate mode graphical user interface idea and Sean -/// Barret for his amazing single header libraries which restored my faith -/// in libraries and brought me to create some of my own. Finally Apoorva Joshi -/// for his single header file packer. -*/ - diff --git a/phobia/phobia.c b/phobia/phobia.c deleted file mode 100644 index 2d822f8..0000000 --- a/phobia/phobia.c +++ /dev/null @@ -1,5725 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include - -#include "gp/dirent.h" -#include "gp/gp.h" - -#include "config.h" -#include "link.h" -#include "serial.h" -#include "nksdl.h" - -#undef main - -#define PHOBIA_FILE_MAX 200 -#define PHOBIA_NODE_MAX 32 -#define PHOBIA_TAB_MAX 40 - -SDL_RWops *TTF_RW_droid_sans_normal(); - -enum { - POPUP_NONE = 0, - POPUP_PHOBIA_ABOUT, - POPUP_LINK_PROGRESS, - POPUP_LINK_WARNING, - POPUP_RESET_DEFAULT, - POPUP_PROBE_DETACHED, - POPUP_DEBUG_LOG, - POPUP_UNABLE_WARNING, - POPUP_FLASH_WIPE, - POPUP_SYSTEM_REBOOT, - POPUP_SYSTEM_BOOTLOAD, - POPUP_TELEMETRY_GRAB -}; - -enum { - DRAWING_EMPTY = 0, - DRAWING_WITH_TOOTH, - DRAWING_WITH_HALL -}; - -struct public { - - struct config_phobia *fe; - struct nk_sdl *nk; - struct link_pmc *lp; - - int fe_def_size_x; - int fe_def_size_y; - int fe_font_h; - int fe_base; - - int fuzzy_count; - - struct { - - int page_current; - int page_selected; - int page_pushed; - - void (* pagetab [PHOBIA_TAB_MAX]) (struct public *); - } - menu; - - struct { - - int started; - - struct serial_list list; - - int selected; - int baudrate; - int parity; - } - serial; - - struct { - - int selected; - } - network; - - struct { - - struct dirent_stat sb; - - struct { - - char name[DIRENT_PATH_MAX]; - char time[24]; - char size[24]; - } - file[PHOBIA_FILE_MAX]; - - int selected; - } - scan; - - struct { - - int log_flush; - char log_message[4000]; - - char file_snap[PHOBIA_PATH_MAX]; - } - debug; - - struct { - - char file_snap[PHOBIA_PATH_MAX]; - char file_grab[PHOBIA_NAME_MAX]; - } - config; - - struct { - - int wait_GP; - - char file_snap[PHOBIA_PATH_MAX]; - char file_grab[PHOBIA_NAME_MAX]; - } - telemetry; - - gp_t *gp; - - int gp_ID; - - char popup_msg[LINK_MESSAGE_MAX]; - int popup_enum; - - char lbuf[PHOBIA_PATH_MAX]; -}; - -static void -pub_font_layout(struct public *pub) -{ - struct config_phobia *fe = pub->fe; - struct nk_sdl *nk = pub->nk; - - if (fe->windowsize == 1) { - - pub->fe_def_size_x = 1200; - pub->fe_def_size_y = 900; - pub->fe_font_h = 26; - pub->fe_base = pub->fe_font_h - 2; - } - else if (fe->windowsize == 2) { - - pub->fe_def_size_x = 1600; - pub->fe_def_size_y = 1200; - pub->fe_font_h = 34; - pub->fe_base = pub->fe_font_h - 2; - } - else { - pub->fe_def_size_x = 900; - pub->fe_def_size_y = 600; - pub->fe_font_h = 18; - pub->fe_base = pub->fe_font_h; - } - - if (nk->ttf_font != NULL) { - - TTF_CloseFont(nk->ttf_font); - } - - nk->ttf_font = TTF_OpenFontRW(TTF_RW_droid_sans_normal(), 1, pub->fe_font_h); - - TTF_SetFontHinting(nk->ttf_font, TTF_HINTING_NORMAL); - - nk->font.userdata.ptr = nk->ttf_font; - nk->font.height = TTF_FontHeight(nk->ttf_font); - nk->font.width = &nk_sdl_text_width; - - SDL_SetWindowMinimumSize(nk->window, pub->fe_def_size_x, pub->fe_def_size_y); - SDL_SetWindowSize(nk->window, pub->fe_def_size_x, pub->fe_def_size_y); -} - -static int -pub_primal_reg(struct public *pub, const struct link_reg *reg) -{ - const char *primal_map[] = { - - "pm.scale_uS0", - "pm.scale_uS1", - "pm.probe_current_hold", - "pm.probe_current_weak", - "pm.probe_current_sine", - "pm.probe_loss_maximal", - "pm.forced_hold_D", - "pm.eabi_const_Zq", - "pm.const_Zp", - "pm.const_ld_S", - "pm.watt_wP_maximal", - "pm.watt_wP_reverse", - "pm.watt_wA_maximal", - "pm.watt_wA_reverse", - "pm.watt_capacity_Ah", - "pm.i_maximal", - "pm.i_reverse", - "pm.i_damping", - "pm.weak_maximal", - "pm.s_maximal", - "pm.s_reverse", - "pm.s_accel", - "pm.s_damping", - "pm.x_maximal", - "pm.x_minimal", - "pm.x_gain_P", - - NULL - }; - - const char **mp; - int rc = 0; - - mp = primal_map; - - while (*mp != NULL) { - - if (strstr(reg->sym, *mp) != NULL) { - - rc = 1; - break; - } - - mp++; - } - - return rc; -} - -static void -pub_contextual(struct public *pub, struct link_reg *reg, struct nk_rect bounds) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_style_push_vec2(ctx, &ctx->style.text.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - if (nk_contextual_begin(ctx, 0, nk_vec2(pub->fe_base * 22, 300), bounds)) { - - nk_layout_row_dynamic(ctx, 0, 1); - - sprintf(pub->lbuf, "Fetch \"%.77s\"", reg->sym); - - if (nk_contextual_item_label(ctx, pub->lbuf, NK_TEXT_LEFT)) { - - if (reg->update == 0) { - - reg->onefetch = 1; - } - } - - if (reg->mode & LINK_REG_CONFIG) { - - /* TODO */ - } - else { - if (reg->update != 0) { - - sprintf(pub->lbuf, "Update Rate = %i (ms)", reg->update); - } - else { - sprintf(pub->lbuf, "Update Disabled"); - } - - if (nk_contextual_item_label(ctx, pub->lbuf, NK_TEXT_LEFT)) { - - reg->update = (reg->update == 0) ? 100 : 0; - } - - if (reg->mode & LINK_REG_TYPE_FLOAT) { - - sprintf(pub->lbuf, "* Range [%.22s; %.22s]", - reg->vmin, reg->vmax); - - if (nk_contextual_item_label(ctx, pub->lbuf, NK_TEXT_LEFT)) { - - reg->fmin = reg->fval; - reg->fmax = reg->fval; - - strcpy(reg->vmin, reg->val); - strcpy(reg->vmax, reg->val); - } - } - } - - nk_contextual_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_style_pop_vec2(ctx); -} - -static void -pub_contextual_hidden(struct public *pub, const char *sym, struct nk_rect bounds) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_style_push_vec2(ctx, &ctx->style.text.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - if (nk_contextual_begin(ctx, 0, nk_vec2(pub->fe_base * 22, 300), bounds)) { - - nk_layout_row_dynamic(ctx, 0, 1); - - sprintf(pub->lbuf, "* Unknown \"%.77s\"", sym); - - nk_label_colored(ctx, pub->lbuf, NK_TEXT_LEFT, - nk->table[NK_COLOR_DESIGN]); - - nk_contextual_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_style_pop_vec2(ctx); -} - -static void -pub_name_label(struct public *pub, const char *name, struct link_reg *reg) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_style_selectable select; - struct nk_rect bounds; - struct nk_color background, text; - - bounds = nk_widget_bounds(ctx); - - if (pub_primal_reg(pub, reg) != 0) { - - background = nk->table[NK_COLOR_CONFIG]; - text = nk->table[NK_COLOR_WINDOW]; - - select = ctx->style.selectable; - - ctx->style.selectable.normal = nk_style_item_color(background); - ctx->style.selectable.hover = nk_style_item_color(background); - ctx->style.selectable.pressed = nk_style_item_color(background); - ctx->style.selectable.normal_active = nk_style_item_color(background); - ctx->style.selectable.hover_active = nk_style_item_color(background); - ctx->style.selectable.pressed_active = nk_style_item_color(background); - ctx->style.selectable.text_normal = text; - ctx->style.selectable.text_hover = text; - ctx->style.selectable.text_pressed = text; - ctx->style.selectable.text_normal_active = text; - ctx->style.selectable.text_hover_active = text; - ctx->style.selectable.text_pressed_active = text; - - nk_select_label(ctx, name, NK_TEXT_LEFT, 0); - - ctx->style.selectable = select; - } - else { - if (reg->mode & LINK_REG_CONFIG) { - - text = nk->table[NK_COLOR_CONFIG]; - - nk_label_colored(ctx, name, NK_TEXT_LEFT, text); - } - else { - nk_label(ctx, name, NK_TEXT_LEFT); - } - } - - pub_contextual(pub, reg, bounds); -} - -static void -pub_name_label_hidden(struct public *pub, const char *name, const char *sym) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - bounds = nk_widget_bounds(ctx); - - nk_label_colored(ctx, name, NK_TEXT_LEFT, nk->table[NK_COLOR_HIDDEN]); - - pub_contextual_hidden(pub, sym, bounds); -} - -static int -pub_combo_linked(struct public *pub, struct link_reg *reg, - int item_height, struct nk_vec2 size) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct nk_panel *layout = ctx->current->layout; - - struct nk_vec2 spacing; - struct nk_vec2 padding; - - int max_height; - int reg_ID, select_ID; - - spacing = ctx->style.window.spacing; - padding = ctx->style.window.group_padding; - max_height = pub->fuzzy_count * (item_height + (int) spacing.y); - max_height += layout->row.min_height + (int) spacing.y; - max_height += (int) spacing.y * 2 + (int) padding.y * 2; - size.y = NK_MIN(size.y, (float) max_height); - - select_ID = (reg->lval >= lp->reg_MAX_N) ? 0 - : (reg->lval < 0) ? 0 : reg->lval; - - if (nk_combo_begin_label(ctx, lp->reg[select_ID].sym, size)) { - - struct nk_style_button button; - - button = ctx->style.button; - button.normal = button.active; - button.hover = button.active; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - if (nk_button_symbol_styled(ctx, &button, NK_SYMBOL_RECT_SOLID)) { - - strcpy(pub->fe->fuzzy, "setpoint"); - } - - nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD, - pub->fe->fuzzy, sizeof(pub->fe->fuzzy), - nk_filter_default); - - pub->fuzzy_count = 0; - - nk_layout_row_dynamic(ctx, (float) item_height, 1); - - for (reg_ID = 0; reg_ID < lp->reg_MAX_N; ++reg_ID) { - - if (lp->reg[reg_ID].sym[0] != 0) { - - if (strstr(lp->reg[reg_ID].sym, pub->fe->fuzzy) != NULL) { - - if (nk_combo_item_label(ctx, lp->reg[reg_ID].sym, - NK_TEXT_LEFT)) { - - select_ID = reg_ID; - } - - pub->fuzzy_count++; - } - } - } - - pub->fuzzy_count = (pub->fuzzy_count > 0) ? pub->fuzzy_count : 1; - - nk_combo_end(ctx); - } - - return select_ID; -} - -static struct nk_rect -pub_get_popup_bounds_about(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect win, popup; - - win = nk_window_get_content_region(ctx); - - popup.w = win.w * 0.8f; - popup.h = win.h * 0.8f; - - popup.x = win.w / 2.0f - popup.w / 2.0f; - popup.y = win.h * 0.2f; - - return popup; -} - -static struct nk_rect -pub_get_popup_bounds_tiny(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect win, popup; - - win = nk_window_get_content_region(ctx); - - popup.w = win.w * 0.8f; - popup.h = win.h * 0.8f; - - popup.x = win.w / 2.0f - popup.w / 2.0f; - popup.y = win.h * 0.4f; - - return popup; -} - -static struct nk_rect -pub_get_popup_bounds_full(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect win, popup; - - win = nk_window_get_content_region(ctx); - - popup.w = win.w; - popup.h = win.h; - - popup.x = win.w / 2.0f - popup.w / 2.0f; - popup.y = win.h / 2.0f - popup.h / 2.0f; - - return popup; -} - -static void -pub_popup_about(struct public *pub, int popup) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - if (pub->popup_enum != popup) - return ; - - bounds = pub_get_popup_bounds_about(pub); - - if (nk_popup_begin(ctx, NK_POPUP_DYNAMIC, " ", NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - nk_layout_row_template_begin(ctx, pub->fe_font_h * 4); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_label_wrap(ctx, "Phobia graphical front-end software designed to" - " configure and control PMC through a serial port."); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_label(ctx, "License: GPLv3", NK_TEXT_LEFT); - nk_spacer(ctx); - - nk_spacer(ctx); - nk_label(ctx, "Build: " __DATE__, NK_TEXT_LEFT); - nk_spacer(ctx); - - nk_spacer(ctx); - nk_label(ctx, "* https://sourceforge.net/projects/phobia", NK_TEXT_LEFT); - nk_spacer(ctx); - - nk_spacer(ctx); - nk_label(ctx, "* https://github.com/rombrew/phobia", NK_TEXT_LEFT); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "OK")) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_spacer(ctx); - - nk_popup_end(ctx); - } - else { - pub->popup_enum = 0; - } -} - -static void -pub_popup_message(struct public *pub, int popup, const char *msg) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - if (pub->popup_enum != popup) - return ; - - bounds = pub_get_popup_bounds_tiny(pub); - - if (nk_popup_begin(ctx, NK_POPUP_DYNAMIC, " ", NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - nk_layout_row_template_begin(ctx, pub->fe_font_h * 5); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_label_wrap(ctx, msg); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "OK")) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_spacer(ctx); - - nk_popup_end(ctx); - } - else { - pub->popup_enum = 0; - } -} - -static void -pub_popup_debug(struct public *pub, int popup, const char *title) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - if (pub->popup_enum != popup) - return ; - - bounds = pub_get_popup_bounds_about(pub); - - if (nk_popup_begin(ctx, NK_POPUP_DYNAMIC, title, NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - nk_layout_row_template_begin(ctx, pub->fe_font_h * 12); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE | NK_EDIT_MULTILINE, - pub->debug.log_message, sizeof(pub->debug.log_message), - nk_filter_default); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "OK")) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Clean")) { - - if (link_command(pub->lp, "ap_log_clean") != 0) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - } - - nk_spacer(ctx); - - nk_popup_end(ctx); - } - else { - pub->popup_enum = 0; - } -} - -static void -pub_popup_progress(struct public *pub, int popup, const char *title, int pce) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - if (pub->popup_enum != popup) - return ; - - bounds = pub_get_popup_bounds_tiny(pub); - - if (nk_popup_begin(ctx, NK_POPUP_DYNAMIC, title, NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_prog(ctx, pce, 1000, nk_false); - nk_spacer(ctx); - - if (pce >= 1000) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_popup_end(ctx); - } - else { - pub->popup_enum = 0; - } -} - -static int -pub_popup_ok_cancel(struct public *pub, int popup, const char *msg) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - - int rc = 0; - - if (pub->popup_enum != popup) - return 0; - - bounds = pub_get_popup_bounds_tiny(pub); - - if (nk_popup_begin(ctx, NK_POPUP_DYNAMIC, " ", NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - nk_layout_row_template_begin(ctx, pub->fe_font_h * 5); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - nk_label_wrap(ctx, msg); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "OK")) { - - rc = 1; - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Cancel")) { - - nk_popup_close(ctx); - - pub->popup_enum = 0; - } - - nk_spacer(ctx); - - nk_popup_end(ctx); - } - else { - pub->popup_enum = 0; - } - - return rc; -} - -static void -pub_directory_scan(struct public *pub, const char *sup) -{ - int len, ofs, bsz, kmg, N; - - if (dirent_open(&pub->scan.sb, pub->fe->storage) != ENT_OK) - return ; - - len = strlen(sup); - N = 0; - - while (dirent_read(&pub->scan.sb) == ENT_OK) { - - if (pub->scan.sb.ntype == ENT_TYPE_REGULAR) { - - ofs = strlen(pub->scan.sb.name) - len; - - if (memcmp(pub->scan.sb.name + ofs, sup, len) == 0) { - - strcpy(pub->scan.file[N].name, pub->scan.sb.name); - strcpy(pub->scan.file[N].time, pub->scan.sb.time); - - bsz = pub->scan.sb.nsize; - kmg = 0; - - while (bsz >= 1024U) { bsz /= 1024U; ++kmg; } - - sprintf(pub->scan.file[N].size, "%4d %cb", - (int) bsz, " KMG??" [kmg]); - - ++N; - - if (N >= PHOBIA_FILE_MAX - 1) - break; - } - } - } - - dirent_close(&pub->scan.sb); - - pub->scan.file[N].name[0] = 0; - pub->scan.selected = - 1; -} - -static void -pub_open_GP(struct public *pub, const char *file) -{ - if (pub->gp != NULL) { - - gp_Clean(pub->gp); - } - - pub->gp = gp_Alloc(); - - sprintf(pub->lbuf, "chunk 10\n" - "timeout 10000\n" - "load 0 0 text \"%s\"\n" - "mkpages 0\n", file); - - gp_TakeConfig(pub->gp, pub->lbuf); - - pub->gp_ID = gp_OpenWindow(pub->gp); -} - -static void -pub_popup_telemetry_grab(struct public *pub, int popup) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect bounds; - struct nk_style_button disabled; - - int height; - int N, sel, newsel; - - if (pub->popup_enum != popup) - return ; - - bounds = pub_get_popup_bounds_full(pub); - - if (nk_popup_begin(ctx, NK_POPUP_STATIC, " ", NK_WINDOW_CLOSABLE - | NK_WINDOW_NO_SCROLLBAR, bounds)) { - - struct link_reg *reg_tlm; - - reg_tlm = link_reg_lookup(lp, "tlm.mode"); - - if (reg_tlm != NULL) { - - reg_tlm->update = (reg_tlm->lval != 0) ? 100 : 1000; - reg_tlm->shown = lp->clock; - } - - nk_layout_row_dynamic(ctx, pub->fe_base, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 10); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 9); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Grab into RAM")) { - - link_command(lp, "tlm_grab"); - - if (reg_tlm != NULL) { - - reg_tlm->lval = 1; - } - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Watch on PM")) { - - link_command(lp, "tlm_watch"); - - if (reg_tlm != NULL) { - - reg_tlm->lval = 1; - } - } - - nk_spacer(ctx); - - if (reg_tlm != NULL && reg_tlm->lval == 0) { - - if (nk_button_label(ctx, "Flush GP")) { - - strcpy(pub->lbuf, pub->fe->storage); - strcat(pub->lbuf, DIRSEP); - strcat(pub->lbuf, pub->telemetry.file_grab); - strcpy(pub->telemetry.file_snap, pub->lbuf); - - if (link_grab_file_open(lp, pub->telemetry.file_snap) != 0) { - - if (link_command(lp, "tlm_flush_sync") != 0) { - - pub->telemetry.wait_GP = 1; - } - - pub_directory_scan(pub, FILE_TLM_EXT); - } - } - } - else { - disabled = ctx->style.button; - - disabled.normal = disabled.active; - disabled.hover = disabled.active; - disabled.text_normal = disabled.text_active; - disabled.text_hover = disabled.text_active; - - if (nk_button_label_styled(ctx, &disabled, "Stop")) { - - link_command(lp, "tlm_stop"); - - if (reg_tlm != NULL) { - - reg_tlm->lval = 0; - } - } - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Live GP")) { - - strcpy(pub->lbuf, pub->fe->storage); - strcat(pub->lbuf, DIRSEP); - strcat(pub->lbuf, pub->telemetry.file_grab); - strcpy(pub->telemetry.file_snap, pub->lbuf); - - if (link_grab_file_open(lp, pub->telemetry.file_snap) != 0) { - - if (link_command(lp, "tlm_live_sync") != 0) { - - pub->telemetry.wait_GP = 1; - } - - if (reg_tlm != NULL) { - - reg_tlm->lval = 1; - } - - pub_directory_scan(pub, FILE_TLM_EXT); - } - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, pub->fe_base, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 5); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - sprintf(pub->lbuf, "# %i", lp->grab_N); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - - nk_spacer(ctx); - - nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD, - pub->telemetry.file_grab, - sizeof(pub->telemetry.file_grab), - nk_filter_default); - - if ( pub->scan.selected >= 0 - && pub->scan.selected < PHOBIA_FILE_MAX) { - - N = pub->scan.selected; - - if ( strcmp(pub->scan.file[N].name, - pub->telemetry.file_grab) != 0) { - - pub->scan.selected = -1; - } - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - height = ctx->current->bounds.h - ctx->current->layout->row.height * 8; - - nk_layout_row_template_begin(ctx, height); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "FILES", NK_WINDOW_BORDER)) { - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 10); - nk_layout_row_template_push_static(ctx, pub->fe_base * 5); - nk_layout_row_template_end(ctx); - - for (N = 0; N < PHOBIA_FILE_MAX; ++N) { - - if (pub->scan.file[N].name[0] == 0) - break; - - sel = (N == pub->scan.selected) ? 1 : 0; - - newsel = nk_select_label(ctx, pub->scan.file[N].name, - NK_TEXT_LEFT, sel); - - newsel |= nk_select_label(ctx, pub->scan.file[N].time, - NK_TEXT_LEFT, sel); - - newsel |= nk_select_label(ctx, pub->scan.file[N].size, - NK_TEXT_RIGHT, sel); - - if (newsel != sel && newsel != 0) { - - pub->scan.selected = N; - - strcpy(pub->telemetry.file_grab, - pub->scan.file[N].name); - } - } - - nk_group_end(ctx); - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, pub->fe_base, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Scan")) { - - pub_directory_scan(pub, FILE_TLM_EXT); - } - - nk_spacer(ctx); - - if ( pub->scan.selected >= 0 - && pub->scan.selected < PHOBIA_FILE_MAX) { - - if (nk_button_label(ctx, "Plot GP")) { - - strcpy(pub->lbuf, pub->fe->storage); - strcat(pub->lbuf, DIRSEP); - strcat(pub->lbuf, pub->telemetry.file_grab); - strcpy(pub->telemetry.file_snap, pub->lbuf); - - pub_open_GP(pub, pub->telemetry.file_snap); - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Remove")) { - - strcpy(pub->lbuf, pub->fe->storage); - strcat(pub->lbuf, DIRSEP); - strcat(pub->lbuf, pub->telemetry.file_grab); - - file_remove(pub->lbuf); - - pub_directory_scan(pub, FILE_TLM_EXT); - } - } - else { - disabled = ctx->style.button; - - disabled.normal = disabled.active; - disabled.hover = disabled.active; - disabled.text_normal = disabled.text_active; - disabled.text_hover = disabled.text_active; - - nk_button_label_styled(ctx, &disabled, "Plot GP"); - - nk_spacer(ctx); - - nk_button_label_styled(ctx, &disabled, "Remove"); - } - - nk_spacer(ctx); - - if ( pub->telemetry.wait_GP != 0 - && lp->grab_N >= 5) { - - pub->telemetry.wait_GP = 0; - - pub_open_GP(pub, pub->telemetry.file_snap); - } - - nk_popup_end(ctx); - } - else { - if (lp->grab_N != 0) { - - link_grab_file_close(lp); - } - - pub->popup_enum = 0; - } -} - -static void -pub_drawing_machine_position(struct public *pub, float fpos[2], int dtype) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct nk_command_buffer *canvas = nk_window_get_canvas(ctx); - struct nk_rect space; - - float tfm[4], arrow[10], pbuf[10]; - float radius, thickness, len; - int N, Zp = 0; - - if (nk_widget(&space, ctx) == NK_WIDGET_INVALID) - return ; - - radius = space.w / 2.f; - thickness = radius / 10.f; - - space.x += thickness; - space.y += thickness; - space.w += - 2.f * thickness; - space.h += - 2.f * thickness; - - nk_fill_circle(canvas, space, nk->table[NK_COLOR_DESIGN]); - - space.x += thickness; - space.y += thickness; - space.w += - 2.f * thickness; - space.h += - 2.f * thickness; - - nk_fill_circle(canvas, space, nk->table[NK_COLOR_WINDOW]); - - tfm[0] = space.x + space.w / 2.f; - tfm[1] = space.y + space.h / 2.f; - - if (dtype == DRAWING_WITH_TOOTH) { - - struct link_reg *reg; - - reg = link_reg_lookup(lp, "pm.const_Zp"); - if (reg != NULL) { Zp = reg->lval; } - - if (Zp != 0) { - - arrow[0] = radius - 3.f * thickness; - arrow[1] = - .5f * thickness; - arrow[2] = radius - 3.f * thickness; - arrow[3] = .5f * thickness; - arrow[4] = radius - 1.5f * thickness; - arrow[5] = .5f * thickness; - arrow[6] = radius - 1.5f * thickness; - arrow[7] = - .5f * thickness; - } - } - - for (N = 0; N < Zp; ++N) { - - float Za = (float) N * (float) (2. * M_PI) / (float) Zp; - - tfm[2] = cosf(Za); - tfm[3] = - sinf(Za); - - pbuf[0] = tfm[0] + (tfm[2] * arrow[0] - tfm[3] * arrow[1]); - pbuf[1] = tfm[1] + (tfm[3] * arrow[0] + tfm[2] * arrow[1]); - pbuf[2] = tfm[0] + (tfm[2] * arrow[2] - tfm[3] * arrow[3]); - pbuf[3] = tfm[1] + (tfm[3] * arrow[2] + tfm[2] * arrow[3]); - pbuf[4] = tfm[0] + (tfm[2] * arrow[4] - tfm[3] * arrow[5]); - pbuf[5] = tfm[1] + (tfm[3] * arrow[4] + tfm[2] * arrow[5]); - pbuf[6] = tfm[0] + (tfm[2] * arrow[6] - tfm[3] * arrow[7]); - pbuf[7] = tfm[1] + (tfm[3] * arrow[6] + tfm[2] * arrow[7]); - - nk_fill_polygon(canvas, pbuf, 4, nk->table[NK_COLOR_DESIGN]); - } - - if (dtype == DRAWING_WITH_HALL) { - - struct nk_color col; - struct link_reg *reg; - int hall = -1; - - reg = link_reg_lookup(lp, "pm.fb_HS"); - if (reg != NULL) { hall = reg->lval; } - - arrow[0] = radius - 2.f * thickness; - arrow[1] = - thickness; - arrow[2] = radius - 2.f * thickness; - arrow[3] = thickness; - arrow[4] = radius; - arrow[5] = thickness; - arrow[6] = radius; - arrow[7] = - thickness; - - for (N = 1; N <= 6; ++N) { - - sprintf(pub->lbuf, "pm.hall_ST%i", N); - - reg = link_reg_lookup(lp, pub->lbuf); - - if (reg == NULL) - break; - - if ((reg->mode & LINK_REG_TYPE_FLOAT) == 0) - break; - - tfm[2] = cosf(reg->fval * (float) (M_PI / 180.)); - tfm[3] = - sinf(reg->fval * (float) (M_PI / 180.)); - - pbuf[0] = tfm[0] + (tfm[2] * arrow[0] - tfm[3] * arrow[1]); - pbuf[1] = tfm[1] + (tfm[3] * arrow[0] + tfm[2] * arrow[1]); - pbuf[2] = tfm[0] + (tfm[2] * arrow[2] - tfm[3] * arrow[3]); - pbuf[3] = tfm[1] + (tfm[3] * arrow[2] + tfm[2] * arrow[3]); - pbuf[4] = tfm[0] + (tfm[2] * arrow[4] - tfm[3] * arrow[5]); - pbuf[5] = tfm[1] + (tfm[3] * arrow[4] + tfm[2] * arrow[5]); - pbuf[6] = tfm[0] + (tfm[2] * arrow[6] - tfm[3] * arrow[7]); - pbuf[7] = tfm[1] + (tfm[3] * arrow[6] + tfm[2] * arrow[7]); - - col = (N == hall) ? nk->table[NK_COLOR_ENABLED] - : nk->table[NK_COLOR_HIDDEN]; - - nk_fill_polygon(canvas, pbuf, 4, col); - } - } - - len = sqrtf(fpos[0] * fpos[0] + fpos[1] * fpos[1]); - - if (len != 0.f) { - - tfm[2] = fpos[0] / len; - tfm[3] = - fpos[1] / len; - } - else { - tfm[2] = 1.f; - tfm[3] = 0.f; - } - - arrow[0] = - .5f * thickness; - arrow[1] = - .5f * thickness; - arrow[2] = - .5f * thickness; - arrow[3] = .5f * thickness; - arrow[4] = radius - 3.f * thickness; - arrow[5] = .5f * thickness; - arrow[6] = radius - 2.f * thickness; - arrow[7] = 0.f; - arrow[8] = radius - 3.f * thickness; - arrow[9] = - .5f * thickness; - - pbuf[0] = tfm[0] + (tfm[2] * arrow[0] - tfm[3] * arrow[1]); - pbuf[1] = tfm[1] + (tfm[3] * arrow[0] + tfm[2] * arrow[1]); - pbuf[2] = tfm[0] + (tfm[2] * arrow[2] - tfm[3] * arrow[3]); - pbuf[3] = tfm[1] + (tfm[3] * arrow[2] + tfm[2] * arrow[3]); - pbuf[4] = tfm[0] + (tfm[2] * arrow[4] - tfm[3] * arrow[5]); - pbuf[5] = tfm[1] + (tfm[3] * arrow[4] + tfm[2] * arrow[5]); - pbuf[6] = tfm[0] + (tfm[2] * arrow[6] - tfm[3] * arrow[7]); - pbuf[7] = tfm[1] + (tfm[3] * arrow[6] + tfm[2] * arrow[7]); - pbuf[8] = tfm[0] + (tfm[2] * arrow[8] - tfm[3] * arrow[9]); - pbuf[9] = tfm[1] + (tfm[3] * arrow[8] + tfm[2] * arrow[9]); - - nk_fill_polygon(canvas, pbuf, 5, nk->table[NK_COLOR_EDIT_NUMBER]); -} - -static void -pub_drawing_flash_colored(struct nk_sdl *nk, const int sym) -{ - struct nk_context *ctx = &nk->ctx; - - struct nk_style_selectable select; - struct nk_color colored; - - select = ctx->style.selectable; - - if (sym == 'a') { - - colored = nk->table[NK_COLOR_ENABLED]; - } - else if (sym == 'x') { - - colored = nk->table[NK_COLOR_FLICKER_LIGHT]; - } - else { - colored = nk->table[NK_COLOR_HIDDEN]; - } - - ctx->style.selectable.normal = nk_style_item_color(colored); - ctx->style.selectable.hover = nk_style_item_color(colored); - ctx->style.selectable.pressed = nk_style_item_color(colored); - ctx->style.selectable.normal_active = nk_style_item_color(colored); - ctx->style.selectable.hover_active = nk_style_item_color(colored); - ctx->style.selectable.pressed_active = nk_style_item_color(colored); - - nk_select_label(ctx, " ", NK_TEXT_LEFT, 0); - - ctx->style.selectable = select; -} - -static void -reg_enum_toggle(struct public *pub, const char *sym, const char *name) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_selectable select; - struct nk_color hidden; - int rc; - - select = ctx->style.selectable; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - pub_name_label(pub, name, reg); - - rc = nk_select_label(ctx, reg->um, NK_TEXT_LEFT, reg->lval); - - if (rc != reg->lval) { - - sprintf(reg->val, "%i", (rc != 0) ? 1 : 0); - - reg->modified = lp->clock; - reg->lval = rc; - } - - nk_spacer(ctx); - nk_label(ctx, reg->val, NK_TEXT_LEFT); - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - nk_spacer(ctx); - } - - ctx->style.selectable = select; -} - -static void -reg_enum_errno(struct public *pub, const char *sym, const char *name, int onalert) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_selectable select; - struct nk_color hidden; - - select = ctx->style.selectable; - - hidden = nk->table[NK_COLOR_WINDOW]; - - ctx->style.selectable.normal = nk_style_item_color(hidden); - ctx->style.selectable.hover = nk_style_item_color(hidden); - ctx->style.selectable.pressed = nk_style_item_color(hidden); - ctx->style.selectable.normal_active = nk_style_item_color(hidden); - ctx->style.selectable.hover_active = nk_style_item_color(hidden); - ctx->style.selectable.pressed_active = nk_style_item_color(hidden); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 20); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 0); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.selectable.normal = nk_style_item_color(flash); - ctx->style.selectable.hover = nk_style_item_color(flash); - ctx->style.selectable.pressed = nk_style_item_color(flash); - ctx->style.selectable.normal_active = nk_style_item_color(flash); - ctx->style.selectable.hover_active = nk_style_item_color(flash); - ctx->style.selectable.pressed_active = nk_style_item_color(flash); - } - - if ( onalert != 0 - && reg->lval != 0) { - - struct nk_color alert; - - alert = nk->table[NK_COLOR_FLICKER_ALERT]; - - ctx->style.selectable.normal = nk_style_item_color(alert); - ctx->style.selectable.hover = nk_style_item_color(alert); - ctx->style.selectable.pressed = nk_style_item_color(alert); - ctx->style.selectable.normal_active = nk_style_item_color(alert); - ctx->style.selectable.hover_active = nk_style_item_color(alert); - ctx->style.selectable.pressed_active = nk_style_item_color(alert); - } - - pub_name_label(pub, name, reg); - nk_select_label(ctx, reg->um, NK_TEXT_LEFT, 0); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label(ctx, reg->val, NK_TEXT_LEFT); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - } - - ctx->style.selectable = select; -} - -static void -reg_enum_get_item(void *userdata, int n, const char **item) -{ - struct link_reg *reg = (struct link_reg *) userdata; - - if (reg->combo[n] != NULL) { - - *item = reg->combo[n]; - } - else { - *item = " "; - } -} - -static void -reg_enum_combo(struct public *pub, const char *sym, const char *name, int onlight) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_combo combo; - struct nk_color hidden; - int rc; - - combo = ctx->style.combo; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 20); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 0); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - pub_name_label(pub, name, reg); - - reg->lval = (reg->lval < reg->lmax_combo + 2 - && reg->lval >= 0) ? reg->lval : 0; - - if ( onlight != 0 - && reg->lval != 0) { - - struct nk_color normal, hover; - - normal = nk->table[NK_COLOR_SELECT_ACTIVE]; - hover = nk->table[NK_COLOR_ACTIVE_HOVER]; - - ctx->style.combo.normal = nk_style_item_color(normal); - ctx->style.combo.hover = nk_style_item_color(hover); - ctx->style.combo.active = nk_style_item_color(normal); - ctx->style.combo.button.normal = ctx->style.combo.normal; - ctx->style.combo.button.hover = ctx->style.combo.hover; - ctx->style.combo.button.active = ctx->style.combo.active; - } - - rc = nk_combo_callback(ctx, ®_enum_get_item, reg, - reg->lval, reg->lmax_combo + 2, pub->fe_font_h + 10, - nk_vec2(pub->fe_base * 20, 400)); - - if (rc != reg->lval) { - - sprintf(reg->val, "%i", rc); - - reg->modified = lp->clock; - } - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label(ctx, reg->val, NK_TEXT_LEFT); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - } - - ctx->style.combo = combo; -} - -static void -reg_text_large(struct public *pub, const char *sym, const char *name) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_edit edit; - - edit = ctx->style.edit; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 20); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.edit.normal = nk_style_item_color(flash); - ctx->style.edit.hover = nk_style_item_color(flash); - ctx->style.edit.active = nk_style_item_color(flash); - } - - pub_name_label(pub, name, reg); - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - reg->val, 79, nk_filter_default); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - } - - ctx->style.edit = edit; -} - -static void -reg_float(struct public *pub, const char *sym, const char *name) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_edit edit; - struct nk_color hidden; - - edit = ctx->style.edit; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL) { - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.edit.normal = nk_style_item_color(flash); - ctx->style.edit.hover = nk_style_item_color(flash); - ctx->style.edit.active = nk_style_item_color(flash); - } - - pub_name_label(pub, name, reg); - - if (reg->mode & LINK_REG_READ_ONLY) { - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - reg->val, 79, nk_filter_default); - } - else { - int rc; - - rc = nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD - | NK_EDIT_SIG_ENTER, reg->val, 79, nk_filter_default); - - if (rc & (NK_EDIT_DEACTIVATED | NK_EDIT_COMMITED)) { - - reg->modified = lp->clock; - } - } - - nk_spacer(ctx); - - if (reg->um[0] != 0) { - - sprintf(pub->lbuf, "(%.16s)", reg->um); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - } - else { - nk_spacer(ctx); - } - - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - nk_spacer(ctx); - } - - ctx->style.edit = edit; -} - -static void -reg_um_get_item(void *userdata, int n, const char **item) -{ - struct link_reg *reg = (struct link_reg *) userdata; - - *item = reg[n].um; -} - -static void -reg_float_um(struct public *pub, const char *sym, const char *name, int defsel) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_edit edit; - struct nk_color hidden; - int rc, min_ID, max_ID; - - edit = ctx->style.edit; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - if (sym[0] >= '0' && sym[0] <= '9' && sym[1] == '/') { - - reg = link_reg_lookup(lp, sym + 2); - - if (reg != NULL) { - - rc = (int) (sym[0] - '1'); - - min_ID = (int) (reg - lp->reg); - max_ID = min_ID + rc; - } - else { - rc = 0; - } - } - else { - rc = link_reg_lookup_range(lp, sym, &min_ID, &max_ID); - } - - if (rc != 0 && max_ID >= min_ID) { - - if (lp->reg[min_ID + defsel].shown == 0) { - - lp->reg[min_ID].um_sel = defsel; - } - - reg = &lp->reg[min_ID + lp->reg[min_ID].um_sel]; - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.edit.normal = nk_style_item_color(flash); - ctx->style.edit.hover = nk_style_item_color(flash); - ctx->style.edit.active = nk_style_item_color(flash); - } - - pub_name_label(pub, name, reg); - - if (reg->mode & LINK_REG_READ_ONLY) { - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - reg->val, 79, nk_filter_default); - } - else { - rc = nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD - | NK_EDIT_SIG_ENTER, reg->val, 79, nk_filter_default); - - if (rc & (NK_EDIT_DEACTIVATED | NK_EDIT_COMMITED)) { - - reg->modified = lp->clock; - } - } - - nk_spacer(ctx); - - if (max_ID != min_ID) { - - rc = nk_combo_callback(ctx, ®_um_get_item, - &lp->reg[min_ID], lp->reg[min_ID].um_sel, - (max_ID - min_ID) + 1, pub->fe_font_h + 10, - nk_vec2(pub->fe_base * 8, 400)); - - if (rc != lp->reg[min_ID].um_sel) { - - lp->reg[min_ID].um_sel = rc; - lp->reg[min_ID + lp->reg[min_ID].um_sel].onefetch = 1; - } - } - else { - if (reg->um[0] != 0) { - - sprintf(pub->lbuf, "(%.16s)", reg->um); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - } - else { - nk_spacer(ctx); - } - } - - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - nk_spacer(ctx); - } - - ctx->style.edit = edit; -} - -static void -reg_linked(struct public *pub, const char *sym, const char *name) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_combo combo; - struct nk_color hidden; - int rc; - - combo = ctx->style.combo; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 20); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 0); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - reg = link_reg_lookup(lp, sym); - - if (reg != NULL && (reg->mode & LINK_REG_LINKED) != 0) { - - pub_name_label(pub, name, reg); - - rc = pub_combo_linked(pub, reg, pub->fe_font_h + 5, - nk_vec2(pub->fe_base * 20, 400)); - - if (rc != reg->lval) { - - sprintf(reg->val, "%i", rc); - - reg->modified = lp->clock; - } - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label(ctx, reg->val, NK_TEXT_LEFT); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - pub_name_label_hidden(pub, name, sym); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - } - - ctx->style.combo = combo; -} - -static void -reg_float_prog_by_ID(struct public *pub, int reg_ID) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg = NULL; - - struct nk_rect bounds; - struct nk_style_edit edit; - struct nk_color hidden; - - int pce = 0; - - edit = ctx->style.edit; - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - } - - if ( reg != NULL - && (reg->mode & LINK_REG_CONFIG) == 0) { - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.edit.normal = nk_style_item_color(flash); - ctx->style.edit.hover = nk_style_item_color(flash); - ctx->style.edit.active = nk_style_item_color(flash); - } - - if ( reg->started != 0 - && reg->fmin < reg->fmax) { - - pce = (int) (1000.f * (reg->fval - reg->fmin) - / (reg->fmax - reg->fmin)); - } - - bounds = nk_widget_bounds(ctx); - - nk_prog(ctx, pce, 1000, nk_false); - nk_spacer(ctx); - - pub_contextual(pub, reg, bounds); - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - reg->val, 79, nk_filter_default); - - nk_spacer(ctx); - - if (reg->um[0] != 0) { - - sprintf(pub->lbuf, "(%.16s)", reg->um); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - } - else { - nk_spacer(ctx); - } - - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - nk_prog(ctx, 0, 1000, nk_false); - nk_spacer(ctx); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - nk_spacer(ctx); - } - - nk_layout_row_dynamic(ctx, pub->fe_base, 1); - nk_spacer(ctx); - - ctx->style.edit = edit; -} - -static void -reg_float_prog_um(struct public *pub, const char *sym, const char *name, - float fmin, float fmax, int defsel) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_rect bounds; - struct nk_style_edit edit; - struct nk_color hidden; - - int rc, min, max, pce = 0; - - edit = ctx->style.edit; - - rc = link_reg_lookup_range(lp, sym, &min, &max); - - if (rc != 0 && max >= min) { - - if (lp->reg[min + defsel].shown == 0) { - - lp->reg[min].um_sel = defsel; - } - - reg = &lp->reg[min + lp->reg[min].um_sel]; - - if (reg->fetched + 500 > lp->clock) { - - struct nk_color flash; - - flash = nk->table[NK_COLOR_FLICKER_LIGHT]; - - ctx->style.edit.normal = nk_style_item_color(flash); - ctx->style.edit.hover = nk_style_item_color(flash); - ctx->style.edit.active = nk_style_item_color(flash); - } - - nk_layout_row_dynamic(ctx, 0, 1); - pub_name_label(pub, name, reg); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - if (fmin < fmax) { - - /* Use external range */ - } - else if (reg->um[0] == '%') { - - fmin = 0.f; - fmax = 100.f; - } - else if ( reg->started != 0 - && reg->fmin < reg->fmax) { - - fmin = reg->fmin; - fmax = reg->fmax; - } - - pce = (int) (1000.f * (reg->fval - fmin) / (fmax - fmin)); - pce = (pce > 1000) ? 1000 : (pce < 0) ? 0 : pce; - - bounds = nk_widget_bounds(ctx); - - if (reg->mode & LINK_REG_READ_ONLY) { - - nk_prog(ctx, pce, 1000, nk_false); - nk_spacer(ctx); - - pub_contextual(pub, reg, bounds); - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - reg->val, 79, nk_filter_default); - } - else { - rc = nk_prog(ctx, pce, 1000, nk_true); - - if (rc != pce) { - - pce = (rc > 1000) ? 1000 : (rc < 0) ? 0 : rc; - - reg->fval = (float) pce * (fmax - fmin) / 1000.f + fmin; - - sprintf(reg->val, "%.4f", reg->fval); - - reg->modified = lp->clock; - } - - nk_spacer(ctx); - - pub_contextual(pub, reg, bounds); - - rc = nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD - | NK_EDIT_SIG_ENTER, reg->val, 79, nk_filter_default); - - if (rc & (NK_EDIT_DEACTIVATED | NK_EDIT_COMMITED)) { - - reg->modified = lp->clock; - } - } - - nk_spacer(ctx); - - if (max != min) { - - rc = nk_combo_callback(ctx, ®_um_get_item, - &lp->reg[min], lp->reg[min].um_sel, - (max - min) + 1, pub->fe_font_h + 10, - nk_vec2(pub->fe_base * 8, 400)); - - if (rc != lp->reg[min].um_sel) { - - lp->reg[min].um_sel = rc; - lp->reg[min + lp->reg[min].um_sel].onefetch = 1; - } - } - else { - if (reg->um[0] != 0) { - - sprintf(pub->lbuf, "(%.16s)", reg->um); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - } - else { - nk_spacer(ctx); - } - } - - nk_spacer(ctx); - - reg->shown = lp->clock; - } - else { - hidden = nk->table[NK_COLOR_HIDDEN]; - - nk_layout_row_dynamic(ctx, 0, 1); - pub_name_label_hidden(pub, name, sym); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 11); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - nk_prog(ctx, 0, 1000, nk_false); - nk_spacer(ctx); - - pub->lbuf[0] = 0; - - nk_edit_string_zero_terminated(ctx, NK_EDIT_SELECTABLE, - pub->lbuf, 79, nk_filter_default); - - nk_spacer(ctx); - nk_label_colored(ctx, "x", NK_TEXT_LEFT, hidden); - nk_spacer(ctx); - } - - ctx->style.edit = edit; -} - -static void -page_serial(struct public *pub) -{ - struct config_phobia *fe = pub->fe; - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - struct nk_style_button orange; - - const char *ls_baudrate[] = { - - "9600", "19200", "57600", "115200" - }; - - const char *ls_parity[] = { - - "None", "Even", "Odd" - }; - - const char *ls_windowsize[] = { - - "900x600", "1200x900", "1600x1200" - }; - - int rc, select; - - orange = ctx->style.button; - orange.normal = nk_style_item_color(nk->table[NK_COLOR_ORANGE_BUTTON]); - orange.hover = nk_style_item_color(nk->table[NK_COLOR_ORANGE_HOVER]); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 13); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - if (lp->linked == 0) { - - if (pub->serial.started == 0) { - - const char *portname; - int N; - - serial_enumerate(&pub->serial.list); - - pub->serial.started = 1; - pub->serial.baudrate = fe->baudrate; - pub->serial.parity = fe->parity; - - pub->serial.baudrate = (pub->serial.baudrate < 0) ? 0 : - (pub->serial.baudrate > 3) ? 3 : pub->serial.baudrate; - - pub->serial.parity = (pub->serial.parity < 0) ? 0 : - (pub->serial.parity > 2) ? 2 : pub->serial.parity; - - for (N = 0; N < pub->serial.list.dnum; ++N) { - - portname = pub->serial.list.name[N]; - - if (strcmp(portname, fe->serialport) == 0) { - - pub->serial.selected = N; - break; - } - } - } - - nk_label(ctx, "Serial port", NK_TEXT_LEFT); - pub->serial.selected = nk_combo(ctx, pub->serial.list.name, - pub->serial.list.dnum, pub->serial.selected, - pub->fe_font_h + 10, nk_vec2(pub->fe_base * 13, 400)); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Scan")) { - - serial_enumerate(&pub->serial.list); - } - - nk_spacer(ctx); - - nk_label(ctx, "Baudrate", NK_TEXT_LEFT); - pub->serial.baudrate = nk_combo(ctx, ls_baudrate, 4, - pub->serial.baudrate, pub->fe_font_h + 10, - nk_vec2(pub->fe_base * 13, 400)); - - if (pub->serial.baudrate != fe->baudrate) { - - fe->baudrate = pub->serial.baudrate; - } - - nk_spacer(ctx); - - if (nk_button_label_styled(ctx, &orange, "Connect")) { - - const char *portname, *mode; - int baudrate = 0; - - portname = pub->serial.list.name[pub->serial.selected]; - lk_stoi(&baudrate, ls_baudrate[pub->serial.baudrate]); - - mode = (pub->serial.parity == 1) ? "8E1" - : (pub->serial.parity == 2) ? "8O1" : "8N1"; - - link_open(lp, pub->fe, portname, baudrate, mode); - - if (lp->linked != 0) { - - strcpy(pub->lbuf, fe->storage); - strcat(pub->lbuf, DIRSEP); - strcat(pub->lbuf, FILE_LINK_LOG); - - link_log_file_open(lp, pub->lbuf); - - strcpy(fe->serialport, portname); - - config_write(pub->fe); - - pub->popup_enum = POPUP_LINK_PROGRESS; - } - } - - nk_spacer(ctx); - - nk_label(ctx, "Data parity", NK_TEXT_LEFT); - pub->serial.parity = nk_combo(ctx, ls_parity, 3, - pub->serial.parity, pub->fe_font_h + 10, - nk_vec2(pub->fe_base * 13, 400)); - - if (pub->serial.parity != fe->parity) { - - fe->parity = pub->serial.parity; - } - - nk_spacer(ctx); - nk_spacer(ctx); - } - else { - nk_label(ctx, "Serial port", NK_TEXT_LEFT); - nk_label(ctx, lp->devname, NK_TEXT_LEFT); - - nk_spacer(ctx); - - sprintf(pub->lbuf, "# %i", lp->line_N); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - - nk_spacer(ctx); - - nk_label(ctx, "Baudrate", NK_TEXT_LEFT); - sprintf(pub->lbuf, "%i", lp->baudrate); - nk_label(ctx, pub->lbuf, NK_TEXT_LEFT); - - nk_spacer(ctx); - - if (nk_button_label_styled(ctx, &orange, "Drop")) { - - if ( lp->reg_MAX_N > 300 - && lp->reg_MAX_N < LINK_REGS_MAX) { - - fe->regfile = lp->reg_MAX_N; - } - - config_write(pub->fe); - link_close(lp); - } - - nk_spacer(ctx); - - nk_label(ctx, "Data parity", NK_TEXT_LEFT); - nk_label(ctx, ls_parity[pub->serial.parity], NK_TEXT_LEFT); - - nk_spacer(ctx); - nk_spacer(ctx); - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 22); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_label(ctx, "Window resolution", NK_TEXT_LEFT); - - fe->windowsize = (fe->windowsize < 0) ? 0 : - (fe->windowsize > 2) ? 2 : fe->windowsize; - - select = nk_combo(ctx, ls_windowsize, 3, fe->windowsize, - pub->fe_font_h + 10, nk_vec2(pub->fe_base * 22, 400)); - - if (select != fe->windowsize) { - - fe->windowsize = select; - - config_write(pub->fe); - pub_font_layout(pub); - } - - nk_spacer(ctx); - - nk_label(ctx, "Storage directory", NK_TEXT_LEFT); - - rc = nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD - | NK_EDIT_SIG_ENTER, fe->storage, - sizeof(fe->storage), nk_filter_default); - - if (rc & (NK_EDIT_DEACTIVATED | NK_EDIT_COMMITED)) { - - config_write(pub->fe); - } - - nk_spacer(ctx); - - nk_label(ctx, "Linked fuzzy pattern", NK_TEXT_LEFT); - - rc = nk_edit_string_zero_terminated(ctx, NK_EDIT_FIELD - | NK_EDIT_SIG_ENTER, fe->fuzzy, - sizeof(fe->fuzzy), nk_filter_default); - - if (rc & (NK_EDIT_DEACTIVATED | NK_EDIT_COMMITED)) { - - config_write(pub->fe); - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_label_colored(ctx, fe->rcfile, NK_TEXT_LEFT, - nk->table[NK_COLOR_HIDDEN]); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Default")) { - - pub->popup_enum = POPUP_RESET_DEFAULT; - } - - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - - if (nk_button_label(ctx, "About")) { - - pub->popup_enum = POPUP_PHOBIA_ABOUT; - } - - nk_spacer(ctx); - - pub_popup_about(pub, POPUP_PHOBIA_ABOUT); - - if (pub_popup_ok_cancel(pub, POPUP_RESET_DEFAULT, - "Please confirm that you really" - " want to reset all local Phobia" - " frontend configuration.") != 0) { - - config_default(pub->fe); - config_write(pub->fe); - - pub_font_layout(pub); - } - - if (pub->popup_enum == POPUP_LINK_PROGRESS) { - - int link_pce; - - link_pce = (int) (1000.f * lp->reg_MAX_N / (float) fe->regfile); - - if (lp->active + 500 < lp->clock) { - - link_pce = 1000; - - if ( lp->reg_MAX_N > 300 - && lp->reg_MAX_N < LINK_REGS_MAX) { - - fe->regfile = lp->reg_MAX_N; - } - - config_write(pub->fe); - } - - pub_popup_progress(pub, POPUP_LINK_PROGRESS, "Reading", link_pce); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_diagnose(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - float maximal[4] = { 100.f, 100.f, 100.f, 35.f }; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Test", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Integrity self-test", NK_TEXT_LEFT)) { - - link_command(lp, "pm_self_test"); - } - - if (nk_menu_item_label(ctx, "Board self-adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "pm_self_adjust"); - } - - if (nk_menu_item_label(ctx, "Default adjustment", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_RESET_DEFAULT; - } - } - - nk_menu_end(ctx); - } - - if (nk_menu_begin_label(ctx, "Debug", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "RAM log flush", NK_TEXT_LEFT)) { - - strcpy(pub->lbuf, pub->fe->storage); - strcat(pub->lbuf, DIRSEP FILE_DEBUG_LOG); - strcpy(pub->debug.file_snap, pub->lbuf); - - if (link_grab_file_open(lp, pub->debug.file_snap) != 0) { - - if (link_command(lp, "ap_log_flush" "\r\n") != 0) { - - pub->debug.log_flush = 1; - } - } - } - - if (nk_menu_item_label(ctx, "Set PWM to GND", NK_TEXT_LEFT)) { - - link_command(lp, "hal_PWM_set_DC 0"); - } - - if (nk_menu_item_label(ctx, "Set PWM to 50%", NK_TEXT_LEFT)) { - - struct link_reg *reg; - int dc_resolution = 2940; - - reg = link_reg_lookup(lp, "pm.dc_resolution"); - if (reg != NULL) { dc_resolution = reg->lval; } - - sprintf(pub->lbuf, "hal_PWM_set_DC %i", dc_resolution / 2); - - link_command(lp, pub->lbuf); - } - - if (nk_menu_item_label(ctx, "Set DBGMCU stop", NK_TEXT_LEFT)) { - - link_command(lp, "hal_DBGMCU_mode_stop"); - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - if ( pub->debug.log_flush != 0 - && lp->grab_N == 0) { - - pub->debug.log_flush = 0; - - if (lp->linked != 0) { - - FILE *fd; - int len; - - fd = fopen_from_UTF8(pub->debug.file_snap, "rb"); - - if (fd != NULL) { - - len = fread(pub->debug.log_message, 1, - sizeof(pub->debug.log_message) - 1, fd); - - if (len != 0) { - - pub->debug.log_message[len] = 0; - pub->popup_enum = POPUP_DEBUG_LOG; - } - - fclose(fd); - } - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.const_fb_U", "DC link voltage"); - reg_float(pub, "pm.scale_iA0", "A sensor drift"); - reg_float(pub, "pm.scale_iB0", "B sensor drift"); - reg_float(pub, "pm.scale_iC0", "C sensor drift"); - reg_text_large(pub, "pm.self_BST", "Bootstrap retention"); - reg_text_large(pub, "pm.self_IST", "Self test result"); - reg_text_large(pub, "pm.self_STDi", "Current noise STD"); - reg_text_large(pub, "pm.self_RMSi", "Current sensor RMS"); - reg_text_large(pub, "pm.self_RMSu", "Voltage sensor RMS"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.scale_iA1", "A sensor scale"); - reg_float(pub, "pm.scale_iB1", "B sensor scale"); - reg_float(pub, "pm.scale_iC1", "C sensor scale"); - reg_float(pub, "pm.scale_uA0", "A voltage offset"); - reg_float(pub, "pm.scale_uA1", "A voltage scale"); - reg_float(pub, "pm.scale_uB0", "B voltage offset"); - reg_float(pub, "pm.scale_uB1", "B voltage scale"); - reg_float(pub, "pm.scale_uC0", "C voltage offset"); - reg_float(pub, "pm.scale_uC1", "C voltage scale"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.scale_uS0", "DC link voltage offset"); - reg_float(pub, "pm.scale_uS1", "DC link voltage scale"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_toggle(pub, "pm.tvm_ACTIVE", "TVM is active"); - reg_float(pub, "pm.tvm_FIR_A_tau", "A voltage FIR tau"); - reg_float(pub, "pm.tvm_FIR_B_tau", "B voltage FIR tau"); - reg_float(pub, "pm.tvm_FIR_C_tau", "C voltage FIR tau"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.fb_iA", "A current feedback"); - reg_float(pub, "pm.fb_iB", "B current feedback"); - reg_float(pub, "pm.fb_iC", "C current feedback"); - reg_float(pub, "pm.fb_uA", "A voltage feedback"); - reg_float(pub, "pm.fb_uB", "B voltage feedback"); - reg_float(pub, "pm.fb_uC", "C voltage feedback"); - reg_float(pub, "pm.fb_HS", "Hall sensors feedback"); - reg_float(pub, "pm.fb_EP", "EABI encoder feedback"); - reg_float(pub, "pm.fb_SIN", "SIN analog feedback"); - reg_float(pub, "pm.fb_COS", "COS analog feedback"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "hal.PWM_frequency"); - - if (reg != NULL) { - - maximal[3] = 1000000.f / reg->fval; - } - - reg = link_reg_lookup(lp, "hal.CNT_diag0"); - - if (reg != NULL) { - - if (reg->um_sel == 0) { - - maximal[0] = maximal[3]; - } - else if (reg->um_sel == 1) { - - maximal[0] = 100.f; - } - - reg += reg->um_sel; - reg->update = 1000; - } - - reg = link_reg_lookup(lp, "hal.CNT_diag1"); - - if (reg != NULL) { - - if (reg->um_sel == 0) { - - maximal[1] = maximal[3]; - } - else if (reg->um_sel == 1) { - - maximal[1] = 100.f; - } - - reg += reg->um_sel; - reg->update = 1000; - } - - reg = link_reg_lookup(lp, "hal.CNT_diag2"); - - if (reg != NULL) { - - if (reg->um_sel == 0) { - - maximal[2] = maximal[3]; - } - else if (reg->um_sel == 1) { - - maximal[2] = 100.f; - } - - reg += reg->um_sel; - reg->update = 1000; - } - - reg_float_prog_um(pub, "hal.CNT_diag0", "IRQ entry time", 0.f, maximal[0], 1); - reg_float_prog_um(pub, "hal.CNT_diag1", "IRQ priority load", 0.f, maximal[1], 1); - reg_float_prog_um(pub, "hal.CNT_diag2", "IRQ total load", 0.f, maximal[2], 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - pub_popup_debug(pub, POPUP_DEBUG_LOG, "RAM log contents"); - - if (pub_popup_ok_cancel(pub, POPUP_RESET_DEFAULT, - "Please confirm that you really" - " want to reset all adjustment constants" - " related to the board.") != 0) { - - if (link_command(lp, "pm_default_scale") != 0) { - - link_reg_fetch_all_shown(lp); - } - } - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_probe(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - int config_LU_DRIVE = 1; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Probe", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "AC impedance probing", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_impedance"); - } - - if (nk_menu_item_label(ctx, "KV spinup probing", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_spinup"); - } - - if (nk_menu_item_label(ctx, "KV detached probing", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_PROBE_DETACHED; - } - } - - nk_spacer(ctx); - - if (nk_menu_item_label(ctx, "DC resistance probing", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_const_resistance"); - } - - if (nk_menu_item_label(ctx, "KV flux linkage", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_const_flux_linkage"); - } - - if (nk_menu_item_label(ctx, "JA inertia probing", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_const_inertia"); - } - - if (nk_menu_item_label(ctx, "NT noise threshold", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_noise_threshold"); - } - - nk_menu_end(ctx); - } - - if (nk_menu_begin_label(ctx, "Config", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Export machine", NK_TEXT_LEFT)) { - - /* TODO */ - } - - if (nk_menu_item_label(ctx, "Default machine", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_RESET_DEFAULT; - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.const_fb_U", "DC link voltage"); - reg_float_um(pub, "pm.const_lambda", "Flux linkage", 1); - reg_float(pub, "pm.const_Rs", "Winding resistance"); - reg_float(pub, "pm.const_Zp", "Rotor pole pairs number"); - reg_float_um(pub, "pm.const_Ja", "Moment of inertia", 1); - reg_float(pub, "pm.const_im_L1", "Inductance D"); - reg_float(pub, "pm.const_im_L2", "Inductance Q"); - reg_float(pub, "pm.const_im_B", "Principal angle"); - reg_float(pub, "pm.const_im_R", "Active impedance"); - reg_float(pub, "pm.const_ld_S", "Circumference length"); - - reg = link_reg_lookup(lp, "pm.const_Zp"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "pm.const_lambda"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.const_Ja"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.config_LU_DRIVE"); - if (reg != NULL) { config_LU_DRIVE = reg->lval; } - - if (nk_button_label(ctx, "Start FSM")) { - - if (link_command(lp, "pm_fsm_startup") != 0) { - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - if (reg != NULL) { reg->onefetch = 1; } - - if (config_LU_DRIVE == 0) { - - reg = link_reg_lookup(lp, "pm.i_setpoint_current"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - } - else if (config_LU_DRIVE == 1) { - - reg = link_reg_lookup(lp, "pm.s_setpoint_speed"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - } - } - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Stop FSM")) { - - if (link_command(lp, "pm_fsm_shutdown") != 0) { - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - if (reg != NULL) { reg->onefetch = 1; } - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - - if ( config_LU_DRIVE == 0 - || config_LU_DRIVE == 1) { - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 100 : 0; - - reg = link_reg_lookup(lp, "pm.lu_iD"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_iQ"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_mq_produce"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_mq_load"); - if (reg != NULL) { reg->update = rate; } - } - - reg_float(pub, "pm.lu_iD", "LU current D"); - reg_float(pub, "pm.lu_iQ", "LU current Q"); - reg_float_um(pub, "pm.lu_wS", "LU speed estimate", 1); - reg_float(pub, "pm.lu_mq_produce", "LU torque production"); - reg_float(pub, "pm.lu_mq_load", "LU load torque estimate"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - if (config_LU_DRIVE == 0) { - - reg_float_um(pub, "pm.i_setpoint_current", "Current setpoint", 0); - } - else if (config_LU_DRIVE == 1) { - - reg_float_um(pub, "pm.s_setpoint_speed", "Speed setpoint", 1); - } - } - - if (pub_popup_ok_cancel(pub, POPUP_PROBE_DETACHED, - "PMC will wait for the machine to reach" - " some speed. You will have to rotate" - " the machine rotor manually.") != 0) { - - link_command(lp, "pm_probe_detached"); - } - - if (pub_popup_ok_cancel(pub, POPUP_RESET_DEFAULT, - "Please confirm that you really" - " want to reset all measured constants" - " related to the machine.") != 0) { - - if (link_command(lp, "pm_default_machine") != 0) { - - link_reg_fetch_all_shown(lp); - } - } - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_hal(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct nk_context *ctx = &nk->ctx; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "hal.MCU_ID", "MCU ID", 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "hal.USART_baudrate", "USART baudrate"); - reg_enum_combo(pub, "hal.USART_parity", "USART parity", 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "hal.PWM_frequency", "PWM frequency"); - reg_float(pub, "hal.PWM_deadtime", "PWM deadtime"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "hal.ADC_reference_voltage", "ADC reference voltage"); - reg_float(pub, "hal.ADC_shunt_resistance", "Current shunt resistance"); - reg_float(pub, "hal.ADC_amplifier_gain", "Current amplifier gain"); - reg_float(pub, "hal.ADC_voltage_ratio", "DC link voltage ratio"); - reg_float(pub, "hal.ADC_terminal_ratio", "Terminal voltage ratio"); - reg_float(pub, "hal.ADC_terminal_bias", "Terminal voltage bias"); - reg_float(pub, "hal.ADC_knob_ratio", "Knob voltage ratio"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "hal.ADC_sample_time", "ADC sample time", 0); - reg_float(pub, "hal.ADC_sample_advance", "ADC sample advance"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "hal.CAN_bitfreq", "CAN frequency"); - reg_float(pub, "hal.CAN_errate", "CAN bus errate"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "hal.DPS_mode", "DPS operation mode", 0); - reg_enum_combo(pub, "hal.PPM_mode", "PPM operation mode", 0); - reg_float(pub, "hal.PPM_frequency", "PPM frequency"); - reg_enum_combo(pub, "hal.STEP_mode", "STEP operation mode", 0); - reg_float(pub, "hal.STEP_frequency", "STEP frequency"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "hal.DRV.partno", "DRV partno", 1); - reg_enum_toggle(pub, "hal.DRV.auto_RESTART", "DRV automatic restart"); - reg_float(pub, "hal.DRV.status_raw", "DRV status raw"); - reg_float(pub, "hal.DRV.gate_current", "DRV gate current"); - reg_float(pub, "hal.DRV.ocp_level", "DRV OCP level"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_toggle(pub, "hal.OPT_filter_current", "OPT current filter"); - reg_enum_toggle(pub, "hal.OPT_filter_voltage", "OPT voltage filter"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_in_network(struct public *pub) -{ - struct config_phobia *fe = pub->fe; - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - struct nk_style_button orange, disabled; - - int N, height, sel, newsel; - - orange = ctx->style.button; - orange.normal = nk_style_item_color(nk->table[NK_COLOR_ORANGE_BUTTON]); - orange.hover = nk_style_item_color(nk->table[NK_COLOR_ORANGE_HOVER]); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "net.node_ID", "Node network ID"); - reg_enum_combo(pub, "net.log_MODE", "Messages logging", 1); - reg_float(pub, "net.timeout_EP", "EP shutdown timeout"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 7); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Survey")) { - - link_command(lp, "net_survey"); - - pub->network.selected = -1; - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Assign")) { - - link_command(lp, "net_assign" "\r\n" - "net_survey"); - - reg = link_reg_lookup(lp, "net.node_ID"); - if (reg != NULL) { reg->onefetch = 1; } - - pub->network.selected = -1; - } - - nk_spacer(ctx); - - N = pub->network.selected; - - if ( N >= 0 && N < LINK_EPCAN_MAX - && lp->epcan[N].UID[0] != 0) { - - if (nk_button_label(ctx, "Revoke")) { - - sprintf(pub->lbuf, "net_revoke %.7s" "\r\n" - "net_survey", lp->epcan[N].node_ID); - - link_command(lp, pub->lbuf); - - pub->network.selected = -1; - } - - nk_spacer(ctx); - - if (strstr(lp->network, "REMOTE") == NULL) { - - if (nk_button_label_styled(ctx, &orange, "Connect")) { - - sprintf(pub->lbuf, "net_node_remote %.7s", - lp->epcan[N].node_ID); - - link_command(lp, pub->lbuf); - link_remote(lp); - - pub->network.selected = -1; - pub->popup_enum = POPUP_LINK_PROGRESS; - } - } - else { - if (nk_button_label_styled(ctx, &orange, "Drop")) { - - link_command(lp, "\x04"); - link_remote(lp); - - pub->network.selected = -1; - pub->popup_enum = POPUP_LINK_PROGRESS; - } - } - } - else { - disabled = ctx->style.button; - - disabled.normal = disabled.active; - disabled.hover = disabled.active; - disabled.text_normal = disabled.text_active; - disabled.text_hover = disabled.text_active; - - nk_button_label_styled(ctx, &disabled, "Revoke"); - - nk_spacer(ctx); - - if (strstr(lp->network, "REMOTE") == NULL) { - - nk_button_label_styled(ctx, &disabled, "Connect"); - } - else { - if (nk_button_label_styled(ctx, &orange, "Drop")) { - - link_command(lp, "\x04"); - link_remote(lp); - - pub->network.selected = -1; - pub->popup_enum = POPUP_LINK_PROGRESS; - } - } - } - - nk_spacer(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - height = ctx->current->layout->row.height * 5; - - nk_layout_row_template_begin(ctx, height); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "NETWORK", NK_WINDOW_BORDER)) { - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 10); - nk_layout_row_template_end(ctx); - - for (N = 0; N < LINK_EPCAN_MAX; ++N) { - - if (lp->epcan[N].UID[0] == 0) - break; - - sel = (N == pub->network.selected) ? 1 : 0; - - newsel = nk_select_label(ctx, lp->epcan[N].UID, - NK_TEXT_LEFT, sel); - - newsel |= nk_select_label(ctx, lp->epcan[N].node_ID, - NK_TEXT_LEFT, sel); - - if (newsel != sel && newsel != 0) { - - pub->network.selected = N; - } - } - - nk_group_end(ctx); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - if (pub->popup_enum != POPUP_LINK_PROGRESS) { - - reg_enum_combo(pub, "net.ep0_MODE", "EP 0 operation mode", 1); - - reg = link_reg_lookup(lp, "net.ep0_MODE"); - - if (reg != NULL && reg->lval != 0) { - - reg = link_reg_lookup(lp, "net.ep0_reg_DATA"); - if (reg != NULL) { reg->update = 200; } - - reg_float(pub, "net.ep0_ID", "EP 0 network ID"); - reg_float(pub, "net.ep0_clock_ID", "EP 0 clock ID"); - reg_float(pub, "net.ep0_reg_DATA", "EP 0 control DATA"); - reg_linked(pub, "net.ep0_reg_ID", "EP 0 register ID"); - reg_enum_combo(pub, "net.ep0_PAYLOAD", "EP 0 payload type", 0); - reg_enum_toggle(pub, "net.ep0_STARTUP", "EP 0 startup control"); - reg_float(pub, "net.ep0_rate", "EP 0 frequency"); - reg_float(pub, "net.ep0_range0", "EP 0 range LOW"); - reg_float(pub, "net.ep0_range1", "EP 0 range HIGH"); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "net.ep1_MODE", "EP 1 operation mode", 1); - - reg = link_reg_lookup(lp, "net.ep1_MODE"); - - if (reg != NULL && reg->lval != 0) { - - reg = link_reg_lookup(lp, "net.ep1_reg_DATA"); - if (reg != NULL) { reg->update = 200; } - - reg_float(pub, "net.ep1_ID", "EP 1 network ID"); - reg_float(pub, "net.ep1_clock_ID", "EP 1 clock ID"); - reg_float(pub, "net.ep1_reg_DATA", "EP 1 control DATA"); - reg_linked(pub, "net.ep1_reg_ID", "EP 1 register ID"); - reg_enum_combo(pub, "net.ep1_PAYLOAD", "EP 1 payload type", 0); - reg_enum_toggle(pub, "net.ep1_STARTUP", "EP 1 startup control"); - reg_float(pub, "net.ep1_rate", "EP 1 frequency"); - reg_float(pub, "net.ep1_range0", "EP 1 range LOW"); - reg_float(pub, "net.ep1_range1", "EP 1 range HIGH"); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "net.ep2_MODE", "EP 2 operation mode", 1); - - reg = link_reg_lookup(lp, "net.ep2_MODE"); - - if (reg != NULL && reg->lval != 0) { - - reg = link_reg_lookup(lp, "net.ep2_reg_DATA"); - if (reg != NULL) { reg->update = 200; } - - reg_float(pub, "net.ep2_ID", "EP 2 network ID"); - reg_float(pub, "net.ep2_clock_ID", "EP 2 clock ID"); - reg_float(pub, "net.ep2_reg_DATA", "EP 2 control DATA"); - reg_linked(pub, "net.ep2_reg_ID", "EP 2 register ID"); - reg_enum_combo(pub, "net.ep2_PAYLOAD", "EP 2 payload type", 0); - reg_enum_toggle(pub, "net.ep2_STARTUP", "EP 2 startup control"); - reg_float(pub, "net.ep2_rate", "EP 2 frequency"); - reg_float(pub, "net.ep2_range0", "EP 2 range LOW"); - reg_float(pub, "net.ep2_range1", "EP 2 range HIGH"); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "net.ep3_MODE", "EP 3 operation mode", 1); - - reg = link_reg_lookup(lp, "net.ep3_MODE"); - - if (reg != NULL && reg->lval != 0) { - - reg = link_reg_lookup(lp, "net.ep3_reg_DATA"); - if (reg != NULL) { reg->update = 200; } - - reg_float(pub, "net.ep3_ID", "EP 3 network ID"); - reg_float(pub, "net.ep3_clock_ID", "EP 3 clock ID"); - reg_float(pub, "net.ep3_reg_DATA", "EP 3 control DATA"); - reg_linked(pub, "net.ep3_reg_ID", "EP 3 register ID"); - reg_enum_combo(pub, "net.ep3_PAYLOAD", "EP 3 payload type", 0); - reg_enum_toggle(pub, "net.ep3_STARTUP", "EP 3 startup control"); - reg_float(pub, "net.ep3_rate", "EP 3 frequency"); - reg_float(pub, "net.ep3_range0", "EP 3 range LOW"); - reg_float(pub, "net.ep3_range1", "EP 3 range HIGH"); - } - } - - if (pub->popup_enum == POPUP_LINK_PROGRESS) { - - int link_pce; - - link_pce = (int) (1000.f * lp->reg_MAX_N / (float) fe->regfile); - - if (lp->active + 500 < lp->clock) { - - link_pce = 1000; - - if ( lp->reg_MAX_N > 300 - && lp->reg_MAX_N < LINK_REGS_MAX) { - - fe->regfile = lp->reg_MAX_N; - } - - config_write(pub->fe); - } - - pub_popup_progress(pub, POPUP_LINK_PROGRESS, "Reading", link_pce); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_in_stepdir(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - reg = link_reg_lookup(lp, "ap.step_POS"); - if (reg != NULL) { reg->update = 100; } - - reg = link_reg_lookup(lp, "ap.step_reg_DATA"); - if (reg != NULL) { reg->update = 100; } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.step_POS", "STEP position", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.step_reg_DATA", "Control register DATA", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_linked(pub, "ap.step_reg_ID", "Control register ID"); - reg_enum_toggle(pub, "ap.step_STARTUP", "Startup control"); - reg_float_um(pub, "ap.step_const_S", "STEP length constant", 0); - - reg = link_reg_lookup(lp, "ap.step_reg_ID"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "ap.step_reg_DATA"); - if (reg != NULL) { reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); -} - -static void -page_in_pwm(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - reg = link_reg_lookup(lp, "ap.ppm_PULSE"); - if (reg != NULL) { reg->update = 100; } - - reg = link_reg_lookup(lp, "ap.ppm_FREQ"); - if (reg != NULL) { reg->update = 100; } - - reg = link_reg_lookup(lp, "ap.ppm_reg_DATA"); - if (reg != NULL) { reg->update = 100; } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.ppm_PULSE", "PWM pulse received", 0.f, 0.f, 0); - reg_float_prog_um(pub, "ap.ppm_FREQ", "PWM frequency received", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.ppm_reg_DATA", "Control register DATA", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_linked(pub, "ap.ppm_reg_ID", "Control register ID"); - reg_enum_toggle(pub, "ap.ppm_STARTUP", "Startup control"); - reg_float(pub, "ap.ppm_range0", "Input range LOW"); - reg_float(pub, "ap.ppm_range1", "Input range MID"); - reg_float(pub, "ap.ppm_range2", "Input range HIGH"); - reg_float(pub, "ap.ppm_control0", "Control range LOW"); - reg_float(pub, "ap.ppm_control1", "Control range MID"); - reg_float(pub, "ap.ppm_control2", "Control range HIGH"); - - reg = link_reg_lookup(lp, "ap.ppm_reg_ID"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "ap.ppm_reg_DATA"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.ppm_control0"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.ppm_control1"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.ppm_control2"); - if (reg != NULL) { reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "ap.timeout_DISARM", "Timeout DISARM "); - reg_float(pub, "ap.timeout_IDLE", "Timeout IDLE"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); -} - -static void -page_in_knob(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - reg = link_reg_lookup(lp, "ap.knob_in_ANG"); - if (reg != NULL) { reg->update = 100; } - - reg = link_reg_lookup(lp, "ap.knob_in_BRK"); - if (reg != NULL) { reg->update = 100; } - - reg = link_reg_lookup(lp, "ap.knob_reg_DATA"); - if (reg != NULL) { reg->update = 100; } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.knob_in_ANG", "ANG voltage", 0.f, 0.f, 0); - reg_float_prog_um(pub, "ap.knob_in_BRK", "BRK voltage", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_prog_um(pub, "ap.knob_reg_DATA", "Control register DATA", 0.f, 0.f, 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_linked(pub, "ap.knob_reg_ID", "Control register ID"); - reg_enum_toggle(pub, "ap.knob_ENABLED", "Knob function"); - reg_enum_toggle(pub, "ap.knob_BRAKE", "Brake function"); - reg_enum_toggle(pub, "ap.knob_STARTUP", "Startup control"); - reg_float(pub, "ap.knob_range_ANG0", "ANG range LOW"); - reg_float(pub, "ap.knob_range_ANG1", "ANG range MID"); - reg_float(pub, "ap.knob_range_ANG2", "ANG range HIGH"); - reg_float(pub, "ap.knob_range_BRK0", "BRK range LOW"); - reg_float(pub, "ap.knob_range_BRK1", "BRK range HIGH"); - reg_float(pub, "ap.knob_range_LOS0", "LOST range LOW"); - reg_float(pub, "ap.knob_range_LOS1", "LOST range HIGH"); - reg_float(pub, "ap.knob_control_ANG0", "Control range LOW"); - reg_float(pub, "ap.knob_control_ANG1", "Control range MID"); - reg_float(pub, "ap.knob_control_ANG2", "Control range HIGH"); - reg_float(pub, "ap.knob_control_BRK", "BRK control"); - - reg = link_reg_lookup(lp, "ap.knob_reg_ID"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "ap.knob_reg_DATA"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.knob_control_ANG0"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.knob_control_ANG1"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.knob_control_ANG2"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "ap.knob_control_BRK"); - if (reg != NULL) { reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "ap.timeout_DISARM", "Timeout DISARM"); - reg_float(pub, "ap.timeout_IDLE", "Timeout IDLE"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_application(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_toggle(pub, "ap.task_AUTOSTART", "Startup at powerup"); - - reg = link_reg_lookup(lp, "ap.task_AUTOSTART"); - - if ( reg != NULL - && reg->lval != 0) { - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "ap.auto_reg_DATA", "Auto register DATA"); - reg_linked(pub, "ap.auto_reg_ID", "Auto register ID"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - } - - reg_enum_toggle(pub, "ap.task_BUTTON", "Two push button control"); - reg_enum_toggle(pub, "ap.task_SPI_AS5047", "SPI AS5047 magnetic encoder"); - reg_enum_toggle(pub, "ap.task_SPI_HX711", "SPI HX711 load cell ADC"); - - reg = link_reg_lookup(lp, "ap.task_SPI_HX711"); - - if ( reg != NULL - && reg->lval != 0) { - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "ap.load_HX711", "HX711 measurement"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - } - - reg_enum_toggle(pub, "ap.task_SPI_MPU6050", "SPI MPU6050 inertial unit"); - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); -} - -static void -page_thermal(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "ap.ntc_PCB.type", "NTC type on PCB", 1); - reg_float(pub, "ap.ntc_PCB.balance", "NTC balance"); - reg_float(pub, "ap.ntc_PCB.ntc0", "NTC resistance at Ta"); - reg_float(pub, "ap.ntc_PCB.ta0", "NTC Ta"); - reg_float(pub, "ap.ntc_PCB.betta", "NTC betta"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "ap.ntc_EXT.type", "NTC type on EXT", 1); - reg_float(pub, "ap.ntc_EXT.balance", "NTC balance"); - reg_float(pub, "ap.ntc_EXT.ntc0", "NTC resistance at Ta"); - reg_float(pub, "ap.ntc_EXT.ta0", "NTC Ta"); - reg_float(pub, "ap.ntc_EXT.betta", "NTC betta"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "ap.temp_PCB"); - if (reg != NULL) { reg->update = 1000; } - - reg = link_reg_lookup(lp, "ap.temp_EXT"); - if (reg != NULL) { reg->update = 1000; } - - reg = link_reg_lookup(lp, "ap.temp_MCU"); - if (reg != NULL) { reg->update = 1000; } - - reg_float(pub, "ap.temp_PCB", "Temperature PCB"); - reg_float(pub, "ap.temp_EXT", "Temperature EXT"); - reg_float(pub, "ap.temp_MCU", "Temperature MCU"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "ap.otp_PCB_halt", "PCB halt threshold"); - reg_float(pub, "ap.otp_PCB_derate", "PCB derate threshold"); - reg_float(pub, "ap.otp_PCB_fan", "PCB fan ON threshold"); - reg_float(pub, "ap.otp_EXT_derate", "EXT derate threshold"); - reg_float(pub, "ap.otp_maximal_PCB", "PCB maximal current"); - reg_float(pub, "ap.otp_maximal_EXT", "EXT maximal current"); - reg_float(pub, "ap.otp_recovery", "Recovery hysteresis"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_config(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Export configuration", NK_TEXT_LEFT)) { - - /* TODO */ - } - - if (nk_menu_item_label(ctx, "Default configuration", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_RESET_DEFAULT; - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.dc_resolution", "PWM resolution"); - reg_float(pub, "pm.dc_minimal", "Minimal pulse"); - reg_float(pub, "pm.dc_clearance", "Clearance before ADC sample"); - reg_float(pub, "pm.dc_skip", "Skip after ADC sample"); - reg_float(pub, "pm.dc_bootstrap", "Bootstrap retention time"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "pm.config_NOP", "Number of machine phases", 0); - reg_enum_combo(pub, "pm.config_IFB", "Current measurement scheme", 0); - reg_enum_toggle(pub, "pm.config_TVM", "Terminal voltage measurement"); - reg_enum_toggle(pub, "pm.config_DBG", "Debug information gather"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_combo(pub, "pm.config_VSI_ZERO", "Zero sequence modulation", 1); - reg_enum_toggle(pub, "pm.config_VSI_CLAMP", "Circular voltage clamping"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_toggle(pub, "pm.config_LU_FORCED", "Forced control"); - reg_enum_toggle(pub, "pm.config_LU_FREEWHEEL", "Allow freewheeling"); - reg_enum_combo(pub, "pm.config_LU_ESTIMATE", "Sensorless estimate", 1); - reg_enum_combo(pub, "pm.config_LU_SENSOR", "Position sensor type", 1); - reg_enum_combo(pub, "pm.config_LU_LOCATION", "Servo location source", 1); - reg_enum_combo(pub, "pm.config_LU_DRIVE", "Drive control loop", 0); - - reg_enum_combo(pub, "pm.config_HFI_WAVETYPE", "HFI waveform type", 1); - reg_enum_toggle(pub, "pm.config_HFI_PERMANENT", "HFI permanent injection"); - - reg_enum_combo(pub, "pm.config_EXCITATION", "Machine excitation", 0); - reg_enum_combo(pub, "pm.config_SALIENCY", "Machine saliency", 0); - reg_enum_toggle(pub, "pm.config_RELUCTANCE", "Reluctance MTPA control"); - reg_enum_toggle(pub, "pm.config_WEAKENING", "Flux weakening control"); - - reg_enum_toggle(pub, "pm.config_REVERSE_BRAKE", "Reverse brake function"); - reg_enum_toggle(pub, "pm.config_SPEED_MAXIMAL", "Speed maximal function"); - - reg_enum_combo(pub, "pm.config_EABI_FRONTEND", "EABI frontend", 0); - reg_enum_combo(pub, "pm.config_SINCOS_FRONTEND", "SINCOS frontend", 0); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.tm_transient_slow", "Transient time slow"); - reg_float(pub, "pm.tm_transient_fast", "Transient time fast"); - reg_float(pub, "pm.tm_voltage_hold", "Voltage hold time"); - reg_float(pub, "pm.tm_current_hold", "Current hold time"); - reg_float(pub, "pm.tm_current_ramp", "Current ramp time"); - reg_float(pub, "pm.tm_instant_probe", "Instant probe time"); - reg_float(pub, "pm.tm_average_probe", "Average probe time"); - reg_float(pub, "pm.tm_average_drift", "Average drift time"); - reg_float(pub, "pm.tm_average_inertia", "Average inertia time"); - reg_float(pub, "pm.tm_pause_startup", "Startup pause"); - reg_float(pub, "pm.tm_pause_forced", "Forced pause"); - reg_float(pub, "pm.tm_pause_halt", "Halt pause"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.probe_current_hold", "Probe hold current"); - reg_float(pub, "pm.probe_current_weak", "Probe weak current"); - reg_float(pub, "pm.probe_hold_angle", "Probe hold angle"); - reg_float(pub, "pm.probe_current_sine", "Probe sine current"); - reg_float(pub, "pm.probe_current_bias", "Probe bias current"); - reg_float(pub, "pm.probe_freq_sine", "Probe sine frequency"); - reg_float_um(pub, "pm.probe_speed_hold", "Probe speed", 1); - reg_float_um(pub, "pm.probe_speed_tol", "Settle speed tolerance", 1); - reg_float_um(pub, "pm.probe_location_tol", "Settle location tolerance", 0); - reg_float(pub, "pm.probe_loss_maximal", "Maximal heating losses"); - reg_float(pub, "pm.probe_gain_P", "Probe loop gain P"); - reg_float(pub, "pm.probe_gain_I", "Probe loop gain I"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.fault_voltage_tol", "Voltage fault tolerance"); - reg_float(pub, "pm.fault_current_tol", "Current fault tolerance"); - reg_float(pub, "pm.fault_accuracy_tol", "Accuracy fault tolerance"); - reg_float(pub, "pm.fault_terminal_tol", "Terminal fault tolerance"); - reg_float(pub, "pm.fault_current_halt", "Current halt threshold"); - reg_float(pub, "pm.fault_voltage_halt", "Voltage halt threshold"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.vsi_gain_LP", "VSI gain LP"); - reg_enum_combo(pub, "pm.vsi_mask_XF", "VSI channel mask", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_toggle(pub, "pm.tvm_ACTIVE", "TVM is active"); - reg_float(pub, "pm.tvm_clean_zone", "TVM clean zone"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.lu_transient", "LU transient rate"); - reg_float(pub, "pm.lu_gain_mq_LP", "LU load torque gain LPF"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - if (pub_popup_ok_cancel(pub, POPUP_RESET_DEFAULT, - "Please confirm that you really" - " want to reset all PMC configuration.") != 0) { - - link_command(lp, "pm_default_config"); - link_reg_fetch_all_shown(lp); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lu_forced(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Forced self-adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "reg pm.forced_maximal -1" "\r\n" - "reg pm.forced_accel -1"); - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.forced_hold_D", "Forced hold current"); - reg_float(pub, "pm.forced_weak_D", "Forced weak current"); - reg_float_um(pub, "pm.forced_maximal", "Maximal forward speed", 1); - reg_float_um(pub, "pm.forced_reverse", "Maximal reverse speed", 1); - reg_float_um(pub, "pm.forced_accel", "Forced acceleration", 1); - reg_float(pub, "pm.forced_slew_rate", "Current slew rate"); - reg_float(pub, "pm.forced_fall_rate", "Current fall rate"); - reg_float(pub, "pm.forced_stop_DC", "Stop DC threshold"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); -} - -static void -page_lu_flux(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Probe", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "JA inertia probing", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_const_inertia"); - } - - if (nk_menu_item_label(ctx, "NT noise threshold", NK_TEXT_LEFT)) { - - link_command(lp, "pm_probe_noise_threshold"); - } - - if (nk_menu_item_label(ctx, "ZONE self-adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "reg pm.zone_threshold -1"); - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.detach_threshold", "Detached voltage threshold"); - reg_float(pub, "pm.detach_trip_tol", "Detached trip tolerance"); - reg_float(pub, "pm.detach_gain_SF", "Detached speed loop gain"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.flux_trip_tol", "Ortega trip tolerance"); - reg_float(pub, "pm.flux_gain_IN", "Ortega initial gain"); - reg_float(pub, "pm.flux_gain_LO", "Ortega flux gain LO"); - reg_float(pub, "pm.flux_gain_HI", "Ortega flux gain HI"); - reg_float(pub, "pm.flux_gain_SF", "Ortega speed loop gain"); - reg_float(pub, "pm.flux_gain_IF", "Torque acceleration"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.kalman_gain_Q0", "Kalman iD gain"); - reg_float(pub, "pm.kalman_gain_Q1", "Kalman iQ gain"); - reg_float(pub, "pm.kalman_gain_Q2", "Kalman position gain"); - reg_float(pub, "pm.kalman_gain_Q3", "Kalman speed gain"); - reg_float(pub, "pm.kalman_gain_Q4", "Kalman bias Q gain"); - reg_float(pub, "pm.kalman_gain_R", "Kalman R gain"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_um(pub, "pm.zone_noise", "Noise threshold", 1); - reg_float_um(pub, "pm.zone_threshold", "Zone threshold", 1); - reg_float(pub, "pm.zone_gain_TH", "Zone hysteresis"); - reg_float(pub, "pm.zone_gain_LP", "Zone gain LPF"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 200 : 0; - - reg = link_reg_lookup(lp, "pm.flux_ZONE"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.flux_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.config_LU_ESTIMATE"); - - if ( reg != NULL - && reg->lval == 1) { - - reg = link_reg_lookup(lp, "pm.flux_lambda"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.kalman_bias_Q"); - if (reg != NULL) { reg->update = 0; } - } - - if ( reg != NULL - && reg->lval == 2) { - - reg = link_reg_lookup(lp, "pm.flux_lambda"); - if (reg != NULL) { reg->update = 0; } - - reg = link_reg_lookup(lp, "pm.kalman_bias_Q"); - if (reg != NULL) { reg->update = rate; } - } - } - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - reg_enum_errno(pub, "pm.flux_ZONE", "FLUX speed ZONE", 0); - - reg_float_um(pub, "pm.flux_wS", "FLUX speed estimate", 1); - reg_float(pub, "pm.flux_lambda", "Flux linkage estimate"); - reg_float(pub, "pm.kalman_bias_Q", "Q relaxation bias"); - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lu_hfi(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - int m_drawing = pub->fe_def_size_x / 4; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.hfi_freq", "HF injection frequency"); - reg_float(pub, "pm.hfi_sine", "HF injection current"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate, fast; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 100 : 0; - fast = (reg->lval != 0) ? 20 : 0; - - reg = link_reg_lookup(lp, "pm.lu_F0"); - if (reg != NULL) { reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_F1"); - if (reg != NULL) { reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - } - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - - reg_float(pub, "pm.lu_F0", "LU position cosine"); - reg_float(pub, "pm.lu_F1", "LU position sine"); - reg_float_um(pub, "pm.lu_wS", "LU speed estimate", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, m_drawing + 20); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, m_drawing + 20); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "MOTOR", NK_WINDOW_BORDER)) { - - float fpos[2] = { 0.f, 0.f }; - - nk_layout_row_static(ctx, m_drawing, m_drawing, 1); - - reg = link_reg_lookup(lp, "pm.lu_F0"); - - if (reg != NULL) { - - fpos[0] = reg->fval; - - reg = link_reg_lookup(lp, "pm.lu_F1"); - if (reg != NULL) { fpos[1] = reg->fval; } - - pub_drawing_machine_position(pub, fpos, DRAWING_EMPTY); - } - - nk_group_end(ctx); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lu_hall(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - int m_drawing = pub->fe_def_size_x / 4; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Hall self-adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "pm_adjust_sensor_hall"); - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.hall_ST1", "Hall ST 1"); - reg_float(pub, "pm.hall_ST2", "Hall ST 2"); - reg_float(pub, "pm.hall_ST3", "Hall ST 3"); - reg_float(pub, "pm.hall_ST4", "Hall ST 4"); - reg_float(pub, "pm.hall_ST5", "Hall ST 5"); - reg_float(pub, "pm.hall_ST6", "Hall ST 6"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.hall_trip_tol", "Hall trip tolerance"); - reg_float(pub, "pm.hall_gain_LO", "Hall speed gain LO"); - reg_float(pub, "pm.hall_gain_SF", "Hall speed loop gain"); - reg_float(pub, "pm.hall_gain_IF", "Torque acceleration"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate, fast; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 400 : 0; - fast = (reg->lval != 0) ? 20 : 0; - - reg = link_reg_lookup(lp, "pm.lu_F0"); - if (reg != NULL) { reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_F1"); - if (reg != NULL) { reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - rate = (rate != 0) ? rate : 1000; - - reg = link_reg_lookup(lp, "pm.fb_HS"); - if (reg != NULL) { reg->update = rate; } - } - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - - reg_float(pub, "pm.lu_F0", "LU position cosine"); - reg_float(pub, "pm.lu_F1", "LU position sine"); - reg_float_um(pub, "pm.lu_wS", "LU speed estimate", 1); - reg_float(pub, "pm.fb_HS", "Hall feedback"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, m_drawing + 20); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, m_drawing + 20); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "MOTOR", NK_WINDOW_BORDER)) { - - float fpos[2] = { 0.f, 0.f }; - - nk_layout_row_static(ctx, m_drawing, m_drawing, 1); - - reg = link_reg_lookup(lp, "pm.lu_F0"); - - if (reg != NULL) { - - fpos[0] = reg->fval; - - reg = link_reg_lookup(lp, "pm.lu_F1"); - if (reg != NULL) { fpos[1] = reg->fval; } - - pub_drawing_machine_position(pub, fpos, DRAWING_WITH_HALL); - } - - nk_group_end(ctx); - } - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lu_eabi(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - int m_drawing = pub->fe_def_size_x / 4; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "EABI self-adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "pm_adjust_sensor_eabi"); - } - - if (nk_menu_item_label(ctx, "EABI position discard", NK_TEXT_LEFT)) { - - if (link_command(lp, "reg pm.eabi_ADJUST 0") != 0) { - - reg = link_reg_lookup(lp, "pm.eabi_F0"); - if (reg != NULL) { reg->onefetch = 1; } - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.eabi_F0", "EABI adjustment position"); - reg_float(pub, "pm.eabi_const_EP", "EABI pulse resolution"); - reg_float(pub, "pm.eabi_const_Zs", "Gear teeth number S"); - reg_float(pub, "pm.eabi_const_Zq", "Gear teeth number Q"); - reg_float(pub, "pm.eabi_trip_tol", "EABI trip tolerance"); - reg_float(pub, "pm.eabi_gain_LO", "EABI speed gain LO"); - reg_float(pub, "pm.eabi_gain_SF", "EABI speed loop gain"); - reg_float(pub, "pm.eabi_gain_IF", "Torque acceleration"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate, fast; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 400 : 0; - fast = (reg->lval != 0) ? 20 : 0; - - reg = link_reg_lookup(lp, "pm.lu_location"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_location"); - if (reg != NULL) { reg->shown = lp->clock; reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - rate = (rate != 0) ? rate : 1000; - - reg = link_reg_lookup(lp, "pm.fb_EP"); - if (reg != NULL) { reg->update = rate; } - } - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - - reg_float_um(pub, "pm.lu_location", "LU location", 1); - reg_float_um(pub, "pm.lu_wS", "LU speed estimate", 1); - reg_float(pub, "pm.fb_EP", "EP feedback"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, m_drawing + 20); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, m_drawing + 20); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "MOTOR", NK_WINDOW_BORDER)) { - - float fpos[2] = { 0.f, 0.f }; - int const_Zp = 1; - - nk_layout_row_static(ctx, m_drawing, m_drawing, 1); - - reg = link_reg_lookup(lp, "pm.const_Zp"); - if (reg != NULL) { const_Zp = reg->lval; } - - reg = link_reg_lookup(lp, "pm.lu_location"); - - if (reg != NULL) { - - fpos[0] = cosf(reg->fval / (float) const_Zp); - fpos[1] = sinf(reg->fval / (float) const_Zp); - - pub_drawing_machine_position(pub, fpos, DRAWING_WITH_TOOTH); - } - - nk_group_end(ctx); - } - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lu_sincos(struct public *pub) -{ - /* TODO */ -} - -static void -page_wattage(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_um(pub, "2/pm.watt_wP_maximal", "Maximal consumption", 1); - reg_float_um(pub, "2/pm.watt_wP_reverse", "Maximal regeneration", 1); - reg_float(pub, "pm.watt_uDC_maximal", "DC link voltage HIGH"); - reg_float(pub, "pm.watt_uDC_minimal", "DC link voltage LOW"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.watt_uDC_tol", "DC regulation tolerance"); - reg_float(pub, "pm.watt_gain_P", "DC proportional gain"); - reg_float(pub, "pm.watt_gain_I", "DC integral gain"); - reg_float(pub, "pm.watt_gain_LP", "Wattage gain LPF"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate; - - reg->update = 1000; - reg->shown = lp->clock; - - rate = (reg->lval != 0) ? 100 : 0; - - reg = link_reg_lookup(lp, "pm.const_fb_U"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.watt_drain_wP"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - rate = (rate != 0) ? 1000 : 0; - - reg = link_reg_lookup(lp, "pm.lu_total_revol"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.watt_traveled"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.watt_consumed_Wh"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.watt_reverted_Wh"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.watt_fuel_gauge"); - if (reg != NULL) { reg->update = rate; } - } - - reg_float(pub, "pm.const_fb_U", "DC link voltage"); - reg_float_um(pub, "pm.watt_drain", "DC link consumption", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.lu_total_revol", "Total electrical revolutions"); - reg_float_um(pub, "pm.watt_traveled", "Total distance traveled", 1); - reg_float_um(pub, "pm.watt_consumed", "Total consumed energy", 0); - reg_float_um(pub, "pm.watt_reverted", "Total reverted energy", 0); - reg_float(pub, "pm.watt_capacity_Ah", "Battery full capacity"); - reg_float(pub, "pm.watt_fuel_gauge", "Fuel gauge"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lp_current(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.i_maximal_on_HFI", "Maximal current on HFI"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.i_maximal", "Maximal forward current"); - reg_float(pub, "pm.i_reverse", "Maximal reverse current"); - reg_float(pub, "pm.i_slew_rate", "Slew rate"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.i_damping", "Damping percentage"); - reg_float(pub, "pm.i_gain_P", "Proportional gain"); - reg_float(pub, "pm.i_gain_I", "Integral gain"); - reg_float(pub, "pm.i_gain_A", "Feed forward gain"); - - reg = link_reg_lookup(lp, "pm.i_maximal"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "pm.i_reverse"); - if (reg != NULL) { reg->onefetch = 1; } - } - - reg = link_reg_lookup(lp, "pm.i_damping"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "pm.i_slew_rate"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.i_gain_P"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.i_gain_I"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.i_gain_A"); - if (reg != NULL) { reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.weak_maximal", "Maximal weakening"); - reg_float(pub, "pm.mtpa_gain_LP", "MTPA regulation gain"); - reg_float(pub, "pm.weak_gain_EU", "Weak regulation gain"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.v_maximal", "Maximal forward voltage"); - reg_float(pub, "pm.v_reverse", "Maximal reverse voltage"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lp_speed(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float_um(pub, "pm.s_maximal", "Maximal forward speed", 1); - reg_float_um(pub, "pm.s_reverse", "Maximal reverse speed", 1); - reg_float_um(pub, "pm.s_accel", "Maximal acceleration", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.l_track_tol", "Tracking tolerance"); - reg_float(pub, "pm.l_gain_LP", "Tracking blend gain LPF"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "pm.s_damping", "Damping percentage"); - reg_float(pub, "pm.lu_gain_mq_LP", "Load torque gain LPF"); - reg_float(pub, "pm.s_gain_P", "Proportional gain"); - reg_float(pub, "pm.s_gain_I", "Integral gain"); - reg_float(pub, "pm.s_gain_D", "Derivative gain"); - reg_float(pub, "pm.s_gain_A", "Feed forward gain"); - - reg = link_reg_lookup(lp, "pm.s_damping"); - - if ( reg != NULL - && reg->fetched == lp->clock) { - - reg = link_reg_lookup(lp, "pm.lu_gain_mq_LP"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.s_gain_P"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.s_gain_I"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.s_gain_D"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.s_gain_A"); - if (reg != NULL) { reg->onefetch = 1; } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_lp_location(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - float ld_range[2] = { - 100.f, 100.f }; - int um_sel, um_def = 1; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "JA inertia probing", NK_TEXT_LEFT)) { - - link_command(lp, "ld_probe_const_inertia"); - } - - if (nk_menu_item_label(ctx, "LD limit adjustment", NK_TEXT_LEFT)) { - - link_command(lp, "ld_adjust_limit"); - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_enum_errno(pub, "pm.fsm_errno", "FSM error code", 1); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.const_ld_S"); - if (reg != NULL && reg->fval > 0.f) { um_def = 2; } - - reg_float_um(pub, "pm.x_maximal", "Maximal location limit", um_def); - reg_float_um(pub, "pm.x_minimal", "Minimal location limit", um_def); - reg_float_um(pub, "pm.x_boost_tol", "Regulation tolerance", 0); - reg_float_um(pub, "pm.x_track_tol", "Tracking tolerance", 0); - reg_float_um(pub, "pm.x_gain_P", "Proportional gain", 0); - reg_float(pub, "pm.x_gain_D", "Damped gain"); - - reg = link_reg_lookup(lp, "pm.x_maximal"); - - if ( reg != NULL - && (reg + reg->um_sel)->fetched == lp->clock) { - - for (um_sel = 0; um_sel < 3; ++um_sel) { - - if (um_sel != reg->um_sel) { - - (reg + um_sel)->shown = lp->clock; - (reg + um_sel)->onefetch = 1; - } - } - } - - reg = link_reg_lookup(lp, "pm.x_minimal"); - - if ( reg != NULL - && (reg + reg->um_sel)->fetched == lp->clock) { - - for (um_sel = 0; um_sel < 3; ++um_sel) { - - if (um_sel != reg->um_sel) { - - (reg + um_sel)->shown = lp->clock; - (reg + um_sel)->onefetch = 1; - } - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_static(ctx, pub->fe_base); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Start FSM")) { - - if (link_command(lp, "pm_fsm_startup") != 0) { - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - if (reg != NULL) { reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.x_setpoint_location"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - - reg = link_reg_lookup(lp, "pm.x_setpoint_speed"); - if (reg != NULL) { reg += reg->um_sel; reg->onefetch = 1; } - } - } - - nk_spacer(ctx); - - if (nk_button_label(ctx, "Stop FSM")) { - - if (link_command(lp, "pm_fsm_shutdown") != 0) { - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - if (reg != NULL) { reg->onefetch = 1; } - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg = link_reg_lookup(lp, "pm.lu_MODE"); - - if (reg != NULL) { - - int rate, fast; - - reg->update = 1000; - - rate = (reg->lval != 0) ? 400 : 0; - fast = (reg->lval != 0) ? 20 : 0; - - reg = link_reg_lookup(lp, "pm.lu_iD"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_iQ"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_location"); - if (reg != NULL) { reg += reg->um_sel; reg->update = fast; } - - reg = link_reg_lookup(lp, "pm.lu_wS"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_mq_produce"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.lu_mq_load"); - if (reg != NULL) { reg->update = rate; } - - reg = link_reg_lookup(lp, "pm.x_setpoint_location"); - if (reg != NULL) { reg += reg->um_sel; reg->update = rate; } - } - - reg_enum_errno(pub, "pm.lu_MODE", "LU operation mode", 0); - - reg_float(pub, "pm.lu_iD", "LU current D"); - reg_float(pub, "pm.lu_iQ", "LU current Q"); - reg_float_um(pub, "pm.lu_wS", "LU speed estimate", um_def); - reg_float(pub, "pm.lu_mq_produce", "LU torque production"); - reg_float(pub, "pm.lu_mq_load", "LU load torque estimate"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - um_sel = um_def; - - reg = link_reg_lookup(lp, "pm.lu_location"); - if (reg != NULL) { um_sel = reg->um_sel; }; - - reg = link_reg_lookup(lp, "pm.x_minimal"); - if (reg != NULL) { reg += um_sel; ld_range[0] = reg->fval; }; - - reg = link_reg_lookup(lp, "pm.x_maximal"); - if (reg != NULL) { reg += um_sel; ld_range[1] = reg->fval; }; - - reg_float_prog_um(pub, "pm.lu_location", "LU location", - ld_range[0], ld_range[1], um_def); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - um_sel = um_def; - - reg = link_reg_lookup(lp, "pm.x_setpoint_location"); - if (reg != NULL) { um_sel = reg->um_sel; }; - - reg = link_reg_lookup(lp, "pm.x_minimal"); - if (reg != NULL) { reg += um_sel; ld_range[0] = reg->fval; }; - - reg = link_reg_lookup(lp, "pm.x_maximal"); - if (reg != NULL) { reg += um_sel; ld_range[1] = reg->fval; }; - - reg_float_prog_um(pub, "pm.x_setpoint_location", "Location setpoint", - ld_range[0], ld_range[1], um_def); - - reg_float_um(pub, "pm.x_setpoint_speed", "Speed setpoint", um_def); - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_telemetry(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - struct link_reg *reg; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Telemetry grabbing", NK_TEXT_LEFT)) { - - pub->popup_enum = POPUP_TELEMETRY_GRAB; - pub->telemetry.wait_GP = 0; - - strcpy(pub->telemetry.file_grab, FILE_TLM_DEFAULT); - pub_directory_scan(pub, FILE_TLM_EXT); - } - - if (nk_menu_item_label(ctx, "Default telemetry", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_RESET_DEFAULT; - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - if (pub->popup_enum != POPUP_TELEMETRY_GRAB) { - - int reg_ID; - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_float(pub, "tlm.rate_grab", "Grab into RAM frequency"); - reg_float(pub, "tlm.rate_live", "Live frequency"); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - reg_linked(pub, "tlm.reg_ID0", "Tele register ID 0"); - - reg = link_reg_lookup(lp, "tlm.reg_ID0"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID1", "Tele register ID 1"); - - reg = link_reg_lookup(lp, "tlm.reg_ID1"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID2", "Tele register ID 2"); - - reg = link_reg_lookup(lp, "tlm.reg_ID2"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID3", "Tele register ID 3"); - - reg = link_reg_lookup(lp, "tlm.reg_ID3"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID4", "Tele register ID 4"); - - reg = link_reg_lookup(lp, "tlm.reg_ID4"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID5", "Tele register ID 5"); - - reg = link_reg_lookup(lp, "tlm.reg_ID5"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID6", "Tele register ID 6"); - - reg = link_reg_lookup(lp, "tlm.reg_ID6"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID7", "Tele register ID 7"); - - reg = link_reg_lookup(lp, "tlm.reg_ID7"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID8", "Tele register ID 8"); - - reg = link_reg_lookup(lp, "tlm.reg_ID8"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - reg_linked(pub, "tlm.reg_ID9", "Tele register ID 9"); - - reg = link_reg_lookup(lp, "tlm.reg_ID9"); - reg_ID = (reg != NULL) ? reg->lval : 0; - - reg_float_prog_by_ID(pub, reg_ID); - - if (reg_ID > 0 && reg_ID < lp->reg_MAX_N) { - - reg = &lp->reg[reg_ID]; - - if ((reg->mode & LINK_REG_CONFIG) == 0) { - - reg->update = 1000; - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - } - - pub_popup_telemetry_grab(pub, POPUP_TELEMETRY_GRAB); - - if (pub_popup_ok_cancel(pub, POPUP_RESET_DEFAULT, - "Please confirm that you really" - " want to reset all telemetry configuration.") != 0) { - - link_command(lp, "tlm_default"); - link_reg_fetch_all_shown(lp); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_flash(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Flash programming", NK_TEXT_LEFT)) { - - link_command(lp, "flash_prog" "\r\n" - "flash_info"); - } - - if (nk_menu_item_label(ctx, "Flash storage wipe", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_FLASH_WIPE; - } - } - - if (nk_menu_item_label(ctx, "Reboot MCU", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_SYSTEM_REBOOT; - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - if (pub_popup_ok_cancel(pub, POPUP_FLASH_WIPE, - "Please confirm that you really" - " want to WIPE flash storage.") != 0) { - - link_command(lp, "flash_wipe" "\r\n" - "flash_info"); - } - - if (pub_popup_ok_cancel(pub, POPUP_SYSTEM_REBOOT, - "Please confirm that you really" - " want to reboot PMC.") != 0) { - - if (link_command(lp, "ap_reboot")) { - - link_reg_fetch_all_shown(lp); - - lp->uptime = 0; - } - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, pub->fe_def_size_y / 3); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - - if (nk_group_begin(ctx, "INFO", NK_WINDOW_BORDER)) { - - int N, bN, sym; - - nk_layout_row_template_begin(ctx, 0); - - for (bN = 0; bN < LINK_FLASH_MAX; ++bN) { - - if (lp->flash[0].block[bN] == 0) - break; - - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - } - - nk_layout_row_template_end(ctx); - - for (N = 0; N < LINK_FLASH_MAX; ++N) { - - if (lp->flash[N].block[0] == 0) - break; - - for (bN = 0; bN < sizeof(lp->flash[0].block); ++bN) { - - sym = lp->flash[N].block[bN]; - - if (sym == 0) - break; - - pub_drawing_flash_colored(nk, sym); - } - } - - nk_group_end(ctx); - } - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - - nk_layout_row_template_begin(ctx, 0); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 1); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - nk_spacer(ctx); - pub_drawing_flash_colored(nk, 'a'); - nk_spacer(ctx); - nk_label(ctx, "Data block (with correct CRC)", NK_TEXT_LEFT); - - nk_spacer(ctx); - pub_drawing_flash_colored(nk, 'x'); - nk_spacer(ctx); - nk_label(ctx, "Garbage block", NK_TEXT_LEFT); - - nk_spacer(ctx); - pub_drawing_flash_colored(nk, '.'); - nk_spacer(ctx); - nk_label(ctx, "Erased block", NK_TEXT_LEFT); - - if (lp->unable_warning[0] != 0) { - - strcpy(pub->popup_msg, lp->unable_warning); - pub->popup_enum = POPUP_UNABLE_WARNING; - - lp->unable_warning[0] = 0; - } - - pub_popup_message(pub, POPUP_UNABLE_WARNING, pub->popup_msg); - - nk_layout_row_dynamic(ctx, 0, 1); - nk_spacer(ctx); - nk_spacer(ctx); -} - -static void -page_upgrade(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - nk_menubar_begin(ctx); - - nk_style_push_vec2(ctx, &ctx->style.contextual_button.padding, - nk_vec2(pub->fe_base * 1.5f, 4.0f)); - - nk_layout_row_static(ctx, 0, pub->fe_base * 8, 2); - - if (nk_menu_begin_label(ctx, "Menu", NK_TEXT_CENTERED, - nk_vec2(pub->fe_base * 16, 800))) - { - nk_layout_row_dynamic(ctx, 0, 1); - - if (nk_menu_item_label(ctx, "Enter bootloader", NK_TEXT_LEFT)) { - - if (lp->linked != 0) { - - pub->popup_enum = POPUP_SYSTEM_BOOTLOAD; - } - } - - nk_menu_end(ctx); - } - - nk_style_pop_vec2(ctx); - nk_menubar_end(ctx); - - if (pub_popup_ok_cancel(pub, POPUP_SYSTEM_BOOTLOAD, - "Please confirm that you really want to" - " reboot into embedded bootloader. Note" - " that PMC connection will be closed.") != 0) { - - if (link_command(lp, "ap_bootload") != 0) { - - config_write(pub->fe); - link_close(lp); - } - } -} - -static void -menu_select_button(struct public *pub, const char *title, void (* pfunc) (struct public *)) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - struct nk_style_button button; - - button = ctx->style.button; - button.text_alignment = NK_TEXT_LEFT; - - if (pub->menu.page_current == pub->menu.page_selected) { - - button.normal = button.active; - button.hover = button.active; - button.text_normal = button.text_active; - button.text_hover = button.text_active; - } - - if (nk_button_label_styled(ctx, &button, title)) { - - if (pub->menu.page_current != pub->menu.page_selected) { - - nk_group_set_scroll(ctx, "PAGE", 0, 0); - - link_reg_fetch_all_shown(lp); - - pub->menu.page_pushed = pub->menu.page_current; - } - } - - if (pub->menu.page_current < PHOBIA_TAB_MAX - 1) { - - pub->menu.pagetab[pub->menu.page_current++] = pfunc; - } -} - -static void -menu_group_layout(struct public *pub) -{ - struct nk_sdl *nk = pub->nk; - struct link_pmc *lp = pub->lp; - struct nk_context *ctx = &nk->ctx; - - struct nk_rect window; - struct nk_vec2 padding; - - window = nk_window_get_content_region(ctx); - padding = ctx->style.window.padding; - - nk_layout_row_template_begin(ctx, window.h - padding.y * 2); - nk_layout_row_template_push_static(ctx, pub->fe_base * 8); - nk_layout_row_template_push_variable(ctx, 1); - nk_layout_row_template_end(ctx); - - if (nk_group_begin(ctx, "MENU", 0)) { - - pub->menu.page_current = 0; - - nk_layout_row_dynamic(ctx, 0, 1); - - menu_select_button(pub, "Serial", &page_serial); - menu_select_button(pub, "Diagnose", &page_diagnose); - menu_select_button(pub, "Probe", &page_probe); - menu_select_button(pub, "HAL", &page_hal); - menu_select_button(pub, "in Network", &page_in_network); - menu_select_button(pub, "in STEP/DIR", &page_in_stepdir); - menu_select_button(pub, "in PWM", &page_in_pwm); - menu_select_button(pub, "in Knob", &page_in_knob); - menu_select_button(pub, "Application", &page_application); - menu_select_button(pub, "Thermal", &page_thermal); - menu_select_button(pub, "Config", &page_config); - menu_select_button(pub, "lu Forced", &page_lu_forced); - menu_select_button(pub, "lu FLUX", &page_lu_flux); - menu_select_button(pub, "lu HFI", &page_lu_hfi); - menu_select_button(pub, "lu Hall", &page_lu_hall); - menu_select_button(pub, "lu EABI", &page_lu_eabi); - menu_select_button(pub, "lu SIN/COS", &page_lu_sincos); - menu_select_button(pub, "Wattage", &page_wattage); - menu_select_button(pub, "lp Current", &page_lp_current); - menu_select_button(pub, "lp Speed", &page_lp_speed); - menu_select_button(pub, "lp Location", &page_lp_location); - menu_select_button(pub, "Telemetry", &page_telemetry); - menu_select_button(pub, "Flash", &page_flash); - menu_select_button(pub, "Upgrade", &page_upgrade); - - pub->menu.page_selected = pub->menu.page_pushed; - - nk_group_end(ctx); - } - - if (nk_group_begin(ctx, "PAGE", 0)) { - - struct nk_style_item item; - - item = nk_style_item_color(nk->table[NK_COLOR_BACKGROUND]); - - nk_style_push_color(ctx, &ctx->style.window.background, item.data.color); - nk_style_push_color(ctx, &ctx->style.contextual_button - .text_background, item.data.color); - nk_style_push_style_item(ctx, &ctx->style.window.fixed_background, item); - nk_style_push_style_item(ctx, &ctx->style.contextual_button.normal, item); - - (void) pub->menu.pagetab[pub->menu.page_selected] (pub); - - nk_style_pop_color(ctx); - nk_style_pop_color(ctx); - nk_style_pop_style_item(ctx); - nk_style_pop_style_item(ctx); - - if (lp->uptime_warning) { - - pub->popup_enum = POPUP_LINK_WARNING; - lp->uptime_warning = 0; - } - - if (pub_popup_ok_cancel(pub, POPUP_LINK_WARNING, - "A sudden reset was detected so we must drop" - " this link and connect to PMC again to read" - " actual information.") != 0) { - - config_write(pub->fe); - link_close(lp); - } - - nk_group_end(ctx); - } -} - -int main(int argc, char **argv) -{ - struct config_phobia *fe; - struct nk_sdl *nk; - struct link_pmc *lp; - struct public *pub; - - setlocale(LC_NUMERIC, "C"); - - fe = calloc(1, sizeof(struct config_phobia)); - nk = calloc(1, sizeof(struct nk_sdl)); - lp = calloc(1, sizeof(struct link_pmc)); - pub = calloc(1, sizeof(struct public)); - - pub->fe = fe; - pub->nk = nk; - pub->lp = lp; - - if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) < 0) { - - /* TODO */ - } - - if (TTF_Init() < 0) { - - /* TODO */ - } - - IMG_Init(IMG_INIT_PNG); - - config_open(pub->fe); - pub_font_layout(pub); - - nk->window = SDL_CreateWindow("Phobia", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, - pub->fe_def_size_x, pub->fe_def_size_y, SDL_WINDOW_RESIZABLE); - - if (nk->window == NULL) { - - /* TODO */ - } - - nk->window_ID = SDL_GetWindowID(nk->window); - - if (nk->window_ID == 0) { - - /* TODO */ - } - - SDL_SetWindowMinimumSize(nk->window, pub->fe_def_size_x, pub->fe_def_size_y); - SDL_StopTextInput(); - - nk->fb = SDL_GetWindowSurface(nk->window); - - if (nk->fb == NULL) { - - /* TODO */ - } - - nk->surface = SDL_CreateRGBSurfaceWithFormat(0, nk->fb->w, - nk->fb->h, 32, SDL_PIXELFORMAT_XRGB8888); - - if (nk->surface == NULL) { - - /* TODO */ - } - - nk_init_default(&nk->ctx, &nk->font); - nk_sdl_style_custom(nk); - - while (nk->onquit == 0) { - - SDL_Event ev; - - nk->clock = SDL_GetTicks(); - - nk_input_begin(&nk->ctx); - - while (SDL_PollEvent(&ev) != 0) { - - if ( ev.window.windowID == nk->window_ID - || ev.type == SDL_QUIT) { - - nk_sdl_input_event(nk, &ev); - } - else if ( pub->gp != NULL - && ev.window.windowID == pub->gp_ID) { - - gp_TakeEvent(pub->gp, &ev); - } - - nk->active = 1; - } - - nk_input_end(&nk->ctx); - - if (link_fetch(lp, nk->clock) != 0) { - - nk->active = 1; - } - - if (nk->active != 0) { - - nk->idled = 0; - } - else { - nk->idled += 1; - nk->active = (nk->idled < 100) ? 1 : 0; - } - - if (nk->active != 0) { - - struct nk_rect bounds = nk_rect(0, 0, nk->surface->w, - nk->surface->h); - - if (lp->hwinfo[0] != 0) { - - struct nk_color header; - - if (strstr(lp->hwinfo, "does NOT match") == NULL) { - - header = nk->table[NK_COLOR_ENABLED]; - } - else { - header = nk->table[NK_COLOR_FLICKER_ALERT]; - } - - nk->ctx.style.window.header.active = nk_style_item_color(header); - - sprintf(pub->lbuf, " %.77s", lp->hwinfo); - - if (lp->network[0] != 0) { - - sprintf(pub->lbuf + strlen(pub->lbuf), - " / %.16s", lp->network); - } - - nk->idled = 0; - } - else { - nk->ctx.style.window.header.active = - nk_style_item_color(nk->table[NK_COLOR_HEADER]); - - sprintf(pub->lbuf, " Not linked to PMC"); - } - - if (nk_begin(&nk->ctx, pub->lbuf, bounds, NK_WINDOW_TITLE - | NK_WINDOW_NO_SCROLLBAR)) { - - menu_group_layout(pub); - - nk_end(&nk->ctx); - } - - nk_sdl_render(nk); - - SDL_BlitSurface(nk->surface, NULL, nk->fb, NULL); - SDL_UpdateWindowSurface(nk->window); - - nk->updated = nk->clock; - nk->active = 0; - } - - link_push(lp); - - if ( pub->gp != NULL - && gp_IsQuit(pub->gp) == 0) { - - if (gp_Draw(pub->gp) == 0) { - - SDL_Delay(10); - } - } - else { - if (pub->gp != NULL) { - - if (lp->grab_N != 0) { - - link_grab_file_close(lp); - } - - link_command(lp, "\r\n"); - - gp_Clean(pub->gp); - - pub->gp = NULL; - } - - SDL_Delay(10); - } - } - - if (pub->gp != NULL) { - - gp_Clean(pub->gp); - } - - config_write(pub->fe); - link_close(lp); - - free(nk); - free(lp); - free(pub); - - SDL_Quit(); - - return 0; -} - diff --git a/phobia/serial.c b/phobia/serial.c deleted file mode 100644 index f8eb8ca..0000000 --- a/phobia/serial.c +++ /dev/null @@ -1,801 +0,0 @@ -#include -#include -#include -#include - -#include - -#ifdef _WINDOWS -#include -#else /* _WINDOWS */ -#include -#include -#include -#include -#include -#include -#endif /* _WINDOWS */ - -#include "serial.h" - -struct serial_fd { - -#ifdef _WINDOWS - HANDLE hFile; -#else - int port; -#endif /* _WINDOWS */ - - struct async_priv *rxq; - struct async_priv *txq; - - SDL_Thread *thread_rxq; - SDL_Thread *thread_txq; -}; - -struct async_priv { - - int length; - int cached; - - char *stream; - SDL_atomic_t rp; - SDL_atomic_t wp; - - char *ophunk; - int chunk; - - SDL_atomic_t terminate; -}; - -static struct async_priv * -async_open(int length) -{ - struct async_priv *ap; - - ap = calloc(1, sizeof(struct async_priv)); - - ap->length = length; - ap->stream = (char *) malloc(ap->length); - - ap->chunk = 80; - ap->ophunk = (char *) malloc(ap->chunk); - - return ap; -} - -static void -async_close(struct async_priv *ap) -{ - free(ap->stream); - free(ap->ophunk); - free(ap); -} - -static int -async_getc(struct async_priv *ap) -{ - int rp, wp, cq; - - rp = SDL_AtomicGet(&ap->rp); - wp = SDL_AtomicGet(&ap->wp); - - if (rp != wp) { - - cq = (int) ap->stream[rp]; - rp = (rp < ap->length - 1) ? rp + 1 : 0; - - SDL_AtomicSet(&ap->rp, rp); - - return cq; - } - else { - return SERIAL_ASYNC_WAIT; - } -} - -static int -async_putc(struct async_priv *ap, int cq) -{ - int rp, wp, wpi; - - rp = SDL_AtomicGet(&ap->rp); - wp = SDL_AtomicGet(&ap->wp); - - wpi = (wp < ap->length - 1) ? wp + 1 : 0; - - if (wpi != rp) { - - ap->stream[wp] = (char) cq; - - SDL_AtomicSet(&ap->wp, wpi); - - return SERIAL_OK; - } - else { - return SERIAL_ASYNC_WAIT; - } -} - -static int -async_fgets(struct async_priv *ap, char *sbuf, int n) -{ - int rp, wp, cq, eol, nq; - - rp = SDL_AtomicGet(&ap->rp); - wp = SDL_AtomicGet(&ap->wp); - - if (wp != ap->cached) { - - eol = 0; - nq = 0; - - do { - if (rp == wp) - break; - - cq = (int) ap->stream[rp]; - - if (cq == '\r' || cq == '\n') { - - eol = (nq > 0) ? 1 : 0; - } - else if (eol == 1) { - - break; - } - else if (nq < n - 1) { - - *sbuf++ = (char) cq; - nq++; - } - - rp = (rp < ap->length - 1) ? rp + 1 : 0; - } - while (1); - - if (eol != 0) { - - ap->cached = rp; - - *sbuf = 0; - - SDL_AtomicSet(&ap->rp, rp); - - return SERIAL_OK; - } - else { - ap->cached = rp; - - return SERIAL_ASYNC_WAIT; - } - } - else { - return SERIAL_ASYNC_WAIT; - } -} - -static int -async_space_available(struct async_priv *ap) -{ - int rp, wp, nr; - - rp = SDL_AtomicGet(&ap->rp); - wp = SDL_AtomicGet(&ap->wp); - - nr = wp - rp; - nr += (nr < 0) ? ap->length : 0; - - return ap->length - nr; -} - -#ifdef _WINDOWS -void serial_enumerate(struct serial_list *ls) -{ - char *lpPath, *lpName, *lpCOM; - DWORD comTake, uMax = 131072U; - - memset(ls, 0, sizeof(struct serial_list)); - - ls->mbflow = ls->mb; - - lpPath = malloc(uMax); - - do { - if (QueryDosDeviceA(NULL, lpPath, uMax) != 0) - break; - - if (uMax < 8388608U) { - - uMax *= 2U; - lpPath = realloc(lpPath, uMax); - } - else { - /* We are unable to get DOS device names. - * */ - return ; - } - } - while(1); - - lpName = lpPath; - - while (*lpName != 0) { - - lpCOM = strstr(lpName, "COM"); - - if (lpCOM != NULL) { - - comTake = 0; - - if (lpCOM[3] >= '0' && lpCOM[3] <= '9') { - - if (lpCOM[4] == 0) { - - comTake = 1; - } - else if (lpCOM[4] >= '0' && lpCOM[4] <= '9') { - - if (lpCOM[5] == 0) { - - comTake = 1; - } - } - } - - if (comTake != 0) { - - sprintf(ls->mbflow, "%s", lpName); - - ls->name[ls->dnum] = ls->mbflow; - - ls->mbflow += strlen(ls->mbflow) + 1; - ls->dnum++; - - if (ls->dnum >= SERIAL_DEVICE_MAX) - break; - } - } - - lpName += strlen(lpName) + 1; - } - - free(lpPath); - - if (ls->dnum == 0) { - - ls->mbflow[0] = 0; - ls->name[0] = ls->mbflow; - - ls->dnum = 1; - } -} - -static struct serial_fd * -serial_port_open(const char *devname, int baudrate, const char *mode) -{ - struct serial_fd *fd; - - char lpName[80]; - - HANDLE hFile; - COMMTIMEOUTS CommTimeouts; - DCB CommDCB; - - sprintf(lpName, "//./%.75s", devname); - - hFile = CreateFileA(lpName, GENERIC_READ | GENERIC_WRITE, - 0, NULL, OPEN_EXISTING, 0, NULL); - - if (hFile == INVALID_HANDLE_VALUE) - return NULL; - - SetupComm(hFile, 1024, 1024); - - CommTimeouts.ReadIntervalTimeout = MAXDWORD; - CommTimeouts.ReadTotalTimeoutMultiplier = MAXDWORD; - CommTimeouts.ReadTotalTimeoutConstant = 100; - CommTimeouts.WriteTotalTimeoutMultiplier = 0; - CommTimeouts.WriteTotalTimeoutConstant = 0; - - SetCommTimeouts(hFile, &CommTimeouts); - SetCommMask(hFile, EV_ERR); - - memset(&CommDCB, 0, sizeof(CommDCB)); - CommDCB.DCBlength = sizeof(CommDCB); - - GetCommState(hFile, &CommDCB); - - switch (mode[0]) { - - case '5': - CommDCB.ByteSize = 5; - break; - - case '6': - CommDCB.ByteSize = 6; - break; - - case '7': - CommDCB.ByteSize = 7; - break; - - default: - case '8': - CommDCB.ByteSize = 8; - break; - } - - switch (mode[1]) { - - default: - case 'N': - CommDCB.Parity = NOPARITY; - break; - - case 'O': - CommDCB.Parity = ODDPARITY; - break; - - case 'E': - CommDCB.Parity = EVENPARITY; - break; - - } - - switch (mode[2]) { - - default: - case '1': - CommDCB.StopBits = ONESTOPBIT; - break; - - case '2': - CommDCB.StopBits = TWOSTOPBITS; - break; - } - - switch (baudrate) { - - case 1200: CommDCB.BaudRate = CBR_1200; break; - case 2400: CommDCB.BaudRate = CBR_2400; break; - case 4800: CommDCB.BaudRate = CBR_4800; break; - case 9600: CommDCB.BaudRate = CBR_9600; break; - case 19200: CommDCB.BaudRate = CBR_19200; break; - case 38400: CommDCB.BaudRate = CBR_38400; break; - case 57600: CommDCB.BaudRate = CBR_57600; break; - case 115200: CommDCB.BaudRate = CBR_115200; break; - case 128000: CommDCB.BaudRate = CBR_128000; break; - case 256000: CommDCB.BaudRate = CBR_256000; break; - default: break; - } - - CommDCB.fOutxCtsFlow = FALSE; - CommDCB.fOutxDsrFlow = FALSE; - CommDCB.fDtrControl = DTR_CONTROL_DISABLE; - CommDCB.fDsrSensitivity = FALSE; - CommDCB.fTXContinueOnXoff = FALSE; - CommDCB.fOutX = FALSE; - CommDCB.fInX = FALSE; - CommDCB.fErrorChar = FALSE; - CommDCB.fNull = FALSE; - CommDCB.fRtsControl = RTS_CONTROL_DISABLE; - CommDCB.fAbortOnError = FALSE; - - SetCommState(hFile, &CommDCB); - - fd = calloc(1, sizeof(struct serial_fd)); - - fd->hFile = hFile; - - return fd; -} - -static int -serial_port_read(struct serial_fd *fd, char *s, int n) -{ - BOOL bRet; - DWORD nBytes = 0; - - bRet = ReadFile(fd->hFile, (LPVOID) s, (DWORD) n, &nBytes, NULL); - - if (bRet == FALSE || nBytes < 1) { - - return SERIAL_ERROR_UNKNOWN; - } - - return (int) nBytes; -} - -static int -serial_port_write(struct serial_fd *fd, const char *s, int n) -{ - BOOL bRet; - DWORD nBytes, nTotal = 0; - - while (nTotal < n) { - - nBytes = 0; - - bRet = WriteFile(fd->hFile, (LPCVOID) (s + nTotal), - (DWORD) (n - nTotal), &nBytes, NULL); - - if (bRet == FALSE || nBytes < 1) { - - return SERIAL_ERROR_UNKNOWN; - } - - nTotal += nBytes; - } - - return (int) nTotal; -} - -#else /* _WINDOWS */ -static void -serial_port_pattern(struct serial_list *ls, const char *pat) -{ - DIR *dir; - struct dirent *en; - - int len; - - dir = opendir("/dev"); - len = strlen(pat); - - if (dir != NULL) { - - while ((en = readdir(dir)) != NULL) { - - if (en->d_type == DT_CHR || en->d_type == DT_UNKNOWN) { - - if (memcmp(en->d_name, pat, len) == 0) { - - sprintf(ls->mbflow, "/dev/%s", en->d_name); - - ls->name[ls->dnum] = ls->mbflow; - - ls->mbflow += strlen(ls->mbflow) + 1; - ls->dnum++; - - if (ls->dnum >= SERIAL_DEVICE_MAX) - break; - } - } - } - - closedir(dir); - } -} - -void serial_enumerate(struct serial_list *ls) -{ - memset(ls, 0, sizeof(struct serial_list)); - - ls->mbflow = ls->mb; - - serial_port_pattern(ls, "ttyACM"); - serial_port_pattern(ls, "ttyUSB"); - serial_port_pattern(ls, "rfcomm"); - serial_port_pattern(ls, "ttyS"); - -#ifdef _MACOS - serial_port_pattern(ls, "tty.BT"); - serial_port_pattern(ls, "tty.Bluetooth"); - serial_port_pattern(ls, "tty.usbmodem"); -#endif /* _MACOS */ - - if (ls->dnum == 0) { - - ls->mbflow[0] = 0; - ls->name[0] = ls->mbflow; - - ls->dnum = 1; - } -} - -static struct serial_fd * -serial_port_open(const char *devname, int baudrate, const char *mode) -{ - struct serial_fd *fd; - - struct termios tio; - int port; - - port = open(devname, O_RDWR | O_NOCTTY | O_NDELAY); - - if (port < 0) - return NULL; - - memset(&tio, 0, sizeof(tio)); - tcgetattr(port, &tio); - - tio.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR - | IGNCR | ICRNL | IXON | IXOFF | IXANY | IGNPAR); - tio.c_oflag &= ~(OPOST | ONLCR | OCRNL); - tio.c_cflag &= ~(CSIZE | CSTOPB | PARENB | PARODD | CRTSCTS); - tio.c_cflag |= CLOCAL | CREAD; - tio.c_lflag &= ~(ECHO | ECHOK | ECHONL | ECHOCTL | ECHOKE - | ICANON | ISIG | IEXTEN); - - switch (mode[0]) { - - case '5': - tio.c_cflag |= CS5; - break; - - case '6': - tio.c_cflag |= CS6; - break; - - case '7': - tio.c_cflag |= CS7; - break; - - default: - case '8': - tio.c_cflag |= CS8; - break; - } - - switch (mode[1]) { - - default: - case 'N': - break; - - case 'O': - tio.c_cflag |= PARENB | PARODD; - break; - - case 'E': - tio.c_cflag |= PARENB; - break; - } - - switch (mode[2]) { - - default: - case '1': - break; - - case '2': - tio.c_cflag |= CSTOPB; - break; - } - - switch (baudrate) { - - case 1200: baudrate = B1200; break; - case 2400: baudrate = B2400; break; - case 4800: baudrate = B4800; break; - case 9600: baudrate = B9600; break; - case 19200: baudrate = B19200; break; - case 38400: baudrate = B38400; break; - case 57600: baudrate = B57600; break; - case 115200: baudrate = B115200; break; - case 230400: baudrate = B230400; break; - default: break; - } - - cfsetospeed(&tio, baudrate); - cfsetispeed(&tio, baudrate); - - tio.c_cc[VTIME] = 1; - tio.c_cc[VMIN] = 0; - - if (tcsetattr(port, TCSANOW, &tio) != 0) { - - close(port); - return NULL; - } - - fd = calloc(1, sizeof(struct serial_fd)); - - fd->port = port; - - return fd; -} - -static int -serial_port_read(struct serial_fd *fd, char *s, int n) -{ - n = read(fd->port, s, n); - - if (n < 1) { - - return SERIAL_ERROR_UNKNOWN; - } - - return n; -} - -static int -serial_port_write(struct serial_fd *fd, const char *s, int n) -{ - int rc, total = 0; - - while (total < n) { - - rc = write(fd->port, s + total, n - total); - - if (rc < 1) { - - return SERIAL_ERROR_UNKNOWN; - } - - total += rc; - } - - return total; -} -#endif /* _WINDOWS */ - -static int -async_thread_rx(struct serial_fd *fd) -{ - struct async_priv *ap = fd->rxq; - int cq, rc, n, i; - - do { - n = serial_port_read(fd, ap->ophunk, ap->chunk); - - for (i = 0; i < n; ++i) { - - cq = (int) ap->ophunk[i]; - - do { - rc = async_putc(ap, cq); - - if (rc == SERIAL_OK) - break; - - SDL_Delay(10); - } - while (1); - } - - SDL_Delay(1); - - if (SDL_AtomicGet(&ap->terminate) != 0) - break; - } - while (1); - - async_close(ap); - - return 0; -} - -static int -async_thread_tx(struct serial_fd *fd) -{ - struct async_priv *ap = fd->txq; - int cq, rc, n, terminate = 0; - - do { - n = 0; - - if (SDL_AtomicGet(&ap->terminate) != 0) { - - terminate = 1; - } - - do { - cq = async_getc(ap); - - if (cq == SERIAL_ASYNC_WAIT) - break; - - ap->ophunk[n++] = (char) cq; - - if (n >= ap->chunk) - break; - } - while (1); - - if (n > 0) { - - rc = serial_port_write(fd, ap->ophunk, n); - - if (rc != n) { - - /* TODO */ - } - } - else { - SDL_Delay(10); - - if (terminate != 0) - break; - } - } - while (1); - - async_close(ap); - - return 0; -} - -struct serial_fd *serial_open(const char *devname, int baudrate, const char *mode) -{ - struct serial_fd *fd; - - fd = serial_port_open(devname, baudrate, mode); - - if (fd != NULL) { - - fd->rxq = async_open(4000); - fd->txq = async_open(200); - - fd->thread_rxq = SDL_CreateThread((int (*) (void *)) &async_thread_rx, - "async_thread_rx", fd); - - fd->thread_txq = SDL_CreateThread((int (*) (void *)) &async_thread_tx, - "async_thread_tx", fd); - } - - return fd; -} - -static int -serial_thread_garbage(struct serial_fd *fd) -{ - SDL_WaitThread(fd->thread_txq, NULL); - -#ifdef _WINDOWS - CloseHandle(fd->hFile); -#else - close(fd->port); -#endif /* _WINDOWS */ - - SDL_WaitThread(fd->thread_rxq, NULL); - - free(fd); - - return 0; -} - -void serial_close(struct serial_fd *fd) -{ - SDL_Thread *thread; - - SDL_AtomicSet(&fd->rxq->terminate, 1); - SDL_AtomicSet(&fd->txq->terminate, 1); - - thread = SDL_CreateThread((int (*) (void *)) &serial_thread_garbage, - "serial_thread_garbage", fd); - - SDL_DetachThread(thread); -} - -int serial_fputs(struct serial_fd *fd, const char *s) -{ - int av, rc; - - av = async_space_available(fd->txq); - - if (strlen(s) < av) { - - while (*s != 0) { - - rc = async_putc(fd->txq, *s++); - - if (rc != SERIAL_OK) { - - return SERIAL_ERROR_UNKNOWN; - } - } - - return SERIAL_OK; - } - else { - return SERIAL_ASYNC_WAIT; - } -} - -int serial_fgets(struct serial_fd *fd, char *s, int n) -{ - return async_fgets(fd->rxq, s, n); -} - diff --git a/phobia/serial.h b/phobia/serial.h deleted file mode 100644 index 1c16a02..0000000 --- a/phobia/serial.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef _H_SERIAL_ -#define _H_SERIAL_ - -#define SERIAL_DEVICE_MAX 100 -#define SERIAL_MEMORY_SIZE 8192 - -#define SERIAL_DEFAULT "8E1" - -enum { - SERIAL_OK = 0, - SERIAL_ASYNC_WAIT = -1, - SERIAL_ERROR_UNKNOWN = -2, -}; - -struct serial_list { - - const char *name[SERIAL_DEVICE_MAX]; - int dnum; - - char mb[SERIAL_MEMORY_SIZE]; - char *mbflow; -}; - -struct serial_fd; - -void serial_enumerate(struct serial_list *ls); -struct serial_fd *serial_open(const char *devname, int baudrate, const char *mode); -void serial_close(struct serial_fd *fd); - -int serial_fputs(struct serial_fd *fd, const char *s); -int serial_fgets(struct serial_fd *fd, char *s, int n); - -#endif /* _H_SERIAL_ */ -