This is an automated email from Gerrit. "Erhan Kurubas <erhan.kuru...@espressif.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8029
-- gerrit commit 73b56d1d391761026db6083d8b8f15fb11477d6c Author: Erhan Kurubas <erhan.kuru...@espressif.com> Date: Thu Nov 30 13:04:55 2023 +0100 loaders/espressif: add esp32c2 stub flasher application code Special binary program running on the target (ESP32-C2) to perform flash operations and communicate to the OpenOCD host. Camelcase symbols comes from esp-idf Checkpatch-ignore: CAMELCASE Signed-off-by: Erhan Kurubas <erhan.kuru...@espressif.com> Change-Id: Idb01fe91b62d3d622141d668d004b5379b081639 diff --git a/contrib/loaders/flash/espressif/esp32c2/Makefile b/contrib/loaders/flash/espressif/esp32c2/Makefile new file mode 100644 index 0000000000..3a6ae1eb4a --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/Makefile @@ -0,0 +1,42 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +# Makefile to compile flasher stub program +# Copyright (C) 2022 Espressif Systems Ltd. + +# Prefix for ESP32-C2 cross compilers (can include a directory path) +CROSS ?= riscv32-esp-elf- + +# Path to the esp-idf root dir +IDF_PATH ?= ../.. + +STUB_ARCH := riscv +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 := ESP32C2 + +SRCS := $(IDF_PATH)/components/esp_hw_support/port/esp32c2/rtc_clk_init.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32c2/rtc_clk.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32c2/rtc_time.c \ + $(IDF_PATH)/components/esp_hw_support/port/esp32c2/systimer.c \ + $(IDF_PATH)/components/app_trace/port/$(STUB_ARCH)/port.c + +CFLAGS := -std=gnu17 + +INCLUDES := -I$(IDF_PATH)/components/soc/esp32c2/include -I$(IDF_PATH)/components/riscv/include \ + -I$(IDF_PATH)/components/hal/esp32c2/include -I$(IDF_PATH)/components/esp32c2/include \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32c2/private_include \ + -I$(IDF_PATH)/components/esp_rom/include/esp32c2 \ + -I$(IDF_PATH)/components/esp_hw_support/port/esp32c2 \ + -I$(IDF_PATH)/components/spi_flash/include \ + -I$(IDF_PATH)/components/hal/esp32c2/include \ + -I$(IDF_PATH)/components/esp_rom/esp32c2 + +DEFINES := + +LDFLAGS += -T$(IDF_PATH)/components/esp_rom/esp32c2/ld/esp32c2.rom.ld -T$(IDF_PATH)/components/esp_rom/esp32c2/ld/esp32c2.rom.newlib.ld \ + -T$(IDF_PATH)/components/esp_rom/esp32c2/ld/esp32c2.rom.api.ld -T$(IDF_PATH)/components/soc/esp32c2/ld/esp32c2.peripherals.ld + +include ../stub_common.mk diff --git a/contrib/loaders/flash/espressif/esp32c2/sdkconfig.h b/contrib/loaders/flash/espressif/esp32c2/sdkconfig.h new file mode 100644 index 0000000000..0be4cd7b0f --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/sdkconfig.h @@ -0,0 +1,40 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _STUB_SDKCONFIG_H_ +#define _STUB_SDKCONFIG_H_ + +#define CONFIG_IDF_TARGET_ARCH_RISCV 1 +#define CONFIG_IDF_TARGET_ESP32C2 1 +#define CONFIG_FREERTOS_UNICORE 1 +/* 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 16384 +#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_ESP32C2_DEFAULT_CPU_FREQ_MHZ 120 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_XTAL_FREQ_40 1 +/* Unused by stub, just for compilation of IDF */ +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_MMU_PAGE_SIZE 0x10000 /* 64KB */ + +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 + +#endif /*_STUB_SDKCONFIG_H_ */ diff --git a/contrib/loaders/flash/espressif/esp32c2/stub.ld b/contrib/loaders/flash/espressif/esp32c2/stub.ld new file mode 100644 index 0000000000..26f4b69dac --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub.ld @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * LD script for ESP32-C2 flasher stub * + * Copyright (C) 2021 Espressif Systems Ltd. * + * Author: Alexey Gerenkov <ale...@espressif.com> * + ***************************************************************************/ + +MEMORY { + /* Place sections by starting from the Internal SRAM1. OpenOCD will fill the sections using data bus. + 0x3FCA0000 - code (OpenOCD workarea address) + 0x3FCA4000 - data + */ + iram : org = 0x40380000, len = 0x4000 + dram : org = 0x3FCA4000, len = 0x20000 +} + +INCLUDE stub_common.ld diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_chip.c b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_chip.c new file mode 100644 index 0000000000..31c02e9ded --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_chip.c @@ -0,0 +1,519 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +/*************************************************************************** + * ESP32-C2 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/gpio_reg.h" +#include "soc/mmu.h" +#include "soc/system_reg.h" +#include "hal/mmu_ll.h" +#include "hal/systimer_ll.h" +#include "systimer.h" +#include "esp_app_trace_membufs_proto.h" +#include "stub_rom_chip.h" +#include "stub_logger.h" +#include "stub_flasher_int.h" +#include "stub_flasher_chip.h" +#include "stub_flasher.h" + +/* RTC related definitios */ +#define SYSTEM_SOC_CLK_MAX 1 +#define SYSTEM_CPUPERIOD_MAX 1 // CPU_CLK frequency is 120 MHz + +/* Cache MMU related definitions */ +#define STUB_CACHE_BUS EXTMEM_ICACHE_SHUT_DBUS +#define STUB_MMU_TABLE ((volatile uint32_t *)DR_REG_MMU_TABLE) /* 0x600c5000 */ +#define STUB_MMU_INVALID_ENTRY_VAL MMU_INVALID /* BIT(6) */ + +#define ESP_APPTRACE_RISCV_BLOCK_LEN_MSK 0x7FFFUL +#define ESP_APPTRACE_RISCV_BLOCK_LEN(_l_) ((_l_) & ESP_APPTRACE_RISCV_BLOCK_LEN_MSK) +#define ESP_APPTRACE_RISCV_BLOCK_LEN_GET(_v_) ((_v_) & ESP_APPTRACE_RISCV_BLOCK_LEN_MSK) +#define ESP_APPTRACE_RISCV_BLOCK_ID_MSK 0x7FUL +#define ESP_APPTRACE_RISCV_BLOCK_ID(_id_) (((_id_) & ESP_APPTRACE_RISCV_BLOCK_ID_MSK) << 15) +#define ESP_APPTRACE_RISCV_BLOCK_ID_GET(_v_) (((_v_) >> 15) & ESP_APPTRACE_RISCV_BLOCK_ID_MSK) +#define ESP_APPTRACE_RISCV_HOST_DATA BIT(22) +#define ESP_APPTRACE_RISCV_HOST_CONNECT BIT(23) + +/** RISCV memory host iface control block */ +typedef struct { + uint32_t ctrl; + /* - Guard field. If this register is not zero then CPU is changing this struct and */ + /* this guard field holds address of the instruction which application will execute when + * CPU finishes with those modifications. */ + uint32_t stat; + esp_apptrace_mem_block_t *mem_blocks; +} esp_apptrace_riscv_ctrl_block_t; + +static esp_apptrace_riscv_ctrl_block_t *s_apptrace_ctrl; +#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0 +static uint8_t *s_stack_data_pool; +static size_t s_stack_data_pool_sz; +#endif + +typedef struct { + mmu_page_size_t page_size; + uint32_t vaddr0_start_addr; + uint32_t drom_page_start; + uint32_t drom_page_end; +} cache_mmu_config_t; + +static cache_mmu_config_t s_cache_mmu_config; + +/* 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; +}; + +static systimer_dev_t *s_sys_timer_dev = &SYSTIMER; +static uint32_t s_sys_timer_conf; + +uint32_t g_stub_cpu_freq_hz = CONFIG_ESP32C2_DEFAULT_CPU_FREQ_MHZ * MHZ; + +void vPortEnterCritical(void) +{ +} + +void vPortExitCritical(void) +{ +} + +int xPortInIsrContext(void) +{ + return 0; +} + +void *esp_apptrace_uart_hw_get(int num, void **data) +{ + return NULL; +} + +#if STUB_LOG_ENABLE == 1 +void stub_print_cache_mmu_registers(void) +{ + uint32_t icache_ctrl1_reg = REG_READ(EXTMEM_ICACHE_CTRL1_REG); + + STUB_LOGD("icache_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); + 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); + 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(); +} + +void stub_cache_init(void) +{ + STUB_LOGD("%s\n", __func__); + + Cache_Mask_All(); + /* init cache mmu, set cache mode, invalidate cache tags, enable cache*/ + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_CLK_ON); + REG_SET_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_RESET); + REG_CLR_BIT(SYSTEM_CACHE_CONTROL_REG, SYSTEM_ICACHE_RESET); + /* init cache owner bit */ + Cache_Owner_Init(); + /* set page mode */ + mmu_ll_set_page_size(0, CONFIG_MMU_PAGE_SIZE); + /* clear mmu entry */ + Cache_MMU_Init(); + /* config cache mode */ + Cache_Set_Default_Mode(); + Cache_Enable_ICache(0); + REG_CLR_BIT(EXTMEM_ICACHE_CTRL1_REG, STUB_CACHE_BUS); +} + +bool stub_is_cache_enabled(void) +{ + bool is_enabled = REG_GET_BIT(EXTMEM_ICACHE_CTRL_REG, EXTMEM_ICACHE_ENABLE) != 0; + int cache_bus = REG_READ(EXTMEM_ICACHE_CTRL1_REG); + STUB_LOGD("Cache is_enabled:%d cache_bus:%X\n", is_enabled, cache_bus); + return is_enabled && !(cache_bus & STUB_CACHE_BUS); +} + +void stub_cache_configure(void) +{ + s_cache_mmu_config.page_size = mmu_ll_get_page_size(0); + + switch (s_cache_mmu_config.page_size) { + case MMU_PAGE_64KB: + s_cache_mmu_config.drom_page_start = 2; + break; + case MMU_PAGE_32KB: + s_cache_mmu_config.drom_page_start = 1; + break; + case MMU_PAGE_16KB: + s_cache_mmu_config.drom_page_start = 3; + break; + default: + STUB_LOGE("Unknown page size!"); + return; + } + + s_cache_mmu_config.drom_page_end = 64; + s_cache_mmu_config.vaddr0_start_addr = + (SOC_DROM_LOW + (s_cache_mmu_config.drom_page_start * s_cache_mmu_config.page_size)); + + STUB_LOGI("MMU page size:%X drom_page_start:%d drom_page_end:%d vaddr0_start_addr:%X\n", + s_cache_mmu_config.page_size, + s_cache_mmu_config.drom_page_start, + s_cache_mmu_config.drom_page_end, + s_cache_mmu_config.vaddr0_start_addr); +} + +void stub_systimer_init(void) +{ + /* Enable APB_CLK signal if not enabled yet */ + if (!GET_PERI_REG_MASK(SYSTEM_PERIP_CLK_EN0_REG, SYSTEM_SYSTIMER_CLK_EN)) { + SET_PERI_REG_MASK(SYSTEM_PERIP_CLK_EN0_REG, SYSTEM_SYSTIMER_CLK_EN); + CLEAR_PERI_REG_MASK(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_SYSTIMER_RST); + STUB_LOGI("Systimer clock enabled\n"); + } + + s_sys_timer_conf = s_sys_timer_dev->conf.val; + + /* enable SYSTIMER_LL_COUNTER_CLOCK */ + s_sys_timer_dev->conf.clk_en = 1; + s_sys_timer_dev->conf.timer_unit0_work_en = 1; + s_sys_timer_dev->conf.timer_unit0_core0_stall_en = 0; +} + +void stub_flash_state_prepare(struct stub_flash_state *state) +{ + const uint32_t spiconfig = 0; /* ESP32C2 doesn't support ets_efuse_get_spiconfig(); */ + + state->cache_enabled = stub_is_cache_enabled(); + if (!state->cache_enabled) { + STUB_LOGI("Cache needs to be enabled\n"); + stub_cache_init(); + } + stub_cache_configure(); + stub_systimer_init(); + + esp_rom_spiflash_attach(spiconfig, false); +} + +void stub_flash_state_restore(struct stub_flash_state *state) +{ + /* we do not disable or store the cache settings. So, nothing to restore*/ + + /* restore timer settings */ + s_sys_timer_dev->conf.val = s_sys_timer_conf; +} + +int stub_cpu_clock_configure(int conf_reg_val) +{ + uint32_t sysclk_conf_reg = 0; + + /* set to maximum possible value */ + if (conf_reg_val == -1) { + sysclk_conf_reg = REG_READ(SYSTEM_SYSCLK_CONF_REG) & 0xFFF; + REG_WRITE(SYSTEM_SYSCLK_CONF_REG, + (sysclk_conf_reg & ~SYSTEM_SOC_CLK_SEL_M) | (SYSTEM_SOC_CLK_MAX << SYSTEM_SOC_CLK_SEL_S)); + } else { // restore old value + sysclk_conf_reg = conf_reg_val; + REG_WRITE(SYSTEM_SYSCLK_CONF_REG, + (REG_READ(SYSTEM_SYSCLK_CONF_REG) & ~SYSTEM_SOC_CLK_SEL_M) | (sysclk_conf_reg & SYSTEM_SOC_CLK_SEL_M)); + } + + STUB_LOGD("sysclk_conf_reg %x\n", sysclk_conf_reg); + + return conf_reg_val; +} + +#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, APB_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 CONFIG_ESP32C2_DEFAULT_CPU_FREQ_MHZ * 1000000; +} + +/* override apptrace control block advertising func, IDF's implementation issues syscall */ +int esp_apptrace_advertise_ctrl_block(void *ctrl_block_addr) +{ + s_apptrace_ctrl = ctrl_block_addr; + return 0; +} + +#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0 +void stub_stack_data_pool_init(uint8_t *data, size_t sz) +{ + STUB_LOGD("stack data pool %lu bytes @ 0x%x\n", sz, data); + s_stack_data_pool = data; + s_stack_data_pool_sz = sz; +} + +void esp_apptrace_get_up_buffers(esp_apptrace_mem_block_t mem_blocks_cfg[2]) +{ + /* use whole stack data pool for apptrace up buffers */ + mem_blocks_cfg[0].start = s_stack_data_pool; + mem_blocks_cfg[0].sz = s_stack_data_pool_sz / 2; + mem_blocks_cfg[1].start = s_stack_data_pool + mem_blocks_cfg[0].sz; + mem_blocks_cfg[1].sz = mem_blocks_cfg[0].sz; +} +#endif + +int stub_apptrace_prepare(void) +{ + /* imply that host is auto-connected */ + s_apptrace_ctrl->ctrl |= ESP_APPTRACE_RISCV_HOST_CONNECT; + return ESP_STUB_ERR_OK; +} + +/* this function is used for perf measurements only.*/ +uint64_t stub_get_time(void) +{ + uint32_t lo, lo_start, hi; + + /* Set the "update" bit and wait for acknowledgment */ + systimer_ll_counter_snapshot(s_sys_timer_dev, SYSTIMER_COUNTER_OS_TICK); + while (!systimer_ll_is_counter_value_valid(s_sys_timer_dev, SYSTIMER_COUNTER_OS_TICK)) + ; + + /* Read LO, HI, then LO again, check that LO returns the same value. + * This accounts for the case when an interrupt may happen between reading + * HI and LO values, and this function may get called from the ISR. + * In this case, the repeated read will return consistent values. + */ + lo_start = systimer_ll_get_counter_value_low(s_sys_timer_dev, SYSTIMER_COUNTER_OS_TICK); + do { + lo = lo_start; + hi = systimer_ll_get_counter_value_high(s_sys_timer_dev, SYSTIMER_COUNTER_OS_TICK); + lo_start = systimer_ll_get_counter_value_low(s_sys_timer_dev, SYSTIMER_COUNTER_OS_TICK); + } while (lo_start != lo); + + return systimer_ticks_to_us(((uint64_t)hi << 32) | lo); +} + +/* this function is used by apptrace code to implement timeouts */ +int64_t esp_timer_get_time(void) +{ + return (int64_t)stub_get_time(); +} + +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 (0 != (start_addr % rom_spiflash_legacy_data->chip.sector_size)) + 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_RESULT_OK != + esp_rom_spiflash_erase_block(sector_no / sector_num_per_block)) + 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_DATA0_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()) + 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 & (~(s_cache_mmu_config.page_size - 1)); + uint32_t map_size = req->size + (req->src_addr - map_src); + uint32_t flash_page = map_src / s_cache_mmu_config.page_size; + uint32_t page_cnt = (map_size + s_cache_mmu_config.page_size - 1) / s_cache_mmu_config.page_size; + int start_page, ret = ESP_ROM_SPIFLASH_RESULT_ERR; + uint32_t saved_state = Cache_Suspend_ICache() << 16; + + for (start_page = s_cache_mmu_config.drom_page_start; start_page < s_cache_mmu_config.drom_page_end; + ++start_page) { + if (STUB_MMU_TABLE[start_page] == STUB_MMU_INVALID_ENTRY_VAL) + break; + } + + if (start_page == s_cache_mmu_config.drom_page_end) + start_page = s_cache_mmu_config.drom_page_start; + + if (start_page + page_cnt < s_cache_mmu_config.drom_page_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 *)(s_cache_mmu_config.vaddr0_start_addr + + (start_page - s_cache_mmu_config.drom_page_start) * s_cache_mmu_config.page_size + + (req->src_addr - map_src)); + Cache_Invalidate_Addr((uint32_t)(s_cache_mmu_config.vaddr0_start_addr + + (start_page - s_cache_mmu_config.drom_page_start) * s_cache_mmu_config.page_size), + page_cnt * s_cache_mmu_config.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_ICache(saved_state >> 16); + + return ret; +} + +static void stub_flash_ummap(const struct spiflash_map_req *req) +{ + uint32_t saved_state = Cache_Suspend_ICache() << 16; + + 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_ICache(saved_state >> 16); +} + +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/esp32c2/stub_flasher_chip.h b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_chip.h new file mode 100644 index 0000000000..2fe4ffb34c --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_chip.h @@ -0,0 +1,44 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * ESP32-C2 flasher stub definitions * + * Copyright (C) 2019 Espressif Systems Ltd. * + * Author: Alexey Gerenkov <ale...@espressif.com> * + ***************************************************************************/ +#ifndef ESP32C2_FLASHER_STUB_H +#define ESP32C2_FLASHER_STUB_H + +#include "sdkconfig.h" + +#define STUB_FLASH_SECTOR_SIZE 0x1000 +/* Flash geometry constants */ +#define STUB_FLASH_BLOCK_SIZE 0x10000 +#define STUB_FLASH_PAGE_SIZE 0x100 +#define STUB_FLASH_STATUS_MASK 0xFFFF + +struct stub_flash_state { + uint32_t cache_flags[2]; + bool cache_enabled; +}; + +#define ESP_APPTRACE_USR_DATA_LEN_MAX (CONFIG_APPTRACE_BUF_SIZE - 2) +#define RISCV_EBREAK 0x9002 + +extern bool ets_efuse_flash_octal_mode(void); + +uint32_t stub_esp_clk_cpu_freq(void); + +static inline uint8_t stub_get_insn_size(uint8_t *insn) +{ + /* we use 16bit `c.ebreak`. it works perfectly with either 32bit and 16bit code */ + return 2; +} + +static inline uint32_t stub_get_break_insn(uint8_t insn_sz) +{ + return RISCV_EBREAK; +} + +void stub_stack_data_pool_init(uint8_t *data, size_t sz); + +#endif /*ESP32C2_FLASHER_STUB_H */ diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code.inc b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code.inc new file mode 100644 index 0000000000..a30955e935 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code.inc @@ -0,0 +1,334 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc7,0x83,0xd7,0xc5,0xff,0x01,0x45,0x23,0x9f, +0xf5,0xfe,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b, +0x81,0xcb,0x50,0xd5,0x10,0xd5,0x23,0x28,0x05,0x02,0x4c,0xd1,0x23,0x2a,0x05,0x02, +0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xe7,0x13,0x05,0x30,0x10,0x82,0x80, +0x01,0x45,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xcb,0xb7,0x47,0xca,0x3f, +0x03,0xa5,0x47,0x14,0x5d,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0xb7,0x47, +0xca,0x3f,0x23,0xa4,0x07,0x14,0x82,0x80,0xb7,0x47,0xca,0x3f,0x37,0x07,0x38,0x40, +0x93,0x87,0x47,0x14,0x13,0x07,0x67,0x06,0xd8,0xc3,0x98,0x43,0xb7,0x07,0x80,0x00, +0xf9,0x8f,0x9d,0xc3,0x93,0x57,0xf7,0x00,0xa9,0x8f,0x46,0x07,0x93,0xf7,0xf7,0x07, +0x45,0x83,0xd9,0x8f,0x01,0x45,0x99,0xcb,0x41,0x11,0x06,0xc6,0xc9,0x37,0xb2,0x40, +0x13,0x05,0x10,0x10,0x41,0x01,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x37,0x47, +0xca,0x3f,0x13,0x07,0x47,0x14,0x14,0x43,0xb7,0x07,0x80,0x00,0xc6,0x05,0xf5,0x8f, +0xc5,0x81,0xb7,0x86,0x3f,0x00,0x3e,0x05,0x41,0x11,0x75,0x8d,0xcd,0x8f,0x06,0xc6, +0xc9,0x8f,0x1c,0xc3,0x69,0x37,0xb2,0x40,0x01,0x45,0x41,0x01,0x82,0x80,0x01,0x45, +0x82,0x80,0xb7,0x47,0xca,0x3f,0x03,0xa5,0x47,0x14,0x59,0x81,0x05,0x89,0x82,0x80, +0xb7,0x27,0x00,0x60,0x23,0xac,0x07,0x04,0x37,0x07,0x00,0x10,0x98,0xc3,0x88,0x43, +0x7d,0xfd,0xbc,0x4f,0x13,0x07,0x70,0x02,0xc1,0x83,0x93,0xf7,0xf7,0x0f,0xb9,0x17, +0x63,0x69,0xf7,0x00,0x37,0x47,0xca,0x3f,0x8a,0x07,0x13,0x07,0xc7,0x09,0xba,0x97, +0x88,0x43,0x82,0x80,0xb7,0x37,0x02,0x60,0x93,0x86,0x07,0x00,0x98,0x46,0x37,0x06, +0x00,0x40,0x93,0x87,0x07,0x00,0x51,0x8f,0x98,0xc6,0x98,0x47,0x75,0x83,0x05,0x8b, +0x6d,0xdf,0xf8,0x47,0xb7,0x06,0x10,0x00,0xfd,0x16,0xac,0x47,0x3a,0x86,0xf8,0x47, +0xf5,0x8d,0xe3,0x1c,0xe6,0xfe,0x13,0x95,0xc5,0x01,0x11,0x83,0x59,0x8d,0x91,0x81, +0x82,0x80,0xb7,0x46,0xca,0x3f,0x83,0xc7,0x06,0x14,0x85,0xc3,0xb7,0x97,0x00,0x60, +0x83,0xa7,0x07,0x83,0x01,0x47,0x9d,0x83,0x9d,0x8b,0x89,0xef,0x09,0xe7,0xb7,0x47, +0xca,0x3f,0x23,0xae,0x07,0x12,0x23,0x80,0x06,0x14,0xb7,0x47,0xca,0x3f,0x03,0xa5, +0xc7,0x13,0x82,0x80,0x13,0xf6,0x17,0x00,0x19,0xc2,0x13,0x47,0x17,0x00,0x85,0x83, +0xe9,0xbf,0x01,0x11,0x22,0xcc,0x37,0x44,0xca,0x3f,0x93,0x07,0x44,0x14,0xdc,0x4b, +0x26,0xca,0x06,0xce,0xaa,0x84,0x2e,0x86,0x13,0x04,0x44,0x14,0x81,0xcb,0xdc,0x4b, +0x91,0xc7,0x2e,0xc6,0xaa,0x85,0x08,0x4c,0x82,0x97,0x32,0x46,0x5c,0x4c,0x91,0xcb, +0xdc,0x4b,0x81,0xcb,0x08,0x50,0x62,0x44,0xf2,0x40,0xa6,0x85,0xd2,0x44,0x05,0x61, +0x82,0x87,0xf2,0x40,0x62,0x44,0xd2,0x44,0x05,0x61,0x82,0x80,0x41,0x11,0x22,0xc4, +0x06,0xc6,0x2a,0x84,0x05,0x3f,0xfd,0x57,0x5c,0xc4,0x7d,0x57,0x81,0x47,0x01,0x48, +0xb2,0x40,0x08,0xc0,0x4c,0xc0,0x18,0xc4,0x1c,0xc8,0x23,0x2a,0x04,0x01,0x22,0x44, +0x41,0x01,0x82,0x80,0x1c,0x41,0x39,0x71,0x2a,0xc6,0x06,0xde,0x22,0xdc,0x26,0xda, +0x01,0x45,0x95,0xc7,0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26,0x01,0x45,0x85,0xc3, +0x37,0x44,0xca,0x3f,0x13,0x04,0x44,0x14,0x48,0x48,0x11,0xc9,0x04,0x4d,0x01,0x45, +0x99,0xc4,0x28,0x08,0x65,0x37,0xb2,0x45,0x08,0x4c,0x30,0x08,0x82,0x94,0xf2,0x50, +0x62,0x54,0xd2,0x54,0x21,0x61,0x82,0x80,0x39,0x71,0x06,0xde,0x22,0xdc,0x26,0xda, +0x2a,0xc6,0x15,0xcd,0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26,0x13,0x05,0x30,0x10, +0x95,0xc3,0x37,0x44,0xca,0x3f,0x13,0x04,0x44,0x14,0x44,0x48,0x13,0x05,0x60,0x10, +0x91,0xc8,0x9c,0x4c,0x81,0xcb,0x28,0x08,0x95,0x37,0xdc,0x4c,0xb2,0x45,0x08,0x4c, +0x30,0x08,0x82,0x97,0xf2,0x50,0x62,0x54,0xd2,0x54,0x21,0x61,0x82,0x80,0x13,0x05, +0x20,0x10,0xcd,0xbf,0x39,0x71,0x06,0xde,0x22,0xdc,0x26,0xda,0x2a,0xc6,0x1d,0xc9, +0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26,0x01,0x45,0x85,0xc3,0x37,0x44,0xca,0x3f, +0x13,0x04,0x44,0x14,0x48,0x48,0x11,0xc9,0x44,0x41,0x01,0x45,0x99,0xc4,0x28,0x08, +0x31,0x3f,0xb2,0x45,0x08,0x4c,0x30,0x08,0x82,0x94,0xf2,0x50,0x62,0x54,0xd2,0x54, +0x21,0x61,0x82,0x80,0x01,0x45,0xd5,0xbf,0x39,0x71,0x06,0xde,0x22,0xdc,0x26,0xda, +0x2a,0xc6,0x0d,0xcd,0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26,0x13,0x05,0x30,0x10, +0x8d,0xc3,0x37,0x44,0xca,0x3f,0x13,0x04,0x44,0x14,0x5c,0x48,0x13,0x05,0x60,0x10, +0x89,0xcb,0x84,0x47,0x99,0xc4,0x28,0x08,0xd1,0x3d,0xb2,0x45,0x08,0x4c,0x30,0x08, +0x82,0x94,0xf2,0x50,0x62,0x54,0xd2,0x54,0x21,0x61,0x82,0x80,0x13,0x05,0x20,0x10, +0xcd,0xbf,0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26,0x13,0x05,0x30,0x10,0x8d,0xcb, +0x79,0x71,0x22,0xd4,0x37,0x44,0xca,0x3f,0x13,0x04,0x44,0x14,0x5c,0x48,0x06,0xd6, +0x26,0xd2,0x13,0x05,0x60,0x10,0x81,0xcb,0x84,0x4b,0x91,0xc4,0x28,0x00,0x79,0x35, +0x08,0x4c,0x2c,0x00,0x82,0x94,0xb2,0x50,0x22,0x54,0x92,0x54,0x45,0x61,0x82,0x80, +0x82,0x80,0x03,0x47,0x05,0x00,0x1d,0xef,0xb7,0x47,0xca,0x3f,0x23,0x26,0x05,0x02, +0x83,0xa6,0x87,0x27,0xb7,0x47,0xca,0x3f,0x23,0x24,0x05,0x02,0x83,0xa7,0x47,0x27, +0x23,0x28,0x05,0x02,0x23,0x2a,0x05,0x02,0x85,0x83,0x23,0x26,0x05,0x00,0x54,0xc9, +0x23,0x28,0x05,0x00,0xbe,0x96,0x23,0x22,0x05,0x02,0x1c,0xcd,0x54,0xcd,0x1c,0xd1, +0x23,0x24,0x05,0x00,0x13,0x67,0x17,0x00,0xb7,0x47,0xca,0x3f,0x23,0x00,0xe5,0x00, +0x93,0x87,0x47,0x14,0x51,0x05,0x37,0x47,0xca,0x3f,0x88,0xc7,0x23,0x2e,0xf7,0x26, +0x01,0x45,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x52,0xc4,0x06,0xce,0x4a,0xc8, +0x4e,0xc6,0x56,0xc2,0x5a,0xc0,0x2a,0x84,0xae,0x84,0x7d,0x5a,0x1c,0x40,0x03,0x29, +0x44,0x00,0x48,0x40,0x9c,0x43,0x82,0x97,0xaa,0x89,0x63,0x12,0x05,0x12,0x93,0x44, +0xf9,0xff,0x85,0x88,0x93,0x97,0x24,0x00,0xa2,0x97,0x23,0xa4,0x07,0x00,0x5c,0x40, +0x26,0x85,0x89,0x04,0x85,0x07,0x5c,0xc0,0x1c,0x40,0x8e,0x04,0xa2,0x94,0xdc,0x43, +0x82,0x97,0x1c,0x40,0x83,0xaa,0x04,0x00,0xdc,0x47,0x82,0x97,0x61,0xc5,0x03,0xdb, +0x0a,0x00,0x63,0x01,0x0b,0x0c,0x01,0x4a,0x58,0x54,0x1c,0x58,0x63,0xe7,0xe7,0x04, +0x54,0x50,0x18,0x58,0xb3,0x87,0xe6,0x40,0x63,0x84,0xe6,0x0a,0x58,0x54,0x19,0xe3, +0xfd,0x17,0xd9,0xcf,0xb3,0x04,0x4b,0x41,0x63,0xf3,0x97,0x00,0xbe,0x84,0x18,0x58, +0x54,0x54,0x1c,0x58,0x08,0x50,0x63,0xe0,0xd7,0x06,0x1c,0x58,0x54,0x50,0xa6,0x97, +0x63,0xe1,0xd7,0x06,0x5c,0x54,0xb9,0xc7,0x1c,0x58,0x54,0x50,0xa6,0x97,0x63,0x9b, +0xd7,0x00,0x23,0x28,0x04,0x02,0x3a,0x95,0x2d,0xa8,0x5c,0x54,0x18,0x58,0xfd,0x17, +0x99,0x8f,0xc1,0xb7,0x5c,0x54,0xfd,0x17,0x63,0xe6,0x97,0x02,0x1c,0x58,0x1c,0xd4, +0x23,0x28,0x04,0x02,0x58,0x54,0x1c,0x54,0x63,0x1a,0xf7,0x00,0x23,0x26,0x04,0x02, +0x18,0x54,0x5c,0x50,0x63,0x74,0xf7,0x00,0x5c,0x50,0x1c,0xd4,0x1c,0x58,0xa6,0x97, +0x1c,0xd8,0x01,0xed,0x01,0xa0,0x5c,0x54,0x14,0x58,0xfd,0x17,0x95,0x8f,0xe3,0xeb, +0x97,0xfe,0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x7d,0xb7,0x93,0x05,0x2a,0x00,0x26,0x86, +0xd6,0x95,0x26,0x9a,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xfa,0xe3,0x66,0x6a,0xf5, +0x23,0x90,0x0a,0x00,0x1c,0x40,0x13,0x79,0x19,0x00,0x0a,0x09,0x22,0x99,0x48,0x40, +0x9c,0x47,0x83,0x25,0x89,0x00,0x82,0x97,0xf2,0x40,0x62,0x44,0xd2,0x44,0x42,0x49, +0x22,0x4a,0x92,0x4a,0x02,0x4b,0x4e,0x85,0xb2,0x49,0x05,0x61,0x82,0x80,0x83,0xa9, +0x84,0x00,0x03,0xa9,0xc4,0x00,0x63,0x94,0x49,0x01,0xe3,0x01,0x49,0xed,0xdd,0x3e, +0x9c,0x40,0xd8,0x40,0xb3,0x07,0xf5,0x40,0x33,0x35,0xf5,0x00,0x99,0x8d,0x89,0x8d, +0x9c,0xc8,0xcc,0xc8,0xe3,0xc4,0x25,0xeb,0x63,0x14,0xb9,0x00,0xe3,0xe0,0x37,0xeb, +0x93,0x09,0x70,0x10,0x55,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xe3,0x01,0x45, +0x82,0x80,0x1c,0x45,0x41,0x11,0x22,0xc4,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97, +0x9c,0x47,0x26,0xc2,0x06,0xc6,0x4a,0xc0,0xf1,0x17,0x2a,0x84,0xae,0x84,0x63,0xe5, +0xb7,0x0a,0x1c,0x45,0x13,0x89,0x45,0x00,0x85,0x8b,0x8a,0x07,0xaa,0x97,0xd8,0x47, +0x1c,0x45,0x4a,0x97,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf1, +0xe7,0x06,0xb2,0x85,0x11,0x05,0x3d,0x35,0x41,0xe1,0x1c,0x44,0x13,0x17,0x09,0x01, +0x41,0x83,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd4,0x47,0x1c,0x44,0x36,0x97,0x85,0x8b, +0x89,0x07,0x8e,0x07,0xa2,0x97,0x9c,0x47,0x63,0xe0,0xe7,0x06,0x1c,0x44,0x18,0x44, +0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x22,0x97,0xa2,0x97,0x58,0x47, +0xc8,0x43,0x3a,0x95,0x31,0xc1,0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd8,0x47, +0x4a,0x97,0xd8,0xc7,0x23,0x10,0x95,0x00,0x23,0x11,0x05,0x00,0x11,0x05,0x35,0xa0, +0x1c,0x45,0x18,0x45,0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x2a,0x97, +0xaa,0x97,0x58,0x47,0xc8,0x43,0x1c,0x44,0x3a,0x95,0x85,0x8b,0x8a,0x07,0x3e,0x94, +0x5c,0x44,0xca,0x97,0x5c,0xc4,0x79,0xf5,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44, +0x02,0x49,0x41,0x01,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x4a,0xc8,0x4e,0xc6, +0x52,0xc4,0x06,0xce,0x56,0xc2,0x5a,0xc0,0x83,0x47,0x05,0x00,0x2a,0x84,0x2e,0x89, +0x85,0x8b,0xb2,0x84,0x13,0x0a,0x45,0x00,0xfd,0x59,0xa9,0xeb,0x01,0x45,0xf2,0x40, +0x62,0x44,0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x92,0x4a,0x02,0x4b,0x05,0x61, +0x82,0x80,0x58,0x54,0x89,0xa0,0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0xe0,0xe6,0x02, +0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0x1e,0xd7,0x04,0x58,0x54,0x1c,0x54,0x63,0x74, +0xf7,0x00,0x1c,0x54,0x5c,0xd4,0x23,0x28,0x04,0x02,0x71,0xf1,0x01,0xa0,0x5c,0x40, +0xdc,0x47,0x82,0x97,0x39,0xc1,0xa6,0x85,0x52,0x85,0x2d,0x33,0x18,0x58,0x5c,0x58, +0xe3,0xe1,0xe7,0xfc,0x58,0x58,0x1c,0x58,0x1d,0x8f,0x75,0xd3,0x83,0x27,0x09,0x00, +0x63,0x73,0xf7,0x00,0xba,0x87,0x23,0x20,0xf9,0x00,0x18,0x58,0x48,0x50,0x14,0x58, +0x3a,0x95,0x58,0x58,0xe3,0x61,0xd7,0xfa,0x18,0x58,0x54,0x58,0x3e,0x97,0xe3,0xef, +0xe6,0xfa,0x18,0x58,0xba,0x97,0x1c,0xd8,0x4d,0xbf,0x03,0xab,0x84,0x00,0x83,0xaa, +0xc4,0x00,0x63,0x14,0x3b,0x01,0xe3,0x8b,0x3a,0xfb,0x2d,0x34,0x98,0x40,0xdc,0x40, +0x33,0x07,0xe5,0x40,0x33,0x35,0xe5,0x00,0xb3,0x87,0xf5,0x40,0x89,0x8f,0x98,0xc8, +0xdc,0xc8,0xe3,0xcd,0x57,0xf9,0xe3,0x93,0xfa,0xf4,0xe3,0x69,0x67,0xf9,0x3d,0xbf, +0x5c,0x41,0x85,0x8b,0x8a,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf6,0xb7,0x02,0x01,0x45, +0x82,0x80,0xca,0x85,0x22,0x85,0x79,0x39,0x09,0xe9,0x5c,0x40,0x85,0x8b,0x8a,0x07, +0xa2,0x97,0x9c,0x47,0xe3,0xe7,0xf4,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44, +0x02,0x49,0x41,0x01,0x82,0x80,0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,0x06,0xc6, +0x2a,0x84,0xae,0x84,0x32,0x89,0xd1,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc3, +0x11,0x05,0x7d,0xb7,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x2e,0x86, +0x85,0x8b,0x81,0xc7,0x81,0x45,0x11,0x05,0x61,0xbf,0x13,0x05,0x30,0x10,0x82,0x80, +0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,0x06,0xc6,0x2a,0x84,0xae,0x84,0x32,0x89, +0x91,0xee,0xc1,0x32,0x22,0x85,0x22,0x44,0xb2,0x40,0x4a,0x86,0xa6,0x85,0x02,0x49, +0x92,0x44,0x41,0x01,0x17,0x03,0xc8,0xff,0x67,0x00,0x43,0x98,0x5d,0x32,0x19,0xcd, +0x4d,0x32,0x6d,0xd1,0x22,0x85,0x22,0x44,0xb2,0x40,0x4a,0x86,0xa6,0x85,0x02,0x49, +0x92,0x44,0x41,0x01,0x17,0x03,0xc8,0xff,0x67,0x00,0xc3,0x92,0xb2,0x40,0x22,0x44, +0x92,0x44,0x02,0x49,0x7d,0x55,0x41,0x01,0x82,0x80,0x85,0x67,0x01,0x11,0xfd,0x17, +0x22,0xcc,0x26,0xca,0x06,0xce,0x4a,0xc8,0x4e,0xc6,0x52,0xc4,0x56,0xc2,0x33,0x77, +0xf5,0x00,0x2a,0x84,0xae,0x84,0x01,0xc7,0x7d,0x77,0x33,0x74,0xe5,0x00,0x33,0xf7, +0xf4,0x00,0x01,0xc7,0xbe,0x94,0xfd,0x77,0xfd,0x8c,0xb7,0x09,0xce,0x3f,0x03,0xa7, +0x09,0xff,0xb3,0x07,0x94,0x00,0x54,0x43,0x63,0xfc,0xf6,0x00,0x7d,0x55,0xf2,0x40, +0x62,0x44,0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x92,0x4a,0x05,0x61,0x82,0x80, +0x5c,0x47,0xb3,0x77,0xf4,0x02,0xfd,0xf3,0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0x8f, +0x2a,0x89,0x69,0xfd,0x03,0xa7,0x09,0xff,0x5c,0x47,0x83,0x29,0x87,0x00,0xb3,0xf5, +0xf4,0x02,0x33,0xd7,0xf4,0x02,0x33,0x54,0xf4,0x02,0x93,0x04,0x17,0x00,0xb3,0xd9, +0xf9,0x02,0x91,0xe1,0xba,0x84,0x33,0x7a,0x34,0x03,0x33,0x8a,0x49,0x41,0x63,0xd3, +0x44,0x01,0x26,0x8a,0xb3,0x0a,0x8a,0x00,0xb3,0x87,0x8a,0x40,0x63,0x42,0xf0,0x02, +0xb3,0x84,0x44,0x41,0x63,0xea,0x99,0x02,0x26,0x94,0x33,0x05,0x94,0x40,0x63,0x50, +0x90,0x02,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0x88,0x09,0xe9,0xfd,0x14,0xf5,0xb7, +0x22,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0x87,0x09,0xc5,0x05,0x49,0x33,0x05, +0x20,0x41,0xb5,0xb7,0x05,0x04,0xc9,0xb7,0x33,0x55,0x34,0x03,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x80,0x86,0x65,0xf5,0x4e,0x94,0xb3,0x84,0x34,0x41,0x65,0xbf,0x79,0x71, +0x5e,0xc6,0xb7,0x4b,0xca,0x3f,0x22,0xd4,0x13,0x84,0x4b,0x14,0x62,0xc4,0x03,0x2c, +0x44,0x02,0x26,0xd2,0x4a,0xd0,0xb3,0x04,0x80,0x41,0xe9,0x8c,0x13,0x09,0xfc,0xff, +0x32,0x99,0x4e,0xce,0xb3,0x09,0x95,0x40,0x4e,0x99,0x33,0x59,0x89,0x03,0x56,0xca, +0x5a,0xc8,0xae,0x8a,0x32,0x8b,0x06,0xd6,0x52,0xcc,0x66,0xc2,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x80,0xe0,0x5c,0x54,0x18,0x58,0x93,0x8b,0x4b,0x14,0x3e,0x84,0x37,0x56, +0x0c,0x60,0x93,0x05,0x00,0x04,0x63,0x66,0xe4,0x08,0x63,0x13,0xe4,0x00,0x3e,0x84, +0x13,0x1a,0x05,0x01,0xb3,0x0c,0x89,0x00,0x13,0x5a,0x0a,0x01,0x63,0xf3,0xec,0x08, +0xb3,0xd4,0x84,0x03,0x93,0x16,0x24,0x00,0x37,0x57,0x0c,0x60,0x36,0x97,0x81,0x46, +0x63,0x1c,0xd9,0x08,0x83,0xa5,0x4b,0x02,0xb3,0x04,0xf4,0x40,0x83,0xa7,0x8b,0x02, +0xb3,0x84,0xb4,0x02,0xb3,0x05,0xb9,0x02,0xbe,0x94,0x26,0x85,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x00,0xd9,0x52,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0xda,0x5a,0x86, +0xb3,0x85,0x99,0x00,0x56,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x60,0xaf,0x97,0x00, +0xc8,0xff,0xe7,0x80,0x60,0xd8,0x37,0x57,0x0c,0x60,0x93,0x06,0x00,0x04,0x63,0x6b, +0x94,0x05,0x42,0x05,0x41,0x81,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0xd7,0x01,0x45, +0x39,0xa8,0x93,0x16,0x24,0x00,0xb2,0x96,0x94,0x42,0xe3,0x8b,0xb6,0xf6,0x05,0x04, +0x9d,0xb7,0x52,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xd5,0x05,0x45,0xb2,0x50, +0x22,0x54,0x92,0x54,0x02,0x59,0xf2,0x49,0x62,0x4a,0xd2,0x4a,0x42,0x4b,0xb2,0x4b, +0x22,0x4c,0x92,0x4c,0x45,0x61,0x82,0x80,0x33,0x86,0x96,0x00,0x10,0xc3,0x85,0x06, +0x11,0x07,0xb9,0xbf,0x93,0x17,0x24,0x00,0xba,0x97,0x94,0xc3,0x05,0x04,0x45,0xb7, +0xe1,0x72,0x39,0x71,0xc1,0x02,0x06,0xde,0x22,0xdc,0x26,0xda,0x4e,0xd6,0x52,0xd4, +0x56,0xd2,0x5a,0xd0,0x5e,0xce,0x4a,0xd8,0x16,0x91,0xaa,0x8a,0x2e,0x84,0xb2,0x89, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xde,0x37,0x45,0xca,0x3f,0x89,0x45,0x13,0x05, +0x85,0x17,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0xde,0xa1,0x67,0xb7,0x44,0xca,0x3f, +0x21,0x6b,0x8a,0x97,0x01,0x4a,0x93,0x84,0x84,0x17,0xb3,0x8b,0x67,0x41,0x0d,0xe8, +0x63,0x9e,0x09,0x04,0x93,0x05,0x80,0x0d,0x26,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80, +0x60,0xa4,0x01,0x45,0xa1,0x62,0xc1,0x12,0x16,0x91,0xf2,0x50,0x62,0x54,0xd2,0x54, +0x42,0x59,0xb2,0x59,0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x21,0x61,0x82,0x80, +0x22,0x89,0x63,0x73,0x8b,0x00,0x21,0x69,0x4a,0x86,0xde,0x85,0x33,0x05,0x5a,0x01, +0x3d,0x3d,0x05,0xe9,0x81,0x46,0x4a,0x86,0xde,0x85,0x26,0x85,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x40,0xd8,0x33,0x04,0x24,0x41,0x4a,0x9a,0x55,0xb7,0xce,0x85,0x26,0x85, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xd7,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xd5, +0x4d,0xb7,0x7d,0x55,0x45,0xb7,0x13,0x01,0x01,0xdd,0x23,0x24,0x81,0x22,0x23,0x22, +0x91,0x22,0x23,0x2e,0x31,0x21,0x23,0x2a,0x51,0x21,0x23,0x28,0x61,0x21,0x23,0x26, +0x71,0x21,0x23,0x26,0x11,0x22,0x23,0x20,0x21,0x23,0x23,0x2c,0x41,0x21,0x2a,0x84, +0xb3,0x04,0xa6,0x00,0xb3,0x09,0xb5,0x00,0x85,0x4a,0x13,0x0b,0x00,0x20,0x93,0x0b, +0xf0,0x0f,0x63,0x68,0x34,0x03,0x01,0x45,0x83,0x20,0xc1,0x22,0x03,0x24,0x81,0x22, +0x83,0x24,0x41,0x22,0x03,0x29,0x01,0x22,0x83,0x29,0xc1,0x21,0x03,0x2a,0x81,0x21, +0x83,0x2a,0x41,0x21,0x03,0x2b,0x01,0x21,0x83,0x2b,0xc1,0x20,0x13,0x01,0x01,0x23, +0x82,0x80,0x13,0x19,0xc4,0x00,0x05,0x6a,0x23,0x80,0x54,0x01,0x4a,0x9a,0x13,0x06, +0x00,0x20,0x8a,0x85,0x4a,0x85,0x61,0x33,0x1d,0xe5,0xb3,0x07,0xa1,0x00,0x83,0xc7, +0x07,0x00,0x63,0x87,0x77,0x01,0x23,0x80,0x04,0x00,0x05,0x04,0x85,0x04,0x55,0xb7, +0x05,0x05,0xe3,0x14,0x65,0xff,0x83,0xc7,0x04,0x00,0xe5,0xdb,0x13,0x09,0x09,0x20, +0xe3,0x17,0x49,0xfd,0xdd,0xb7,0x7d,0x55,0x41,0xbf,0x5d,0x71,0x4e,0xde,0x61,0x46, +0xae,0x89,0x2c,0x00,0xa2,0xc4,0x86,0xc6,0xa6,0xc2,0xca,0xc0,0x52,0xdc,0x56,0xda, +0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x66,0xd2,0x2a,0x84,0x15,0x3b,0x21,0xe1,0x03,0x47, +0x81,0x00,0x93,0x07,0x90,0x0e,0x61,0x59,0x63,0x1b,0xf7,0x02,0x2a,0x89,0x61,0x04, +0x01,0x4a,0x81,0x44,0x37,0x0b,0x00,0xbe,0xb7,0x0a,0x40,0x00,0x85,0x4b,0x31,0x4c, +0xb7,0x0c,0x00,0xc4,0x83,0x47,0x91,0x00,0x63,0x45,0xfa,0x00,0x23,0xa0,0x99,0x00, +0x39,0xa0,0x21,0x46,0x8a,0x85,0x22,0x85,0xdd,0x39,0x05,0xc1,0x7d,0x59,0xb6,0x40, +0x26,0x44,0x96,0x44,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c, +0x92,0x5c,0x4a,0x85,0x06,0x49,0x61,0x61,0x82,0x80,0x02,0x47,0xb3,0x07,0x67,0x01, +0x63,0xe6,0x57,0x01,0xb3,0x07,0x97,0x01,0x63,0xf0,0x57,0x03,0xe3,0xe0,0x9b,0xfc, +0xb3,0x87,0x84,0x03,0x85,0x04,0x93,0x06,0x84,0x00,0xc2,0x04,0xc1,0x80,0xce,0x97, +0x98,0xc7,0x12,0x47,0xd4,0xc3,0xd8,0xc7,0x92,0x47,0x05,0x0a,0xa1,0x07,0x3e,0x94, +0x51,0xbf,0x41,0x11,0x26,0xc2,0xb7,0x44,0xca,0x3f,0x93,0x84,0x44,0x14,0x22,0xc4, +0x13,0x84,0xc4,0x00,0x61,0x46,0x81,0x45,0x22,0x85,0x06,0xc6,0x97,0x00,0xc8,0xff, +0xe7,0x80,0xc0,0x82,0xb7,0x47,0xca,0x3f,0x93,0x87,0x07,0x00,0xdc,0xc8,0x93,0x87, +0x47,0x02,0x9c,0xcc,0x05,0x47,0xb7,0x47,0xca,0x3f,0x23,0x86,0xe7,0x26,0x93,0x84, +0x44,0x02,0x1c,0x40,0x91,0xeb,0x21,0x04,0xe3,0x9d,0x84,0xfe,0x01,0x45,0xb2,0x40, +0x22,0x44,0x92,0x44,0x41,0x01,0x82,0x80,0x9c,0x43,0x48,0x40,0x82,0x97,0x65,0xd5, +0xfd,0xb7,0x41,0x11,0x06,0xc6,0x71,0x3f,0x09,0xed,0xb7,0x47,0xca,0x3f,0x03,0xa7, +0xc7,0x27,0xb7,0x06,0x80,0x00,0x1c,0x43,0xd5,0x8f,0x1c,0xc3,0xb2,0x40,0x41,0x01, +0x82,0x80,0x7d,0x55,0xe5,0xbf,0xa1,0x66,0x39,0x71,0xe1,0x72,0xe1,0x77,0xc1,0x06, +0x4a,0xd8,0x56,0xd2,0x5a,0xd0,0x06,0xde,0x22,0xdc,0x26,0xda,0x4e,0xd6,0x52,0xd4, +0x5e,0xce,0xbe,0x96,0x16,0x91,0xb3,0x87,0x26,0x00,0x37,0x47,0xca,0x3f,0x23,0x2c, +0xf7,0x26,0xb7,0x47,0xca,0x3f,0x21,0x67,0xaa,0x8a,0x2e,0x8b,0x23,0xaa,0xe7,0x26, +0x4d,0x37,0x2a,0x89,0x11,0xe5,0x91,0x6b,0x81,0x44,0xf9,0x1b,0x63,0xe0,0x64,0x03, +0xa1,0x62,0x16,0x91,0xf2,0x50,0x4a,0x85,0x62,0x54,0xd2,0x54,0x42,0x59,0xb2,0x59, +0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x21,0x61,0x82,0x80,0x33,0x04,0x9b,0x40, +0xa2,0x89,0x63,0xfc,0x8b,0x02,0x13,0xf4,0xcb,0xff,0x22,0x85,0xef,0xf0,0x8f,0xd6, +0x2a,0x8a,0x15,0xc1,0xaa,0x85,0x22,0x86,0x33,0x85,0x54,0x01,0x49,0x3e,0xaa,0x89, +0x52,0x85,0xef,0xf0,0x6f,0xd9,0xb3,0xe9,0xa9,0x00,0x63,0x96,0x09,0x00,0xa2,0x94, +0xef,0xf0,0x2f,0xdd,0x45,0xd5,0x7d,0x59,0x65,0xb7,0x93,0x77,0x34,0x00,0xf1,0xd7, +0x71,0x98,0x61,0xf4,0x8d,0x47,0xe3,0xe8,0x37,0xff,0x61,0x74,0xa1,0x67,0x71,0x14, +0xc1,0x07,0xa2,0x97,0x33,0x84,0x27,0x00,0x11,0x46,0xa2,0x85,0x33,0x85,0x54,0x01, +0xb9,0x36,0x71,0xf9,0x4e,0x85,0xef,0xf0,0xef,0xd0,0xaa,0x84,0x69,0xd5,0x4e,0x86, +0xa2,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xa0,0x6e,0x26,0x85,0xef,0xf0,0xcf,0xd3, +0x5d,0xf9,0xef,0xf0,0x0f,0xd8,0x29,0xdd,0x7d,0xb7,0x1c,0x4d,0x5d,0x71,0x66,0xd2, +0x85,0x8b,0xb7,0x4c,0xca,0x3f,0xc1,0x66,0xc1,0x72,0x23,0xa8,0xfc,0x26,0xc1,0x06, +0xe1,0x77,0xca,0xc0,0x4e,0xde,0x86,0xc6,0xa2,0xc4,0xa6,0xc2,0x52,0xdc,0x56,0xda, +0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x6a,0xd0,0x6e,0xce,0xbe,0x96,0x16,0x91,0xb3,0x87, +0x26,0x00,0x37,0x47,0xca,0x3f,0x23,0x2c,0xf7,0x26,0xb7,0x47,0xca,0x3f,0x21,0x67, +0x2a,0x89,0x23,0xaa,0xe7,0x26,0x71,0x3d,0xaa,0x89,0x63,0x1e,0x05,0x0e,0xb7,0x47, +0xca,0x3f,0x83,0xc7,0xc7,0x26,0x99,0xc7,0x83,0x25,0xc9,0x00,0x03,0x25,0x89,0x00, +0xef,0xf0,0x2f,0xb8,0x03,0x27,0x09,0x00,0x37,0x44,0xca,0x3f,0x93,0x07,0x44,0x14, +0x93,0x87,0x07,0x10,0xd8,0xc7,0x03,0x27,0x09,0x01,0x41,0x7a,0x71,0x1a,0x98,0xcb, +0x18,0x08,0xd8,0xcf,0x98,0xd3,0xc1,0x67,0xc1,0x07,0xd2,0x97,0x01,0x4b,0x13,0x04, +0x44,0x14,0x33,0x8a,0x27,0x00,0xa1,0x6b,0x83,0x27,0x49,0x00,0x63,0x75,0xfb,0x0a, +0xb3,0x87,0x67,0x41,0x52,0x85,0x3e,0xc6,0xef,0xf0,0xcf,0xba,0xaa,0x8a,0x59,0xc9, +0xb2,0x4d,0x2a,0x8c,0x63,0x85,0x0d,0x00,0x83,0x27,0x04,0x11,0x99,0xe3,0x81,0x44, +0x95,0xa8,0x03,0x25,0x04,0x12,0x83,0x24,0xc4,0x11,0x6e,0x8d,0xb3,0x04,0x95,0x40, +0xb3,0x87,0xb4,0x01,0x63,0xf4,0xfb,0x00,0x33,0x8d,0x9b,0x40,0xe2,0x85,0x6a,0x86, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0x5e,0x83,0x27,0x04,0x12,0xea,0x94,0xb3,0x8d, +0xad,0x41,0xea,0x97,0x23,0x20,0xf4,0x12,0x83,0x27,0x04,0x11,0x6a,0x9c,0x63,0x84, +0xf4,0x00,0xe3,0x99,0x74,0xfb,0x83,0xa6,0x0c,0x27,0x83,0x25,0xc4,0x11,0x03,0x25, +0xc4,0x10,0xb3,0x36,0xd0,0x00,0x26,0x86,0x65,0x38,0x01,0xed,0x93,0x07,0x04,0x10, +0xd8,0x47,0x26,0x97,0xd8,0xc7,0x98,0x4b,0x05,0x8f,0x98,0xcb,0xd8,0x4f,0x98,0xd3, +0x51,0xb7,0xfd,0x54,0x56,0x85,0xef,0xf0,0x2f,0xb6,0x09,0xe5,0x9d,0xe4,0xb2,0x47, +0x3e,0x9b,0x99,0xbf,0xfd,0x59,0xc1,0x62,0x16,0x91,0xb6,0x40,0x4e,0x85,0x26,0x44, +0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c, +0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61,0x82,0x80,0xf5,0x59,0xe9,0xbf,0x1c,0x4d, +0x5d,0x71,0xb5,0x72,0x66,0xd2,0x93,0x82,0x02,0x50,0x85,0x8b,0xb7,0x4c,0xca,0x3f, +0xcd,0x66,0xca,0xc0,0x6a,0xd0,0x86,0xc6,0xa2,0xc4,0xa6,0xc2,0x4e,0xde,0x52,0xdc, +0x56,0xda,0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x6e,0xce,0x23,0xa8,0xfc,0x26,0x16,0x91, +0xe1,0x77,0x93,0x86,0x06,0xb0,0xbe,0x96,0x1c,0x08,0xb6,0x97,0x37,0x47,0xca,0x3f, +0x23,0x2c,0xf7,0x26,0xb7,0x47,0xca,0x3f,0x21,0x67,0x2a,0x8d,0x23,0xaa,0xe7,0x26, +0x0d,0x33,0x2a,0x89,0x63,0x10,0x05,0x18,0xb7,0x47,0xca,0x3f,0x83,0xc7,0xc7,0x26, +0x99,0xc7,0x83,0x25,0xcd,0x00,0x03,0x25,0x8d,0x00,0xef,0xf0,0x8f,0xa0,0x03,0x27, +0x0d,0x00,0xb7,0x44,0xca,0x3f,0x93,0x87,0x44,0x14,0x93,0x87,0x07,0x10,0xd8,0xc7, +0x03,0x27,0x0d,0x01,0x4d,0x66,0xb5,0x76,0x98,0xcb,0x03,0x27,0x4d,0x00,0x93,0x05, +0x06,0xb0,0xb5,0x7a,0xd8,0xcb,0x13,0x87,0x06,0x51,0xba,0x95,0x18,0x08,0x2e,0x97, +0x98,0xcf,0x93,0x05,0x06,0xb0,0x41,0x77,0xba,0x95,0x18,0x08,0x2e,0x97,0xd8,0xcf, +0x98,0xd3,0x13,0x07,0x06,0xb0,0x36,0x97,0x14,0x08,0x36,0x97,0x3a,0xc0,0x23,0x28, +0x07,0x50,0x13,0x8b,0xca,0x50,0x13,0x07,0x06,0xb0,0x93,0x8b,0x8a,0x50,0x93,0x07, +0x06,0xb0,0x5a,0x97,0xde,0x97,0x36,0x97,0xb6,0x97,0x01,0x4a,0x93,0x84,0x44,0x14, +0x3a,0xc4,0x3e,0xc6,0x83,0x27,0x4d,0x00,0x63,0x76,0xfa,0x0e,0x02,0x47,0xb3,0x87, +0x47,0x41,0x13,0x85,0x4a,0x50,0x23,0x22,0xf7,0x50,0xcd,0x67,0x93,0x87,0x07,0xb0, +0xaa,0x97,0x18,0x08,0x33,0x85,0xe7,0x00,0xef,0xf0,0xcf,0x9d,0x2a,0xc2,0x63,0x0d, +0x05,0x10,0x82,0x47,0x2a,0x8c,0x05,0x4b,0x83,0xab,0x47,0x50,0xa1,0x69,0x63,0x8f, +0x0b,0x06,0x03,0xa7,0x04,0x11,0x3d,0xcb,0x63,0x55,0x60,0x0b,0x82,0x47,0x83,0xa6, +0xc4,0x11,0x03,0xa7,0x04,0x12,0x13,0x84,0x07,0x50,0x03,0xa8,0x44,0x11,0xb3,0x87, +0x36,0x01,0x99,0x8f,0x5c,0xc4,0x32,0x46,0xa2,0x47,0x03,0xa5,0x84,0x11,0x33,0xb8, +0x0b,0x01,0xe2,0x85,0x06,0x08,0x23,0x24,0x74,0x01,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0x20,0x06,0x18,0x44,0x83,0xa6,0x44,0x11,0x83,0xa7,0x04,0x12,0xb3,0x8b,0xeb,0x40, +0x99,0x8e,0x3a,0x9c,0x58,0x44,0x83,0xa5,0xc4,0x11,0x23,0xaa,0xd4,0x10,0x33,0x84, +0xe7,0x00,0x23,0xa0,0x84,0x12,0x2a,0x8b,0x0d,0x8c,0x63,0x59,0xa0,0x02,0x63,0x07, +0x34,0x03,0x63,0x85,0x0b,0x00,0x03,0xa7,0x04,0x11,0x49,0xfb,0x63,0x4b,0x0b,0x02, +0x03,0xa7,0x04,0x11,0x63,0x10,0x0b,0x08,0x0d,0xe7,0x12,0x45,0xef,0xf0,0xcf,0x97, +0x25,0xed,0x82,0x47,0x83,0xa7,0x47,0x50,0x3e,0x9a,0x2d,0xb7,0x03,0xa7,0x04,0x11, +0x3a,0x86,0x63,0x73,0xe4,0x00,0x22,0x86,0x39,0xc2,0x63,0x79,0x36,0x03,0x63,0x77, +0xe4,0x02,0x75,0x59,0xcd,0x62,0x93,0x82,0x02,0xb0,0x16,0x91,0xb6,0x40,0x4a,0x85, +0x26,0x44,0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b, +0x22,0x5c,0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61,0x82,0x80,0x83,0xa6,0x0c,0x27, +0x03,0xa5,0xc4,0x10,0xb3,0x36,0xd0,0x00,0xef,0xf0,0x8f,0xe5,0x79,0xf1,0x13,0x87, +0x04,0x10,0x54,0x47,0xa2,0x96,0x54,0xc7,0x14,0x4b,0x81,0x8e,0x14,0xcb,0x54,0x4f, +0x14,0xd3,0xf5,0xbd,0x59,0xf3,0x75,0xb7,0x7d,0x59,0x6d,0xb7,0x59,0x71,0xba,0xd0, +0xbe,0xd2,0x37,0x47,0xca,0x3f,0xb7,0x47,0xca,0x3f,0x5a,0xd8,0x86,0xc6,0xa2,0xc4, +0xa6,0xc2,0xca,0xc0,0x4e,0xde,0x52,0xdc,0x56,0xda,0x2a,0x8b,0xae,0xca,0xb2,0xcc, +0xb6,0xce,0xc2,0xd4,0xc6,0xd6,0x93,0x87,0x47,0x14,0x13,0x07,0x07,0x28,0x63,0xef, +0xe7,0x08,0xdc,0x08,0x3e,0xc6,0x2d,0x47,0x79,0x54,0x63,0x4d,0x67,0x13,0xb7,0x47, +0x0c,0x60,0x98,0x43,0xdc,0x43,0xd6,0x44,0x05,0x8b,0x66,0x49,0xf6,0x49,0x19,0xc3, +0x89,0x8b,0xb9,0xcf,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0x56,0xb7,0x07,0x0c,0x60, +0xb8,0x43,0x37,0x44,0x0c,0x60,0x13,0x67,0x17,0x00,0xb8,0xc3,0xb8,0x43,0x13,0x67, +0x27,0x00,0xb8,0xc3,0xb8,0x43,0x75,0x9b,0xb8,0xc3,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0x60,0x56,0x13,0x07,0x84,0x0c,0x1c,0x43,0x9d,0x9b,0x93,0xe7,0x07,0x01,0x1c,0xc3, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x55,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x4f, +0x01,0x45,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0x51,0x5c,0x40,0xf5,0x9b,0x5c,0xc0, +0xb7,0x47,0x0c,0x60,0x83,0xa7,0x87,0x0c,0x8d,0x83,0x8d,0x8b,0x81,0xcf,0x05,0x47, +0xa1,0x66,0x63,0x8b,0xe7,0x00,0x89,0x47,0xc1,0x66,0x39,0xa0,0x23,0xa0,0x07,0x00, +0x91,0x07,0xb1,0xbf,0x8d,0x47,0x91,0x66,0x37,0x47,0xca,0x3f,0x13,0x07,0x47,0x14, +0x5c,0xd7,0xb3,0x87,0xd7,0x02,0x54,0xd3,0xb7,0x06,0x00,0x3c,0x13,0x06,0x00,0x04, +0x10,0xdb,0xb6,0x97,0x1c,0xd7,0xb7,0x07,0x0c,0x60,0x98,0x4b,0xb7,0x06,0x00,0x20, +0x75,0x8f,0x11,0xeb,0x98,0x4b,0x55,0x8f,0x98,0xcb,0x98,0x4f,0xb7,0x06,0x00,0xe0, +0xfd,0x16,0x75,0x8f,0x98,0xcf,0xb7,0x3a,0x02,0x60,0x93,0x87,0x0a,0x00,0x98,0x43, +0x37,0x4a,0xca,0x3f,0xb7,0x06,0x00,0x80,0x23,0x24,0xea,0x26,0x98,0x43,0x81,0x45, +0x01,0x45,0x55,0x8f,0x98,0xc3,0x98,0x43,0xb7,0x06,0x00,0x40,0x93,0x8a,0x0a,0x00, +0x55,0x8f,0x98,0xc3,0x98,0x43,0xb7,0x06,0x00,0xf0,0xfd,0x16,0x75,0x8f,0x98,0xc3, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0xec,0xef,0xe0,0x9f,0xe3,0xaa,0x85,0x15,0xe5, +0x13,0x04,0xcb,0xff,0x33,0x34,0x80,0x00,0x33,0x04,0x80,0x40,0x83,0x27,0x8a,0x26, +0x23,0xa0,0xfa,0x00,0xb6,0x40,0x22,0x85,0x26,0x44,0x96,0x44,0x06,0x49,0xf2,0x59, +0x62,0x5a,0xd2,0x5a,0x42,0x5b,0x65,0x61,0x82,0x80,0x91,0x47,0x2a,0x84,0xe3,0x0f, +0xfb,0xfc,0xb7,0x07,0xce,0x3f,0x03,0xa5,0x07,0xff,0xc1,0x67,0xfd,0x17,0x08,0x41, +0x13,0x07,0x00,0x10,0x85,0x66,0x41,0x66,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0xe4, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xe3,0x19,0xc1,0x7d,0x54,0x45,0xbf,0xad,0x47, +0x63,0xe6,0x67,0x1b,0xb7,0x47,0xca,0x3f,0x93,0x87,0xc7,0x06,0x13,0x15,0x2b,0x00, +0x3e,0x95,0x1c,0x41,0x82,0x87,0xca,0x85,0x26,0x85,0x71,0x32,0x2a,0x84,0x79,0xb7, +0xca,0x85,0x26,0x85,0xef,0xf0,0x6f,0xca,0xd5,0xbf,0x4e,0x86,0xca,0x85,0x26,0x85, +0xef,0xf0,0x6f,0xf8,0xe5,0xb7,0x26,0x85,0x8d,0x34,0xcd,0xb7,0x26,0x85,0xc1,0x3e, +0xf1,0xbf,0x4e,0x86,0xca,0x85,0x26,0x85,0xef,0xf0,0x8f,0xea,0xc1,0xbf,0xef,0xe0, +0x3f,0xd8,0xfd,0x57,0x23,0x20,0x09,0x00,0x2a,0x84,0xa1,0x69,0x63,0x9e,0xf4,0x02, +0x95,0x64,0x93,0x84,0xa4,0x0a,0x13,0x06,0x00,0x02,0x0c,0x08,0x4e,0x85,0xef,0xf0, +0x0f,0xd5,0x41,0xf5,0x83,0x57,0x01,0x01,0x63,0x95,0x97,0x02,0x52,0x45,0x63,0x64, +0xa4,0x02,0xe2,0x47,0xaa,0x97,0x63,0x60,0xf4,0x02,0x83,0x47,0x21,0x01,0x93,0x89, +0x09,0x02,0xf1,0xfb,0xca,0x85,0x19,0xa0,0xca,0x85,0x26,0x85,0xef,0xf0,0xef,0xfc, +0xb5,0xbf,0x69,0x54,0x21,0xb7,0x65,0x54,0x11,0xb7,0x7d,0x7b,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x40,0x34,0x33,0xfb,0x64,0x01,0x09,0x66,0xce,0x85,0x5a,0x85,0xef,0xf0, +0x0f,0xd0,0x19,0xc1,0x01,0x44,0xdd,0xb5,0x13,0x94,0x44,0x01,0x51,0x80,0x4e,0x94, +0xa2,0x85,0x09,0x46,0x4a,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x60,0x09,0x89,0x45, +0x26,0x85,0xef,0xf0,0x8f,0xbe,0x79,0xfd,0x89,0x47,0x23,0x00,0xf4,0x00,0x93,0x07, +0x00,0xf9,0xa3,0x00,0xf4,0x00,0xef,0xe0,0xdf,0xd4,0xb3,0x36,0xa0,0x00,0x09,0x66, +0xce,0x85,0x5a,0x85,0xef,0xf0,0xcf,0xb6,0x55,0xfd,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0x60,0x2e,0x09,0x44,0x61,0xbd,0x7d,0x7b,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x80,0x2d, +0x33,0xfb,0x64,0x01,0x09,0x66,0xce,0x85,0x5a,0x85,0xef,0xf0,0x4f,0xc9,0xe3,0x16, +0x05,0xec,0x89,0x45,0x26,0x85,0xef,0xf0,0x4f,0xb9,0x2a,0x84,0xe3,0x1f,0x05,0xea, +0x83,0x47,0x09,0x00,0xd2,0x04,0xd1,0x80,0xce,0x94,0x23,0x80,0xf4,0x00,0x83,0x47, +0x19,0x00,0xa3,0x80,0xf4,0x00,0xef,0xe0,0xdf,0xce,0xb3,0x36,0xa0,0x00,0x09,0x66, +0xce,0x85,0x5a,0x85,0xef,0xf0,0xcf,0xb0,0xe3,0x19,0x05,0xe8,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x40,0x28,0x25,0xbd,0xfd,0x57,0x26,0x84,0x63,0x9b,0xf4,0x00,0x37,0x07, +0x0c,0x60,0x3c,0x4f,0x93,0xf7,0xf7,0x3f,0x93,0xe7,0x07,0x40,0x3c,0xcf,0xb5,0xb5, +0xb7,0x06,0x0c,0x60,0xbc,0x4e,0x7d,0x77,0x13,0x07,0xf7,0x3f,0xf9,0x8f,0x05,0x67, +0x13,0x07,0x07,0xc0,0x65,0x8f,0xd9,0x8f,0xbc,0xce,0x09,0xb5,0x79,0x54,0xfd,0xbb, diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code_wlog.inc b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code_wlog.inc new file mode 100644 index 0000000000..8bef44974d --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_code_wlog.inc @@ -0,0 +1,620 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc7,0x83,0xd7,0xc5,0xff,0x01,0x45,0x23,0x9f, +0xf5,0xfe,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b, +0x81,0xcb,0x50,0xd5,0x10,0xd5,0x23,0x28,0x05,0x02,0x4c,0xd1,0x23,0x2a,0x05,0x02, +0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xe7,0x13,0x05,0x30,0x10,0x82,0x80, +0x01,0x45,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xcb,0xb7,0x57,0xca,0x3f, +0x03,0xa5,0x47,0x1f,0x5d,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0xb7,0x57, +0xca,0x3f,0x23,0xac,0x07,0x1e,0x82,0x80,0xb7,0x57,0xca,0x3f,0x37,0x07,0x38,0x40, +0x93,0x87,0x47,0x1f,0x13,0x07,0x67,0x06,0xd8,0xc3,0x98,0x43,0xb7,0x07,0x80,0x00, +0xf9,0x8f,0x9d,0xc3,0x93,0x57,0xf7,0x00,0xa9,0x8f,0x46,0x07,0x93,0xf7,0xf7,0x07, +0x45,0x83,0xd9,0x8f,0x01,0x45,0x99,0xcb,0x41,0x11,0x06,0xc6,0xc9,0x37,0xb2,0x40, +0x13,0x05,0x10,0x10,0x41,0x01,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x37,0x57, +0xca,0x3f,0x13,0x07,0x47,0x1f,0x14,0x43,0xb7,0x07,0x80,0x00,0xc6,0x05,0xf5,0x8f, +0xc5,0x81,0xb7,0x86,0x3f,0x00,0x3e,0x05,0x41,0x11,0x75,0x8d,0xcd,0x8f,0x06,0xc6, +0xc9,0x8f,0x1c,0xc3,0x69,0x37,0xb2,0x40,0x01,0x45,0x41,0x01,0x82,0x80,0x01,0x45, +0x82,0x80,0xb7,0x57,0xca,0x3f,0x03,0xa5,0x47,0x1f,0x59,0x81,0x05,0x89,0x82,0x80, +0x37,0x57,0xca,0x3f,0x13,0x07,0x87,0x31,0x1c,0x43,0xb3,0x06,0xf7,0x00,0x85,0x07, +0xd2,0x07,0xd1,0x83,0x23,0x82,0xa6,0x00,0x1c,0xc3,0x82,0x80,0xb7,0x37,0x02,0x60, +0x93,0x86,0x07,0x00,0x98,0x46,0x37,0x06,0x00,0x40,0x93,0x87,0x07,0x00,0x51,0x8f, +0x98,0xc6,0x98,0x47,0x75,0x83,0x05,0x8b,0x6d,0xdf,0xf8,0x47,0xb7,0x06,0x10,0x00, +0xfd,0x16,0xac,0x47,0x3a,0x86,0xf8,0x47,0xf5,0x8d,0xe3,0x1c,0xe6,0xfe,0x13,0x95, +0xc5,0x01,0x11,0x83,0x59,0x8d,0x91,0x81,0x82,0x80,0x01,0x11,0x22,0xcc,0x37,0x54, +0xca,0x3f,0x93,0x07,0x44,0x1f,0xdc,0x4b,0x26,0xca,0x06,0xce,0xaa,0x84,0x2e,0x86, +0x13,0x04,0x44,0x1f,0x81,0xcb,0xdc,0x4b,0x91,0xc7,0x2e,0xc6,0xaa,0x85,0x08,0x4c, +0x82,0x97,0x32,0x46,0x5c,0x4c,0x91,0xcb,0xdc,0x4b,0x81,0xcb,0x08,0x50,0x62,0x44, +0xf2,0x40,0xa6,0x85,0xd2,0x44,0x05,0x61,0x82,0x87,0xf2,0x40,0x62,0x44,0xd2,0x44, +0x05,0x61,0x82,0x80,0x41,0x11,0x22,0xc4,0x06,0xc6,0x2a,0x84,0x85,0x3f,0xfd,0x57, +0x5c,0xc4,0x7d,0x57,0x81,0x47,0x01,0x48,0xb2,0x40,0x08,0xc0,0x4c,0xc0,0x18,0xc4, +0x1c,0xc8,0x23,0x2a,0x04,0x01,0x22,0x44,0x41,0x01,0x82,0x80,0x1c,0x41,0x39,0x71, +0x2a,0xc6,0x06,0xde,0x22,0xdc,0x26,0xda,0x01,0x45,0x95,0xc7,0xb7,0x67,0xca,0x3f, +0x83,0xc7,0x07,0x32,0x01,0x45,0x85,0xc3,0x37,0x54,0xca,0x3f,0x13,0x04,0x44,0x1f, +0x48,0x48,0x11,0xc9,0x04,0x4d,0x01,0x45,0x99,0xc4,0x28,0x08,0x65,0x37,0xb2,0x45, +0x08,0x4c,0x30,0x08,0x82,0x94,0xf2,0x50,0x62,0x54,0xd2,0x54,0x21,0x61,0x82,0x80, +0x39,0x71,0x06,0xde,0x22,0xdc,0x26,0xda,0x2a,0xc6,0x15,0xcd,0xb7,0x67,0xca,0x3f, +0x83,0xc7,0x07,0x32,0x13,0x05,0x30,0x10,0x95,0xc3,0x37,0x54,0xca,0x3f,0x13,0x04, +0x44,0x1f,0x44,0x48,0x13,0x05,0x60,0x10,0x91,0xc8,0x9c,0x4c,0x81,0xcb,0x28,0x08, +0x95,0x37,0xdc,0x4c,0xb2,0x45,0x08,0x4c,0x30,0x08,0x82,0x97,0xf2,0x50,0x62,0x54, +0xd2,0x54,0x21,0x61,0x82,0x80,0x13,0x05,0x20,0x10,0xcd,0xbf,0x39,0x71,0x06,0xde, +0x22,0xdc,0x26,0xda,0x2a,0xc6,0x1d,0xc9,0xb7,0x67,0xca,0x3f,0x83,0xc7,0x07,0x32, +0x01,0x45,0x85,0xc3,0x37,0x54,0xca,0x3f,0x13,0x04,0x44,0x1f,0x48,0x48,0x11,0xc9, +0x44,0x41,0x01,0x45,0x99,0xc4,0x28,0x08,0x31,0x3f,0xb2,0x45,0x08,0x4c,0x30,0x08, +0x82,0x94,0xf2,0x50,0x62,0x54,0xd2,0x54,0x21,0x61,0x82,0x80,0x01,0x45,0xd5,0xbf, +0x39,0x71,0x06,0xde,0x22,0xdc,0x26,0xda,0x2a,0xc6,0x0d,0xcd,0xb7,0x67,0xca,0x3f, +0x83,0xc7,0x07,0x32,0x13,0x05,0x30,0x10,0x8d,0xc3,0x37,0x54,0xca,0x3f,0x13,0x04, +0x44,0x1f,0x5c,0x48,0x13,0x05,0x60,0x10,0x89,0xcb,0x84,0x47,0x99,0xc4,0x28,0x08, +0xd1,0x3d,0xb2,0x45,0x08,0x4c,0x30,0x08,0x82,0x94,0xf2,0x50,0x62,0x54,0xd2,0x54, +0x21,0x61,0x82,0x80,0x13,0x05,0x20,0x10,0xcd,0xbf,0xb7,0x67,0xca,0x3f,0x83,0xc7, +0x07,0x32,0x13,0x05,0x30,0x10,0x8d,0xcb,0x79,0x71,0x22,0xd4,0x37,0x54,0xca,0x3f, +0x13,0x04,0x44,0x1f,0x5c,0x48,0x06,0xd6,0x26,0xd2,0x13,0x05,0x60,0x10,0x81,0xcb, +0x84,0x4b,0x91,0xc4,0x28,0x00,0x79,0x35,0x08,0x4c,0x2c,0x00,0x82,0x94,0xb2,0x50, +0x22,0x54,0x92,0x54,0x45,0x61,0x82,0x80,0x82,0x80,0x03,0x47,0x05,0x00,0x1d,0xef, +0xb7,0x67,0xca,0x3f,0x23,0x26,0x05,0x02,0x83,0xa6,0xc7,0x32,0xb7,0x67,0xca,0x3f, +0x23,0x24,0x05,0x02,0x83,0xa7,0x87,0x32,0x23,0x28,0x05,0x02,0x23,0x2a,0x05,0x02, +0x85,0x83,0x23,0x26,0x05,0x00,0x54,0xc9,0x23,0x28,0x05,0x00,0xbe,0x96,0x23,0x22, +0x05,0x02,0x1c,0xcd,0x54,0xcd,0x1c,0xd1,0x23,0x24,0x05,0x00,0x13,0x67,0x17,0x00, +0xb7,0x57,0xca,0x3f,0x23,0x00,0xe5,0x00,0x93,0x87,0x47,0x1f,0x51,0x05,0x37,0x67, +0xca,0x3f,0x88,0xc7,0x23,0x28,0xf7,0x32,0x01,0x45,0x82,0x80,0x41,0x11,0x4a,0xc0, +0x37,0x69,0xca,0x3f,0x83,0x27,0x49,0x33,0x22,0xc4,0x06,0xc6,0x26,0xc2,0x0d,0x44, +0x63,0x75,0xf4,0x04,0xb7,0x55,0xca,0x3f,0x37,0x45,0xca,0x3f,0x93,0x85,0x45,0xf3, +0x13,0x05,0xc5,0x06,0x97,0x00,0xc8,0xff,0xe7,0x80,0x00,0xc9,0x83,0x27,0x49,0x33, +0x63,0x75,0xf4,0x02,0xb7,0x07,0xce,0x3f,0x83,0xa5,0x07,0xff,0x37,0x45,0xca,0x3f, +0x13,0x05,0x05,0x08,0x03,0xa8,0x45,0x01,0x9c,0x49,0xd8,0x45,0x94,0x45,0xd0,0x41, +0x8c,0x41,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0xc6,0xb7,0x27,0x00,0x60,0x23,0xac, +0x07,0x04,0x37,0x07,0x00,0x10,0x98,0xc3,0x84,0x43,0xfd,0xfc,0xa0,0x4f,0x03,0x27, +0x49,0x33,0x8d,0x47,0x22,0x04,0x21,0x80,0x63,0xfb,0xe7,0x00,0x37,0x45,0xca,0x3f, +0xa2,0x85,0x13,0x05,0x85,0x0b,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0xc2,0x93,0x55, +0x04,0x01,0x93,0x87,0xe5,0xfe,0x13,0x07,0x70,0x02,0x63,0x6a,0xf7,0x00,0x13,0x97, +0x27,0x00,0xb7,0x57,0xca,0x3f,0x93,0x87,0x47,0xf3,0xba,0x97,0xc4,0x4b,0x03,0x27, +0x49,0x33,0x8d,0x47,0x63,0xfc,0xe7,0x00,0x37,0x45,0xca,0x3f,0x13,0xd6,0xa4,0x00, +0x13,0x05,0x45,0x0d,0x97,0x00,0xc8,0xff,0xe7,0x80,0x00,0xbf,0xb2,0x40,0x22,0x44, +0x02,0x49,0x26,0x85,0x92,0x44,0x41,0x01,0x82,0x80,0xb7,0x56,0xca,0x3f,0x83,0xc7, +0xc6,0x1e,0xad,0xc3,0xb7,0x97,0x00,0x60,0x83,0xa7,0x07,0x83,0x01,0x47,0x9d,0x83, +0x9d,0x8b,0xb1,0xe3,0xb7,0x57,0xca,0x3f,0x19,0xe3,0x23,0xa4,0x07,0x1e,0x83,0xa5, +0x87,0x1e,0xb7,0x67,0xca,0x3f,0x03,0xa7,0x47,0x33,0x23,0x86,0x06,0x1e,0x8d,0x47, +0x63,0xfa,0xe7,0x02,0x37,0x45,0xca,0x3f,0x41,0x11,0x13,0x05,0x85,0x0f,0x06,0xc6, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xb9,0xb2,0x40,0xb7,0x57,0xca,0x3f,0x03,0xa5, +0x87,0x1e,0x41,0x01,0x82,0x80,0x13,0xf6,0x17,0x00,0x19,0xc2,0x13,0x47,0x17,0x00, +0x85,0x83,0x45,0xbf,0xb7,0x57,0xca,0x3f,0x03,0xa5,0x87,0x1e,0x82,0x80,0xb7,0x67, +0xca,0x3f,0x03,0xa7,0x47,0x33,0x41,0x11,0x22,0xc4,0x06,0xc6,0x8d,0x47,0x2a,0x84, +0x63,0xfc,0xe7,0x00,0x2a,0x86,0x37,0x45,0xca,0x3f,0xa1,0x65,0x13,0x05,0xc5,0x11, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xb4,0xb7,0x67,0xca,0x3f,0x23,0xa6,0x87,0x32, +0xb2,0x40,0x22,0x44,0xb7,0x67,0xca,0x3f,0x21,0x67,0x23,0xa4,0xe7,0x32,0x41,0x01, +0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x52,0xc4,0x06,0xce,0x4a,0xc8,0x4e,0xc6, +0x56,0xc2,0x5a,0xc0,0x2a,0x84,0xae,0x84,0x7d,0x5a,0x1c,0x40,0x03,0x29,0x44,0x00, +0x48,0x40,0x9c,0x43,0x82,0x97,0xaa,0x89,0x63,0x1a,0x05,0x14,0x93,0x44,0xf9,0xff, +0x85,0x88,0x93,0x97,0x24,0x00,0xa2,0x97,0x23,0xa4,0x07,0x00,0x5c,0x40,0x26,0x85, +0x89,0x04,0x85,0x07,0x5c,0xc0,0x1c,0x40,0x8e,0x04,0xa2,0x94,0xdc,0x43,0x82,0x97, +0x1c,0x40,0x83,0xaa,0x04,0x00,0xdc,0x47,0x82,0x97,0x5d,0xcd,0x03,0xdb,0x0a,0x00, +0x63,0x0c,0x0b,0x0a,0x01,0x4a,0x58,0x54,0x1c,0x58,0x63,0xe4,0xe7,0x04,0x54,0x50, +0x18,0x58,0xb3,0x87,0xe6,0x40,0x63,0x8f,0xe6,0x08,0x58,0x54,0x19,0xe3,0xfd,0x17, +0xd1,0xcb,0xb3,0x04,0x4b,0x41,0x63,0xf3,0x97,0x00,0xbe,0x84,0x18,0x58,0x54,0x54, +0x1c,0x58,0x08,0x50,0x63,0xe7,0xd7,0x0a,0x1c,0x58,0x54,0x50,0xa6,0x97,0x63,0xe8, +0xd7,0x0a,0x5c,0x54,0x81,0xef,0xb7,0x67,0xca,0x3f,0x83,0xa7,0x47,0x33,0xc5,0xe7, +0x01,0xa0,0x5c,0x54,0x18,0x58,0xfd,0x17,0x99,0x8f,0xd9,0xb7,0x1c,0x58,0x54,0x50, +0xa6,0x97,0x63,0x96,0xd7,0x00,0x23,0x28,0x04,0x02,0x3a,0x95,0x05,0xa8,0x5c,0x54, +0xfd,0x17,0xe3,0xea,0x97,0xfc,0x1c,0x58,0x1c,0xd4,0x23,0x28,0x04,0x02,0x58,0x54, +0x1c,0x54,0x63,0x1a,0xf7,0x00,0x23,0x26,0x04,0x02,0x18,0x54,0x5c,0x50,0x63,0x74, +0xf7,0x00,0x5c,0x50,0x1c,0xd4,0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x4d,0xd5,0x93,0x05, +0x2a,0x00,0x26,0x86,0xd6,0x95,0x26,0x9a,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xe7, +0xe3,0x6b,0x6a,0xf5,0x23,0x90,0x0a,0x00,0x1c,0x40,0x13,0x79,0x19,0x00,0x0a,0x09, +0x22,0x99,0x48,0x40,0x9c,0x47,0x83,0x25,0x89,0x00,0x82,0x97,0xf2,0x40,0x62,0x44, +0xd2,0x44,0x42,0x49,0x22,0x4a,0x92,0x4a,0x02,0x4b,0x4e,0x85,0xb2,0x49,0x05,0x61, +0x82,0x80,0x5c,0x54,0x14,0x58,0xfd,0x17,0x95,0x8f,0xe3,0xee,0x97,0xf4,0x1c,0x58, +0xa6,0x97,0x1c,0xd8,0x9d,0xbf,0xb7,0x46,0xca,0x3f,0xb7,0x55,0xca,0x3f,0x37,0x45, +0xca,0x3f,0x93,0x86,0x86,0x14,0x13,0x06,0x40,0x0d,0x93,0x85,0x85,0xfe,0x13,0x05, +0xc5,0x17,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0x9b,0x1d,0xbf,0x83,0xa9,0x84,0x00, +0x03,0xa9,0xc4,0x00,0x63,0x94,0x49,0x01,0xe3,0x09,0x49,0xe9,0x85,0x3c,0x9c,0x40, +0xd8,0x40,0xb3,0x07,0xf5,0x40,0x33,0x35,0xf5,0x00,0x99,0x8d,0x89,0x8d,0x9c,0xc8, +0xcc,0xc8,0xe3,0xcc,0x25,0xe7,0x63,0x14,0xb9,0x00,0xe3,0xe8,0x37,0xe7,0x93,0x09, +0x70,0x10,0xad,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xe3,0x01,0x45,0x82,0x80, +0x1c,0x45,0x41,0x11,0x22,0xc4,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47, +0x26,0xc2,0x06,0xc6,0x4a,0xc0,0xf1,0x17,0x2a,0x84,0xae,0x84,0x63,0xe5,0xb7,0x0a, +0x1c,0x45,0x13,0x89,0x45,0x00,0x85,0x8b,0x8a,0x07,0xaa,0x97,0xd8,0x47,0x1c,0x45, +0x4a,0x97,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf1,0xe7,0x06, +0xb2,0x85,0x11,0x05,0xfd,0x3b,0x41,0xe1,0x1c,0x44,0x13,0x17,0x09,0x01,0x41,0x83, +0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd4,0x47,0x1c,0x44,0x36,0x97,0x85,0x8b,0x89,0x07, +0x8e,0x07,0xa2,0x97,0x9c,0x47,0x63,0xe0,0xe7,0x06,0x1c,0x44,0x18,0x44,0x85,0x8b, +0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x22,0x97,0xa2,0x97,0x58,0x47,0xc8,0x43, +0x3a,0x95,0x31,0xc1,0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd8,0x47,0x4a,0x97, +0xd8,0xc7,0x23,0x10,0x95,0x00,0x23,0x11,0x05,0x00,0x11,0x05,0x35,0xa0,0x1c,0x45, +0x18,0x45,0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x2a,0x97,0xaa,0x97, +0x58,0x47,0xc8,0x43,0x1c,0x44,0x3a,0x95,0x85,0x8b,0x8a,0x07,0x3e,0x94,0x5c,0x44, +0xca,0x97,0x5c,0xc4,0x79,0xf5,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44,0x02,0x49, +0x41,0x01,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x4a,0xc8,0x4e,0xc6,0x52,0xc4, +0x06,0xce,0x56,0xc2,0x5a,0xc0,0x83,0x47,0x05,0x00,0x2a,0x84,0x2e,0x89,0x85,0x8b, +0xb2,0x84,0x13,0x0a,0x45,0x00,0xfd,0x59,0xc1,0xe3,0x01,0x45,0xf2,0x40,0x62,0x44, +0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x92,0x4a,0x02,0x4b,0x05,0x61,0x82,0x80, +0x58,0x54,0x85,0xa8,0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0xea,0xe6,0x08,0x18,0x58, +0x54,0x54,0x3e,0x97,0x63,0x1c,0xd7,0x00,0x58,0x54,0x1c,0x54,0x63,0x74,0xf7,0x00, +0x1c,0x54,0x5c,0xd4,0x23,0x28,0x04,0x02,0x71,0xf1,0x95,0xa8,0x18,0x58,0xba,0x97, +0x1c,0xd8,0xdd,0xbf,0xb7,0x46,0xca,0x3f,0xb7,0x55,0xca,0x3f,0x37,0x45,0xca,0x3f, +0x93,0x86,0xc6,0x19,0x13,0x06,0x50,0x0a,0x93,0x85,0x85,0x01,0x13,0x05,0xc5,0x17, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0x80,0x81,0xa8,0x5c,0x40,0xdc,0x47,0x82,0x97, +0x29,0xc5,0xa6,0x85,0x52,0x85,0xf1,0x31,0x18,0x58,0x5c,0x58,0xe3,0xea,0xe7,0xf8, +0x58,0x58,0x1c,0x58,0x1d,0x8f,0x75,0xd3,0x83,0x27,0x09,0x00,0x63,0x73,0xf7,0x00, +0xba,0x87,0x23,0x20,0xf9,0x00,0x18,0x58,0x48,0x50,0x14,0x58,0x3a,0x95,0x58,0x58, +0xe3,0x6a,0xd7,0xf6,0x18,0x58,0x54,0x58,0x3e,0x97,0xe3,0xf9,0xe6,0xf8,0xb7,0x67, +0xca,0x3f,0x83,0xa7,0x47,0x33,0xd9,0xf7,0x01,0xa0,0x03,0xab,0x84,0x00,0x83,0xaa, +0xc4,0x00,0x63,0x14,0x3b,0x01,0xe3,0x89,0x3a,0xfb,0x8d,0x38,0x98,0x40,0xdc,0x40, +0x33,0x07,0xe5,0x40,0x33,0x35,0xe5,0x00,0xb3,0x87,0xf5,0x40,0x89,0x8f,0x98,0xc8, +0xdc,0xc8,0xe3,0xcb,0x57,0xf9,0xe3,0x9a,0xfa,0xf0,0xe3,0x67,0x67,0xf9,0x31,0xb7, +0x5c,0x41,0x85,0x8b,0x8a,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf6,0xb7,0x02,0x01,0x45, +0x82,0x80,0xca,0x85,0x22,0x85,0x35,0x39,0x09,0xe9,0x5c,0x40,0x85,0x8b,0x8a,0x07, +0xa2,0x97,0x9c,0x47,0xe3,0xe7,0xf4,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44, +0x02,0x49,0x41,0x01,0x82,0x80,0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,0x06,0xc6, +0x2a,0x84,0xae,0x84,0x32,0x89,0xd1,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc3, +0x11,0x05,0x7d,0xb7,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x2e,0x86, +0x85,0x8b,0x81,0xc7,0x81,0x45,0x11,0x05,0x61,0xbf,0x13,0x05,0x30,0x10,0x82,0x80, +0x01,0x11,0x4a,0xc8,0x4e,0xc6,0x56,0xc2,0x06,0xce,0x22,0xcc,0x26,0xca,0x52,0xc4, +0x2a,0x89,0xae,0x8a,0xb2,0x89,0xb9,0xe2,0x09,0x3e,0xef,0xf0,0x2f,0xfc,0x4e,0x86, +0x2a,0x84,0x2e,0x8a,0x4a,0x85,0xd6,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0x7e, +0xaa,0x84,0xef,0xf0,0xaf,0xfa,0x37,0x67,0xca,0x3f,0x83,0x26,0x47,0x33,0x0d,0x47, +0x2a,0x88,0xae,0x87,0x63,0x6f,0xd7,0x06,0xf2,0x40,0x62,0x44,0x42,0x49,0xb2,0x49, +0x22,0x4a,0x92,0x4a,0x26,0x85,0xd2,0x44,0x05,0x61,0x82,0x80,0xf9,0x34,0xfd,0x54, +0x65,0xd5,0xe1,0x34,0x5d,0xd9,0xef,0xf0,0x6f,0xf7,0x4e,0x86,0x2a,0x84,0x2e,0x8a, +0x4a,0x85,0xd6,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0x75,0xaa,0x84,0xef,0xf0, +0xef,0xf5,0x37,0x67,0xca,0x3f,0x83,0x26,0x47,0x33,0x0d,0x47,0x2a,0x88,0xae,0x87, +0xe3,0x7c,0xd7,0xfa,0xb7,0x45,0xca,0x3f,0x93,0x85,0x45,0x1d,0x33,0x07,0x88,0x40, +0x33,0x38,0xe8,0x00,0xb3,0x87,0x47,0x41,0x37,0x45,0xca,0x3f,0xb3,0x87,0x07,0x41, +0xce,0x86,0x4a,0x86,0x13,0x05,0x05,0x1e,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0x64, +0x61,0xb7,0xb7,0x45,0xca,0x3f,0x93,0x85,0x45,0x45,0xc9,0xbf,0x85,0x67,0x79,0x71, +0xfd,0x17,0x4a,0xd0,0x4e,0xce,0x06,0xd6,0x22,0xd4,0x26,0xd2,0x52,0xcc,0x56,0xca, +0x5a,0xc8,0x5e,0xc6,0x62,0xc4,0x66,0xc2,0x33,0x77,0xf5,0x00,0xaa,0x89,0x2e,0x89, +0x01,0xc7,0x7d,0x77,0xb3,0x79,0xe5,0x00,0x33,0x77,0xf9,0x00,0x09,0xc7,0xca,0x97, +0x7d,0x79,0x33,0xf9,0x27,0x01,0xb7,0x6b,0xca,0x3f,0x03,0xa7,0x4b,0x33,0x8d,0x47, +0x63,0xfc,0xe7,0x00,0x37,0x45,0xca,0x3f,0x4a,0x86,0xce,0x85,0x13,0x05,0x05,0x21, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0x5e,0xef,0xf0,0x4f,0xeb,0x37,0x04,0xce,0x3f, +0x03,0x27,0x04,0xff,0xb3,0x87,0x29,0x01,0x2a,0x8b,0x54,0x43,0xae,0x8a,0x63,0xfc, +0xf6,0x02,0x83,0xa7,0x4b,0x33,0x91,0xcb,0x37,0x45,0xca,0x3f,0x85,0x45,0x13,0x05, +0x45,0x23,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0x5b,0x7d,0x55,0xb2,0x50,0x22,0x54, +0x92,0x54,0x02,0x59,0xf2,0x49,0x62,0x4a,0xd2,0x4a,0x42,0x4b,0xb2,0x4b,0x22,0x4c, +0x92,0x4c,0x45,0x61,0x82,0x80,0x5c,0x47,0xb3,0xf7,0xf9,0x02,0xf9,0xf3,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x20,0x69,0x55,0xfd,0x03,0x27,0x04,0xff,0x5c,0x47,0x03,0x2a, +0x87,0x00,0x33,0xd4,0xf9,0x02,0x33,0x57,0xf9,0x02,0x33,0x5a,0xfa,0x02,0x93,0x04, +0x17,0x00,0xb3,0x77,0xf9,0x02,0x91,0xe3,0xba,0x84,0x33,0x7c,0x44,0x03,0x33,0x0c, +0x8a,0x41,0x63,0xd3,0x84,0x01,0x26,0x8c,0xb3,0x0c,0x8c,0x00,0xb3,0x87,0x8c,0x40, +0x63,0x4d,0xf0,0x04,0xb3,0x84,0x84,0x41,0x63,0x61,0x9a,0x06,0x26,0x94,0x33,0x05, +0x94,0x40,0x63,0x47,0x90,0x06,0x03,0xa4,0x4b,0x33,0xef,0xf0,0x2f,0xe0,0x0d,0x47, +0xaa,0x87,0x63,0x7a,0x87,0x02,0x33,0x05,0x65,0x41,0xb3,0xb7,0xa7,0x00,0xb3,0x85, +0x55,0x41,0x13,0x06,0x80,0x3e,0x9d,0x8d,0x81,0x46,0xef,0x10,0x30,0x02,0x2a,0x87, +0x37,0x45,0xca,0x3f,0xae,0x87,0x4e,0x86,0xca,0x85,0x13,0x05,0x85,0x25,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0x4f,0x01,0x45,0x91,0xb7,0x22,0x85,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x40,0x5e,0x19,0xfd,0x05,0x04,0x51,0xbf,0x33,0x55,0x44,0x03,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0x5d,0x11,0xf5,0x52,0x94,0xb3,0x84,0x44,0x41,0x69,0xb7, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0x5c,0xe3,0x1d,0x05,0xee,0xfd,0x14,0x41,0xb7, +0x39,0x71,0x22,0xdc,0x37,0x54,0xca,0x3f,0x4a,0xd8,0x13,0x09,0x44,0x1f,0x83,0x27, +0x49,0x02,0x56,0xd2,0x26,0xda,0xb3,0x0a,0xf0,0x40,0xb3,0xfa,0xaa,0x00,0xb3,0x04, +0x55,0x41,0x62,0xcc,0x6a,0xc8,0x33,0x0c,0x96,0x00,0x13,0x8d,0xf7,0xff,0x62,0x9d, +0x33,0x5d,0xfd,0x02,0x5a,0xd0,0x5e,0xce,0x66,0xca,0xae,0x8b,0x32,0x8b,0x06,0xde, +0x4e,0xd6,0x52,0xd4,0x6e,0xc6,0xb3,0xdc,0xfa,0x02,0x97,0x00,0xc8,0xff,0xe7,0x80, +0xa0,0xb5,0x03,0x28,0xc9,0x02,0x03,0x27,0x09,0x03,0x93,0x07,0x44,0x1f,0x42,0x89, +0x37,0x56,0x0c,0x60,0x93,0x05,0x00,0x04,0x63,0x6a,0xe9,0x08,0x63,0x13,0x27,0x01, +0x42,0x89,0x13,0x1a,0x05,0x01,0xb3,0x06,0x2d,0x01,0xca,0x89,0x13,0x5a,0x0a,0x01, +0x63,0xf6,0xe6,0x08,0x93,0x16,0x29,0x00,0x37,0x57,0x0c,0x60,0x36,0x97,0x01,0x44, +0x63,0x1a,0xa4,0x0b,0xcc,0x53,0x33,0x05,0x09,0x41,0x9c,0x57,0x33,0x05,0xb5,0x02, +0xb3,0x05,0xb4,0x02,0x3e,0x95,0xaa,0x94,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0xae, +0xb7,0x67,0xca,0x3f,0x03,0xa7,0x47,0x33,0x8d,0x47,0x63,0xe5,0xe7,0x0c,0x52,0x85, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xae,0x5a,0x86,0xa6,0x85,0x5e,0x85,0x97,0x00, +0xc8,0xff,0xe7,0x80,0xe0,0x83,0x97,0x00,0xc8,0xff,0xe7,0x80,0xe0,0xac,0x4e,0x94, +0x37,0x57,0x0c,0x60,0x93,0x06,0x00,0x04,0x63,0xe1,0x89,0x0a,0x42,0x05,0x41,0x81, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x80,0xab,0x01,0x45,0x35,0xa0,0x93,0x16,0x29,0x00, +0xb2,0x96,0x94,0x42,0xe3,0x87,0xb6,0xf6,0x05,0x09,0xb9,0xbf,0xb7,0x67,0xca,0x3f, +0x03,0xa7,0x47,0x33,0x8d,0x47,0x63,0xed,0xe7,0x02,0x52,0x85,0x97,0x00,0xc8,0xff, +0xe7,0x80,0xc0,0xa8,0x05,0x45,0xf2,0x50,0x62,0x54,0xd2,0x54,0x42,0x59,0xb2,0x59, +0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x62,0x4c,0xd2,0x4c,0x42,0x4d,0xb2,0x4d, +0x21,0x61,0x82,0x80,0xb3,0x06,0x94,0x01,0x14,0xc3,0x05,0x04,0x11,0x07,0x89,0xb7, +0x01,0x44,0x81,0x49,0x81,0x44,0x85,0x4d,0x37,0x45,0xca,0x3f,0x26,0x88,0xe6,0x87, +0x6a,0x87,0xe2,0x86,0x56,0x86,0xca,0x85,0x13,0x05,0x45,0x28,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0x34,0x52,0x85,0x97,0x00,0xc8,0xff,0xe7,0x80,0x20,0xa3,0xe3,0x85, +0x0d,0xf4,0x4d,0xb7,0x6a,0x84,0x81,0x4d,0xc1,0xbf,0x93,0x97,0x29,0x00,0xba,0x97, +0x94,0xc3,0x85,0x09,0x91,0xbf,0x39,0x71,0x56,0xd2,0xb7,0x6a,0xca,0x3f,0x03,0xa7, +0x4a,0x33,0xe1,0x72,0x22,0xdc,0x26,0xda,0x52,0xd4,0x06,0xde,0x4a,0xd8,0x4e,0xd6, +0x5a,0xd0,0x5e,0xce,0x62,0xcc,0xc1,0x02,0x8d,0x47,0x16,0x91,0x2a,0x8a,0xae,0x84, +0x32,0x84,0x63,0xf0,0xe7,0x02,0xaa,0x86,0x2e,0x86,0x37,0x45,0xca,0x3f,0xb7,0x55, +0xca,0x3f,0x93,0x85,0x05,0x04,0x13,0x05,0x05,0x2e,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0x2d,0x97,0x00,0xc8,0xff,0xe7,0x80,0x60,0xab,0x37,0x55,0xca,0x3f,0x89,0x45, +0x13,0x05,0x85,0x22,0x97,0x00,0xc8,0xff,0xe7,0x80,0x00,0xab,0xa1,0x67,0x37,0x59, +0xca,0x3f,0xa1,0x6b,0x8a,0x97,0x01,0x4b,0x13,0x09,0x89,0x22,0x33,0x8c,0x77,0x41, +0xa1,0xe4,0x4d,0xe4,0x93,0x05,0x80,0x0d,0x4a,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0x60,0x71,0x03,0xa7,0x4a,0x33,0x8d,0x47,0x63,0xf6,0xe7,0x02,0x03,0x48,0xf4,0x01, +0x83,0x47,0xe4,0x01,0x03,0x47,0xd4,0x01,0x83,0x46,0x24,0x00,0x03,0x46,0x14,0x00, +0x83,0x45,0x04,0x00,0x37,0x45,0xca,0x3f,0x13,0x05,0x05,0x32,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0x26,0x01,0x45,0x05,0xa8,0xa6,0x89,0x63,0xf3,0x9b,0x00,0xa1,0x69, +0xe2,0x85,0x4e,0x86,0x33,0x05,0x4b,0x01,0x61,0x3b,0xaa,0x85,0x05,0xcd,0x83,0xa7, +0x4a,0x33,0x89,0xcb,0x37,0x45,0xca,0x3f,0x13,0x05,0xc5,0x2f,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0x23,0x7d,0x55,0xa1,0x62,0xc1,0x12,0x16,0x91,0xf2,0x50,0x62,0x54, +0xd2,0x54,0x42,0x59,0xb2,0x59,0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x62,0x4c, +0x21,0x61,0x82,0x80,0x81,0x46,0x4e,0x86,0xe2,0x85,0x4a,0x85,0x97,0x00,0xc8,0xff, +0xe7,0x80,0x40,0xa0,0xb3,0x84,0x34,0x41,0x4e,0x9b,0x99,0xbf,0xa2,0x85,0x4a,0x85, +0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0x9f,0x97,0x00,0xc8,0xff,0xe7,0x80,0x40,0x9d, +0x89,0xbf,0x13,0x01,0x01,0xdd,0x23,0x2c,0x41,0x21,0x37,0x6a,0xca,0x3f,0x03,0x27, +0x4a,0x33,0x23,0x24,0x81,0x22,0x23,0x22,0x91,0x22,0x23,0x20,0x21,0x23,0x23,0x26, +0x11,0x22,0x23,0x2e,0x31,0x21,0x23,0x2a,0x51,0x21,0x23,0x28,0x61,0x21,0x23,0x26, +0x71,0x21,0x23,0x24,0x81,0x21,0x8d,0x47,0x2a,0x84,0x2e,0x89,0xb2,0x84,0x63,0xfc, +0xe7,0x00,0x2e,0x86,0xaa,0x85,0x37,0x45,0xca,0x3f,0x13,0x05,0x05,0x34,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0x19,0xa2,0x94,0x22,0x99,0x05,0x4b,0x93,0x0b,0x00,0x20, +0x13,0x0c,0xf0,0x0f,0x63,0x61,0x24,0x03,0x03,0x27,0x4a,0x33,0x8d,0x47,0x63,0xfa, +0xe7,0x00,0x37,0x45,0xca,0x3f,0x13,0x05,0x85,0x36,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0x16,0x01,0x45,0x15,0xa8,0x93,0x19,0xc4,0x00,0x85,0x6a,0x23,0x80,0x64,0x01, +0xce,0x9a,0x8a,0x85,0x13,0x06,0x00,0x20,0x4e,0x85,0x59,0x39,0xaa,0x85,0x21,0xc5, +0x83,0x27,0x4a,0x33,0x89,0xcb,0x37,0x45,0xca,0x3f,0x13,0x05,0xc5,0x2f,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0x13,0x7d,0x55,0x83,0x20,0xc1,0x22,0x03,0x24,0x81,0x22, +0x83,0x24,0x41,0x22,0x03,0x29,0x01,0x22,0x83,0x29,0xc1,0x21,0x03,0x2a,0x81,0x21, +0x83,0x2a,0x41,0x21,0x03,0x2b,0x01,0x21,0x83,0x2b,0xc1,0x20,0x03,0x2c,0x81,0x20, +0x13,0x01,0x01,0x23,0x82,0x80,0x81,0x47,0x33,0x07,0xf1,0x00,0x03,0x47,0x07,0x00, +0x63,0x07,0x87,0x01,0x23,0x80,0x04,0x00,0x05,0x04,0x85,0x04,0xa5,0xb7,0x85,0x07, +0xe3,0x94,0x77,0xff,0x83,0xc7,0x04,0x00,0xe5,0xdb,0x93,0x89,0x09,0x20,0xe3,0x92, +0x59,0xf9,0xdd,0xb7,0x1d,0x71,0xce,0xc6,0x61,0x46,0xae,0x89,0x2c,0x00,0xa2,0xcc, +0xca,0xc8,0x86,0xce,0xa6,0xca,0xd2,0xc4,0xd6,0xc2,0xda,0xc0,0x5e,0xde,0x62,0xdc, +0x66,0xda,0x6a,0xd8,0x6e,0xd6,0x2a,0x84,0xe5,0x3e,0x37,0x69,0xca,0x3f,0x19,0xcd, +0x83,0x27,0x49,0x33,0x91,0xcb,0xaa,0x85,0x37,0x45,0xca,0x3f,0x13,0x05,0x05,0x38, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0x09,0x7d,0x55,0x1d,0xa0,0x83,0x45,0x81,0x00, +0x13,0x07,0x90,0x0e,0x83,0x27,0x49,0x33,0x63,0x8b,0xe5,0x02,0x89,0xcb,0x37,0x45, +0xca,0x3f,0x13,0x05,0x05,0x3b,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0x06,0x61,0x55, +0xf6,0x40,0x66,0x44,0xd6,0x44,0x46,0x49,0xb6,0x49,0x26,0x4a,0x96,0x4a,0x06,0x4b, +0xf2,0x5b,0x62,0x5c,0xd2,0x5c,0x42,0x5d,0xb2,0x5d,0x25,0x61,0x82,0x80,0x09,0x47, +0x63,0x7f,0xf7,0x00,0xb2,0x46,0x03,0x46,0x91,0x00,0x37,0x45,0xca,0x3f,0x93,0x05, +0x90,0x0e,0x13,0x05,0x45,0x3e,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0x02,0x61,0x04, +0x01,0x4a,0x81,0x44,0x89,0x4a,0xb7,0x4b,0xca,0x3f,0x37,0x0c,0x00,0xbe,0x37,0x0b, +0x40,0x00,0x85,0x4c,0x31,0x4d,0xb7,0x4d,0xca,0x3f,0x83,0x47,0x91,0x00,0x63,0x46, +0xfa,0x00,0x23,0xa0,0x99,0x00,0x01,0x45,0x61,0xbf,0x8a,0x85,0x21,0x46,0x22,0x85, +0x81,0x36,0x83,0x27,0x49,0x33,0xaa,0x85,0x19,0xc5,0xb9,0xdf,0x37,0x45,0xca,0x3f, +0x13,0x05,0x45,0x42,0xb1,0xb7,0x63,0xfb,0xfa,0x00,0x82,0x46,0x12,0x46,0xd2,0x85, +0x13,0x85,0x8b,0x45,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xfd,0x02,0x47,0xb3,0x07, +0x87,0x01,0x63,0xe7,0x67,0x01,0xb7,0x07,0x00,0xc4,0xba,0x97,0x63,0xff,0x67,0x03, +0x83,0x27,0x49,0x33,0x63,0xfc,0xfa,0x00,0x12,0x46,0x93,0x06,0x84,0x00,0xa6,0x85, +0x13,0x85,0x4d,0x48,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xfa,0xe3,0xeb,0x9c,0xf8, +0xb3,0x87,0xa4,0x03,0x13,0x07,0x84,0x00,0x85,0x04,0xc2,0x04,0xc1,0x80,0xce,0x97, +0xd8,0xc3,0x02,0x47,0x98,0xc7,0x12,0x47,0xd8,0xc7,0x92,0x47,0x05,0x0a,0xa1,0x07, +0x3e,0x94,0xa5,0xb7,0x41,0x11,0x26,0xc2,0xb7,0x54,0xca,0x3f,0x93,0x84,0x44,0x1f, +0x22,0xc4,0x13,0x84,0xc4,0x00,0x61,0x46,0x81,0x45,0x22,0x85,0x06,0xc6,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0xa0,0x3a,0xb7,0x47,0xca,0x3f,0x93,0x87,0x07,0x00,0xdc,0xc8, +0x93,0x87,0x47,0x02,0x9c,0xcc,0x05,0x47,0xb7,0x67,0xca,0x3f,0x23,0x80,0xe7,0x32, +0x93,0x84,0x44,0x02,0x1c,0x40,0x91,0xeb,0x21,0x04,0xe3,0x9d,0x84,0xfe,0x01,0x45, +0xb2,0x40,0x22,0x44,0x92,0x44,0x41,0x01,0x82,0x80,0x9c,0x43,0x48,0x40,0x82,0x97, +0x65,0xd5,0xfd,0xb7,0x41,0x11,0x22,0xc4,0x37,0x64,0xca,0x3f,0x03,0x27,0x44,0x33, +0x06,0xc6,0x89,0x47,0x63,0xfa,0xe7,0x00,0x37,0x45,0xca,0x3f,0x13,0x05,0x85,0x4b, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0xef,0xb5,0x3f,0x15,0xc1,0x83,0x27,0x44,0x33, +0x91,0xcb,0xaa,0x85,0x37,0x45,0xca,0x3f,0x13,0x05,0x85,0x4d,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0xed,0x7d,0x55,0xb2,0x40,0x22,0x44,0x41,0x01,0x82,0x80,0xb7,0x67, +0xca,0x3f,0x03,0xa7,0x07,0x33,0xb7,0x06,0x80,0x00,0x1c,0x43,0xd5,0x8f,0x1c,0xc3, +0xdd,0xb7,0x59,0x71,0xe1,0x72,0xa1,0x67,0x86,0xd6,0xd2,0xcc,0xd6,0xca,0xde,0xc6, +0xa2,0xd4,0xa6,0xd2,0xca,0xd0,0xce,0xce,0xda,0xc8,0xe2,0xc4,0xe6,0xc2,0xea,0xc0, +0x6e,0xde,0xaa,0x8a,0x16,0x91,0x61,0x75,0x93,0x87,0x07,0x02,0xaa,0x97,0x18,0x08, +0x33,0x85,0xe7,0x00,0x2e,0x8a,0xef,0xf0,0x8f,0xb1,0xad,0x37,0xaa,0x8b,0x63,0x1a, +0x05,0x14,0x37,0x64,0xca,0x3f,0x03,0x27,0x44,0x33,0x89,0x47,0x63,0xfc,0xe7,0x00, +0x37,0x45,0xca,0x3f,0x56,0x86,0xd2,0x85,0x13,0x05,0x85,0x50,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0xe5,0x11,0x6c,0x81,0x49,0x79,0x1c,0x8d,0x4c,0x37,0x4d,0xca,0x3f, +0x63,0xe2,0x49,0x03,0x03,0x27,0x44,0x33,0x8d,0x47,0x63,0xfc,0xe7,0x10,0x37,0x45, +0xca,0x3f,0x56,0x86,0xd2,0x85,0x13,0x05,0xc5,0x73,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0xe2,0x01,0xa2,0x33,0x09,0x3a,0x41,0xca,0x84,0x63,0x75,0x2c,0x03,0x13,0x79, +0xcc,0xff,0xef,0xe0,0xbf,0xee,0x2a,0x8b,0x4a,0x85,0xae,0x8d,0xef,0xf0,0x0f,0x82, +0xaa,0x84,0x1d,0xe9,0x83,0x27,0x44,0x33,0xe1,0xcf,0x37,0x45,0xca,0x3f,0x13,0x05, +0x05,0x53,0x01,0xa2,0x93,0x77,0x39,0x00,0xe9,0xdf,0x13,0x79,0xc9,0xff,0xe3,0x1a, +0x09,0xfc,0x0d,0x4b,0x63,0x72,0x9b,0x16,0x83,0x27,0x44,0x33,0xd5,0xcb,0x37,0x45, +0xca,0x3f,0x13,0x05,0x85,0x66,0xf1,0xa8,0xef,0xe0,0x5f,0xea,0x83,0x27,0x44,0x33, +0x63,0xf3,0xfc,0x02,0x33,0x07,0x65,0x41,0x33,0x35,0xe5,0x00,0xb3,0x87,0xb5,0x41, +0xb7,0x46,0xca,0x3f,0x89,0x8f,0x26,0x86,0xca,0x85,0x13,0x85,0x46,0x55,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0xda,0xef,0xe0,0x7f,0xe7,0xb3,0x87,0x59,0x01,0x4a,0x86, +0x2a,0xcc,0xae,0x8d,0x3e,0x85,0xa6,0x85,0x3e,0xce,0xd9,0x38,0x2a,0x8b,0xef,0xe0, +0xff,0xe5,0x03,0x26,0x44,0x33,0x62,0x47,0xaa,0x87,0x63,0xfa,0xcc,0x02,0x19,0x8d, +0xb3,0xb7,0xa7,0x00,0xb3,0x85,0xb5,0x41,0x13,0x06,0x80,0x3e,0x81,0x46,0x9d,0x8d, +0xef,0x10,0xc0,0x07,0xb7,0x46,0xca,0x3f,0x2a,0x87,0xae,0x87,0x4a,0x86,0xb3,0x85, +0x59,0x01,0x13,0x85,0x86,0x58,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0xd4,0x26,0x85, +0xef,0xe0,0x1f,0xfa,0x83,0x27,0x44,0x33,0x63,0x0f,0x0b,0x02,0x91,0xcb,0x37,0x45, +0xca,0x3f,0xda,0x85,0x13,0x05,0xc5,0x2f,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0xd2, +0xfd,0x5b,0xa1,0x62,0x16,0x91,0xb6,0x50,0x5e,0x85,0x26,0x54,0x96,0x54,0x06,0x59, +0xf6,0x49,0x66,0x4a,0xd6,0x4a,0x46,0x4b,0xb6,0x4b,0x26,0x4c,0x96,0x4c,0x06,0x4d, +0xf2,0x5d,0x65,0x61,0x82,0x80,0x19,0xc9,0xe1,0xdf,0x37,0x45,0xca,0x3f,0x13,0x05, +0x45,0x5b,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0xcf,0xd9,0xb7,0xca,0x99,0x63,0xff, +0xfc,0x02,0x03,0xc6,0x34,0x00,0x83,0xc8,0x04,0x00,0x03,0xc8,0xf4,0xff,0x83,0xc7, +0xe4,0xff,0x03,0xc7,0xd4,0xff,0x83,0xc6,0xc4,0xff,0x32,0xc4,0x03,0xc6,0x24,0x00, +0x37,0x45,0xca,0x3f,0xca,0x85,0x32,0xc2,0x03,0xc6,0x14,0x00,0x13,0x05,0x85,0x5d, +0x32,0xc0,0x26,0x86,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xcb,0xef,0xe0,0xff,0xf4, +0x83,0x27,0x44,0x33,0x19,0xc5,0xad,0xdf,0x37,0x45,0xca,0x3f,0x13,0x05,0xc5,0x61, +0x4d,0xb7,0xe3,0xf7,0xfc,0xe4,0x26,0x86,0xca,0x85,0x13,0x05,0x0d,0x64,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0x60,0xc8,0x2d,0xbd,0xe1,0x75,0xa1,0x67,0xf1,0x15,0x93,0x87, +0x07,0x02,0xae,0x97,0x18,0x08,0xd6,0x99,0xb3,0x85,0xe7,0x00,0x11,0x46,0x4e,0x85, +0xef,0xf0,0x0f,0xfb,0x83,0x27,0x44,0x33,0x2a,0x89,0x63,0x7b,0xfb,0x00,0x37,0x45, +0xca,0x3f,0xce,0x85,0x13,0x05,0xc5,0x6a,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0xc4, +0x63,0x0b,0x09,0x00,0x83,0x27,0x44,0x33,0x81,0xdf,0x37,0x45,0xca,0x3f,0xca,0x85, +0x13,0x05,0x85,0x6d,0x11,0xb7,0x26,0x85,0xef,0xe0,0x5f,0xe4,0x2a,0x89,0xe3,0x03, +0x05,0xe2,0xe1,0x75,0xa1,0x67,0xf1,0x15,0x93,0x87,0x07,0x02,0xae,0x97,0x18,0x08, +0x26,0x86,0xb3,0x85,0xe7,0x00,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x60,0x06,0x4a,0x85, +0xef,0xe0,0x1f,0xe6,0x01,0xc5,0x83,0x27,0x44,0x33,0xfd,0xbd,0x03,0x27,0x44,0x33, +0x8d,0x47,0x63,0xff,0xe7,0x02,0x03,0x46,0x39,0x00,0x83,0x48,0x09,0x00,0x03,0x48, +0xf9,0xff,0x83,0x47,0xe9,0xff,0x03,0x47,0xd9,0xff,0x83,0x46,0xc9,0xff,0x32,0xc4, +0x03,0x46,0x29,0x00,0x37,0x45,0xca,0x3f,0xa6,0x85,0x32,0xc2,0x03,0x46,0x19,0x00, +0x13,0x05,0x85,0x5d,0x32,0xc0,0x4a,0x86,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0xbb, +0xef,0xe0,0xbf,0xe5,0x83,0x27,0x44,0x33,0xe3,0x17,0x05,0xf0,0xe3,0x84,0x07,0xd6, +0x37,0x45,0xca,0x3f,0x4a,0x86,0xa6,0x85,0x13,0x05,0xc5,0x70,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0xb9,0x81,0xbb,0x1d,0x71,0xca,0xc8,0x37,0x69,0xca,0x3f,0x03,0x27, +0x49,0x33,0xa2,0xcc,0x86,0xce,0xa6,0xca,0xce,0xc6,0xd2,0xc4,0xd6,0xc2,0xda,0xc0, +0x5e,0xde,0x62,0xdc,0x66,0xda,0x6a,0xd8,0x6e,0xd6,0xc1,0x72,0x8d,0x47,0x16,0x91, +0x2a,0x84,0x63,0xfd,0xe7,0x00,0x14,0x4d,0x10,0x41,0x4c,0x41,0x37,0x45,0xca,0x3f, +0x13,0x05,0xc5,0x75,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xb5,0x1c,0x4c,0xb7,0x6c, +0xca,0x3f,0x61,0x75,0x85,0x8b,0x23,0xa2,0xfc,0x32,0xc1,0x67,0xc1,0x07,0xaa,0x97, +0x18,0x08,0x33,0x85,0xe7,0x00,0xef,0xe0,0x9f,0xfc,0x29,0x39,0xaa,0x89,0x79,0xe9, +0x03,0x27,0x49,0x33,0x89,0x47,0x63,0xfc,0xe7,0x00,0x10,0x44,0x4c,0x44,0x37,0x45, +0xca,0x3f,0x13,0x05,0xc5,0x78,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0xb0,0xb7,0x67, +0xca,0x3f,0x83,0xc7,0x07,0x32,0x89,0xc7,0x4c,0x44,0x08,0x44,0xef,0xe0,0xff,0xc0, +0x18,0x40,0x37,0x58,0xca,0x3f,0x93,0x07,0x48,0x1f,0x93,0x87,0x07,0x10,0xd8,0xc7, +0x18,0x48,0x41,0x7a,0x71,0x1a,0x98,0xcb,0x18,0x10,0xd8,0xcf,0x98,0xd3,0xc1,0x67, +0xc1,0x07,0xd2,0x97,0x18,0x08,0xba,0x97,0x01,0x4b,0x13,0x0d,0x48,0x1f,0x3e,0xc4, +0xb7,0x5d,0xca,0x3f,0xa1,0x6b,0x50,0x40,0x83,0x27,0x49,0x33,0x63,0x60,0xcb,0x02, +0x0d,0x47,0x63,0x71,0xf7,0x06,0x10,0x40,0x0c,0x48,0x37,0x55,0xca,0x3f,0x13,0x05, +0x85,0x87,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0xaa,0xa9,0xa0,0xb3,0x05,0x66,0x41, +0x2e,0xce,0x11,0x47,0x63,0x7b,0xf7,0x00,0xb7,0x47,0xca,0x3f,0xda,0x86,0x13,0x85, +0x87,0x7c,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0xa8,0xef,0xe0,0x3f,0xb5,0xaa,0x8a, +0x22,0x45,0x2e,0x8c,0xef,0xe0,0x9f,0xbf,0xaa,0x84,0x1d,0xed,0x83,0x27,0x49,0x33, +0x89,0xcb,0x37,0x45,0xca,0x3f,0x13,0x05,0x45,0x7f,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0xa0,0xa5,0xfd,0x59,0xc1,0x62,0x16,0x91,0xf6,0x40,0x4e,0x85,0x66,0x44,0xd6,0x44, +0x46,0x49,0xb6,0x49,0x26,0x4a,0x96,0x4a,0x06,0x4b,0xf2,0x5b,0x62,0x5c,0xd2,0x5c, +0x42,0x5d,0xb2,0x5d,0x25,0x61,0x82,0x80,0xef,0xe0,0x5f,0xb0,0x03,0x27,0x49,0x33, +0x91,0x47,0x63,0xf1,0xe7,0x02,0xb3,0x87,0x85,0x41,0x33,0x07,0x55,0x41,0xf2,0x45, +0x33,0x35,0xe5,0x00,0x89,0x8f,0x26,0x86,0x13,0x85,0xcd,0x81,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0xa0,0x72,0x4a,0xa6,0x8a,0x63,0x05,0x0a,0x00,0x83,0x27,0x0d,0x11, +0x81,0xeb,0x26,0x85,0xef,0xe0,0xdf,0xbb,0x25,0xed,0xf2,0x47,0x3e,0x9b,0x25,0xb7, +0x03,0x25,0x0d,0x12,0x03,0x2c,0xcd,0x11,0x52,0x86,0x33,0x0c,0x85,0x41,0xb3,0x07, +0x4c,0x01,0x63,0xf4,0xfb,0x00,0x33,0x86,0x8b,0x41,0xd6,0x85,0x32,0xc6,0x97,0xf0, +0xc7,0xff,0xe7,0x80,0xe0,0xe1,0x32,0x46,0x83,0x27,0x0d,0x12,0x32,0x9c,0xb2,0x97, +0x23,0x20,0xfd,0x12,0x83,0x27,0x0d,0x11,0x33,0x0a,0xca,0x40,0xb2,0x9a,0x63,0x04, +0xfc,0x00,0xe3,0x13,0x7c,0xfb,0x83,0xa6,0x4c,0x32,0x83,0x25,0xcd,0x11,0x03,0x25, +0xcd,0x10,0xb3,0x36,0xd0,0x00,0x62,0x86,0xef,0xf0,0x8f,0xa8,0xaa,0x85,0x15,0xc9, +0x83,0x27,0x49,0x33,0x91,0xef,0x26,0x85,0xef,0xe0,0x9f,0xb4,0xf5,0x59,0x1d,0xd1, +0x83,0x27,0x49,0x33,0x99,0xdf,0x37,0x45,0xca,0x3f,0x13,0x05,0x45,0x5b,0x31,0xb7, +0x37,0x55,0xca,0x3f,0x13,0x05,0x45,0x85,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xc0,0x95, +0xd9,0xbf,0x93,0x07,0x0d,0x10,0xd4,0x47,0xe2,0x96,0xd4,0xc7,0x94,0x4b,0xb3,0x86, +0x86,0x41,0x94,0xcb,0xd4,0x4f,0x94,0xd3,0x81,0xb7,0x5d,0x71,0xa6,0xc2,0xb7,0x64, +0xca,0x3f,0x03,0xa7,0x44,0x33,0xb5,0x72,0xa2,0xc4,0x86,0xc6,0xca,0xc0,0x4e,0xde, +0x52,0xdc,0x56,0xda,0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x66,0xd2,0x6a,0xd0,0x6e,0xce, +0x93,0x82,0x02,0x4f,0x8d,0x47,0x16,0x91,0x2a,0x84,0x63,0xfd,0xe7,0x00,0x14,0x4d, +0x10,0x41,0x4c,0x41,0x37,0x45,0xca,0x3f,0x13,0x05,0xc5,0x75,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0x8f,0x1c,0x4c,0x37,0x6c,0xca,0x3f,0x61,0x75,0x85,0x8b,0x23,0x22, +0xfc,0x32,0xcd,0x67,0x93,0x87,0x07,0xb0,0xaa,0x97,0x18,0x10,0x33,0x85,0xe7,0x00, +0xef,0xe0,0xff,0xd6,0xc1,0x32,0x2a,0x8a,0x63,0x11,0x05,0x28,0x03,0xa7,0x44,0x33, +0x89,0x47,0x63,0xfc,0xe7,0x00,0x10,0x44,0x4c,0x44,0x37,0x45,0xca,0x3f,0x13,0x05, +0xc5,0x78,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x20,0x8b,0xb7,0x67,0xca,0x3f,0x83,0xc7, +0x07,0x32,0x89,0xc7,0x4c,0x44,0x08,0x44,0xef,0xe0,0x3f,0x9b,0x03,0xa7,0x44,0x33, +0x89,0x47,0x63,0xfb,0xe7,0x00,0x0c,0x48,0x37,0x55,0xca,0x3f,0x13,0x05,0x85,0x89, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x40,0x88,0x18,0x40,0x37,0x59,0xca,0x3f,0x93,0x07, +0x49,0x1f,0x93,0x87,0x07,0x10,0xd8,0xc7,0x18,0x48,0x4d,0x66,0xb5,0x76,0x98,0xcb, +0x58,0x40,0x93,0x05,0x06,0xb0,0xb5,0x79,0xd8,0xcb,0x13,0x87,0x06,0x51,0xba,0x95, +0x18,0x10,0x2e,0x97,0x98,0xcf,0x93,0x05,0x06,0xb0,0x41,0x77,0xba,0x95,0x18,0x10, +0x2e,0x97,0xd8,0xcf,0x98,0xd3,0x93,0x07,0x06,0xb0,0xb6,0x97,0x14,0x10,0xb6,0x97, +0x23,0xa8,0x07,0x50,0x93,0x06,0x06,0xb0,0x93,0x87,0xc9,0x50,0xbe,0x96,0x1c,0x10, +0xb6,0x97,0x3e,0xc2,0x13,0x07,0x06,0xb0,0x93,0x87,0x89,0x50,0x3e,0x97,0x1c,0x10, +0xba,0x97,0x01,0x4b,0x13,0x09,0x49,0x1f,0x3e,0xc4,0x50,0x40,0x83,0xa7,0x44,0x33, +0x63,0x60,0xcb,0x02,0x0d,0x47,0x63,0x7a,0xf7,0x1a,0x10,0x40,0x0c,0x48,0x37,0x55, +0xca,0x3f,0x13,0x05,0x85,0x87,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xe0,0x7e,0x71,0xaa, +0xb3,0x05,0x66,0x41,0x2e,0xd2,0x11,0x47,0x63,0x7b,0xf7,0x00,0xb7,0x47,0xca,0x3f, +0xda,0x86,0x13,0x85,0x87,0x7c,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xe0,0x7c,0xef,0xe0, +0xff,0x89,0xcd,0x67,0xaa,0x8b,0x93,0x87,0x07,0xb0,0x13,0x85,0x49,0x50,0xaa,0x97, +0x18,0x10,0x33,0x85,0xe7,0x00,0xae,0x8c,0xef,0xe0,0x5f,0x93,0xaa,0x8a,0x11,0xed, +0x83,0xa7,0x44,0x33,0x89,0xcb,0x37,0x45,0xca,0x3f,0x13,0x05,0x45,0x7f,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0x60,0x79,0x7d,0x5a,0x89,0xa2,0xef,0xe0,0x3f,0x86,0x03,0xa7, +0x44,0x33,0x91,0x47,0x63,0xf3,0xe7,0x02,0x33,0x07,0x75,0x41,0x33,0x35,0xe5,0x00, +0xb3,0x87,0x95,0x41,0x92,0x55,0x89,0x8f,0x37,0x55,0xca,0x3f,0x56,0x86,0x13,0x05, +0xc5,0x81,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x76,0x12,0x5d,0xd6,0x8b,0x85,0x4d, +0x63,0x0d,0x0d,0x0a,0x83,0x25,0x09,0x11,0xcd,0xc9,0x63,0x59,0xb0,0x17,0xa1,0x6c, +0x83,0x26,0xc9,0x11,0x03,0x27,0x09,0x12,0x03,0x28,0x49,0x11,0xb3,0x87,0x96,0x01, +0x99,0x8f,0x33,0x38,0x0d,0x01,0x36,0xce,0x3a,0xcc,0x3e,0xd6,0x42,0xca,0x6a,0xd4, +0xef,0xe0,0xcf,0xff,0x52,0x48,0x92,0x47,0x62,0x47,0xf2,0x46,0x22,0x46,0x2a,0xc8, +0x03,0x25,0x89,0x11,0x2e,0xc6,0x06,0x08,0xde,0x85,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0x20,0x7c,0xaa,0x8d,0xef,0xe0,0x8f,0xfd,0x83,0xa7,0x44,0x33,0x11,0x47,0x32,0x43, +0x42,0x4e,0x63,0x74,0xf7,0x02,0x33,0x07,0xc5,0x41,0x33,0x35,0xe5,0x00,0xb3,0x85, +0x65,0x40,0xb3,0x87,0xa5,0x40,0x32,0x56,0xa2,0x55,0xb7,0x56,0xca,0x3f,0x13,0x85, +0x46,0x8c,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x6d,0x13,0x07,0x09,0x10,0xa2,0x57, +0x54,0x4b,0x4c,0x4f,0x33,0x0d,0xfd,0x40,0x9d,0x8e,0x54,0xcb,0xbe,0x9b,0xb2,0x56, +0x1c,0x53,0xb6,0x97,0x1c,0xd3,0x8d,0x8f,0x63,0x58,0xb0,0x03,0x63,0x86,0x97,0x03, +0x63,0x05,0x0d,0x00,0x83,0x27,0x09,0x11,0xa1,0xff,0x63,0xc3,0x0d,0x0c,0x83,0x25, +0x09,0x11,0x63,0x98,0x0d,0x0c,0xe5,0xc1,0x83,0xa7,0x44,0x33,0x95,0xcf,0x37,0x55, +0xca,0x3f,0x13,0x05,0x45,0x94,0x51,0xa0,0x03,0x26,0x09,0x11,0x32,0x87,0x63,0xf3, +0xc7,0x00,0x3e,0x87,0x41,0xc3,0xa1,0x66,0x63,0x75,0xd7,0x04,0x63,0xf3,0xc7,0x04, +0x83,0xa7,0x44,0x33,0x91,0xcb,0x37,0x55,0xca,0x3f,0xba,0x85,0x13,0x05,0x85,0x8f, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0x40,0x65,0x75,0x5a,0xcd,0x62,0x93,0x82,0x02,0xb1, +0x16,0x91,0xb6,0x40,0x52,0x85,0x26,0x44,0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a, +0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61, +0x82,0x80,0x83,0x26,0x4c,0x32,0x03,0x25,0xc9,0x10,0x3a,0x86,0xb3,0x36,0xd0,0x00, +0x3e,0xc6,0xef,0xe0,0xff,0xf0,0xb2,0x47,0xaa,0x85,0x09,0xcd,0x83,0xa7,0x44,0x33, +0xc5,0xdf,0x37,0x55,0xca,0x3f,0x13,0x05,0x45,0x85,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xa0,0x5f,0x5d,0xb7,0x13,0x07,0x09,0x10,0x54,0x47,0xbe,0x96,0x54,0xc7,0x14,0x4b, +0xb3,0x87,0xf6,0x40,0x1c,0xcb,0x5c,0x4f,0x1c,0xd3,0x59,0xb5,0xe3,0x86,0x0d,0xf4, +0x83,0xa7,0x44,0x33,0xd1,0xd3,0x37,0x55,0xca,0x3f,0xee,0x85,0x13,0x05,0xc5,0x91, +0xe9,0xb7,0x91,0xe9,0x83,0xa7,0x44,0x33,0xa5,0xdb,0x37,0x55,0xca,0x3f,0xea,0x85, +0x13,0x05,0x05,0x97,0x5d,0xbf,0x56,0x85,0xef,0xe0,0x8f,0xf7,0x11,0xc9,0x83,0xa7, +0x44,0x33,0xe3,0x8a,0x07,0xe0,0x37,0x45,0xca,0x3f,0x13,0x05,0x45,0x5b,0x01,0xb5, +0x92,0x57,0x3e,0x9b,0x59,0xb3,0x75,0x71,0xca,0xd0,0xce,0xce,0x37,0x59,0xca,0x3f, +0xb7,0x69,0xca,0x3f,0xd2,0xcc,0x3a,0xc1,0x3e,0xc3,0x86,0xd6,0xa2,0xd4,0xa6,0xd2, +0xd6,0xca,0xda,0xc8,0xde,0xc6,0xe2,0xc4,0xe6,0xc2,0x2a,0x8a,0xae,0xda,0xb2,0xdc, +0xb6,0xde,0x42,0xc5,0x46,0xc7,0x93,0x07,0x49,0x1f,0x13,0x87,0x89,0x33,0x63,0xe3, +0xe7,0x20,0x37,0x05,0x38,0x40,0x13,0x05,0x05,0x0f,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xe0,0x54,0x01,0x45,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0x54,0xb7,0x57,0xca,0x3f, +0x37,0x55,0xca,0x3f,0x23,0xac,0x07,0x30,0xb7,0x64,0xca,0x3f,0x95,0x47,0x93,0x05, +0x80,0x07,0x37,0x5c,0xca,0x3f,0x0d,0x44,0x13,0x05,0x85,0x99,0x23,0xaa,0xf4,0x32, +0x23,0x28,0x8c,0x1e,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0x51,0xb7,0x47,0x0c,0x60, +0xcc,0x43,0x83,0xa7,0x44,0x33,0x63,0x76,0xf4,0x1c,0x37,0x55,0xca,0x3f,0x13,0x05, +0x45,0x9b,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x4f,0x83,0xa7,0x44,0x33,0x63,0x7a, +0xf4,0x1a,0x37,0x56,0xca,0x3f,0xb7,0x45,0xca,0x3f,0x37,0x55,0xca,0x3f,0x13,0x06, +0x46,0x1f,0x93,0x85,0x05,0x00,0x13,0x05,0x45,0x9d,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xa0,0x4c,0x83,0xa7,0x44,0x33,0x63,0x76,0xf4,0x18,0x37,0x55,0xca,0x3f,0x13,0x86, +0x89,0x33,0x93,0x05,0x49,0x1f,0x13,0x05,0x05,0x9f,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xa0,0x4a,0x83,0xa7,0x44,0x33,0x63,0x76,0xf4,0x16,0xad,0x47,0x37,0x55,0xca,0x3f, +0x63,0xe6,0x47,0x15,0xb7,0x57,0xca,0x3f,0x13,0x17,0x2a,0x00,0x93,0x87,0x47,0xf3, +0xba,0x97,0x03,0xa6,0x47,0x12,0xd2,0x85,0x13,0x05,0x85,0xa0,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x80,0x47,0xdc,0x18,0x3e,0xce,0xf2,0x47,0x03,0xa7,0x44,0x33,0x03,0xa9, +0x07,0x00,0x83,0xa9,0x47,0x00,0x83,0xaa,0x87,0x00,0x8d,0x47,0x63,0xf0,0xe7,0x02, +0xb7,0x55,0xca,0x3f,0x37,0x55,0xca,0x3f,0xce,0x86,0x4a,0x86,0x93,0x85,0x85,0x08, +0x13,0x05,0xc5,0xa1,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0x44,0xb7,0x47,0x0c,0x60, +0x03,0xab,0x07,0x00,0x03,0xa7,0x44,0x33,0xc0,0x43,0x8d,0x47,0x13,0x7b,0x1b,0x00, +0x63,0xfc,0xe7,0x00,0x37,0x55,0xca,0x3f,0x22,0x86,0xda,0x85,0x13,0x05,0xc5,0xa3, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0x40,0x41,0x63,0x04,0x0b,0x00,0x09,0x88,0x49,0xcc, +0x03,0xa7,0x44,0x33,0x89,0x47,0x63,0xfa,0xe7,0x00,0x37,0x55,0xca,0x3f,0x13,0x05, +0x85,0xa6,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x3f,0x03,0xa7,0x44,0x33,0x8d,0x47, +0x63,0xfe,0xe7,0x00,0xb7,0x55,0xca,0x3f,0x37,0x55,0xca,0x3f,0x93,0x85,0xc5,0x09, +0x13,0x05,0xc5,0xa8,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0x3d,0x97,0xf0,0xc7,0xff, +0xe7,0x80,0x80,0xaa,0xb7,0x07,0x0c,0x60,0xb8,0x43,0x37,0x44,0x0c,0x60,0x13,0x67, +0x17,0x00,0xb8,0xc3,0xb8,0x43,0x13,0x67,0x27,0x00,0xb8,0xc3,0xb8,0x43,0x75,0x9b, +0xb8,0xc3,0x97,0xf0,0xc7,0xff,0xe7,0x80,0xe0,0xaa,0x13,0x07,0x84,0x0c,0x1c,0x43, +0x9d,0x9b,0x93,0xe7,0x07,0x01,0x1c,0xc3,0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xaa, +0x97,0xf0,0xc7,0xff,0xe7,0x80,0x00,0xa4,0x01,0x45,0x97,0xf0,0xc7,0xff,0xe7,0x80, +0x60,0xa6,0x5c,0x40,0xf5,0x9b,0x5c,0xc0,0xb7,0x47,0x0c,0x60,0x03,0xa6,0x87,0x0c, +0x0d,0x82,0x0d,0x8a,0x2d,0xca,0x85,0x47,0xa1,0x65,0x63,0x08,0xf6,0x06,0x09,0x46, +0xc1,0x65,0xa5,0xa0,0x23,0xa0,0x07,0x00,0x91,0x07,0xd5,0xbb,0x37,0x46,0xca,0x3f, +0x13,0x06,0x46,0x45,0xd2,0x85,0x13,0x05,0x85,0xa0,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xa0,0x33,0xdc,0x18,0x3e,0xce,0xad,0x47,0x79,0x54,0xe3,0xdf,0x47,0xeb,0x03,0xa7, +0x44,0x33,0x8d,0x47,0x63,0xfb,0xe7,0x00,0x37,0x55,0xca,0x3f,0xa2,0x85,0x13,0x05, +0x85,0xe3,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x31,0xb6,0x50,0x22,0x85,0x26,0x54, +0x96,0x54,0x06,0x59,0xf6,0x49,0x66,0x4a,0xd6,0x4a,0x46,0x4b,0xb6,0x4b,0x26,0x4c, +0x96,0x4c,0x49,0x61,0x82,0x80,0x0d,0x46,0x91,0x65,0xb7,0x57,0xca,0x3f,0x93,0x87, +0x47,0x1f,0x13,0x07,0x00,0x04,0x98,0xdb,0x33,0x87,0xc5,0x02,0xb7,0x06,0x00,0x3c, +0xcc,0xd3,0xd0,0xd7,0x36,0x97,0x83,0xa6,0x44,0x33,0x98,0xd7,0x89,0x47,0x63,0xfc, +0xd7,0x00,0x37,0x55,0xca,0x3f,0x93,0x06,0x00,0x04,0x13,0x05,0x85,0xa9,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0x60,0x2b,0xb7,0x07,0x0c,0x60,0x98,0x4b,0xb7,0x06,0x00,0x20, +0x75,0x8f,0x1d,0xe7,0x98,0x4b,0x55,0x8f,0x98,0xcb,0x98,0x4f,0xb7,0x06,0x00,0xe0, +0xfd,0x16,0x75,0x8f,0x98,0xcf,0x03,0xa7,0x44,0x33,0x89,0x47,0x63,0xfa,0xe7,0x00, +0x37,0x55,0xca,0x3f,0x13,0x05,0xc5,0xae,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0x27, +0x37,0x3b,0x02,0x60,0x93,0x07,0x0b,0x00,0x98,0x43,0xb7,0x6b,0xca,0x3f,0xb7,0x06, +0x00,0x80,0x23,0xae,0xeb,0x30,0x98,0x43,0x81,0x45,0x01,0x45,0x55,0x8f,0x98,0xc3, +0x98,0x43,0xb7,0x06,0x00,0x40,0x13,0x0b,0x0b,0x00,0x55,0x8f,0x98,0xc3,0x98,0x43, +0xb7,0x06,0x00,0xf0,0xfd,0x16,0x75,0x8f,0x98,0xc3,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xe0,0x37,0xef,0xe0,0xaf,0xd7,0xaa,0x85,0x1d,0xe5,0x83,0xa7,0x44,0x33,0x89,0xcb, +0x37,0x55,0xca,0x3f,0x13,0x05,0xc5,0xb0,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0x21, +0x13,0x04,0xca,0xff,0x33,0x34,0x80,0x00,0x33,0x04,0x80,0x40,0x83,0xa7,0xcb,0x31, +0x23,0x20,0xfb,0x00,0xe9,0xbd,0x91,0x47,0x2a,0x84,0xe3,0x09,0xfa,0xfe,0xb7,0x07, +0xce,0x3f,0x03,0xa5,0x07,0xff,0xc1,0x67,0xfd,0x17,0x08,0x41,0x13,0x07,0x00,0x10, +0x85,0x66,0x41,0x66,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x80,0x2f,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x40,0x2e,0x2a,0x84,0x19,0xcd,0x83,0xa7,0x44,0x33,0x91,0xcb,0xaa,0x85, +0x37,0x55,0xca,0x3f,0x13,0x05,0x05,0xb3,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0x1b, +0x7d,0x54,0x6d,0xb7,0xad,0x47,0x63,0xe1,0x47,0x4d,0xb7,0x57,0xca,0x3f,0x93,0x87, +0x47,0xf0,0x0a,0x0a,0x3e,0x9a,0x83,0x27,0x0a,0x00,0x82,0x87,0xce,0x85,0x4a,0x85, +0xef,0xf0,0x2f,0xae,0x2a,0x84,0x59,0xb7,0xce,0x85,0x4a,0x85,0xef,0xe0,0x1f,0xb5, +0xd5,0xbf,0x56,0x86,0xce,0x85,0x4a,0x85,0xef,0xe0,0xbf,0xf9,0xe5,0xb7,0x4a,0x85, +0xef,0xf0,0x6f,0xde,0xc5,0xb7,0x4a,0x85,0xef,0xf0,0x3f,0x83,0xe1,0xbf,0x56,0x86, +0xce,0x85,0x4a,0x85,0xef,0xe0,0x3f,0xe4,0xf1,0xb7,0xef,0xe0,0x2f,0xca,0x03,0xa7, +0x44,0x33,0x8d,0x47,0x2a,0x8a,0x63,0xf0,0xe7,0x02,0xb7,0x55,0xca,0x3f,0x37,0x55, +0xca,0x3f,0xce,0x86,0x4a,0x86,0x93,0x85,0xc5,0x0a,0x13,0x05,0x85,0xb5,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0x60,0x13,0x23,0xa0,0x09,0x00,0xfd,0x57,0x63,0x1b,0xf9,0x02, +0x15,0x69,0xa1,0x6a,0x13,0x09,0xa9,0x0a,0x0d,0x4c,0xb7,0x5c,0xca,0x3f,0x13,0x15, +0x54,0x00,0x0c,0x10,0x13,0x06,0x00,0x02,0x56,0x95,0xef,0xe0,0x7f,0xc5,0xaa,0x85, +0x11,0xcd,0x83,0xa7,0x44,0x33,0xa9,0xd7,0x37,0x55,0xca,0x3f,0x13,0x05,0x05,0xb7, +0x25,0xbf,0xce,0x85,0x4a,0x85,0xef,0xf0,0xef,0x81,0xa9,0xbf,0x83,0x55,0x01,0x02, +0x83,0xa7,0x44,0x33,0x63,0x8d,0x25,0x01,0x89,0xcb,0x37,0x55,0xca,0x3f,0x13,0x05, +0x85,0xba,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0x0d,0x69,0x54,0xc1,0xb5,0x12,0x56, +0x63,0x66,0xca,0x00,0x22,0x57,0x32,0x97,0x63,0x70,0xea,0x02,0x81,0xcf,0xa2,0x56, +0x37,0x55,0xca,0x3f,0x52,0x87,0xa2,0x85,0x13,0x05,0x85,0xbd,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x80,0x0a,0x65,0x54,0x59,0xbd,0x63,0x7f,0xfc,0x00,0x03,0x47,0x31,0x02, +0x83,0x46,0x21,0x02,0x7c,0x10,0x4a,0x86,0xa2,0x85,0x13,0x85,0xcc,0xc2,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0x60,0x08,0x83,0x47,0x21,0x02,0x8d,0xe7,0x03,0xa7,0x44,0x33, +0x89,0x47,0x63,0xfe,0xe7,0x00,0x22,0x56,0x92,0x56,0x37,0x55,0xca,0x3f,0x29,0x82, +0x6c,0x10,0x13,0x05,0xc5,0xc6,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xe0,0x05,0x12,0x55, +0xce,0x85,0x95,0xb7,0x05,0x04,0x25,0xbf,0x03,0xa7,0x44,0x33,0x8d,0x47,0x63,0xf0, +0xe7,0x02,0xb7,0x55,0xca,0x3f,0x37,0x55,0xca,0x3f,0xce,0x86,0x4a,0x86,0x93,0x85, +0x05,0x0c,0x13,0x05,0x85,0xb5,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xe0,0x02,0x7d,0x7a, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0x70,0x33,0x7a,0x49,0x01,0xd6,0x85,0x09,0x66, +0x52,0x85,0xef,0xe0,0xff,0xb5,0xaa,0x85,0x09,0xcd,0x83,0xa7,0x44,0x33,0xbd,0xcb, +0x37,0x55,0xca,0x3f,0x13,0x05,0xc5,0xc9,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0xff, +0x95,0xa0,0x13,0x14,0x49,0x01,0x51,0x80,0x56,0x94,0x09,0x46,0xa2,0x85,0x4e,0x85, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0x43,0x03,0xa7,0x44,0x33,0x89,0x47,0x63,0xf3, +0xe7,0x02,0x03,0x47,0x34,0x00,0x83,0x46,0x24,0x00,0x03,0x46,0x14,0x00,0x83,0x45, +0x04,0x00,0x37,0x55,0xca,0x3f,0x4a,0x88,0x13,0x05,0x85,0xcc,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x80,0xfb,0x89,0x45,0x4a,0x85,0xef,0xe0,0x5f,0x97,0x11,0xcd,0x83,0xa7, +0x44,0x33,0x89,0xcb,0x37,0x55,0xca,0x3f,0x13,0x05,0x45,0xd0,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x80,0xf9,0x01,0x44,0x59,0xb3,0x89,0x47,0x23,0x00,0xf4,0x00,0x93,0x07, +0x00,0xf9,0xa3,0x00,0xf4,0x00,0xef,0xe0,0x4f,0xba,0xb3,0x36,0xa0,0x00,0xd6,0x85, +0x09,0x66,0x52,0x85,0xef,0xe0,0xdf,0x86,0xaa,0x85,0x09,0xc9,0x83,0xa7,0x44,0x33, +0xf1,0xdb,0x37,0x55,0xca,0x3f,0x13,0x05,0xc5,0xd2,0xb9,0xbf,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x40,0x63,0x83,0xa7,0x44,0x33,0x0d,0x44,0x63,0x7c,0xf4,0x06,0x0c,0x10, +0x21,0x46,0x13,0x75,0xc9,0xff,0xef,0xe0,0xbf,0xa8,0x83,0xa7,0x44,0x33,0xaa,0x85, +0x09,0xcd,0x89,0xcb,0x37,0x55,0xca,0x3f,0x13,0x05,0x85,0xd5,0x97,0xe0,0xc7,0xff, +0xe7,0x80,0x80,0xf2,0x13,0x04,0xf0,0x0f,0x11,0xbb,0x63,0x74,0xf4,0x04,0x83,0x47, +0x71,0x02,0x83,0x48,0x31,0x02,0x03,0x48,0x21,0x02,0x3e,0xc6,0x83,0x47,0x61,0x02, +0x03,0x47,0x01,0x02,0xb7,0x55,0xca,0x3f,0x3e,0xc4,0x83,0x47,0x51,0x02,0x37,0x55, +0xca,0x3f,0xce,0x86,0x3e,0xc2,0x83,0x47,0x41,0x02,0x4a,0x86,0x93,0x85,0x05,0x0c, +0x3e,0xc0,0x83,0x47,0x11,0x02,0x13,0x05,0xc5,0xd7,0x97,0xe0,0xc7,0xff,0xe7,0x80, +0xa0,0xed,0x09,0x44,0xe1,0xb1,0x03,0xa7,0x44,0x33,0x8d,0x47,0x63,0xf8,0xe7,0x02, +0x83,0xc8,0x39,0x00,0x03,0xc8,0x29,0x00,0x83,0xc7,0x19,0x00,0x03,0xc7,0x09,0x00, +0xb7,0x55,0xca,0x3f,0x37,0x55,0xca,0x3f,0xce,0x86,0x4a,0x86,0x93,0x85,0x45,0x0d, +0x13,0x05,0x45,0xdc,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0xea,0x7d,0x7a,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0x20,0x57,0x33,0x7a,0x49,0x01,0xd6,0x85,0x09,0x66,0x52,0x85, +0xef,0xe0,0x1f,0x9d,0xaa,0x85,0x11,0xc9,0x83,0xa7,0x44,0x33,0xe3,0x82,0x07,0xcc, +0x37,0x55,0xca,0x3f,0x13,0x05,0xc5,0xc9,0x45,0xb9,0x89,0x45,0x4a,0x85,0xef,0xe0, +0xff,0x82,0x2a,0x84,0x11,0xcd,0x83,0xa7,0x44,0x33,0xe3,0x83,0x07,0xca,0x37,0x55, +0xca,0x3f,0x13,0x05,0x45,0xd0,0x97,0xe0,0xc7,0xff,0xe7,0x80,0xe0,0xe4,0x49,0xb9, +0x03,0xc7,0x09,0x00,0x93,0x17,0x49,0x01,0xd1,0x83,0xd6,0x97,0x23,0x80,0xe7,0x00, +0x03,0xc7,0x19,0x00,0xa3,0x80,0xe7,0x00,0xef,0xe0,0x2f,0xa5,0xb3,0x36,0xa0,0x00, +0xd6,0x85,0x09,0x66,0x52,0x85,0xef,0xe0,0xaf,0xf1,0xaa,0x85,0x11,0xc9,0x83,0xa7, +0x44,0x33,0xe3,0x8f,0x07,0xc4,0x37,0x55,0xca,0x3f,0x13,0x05,0x45,0xdf,0xa9,0xb1, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0x4e,0x83,0xa7,0x44,0x33,0x0d,0x4a,0xe3,0x77, +0xfa,0xbe,0x0c,0x10,0x21,0x46,0x13,0x75,0xc9,0xff,0xef,0xe0,0x7f,0x93,0x83,0xa7, +0x44,0x33,0xaa,0x85,0x01,0xc9,0xe3,0x85,0x07,0xc2,0x37,0x55,0xca,0x3f,0x13,0x05, +0x85,0xd5,0x19,0xb9,0xe3,0x74,0xfa,0xbc,0x83,0x47,0x71,0x02,0x83,0x48,0x31,0x02, +0x03,0x48,0x21,0x02,0x3e,0xc6,0x83,0x47,0x61,0x02,0x03,0x47,0x01,0x02,0xb7,0x55, +0xca,0x3f,0x3e,0xc4,0x83,0x47,0x51,0x02,0x37,0x55,0xca,0x3f,0xce,0x86,0x3e,0xc2, +0x83,0x47,0x41,0x02,0x4a,0x86,0x93,0x85,0x45,0x0d,0x3e,0xc0,0x83,0x47,0x11,0x02, +0x13,0x05,0xc5,0xd7,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x00,0xd9,0x41,0xb6,0xfd,0x57, +0x4a,0x84,0x63,0x1c,0xf9,0x06,0x37,0x07,0x0c,0x60,0x3c,0x4f,0x13,0x99,0x47,0x01, +0x93,0xf7,0xf7,0x3f,0x93,0xe7,0x07,0x40,0x13,0x59,0x49,0x01,0x3c,0xcf,0x03,0xa7, +0x44,0x33,0x8d,0x47,0x63,0xfb,0xe7,0x00,0x37,0x55,0xca,0x3f,0xca,0x85,0x13,0x05, +0xc5,0xe1,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x20,0xd5,0x03,0x29,0x0c,0x1f,0x85,0x47, +0xe3,0x1e,0xf9,0xb2,0x01,0x45,0x97,0xe0,0xc7,0xff,0xe7,0x80,0x60,0xd7,0x97,0xe0, +0xc7,0xff,0xe7,0x80,0xe0,0x46,0xb7,0x65,0x62,0x02,0x93,0x85,0x05,0xa0,0x01,0x45, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0x40,0xda,0xb7,0x07,0xce,0x3f,0xa3,0x84,0x27,0xfd, +0x97,0xe0,0xc7,0xff,0xe7,0x80,0xc0,0xd1,0x11,0xb6,0x37,0x06,0x0c,0x60,0x38,0x4e, +0x85,0x67,0xfd,0x76,0x93,0x87,0x07,0xc0,0x93,0x86,0xf6,0x3f,0xb3,0x77,0xf9,0x00, +0x75,0x8f,0xd9,0x8f,0x3c,0xce,0x61,0xb7,0x79,0x54,0xcd,0xb4,0xaa,0x88,0x2e,0x83, +0x32,0x87,0x2a,0x88,0xae,0x87,0x63,0x96,0x06,0x20,0xb7,0x55,0xca,0x3f,0x93,0x85, +0x85,0x0e,0x63,0x71,0xc3,0x0c,0xc1,0x66,0x63,0x77,0xd6,0x0a,0x93,0x36,0x06,0x10, +0x93,0xc6,0x16,0x00,0x8e,0x06,0x33,0x55,0xd6,0x00,0xaa,0x95,0x83,0xc5,0x05,0x00, +0x13,0x05,0x00,0x02,0xae,0x96,0xb3,0x05,0xd5,0x40,0x63,0x0b,0xd5,0x00,0xb3,0x17, +0xb3,0x00,0xb3,0xd6,0xd8,0x00,0x33,0x17,0xb6,0x00,0xd5,0x8f,0x33,0x98,0xb8,0x00, +0x93,0x55,0x07,0x01,0x33,0xd3,0xb7,0x02,0x13,0x16,0x07,0x01,0x41,0x82,0xb3,0xf7, +0xb7,0x02,0x1a,0x85,0xb3,0x08,0x66,0x02,0x93,0x96,0x07,0x01,0x93,0x57,0x08,0x01, +0xd5,0x8f,0x63,0xfc,0x17,0x01,0xba,0x97,0x13,0x05,0xf3,0xff,0x63,0xe7,0xe7,0x00, +0x63,0xf5,0x17,0x01,0x13,0x05,0xe3,0xff,0xba,0x97,0xb3,0x87,0x17,0x41,0xb3,0xd8, +0xb7,0x02,0x42,0x08,0x13,0x58,0x08,0x01,0xb3,0xf7,0xb7,0x02,0xb3,0x06,0x16,0x03, +0xc2,0x07,0x33,0x68,0xf8,0x00,0xc6,0x87,0x63,0x7b,0xd8,0x00,0x3a,0x98,0x93,0x87, +0xf8,0xff,0x63,0x66,0xe8,0x00,0x63,0x74,0xd8,0x00,0x93,0x87,0xe8,0xff,0x42,0x05, +0x5d,0x8d,0x81,0x45,0x82,0x80,0x37,0x05,0x00,0x01,0xc1,0x46,0xe3,0x6d,0xa6,0xf4, +0xe1,0x46,0x91,0xbf,0x81,0x46,0x09,0xca,0xc1,0x67,0x63,0x7f,0xf6,0x08,0x93,0x36, +0x06,0x10,0x93,0xc6,0x16,0x00,0x8e,0x06,0xb3,0x57,0xd6,0x00,0xbe,0x95,0x83,0xc7, +0x05,0x00,0xb6,0x97,0x93,0x06,0x00,0x02,0xb3,0x85,0xf6,0x40,0x63,0x95,0xf6,0x08, +0xb3,0x07,0xc3,0x40,0x85,0x45,0x93,0x58,0x07,0x01,0x33,0xde,0x17,0x03,0x13,0x16, +0x07,0x01,0x41,0x82,0x93,0x56,0x08,0x01,0xb3,0xf7,0x17,0x03,0x72,0x85,0x33,0x03, +0xc6,0x03,0xc2,0x07,0xd5,0x8f,0x63,0xfc,0x67,0x00,0xba,0x97,0x13,0x05,0xfe,0xff, +0x63,0xe7,0xe7,0x00,0x63,0xf5,0x67,0x00,0x13,0x05,0xee,0xff,0xba,0x97,0xb3,0x87, +0x67,0x40,0x33,0xd3,0x17,0x03,0x42,0x08,0x13,0x58,0x08,0x01,0xb3,0xf7,0x17,0x03, +0xb3,0x06,0x66,0x02,0xc2,0x07,0x33,0x68,0xf8,0x00,0x9a,0x87,0x63,0x7b,0xd8,0x00, +0x3a,0x98,0x93,0x07,0xf3,0xff,0x63,0x66,0xe8,0x00,0x63,0x74,0xd8,0x00,0x93,0x07, +0xe3,0xff,0x42,0x05,0x5d,0x8d,0x82,0x80,0xb7,0x07,0x00,0x01,0xc1,0x46,0xe3,0x65, +0xf6,0xf6,0xe1,0x46,0x95,0xb7,0x33,0x17,0xb6,0x00,0xb3,0x56,0xf3,0x00,0x13,0x55, +0x07,0x01,0x33,0x13,0xb3,0x00,0xb3,0xd7,0xf8,0x00,0xb3,0xe7,0x67,0x00,0x33,0xd3, +0xa6,0x02,0x13,0x16,0x07,0x01,0x41,0x82,0x33,0x98,0xb8,0x00,0xb3,0xf6,0xa6,0x02, +0xb3,0x08,0x66,0x02,0x93,0x95,0x06,0x01,0x93,0xd6,0x07,0x01,0xcd,0x8e,0x9a,0x85, +0x63,0xfc,0x16,0x01,0xba,0x96,0x93,0x05,0xf3,0xff,0x63,0xe7,0xe6,0x00,0x63,0xf5, +0x16,0x01,0x93,0x05,0xe3,0xff,0xba,0x96,0xb3,0x86,0x16,0x41,0xb3,0xd8,0xa6,0x02, +0xc2,0x07,0xc1,0x83,0xb3,0xf6,0xa6,0x02,0x33,0x06,0x16,0x03,0xc2,0x06,0xd5,0x8f, +0xc6,0x86,0x63,0xfc,0xc7,0x00,0xba,0x97,0x93,0x86,0xf8,0xff,0x63,0xe7,0xe7,0x00, +0x63,0xf5,0xc7,0x00,0x93,0x86,0xe8,0xff,0xba,0x97,0xc2,0x05,0x91,0x8f,0xd5,0x8d, +0xdd,0xbd,0x63,0xe1,0xd5,0x14,0xc1,0x67,0x63,0xff,0xf6,0x02,0x13,0xb7,0x06,0x10, +0x13,0x47,0x17,0x00,0x0e,0x07,0xb7,0x57,0xca,0x3f,0xb3,0xd5,0xe6,0x00,0x93,0x87, +0x87,0x0e,0xae,0x97,0x83,0xc7,0x07,0x00,0xba,0x97,0x13,0x07,0x00,0x02,0xb3,0x05, +0xf7,0x40,0x63,0x11,0xf7,0x02,0x05,0x45,0xe3,0xee,0x66,0xe6,0x33,0xb5,0xc8,0x00, +0x13,0x45,0x15,0x00,0x82,0x80,0xb7,0x07,0x00,0x01,0x41,0x47,0xe3,0xe5,0xf6,0xfc, +0x61,0x47,0xd1,0xb7,0x33,0x57,0xf6,0x00,0xb3,0x96,0xb6,0x00,0xd9,0x8e,0x33,0x57, +0xf3,0x00,0x33,0x13,0xb3,0x00,0xb3,0xd7,0xf8,0x00,0xb3,0xe7,0x67,0x00,0x13,0xd3, +0x06,0x01,0xb3,0x5e,0x67,0x02,0x13,0x98,0x06,0x01,0x13,0x58,0x08,0x01,0x33,0x16, +0xb6,0x00,0x33,0x77,0x67,0x02,0x33,0x0e,0xd8,0x03,0x13,0x15,0x07,0x01,0x13,0xd7, +0x07,0x01,0x49,0x8f,0x76,0x85,0x63,0x7c,0xc7,0x01,0x36,0x97,0x13,0x85,0xfe,0xff, +0x63,0x67,0xd7,0x00,0x63,0x75,0xc7,0x01,0x13,0x85,0xee,0xff,0x36,0x97,0x33,0x07, +0xc7,0x41,0x33,0x5e,0x67,0x02,0xc2,0x07,0xc1,0x83,0x33,0x77,0x67,0x02,0x33,0x08, +0xc8,0x03,0x42,0x07,0xd9,0x8f,0x72,0x87,0x63,0xfc,0x07,0x01,0xb6,0x97,0x13,0x07, +0xfe,0xff,0x63,0xe7,0xd7,0x00,0x63,0xf5,0x07,0x01,0x13,0x07,0xee,0xff,0xb6,0x97, +0x42,0x05,0x41,0x6e,0x59,0x8d,0x93,0x06,0xfe,0xff,0x33,0x77,0xd5,0x00,0xb3,0x87, +0x07,0x41,0xf1,0x8e,0x13,0x58,0x05,0x01,0x41,0x82,0x33,0x03,0xd7,0x02,0xb3,0x06, +0xd8,0x02,0x33,0x07,0xc7,0x02,0x33,0x08,0xc8,0x02,0x33,0x06,0xd7,0x00,0x13,0x57, +0x03,0x01,0x32,0x97,0x63,0x73,0xd7,0x00,0x72,0x98,0x93,0x56,0x07,0x01,0xc2,0x96, +0x63,0xe0,0xd7,0x02,0xe3,0x97,0xd7,0xd8,0xc1,0x67,0xfd,0x17,0x7d,0x8f,0x42,0x07, +0x33,0x73,0xf3,0x00,0xb3,0x98,0xb8,0x00,0x1a,0x97,0x81,0x45,0xe3,0xfc,0xe8,0xd6, +0x7d,0x15,0x85,0xbb,0x81,0x45,0x01,0x45,0x82,0x80, diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data.inc b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data.inc new file mode 100644 index 0000000000..a02f3b559f --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data.inc @@ -0,0 +1,22 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0x72,0x03,0x38,0x40,0x56,0x05,0x38,0x40,0x00,0x00,0x38,0x40,0x68,0x07,0x38,0x40, +0x7a,0x07,0x38,0x40,0x1a,0x00,0x38,0x40,0x36,0x06,0x38,0x40,0x32,0x00,0x38,0x40, +0x44,0x00,0x38,0x40,0x00,0x00,0x00,0x00,0x5c,0x40,0xca,0x3f,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,0x68,0x00,0x38,0x40, +0xde,0x00,0x38,0x40,0xae,0x00,0x38,0x40,0xe2,0x00,0x38,0x40,0x36,0x13,0x38,0x40, +0x56,0x13,0x38,0x40,0x40,0x13,0x38,0x40,0x4a,0x13,0x38,0x40,0xcc,0x14,0x38,0x40, +0x6e,0x13,0x38,0x40,0xca,0x13,0x38,0x40,0x36,0x14,0x38,0x40,0xcc,0x14,0x38,0x40, +0x5c,0x13,0x38,0x40,0x62,0x13,0x38,0x40,0x96,0x14,0x38,0x40,0x00,0x00,0x04,0x00, +0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00, +0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x01,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,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10, +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,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00, +0x01, diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data_wlog.inc b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data_wlog.inc new file mode 100644 index 0000000000..908df38118 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_data_wlog.inc @@ -0,0 +1,289 @@ +/* Autogenerated with ../../../../../src/helper/bin2char.sh */ +0x1a,0x03,0x38,0x40,0xc4,0x06,0x38,0x40,0x00,0x00,0x38,0x40,0x08,0x09,0x38,0x40, +0x1a,0x09,0x38,0x40,0x1a,0x00,0x38,0x40,0xa4,0x07,0x38,0x40,0x32,0x00,0x38,0x40, +0x44,0x00,0x38,0x40,0x00,0x00,0x00,0x00,0x5c,0x40,0xca,0x3f,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,0x68,0x00,0x38,0x40, +0xde,0x00,0x38,0x40,0xae,0x00,0x38,0x40,0xe2,0x00,0x38,0x40,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x45,0x4e,0x54,0x45,0x52,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x25,0x78, +0x2c,0x20,0x63,0x73,0x20,0x25,0x78,0x2c,0x20,0x62,0x73,0x20,0x25,0x78,0x2c,0x20, +0x73,0x73,0x20,0x25,0x78,0x2c,0x20,0x70,0x73,0x20,0x25,0x78,0x2c,0x20,0x73,0x6d, +0x20,0x25,0x78,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x46,0x6c,0x61,0x73,0x68,0x20,0x49,0x44,0x20,0x72,0x65,0x61,0x64,0x20,0x25,0x78, +0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x46,0x6c,0x61,0x73, +0x68,0x20,0x49,0x44,0x20,0x25,0x78,0x2c,0x20,0x73,0x69,0x7a,0x65,0x20,0x25,0x64, +0x20,0x4b,0x42,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x66,0x6c,0x61,0x73,0x68,0x5f,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e, +0x5f,0x6d,0x6f,0x64,0x65,0x3a,0x20,0x25,0x64,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x73,0x74,0x61,0x63,0x6b,0x20,0x64,0x61,0x74,0x61,0x20,0x70, +0x6f,0x6f,0x6c,0x20,0x25,0x6c,0x75,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20, +0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x00,0x66,0x61,0x6c,0x73,0x65,0x20,0x26,0x26, +0x20,0x22,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x64, +0x75,0x63,0x65,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x6f,0x77, +0x6e,0x20,0x62,0x75,0x66,0x66,0x65,0x72,0x21,0x22,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x41,0x53,0x53,0x45,0x52,0x54,0x20,0x61,0x74,0x20,0x25,0x73, +0x3a,0x25,0x64,0x20,0x27,0x25,0x73,0x27,0x0a,0x00,0x00,0x00,0x66,0x61,0x6c,0x73, +0x65,0x20,0x26,0x26,0x20,0x22,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20, +0x63,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x66,0x72, +0x6f,0x6d,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x66,0x65,0x72,0x21,0x22, +0x00,0x00,0x00,0x00,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x2d,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x57,0x72,0x69,0x74,0x65,0x20,0x25,0x73, +0x66,0x6c,0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x73,0x7a,0x20, +0x25,0x64,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,0x64,0x20,0x75,0x73,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x66,0x6c, +0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x73,0x7a,0x20,0x25, +0x64,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x66,0x6c,0x61,0x73, +0x68,0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x45,0x72,0x61,0x73,0x65,0x64,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20, +0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,0x64,0x20,0x6d, +0x73,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x73,0x74,0x61,0x72, +0x74,0x5f,0x70,0x61,0x67,0x65,0x3a,0x20,0x25,0x64,0x20,0x6d,0x61,0x70,0x5f,0x73, +0x72,0x63,0x3a,0x20,0x25,0x78,0x20,0x6d,0x61,0x70,0x5f,0x73,0x69,0x7a,0x65,0x3a, +0x20,0x25,0x78,0x20,0x70,0x61,0x67,0x65,0x5f,0x63,0x6e,0x74,0x3a,0x20,0x25,0x64, +0x20,0x66,0x6c,0x61,0x73,0x68,0x5f,0x70,0x61,0x67,0x65,0x3a,0x20,0x25,0x64,0x20, +0x6d,0x61,0x70,0x5f,0x70,0x74,0x72,0x3a,0x20,0x25,0x78,0x0a,0x00,0x00,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x20,0x25,0x64,0x20,0x62,0x79, +0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65, +0x61,0x64,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x68,0x61,0x73,0x68,0x3a,0x20,0x25,0x78, +0x25,0x78,0x25,0x78,0x2e,0x2e,0x2e,0x25,0x78,0x25,0x78,0x25,0x78,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x63,0x68, +0x65,0x63,0x6b,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x25,0x64,0x2c,0x20,0x73,0x7a, +0x20,0x25,0x64,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x65,0x72,0x61,0x73,0x65,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74, +0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x70,0x70,0x20,0x69,0x6d,0x61,0x67,0x65, +0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20, +0x6d,0x61,0x67,0x69,0x63,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x20,0x30,0x78,0x25, +0x78,0x20,0x69,0x6e,0x20,0x61,0x70,0x70,0x20,0x69,0x6d,0x61,0x67,0x65,0x21,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x46,0x6f,0x75,0x6e, +0x64,0x20,0x61,0x70,0x70,0x20,0x69,0x6d,0x61,0x67,0x65,0x3a,0x20,0x6d,0x61,0x67, +0x69,0x63,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x25,0x64,0x20,0x73,0x65,0x67,0x6d, +0x65,0x6e,0x74,0x73,0x2c,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x40,0x20,0x30,0x78, +0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x70,0x70,0x20,0x73, +0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x28,0x25, +0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x41,0x70,0x70,0x20,0x73,0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x25,0x64,0x3a,0x20, +0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x4d,0x61,0x70,0x70, +0x65,0x64,0x20,0x73,0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x25,0x64,0x3a,0x20,0x25, +0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x2d, +0x3e,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x49,0x6e,0x69,0x74,0x20,0x61,0x70,0x70,0x74,0x72,0x61,0x63,0x65,0x20,0x6d,0x6f, +0x64,0x75,0x6c,0x65,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x20,0x61, +0x70,0x70,0x74,0x72,0x61,0x63,0x65,0x20,0x6d,0x6f,0x64,0x75,0x6c,0x65,0x20,0x28, +0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x53,0x74,0x61,0x72,0x74,0x20,0x72,0x65,0x61,0x64,0x69,0x6e,0x67,0x20,0x25,0x64, +0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74, +0x6f,0x20,0x67,0x65,0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x21, +0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x47,0x6f,0x74,0x20, +0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74, +0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c, +0x64,0x20,0x75,0x73,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x52,0x65,0x61,0x64,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25, +0x78,0x20,0x73,0x7a,0x20,0x25,0x64,0x20,0x69,0x6e,0x20,0x25,0x64,0x20,0x6d,0x73, +0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x75,0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20, +0x62,0x75,0x66,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x46,0x6c,0x75,0x73,0x68,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x20, +0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20, +0x5b,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x20, +0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x5d,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x6c, +0x75,0x73,0x68,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x21,0x0a,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x53,0x65,0x6e,0x74,0x20,0x74,0x72,0x61, +0x63,0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20, +0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x45,0x78,0x69,0x74,0x65,0x64,0x20,0x6c,0x6f,0x6f,0x70,0x20,0x77,0x68,0x65,0x6e, +0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x73,0x69, +0x7a,0x65,0x20,0x69,0x73,0x20,0x6d,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x34, +0x20,0x62,0x79,0x74,0x65,0x73,0x21,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x52,0x65,0x61,0x64,0x20,0x70,0x61,0x64,0x64,0x65,0x64,0x20, +0x77,0x6f,0x72,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c,0x61,0x73,0x68,0x20, +0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x6c, +0x61,0x73,0x74,0x20,0x77,0x6f,0x72,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c, +0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x53,0x65,0x6e,0x74,0x20,0x6c,0x61,0x73,0x74,0x20,0x74,0x72, +0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73, +0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x52,0x65,0x61,0x64,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65, +0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x77,0x72,0x69,0x74,0x69,0x6e, +0x67,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25, +0x78,0x20,0x6f,0x70,0x74,0x20,0x25,0x78,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x49,0x3a,0x20,0x49,0x6e,0x69,0x74,0x20,0x61,0x70,0x70,0x74,0x72,0x61,0x63, +0x65,0x20,0x6d,0x6f,0x64,0x75,0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75, +0x66,0x66,0x65,0x72,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20, +0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x56,0x3a,0x20, +0x52,0x65,0x71,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62, +0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x25,0x64,0x2d,0x25, +0x64,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20, +0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x21,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x56,0x3a,0x20,0x47,0x6f,0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x64,0x6f, +0x77,0x6e,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20, +0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,0x64,0x20,0x75, +0x73,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x6c,0x61,0x73, +0x68,0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x57,0x72,0x6f,0x74,0x65,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40, +0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x55,0x6e,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x64,0x61,0x74, +0x61,0x20,0x73,0x69,0x7a,0x65,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x56,0x3a,0x20,0x74,0x69,0x6e,0x66, +0x6c,0x5f,0x64,0x65,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x20,0x69,0x6e,0x28, +0x25,0x64,0x29,0x20,0x6f,0x75,0x74,0x28,0x25,0x64,0x29,0x20,0x28,0x25,0x6c,0x6c, +0x64,0x29,0x75,0x73,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x55,0x6e,0x61,0x6c,0x69,0x67,0x6e,0x65,0x64,0x20,0x6f,0x66,0x66,0x73,0x65,0x74, +0x21,0x20,0x25,0x64,0x2d,0x25,0x64,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e, +0x66,0x6c,0x61,0x74,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x25,0x64,0x29,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x4e,0x6f,0x74,0x20, +0x65,0x6e,0x6f,0x75,0x67,0x68,0x20,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x65, +0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x00,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x54,0x6f,0x6f,0x20,0x6d,0x75,0x63,0x68, +0x20,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x64,0x61,0x74,0x61, +0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x63,0x70,0x75,0x5f,0x66,0x72,0x65,0x71,0x3a,0x25,0x64,0x20,0x4d,0x68,0x7a,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x69,0x63,0x61,0x63, +0x68,0x65,0x5f,0x63,0x74,0x72,0x6c,0x31,0x5f,0x72,0x65,0x67,0x3a,0x20,0x30,0x78, +0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x44,0x41,0x54,0x41, +0x20,0x30,0x78,0x25,0x78,0x2e,0x2e,0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x42,0x53,0x53,0x20,0x30,0x78,0x25,0x78, +0x2e,0x2e,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x63,0x6d,0x64,0x20,0x25,0x64,0x3a,0x25,0x73,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x25,0x73,0x20,0x61,0x72,0x67,0x31,0x20,0x25,0x78,0x2c,0x20, +0x61,0x72,0x67,0x32,0x20,0x25,0x64,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x43,0x61,0x63,0x68,0x65,0x20,0x69,0x73,0x5f,0x65,0x6e,0x61, +0x62,0x6c,0x65,0x64,0x3a,0x25,0x64,0x20,0x63,0x61,0x63,0x68,0x65,0x5f,0x62,0x75, +0x73,0x3a,0x25,0x58,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x43,0x61,0x63,0x68,0x65,0x20,0x6e,0x65,0x65,0x64,0x73,0x20,0x74,0x6f,0x20,0x62, +0x65,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x25,0x73,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x4d,0x4d,0x55,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x69,0x7a,0x65,0x3a,0x25,0x58, +0x20,0x64,0x72,0x6f,0x6d,0x5f,0x70,0x61,0x67,0x65,0x5f,0x73,0x74,0x61,0x72,0x74, +0x3a,0x25,0x64,0x20,0x64,0x72,0x6f,0x6d,0x5f,0x70,0x61,0x67,0x65,0x5f,0x65,0x6e, +0x64,0x3a,0x25,0x64,0x20,0x76,0x61,0x64,0x64,0x72,0x30,0x5f,0x73,0x74,0x61,0x72, +0x74,0x5f,0x61,0x64,0x64,0x72,0x3a,0x25,0x58,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x49,0x3a,0x20,0x53,0x79,0x73,0x74,0x69,0x6d,0x65,0x72,0x20,0x63,0x6c,0x6f, +0x63,0x6b,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x0a,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x65, +0x74,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x73,0x69,0x7a,0x65,0x21,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74, +0x6f,0x20,0x75,0x6e,0x6c,0x6f,0x63,0x6b,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x28, +0x25,0x64,0x29,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x25,0x73,0x3a,0x20,0x30,0x78,0x25,0x78,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00, +0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74, +0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e, +0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x28,0x25, +0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f, +0x6e,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x67,0x69,0x63,0x21,0x20,0x28, +0x30,0x78,0x25,0x78,0x29,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x50,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x25,0x64,0x20,0x69,0x6e,0x76, +0x61,0x6c,0x69,0x64,0x20,0x2d,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x78, +0x25,0x78,0x20,0x73,0x69,0x7a,0x65,0x20,0x30,0x78,0x25,0x78,0x20,0x65,0x78,0x63, +0x65,0x65,0x64,0x73,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x63,0x68,0x69,0x70,0x20, +0x73,0x69,0x7a,0x65,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74, +0x69,0x6f,0x6e,0x20,0x25,0x64,0x2c,0x20,0x6d,0x20,0x30,0x78,0x25,0x78,0x2c,0x20, +0x74,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x73,0x74,0x20,0x30,0x78,0x25,0x78,0x2c, +0x20,0x6c,0x20,0x27,0x25,0x73,0x27,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x49,0x3a,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0x61,0x70,0x70,0x20,0x70,0x61, +0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x25,0x73,0x27,0x20,0x25,0x64, +0x20,0x4b,0x42,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65, +0x61,0x64,0x20,0x69,0x6e,0x73,0x6e,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x28, +0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20, +0x52,0x65,0x61,0x64,0x20,0x69,0x6e,0x73,0x6e,0x20,0x5b,0x25,0x30,0x32,0x78,0x20, +0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x5d,0x20, +0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x6e, +0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x72, +0x69,0x74,0x65,0x20,0x62,0x72,0x65,0x61,0x6b,0x20,0x69,0x6e,0x73,0x6e,0x20,0x28, +0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20, +0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x69, +0x6e,0x73,0x6e,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x57,0x52,0x4f,0x54,0x45,0x20,0x30,0x78, +0x25,0x78,0x20,0x30,0x78,0x25,0x78,0x20,0x5b,0x25,0x30,0x32,0x78,0x20,0x25,0x30, +0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32, +0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78, +0x5d,0x0a,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20, +0x30,0x78,0x25,0x78,0x20,0x30,0x78,0x25,0x78,0x20,0x5b,0x25,0x30,0x32,0x78,0x20, +0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x5d,0x0a, +0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c, +0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x20,0x69,0x6e, +0x73,0x6e,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x00,0x00,0x53,0x54,0x55,0x42, +0x5f,0x44,0x3a,0x20,0x73,0x79,0x73,0x63,0x6c,0x6b,0x5f,0x63,0x6f,0x6e,0x66,0x5f, +0x72,0x65,0x67,0x20,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20, +0x65,0x78,0x69,0x74,0x20,0x25,0x64,0x0a,0x00,0x00,0x00,0x00,0x46,0x4c,0x41,0x53, +0x48,0x5f,0x52,0x45,0x41,0x44,0x00,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x57,0x52, +0x49,0x54,0x45,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x45,0x52,0x41,0x53,0x45,0x00, +0x46,0x4c,0x41,0x53,0x48,0x5f,0x45,0x52,0x41,0x53,0x45,0x5f,0x43,0x48,0x45,0x43, +0x4b,0x00,0x00,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x53,0x49,0x5a,0x45,0x00,0x00, +0x46,0x4c,0x41,0x53,0x48,0x5f,0x4d,0x41,0x50,0x5f,0x47,0x45,0x54,0x00,0x00,0x00, +0x46,0x4c,0x41,0x53,0x48,0x5f,0x42,0x50,0x5f,0x53,0x45,0x54,0x00,0x00,0x00,0x00, +0x46,0x4c,0x41,0x53,0x48,0x5f,0x42,0x50,0x5f,0x43,0x4c,0x45,0x41,0x52,0x00,0x00, +0x46,0x4c,0x41,0x53,0x48,0x5f,0x54,0x45,0x53,0x54,0x00,0x00,0x46,0x4c,0x41,0x53, +0x48,0x5f,0x57,0x52,0x49,0x54,0x45,0x5f,0x44,0x45,0x46,0x4c,0x41,0x54,0x45,0x44, +0x00,0x00,0x00,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x43,0x41,0x4c,0x43,0x5f,0x48, +0x41,0x53,0x48,0x00,0x43,0x4c,0x4f,0x43,0x4b,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47, +0x55,0x52,0x45,0x00,0x9c,0x1e,0x38,0x40,0xbe,0x1e,0x38,0x40,0xa8,0x1e,0x38,0x40, +0xb2,0x1e,0x38,0x40,0x48,0x23,0x38,0x40,0xda,0x1e,0x38,0x40,0xe8,0x1f,0x38,0x40, +0x66,0x21,0x38,0x40,0x48,0x23,0x38,0x40,0xc6,0x1e,0x38,0x40,0xce,0x1e,0x38,0x40, +0xae,0x22,0x38,0x40,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x67, +0x65,0x74,0x5f,0x73,0x69,0x7a,0x65,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00, +0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x80,0x00, +0x00,0x00,0x00,0x01,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,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x65,0x73,0x70,0x5f,0x61,0x70,0x70,0x74, +0x72,0x61,0x63,0x65,0x5f,0x6d,0x65,0x6d,0x62,0x75,0x66,0x73,0x5f,0x64,0x6f,0x77, +0x6e,0x5f,0x62,0x75,0x66,0x66,0x65,0x72,0x5f,0x77,0x72,0x69,0x74,0x65,0x5f,0x6e, +0x6f,0x6c,0x6f,0x63,0x6b,0x00,0x00,0x00,0x65,0x73,0x70,0x5f,0x61,0x70,0x70,0x74, +0x72,0x61,0x63,0x65,0x5f,0x6d,0x65,0x6d,0x62,0x75,0x66,0x73,0x5f,0x64,0x6f,0x77, +0x6e,0x5f,0x62,0x75,0x66,0x66,0x65,0x72,0x5f,0x67,0x65,0x74,0x00,0x00,0x00,0x00, +0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x63,0x61,0x6c,0x63,0x5f, +0x68,0x61,0x73,0x68,0x00,0x00,0x00,0x00,0x4c,0x4e,0xca,0x3f,0x58,0x4e,0xca,0x3f, +0x64,0x4e,0xca,0x3f,0x70,0x4e,0xca,0x3f,0x84,0x4e,0xca,0x3f,0x90,0x4e,0xca,0x3f, +0xa0,0x4e,0xca,0x3f,0xb0,0x4e,0xca,0x3f,0xc0,0x4e,0xca,0x3f,0xcc,0x4e,0xca,0x3f, +0xe4,0x4e,0xca,0x3f,0xf4,0x4e,0xca,0x3f,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61, +0x73,0x68,0x5f,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x00,0x00,0x73,0x74,0x75,0x62, +0x5f,0x63,0x61,0x63,0x68,0x65,0x5f,0x69,0x6e,0x69,0x74,0x00,0x73,0x74,0x75,0x62, +0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x67,0x65,0x74,0x5f,0x6d,0x61,0x70,0x00,0x00, +0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x73,0x65,0x74,0x5f,0x62, +0x70,0x00,0x00,0x00,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x63, +0x6c,0x65,0x61,0x72,0x5f,0x62,0x70,0x00,0x00,0x01,0x02,0x02,0x03,0x03,0x03,0x03, +0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, +0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, +0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, +0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,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,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,0x07,0x07,0x07,0x07,0x07,0x07, +0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08, +0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00, +0x03,0x00,0x00,0x00, diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image.h b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image.h new file mode 100644 index 0000000000..0a8e8ffe6e --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#define ESP32C2_STUB_BSS_SIZE 0x000013cUL + +#define ESP32C2_STUB_IRAM_ORG 0x040380000UL + +#define ESP32C2_STUB_IRAM_LEN 0x000004000UL + +#define ESP32C2_STUB_DRAM_ORG 0x03fca4000UL + +#define ESP32C2_STUB_DRAM_LEN 0x000020000UL + +#define ESP32C2_STUB_ENTRY_ADDR 0x04038115cUL + +#define ESP32C2_STUB_APPTRACE_CTRL_ADDR 0x03fca4144UL + +/*#define ESP32C2_STUB_BUILD_IDF_REV 2fdba8ec19 +*/ diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image_wlog.h b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image_wlog.h new file mode 100644 index 0000000000..7f4cc01c21 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_flasher_image_wlog.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#define ESP32C2_STUB_WLOG_BSS_SIZE 0x0001144UL + +#define ESP32C2_STUB_WLOG_LOG_ADDR 0x03fca5318UL + +#define ESP32C2_STUB_WLOG_LOG_SIZE 4100UL + +#define ESP32C2_STUB_WLOG_ENTRY_ADDR 0x040381aa6UL + +#define ESP32C2_STUB_WLOG_APPTRACE_CTRL_ADDR 0x03fca51f4UL + +/*#define ESP32C2_STUB_WLOG_BUILD_IDF_REV 2fdba8ec19 +*/ diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_rom_chip.h b/contrib/loaders/flash/espressif/esp32c2/stub_rom_chip.h new file mode 100644 index 0000000000..86140a3003 --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_rom_chip.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +/*************************************************************************** + * ESP32-C2 specific rom header files * + * Copyright (C) 2019 Espressif Systems Ltd. * + * Author: Erhan Kurubas <erhan.kuru...@espressif.com> * + ***************************************************************************/ +#ifndef ESP_STUB_ROM_H +#define ESP_STUB_ROM_H + +#include "esp32c2/rom/ets_sys.h" +#include "esp32c2/rom/spi_flash.h" +#include "esp32c2/rom/spi_flash.h" +#include "esp32c2/rom/cache.h" +#include "esp32c2/rom/efuse.h" +#include "esp32c2/rom/uart.h" +#include "esp32c2/rom/rtc.h" +#include "esp32c2/rom/sha.h" +#include "miniz.h" + +#endif diff --git a/contrib/loaders/flash/espressif/esp32c2/stub_sha.c b/contrib/loaders/flash/espressif/esp32c2/stub_sha.c new file mode 100644 index 0000000000..4dda8077cf --- /dev/null +++ b/contrib/loaders/flash/espressif/esp32c2/stub_sha.c @@ -0,0 +1,37 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +/* Copyright 2021 Espressif Systems (Shanghai) PTE LTD */ + +#include <string.h> +#include "stub_rom_chip.h" + +static SHA_CTX ctx; + +/* this function has the same implementation for ESP32-S2 + * TODO: move to common file */ +void stub_sha256_start(void) +{ + /* Enable SHA hardware */ + ets_sha_enable(); + ets_sha_init(&ctx, SHA2_256); +} + +void stub_sha256_data(const void *data, size_t data_len) +{ + /* C2 secure boot key field consists of 1 byte of curve identifier and 64 bytes of ECDSA public key. + * While verifying the signature block, we need to calculate the SHA of this key field which is of 65 bytes. + * ets_sha_update handles it cleanly so we can safely remove the check: + * assert(data_len % 4) == 0 + */ + ets_sha_update(&ctx, data, data_len, false); +} + +void stub_sha256_finish(uint8_t *digest) +{ + if (!digest) { + bzero(&ctx, sizeof(ctx)); + return; + } + ets_sha_finish(&ctx, digest); + ets_sha_disable(); +} --