|
From: <ge...@op...> - 2023-11-30 11:23:30
|
This is an automated email from Gerrit. "Erhan Kurubas <erh...@es...>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8026 -- gerrit commit 0343e4361541b9f55538d08722da4864683aa352 Author: Erhan Kurubas <erh...@es...> Date: Thu Nov 30 12:12:57 2023 +0100 loaders/espressif: add esp32s3 stub flasher application code Special binary program running on the target (ESP32-S3) to perform flash operations and communicate to the OpenOCD host. Camelcase symbols comes from esp-idf Checkpatch-ignore: CAMELCASE Signed-off-by: Erhan Kurubas <erh...@es...> Change-Id: Ic5f3b90c3db0b4ed76481320561340a735d0b150 diff --git a/contrib/loaders/flash/espressif/esp32s3/Makefile b/contrib/loaders/flash/espressif/esp32s3/Makefile new file mode 100644 index 0000000000..1046affb1f --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/Makefile @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +# Makefile to compile flasher stub program +# Copyright (C) 2023 Espressif Systems Ltd. + +# Prefix for ESP32-S3 cross compilers (can include a directory path) +CROSS ?= xtensa-esp32s3-elf- + +# Path to the esp-idf root dir +IDF_PATH ?= ../.. + +STUB_ARCH := xtensa +STUB_CHIP_PATH := $(shell pwd) +STUB_COMMON_PATH := $(STUB_CHIP_PATH)/.. +STUB_CHIP_ARCH_PATH := $(STUB_COMMON_PATH)/$(STUB_ARCH) +STUB_OBJ_DEPS := sdkconfig.h +STUB_LD_SCRIPT := stub.ld +STUB_CHIP := ESP32S3 + +SRCS := $(IDF_PATH)/components/app_trace/port/$(STUB_ARCH)/port.c \ + $(IDF_PATH)/components/xtensa/eri.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32s3/rtc_clk.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32s3/rtc_clk_init.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32s3/rtc_time.c + +CFLAGS := -std=gnu99 -mlongcalls -mtext-section-literals + +INCLUDES := -I$(IDF_PATH)/components/esp32s3/include -I$(IDF_PATH)/components/soc/esp32s3/include \ + -I$(IDF_PATH)/components/esp_rom/include/esp32s3 -I$(IDF_PATH)/components/xtensa/esp32s3/include \ + -I$(IDF_PATH)/components/hal/esp32s3/include \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32s3/private_include \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32s3 + +DEFINES := + +LDFLAGS := -L$(IDF_PATH)/components/esp32s3/ld -T$(IDF_PATH)/components/esp_rom/esp32s3/ld/esp32s3.rom.ld \ + -T$(IDF_PATH)/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld + +include ../stub_common.mk diff --git a/contrib/loaders/flash/espressif/esp32s3/sdkconfig.h b/contrib/loaders/flash/espressif/esp32s3/sdkconfig.h new file mode 100644 index 0000000000..be20fe4973 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/sdkconfig.h @@ -0,0 +1,35 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _STUB_SDKCONFIG_H_ +#define _STUB_SDKCONFIG_H_ + +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_FREERTOS_UNICORE 0 +/* Use ROM flash driver patch + * #define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 + * Disable application module multi-threading lock */ +#define CONFIG_APPTRACE_LOCK_ENABLE 0 +/* Enable apptarce module for flash data transfers */ +#define CONFIG_APPTRACE_DEST_JTAG 1 +#define CONFIG_APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE 1 +#define CONFIG_APPTRACE_ENABLE 1 +#define CONFIG_APPTRACE_BUF_SIZE 0 +#define CONFIG_APPTRACE_PENDING_DATA_SIZE_MAX 0 +/* Debug UART number */ +#define CONFIG_CONSOLE_UART_NUM 0 +/* Debug UART baudrate */ +#define CONFIG_CONSOLE_UART_BAUDRATE 115200 +/* alloc apptrace data buffers on stack */ +#define CONFIG_STUB_STACK_DATA_POOL_SIZE (2 * CONFIG_APPTRACE_BUF_SIZE) + +/* needed due to apptrace sources usage */ +#define CONFIG_LOG_MAXIMUM_LEVEL 0 +/* needed due to various checks in IDF headers */ +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +/* TODO: use current clk, get it from PLL settings */ +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ 160 +/* Unused by stub, just for compilation of IDF */ +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 + +#endif /*_STUB_SDKCONFIG_H_ */ diff --git a/contrib/loaders/flash/espressif/esp32s3/stub.ld b/contrib/loaders/flash/espressif/esp32s3/stub.ld new file mode 100644 index 0000000000..95b9a6f800 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/stub.ld @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * LD script for ESP32-S3 flasher stub * + * Copyright (C) 2021 Espressif Systems Ltd. * + * Author: Alexey Gerenkov <al...@es...> * + ***************************************************************************/ + +MEMORY { + /* Place sections by the offset 0x14000 from the Internal SRAM1. OpenOCD will fill the sections using data bus. + 0x3FC9C000 - code (OpenOCD workarea address) + 0x3FCA0000 - data + */ + iram : org = 0x4038C000, len = 0x4000 + dram : org = 0x3FCA0000, len = 0x20000 +} + +INCLUDE stub_common.ld diff --git a/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.c b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.c new file mode 100644 index 0000000000..359c41aaf0 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.c @@ -0,0 +1,514 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +/*************************************************************************** + * ESP32-S3 specific flasher stub functions * + * Copyright (C) 2021 Espressif Systems Ltd. * + ***************************************************************************/ +#include <string.h> +#include "sdkconfig.h" +#include "soc/rtc.h" +#include "soc/efuse_periph.h" +#include "soc/spi_mem_reg.h" +#include "soc/extmem_reg.h" +#include "soc/system_reg.h" +#include "soc/gpio_reg.h" +#include "soc/mmu.h" +#include "xtensa/hal.h" +#include "esp_spi_flash.h" +#include "rtc_clk_common.h" +#include "stub_rom_chip.h" +#include "stub_logger.h" +#include "stub_flasher_int.h" +#include "stub_flasher_chip.h" + +#define ESP_FLASH_CHIP_MXIC_OCT 0xC2 /* Supported Octal Flash chip vendor id */ +#define SPI_BUFF_BYTE_WRITE_NUM 32 +#define SPI_BUFF_BYTE_READ_NUM 16 + +#define EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT BIT(4) + +/* Cache MMU related definitions */ +#define STUB_CACHE_BUS_PRO EXTMEM_DCACHE_SHUT_CORE0_BUS +#define STUB_CACHE_BUS_APP EXTMEM_DCACHE_SHUT_CORE1_BUS +#define STUB_MMU_DROM_VADDR SOC_MMU_VADDR0_START_ADDR +#define STUB_MMU_DROM_PAGES_START SOC_MMU_DROM0_PAGES_START +#define STUB_MMU_DROM_PAGES_END SOC_MMU_DROM0_PAGES_END +#define STUB_MMU_TABLE SOC_MMU_DPORT_PRO_FLASH_MMU_TABLE /* 0x600c5000 */ +#define STUB_MMU_INVALID_ENTRY_VAL SOC_MMU_INVALID_ENTRY_VAL /* 0x4000 */ + +/* SPI Flash map request data */ +struct spiflash_map_req { + /* Request mapping SPI Flash base address */ + uint32_t src_addr; + /* Request mapping SPI Flash size */ + uint32_t size; + /* Mapped memory pointer */ + void *ptr; + /* Mapped started MMU page index */ + uint32_t start_page; + /* Mapped MMU page count */ + uint32_t page_cnt; +}; + +uint32_t g_stub_cpu_freq_hz = CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ * MHZ; + +extern bool ets_efuse_flash_octal_mode(void); + +void vPortEnterCritical(void *mux) +{ +} + +void vPortExitCritical(void *mux) +{ +} + +#if STUB_LOG_ENABLE == 1 +void stub_print_cache_mmu_registers(void) +{ + uint32_t icache_ctrl1_reg = REG_READ(EXTMEM_DCACHE_CTRL1_REG); + + STUB_LOGD("dcache_ctrl1_reg: 0x%x\n", + icache_ctrl1_reg); +} +#endif + +uint32_t stub_flash_get_id(void) +{ + uint32_t ret; + + STUB_LOGD("flash %x, cs %x, bs %x, ss %x, ps %x, sm %x\n", + rom_spiflash_legacy_data->chip.device_id, + rom_spiflash_legacy_data->chip.chip_size, + rom_spiflash_legacy_data->chip.block_size, + rom_spiflash_legacy_data->chip.sector_size, + rom_spiflash_legacy_data->chip.page_size, + rom_spiflash_legacy_data->chip.status_mask); + + if (rom_spiflash_legacy_data->dummy_len_plus[1] == 0) { + REG_CLR_BIT(PERIPHS_SPI_FLASH_USRREG, SPI_MEM_USR_DUMMY); + } else { + REG_SET_BIT(PERIPHS_SPI_FLASH_USRREG, SPI_MEM_USR_DUMMY); + REG_WRITE(PERIPHS_SPI_FLASH_USRREG1, + (rom_spiflash_legacy_data->dummy_len_plus[1] - 1) << SPI_MEM_USR_DUMMY_CYCLELEN_S); + } + WRITE_PERI_REG(PERIPHS_SPI_FLASH_C0, 0);/* clear register */ + WRITE_PERI_REG(PERIPHS_SPI_FLASH_CMD, SPI_MEM_FLASH_RDID); + while (READ_PERI_REG(PERIPHS_SPI_FLASH_CMD) != 0) + ; + ret = READ_PERI_REG(PERIPHS_SPI_FLASH_C0) & 0xffffff; + STUB_LOGD("Flash ID read %x\n", ret); + if (ets_efuse_flash_octal_mode() && (ret & 0xFF) != ESP_FLASH_CHIP_MXIC_OCT) { + STUB_LOGE("Unsupported octal flash manufacturer"); + return 0; + } + return ret >> 16; +} + +void stub_flash_cache_flush(void) +{ + /* we do not know breakpoint program address here, so invalidate the + * whole ICache */ + Cache_Invalidate_ICache_All(); +} + +static void stub_cache_init(uint32_t cpuid) +{ + STUB_LOGD("%s\n", __func__); + + /* init cache mmu, set cache mode, invalidate cache tags, enable cache*/ + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_DCACHE_CLK_ON); + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_DCACHE_RESET); + REG_CLR_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_DCACHE_RESET); + /* init cache owner bit */ + Cache_Owner_Init(); + /* clear mmu entry */ + Cache_MMU_Init(); + /* config cache mode */ + Cache_Set_Default_Mode(); + Cache_Enable_DCache(0); + if (cpuid == 0) + REG_CLR_BIT(EXTMEM_DCACHE_CTRL1_REG, STUB_CACHE_BUS_PRO); + else + REG_CLR_BIT(EXTMEM_DCACHE_CTRL1_REG, STUB_CACHE_BUS_APP); +} + +static bool stub_is_cache_enabled(uint32_t cpuid) +{ + bool is_enabled = REG_GET_BIT(EXTMEM_DCACHE_CTRL_REG, EXTMEM_DCACHE_ENABLE) != 0; + int cache_bus_disabled = REG_READ(EXTMEM_DCACHE_CTRL1_REG) & + (cpuid == 0 ? STUB_CACHE_BUS_PRO : STUB_CACHE_BUS_APP); + return is_enabled && !cache_bus_disabled; +} + +void stub_flash_state_prepare(struct stub_flash_state *state) +{ + uint32_t core_id = stub_get_coreid(); + uint32_t spiconfig = ets_efuse_get_spiconfig(); + + state->cache_enabled = stub_is_cache_enabled(core_id); + if (!state->cache_enabled) { + STUB_LOGI("Cache needs to be enabled for CPU%d\n", core_id); + stub_cache_init(core_id); + } + + if (ets_efuse_flash_octal_mode()) { + static spiflash_legacy_funcs_t rom_default_spiflash_legacy_funcs = { + .se_addr_bit_len = 24, + .be_addr_bit_len = 24, + .pp_addr_bit_len = 24, + .rd_addr_bit_len = 24, + .read_sub_len = SPI_BUFF_BYTE_READ_NUM, + .write_sub_len = SPI_BUFF_BYTE_WRITE_NUM, + }; + rom_spiflash_legacy_funcs = &rom_default_spiflash_legacy_funcs; + } + + /* Attach flash only if it has not been attached yet. Re-attaching it breaks PSRAM operation. */ + if ((READ_PERI_REG(SPI_MEM_CACHE_FCTRL_REG(0)) & SPI_MEM_CACHE_FLASH_USR_CMD) == 0) { + STUB_LOGI("Attach spi flash...\n"); + esp_rom_spiflash_attach(spiconfig, 0); + } + + STUB_LOGI("Flash state prepared...\n"); +} + +void stub_flash_state_restore(struct stub_flash_state *state) +{ + /* we do not disable or store the cache settings. So, nothing to restore*/ +} + +#define RTC_PLL_FREQ_320M 320 +#define RTC_PLL_FREQ_480M 480 + +rtc_xtal_freq_t stub_rtc_clk_xtal_freq_get(void) +{ + uint32_t xtal_freq_reg = READ_PERI_REG(RTC_XTAL_FREQ_REG); + if (!clk_val_is_valid(xtal_freq_reg)) + return RTC_XTAL_FREQ_40M; + return reg_val_to_clk_val(xtal_freq_reg); +} + +/* Obviously we can call rtc_clk_cpu_freq_get_config() from esp-idf +But this call may cause undesired locks due to ets_printf or abort +*/ +int stub_rtc_clk_cpu_freq_get_config(rtc_cpu_freq_config_t *out_config) +{ + rtc_cpu_freq_src_t source; + uint32_t source_freq_mhz; + uint32_t div; + uint32_t freq_mhz; + uint32_t soc_clk_sel = REG_GET_FIELD(SYSTEM_SYSCLK_CONF_REG, SYSTEM_SOC_CLK_SEL); + switch (soc_clk_sel) { + case DPORT_SOC_CLK_SEL_XTAL: { + source = RTC_CPU_FREQ_SRC_XTAL; + div = REG_GET_FIELD(SYSTEM_SYSCLK_CONF_REG, SYSTEM_PRE_DIV_CNT) + 1; + source_freq_mhz = (uint32_t)stub_rtc_clk_xtal_freq_get(); + freq_mhz = source_freq_mhz / div; + } + break; + case DPORT_SOC_CLK_SEL_PLL: { + source = RTC_CPU_FREQ_SRC_PLL; + uint32_t cpuperiod_sel = REG_GET_FIELD(SYSTEM_CPU_PER_CONF_REG, + SYSTEM_CPUPERIOD_SEL); + uint32_t pllfreq_sel = REG_GET_FIELD(SYSTEM_CPU_PER_CONF_REG, + SYSTEM_PLL_FREQ_SEL); + source_freq_mhz = (pllfreq_sel) ? RTC_PLL_FREQ_480M : RTC_PLL_FREQ_320M; + if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_80) { + div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 6 : 4; + freq_mhz = 80; + } else if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_160) { + div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 3 : 2; + div = 3; + freq_mhz = 160; + } else if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_240) { + div = 2; + freq_mhz = 240; + } else { + /* unsupported frequency configuration */ + return -1; + } + break; + } + case DPORT_SOC_CLK_SEL_8M: + source = RTC_CPU_FREQ_SRC_8M; + source_freq_mhz = 8; + div = 1; + freq_mhz = source_freq_mhz; + break; + default: + /* unsupported frequency configuration */ + return -2; + } + *out_config = (rtc_cpu_freq_config_t) { + .source = source, + .source_freq_mhz = source_freq_mhz, + .div = div, + .freq_mhz = freq_mhz + }; + return 0; +} + +/* this function has almost the same implementation for ESP32 and ESP32-S2 + * TODO: move to common file */ +int stub_cpu_clock_configure(int cpu_freq_mhz) +{ + rtc_cpu_freq_config_t old_config; + int ret = stub_rtc_clk_cpu_freq_get_config(&old_config); + if (ret < 0) { + /* this return value will avoid undesired restore requests for unsupported frequency + *configuration */ + old_config.freq_mhz = 0; + } + +#if STUB_LOG_ENABLE == 1 + if (stub_get_log_dest() == STUB_LOG_DEST_UART) + uart_tx_wait_idle(CONFIG_CONSOLE_UART_NUM); +#endif + + /* set to maximum possible value */ + if (cpu_freq_mhz == -1) + cpu_freq_mhz = CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ; + + /* Set CPU to configured value. Keep other clocks unmodified. */ + if (cpu_freq_mhz > 0) { + rtc_clk_config_t clk_cfg = RTC_CLK_CONFIG_DEFAULT(); + /* ESP32-S2 doesn't have XTAL_FREQ choice, always 40MHz. + So using default value is fine */ + clk_cfg.cpu_freq_mhz = cpu_freq_mhz; + clk_cfg.slow_freq = rtc_clk_slow_freq_get(); + clk_cfg.fast_freq = rtc_clk_fast_freq_get(); + rtc_clk_init(clk_cfg); + + g_stub_cpu_freq_hz = cpu_freq_mhz * MHZ; + } + + return old_config.freq_mhz; +} + +#if STUB_LOG_ENABLE == 1 +void stub_uart_console_configure(int dest) +{ + extern bool g_uart_print; + /* set the default parameter to UART module, but don't enable RX interrupt */ + uartAttach(NULL); + /* first enable uart0 as printf channel */ + uint32_t clock = ets_get_apb_freq(); + ets_update_cpu_frequency(clock / 1000000); + + Uart_Init(0, UART_CLK_FREQ_ROM); + /* install to print later + * Non-Flash Boot can print + * Flash Boot can print when RTC_CNTL_STORE4_REG bit0 is 0 (can be 1 after deep sleep, software reset) + * and printf boot. + * print boot determined by GPIO and efuse, see ets_is_print_boot + */ + g_uart_print = true; + ets_install_uart_printf(); +} +#endif + +uint32_t stub_esp_clk_cpu_freq(void) +{ + return g_stub_cpu_freq_hz; +} + +esp_rom_spiflash_result_t esp_rom_spiflash_erase_area(uint32_t start_addr, uint32_t area_len) +{ + int32_t total_sector_num; + int32_t head_sector_num; + uint32_t sector_no; + uint32_t sector_num_per_block; + + /* set read mode to Fastmode ,not QDIO mode for erase + * + * TODO: this is probably a bug as it doesn't re-enable QIO mode, not serious as this + * function is not used in IDF. + * esp_rom_spiflash_config_readmode(ESP_ROM_SPIFLASH_SLOWRD_MODE); */ + + /* check if area is oversize of flash */ + if ((start_addr + area_len) > rom_spiflash_legacy_data->chip.chip_size) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + /* start_addr is aligned as sector boundary */ + if (start_addr % rom_spiflash_legacy_data->chip.sector_size != 0) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + /* Unlock flash to enable erase */ + if (esp_rom_spiflash_unlock(/*&rom_spiflash_legacy_data->chip*/) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + + sector_no = start_addr / rom_spiflash_legacy_data->chip.sector_size; + sector_num_per_block = rom_spiflash_legacy_data->chip.block_size / + rom_spiflash_legacy_data->chip.sector_size; + total_sector_num = (0 == (area_len % rom_spiflash_legacy_data->chip.sector_size)) ? area_len / + rom_spiflash_legacy_data->chip.sector_size : 1 + (area_len / rom_spiflash_legacy_data->chip.sector_size); + + /* check if erase area reach over block boundary */ + head_sector_num = sector_num_per_block - (sector_no % sector_num_per_block); + + head_sector_num = (head_sector_num >= total_sector_num) ? total_sector_num : head_sector_num; + + /* JJJ, BUG of 6.0 erase + * middle part of area is aligned by blocks */ + total_sector_num -= head_sector_num; + + /* head part of area is erased */ + while (head_sector_num > 0) { + if (esp_rom_spiflash_erase_sector(sector_no) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no++; + head_sector_num--; + } + while (total_sector_num > sector_num_per_block) { + if (esp_rom_spiflash_erase_block(sector_no / sector_num_per_block) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no += sector_num_per_block; + total_sector_num -= sector_num_per_block; + } + + /* tail part of area burn */ + while (total_sector_num > 0) { + if (esp_rom_spiflash_erase_sector(sector_no) != ESP_ROM_SPIFLASH_RESULT_OK) + return ESP_ROM_SPIFLASH_RESULT_ERR; + sector_no++; + total_sector_num--; + } + + return ESP_ROM_SPIFLASH_RESULT_OK; +} + +static inline bool esp_flash_encryption_enabled(void) +{ + uint32_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG, + EFUSE_SPI_BOOT_CRYPT_CNT); + + /* __builtin_parity is in flash, so we calculate parity inline */ + bool enabled = false; + while (flash_crypt_cnt) { + if (flash_crypt_cnt & 1) + enabled = !enabled; + flash_crypt_cnt >>= 1; + } + return enabled; +} + +esp_flash_enc_mode_t stub_get_flash_encryption_mode(void) +{ + static esp_flash_enc_mode_t s_mode = ESP_FLASH_ENC_MODE_DEVELOPMENT; + static bool s_first = true; + + if (s_first) { + if (esp_flash_encryption_enabled()) { + /* Check if SPI_BOOT_CRYPT_CNT is write protected */ + bool flash_crypt_cnt_wr_dis = REG_READ(EFUSE_RD_WR_DIS_REG) & + EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT; + if (!flash_crypt_cnt_wr_dis) { + uint8_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG, + EFUSE_SPI_BOOT_CRYPT_CNT); + /* Check if SPI_BOOT_CRYPT_CNT set for permanent encryption */ + if (flash_crypt_cnt == EFUSE_SPI_BOOT_CRYPT_CNT_V) + flash_crypt_cnt_wr_dis = true; + } + + if (flash_crypt_cnt_wr_dis) { + uint8_t dis_dl_enc = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG, + EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT); + uint8_t dis_dl_icache = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG, + EFUSE_DIS_DOWNLOAD_ICACHE); + if (dis_dl_enc && dis_dl_icache) + s_mode = ESP_FLASH_ENC_MODE_RELEASE; + } + } else { + s_mode = ESP_FLASH_ENC_MODE_DISABLED; + } + s_first = false; + STUB_LOGD("flash_encryption_mode: %d\n", s_mode); + } + + return s_mode; +} + +static int stub_flash_mmap(struct spiflash_map_req *req) +{ + uint32_t map_src = req->src_addr & (~(SPI_FLASH_MMU_PAGE_SIZE - 1)); + uint32_t map_size = req->size + (req->src_addr - map_src); + uint32_t flash_page = map_src / SPI_FLASH_MMU_PAGE_SIZE; + uint32_t page_cnt = (map_size + SPI_FLASH_MMU_PAGE_SIZE - 1) / SPI_FLASH_MMU_PAGE_SIZE; + int start_page, ret = ESP_ROM_SPIFLASH_RESULT_ERR; + uint32_t icache_state, dcache_state; + + icache_state = Cache_Suspend_ICache(); + dcache_state = Cache_Suspend_DCache(); + + for (start_page = STUB_MMU_DROM_PAGES_START; start_page < STUB_MMU_DROM_PAGES_END; + ++start_page) { + if (STUB_MMU_TABLE[start_page] == STUB_MMU_INVALID_ENTRY_VAL) + break; + } + + if (start_page == STUB_MMU_DROM_PAGES_END) { + STUB_LOGW("Failed to find free MMU page! Use the first one.\n"); + start_page = STUB_MMU_DROM_PAGES_START; + } + + if (start_page + page_cnt < STUB_MMU_DROM_PAGES_END) { + for (int i = 0; i < page_cnt; i++) + STUB_MMU_TABLE[start_page + i] = SOC_MMU_PAGE_IN_FLASH(flash_page + i); + + req->start_page = start_page; + req->page_cnt = page_cnt; + req->ptr = (void *)(STUB_MMU_DROM_VADDR + + (start_page - STUB_MMU_DROM_PAGES_START) * SPI_FLASH_MMU_PAGE_SIZE + + (req->src_addr - map_src)); + Cache_Invalidate_Addr((uint32_t)(STUB_MMU_DROM_VADDR + + (start_page - STUB_MMU_DROM_PAGES_START) * SPI_FLASH_MMU_PAGE_SIZE), + page_cnt * SPI_FLASH_MMU_PAGE_SIZE); + ret = ESP_ROM_SPIFLASH_RESULT_OK; + } + + STUB_LOGD("start_page: %d map_src: %x map_size: %x page_cnt: %d flash_page: %d map_ptr: %x\n", + start_page, + map_src, + map_size, + page_cnt, + flash_page, + req->ptr); + + Cache_Resume_DCache(dcache_state); + Cache_Resume_ICache(icache_state); + + return ret; +} + +static void stub_flash_ummap(const struct spiflash_map_req *req) +{ + uint32_t icache_state, dcache_state; + + icache_state = Cache_Suspend_ICache(); + dcache_state = Cache_Suspend_DCache(); + + for (int i = req->start_page; i < req->start_page + req->page_cnt; ++i) + STUB_MMU_TABLE[i] = STUB_MMU_INVALID_ENTRY_VAL; + + Cache_Resume_DCache(dcache_state); + Cache_Resume_ICache(icache_state); +} + +int stub_flash_read_buff(uint32_t addr, void *buffer, uint32_t size) +{ + struct spiflash_map_req req = { + .src_addr = addr, + .size = size, + }; + + int ret = stub_flash_mmap(&req); + + if (ret) + return ret; + + memcpy(buffer, req.ptr, size); + + stub_flash_ummap(&req); + + return ESP_ROM_SPIFLASH_RESULT_OK; +} diff --git a/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.h b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.h new file mode 100644 index 0000000000..aee71e7f3a --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_chip.h @@ -0,0 +1,29 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * ESP32-S3 flasher stub definitions * + * Copyright (C) 2021 Espressif Systems Ltd. * + ***************************************************************************/ +#ifndef ESP32S3_FLASHER_STUB_H +#define ESP32S3_FLASHER_STUB_H + +#include "sdkconfig.h" + +#define STUB_FLASH_SECTOR_SIZE 4096 +/* Flash geometry constants */ +#define STUB_FLASH_BLOCK_SIZE 65536 +#define STUB_FLASH_PAGE_SIZE 256 +#define STUB_FLASH_STATUS_MASK 0xFFFF + +struct stub_flash_state { + uint32_t cache_flags[2]; + bool cache_enabled; +}; +void stub_flash_state_prepare(struct stub_flash_state *state); +void stub_flash_state_restore(struct stub_flash_state *state); + +uint32_t stub_esp_clk_cpu_freq(void); + +#include "stub_xtensa_chips.h" + +#endif /*ESP32S3_FLASHER_STUB_H */ diff --git a/contrib/loaders/flash/espressif/esp32s3/stub_flasher_code.inc b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_code.inc new file mode 100644 index 0000000000..fff425dde2 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32s3/stub_flasher_code.inc @@ -0,0 +1,581 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0x44,0x03,0xca,0x3f,0x2c,0x03,0xca,0x3f,0x36,0x41,0x00,0x81,0xfd,0xff,0xbd,0x02, +0x82,0x08,0x00,0xcd,0x03,0x8c,0xf8,0x91,0xfb,0xff,0x88,0x29,0x8c,0x88,0x88,0x58, +0x8c,0x48,0xa2,0x29,0x03,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0xa4,0x00,0xca,0x3f, +0x34,0x70,0x00,0x60,0x2c,0x70,0x00,0x60,0x30,0x70,0x00,0x60,0xa0,0x00,0xca,0x3f, +0x36,0x41,0x00,0xa1,0xfa,0xff,0x82,0x0a,0x00,0x16,0x28,0x06,0x81,0xf9,0xff,0x0c, +0x1b,0xc0,0x20,0x00,0x98,0x08,0x0c,0x08,0x90,0x92,0x25,0x46,0x03,0x00,0x00,0x00, +0x07,0x69,0x05,0xb0,0x88,0x30,0x80,0x80,0x74,0x90,0x91,0x41,0x56,0x09,0xff,0xb1, +0xf3,0xff,0xbc,0x28,0x81,0xf0,0xff,0xc0,0x20,0x00,0x88,0x08,0x47,0xe8,0x0d,0x81, +0xec,0xff,0xc0,0x20,0x00,0x88,0x08,0x80,0x82,0x25,0x66,0x78,0x1c,0x91,0xea,0xff, +0xc0,0x20,0x00,0x88,0x09,0xc0,0x20,0x00,0x98,0x09,0x80,0x84,0xb5,0x90,0x9a,0x41, +0x90,0x88,0x10,0x07,0x68,0x03,0x0c,0x28,0x89,0x0b,0x0c,0x08,0x82,0x4a,0x00,0x81, +0xe3,0xff,0x28,0x08,0x1d,0xf0,0x00,0x00,0x1c,0x00,0x10,0x00,0x36,0x41,0x00,0x21, +0xfe,0xff,0x20,0x62,0x40,0x20,0x26,0x05,0x1d,0xf0,0x00,0x00,0x00,0x10,0x00,0x00, +0x20,0x40,0x00,0x00,0x00,0x10,0x01,0x00,0x18,0x10,0x0c,0x60,0x36,0x41,0x00,0x2c, +0x09,0x81,0xfa,0xff,0xcc,0x42,0x91,0xfa,0xff,0x81,0xfa,0xff,0x90,0x88,0x20,0x91, +0xfa,0xff,0x0c,0x02,0xc0,0x20,0x00,0x89,0x09,0x1d,0xf0,0x00,0x14,0x00,0x10,0x00, +0x36,0x41,0x00,0x0c,0x08,0x91,0xfd,0xff,0x80,0x79,0x40,0x1d,0xf0,0x00,0x00,0x00, +0x00,0x80,0x3f,0x00,0x00,0x00,0x80,0x00,0x36,0x41,0x00,0x91,0xe7,0xff,0x80,0x69, +0x40,0xa1,0xfb,0xff,0x10,0x22,0x11,0xa0,0x22,0x10,0x30,0x30,0xe4,0x30,0x22,0x20, +0x31,0xf9,0xff,0x30,0x88,0x10,0x80,0x22,0x20,0x20,0x79,0x40,0x25,0xfc,0xff,0x0c, +0x02,0x1d,0xf0,0x00,0x0b,0xc1,0x38,0x40,0x36,0x41,0x00,0x81,0xfe,0xff,0x91,0xeb, +0xff,0x80,0x79,0x40,0x81,0xd9,0xff,0x80,0x68,0x40,0x92,0xa0,0x00,0x77,0x78,0x14, +0x80,0xaf,0x64,0x80,0x80,0xe4,0x97,0x98,0x05,0x20,0x80,0x64,0xa7,0x18,0x05,0x25, +0xf9,0xff,0x92,0xa1,0x01,0x90,0x29,0x20,0x90,0x00,0x00,0x00,0x36,0x41,0x00,0x80, +0xeb,0x03,0x80,0x8d,0x04,0x92,0x02,0x00,0x0c,0x02,0x87,0x59,0x08,0x21,0xca,0xff, +0x20,0x62,0x40,0x20,0x27,0x05,0x1d,0xf0,0x00,0x00,0xcd,0x3f,0x00,0x40,0x00,0x00, +0x00,0x40,0xcd,0x3f,0x20,0x50,0x01,0x00,0x04,0x00,0x10,0x00,0x36,0x41,0x00,0x8d, +0x02,0x90,0xeb,0x03,0x90,0x9d,0x04,0x56,0x19,0x04,0xc0,0x20,0x00,0x99,0xb2,0xc0, +0x20,0x00,0x99,0xa2,0xc0,0x20,0x00,0x99,0xc2,0xc0,0x20,0x00,0x99,0xd2,0x99,0x92, +0x21,0xf2,0xff,0xa1,0xf3,0xff,0x29,0x58,0x21,0xf1,0xff,0xc0,0x20,0x00,0x99,0x38, +0x29,0x68,0xa9,0x78,0x29,0x88,0xc0,0x20,0x00,0x99,0x48,0x21,0xbb,0xff,0xa1,0xed, +0xff,0xc0,0x20,0x00,0x99,0x28,0xc0,0x20,0x00,0xa2,0x62,0x00,0x21,0xeb,0xff,0x0c, +0x2a,0xa0,0x72,0x40,0xa2,0xa0,0x80,0xa0,0x72,0x40,0x0c,0x02,0xa1,0xab,0xff,0x20, +0x7a,0x40,0xa1,0xba,0xff,0x20,0x7a,0x40,0x0c,0x1a,0x00,0x19,0x40,0x00,0x9a,0xa1, +0xa2,0x08,0x00,0xa0,0x99,0x20,0x92,0x48,0x00,0x1d,0xf0,0x00,0xa8,0x00,0xca,0x3f, +0x83,0xde,0x1b,0x43,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xcc,0x1b,0x00,0x40, +0x36,0x41,0x00,0x81,0xfe,0xff,0xe0,0x08,0x00,0x81,0xf8,0xff,0x91,0xf9,0xff,0x88, +0x08,0x90,0x88,0xa2,0x91,0xf8,0xff,0x80,0x82,0xd5,0x80,0xaa,0xc2,0x0c,0x08,0x89, +0x12,0x81,0xf4,0xff,0x99,0x32,0x89,0x22,0x91,0xf4,0xff,0x81,0xf3,0xff,0xa9,0x02, +0x89,0x42,0x99,0x52,0x1d,0xf0,0x00,0x00,0x36,0x81,0x00,0x21,0x61,0xff,0xa2,0xa1, +0x03,0x22,0x02,0x00,0x9c,0xc2,0x21,0x5f,0xff,0xa2,0xa1,0x06,0x88,0x22,0x9c,0x28, +0x88,0x48,0x8c,0xe8,0xad,0x01,0xa5,0xfa,0xff,0x88,0x22,0xa8,0x32,0x88,0x48,0xbd, +0x01,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2, +0x02,0x31,0x53,0xff,0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0x51,0xff, +0xa2,0xa1,0x06,0x82,0x23,0x02,0x9c,0x48,0x88,0x28,0x9c,0x08,0xad,0x01,0x25,0xf7, +0xff,0x88,0x23,0xa8,0x33,0x88,0x28,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a, +0x1d,0xf0,0x00,0x00,0x36,0x81,0x00,0xad,0x02,0xac,0x72,0x31,0x45,0xff,0x32,0x03, +0x00,0xad,0x03,0x9c,0xd3,0x31,0x43,0xff,0xa8,0x23,0x9c,0x6a,0x88,0x1a,0xad,0x08, +0x9c,0x08,0xad,0x01,0xa5,0xf3,0xff,0x88,0x23,0xa8,0x33,0x88,0x18,0xcd,0x01,0xbd, +0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2, +0x02,0x31,0x37,0xff,0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0x35,0xff, +0xa2,0xa1,0x06,0x82,0x23,0x02,0x9c,0x48,0x88,0x68,0x9c,0x08,0xad,0x01,0x25,0xf0, +0xff,0x88,0x23,0xa8,0x33,0x88,0x78,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a, +0x1d,0xf0,0x00,0x00,0x36,0x81,0x00,0x32,0x22,0x00,0x30,0xa3,0x20,0x16,0x83,0x02, +0x31,0x28,0xff,0x32,0x03,0x00,0xad,0x03,0x9c,0xd3,0x31,0x26,0xff,0xa8,0x23,0x9c, +0x6a,0x88,0x6a,0xad,0x08,0x9c,0x08,0xad,0x01,0x65,0xec,0xff,0x88,0x23,0xa8,0x33, +0x88,0x68,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,0x00, +0x36,0x61,0x00,0x61,0xa6,0xff,0xc6,0x0f,0x00,0x81,0xa8,0xff,0xe0,0x08,0x00,0x51, +0xa4,0xff,0x48,0x06,0x0c,0x17,0x50,0x44,0xa2,0x58,0x03,0x40,0x42,0xd5,0x40,0xaa, +0xc2,0x50,0x5a,0xc0,0x48,0x13,0x57,0x3a,0x02,0x72,0xa0,0x00,0x40,0x40,0x60,0x70, +0x44,0xc0,0x78,0x33,0x59,0x43,0x49,0x53,0x77,0x24,0x0d,0x47,0x17,0x02,0x86,0x6a, +0x00,0x48,0x23,0x47,0x35,0x02,0x86,0x68,0x00,0x58,0x02,0xc0,0x20,0x00,0x48,0x12, +0x58,0x05,0xc0,0x20,0x00,0xa8,0x12,0xe0,0x05,0x00,0x5d,0x0a,0x56,0x2a,0x19,0x7c, +0xf3,0x40,0x33,0x30,0x30,0x30,0x04,0xe0,0x63,0x11,0x6a,0x62,0xc0,0x20,0x00,0xa9, +0x26,0xc0,0x20,0x00,0x68,0x12,0xad,0x03,0x1b,0x66,0xc0,0x20,0x00,0x69,0x12,0x68, +0x02,0x2b,0x33,0x68,0x16,0xd0,0x33,0x11,0x30,0x32,0x80,0xe0,0x06,0x00,0x78,0x03, +0x38,0x02,0xa2,0x23,0x03,0xe0,0x0a,0x00,0x16,0x2a,0x13,0x82,0x17,0x00,0x16,0xc8, +0x12,0x6d,0x05,0x9d,0x05,0xc0,0x20,0x00,0x38,0xb2,0xc0,0x20,0x00,0xa8,0xc2,0x37, +0x3a,0x1d,0xc0,0x20,0x00,0x38,0x92,0xc0,0x20,0x00,0xa8,0xc2,0xa0,0x33,0xc0,0x16, +0x63,0x10,0xc0,0x20,0x00,0xa8,0xb2,0xdc,0x9a,0x0b,0x33,0x86,0x04,0x00,0x00,0x00, +0xc0,0x20,0x00,0x38,0xb2,0xc0,0x20,0x00,0xa2,0x22,0x0c,0x32,0xc3,0xff,0xa0,0x33, +0xc0,0x16,0x43,0x0e,0x60,0xa8,0xc0,0x30,0x3a,0x63,0xb8,0x82,0xc0,0x20,0x00,0xa8, +0xc2,0xc0,0x20,0x00,0xc8,0xb2,0xc0,0x20,0x00,0xd8,0xc2,0xaa,0xab,0xc7,0xbd,0x02, +0x46,0x21,0x00,0xc0,0x20,0x00,0xc8,0xc2,0xc0,0x20,0x00,0xd8,0x92,0xca,0xc3,0xd7, +0xbc,0x02,0x86,0x21,0x00,0xc0,0x20,0x00,0xc8,0xb2,0x16,0xec,0x08,0xc0,0x20,0x00, +0xc8,0xc2,0xc0,0x20,0x00,0xd8,0x92,0xca,0xc3,0xd7,0x9c,0x07,0xc0,0x20,0x00,0x99, +0xc2,0x06,0x1d,0x00,0xc0,0x20,0x00,0xa8,0xb2,0x0b,0xaa,0x37,0x3a,0x6d,0xc0,0x20, +0x00,0xa8,0xc2,0xc0,0x20,0x00,0xa9,0xa2,0xc0,0x20,0x00,0x99,0xc2,0xc0,0x20,0x00, +0xc8,0xb2,0xc0,0x20,0x00,0xa8,0xa2,0xa7,0x9c,0x1d,0xc0,0x20,0x00,0x99,0xb2,0xc0, +0x20,0x00,0xc8,0xa2,0xc0,0x20,0x00,0xa8,0x92,0xa7,0xbc,0x0b,0xc0,0x20,0x00,0xa2, +0x22,0x09,0xc0,0x20,0x00,0xa2,0x62,0x0a,0xc0,0x20,0x00,0xa8,0xc2,0xaa,0xa3,0xc0, +0x20,0x00,0xa9,0xc2,0xad,0x0b,0xc6,0x07,0x00,0xc0,0x20,0x00,0xb8,0xb2,0xc0,0x20, +0x00,0xc2,0x22,0x0c,0x0b,0xbb,0xc0,0xbb,0xc0,0x37,0x3b,0x0f,0xc0,0x20,0x00,0xb8, +0xc2,0xba,0xb3,0xc0,0x20,0x00,0xb2,0x62,0x0c,0x56,0x3a,0x00,0x06,0xff,0xff,0x00, +0x2b,0xb6,0xcd,0x03,0xba,0xb7,0x89,0x01,0x99,0x11,0x65,0xb0,0x01,0x88,0x01,0x3a, +0x66,0x98,0x11,0x87,0xb6,0x02,0xc6,0xb6,0xff,0x0c,0x03,0x32,0x57,0x00,0x40,0x40, +0x04,0xe0,0x44,0x11,0x4a,0x42,0xc0,0x20,0x00,0xa8,0x12,0x28,0x02,0xc0,0x20,0x00, +0xb8,0x24,0x22,0x22,0x02,0xe0,0x02,0x00,0x46,0x06,0x00,0x00,0x52,0xa1,0x07,0x86, +0x04,0x00,0x48,0x23,0x26,0x04,0x02,0x86,0x83,0xff,0x48,0x33,0x66,0x04,0x02,0x86, +0x91,0xff,0xc6,0x80,0xff,0x2d,0x05,0x1d,0xf0,0x00,0x00,0x00,0x36,0x41,0x00,0x50, +0xeb,0x03,0x50,0x5d,0x04,0x82,0x02,0x00,0xa2,0xa1,0x03,0x57,0x58,0x3f,0xc0,0x20, +0x00,0x88,0x22,0x4b,0x52,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00, +0x88,0x38,0x37,0xb8,0x10,0x0c,0x0a,0xc6,0x08,0x00,0x40,0xb4,0x20,0x50,0xa5,0x20, +0xe5,0xdb,0xff,0x56,0x7a,0x01,0xc0,0x20,0x00,0x88,0x22,0x80,0x80,0x04,0xe0,0x88, +0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,0x87,0x33,0xde,0x86,0xf5,0xff,0x2d,0x0a, +0x1d,0xf0,0x00,0x00,0x36,0x41,0x00,0x40,0xeb,0x03,0x40,0x4d,0x04,0x82,0x02,0x00, +0xa2,0xa1,0x03,0x47,0x58,0x35,0xc0,0x20,0x00,0x88,0x22,0x4b,0x42,0x80,0x80,0x04, +0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,0x46,0x02,0x00,0x00,0xbd,0x03, +0xad,0x04,0xe5,0xd6,0xff,0xdc,0x3a,0xc0,0x20,0x00,0x88,0x22,0x80,0x80,0x04,0xe0, +0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0xa8,0x38,0x56,0x1a,0xfe,0x2d,0x0a,0x1d,0xf0, +0x36,0x41,0x00,0x5d,0x02,0x80,0xeb,0x03,0x80,0x8d,0x04,0x92,0x02,0x00,0x61,0xf7, +0xfe,0x4b,0x22,0x87,0xd9,0x05,0x0c,0x02,0x06,0x45,0x00,0x00,0xc0,0x20,0x00,0x88, +0xc5,0xc0,0x20,0x00,0x98,0xd5,0x87,0x39,0x07,0xc0,0x20,0x00,0x88,0xd5,0x06,0x01, +0x00,0xc0,0x20,0x00,0x88,0xb5,0xc0,0x20,0x00,0x98,0xc5,0x90,0x88,0xc0,0x16,0x38, +0x08,0x28,0x03,0x20,0x88,0x63,0x89,0x03,0xc0,0x20,0x00,0x28,0xc5,0x38,0x95,0x2a, +0x23,0xc0,0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x37,0x34,0x11,0xc0,0x20, +0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x3a,0x38,0x37,0x34,0x52,0x06,0x10,0x00, +0xc0,0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xb5,0x3a,0x38,0x37,0x34,0x40,0xc0, +0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xb5,0x3a,0x38,0x47,0x93,0x22,0xc0,0x20, +0x00,0x48,0xb5,0xc0,0x20,0x00,0x38,0xa5,0x37,0xb4,0x09,0xc0,0x20,0x00,0x38,0xa5, +0xc0,0x20,0x00,0x39,0xb5,0x0c,0x03,0xc0,0x20,0x00,0x39,0xc5,0x46,0x03,0x00,0x00, +0x00,0xc0,0x20,0x00,0x38,0xc5,0x3a,0x88,0xc0,0x20,0x00,0x89,0xc5,0x56,0xf2,0x06, +0x06,0xff,0xff,0x00,0x00,0x82,0x25,0x01,0xa2,0x28,0x03,0xe0,0x0a,0x00,0x16,0xaa, +0x00,0xbd,0x04,0xad,0x02,0xa5,0xc7,0xff,0x06,0xd0,0xff,0x00,0x88,0x24,0x66,0x08, +0x07,0x88,0x34,0x66,0x08,0x02,0x86,0xcc,0xff,0x81,0xc4,0xfe,0xe0,0x08,0x00,0x91, +0xc0,0xfe,0x88,0x06,0x0c,0x1b,0x90,0x88,0xa2,0x98,0x04,0x80,0x82,0xd5,0x80,0xaa, +0xc2,0x90,0x9a,0xc0,0x88,0x14,0x97,0x3a,0x02,0xb2,0xa0,0x00,0x80,0x80,0x60,0xb0, +0x88,0xc0,0xa8,0x34,0x99,0x44,0x89,0x54,0xa7,0xa8,0x02,0x46,0xbf,0xff,0x87,0x1a, +0x02,0x46,0xbc,0xff,0x88,0x24,0x87,0xb9,0x02,0xc6,0xbb,0xff,0x86,0xb9,0xff,0x00, +0x1d,0xf0,0x00,0x00,0x36,0x41,0x00,0xbd,0x04,0x50,0xeb,0x03,0x50,0x5d,0x04,0x82, +0x02,0x00,0x57,0xd8,0x06,0x0c,0x02,0x06,0x45,0x00,0x00,0x00,0xc0,0x20,0x00,0x52, +0x22,0x02,0x50,0x50,0x04,0x52,0xc5,0x02,0xd0,0x55,0x11,0x50,0x52,0x80,0x58,0x25, +0x52,0xc5,0xfc,0x37,0x35,0xde,0xc0,0x20,0x00,0x58,0x22,0x50,0x50,0x04,0xe0,0x55, +0x11,0x5a,0x52,0xc0,0x20,0x00,0x98,0x35,0xc0,0x20,0x00,0x88,0x22,0x4b,0x53,0x80, +0x80,0x04,0x2b,0x88,0xd0,0x88,0x11,0x8a,0x82,0x88,0x28,0x5a,0x99,0x97,0xb8,0x77, +0x4b,0xa2,0xe5,0xbb,0xff,0x56,0xca,0xfa,0xc0,0x20,0x00,0x88,0x22,0x50,0x90,0xf4, +0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0xa8,0x38,0xc0,0x20,0x00, +0x88,0x22,0xaa,0x99,0x80,0x80,0x04,0x2b,0x88,0xd0,0x88,0x11,0x8a,0x82,0x88,0x28, +0x97,0x38,0x81,0xc0,0x20,0x00,0x98,0x22,0xc0,0x20,0x00,0x88,0x22,0x90,0x90,0x04, +0x80,0x80,0x04,0x2b,0x99,0xe0,0x88,0x11,0xd0,0x99,0x11,0x8a,0x82,0x9a,0x92,0xc0, +0x20,0x00,0x88,0x38,0x98,0x19,0x8a,0x89,0x16,0x98,0xf5,0xc0,0x20,0x00,0x98,0x22, +0x90,0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,0xc0,0x20,0x00,0x98,0x32,0x5a,0x59,0xc0, +0x20,0x00,0x59,0x32,0x46,0x10,0x00,0x00,0xc0,0x20,0x00,0x98,0x22,0xc0,0x20,0x00, +0x88,0x22,0x90,0x90,0x04,0x80,0x80,0x04,0x2b,0x99,0xe0,0x88,0x11,0xd0,0x99,0x11, +0x8a,0x82,0x9a,0x92,0xc0,0x20,0x00,0x88,0x38,0x98,0x19,0x8a,0x89,0xc0,0x20,0x00, +0x98,0x22,0x90,0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,0xc0,0x20,0x00,0x98,0x32,0x5a, +0x59,0xc0,0x20,0x00,0x59,0x32,0x16,0xb8,0xef,0x20,0xeb,0x03,0x20,0x2d,0x04,0x10, +0x22,0x11,0x30,0x32,0x20,0x0c,0x02,0x22,0x58,0x01,0x32,0x58,0x00,0x4b,0x28,0x1d, +0xf0,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x50,0x0c,0x60,0x00,0x00,0xff,0xff, +0x9c,0x18,0x00,0x40,0xb4,0x18,0x00,0x40,0x5c,0x19,0x00,0x40,0x68,0x19,0x00,0x40, +0xb0,0x16,0x00,0x40,0xc0,0x18,0x00,0x40,0xa8,0x18,0x00,0x40,0x36,0x81,0x00,0x39, +0x31,0x31,0xf4,0xff,0x81,0xf7,0xff,0xe0,0x08,0x00,0x30,0x34,0x80,0x20,0x50,0xf4, +0xa9,0x11,0x81,0xf4,0xff,0xe0,0x08,0x00,0x50,0x73,0x80,0xa2,0x61,0x02,0x81,0xf2, +0xff,0xe0,0x08,0x00,0x70,0x30,0xf5,0xa0,0x62,0x41,0x46,0x05,0x00,0x81,0xea,0xff, +0xe0,0x96,0x11,0x8a,0x99,0xc0,0x20,0x00,0xa8,0x09,0x91,0x24,0xfe,0x97,0x1a,0x0e, +0x62,0xc6,0x01,0x81,0xea,0xff,0xe0,0x08,0x00,0xa0,0xa2,0x41,0xa7,0x36,0xdd,0x81, +0xe7,0xff,0xe0,0x08,0x00,0xa0,0xa2,0x41,0x67,0x9a,0x08,0x81,0xe3,0xff,0xe0,0x08, +0x00,0xa0,0x62,0x41,0x6a,0x93,0x99,0x41,0x69,0x01,0x81,0xe0,0xff,0xe0,0x08,0x00, +0x98,0x41,0xa0,0xa2,0x41,0xa7,0xb9,0x70,0xa1,0xd8,0xff,0xe0,0x96,0x11,0xaa,0x99, +0x20,0x20,0xf5,0x0c,0x0a,0xc6,0x02,0x00,0x00,0x2a,0xba,0xc0,0x20,0x00,0xb9,0x09, +0x1b,0xaa,0x4b,0x99,0x37,0x9a,0xf1,0x81,0xd4,0xff,0xe0,0x08,0x00,0xa9,0x41,0x81, +0xd2,0xff,0xe0,0x08,0x00,0x98,0x41,0x22,0xd6,0x3c,0x90,0x82,0x41,0x2a,0x88,0xa0, +0xa2,0x41,0xa0,0x88,0xc0,0x00,0x88,0x11,0x5a,0x58,0x81,0xcb,0xff,0xe0,0x08,0x00, +0xa9,0x41,0x81,0xc9,0xff,0xe0,0x08,0x00,0x88,0x41,0xb1,0xc4,0xff,0x80,0x82,0x41, +0x2a,0x88,0xa0,0xa2,0x41,0xa0,0xa8,0xc0,0xb0,0xb7,0x10,0x00,0xaa,0x11,0x81,0xc4, +0xff,0xe0,0x08,0x00,0x0c,0x02,0xc6,0x01,0x00,0x0c,0x03,0x39,0x01,0x5d,0x03,0x0c, +0x12,0xa8,0x21,0x81,0xc0,0xff,0xe0,0x08,0x00,0xa8,0x11,0x81,0xbf,0xff,0xe0,0x08, +0x00,0x56,0x12,0x04,0xa8,0x31,0xcd,0x04,0xbd,0x05,0x65,0x67,0x01,0x81,0xb4,0xff, +0xe0,0x08,0x00,0xa0,0x5a,0x20,0x81,0xb3,0xff,0xe0,0x08,0x00,0x48,0x01,0x71,0xae, +0xff,0x4a,0x33,0x81,0xea,0xfd,0xc6,0x02,0x00,0xe0,0x64,0x11,0x7a,0x66,0xc0,0x20, +0x00,0x89,0x06,0x1b,0x44,0x37,0x34,0xf0,0x81,0xaf,0xff,0xe0,0x08,0x00,0xad,0x05, +0x81,0xae,0xff,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0x00,0xbe,0xff,0xff,0xff,0x01, +0x00,0x00,0x00,0xc4,0xff,0xff,0xff,0x00,0x36,0x81,0x00,0x1c,0x8c,0xbd,0x01,0xad, +0x02,0xa5,0xe9,0xff,0x5d,0x0a,0x56,0xea,0x06,0x62,0x01,0x00,0x42,0xa0,0xe9,0x47, +0x96,0x6a,0x22,0xc2,0x18,0x6d,0x0a,0x4d,0x0a,0xc6,0x13,0x00,0xc2,0xa0,0x08,0xb2, +0xc1,0x18,0x20,0xa2,0x20,0x65,0xe7,0xff,0x16,0x2a,0x00,0x46,0x12,0x00,0x98,0x61, +0x81,0xee,0xff,0xa1,0xee,0xff,0x80,0x89,0x80,0x87,0xba,0x0b,0x81,0xed,0xff,0xa1, +0xed,0xff,0x80,0x89,0x80,0x87,0x3a,0x1b,0xf6,0x24,0x26,0xf0,0x84,0x11,0x4a,0x88, +0xe0,0x88,0x11,0x8a,0x83,0x99,0x28,0x98,0x71,0x8b,0xa2,0x1b,0x44,0xa9,0x18,0x99, +0x38,0x40,0x40,0xf4,0x88,0x71,0x1b,0x66,0x8b,0x88,0x8a,0x22,0x82,0x01,0x01,0x87, +0x26,0xa9,0x49,0x03,0xc6,0x01,0x00,0x00,0x7c,0xf5,0x46,0x00,0x00,0x7c,0x85,0x2d, +0x05,0x1d,0xf0,0x00,0x36,0x41,0x04,0x1b,0x62,0x2a,0x54,0x40,0x66,0x11,0x3a,0x22, +0x46,0x11,0x00,0x0c,0x13,0x32,0x45,0x00,0x72,0xd6,0xf0,0x32,0xa0,0xff,0xc6,0x0b, +0x00,0xc2,0xa2,0x00,0x10,0xb1,0x20,0x70,0xa7,0x20,0x25,0xdf,0xff,0x56,0x3a,0x03, +0x82,0xa2,0x00,0x76,0x88,0x11,0xaa,0x91,0x92,0x09,0x00,0x37,0x19,0x07,0x0c,0x03, +0x32,0x45,0x00,0x46,0x03,0x00,0x1b,0xaa,0x82,0x05,0x00,0x72,0xd7,0x02,0x16,0x28, +0x00,0x67,0x97,0xcc,0x1b,0x55,0x62,0xd6,0x10,0x40,0x75,0xc0,0x27,0x37,0xb3,0x0c, +0x02,0x46,0x00,0x00,0x7c,0xf2,0x1d,0xf0,0xe4,0xff,0xce,0x3f,0x18,0x20,0x00,0x60, +0xff,0xff,0xff,0xdf,0x00,0x00,0x00,0x20,0x1c,0x20,0x00,0x60,0x58,0x20,0x00,0x60, +0x00,0x20,0x00,0x60,0x00,0x00,0x00,0x10,0x04,0x20,0x00,0x40,0x36,0x41,0x00,0x21, +0xf6,0xff,0x81,0xf6,0xff,0x38,0x02,0x22,0x03,0x19,0xdc,0x22,0xc0,0x20,0x00,0x28, +0x08,0x31,0xf3,0xff,0x30,0x22,0x10,0xc0,0x20,0x00,0x29,0x08,0x46,0x07,0x00,0x00, +0xc0,0x20,0x00,0x28,0x08,0x91,0xef,0xff,0x90,0x22,0x20,0xc0,0x20,0x00,0x29,0x08, +0x22,0x03,0x19,0x31,0xed,0xff,0x0b,0x22,0xc0,0x20,0x00,0x29,0x03,0x31,0xeb,0xff, +0x22,0xa0,0x00,0xc0,0x20,0x00,0x22,0x63,0x00,0x81,0xe9,0xff,0x21,0xea,0xff,0xc0, +0x20,0x00,0x22,0x68,0x00,0xc0,0x20,0x00,0x22,0x28,0x00,0x56,0x62,0xff,0xc0,0x20, +0x00,0x32,0x23,0x00,0x81,0xe5,0xff,0xe0,0x08,0x00,0x8c,0x7a,0x30,0x80,0x74,0x92, +0xa0,0xc2,0x97,0x98,0x02,0x30,0x20,0x75,0x1d,0xf0,0x00,0x00,0xc0,0x80,0x00,0x60, +0xac,0x00,0xca,0x3f,0xb4,0x00,0xca,0x3f,0xd0,0x05,0x00,0x40,0x36,0x41,0x00,0x21, +0xfb,0xff,0xc0,0x20,0x00,0xc8,0x02,0xc0,0x20,0xf4,0xc0,0x80,0xf5,0x87,0x92,0x07, +0x82,0xcc,0xff,0x7c,0xd9,0x87,0xb9,0x0d,0xb1,0xf6,0xff,0xa1,0xf6,0xff,0x2c,0x82, +0x81,0xf6,0xff,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x80,0x00,0x00,0xb3,0x81,0x00,0x00, +0xf0,0x49,0x02,0x00,0x74,0x80,0x00,0x60,0x68,0xf0,0x01,0x60,0x80,0xf0,0x01,0x60, +0xff,0x9f,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0x00,0x80,0x00,0x00,0x02,0x00, +0x00,0x00,0x10,0x00,0x00,0x00,0x04,0x00,0xff,0xff,0xff,0x7f,0x00,0x00,0x00,0x80, +0x80,0x84,0x1e,0x00,0x6c,0xf0,0x01,0x60,0x00,0x06,0x00,0x40,0x36,0x41,0x00,0x41, +0xf1,0xff,0xc0,0x20,0x00,0x38,0x04,0x30,0x3e,0x15,0x66,0x13,0x07,0xe5,0xf7,0xff, +0x0c,0x22,0x86,0x07,0x00,0x65,0xf7,0xff,0x0c,0x12,0x26,0x23,0x16,0xc0,0x20,0x00, +0x38,0x04,0x0c,0x22,0x30,0x3e,0x15,0x26,0x13,0x09,0x32,0xc3,0xfe,0x0c,0x14,0x0c, +0x02,0x30,0x24,0x83,0x41,0xe4,0xff,0xc0,0x20,0x00,0x38,0x04,0x30,0x38,0x41,0x66, +0x22,0x15,0x07,0xe3,0x12,0xc0,0x20,0x00,0x88,0x04,0x92,0xa1,0x00,0x90,0x88,0x20, +0xc0,0x20,0x00,0x89,0x04,0xc6,0x05,0x00,0x66,0x12,0x14,0x81,0xda,0xff,0x92,0xa2, +0x00,0xc0,0x20,0x00,0x42,0x28,0x00,0x90,0x44,0x20,0xc0,0x20,0x00,0x42,0x68,0x00, +0x91,0xd6,0xff,0xc0,0x20,0x00,0x48,0x09,0xc7,0x64,0x28,0x41,0xd4,0xff,0xa2,0xa0, +0x80,0xc0,0x20,0x00,0x88,0x04,0x80,0x80,0x74,0xa0,0x88,0x20,0xa1,0xcb,0xff,0xc0, +0x20,0x00,0x89,0x04,0xc0,0x20,0x00,0x88,0x09,0xa7,0x88,0x07,0xc0,0x20,0x00,0x88, +0x04,0x07,0x68,0xef,0x41,0xc9,0xff,0x91,0xca,0xff,0xc0,0x20,0x00,0x88,0x04,0x90, +0x88,0x10,0x30,0x92,0x11,0x90,0x88,0x20,0xc0,0x20,0x00,0x89,0x04,0xc0,0x20,0x00, +0x88,0x04,0x91,0xc4,0xff,0x90,0x88,0x10,0xc0,0x20,0x00,0x89,0x04,0xc0,0x20,0x00, +0x88,0x04,0x91,0xc1,0xff,0x90,0x88,0x10,0x91,0xc1,0xff,0x90,0x88,0x20,0xc0,0x20, +0x00,0x89,0x04,0x41,0xba,0xff,0xc0,0x20,0x00,0x88,0x04,0x80,0x80,0x64,0x66,0x22, +0x12,0x91,0xbb,0xff,0xc1,0xb1,0xff,0x90,0x88,0x20,0xc0,0x20,0x00,0x89,0x04,0xc6, +0x08,0x00,0x00,0x00,0x66,0x12,0x10,0x91,0xb6,0xff,0xc1,0xac,0xff,0x90,0x88,0x20, +0xc0,0x20,0x00,0x89,0x04,0x46,0x03,0x00,0x91,0xb3,0xff,0xc1,0xa9,0xff,0x90,0x88, +0x20,0xc0,0x20,0x00,0x89,0x04,0x41,0xa8,0xff,0x91,0xaf,0xff,0xc0,0x20,0x00,0x88, +0x04,0xa1,0xaf,0xff,0x90,0x88,0x10,0xc0,0x20,0x00,0x89,0x04,0x91,0xac,0xff,0xc0, +0x20,0x00,0x88,0x04,0xb1,0x2d,0xfd,0x90,0x88,0x20,0xc0,0x20,0x00,0x89,0x04,0x0c, +0x0d,0xa5,0x42,0x01,0x81,0xa9,0xff,0xe0,0x08,0x00,0xb1,0x97,0xff,0x91,0x9b,0xff, +0xad,0x04,0xc0,0x20,0x00,0x88,0x0a,0xb7,0x08,0x0a,0x81,0xa2,0xff,0xc0,0x20,0x00, +0x88,0x08,0xc6,0x01,0x00,0xc0,0x20,0x00,0x88,0x09,0x07,0x68,0xe4,0xc0,0x20,0x00, +0x88,0x04,0x91,0x99,0xff,0x80,0x33,0x11,0x90,0x88,0x10,0xc0,0x20,0x00,0x89,0x04, +0x41,0x8d,0xff,0x92,0xa1,0x00,0xc0,0x20,0x00,0x88,0x04,0x90,0x33,0x10,0x92,0xae, +0xff,0x90,0x88,0x10,0x80,0x33,0x20,0xc0,0x20,0x00,0x39,0x04,0x66,0x12,0x10,0xc0, +0x20,0x00,0x28,0x04,0x32,0xad,0xff,0x30,0x22,0x10,0xc0,0x20,0x00,0x22,0x64,0x00, +0x1d,0xf0,0x00,0x00,0x00,0xf0,0xff,0xff,0xff,0x0f,0x00,0x00,0x2c,0x0a,0x00,0x40, +0xfc,0x09,0x00,0x40,0x08,0x0a,0x00,0x40,0x36,0x41,0x00,0x20,0x40,0xb4,0x8c,0x44, +0x41,0xf9,0xff,0x40,0x22,0x10,0x30,0x40,0xb4,0x16,0xb4,0x00,0x41,0xf7,0xff,0x40, +0x33,0x80,0x41,0xf4,0xff,0x40,0x33,0x10,0x51,0x38,0xff,0x3a,0x42,0x88,0x05,0x68, +0x18,0x47,0xb6,0x05,0x7c,0xf2,0x46,0x1f,0x00,0x00,0x48,0x38,0x40,0x42,0xe2,0x56, +0x14,0xff,0x81,0xee,0xff,0xe0,0x08,0x00,0x56,0x8a,0xfe,0x48,0x05,0x88,0x34,0x48, +0x24,0x80,0x53,0xc2,0x80,0x22,0xc2,0x80,0x44,0xc2,0x80,0x83,0xe2,0x1b,0x35,0x80, +0x35,0x83,0x40,0x52,0xe2,0x50,0x54,0xc0,0x30,0x55,0x43,0x2a,0x65,0x06,0x03,0x00, +0xad,0x02,0x81,0xe3,0xff,0xe0,0x08,0x00,0x56,0x8a,0xfb,0x1b,0x22,0x20,0x86,0xc0, +0xe6,0x18,0xec,0x50,0x33,0xc0,0x06,0x04,0x00,0x40,0xa2,0xc2,0x81,0xde,0xff,0xe0, +0x08,0x00,0x56,0xea,0xf9,0x4a,0x22,0x40,0x33,0xc0,0x37,0x34,0xeb,0x2a,0x23,0x06, +0x03,0x00,0x00,0x00,0x81,0xd7,0xff,0xe0,0x08,0x00,0x56,0x6a,0xf8,0x0b,0x33,0x30, +0xa2,0xc0,0xe6,0x13,0xee,0x0c,0x02,0x1d,0xf0,0x00,0x00,0x00,0x6c,0x09,0x00,0x40, +0x14,0x0a,0x00,0x40,0x36,0x41,0x00,0xcc,0x95,0x65,0x16,0xff,0xac,0x4a,0xdc,0x05, +0x06,0x08,0x00,0x00,0xa5,0x15,0xff,0x7c,0xf8,0x56,0xca,0xfe,0x86,0x08,0x00,0x00, +0x00,0x00,0xcd,0x04,0x30,0xb3,0x20,0x20,0xa2,0x20,0x81,0xf4,0xff,0xe0,0x08,0x00, +0x06,0x03,0x00,0x00,0xcd,0x04,0xbd,0x03,0xad,0x02,0x81,0xf1,0xff,0xe0,0x08,0x00, +0x8d,0x0a,0x2d,0x08,0x1d,0xf0,0x00,0x00,0x38,0x02,0xca,0x3f,0xec,0x1c,0x00,0x40, +0x10,0x1d,0x00,0x40,0x34,0x1d,0x00,0x40,0x40,0x1d,0x00,0x40,0xf8,0x1c,0x00,0x40, +0x36,0x41,0x00,0x81,0x31,0xff,0x0c,0x07,0x80,0x81,0xc0,0x10,0x18,0x00,0x81,0xf7, +0xff,0xe0,0x08,0x00,0x61,0xf5,0xff,0x0c,0x2b,0xad,0x06,0x81,0xf5,0xff,0xe0,0x08, +0x00,0x06,0x0a,0x00,0x81,0x29,0xff,0xbd,0x01,0x80,0x53,0x63,0xcd,0x05,0x20,0xa7, +0x80,0xa5,0x96,0xff,0x56,0x0a,0x04,0x50,0xd0,0x14,0xcc,0xad,0xcd,0x05,0xbd,0x01, +0xad,0x06,0x81,0xec,0xff,0xe0,0x08,0x00,0x50,0x33,0xc0,0x5a,0x77,0x56,0x33,0xfd, +0xcc,0xe4,0xb2,0xa0,0xd8,0xad,0x06,0xa5,0x00,0x01,0x2d,0x04,0x86,0x06,0x00,0x00, +0x00,0x00,0xbd,0x04,0xad,0x06,0x81,0xe4,0xff,0xe0,0x08,0x00,0x81,0xe4,0xff,0xe0, +0x08,0x00,0x2d,0x03,0x86,0x00,0x00,0x00,0x7c,0xf2,0x1d,0xf0,0x10,0x00,0xca,0x3f, +0x34,0x00,0xca,0x3f,0x36,0x41,0x00,0xb0,0xeb,0x03,0xb0,0xbd,0x04,0x21,0x11,0xfc, +0x56,0xab,0x01,0xc2,0xa0,0x18,0x20,0xa2,0x20,0x65,0x1a,0x01,0x31,0xf8,0xff,0x0c, +0x18,0x39,0x22,0x31,0xf7,0xff,0x39,0x32,0x31,0x0a,0xfc,0x82,0x43,0x00,0x0c,0x03, +0x88,0x02,0xcc,0x88,0x1b,0x33,0x8b,0x22,0x66,0x33,0xf4,0x86,0x03,0x00,0x88,0x08, +0xa8,0x12,0xe0,0x08,0x00,0x16,0xba,0xfe,0x7c,0xf2,0x06,0x04,0x00,0x31,0x2e,0xfc, +0x20,0x63,0x40,0x81,0x44,0xfc,0x80,0x22,0x20,0x20,0x73,0x40,0x0c,0x02,0x1d,0xf0, +0x28,0x03,0xca,0x3f,0x10,0x03,0xca,0x3f,0xf8,0xaa,0x00,0x00,0xf4,0xaa,0x00,0x00, +0xf0,0xaa,0x00,0x00,0xff,0x7f,0x00,0x00,0x10,0x80,0x00,0x00,0x10,0xab,0x00,0x00, +0x1c,0xab,0x00,0x00,0x14,0xab,0x00,0x00,0x18,0xab,0x00,0x00,0x20,0xab,0x00,0x00, +0x00,0xab,0x00,0x00,0x2c,0xab,0x00,0x00,0x24,0xab,0x00,0x00,0x08,0xab,0x00,0x00, +0x30,0xab,0x00,0x00,0x28,0x08,0x00,0x40,0x36,0x41,0x00,0x81,0xfd,0xff,0x20,0x52, +0x20,0x22,0x22,0x06,0x80,0x81,0xc0,0x31,0xea,0xff,0x20,0x20,0x04,0x10,0x18,0x00, +0x29,0x03,0x25,0xf4,0xff,0x2d,0x0a,0x56,0x5a,0x1d,0xa8,0x25,0xb8,0x35,0xa5,0xf8, +0xfe,0x31,0xe4,0xff,0x48,0x05,0x81,0xe8,0xff,0x49,0x03,0x48,0x45,0x8a,0x61,0x49, +0x13,0x48,0x15,0x69,0x33,0x49,0x23,0x42,0xc1,0x10,0x49,0x43,0x49,0x53,0x91,0xe3, +0xff,0x31,0xdd,0xff,0xa1,0xe3,0xff,0x29,0x06,0x1a,0x99,0x3a,0x64,0x1a,0xaa,0x29, +0x09,0x69,0x0a,0x86,0x62,0x00,0x00,0x00,0x81,0xdd,0xff,0x91,0xdd,0xff,0x1a,0x88, +0x1a,0x99,0x98,0x09,0x88,0x08,0xad,0x09,0x80,0x33,0xc0,0x32,0x69,0x00,0x31,0xd8, +0xff,0x25,0x28,0xff,0x61,0xd8,0xff,0x1a,0x33,0x1a,0x66,0xa9,0x06,0x16,0x5a,0x15, +0x91,0xd6,0xff,0x81,0xd3,0xff,0x1a,0x99,0xa9,0x09,0xa1,0xcc,0xff,0x1a,0x88,0xaa, +0x34,0xa1,0xd2,0xff,0x88,0x08,0x1a,0xaa,0x68,0x08,0x0c,0x1e,0x39,0x0a,0x06,0x3a, +0x00,0x31,0xce,0xff,0x81,0xc4,0xff,0x1a,0x33,0x38,0x03,0xd8,0x48,0x69,0x03,0x31, +0xba,0xfe,0xe8,0x58,0x91,0xcb,0xff,0xa1,0xbf,0xff,0x3a,0x3d,0xe0,0x33,0xc0,0x9a, +0x81,0x39,0x08,0x38,0x2a,0x71,0xbe,0xff,0x20,0xa2,0x20,0x37,0xb6,0x02,0xa2,0xa0, +0x02,0x31,0xba,0xff,0xa9,0x01,0xa1,0xc0,0xff,0x3a,0x84,0x91,0xc2,0xff,0x31,0xb5, +0xff,0x1a,0xaa,0x1a,0x99,0xb8,0x0a,0x7a,0x74,0xa8,0x33,0x89,0x09,0xfd,0x07,0x80, +0xc8,0x20,0x81,0xc0,0xff,0xe0,0x08,0x00,0x91,0xbb,0xff,0xed,0x0a,0x1a,0x99,0x98, +0x09,0xa8,0x23,0x88,0x09,0x78,0x07,0x80,0xaa,0xc0,0xa9,0x23,0xa1,0xb3,0xff,0x80, +0x66,0xc0,0x1a,0xaa,0xa8,0x0a,0xb8,0x43,0x8a,0x9a,0x88,0x53,0xa1,0xaf,0xff,0x7a, +0x78,0x0b,0x8e,0x1a,0xaa,0x80,0x8e,0x20,0x79,0x53,0x99,0x0a,0x80,0x8f,0x05,0xb0, +0x77,0xc0,0xcc,0xa8,0xa2,0xd7,0x80,0x92,0xa0,0x01,0xa0,0x89,0x83,0x16,0x98,0x04, +0x88,0x13,0x80,0xc7,0x63,0xac,0xfc,0xa1,0x9f,0xff,0xc7,0x3a,0x06,0x87,0xb7,0x03, +0x06,0x22,0x00,0x00,0x81,0x97,0xff,0x0c,0x1a,0xd8,0x08,0x0c,0x08,0xd0,0xa8,0x83, +0x81,0xa2,0xff,0xdd,0x0a,0x1a,0x88,0xa8,0x03,0xe9,0x08,0xa5,0xd0,0xff,0x91,0x9e, +0xff,0x1a,0x99,0xe8,0x09,0x56,0x3a,0x06,0x88,0x03,0x7a,0x88,0x89,0x03,0x88,0x13, +0x70,0x78,0xc0,0x79,0x13,0x78,0x43,0x72,0x63,0x05,0x8c,0xe6,0xa1,0x8a,0xff,0x38, +0x1a,0x8c,0x73,0xe0,0x3f,0x31,0xe0,0x33,0xc0,0x96,0x43,0xf0,0x96,0xce,0x03,0x31, +0x85,0xff,0x38,0x13,0xcc,0x3e,0x8c,0x43,0x06,0x0c,0x00,0x16,0xd3,0x02,0x31,0x89, +0xff,0x10,0x33,0x80,0xa2,0x23,0x00,0x25,0x10,0xff,0xdc,0x8a,0x61,0x8c,0xff,0x81, +0x83,0xff,0x6a,0x31,0x1a,0x88,0x88,0x08,0x38,0x03,0x3a,0x98,0x81,0x80,0xff,0x1a, +0x88,0x99,0x08,0x86,0x02,0x00,0x7c,0xf2,0x06,0x05,0x00,0x00,0x7c,0xd2,0x86,0x03, +0x00,0x91,0x7a,0xff,0x38,0x15,0x1a,0x99,0x98,0x09,0x37,0xb9,0x02,0xc6,0x99,0xff, +0x1d,0xf0,0x00,0x00,0x20,0x80,0x00,0x00,0x18,0x80,0x00,0x00,0x14,0x80,0x00,0x00, +0x1c,0x80,0x00,0x00,0x30,0x80,0x00,0x00,0x36,0x41,0x00,0x81,0xfe,0xff,0x20,0x42, +0x20,0x22,0x22,0x06,0x80,0x81,0xc0,0x31,0x66,0xff,0x20,0x20,0x04,0x10,0x18,0x00, +0x29,0x03,0x25,0xd3,0xff,0x2d,0x0a,0x56,0xea,0x15,0xb8,0x34,0xa8,0x24,0x20,0x62, +0x20,0x65,0xd7,0xfe,0x31,0x60,0xff,0x58,0x04,0x81,0x63,0xff,0x59,0x03,0x58,0x44, +0x1a,0x88,0x59,0x13,0x51,0x55,0xfe,0x19,0x43,0x5a,0x51,0x19,0x53,0x59,0x08,0x86, +0x4b,0x00,0x00,0x00,0x60,0x88,0xc0,0x50,0xa5,0x20,0x82,0x65,0x00,0x65,0x09,0xff, +0xa0,0x7a,0x20,0x16,0xfa,0x10,0x98,0x05,0xfd,0x0a,0x86,0x33,0x00,0xa8,0x53,0x88, +0x43,0xc1,0x49,0xfe,0x80,0x8a,0xc0,0x9a,0xb8,0xdd,0x09,0xb7,0xbc,0x02,0x80,0xdc, +0xc0,0xe1,0xdc,0xff,0xcd,0x0d,0x1a,0xee,0x89,0x0e,0xe1,0xdb,0xff,0xbd,0x0f,0x1a, +0xee,0x99,0x0e,0xe1,0xda,0xff,0x1a,0xee,0xd9,0x0e,0xe1,0xd9,0xff,0x1a,0xee,0xf9, +0x0e,0xe5,0xd4,0x00,0xa1,0xd4,0xff,0xb1,0xd5,0xff,0xc1,0xd3,0xff,0xe1,0xd4,0xff, +0x1a,0xaa,0x1a,0xbb,0x1a,0xcc,0x1a,0xee,0xd8,0x0b,0x88,0x0a,0x98,0x0c,0xa8,0x53, +0xf8,0x0e,0xda,0x88,0xd0,0x99,0xc0,0xda,0xff,0xda,0xda,0xa8,0x13,0x0c,0x1b,0x80, +0xaa,0xc0,0x0c,0x0c,0xa0,0xcb,0x83,0xd9,0x53,0xc0,0xa0,0x74,0x56,0x8a,0x00,0xc2, +0xd8,0x80,0xc0,0xab,0x83,0x16,0x3a,0x05,0xa1,0x32,0xff,0xe1,0xc2,0xff,0xd8,0x0a, +0x0c,0x1b,0x0c,0x0a,0xd0,0xab,0x93,0x1a,0xee,0xb8,0x43,0xdd,0x0a,0xa8,0x03,0x89, +0x0e,0xe1,0xbd,0xff,0xcd,0x08,0x1a,0xee,0x99,0x0e,0xe1,0xbd,0xff,0x1a,0xee,0xf9, +0x0e,0x25,0xb6,0xff,0xb1,0xb8,0xff,0xc1,0xb8,0xff,0xe1,0xb9,0xff,0x1a,0xbb,0x1a, +0xcc,0x1a,0xee,0x88,0x0b,0x98,0x0c,0xf8,0x0e,0xdc,0x9a,0xa8,0x03,0x8a,0xaa,0xa9, +0x03,0xa8,0x13,0x80,0x8a,0xc0,0x89,0x13,0x88,0x43,0x89,0x53,0x8c,0xc9,0x88,0x13, +0x56,0x98,0xf2,0x46,0x01,0x00,0x7c,0xf8,0xc6,0x00,0x00,0x00,0x20,0x82,0x20,0x91, +0xa9,0xff,0x70,0xa7,0x20,0x10,0x99,0x80,0x89,0x09,0xe5,0xf5,0xfe,0xb1,0xa5,0xff, +0x1a,0xbb,0x88,0x0b,0xcc,0xea,0xdc,0x28,0xc1,0x18,0xff,0x1a,0xcc,0xc8,0x0c,0x88, +0x0c,0x8a,0x66,0x86,0x02,0x00,0x7c,0xf2,0x46,0x03,0x00,0x00,0x7c,0xd2,0xc6,0x01, +0x00,0x88,0x14,0x87,0xb6,0x02,0x86,0xb2,0xff,0x1d,0xf0,0x00,0x38,0x02,0xca,0x3f, +0x2d,0xf0,0x00,0x00,0x00,0x00,0x00,0x04,0x45,0x03,0xca,0x3f,0x00,0x40,0x0c,0x60, +0x04,0x40,0x0c,0x60,0x48,0x00,0x0c,0x60,0xe8,0xff,0xce,0x3f,0x6c,0x00,0xca,0x3f, +0x3c,0x30,0x00,0x60,0x98,0x01,0xca,0x3f,0x00,0x00,0x01,0x00,0x68,0x01,0xca,0x3f, +0xfe,0x3f,0x00,0x00,0xaa,0x50,0x00,0x00,0x00,0x20,0x00,0x00,0x60,0x00,0x0c,0x60, +0x10,0x00,0x0c,0x60,0x60,0x01,0xca,0x3f,0xff,0x00,0xfc,0xff,0xff,0xff,0xfb,0xff, +0xff,0xff,0xe7,0xff,0x84,0x80,0x00,0x60,0xff,0x3f,0xc0,0xff,0x00,0xc0,0x3f,0x00, +0xff,0xff,0x01,0xfe,0x00,0x00,0xc8,0x00,0x78,0x80,0x00,0x60,0xff,0xff,0xbf,0xff, +0xff,0xff,0x7f,0x80,0x00,0x00,0x40,0x00,0xff,0x8f,0xff,0xff,0x44,0xe0,0x00,0x60, +0x00,0xff,0x03,0x00,0xff,0xbf,0xfd,0xff,0x28,0x00,0x28,0x00,0xe6,0x00,0xca,0x3f, +0x13,0x01,0xca,0x3f,0x20,0x01,0xca,0x3f,0xff,0xf3,0xff,0xff,0x00,0x80,0x00,0x60, +0x40,0xe0,0x00,0x60,0x45,0x01,0xca,0x3f,0xff,0xff,0x1f,0xe0,0xff,0xff,0xff,0x1f, +0x00,0x00,0x18,0x00,0x00,0x00,0x08,0x00,0xc0,0x84,0x00,0x60,0xc4,0x84,0x00,0x60, +0x60,0x80,0x00,0x60,0xff,0xff,0xf1,0xff,0x00,0x00,0x06,0x00,0xff,0x1f,0xff,0xff, +0x00,0x60,0x00,0x00,0xff,0xe3,0xff,0xff,0x00,0x0c,0x00,0x00,0x1c,0x80,0x00,0x60, +0x3f,0xc0,0xff,0xff,0xff,0xff,0xff,0x3f,0x00,0x00,0x00,0xc0,0xff,0xff,0xff,0xfb, +0x40,0x42,0x0f,0x00,0x74,0x1f,0x00,0x40,0x74,0x19,0x00,0x40,0x98,0x19,0x00,0x40, +0x50,0x16,0x00,0x40,0x90,0x18,0x00,0x40,0xec,0x0a,0x00,0x40,0x50,0x0a,0x00,0x40, +0xd4,0x16,0x00,0x40,0x9c,0x06,0x00,0x40,0x6c,0x5d,0x00,0x40,0x60,0x5d,0x00,0x40, +0x36,0x61,0x01,0x32,0x61,0x11,0x42,0x61,0x12,0x72,0x61,0x15,0x7d,0x02,0x52,0x61, +0x13,0x62,0x61,0x14,0x21,0xb2,0xff,0x31,0xb4,0xff,0x0c,0x04,0x06,0x01,0x00,0x00, +0x49,0x02,0x4b,0x22,0x37,0x32,0xf8,0x22,0xc1,0x40,0x32,0xa0,0x90,0x29,0x91,0x3a, +0x21,0x29,0x81,0x0c,0x42,0x29,0xa1,0x0c,0xb2,0x77,0xa2,0x02,0x46,0x8b,0x02,0x42, +0x21,0x11,0x52,0x21,0x12,0x62,0x21,0x13,0x20,0xeb,0x03,0x20,0x2d,0x04,0x81,0xe1, +0xff,0xe0,0x08,0x00,0x91,0xa7,0xff,0x81,0xa5,0xff,0x3d,0x0a,0xc0,0x20,0x00,0x88, +0x08,0x0c,0x2b,0xc0,0x20,0x00,0xa2,0x29,0x00,0x92,0xa0,0x01,0x20,0x9b,0x93,0x80, +0x80,0x04,0x97,0x8a,0x02,0x56,0xb8,0x06,0x81,0x9f,0xff,0x0c,0x4a,0xc0,0x20,0x00, +0x98,0x08,0xa0,0x99,0x20,0xc0,0x20,0x00,0x99,0x08,0xc0,0x20,0x00,0x98,0x08,0x0c, +0x8a,0xa0,0x99,0x20,0xc0,0x20,0x00,0x99,0x08,0xc0,0x20,0x00,0x98,0x08,0xa2,0xaf, +0xf7,0xa0,0x99,0x10,0xc0,0x20,0x00,0x92,0x68,0x00,0x81,0xcb,0xff,0xe0,0x08,0x00, +0x81,0xcb,0xff,0xe0,0x08,0x00,0x81,0xca,0xff,0xe0,0x08,0x00,0x0c,0x0a,0x81,0xc9, +0xff,0xe0,0x08,0x00,0x81,0x8b,0xff,0xcc,0xa2,0xc0,0x20,0x00,0x28,0x08,0x7c,0xe9, +0x06,0x02,0x00,0x00,0x00,0xc0,0x20,0x00,0x28,0x08,0x7c,0xd9,0x90,0x22,0x10,0xc0, +0x20,0x00,0x29,0x08,0x81,0x51,0xfd,0xe0,0x08,0x00,0x8c,0x6a,0x21,0x83,0xff,0x81, +0x83,0xff,0x89,0x02,0x21,0x83,0xff,0xc0,0x20,0x00,0xb8,0x02,0x0c,0x42,0x20,0xbb, +0x10,0xcc,0x6b,0xad,0x03,0x81,0xb8,0xff,0xe0,0x08,0x00,0x25,0x52,0xff,0xa2,0xca, +0xee,0x2c,0x72,0xa7,0x32,0x0d,0x81,0x7b,0xff,0xe0,0xaa,0x11,0xaa,0xa8,0xb2,0x2a, +0x00,0x56,0xfb,0x00,0x22,0xc7,0xfc,0x0c,0x1b,0x0c,0x07,0x20,0xb7,0x83,0xb0,0x20, +0x60,0x06,0x52,0x02,0x2d,0x0b,0x66,0x47,0x02,0x06,0x50,0x02,0x31,0x33,0xfd,0xf1, +0x95,0xfc,0x38,0x03,0xd1,0x9e,0xfa,0xc1,0x70,0xff,0xa8,0x03,0xe2,0xa1,0x00,0x81, +0xa7,0xff,0xe0,0x08,0x00,0x81,0xe9,0xfd,0xe0,0x08,0x00,0x3d,0x0a,0x8c,0x1a,0xc6, +0x4f,0x00,0x0c,0xb2,0x77,0xb2,0x02,0x86,0x40,0x02,0x21,0x68,0xff,0xe0,0x77,0x11, +0x7a,0x72,0x28,0x07,0xa0,0x02,0x00,0xe5,0x92,0xff,0x2d,0x0a,0x8c,0x1a,0xc6,0x3e, +0x02,0x86,0x11,0x00,0x91,0x63,0xff,0x30,0x75,0xc0,0x90,0x67,0x63,0x60,0x90,0x14, +0x8c,0x89,0x7c,0xc9,0x90,0x66,0x10,0xcc,0x16,0xc6,0x35,0x02,0xad,0x06,0x65,0xc3, +0xfe,0x9d,0x0a,0x16,0xba,0x0f,0xbd,0x0a,0xcd,0x06,0x3a,0xa4,0x92,0x61,0x23,0xe5, +0x20,0xff,0x92,0x21,0x23,0x7d,0x0a,0xad,0x09,0xe5,0xbd,0xfe,0xa0,0xa7,0x20,0x56, +0xfa,0x0d,0x60,0x33,0x80,0x25,0xba,0xfe,0x56,0x6a,0x0d,0x57,0x33,0xb5,0xc6,0x2a, +0x02,0x0c,0x4c,0xbd,0x01,0x3a,0xa4,0x65,0x1e,0xff,0x56,0x4a,0x0c,0xad,0x07,0x65, +0xbf,0xfe,0x2d,0x0a,0x16,0xaa,0x0b,0xcd,0x07,0xbd,0x01,0x65,0x95,0x00,0xad,0x02, +0x65,0xba,0xfe,0x56,0xba,0x0a,0x25,0xb7,0xfe,0x2d,0x0a,0xcc,0x1a,0x06,0x1f,0x02, +0x86,0x27,0x00,0xbd,0x05,0xad,0x04,0x25,0x70,0xff,0x86,0x03,0x00,0x00,0x00,0x00, +0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,0x20,0xa5,0x38,0xff,0x2d,0x0a,0xc6,0x16, +0x02,0xad,0x04,0x65,0xb3,0xff,0x86,0xfc,0xff,0x00,0x00,0x00,0xad,0x04,0xa5,0x91, +0xff,0xc6,0xf9,0xff,0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,0x20,0x25,0x7e,0xff, +0x06,0xf6,0xff,0xa5,0x3e,0xff,0xa2,0xca,0xee,0x2c,0x72,0xa7,0x32,0x09,0x21,0x2d, +0xff,0xe0,0xaa,0x11,0xaa,0xa2,0x38,0x0a,0x0c,0x02,0x29,0x05,0x2c,0x06,0x21,0x22, +0xfd,0xbd,0x05,0xad,0x04,0x66,0x04,0x30,0x60,0xc6,0x20,0x10,0xb1,0x20,0x20,0xa2, +0x20,0xa5,0x14,0xff,0xec,0xaa,0x41,0x27,0xff,0x72,0x11,0x00,0x40,0x40,0xf4,0x47, +0x97,0x25,0xa8,0x11,0xa7,0x33,0x25,0x48,0x21,0x4a,0x4a,0x47,0x33,0x1e,0x42,0x01, +0x02,0x22,0xc2,0x20,0x56,0x04,0xfd,0xbd,0x05,0xe5,0x27,0xff,0x06,0xdf,0xff,0x00, +0x00,0x00,0x7c,0xf2,0x46,0xf5,0x01,0x00,0x7c,0xa2,0xc6,0xf3,0x01,0x7c,0x92,0x86, +0xf2,0x01,0x00,0x81,0x4f,0xff,0xe0,0x08,0x00,0x71,0x8e,0xfd,0xc1,0x17,0xff,0x70, +0x74,0x10,0x60,0xb6,0x20,0x70,0xa7,0x20,0x25,0x0f,0xff,0x16,0x5a,0x00,0x0c,0x02, +0x46,0xea,0x01,0x00,0x40,0x30,0xb4,0x3a,0x36,0x22,0x03,0x00,0x0c,0x28,0x20,0x23, +0x04,0x0c,0x3b,0x20,0xb8,0x93,0x2d,0x0b,0xcd,0x0b,0x50,0xa5,0x20,0x30,0xb3,0x20, +0xe5,0x84,0x00,0xbd,0x02,0xad,0x04,0x25,0x61,0xff,0x56,0x0a,0xfd,0x41,0xf8,0xfe, +0x26,0x22,0x02,0x41,0x62,0xfa,0x40,0x58,0x74,0x42,0x43,0x00,0x52,0x43,0x01,0x66, +0x32,0x05,0x40,0x40,0x75,0x42,0x43,0x02,0x65,0x81,0xfe,0x0c,0x13,0x0c,0x0d,0xc1, +0xfe,0xfe,0xa0,0xd3,0x93,0xbd,0x06,0xad,0x07,0xa5,0x69,0xff,0x56,0xea,0xf9,0x06, +0x1a,0x00,0x00,0x81,0x2f,0xff,0xe0,0x08,0x00,0x71,0x6e,0xfd,0xc1,0xf7,0xfe,0x70, +0x74,0x10,0x60,0xb6,0x20,0x70,0xa7,0x20,0x25,0x07,0xff,0x56,0x3a,0xf5,0x32,0x05, +0x00,0x0c,0x28,0x30,0x33,0x04,0x0c,0x32,0x30,0x28,0x93,0xbd,0x02,0xad,0x04,0xa5, +0x5a,0xff,0x3d,0x02,0xa0,0x2a,0x20,0x56,0x7a,0xf3,0x82,0x05,0x00,0x40,0x40,0xb4, +0x4a,0x46,0x82,0x44,0x00,0x82,0x05,0x01,0x82,0x44,0x01,0x66,0x33,0x05,0x32,0x05, +0x02,0x32,0x44,0x02,0xa5,0x7a,0xfe,0x0c,0x13,0x0c,0x0d,0xc1,0xe3,0xfe,0xa0,0xd3, +0x93,0xbd,0x06,0xad,0x07,0xe5,0x62,0xff,0x56,0x6a,0xf0,0x81,0x15,0xff,0xe0,0x08, +0x00,0x06,0xb6,0x01,0x51,0xde,0xfe,0x42,0x61,0x19,0xc0,0x20,0x00,0x28,0x05,0x20, +0x2a,0x14,0x26,0x12,0x3b,0x8c,0xb2,0x22,0xc2,0xfe,0x0c,0x8b,0x20,0xba,0x93,0x2d, +0x0b,0xc6,0x13,0x00,0xc0,0x20,0x00,0x28,0x05,0x51,0xb8,0xfc,0x20,0x20,0x94,0xc0, +0x20,0x00,0x58,0x05,0x1b,0x22,0x50,0xb0,0xf4,0x50,0x60,0xf5,0x67,0x9b,0x09,0x0b, +0x55,0x7c,0xd6,0x57,0x36,0x02,0x46,0x00,0x00,0x2c,0x8b,0x20,0x2b,0xc2,0x86,0x08, +0x00,0x21,0xcb,0xfe,0xc0,0x20,0x00,0xb8,0x02,0xc0,0x20,0x00,0x28,0x02,0xb0,0xb0, +0x14,0x5c,0x02,0x8c,0xdb,0x22,0xa0,0xa0,0x26,0x1b,0x08,0xb2,0xcb,0xfe,0x22,0xa0, +0xf0,0xb0,0x2a,0x93,0x26,0x04,0x05,0xe6,0x14,0x08,0xc6,0x97,0x01,0x42,0xa0,0xa0, +0x42,0x61,0x19,0x51,0xc0,0xfe,0x62,0x21,0x19,0x78,0x15,0x48,0x05,0x60,0x50,0x94, +0x61,0xb1,0xfc,0x50,0x80,0xf4,0xc0,0x20,0x00,0x98,0x06,0x82,0x61,0x18,0x92,0x61, +0x1f,0x90,0x8e,0x15,0xc0,0x20,0x00,0x98,0x06,0x82,0x61,0x1c,0x82,0x61,0x1a,0x92, +0x61,0x1e,0x90,0x8d,0x05,0x92,0x21,0x18,0x82,0x61,0x1d,0x80,0x89,0x11,0x91,0xb2, +0xfe,0x49,0xb1,0x90,0x44,0x10,0x92,0x21,0x1d,0x80,0x44,0x20,0xe0,0x89,0x01,0x91, +0xaf,0xfe,0x79,0xc1,0x90,0x44,0x10,0x92,0x21,0x1c,0x80,0x44,0x20,0xd0,0x89,0x01, +0x91,0xac,0xfe,0x79,0x11,0x90,0x44,0x10,0x80,0x44,0x20,0x71,0xaa,0xfe,0x49,0xb1, +0x49,0x01,0x40,0x85,0x75,0x40,0x4d,0x25,0x82,0x61,0x22,0x42,0x61,0x1b,0x81,0xa6, +0xfe,0xc0,0x20,0x00,0x48,0x07,0x0c,0x0a,0x80,0x44,0x10,0x81,0xa4,0xfe,0x80,0x44, +0x20,0xc0,0x20,0x00,0x49,0x07,0xc0,0x20,0x00,0x48,0x06,0x71,0xa1,0xfe,0x81,0xa3, +0xfe,0x70,0x44,0x10,0x71,0xa0,0xfe,0x92,0x21,0x22,0x70,0x44,0x20,0xc0,0x20,0x00, +0x49,0x06,0x41,0x9d,0xfe,0xc0,0x20,0x00,0x78,0x04,0x80,0x77,0x10,0xc0,0x20,0x00, +0x79,0x04,0xc0,0x20,0x00,0x78,0x04,0x81,0x9a,0xfe,0x80,0x77,0x10,0x90,0x89,0x01, +0x80,0x77,0x20,0xc0,0x20,0x00,0x79,0x04,0xc0,0x20,0x00,0x78,0x04,0x81,0x95,0xfe, +0x80,0x77,0x20,0xc0,0x20,0x00,0x79,0x04,0xc0,0x20,0x00,0x48,0x06,0x7c,0x77,0x70, +0x44,0x10,0xc0,0x20,0x00,0x49,0x06,0xc0,0x20,0x00,0x48,0x06,0x82,0x21,0x1b,0x71, +0x8e,0xfe,0x70,0x44,0x10,0x40,0x78,0x11,0x70,0x44,0x20,0xc0,0x20,0x00,0x49,0x06, +0xc0,0x20,0x00,0x78,0x06,0x0c,0x84,0x40,0x77,0x20,0xc0,0x20,0x00,0x79,0x06,0x61, +0x87,0xfe,0x81,0x87,0xfe,0xc0,0x20,0x00,0x78,0x06,0x80,0x77,0x20,0xc0,0x20,0x00, +0x79,0x06,0xc0,0x20,0x00,0x78,0x06,0x81,0x83,0xfe,0x80,0x77,0x10,0xc0,0x20,0x00, +0x79,0x06,0x81,0xa4,0xfe,0xe0,0x08,0x00,0x61,0x51,0xfc,0x71,0x7f,0xfe,0xc0,0x20, +0x00,0x79,0x06,0x71,0x6a,0xfe,0xc0,0x20,0x00,0x68,0x07,0x60,0x6a,0x14,0x26,0x16, +0x1a,0x8c,0x46,0x46,0x0d,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x48,0x07,0xe5,0x12, +0xff,0x40,0x40,0x94,0x1b,0x44,0x40,0x4a,0xc2,0x86,0x0b,0x00,0x41,0x61,0xfe,0xc0, +0x20,0x00,0x62,0x24,0x00,0xc0,0x20,0x00,0x42,0x24,0x00,0x60,0x60,0x14,0x42,0xa0, +0x50,0x9c,0x66,0x42,0xa0,0xa0,0x26,0x16,0x11,0x42,0xa0,0xf0,0x26,0x26,0x0b,0xb1, +0x3c,0xfc,0xa1,0x6a,0xfe,0x81,0x3c,0xfc,0xe0,0x08,0x00,0x25,0x0f,0xff,0x8d,0x0a, +0x57,0x3a,0x12,0x50,0x7a,0xc2,0x70,0x61,0x41,0xaa,0x66,0x70,0x66,0xc2,0xed,0x03, +0x67,0x15,0x25,0x46,0x0d,0x00,0x5c,0x06,0x67,0x15,0x10,0x62,0xa0,0xa0,0x67,0x15, +0x10,0x62,0xa0,0xf0,0x0c,0x27,0x67,0x15,0x0a,0xc6,0x07,0x00,0x0c,0x67,0x86,0x00, +0x00,0x00,0x0c,0x37,0x0c,0x1e,0x82,0xa1,0xe0,0x61,0x44,0xfe,0xc0,0x20,0x00,0x68, +0x06,0x60,0x6a,0x14,0x56,0xee,0x07,0xc6,0x04,0x00,0x00,0x00,0xb1,0x55,0xfe,0xa1, +0x55,0xfe,0x81,0x25,0xfc,0xe0,0x08,0x00,0x06,0xff,0xff,0x00,0x00,0x00,0x1c,0x2f, +0xa6,0x35,0x01,0x1c,0x7f,0xa2,0xa0,0x6d,0xd2,0xa0,0x04,0xc2,0xa0,0x06,0xb2,0xa0, +0x01,0x81,0x6d,0xfe,0xe0,0x08,0x00,0x65,0x0e,0xff,0x51,0x34,0xfe,0xa2,0xac,0x00, +0xc0,0x20,0x00,0x98,0x05,0x0b,0x77,0xa0,0x99,0x10,0xc0,0x20,0x00,0x99,0x05,0xc0, +0x20,0x00,0x88,0x05,0x70,0x70,0x94,0xa0,0x88,0x10,0x80,0x77,0x20,0xc0,0x20,0x00, +0x79,0x05,0xc0,0x20,0x00,0x78,0x05,0x81,0x40,0xfe,0x80,0x77,0x10,0xc0,0x20,0x00, +0x79,0x05,0x26,0x16,0x02,0xc6,0x7c,0x00,0x61,0x3d,0xfe,0x72,0xa5,0x40,0xc0,0x20, +0x00,0x58,0x06,0x46,0x77,0x00,0x66,0x16,0x02,0x86,0x58,0x00,0x71,0x38,0xfe,0x92, +0xaa,0xbf,0xc0,0x20,0x00,0x62,0x27,0x00,0x90,0x66,0x10,0xc0,0x20,0x00,0x62,0x67, +0x00,0x82,0x61,0x23,0x65,0x00,0xff,0x71,0x32,0xfe,0xb2,0xaf,0xfb,0xc0,0x20,0x00, +0x68,0x07,0x82,0x21,0x23,0xb0,0x66,0x10,0xc0,0x20,0x00,0x69,0x07,0xc0,0x20,0x00, +0x98,0x07,0x0c,0x86,0x60,0x99,0x20,0xc0,0x20,0x00,0x99,0x07,0x92,0xa1,0xe0,0x71, +0x10,0xfe,0x97,0x98,0x4b,0xc0,0x20,0x00,0x88,0x07,0x0c,0x4c,0xc0,0x88,0x20,0x0c, +0x09,0xc0,0x20,0x00,0x89,0x07,0xa2,0xca,0xe0,0x0c,0x37,0x8d,0x09,0xa0,0x87,0x93, +0x82,0x61,0x20,0x0c,0x1b,0x1c,0xa8,0xa0,0x86,0x93,0x0c,0x5d,0xed,0x0c,0x6d,0x0b, +0xa0,0xed,0x93,0xa0,0x69,0x93,0xd2,0xa0,0x6b,0xa2,0xa0,0x66,0xe2,0x61,0x23,0x82, +0x61,0x21,0x81,0x36,0xfe,0xe0,0x08,0x00,0x7d,0x06,0xe2,0x21,0x23,0x86,0x0d,0x00, +0x00,0xc0,0x20,0x00,0x68,0x07,0xa2,0xca,0xe0,0xb0,0x66,0x10,0xc0,0x20,0x00,0x69, +0x07,0x0c,0x4c,0x0c,0x66,0xa0,0x6c,0x93,0x0c,0x1b,0x62,0x61,0x21,0x0c,0x0... [truncated message content] |